diff --git a/.flake8 b/.flake8
deleted file mode 100644
index cb50e3a..0000000
--- a/.flake8
+++ /dev/null
@@ -1,3 +0,0 @@
-[flake8]
-max-line-length = 88
-extend-ignore = E501
diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 0000000..4587672
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1,7 @@
+# Enforce LF line endings for all text files
+* text=auto eol=lf
+
+# Git LFS - track large binary assets in generated/input/
+generated/input/**/*.png filter=lfs diff=lfs merge=lfs -text
+generated/input/**/*.pdf filter=lfs diff=lfs merge=lfs -text
+generated/input/**/*.xodr filter=lfs diff=lfs merge=lfs -text
diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md
new file mode 100644
index 0000000..fac5767
--- /dev/null
+++ b/.github/copilot-instructions.md
@@ -0,0 +1,82 @@
+# HD-Map Asset Example — Copilot Instructions
+
+## Project Overview
+
+This is a **reference asset repository** for onboarding HD-Map simulation data into the ENVITED-X Dataspace. Users stage input files in `generated/input/`, then `make generate` runs the sl-5-8 pipeline to produce a complete, EVES-003-conformant asset in `generated/output/`.
+
+Assets follow the [EVES-003](https://ascs-ev.github.io/EVES/EVES-003/eves-003.html) specification.
+
+## Asset Creation Flow
+
+### Input → Output
+
+Users provide an OpenDRIVE `.xodr` file and an `input_manifest.json` (plus optional images, docs, LICENSE) in `generated/input/`. The pipeline auto-extracts metadata, runs quality checks, generates GeoJSON previews, and packages everything into an EVES-003 asset in `generated/output/`.
+
+### Two Paths
+
+1. **Automated (default):** `make generate` — pipeline auto-extracts all metadata from the `.xodr` and input manifest. No user interaction needed.
+2. **Wizard-assisted (optional):** `make wizard` starts a SHACL-driven web UI (Podman containers) at `http://localhost:4200` for interactively enriching metadata. Users can also edit `input_manifest.json` and `metadata/hdmap.json` by hand as an alternative to the wizard.
+
+### Gaia-X Integration
+
+The pipeline adds [Gaia-X Trust Framework](https://gaia-x.eu/) vocabulary to every asset (`gx:name`, `gx:license`, `gx:copyrightOwnedBy`, `gx:resourcePolicy`) inside `metadata/hdmap.json`. These properties live in closed GX-compliant nodes, while domain-specific properties (road types, lane counts, format version) go in open ENVITED-X wrapper shapes. The wizard's SHACL forms reflect both layers. Users don't need to understand Gaia-X — the pipeline handles compliance automatically.
+
+### Pipeline Stages (18 total)
+
+`meta_data_extractor` → `jsonLD_creator` → `shacl_combiner` → `wizard_caller` (disabled by default) → `jsonLD_validator` → `qualitychecker_caller` (ASAM + OpenMSL) → `xodr_routing_creator` → `xodr_to_geojson_caller` → `asset_reducer` → `structure_creator` → `manifest jsonLD_creator` → `jsonLD_validator`
+
+Key config files are in `submodules/sl-5-8-asset-tools/configs/`. Each stage can be enabled/disabled via `process.json`.
+
+## Repository Structure
+
+- `generated/input/` — Staged pipeline inputs (manifest, `.xodr` files, media, docs)
+- `generated/output/` — Pipeline output: complete EVES-003 asset ready for validation and release
+- `submodules/sl-5-8-asset-tools/` — Asset creation and processing tools (git submodule from [openMSL/sl-5-8-asset-tools](https://github.com/openMSL/sl-5-8-asset-tools))
+ - `submodules/ontology-management-base/` — Nested submodule: SHACL shapes, OWL ontologies, JSON-LD contexts, and Python validation tools (from [ASCS-eV/ontology-management-base](https://github.com/ASCS-eV/ontology-management-base))
+
+## Setup and Validation
+
+```bash
+make setup
+make validate
+```
+
+All commands are exposed via `make` targets -- run `make help` for the full list.
+
+## Linting (pre-commit hooks)
+
+Configured in `.pre-commit-config.yaml` — all hooks delegate to `make` targets.
+
+## Key Conventions
+
+### Asset Structure (EVES-003)
+
+Every asset must contain: `simulation-data/`, `metadata/`, `media/`, `documentation/`, and a `manifest.json` at the root. Optional: `validation-reports/`.
+
+### JSON-LD Metadata
+
+- `manifest.json` — Content registry linking all asset files with access roles (`isOwner`, `isRegistered`, `isPublic`) and categories (`isSimulationData`, `isMetadata`, `isMedia`, etc.)
+- `metadata/hdmap.json` — Domain-specific metadata (format, content, quantity, quality, data source, georeference) conforming to the HD-Map SHACL shapes from ontology-management-base
+
+Both files use typed `@value`/`@type` pairs for literals and reference ontologies via `@context` prefixes like `hdmap:`, `manifest:`, `envited-x:`, `georeference:`, `gx:`.
+
+### Submodules
+
+Two direct submodules:
+
+- `submodules/sl-5-8-asset-tools` — Asset creation and processing tools (which contains `ontology-management-base` as a nested submodule)
+- `submodules/EVES` — The [EVES specification](https://ascs-ev.github.io/EVES/EVES-003/eves-003.html) that defines the structure and requirements for Simulation Assets in the ENVITED-X Dataspace
+
+After cloning, initialize with:
+
+```bash
+make setup
+```
+
+### Commits
+
+This project uses [DCO sign-off](CONTRIBUTING.md). All commits require `Signed-off-by` — use `git commit -s`. Do **not** add `Co-authored-by: Copilot` trailers.
+
+## Release Workflow
+
+The GitHub Actions workflow (`.github/workflows/release.yml`) triggers on version tags (`v*.*.*`), runs `make setup && make generate && make validate`, and uploads the pipeline-generated `asset.zip` as a GitHub release artifact.
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index acfbe1f..c2d5f97 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -5,48 +5,36 @@ on:
tags:
- 'v*.*.*' # Triggers the workflow on version tags
+permissions:
+ contents: write
+
jobs:
release:
runs-on: ubuntu-latest
steps:
- - name: Checkout repository (+ download lfs dependencies)
+ - name: Checkout repository
uses: actions/checkout@v4
with:
lfs: true
+ submodules: recursive
+
- name: Checkout LFS objects
run: git lfs checkout
- - name: Set up Node.js
- uses: actions/setup-node@v4
+ - name: Set up Python
+ uses: actions/setup-python@v5
with:
- node-version: '20'
-
- - name: Install zip
- run: sudo apt-get install -y zip
+ python-version: '3.12'
- - name: Create zip file
+ - name: Setup, generate, and validate
run: |
- cd asset
- zip -r ../Testfeld_Niedersachsen_ALKS_xodr_sample.zip ./*
-
- - name: Create Release
- id: create_release
- uses: actions/create-release@v1
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- with:
- tag_name: ${{ github.ref }}
- release_name: Release ${{ github.ref }}
- draft: false
- prerelease: false
-
- - name: Upload Release Asset
- uses: actions/upload-release-asset@v1
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ make setup
+ make generate
+ make validate
+
+ - name: Create Release and Upload Asset
+ uses: softprops/action-gh-release@v2
with:
- upload_url: ${{ steps.create_release.outputs.upload_url }}
- asset_path: ./Testfeld_Niedersachsen_ALKS_xodr_sample.zip
- asset_name: Testfeld_Niedersachsen_ALKS_xodr_sample.zip
- asset_content_type: application/zip
+ files: "generated/output/**/*.zip"
+ generate_release_notes: true
diff --git a/.gitignore b/.gitignore
index d3b7e50..3b0ad68 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,5 @@
/.venv/
output.log
+*.zip
+/generated/output/
+!/generated/input/
\ No newline at end of file
diff --git a/.gitmodules b/.gitmodules
index 184cfeb..6692a47 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -1,3 +1,7 @@
-[submodule "ontology-management-base"]
- path = ontology-management-base
- url = https://github.com/GAIA-X4PLC-AAD/ontology-management-base.git
+[submodule "submodules/sl-5-8-asset-tools"]
+ path = submodules/sl-5-8-asset-tools
+ url = https://github.com/openMSL/sl-5-8-asset-tools.git
+ branch = main
+[submodule "submodules/EVES"]
+ path = submodules/EVES
+ url = https://github.com/ASCS-eV/EVES.git
diff --git a/.markdownlint.yaml b/.markdownlint.yaml
new file mode 100644
index 0000000..52414b2
--- /dev/null
+++ b/.markdownlint.yaml
@@ -0,0 +1,27 @@
+# Markdownlint configuration
+# https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md
+default: true
+
+# Allow long lines — tables and descriptive prose need room
+MD013:
+ line_length: 300
+ code_blocks: false
+ tables: false
+
+# Allow inline HTML for collapsible sections and formatting
+MD033:
+ allowed_elements:
+ - a
+ - br
+ - details
+ - img
+ - noscript
+ - strong
+ - summary
+ - sup
+
+# Disable table column style — compact pipes are fine
+MD060: false
+
+# Allow bold text as step labels (e.g., **Step 1 — ...**)
+MD036: false
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index 9ce777e..502072e 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -2,45 +2,15 @@
repos:
- repo: local
hooks:
- - id: black
- name: black
- entry: black
+ - id: validate
+ name: validate asset JSON-LD
+ entry: make validate
language: system
- types: [python]
- args: ["--config=pyproject.toml"]
- pass_filenames: true
- exclude: ontology-management-base/
-
- - id: isort
- name: isort
- entry: isort
+ pass_filenames: false
+ always_run: true
+ - id: lint-md
+ name: lint markdown
+ entry: make lint-md
language: system
- types: [python]
- args: ["--settings=pyproject.toml"]
- pass_filenames: true
- exclude: ontology-management-base/
-
- - id: flake8
- name: flake8
- entry: flake8
- language: system
- types: [python]
- args: ["--config=.flake8"]
- pass_filenames: true
- exclude: ontology-management-base/
-
- - id: jsonld-lint
- name: JSON-LD Linter
- entry: python ontology-management-base/src/jsonld_lint.py
- language: system
- types: [json]
- files: \.json$
- exclude: ontology-management-base/
-
- - id: turtle-lint
- name: Turtle Linter
- entry: python ontology-management-base/src/turtle_lint.py
- language: system
- types: [text]
- files: \.(ttl)$
- exclude: ontology-management-base/
+ pass_filenames: false
+ types: [markdown]
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..2b33456
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,222 @@
+# Makefile for hd-map-asset-example
+# Build command center for common development tasks
+
+# Allow parent makefiles to override the venv path/tooling.
+# NOTE: VENV must be a relative path — the root Makefile prefixes it with CURDIR
+# when delegating to this submodule.
+VENV ?= .venv
+
+# Submodule path aliases (hide deep paths)
+ASSET_TOOLS := submodules/sl-5-8-asset-tools
+OMB := $(ASSET_TOOLS)/submodules/ontology-management-base
+
+# OS detection for cross-platform support (Windows vs Unix)
+ifeq ($(OS),Windows_NT)
+ SHELL := sh
+ VENV_BIN := $(VENV)/Scripts
+ PYTHON ?= $(VENV_BIN)/python.exe
+ BOOTSTRAP_PYTHON ?= python
+ ACTIVATE_SCRIPT := $(VENV_BIN)/activate
+ ACTIVATE_HINT := use the activation script under $(VENV_BIN) for your shell
+else
+ VENV_BIN := $(VENV)/bin
+ PYTHON ?= $(VENV_BIN)/python3
+ BOOTSTRAP_PYTHON ?= python3
+ ACTIVATE_SCRIPT := $(VENV_BIN)/activate
+ ACTIVATE_HINT := source $(ACTIVATE_SCRIPT)
+endif
+
+# Generated asset directory
+GENERATED_DIR := generated
+GEN_INPUT := $(GENERATED_DIR)/input
+GEN_OUTPUT := $(GENERATED_DIR)/output
+GEN_CONFIGS := $(ASSET_TOOLS)/configs
+
+# ── Subcommand support ───────────────────────────────────────────────
+# Enables: make generate clean, make wizard stop
+SUBCMD = $(word 2,$(MAKECMDGOALS))
+
+# ── Guards ───────────────────────────────────────────────────────────
+define check_dev_setup
+ @"$(PYTHON)" -c "True" 2>/dev/null || { \
+ echo ""; \
+ echo "[ERR] Development environment not set up."; \
+ echo " Run: make setup"; \
+ echo ""; \
+ exit 1; \
+ }
+endef
+
+.PHONY: all setup install lint format validate generate clean wizard help
+
+# Default target
+all: lint validate
+
+# ── Setup & Install ──────────────────────────────────────────────────
+
+setup: $(ACTIVATE_SCRIPT)
+ @"$(MAKE)" -C "$(ASSET_TOOLS)" setup VENV="$(CURDIR)/$(VENV)" PYTHON="$(CURDIR)/$(PYTHON)"
+ @echo "[INFO] Installing quality checker runtime dependencies..."
+ @"$(PYTHON)" -m pip install -e "$(ASSET_TOOLS)[qc-deps]" --quiet
+ @echo "[INFO] Installing quality checker packages (--no-deps to avoid upstream lxml/numpy constraints)..."
+ @"$(PYTHON)" -m pip install poetry-core --quiet 2>/dev/null || true
+ @"$(PYTHON)" -m pip install --no-deps \
+ "asam-qc-baselib@git+https://github.com/asam-ev/qc-baselib-py@v1.1.0" \
+ "asam-qc-opendrive@git+https://github.com/jdsika/qc-opendrive@fix-contact-point-missing-road-link" \
+ "asam-qc-openscenarioxml@git+https://github.com/asam-ev/qc-openscenarioxml@v1.0.0" \
+ "openmsl-qc-opendrive@git+https://github.com/openMSL/sl-5-9-openmsl-qc-opendrive@main"
+# NOTE: qc-opendrive is pinned to a fork pending upstream PR asam-ev/qc-opendrive#139.
+# Switch back to @v1.0.0 (or newer) once the PR is merged.
+ @"$(PYTHON)" -m pre_commit install --allow-missing-config >/dev/null 2>&1 || true
+ @echo "[OK] Setup complete. Activate with: $(ACTIVATE_HINT)"
+
+$(PYTHON):
+ @echo "[INFO] Creating virtual environment at $(VENV)..."
+ @"$(BOOTSTRAP_PYTHON)" -m venv "$(VENV)"
+ @"$(PYTHON)" -m pip install --upgrade pip
+
+$(ACTIVATE_SCRIPT): $(PYTHON)
+ @"$(PYTHON)" -m pip install -e "$(ASSET_TOOLS)[dev]" --quiet
+ @touch "$(ACTIVATE_SCRIPT)"
+
+install:
+ $(call check_dev_setup)
+ @"$(MAKE)" -C "$(ASSET_TOOLS)" install VENV="$(CURDIR)/$(VENV)" PYTHON="$(CURDIR)/$(PYTHON)"
+ @echo "[OK] Install complete"
+
+# ── Lint & Format ────────────────────────────────────────────────────
+# Root repo has no Python files -- lint validates JSON-LD asset data.
+
+lint: validate lint-md
+
+lint-md:
+ @echo "[INFO] Linting Markdown..."
+ @npx --yes markdownlint-cli2 "README.md" "CONTRIBUTING.md"
+ @echo "[OK] Markdown lint passed"
+
+format: format-md
+
+format-md:
+ @echo "[INFO] Formatting Markdown..."
+ @npx --yes markdownlint-cli2 --fix "README.md" "CONTRIBUTING.md"
+ @echo "[OK] Markdown format complete"
+
+# ── Validate ─────────────────────────────────────────────────────────
+# Validates JSON-LD files for every generated asset in the output directory.
+
+validate:
+ $(call check_dev_setup)
+ @"$(PYTHON)" -c "\
+import pathlib, sys; \
+out = pathlib.Path('$(GEN_OUTPUT)'); \
+dirs = sorted(d for d in out.iterdir() if d.is_dir()) if out.exists() else []; \
+sys.exit('[SKIP] No generated asset found (run: make generate)') if not dirs else None; \
+bad = [str(d) for d in dirs if not [p for p in [d / 'manifest.json', d / 'metadata' / 'hdmap.json'] if p.exists()]]; \
+sys.exit('[ERR] No manifest or metadata found in: ' + ', '.join(bad)) if bad else None; \
+all_paths = [str(p) for d in dirs for p in [d / 'manifest.json', d / 'metadata' / 'hdmap.json'] if p.exists()]; \
+print(' '.join(all_paths)); \
+" > .validate_paths 2>&1 && \
+ "$(PYTHON)" -m src.tools.validators.validation_suite \
+ --run check-data-conformance \
+ --data-paths $$(cat .validate_paths) \
+ --artifacts "$(OMB)/artifacts" && \
+ rm -f .validate_paths && \
+ echo "[OK] Validation complete" || \
+ { cat .validate_paths 2>/dev/null; rm -f .validate_paths; exit 1; }
+
+# ── Generate (full pipeline) ─────────────────────────────────────────
+
+generate:
+ifeq ($(SUBCMD),clean)
+ @echo "[INFO] Removing generated/output/ directory..."
+ @"$(PYTHON)" -c "import shutil; shutil.rmtree('$(GEN_OUTPUT)', ignore_errors=True)"
+ @echo "[OK] Generated output removed (input/ blueprint preserved)"
+else
+ $(call check_dev_setup)
+ @"$(PYTHON)" -c "\
+import pathlib, sys; \
+im = pathlib.Path('$(GEN_INPUT)') / 'input_manifest.json'; \
+sys.exit('[ERR] No input_manifest.json in $(GEN_INPUT)/. Stage input files first.') if not im.exists() else None; \
+"
+ @"$(MAKE)" -C "$(ASSET_TOOLS)" generate \
+ INPUT_DIR="$(CURDIR)/$(GEN_INPUT)" \
+ OUTPUT_DIR="$(CURDIR)/$(GEN_OUTPUT)" \
+ VENV="$(CURDIR)/$(VENV)" \
+ PYTHON="$(CURDIR)/$(PYTHON)"
+ @echo ""
+ @echo "[OK] Asset generated in $(GEN_OUTPUT)/"
+endif
+
+# ── Wizard (SD Creation Wizard frontend + API) ───────────────────────
+
+wizard:
+ifeq ($(SUBCMD),stop)
+ @"$(MAKE)" -C "$(ASSET_TOOLS)" wizard stop
+else
+ @"$(MAKE)" -C "$(ASSET_TOOLS)" wizard
+endif
+
+# ── Clean ────────────────────────────────────────────────────────────
+
+clean:
+ifneq ($(firstword $(MAKECMDGOALS)),generate)
+ifeq ($(SUBCMD),all)
+ @echo "[INFO] Cleaning everything..."
+ @rm -rf build/ dist/ .pytest_cache/ .mypy_cache/ "$(GEN_OUTPUT)"
+ @rm -rf *.egg-info
+ @rm -f *.zip
+ @echo "[INFO] Removing virtual environment and submodules..."
+ @rm -rf "$(VENV)"
+ @"$(MAKE)" -C "$(ASSET_TOOLS)" clean all 2>/dev/null || true
+ @echo "[OK] Full clean complete -- run 'make setup' to reinitialise"
+else
+ @echo "[INFO] Cleaning..."
+ @rm -rf build/ dist/ .pytest_cache/ .mypy_cache/ "$(GEN_OUTPUT)"
+ @rm -rf *.egg-info
+ @rm -f *.zip
+ @"$(MAKE)" -C "$(ASSET_TOOLS)" clean 2>/dev/null || true
+ @echo "[OK] Cleaned"
+endif
+else
+ @:
+endif
+
+# ── Help ─────────────────────────────────────────────────────────────
+
+help:
+ @echo "hd-map-asset-example -- Available Commands"
+ @echo ""
+ @echo " make setup Create venv and install all dependencies (incl. QC tools)"
+ @echo " make install Install packages"
+ @echo ""
+ @echo " make generate Run full pipeline: .xodr -> generated/ asset + zip"
+ @echo " make generate clean Remove generated/output/ directory"
+ @echo ""
+ @echo " You can also run the pipeline for a custom input directory:"
+ @echo " make -C submodules/sl-5-8-asset-tools generate \\"
+ @echo " INPUT_DIR=/path/to/input OUTPUT_DIR=/path/to/output"
+ @echo ""
+ @echo " make lint Lint (validates asset JSON-LD + Markdown)"
+ @echo " make lint-md Lint Markdown files only"
+ @echo " make format Auto-fix Markdown lint issues"
+ @echo " make validate Validate generated/output/ asset against SHACL"
+ @echo ""
+ @echo " make wizard Start SD Creation Wizard (Podman, auto-setup if needed)"
+ @echo " make wizard stop Stop the wizard containers"
+ @echo ""
+ @echo " make clean Remove all build artifacts, caches, and generated/"
+ @echo " make clean all Clean + remove venv and submodules (full reset)"
+ @echo ""
+ @echo "Debug logging:"
+ @echo " SL58_LOG_MODE=debug make generate"
+ @echo " Shows full subprocess command lines, stdout/stderr, and tracebacks."
+ @echo ""
+ @echo "Deterministic mode (reproducible output):"
+ @echo " SL58_DETERMINISTIC=1 make generate"
+ @echo " Same input files produce identical UUIDs, timestamps, and CID."
+
+# ── Catch-all for subcommand arguments ───────────────────────────────
+ifneq ($(filter setup generate wizard clean install,$(firstword $(MAKECMDGOALS))),)
+%:
+ @:
+endif
diff --git a/README.md b/README.md
index 984dea8..885e2e9 100644
--- a/README.md
+++ b/README.md
@@ -1,78 +1,488 @@
-# HD-Map Asset Example
-
-This repository serves as a reference for onboarding a HD-Map asset into the ENVITED X Dataspace and can be used as a template for other dataspaces as well. It contains the full description as **`manifest_reference.json` - file** in addition to a consistent example of an HD-Map asset data.
-
-A complete **`asset`** in a specific domain includes the data itself and all necessary files for describing, evaluating, and visualizing the dataset.
-
-The repository has the following folder structure and the asset sample can be downloaded as artifact from the lastest release (**`asset.zip`**).
-
-All ENVITED X Dataspace assets are defined according to [EVES-003](https://ascs-ev.github.io/EVES/EVES-003/eves-003.html).
-
-## Installation
-
-If you want to use the validation scripts from 📁 `ontology-management-base/src` then you need to isntall the following dependencies:
-
-```bash
-# On Windows use python instead of python3
-sudo apt-get install python3-full
-python3 -m venv .venv/
-source .venv/bin/activate # On Windows use: source .venv/Scripts/activate
-python3 -m pip install -r ontology-management-base/requirements.txt
-# Example check
-python3 ontology-management-base/src/check_jsonld_against_shacl_schema.py asset/manifest_reference.json asset/metadata/hdmap_instance.json
-```
-
-## Repo Structure
-
-The Repo has the following structure:
-
-📁 `.github` *-> github workflows*
-
-📁 `asset` *-> contains the asset*
-
-- 📄 *`README.md`* (defines asset folder structure)
-- 📄 *`..more..`* (see folder)
-
-📁 `ontology-management-base`
-
-- contains all SHACLs and ontologies needed for onboarding and registering datasets, including semantic and syntactic validation of the provided metadata.
-- Versioned git submodule of [ontology-management-base](https://github.com/GAIA-X4PLC-AAD/ontology-management-base).
-
-📄 `CONTRIBUTING.md` *-> contributing guidelines*
-
-📄 `README.md` *-> documentation of the Repo and the asset*
-
-### Legend
-
-- 📁 `folder-name`: A folder in the repo.
-- 📄 `assetName`: A file in the repo.
-- (optional) : This file or folder is optional and can be added or omitted as needed.
-
-## FAQ
-
-### How can I easily create a Simulation Asset?
-
-- **Preparation :** *Ensure you understood this repository and the necessary data to create a SimulationAsset for the ENVITED-X Data Space and familiarize yourself with the concept of an asset [EVES-003](https://ascs-ev.github.io/EVES/EVES-003/eves-003.html).*
-
-- **Provider Tools :** *You can use the [GaiaX 4 PLC-AAD Provider Tools](https://github.com/GAIA-X4PLC-AAD/provider-tools) to create your own asset in a guided way.*
-
-### Which roles can I define for access management?
-
-- **isOwner** *: The owner has full access to the asset and its associated files. This role includes permissions to download the asset.*
-
-- **isRegistered** *: A registered user has access to certain files and data within the asset but can't download the asset.*
-
-- **isPublic** *: A public user has only viewing rights to certain files or metadata.*
-
-### Which SCHAL - Files are used to generate the domainMetadata.json ?
-
--You need to use the following Ontology from [Ontology Management Base Repository](https://github.com/GAIA-X4PLC-AAD/ontology-management-base) - [HdMap_Ontology](https://github.com/GAIA-X4PLC-AAD/ontology-management-base/blob/main/hdmap/hdmap_ontology.ttl).
-
-## Usage
-
- 1. Read the `README.md` - file.
- 2. Download the lastest `asset.zip` - file release.
- 3. Explore the provided data files and documentation.
- 4. Create the same folder and file structure for your asset, along with an appropriate `hdmap_instance.json` - file and `manifest_reference.json` - file.
- 5. Zip your fills to an `asset.zip` - file.
- 6. You are now ready to upload `asset.zip` - file and start registration of your asset.
+# HD-Map Asset Example
+
+This repository demonstrates how to transform an [ASAM OpenDRIVE](https://www.asam.net/standards/detail/opendrive/) map (`.xodr`) into a **Simulation Asset** — a standardized, quality-checked, machine-readable package that can be shared with partners and integrated into simulation workflows.
+
+A Simulation Asset enriches raw map data with:
+
+- **Structured metadata** — road types, lane counts, geolocation, format version (JSON-LD)
+- **Quality reports** — automated ASAM and OpenMSL compliance checks
+- **Visual previews** — GeoJSON maps, bounding box, 3D road/lane geometry
+- **Access control** — per-file visibility roles (owner, registered, public) for data marketplace use
+- **Content-addressed packaging** — deterministic CID-named archive for integrity verification
+
+The asset structure follows [EVES-003][eves-003], the specification that defines folder
+layout and metadata schemas for Simulation Assets in the
+[ENVITED-X Dataspace](https://2025.2.envited-x.net).
+This repository serves as both a working reference and a template for creating new assets.
+
+[eves-003]: https://ascs-ev.github.io/EVES/EVES-003/eves-003.html
+
+## Prerequisites
+
+| Tool | Why | Install |
+|------|-----|---------|
+| **Python 3.12+** | Pipeline runtime | [python.org](https://www.python.org/downloads/), Microsoft Store, or `winget install Python.Python.3.12` |
+| **Git** | Submodule management | [git-scm.com](https://git-scm.com/downloads) (includes Git Bash on Windows) |
+| **GNU Make** | Task runner | see below |
+
+
+Windows — installing Make
+
+**Git Bash / MSYS2** — Make is included if you selected the MSYS2 option during Git install, or install it with:
+
+```bash
+# Using Scoop (recommended)
+scoop install make
+
+# Using Chocolatey
+choco install make
+```
+
+**PowerShell** — The same `scoop` or `choco` commands work. After installing, `make` uses Git's bundled `sh.exe` for recipe execution, so it works from PowerShell, Git Bash, and CMD alike.
+
+**Without Make** — You can run the pipeline directly with Python (see [Option B](#option-b--run-the-pipeline-directly) below).
+
+
+
+
+macOS / Linux
+
+Make and Git are typically pre-installed. Install Python 3.12+ via your package manager:
+
+```bash
+# macOS
+brew install python@3.12
+
+# Ubuntu/Debian
+sudo apt install python3.12 python3.12-venv
+```
+
+
+
+> **Podman** is only needed for `make wizard` (the SD Creation Wizard web UI). The pipeline itself does not require it. Podman is auto-installed by `make setup wizard` if missing.
+
+## Quick Start
+
+```bash
+# 1. Clone with submodules
+git clone --recurse-submodules https://github.com/ASCS-eV/hd-map-asset-example.git
+cd hd-map-asset-example
+
+# 2. Install everything
+make setup
+
+# 3. Generate a complete asset from the example .xodr
+make generate
+
+# 4. Validate the generated asset
+make validate
+```
+
+If already cloned without submodules:
+
+```bash
+git submodule update --init --recursive
+make setup
+```
+
+## How It Works
+
+The `generated/input/` folder contains the **pipeline inputs** — an OpenDRIVE `.xodr` file plus supplementary material (images, docs, license). `make generate` uses the [sl-5-8-asset-tools](https://github.com/openMSL/sl-5-8-asset-tools) pipeline to produce a complete EVES-003 asset in `generated/output/`.
+
+### Input → Output at a Glance
+
+```text
+ generated/input/ generated/output//
+ ├── input_manifest.json ─── make generate ──► ├── simulation-data/ (.xodr + .bjson)
+ ├── YourMap.xodr ├── metadata/ (hdmap.json)
+ ├── impression-01.png ├── media/ (GeoJSON, PNGs, 3D)
+ ├── documentation.pdf ├── documentation/ (PDF, stats)
+ ├── LICENSE ├── validation-reports/(QC results)
+ └── (optional extras) ├── manifest.json
+ └── LICENSE
+ ──► .zip (release archive)
+```
+
+**You provide:** a `.xodr` map file, an `input_manifest.json` describing your files, and optional supplementary material (screenshots, docs, license).
+
+**The pipeline generates:** domain metadata (`hdmap.json`), GeoJSON maps, 3D preview data, quality check reports, a search index, and the `manifest.json` content registry — all packaged as an EVES-003 asset.
+
+### Two Workflows for Creating Assets
+
+| | **Automated (default)** | **Wizard-assisted (optional)** |
+|---|---|---|
+| **How** | `make generate` | `make wizard` → edit in browser → `make generate` |
+| **Metadata source** | Auto-extracted from `.xodr` + `input_manifest.json` | Auto-extracted + manually enriched via SHACL-driven web form |
+| **When to use** | CI/CD, standard assets, bulk processing | First-time asset creation, when you need to add domain-specific details the extractor can't infer |
+| **Requires** | Python, Make | Python, Make, Podman |
+
+**Automated path:** Place your files in `generated/input/`, create an `input_manifest.json`, run `make generate`. The pipeline auto-extracts all metadata from your `.xodr` file — road types, lane counts, georeferencing, format version, etc.
+
+**Wizard path:** Start the SD Creation Wizard with `make wizard`, open `http://localhost:4200`, load the SHACL shapes for your domain, and fill in any metadata the extractor cannot infer. Export the enriched JSON-LD, place it in your input folder, then run `make generate`.
+
+### Metadata and Gaia-X
+
+The generated metadata uses the [Gaia-X Trust Framework](https://gaia-x.eu/) vocabulary alongside ENVITED-X domain ontologies. This enables Simulation Assets to participate in Gaia-X-compliant data ecosystems.
+
+**What Gaia-X adds to your asset:**
+
+| Property | Source | Example |
+|----------|--------|---------|
+| `gx:name` | Auto-extracted from `.xodr` filename | `"Testfeld_Niedersachsen_..."` |
+| `gx:description` | Auto-extracted from `.xodr` content | `"road network"` |
+| `gx:license` | Auto-detected from `LICENSE` file | `"MPL-2.0"` |
+| `gx:copyrightOwnedBy` | Parsed from license text | `"see contributors"` |
+| `gx:resourcePolicy` | Default | `"allow"` |
+
+These properties live inside `metadata/hdmap.json` as part of an `envited-x:ResourceDescription` node. The asset is identified by a DID (`did:web:registry.gaia-x.eu:HdMap:{UUID}`).
+
+**Design pattern:** ENVITED-X uses a wrapper architecture — Gaia-X properties go in closed GX-compliant nodes, while domain-specific properties (road types, lane geometry, format version) go in open ENVITED-X shapes. This keeps domain extensions from violating Gaia-X's strict SHACL constraints.
+
+> **You don't need to know Gaia-X to use this repo.** The pipeline handles all GX compliance automatically. The wizard provides a form UI if you want to inspect or edit the GX metadata.
+
+### What Gets Auto-Generated vs. Provided as Input
+
+Everything begins with **one input file**: an OpenDRIVE (`.xodr`) HD-Map file. The pipeline auto-generates most of the asset — the rest is supplementary material you provide (screenshots, docs, license).
+
+| File | Auto-Generated? | How |
+|------|:---:|---|
+| `simulation-data/*.xodr` | — | **Your input file** (the map itself) |
+| `simulation-data/*.bjson` | ✅ | `asset_reducer` extracts a search-optimized binary JSON |
+| `metadata/hdmap.json` | ✅ | `meta_data_extractor` → `jsonLD_creator` builds the JSON-LD |
+| `manifest.json` | ✅ | `structure_creator` → `jsonLD_creator` builds the manifest |
+| `media/roadNetwork.geojson` | ✅ | `xodr_routing_creator` converts road geometry to GeoJSON |
+| `media/bbox.geojson` | ✅ | `xodr_routing_creator` computes the bounding box polygon |
+| `media/3d_preview/*.json` | ✅ | `xodr_to_geojson_caller` converts road/lane/object geometry |
+| `validation-reports/*_asam_*.xqar/.txt` | ✅ | `qualitychecker_caller` runs ASAM OpenDRIVE checks |
+| `validation-reports/*_openmsl_*.xqar/.txt` | ✅ | `qualitychecker_caller` runs OpenMSL checks |
+| `media/*.png` (screenshots) | ❌ | Manually captured in a map viewer |
+| `documentation/*.pdf` | ❌ | Manually written documentation |
+| `documentation/*_stats.txt` | ❌ | Manually created statistics |
+
+### Pipeline Architecture
+
+The asset creation pipeline runs as a sequence of modular steps, each building on the previous one's output:
+
+```text
+ Your .xodr file ──► meta_data_extractor ──► jsonLD_creator (asset)
+ Parse .xodr XML Build hdmap.json
+ 🌐 geocoding
+
+ │
+ ├──► shacl_combiner ──► jsonLD_validator
+ │ Combine SHACL shapes Validate metadata
+ │
+ ├──► qualitychecker_caller
+ │ Run ASAM + OpenMSL checks → validation-reports/
+ │
+ ├──► xodr_routing_creator
+ │ .xodr → roadNetwork.geojson + bbox.geojson
+ │
+ ├──► xodr_to_geojson_caller
+ │ .xodr → 3d_preview/*.json (road/lane/object geometry)
+ │
+ ├──► asset_reducer
+ │ .xodr → .bjson (binary search index)
+ │
+ └──► structure_creator ──► jsonLD_creator (manifest)
+ Organize into EVES-003 Build manifest.json
+ folder structure ──► jsonLD_validator (manifest)
+
+ 🌐 = requires internet connection (reverse geocoding only)
+```
+
+## Generating an Asset (Step by Step)
+
+### Step 1 — Set up the environment
+
+```bash
+make setup
+```
+
+Creates a Python virtual environment (`.venv/`) and installs the pipeline with all dependencies.
+
+### Step 2 — Generate the asset
+
+```bash
+make generate
+```
+
+This single command:
+
+1. **Reads** the `input_manifest.json` blueprint from `generated/input/`
+2. **Runs** the full pipeline → outputs to `generated/output//`
+3. **Creates** a release-ready zip at `generated/output/.zip`
+
+The generated asset contains the complete EVES-003 folder structure:
+
+```text
+generated/output//
+├── simulation-data/ ← .xodr + .bjson search index
+├── metadata/ ← hdmap.json (JSON-LD)
+├── media/ ← GeoJSON maps + impression PNGs + 3D preview
+├── documentation/ ← PDF + stats
+├── validation-reports/ ← ASAM + OpenMSL QC reports
+├── manifest.json
+└── README.md
+```
+
+> 🌐 **Internet required for geocoding only** — reverse geocoding uses the Nominatim API. Ontology schemas and SHACL shapes are bundled via the `ontology-management-base` submodule.
+
+### Step 3 — Validate the generated asset
+
+```bash
+make validate
+```
+
+Runs the SHACL validation suite against the generated `manifest.json` and `hdmap.json`.
+
+### Step 4 — Clean up
+
+```bash
+make generate clean
+```
+
+Removes the `generated/output/` directory. Re-run `make generate` to regenerate.
+
+## Creating Your Own Asset
+
+To create a new HD-Map asset from **your own** `.xodr` file, you have two options:
+
+### Option A — Use `make generate` (recommended)
+
+1. Replace the `.xodr` in `generated/input/` with your own
+2. Replace images and docs in `generated/input/` with yours
+3. Update `generated/input/input_manifest.json` to list your files (see below)
+4. Run `make generate clean && make generate`
+
+The pipeline will run all steps and produce a fresh asset in `generated/output/`.
+
+#### Writing your `input_manifest.json`
+
+The `input_manifest.json` tells the pipeline which files to process, how to categorize them, and who can access them. Here's a minimal example:
+
+```json
+{
+ "@context": [
+ "https://w3id.org/ascs-ev/envited-x/manifest/v5/",
+ { "envited-x": "https://w3id.org/ascs-ev/envited-x/envited-x/v3/" }
+ ],
+ "@id": "did:web:registry.gaia-x.eu:HdMap:generated",
+ "@type": "envited-x:Manifest",
+ "hasArtifacts": [
+ {
+ "@type": "Link",
+ "hasCategory": { "@id": "envited-x:isSimulationData" },
+ "hasAccessRole": { "@id": "envited-x:isOwner" },
+ "hasFileMetadata": {
+ "@type": "FileMetadata",
+ "filePath": "your_map.xodr",
+ "mimeType": "application/xml"
+ }
+ },
+ {
+ "@type": "Link",
+ "hasCategory": { "@id": "envited-x:isMedia" },
+ "hasAccessRole": { "@id": "envited-x:isPublic" },
+ "hasFileMetadata": {
+ "@type": "FileMetadata",
+ "filePath": "screenshot.png",
+ "mimeType": "image/png"
+ }
+ }
+ ],
+ "hasLicense": {
+ "@type": "Link",
+ "hasCategory": { "@id": "envited-x:isLicense" },
+ "hasAccessRole": { "@id": "envited-x:isPublic" },
+ "hasFileMetadata": {
+ "@type": "FileMetadata",
+ "filePath": "LICENSE",
+ "mimeType": "text/plain"
+ }
+ }
+}
+```
+
+**Field reference:**
+
+| Field | Purpose | Values |
+|-------|---------|--------|
+| `filePath` | Filename relative to the input directory | Any filename present in the folder |
+| `mimeType` | MIME type of the file | `application/xml`, `image/png`, `application/pdf`, `text/plain`, etc. |
+| `hasCategory` | EVES-003 category | `envited-x:isSimulationData`, `envited-x:isMedia`, `envited-x:isDocumentation`, `envited-x:isLicense` |
+| `hasAccessRole` | Who can access this file | `envited-x:isOwner` (download), `envited-x:isRegistered` (view), `envited-x:isPublic` (browse) |
+
+> **LICENSE is required.** Every asset must declare a license via the `hasLicense` field. See `generated/input/input_manifest.json` for a complete working example.
+
+### Option B — Run the pipeline directly
+
+You can invoke the pipeline from any directory without `make`. This works in **any shell** — Bash, PowerShell, CMD:
+
+```bash
+# Create a working directory with your input files
+mkdir -p my_asset/input my_asset/output
+
+# Copy your files into the input directory
+cp path/to/your_map.xodr my_asset/input/
+cp path/to/screenshot.png my_asset/input/
+cp path/to/documentation.pdf my_asset/input/
+cp LICENSE my_asset/input/
+```
+
+Create `my_asset/input/input_manifest.json` using the template above, then run:
+
+```bash
+# Bash / Git Bash / macOS / Linux:
+.venv/bin/python -m asset_extraction.main \
+ my_asset/input/input_manifest.json \
+ -config submodules/sl-5-8-asset-tools/configs \
+ -out my_asset/output
+```
+
+```powershell
+# PowerShell:
+.\.venv\Scripts\python.exe -m asset_extraction.main `
+ my_asset\input\input_manifest.json `
+ -config submodules\sl-5-8-asset-tools\configs `
+ -out my_asset\output
+```
+
+> **Legacy format:** The pipeline also accepts `uploadedFiles.json` (a simple JSON array). See the [FAQ](#what-is-the-uploadedfilesjson) for details. New projects should use `input_manifest.json`.
+
+## What Partners Get
+
+When you share the generated asset (the `.zip`), recipients get a self-contained package they can evaluate without asking you anything:
+
+| What | How it helps partners |
+|------|----------------------|
+| **`manifest.json`** | Machine-readable content registry — partners' tools can automatically index, search, and verify every file in the asset |
+| **`metadata/hdmap.json`** | Structured domain metadata — road types, lane counts, coordinate system, geographic bounds — queryable without opening the map |
+| **`validation-reports/`** | Transparent quality — ASAM and OpenMSL compliance reports show exactly which checks passed or failed |
+| **`media/roadNetwork.geojson`** | Visual preview — partners can render the road network on a map without a specialized viewer |
+| **`media/3d_preview/`** | 3D geometry — roads, lanes, junctions, signals as lightweight JSON for web-based visualization |
+| **Access roles** | Per-file access control — you decide what's public (previews), registered-only (docs), or owner-only (raw data) |
+| **CID naming** | Content-addressed zip — the filename IS the hash, so partners can verify integrity without trusting the transport |
+
+## Repo Structure
+
+📁 `.github` → GitHub Actions release workflow
+
+📁 `generated/input` → Pipeline input files (`.xodr`, images, docs, license, `input_manifest.json`)
+
+📁 `generated/output` → Pipeline output (auto-generated, not committed)
+
+- 📁 `/simulation-data` → OpenDRIVE map file (`.xodr`) + search index (`.bjson`)
+- 📁 `/metadata` → `hdmap.json` (domain-specific JSON-LD metadata)
+- 📁 `/media` → Screenshots, GeoJSON maps, 3D preview data
+- 📁 `/documentation` → PDF documentation and statistics
+- 📁 `/validation-reports` → ASAM and OpenMSL quality check results
+- 📄 `/manifest.json` → Content registry linking all files with access roles
+
+📁 `submodules/sl-5-8-asset-tools`
+
+- Asset creation and processing pipeline tools.
+- Contains `ontology-management-base` as a nested submodule with all SHACLs and ontologies needed for validation.
+- Versioned git submodule of [sl-5-8-asset-tools](https://github.com/openMSL/sl-5-8-asset-tools).
+
+📁 `submodules/EVES`
+
+- The [EVES specification](https://ascs-ev.github.io/EVES/EVES-003/eves-003.html) — defines the structure and requirements for Simulation Assets in the ENVITED-X Dataspace.
+- Versioned git submodule of [EVES](https://github.com/ASCS-eV/EVES).
+
+📄 `CONTRIBUTING.md` → Contributing guidelines (DCO sign-off required)
+
+📄 `Makefile` → Central command center for all operations
+
+## Available Make Targets
+
+```bash
+make help # Show all available commands
+
+make setup # Create venv and install all dependencies (incl. QC tools)
+make install # Install packages
+
+make generate # Run full pipeline: .xodr → generated/ asset + zip
+make generate clean # Remove generated/output/ directory
+
+make validate # Validate the generated asset against SHACL
+make lint # Lint (same as validate)
+
+make wizard # Start SD Creation Wizard (Podman, auto-setup if needed)
+make wizard stop # Stop the wizard containers
+
+make clean # Remove all build artifacts, caches, and generated/
+make clean all # Clean + remove venv and submodules (full reset)
+```
+
+## FAQ
+
+### How can I easily create a Simulation Asset?
+
+- **One command:** Run `make generate` — it reads the input blueprint from `generated/input/`, runs the full pipeline, and outputs a complete EVES-003 asset to `generated/output/`.
+
+- **Preparation:** Ensure you understood this repository and the necessary data to create a SimulationAsset for the ENVITED-X Data Space and familiarize yourself with the concept of an asset ([EVES-003](https://ascs-ev.github.io/EVES/EVES-003/eves-003.html)).
+
+- **Guided Web UI:** Run `make wizard` to start the SD Creation Wizard — a SHACL-driven web form for inspecting and enriching asset metadata. See [Two Workflows for Creating Assets](#two-workflows-for-creating-assets) above.
+
+### Which roles can I define for access management?
+
+- **isOwner**: The owner has full access to the asset and its associated files. This role includes permissions to download the asset.
+
+- **isRegistered**: A registered user has access to certain files and data within the asset but can't download the asset.
+
+- **isPublic**: A public user has only viewing rights to certain files or metadata.
+
+### Which SHACL files are used to generate the domain metadata?
+
+You need to use the following ontology from [Ontology Management Base Repository](https://github.com/ASCS-eV/ontology-management-base) — [HdMap Ontology](https://github.com/ASCS-eV/ontology-management-base/blob/main/artifacts/hdmap/hdmap.owl.ttl).
+
+### What does the pipeline need to run?
+
+- **Python 3.12+**, **Git**, and **GNU Make** (see [Prerequisites](#prerequisites))
+- The `sl-5-8-asset-tools` submodule (initialized via `git submodule update --init --recursive` or `make setup`)
+- **Internet connection** — required only for reverse geocoding (Nominatim API); ontology schemas and SHACL shapes are provided locally by the `ontology-management-base` submodule
+- Quality checkers (ASAM + OpenMSL) are installed automatically by `make setup`
+
+### How do I enable debug logging?
+
+```bash
+# Bash / Git Bash / macOS / Linux:
+SL58_LOG_MODE=debug make generate
+
+# PowerShell:
+$env:SL58_LOG_MODE = "debug"; make generate
+
+# Or with direct Python invocation:
+$env:SL58_LOG_MODE = "debug"
+.\.venv\Scripts\python.exe -m asset_extraction.main ...
+```
+
+Shows full subprocess command lines, stdout/stderr, and tracebacks.
+
+### What is the `uploadedFiles.json`?
+
+It's the legacy input format — a simple JSON array that tells the pipeline which files to process and how to categorize them. Each entry has:
+
+- `filename` — path or URL to the file
+- `type` — what kind of file it is (`Asset`, `Document`, `Image`, `License`, etc.)
+- `category` — the EVES-003 category (`isSimulationData`, `isDocumentation`, `isMedia`, etc.)
+- `did` (optional) — a decentralized identifier for the asset
+
+The modern replacement is `input_manifest.json` (JSON-LD format). Both formats are supported. See `generated/input/input_manifest.json` for a complete example.
+
+### Known Limitations
+
+- **Geocoding timeouts** — The `meta_data_extractor` uses the Nominatim API for reverse geocoding. If the API is slow or rate-limited, the pipeline may fail. Simply retry.
+- **Quality checkers install from Git branches** — The `[qc]` optional dependencies (installed automatically by `make setup`) pull from Git branches and may take a while on first install. If you see stale checker errors after switching branches, run `make clean all && make setup` to get a fresh environment.
+- **Ontology versions** — The pipeline generates metadata using the **latest** ontology versions. Both current and older versions are valid but produce different JSON-LD structures.
+
+### Podman / Wizard Troubleshooting
+
+The SD Creation Wizard (`make wizard`) uses Podman containers. Common issues on Windows:
+
+| Error | Cause | Fix |
+|-------|-------|-----|
+| `CreateFile \\.\pipe\docker_engine: All pipe instances are busy` | Docker Desktop is running and holds the Docker API pipe | Quit Docker Desktop before starting Podman, or run `podman machine stop && podman machine start` |
+| `machine not in running state` | Podman machine failed to start | Run `podman machine rm` then `podman machine init && podman machine start` |
+| Port 4200 or 8080 already in use | Another process holds the port | `make wizard stop` first, or stop the other process |
diff --git a/asset.zip b/asset.zip
deleted file mode 100644
index d65624a..0000000
Binary files a/asset.zip and /dev/null differ
diff --git a/asset/README.md b/asset/README.md
deleted file mode 100644
index 823205c..0000000
--- a/asset/README.md
+++ /dev/null
@@ -1,63 +0,0 @@
-# Testfeld Niedersachsen ALKS xodr sample
-
-Simple hdmap example file on the Testfeld Niedersachsen suitable for ALKS scenarios.
-
-## Digital Assets
-
-This is a digital asset according to the ENVITED Ecosystem Specification [EVES-003](https://ascs-ev.github.io/EVES/EVES-003/eves-003.html) for the ENVITED-X Data Space. It can be used as a template for other dataspaces as well. It contains a fully described and consistent example of a digital asset including a **`manifest.json` - file** as content registry.
-
-A complete **`digital asset`** in a specific domain includes the data itself and all necessary files for describing, evaluating, and visualizing the dataset.
-
-## Example Asset Folder Structure
-
-A sample **`digital asset`** can be downloaded from the [GAIA-X4PLC-AAD/hd-map-asset-example](https://github.com/GAIA-X4PLC-AAD/hd-map-asset-example) as artifact of the lastest release (**`asset.zip`**) containing the following structure:
-
-📁 `asset`
-
-- 📁 `simulation-data`
- - 📄 `assetName.xodr`
- - 📄 *`assetName_offset.xodr`* (optional)
-- 📁 `documentation`
- - 📄 `assetName_Documentation.pdf`
- - 📄 *`assetName_[Name].[ext]`* (optional)
-- 📁 `metadata`
- - 📄 `hdmap_instance.json`
-- 📁 *`validation-reports`* (optional)
- - 📄 *`qcReport.txt`* (optional)
-- 📁 `media`
- - 📁 `3d_preview` *-> 3d preview files* (optional)
- - 📄 `assetName_01.png` *-> eyecatcher*
- - 📄 *`assetName_[XX].png`* *-> impression* (optional)
- - 📄 `bbox.geojson`
- - 📄 *`roadNetwork.geojson`* (optional)
- - 📄 *`detailRoadNetwork.geojson`* (optional)
-- 📄 `README`
-- 📄 `manifest.json`
-
-### Legend
-
-- 📁 `folder-name`: A folder in the repo.
-- 📄 `assetName`: A file in the repo.
-- (optional) : This file or folder is optional and can be added or omitted as needed.
-
-### Description of the respective folders
-
-- 📁 `simulation-data` : *Contains all valuble data files of the asset.*
-- 📁 `documentation` : *Contains an instruction as well as technical specification of the asset.*
-- 📁 `metadata` : *Contains all metadata which are necassary to describe this asset, that includes all domain sepcific metadata from the [Ontology Management Base Repository](https://github.com/GAIA-X4PLC-AAD/ontology-management-base) (and all GAIA-X metadata form the [gaia-x-compliant-claims-example](https://github.com/GAIA-X4PLC-AAD/gaia-x-compliant-claims-example) to be compliant with the [GAIA-X Trust Framework](https://docs.gaia-x.eu/policy-rules-committee/trust-framework/22.10/). -> needs to be defined in a next step)*
-- 📁 `validation-reports` : *Contains the results provided by a validation suite.*
-- 📁 `media` : *Contains all viusalization content from the asset which includes positionings decribed by a bounding box or maps as well as images and videos.*
-
-### Description of the respective files
-
-📄 `manifest_reference.json`:
-
-- *This manifest file defined the link structure depending on the domain sepecific asset.zip. It includes a context section defining namespaces for various terms, an identifier (`@id`) for the asset, and a type (`@type`) indicating it is a manifest. The `manifest:links` section contains multiple entries, each specifying a type of link (e.g., license, simulation-data, media) with details such as relative paths, formats, and access roles. Optional metadata and visualization files are also included, with different access roles like `isOwner`,`isRegistered`, and `isPublic`.*
-
-📄 `hdmap_instance.json` (domain metadata):
-
-- *This JSON file describes the metadata and links associated with a high-definition map (HD map) used in the Gaia-X 4 PLC-AAD project. It includes a context section defining namespaces for various terms, an identifier (@id) for the HD map, and a type (@type) indicating it is an HD map. The `DataResource` section provides details such as the name, description, and the GAIA-X metadata from the [gaia-x-compliant-claims-example](https://github.com/GAIA-X4PLC-AAD/gaia-x-compliant-claims-example) to be compliant with the [GAIA-X Trust Framework](https://docs.gaia-x.eu/policy-rules-committee/trust-framework/22.10/). The `manifest` section contains multiple entries, each specified by a category of link (e.g., simulation-data, metadata, media, documentation, validation-report) with details such as URLs and types. The `format` section specifies the type and version of the HD map format. The `content` section describes road types, lane types, and traffic direction. The `quantity` section provides measurements like length, elevation range, and counts of intersections, traffic lights, and signs. The `quality` section details precision and accuracy metrics. The `dataSource` section lists the data sources and measurement system used. Finally, the `georeference` section provides geolocation information, including the bounding box and geodetic reference system.*
-
-### Create an asset
-
-You can use the GaiaX 4 PLC-AAD [Provider Services](https://github.com/GAIA-X4PLC-AAD/provider-services) and [Provider Tools](https://github.com/GAIA-X4PLC-AAD/provider-tools) to create your own digital asset.
diff --git a/asset/documentation/Testfeld_Niedersachsen_ALKS_xodr_sample_offset_documentation.pdf b/asset/documentation/Testfeld_Niedersachsen_ALKS_xodr_sample_offset_documentation.pdf
deleted file mode 100644
index 31ad4f5..0000000
Binary files a/asset/documentation/Testfeld_Niedersachsen_ALKS_xodr_sample_offset_documentation.pdf and /dev/null differ
diff --git a/asset/manifest_reference.json b/asset/manifest_reference.json
deleted file mode 100644
index 243dede..0000000
--- a/asset/manifest_reference.json
+++ /dev/null
@@ -1,734 +0,0 @@
-{
- "@context": {
- "envited-x": "https://ontologies.envited-x.net/envited-x/v2/ontology#",
- "manifest": "https://ontologies.envited-x.net/manifest/v4/ontology#",
- "gx": "https://registry.lab.gaia-x.eu/development/api/trusted-shape-registry/v1/shapes/jsonld/trustframework#",
- "sh": "http://www.w3.org/ns/shacl#",
- "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
- "xsd": "http://www.w3.org/2001/XMLSchema#",
- "skos": "http://www.w3.org/2004/02/skos/core#"
- },
- "@id": "did:web:registry.gaia-x.eu:Manifest:ZNh9Z-tHQpkpxJhNobhUVmauYxrfTAZdQy9L",
- "@type": "envited-x:Manifest",
- "manifest:hasManifestReference": {
- "@type": "manifest:Link",
- "manifest:hasAccessRole": {
- "@type": "manifest:AccessRole",
- "@id": "envited-x:isPublic"
- },
- "manifest:hasCategory": {
- "@type": "manifest:Category",
- "@id": "envited-x:isManifest"
- },
- "manifest:hasFileMetadata": {
- "@type": "manifest:FileMetadata",
- "manifest:filePath": {
- "@value": "./manifest_reference.json",
- "@type": "xsd:anyURI"
- },
- "manifest:mimeType": {
- "@value": "application/ld+json",
- "@type": "xsd:string"
- }
- }
- },
- "manifest:hasLicense": {
- "@type": "manifest:License",
- "gx:license": {
- "@value": "MPL-2.0"
- },
- "manifest:licenseData": {
- "@type": "manifest:Link",
- "manifest:hasAccessRole": {
- "@type": "manifest:AccessRole",
- "@id": "envited-x:isPublic"
- },
- "manifest:hasCategory": {
- "@type": "manifest:Category",
- "@id": "envited-x:isLicense"
- },
- "manifest:hasFileMetadata": {
- "@type": "manifest:FileMetadata",
- "manifest:filePath": {
- "@value": "https://www.mozilla.org/en-US/MPL/2.0/",
- "@type": "xsd:anyURI"
- },
- "manifest:mimeType": {
- "@value": "text/html",
- "@type": "xsd:string"
- }
- }
- }
- },
- "manifest:hasArtifacts": [
- {
- "@type": "manifest:Link",
- "manifest:hasAccessRole": {
- "@type": "manifest:AccessRole",
- "@id": "envited-x:isOwner"
- },
- "manifest:hasCategory": {
- "@type": "manifest:Category",
- "@id": "envited-x:isSimulationData"
- },
- "manifest:hasFileMetadata": {
- "@type": "manifest:FileMetadata",
- "manifest:filePath": {
- "@value": "./simulation-data/Testfeld_Niedersachsen_ALKS_xodr_sample_offset.xodr",
- "@type": "xsd:anyURI"
- },
- "manifest:mimeType": {
- "@value": "application/x-xodr",
- "@type": "xsd:string"
- },
- "manifest:fileSize": {
- "@value": 645096,
- "@type": "xsd:integer"
- },
- "manifest:filename": {
- "@value": "Testfeld_Niedersachsen_ALKS_xodr_sample_offset.xodr",
- "@type": "xsd:string"
- }
- }
- },
- {
- "@type": "manifest:Link",
- "manifest:hasAccessRole": {
- "@type": "manifest:AccessRole",
- "@id": "envited-x:isRegistered"
- },
- "manifest:hasCategory": {
- "@type": "manifest:Category",
- "@id": "envited-x:isMiscellaneous"
- },
- "manifest:hasFileMetadata": {
- "@type": "manifest:FileMetadata",
- "manifest:filePath": {
- "@value": "./simulation-data/Testfeld_Niedersachsen_ALKS_xodr_sample_offset.bjson",
- "@type": "xsd:anyURI"
- },
- "manifest:mimeType": {
- "@value": "application/json",
- "@type": "xsd:string"
- },
- "manifest:fileSize": {
- "@value": 61104,
- "@type": "xsd:integer"
- },
- "manifest:filename": {
- "@value": "Testfeld_Niedersachsen_ALKS_xodr_sample_offset.bjson",
- "@type": "xsd:string"
- }
- }
- },
- {
- "@type": "manifest:Link",
- "manifest:hasAccessRole": {
- "@type": "manifest:AccessRole",
- "@id": "envited-x:isPublic"
- },
- "manifest:hasCategory": {
- "@type": "manifest:Category",
- "@id": "envited-x:isDocumentation"
- },
- "manifest:hasFileMetadata": {
- "@type": "manifest:FileMetadata",
- "manifest:filePath": {
- "@value": "./documentation/Testfeld_Niedersachsen_ALKS_xodr_sample_offset_documentation.pdf",
- "@type": "xsd:anyURI"
- },
- "manifest:mimeType": {
- "@value": "application/pdf",
- "@type": "xsd:string"
- },
- "manifest:fileSize": {
- "@value": 101219,
- "@type": "xsd:integer"
- },
- "manifest:filename": {
- "@value": "Testfeld_Niedersachsen_ALKS_xodr_sample_offset_documentation.pdf",
- "@type": "xsd:string"
- }
- }
- },
- {
- "@type": "manifest:Link",
- "manifest:hasAccessRole": {
- "@type": "manifest:AccessRole",
- "@id": "envited-x:isRegistered"
- },
- "manifest:hasCategory": {
- "@type": "manifest:Category",
- "@id": "envited-x:isDocumentation"
- },
- "manifest:hasFileMetadata": {
- "@type": "manifest:FileMetadata",
- "manifest:filePath": {
- "@value": "./documentation/Testfeld_Niedersachsen_ALKS_xodr_sample_offset_documentation_stats.txt",
- "@type": "xsd:anyURI"
- },
- "manifest:mimeType": {
- "@value": "text/plain",
- "@type": "xsd:string"
- },
- "manifest:fileSize": {
- "@value": 4536,
- "@type": "xsd:integer"
- },
- "manifest:filename": {
- "@value": "Testfeld_Niedersachsen_ALKS_xodr_sample_offset_documentation_stats.txt",
- "@type": "xsd:string"
- }
- }
- },
- {
- "@type": "manifest:Link",
- "manifest:iri": {
- "@id": "did:web:registry.gaia-x.eu:HdMap:DjHgK5ErTBow1Ya3J05tW9l12skGWgZn6kA9"
- },
- "skos:note": {
- "@value": "This is the domain metadata for a HD Map.",
- "@type": "xsd:string"
- },
- "sh:conformsTo": [
- {
- "@id": "https://ontologies.envited-x.net/hdmap/v3/ontology"
- }
- ],
- "manifest:hasAccessRole": {
- "@type": "manifest:AccessRole",
- "@id": "envited-x:isPublic"
- },
- "manifest:hasCategory": {
- "@type": "manifest:Category",
- "@id": "envited-x:isMetadata"
- },
- "manifest:hasFileMetadata": {
- "@type": "manifest:FileMetadata",
- "manifest:filePath": {
- "@value": "./metadata/hdmap_instance.json",
- "@type": "xsd:anyURI"
- },
- "manifest:mimeType": {
- "@value": "application/ld+json",
- "@type": "xsd:string"
- },
- "manifest:fileSize": {
- "@value": 3751,
- "@type": "xsd:integer"
- },
- "manifest:filename": {
- "@value": "hdmap_instance.json",
- "@type": "xsd:string"
- }
- }
- },
- {
- "@type": "manifest:Link",
- "manifest:hasAccessRole": {
- "@type": "manifest:AccessRole",
- "@id": "envited-x:isRegistered"
- },
- "manifest:hasCategory": {
- "@type": "manifest:Category",
- "@id": "envited-x:isValidationReport"
- },
- "manifest:hasFileMetadata": {
- "@type": "manifest:FileMetadata",
- "manifest:filePath": {
- "@value": "./validation-reports/Testfeld_Niedersachsen_ALKS_xodr_sample_offset_asam_cb_xodr.xqar",
- "@type": "xsd:anyURI"
- },
- "manifest:mimeType": {
- "@value": "application/x-xqar",
- "@type": "xsd:string"
- },
- "manifest:fileSize": {
- "@value": 9524,
- "@type": "xsd:integer"
- },
- "manifest:filename": {
- "@value": "Testfeld_Niedersachsen_ALKS_xodr_sample_offset_asam_cb_xodr.xqar",
- "@type": "xsd:string"
- }
- }
- },
- {
- "@type": "manifest:Link",
- "manifest:hasAccessRole": {
- "@type": "manifest:AccessRole",
- "@id": "envited-x:isPublic"
- },
- "manifest:hasCategory": {
- "@type": "manifest:Category",
- "@id": "envited-x:isValidationReport"
- },
- "manifest:hasFileMetadata": {
- "@type": "manifest:FileMetadata",
- "manifest:filePath": {
- "@value": "./validation-reports/Testfeld_Niedersachsen_ALKS_xodr_sample_offset_asam_cb_xodr_QCReport.txt",
- "@type": "xsd:anyURI"
- },
- "manifest:mimeType": {
- "@value": "text/plain",
- "@type": "xsd:string"
- },
- "manifest:fileSize": {
- "@value": 14106,
- "@type": "xsd:integer"
- },
- "manifest:filename": {
- "@value": "Testfeld_Niedersachsen_ALKS_xodr_sample_offset_asam_cb_xodr_QCReport.txt",
- "@type": "xsd:string"
- }
- }
- },
- {
- "@type": "manifest:Link",
- "manifest:hasAccessRole": {
- "@type": "manifest:AccessRole",
- "@id": "envited-x:isRegistered"
- },
- "manifest:hasCategory": {
- "@type": "manifest:Category",
- "@id": "envited-x:isValidationReport"
- },
- "manifest:hasFileMetadata": {
- "@type": "manifest:FileMetadata",
- "manifest:filePath": {
- "@value": "./validation-reports/Testfeld_Niedersachsen_ALKS_xodr_sample_offset_openmsl_cb_xodr.xqar",
- "@type": "xsd:anyURI"
- },
- "manifest:mimeType": {
- "@value": "application/x-xqar",
- "@type": "xsd:string"
- },
- "manifest:fileSize": {
- "@value": 62409,
- "@type": "xsd:integer"
- },
- "manifest:filename": {
- "@value": "Testfeld_Niedersachsen_ALKS_xodr_sample_offset_openmsl_cb_xodr.xqar",
- "@type": "xsd:string"
- }
- }
- },
- {
- "@type": "manifest:Link",
- "manifest:hasAccessRole": {
- "@type": "manifest:AccessRole",
- "@id": "envited-x:isPublic"
- },
- "manifest:hasCategory": {
- "@type": "manifest:Category",
- "@id": "envited-x:isDocumentation"
- },
- "manifest:hasFileMetadata": {
- "@type": "manifest:FileMetadata",
- "manifest:filePath": {
- "@value": "./README.md",
- "@type": "xsd:anyURI"
- },
- "manifest:mimeType": {
- "@value": "text/markdown",
- "@type": "xsd:string"
- },
- "manifest:filename": {
- "@value": "README.md",
- "@type": "xsd:string"
- }
- }
- },
- {
- "@type": "manifest:Link",
- "manifest:hasAccessRole": {
- "@type": "manifest:AccessRole",
- "@id": "envited-x:isPublic"
- },
- "manifest:hasCategory": {
- "@type": "manifest:Category",
- "@id": "envited-x:isMedia"
- },
- "manifest:hasFileMetadata": {
- "@type": "manifest:FileMetadata",
- "manifest:filePath": {
- "@value": "./media/Testfeld_Niedersachsen_ALKS_xodr_sample_offset_impression-01.png",
- "@type": "xsd:anyURI"
- },
- "manifest:mimeType": {
- "@value": "image/png",
- "@type": "xsd:string"
- },
- "manifest:filename": {
- "@value": "Testfeld_Niedersachsen_ALKS_xodr_sample_offset_impression-01.png",
- "@type": "xsd:string"
- }
- }
- },
- {
- "@type": "manifest:Link",
- "manifest:hasAccessRole": {
- "@type": "manifest:AccessRole",
- "@id": "envited-x:isRegistered"
- },
- "manifest:hasCategory": {
- "@type": "manifest:Category",
- "@id": "envited-x:isMedia"
- },
- "manifest:hasFileMetadata": {
- "@type": "manifest:FileMetadata",
- "manifest:filePath": {
- "@value": "./media/Testfeld_Niedersachsen_ALKS_xodr_sample_offset_impression-02.png",
- "@type": "xsd:anyURI"
- },
- "manifest:mimeType": {
- "@value": "image/png",
- "@type": "xsd:string"
- },
- "manifest:filename": {
- "@value": "Testfeld_Niedersachsen_ALKS_xodr_sample_offset_impression-02.png",
- "@type": "xsd:string"
- }
- }
- },
- {
- "@type": "manifest:Link",
- "manifest:hasAccessRole": {
- "@type": "manifest:AccessRole",
- "@id": "envited-x:isRegistered"
- },
- "manifest:hasCategory": {
- "@type": "manifest:Category",
- "@id": "envited-x:isMedia"
- },
- "manifest:hasFileMetadata": {
- "@type": "manifest:FileMetadata",
- "manifest:filePath": {
- "@value": "./media/Testfeld_Niedersachsen_ALKS_xodr_sample_offset_impression-03.png",
- "@type": "xsd:anyURI"
- },
- "manifest:mimeType": {
- "@value": "image/png",
- "@type": "xsd:string"
- },
- "manifest:filename": {
- "@value": "Testfeld_Niedersachsen_ALKS_xodr_sample_offset_impression-03.png",
- "@type": "xsd:string"
- }
- }
- },
- {
- "@type": "manifest:Link",
- "manifest:hasAccessRole": {
- "@type": "manifest:AccessRole",
- "@id": "envited-x:isRegistered"
- },
- "manifest:hasCategory": {
- "@type": "manifest:Category",
- "@id": "envited-x:isMedia"
- },
- "manifest:hasFileMetadata": {
- "@type": "manifest:FileMetadata",
- "manifest:filePath": {
- "@value": "./media/bbox.geojson",
- "@type": "xsd:anyURI"
- },
- "manifest:mimeType": {
- "@value": "application/x-geojson",
- "@type": "xsd:string"
- },
- "manifest:filename": {
- "@value": "bbox.geojson",
- "@type": "xsd:string"
- }
- }
- },
- {
- "@type": "manifest:Link",
- "manifest:hasAccessRole": {
- "@type": "manifest:AccessRole",
- "@id": "envited-x:isRegistered"
- },
- "manifest:hasCategory": {
- "@type": "manifest:Category",
- "@id": "envited-x:isMedia"
- },
- "manifest:hasFileMetadata": {
- "@type": "manifest:FileMetadata",
- "manifest:filePath": {
- "@value": "./media/roadNetwork.geojson",
- "@type": "xsd:anyURI"
- },
- "manifest:mimeType": {
- "@value": "application/x-geojson",
- "@type": "xsd:string"
- },
- "manifest:filename": {
- "@value": "roadNetwork.geojson",
- "@type": "xsd:string"
- }
- }
- },
- {
- "@type": "manifest:Link",
- "manifest:hasAccessRole": {
- "@type": "manifest:AccessRole",
- "@id": "envited-x:isRegistered"
- },
- "manifest:hasCategory": {
- "@type": "manifest:Category",
- "@id": "envited-x:isMedia"
- },
- "manifest:hasFileMetadata": {
- "@type": "manifest:FileMetadata",
- "manifest:filePath": {
- "@value": "./media/3d_preview/breakLines.json",
- "@type": "xsd:anyURI"
- },
- "manifest:mimeType": {
- "@value": "application/json",
- "@type": "xsd:string"
- },
- "manifest:filename": {
- "@value": "breakLines.json",
- "@type": "xsd:string"
- }
- }
- },
- {
- "@type": "manifest:Link",
- "manifest:hasAccessRole": {
- "@type": "manifest:AccessRole",
- "@id": "envited-x:isRegistered"
- },
- "manifest:hasCategory": {
- "@type": "manifest:Category",
- "@id": "envited-x:isMedia"
- },
- "manifest:hasFileMetadata": {
- "@type": "manifest:FileMetadata",
- "manifest:filePath": {
- "@value": "./media/3d_preview/junctions.json",
- "@type": "xsd:anyURI"
- },
- "manifest:mimeType": {
- "@value": "application/json",
- "@type": "xsd:string"
- },
- "manifest:filename": {
- "@value": "junctions.json",
- "@type": "xsd:string"
- }
- }
- },
- {
- "@type": "manifest:Link",
- "manifest:hasAccessRole": {
- "@type": "manifest:AccessRole",
- "@id": "envited-x:isRegistered"
- },
- "manifest:hasCategory": {
- "@type": "manifest:Category",
- "@id": "envited-x:isMedia"
- },
- "manifest:hasFileMetadata": {
- "@type": "manifest:FileMetadata",
- "manifest:filePath": {
- "@value": "./media/3d_preview/laneSections.json",
- "@type": "xsd:anyURI"
- },
- "manifest:mimeType": {
- "@value": "application/json",
- "@type": "xsd:string"
- },
- "manifest:filename": {
- "@value": "laneSections.json",
- "@type": "xsd:string"
- }
- }
- },
- {
- "@type": "manifest:Link",
- "manifest:hasAccessRole": {
- "@type": "manifest:AccessRole",
- "@id": "envited-x:isRegistered"
- },
- "manifest:hasCategory": {
- "@type": "manifest:Category",
- "@id": "envited-x:isMedia"
- },
- "manifest:hasFileMetadata": {
- "@type": "manifest:FileMetadata",
- "manifest:filePath": {
- "@value": "./media/3d_preview/lanes.json",
- "@type": "xsd:anyURI"
- },
- "manifest:mimeType": {
- "@value": "application/json",
- "@type": "xsd:string"
- },
- "manifest:filename": {
- "@value": "lanes.json",
- "@type": "xsd:string"
- }
- }
- },
- {
- "@type": "manifest:Link",
- "manifest:hasAccessRole": {
- "@type": "manifest:AccessRole",
- "@id": "envited-x:isRegistered"
- },
- "manifest:hasCategory": {
- "@type": "manifest:Category",
- "@id": "envited-x:isMedia"
- },
- "manifest:hasFileMetadata": {
- "@type": "manifest:FileMetadata",
- "manifest:filePath": {
- "@value": "./media/3d_preview/objects.json",
- "@type": "xsd:anyURI"
- },
- "manifest:mimeType": {
- "@value": "application/json",
- "@type": "xsd:string"
- },
- "manifest:filename": {
- "@value": "objects.json",
- "@type": "xsd:string"
- }
- }
- },
- {
- "@type": "manifest:Link",
- "manifest:hasAccessRole": {
- "@type": "manifest:AccessRole",
- "@id": "envited-x:isRegistered"
- },
- "manifest:hasCategory": {
- "@type": "manifest:Category",
- "@id": "envited-x:isMedia"
- },
- "manifest:hasFileMetadata": {
- "@type": "manifest:FileMetadata",
- "manifest:filePath": {
- "@value": "./media/3d_preview/refLine.json",
- "@type": "xsd:anyURI"
- },
- "manifest:mimeType": {
- "@value": "application/json",
- "@type": "xsd:string"
- },
- "manifest:filename": {
- "@value": "refLine.json",
- "@type": "xsd:string"
- }
- }
- },
- {
- "@type": "manifest:Link",
- "manifest:hasAccessRole": {
- "@type": "manifest:AccessRole",
- "@id": "envited-x:isRegistered"
- },
- "manifest:hasCategory": {
- "@type": "manifest:Category",
- "@id": "envited-x:isMedia"
- },
- "manifest:hasFileMetadata": {
- "@type": "manifest:FileMetadata",
- "manifest:filePath": {
- "@value": "./media/3d_preview/roadMarks.json",
- "@type": "xsd:anyURI"
- },
- "manifest:mimeType": {
- "@value": "application/json",
- "@type": "xsd:string"
- },
- "manifest:filename": {
- "@value": "roadMarks.json",
- "@type": "xsd:string"
- }
- }
- },
- {
- "@type": "manifest:Link",
- "manifest:hasAccessRole": {
- "@type": "manifest:AccessRole",
- "@id": "envited-x:isRegistered"
- },
- "manifest:hasCategory": {
- "@type": "manifest:Category",
- "@id": "envited-x:isMedia"
- },
- "manifest:hasFileMetadata": {
- "@type": "manifest:FileMetadata",
- "manifest:filePath": {
- "@value": "./media/3d_preview/roads.json",
- "@type": "xsd:anyURI"
- },
- "manifest:mimeType": {
- "@value": "application/json",
- "@type": "xsd:string"
- },
- "manifest:filename": {
- "@value": "roads.json",
- "@type": "xsd:string"
- }
- }
- },
- {
- "@type": "manifest:Link",
- "manifest:hasAccessRole": {
- "@type": "manifest:AccessRole",
- "@id": "envited-x:isRegistered"
- },
- "manifest:hasCategory": {
- "@type": "manifest:Category",
- "@id": "envited-x:isMedia"
- },
- "manifest:hasFileMetadata": {
- "@type": "manifest:FileMetadata",
- "manifest:filePath": {
- "@value": "./media/3d_preview/signals.json",
- "@type": "xsd:anyURI"
- },
- "manifest:mimeType": {
- "@value": "application/json",
- "@type": "xsd:string"
- },
- "manifest:filename": {
- "@value": "signals.json",
- "@type": "xsd:string"
- }
- }
- },
- {
- "@type": "manifest:Link",
- "manifest:hasAccessRole": {
- "@type": "manifest:AccessRole",
- "@id": "envited-x:isRegistered"
- },
- "manifest:hasCategory": {
- "@type": "manifest:Category",
- "@id": "envited-x:isValidationReport"
- },
- "manifest:hasFileMetadata": {
- "@type": "manifest:FileMetadata",
- "manifest:filePath": {
- "@value": "./validation-reports/Testfeld_Niedersachsen_ALKS_xodr_sample_offset_openmsl_cb_xodr_QCReport.txt",
- "@type": "xsd:anyURI"
- },
- "manifest:mimeType": {
- "@value": "text/plain",
- "@type": "xsd:string"
- },
- "manifest:filename": {
- "@value": "Testfeld_Niedersachsen_ALKS_xodr_sample_offset_openmsl_cb_xodr_QCReport.txt",
- "@type": "xsd:string"
- }
- }
- }
- ],
- "manifest:hasReferencedArtifacts": []
-}
diff --git a/asset/media/3d_preview/breakLines.json b/asset/media/3d_preview/breakLines.json
deleted file mode 100644
index ba70e83..0000000
--- a/asset/media/3d_preview/breakLines.json
+++ /dev/null
@@ -1 +0,0 @@
-{"features":[{"geometry":{"coordinates":[[4.53266994,0.02363449,94.72174826],[4.53266938,0.02363277,94.72072009],[4.53266882,0.02363106,94.71968043],[4.53266826,0.02362935,94.71863145],[4.5326677,0.02362763,94.71757532],[4.53266713,0.02362592,94.71651425],[4.53266657,0.02362421,94.71545045],[4.53266599,0.0236225,94.71438616],[4.53266541,0.02362079,94.71332361],[4.53266482,0.02361909,94.71226508],[4.53266422,0.02361739,94.71121128],[4.53266362,0.02361569,94.71015669],[4.53266301,0.02361399,94.70909415],[4.5326624,0.0236123,94.70801756],[4.53266177,0.02361061,94.70692522],[4.53266114,0.02360892,94.70581656],[4.5326605,0.02360723,94.70469099],[4.53265986,0.02360554,94.70354791],[4.53265922,0.02360386,94.70238673],[4.53265857,0.02360217,94.70120682],[4.53265793,0.02360049,94.70000758],[4.53265729,0.0235988,94.69878833],[4.53265665,0.02359711,94.69754729],[4.53265601,0.02359543,94.69628175],[4.53265537,0.02359374,94.69499333],[4.53265473,0.02359205,94.69368796],[4.53265409,0.02359037,94.69236954],[4.53265345,0.02358868,94.69103894],[4.53265281,0.023587,94.68969666],[4.53265216,0.02358531,94.68834323],[4.5326515,0.02358363,94.68697919],[4.53265083,0.02358196,94.68560509],[4.53265014,0.02358029,94.68422151],[4.53264945,0.02357862,94.68282905],[4.53264874,0.02357695,94.681429],[4.53264803,0.02357529,94.68002539],[4.53264731,0.02357363,94.67862298],[4.5326466,0.02357197,94.67722472],[4.5326459,0.0235703,94.67582621],[4.5326452,0.02356864,94.67442114],[4.53264451,0.02356697,94.67300317],[4.53264383,0.0235653,94.67156592],[4.53264314,0.02356363,94.67010297],[4.53264247,0.02356196,94.66860783],[4.53264179,0.02356028,94.66707402],[4.53264111,0.02355861,94.66549496],[4.53264041,0.02355695,94.66386407],[4.5326397,0.02355529,94.66217471],[4.53263897,0.02355363,94.6604202],[4.5326382,0.02355199,94.65859382],[4.53263741,0.02355038,94.65671402]],"type":"LineString"},"type":"feature","properties":{"successorId":-5,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"roadId":"3000440","id":-5,"type":"none","predecessorId":-7}},{"geometry":{"coordinates":[[4.5327081,0.02362164,94.72174826],[4.53270753,0.02361993,94.72072009],[4.53270695,0.02361823,94.71968043],[4.53270637,0.02361652,94.71863145],[4.53270579,0.02361481,94.71757532],[4.53270521,0.0236131,94.71651425],[4.53270463,0.0236114,94.71545045],[4.53270405,0.02360969,94.71438616],[4.53270347,0.02360798,94.71332361],[4.53270289,0.02360628,94.71226508],[4.53270232,0.02360457,94.71121128],[4.53270174,0.02360286,94.71015669],[4.53270116,0.02360115,94.70909415],[4.53270058,0.02359945,94.70801756],[4.53269999,0.02359774,94.70692522],[4.53269939,0.02359604,94.70581656],[4.53269879,0.02359434,94.70469099],[4.53269818,0.02359265,94.70354791],[4.53269757,0.02359095,94.70238673],[4.53269694,0.02358926,94.70120682],[4.53269631,0.02358757,94.70000758],[4.53269568,0.02358588,94.69878833],[4.53269503,0.0235842,94.69754729],[4.53269438,0.02358251,94.69628175],[4.53269371,0.02358083,94.69499333],[4.53269304,0.02357916,94.69368796],[4.53269237,0.02357748,94.69236954],[4.53269169,0.02357581,94.69103894],[4.53269101,0.02357414,94.68969666],[4.53269032,0.02357247,94.68834323],[4.53268963,0.0235708,94.68697919],[4.53268894,0.02356913,94.68560509],[4.53268824,0.02356746,94.68422151],[4.53268755,0.02356579,94.68282905],[4.53268686,0.02356412,94.681429],[4.53268617,0.02356245,94.68002539],[4.53268548,0.02356078,94.67862298],[4.5326848,0.02355911,94.67722472],[4.53268412,0.02355744,94.67582621],[4.53268345,0.02355576,94.67442114],[4.53268278,0.02355409,94.67300317],[4.5326821,0.02355241,94.67156592],[4.53268143,0.02355074,94.67010297],[4.53268075,0.02354906,94.66860783],[4.53268007,0.02354739,94.66707402],[4.53267938,0.02354572,94.66549496],[4.53267868,0.02354406,94.66386407],[4.53267798,0.02354239,94.66217471],[4.53267726,0.02354073,94.6604202],[4.53267652,0.02353908,94.65859382],[4.53267579,0.02353745,94.65671402]],"type":"LineString"},"type":"feature","properties":{"successorId":-4,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"3000440","id":-4,"type":"border","predecessorId":-6}},{"geometry":{"coordinates":[[4.53270954,0.02362116,94.57174826],[4.53270895,0.02361946,94.57072009],[4.53270836,0.02361775,94.56968043],[4.53270777,0.02361605,94.56863145],[4.53270718,0.02361435,94.56757532],[4.53270659,0.02361264,94.56651425],[4.53270599,0.02361094,94.56545045],[4.5327054,0.02360924,94.56438616],[4.53270481,0.02360753,94.56332361],[4.53270423,0.02360583,94.56226508],[4.53270364,0.02360412,94.56121128],[4.53270306,0.02360242,94.56015669],[4.53270247,0.02360071,94.55909415],[4.53270188,0.02359901,94.55801756],[4.53270129,0.02359731,94.55692522],[4.53270069,0.02359561,94.55581656],[4.53270008,0.02359391,94.55469099],[4.53269947,0.02359221,94.55354791],[4.53269885,0.02359052,94.55238673],[4.53269823,0.02358883,94.55120682],[4.5326976,0.02358714,94.55000758],[4.53269696,0.02358545,94.54878833],[4.53269631,0.02358377,94.54754729],[4.53269565,0.02358208,94.54628175],[4.53269499,0.02358041,94.54499333],[4.53269432,0.02357873,94.54368796],[4.53269364,0.02357705,94.54236954],[4.53269297,0.02357538,94.54103894],[4.53269228,0.02357371,94.53969666],[4.5326916,0.02357204,94.53834323],[4.53269091,0.02357037,94.53697919],[4.53269022,0.0235687,94.53560509],[4.53268952,0.02356703,94.53422151],[4.53268883,0.02356536,94.53282905],[4.53268814,0.02356369,94.531429],[4.53268745,0.02356202,94.53002539],[4.53268677,0.02356035,94.52862298],[4.53268609,0.02355868,94.52722472],[4.53268541,0.023557,94.52582621],[4.53268474,0.02355533,94.52442114],[4.53268407,0.02355365,94.52300317],[4.5326834,0.02355198,94.52156592],[4.53268272,0.0235503,94.52010297],[4.53268205,0.02354863,94.51860783],[4.53268136,0.02354696,94.51707402],[4.53268067,0.02354529,94.51549496],[4.53267998,0.02354362,94.51386407],[4.53267927,0.02354196,94.51217471],[4.53267855,0.0235403,94.5104202],[4.53267781,0.02353864,94.50859382],[4.53267707,0.02353702,94.50671402]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"3000440","id":-3,"type":"border","predecessorId":-5}},{"geometry":{"coordinates":[[4.53271243,0.02362019,94.57980918],[4.53271187,0.02361847,94.57887881],[4.53271131,0.02361676,94.57794742],[4.53271076,0.02361504,94.57701233],[4.5327102,0.02361333,94.57607085],[4.53270964,0.02361161,94.57512024],[4.53270907,0.0236099,94.57415776],[4.53270851,0.02360819,94.57318062],[4.53270794,0.02360648,94.57218601],[4.53270736,0.02360477,94.57117108],[4.53270677,0.02360307,94.57013299],[4.53270618,0.02360137,94.56906883],[4.53270558,0.02359967,94.56797567],[4.53270496,0.02359797,94.56685169],[4.53270434,0.02359628,94.5656995],[4.53270371,0.02359459,94.56452285],[4.53270307,0.0235929,94.56332555],[4.53270243,0.02359122,94.56211142],[4.53270178,0.02358953,94.56088432],[4.53270113,0.02358785,94.55964814],[4.53270048,0.02358617,94.5584068],[4.53269982,0.02358448,94.55716421],[4.53269917,0.0235828,94.5559232],[4.53269852,0.02358112,94.55468553],[4.53269787,0.02357944,94.55345292],[4.53269722,0.02357775,94.55222703],[4.53269657,0.02357607,94.55100724],[4.53269592,0.02357439,94.54978986],[4.53269527,0.0235727,94.54857078],[4.53269463,0.02357102,94.54734589],[4.53269397,0.02356934,94.54611106],[4.53269332,0.02356765,94.54486212],[4.53269266,0.02356597,94.54359489],[4.53269199,0.0235643,94.54230516],[4.53269132,0.02356262,94.54098939],[4.53269065,0.02356095,94.53964672],[4.53268997,0.02355927,94.538277],[4.53268928,0.0235576,94.53688006],[4.53268859,0.02355593,94.53545575],[4.5326879,0.02355426,94.53400394],[4.5326872,0.0235526,94.53252449],[4.5326865,0.02355093,94.53101729],[4.53268579,0.02354927,94.52948224],[4.53268509,0.0235476,94.52791925],[4.53268438,0.02354594,94.52632822],[4.53268367,0.02354428,94.52470908],[4.53268296,0.02354261,94.52306177],[4.53268225,0.02354095,94.52138625],[4.53268154,0.02353929,94.51968246],[4.53268083,0.02353763,94.51795039],[4.53268013,0.02353599,94.51621299]],"type":"LineString"},"type":"feature","properties":{"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"3000440","id":-2,"type":"shoulder","predecessorId":-4}},{"geometry":{"coordinates":[[4.53271388,0.0236197,94.58385073],[4.53271333,0.02361798,94.58294234],[4.53271277,0.02361627,94.58202957],[4.53271222,0.02361455,94.58110955],[4.53271166,0.02361284,94.58017937],[4.5327111,0.02361112,94.57923612],[4.53271053,0.02360941,94.57827684],[4.53270996,0.0236077,94.57729852],[4.53270938,0.02360599,94.57629816],[4.5327088,0.02360429,94.57527272],[4.53270821,0.02360259,94.5742191],[4.5327076,0.02360089,94.57313422],[4.53270699,0.02359919,94.57201493],[4.53270636,0.0235975,94.57085918],[4.53270572,0.02359581,94.56966937],[4.53270507,0.02359413,94.56844905],[4.53270441,0.02359245,94.56720179],[4.53270375,0.02359077,94.56593119],[4.53270307,0.0235891,94.56464089],[4.5327024,0.02358742,94.56333456],[4.53270172,0.02358575,94.56201589],[4.53270103,0.02358408,94.56068862],[4.53270034,0.02358241,94.55935648],[4.53269966,0.02358074,94.55802327],[4.53269897,0.02357907,94.5566928],[4.53269829,0.02357739,94.55536884],[4.5326976,0.02357572,94.5540529],[4.53269692,0.02357405,94.55274342],[4.53269624,0.02357238,94.55143848],[4.53269556,0.0235707,94.55013615],[4.53269489,0.02356903,94.5488345],[4.53269421,0.02356735,94.54753157],[4.53269354,0.02356568,94.54622542],[4.53269286,0.023564,94.54491411],[4.53269219,0.02356233,94.54359568],[4.53269152,0.02356065,94.54226815],[4.53269085,0.02355898,94.54092957],[4.53269017,0.0235573,94.53957797],[4.5326895,0.02355563,94.53821136],[4.53268883,0.02355395,94.53682775],[4.53268815,0.02355228,94.53542517],[4.53268748,0.0235506,94.53400162],[4.5326868,0.02354893,94.5325551],[4.53268612,0.02354725,94.5310836],[4.53268544,0.02354558,94.52958512],[4.53268476,0.02354391,94.52805764],[4.53268408,0.02354224,94.52649914],[4.53268339,0.02354057,94.52490759],[4.53268271,0.0235389,94.52328097],[4.53268202,0.02353723,94.52161724],[4.53268133,0.02353558,94.51993667]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"3000440","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3}},{"geometry":{"coordinates":[[4.5375973,0.04127599,98.57058451],[4.53759692,0.04127423,98.56967809],[4.53759655,0.04127246,98.56877257],[4.53759618,0.0412707,98.56786786],[4.53759581,0.04126894,98.56696391],[4.53759543,0.04126718,98.56606064],[4.53759506,0.04126542,98.56515798],[4.53759469,0.04126365,98.56425586],[4.53759432,0.04126189,98.56335421],[4.53759395,0.04126013,98.56245296],[4.53759357,0.04125837,98.56155205],[4.5375932,0.0412566,98.5606514],[4.53759283,0.04125484,98.55975094],[4.53759246,0.04125308,98.5588506],[4.53759209,0.04125132,98.55795032],[4.53759171,0.04124956,98.55705003],[4.53759134,0.04124779,98.55614965],[4.53759097,0.04124603,98.55524912],[4.5375906,0.04124427,98.55434837],[4.53759022,0.04124251,98.55344732],[4.53758985,0.04124075,98.55254592],[4.53758948,0.04123898,98.55164409],[4.5375891,0.04123722,98.55074177],[4.53758873,0.04123546,98.54983888],[4.53758836,0.0412337,98.54893535],[4.53758798,0.04123194,98.54803113],[4.5375876,0.04123018,98.54712613],[4.53758723,0.04122842,98.5462203],[4.53758685,0.04122665,98.54531356],[4.53758648,0.04122489,98.54440584],[4.5375861,0.04122313,98.54349709],[4.53758572,0.04122137,98.54258722],[4.53758534,0.04121961,98.54167618],[4.53758496,0.04121785,98.54076391],[4.53758458,0.04121609,98.53985044],[4.5375842,0.04121433,98.53893584],[4.53758382,0.04121257,98.53802015],[4.53758344,0.04121081,98.53710343],[4.53758306,0.04120905,98.53618574],[4.53758268,0.04120729,98.53526711],[4.53758229,0.04120553,98.53434762],[4.53758191,0.04120377,98.53342731],[4.53758153,0.04120201,98.53250623],[4.53758114,0.04120025,98.53158444],[4.53758076,0.04119849,98.53066198],[4.53758037,0.04119673,98.52973892],[4.53757999,0.04119497,98.52881531],[4.5375796,0.04119321,98.5278912],[4.53757922,0.04119145,98.52696663],[4.53757883,0.0411897,98.52604168],[4.53757844,0.04118794,98.52511637],[4.53757806,0.04118618,98.52419078],[4.53757767,0.04118442,98.52326495],[4.53757728,0.04118266,98.52233893],[4.5375769,0.0411809,98.52141278],[4.53757651,0.04117914,98.52048654],[4.53757612,0.04117738,98.51956028],[4.53757573,0.04117562,98.51863404],[4.53757534,0.04117387,98.51770787],[4.53757496,0.04117211,98.51678183],[4.53757457,0.04117035,98.51585597],[4.53757418,0.04116859,98.51493035],[4.53757379,0.04116683,98.514005],[4.5375734,0.04116507,98.51307999],[4.53757301,0.04116331,98.51215537],[4.53757263,0.04116156,98.51123118],[4.53757224,0.0411598,98.51030749],[4.53757185,0.04115804,98.50938433],[4.53757146,0.04115628,98.50846177],[4.53757107,0.04115452,98.50753986],[4.53757068,0.04115276,98.50661865],[4.5375703,0.041151,98.50569818],[4.53756991,0.04114924,98.50477852],[4.53756952,0.04114749,98.50385972],[4.53756913,0.04114573,98.50294185],[4.53756875,0.04114397,98.50202499],[4.53756836,0.04114221,98.5011092],[4.53756797,0.04114045,98.50019456],[4.53756759,0.04113869,98.49928115],[4.5375672,0.04113693,98.49836902],[4.53756681,0.04113517,98.49745826],[4.53756643,0.04113341,98.49654893],[4.53756604,0.04113165,98.49564111],[4.53756566,0.04112989,98.49473485],[4.53756528,0.04112813,98.49383011],[4.53756489,0.04112638,98.49292685],[4.53756451,0.04112462,98.492025],[4.53756412,0.04112286,98.49112454],[4.53756374,0.0411211,98.49022539],[4.53756336,0.04111934,98.48932752],[4.53756298,0.04111758,98.48843086],[4.5375626,0.04111582,98.48753538],[4.53756221,0.04111406,98.48664101],[4.53756183,0.04111229,98.48574771],[4.53756145,0.04111053,98.48485543],[4.53756107,0.04110877,98.48396411],[4.53756069,0.04110701,98.48307371],[4.53756031,0.04110525,98.48218417],[4.53755993,0.04110349,98.48129545],[4.53755955,0.04110173,98.48040749],[4.53755917,0.04109997,98.47952024],[4.53755879,0.04109821,98.47863366],[4.53755841,0.04109645,98.47774769],[4.53755803,0.04109469,98.47686227],[4.53755765,0.04109293,98.47597737],[4.53755727,0.04109117,98.47509293],[4.53755689,0.04108941,98.4742089],[4.53755651,0.04108765,98.47332523],[4.53755613,0.04108589,98.47244187],[4.53755575,0.04108413,98.47155876],[4.53755537,0.04108237,98.47067586],[4.53755499,0.04108061,98.46979312],[4.53755461,0.04107884,98.46891049],[4.53755422,0.04107708,98.46802792],[4.53755384,0.04107532,98.46714535],[4.53755346,0.04107356,98.46626273],[4.53755308,0.0410718,98.46538002],[4.5375527,0.04107004,98.46449717],[4.53755232,0.04106828,98.46361412],[4.53755193,0.04106652,98.46273082],[4.53755155,0.04106476,98.46184723],[4.53755117,0.041063,98.46096328],[4.53755079,0.04106124,98.46007895],[4.5375504,0.04105948,98.45919416],[4.53755002,0.04105772,98.45830888],[4.53754963,0.04105596,98.45742304],[4.53754925,0.0410542,98.45653661],[4.53754886,0.04105244,98.45564954],[4.53754848,0.04105068,98.45476178],[4.53754809,0.04104893,98.45387329],[4.53754771,0.04104717,98.45298403],[4.53754732,0.04104541,98.45209395],[4.53754693,0.04104365,98.45120302],[4.53754654,0.04104189,98.45031119],[4.53754615,0.04104013,98.44941841],[4.53754576,0.04103837,98.44852465],[4.53754537,0.04103661,98.44762987],[4.53754498,0.04103485,98.44673413],[4.53754459,0.0410331,98.44583749],[4.5375442,0.04103134,98.44494002],[4.53754381,0.04102958,98.44404179],[4.53754341,0.04102782,98.44314286],[4.53754302,0.04102606,98.44224329],[4.53754263,0.04102431,98.44134316],[4.53754223,0.04102255,98.44044253],[4.53754184,0.04102079,98.43954146],[4.53754145,0.04101903,98.43864003],[4.53754105,0.04101728,98.4377383],[4.53754065,0.04101552,98.43683633],[4.53754026,0.04101376,98.43593419],[4.53753986,0.04101201,98.43503195],[4.53753947,0.04101025,98.43412968],[4.53753907,0.04100849,98.43322743],[4.53753867,0.04100673,98.43232528],[4.53753828,0.04100498,98.4314233],[4.53753788,0.04100322,98.43052154],[4.53753748,0.04100146,98.42962008],[4.53753709,0.04099971,98.42871898],[4.53753669,0.04099795,98.42781831],[4.53753629,0.04099619,98.42691814],[4.5375359,0.04099443,98.42601853],[4.5375355,0.04099268,98.42511954],[4.5375351,0.04099092,98.42422125],[4.53753471,0.04098916,98.42332372],[4.53753431,0.04098741,98.42242701],[4.53753391,0.04098565,98.4215312],[4.53753352,0.04098389,98.42063635],[4.53753312,0.04098213,98.41974253],[4.53753272,0.04098038,98.4188498],[4.53753233,0.04097862,98.41795824],[4.53753193,0.04097686,98.4170679],[4.53753154,0.04097511,98.41617886],[4.53753114,0.04097335,98.41529118],[4.53753075,0.04097159,98.41440494],[4.53753035,0.04096983,98.4135202],[4.53752996,0.04096808,98.41263703],[4.53752957,0.04096632,98.41175549],[4.53752917,0.04096456,98.41087563],[4.53752878,0.0409628,98.40999736],[4.53752839,0.04096104,98.40912054],[4.537528,0.04095929,98.40824506],[4.5375276,0.04095753,98.4073708],[4.53752721,0.04095577,98.40649763],[4.53752682,0.04095401,98.40562543],[4.53752643,0.04095225,98.40475408],[4.53752604,0.04095049,98.40388345],[4.53752565,0.04094874,98.40301342],[4.53752526,0.04094698,98.40214387],[4.53752486,0.04094522,98.40127468],[4.53752447,0.04094346,98.40040572],[4.53752408,0.0409417,98.3995369],[4.53752369,0.04093994,98.39866821],[4.5375233,0.04093819,98.39779969],[4.5375229,0.04093643,98.39693135],[4.53752251,0.04093467,98.39606324],[4.53752212,0.04093291,98.39519537],[4.53752173,0.04093115,98.39432777],[4.53752133,0.0409294,98.39346046],[4.53752094,0.04092764,98.39259349],[4.53752055,0.04092588,98.39172687],[4.53752015,0.04092412,98.39086062],[4.53751976,0.04092236,98.38999479],[4.53751937,0.04092061,98.38912938],[4.53751897,0.04091885,98.38826444],[4.53751858,0.04091709,98.38739999],[4.53751819,0.04091533,98.38653605],[4.53751779,0.04091357,98.38567265],[4.5375174,0.04091182,98.38480983],[4.53751701,0.04091006,98.3839476],[4.53751661,0.0409083,98.38308599],[4.53751622,0.04090654,98.38222504],[4.53751583,0.04090478,98.38136476],[4.53751543,0.04090303,98.38050519],[4.53751504,0.04090127,98.37964635],[4.53751465,0.04089951,98.37878827],[4.53751425,0.04089775,98.37793098],[4.53751386,0.04089599,98.3770745],[4.53751347,0.04089424,98.37621887],[4.53751307,0.04089248,98.3753641],[4.53751268,0.04089072,98.37451024],[4.53751229,0.04088896,98.37365729],[4.53751189,0.0408872,98.3728053],[4.5375115,0.04088544,98.37195429],[4.53751111,0.04088369,98.37110429],[4.53751072,0.04088193,98.37025532],[4.53751032,0.04088017,98.36940741],[4.53750993,0.04087841,98.36856059],[4.53750954,0.04087665,98.36771489],[4.53750915,0.04087489,98.36687033],[4.53750876,0.04087313,98.36602695],[4.53750837,0.04087138,98.36518477],[4.53750798,0.04086962,98.36434381],[4.53750758,0.04086786,98.36350412],[4.53750719,0.0408661,98.3626657],[4.5375068,0.04086434,98.3618286],[4.53750652,0.04086306,98.36121883]],"type":"LineString"},"type":"feature","properties":{"successorId":-5,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1003400","id":-4,"type":"none","predecessorId":0}},{"geometry":{"coordinates":[[4.53764107,0.04126632,98.57058451],[4.5376407,0.04126456,98.56967809],[4.53764033,0.0412628,98.56877257],[4.53763995,0.04126103,98.56786786],[4.53763958,0.04125927,98.56696391],[4.53763921,0.04125751,98.56606064],[4.53763884,0.04125575,98.56515798],[4.53763846,0.04125398,98.56425586],[4.53763809,0.04125222,98.56335421],[4.53763772,0.04125046,98.56245296],[4.53763735,0.04124869,98.56155205],[4.53763698,0.04124693,98.5606514],[4.5376366,0.04124517,98.55975094],[4.53763623,0.0412434,98.5588506],[4.53763586,0.04124164,98.55795032],[4.53763549,0.04123988,98.55705003],[4.53763511,0.04123812,98.55614965],[4.53763474,0.04123635,98.55524912],[4.53763437,0.04123459,98.55434837],[4.537634,0.04123283,98.55344732],[4.53763362,0.04123106,98.55254592],[4.53763325,0.0412293,98.55164409],[4.53763287,0.04122754,98.55074177],[4.5376325,0.04122578,98.54983888],[4.53763213,0.04122401,98.54893535],[4.53763175,0.04122225,98.54803113],[4.53763138,0.04122049,98.54712613],[4.537631,0.04121873,98.5462203],[4.53763062,0.04121696,98.54531356],[4.53763025,0.0412152,98.54440584],[4.53762987,0.04121344,98.54349709],[4.53762949,0.04121168,98.54258722],[4.53762911,0.04120992,98.54167618],[4.53762873,0.04120816,98.54076391],[4.53762835,0.04120639,98.53985044],[4.53762797,0.04120463,98.53893584],[4.53762759,0.04120287,98.53802015],[4.53762721,0.04120111,98.53710343],[4.53762683,0.04119935,98.53618574],[4.53762644,0.04119759,98.53526711],[4.53762606,0.04119583,98.53434762],[4.53762568,0.04119407,98.53342731],[4.53762529,0.04119231,98.53250623],[4.53762491,0.04119055,98.53158444],[4.53762453,0.04118879,98.53066198],[4.53762414,0.04118703,98.52973892],[4.53762375,0.04118527,98.52881531],[4.53762337,0.04118351,98.5278912],[4.53762298,0.04118175,98.52696663],[4.5376226,0.04117999,98.52604168],[4.53762221,0.04117823,98.52511637],[4.53762182,0.04117647,98.52419078],[4.53762144,0.04117471,98.52326495],[4.53762105,0.04117295,98.52233893],[4.53762066,0.04117119,98.52141278],[4.53762027,0.04116943,98.52048654],[4.53761988,0.04116767,98.51956028],[4.5376195,0.04116591,98.51863404],[4.53761911,0.04116415,98.51770787],[4.53761872,0.04116239,98.51678183],[4.53761833,0.04116063,98.51585597],[4.53761794,0.04115887,98.51493035],[4.53761755,0.04115711,98.514005],[4.53761717,0.04115535,98.51307999],[4.53761678,0.04115359,98.51215537],[4.53761639,0.04115183,98.51123118],[4.537616,0.04115007,98.51030749],[4.53761561,0.04114831,98.50938433],[4.53761522,0.04114655,98.50846177],[4.53761483,0.04114479,98.50753986],[4.53761445,0.04114303,98.50661865],[4.53761406,0.04114127,98.50569818],[4.53761367,0.04113951,98.50477852],[4.53761328,0.04113775,98.50385972],[4.53761289,0.04113599,98.50294185],[4.53761251,0.04113423,98.50202499],[4.53761212,0.04113247,98.5011092],[4.53761173,0.04113072,98.50019456],[4.53761135,0.04112896,98.49928115],[4.53761096,0.04112719,98.49836902],[4.53761057,0.04112543,98.49745826],[4.53761019,0.04112367,98.49654893],[4.5376098,0.04112191,98.49564111],[4.53760942,0.04112015,98.49473485],[4.53760903,0.04111839,98.49383011],[4.53760865,0.04111663,98.49292685],[4.53760827,0.04111487,98.492025],[4.53760788,0.04111311,98.49112454],[4.5376075,0.04111135,98.49022539],[4.53760712,0.04110959,98.48932752],[4.53760673,0.04110783,98.48843086],[4.53760635,0.04110607,98.48753538],[4.53760597,0.04110431,98.48664101],[4.53760559,0.04110255,98.48574771],[4.53760521,0.04110078,98.48485543],[4.53760483,0.04109902,98.48396411],[4.53760445,0.04109726,98.48307371],[4.53760407,0.0410955,98.48218417],[4.53760368,0.04109374,98.48129545],[4.5376033,0.04109198,98.48040749],[4.53760292,0.04109022,98.47952024],[4.53760254,0.04108845,98.47863366],[4.53760216,0.04108669,98.47774769],[4.53760178,0.04108493,98.47686227],[4.5376014,0.04108317,98.47597737],[4.53760102,0.04108141,98.47509293],[4.53760064,0.04107965,98.4742089],[4.53760026,0.04107789,98.47332523],[4.53759988,0.04107612,98.47244187],[4.5375995,0.04107436,98.47155876],[4.53759912,0.0410726,98.47067586],[4.53759874,0.04107084,98.46979312],[4.53759836,0.04106908,98.46891049],[4.53759798,0.04106732,98.46802792],[4.5375976,0.04106556,98.46714535],[4.53759721,0.0410638,98.46626273],[4.53759683,0.04106203,98.46538002],[4.53759645,0.04106027,98.46449717],[4.53759607,0.04105851,98.46361412],[4.53759569,0.04105675,98.46273082],[4.5375953,0.04105499,98.46184723],[4.53759492,0.04105323,98.46096328],[4.53759454,0.04105147,98.46007895],[4.53759415,0.04104971,98.45919416],[4.53759377,0.04104795,98.45830888],[4.53759338,0.04104619,98.45742304],[4.537593,0.04104443,98.45653661],[4.53759261,0.04104267,98.45564954],[4.53759223,0.04104091,98.45476178],[4.53759184,0.04103915,98.45387329],[4.53759145,0.04103739,98.45298403],[4.53759107,0.04103563,98.45209395],[4.53759068,0.04103387,98.45120302],[4.53759029,0.04103211,98.45031119],[4.5375899,0.04103035,98.44941841],[4.53758951,0.04102859,98.44852465],[4.53758912,0.04102683,98.44762987],[4.53758873,0.04102507,98.44673413],[4.53758834,0.04102331,98.44583749],[4.53758795,0.04102155,98.44494002],[4.53758755,0.04101979,98.44404179],[4.53758716,0.04101803,98.44314286],[4.53758677,0.04101627,98.44224329],[4.53758637,0.04101452,98.44134316],[4.53758598,0.04101276,98.44044253],[4.53758559,0.041011,98.43954146],[4.53758519,0.04100924,98.43864003],[4.5375848,0.04100748,98.4377383],[4.5375844,0.04100572,98.43683633],[4.53758401,0.04100397,98.43593419],[4.53758361,0.04100221,98.43503195],[4.53758321,0.04100045,98.43412968],[4.53758282,0.04099869,98.43322743],[4.53758242,0.04099693,98.43232528],[4.53758202,0.04099518,98.4314233],[4.53758163,0.04099342,98.43052154],[4.53758123,0.04099166,98.42962008],[4.53758083,0.0409899,98.42871898],[4.53758044,0.04098814,98.42781831],[4.53758004,0.04098639,98.42691814],[4.53757964,0.04098463,98.42601853],[4.53757924,0.04098287,98.42511954],[4.53757885,0.04098111,98.42422125],[4.53757845,0.04097936,98.42332372],[4.53757805,0.0409776,98.42242701],[4.53757766,0.04097584,98.4215312],[4.53757726,0.04097408,98.42063635],[4.53757686,0.04097232,98.41974253],[4.53757647,0.04097057,98.4188498],[4.53757607,0.04096881,98.41795824],[4.53757568,0.04096705,98.4170679],[4.53757528,0.04096529,98.41617886],[4.53757488,0.04096353,98.41529118],[4.53757449,0.04096178,98.41440494],[4.5375741,0.04096002,98.4135202],[4.5375737,0.04095826,98.41263703],[4.53757331,0.0409565,98.41175549],[4.53757291,0.04095474,98.41087563],[4.53757252,0.04095298,98.40999736],[4.53757213,0.04095122,98.40912054],[4.53757174,0.04094946,98.40824506],[4.53757134,0.04094771,98.4073708],[4.53757095,0.04094595,98.40649763],[4.53757056,0.04094419,98.40562543],[4.53757017,0.04094243,98.40475408],[4.53756978,0.04094067,98.40388345],[4.53756939,0.04093891,98.40301342],[4.537569,0.04093715,98.40214387],[4.5375686,0.04093539,98.40127468],[4.53756821,0.04093363,98.40040572],[4.53756782,0.04093187,98.3995369],[4.53756743,0.04093012,98.39866821],[4.53756704,0.04092836,98.39779969],[4.53756664,0.0409266,98.39693135],[4.53756625,0.04092484,98.39606324],[4.53756586,0.04092308,98.39519537],[4.53756546,0.04092132,98.39432777],[4.53756507,0.04091956,98.39346046],[4.53756468,0.0409178,98.39259349],[4.53756429,0.04091604,98.39172687],[4.53756389,0.04091429,98.39086062],[4.5375635,0.04091253,98.38999479],[4.5375631,0.04091077,98.38912938],[4.53756271,0.04090901,98.38826444],[4.53756232,0.04090725,98.38739999],[4.53756192,0.04090549,98.38653605],[4.53756153,0.04090373,98.38567265],[4.53756114,0.04090198,98.38480983],[4.53756074,0.04090022,98.3839476],[4.53756035,0.04089846,98.38308599],[4.53755996,0.0408967,98.38222504],[4.53755956,0.04089494,98.38136476],[4.53755917,0.04089318,98.38050519],[4.53755877,0.04089142,98.37964635],[4.53755838,0.04088966,98.37878827],[4.53755799,0.04088791,98.37793098],[4.53755759,0.04088615,98.3770745],[4.5375572,0.04088439,98.37621887],[4.53755681,0.04088263,98.3753641],[4.53755641,0.04088087,98.37451024],[4.53755602,0.04087911,98.37365729],[4.53755563,0.04087735,98.3728053],[4.53755524,0.04087559,98.37195429],[4.53755484,0.04087383,98.37110429],[4.53755445,0.04087207,98.37025532],[4.53755406,0.04087032,98.36940741],[4.53755367,0.04086856,98.36856059],[4.53755327,0.0408668,98.36771489],[4.53755288,0.04086504,98.36687033],[4.53755249,0.04086328,98.36602695],[4.5375521,0.04086152,98.36518477],[4.53755171,0.04085976,98.36434381],[4.53755132,0.040858,98.36350412],[4.53755093,0.04085624,98.3626657],[4.53755054,0.04085448,98.3618286],[4.53755025,0.0408532,98.36121883]],"type":"LineString"},"type":"feature","properties":{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1003400","id":-3,"type":"stop","predecessorId":0}},{"geometry":{"coordinates":[[4.53766163,0.04126179,98.6252392],[4.53766125,0.04126002,98.6242987],[4.53766087,0.04125826,98.62335876],[4.53766049,0.0412565,98.62241939],[4.53766012,0.04125474,98.62148057],[4.53765974,0.04125297,98.62054229],[4.53765936,0.04125121,98.61960455],[4.53765898,0.04124945,98.61866735],[4.5376586,0.04124769,98.61773066],[4.53765823,0.04124593,98.61679449],[4.53765785,0.04124416,98.61585883],[4.53765747,0.0412424,98.61492367],[4.53765709,0.04124064,98.613989],[4.53765671,0.04123888,98.61305482],[4.53765634,0.04123711,98.61212111],[4.53765596,0.04123535,98.61118788],[4.53765558,0.04123359,98.61025511],[4.5376552,0.04123183,98.6093228],[4.53765482,0.04123007,98.60839094],[4.53765445,0.0412283,98.60745952],[4.53765407,0.04122654,98.60652853],[4.53765369,0.04122478,98.60559797],[4.53765331,0.04122302,98.60466783],[4.53765293,0.04122125,98.60373811],[4.53765255,0.04121949,98.60280879],[4.53765218,0.04121773,98.60187987],[4.5376518,0.04121597,98.60095134],[4.53765142,0.04121421,98.60002319],[4.53765104,0.04121244,98.59909542],[4.53765066,0.04121068,98.59816802],[4.53765028,0.04120892,98.59724098],[4.5376499,0.04120716,98.5963143],[4.53764952,0.0412054,98.59538797],[4.53764915,0.04120363,98.59446197],[4.53764877,0.04120187,98.59353631],[4.53764839,0.04120011,98.59261098],[4.53764801,0.04119835,98.59168597],[4.53764763,0.04119659,98.59076127],[4.53764725,0.04119482,98.58983687],[4.53764687,0.04119306,98.58891277],[4.53764649,0.0411913,98.58798897],[4.53764611,0.04118954,98.58706545],[4.53764573,0.04118778,98.5861422],[4.53764535,0.04118601,98.58521922],[4.53764497,0.04118425,98.58429651],[4.53764459,0.04118249,98.58337405],[4.53764421,0.04118073,98.58245184],[4.53764383,0.04117897,98.58152987],[4.53764345,0.0411772,98.58060814],[4.53764307,0.04117544,98.57968663],[4.53764269,0.04117368,98.57876535],[4.53764231,0.04117192,98.57784427],[4.53764193,0.04117016,98.57692341],[4.53764155,0.0411684,98.57600274],[4.53764117,0.04116663,98.57508226],[4.53764078,0.04116487,98.57416197],[4.5376404,0.04116311,98.57324186],[4.53764002,0.04116135,98.57232191],[4.53763964,0.04115959,98.57140213],[4.53763926,0.04115783,98.57048251],[4.53763887,0.04115607,98.56956303],[4.53763849,0.0411543,98.5686437],[4.53763811,0.04115254,98.56772451],[4.53763773,0.04115078,98.56680544],[4.53763734,0.04114902,98.56588649],[4.53763696,0.04114726,98.56496766],[4.53763658,0.0411455,98.56404893],[4.53763619,0.04114374,98.56313031],[4.53763581,0.04114198,98.56221178],[4.53763543,0.04114021,98.56129333],[4.53763504,0.04113845,98.56037496],[4.53763466,0.04113669,98.55945667],[4.53763428,0.04113493,98.55853844],[4.53763389,0.04113317,98.55762028],[4.53763351,0.04113141,98.55670219],[4.53763312,0.04112965,98.55578421],[4.53763274,0.04112789,98.55486632],[4.53763235,0.04112613,98.55394856],[4.53763196,0.04112437,98.55303093],[4.53763158,0.04112261,98.55211345],[4.53763119,0.04112085,98.55119612],[4.53763081,0.04111909,98.55027896],[4.53763042,0.04111732,98.54936199],[4.53763003,0.04111556,98.54844521],[4.53762965,0.0411138,98.54752864],[4.53762926,0.04111204,98.54661229],[4.53762887,0.04111028,98.54569618],[4.53762849,0.04110852,98.54478031],[4.5376281,0.04110676,98.5438647],[4.53762771,0.041105,98.54294937],[4.53762733,0.04110324,98.54203432],[4.53762694,0.04110148,98.54111957],[4.53762655,0.04109972,98.54020513],[4.53762616,0.04109796,98.53929102],[4.53762578,0.0410962,98.53837724],[4.53762539,0.04109444,98.5374638],[4.537625,0.04109268,98.53655073],[4.53762461,0.04109092,98.53563804],[4.53762422,0.04108916,98.53472573],[4.53762384,0.0410874,98.53381382],[4.53762345,0.04108564,98.53290232],[4.53762306,0.04108388,98.53199125],[4.53762267,0.04108212,98.53108061],[4.53762228,0.04108036,98.53017042],[4.53762189,0.0410786,98.5292607],[4.5376215,0.04107684,98.52835145],[4.53762112,0.04107508,98.52744269],[4.53762073,0.04107332,98.52653443],[4.53762034,0.04107156,98.52562668],[4.53761995,0.0410698,98.52471946],[4.53761956,0.04106804,98.52381277],[4.53761917,0.04106628,98.52290664],[4.53761878,0.04106452,98.52200107],[4.53761839,0.04106276,98.52109607],[4.537618,0.041061,98.52019167],[4.53761762,0.04105924,98.51928786],[4.53761723,0.04105748,98.51838467],[4.53761684,0.04105572,98.51748211],[4.53761645,0.04105396,98.51658018],[4.53761606,0.0410522,98.51567891],[4.53761567,0.04105044,98.5147783],[4.53761528,0.04104868,98.51387836],[4.53761489,0.04104692,98.51297912],[4.5376145,0.04104516,98.51208058],[4.53761411,0.0410434,98.51118275],[4.53761373,0.04104164,98.51028565],[4.53761334,0.04103988,98.50938929],[4.53761295,0.04103812,98.50849369],[4.53761256,0.04103636,98.50759887],[4.53761217,0.0410346,98.50670485],[4.53761178,0.04103284,98.50581165],[4.53761139,0.04103108,98.50491929],[4.537611,0.04102932,98.50402779],[4.53761062,0.04102756,98.50313717],[4.53761023,0.0410258,98.50224745],[4.53760984,0.04102404,98.50135865],[4.53760945,0.04102228,98.5004708],[4.53760906,0.04102052,98.4995839],[4.53760868,0.04101876,98.49869799],[4.53760829,0.041017,98.49781308],[4.5376079,0.04101524,98.49692919],[4.53760751,0.04101348,98.49604635],[4.53760713,0.04101172,98.49516456],[4.53760674,0.04100996,98.49428386],[4.53760635,0.0410082,98.49340427],[4.53760596,0.04100644,98.49252579],[4.53760558,0.04100468,98.49164846],[4.53760519,0.04100292,98.4907723],[4.53760481,0.04100116,98.48989731],[4.53760442,0.04099939,98.48902354],[4.53760403,0.04099763,98.48815098],[4.53760365,0.04099587,98.48727967],[4.53760326,0.04099411,98.48640963],[4.53760288,0.04099235,98.48554088],[4.53760249,0.04099059,98.48467343],[4.53760211,0.04098883,98.4838073],[4.53760172,0.04098707,98.48294253],[4.53760134,0.04098531,98.48207912],[4.53760096,0.04098355,98.4812171],[4.53760057,0.04098178,98.48035649],[4.53760019,0.04098002,98.4794973],[4.53759981,0.04097826,98.47863957],[4.53759942,0.0409765,98.4777833],[4.53759904,0.04097474,98.47692853],[4.53759866,0.04097298,98.47607527],[4.53759828,0.04097122,98.47522354],[4.53759789,0.04096945,98.47437336],[4.53759751,0.04096769,98.47352475],[4.53759713,0.04096593,98.47267774],[4.53759675,0.04096417,98.47183235],[4.53759637,0.04096241,98.47098859],[4.53759599,0.04096064,98.47014649],[4.53759561,0.04095888,98.46930607],[4.53759523,0.04095712,98.46846735],[4.53759486,0.04095536,98.46763036],[4.53759448,0.0409536,98.46679511],[4.5375941,0.04095183,98.46596163],[4.53759372,0.04095007,98.46512992],[4.53759335,0.04094831,98.46429982],[4.53759297,0.04094654,98.46347118],[4.53759259,0.04094478,98.46264382],[4.53759222,0.04094302,98.46181758],[4.53759184,0.04094126,98.46099228],[4.53759146,0.04093949,98.46016776],[4.53759109,0.04093773,98.45934385],[4.53759071,0.04093597,98.45852038],[4.53759033,0.0409342,98.45769717],[4.53758996,0.04093244,98.45687407],[4.53758958,0.04093068,98.4560509],[4.5375892,0.04092892,98.45522749],[4.53758882,0.04092715,98.45440367],[4.53758845,0.04092539,98.45357927],[4.53758807,0.04092363,98.45275413],[4.53758769,0.04092187,98.45192806],[4.53758731,0.04092011,98.45110091],[4.53758693,0.04091834,98.45027249],[4.53758654,0.04091658,98.44944265],[4.53758616,0.04091482,98.44861121],[4.53758578,0.04091306,98.44777799],[4.53758539,0.0409113,98.44694283],[4.53758501,0.04090954,98.44610556],[4.53758462,0.04090778,98.44526601],[4.53758423,0.04090602,98.444424],[4.53758384,0.04090426,98.44357936],[4.53758345,0.0409025,98.44273192],[4.53758306,0.04090074,98.44188151],[4.53758266,0.04089898,98.44102796],[4.53758227,0.04089722,98.44017109],[4.53758187,0.04089546,98.43931074],[4.53758147,0.0408937,98.43844673],[4.53758107,0.04089195,98.43757888],[4.53758067,0.04089019,98.43670702],[4.53758027,0.04088843,98.43583099],[4.53757986,0.04088668,98.43495061],[4.53757945,0.04088492,98.4340657],[4.53757904,0.04088316,98.43317609],[4.53757863,0.04088141,98.43228161],[4.53757822,0.04087966,98.43138208],[4.5375778,0.0408779,98.43047732],[4.53757738,0.04087615,98.42956718],[4.53757696,0.0408744,98.42865146],[4.53757653,0.04087264,98.42772999],[4.53757611,0.04087089,98.42680261],[4.53757568,0.04086914,98.42586913],[4.53757525,0.04086739,98.42492937],[4.53757481,0.04086564,98.42398317],[4.53757438,0.04086389,98.42303035],[4.53757394,0.04086214,98.42207072],[4.53757349,0.04086039,98.42110412],[4.53757305,0.04085865,98.42013037],[4.5375726,0.0408569,98.41914929],[4.53757215,0.04085515,98.4181607],[4.53757169,0.04085341,98.41716442],[4.53757123,0.04085166,98.41616028],[4.53757077,0.04084992,98.41514811],[4.53757043,0.04084865,98.41440462]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1003400","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":0}},{"geometry":{"coordinates":[[4.53769422,0.04125459,98.71188797],[4.53769384,0.04125283,98.71090594],[4.53769345,0.04125107,98.70992465],[4.53769307,0.04124931,98.7089441],[4.53769269,0.04124754,98.70796429],[4.53769231,0.04124578,98.70698522],[4.53769193,0.04124402,98.70600689],[4.53769155,0.04124226,98.7050293],[4.53769117,0.04124049,98.70405245],[4.53769078,0.04123873,98.70307634],[4.5376904,0.04123697,98.70210097],[4.53769002,0.04123521,98.70112634],[4.53768964,0.04123345,98.70015244],[4.53768926,0.04123168,98.69917929],[4.53768887,0.04122992,98.69820687],[4.53768849,0.04122816,98.69723519],[4.53768811,0.0412264,98.69626425],[4.53768773,0.04122463,98.69529404],[4.53768735,0.04122287,98.69432457],[4.53768697,0.04122111,98.69335584],[4.53768658,0.04121935,98.69238784],[4.5376862,0.04121759,98.69142059],[4.53768582,0.04121582,98.69045406],[4.53768544,0.04121406,98.68948828],[4.53768506,0.0412123,98.68852323],[4.53768467,0.04121054,98.68755891],[4.53768429,0.04120878,98.68659533],[4.53768391,0.04120701,98.68563248],[4.53768353,0.04120525,98.68467037],[4.53768314,0.04120349,98.683709],[4.53768276,0.04120173,98.68274836],[4.53768238,0.04119997,98.68178845],[4.537682,0.0411982,98.68082928],[4.53768162,0.04119644,98.67987084],[4.53768123,0.04119468,98.67891313],[4.53768085,0.04119292,98.67795616],[4.53768047,0.04119116,98.67699992],[4.53768009,0.04118939,98.67604441],[4.5376797,0.04118763,98.67508963],[4.53767932,0.04118587,98.67413559],[4.53767894,0.04118411,98.67318228],[4.53767855,0.04118235,98.6722297],[4.53767817,0.04118058,98.67127786],[4.53767779,0.04117882,98.67032674],[4.53767741,0.04117706,98.66937636],[4.53767702,0.0411753,98.66842671],[4.53767664,0.04117354,98.66747779],[4.53767626,0.04117177,98.6665296],[4.53767587,0.04117001,98.66558214],[4.53767549,0.04116825,98.66463541],[4.53767511,0.04116649,98.66368941],[4.53767473,0.04116473,98.66274414],[4.53767434,0.04116296,98.6617996],[4.53767396,0.0411612,98.66085579],[4.53767358,0.04115944,98.65991271],[4.53767319,0.04115768,98.65897036],[4.53767281,0.04115592,98.65802873],[4.53767243,0.04115415,98.65708784],[4.53767204,0.04115239,98.65614768],[4.53767166,0.04115063,98.65520824],[4.53767128,0.04114887,98.65426953],[4.53767089,0.04114711,98.65333155],[4.53767051,0.04114535,98.65239429],[4.53767013,0.04114358,98.65145777],[4.53766974,0.04114182,98.65052197],[4.53766936,0.04114006,98.6495869],[4.53766898,0.0411383,98.64865255],[4.53766859,0.04113654,98.64771894],[4.53766821,0.04113477,98.64678605],[4.53766782,0.04113301,98.64585388],[4.53766744,0.04113125,98.64492244],[4.53766706,0.04112949,98.64399173],[4.53766667,0.04112773,98.64306174],[4.53766629,0.04112597,98.64213248],[4.5376659,0.0411242,98.64120394],[4.53766552,0.04112244,98.64027613],[4.53766514,0.04112068,98.63934905],[4.53766475,0.04111892,98.63842268],[4.53766437,0.04111716,98.63749705],[4.53766398,0.0411154,98.63657213],[4.5376636,0.04111363,98.63564794],[4.53766321,0.04111187,98.63472448],[4.53766283,0.04111011,98.63380174],[4.53766245,0.04110835,98.63287972],[4.53766206,0.04110659,98.63195843],[4.53766168,0.04110483,98.63103786],[4.53766129,0.04110307,98.63011801],[4.53766091,0.0411013,98.62919888],[4.53766052,0.04109954,98.62828048],[4.53766014,0.04109778,98.6273628],[4.53765975,0.04109602,98.62644584],[4.53765937,0.04109426,98.6255296],[4.53765898,0.0410925,98.62461409],[4.5376586,0.04109073,98.62369929],[4.53765821,0.04108897,98.62278522],[4.53765783,0.04108721,98.62187187],[4.53765744,0.04108545,98.62095924],[4.53765706,0.04108369,98.62004733],[4.53765667,0.04108193,98.61913614],[4.53765629,0.04108017,98.61822567],[4.5376559,0.0410784,98.61731592],[4.53765552,0.04107664,98.61640689],[4.53765513,0.04107488,98.61549858],[4.53765475,0.04107312,98.61459099],[4.53765436,0.04107136,98.61368411],[4.53765397,0.0410696,98.61277796],[4.53765359,0.04106784,98.61187253],[4.5376532,0.04106607,98.61096781],[4.53765282,0.04106431,98.61006381],[4.53765243,0.04106255,98.60916053],[4.53765204,0.04106079,98.60825797],[4.53765166,0.04105903,98.60735613],[4.53765127,0.04105727,98.606455],[4.53765089,0.04105551,98.60555459],[4.5376505,0.04105375,98.6046549],[4.53765011,0.04105198,98.60375592],[4.53764973,0.04105022,98.60285766],[4.53764934,0.04104846,98.60196012],[4.53764896,0.0410467,98.60106329],[4.53764857,0.04104494,98.60016718],[4.53764818,0.04104318,98.59927178],[4.5376478,0.04104142,98.5983771],[4.53764741,0.04103966,98.59748314],[4.53764702,0.04103789,98.59658989],[4.53764664,0.04103613,98.59569735],[4.53764625,0.04103437,98.59480553],[4.53764586,0.04103261,98.59391442],[4.53764548,0.04103085,98.59302403],[4.53764509,0.04102909,98.59213435],[4.5376447,0.04102733,98.59124538],[4.53764431,0.04102557,98.59035713],[4.53764393,0.04102381,98.58946959],[4.53764354,0.04102205,98.58858276],[4.53764315,0.04102028,98.58769664],[4.53764277,0.04101852,98.58681124],[4.53764238,0.04101676,98.58592655],[4.53764199,0.041015,98.58504257],[4.5376416,0.04101324,98.5841593],[4.53764122,0.04101148,98.58327674],[4.53764083,0.04100972,98.5823949],[4.53764044,0.04100796,98.58151376],[4.53764005,0.0410062,98.58063334],[4.53763966,0.04100444,98.57975362],[4.53763928,0.04100267,98.57887462],[4.53763889,0.04100091,98.57799632],[4.5376385,0.04099915,98.57711874],[4.53763811,0.04099739,98.57624186],[4.53763772,0.04099563,98.57536569],[4.53763734,0.04099387,98.57449023],[4.53763695,0.04099211,98.57361548],[4.53763656,0.04099035,98.57274144],[4.53763617,0.04098859,98.5718681],[4.53763578,0.04098683,98.57099547],[4.53763539,0.04098507,98.57012355],[4.537635,0.04098331,98.56925234],[4.53763462,0.04098155,98.56838183],[4.53763423,0.04097979,98.56751203],[4.53763384,0.04097802,98.56664294],[4.53763345,0.04097626,98.56577455],[4.53763306,0.0409745,98.56490687],[4.53763267,0.04097274,98.56403989],[4.53763228,0.04097098,98.56317361],[4.53763189,0.04096922,98.56230805],[4.5376315,0.04096746,98.56144318],[4.53763111,0.0409657,98.56057902],[4.53763072,0.04096394,98.55971556],[4.53763034,0.04096218,98.55885281],[4.53762995,0.04096042,98.55799076],[4.53762956,0.04095866,98.55712941],[4.53762917,0.0409569,98.55626877],[4.53762878,0.04095514,98.55540883],[4.53762839,0.04095338,98.5545496],[4.537628,0.04095162,98.55369107],[4.53762761,0.04094986,98.55283325],[4.53762722,0.0409481,98.55197614],[4.53762683,0.04094634,98.55111974],[4.53762644,0.04094457,98.55026405],[4.53762605,0.04094281,98.54940906],[4.53762566,0.04094105,98.54855479],[4.53762526,0.04093929,98.54770123],[4.53762487,0.04093753,98.54684839],[4.53762448,0.04093577,98.54599626],[4.53762409,0.04093401,98.54514484],[4.5376237,0.04093225,98.54429414],[4.53762331,0.04093049,98.54344415],[4.53762292,0.04092873,98.54259489],[4.53762253,0.04092697,98.54174634],[4.53762214,0.04092521,98.54089851],[4.53762175,0.04092345,98.5400514],[4.53762136,0.04092169,98.53920501],[4.53762096,0.04091993,98.53835934],[4.53762057,0.04091817,98.5375144],[4.53762018,0.04091641,98.53667018],[4.53761979,0.04091465,98.53582668],[4.5376194,0.04091289,98.53498391],[4.53761901,0.04091113,98.53414186],[4.53761862,0.04090937,98.53330054],[4.53761822,0.04090761,98.53245995],[4.53761783,0.04090585,98.53162008],[4.53761744,0.04090409,98.53078095],[4.53761705,0.04090233,98.52994254],[4.53761666,0.04090057,98.52910487],[4.53761626,0.04089881,98.52826792],[4.53761587,0.04089705,98.52743171],[4.53761548,0.04089529,98.52659624],[4.53761509,0.04089353,98.52576149],[4.5376147,0.04089177,98.52492748],[4.5376143,0.04089001,98.52409421],[4.53761391,0.04088825,98.52326168],[4.53761352,0.04088649,98.52242988],[4.53761313,0.04088473,98.52159882],[4.53761273,0.04088297,98.5207685],[4.53761234,0.04088121,98.51993891],[4.53761195,0.04087945,98.51911007],[4.53761156,0.04087769,98.51828197],[4.53761116,0.04087593,98.51745462],[4.53761077,0.04087417,98.516628],[4.53761038,0.04087241,98.51580213],[4.53760998,0.04087065,98.51497701],[4.53760959,0.04086889,98.51415263],[4.5376092,0.04086713,98.513329],[4.5376088,0.04086538,98.51250611],[4.53760841,0.04086362,98.51168397],[4.53760802,0.04086186,98.51086258],[4.53760762,0.0408601,98.51004194],[4.53760723,0.04085834,98.50922205],[4.53760684,0.04085658,98.50840292],[4.53760644,0.04085482,98.50758453],[4.53760605,0.04085306,98.5067669],[4.53760566,0.0408513,98.50595002],[4.53760526,0.04084954,98.50513389],[4.53760487,0.04084778,98.50431852],[4.53760447,0.04084602,98.50350391],[4.53760408,0.04084426,98.50269005],[4.53760369,0.0408425,98.50187695],[4.5376034,0.04084122,98.50128433]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1003400","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":0}},{"geometry":{"coordinates":[[4.53763628,0.0408338,98.58794492],[4.53763657,0.04083509,98.58851395],[4.53763695,0.04083685,98.58929415],[4.53763734,0.04083861,98.59007453],[4.53763773,0.04084037,98.59085513],[4.53763812,0.04084213,98.591636],[4.53763851,0.04084389,98.59241719],[4.5376389,0.04084566,98.59319877],[4.53763928,0.04084742,98.59398077],[4.53763967,0.04084918,98.59476326],[4.53764006,0.04085094,98.59554628],[4.53764045,0.0408527,98.59632989],[4.53764083,0.04085446,98.59711413],[4.53764122,0.04085623,98.59789906],[4.53764161,0.04085799,98.59868473],[4.53764199,0.04085975,98.5994712],[4.53764238,0.04086151,98.60025851],[4.53764277,0.04086327,98.60104671],[4.53764315,0.04086503,98.60183586],[4.53764354,0.0408668,98.602626],[4.53764392,0.04086856,98.6034172],[4.53764431,0.04087032,98.60420949],[4.5376447,0.04087208,98.60500294],[4.53764508,0.04087384,98.60579759],[4.53764547,0.0408756,98.60659349],[4.53764586,0.04087737,98.6073907],[4.53764624,0.04087913,98.60818927],[4.53764663,0.04088089,98.60898924],[4.53764702,0.04088265,98.60979067],[4.5376474,0.04088441,98.61059361],[4.53764779,0.04088618,98.61139811],[4.53764818,0.04088794,98.61220422],[4.53764856,0.0408897,98.613012],[4.53764895,0.04089146,98.61382148],[4.53764934,0.04089322,98.61463273],[4.53764973,0.04089498,98.6154458],[4.53765012,0.04089674,98.61626073],[4.53765051,0.04089851,98.61707758],[4.53765089,0.04090027,98.61789639],[4.53765128,0.04090203,98.61871722],[4.53765167,0.04090379,98.61954012],[4.53765207,0.04090555,98.62036514],[4.53765246,0.04090731,98.62119233],[4.53765285,0.04090907,98.62202174],[4.53765324,0.04091083,98.62285342],[4.53765363,0.04091259,98.6236874],[4.53765402,0.04091435,98.62452364],[4.53765442,0.04091611,98.62536206],[4.53765481,0.04091787,98.6262026],[4.5376552,0.04091963,98.62704518],[4.5376556,0.04092139,98.62788975],[4.53765599,0.04092315,98.62873623],[4.53765639,0.04092491,98.62958456],[4.53765678,0.04092667,98.63043467],[4.53765718,0.04092843,98.63128648],[4.53765757,0.04093019,98.63213994],[4.53765797,0.04093195,98.63299497],[4.53765836,0.04093371,98.63385151],[4.53765876,0.04093547,98.63470949],[4.53765916,0.04093723,98.63556884],[4.53765955,0.04093899,98.63642949],[4.53765995,0.04094075,98.63729138],[4.53766034,0.04094251,98.63815444],[4.53766074,0.04094427,98.6390186],[4.53766114,0.04094603,98.63988379],[4.53766153,0.04094779,98.64074996],[4.53766193,0.04094955,98.64161702],[4.53766233,0.04095131,98.64248491],[4.53766272,0.04095307,98.64335357],[4.53766312,0.04095483,98.64422293],[4.53766351,0.04095659,98.64509292],[4.53766391,0.04095835,98.64596347],[4.5376643,0.04096011,98.64683453],[4.5376647,0.04096187,98.64770602],[4.53766509,0.04096363,98.64857787],[4.53766549,0.04096539,98.64945003],[4.53766588,0.04096715,98.65032243],[4.53766627,0.04096891,98.65119499],[4.53766667,0.04097067,98.65206766],[4.53766706,0.04097243,98.65294037],[4.53766745,0.04097419,98.65381304],[4.53766785,0.04097595,98.65468563],[4.53766824,0.04097771,98.65555805],[4.53766863,0.04097947,98.65643025],[4.53766902,0.04098123,98.65730218],[4.53766941,0.04098299,98.65817387],[4.5376698,0.04098475,98.65904539],[4.53767019,0.04098651,98.65991678],[4.53767058,0.04098828,98.6607881],[4.53767096,0.04099004,98.66165942],[4.53767135,0.0409918,98.66253078],[4.53767174,0.04099356,98.66340225],[4.53767213,0.04099532,98.66427387],[4.53767251,0.04099708,98.66514571],[4.5376729,0.04099885,98.66601782],[4.53767328,0.04100061,98.66689025],[4.53767367,0.04100237,98.66776307],[4.53767406,0.04100413,98.66863633],[4.53767444,0.04100589,98.66951008],[4.53767483,0.04100766,98.67038439],[4.53767521,0.04100942,98.6712593],[4.5376756,0.04101118,98.67213488],[4.53767598,0.04101294,98.67301117],[4.53767636,0.04101471,98.67388825],[4.53767675,0.04101647,98.67476615],[4.53767713,0.04101823,98.67564494],[4.53767752,0.04101999,98.67652467],[4.5376779,0.04102175,98.67740538],[4.53767828,0.04102352,98.67828706],[4.53767867,0.04102528,98.67916972],[4.53767905,0.04102704,98.68005337],[4.53767944,0.0410288,98.680938],[4.53767982,0.04103057,98.68182363],[4.5376802,0.04103233,98.68271025],[4.53768059,0.04103409,98.68359787],[4.53768097,0.04103585,98.6844865],[4.53768136,0.04103762,98.68537613],[4.53768174,0.04103938,98.68626677],[4.53768212,0.04104114,98.68715842],[4.53768251,0.0410429,98.68805109],[4.53768289,0.04104467,98.68894478],[4.53768327,0.04104643,98.6898395],[4.53768366,0.04104819,98.69073524],[4.53768404,0.04104995,98.69163202],[4.53768442,0.04105172,98.69252983],[4.53768481,0.04105348,98.69342868],[4.53768519,0.04105524,98.69432857],[4.53768558,0.041057,98.69522951],[4.53768596,0.04105877,98.6961315],[4.53768634,0.04106053,98.69703455],[4.53768673,0.04106229,98.69793865],[4.53768711,0.04106405,98.69884381],[4.53768749,0.04106582,98.69975004],[4.53768788,0.04106758,98.70065734],[4.53768826,0.04106934,98.70156571],[4.53768864,0.0410711,98.70247515],[4.53768903,0.04107287,98.70338567],[4.53768941,0.04107463,98.70429728],[4.53768979,0.04107639,98.70520998],[4.53769018,0.04107815,98.70612376],[4.53769056,0.04107992,98.70703864],[4.53769094,0.04108168,98.70795462],[4.53769133,0.04108344,98.70887169],[4.53769171,0.0410852,98.70978988],[4.53769209,0.04108697,98.71070917],[4.53769248,0.04108873,98.71162958],[4.53769286,0.04109049,98.7125511],[4.53769324,0.04109225,98.71347374],[4.53769363,0.04109402,98.71439751],[4.53769401,0.04109578,98.7153224],[4.53769439,0.04109754,98.71624843],[4.53769478,0.04109931,98.71717558],[4.53769516,0.04110107,98.71810388],[4.53769554,0.04110283,98.71903332],[4.53769593,0.04110459,98.71996388],[4.53769631,0.04110636,98.72089558],[4.53769669,0.04110812,98.7218284],[4.53769708,0.04110988,98.72276235],[4.53769746,0.04111164,98.72369742],[4.53769784,0.04111341,98.72463361],[4.53769823,0.04111517,98.72557091],[4.53769861,0.04111693,98.72650933],[4.53769899,0.04111869,98.72744886],[4.53769938,0.04112046,98.7283895],[4.53769976,0.04112222,98.72933124],[4.53770014,0.04112398,98.73027408],[4.53770053,0.04112574,98.73121802],[4.53770091,0.04112751,98.73216306],[4.53770129,0.04112927,98.73310919],[4.53770168,0.04113103,98.73405642],[4.53770206,0.04113279,98.73500473],[4.53770245,0.04113456,98.73595412],[4.53770283,0.04113632,98.7369046],[4.53770321,0.04113808,98.73785616],[4.5377036,0.04113984,98.73880879],[4.53770398,0.04114161,98.7397625],[4.53770436,0.04114337,98.74071728],[4.53770475,0.04114513,98.74167312],[4.53770513,0.04114689,98.74263004],[4.53770551,0.04114866,98.74358801],[4.5377059,0.04115042,98.74454704],[4.53770628,0.04115218,98.74550713],[4.53770666,0.04115394,98.74646828],[4.53770705,0.04115571,98.74743047],[4.53770743,0.04115747,98.74839371],[4.53770781,0.04115923,98.749358],[4.5377082,0.04116099,98.75032333],[4.53770858,0.04116276,98.7512897],[4.53770896,0.04116452,98.75225711],[4.53770935,0.04116628,98.75322555],[4.53770973,0.04116804,98.75419502],[4.53771011,0.04116981,98.75516552],[4.53771049,0.04117157,98.75613705],[4.53771088,0.04117333,98.7571096],[4.53771126,0.04117509,98.75808317],[4.53771164,0.04117686,98.75905775],[4.53771203,0.04117862,98.76003335],[4.53771241,0.04118038,98.76100996],[4.53771279,0.04118215,98.76198758],[4.53771317,0.04118391,98.7629662],[4.53771356,0.04118567,98.76394582],[4.53771394,0.04118743,98.76492645],[4.53771432,0.0411892,98.76590807],[4.53771471,0.04119096,98.76689068],[4.53771509,0.04119272,98.76787429],[4.53771547,0.04119448,98.76885888],[4.53771585,0.04119625,98.76984446],[4.53771624,0.04119801,98.77083102],[4.53771662,0.04119977,98.77181856],[4.537717,0.04120154,98.77280708],[4.53771738,0.0412033,98.77379656],[4.53771777,0.04120506,98.77478702],[4.53771815,0.04120682,98.77577845],[4.53771853,0.04120859,98.77677084],[4.53771891,0.04121035,98.77776419],[4.53771929,0.04121211,98.77875851],[4.53771968,0.04121388,98.77975377],[4.53772006,0.04121564,98.78074999],[4.53772044,0.0412174,98.78174716],[4.53772082,0.04121916,98.78274528],[4.5377212,0.04122093,98.78374434],[4.53772158,0.04122269,98.78474434],[4.53772197,0.04122445,98.78574528],[4.53772235,0.04122622,98.78674715],[4.53772273,0.04122798,98.78774996],[4.53772311,0.04122974,98.78875369],[4.53772349,0.0412315,98.78975835],[4.53772387,0.04123327,98.79076393],[4.53772425,0.04123503,98.79177044],[4.53772464,0.04123679,98.79277786],[4.53772502,0.04123856,98.79378619],[4.5377254,0.04124032,98.79479543],[4.53772578,0.04124208,98.79580559],[4.53772616,0.04124385,98.79681664],[4.53772654,0.04124561,98.7978286],[4.53772692,0.04124737,98.79884146]],"type":"LineString"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1003400","id":1,"type":"shoulder","predecessorId":0}},{"geometry":{"coordinates":[[4.53765157,0.04083036,98.62824337],[4.53765186,0.04083164,98.62881197],[4.53765225,0.0408334,98.62959186],[4.53765264,0.04083516,98.63037222],[4.53765304,0.04083692,98.63115307],[4.53765343,0.04083868,98.63193441],[4.53765382,0.04084044,98.63271628],[4.53765421,0.0408422,98.63349869],[4.5376546,0.04084397,98.63428165],[4.537655,0.04084573,98.63506518],[4.53765539,0.04084749,98.63584931],[4.53765578,0.04084925,98.63663404],[4.53765617,0.04085101,98.6374194],[4.53765656,0.04085277,98.63820541],[4.53765695,0.04085453,98.63899207],[4.53765734,0.04085629,98.63977942],[4.53765773,0.04085805,98.64056746],[4.53765812,0.04085981,98.64135621],[4.53765851,0.04086158,98.6421457],[4.5376589,0.04086334,98.64293594],[4.53765929,0.0408651,98.64372694],[4.53765968,0.04086686,98.64451873],[4.53766006,0.04086862,98.64531132],[4.53766045,0.04087038,98.64610472],[4.53766084,0.04087214,98.64689897],[4.53766123,0.04087391,98.64769407],[4.53766162,0.04087567,98.64849003],[4.53766201,0.04087743,98.64928689],[4.5376624,0.04087919,98.65008465],[4.53766278,0.04088095,98.65088334],[4.53766317,0.04088271,98.65168297],[4.53766356,0.04088448,98.65248355],[4.53766395,0.04088624,98.65328511],[4.53766434,0.040888,98.65408766],[4.53766472,0.04088976,98.65489122],[4.53766511,0.04089152,98.65569581],[4.5376655,0.04089328,98.65650145],[4.53766589,0.04089505,98.65730814],[4.53766627,0.04089681,98.65811591],[4.53766666,0.04089857,98.65892482],[4.53766705,0.04090033,98.65973495],[4.53766744,0.04090209,98.66054638],[4.53766783,0.04090386,98.66135921],[4.53766821,0.04090562,98.66217353],[4.5376686,0.04090738,98.66298942],[4.53766899,0.04090914,98.66380695],[4.53766938,0.0409109,98.66462611],[4.53766977,0.04091266,98.66544687],[4.53767016,0.04091442,98.6662692],[4.53767054,0.04091619,98.66709306],[4.53767093,0.04091795,98.66791844],[4.53767132,0.04091971,98.66874529],[4.53767171,0.04092147,98.66957359],[4.5376721,0.04092323,98.67040331],[4.53767249,0.04092499,98.67123441],[4.53767288,0.04092675,98.67206686],[4.53767327,0.04092852,98.67290064],[4.53767366,0.04093028,98.67373572],[4.53767405,0.04093204,98.67457206],[4.53767444,0.0409338,98.67540963],[4.53767483,0.04093556,98.67624841],[4.53767522,0.04093732,98.67708836],[4.53767561,0.04093908,98.67792945],[4.537676,0.04094085,98.67877165],[4.53767639,0.04094261,98.67961493],[4.53767678,0.04094437,98.68045927],[4.53767717,0.04094613,98.68130463],[4.53767755,0.04094789,98.68215097],[4.53767794,0.04094965,98.68299828],[4.53767833,0.04095141,98.68384652],[4.53767872,0.04095318,98.68469566],[4.53767911,0.04095494,98.68554567],[4.5376795,0.0409567,98.68639652],[4.53767989,0.04095846,98.68724819],[4.53768028,0.04096022,98.68810064],[4.53768067,0.04096198,98.68895385],[4.53768105,0.04096375,98.68980779],[4.53768144,0.04096551,98.69066242],[4.53768183,0.04096727,98.69151772],[4.53768222,0.04096903,98.69237366],[4.5376826,0.04097079,98.69323021],[4.53768299,0.04097256,98.69408734],[4.53768338,0.04097432,98.69494502],[4.53768376,0.04097608,98.69580323],[4.53768415,0.04097784,98.69666195],[4.53768454,0.0409796,98.69752126],[4.53768492,0.04098137,98.69838125],[4.53768531,0.04098313,98.69924202],[4.53768569,0.04098489,98.70010365],[4.53768608,0.04098665,98.70096624],[4.53768647,0.04098842,98.70182988],[4.53768685,0.04099018,98.70269466],[4.53768724,0.04099194,98.70356062],[4.53768762,0.0409937,98.70442778],[4.53768801,0.04099546,98.70529619],[4.53768839,0.04099723,98.70616586],[4.53768878,0.04099899,98.70703682],[4.53768916,0.04100075,98.70790912],[4.53768955,0.04100251,98.70878277],[4.53768994,0.04100428,98.70965782],[4.53769032,0.04100604,98.71053428],[4.53769071,0.0410078,98.71141219],[4.53769109,0.04100956,98.71229159],[4.53769148,0.04101133,98.71317249],[4.53769187,0.04101309,98.71405493],[4.53769225,0.04101485,98.71493895],[4.53769264,0.04101661,98.71582456],[4.53769303,0.04101837,98.71671178],[4.53769341,0.04102014,98.71760059],[4.5376938,0.0410219,98.71849095],[4.53769419,0.04102366,98.71938286],[4.53769457,0.04102542,98.72027628],[4.53769496,0.04102718,98.7211712],[4.53769535,0.04102895,98.72206759],[4.53769574,0.04103071,98.72296544],[4.53769612,0.04103247,98.72386472],[4.53769651,0.04103423,98.7247654],[4.5376969,0.04103599,98.72566747],[4.53769729,0.04103776,98.7265709],[4.53769768,0.04103952,98.72747568],[4.53769806,0.04104128,98.72838178],[4.53769845,0.04104304,98.72928917],[4.53769884,0.0410448,98.73019785],[4.53769923,0.04104656,98.73110778],[4.53769962,0.04104833,98.73201894],[4.5377,0.04105009,98.73293131],[4.53770039,0.04105185,98.73384487],[4.53770078,0.04105361,98.7347596],[4.53770117,0.04105537,98.73567547],[4.53770156,0.04105714,98.73659247],[4.53770194,0.0410589,98.73751057],[4.53770233,0.04106066,98.73842975],[4.53770272,0.04106242,98.73934999],[4.53770311,0.04106418,98.74027126],[4.5377035,0.04106594,98.74119355],[4.53770388,0.04106771,98.74211682],[4.53770427,0.04106947,98.74304107],[4.53770466,0.04107123,98.74396627],[4.53770505,0.04107299,98.74489239],[4.53770543,0.04107475,98.74581941],[4.53770582,0.04107652,98.74674732],[4.53770621,0.04107828,98.74767609],[4.53770659,0.04108004,98.74860569],[4.53770698,0.0410818,98.74953612],[4.53770737,0.04108356,98.75046733],[4.53770775,0.04108533,98.75139932],[4.53770814,0.04108709,98.75233205],[4.53770853,0.04108885,98.75326554],[4.53770891,0.04109061,98.75419978],[4.5377093,0.04109238,98.75513479],[4.53770968,0.04109414,98.75607059],[4.53771007,0.0410959,98.75700718],[4.53771045,0.04109766,98.75794458],[4.53771084,0.04109943,98.75888281],[4.53771122,0.04110119,98.75982185],[4.53771161,0.04110295,98.76076173],[4.53771199,0.04110471,98.76170244],[4.53771238,0.04110648,98.76264399],[4.53771276,0.04110824,98.7635864],[4.53771314,0.04111,98.76452966],[4.53771353,0.04111176,98.76547378],[4.53771391,0.04111353,98.76641878],[4.5377143,0.04111529,98.76736465],[4.53771468,0.04111705,98.7683114],[4.53771506,0.04111882,98.76925905],[4.53771545,0.04112058,98.77020758],[4.53771583,0.04112234,98.77115703],[4.53771621,0.0411241,98.77210737],[4.53771659,0.04112587,98.77305864],[4.53771698,0.04112763,98.77401083],[4.53771736,0.04112939,98.77496394],[4.53771774,0.04113116,98.77591799],[4.53771813,0.04113292,98.77687298],[4.53771851,0.04113468,98.77782892],[4.53771889,0.04113645,98.77878582],[4.53771927,0.04113821,98.77974367],[4.53771965,0.04113997,98.7807025],[4.53772004,0.04114174,98.78166229],[4.53772042,0.0411435,98.78262307],[4.5377208,0.04114526,98.78358484],[4.53772118,0.04114702,98.7845476],[4.53772156,0.04114879,98.78551136],[4.53772195,0.04115055,98.78647613],[4.53772233,0.04115231,98.78744191],[4.53772271,0.04115408,98.78840871],[4.53772309,0.04115584,98.78937653],[4.53772347,0.0411576,98.7903454],[4.53772385,0.04115937,98.7913153],[4.53772423,0.04116113,98.79228624],[4.53772461,0.0411629,98.79325824],[4.53772499,0.04116466,98.7942313],[4.53772538,0.04116642,98.79520543],[4.53772576,0.04116819,98.79618063],[4.53772614,0.04116995,98.79715691],[4.53772652,0.04117171,98.79813427],[4.5377269,0.04117348,98.79911273],[4.53772728,0.04117524,98.80009228],[4.53772766,0.041177,98.80107294],[4.53772804,0.04117877,98.80205472],[4.53772842,0.04118053,98.80303761],[4.5377288,0.04118229,98.80402163],[4.53772918,0.04118406,98.80500678],[4.53772956,0.04118582,98.80599307],[4.53772994,0.04118758,98.8069805],[4.53773032,0.04118935,98.80796909],[4.5377307,0.04119111,98.80895884],[4.53773108,0.04119287,98.80994975],[4.53773146,0.04119464,98.81094184],[4.53773184,0.0411964,98.8119351],[4.53773222,0.04119817,98.81292955],[4.5377326,0.04119993,98.81392519],[4.53773298,0.04120169,98.81492203],[4.53773336,0.04120346,98.81592008],[4.53773374,0.04120522,98.81691934],[4.53773412,0.04120698,98.81791982],[4.5377345,0.04120875,98.81892152],[4.53773488,0.04121051,98.81992446],[4.53773526,0.04121227,98.82092864],[4.53773564,0.04121404,98.82193406],[4.53773602,0.0412158,98.82294074],[4.53773641,0.04121757,98.82394868],[4.53773679,0.04121933,98.82495788],[4.53773717,0.04122109,98.82596836],[4.53773755,0.04122286,98.82698012],[4.53773793,0.04122462,98.82799316],[4.53773831,0.04122638,98.8290075],[4.53773869,0.04122815,98.83002314],[4.53773907,0.04122991,98.83104009],[4.53773945,0.04123167,98.83205835],[4.53773983,0.04123344,98.83307794],[4.53774021,0.0412352,98.83409885],[4.53774059,0.04123697,98.8351211],[4.53774097,0.04123873,98.8361447],[4.53774135,0.04124049,98.83716964],[4.53774173,0.04124226,98.83819594],[4.53774211,0.04124402,98.8392236]],"type":"LineString"},"type":"feature","properties":{"successorId":2,"level":false,"roadId":"1003400","id":2,"type":"border","predecessorId":0}},{"geometry":{"coordinates":[[4.53750652,0.04086306,98.36121883],[4.53750613,0.0408613,98.36038553],[4.53750574,0.04085954,98.35955298],[4.53750535,0.04085778,98.35872112],[4.53750496,0.04085602,98.35788992],[4.53750457,0.04085426,98.35705932],[4.53750418,0.0408525,98.35622927],[4.53750379,0.04085074,98.35539974],[4.5375034,0.04084898,98.35457065],[4.53750301,0.04084722,98.35374198],[4.53750262,0.04084546,98.35291367],[4.53750223,0.04084371,98.35208567],[4.53750185,0.04084195,98.35125793],[4.53750145,0.04084019,98.35043041],[4.53750106,0.04083843,98.34960305],[4.53750067,0.04083667,98.34877581],[4.53750028,0.04083491,98.34794864],[4.53749989,0.04083315,98.34712148],[4.5374995,0.04083139,98.3462943],[4.53749911,0.04082963,98.34546703],[4.53749872,0.04082787,98.34463964],[4.53749833,0.04082612,98.34381207],[4.53749793,0.04082436,98.34298427],[4.53749754,0.0408226,98.34215619],[4.53749715,0.04082084,98.3413278],[4.53749675,0.04081908,98.34049936],[4.53749636,0.04081732,98.33967105],[4.53749597,0.04081556,98.33884298],[4.53749557,0.04081381,98.33801527],[4.53749518,0.04081205,98.33718804],[4.53749478,0.04081029,98.33636141],[4.53749439,0.04080853,98.3355355],[4.537494,0.04080677,98.33471043],[4.5374936,0.04080501,98.33388631],[4.53749321,0.04080326,98.33306327],[4.53749281,0.0408015,98.33224144],[4.53749242,0.04079974,98.33142099],[4.53749203,0.04079798,98.3306021],[4.53749164,0.04079622,98.32978495],[4.53749124,0.04079446,98.32896972],[4.53749085,0.0407927,98.32815643],[4.53749046,0.04079094,98.32734445],[4.53749007,0.04078919,98.326533],[4.53748968,0.04078743,98.32572136],[4.53748928,0.04078567,98.32490939],[4.53748889,0.04078391,98.32409736],[4.5374885,0.04078215,98.32328555],[4.5374881,0.04078039,98.32247423],[4.53748771,0.04077863,98.32166367],[4.53748732,0.04077687,98.32085415],[4.53748693,0.04077511,98.32004595],[4.53748653,0.04077336,98.31923935],[4.53748614,0.0407716,98.31843461],[4.53748575,0.04076984,98.31763201],[4.53748536,0.04076808,98.31683184],[4.53748497,0.04076632,98.31603436],[4.53748458,0.04076456,98.31523986],[4.53748419,0.0407628,98.3144486],[4.5374838,0.04076104,98.31366037],[4.53748342,0.04075928,98.31287392],[4.53748303,0.04075752,98.31208845],[4.53748264,0.04075576,98.31130367],[4.53748225,0.040754,98.31051936],[4.53748187,0.04075224,98.30973527],[4.53748148,0.04075048,98.30895116],[4.53748109,0.04074872,98.30816678],[4.5374807,0.04074696,98.30738189],[4.53748031,0.0407452,98.3065962],[4.53747992,0.04074344,98.30580947],[4.53747953,0.04074168,98.30502142],[4.53747914,0.04073992,98.30423177],[4.53747875,0.04073816,98.30344028],[4.53747835,0.0407364,98.30264666],[4.53747796,0.04073464,98.30185065],[4.53747756,0.04073289,98.30105236],[4.53747716,0.04073113,98.30025255],[4.53747677,0.04072937,98.29945241],[4.53747637,0.04072761,98.2986537],[4.53747597,0.04072585,98.29785826],[4.53747558,0.04072409,98.29706792],[4.53747519,0.04072234,98.29628451],[4.5374748,0.04072058,98.29550988],[4.53747441,0.04071881,98.29474586],[4.53747403,0.04071705,98.29399342],[4.53747365,0.04071529,98.29324683],[4.53747326,0.04071353,98.29249713],[4.53747288,0.04071177,98.29173528],[4.53747248,0.04071001,98.29095226],[4.53747208,0.04070825,98.29013901],[4.53747166,0.0407065,98.28928805],[4.53747122,0.04070475,98.28840194],[4.53747078,0.040703,98.28748722],[4.53747032,0.04070126,98.28655045],[4.53746987,0.04069951,98.2855982],[4.5374694,0.04069777,98.28463705],[4.53746894,0.04069603,98.28367359],[4.53746848,0.04069428,98.28271441],[4.53746802,0.04069254,98.2817653],[4.53746756,0.0406908,98.28082652],[4.53746711,0.04068905,98.27989606],[4.53746666,0.0406873,98.27897192],[4.53746621,0.04068556,98.27805208],[4.53746576,0.04068381,98.27713454],[4.53746531,0.04068206,98.27621727],[4.53746486,0.04068032,98.27529828],[4.53746441,0.04067857,98.27437593],[4.53746395,0.04067683,98.27344897],[4.53746349,0.04067508,98.27251617],[4.53746304,0.04067334,98.27157627],[4.53746257,0.04067159,98.27062802],[4.53746211,0.04066985,98.26967019],[4.53746164,0.04066811,98.26870151],[4.53746116,0.04066637,98.26772065],[4.53746068,0.04066463,98.26672588],[4.53746019,0.04066289,98.26571537],[4.5374597,0.04066116,98.26468731],[4.5374592,0.04065942,98.26364031],[4.53745869,0.04065769,98.2625756],[4.53745818,0.04065595,98.26149528],[4.53745766,0.04065422,98.26040145],[4.53745713,0.04065249,98.25929622],[4.53745661,0.04065076,98.25818169],[4.53745608,0.04064904,98.25705996],[4.53745555,0.04064731,98.25593316],[4.53745501,0.04064558,98.25480338],[4.53745448,0.04064385,98.25367274],[4.53745395,0.04064213,98.25254336],[4.53745342,0.0406404,98.25141736],[4.53745289,0.04063867,98.25029682],[4.53745236,0.04063694,98.24918257],[4.53745183,0.04063521,98.24807385],[4.53745131,0.04063348,98.24696975],[4.53745078,0.04063175,98.24586939],[4.53745026,0.04063002,98.24477189],[4.53744974,0.04062829,98.24367634],[4.53744922,0.04062656,98.24258187],[4.5374487,0.04062483,98.24148756],[4.53744817,0.0406231,98.24039257],[4.53744765,0.04062137,98.23929611],[4.53744713,0.04061964,98.23819742],[4.5374466,0.04061791,98.23709574],[4.53744608,0.04061618,98.23599032],[4.53744555,0.04061445,98.23488037],[4.53744502,0.04061272,98.23376531],[4.53744449,0.04061099,98.23264547],[4.53744395,0.04060927,98.23152148],[4.53744342,0.04060754,98.23039401],[4.53744288,0.04060581,98.22926369],[4.53744235,0.04060408,98.22813117],[4.53744181,0.04060236,98.22699701],[4.53744127,0.04060063,98.22586178],[4.53744074,0.0405989,98.22472603],[4.5374402,0.04059718,98.22359032],[4.53743966,0.04059545,98.22245521],[4.53743912,0.04059372,98.22132126],[4.53743859,0.040592,98.22018904],[4.53743805,0.04059027,98.2190591],[4.53743751,0.04058854,98.21793201],[4.53743698,0.04058681,98.21680833],[4.53743645,0.04058509,98.21568863],[4.53743592,0.04058336,98.21457348],[4.53743539,0.04058163,98.21346344],[4.53743486,0.0405799,98.21235908],[4.53743434,0.04057817,98.21126098],[4.53743381,0.04057644,98.21016969],[4.53743329,0.04057471,98.20908579],[4.53743278,0.04057298,98.2080097],[4.53743226,0.04057124,98.20694091],[4.53743175,0.04056951,98.20587865],[4.53743124,0.04056778,98.20482211],[4.53743073,0.04056604,98.20377052],[4.53743022,0.04056431,98.20272306],[4.53742972,0.04056258,98.20167895],[4.53742921,0.04056084,98.20063739],[4.5374287,0.04055911,98.19959758],[4.5374282,0.04055737,98.19855873],[4.53742769,0.04055564,98.19752003],[4.53742719,0.0405539,98.19648067],[4.53742668,0.04055217,98.19543986],[4.53742618,0.04055044,98.19439677],[4.53742567,0.0405487,98.19335059],[4.53742516,0.04054697,98.1923005],[4.53742464,0.04054524,98.19124568],[4.53742413,0.0405435,98.19018531],[4.53742361,0.04054177,98.18911856],[4.53742309,0.04054004,98.18804476],[4.53742257,0.04053831,98.18696645],[4.53742205,0.04053658,98.18588968],[4.53742153,0.04053485,98.18482064],[4.53742102,0.04053311,98.18376554],[4.53742051,0.04053138,98.18273059],[4.53742002,0.04052964,98.18172201],[4.53741953,0.0405279,98.18074605],[4.53741906,0.04052616,98.17980896],[4.5374186,0.04052442,98.17891557],[4.53741816,0.04052267,98.17806277],[4.53741773,0.04052092,98.17724464],[4.53741731,0.04051916,98.17645528],[4.53741689,0.04051741,98.17568877],[4.53741648,0.04051565,98.17493917],[4.53741608,0.04051389,98.17420054],[4.53741568,0.04051214,98.17346691],[4.53741527,0.04051038,98.17273234],[4.53741487,0.04050862,98.17199092],[4.53741446,0.04050686,98.17123981],[4.53741404,0.04050511,98.17048008],[4.53741363,0.04050335,98.16971306],[4.53741321,0.0405016,98.16894008],[4.53741279,0.04049985,98.16816248],[4.53741236,0.04049809,98.16738154],[4.53741194,0.04049634,98.16659841],[4.53741152,0.04049459,98.16581423],[4.53741109,0.04049283,98.16503011],[4.53741067,0.04049108,98.1642472],[4.53741024,0.04048933,98.16346663],[4.53740982,0.04048757,98.16268953],[4.5374094,0.04048582,98.16191638],[4.53740897,0.04048407,98.1611468],[4.53740855,0.04048231,98.16038036],[4.53740813,0.04048056,98.15961667],[4.53740771,0.0404788,98.15885535],[4.53740729,0.04047705,98.15809598],[4.53740687,0.04047529,98.15733817],[4.53740645,0.04047354,98.15658154],[4.53740603,0.04047179,98.15582566],[4.53740561,0.04047003,98.15507015],[4.53740519,0.04046828,98.15431461],[4.53740477,0.04046652,98.15355864],[4.53740435,0.04046477,98.15280182],[4.53740393,0.04046302,98.15204377],[4.5374035,0.04046126,98.15128408],[4.53740308,0.04045951,98.15052234],[4.53740265,0.04045775,98.14975815],[4.53740223,0.040456,98.14899113],[4.5374018,0.04045425,98.14822169],[4.53740137,0.0404525,98.14745124],[4.53740094,0.04045074,98.14668126],[4.53740051,0.04044899,98.14591322],[4.53740008,0.04044724,98.14514859],[4.53739966,0.04044549,98.14438887],[4.53739923,0.04044373,98.14363554],[4.53739881,0.04044198,98.14289008],[4.53739839,0.04044023,98.14215398],[4.53739797,0.04043847,98.14142873],[4.53739756,0.04043671,98.14071583],[4.53739716,0.04043496,98.14001678],[4.53739675,0.0404332,98.13933308],[4.53739636,0.04043144,98.1386663],[4.53739596,0.04042968,98.1380177],[4.53739558,0.04042792,98.13738654],[4.5373952,0.04042615,98.13677137],[4.53739482,0.04042439,98.13617074],[4.53739445,0.04042263,98.13558321],[4.53739409,0.04042086,98.13500731],[4.53739372,0.04041909,98.13444161],[4.53739336,0.04041733,98.13388463],[4.537393,0.04041556,98.13333492],[4.53739264,0.04041379,98.13279102],[4.53739229,0.04041202,98.13225145],[4.53739193,0.04041025,98.13171447],[4.53739157,0.04040849,98.13117678],[4.53739121,0.04040672,98.13063445],[4.53739085,0.04040495,98.13008351],[4.53739048,0.04040318,98.12952001],[4.53739011,0.04040142,98.12893996],[4.53738973,0.04039966,98.12833939],[4.53738934,0.0403979,98.12771442],[4.53738894,0.04039614,98.12706585],[4.53738854,0.04039438,98.12640039],[4.53738813,0.04039262,98.12572515],[4.53738772,0.04039087,98.12504668],[4.53738732,0.04038911,98.12436709],[4.53738691,0.04038735,98.12368628],[4.53738649,0.0403856,98.12300414],[4.53738608,0.04038384,98.12232066],[4.53738567,0.04038209,98.12163593],[4.53738526,0.04038033,98.12095009],[4.53738484,0.04037858,98.12026325],[4.53738443,0.04037682,98.11957555],[4.53738401,0.04037507,98.11888711],[4.5373836,0.04037331,98.11819807],[4.53738318,0.04037156,98.11750855],[4.53738276,0.04036981,98.11681869],[4.53738235,0.04036805,98.1161286],[4.53738193,0.0403663,98.11543841],[4.53738151,0.04036454,98.11474825],[4.53738109,0.04036279,98.11405824],[4.53738068,0.04036103,98.11336852],[4.53738026,0.04035928,98.11267922],[4.53737984,0.04035753,98.11199053],[4.53737942,0.04035577,98.11130262],[4.537379,0.04035402,98.11061568],[4.53737858,0.04035227,98.10992988],[4.53737816,0.04035051,98.1092454],[4.53737775,0.04034876,98.10856243],[4.53737733,0.040347,98.10788114],[4.53737691,0.04034525,98.10720171],[4.53737649,0.0403435,98.10652419],[4.53737607,0.04034174,98.10584858],[4.53737566,0.04033999,98.10517497],[4.53737524,0.04033824,98.1045035],[4.53737482,0.04033648,98.10383428],[4.53737441,0.04033473,98.10316745],[4.53737399,0.04033297,98.10250313],[4.53737358,0.04033122,98.10184144],[4.53737317,0.04032946,98.10118252],[4.53737275,0.04032771,98.10052647],[4.53737234,0.04032595,98.09987344],[4.53737193,0.0403242,98.09922355],[4.53737152,0.04032244,98.09857691],[4.5373711,0.04032069,98.09793367],[4.53737069,0.04031893,98.09729394],[4.53737029,0.04031718,98.09665785],[4.53736988,0.04031542,98.09602554],[4.53736947,0.04031367,98.09539711],[4.53736906,0.04031191,98.09477263],[4.53736866,0.04031015,98.09415205],[4.53736826,0.0403084,98.09353529],[4.53736785,0.04030664,98.09292231],[4.53736745,0.04030488,98.09231305],[4.53736705,0.04030313,98.09170744],[4.53736665,0.04030137,98.09110543],[4.53736625,0.04029961,98.09050696],[4.53736585,0.04029785,98.08991197],[4.53736545,0.0402961,98.08932039],[4.53736505,0.04029434,98.08873187],[4.53736465,0.04029258,98.088146],[4.53736426,0.04029082,98.08756269],[4.53736386,0.04028906,98.0869819],[4.53736346,0.04028731,98.08640361],[4.53736307,0.04028555,98.08582778],[4.53736267,0.04028379,98.08525436],[4.53736228,0.04028203,98.08468333],[4.53736188,0.04028027,98.08411464],[4.53736149,0.04027851,98.08354826],[4.5373611,0.04027675,98.08298415],[4.5373607,0.040275,98.08242228],[4.53736031,0.04027324,98.08186261],[4.53735992,0.04027148,98.08130509],[4.53735953,0.04026972,98.08074971],[4.53735913,0.04026796,98.08019641],[4.53735874,0.0402662,98.07964516],[4.53735835,0.04026444,98.07909592],[4.53735796,0.04026268,98.07854866],[4.53735757,0.04026092,98.07800333],[4.53735718,0.04025916,98.07745991],[4.53735679,0.04025741,98.07691835],[4.5373564,0.04025565,98.07637862],[4.53735601,0.04025389,98.07584075],[4.53735562,0.04025213,98.07530507],[4.53735523,0.04025037,98.07477196],[4.53735484,0.04024861,98.07424165],[4.53735445,0.04024685,98.07371402],[4.53735406,0.04024509,98.07318892],[4.53735367,0.04024333,98.07266618],[4.53735329,0.04024157,98.07214566],[4.5373529,0.04023981,98.07162719],[4.53735251,0.04023805,98.07111063],[4.53735212,0.04023629,98.07059581],[4.53735174,0.04023453,98.07008257],[4.53735135,0.04023277,98.06957077],[4.53735096,0.04023101,98.06906024],[4.53735058,0.04022925,98.06855082],[4.53735019,0.04022749,98.06804236],[4.5373498,0.04022573,98.06753471],[4.53734942,0.04022397,98.06702769],[4.53734903,0.04022221,98.06652116],[4.53734864,0.04022045,98.06601495],[4.53734825,0.04021869,98.06550891],[4.53734788,0.04021701,98.06502578]],"type":"LineString"},"type":"feature","properties":{"successorId":-5,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1003400","id":-5,"type":"none","predecessorId":-4}},{"geometry":{"coordinates":[[4.53755025,0.0408532,98.36121883],[4.53754986,0.04085144,98.36038553],[4.53754947,0.04084968,98.35955298],[4.53754908,0.04084792,98.35872112],[4.53754869,0.04084616,98.35788992],[4.5375483,0.0408444,98.35705932],[4.53754791,0.04084264,98.35622927],[4.53754752,0.04084088,98.35539974],[4.53754713,0.04083912,98.35457065],[4.53754674,0.04083736,98.35374198],[4.53754635,0.0408356,98.35291367],[4.53754596,0.04083384,98.35208567],[4.53754557,0.04083208,98.35125793],[4.53754518,0.04083032,98.35043041],[4.53754479,0.04082856,98.34960305],[4.5375444,0.0408268,98.34877581],[4.53754401,0.04082504,98.34794864],[4.53754362,0.04082328,98.34712148],[4.53754323,0.04082152,98.3462943],[4.53754284,0.04081976,98.34546703],[4.53754245,0.040818,98.34463964],[4.53754205,0.04081625,98.34381207],[4.53754166,0.04081449,98.34298427],[4.53754127,0.04081273,98.34215619],[4.53754087,0.04081097,98.3413278],[4.53754048,0.04080921,98.34049936],[4.53754009,0.04080745,98.33967105],[4.53753969,0.04080569,98.33884298],[4.5375393,0.04080393,98.33801527],[4.5375389,0.04080217,98.33718804],[4.53753851,0.04080041,98.33636141],[4.53753811,0.04079866,98.3355355],[4.53753772,0.0407969,98.33471043],[4.53753732,0.04079514,98.33388631],[4.53753693,0.04079338,98.33306327],[4.53753654,0.04079162,98.33224144],[4.53753614,0.04078986,98.33142099],[4.53753575,0.0407881,98.3306021],[4.53753536,0.04078634,98.32978495],[4.53753496,0.04078458,98.32896972],[4.53753457,0.04078282,98.32815643],[4.53753418,0.04078106,98.32734445],[4.53753379,0.04077931,98.326533],[4.5375334,0.04077755,98.32572136],[4.537533,0.04077579,98.32490939],[4.53753261,0.04077403,98.32409736],[4.53753222,0.04077227,98.32328555],[4.53753182,0.04077051,98.32247423],[4.53753143,0.04076875,98.32166367],[4.53753104,0.04076699,98.32085415],[4.53753064,0.04076523,98.32004595],[4.53753025,0.04076347,98.31923935],[4.53752986,0.04076171,98.31843461],[4.53752947,0.04075995,98.31763201],[4.53752908,0.04075819,98.31683184],[4.53752869,0.04075643,98.31603436],[4.5375283,0.04075467,98.31523986],[4.53752791,0.04075291,98.3144486],[4.53752752,0.04075115,98.31366037],[4.53752713,0.04074939,98.31287392],[4.53752675,0.04074763,98.31208845],[4.53752636,0.04074587,98.31130367],[4.53752597,0.04074411,98.31051936],[4.53752558,0.04074235,98.30973527],[4.5375252,0.04074059,98.30895116],[4.53752481,0.04073883,98.30816678],[4.53752442,0.04073707,98.30738189],[4.53752403,0.04073531,98.3065962],[4.53752364,0.04073355,98.30580947],[4.53752325,0.04073179,98.30502142],[4.53752286,0.04073003,98.30423177],[4.53752247,0.04072827,98.30344028],[4.53752207,0.04072651,98.30264666],[4.53752168,0.04072475,98.30185065],[4.53752128,0.04072299,98.30105236],[4.53752089,0.04072123,98.30025255],[4.53752049,0.04071947,98.29945241],[4.53752009,0.04071772,98.2986537],[4.5375197,0.04071596,98.29785826],[4.5375193,0.0407142,98.29706792],[4.53751891,0.04071244,98.29628451],[4.53751852,0.04071068,98.29550988],[4.53751813,0.04070892,98.29474586],[4.53751775,0.04070715,98.29399342],[4.53751737,0.04070539,98.29324683],[4.53751699,0.04070363,98.29249713],[4.53751661,0.04070187,98.29173528],[4.53751621,0.04070011,98.29095226],[4.53751581,0.04069835,98.29013901],[4.53751539,0.0406966,98.28928805],[4.53751496,0.04069485,98.28840194],[4.53751451,0.0406931,98.28748722],[4.53751406,0.04069135,98.28655045],[4.5375136,0.04068961,98.2855982],[4.53751314,0.04068787,98.28463705],[4.53751268,0.04068612,98.28367359],[4.53751222,0.04068438,98.28271441],[4.53751176,0.04068263,98.2817653],[4.5375113,0.04068089,98.28082652],[4.53751085,0.04067914,98.27989606],[4.5375104,0.04067739,98.27897192],[4.53750996,0.04067565,98.27805208],[4.53750951,0.0406739,98.27713454],[4.53750906,0.04067215,98.27621727],[4.53750861,0.04067041,98.27529828],[4.53750816,0.04066866,98.27437593],[4.53750771,0.04066691,98.27344897],[4.53750726,0.04066517,98.27251617],[4.5375068,0.04066342,98.27157627],[4.53750634,0.04066168,98.27062802],[4.53750587,0.04065993,98.26967019],[4.53750541,0.04065819,98.26870151],[4.53750493,0.04065645,98.26772065],[4.53750446,0.04065471,98.26672588],[4.53750397,0.04065297,98.26571537],[4.53750348,0.04065123,98.26468731],[4.53750298,0.0406495,98.26364031],[4.53750248,0.04064776,98.2625756],[4.53750197,0.04064603,98.26149528],[4.53750145,0.0406443,98.26040145],[4.53750093,0.04064257,98.25929622],[4.53750041,0.04064084,98.25818169],[4.53749988,0.04063911,98.25705996],[4.53749935,0.04063738,98.25593316],[4.53749882,0.04063565,98.25480338],[4.53749829,0.04063392,98.25367274],[4.53749776,0.04063219,98.25254336],[4.53749723,0.04063047,98.25141736],[4.5374967,0.04062874,98.25029682],[4.53749618,0.04062701,98.24918257],[4.53749566,0.04062528,98.24807385],[4.53749513,0.04062355,98.24696975],[4.53749461,0.04062182,98.24586939],[4.53749409,0.04062008,98.24477189],[4.53749357,0.04061835,98.24367634],[4.53749305,0.04061662,98.24258187],[4.53749253,0.04061489,98.24148756],[4.53749201,0.04061316,98.24039257],[4.53749149,0.04061143,98.23929611],[4.53749097,0.0406097,98.23819742],[4.53749045,0.04060797,98.23709574],[4.53748993,0.04060624,98.23599032],[4.5374894,0.04060451,98.23488037],[4.53748887,0.04060278,98.23376531],[4.53748834,0.04060105,98.23264547],[4.53748781,0.04059932,98.23152148],[4.53748728,0.0405976,98.23039401],[4.53748674,0.04059587,98.22926369],[4.5374862,0.04059414,98.22813117],[4.53748567,0.04059241,98.22699701],[4.53748513,0.04059069,98.22586178],[4.53748459,0.04058896,98.22472603],[4.53748406,0.04058723,98.22359032],[4.53748352,0.0405855,98.22245521],[4.53748298,0.04058378,98.22132126],[4.53748245,0.04058205,98.22018904],[4.53748191,0.04058032,98.2190591],[4.53748137,0.0405786,98.21793201],[4.53748084,0.04057687,98.21680833],[4.53748031,0.04057514,98.21568863],[4.53747978,0.04057341,98.21457348],[4.53747925,0.04057168,98.21346344],[4.53747872,0.04056995,98.21235908],[4.53747819,0.04056822,98.21126098],[4.53747767,0.04056649,98.21016969],[4.53747715,0.04056476,98.20908579],[4.53747663,0.04056303,98.2080097],[4.53747611,0.0405613,98.20694091],[4.5374756,0.04055957,98.20587865],[4.53747508,0.04055783,98.20482211],[4.53747457,0.0405561,98.20377052],[4.53747406,0.04055437,98.20272306],[4.53747356,0.04055263,98.20167895],[4.53747305,0.0405509,98.20063739],[4.53747254,0.04054917,98.19959758],[4.53747203,0.04054743,98.19855873],[4.53747153,0.0405457,98.19752003],[4.53747102,0.04054396,98.19648067],[4.53747051,0.04054223,98.19543986],[4.53747,0.0405405,98.19439677],[4.53746949,0.04053876,98.19335059],[4.53746898,0.04053703,98.1923005],[4.53746846,0.0405353,98.19124568],[4.53746794,0.04053357,98.19018531],[4.53746742,0.04053183,98.18911856],[4.5374669,0.0405301,98.18804476],[4.53746638,0.04052837,98.18696645],[4.53746586,0.04052664,98.18588968],[4.53746533,0.04052491,98.18482064],[4.53746482,0.04052318,98.18376554],[4.53746431,0.04052145,98.18273059],[4.53746381,0.04051971,98.18172201],[4.53746332,0.04051797,98.18074605],[4.53746285,0.04051623,98.17980896],[4.53746239,0.04051449,98.17891557],[4.53746194,0.04051274,98.17806277],[4.53746151,0.04051099,98.17724464],[4.53746108,0.04050923,98.17645528],[4.53746067,0.04050748,98.17568877],[4.53746026,0.04050572,98.17493917],[4.53745985,0.04050397,98.17420054],[4.53745944,0.04050221,98.17346691],[4.53745904,0.04050045,98.17273234],[4.53745863,0.0404987,98.17199092],[4.53745822,0.04049694,98.17123981],[4.5374578,0.04049518,98.17048008],[4.53745738,0.04049343,98.16971306],[4.53745696,0.04049168,98.16894008],[4.53745654,0.04048992,98.16816248],[4.53745611,0.04048817,98.16738154],[4.53745569,0.04048642,98.16659841],[4.53745526,0.04048467,98.16581423],[4.53745483,0.04048291,98.16503011],[4.53745441,0.04048116,98.1642472],[4.53745398,0.04047941,98.16346663],[4.53745356,0.04047765,98.16268953],[4.53745313,0.0404759,98.16191638],[4.53745271,0.04047415,98.1611468],[4.53745229,0.04047239,98.16038036],[4.53745186,0.04047064,98.15961667],[4.53745144,0.04046889,98.15885535],[4.53745102,0.04046713,98.15809598],[4.5374506,0.04046538,98.15733817],[4.53745018,0.04046362,98.15658154],[4.53744976,0.04046187,98.15582566],[4.53744934,0.04046012,98.15507015],[4.53744892,0.04045836,98.15431461],[4.5374485,0.04045661,98.15355864],[4.53744808,0.04045486,98.15280182],[4.53744766,0.0404531,98.15204377],[4.53744723,0.04045135,98.15128408],[4.53744681,0.0404496,98.15052234],[4.53744638,0.04044784,98.14975815],[4.53744595,0.04044609,98.14899113],[4.53744553,0.04044434,98.14822169],[4.5374451,0.04044258,98.14745124],[4.53744467,0.04044083,98.14668126],[4.53744424,0.04043908,98.14591322],[4.53744381,0.04043733,98.14514859],[4.53744339,0.04043557,98.14438887],[4.53744296,0.04043382,98.14363554],[4.53744254,0.04043207,98.14289008],[4.53744212,0.04043031,98.14215398],[4.53744171,0.04042856,98.14142873],[4.53744129,0.0404268,98.14071583],[4.53744089,0.04042504,98.14001678],[4.53744048,0.04042329,98.13933308],[4.53744009,0.04042153,98.1386663],[4.5374397,0.04041977,98.1380177],[4.53743931,0.040418,98.13738654],[4.53743893,0.04041624,98.13677137],[4.53743856,0.04041448,98.13617074],[4.53743819,0.04041271,98.13558321],[4.53743782,0.04041095,98.13500731],[4.53743746,0.04040918,98.13444161],[4.53743709,0.04040741,98.13388463],[4.53743673,0.04040564,98.13333492],[4.53743638,0.04040388,98.13279102],[4.53743602,0.04040211,98.13225145],[4.53743566,0.04040034,98.13171447],[4.53743531,0.04039857,98.13117678],[4.53743495,0.0403968,98.13063445],[4.53743459,0.04039504,98.13008351],[4.53743422,0.04039327,98.12952001],[4.53743385,0.04039151,98.12893996],[4.53743347,0.04038974,98.12833939],[4.53743308,0.04038798,98.12771442],[4.53743268,0.04038622,98.12706585],[4.53743228,0.04038447,98.12640039],[4.53743187,0.04038271,98.12572515],[4.53743146,0.04038095,98.12504668],[4.53743105,0.0403792,98.12436709],[4.53743064,0.04037744,98.12368628],[4.53743023,0.04037568,98.12300414],[4.53742982,0.04037393,98.12232066],[4.53742941,0.04037217,98.12163593],[4.53742899,0.04037042,98.12095009],[4.53742858,0.04036866,98.12026325],[4.53742817,0.04036691,98.11957555],[4.53742775,0.04036515,98.11888711],[4.53742733,0.0403634,98.11819807],[4.53742692,0.04036164,98.11750855],[4.5374265,0.04035989,98.11681869],[4.53742608,0.04035813,98.1161286],[4.53742567,0.04035638,98.11543841],[4.53742525,0.04035463,98.11474825],[4.53742483,0.04035287,98.11405824],[4.53742441,0.04035112,98.11336852],[4.53742399,0.04034936,98.11267922],[4.53742358,0.04034761,98.11199053],[4.53742316,0.04034586,98.11130262],[4.53742274,0.0403441,98.11061568],[4.53742232,0.04034235,98.10992988],[4.5374219,0.0403406,98.1092454],[4.53742148,0.04033884,98.10856243],[4.53742106,0.04033709,98.10788114],[4.53742065,0.04033533,98.10720171],[4.53742023,0.04033358,98.10652419],[4.53741981,0.04033183,98.10584858],[4.53741939,0.04033007,98.10517497],[4.53741898,0.04032832,98.1045035],[4.53741856,0.04032656,98.10383428],[4.53741814,0.04032481,98.10316745],[4.53741773,0.04032305,98.10250313],[4.53741731,0.0403213,98.10184144],[4.5374169,0.04031954,98.10118252],[4.53741649,0.04031779,98.10052647],[4.53741607,0.04031603,98.09987344],[4.53741566,0.04031428,98.09922355],[4.53741525,0.04031252,98.09857691],[4.53741484,0.04031077,98.09793367],[4.53741443,0.04030901,98.09729394],[4.53741402,0.04030726,98.09665785],[4.53741361,0.0403055,98.09602554],[4.5374132,0.04030374,98.09539711],[4.5374128,0.04030199,98.09477263],[4.53741239,0.04030023,98.09415205],[4.53741199,0.04029847,98.09353529],[4.53741158,0.04029672,98.09292231],[4.53741118,0.04029496,98.09231305],[4.53741078,0.0402932,98.09170744],[4.53741038,0.04029145,98.09110543],[4.53740998,0.04028969,98.09050696],[4.53740958,0.04028793,98.08991197],[4.53740918,0.04028617,98.08932039],[4.53740878,0.04028441,98.08873187],[4.53740838,0.04028265,98.088146],[4.53740799,0.0402809,98.08756269],[4.53740759,0.04027914,98.0869819],[4.53740719,0.04027738,98.08640361],[4.5374068,0.04027562,98.08582778],[4.5374064,0.04027386,98.08525436],[4.53740601,0.0402721,98.08468333],[4.53740561,0.04027034,98.08411464],[4.53740522,0.04026859,98.08354826],[4.53740483,0.04026683,98.08298415],[4.53740443,0.04026507,98.08242228],[4.53740404,0.04026331,98.08186261],[4.53740365,0.04026155,98.08130509],[4.53740325,0.04025979,98.08074971],[4.53740286,0.04025803,98.08019641],[4.53740247,0.04025627,98.07964516],[4.53740208,0.04025451,98.07909592],[4.53740169,0.04025275,98.07854866],[4.53740129,0.04025099,98.07800333],[4.5374009,0.04024923,98.07745991],[4.53740051,0.04024747,98.07691835],[4.53740012,0.04024571,98.07637862],[4.53739973,0.04024395,98.07584075],[4.53739934,0.04024219,98.07530507],[4.53739895,0.04024043,98.07477196],[4.53739856,0.04023867,98.07424165],[4.53739817,0.04023691,98.07371402],[4.53739779,0.04023515,98.07318892],[4.5373974,0.04023339,98.07266618],[4.53739701,0.04023163,98.07214566],[4.53739662,0.04022987,98.07162719],[4.53739624,0.04022811,98.07111063],[4.53739585,0.04022635,98.07059581],[4.53739546,0.04022459,98.07008257],[4.53739508,0.04022283,98.06957077],[4.53739469,0.04022107,98.06906024],[4.5373943,0.04021931,98.06855082],[4.53739392,0.04021755,98.06804236],[4.53739353,0.04021579,98.06753471],[4.53739314,0.04021403,98.06702769],[4.53739275,0.04021227,98.06652116],[4.53739237,0.04021051,98.06601495],[4.53739198,0.04020875,98.06550891],[4.53739161,0.04020707,98.06502578]],"type":"LineString"},"type":"feature","properties":{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1003400","id":-4,"type":"shoulder","predecessorId":-3}},{"geometry":{"coordinates":[[4.53757043,0.04084865,98.41440462],[4.53756996,0.04084691,98.41337955],[4.53756949,0.04084516,98.41234633],[4.53756902,0.04084342,98.41130508],[4.53756854,0.04084168,98.4102559],[4.53756806,0.04083994,98.40919891],[4.53756758,0.0408382,98.40813422],[4.53756709,0.04083647,98.40706194],[4.5375666,0.04083473,98.4059822],[4.53756611,0.04083299,98.4048951],[4.53756562,0.04083126,98.40380075],[4.53756512,0.04082952,98.40269927],[4.53756462,0.04082778,98.40159077],[4.53756411,0.04082605,98.40047537],[4.5375636,0.04082432,98.39935317],[4.53756309,0.04082258,98.3982243],[4.53756258,0.04082085,98.39708887],[4.53756207,0.04081912,98.39594698],[4.53756155,0.04081739,98.39479876],[4.53756103,0.04081566,98.39364431],[4.53756051,0.04081393,98.39248376],[4.53755998,0.0408122,98.39131721],[4.53755945,0.04081047,98.39014478],[4.53755892,0.04080874,98.38896658],[4.53755839,0.04080701,98.38778275],[4.53755786,0.04080529,98.3865937],[4.53755732,0.04080356,98.38539978],[4.53755678,0.04080183,98.38420127],[4.53755624,0.04080011,98.38299845],[4.5375557,0.04079838,98.38179161],[4.53755515,0.04079666,98.38058102],[4.53755461,0.04079493,98.37936697],[4.53755406,0.04079321,98.37814975],[4.53755351,0.04079148,98.37692964],[4.53755296,0.04078976,98.37570693],[4.53755241,0.04078803,98.3744819],[4.53755186,0.04078631,98.37325483],[4.53755131,0.04078459,98.37202602],[4.53755076,0.04078286,98.37079575],[4.5375502,0.04078114,98.3695643],[4.53754965,0.04077942,98.36833181],[4.5375491,0.04077769,98.36709775],[4.53754854,0.04077597,98.36586146],[4.53754798,0.04077425,98.3646223],[4.53754742,0.04077253,98.36338027],[4.53754686,0.04077081,98.36213573],[4.5375463,0.04076908,98.36088907],[4.53754574,0.04076736,98.35964066],[4.53754518,0.04076564,98.35839091],[4.53754462,0.04076392,98.35714018],[4.53754406,0.0407622,98.35588886],[4.53754349,0.04076048,98.35463733],[4.53754293,0.04075876,98.35338599],[4.53754237,0.04075704,98.35213522],[4.5375418,0.04075532,98.35088539],[4.53754124,0.04075359,98.34963691],[4.53754068,0.04075187,98.34839015],[4.53754012,0.04075015,98.34714551],[4.53753955,0.04074843,98.34590286],[4.53753899,0.04074671,98.34466109],[4.53753843,0.04074499,98.34341948],[4.53753787,0.04074327,98.3421779],[4.53753731,0.04074155,98.34093621],[4.53753675,0.04073982,98.33969427],[4.53753618,0.0407381,98.33845197],[4.53753562,0.04073638,98.33720917],[4.53753506,0.04073466,98.33596572],[4.5375345,0.04073294,98.33472149],[4.53753393,0.04073122,98.33347631],[4.53753337,0.0407295,98.33223003],[4.5375328,0.04072778,98.3309825],[4.53753224,0.04072606,98.32973356],[4.53753167,0.04072434,98.32848307],[4.5375311,0.04072262,98.32723086],[4.53753053,0.0407209,98.32597679],[4.53752996,0.04071918,98.3247207],[4.53752939,0.04071746,98.32346277],[4.53752882,0.04071574,98.32220379],[4.53752825,0.04071402,98.32094457],[4.53752768,0.0407123,98.31968595],[4.53752711,0.04071058,98.31842877],[4.53752654,0.04070886,98.31717385],[4.53752597,0.04070714,98.31592204],[4.53752541,0.04070542,98.31467414],[4.53752484,0.0407037,98.31343029],[4.53752427,0.04070198,98.31218997],[4.53752371,0.04070026,98.31095263],[4.53752315,0.04069854,98.30971771],[4.53752258,0.04069682,98.30848468],[4.53752202,0.0406951,98.307253],[4.53752146,0.04069338,98.3060224],[4.5375209,0.04069165,98.30479264],[4.53752033,0.04068993,98.30356354],[4.53751977,0.04068821,98.30233488],[4.53751921,0.04068649,98.30110646],[4.53751865,0.04068477,98.29987806],[4.53751809,0.04068305,98.29864947],[4.53751752,0.04068133,98.2974205],[4.53751696,0.04067961,98.29619092],[4.53751639,0.04067789,98.29496053],[4.53751583,0.04067617,98.29372912],[4.53751527,0.04067444,98.29249648],[4.5375147,0.04067272,98.29126239],[4.53751413,0.040671,98.29002665],[4.53751357,0.04066928,98.28878907],[4.537513,0.04066756,98.28754982],[4.53751243,0.04066584,98.28630946],[4.53751186,0.04066412,98.28506858],[4.53751129,0.0406624,98.28382774],[4.53751072,0.04066068,98.28258753],[4.53751015,0.04065897,98.28134851],[4.53750959,0.04065725,98.28011127],[4.53750902,0.04065553,98.27887629],[4.53750845,0.0406538,98.27764368],[4.53750788,0.04065208,98.27641345],[4.53750732,0.04065036,98.27518562],[4.53750675,0.04064864,98.2739602],[4.53750619,0.04064692,98.2727372],[4.53750563,0.0406452,98.27151663],[4.53750506,0.04064348,98.27029851],[4.5375045,0.04064176,98.26908284],[4.53750394,0.04064004,98.26786963],[4.53750338,0.04063832,98.26665889],[4.53750282,0.04063659,98.26545061],[4.53750226,0.04063487,98.26424479],[4.5375017,0.04063315,98.26304143],[4.53750115,0.04063143,98.26184055],[4.53750059,0.0406297,98.26064212],[4.53750003,0.04062798,98.25944616],[4.53749948,0.04062626,98.25825267],[4.53749892,0.04062454,98.25706165],[4.53749837,0.04062281,98.25587309],[4.53749782,0.04062109,98.254687],[4.53749726,0.04061937,98.25350337],[4.53749671,0.04061764,98.25232222],[4.53749616,0.04061592,98.25114353],[4.53749561,0.04061419,98.24996732],[4.53749506,0.04061247,98.2487936],[4.53749451,0.04061075,98.24762251],[4.53749396,0.04060902,98.24645418],[4.53749342,0.0406073,98.24528875],[4.53749287,0.04060557,98.24412636],[4.53749232,0.04060385,98.24296715],[4.53749178,0.04060212,98.24181125],[4.53749124,0.04060039,98.24065881],[4.5374907,0.04059867,98.23950996],[4.53749015,0.04059694,98.23836485],[4.53748961,0.04059522,98.23722362],[4.53748908,0.04059349,98.23608639],[4.53748854,0.04059176,98.23495321],[4.537488,0.04059003,98.23382414],[4.53748747,0.04058831,98.23269921],[4.53748694,0.04058658,98.23157848],[4.5374864,0.04058485,98.23046199],[4.53748587,0.04058312,98.22934978],[4.53748534,0.04058139,98.2282419],[4.53748482,0.04057966,98.22713839],[4.53748429,0.04057793,98.22603929],[4.53748376,0.0405762,98.22494466],[4.53748324,0.04057447,98.22385454],[4.53748272,0.04057274,98.22276897],[4.5374822,0.04057101,98.221688],[4.53748168,0.04056928,98.22061167],[4.53748116,0.04056755,98.21954003],[4.53748064,0.04056582,98.21847313],[4.53748013,0.04056409,98.217411],[4.53747962,0.04056235,98.21635371],[4.5374791,0.04056062,98.21530129],[4.53747859,0.04055889,98.21425378],[4.53747809,0.04055715,98.21321124],[4.53747758,0.04055542,98.21217371],[4.53747707,0.04055368,98.21114124],[4.53747657,0.04055195,98.21011388],[4.53747607,0.04055021,98.20909166],[4.53747557,0.04054848,98.20807464],[4.53747507,0.04054674,98.20706287],[4.53747457,0.04054501,98.20605638],[4.53747408,0.04054327,98.20505524],[4.53747358,0.04054153,98.20405947],[4.53747309,0.0405398,98.20306911],[4.5374726,0.04053806,98.20208421],[4.53747211,0.04053632,98.2011048],[4.53747162,0.04053458,98.20013091],[4.53747114,0.04053284,98.19916258],[4.53747065,0.0405311,98.19819986],[4.53747017,0.04052936,98.19724276],[4.53746969,0.04052762,98.19629134],[4.53746921,0.04052588,98.19534563],[4.53746874,0.04052414,98.19440564],[4.53746826,0.0405224,98.1934714],[4.53746779,0.04052066,98.19254295],[4.53746732,0.04051891,98.1916203],[4.53746685,0.04051717,98.19070348],[4.53746638,0.04051543,98.18979252],[4.53746592,0.04051369,98.18888744],[4.53746545,0.04051194,98.18798827],[4.53746499,0.0405102,98.18709503],[4.53746453,0.04050845,98.18620776],[4.53746407,0.04050671,98.18532647],[4.53746362,0.04050496,98.18445119],[4.53746316,0.04050321,98.18358196],[4.53746271,0.04050147,98.18271878],[4.53746226,0.04049972,98.1818617],[4.53746181,0.04049797,98.18101074],[4.53746136,0.04049623,98.18016592],[4.53746092,0.04049448,98.17932727],[4.53746047,0.04049273,98.17849481],[4.53746003,0.04049098,98.17766858],[4.53745959,0.04048923,98.1768486],[4.53745916,0.04048748,98.17603483],[4.53745872,0.04048573,98.17522712],[4.53745829,0.04048398,98.17442527],[4.53745785,0.04048223,98.17362911],[4.53745742,0.04048048,98.17283843],[4.537457,0.04047872,98.17205305],[4.53745657,0.04047697,98.17127281],[4.53745614,0.04047522,98.17049753],[4.53745572,0.04047347,98.16972707],[4.53745529,0.04047171,98.16896132],[4.53745487,0.04046996,98.16820021],[4.53745445,0.0404682,98.16744365],[4.53745403,0.04046645,98.16669155],[4.53745361,0.0404647,98.16594383],[4.5374532,0.04046294,98.1652004],[4.53745278,0.04046119,98.16446118],[4.53745237,0.04045943,98.16372607],[4.53745195,0.04045768,98.16299501],[4.53745154,0.04045592,98.16226789],[4.53745113,0.04045416,98.16154464],[4.53745072,0.04045241,98.16082516],[4.53745031,0.04045065,98.16010937],[4.5374499,0.04044889,98.15939719],[4.53744949,0.04044713,98.15868852],[4.53744909,0.04044538,98.15798328],[4.53744868,0.04044362,98.15728138],[4.53744827,0.04044186,98.15658274],[4.53744787,0.0404401,98.15588727],[4.53744747,0.04043835,98.15519488],[4.53744706,0.04043659,98.15450547],[4.53744666,0.04043483,98.15381898],[4.53744626,0.04043307,98.1531353],[4.53744586,0.04043131,98.15245434],[4.53744546,0.04042956,98.15177603],[4.53744506,0.0404278,98.15110027],[4.53744466,0.04042604,98.15042697],[4.53744426,0.04042428,98.14975604],[4.53744386,0.04042252,98.1490874],[4.53744347,0.04042076,98.14842104],[4.53744307,0.040419,98.14775697],[4.53744267,0.04041724,98.1470952],[4.53744227,0.04041548,98.14643574],[4.53744188,0.04041372,98.14577861],[4.53744148,0.04041196,98.14512383],[4.53744109,0.0404102,98.1444714],[4.53744069,0.04040845,98.14382135],[4.5374403,0.04040669,98.14317369],[4.53743991,0.04040493,98.14252842],[4.53743951,0.04040317,98.14188558],[4.53743912,0.04040141,98.14124516],[4.53743873,0.04039965,98.14060718],[4.53743834,0.04039788,98.13997164],[4.53743794,0.04039612,98.13933838],[4.53743755,0.04039436,98.13870725],[4.53743716,0.0403926,98.13807807],[4.53743677,0.04039084,98.13745068],[4.53743638,0.04038908,98.1368249],[4.53743599,0.04038732,98.13620058],[4.5374356,0.04038556,98.13557754],[4.53743521,0.0403838,98.1349556],[4.53743482,0.04038204,98.13433461],[4.53743443,0.04038028,98.1337144],[4.53743404,0.04037852,98.13309478],[4.53743365,0.04037676,98.13247559],[4.53743326,0.040375,98.13185667],[4.53743287,0.04037324,98.13123791],[4.53743248,0.04037148,98.13061936],[4.53743209,0.04036972,98.13000108],[4.5374317,0.04036796,98.12938312],[4.53743131,0.0403662,98.12876554],[4.53743091,0.04036444,98.1281484],[4.53743052,0.04036268,98.12753177],[4.53743013,0.04036092,98.12691572],[4.53742974,0.04035916,98.12630029],[4.53742934,0.0403574,98.12568554],[4.53742895,0.04035564,98.12507154],[4.53742856,0.04035388,98.12445833],[4.53742816,0.04035212,98.12384599],[4.53742777,0.04035036,98.12323456],[4.53742738,0.0403486,98.1226241],[4.53742699,0.04034684,98.12201467],[4.53742659,0.04034508,98.12140634],[4.5374262,0.04034332,98.12079915],[4.53742581,0.04034156,98.12019317],[4.53742541,0.0403398,98.11958845],[4.53742502,0.04033804,98.11898505],[4.53742463,0.04033628,98.11838304],[4.53742423,0.04033452,98.11778246],[4.53742384,0.04033276,98.11718326],[4.53742345,0.040331,98.11658528],[4.53742306,0.04032924,98.11598852],[4.53742266,0.04032748,98.11539299],[4.53742227,0.04032572,98.11479867],[4.53742188,0.04032396,98.11420559],[4.53742149,0.0403222,98.11361373],[4.53742109,0.04032044,98.1130231],[4.5374207,0.04031868,98.1124337],[4.53742031,0.04031692,98.11184553],[4.53741992,0.04031516,98.1112586],[4.53741953,0.0403134,98.1106729],[4.53741913,0.04031164,98.11008844],[4.53741874,0.04030988,98.10950522],[4.53741835,0.04030812,98.10892324],[4.53741796,0.04030636,98.1083425],[4.53741757,0.0403046,98.10776301],[4.53741717,0.04030284,98.10718476],[4.53741678,0.04030108,98.10660777],[4.53741639,0.04029932,98.10603202],[4.537416,0.04029756,98.10545752],[4.53741561,0.04029581,98.10488427],[4.53741521,0.04029405,98.10431228],[4.53741482,0.04029229,98.10374155],[4.53741443,0.04029053,98.10317207],[4.53741404,0.04028877,98.10260385],[4.53741365,0.04028701,98.1020369],[4.53741326,0.04028525,98.1014712],[4.53741286,0.04028349,98.10090646],[4.53741247,0.04028173,98.10034234],[4.53741208,0.04027997,98.0997788],[4.53741169,0.04027821,98.09921588],[4.53741129,0.04027645,98.0986536],[4.5374109,0.04027469,98.09809198],[4.53741051,0.04027293,98.09753106],[4.53741012,0.04027117,98.09697085],[4.53740972,0.04026941,98.09641139],[4.53740933,0.04026765,98.09585269],[4.53740894,0.04026589,98.09529478],[4.53740854,0.04026413,98.09473769],[4.53740815,0.04026237,98.09418145],[4.53740776,0.04026062,98.09362607],[4.53740736,0.04025886,98.09307159],[4.53740697,0.0402571,98.09251803],[4.53740657,0.04025534,98.09196541],[4.53740618,0.04025358,98.09141377],[4.53740579,0.04025182,98.09086312],[4.53740539,0.04025006,98.09031349],[4.537405,0.0402483,98.08976491],[4.5374046,0.04024654,98.08921741],[4.53740421,0.04024478,98.088671],[4.53740381,0.04024303,98.08812579],[4.53740342,0.04024127,98.08758217],[4.53740303,0.04023951,98.0870406],[4.53740263,0.04023775,98.08650135],[4.53740224,0.04023599,98.08596437],[4.53740185,0.04023423,98.08542957],[4.53740145,0.04023247,98.08489686],[4.53740106,0.04023071,98.08436615],[4.53740067,0.04022895,98.08383734],[4.53740028,0.04022719,98.08331034],[4.53739988,0.04022543,98.08278507],[4.53739949,0.04022368,98.08226142],[4.5373991,0.04022192,98.08173931],[4.53739871,0.04022016,98.08121865],[4.53739832,0.0402184,98.08069933],[4.53739793,0.04021664,98.08018128],[4.53739753,0.04021488,98.07966439],[4.53739714,0.04021312,98.07914857],[4.53739675,0.04021136,98.07863374],[4.53739636,0.0402096,98.07811979],[4.53739597,0.04020784,98.07760663],[4.53739559,0.04020616,98.07711735]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0},{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1003400","id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":0}},{"geometry":{"coordinates":[[4.53757043,0.04084865,98.41440462],[4.53757008,0.04084688,98.41367894],[4.53756973,0.04084511,98.41295559],[4.53756937,0.04084334,98.4122342],[4.53756902,0.04084157,98.41151441],[4.53756867,0.04083981,98.41079586],[4.53756832,0.04083804,98.41007818],[4.53756796,0.04083627,98.40936102],[4.53756761,0.0408345,98.40864401],[4.53756726,0.04083273,98.40792679],[4.53756691,0.04083096,98.40720899],[4.53756655,0.0408292,98.40649025],[4.5375662,0.04082743,98.4057702],[4.53756584,0.04082566,98.40504848],[4.53756548,0.04082389,98.40432472],[4.53756513,0.04082213,98.40359857],[4.53756477,0.04082036,98.40286964],[4.53756441,0.04081859,98.40213758],[4.53756404,0.04081683,98.40140201],[4.53756368,0.04081506,98.40066258],[4.53756331,0.04081329,98.3999189],[4.53756294,0.04081153,98.39917062],[4.53756257,0.04080976,98.39841736],[4.5375622,0.040808,98.39765876],[4.53756183,0.04080624,98.39689446],[4.53756145,0.04080447,98.39612455],[4.53756107,0.04080271,98.39534952],[4.53756069,0.04080095,98.39456991],[4.5375603,0.04079919,98.39378624],[4.53755992,0.04079743,98.39299904],[4.53755953,0.04079567,98.39220884],[4.53755914,0.04079391,98.39141617],[4.53755875,0.04079215,98.39062156],[4.53755836,0.04079039,98.38982555],[4.53755797,0.04078863,98.38902867],[4.53755758,0.04078687,98.38823145],[4.53755719,0.04078511,98.38743443],[4.5375568,0.04078335,98.38663813],[4.53755641,0.04078159,98.3858431],[4.53755602,0.04077983,98.38504988],[4.53755563,0.04077807,98.38425883],[4.53755524,0.04077631,98.38346969],[4.53755485,0.04077455,98.38268204],[4.53755446,0.04077279,98.38189546],[4.53755407,0.04077103,98.38110951],[4.53755368,0.04076926,98.38032378],[4.53755329,0.0407675,98.37953784],[4.5375529,0.04076574,98.37875126],[4.53755251,0.04076398,98.37796362],[4.53755212,0.04076223,98.37717449],[4.53755172,0.04076047,98.37638345],[4.53755133,0.04075871,98.37559005],[4.53755093,0.04075695,98.37479389],[4.53755054,0.04075519,98.37399452],[4.53755014,0.04075343,98.37319152],[4.53754974,0.04075167,98.37238445],[4.53754933,0.04074992,98.3715729],[4.53754893,0.04074816,98.37075641],[4.53754852,0.0407464,98.36993457],[4.53754811,0.04074465,98.36910697],[4.5375477,0.04074289,98.36827374],[4.53754729,0.04074114,98.3674356],[4.53754687,0.04073938,98.36659326],[4.53754645,0.04073763,98.36574744],[4.53754604,0.04073587,98.36489888],[4.53754562,0.04073412,98.3640483],[4.53754519,0.04073237,98.3631964],[4.53754477,0.04073061,98.36234391],[4.53754435,0.04072886,98.36149152],[4.53754393,0.04072711,98.36063993],[4.53754351,0.04072535,98.35978987],[4.53754309,0.0407236,98.35894203],[4.53754267,0.04072185,98.35809713],[4.53754225,0.04072009,98.35725587],[4.53754183,0.04071834,98.35641897],[4.53754142,0.04071659,98.35558714],[4.537541,0.04071483,98.35476109],[4.53754059,0.04071308,98.35394155],[4.53754018,0.04071132,98.35312921],[4.53753978,0.04070956,98.35232481],[4.53753937,0.04070781,98.35152905],[4.53753897,0.04070605,98.35074267],[4.53753857,0.04070429,98.34996637],[4.53753818,0.04070253,98.34920084],[4.53753779,0.04070077,98.34844612],[4.53753741,0.04069901,98.34770156],[4.53753702,0.04069725,98.3469665],[4.53753664,0.04069548,98.34624026],[4.53753626,0.04069372,98.34552219],[4.53753589,0.04069196,98.34481161],[4.53753552,0.04069019,98.34410785],[4.53753515,0.04068843,98.34341024],[4.53753478,0.04068666,98.34271811],[4.53753441,0.0406849,98.34203079],[4.53753404,0.04068313,98.3413476],[4.53753368,0.04068137,98.34066786],[4.53753331,0.0406796,98.33999091],[4.53753295,0.04067783,98.33931605],[4.53753258,0.04067607,98.33864263],[4.53753222,0.0406743,98.33796995],[4.53753185,0.04067254,98.33729734],[4.53753149,0.04067077,98.33662412],[4.53753112,0.040669,98.3359496],[4.53753075,0.04066724,98.3352731],[4.53753039,0.04066547,98.33459396],[4.53753002,0.04066371,98.33391189],[4.53752964,0.04066194,98.33322696],[4.53752927,0.04066018,98.33253929],[4.5375289,0.04065842,98.33184896],[4.53752852,0.04065665,98.33115608],[4.53752815,0.04065489,98.33046075],[4.53752777,0.04065313,98.32976307],[4.53752739,0.04065136,98.32906314],[4.53752701,0.0406496,98.32836106],[4.53752663,0.04064784,98.32765692],[4.53752625,0.04064607,98.32695083],[4.53752586,0.04064431,98.32624289],[4.53752548,0.04064255,98.32553321],[4.5375251,0.04064079,98.32482187],[4.53752471,0.04063903,98.32410898],[4.53752432,0.04063727,98.32339465],[4.53752394,0.04063551,98.32267895],[4.53752355,0.04063374,98.32196198],[4.53752316,0.04063198,98.32124384],[4.53752277,0.04063022,98.32052461],[4.53752238,0.04062846,98.31980438],[4.53752199,0.0406267,98.31908324],[4.5375216,0.04062494,98.31836128],[4.5375212,0.04062318,98.31763859],[4.53752081,0.04062142,98.31691526],[4.53752042,0.04061966,98.31619138],[4.53752002,0.0406179,98.31546703],[4.53751963,0.04061614,98.31474232],[4.53751924,0.04061438,98.31401732],[4.53751884,0.04061263,98.31329213],[4.53751844,0.04061087,98.31256685],[4.53751805,0.04060911,98.31184155],[4.53751765,0.04060735,98.31111634],[4.53751726,0.04060559,98.3103913],[4.53751686,0.04060383,98.30966652],[4.53751646,0.04060207,98.3089421],[4.53751607,0.04060031,98.30821812],[4.53751567,0.04059855,98.30749468],[4.53751527,0.04059679,98.30677188],[4.53751488,0.04059503,98.30604979],[4.53751448,0.04059328,98.30532852],[4.53751408,0.04059152,98.30460815],[4.53751368,0.04058976,98.30388878],[4.53751329,0.040588,98.30317049],[4.53751289,0.04058624,98.30245328],[4.53751249,0.04058448,98.30173715],[4.5375121,0.04058272,98.30102211],[4.5375117,0.04058096,98.30030813],[4.5375113,0.0405792,98.29959523],[4.53751091,0.04057744,98.2988834],[4.53751051,0.04057569,98.29817263],[4.53751011,0.04057393,98.29746292],[4.53750972,0.04057217,98.29675427],[4.53750932,0.04057041,98.29604667],[4.53750892,0.04056865,98.29534011],[4.53750853,0.04056689,98.29463461],[4.53750813,0.04056513,98.29393014],[4.53750774,0.04056337,98.29322672],[4.53750734,0.04056161,98.29252433],[4.53750694,0.04055985,98.29182296],[4.53750655,0.04055809,98.29112263],[4.53750615,0.04055633,98.29042331],[4.53750576,0.04055458,98.28972502],[4.53750536,0.04055282,98.28902774],[4.53750496,0.04055106,98.28833147],[4.53750457,0.0405493,98.28763621],[4.53750417,0.04054754,98.28694195],[4.53750378,0.04054578,98.2862487],[4.53750338,0.04054402,98.28555644],[4.53750299,0.04054226,98.28486517],[4.53750259,0.0405405,98.28417489],[4.53750219,0.04053874,98.28348559],[4.5375018,0.04053698,98.28279727],[4.5375014,0.04053522,98.28210993],[4.53750101,0.04053346,98.28142354],[4.53750061,0.0405317,98.28073809],[4.53750022,0.04052994,98.28005357],[4.53749982,0.04052819,98.27936997],[4.53749943,0.04052643,98.27868726],[4.53749903,0.04052467,98.27800544],[4.53749863,0.04052291,98.27732449],[4.53749824,0.04052115,98.27664439],[4.53749784,0.04051939,98.27596513],[4.53749745,0.04051763,98.2752867],[4.53749705,0.04051587,98.27460908],[4.53749666,0.04051411,98.27393225],[4.53749626,0.04051235,98.27325621],[4.53749586,0.04051059,98.27258093],[4.53749547,0.04050883,98.2719064],[4.53749507,0.04050707,98.27123262],[4.53749468,0.04050531,98.27055955],[4.53749428,0.04050355,98.26988719],[4.53749388,0.04050179,98.26921552],[4.53749349,0.04050004,98.26854453],[4.53749309,0.04049828,98.2678742],[4.53749269,0.04049652,98.26720452],[4.5374923,0.04049476,98.26653547],[4.5374919,0.040493,98.26586704],[4.5374915,0.04049124,98.2651992],[4.53749111,0.04048948,98.26453196],[4.53749071,0.04048772,98.26386529],[4.53749031,0.04048596,98.26319917],[4.53748992,0.0404842,98.2625336],[4.53748952,0.04048244,98.26186855],[4.53748912,0.04048068,98.26120401],[4.53748872,0.04047893,98.26053995],[4.53748833,0.04047717,98.25987633],[4.53748793,0.04047541,98.2592131],[4.53748753,0.04047365,98.25855023],[4.53748713,0.04047189,98.25788766],[4.53748673,0.04047013,98.25722537],[4.53748633,0.04046837,98.25656334],[4.53748593,0.04046661,98.25590157],[4.53748553,0.04046486,98.25524011],[4.53748513,0.0404631,98.25457902],[4.53748473,0.04046134,98.25391836],[4.53748433,0.04045958,98.25325819],[4.53748393,0.04045782,98.25259858],[4.53748353,0.04045606,98.25193958],[4.53748313,0.0404543,98.25128126],[4.53748273,0.04045255,98.25062368],[4.53748233,0.04045079,98.24996691],[4.53748193,0.04044903,98.24931101],[4.53748153,0.04044727,98.24865603],[4.53748113,0.04044551,98.24800204],[4.53748073,0.04044375,98.24734911],[4.53748033,0.04044199,98.2466973],[4.53747993,0.04044023,98.24604666],[4.53747953,0.04043848,98.24539727],[4.53747913,0.04043672,98.24474919],[4.53747873,0.04043496,98.24410247],[4.53747833,0.0404332,98.24345719],[4.53747793,0.04043144,98.24281341],[4.53747753,0.04042968,98.24217119],[4.53747713,0.04042792,98.24153059],[4.53747673,0.04042616,98.24089168],[4.53747633,0.04042441,98.24025452],[4.53747593,0.04042265,98.23961918],[4.53747554,0.04042089,98.23898572],[4.53747514,0.04041913,98.23835421],[4.53747474,0.04041737,98.2377247],[4.53747434,0.04041561,98.23709727],[4.53747395,0.04041385,98.23647198],[4.53747355,0.04041209,98.23584889],[4.53747316,0.04041033,98.23522807],[4.53747276,0.04040857,98.23460958],[4.53747237,0.04040681,98.23399349],[4.53747197,0.04040505,98.23337986],[4.53747158,0.04040329,98.23276876],[4.53747118,0.04040153,98.23216025],[4.53747079,0.04039977,98.23155441],[4.5374704,0.04039801,98.23095129],[4.53747001,0.04039625,98.23035096],[4.53746962,0.04039449,98.22975348],[4.53746923,0.04039273,98.22915893],[4.53746884,0.04039097,98.22856734],[4.53746845,0.04038921,98.22797861],[4.53746806,0.04038745,98.22739265],[4.53746767,0.04038569,98.22680932],[4.53746729,0.04038393,98.22622852],[4.5374669,0.04038216,98.22565012],[4.53746651,0.0403804,98.22507402],[4.53746613,0.04037864,98.22450009],[4.53746574,0.04037688,98.22392822],[4.53746536,0.04037512,98.22335829],[4.53746497,0.04037336,98.22279018],[4.53746459,0.04037159,98.22222377],[4.5374642,0.04036983,98.22165896],[4.53746382,0.04036807,98.22109561],[4.53746344,0.04036631,98.22053362],[4.53746305,0.04036455,98.21997286],[4.53746267,0.04036278,98.21941321],[4.53746228,0.04036102,98.21885456],[4.5374619,0.04035926,98.21829679],[4.53746151,0.0403575,98.21773978],[4.53746113,0.04035574,98.21718342],[4.53746075,0.04035397,98.21662759],[4.53746036,0.04035221,98.21607218],[4.53745998,0.04035045,98.21551705],[4.53745959,0.04034869,98.2149621],[4.5374592,0.04034693,98.2144072],[4.53745882,0.04034517,98.21385223],[4.53745843,0.04034341,98.21329706],[4.53745804,0.04034164,98.21274158],[4.53745766,0.04033988,98.21218567],[4.53745727,0.04033812,98.21162919],[4.53745688,0.04033636,98.21107203],[4.53745649,0.0403346,98.21051406],[4.5374561,0.04033284,98.20995517],[4.53745571,0.04033108,98.20939523],[4.53745532,0.04032932,98.20883412],[4.53745493,0.04032756,98.2082717],[4.53745453,0.0403258,98.20770788],[4.53745414,0.04032404,98.20714269],[4.53745374,0.04032228,98.20657637],[4.53745335,0.04032052,98.20600915],[4.53745295,0.04031876,98.20544125],[4.53745256,0.040317,98.20487291],[4.53745216,0.04031524,98.20430437],[4.53745176,0.04031349,98.20373585],[4.53745136,0.04031173,98.20316758],[4.53745097,0.04030997,98.20259982],[4.53745057,0.04030821,98.20203277],[4.53745017,0.04030645,98.20146669],[4.53744977,0.04030469,98.20090181],[4.53744937,0.04030293,98.20033836],[4.53744898,0.04030118,98.19977657],[4.53744858,0.04029942,98.19921669],[4.53744818,0.04029766,98.19865894],[4.53744779,0.0402959,98.19810357],[4.53744739,0.04029414,98.19755082],[4.53744699,0.04029238,98.19700091],[4.5374466,0.04029062,98.1964541],[4.5374462,0.04028886,98.19591061],[4.53744581,0.0402871,98.19537069],[4.53744542,0.04028534,98.19483457],[4.53744503,0.04028358,98.19430249],[4.53744464,0.04028182,98.1937747],[4.53744425,0.04028006,98.19325144],[4.53744386,0.0402783,98.19273292],[4.53744347,0.04027654,98.19221911],[4.53744309,0.04027478,98.1917097],[4.5374427,0.04027302,98.19120437],[4.53744232,0.04027126,98.19070278],[4.53744194,0.04026949,98.19020462],[4.53744155,0.04026773,98.18970956],[4.53744117,0.04026597,98.18921727],[4.53744079,0.04026421,98.18872743],[4.53744041,0.04026244,98.18823971],[4.53744003,0.04026068,98.18775378],[4.53743965,0.04025892,98.18726932],[4.53743927,0.04025716,98.186786],[4.53743889,0.0402554,98.18630349],[4.5374385,0.04025363,98.18582146],[4.53743812,0.04025187,98.18533958],[4.53743774,0.04025011,98.18485751],[4.53743736,0.04024835,98.18437494],[4.53743698,0.04024659,98.18389153],[4.53743659,0.04024482,98.18340694],[4.53743621,0.04024306,98.18292084],[4.53743582,0.0402413,98.18243291],[4.53743543,0.04023954,98.1819428],[4.53743505,0.04023778,98.18145019],[4.53743466,0.04023602,98.18095481],[4.53743427,0.04023426,98.18045669],[4.53743387,0.0402325,98.17995593],[4.53743348,0.04023074,98.17945263],[4.53743309,0.04022898,98.17894688],[4.53743269,0.04022722,98.17843879],[4.53743229,0.04022546,98.17792847],[4.53743189,0.04022371,98.17741601],[4.5374315,0.04022195,98.17690153],[4.5374311,0.04022019,98.17638511],[4.53743069,0.04021843,98.17586687],[4.53743029,0.04021667,98.17534691],[4.53742989,0.04021492,98.17482534],[4.53742949,0.04021316,98.17430225],[4.53742908,0.0402114,98.17377776],[4.53742868,0.04020965,98.17325196],[4.53742827,0.04020789,98.17272496],[4.53742786,0.04020613,98.17219687],[4.53742745,0.04020438,98.1716678],[4.53742705,0.04020262,98.17113783],[4.53742664,0.04020087,98.17060709],[4.53742625,0.04019919,98.17009974]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1003400","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2}},{"geometry":{"coordinates":[[4.5376034,0.04084122,98.50128433],[4.537603,0.04083946,98.50047419],[4.53760261,0.0408377,98.49966473],[4.53760222,0.04083594,98.49885597],[4.53760182,0.04083418,98.49804791],[4.53760143,0.04083242,98.49724055],[4.53760104,0.04083066,98.49643392],[4.53760064,0.0408289,98.495628],[4.53760025,0.04082714,98.49482282],[4.53759985,0.04082538,98.49401837],[4.53759946,0.04082362,98.49321466],[4.53759906,0.04082186,98.4924117],[4.53759867,0.0408201,98.4916095],[4.53759828,0.04081834,98.49080806],[4.53759788,0.04081658,98.49000739],[4.53759749,0.04081482,98.4892075],[4.53759709,0.04081306,98.48840839],[4.5375967,0.0408113,98.48761007],[4.5375963,0.04080954,98.48681255],[4.53759591,0.04080779,98.48601583],[4.53759551,0.04080603,98.48521992],[4.53759512,0.04080427,98.48442483],[4.53759472,0.04080251,98.48363057],[4.53759433,0.04080075,98.48283713],[4.53759393,0.04079899,98.48204453],[4.53759354,0.04079723,98.48125278],[4.53759314,0.04079547,98.48046188],[4.53759275,0.04079371,98.47967184],[4.53759236,0.04079195,98.47888266],[4.53759196,0.04079019,98.47809436],[4.53759157,0.04078843,98.47730694],[4.53759117,0.04078667,98.47652043],[4.53759078,0.04078491,98.47573482],[4.53759038,0.04078315,98.47495013],[4.53758999,0.04078139,98.47416637],[4.53758959,0.04077964,98.47338355],[4.5375892,0.04077788,98.47260169],[4.5375888,0.04077612,98.47182079],[4.53758841,0.04077436,98.47104086],[4.53758801,0.0407726,98.47026192],[4.53758762,0.04077084,98.46948398],[4.53758722,0.04076908,98.46870705],[4.53758683,0.04076732,98.46793114],[4.53758643,0.04076556,98.46715626],[4.53758604,0.0407638,98.46638242],[4.53758564,0.04076204,98.46560963],[4.53758525,0.04076028,98.46483791],[4.53758485,0.04075852,98.46406727],[4.53758446,0.04075676,98.46329772],[4.53758406,0.040755,98.46252926],[4.53758367,0.04075324,98.46176191],[4.53758327,0.04075148,98.46099569],[4.53758288,0.04074972,98.4602306],[4.53758249,0.04074796,98.45946665],[4.53758209,0.04074621,98.45870386],[4.5375817,0.04074445,98.45794223],[4.5375813,0.04074269,98.45718179],[4.53758091,0.04074093,98.45642253],[4.53758052,0.04073917,98.45566448],[4.53758012,0.04073741,98.45490764],[4.53757973,0.04073565,98.45415202],[4.53757934,0.04073389,98.45339764],[4.53757894,0.04073213,98.45264451],[4.53757855,0.04073037,98.45189263],[4.53757816,0.04072861,98.45114203],[4.53757776,0.04072685,98.45039271],[4.53757737,0.04072509,98.44964467],[4.53757698,0.04072333,98.4488979],[4.53757659,0.04072157,98.44815239],[4.53757619,0.04071981,98.44740813],[4.5375758,0.04071805,98.44666511],[4.53757541,0.04071629,98.44592332],[4.53757502,0.04071453,98.44518274],[4.53757463,0.04071277,98.44444337],[4.53757423,0.04071101,98.44370519],[4.53757384,0.04070925,98.44296819],[4.53757345,0.04070749,98.44223236],[4.53757306,0.04070573,98.44149769],[4.53757267,0.04070397,98.44076418],[4.53757228,0.04070221,98.44003179],[4.53757189,0.04070045,98.43930054],[4.53757149,0.04069869,98.4385704],[4.5375711,0.04069693,98.43784136],[4.53757071,0.04069517,98.43711341],[4.53757032,0.04069341,98.43638655],[4.53756993,0.04069164,98.43566076],[4.53756954,0.04068988,98.43493602],[4.53756915,0.04068812,98.43421233],[4.53756876,0.04068636,98.43348967],[4.53756837,0.0406846,98.43276804],[4.53756797,0.04068284,98.43204742],[4.53756758,0.04068108,98.4313278],[4.53756719,0.04067932,98.43060918],[4.5375668,0.04067756,98.42989153],[4.53756641,0.0406758,98.42917484],[4.53756602,0.04067404,98.42845911],[4.53756563,0.04067228,98.42774433],[4.53756524,0.04067052,98.42703047],[4.53756485,0.04066876,98.42631754],[4.53756446,0.040667,98.42560552],[4.53756407,0.04066524,98.42489439],[4.53756368,0.04066348,98.42418415],[4.53756328,0.04066172,98.42347478],[4.53756289,0.04065996,98.42276627],[4.5375625,0.0406582,98.42205862],[4.53756211,0.04065644,98.4213518],[4.53756172,0.04065468,98.42064581],[4.53756133,0.04065292,98.41994064],[4.53756094,0.04065116,98.41923627],[4.53756055,0.0406494,98.41853269],[4.53756016,0.04064764,98.41782989],[4.53755976,0.04064588,98.41712786],[4.53755937,0.04064412,98.41642659],[4.53755898,0.04064236,98.41572606],[4.53755859,0.04064059,98.41502626],[4.5375582,0.04063883,98.41432719],[4.53755781,0.04063707,98.41362882],[4.53755741,0.04063531,98.41293115],[4.53755702,0.04063355,98.41223416],[4.53755663,0.04063179,98.41153785],[4.53755624,0.04063003,98.4108422],[4.53755585,0.04062827,98.41014721],[4.53755545,0.04062651,98.4094529],[4.53755506,0.04062475,98.40875926],[4.53755467,0.04062299,98.4080663],[4.53755428,0.04062123,98.40737403],[4.53755388,0.04061947,98.40668244],[4.53755349,0.04061771,98.40599154],[4.5375531,0.04061595,98.40530135],[4.5375527,0.04061419,98.40461185],[4.53755231,0.04061243,98.40392305],[4.53755192,0.04061067,98.40323496],[4.53755152,0.04060891,98.40254759],[4.53755113,0.04060715,98.40186093],[4.53755074,0.04060539,98.40117499],[4.53755034,0.04060363,98.40048977],[4.53754995,0.04060187,98.39980528],[4.53754956,0.04060011,98.39912152],[4.53754916,0.04059836,98.3984385],[4.53754877,0.0405966,98.39775622],[4.53754837,0.04059484,98.39707468],[4.53754798,0.04059308,98.39639389],[4.53754759,0.04059132,98.39571385],[4.53754719,0.04058956,98.39503457],[4.5375468,0.0405878,98.39435604],[4.5375464,0.04058604,98.39367828],[4.53754601,0.04058428,98.39300129],[4.53754562,0.04058252,98.39232507],[4.53754522,0.04058076,98.39164963],[4.53754483,0.040579,98.39097496],[4.53754443,0.04057724,98.39030108],[4.53754404,0.04057548,98.38962799],[4.53754364,0.04057372,98.38895569],[4.53754325,0.04057196,98.38828419],[4.53754285,0.0405702,98.38761349],[4.53754246,0.04056844,98.38694359],[4.53754206,0.04056668,98.3862745],[4.53754167,0.04056492,98.38560622],[4.53754127,0.04056316,98.38493876],[4.53754088,0.0405614,98.38427213],[4.53754048,0.04055964,98.38360631],[4.53754009,0.04055788,98.38294133],[4.53753969,0.04055612,98.38227718],[4.5375393,0.04055437,98.38161386],[4.5375389,0.04055261,98.38095139],[4.53753851,0.04055085,98.38028977],[4.53753811,0.04054909,98.37962899],[4.53753771,0.04054733,98.37896907],[4.53753732,0.04054557,98.37831],[4.53753692,0.04054381,98.3776518],[4.53753653,0.04054205,98.37699447],[4.53753613,0.04054029,98.376338],[4.53753574,0.04053853,98.37568242],[4.53753534,0.04053677,98.37502771],[4.53753495,0.04053501,98.37437388],[4.53753455,0.04053325,98.37372094],[4.53753415,0.04053149,98.37306889],[4.53753376,0.04052973,98.37241774],[4.53753336,0.04052797,98.37176749],[4.53753297,0.04052621,98.37111815],[4.53753257,0.04052446,98.37046971],[4.53753218,0.0405227,98.36982219],[4.53753178,0.04052094,98.36917558],[4.53753138,0.04051918,98.36852989],[4.53753099,0.04051742,98.36788513],[4.53753059,0.04051566,98.3672413],[4.5375302,0.0405139,98.36659841],[4.5375298,0.04051214,98.36595645],[4.53752941,0.04051038,98.36531544],[4.53752901,0.04050862,98.36467537],[4.53752861,0.04050686,98.36403626],[4.53752822,0.0405051,98.3633981],[4.53752782,0.04050334,98.3627609],[4.53752743,0.04050158,98.36212467],[4.53752703,0.04049982,98.3614894],[4.53752663,0.04049807,98.36085511],[4.53752624,0.04049631,98.36022179],[4.53752584,0.04049455,98.35958946],[4.53752545,0.04049279,98.35895811],[4.53752505,0.04049103,98.35832776],[4.53752465,0.04048927,98.3576984],[4.53752426,0.04048751,98.35707003],[4.53752386,0.04048575,98.35644268],[4.53752347,0.04048399,98.35581633],[4.53752307,0.04048223,98.35519099],[4.53752268,0.04048047,98.35456667],[4.53752228,0.04047871,98.35394337],[4.53752188,0.04047695,98.35332109],[4.53752149,0.04047519,98.35269985],[4.53752109,0.04047343,98.35207964],[4.5375207,0.04047167,98.35146045],[4.5375203,0.04046991,98.35084227],[4.53751991,0.04046816,98.35022506],[4.53751951,0.0404664,98.3496088],[4.53751912,0.04046464,98.34899348],[4.53751872,0.04046288,98.34837908],[4.53751832,0.04046112,98.3477656],[4.53751793,0.04045936,98.34715305],[4.53751753,0.0404576,98.34654143],[4.53751714,0.04045584,98.34593074],[4.53751674,0.04045408,98.34532099],[4.53751635,0.04045232,98.34471217],[4.53751595,0.04045056,98.3441043],[4.53751555,0.0404488,98.34349736],[4.53751516,0.04044704,98.34289137],[4.53751476,0.04044528,98.34228632],[4.53751437,0.04044352,98.34168222],[4.53751397,0.04044176,98.34107907],[4.53751358,0.04044,98.34047687],[4.53751318,0.04043824,98.33987562],[4.53751278,0.04043649,98.33927533],[4.53751239,0.04043473,98.33867601],[4.53751199,0.04043296,98.33807764],[4.5375116,0.0404312,98.33748023],[4.5375112,0.04042945,98.33688379],[4.5375108,0.04042769,98.33628832],[4.53751041,0.04042593,98.33569382],[4.53751001,0.04042417,98.33510029],[4.53750962,0.04042241,98.33450773],[4.53750922,0.04042065,98.33391615],[4.53750883,0.04041889,98.33332555],[4.53750843,0.04041713,98.33273593],[4.53750803,0.04041537,98.3321473],[4.53750764,0.04041361,98.33155965],[4.53750724,0.04041185,98.33097298],[4.53750685,0.04041009,98.33038731],[4.53750645,0.04040833,98.32980263],[4.53750606,0.04040657,98.32921895],[4.53750566,0.04040481,98.32863626],[4.53750526,0.04040305,98.32805457],[4.53750487,0.04040129,98.32747389],[4.53750447,0.04039953,98.3268942],[4.53750408,0.04039778,98.32631553],[4.53750368,0.04039602,98.32573786],[4.53750329,0.04039426,98.3251612],[4.53750289,0.0403925,98.32458556],[4.53750249,0.04039074,98.32401093],[4.5375021,0.04038898,98.32343732],[4.5375017,0.04038722,98.32286473],[4.53750131,0.04038546,98.32229316],[4.53750091,0.0403837,98.32172262],[4.53750052,0.04038194,98.3211531],[4.53750012,0.04038018,98.32058462],[4.53749972,0.04037842,98.32001716],[4.53749933,0.04037666,98.31945074],[4.53749893,0.0403749,98.31888536],[4.53749854,0.04037314,98.31832101],[4.53749814,0.04037138,98.31775771],[4.53749775,0.04036962,98.31719544],[4.53749735,0.04036787,98.31663423],[4.53749696,0.04036611,98.31607406],[4.53749656,0.04036435,98.31551494],[4.53749616,0.04036259,98.31495688],[4.53749577,0.04036083,98.31439987],[4.53749537,0.04035907,98.31384392],[4.53749498,0.04035731,98.31328902],[4.53749458,0.04035555,98.31273519],[4.53749419,0.04035379,98.31218243],[4.53749379,0.04035203,98.31163073],[4.5374934,0.04035027,98.31108011],[4.537493,0.04034851,98.31053057],[4.5374926,0.04034675,98.30998211],[4.53749221,0.04034499,98.30943475],[4.53749181,0.04034323,98.30888848],[4.53749142,0.04034147,98.30834331],[4.53749102,0.04033971,98.30779922],[4.53749063,0.04033795,98.30725624],[4.53749023,0.0403362,98.30671435],[4.53748984,0.04033444,98.30617356],[4.53748944,0.04033268,98.30563387],[4.53748905,0.04033092,98.30509529],[4.53748865,0.04032916,98.3045578],[4.53748826,0.0403274,98.30402143],[4.53748786,0.04032564,98.30348616],[4.53748747,0.04032388,98.30295199],[4.53748707,0.04032212,98.30241894],[4.53748668,0.04032036,98.301887],[4.53748628,0.0403186,98.30135617],[4.53748589,0.04031684,98.30082645],[4.53748549,0.04031508,98.30029786],[4.5374851,0.04031332,98.29977037],[4.5374847,0.04031156,98.29924401],[4.53748431,0.0403098,98.29871877],[4.53748391,0.04030804,98.29819465],[4.53748352,0.04030628,98.29767165],[4.53748312,0.04030452,98.29714978],[4.53748273,0.04030276,98.29662903],[4.53748233,0.04030101,98.29610942],[4.53748194,0.04029925,98.29559093],[4.53748154,0.04029749,98.29507357],[4.53748115,0.04029573,98.29455735],[4.53748075,0.04029397,98.29404226],[4.53748036,0.04029221,98.2935283],[4.53747996,0.04029045,98.29301548],[4.53747957,0.04028869,98.2925038],[4.53747918,0.04028693,98.29199326],[4.53747878,0.04028517,98.29148387],[4.53747839,0.04028341,98.29097561],[4.53747799,0.04028165,98.29046851],[4.5374776,0.04027989,98.28996254],[4.5374772,0.04027813,98.28945773],[4.53747681,0.04027637,98.28895406],[4.53747641,0.04027461,98.28845155],[4.53747602,0.04027285,98.28795019],[4.53747562,0.04027109,98.28744998],[4.53747523,0.04026933,98.28695093],[4.53747484,0.04026757,98.28645303],[4.53747444,0.04026581,98.2859563],[4.53747405,0.04026405,98.28546072],[4.53747365,0.04026229,98.28496631],[4.53747326,0.04026053,98.28447306],[4.53747286,0.04025878,98.28398098],[4.53747247,0.04025702,98.28349006],[4.53747208,0.04025526,98.28300031],[4.53747168,0.0402535,98.28251173],[4.53747129,0.04025174,98.28202432],[4.53747089,0.04024998,98.28153808],[4.5374705,0.04024822,98.28105302],[4.53747011,0.04024646,98.28056913],[4.53746971,0.0402447,98.28008642],[4.53746932,0.04024294,98.27960489],[4.53746892,0.04024118,98.27912454],[4.53746853,0.04023942,98.27864538],[4.53746814,0.04023766,98.27816739],[4.53746774,0.0402359,98.27769059],[4.53746735,0.04023414,98.27721498],[4.53746695,0.04023238,98.27674056],[4.53746656,0.04023062,98.27626733],[4.53746617,0.04022886,98.27579529],[4.53746577,0.0402271,98.27532444],[4.53746538,0.04022534,98.27485478],[4.53746499,0.04022358,98.27438633],[4.53746459,0.04022182,98.27391907],[4.5374642,0.04022006,98.27345301],[4.5374638,0.0402183,98.27298816],[4.53746341,0.04021654,98.27252453],[4.53746302,0.04021478,98.27206211],[4.53746262,0.04021302,98.27160092],[4.53746223,0.04021126,98.27114096],[4.53746184,0.0402095,98.27068222],[4.53746144,0.04020774,98.27022473],[4.53746105,0.04020598,98.26976847],[4.53746066,0.04020423,98.26931347],[4.53746026,0.04020247,98.26885971],[4.53745987,0.04020071,98.26840721],[4.53745948,0.04019895,98.26795598],[4.53745908,0.04019719,98.26750601],[4.53745869,0.04019543,98.26705731],[4.5374583,0.04019367,98.26660989],[4.53745792,0.04019199,98.26618392]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1003400","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}},{"geometry":{"coordinates":[[4.5374913,0.0401844,98.36742114],[4.53749133,0.04018615,98.36677706],[4.53749137,0.040188,98.36610426],[4.5374915,0.04018982,98.36571766],[4.5374919,0.04019157,98.36616924],[4.53749231,0.04019333,98.36662297],[4.53749271,0.04019509,98.36707877],[4.53749312,0.04019684,98.36753656],[4.53749353,0.0401986,98.36799628],[4.53749393,0.04020036,98.36845783],[4.53749434,0.04020212,98.36892115],[4.53749475,0.04020387,98.36938616],[4.53749516,0.04020563,98.36985279],[4.53749557,0.04020739,98.37032095],[4.53749597,0.04020914,98.37079058],[4.53749638,0.0402109,98.3712616],[4.53749679,0.04021266,98.37173394],[4.5374972,0.04021441,98.37220751],[4.53749761,0.04021617,98.37268225],[4.53749802,0.04021793,98.37315807],[4.53749842,0.04021968,98.37363492],[4.53749883,0.04022144,98.37411271],[4.53749924,0.0402232,98.37459137],[4.53749965,0.04022495,98.37507084],[4.53750006,0.04022671,98.37555104],[4.53750047,0.04022847,98.37603191],[4.53750087,0.04023022,98.37651336],[4.53750128,0.04023198,98.37699533],[4.53750169,0.04023374,98.37747776],[4.5375021,0.04023549,98.37796056],[4.5375025,0.04023725,98.37844368],[4.53750291,0.04023901,98.37892703],[4.53750332,0.04024077,98.37941055],[4.53750372,0.04024252,98.37989417],[4.53750413,0.04024428,98.38037782],[4.53750454,0.04024604,98.38086143],[4.53750494,0.0402478,98.38134493],[4.53750535,0.04024955,98.38182824],[4.53750575,0.04025131,98.38231131],[4.53750615,0.04025307,98.38279406],[4.53750656,0.04025483,98.38327643],[4.53750696,0.04025658,98.38375833],[4.53750736,0.04025834,98.38423971],[4.53750776,0.0402601,98.3847205],[4.53750817,0.04026186,98.38520062],[4.53750857,0.04026362,98.38568001],[4.53750897,0.04026538,98.3861586],[4.53750937,0.04026713,98.38663633],[4.53750977,0.04026889,98.38711311],[4.53751016,0.04027065,98.38758889],[4.53751056,0.04027241,98.3880636],[4.53751096,0.04027417,98.38853726],[4.53751135,0.04027593,98.38900997],[4.53751175,0.04027769,98.38948184],[4.53751214,0.04027945,98.38995298],[4.53751254,0.04028121,98.39042348],[4.53751293,0.04028297,98.39089346],[4.53751333,0.04028473,98.39136302],[4.53751372,0.04028649,98.39183226],[4.53751411,0.04028825,98.39230129],[4.5375145,0.04029001,98.39277022],[4.5375149,0.04029177,98.39323915],[4.53751529,0.04029353,98.39370818],[4.53751568,0.04029529,98.39417741],[4.53751607,0.04029705,98.39464697],[4.53751646,0.04029881,98.39511693],[4.53751685,0.04030057,98.39558742],[4.53751724,0.04030233,98.39605853],[4.53751763,0.04030409,98.39653037],[4.53751802,0.04030586,98.39700303],[4.53751841,0.04030762,98.39747664],[4.5375188,0.04030938,98.39795127],[4.53751919,0.04031114,98.39842705],[4.53751958,0.0403129,98.39890407],[4.53751997,0.04031466,98.39938241],[4.53752036,0.04031642,98.39986211],[4.53752075,0.04031818,98.40034317],[4.53752114,0.04031994,98.4008256],[4.53752153,0.0403217,98.4013094],[4.53752193,0.04032346,98.40179459],[4.53752232,0.04032522,98.40228117],[4.53752271,0.04032698,98.40276915],[4.5375231,0.04032874,98.40325854],[4.53752349,0.0403305,98.40374934],[4.53752388,0.04033226,98.40424157],[4.53752427,0.04033402,98.40473523],[4.53752467,0.04033579,98.40523032],[4.53752506,0.04033755,98.40572687],[4.53752545,0.04033931,98.40622487],[4.53752584,0.04034107,98.40672434],[4.53752624,0.04034283,98.40722527],[4.53752663,0.04034459,98.40772768],[4.53752702,0.04034635,98.40823157],[4.53752741,0.04034811,98.4087369],[4.53752781,0.04034987,98.40924369],[4.5375282,0.04035163,98.4097519],[4.53752859,0.04035339,98.41026153],[4.53752899,0.04035515,98.41077256],[4.53752938,0.04035691,98.41128498],[4.53752977,0.04035867,98.41179878],[4.53753017,0.04036043,98.41231394],[4.53753056,0.04036219,98.41283046],[4.53753096,0.04036395,98.41334831],[4.53753135,0.04036571,98.41386748],[4.53753174,0.04036747,98.41438796],[4.53753214,0.04036922,98.41490975],[4.53753253,0.04037098,98.41543281],[4.53753293,0.04037274,98.41595715],[4.53753332,0.0403745,98.41648275],[4.53753372,0.04037626,98.41700959],[4.53753411,0.04037802,98.41753766],[4.53753451,0.04037978,98.41806696],[4.5375349,0.04038154,98.41859745],[4.5375353,0.0403833,98.41912915],[4.53753569,0.04038506,98.41966202],[4.53753609,0.04038682,98.42019606],[4.53753648,0.04038858,98.42073126],[4.53753688,0.04039034,98.42126759],[4.53753727,0.0403921,98.42180506],[4.53753767,0.04039386,98.42234364],[4.53753807,0.04039562,98.42288332],[4.53753846,0.04039738,98.4234241],[4.53753886,0.04039914,98.42396595],[4.53753925,0.0404009,98.42450887],[4.53753965,0.04040266,98.42505284],[4.53754004,0.04040442,98.42559784],[4.53754044,0.04040617,98.42614388],[4.53754083,0.04040793,98.42669093],[4.53754123,0.04040969,98.42723898],[4.53754163,0.04041145,98.42778802],[4.53754202,0.04041321,98.42833803],[4.53754242,0.04041497,98.42888901],[4.53754281,0.04041673,98.42944094],[4.53754321,0.04041849,98.42999381],[4.5375436,0.04042025,98.4305476],[4.537544,0.04042201,98.43110231],[4.53754439,0.04042377,98.43165792],[4.53754479,0.04042553,98.43221442],[4.53754519,0.04042729,98.43277179],[4.53754558,0.04042905,98.43333003],[4.53754598,0.04043081,98.43388912],[4.53754637,0.04043257,98.43444906],[4.53754677,0.04043433,98.43500983],[4.53754716,0.04043609,98.43557142],[4.53754756,0.04043785,98.43613383],[4.53754795,0.04043961,98.43669703],[4.53754835,0.04044137,98.43726102],[4.53754874,0.04044312,98.43782579],[4.53754914,0.04044488,98.43839132],[4.53754953,0.04044664,98.43895761],[4.53754993,0.0404484,98.43952464],[4.53755032,0.04045016,98.44009241],[4.53755072,0.04045192,98.44066091],[4.53755111,0.04045368,98.44123011],[4.5375515,0.04045544,98.44180002],[4.5375519,0.0404572,98.44237061],[4.53755229,0.04045896,98.44294189],[4.53755269,0.04046072,98.44351385],[4.53755308,0.04046248,98.44408649],[4.53755347,0.04046424,98.44465985],[4.53755387,0.040466,98.44523393],[4.53755426,0.04046776,98.44580874],[4.53755465,0.04046952,98.44638431],[4.53755505,0.04047128,98.44696065],[4.53755544,0.04047304,98.44753778],[4.53755583,0.0404748,98.4481157],[4.53755623,0.04047656,98.44869445],[4.53755662,0.04047832,98.44927402],[4.53755701,0.04048008,98.44985444],[4.53755741,0.04048184,98.45043572],[4.5375578,0.0404836,98.45101788],[4.53755819,0.04048536,98.45160094],[4.53755859,0.04048712,98.4521849],[4.53755898,0.04048888,98.45276978],[4.53755937,0.04049064,98.4533556],[4.53755976,0.0404924,98.45394238],[4.53756016,0.04049416,98.45453012],[4.53756055,0.04049592,98.45511885],[4.53756094,0.04049768,98.45570858],[4.53756134,0.04049944,98.45629932],[4.53756173,0.0405012,98.45689109],[4.53756212,0.04050296,98.4574839],[4.53756252,0.04050472,98.45807778],[4.53756291,0.04050648,98.45867273],[4.5375633,0.04050824,98.45926876],[4.53756369,0.04051,98.4598659],[4.53756409,0.04051176,98.46046416],[4.53756448,0.04051352,98.46106356],[4.53756487,0.04051528,98.46166409],[4.53756527,0.04051704,98.46226574],[4.53756566,0.0405188,98.46286852],[4.53756605,0.04052056,98.4634724],[4.53756645,0.04052232,98.46407739],[4.53756684,0.04052408,98.46468347],[4.53756723,0.04052584,98.46529063],[4.53756763,0.0405276,98.46589886],[4.53756802,0.04052936,98.46650816],[4.53756841,0.04053112,98.46711852],[4.53756881,0.04053288,98.46772992],[4.5375692,0.04053464,98.46834236],[4.53756959,0.0405364,98.46895583],[4.53756999,0.04053816,98.46957032],[4.53757038,0.04053992,98.47018583],[4.53757077,0.04054168,98.47080233],[4.53757117,0.04054344,98.47141983],[4.53757156,0.0405452,98.47203832],[4.53757195,0.04054696,98.47265778],[4.53757235,0.04054872,98.47327821],[4.53757274,0.04055048,98.47389961],[4.53757313,0.04055224,98.47452195],[4.53757353,0.040554,98.47514523],[4.53757392,0.04055576,98.47576945],[4.53757431,0.04055752,98.47639459],[4.53757471,0.04055928,98.47702064],[4.5375751,0.04056104,98.47764761],[4.53757549,0.0405628,98.47827547],[4.53757589,0.04056456,98.47890422],[4.53757628,0.04056632,98.47953385],[4.53757667,0.04056808,98.48016436],[4.53757707,0.04056984,98.48079573],[4.53757746,0.0405716,98.48142796],[4.53757785,0.04057336,98.48206103],[4.53757824,0.04057512,98.48269494],[4.53757864,0.04057688,98.48332968],[4.53757903,0.04057864,98.48396525],[4.53757942,0.0405804,98.48460162],[4.53757981,0.04058216,98.4852388],[4.53758021,0.04058392,98.48587678],[4.5375806,0.04058568,98.48651555],[4.53758099,0.04058744,98.48715509],[4.53758138,0.0405892,98.4877954],[4.53758178,0.04059096,98.48843648],[4.53758217,0.04059272,98.48907831],[4.53758256,0.04059448,98.48972089],[4.53758295,0.04059624,98.4903642],[4.53758334,0.040598,98.49100824],[4.53758373,0.04059976,98.49165301],[4.53758413,0.04060152,98.49229848],[4.53758452,0.04060328,98.49294466],[4.53758491,0.04060504,98.49359153],[4.5375853,0.04060681,98.49423909],[4.53758569,0.04060857,98.49488733],[4.53758608,0.04061033,98.49553624],[4.53758647,0.04061209,98.49618582],[4.53758686,0.04061385,98.49683604],[4.53758725,0.04061561,98.49748692],[4.53758764,0.04061737,98.49813843],[4.53758803,0.04061913,98.49879057],[4.53758842,0.04062089,98.49944334],[4.53758881,0.04062265,98.50009677],[4.5375892,0.04062441,98.5007509],[4.53758959,0.04062617,98.50140577],[4.53758998,0.04062793,98.50206139],[4.53759037,0.04062969,98.5027178],[4.53759076,0.04063146,98.50337502],[4.53759115,0.04063322,98.50403309],[4.53759154,0.04063498,98.50469202],[4.53759193,0.04063674,98.50535186],[4.53759232,0.0406385,98.50601261],[4.5375927,0.04064026,98.50667432],[4.53759309,0.04064202,98.50733701],[4.53759348,0.04064378,98.50800071],[4.53759387,0.04064554,98.50866545],[4.53759426,0.04064731,98.50933124],[4.53759465,0.04064907,98.50999813],[4.53759504,0.04065083,98.51066613],[4.53759543,0.04065259,98.51133528],[4.53759582,0.04065435,98.5120056],[4.53759621,0.04065611,98.51267712],[4.5375966,0.04065787,98.51334986],[4.53759698,0.04065963,98.51402386],[4.53759737,0.04066139,98.51469914],[4.53759776,0.04066315,98.51537573],[4.53759815,0.04066491,98.51605366],[4.53759854,0.04066668,98.51673294],[4.53759893,0.04066844,98.51741361],[4.53759932,0.0406702,98.5180957],[4.53759971,0.04067196,98.51877924],[4.5376001,0.04067372,98.51946424],[4.53760049,0.04067548,98.52015074],[4.53760088,0.04067724,98.52083876],[4.53760127,0.040679,98.52152833],[4.53760167,0.04068076,98.52221948],[4.53760206,0.04068252,98.52291223],[4.53760245,0.04068428,98.52360661],[4.53760284,0.04068604,98.52430265],[4.53760323,0.0406878,98.52500037],[4.53760362,0.04068956,98.5256998],[4.53760402,0.04069132,98.52640096],[4.53760441,0.04069308,98.52710389],[4.5376048,0.04069484,98.52780861],[4.5376052,0.0406966,98.52851515],[4.53760559,0.04069836,98.52922352],[4.53760598,0.04070012,98.52993376],[4.53760638,0.04070188,98.5306459],[4.53760677,0.04070364,98.53135996],[4.53760717,0.0407054,98.53207597],[4.53760756,0.04070716,98.53279394],[4.53760796,0.04070892,98.53351392],[4.53760835,0.04071068,98.53423593],[4.53760875,0.04071244,98.53495998],[4.53760915,0.0407142,98.53568612],[4.53760954,0.04071596,98.53641435],[4.53760994,0.04071772,98.53714468],[4.53761034,0.04071948,98.53787707],[4.53761074,0.04072124,98.53861146],[4.53761114,0.040723,98.53934783],[4.53761153,0.04072476,98.54008613],[4.53761193,0.04072651,98.54082631],[4.53761233,0.04072827,98.54156834],[4.53761273,0.04073003,98.54231218],[4.53761313,0.04073179,98.54305777],[4.53761353,0.04073355,98.54380509],[4.53761393,0.04073531,98.54455409],[4.53761433,0.04073707,98.54530473],[4.53761474,0.04073882,98.54605697],[4.53761514,0.04074058,98.54681076],[4.53761554,0.04074234,98.54756608],[4.53761594,0.0407441,98.54832286],[4.53761634,0.04074586,98.54908108],[4.53761674,0.04074762,98.5498407],[4.53761714,0.04074937,98.55060166],[4.53761755,0.04075113,98.55136394],[4.53761795,0.04075289,98.55212749],[4.53761835,0.04075465,98.55289227],[4.53761875,0.04075641,98.55365824],[4.53761916,0.04075816,98.55442536],[4.53761956,0.04075992,98.55519358],[4.53761996,0.04076168,98.55596288],[4.53762036,0.04076344,98.5567332],[4.53762076,0.0407652,98.55750451],[4.53762117,0.04076695,98.55827677],[4.53762157,0.04076871,98.55904994],[4.53762197,0.04077047,98.55982397],[4.53762237,0.04077223,98.56059883],[4.53762278,0.04077399,98.56137448],[4.53762318,0.04077575,98.56215087],[4.53762358,0.0407775,98.56292797],[4.53762398,0.04077926,98.56370574],[4.53762438,0.04078102,98.56448413],[4.53762478,0.04078278,98.56526311],[4.53762518,0.04078454,98.56604263],[4.53762559,0.0407863,98.56682267],[4.53762599,0.04078805,98.56760317],[4.53762639,0.04078981,98.56838411],[4.53762679,0.04079157,98.56916544],[4.53762719,0.04079333,98.56994714],[4.53762759,0.04079509,98.57072916],[4.53762799,0.04079685,98.57151147],[4.53762838,0.04079861,98.57229404],[4.53762878,0.04080037,98.57307683],[4.53762918,0.04080212,98.5738598],[4.53762958,0.04080388,98.57464293],[4.53762998,0.04080564,98.57542617],[4.53763037,0.0408074,98.57620949],[4.53763077,0.04080916,98.57699285],[4.53763117,0.04081092,98.57777622],[4.53763156,0.04081268,98.57855957],[4.53763196,0.04081444,98.57934285],[4.53763236,0.0408162,98.58012604],[4.53763275,0.04081796,98.5809091],[4.53763314,0.04081972,98.58169199],[4.53763354,0.04082148,98.58247468],[4.53763393,0.04082324,98.58325713],[4.53763432,0.040825,98.58403931],[4.53763472,0.04082676,98.58482118],[4.53763511,0.04082852,98.58560272],[4.5376355,0.04083028,98.58638388],[4.53763589,0.04083204,98.58716462],[4.53763628,0.0408338,98.58794492]],"type":"LineString"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1003400","id":1,"type":"shoulder","predecessorId":1}},{"geometry":{"coordinates":[[4.53750608,0.04018103,98.41225728],[4.53750645,0.04018271,98.41263372],[4.53750685,0.04018448,98.41302902],[4.53750724,0.04018624,98.41342534],[4.53750763,0.040188,98.41382264],[4.53750803,0.04018976,98.41422095],[4.53750842,0.04019152,98.41462027],[4.53750881,0.04019328,98.4150206],[4.53750921,0.04019504,98.41542193],[4.5375096,0.0401968,98.41582427],[4.53750999,0.04019856,98.41622761],[4.53751039,0.04020032,98.41663195],[4.53751078,0.04020208,98.41703729],[4.53751117,0.04020384,98.41744362],[4.53751157,0.0402056,98.41785094],[4.53751196,0.04020736,98.41825925],[4.53751235,0.04020912,98.41866854],[4.53751275,0.04021088,98.41907882],[4.53751314,0.04021264,98.41949008],[4.53751353,0.0402144,98.41990233],[4.53751393,0.04021616,98.42031555],[4.53751432,0.04021792,98.42072975],[4.53751471,0.04021968,98.42114493],[4.53751511,0.04022144,98.4215611],[4.5375155,0.0402232,98.42197825],[4.53751589,0.04022496,98.42239638],[4.53751629,0.04022672,98.4228155],[4.53751668,0.04022848,98.4232356],[4.53751707,0.04023024,98.42365669],[4.53751747,0.040232,98.42407877],[4.53751786,0.04023377,98.42450183],[4.53751825,0.04023553,98.42492589],[4.53751865,0.04023729,98.42535094],[4.53751904,0.04023905,98.42577697],[4.53751943,0.04024081,98.426204],[4.53751982,0.04024257,98.42663202],[4.53752022,0.04024433,98.42706104],[4.53752061,0.04024609,98.42749105],[4.537521,0.04024785,98.42792205],[4.5375214,0.04024961,98.42835405],[4.53752179,0.04025137,98.42878705],[4.53752218,0.04025313,98.42922105],[4.53752258,0.04025489,98.42965604],[4.53752297,0.04025665,98.43009204],[4.53752336,0.04025841,98.43052904],[4.53752375,0.04026017,98.43096703],[4.53752415,0.04026193,98.43140603],[4.53752454,0.04026369,98.43184603],[4.53752493,0.04026545,98.43228704],[4.53752533,0.04026721,98.43272905],[4.53752572,0.04026897,98.43317207],[4.53752611,0.04027073,98.43361619],[4.5375265,0.04027249,98.43406158],[4.5375269,0.04027425,98.43450838],[4.53752729,0.04027601,98.43495664],[4.53752768,0.04027777,98.43540638],[4.53752808,0.04027953,98.43585761],[4.53752847,0.04028129,98.43631035],[4.53752887,0.04028305,98.43676461],[4.53752926,0.04028481,98.43722041],[4.53752965,0.04028657,98.43767777],[4.53753005,0.04028833,98.4381367],[4.53753044,0.04029009,98.43859722],[4.53753084,0.04029185,98.43905934],[4.53753123,0.04029361,98.43952309],[4.53753163,0.04029537,98.43998847],[4.53753202,0.04029713,98.44045551],[4.53753242,0.04029889,98.44092422],[4.53753282,0.04030065,98.44139461],[4.53753321,0.04030241,98.4418667],[4.53753361,0.04030417,98.44234051],[4.53753401,0.04030593,98.44281605],[4.5375344,0.04030769,98.44329334],[4.5375348,0.04030945,98.4437724],[4.5375352,0.04031121,98.44425322],[4.53753559,0.04031297,98.44473575],[4.53753599,0.04031472,98.44521989],[4.53753639,0.04031648,98.44570559],[4.53753679,0.04031824,98.44619275],[4.53753719,0.04032,98.4466813],[4.53753759,0.04032176,98.44717116],[4.53753798,0.04032352,98.44766225],[4.53753838,0.04032528,98.4481545],[4.53753878,0.04032704,98.44864784],[4.53753918,0.0403288,98.44914217],[4.53753958,0.04033055,98.44963743],[4.53753998,0.04033231,98.45013355],[4.53754038,0.04033407,98.45063053],[4.53754077,0.04033583,98.4511284],[4.53754117,0.04033759,98.45162718],[4.53754157,0.04033935,98.45212687],[4.53754197,0.04034111,98.4526275],[4.53754237,0.04034287,98.45312907],[4.53754277,0.04034463,98.45363158],[4.53754317,0.04034638,98.45413502],[4.53754356,0.04034814,98.4546394],[4.53754396,0.0403499,98.45514471],[4.53754436,0.04035166,98.45565094],[4.53754476,0.04035342,98.45615809],[4.53754516,0.04035518,98.45666617],[4.53754556,0.04035694,98.45717516],[4.53754595,0.0403587,98.45768506],[4.53754635,0.04036046,98.45819588],[4.53754675,0.04036221,98.45870761],[4.53754715,0.04036397,98.45922024],[4.53754755,0.04036573,98.45973378],[4.53754794,0.04036749,98.46024821],[4.53754834,0.04036925,98.46076354],[4.53754874,0.04037101,98.46127977],[4.53754914,0.04037277,98.46179689],[4.53754954,0.04037453,98.46231489],[4.53754993,0.04037629,98.46283378],[4.53755033,0.04037804,98.46335355],[4.53755073,0.0403798,98.46387419],[4.53755113,0.04038156,98.4643957],[4.53755152,0.04038332,98.46491805],[4.53755192,0.04038508,98.46544126],[4.53755232,0.04038684,98.46596531],[4.53755272,0.0403886,98.4664902],[4.53755312,0.04039036,98.46701591],[4.53755351,0.04039212,98.46754244],[4.53755391,0.04039388,98.46806978],[4.53755431,0.04039563,98.46859793],[4.5375547,0.04039739,98.46912688],[4.5375551,0.04039915,98.46965662],[4.5375555,0.04040091,98.47018714],[4.5375559,0.04040267,98.47071844],[4.53755629,0.04040443,98.47125051],[4.53755669,0.04040619,98.47178334],[4.53755709,0.04040795,98.47231692],[4.53755748,0.04040971,98.47285126],[4.53755788,0.04041147,98.47338633],[4.53755828,0.04041323,98.47392214],[4.53755867,0.04041498,98.47445867],[4.53755907,0.04041674,98.47499593],[4.53755947,0.0404185,98.4755339],[4.53755986,0.04042026,98.47607257],[4.53756026,0.04042202,98.47661194],[4.53756065,0.04042378,98.477152],[4.53756105,0.04042554,98.47769275],[4.53756145,0.0404273,98.47823418],[4.53756184,0.04042906,98.47877629],[4.53756224,0.04043082,98.47931906],[4.53756263,0.04043258,98.4798625],[4.53756303,0.04043434,98.4804066],[4.53756342,0.0404361,98.48095135],[4.53756382,0.04043786,98.48149674],[4.53756421,0.04043962,98.48204278],[4.53756461,0.04044138,98.48258945],[4.537565,0.04044314,98.48313676],[4.5375654,0.0404449,98.48368468],[4.53756579,0.04044665,98.48423323],[4.53756619,0.04044841,98.48478239],[4.53756658,0.04045017,98.48533216],[4.53756697,0.04045193,98.48588253],[4.53756737,0.04045369,98.4864335],[4.53756776,0.04045545,98.48698506],[4.53756816,0.04045721,98.48753721],[4.53756855,0.04045897,98.48808998],[4.53756894,0.04046073,98.48864338],[4.53756934,0.04046249,98.48919743],[4.53756973,0.04046425,98.48975217],[4.53757012,0.04046601,98.4903076],[4.53757051,0.04046777,98.49086375],[4.53757091,0.04046953,98.49142063],[4.5375713,0.04047129,98.49197828],[4.53757169,0.04047305,98.4925367],[4.53757208,0.04047481,98.49309593],[4.53757248,0.04047657,98.49365597],[4.53757287,0.04047833,98.49421686],[4.53757326,0.04048009,98.49477861],[4.53757365,0.04048185,98.49534124],[4.53757405,0.04048361,98.49590477],[4.53757444,0.04048537,98.49646922],[4.53757483,0.04048713,98.49703462],[4.53757522,0.04048889,98.49760098],[4.53757562,0.04049065,98.49816833],[4.53757601,0.04049241,98.49873668],[4.5375764,0.04049417,98.49930605],[4.53757679,0.04049593,98.49987646],[4.53757718,0.04049769,98.50044794],[4.53757758,0.04049946,98.50102051],[4.53757797,0.04050122,98.50159418],[4.53757836,0.04050298,98.50216897],[4.53757875,0.04050474,98.50274491],[4.53757915,0.0405065,98.50332201],[4.53757954,0.04050826,98.5039003],[4.53757993,0.04051002,98.50447979],[4.53758032,0.04051178,98.50506049],[4.53758072,0.04051354,98.5056424],[4.53758111,0.0405153,98.50622551],[4.5375815,0.04051706,98.50680982],[4.53758189,0.04051882,98.50739533],[4.53758229,0.04052058,98.50798203],[4.53758268,0.04052234,98.50856992],[4.53758307,0.0405241,98.50915899],[4.53758347,0.04052586,98.50974924],[4.53758386,0.04052762,98.51034067],[4.53758425,0.04052938,98.51093327],[4.53758465,0.04053114,98.51152704],[4.53758504,0.0405329,98.51212197],[4.53758543,0.04053466,98.51271807],[4.53758582,0.04053642,98.51331531],[4.53758622,0.04053818,98.51391372],[4.53758661,0.04053994,98.51451327],[4.53758701,0.0405417,98.51511396],[4.5375874,0.04054346,98.5157158],[4.53758779,0.04054522,98.51631877],[4.53758819,0.04054698,98.51692287],[4.53758858,0.04054874,98.51752811],[4.53758897,0.0405505,98.51813447],[4.53758937,0.04055226,98.51874195],[4.53758976,0.04055402,98.51935054],[4.53759015,0.04055578,98.51996025],[4.53759055,0.04055754,98.52057108],[4.53759094,0.0405593,98.521183],[4.53759134,0.04056106,98.52179603],[4.53759173,0.04056282,98.52241016],[4.53759212,0.04056458,98.52302538],[4.53759252,0.04056634,98.52364169],[4.53759291,0.0405681,98.52425909],[4.5375933,0.04056986,98.52487757],[4.5375937,0.04057162,98.52549713],[4.53759409,0.04057338,98.52611777],[4.53759449,0.04057514,98.52673948],[4.53759488,0.0405769,98.52736225],[4.53759527,0.04057866,98.52798609],[4.53759567,0.04058041,98.52861099],[4.53759606,0.04058217,98.52923695],[4.53759646,0.04058393,98.52986396],[4.53759685,0.04058569,98.53049202],[4.53759724,0.04058745,98.53112113],[4.53759764,0.04058921,98.53175127],[4.53759803,0.04059097,98.53238246],[4.53759842,0.04059273,98.53301467],[4.53759882,0.04059449,98.53364792],[4.53759921,0.04059625,98.5342822],[4.53759961,0.04059801,98.5349175],[4.5376,0.04059977,98.5355538],[4.53760039,0.04060153,98.53619109],[4.53760079,0.04060329,98.53682933],[4.53760118,0.04060505,98.5374685],[4.53760157,0.04060681,98.53810857],[4.53760197,0.04060857,98.53874951],[4.53760236,0.04061033,98.5393913],[4.53760276,0.04061209,98.5400339],[4.53760315,0.04061385,98.5406773],[4.53760354,0.04061561,98.54132147],[4.53760393,0.04061737,98.54196639],[4.53760433,0.04061913,98.54261207],[4.53760472,0.0406209,98.54325853],[4.53760511,0.04062266,98.54390579],[4.53760551,0.04062442,98.54455385],[4.5376059,0.04062618,98.54520272],[4.53760629,0.04062794,98.54585242],[4.53760668,0.0406297,98.54650295],[4.53760708,0.04063146,98.54715433],[4.53760747,0.04063322,98.54780655],[4.53760786,0.04063498,98.54845964],[4.53760825,0.04063674,98.54911359],[4.53760864,0.0406385,98.54976843],[4.53760904,0.04064026,98.55042416],[4.53760943,0.04064202,98.55108078],[4.53760982,0.04064378,98.55173832],[4.53761021,0.04064554,98.55239677],[4.5376106,0.0406473,98.55305616],[4.537611,0.04064906,98.55371648],[4.53761139,0.04065082,98.55437774],[4.53761178,0.04065258,98.55503996],[4.53761217,0.04065434,98.55570315],[4.53761256,0.0406561,98.55636731],[4.53761295,0.04065786,98.55703246],[4.53761334,0.04065962,98.5576986],[4.53761374,0.04066139,98.55836574],[4.53761413,0.04066315,98.5590339],[4.53761452,0.04066491,98.55970307],[4.53761491,0.04066667,98.56037328],[4.5376153,0.04066843,98.56104453],[4.53761569,0.04067019,98.56171682],[4.53761608,0.04067195,98.56239018],[4.53761648,0.04067371,98.5630646],[4.53761687,0.04067547,98.5637401],[4.53761726,0.04067723,98.56441669],[4.53761765,0.04067899,98.56509437],[4.53761804,0.04068075,98.56577316],[4.53761843,0.04068251,98.56645306],[4.53761882,0.04068427,98.56713408],[4.53761921,0.04068603,98.56781623],[4.53761961,0.0406878,98.56849953],[4.53762,0.04068956,98.56918398],[4.53762039,0.04069132,98.56986958],[4.53762078,0.04069308,98.57055636],[4.53762117,0.04069484,98.57124431],[4.53762156,0.0406966,98.57193348],[4.53762195,0.04069836,98.5726239],[4.53762235,0.04070012,98.57331563],[4.53762274,0.04070188,98.57400872],[4.53762313,0.04070364,98.57470322],[4.53762352,0.0407054,98.57539919],[4.53762391,0.04070716,98.57609667],[4.53762431,0.04070892,98.57679571],[4.5376247,0.04071068,98.57749637],[4.53762509,0.04071244,98.57819869],[4.53762548,0.0407142,98.57890268],[4.53762588,0.04071596,98.57960835],[4.53762627,0.04071772,98.58031566],[4.53762666,0.04071948,98.5810246],[4.53762706,0.04072124,98.58173515],[4.53762745,0.040723,98.58244729],[4.53762785,0.04072476,98.58316101],[4.53762824,0.04072652,98.58387629],[4.53762863,0.04072828,98.58459312],[4.53762903,0.04073004,98.58531147],[4.53762942,0.0407318,98.58603132],[4.53762982,0.04073356,98.58675267],[4.53763021,0.04073532,98.58747549],[4.53763061,0.04073708,98.58819977],[4.537631,0.04073884,98.58892548],[4.5376314,0.0407406,98.58965262],[4.53763179,0.04074236,98.59038117],[4.53763219,0.04074412,98.5911111],[4.53763259,0.04074588,98.5918424],[4.53763298,0.04074764,98.59257506],[4.53763338,0.0407494,98.59330905],[4.53763377,0.04075116,98.59404437],[4.53763417,0.04075292,98.59478099],[4.53763456,0.04075468,98.59551889],[4.53763496,0.04075644,98.59625806],[4.53763536,0.0407582,98.59699849],[4.53763575,0.04075996,98.59774015],[4.53763615,0.04076172,98.59848303],[4.53763655,0.04076348,98.59922712],[4.53763694,0.04076524,98.59997239],[4.53763734,0.040767,98.60071882],[4.53763774,0.04076876,98.60146641],[4.53763813,0.04077052,98.60221514],[4.53763853,0.04077228,98.60296498],[4.53763892,0.04077404,98.60371593],[4.53763932,0.0407758,98.60446796],[4.53763972,0.04077756,98.60522106],[4.53764011,0.04077932,98.60597521],[4.53764051,0.04078108,98.6067304],[4.53764091,0.04078284,98.60748661],[4.5376413,0.0407846,98.60824382],[4.5376417,0.04078636,98.60900202],[4.53764209,0.04078812,98.60976121],[4.53764249,0.04078988,98.61052135],[4.53764289,0.04079163,98.61128246],[4.53764328,0.04079339,98.6120445],[4.53764368,0.04079515,98.61280748],[4.53764407,0.04079691,98.61357137],[4.53764447,0.04079867,98.61433616],[4.53764487,0.04080043,98.61510185],[4.53764526,0.04080219,98.61586842],[4.53764566,0.04080395,98.61663586],[4.53764605,0.04080571,98.61740416],[4.53764645,0.04080747,98.6181733],[4.53764684,0.04080923,98.61894327],[4.53764724,0.04081099,98.61971406],[4.53764763,0.04081275,98.62048566],[4.53764803,0.04081451,98.62125805],[4.53764842,0.04081627,98.62203123],[4.53764882,0.04081803,98.62280517],[4.53764921,0.04081979,98.62357988],[4.5376496,0.04082155,98.62435533],[4.53765,0.04082331,98.62513152],[4.53765039,0.04082508,98.62590843],[4.53765079,0.04082684,98.62668605],[4.53765118,0.0408286,98.62746437],[4.53765157,0.04083036,98.62824337]],"type":"LineString"},"type":"feature","properties":{"successorId":2,"level":false,"roadId":"1003400","id":2,"type":"border","predecessorId":2}},{"geometry":{"coordinates":[[4.53734788,0.04021701,98.06502578],[4.53734749,0.04021525,98.06451693],[4.5373471,0.0402135,98.06400377],[4.53734671,0.04021174,98.06348662],[4.53734631,0.04020998,98.06296585],[4.53734592,0.04020822,98.06244178],[4.53734552,0.04020646,98.06191475],[4.53734512,0.04020471,98.06138512],[4.53734472,0.04020295,98.06085322],[4.53734432,0.0402012,98.0603194],[4.53734391,0.04019944,98.059784],[4.53734351,0.04019768,98.05924736],[4.53734311,0.04019593,98.05870984],[4.5373427,0.04019417,98.05817177],[4.5373423,0.04019242,98.0576335],[4.53734189,0.04019066,98.05709538],[4.53734149,0.04018891,98.05655776],[4.53734108,0.04018715,98.05602096],[4.53734067,0.0401854,98.05548498],[4.53734027,0.04018364,98.05494946],[4.53733986,0.04018189,98.05441401],[4.53733945,0.04018013,98.05387827],[4.53733904,0.04017838,98.05334198],[4.53733864,0.04017662,98.0528053],[4.53733823,0.04017487,98.05226851],[4.53733782,0.04017311,98.0517319],[4.53733741,0.04017136,98.05119575],[4.537337,0.04016961,98.05066034],[4.53733659,0.04016785,98.05012596],[4.53733618,0.0401661,98.04959289],[4.53733577,0.04016434,98.04906141],[4.53733536,0.04016259,98.04853181],[4.53733495,0.04016084,98.04800437],[4.53733454,0.04015908,98.04747938],[4.53733413,0.04015733,98.04695713],[4.53733373,0.04015557,98.04643789],[4.53733332,0.04015382,98.04592196],[4.53733291,0.04015206,98.04540962],[4.53733251,0.04015031,98.04490116],[4.5373321,0.04014855,98.04439673],[4.5373317,0.0401468,98.04389639],[4.53733129,0.04014504,98.04340015],[4.53733089,0.04014329,98.04290808],[4.53733049,0.04014153,98.04242004],[4.53733009,0.04013978,98.04193528],[4.53732969,0.04013802,98.04145305],[4.53732929,0.04013626,98.04097325],[4.53732889,0.04013451,98.04049592],[4.53732849,0.04013275,98.04002114],[4.53732809,0.040131,98.03954894],[4.53732769,0.04012924,98.0390794],[4.53732729,0.04012748,98.03861256],[4.5373269,0.04012573,98.03814847],[4.5373265,0.04012397,98.0376872],[4.5373261,0.04012221,98.0372288],[4.53732571,0.04012046,98.03677333],[4.53732531,0.0401187,98.03632084],[4.53732492,0.04011694,98.03587139],[4.53732452,0.04011519,98.03542503],[4.53732413,0.04011343,98.03498182],[4.53732373,0.04011167,98.03454182],[4.53732334,0.04010991,98.03410508],[4.53732295,0.04010816,98.03367166],[4.53732256,0.0401064,98.03324162],[4.53732217,0.04010464,98.03281501],[4.53732178,0.04010288,98.03239188],[4.53732139,0.04010113,98.0319723],[4.537321,0.04009937,98.03155632],[4.53732061,0.04009761,98.031144],[4.53732022,0.04009585,98.03073539],[4.53731983,0.04009409,98.03033055],[4.53731945,0.04009233,98.02992938],[4.53731906,0.04009057,98.02953115],[4.53731868,0.04008882,98.02913497],[4.53731829,0.04008706,98.02873995],[4.5373179,0.0400853,98.02834529],[4.53731752,0.04008354,98.02795077],[4.53731713,0.04008178,98.02755634],[4.53731674,0.04008002,98.02716192],[4.53731636,0.04007826,98.02676748],[4.53731597,0.04007651,98.02637294],[4.53731558,0.04007475,98.02597824],[4.53731519,0.04007299,98.02558334],[4.5373148,0.04007123,98.02518816],[4.53731441,0.04006948,98.02479264],[4.53731402,0.04006772,98.02439674],[4.53731363,0.04006596,98.02400039],[4.53731323,0.0400642,98.02360352],[4.53731284,0.04006245,98.02320608],[4.53731245,0.04006069,98.02280802],[4.53731205,0.04005893,98.02240926],[4.53731166,0.04005718,98.02200975],[4.53731126,0.04005542,98.02160944],[4.53731086,0.04005366,98.02120825],[4.53731047,0.04005191,98.02080613],[4.53731007,0.04005015,98.0204031],[4.53730967,0.0400484,98.01999946],[4.53730927,0.04004664,98.01959561],[4.53730887,0.04004489,98.01919195],[4.53730847,0.04004313,98.01878889],[4.53730807,0.04004138,98.01838681],[4.53730767,0.04003962,98.01798614],[4.53730727,0.04003787,98.01758727],[4.53730687,0.04003611,98.0171906],[4.53730647,0.04003436,98.01679655],[4.53730607,0.0400326,98.01640551],[4.53730567,0.04003085,98.01601787],[4.53730527,0.04002909,98.01563342],[4.53730487,0.04002734,98.01525149],[4.53730448,0.04002558,98.01487195],[4.53730408,0.04002382,98.01449483],[4.53730368,0.04002207,98.01412013],[4.53730329,0.04002031,98.01374786],[4.53730289,0.04001856,98.01337803],[4.53730249,0.0400168,98.01301066],[4.5373021,0.04001505,98.01264574],[4.5373017,0.04001329,98.01228328],[4.53730131,0.04001153,98.01192331],[4.53730091,0.04000978,98.01156582],[4.53730052,0.04000802,98.01121082],[4.53730012,0.04000627,98.01085832],[4.53729973,0.04000451,98.01050834],[4.53729933,0.04000275,98.01016087],[4.53729894,0.040001,98.00981594],[4.53729855,0.03999924,98.00947354],[4.53729815,0.03999748,98.00913368],[4.53729776,0.03999573,98.00879651],[4.53729737,0.03999397,98.00846265],[4.53729698,0.03999221,98.00813273],[4.53729659,0.03999046,98.00780685],[4.5372962,0.0399887,98.00748501],[4.53729581,0.03998694,98.00716718],[4.53729542,0.03998519,98.00685334],[4.53729503,0.03998343,98.00654348],[4.53729465,0.03998167,98.00623757],[4.53729426,0.03997991,98.00593559],[4.53729388,0.03997816,98.00563754],[4.53729349,0.0399764,98.00534327],[4.53729311,0.03997464,98.00505222],[4.53729272,0.03997288,98.00476372],[4.53729234,0.03997112,98.00447712],[4.53729196,0.03996936,98.0041918],[4.53729157,0.03996761,98.00390713],[4.53729119,0.03996585,98.00362249],[4.5372908,0.03996409,98.00333723],[4.53729042,0.03996233,98.00305074],[4.53729003,0.03996057,98.00276238],[4.53728964,0.03995882,98.00247152],[4.53728925,0.03995706,98.00217753],[4.53728886,0.0399553,98.00187992],[4.53728847,0.03995355,98.0015788],[4.53728807,0.03995179,98.00127441],[4.53728768,0.03995004,98.00096699],[4.53728728,0.03994828,98.00065679],[4.53728688,0.03994653,98.00034405],[4.53728648,0.03994477,98.00002903],[4.53728608,0.03994302,97.99971197],[4.53728568,0.03994127,97.99939312],[4.53728528,0.03993951,97.99907272],[4.53728487,0.03993776,97.99875102],[4.53728447,0.03993601,97.99842827],[4.53728406,0.03993425,97.99810471],[4.53728366,0.0399325,97.9977806],[4.53728325,0.03993075,97.99745618],[4.53728284,0.03992899,97.99713171],[4.53728243,0.03992724,97.99680742],[4.53728203,0.03992549,97.99648359],[4.53728162,0.03992374,97.99616046],[4.53728121,0.03992199,97.99583832],[4.5372808,0.03992023,97.99551765],[4.53728039,0.03991848,97.99519892],[4.53727999,0.03991673,97.99488244],[4.53727958,0.03991498,97.99456835],[4.53727917,0.03991322,97.99425677],[4.53727876,0.03991147,97.9939478],[4.53727836,0.03990972,97.99364158],[4.53727795,0.03990797,97.99333819],[4.53727755,0.03990621,97.99303761],[4.53727714,0.03990446,97.99273976],[4.53727673,0.03990271,97.9924446],[4.53727633,0.03990096,97.99215206],[4.53727593,0.0398992,97.99186209],[4.53727552,0.03989745,97.99157462],[4.53727512,0.0398957,97.99128959],[4.53727471,0.03989394,97.99100694],[4.53727431,0.03989219,97.99072662],[4.53727391,0.03989044,97.99044856],[4.53727351,0.03988869,97.99017271],[4.5372731,0.03988693,97.98989899],[4.5372727,0.03988518,97.98962736],[4.5372723,0.03988343,97.98935776],[4.5372719,0.03988167,97.98909013],[4.53727149,0.03987992,97.98882444],[4.53727109,0.03987817,97.98856067],[4.53727069,0.03987641,97.98829878],[4.53727029,0.03987466,97.98803875],[4.53726989,0.03987291,97.98778054],[4.53726949,0.03987115,97.98752411],[4.53726909,0.0398694,97.98726945],[4.53726868,0.03986765,97.98701651],[4.53726828,0.03986589,97.98676527],[4.53726788,0.03986414,97.9865157],[4.53726748,0.03986239,97.98626775],[4.53726708,0.03986063,97.98602141],[4.53726668,0.03985888,97.98577664],[4.53726628,0.03985713,97.9855334],[4.53726588,0.03985537,97.98529167],[4.53726548,0.03985362,97.98505142],[4.53726508,0.03985187,97.9848126],[4.53726467,0.03985011,97.9845752],[4.53726427,0.03984836,97.98433917],[4.53726387,0.03984661,97.98410449],[4.53726347,0.03984485,97.98387112],[4.53726307,0.0398431,97.98363904],[4.53726267,0.03984135,97.9834082],[4.53726227,0.03983959,97.98317859],[4.53726187,0.03983784,97.98295019],[4.53726146,0.03983609,97.98272312],[4.53726106,0.03983433,97.98249754],[4.53726066,0.03983258,97.98227359],[4.53726026,0.03983083,97.9820514],[4.53725986,0.03982908,97.98183104],[4.53725946,0.03982732,97.98161255],[4.53725906,0.03982557,97.98139598],[4.53725866,0.03982382,97.98118138],[4.53725826,0.03982206,97.98096879],[4.53725785,0.03982031,97.98075827],[4.53725745,0.03981856,97.98054985],[4.53725705,0.0398168,97.98034358],[4.53725665,0.03981505,97.98013952],[4.53725626,0.0398133,97.9799377],[4.53725586,0.03981154,97.97973818],[4.53725546,0.03980979,97.979541],[4.53725506,0.03980804,97.97934621],[4.53725466,0.03980628,97.97915384],[4.53725426,0.03980453,97.97896394],[4.53725386,0.03980278,97.97877652],[4.53725347,0.03980102,97.97859162],[4.53725307,0.03979927,97.97840922],[4.53725267,0.03979752,97.97822923],[4.53725227,0.03979576,97.97805159],[4.53725188,0.03979401,97.97787622],[4.53725148,0.03979226,97.97770304],[4.53725109,0.0397905,97.97753197],[4.53725069,0.03978875,97.97736295],[4.53725029,0.03978699,97.97719588],[4.5372499,0.03978524,97.9770307],[4.5372495,0.03978349,97.97686733],[4.53724911,0.03978173,97.9767057],[4.53724871,0.03977998,97.97654571],[4.53724832,0.03977822,97.97638731],[4.53724792,0.03977647,97.97623041],[4.53724753,0.03977472,97.97607494],[4.53724713,0.03977296,97.97592074],[4.53724674,0.03977121,97.9757674],[4.53724634,0.03976945,97.97561442],[4.53724594,0.0397677,97.97546133],[4.53724555,0.03976595,97.9753077],[4.53724515,0.03976419,97.97515308],[4.53724475,0.03976244,97.97499706],[4.53724435,0.03976069,97.97483919],[4.53724395,0.03975894,97.97467913],[4.53724355,0.0397572,97.97451702],[4.53724315,0.03975545,97.97435307],[4.53724275,0.0397537,97.97418749],[4.53724234,0.03975194,97.97402051],[4.53724194,0.03975019,97.97385235],[4.53724153,0.03974844,97.97368323],[4.53724112,0.03974669,97.97351338],[4.53724071,0.03974494,97.973343],[4.53724031,0.03974319,97.97317233],[4.5372399,0.03974144,97.97300159],[4.53723949,0.03973969,97.97283099],[4.53723908,0.03973794,97.97266075],[4.53723867,0.03973619,97.97249111],[4.53723826,0.03973444,97.97232227],[4.53723785,0.03973269,97.97215446],[4.53723744,0.03973094,97.97198791],[4.53723703,0.03972918,97.97182283],[4.53723662,0.03972743,97.97165944],[4.53723621,0.03972568,97.97149796],[4.5372358,0.03972393,97.97133863],[4.53723539,0.03972218,97.97118167],[4.53723498,0.03972043,97.97102732],[4.53723457,0.03971868,97.97087563],[4.53723417,0.03971693,97.97072627],[4.53723376,0.03971518,97.97057901],[4.53723335,0.03971343,97.97043362],[4.53723294,0.03971168,97.9702899],[4.53723253,0.03970992,97.97014762],[4.53723213,0.03970817,97.97000658],[4.53723172,0.03970642,97.96986655],[4.53723131,0.03970467,97.96972733],[4.5372309,0.03970292,97.96958869],[4.53723049,0.03970117,97.96945043],[4.53723008,0.03969942,97.96931232],[4.53722967,0.03969767,97.96917442],[4.53722926,0.03969591,97.96903699],[4.53722885,0.03969416,97.9689003],[4.53722844,0.03969241,97.96876465],[4.53722803,0.03969066,97.9686303],[4.53722762,0.03968891,97.96849754],[4.53722721,0.03968716,97.96836665],[4.5372268,0.03968541,97.96823791],[4.53722639,0.03968366,97.96811159],[4.53722599,0.03968191,97.96798799],[4.53722558,0.03968015,97.96786738],[4.53722517,0.0396784,97.96775003],[4.53722476,0.03967665,97.96763623],[4.53722435,0.0396749,97.96752627],[4.53722395,0.03967315,97.96742041],[4.53722354,0.03967139,97.96731894],[4.53722314,0.03966964,97.96722211],[4.53722274,0.03966789,97.96712942],[4.53722234,0.03966613,97.96703965],[4.53722193,0.03966438,97.96695173],[4.53722153,0.03966263,97.96686538],[4.53722113,0.03966088,97.96678049],[4.53722073,0.03965912,97.96669694],[4.53722033,0.03965737,97.96661461],[4.53721992,0.03965562,97.96653337],[4.53721952,0.03965386,97.96645311],[4.53721912,0.03965211,97.9663737],[4.53721872,0.03965036,97.96629505],[4.53721831,0.0396486,97.96621718],[4.53721791,0.03964685,97.96614012],[4.53721751,0.0396451,97.96606391],[4.5372171,0.03964334,97.96598858],[4.5372167,0.03964159,97.96591417],[4.5372163,0.03963984,97.9658407],[4.53721589,0.03963808,97.96576822],[4.53721549,0.03963633,97.96569676],[4.53721509,0.03963458,97.96562636],[4.53721468,0.03963282,97.96555707],[4.53721428,0.03963107,97.96548896],[4.53721388,0.03962932,97.96542208],[4.53721347,0.03962756,97.96535649],[4.53721307,0.03962581,97.96529227],[4.53721266,0.03962406,97.96522945],[4.53721226,0.0396223,97.96516811],[4.53721186,0.03962055,97.96510831],[4.53721145,0.0396188,97.9650501],[4.53721105,0.03961704,97.96499354],[4.53721065,0.03961529,97.96493871],[4.53721024,0.03961354,97.96488564],[4.53720984,0.03961178,97.96483439],[4.53720944,0.03961003,97.96478463],[4.53720903,0.03960827,97.96473626],[4.53720863,0.03960652,97.96468936],[4.53720823,0.03960477,97.964644],[4.53720783,0.03960301,97.96460026],[4.53720742,0.03960126,97.96455822],[4.53720702,0.0395995,97.96451794],[4.53720662,0.03959775,97.96447951],[4.53720622,0.039596,97.964443],[4.53720581,0.03959424,97.96440848],[4.53720541,0.03959249,97.96437603],[4.53720501,0.03959073,97.96434573],[4.53720461,0.03958898,97.96431764],[4.53720421,0.03958722,97.96429185],[4.53720381,0.03958547,97.96426842],[4.53720341,0.03958372,97.96424744],[4.53720301,0.03958196,97.96422898],[4.53720261,0.03958021,97.96421312],[4.53720221,0.03957845,97.96419992],[4.53720181,0.03957669,97.96418946],[4.53720142,0.03957494,97.96418182],[4.53720102,0.03957318,97.96417708],[4.53720062,0.03957143,97.9641753],[4.53720023,0.03956967,97.96417657],[4.53719983,0.03956792,97.96418095],[4.53719944,0.03956616,97.96418846],[4.53719904,0.0395644,97.96419778],[4.53719865,0.03956265,97.96420624],[4.53719825,0.03956089,97.96421093],[4.53719785,0.03955914,97.96420821],[4.53719745,0.03955738,97.96419428],[4.53719704,0.03955563,97.96416603],[4.53719662,0.03955388,97.96412328],[4.53719621,0.03955213,97.96406678],[4.53719578,0.03955038,97.96399816],[4.53719536,0.03954863,97.96391927],[4.53719493,0.03954688,97.96383198],[4.5371945,0.03954513,97.96373812],[4.53719407,0.03954338,97.96363956],[4.53719363,0.03954164,97.96353815],[4.5371932,0.03953989,97.96343575],[4.53719276,0.03953814,97.9633342],[4.53719233,0.0395364,97.96323535],[4.53719189,0.03953465,97.96314078],[4.53719146,0.0395329,97.96305089],[4.53719103,0.03953115,97.96296582],[4.5371906,0.0395294,97.9628857],[4.53719017,0.03952766,97.96281068],[4.53718974,0.03952591,97.96274089],[4.53718932,0.03952416,97.96267645],[4.53718889,0.03952241,97.96261736],[4.53718847,0.03952066,97.96256295],[4.53718805,0.03951891,97.9625124],[4.53718762,0.03951716,97.96246492],[4.5371872,0.03951541,97.96241966],[4.53718678,0.03951366,97.96237584],[4.53718636,0.03951191,97.96233262],[4.53718593,0.03951016,97.96228933],[4.53718551,0.03950841,97.96224581],[4.53718509,0.03950666,97.96220202],[4.53718466,0.03950491,97.96215794],[4.53718424,0.03950316,97.96211354],[4.53718382,0.03950141,97.96206889],[4.53718339,0.03949966,97.96202419],[4.53718296,0.03949791,97.96197963],[4.53718254,0.03949616,97.96193537],[4.53718211,0.03949441,97.96189157],[4.53718169,0.03949266,97.96184836],[4.53718126,0.03949091,97.96180589],[4.53718083,0.03948916,97.96176428],[4.53718041,0.03948741,97.96172368],[4.53717998,0.03948566,97.96168422],[4.53717955,0.03948391,97.96164604],[4.53717913,0.03948216,97.96160928],[4.5371787,0.03948041,97.96157407],[4.53717828,0.03947866,97.96154054],[4.53717785,0.03947691,97.96150885],[4.53717743,0.03947516,97.96147912],[4.537177,0.03947341,97.96145148],[4.53717658,0.03947166,97.96142609],[4.53717615,0.03946991,97.96140307],[4.53717573,0.03946816,97.96138255],[4.5371753,0.03946641,97.96136469],[4.53717488,0.03946466,97.9613496],[4.53717446,0.03946291,97.96133737],[4.53717404,0.03946116,97.96132776],[4.53717361,0.0394594,97.96132052],[4.53717319,0.03945765,97.96131534],[4.53717277,0.0394559,97.96131197],[4.53717235,0.03945415,97.96131011],[4.53717193,0.0394524,97.96130948],[4.53717151,0.03945065,97.96130982],[4.53717109,0.0394489,97.96131083],[4.53717067,0.03944714,97.96131224],[4.53717025,0.03944539,97.96131378],[4.53716982,0.03944364,97.96131515],[4.5371694,0.03944189,97.9613161],[4.53716898,0.03944014,97.96131652],[4.53716856,0.03943839,97.96131648],[4.53716813,0.03943664,97.96131607],[4.53716771,0.03943489,97.96131538],[4.53716728,0.03943314,97.96131451],[4.53716686,0.03943139,97.96131355],[4.53716643,0.03942963,97.9613126],[4.53716601,0.03942788,97.96131175],[4.53716558,0.03942613,97.96131108],[4.53716516,0.03942438,97.9613107],[4.53716473,0.03942263,97.9613107],[4.5371643,0.03942088,97.96131117],[4.53716388,0.03941913,97.96131228],[4.53716345,0.03941738,97.96131427],[4.53716302,0.03941563,97.96131738],[4.5371626,0.03941388,97.96132184],[4.53716217,0.03941213,97.9613279],[4.53716174,0.03941038,97.9613358],[4.53716132,0.03940863,97.96134577],[4.53716089,0.03940688,97.96135806],[4.53716047,0.03940513,97.96137289],[4.53716004,0.03940338,97.96139035],[4.53715962,0.03940162,97.96141036],[4.5371592,0.03939987,97.96143286],[4.53715877,0.03939812,97.96145776],[4.53715835,0.03939637,97.96148498],[4.53715793,0.03939462,97.96151446],[4.53715751,0.03939287,97.96154613],[4.53715709,0.03939111,97.96157995],[4.53715667,0.03938936,97.96161588],[4.53715625,0.03938761,97.96165388],[4.53715582,0.03938586,97.96169389],[4.5371554,0.03938411,97.96173589],[4.53715499,0.03938235,97.96177982],[4.53715457,0.0393806,97.96182564],[4.53715415,0.03937885,97.96187332],[4.53715373,0.0393771,97.9619228],[4.53715331,0.03937534,97.96197402],[4.53715289,0.03937359,97.96202683],[4.53715247,0.03937184,97.96208104],[4.53715205,0.03937008,97.96213648],[4.53715164,0.03936833,97.96219296],[4.53715122,0.03936658,97.96225031],[4.5371508,0.03936483,97.96230834],[4.53715038,0.03936307,97.96236688],[4.53714996,0.03936132,97.96242575],[4.53714954,0.03935957,97.96248476],[4.53714912,0.03935781,97.96254375],[4.5371487,0.03935606,97.96260264],[4.53714828,0.03935431,97.96266147],[4.53714786,0.03935256,97.96272029],[4.53714744,0.0393508,97.96277913],[4.53714702,0.03934905,97.96283803],[4.5371466,0.0393473,97.96289703],[4.53714618,0.03934555,97.96295619],[4.53714576,0.03934379,97.96301553],[4.53714534,0.03934204,97.96307509],[4.53714491,0.03934029,97.96313493],[4.53714449,0.03933854,97.96319508],[4.53714407,0.03933678,97.96325558],[4.53714365,0.03933503,97.96331646],[4.53714322,0.03933328,97.96337778],[4.5371428,0.03933153,97.96343956],[4.53714238,0.03932978,97.96350182],[4.53714195,0.03932802,97.96356458],[4.53714153,0.03932627,97.96362785],[4.53714111,0.03932452,97.96369163],[4.53714068,0.03932277,97.96375579],[4.53714026,0.03932101,97.96382016],[4.53713984,0.03931926,97.96388457],[4.53713941,0.03931751,97.96394887],[4.53713899,0.03931576,97.96401289],[4.53713856,0.03931401,97.96407647],[4.53713814,0.03931226,97.96413945],[4.53713771,0.0393105,97.96420169],[4.53713728,0.03930875,97.96426318],[4.53713686,0.039307,97.96432394],[4.53713643,0.03930525,97.96438397],[4.537136,0.0393035,97.96444329],[4.53713557,0.03930175,97.96450191],[4.53713514,0.0393,97.96455986],[4.53713471,0.03929825,97.96461713],[4.53713428,0.03929649,97.9646737],[4.53713385,0.03929474,97.96472936],[4.53713342,0.03929299,97.9647839],[4.53713299,0.03929124,97.96483721],[4.53713255,0.03928949,97.96488933],[4.53713212,0.03928774,97.96494033],[4.53713169,0.03928599,97.96499024],[4.53713125,0.03928424,97.96503912],[4.53713082,0.03928249,97.96508703],[4.53713038,0.03928074,97.965134],[4.53712995,0.03927899,97.96518008],[4.53712951,0.03927725,97.96522534],[4.53712907,0.0392755,97.96526982],[4.53712863,0.03927375,97.96531357],[4.53712819,0.039272,97.96535663],[4.53712776,0.03927025,97.96539906],[4.53712732,0.0392685,97.96544092],[4.53712688,0.03926675,97.96548224],[4.53712644,0.039265,97.96552307],[4.537126,0.03926325,97.96556348],[4.53712555,0.03926151,97.96560351],[4.53712511,0.03925976,97.9656432],[4.53712467,0.03925801,97.96568261],[4.53712423,0.03925626,97.96572178],[4.53712379,0.03925451,97.96576077],[4.53712334,0.03925276,97.96579963],[4.5371229,0.03925102,97.96583841],[4.53712246,0.03924927,97.96587715],[4.53712201,0.03924752,97.96591591],[4.53712157,0.03924577,97.9659549],[4.53712113,0.03924402,97.96599446],[4.53712068,0.03924228,97.96603479],[4.53712024,0.03924053,97.96607593],[4.53711979,0.03923878,97.96611781],[4.53711935,0.03923703,97.96616026],[4.53711891,0.03923529,97.96620313],[4.53711846,0.03923354,97.96624624],[4.53711802,0.03923179,97.96628943],[4.53711757,0.03923004,97.96633253],[4.53711713,0.03922829,97.96637538],[4.53711668,0.03922655,97.96641781],[4.53711624,0.0392248,97.96645966],[4.53711579,0.03922305,97.96650076],[4.53711534,0.0392213,97.96654095],[4.53711489,0.03921956,97.96658005],[4.53711445,0.03921781,97.96661792],[4.537114,0.03921606,97.96665437],[4.53711355,0.03921432,97.96668925],[4.5371131,0.03921257,97.96672238],[4.53711264,0.03921082,97.96675362],[4.53711219,0.03920908,97.96678279],[4.53711174,0.03920733,97.96680972],[4.53711128,0.03920558,97.96683426],[4.53711083,0.03920384,97.96685623],[4.53711037,0.03920209,97.96687549],[4.53710991,0.03920035,97.96689185],[4.53710946,0.0391986,97.96690515],[4.537109,0.03919686,97.96691524],[4.53710853,0.03919512,97.96692195],[4.53710807,0.03919337,97.96692507],[4.53710761,0.03919163,97.96692416],[4.53710714,0.03918989,97.96691883],[4.53710667,0.03918814,97.96690889],[4.5371062,0.0391864,97.96689422],[4.53710573,0.03918466,97.9668747],[4.53710526,0.03918292,97.96685023],[4.53710478,0.03918118,97.96682068],[4.5371043,0.03917944,97.96678596],[4.53710383,0.0391777,97.96674621],[4.53710334,0.03917596,97.96670184],[4.53710286,0.03917422,97.96665326],[4.53710238,0.03917248,97.96660089],[4.53710189,0.03917074,97.96654514],[4.53710141,0.039169,97.96648643],[4.53710092,0.03916726,97.96642516],[4.53710043,0.03916553,97.96636175],[4.53709994,0.03916379,97.96629661],[4.53709945,0.03916206,97.96623016],[4.53709896,0.03916032,97.96616281],[4.53709847,0.03915858,97.96609497],[4.53709798,0.03915685,97.96602704],[4.53709749,0.03915511,97.96595945],[4.537097,0.03915338,97.9658926],[4.53709651,0.03915164,97.96582691],[4.53709602,0.03914991,97.96576277],[4.53709553,0.03914817,97.96570039],[4.53709504,0.03914644,97.96563977],[4.53709455,0.0391447,97.96558091],[4.53709406,0.03914296,97.96552378],[4.53709357,0.03914123,97.96546836],[4.53709308,0.03913949,97.96541465],[4.53709259,0.03913776,97.96536261],[4.5370921,0.03913602,97.96531224],[4.53709162,0.03913428,97.96526351],[4.53709113,0.03913255,97.96521641],[4.53709064,0.03913081,97.96517091],[4.53709015,0.03912908,97.96512701],[4.53708967,0.03912734,97.96508469],[4.53708918,0.0391256,97.96504391],[4.53708869,0.03912387,97.96500468],[4.53708821,0.03912213,97.96496697],[4.53708772,0.03912039,97.96493076],[4.53708723,0.03911866,97.96489603],[4.53708675,0.03911692,97.96486278],[4.53708626,0.03911519,97.96483097],[4.53708578,0.03911345,97.96480059],[4.53708529,0.03911171,97.96477163],[4.53708481,0.03910997,97.96474406],[4.53708432,0.03910824,97.96471788],[4.53708384,0.0391065,97.96469305],[4.53708335,0.03910476,97.96466957],[4.53708287,0.03910303,97.96464741],[4.53708238,0.03910129,97.96462656],[4.5370819,0.03909955,97.964607],[4.53708141,0.03909782,97.96458872],[4.53708093,0.03909608,97.96457168],[4.53708045,0.03909434,97.96455589],[4.53707996,0.0390926,97.96454132],[4.53707988,0.03909229,97.9645388]],"type":"LineString"},"type":"feature","properties":{"successorId":-6,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1003400","id":-5,"type":"none","predecessorId":-5}},{"geometry":{"coordinates":[[4.53739161,0.04020707,98.06502578],[4.53739122,0.04020531,98.06451693],[4.53739082,0.04020355,98.06400377],[4.53739043,0.04020179,98.06348662],[4.53739004,0.04020003,98.06296585],[4.53738964,0.04019827,98.06244178],[4.53738924,0.04019652,98.06191475],[4.53738884,0.04019476,98.06138512],[4.53738844,0.040193,98.06085322],[4.53738804,0.04019125,98.0603194],[4.53738764,0.04018949,98.059784],[4.53738723,0.04018773,98.05924736],[4.53738683,0.04018598,98.05870984],[4.53738642,0.04018422,98.05817177],[4.53738602,0.04018246,98.0576335],[4.53738561,0.04018071,98.05709538],[4.53738521,0.04017895,98.05655776],[4.5373848,0.0401772,98.05602096],[4.5373844,0.04017544,98.05548498],[4.53738399,0.04017369,98.05494946],[4.53738358,0.04017193,98.05441401],[4.53738317,0.04017017,98.05387827],[4.53738277,0.04016842,98.05334198],[4.53738236,0.04016666,98.0528053],[4.53738195,0.04016491,98.05226851],[4.53738154,0.04016315,98.0517319],[4.53738113,0.0401614,98.05119575],[4.53738072,0.04015964,98.05066034],[4.53738031,0.04015789,98.05012596],[4.5373799,0.04015613,98.04959289],[4.53737949,0.04015438,98.04906141],[4.53737908,0.04015263,98.04853181],[4.53737867,0.04015087,98.04800437],[4.53737826,0.04014912,98.04747938],[4.53737785,0.04014736,98.04695713],[4.53737745,0.04014561,98.04643789],[4.53737704,0.04014385,98.04592196],[4.53737663,0.04014209,98.04540962],[4.53737623,0.04014034,98.04490116],[4.53737582,0.04013858,98.04439673],[4.53737542,0.04013683,98.04389639],[4.53737501,0.04013507,98.04340015],[4.53737461,0.04013331,98.04290808],[4.53737421,0.04013156,98.04242004],[4.53737381,0.0401298,98.04193528],[4.53737341,0.04012804,98.04145305],[4.53737301,0.04012629,98.04097325],[4.53737261,0.04012453,98.04049592],[4.53737221,0.04012277,98.04002114],[4.53737181,0.04012102,98.03954894],[4.53737141,0.04011926,98.0390794],[4.53737101,0.0401175,98.03861256],[4.53737062,0.04011575,98.03814847],[4.53737022,0.04011399,98.0376872],[4.53736982,0.04011223,98.0372288],[4.53736943,0.04011047,98.03677333],[4.53736903,0.04010872,98.03632084],[4.53736863,0.04010696,98.03587139],[4.53736824,0.0401052,98.03542503],[4.53736785,0.04010344,98.03498182],[4.53736745,0.04010168,98.03454182],[4.53736706,0.04009993,98.03410508],[4.53736667,0.04009817,98.03367166],[4.53736627,0.04009641,98.03324162],[4.53736588,0.04009465,98.03281501],[4.53736549,0.04009289,98.03239188],[4.5373651,0.04009113,98.0319723],[4.53736471,0.04008937,98.03155632],[4.53736432,0.04008761,98.031144],[4.53736394,0.04008585,98.03073539],[4.53736355,0.04008409,98.03033055],[4.53736316,0.04008233,98.02992938],[4.53736278,0.04008057,98.02953115],[4.53736239,0.04007881,98.02913497],[4.53736201,0.04007706,98.02873995],[4.53736162,0.0400753,98.02834529],[4.53736123,0.04007354,98.02795077],[4.53736085,0.04007178,98.02755634],[4.53736046,0.04007002,98.02716192],[4.53736007,0.04006826,98.02676748],[4.53735968,0.0400665,98.02637294],[4.53735929,0.04006474,98.02597824],[4.5373589,0.04006298,98.02558334],[4.53735851,0.04006122,98.02518816],[4.53735812,0.04005946,98.02479264],[4.53735773,0.0400577,98.02439674],[4.53735734,0.04005595,98.02400039],[4.53735695,0.04005419,98.02360352],[4.53735655,0.04005243,98.02320608],[4.53735616,0.04005067,98.02280802],[4.53735577,0.04004892,98.02240926],[4.53735537,0.04004716,98.02200975],[4.53735497,0.0400454,98.02160944],[4.53735458,0.04004364,98.02120825],[4.53735418,0.04004189,98.02080613],[4.53735378,0.04004013,98.0204031],[4.53735338,0.04003837,98.01999946],[4.53735298,0.04003662,98.01959561],[4.53735258,0.04003486,98.01919195],[4.53735218,0.0400331,98.01878889],[4.53735178,0.04003135,98.01838681],[4.53735138,0.04002959,98.01798614],[4.53735098,0.04002784,98.01758727],[4.53735058,0.04002608,98.0171906],[4.53735018,0.04002432,98.01679655],[4.53734978,0.04002257,98.01640551],[4.53734938,0.04002081,98.01601787],[4.53734898,0.04001905,98.01563342],[4.53734858,0.0400173,98.01525149],[4.53734819,0.04001554,98.01487195],[4.53734779,0.04001378,98.01449483],[4.53734739,0.04001203,98.01412013],[4.53734699,0.04001027,98.01374786],[4.5373466,0.04000851,98.01337803],[4.5373462,0.04000676,98.01301066],[4.53734581,0.040005,98.01264574],[4.53734541,0.04000324,98.01228328],[4.53734501,0.04000149,98.01192331],[4.53734462,0.03999973,98.01156582],[4.53734422,0.03999797,98.01121082],[4.53734383,0.03999621,98.01085832],[4.53734343,0.03999446,98.01050834],[4.53734304,0.0399927,98.01016087],[4.53734265,0.03999094,98.00981594],[4.53734225,0.03998918,98.00947354],[4.53734186,0.03998743,98.00913368],[4.53734147,0.03998567,98.00879651],[4.53734107,0.03998391,98.00846265],[4.53734068,0.03998215,98.00813273],[4.53734029,0.03998039,98.00780685],[4.5373399,0.03997864,98.00748501],[4.53733951,0.03997688,98.00716718],[4.53733912,0.03997512,98.00685334],[4.53733874,0.03997336,98.00654348],[4.53733835,0.0399716,98.00623757],[4.53733796,0.03996984,98.00593559],[4.53733758,0.03996808,98.00563754],[4.53733719,0.03996632,98.00534327],[4.53733681,0.03996456,98.00505222],[4.53733643,0.0399628,98.00476372],[4.53733604,0.03996104,98.00447712],[4.53733566,0.03995928,98.0041918],[4.53733527,0.03995753,98.00390713],[4.53733489,0.03995577,98.00362249],[4.5373345,0.03995401,98.00333723],[4.53733412,0.03995225,98.00305074],[4.53733373,0.03995049,98.00276238],[4.53733334,0.03994873,98.00247152],[4.53733295,0.03994697,98.00217753],[4.53733256,0.03994521,98.00187992],[4.53733217,0.03994346,98.0015788],[4.53733177,0.0399417,98.00127441],[4.53733138,0.03993994,98.00096699],[4.53733098,0.03993819,98.00065679],[4.53733058,0.03993643,98.00034405],[4.53733018,0.03993468,98.00002903],[4.53732978,0.03993292,97.99971197],[4.53732938,0.03993116,97.99939312],[4.53732897,0.03992941,97.99907272],[4.53732857,0.03992765,97.99875102],[4.53732816,0.0399259,97.99842827],[4.53732776,0.03992415,97.99810471],[4.53732735,0.03992239,97.9977806],[4.53732695,0.03992064,97.99745618],[4.53732654,0.03991888,97.99713171],[4.53732613,0.03991713,97.99680742],[4.53732572,0.03991538,97.99648359],[4.53732531,0.03991362,97.99616046],[4.53732491,0.03991187,97.99583832],[4.5373245,0.03991012,97.99551765],[4.53732409,0.03990836,97.99519892],[4.53732368,0.03990661,97.99488244],[4.53732327,0.03990485,97.99456835],[4.53732287,0.0399031,97.99425677],[4.53732246,0.03990135,97.9939478],[4.53732205,0.03989959,97.99364158],[4.53732164,0.03989784,97.99333819],[4.53732124,0.03989608,97.99303761],[4.53732083,0.03989433,97.99273976],[4.53732043,0.03989258,97.9924446],[4.53732002,0.03989082,97.99215206],[4.53731962,0.03988907,97.99186209],[4.53731921,0.03988731,97.99157462],[4.53731881,0.03988556,97.99128959],[4.53731841,0.0398838,97.99100694],[4.537318,0.03988205,97.99072662],[4.5373176,0.03988029,97.99044856],[4.5373172,0.03987854,97.99017271],[4.53731679,0.03987678,97.98989899],[4.53731639,0.03987503,97.98962736],[4.53731599,0.03987328,97.98935776],[4.53731559,0.03987152,97.98909013],[4.53731518,0.03986977,97.98882444],[4.53731478,0.03986801,97.98856067],[4.53731438,0.03986626,97.98829878],[4.53731398,0.0398645,97.98803875],[4.53731358,0.03986275,97.98778054],[4.53731317,0.03986099,97.98752411],[4.53731277,0.03985924,97.98726945],[4.53731237,0.03985748,97.98701651],[4.53731197,0.03985573,97.98676527],[4.53731157,0.03985397,97.9865157],[4.53731117,0.03985222,97.98626775],[4.53731077,0.03985046,97.98602141],[4.53731036,0.03984871,97.98577664],[4.53730996,0.03984695,97.9855334],[4.53730956,0.0398452,97.98529167],[4.53730916,0.03984344,97.98505142],[4.53730876,0.03984169,97.9848126],[4.53730836,0.03983993,97.9845752],[4.53730796,0.03983818,97.98433917],[4.53730756,0.03983642,97.98410449],[4.53730715,0.03983467,97.98387112],[4.53730675,0.03983291,97.98363904],[4.53730635,0.03983116,97.9834082],[4.53730595,0.0398294,97.98317859],[4.53730555,0.03982765,97.98295019],[4.53730515,0.03982589,97.98272312],[4.53730474,0.03982414,97.98249754],[4.53730434,0.03982238,97.98227359],[4.53730394,0.03982063,97.9820514],[4.53730354,0.03981887,97.98183104],[4.53730314,0.03981712,97.98161255],[4.53730274,0.03981536,97.98139598],[4.53730233,0.03981361,97.98118138],[4.53730193,0.03981186,97.98096879],[4.53730153,0.0398101,97.98075827],[4.53730113,0.03980835,97.98054985],[4.53730073,0.03980659,97.98034358],[4.53730033,0.03980484,97.98013952],[4.53729993,0.03980308,97.9799377],[4.53729953,0.03980133,97.97973818],[4.53729913,0.03979957,97.979541],[4.53729873,0.03979782,97.97934621],[4.53729833,0.03979606,97.97915384],[4.53729794,0.0397943,97.97896394],[4.53729754,0.03979255,97.97877652],[4.53729714,0.03979079,97.97859162],[4.53729674,0.03978904,97.97840922],[4.53729634,0.03978728,97.97822923],[4.53729595,0.03978553,97.97805159],[4.53729555,0.03978377,97.97787622],[4.53729515,0.03978202,97.97770304],[4.53729476,0.03978026,97.97753197],[4.53729436,0.0397785,97.97736295],[4.53729397,0.03977675,97.97719588],[4.53729357,0.03977499,97.9770307],[4.53729317,0.03977324,97.97686733],[4.53729278,0.03977148,97.9767057],[4.53729238,0.03976972,97.97654571],[4.53729199,0.03976797,97.97638731],[4.53729159,0.03976621,97.97623041],[4.5372912,0.03976446,97.97607494],[4.5372908,0.0397627,97.97592074],[4.5372904,0.03976095,97.9757674],[4.53729001,0.03975919,97.97561442],[4.53728961,0.03975743,97.97546133],[4.53728921,0.03975568,97.9753077],[4.53728882,0.03975392,97.97515308],[4.53728842,0.03975217,97.97499706],[4.53728802,0.03975041,97.97483919],[4.53728761,0.03974866,97.97467913],[4.53728722,0.03974692,97.97451702],[4.53728681,0.03974517,97.97435307],[4.53728641,0.03974341,97.97418749],[4.537286,0.03974166,97.97402051],[4.5372856,0.03973991,97.97385235],[4.53728519,0.03973815,97.97368323],[4.53728478,0.0397364,97.97351338],[4.53728438,0.03973465,97.973343],[4.53728397,0.0397329,97.97317233],[4.53728356,0.03973114,97.97300159],[4.53728315,0.03972939,97.97283099],[4.53728274,0.03972764,97.97266075],[4.53728233,0.03972589,97.97249111],[4.53728192,0.03972413,97.97232227],[4.53728151,0.03972238,97.97215446],[4.5372811,0.03972063,97.97198791],[4.53728069,0.03971888,97.97182283],[4.53728028,0.03971712,97.97165944],[4.53727987,0.03971537,97.97149796],[4.53727946,0.03971362,97.97133863],[4.53727905,0.03971187,97.97118167],[4.53727864,0.03971011,97.97102732],[4.53727823,0.03970836,97.97087563],[4.53727782,0.03970661,97.97072627],[4.53727741,0.03970486,97.97057901],[4.537277,0.0397031,97.97043362],[4.5372766,0.03970135,97.9702899],[4.53727619,0.0396996,97.97014762],[4.53727578,0.03969784,97.97000658],[4.53727537,0.03969609,97.96986655],[4.53727496,0.03969434,97.96972733],[4.53727455,0.03969258,97.96958869],[4.53727414,0.03969083,97.96945043],[4.53727373,0.03968908,97.96931232],[4.53727332,0.03968733,97.96917442],[4.53727291,0.03968557,97.96903699],[4.5372725,0.03968382,97.9689003],[4.53727209,0.03968207,97.96876465],[4.53727168,0.03968032,97.9686303],[4.53727127,0.03967856,97.96849754],[4.53727086,0.03967681,97.96836665],[4.53727045,0.03967506,97.96823791],[4.53727004,0.0396733,97.96811159],[4.53726963,0.03967155,97.96798799],[4.53726922,0.0396698,97.96786738],[4.53726882,0.03966804,97.96775003],[4.53726841,0.03966629,97.96763623],[4.537268,0.03966454,97.96752627],[4.5372676,0.03966278,97.96742041],[4.53726719,0.03966103,97.96731894],[4.53726679,0.03965928,97.96722211],[4.53726638,0.03965752,97.96712942],[4.53726598,0.03965577,97.96703965],[4.53726558,0.03965401,97.96695173],[4.53726518,0.03965226,97.96686538],[4.53726477,0.0396505,97.96678049],[4.53726437,0.03964875,97.96669694],[4.53726397,0.03964699,97.96661461],[4.53726357,0.03964524,97.96653337],[4.53726316,0.03964348,97.96645311],[4.53726276,0.03964173,97.9663737],[4.53726236,0.03963997,97.96629505],[4.53726196,0.03963822,97.96621718],[4.53726155,0.03963646,97.96614012],[4.53726115,0.03963471,97.96606391],[4.53726075,0.03963295,97.96598858],[4.53726034,0.0396312,97.96591417],[4.53725994,0.03962944,97.9658407],[4.53725953,0.03962769,97.96576822],[4.53725913,0.03962593,97.96569676],[4.53725873,0.03962418,97.96562636],[4.53725832,0.03962242,97.96555707],[4.53725792,0.03962067,97.96548896],[4.53725751,0.03961892,97.96542208],[4.53725711,0.03961716,97.96535649],[4.53725671,0.03961541,97.96529227],[4.5372563,0.03961365,97.96522945],[4.5372559,0.0396119,97.96516811],[4.53725549,0.03961014,97.96510831],[4.53725509,0.03960839,97.9650501],[4.53725469,0.03960663,97.96499354],[4.53725428,0.03960488,97.96493871],[4.53725388,0.03960312,97.96488564],[4.53725348,0.03960137,97.96483439],[4.53725307,0.03959961,97.96478463],[4.53725267,0.03959786,97.96473626],[4.53725227,0.0395961,97.96468936],[4.53725186,0.03959435,97.964644],[4.53725146,0.03959259,97.96460026],[4.53725106,0.03959084,97.96455822],[4.53725065,0.03958908,97.96451794],[4.53725025,0.03958733,97.96447951],[4.53724985,0.03958557,97.964443],[4.53724945,0.03958381,97.96440848],[4.53724905,0.03958206,97.96437603],[4.53724864,0.0395803,97.96434573],[4.53724824,0.03957855,97.96431764],[4.53724784,0.03957679,97.96429185],[4.53724744,0.03957504,97.96426842],[4.53724704,0.03957328,97.96424744],[4.53724664,0.03957152,97.96422898],[4.53724624,0.03956977,97.96421312],[4.53724584,0.03956801,97.96419992],[4.53724544,0.03956625,97.96418946],[4.53724505,0.0395645,97.96418182],[4.53724465,0.03956274,97.96417708],[4.53724425,0.03956098,97.9641753],[4.53724386,0.03955923,97.96417657],[4.53724346,0.03955747,97.96418095],[4.53724307,0.03955571,97.96418846],[4.53724267,0.03955396,97.96419778],[4.53724227,0.0395522,97.96420624],[4.53724188,0.03955044,97.96421093],[4.53724148,0.03954868,97.96420821],[4.53724107,0.03954693,97.96419428],[4.53724067,0.03954517,97.96416603],[4.53724025,0.03954342,97.96412328],[4.53723983,0.03954167,97.96406678],[4.53723941,0.03953992,97.96399816],[4.53723899,0.03953817,97.96391927],[4.53723856,0.03953642,97.96383198],[4.53723813,0.03953467,97.96373812],[4.53723769,0.03953292,97.96363956],[4.53723726,0.03953117,97.96353815],[4.53723682,0.03952943,97.96343575],[4.53723639,0.03952768,97.9633342],[4.53723595,0.03952593,97.96323535],[4.53723552,0.03952418,97.96314078],[4.53723509,0.03952243,97.96305089],[4.53723466,0.03952068,97.96296582],[4.53723423,0.03951893,97.9628857],[4.5372338,0.03951718,97.96281068],[4.53723337,0.03951543,97.96274089],[4.53723294,0.03951368,97.96267645],[4.53723252,0.03951193,97.96261736],[4.53723209,0.03951018,97.96256295],[4.53723167,0.03950843,97.9625124],[4.53723125,0.03950668,97.96246492],[4.53723083,0.03950493,97.96241966],[4.5372304,0.03950318,97.96237584],[4.53722998,0.03950143,97.96233262],[4.53722956,0.03949968,97.96228933],[4.53722913,0.03949792,97.96224581],[4.53722871,0.03949617,97.96220202],[4.53722829,0.03949442,97.96215794],[4.53722786,0.03949267,97.96211354],[4.53722744,0.03949092,97.96206889],[4.53722701,0.03948917,97.96202419],[4.53722659,0.03948742,97.96197963],[4.53722616,0.03948567,97.96193537],[4.53722573,0.03948392,97.96189157],[4.53722531,0.03948217,97.96184836],[4.53722488,0.03948042,97.96180589],[4.53722445,0.03947867,97.96176428],[4.53722403,0.03947692,97.96172368],[4.5372236,0.03947517,97.96168422],[4.53722318,0.03947342,97.96164604],[4.53722275,0.03947166,97.96160928],[4.53722232,0.03946991,97.96157407],[4.5372219,0.03946816,97.96154054],[4.53722147,0.03946641,97.96150885],[4.53722105,0.03946466,97.96147912],[4.53722062,0.03946291,97.96145148],[4.53722019,0.03946116,97.96142609],[4.53721977,0.03945941,97.96140307],[4.53721935,0.03945766,97.96138255],[4.53721892,0.03945591,97.96136469],[4.5372185,0.03945415,97.9613496],[4.53721808,0.0394524,97.96133737],[4.53721766,0.03945065,97.96132776],[4.53721723,0.0394489,97.96132052],[4.53721681,0.03944715,97.96131534],[4.53721639,0.0394454,97.96131197],[4.53721597,0.03944364,97.96131011],[4.53721555,0.03944189,97.96130948],[4.53721513,0.03944014,97.96130982],[4.53721471,0.03943839,97.96131083],[4.53721429,0.03943663,97.96131224],[4.53721386,0.03943488,97.96131378],[4.53721344,0.03943313,97.96131515],[4.53721302,0.03943138,97.9613161],[4.5372126,0.03942963,97.96131652],[4.53721217,0.03942788,97.96131648],[4.53721175,0.03942612,97.96131607],[4.53721133,0.03942437,97.96131538],[4.5372109,0.03942262,97.96131451],[4.53721048,0.03942087,97.96131355],[4.53721005,0.03941912,97.9613126],[4.53720962,0.03941737,97.96131175],[4.5372092,0.03941562,97.96131108],[4.53720877,0.03941387,97.9613107],[4.53720835,0.03941211,97.9613107],[4.53720792,0.03941036,97.96131117],[4.53720749,0.03940861,97.96131228],[4.53720707,0.03940686,97.96131427],[4.53720664,0.03940511,97.96131738],[4.53720621,0.03940336,97.96132184],[4.53720579,0.03940161,97.9613279],[4.53720536,0.03939986,97.9613358],[4.53720493,0.03939811,97.96134577],[4.53720451,0.03939635,97.96135806],[4.53720408,0.0393946,97.96137289],[4.53720366,0.03939285,97.96139035],[4.53720324,0.0393911,97.96141036],[4.53720281,0.03938935,97.96143286],[4.53720239,0.03938759,97.96145776],[4.53720197,0.03938584,97.96148498],[4.53720154,0.03938409,97.96151446],[4.53720112,0.03938234,97.96154613],[4.5372007,0.03938059,97.96157995],[4.53720028,0.03937883,97.96161588],[4.53719986,0.03937708,97.96165388],[4.53719944,0.03937533,97.96169389],[4.53719902,0.03937358,97.96173589],[4.5371986,0.03937182,97.96177982],[4.53719818,0.03937007,97.96182564],[4.53719776,0.03936832,97.96187332],[4.53719734,0.03936657,97.9619228],[4.53719692,0.03936481,97.96197402],[4.5371965,0.03936306,97.96202683],[4.53719609,0.03936131,97.96208104],[4.53719567,0.03935955,97.96213648],[4.53719525,0.0393578,97.96219296],[4.53719483,0.03935605,97.96225031],[4.53719441,0.03935429,97.96230834],[4.53719399,0.03935254,97.96236688],[4.53719358,0.03935079,97.96242575],[4.53719316,0.03934903,97.96248476],[4.53719274,0.03934728,97.96254375],[4.53719232,0.03934553,97.96260264],[4.5371919,0.03934377,97.96266147],[4.53719148,0.03934202,97.96272029],[4.53719106,0.03934027,97.96277913],[4.53719064,0.03933851,97.96283803],[4.53719021,0.03933676,97.96289703],[4.53718979,0.03933501,97.96295619],[4.53718937,0.03933326,97.96301553],[4.53718895,0.0393315,97.96307509],[4.53718853,0.03932975,97.96313493],[4.53718811,0.039328,97.96319508],[4.53718768,0.03932625,97.96325558],[4.53718726,0.03932449,97.96331646],[4.53718684,0.03932274,97.96337778],[4.53718641,0.03932099,97.96343956],[4.53718599,0.03931924,97.96350182],[4.53718557,0.03931748,97.96356458],[4.53718514,0.03931573,97.96362785],[4.53718472,0.03931398,97.96369163],[4.5371843,0.03931223,97.96375579],[4.53718387,0.03931047,97.96382016],[4.53718345,0.03930872,97.96388457],[4.53718303,0.03930697,97.96394887],[4.5371826,0.03930522,97.96401289],[4.53718218,0.03930346,97.96407647],[4.53718175,0.03930171,97.96413945],[4.53718132,0.03929996,97.96420169],[4.5371809,0.03929821,97.96426318],[4.53718047,0.03929646,97.96432394],[4.53718004,0.03929471,97.96438397],[4.53717961,0.03929295,97.96444329],[4.53717918,0.0392912,97.96450191],[4.53717876,0.03928945,97.96455986],[4.53717833,0.0392877,97.96461713],[4.5371779,0.03928595,97.9646737],[4.53717746,0.0392842,97.96472936],[4.53717703,0.03928245,97.9647839],[4.5371766,0.0392807,97.96483721],[4.53717617,0.03927895,97.96488933],[4.53717574,0.0392772,97.96494033],[4.5371753,0.03927545,97.96499024],[4.53717487,0.0392737,97.96503912],[4.53717443,0.03927195,97.96508703],[4.537174,0.0392702,97.965134],[4.53717356,0.03926845,97.96518008],[4.53717312,0.0392667,97.96522534],[4.53717268,0.03926495,97.96526982],[4.53717225,0.0392632,97.96531357],[4.53717181,0.03926145,97.96535663],[4.53717137,0.0392597,97.96539906],[4.53717093,0.03925795,97.96544092],[4.53717049,0.03925621,97.96548224],[4.53717005,0.03925446,97.96552307],[4.53716961,0.03925271,97.96556348],[4.53716917,0.03925096,97.96560351],[4.53716873,0.03924921,97.9656432],[4.53716829,0.03924746,97.96568261],[4.53716784,0.03924571,97.96572178],[4.5371674,0.03924397,97.96576077],[4.53716696,0.03924222,97.96579963],[4.53716652,0.03924047,97.96583841],[4.53716607,0.03923872,97.96587715],[4.53716563,0.03923697,97.96591591],[4.53716518,0.03923523,97.9659549],[4.53716474,0.03923348,97.96599446],[4.5371643,0.03923173,97.96603479],[4.53716385,0.03922998,97.96607593],[4.53716341,0.03922823,97.96611781],[4.53716297,0.03922649,97.96616026],[4.53716252,0.03922474,97.96620313],[4.53716208,0.03922299,97.96624624],[4.53716163,0.03922124,97.96628943],[4.53716119,0.03921949,97.96633253],[4.53716074,0.03921775,97.96637538],[4.5371603,0.039216,97.96641781],[4.53715985,0.03921425,97.96645966],[4.5371594,0.0392125,97.96650076],[4.53715896,0.03921076,97.96654095],[4.53715851,0.03920901,97.96658005],[4.53715806,0.03920726,97.96661792],[4.53715761,0.03920552,97.96665437],[4.53715716,0.03920377,97.96668925],[4.53715671,0.03920202,97.96672238],[4.53715626,0.03920028,97.96675362],[4.53715581,0.03919853,97.96678279],[4.53715536,0.03919678,97.96680972],[4.5371549,0.03919504,97.96683426],[4.53715445,0.03919329,97.96685623],[4.53715399,0.03919155,97.96687549],[4.53715353,0.0391898,97.96689185],[4.53715307,0.03918806,97.96690515],[4.53715261,0.03918631,97.96691524],[4.53715215,0.03918457,97.96692195],[4.53715169,0.03918283,97.96692507],[4.53715122,0.03918108,97.96692416],[4.53715076,0.03917934,97.96691883],[4.53715029,0.0391776,97.96690889],[4.53714982,0.03917586,97.96689422],[4.53714935,0.03917412,97.9668747],[4.53714887,0.03917237,97.96685023],[4.5371484,0.03917063,97.96682068],[4.53714792,0.03916889,97.96678596],[4.53714744,0.03916715,97.96674621],[4.53714696,0.03916541,97.96670184],[4.53714648,0.03916367,97.96665326],[4.537146,0.03916194,97.96660089],[4.53714551,0.0391602,97.96654514],[4.53714503,0.03915846,97.96648643],[4.53714454,0.03915672,97.96642516],[4.53714405,0.03915499,97.96636175],[4.53714356,0.03915325,97.96629661],[4.53714307,0.03915151,97.96623016],[4.53714258,0.03914978,97.96616281],[4.53714209,0.03914804,97.96609497],[4.5371416,0.0391463,97.96602704],[4.53714111,0.03914457,97.96595945],[4.53714062,0.03914283,97.9658926],[4.53714013,0.0391411,97.96582691],[4.53713964,0.03913936,97.96576277],[4.53713915,0.03913762,97.96570039],[4.53713866,0.03913589,97.96563977],[4.53713817,0.03913415,97.96558091],[4.53713768,0.03913242,97.96552378],[4.53713719,0.03913068,97.96546836],[4.5371367,0.03912894,97.96541465],[4.53713621,0.03912721,97.96536261],[4.53713572,0.03912547,97.96531224],[4.53713523,0.03912374,97.96526351],[4.53713475,0.039122,97.96521641],[4.53713426,0.03912026,97.96517091],[4.53713377,0.03911853,97.96512701],[4.53713328,0.03911679,97.96508469],[4.5371328,0.03911505,97.96504391],[4.53713231,0.03911332,97.96500468],[4.53713182,0.03911158,97.96496697],[4.53713134,0.03910984,97.96493076],[4.53713085,0.03910811,97.96489603],[4.53713036,0.03910637,97.96486278],[4.53712988,0.03910463,97.96483097],[4.53712939,0.03910289,97.96480059],[4.53712891,0.03910116,97.96477163],[4.53712842,0.03909942,97.96474406],[4.53712794,0.03909768,97.96471788],[4.53712745,0.03909595,97.96469305],[4.53712697,0.03909421,97.96466957],[4.53712648,0.03909247,97.96464741],[4.537126,0.03909073,97.96462656],[4.53712552,0.039089,97.964607],[4.53712503,0.03908726,97.96458872],[4.53712455,0.03908552,97.96457168],[4.53712406,0.03908378,97.96455589],[4.53712358,0.03908205,97.96454132],[4.53712349,0.03908173,97.9645388]],"type":"LineString"},"type":"feature","properties":{"successorId":-5,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1003400","id":-4,"type":"shoulder","predecessorId":-4}},{"geometry":{"coordinates":[[4.53739559,0.04020616,98.07711735],[4.5373952,0.0402044,98.07660474],[4.53739481,0.04020264,98.07609234],[4.53739441,0.04020089,98.07558032],[4.53739402,0.04019913,98.07506882],[4.53739363,0.04019737,98.07455798],[4.53739323,0.04019561,98.07404797],[4.53739284,0.04019385,98.07353893],[4.53739244,0.04019209,98.07303102],[4.53739205,0.04019033,98.07252437],[4.53739166,0.04018857,98.07201916],[4.53739126,0.04018682,98.07151552],[4.53739087,0.04018506,98.07101361],[4.53739047,0.0401833,98.07051359],[4.53739008,0.04018154,98.07001559],[4.53738969,0.04017978,98.06951979],[4.53738929,0.04017802,98.06902632],[4.5373889,0.04017626,98.06853534],[4.53738851,0.0401745,98.06804662],[4.53738812,0.04017274,98.06755962],[4.53738773,0.04017099,98.06707376],[4.53738733,0.04016923,98.06658849],[4.53738694,0.04016747,98.06610333],[4.53738655,0.04016571,98.06561826],[4.53738615,0.04016395,98.06513336],[4.53738576,0.04016219,98.06464873],[4.53738537,0.04016043,98.06416445],[4.53738497,0.04015868,98.06368059],[4.53738458,0.04015692,98.06319726],[4.53738418,0.04015516,98.06271454],[4.53738379,0.0401534,98.0622325],[4.53738339,0.04015164,98.06175125],[4.537383,0.04014988,98.06127085],[4.5373826,0.04014813,98.06079141],[4.53738221,0.04014637,98.06031301],[4.53738181,0.04014461,98.05983573],[4.53738141,0.04014285,98.05935965],[4.53738102,0.04014109,98.05888488],[4.53738062,0.04013934,98.05841149],[4.53738023,0.04013758,98.05793958],[4.53737983,0.04013582,98.05746922],[4.53737943,0.04013406,98.05700051],[4.53737904,0.0401323,98.05653353],[4.53737864,0.04013055,98.05606822],[4.53737825,0.04012879,98.05560386],[4.53737785,0.04012703,98.05513977],[4.53737746,0.04012527,98.05467588],[4.53737706,0.04012352,98.0542123],[4.53737666,0.04012176,98.05374914],[4.53737626,0.04012,98.05328649],[4.53737587,0.04011824,98.05282448],[4.53737547,0.04011649,98.0523632],[4.53737507,0.04011473,98.05190275],[4.53737467,0.04011297,98.05144326],[4.53737427,0.04011121,98.05098481],[4.53737388,0.04010946,98.05052753],[4.53737348,0.0401077,98.05007151],[4.53737308,0.04010594,98.04961687],[4.53737268,0.04010418,98.0491637],[4.53737228,0.04010243,98.04871212],[4.53737188,0.04010067,98.04826224],[4.53737149,0.04009891,98.04781415],[4.53737109,0.04009716,98.04736798],[4.53737069,0.0400954,98.04692382],[4.53737029,0.04009364,98.04648179],[4.5373699,0.04009188,98.04604199],[4.5373695,0.04009013,98.04560452],[4.5373691,0.04008837,98.04516951],[4.53736871,0.04008661,98.04473706],[4.53736831,0.04008485,98.04430726],[4.53736792,0.0400831,98.04388025],[4.53736752,0.04008134,98.04345595],[4.53736713,0.04007958,98.0430337],[4.53736673,0.04007782,98.04261267],[4.53736634,0.04007606,98.042192],[4.53736594,0.04007431,98.04177103],[4.53736554,0.04007255,98.04134973],[4.53736515,0.04007079,98.04092824],[4.53736475,0.04006904,98.04050668],[4.53736435,0.04006728,98.0400852],[4.53736395,0.04006552,98.03966394],[4.53736355,0.04006376,98.03924302],[4.53736315,0.04006201,98.03882258],[4.53736276,0.04006025,98.03840276],[4.53736236,0.04005849,98.03798369],[4.53736196,0.04005674,98.03756552],[4.53736156,0.04005498,98.03714837],[4.53736116,0.04005322,98.03673239],[4.53736076,0.04005147,98.03631771],[4.53736036,0.04004971,98.03590447],[4.53735996,0.04004795,98.0354928],[4.53735956,0.0400462,98.03508284],[4.53735916,0.04004444,98.03467473],[4.53735876,0.04004268,98.03426861],[4.53735836,0.04004093,98.03386461],[4.53735796,0.04003917,98.03346288],[4.53735756,0.04003741,98.03306354],[4.53735716,0.04003566,98.03266675],[4.53735676,0.0400339,98.03227266],[4.53735637,0.04003214,98.03188143],[4.53735597,0.04003039,98.03149322],[4.53735557,0.04002863,98.03110818],[4.53735518,0.04002687,98.03072646],[4.53735478,0.04002512,98.03034822],[4.53735439,0.04002336,98.02997363],[4.53735399,0.0400216,98.02960283],[4.5373536,0.04001984,98.02923596],[4.53735321,0.04001808,98.02887256],[4.53735281,0.04001633,98.02851172],[4.53735242,0.04001457,98.02815306],[4.53735203,0.04001281,98.02779634],[4.53735164,0.04001105,98.02744134],[4.53735124,0.04000929,98.0270878],[4.53735085,0.04000754,98.02673548],[4.53735046,0.04000578,98.02638416],[4.53735007,0.04000402,98.02603357],[4.53734967,0.04000226,98.02568349],[4.53734928,0.0400005,98.02533366],[4.53734889,0.03999875,98.02498386],[4.53734849,0.03999699,98.02463382],[4.5373481,0.03999523,98.02428332],[4.5373477,0.03999347,98.02393211],[4.53734731,0.03999172,98.02357994],[4.53734691,0.03998996,98.02322658],[4.53734651,0.0399882,98.02287177],[4.53734611,0.03998645,98.02251528],[4.53734571,0.03998469,98.02215699],[4.53734531,0.03998294,98.02179727],[4.53734491,0.03998118,98.02143663],[4.5373445,0.03997942,98.02107556],[4.5373441,0.03997767,98.02071459],[4.5373437,0.03997591,98.02035419],[4.53734329,0.03997416,98.01999489],[4.53734289,0.0399724,98.01963718],[4.53734249,0.03997065,98.01928157],[4.53734208,0.03996889,98.01892856],[4.53734168,0.03996714,98.01857866],[4.53734128,0.03996538,98.01823227],[4.53734088,0.03996363,98.01788933],[4.53734048,0.03996187,98.0175497],[4.53734008,0.03996011,98.01721326],[4.53733968,0.03995836,98.01687993],[4.53733928,0.0399566,98.01654959],[4.53733888,0.03995485,98.01622214],[4.53733848,0.03995309,98.01589748],[4.53733808,0.03995133,98.01557551],[4.53733768,0.03994958,98.01525612],[4.53733729,0.03994782,98.01493922],[4.53733689,0.03994606,98.0146247],[4.53733649,0.03994431,98.01431245],[4.53733609,0.03994255,98.01400238],[4.5373357,0.03994079,98.01369438],[4.5373353,0.03993904,98.01338834],[4.5373349,0.03993728,98.01308418],[4.53733451,0.03993552,98.01278177],[4.53733411,0.03993377,98.01248103],[4.53733372,0.03993201,98.01218183],[4.53733332,0.03993025,98.0118841],[4.53733292,0.0399285,98.01158771],[4.53733253,0.03992674,98.01129256],[4.53733213,0.03992498,98.01099856],[4.53733173,0.03992323,98.0107056],[4.53733134,0.03992147,98.01041357],[4.53733094,0.03991971,98.01012237],[4.53733054,0.03991796,98.0098319],[4.53733014,0.0399162,98.00954205],[4.53732975,0.03991444,98.00925274],[4.53732935,0.03991269,98.00896387],[4.53732895,0.03991093,98.00867536],[4.53732855,0.03990918,98.00838734],[4.53732815,0.03990742,98.00809995],[4.53732775,0.03990566,98.00781332],[4.53732735,0.03990391,98.00752761],[4.53732695,0.03990215,98.00724297],[4.53732655,0.0399004,98.00695954],[4.53732615,0.03989864,98.00667746],[4.53732575,0.03989689,98.00639685],[4.53732535,0.03989513,98.00611771],[4.53732495,0.03989337,98.00584],[4.53732455,0.03989162,98.00556369],[4.53732415,0.03988986,98.00528875],[4.53732375,0.03988811,98.00501515],[4.53732335,0.03988635,98.00474284],[4.53732295,0.0398846,98.0044718],[4.53732255,0.03988284,98.00420199],[4.53732215,0.03988109,98.00393339],[4.53732175,0.03987933,98.00366594],[4.53732135,0.03987757,98.00339963],[4.53732095,0.03987582,98.00313442],[4.53732055,0.03987406,98.00287027],[4.53732015,0.03987231,98.00260716],[4.53731975,0.03987055,98.00234505],[4.53731935,0.0398688,98.00208396],[4.53731894,0.03986704,98.00182387],[4.53731854,0.03986529,98.00156477],[4.53731814,0.03986353,98.00130667],[4.53731774,0.03986178,98.00104956],[4.53731734,0.03986002,98.00079343],[4.53731694,0.03985827,98.00053829],[4.53731653,0.03985651,98.00028412],[4.53731613,0.03985476,98.00003093],[4.53731573,0.039853,97.9997787],[4.53731532,0.03985125,97.99952743],[4.53731492,0.03984949,97.99927712],[4.53731452,0.03984774,97.99902777],[4.53731411,0.03984598,97.99877937],[4.53731371,0.03984423,97.99853191],[4.53731331,0.03984248,97.99828539],[4.5373129,0.03984072,97.99803981],[4.5373125,0.03983897,97.99779516],[4.5373121,0.03983721,97.99755144],[4.53731169,0.03983546,97.99730864],[4.53731129,0.0398337,97.99706676],[4.53731088,0.03983195,97.99682579],[4.53731048,0.03983019,97.99658573],[4.53731007,0.03982844,97.99634658],[4.53730967,0.03982669,97.99610836],[4.53730926,0.03982493,97.99587122],[4.53730886,0.03982318,97.99563533],[4.53730845,0.03982142,97.99540087],[4.53730804,0.03981967,97.99516799],[4.53730764,0.03981792,97.9949368],[4.53730723,0.03981616,97.99470736],[4.53730683,0.03981441,97.99447975],[4.53730642,0.03981265,97.99425404],[4.53730602,0.0398109,97.99403031],[4.53730561,0.03980915,97.99380863],[4.53730521,0.03980739,97.99358908],[4.5373048,0.03980564,97.99337172],[4.5373044,0.03980388,97.99315664],[4.537304,0.03980213,97.99294392],[4.53730359,0.03980037,97.99273361],[4.53730319,0.03979862,97.99252581],[4.53730279,0.03979687,97.99232057],[4.53730238,0.03979511,97.99211798],[4.53730198,0.03979336,97.99191809],[4.53730158,0.0397916,97.99172095],[4.53730118,0.03978985,97.99152663],[4.53730078,0.03978809,97.99133513],[4.53730038,0.03978634,97.99114639],[4.53729998,0.03978458,97.99096039],[4.53729958,0.03978283,97.99077705],[4.53729918,0.03978107,97.99059635],[4.53729878,0.03977932,97.99041822],[4.53729838,0.03977756,97.99024262],[4.53729798,0.03977581,97.9900695],[4.53729759,0.03977405,97.98989882],[4.53729719,0.03977229,97.98973051],[4.53729679,0.03977054,97.98956454],[4.53729639,0.03976878,97.98940086],[4.537296,0.03976703,97.98923941],[4.5372956,0.03976527,97.98908015],[4.5372952,0.03976352,97.98892303],[4.53729481,0.03976176,97.98876793],[4.53729441,0.03976,97.98861445],[4.53729402,0.03975825,97.98846213],[4.53729362,0.03975649,97.98831049],[4.53729322,0.03975474,97.98815908],[4.53729282,0.03975298,97.98800741],[4.53729243,0.03975123,97.98785503],[4.53729203,0.03974947,97.98770147],[4.53729163,0.03974772,97.98754636],[4.53729123,0.03974598,97.98738979],[4.53729083,0.03974422,97.98723195],[4.53729043,0.03974247,97.98707303],[4.53729002,0.03974071,97.98691321],[4.53728962,0.03973896,97.98675268],[4.53728922,0.03973721,97.98659164],[4.53728881,0.03973545,97.98643026],[4.5372884,0.0397337,97.98626875],[4.537288,0.03973195,97.98610728],[4.53728759,0.03973019,97.98594605],[4.53728719,0.03972844,97.98578525],[4.53728678,0.03972669,97.98562506],[4.53728637,0.03972493,97.98546567],[4.53728596,0.03972318,97.98530728],[4.53728556,0.03972143,97.98515007],[4.53728515,0.03971967,97.98499423],[4.53728474,0.03971792,97.98483995],[4.53728434,0.03971617,97.98468742],[4.53728393,0.03971441,97.98453682],[4.53728352,0.03971266,97.98438836],[4.53728312,0.03971091,97.98424222],[4.53728271,0.03970915,97.98409862],[4.5372823,0.0397074,97.98395758],[4.5372819,0.03970564,97.98381873],[4.53728149,0.03970389,97.9836818],[4.53728109,0.03970214,97.98354654],[4.53728068,0.03970038,97.98341272],[4.53728028,0.03969863,97.98328007],[4.53727987,0.03969688,97.98314835],[4.53727947,0.03969512,97.98301732],[4.53727906,0.03969337,97.98288673],[4.53727865,0.03969161,97.98275633],[4.53727825,0.03968986,97.98262586],[4.53727784,0.03968811,97.9824951],[4.53727743,0.03968635,97.98236405],[4.53727702,0.0396846,97.98223293],[4.53727661,0.03968285,97.98210201],[4.53727621,0.03968109,97.98197153],[4.5372758,0.03967934,97.98184173],[4.53727539,0.03967759,97.98171286],[4.53727498,0.03967583,97.98158518],[4.53727457,0.03967408,97.98145892],[4.53727416,0.03967233,97.98133434],[4.53727375,0.03967057,97.98121169],[4.53727334,0.03966882,97.98109121],[4.53727293,0.03966707,97.98097314],[4.53727252,0.03966531,97.98085775],[4.53727212,0.03966356,97.98074527],[4.53727171,0.03966181,97.98063595],[4.5372713,0.03966005,97.98053005],[4.5372709,0.0396583,97.98042777],[4.53727049,0.03965654,97.98032859],[4.53727009,0.03965479,97.98023126],[4.53726968,0.03965304,97.98013467],[4.53726928,0.03965128,97.98003852],[4.53726887,0.03964953,97.9799427],[4.53726847,0.03964777,97.9798471],[4.53726806,0.03964602,97.9797516],[4.53726765,0.03964427,97.9796561],[4.53726724,0.03964251,97.97956049],[4.53726684,0.03964076,97.97946465],[4.53726643,0.039639,97.9793685],[4.53726602,0.03963725,97.97927207],[4.53726561,0.0396355,97.9791754],[4.5372652,0.03963374,97.97907853],[4.53726479,0.03963199,97.97898152],[4.53726438,0.03963024,97.9788844],[4.53726397,0.03962848,97.97878721],[4.53726356,0.03962673,97.97869002],[4.53726314,0.03962498,97.97859285],[4.53726273,0.03962323,97.97849575],[4.53726232,0.03962147,97.9783988],[4.53726191,0.03961972,97.97830206],[4.53726149,0.03961797,97.97820561],[4.53726108,0.03961621,97.9781095],[4.53726067,0.03961446,97.97801382],[4.53726025,0.03961271,97.97791863],[4.53725984,0.03961096,97.97782401],[4.53725942,0.0396092,97.97773001],[4.53725901,0.03960745,97.97763672],[4.53725859,0.0396057,97.97754421],[4.53725818,0.03960395,97.97745253],[4.53725776,0.0396022,97.97736177],[4.53725735,0.03960044,97.97727196],[4.53725693,0.03959869,97.9771828],[4.53725652,0.03959694,97.9770942],[4.5372561,0.03959519,97.97700625],[4.53725568,0.03959343,97.97691903],[4.53725527,0.03959168,97.97683262],[4.53725485,0.03958993,97.97674711],[4.53725444,0.03958818,97.97666259],[4.53725402,0.03958643,97.97657914],[4.5372536,0.03958467,97.97649685],[4.53725319,0.03958292,97.97641579],[4.53725277,0.03958117,97.97633606],[4.53725235,0.03957942,97.97625774],[4.53725194,0.03957766,97.97618092],[4.53725152,0.03957591,97.97610568],[4.53725111,0.03957416,97.9760321],[4.53725069,0.03957241,97.97596027],[4.53725027,0.03957066,97.97589027],[4.53724986,0.0395689,97.9758222],[4.53724944,0.03956715,97.97575613],[4.53724903,0.0395654,97.97569215],[4.53724861,0.03956364,97.97563034],[4.5372482,0.03956189,97.97557079],[4.53724778,0.03956014,97.97551359],[4.53724737,0.03955839,97.97545881],[4.53724696,0.03955663,97.97540655],[4.53724655,0.03955488,97.97535688],[4.53724613,0.03955313,97.97530989],[4.53724572,0.03955137,97.97526568],[4.53724531,0.03954962,97.97522412],[4.5372449,0.03954787,97.9751844],[4.53724449,0.03954611,97.97514549],[4.53724408,0.03954436,97.97510639],[4.53724366,0.0395426,97.97506608],[4.53724325,0.03954085,97.97502377],[4.53724283,0.0395391,97.97497956],[4.53724242,0.03953735,97.97493377],[4.537242,0.03953559,97.97488672],[4.53724159,0.03953384,97.97483874],[4.53724117,0.03953209,97.97479013],[4.53724075,0.03953034,97.97474123],[4.53724033,0.03952858,97.97469234],[4.53723992,0.03952683,97.9746438],[4.5372395,0.03952508,97.97459591],[4.53723908,0.03952333,97.974549],[4.53723866,0.03952158,97.97450339],[4.53723824,0.03951982,97.9744594],[4.53723782,0.03951807,97.97441734],[4.5372374,0.03951632,97.97437753],[4.53723699,0.03951457,97.9743403],[4.53723657,0.03951281,97.97430596],[4.53723615,0.03951106,97.97427467],[4.53723574,0.03950931,97.97424596],[4.53723532,0.03950755,97.9742192],[4.53723491,0.0395058,97.97419376],[4.53723449,0.03950405,97.97416901],[4.53723408,0.0395023,97.97414432],[4.53723366,0.03950054,97.97411905],[4.53723324,0.03949879,97.9740927],[4.53723282,0.03949704,97.97406531],[4.53723241,0.03949529,97.97403701],[4.53723199,0.03949353,97.97400797],[4.53723157,0.03949178,97.97397834],[4.53723115,0.03949003,97.97394828],[4.53723073,0.03948828,97.97391797],[4.5372303,0.03948653,97.97388759],[4.53722988,0.03948477,97.9738573],[4.53722946,0.03948302,97.97382724],[4.53722904,0.03948127,97.97379754],[4.53722862,0.03947952,97.97376832],[4.5372282,0.03947777,97.97373971],[4.53722777,0.03947602,97.97371183],[4.53722735,0.03947426,97.97368481],[4.53722693,0.03947251,97.97365878],[4.53722651,0.03947076,97.97363386],[4.53722608,0.03946901,97.97361018],[4.53722566,0.03946726,97.97358786],[4.53722524,0.03946551,97.97356703],[4.53722482,0.03946375,97.97354782],[4.5372244,0.039462,97.97353034],[4.53722397,0.03946025,97.97351474],[4.53722355,0.0394585,97.97350112],[4.53722313,0.03945675,97.97348962],[4.53722271,0.03945499,97.97348037],[4.53722229,0.03945324,97.97347348],[4.53722187,0.03945149,97.97346902],[4.53722145,0.03944974,97.97346675],[4.53722103,0.03944798,97.9734664],[4.53722061,0.03944623,97.97346766],[4.53722019,0.03944448,97.97347024],[4.53721978,0.03944273,97.97347386],[4.53721936,0.03944097,97.97347823],[4.53721894,0.03943922,97.97348306],[4.53721852,0.03943747,97.97348805],[4.5372181,0.03943572,97.97349292],[4.53721768,0.03943396,97.97349737],[4.53721726,0.03943221,97.97350112],[4.53721684,0.03943046,97.97350389],[4.53721641,0.03942871,97.97350556],[4.53721599,0.03942696,97.97350619],[4.53721557,0.0394252,97.97350584],[4.53721514,0.03942345,97.97350458],[4.53721472,0.0394217,97.97350246],[4.53721429,0.03941995,97.97349956],[4.53721387,0.0394182,97.97349593],[4.53721344,0.03941645,97.97349164],[4.53721301,0.0394147,97.97348674],[4.53721259,0.03941295,97.97348131],[4.53721216,0.03941119,97.97347541],[4.53721173,0.03940944,97.9734691],[4.5372113,0.03940769,97.97346251],[4.53721087,0.03940594,97.97345586],[4.53721044,0.03940419,97.97344935],[4.53721001,0.03940244,97.9734432],[4.53720958,0.03940069,97.97343761],[4.53720915,0.03939894,97.9734328],[4.53720872,0.03939719,97.97342896],[4.53720829,0.03939544,97.97342631],[4.53720787,0.03939369,97.97342506],[4.53720744,0.03939194,97.97342524],[4.53720701,0.03939019,97.97342676],[4.53720658,0.03938844,97.97342952],[4.53720615,0.03938669,97.97343341],[4.53720572,0.03938494,97.97343832],[4.53720529,0.03938319,97.97344415],[4.53720486,0.03938144,97.9734508],[4.53720443,0.03937969,97.97345821],[4.537204,0.03937793,97.9734663],[4.53720357,0.03937619,97.973475],[4.53720314,0.03937444,97.97348423],[4.53720271,0.03937269,97.97349393],[4.53720228,0.03937094,97.97350401],[4.53720185,0.03936918,97.97351442],[4.53720142,0.03936743,97.97352506],[4.53720099,0.03936568,97.97353588],[4.53720056,0.03936393,97.9735468],[4.53720013,0.03936218,97.97355774],[4.5371997,0.03936043,97.97356864],[4.53719926,0.03935868,97.97357942],[4.53719883,0.03935693,97.97359],[4.5371984,0.03935518,97.97360033],[4.53719797,0.03935343,97.97361031],[4.53719753,0.03935168,97.97361989],[4.5371971,0.03934993,97.97362898],[4.53719666,0.03934818,97.97363752],[4.53719623,0.03934644,97.97364545],[4.53719579,0.03934469,97.97365278],[4.53719536,0.03934294,97.97365968],[4.53719492,0.03934119,97.97366629],[4.53719449,0.03933944,97.97367275],[4.53719405,0.03933769,97.97367922],[4.53719361,0.03933594,97.97368584],[4.53719317,0.03933419,97.97369275],[4.53719274,0.03933244,97.97370012],[4.5371923,0.03933069,97.97370808],[4.53719186,0.03932894,97.97371678],[4.53719142,0.0393272,97.97372637],[4.53719098,0.03932545,97.97373699],[4.53719055,0.0393237,97.9737488],[4.53719011,0.03932195,97.97376194],[4.53718967,0.0393202,97.97377654],[4.53718924,0.03931845,97.97379273],[4.5371888,0.0393167,97.97381063],[4.53718836,0.03931495,97.97383037],[4.53718793,0.0393132,97.97385205],[4.53718749,0.03931145,97.97387564],[4.53718705,0.0393097,97.97390108],[4.53718662,0.03930796,97.97392831],[4.53718618,0.03930621,97.97395728],[4.53718575,0.03930446,97.97398792],[4.53718531,0.03930271,97.97402019],[4.53718488,0.03930096,97.97405403],[4.53718444,0.03929921,97.97408937],[4.53718401,0.03929746,97.97412616],[4.53718358,0.03929571,97.97416435],[4.53718314,0.03929396,97.97420387],[4.53718271,0.03929221,97.97424467],[4.53718228,0.03929046,97.97428669],[4.53718184,0.03928871,97.97432988],[4.53718141,0.03928696,97.97437416],[4.53718098,0.03928521,97.97441946],[4.53718054,0.03928346,97.97446548],[4.53718011,0.03928171,97.97451194],[4.53717967,0.03927996,97.97455866],[4.53717924,0.03927821,97.97460562],[4.53717881,0.03927646,97.9746528],[4.53717837,0.03927471,97.97470018],[4.53717794,0.03927296,97.97474773],[4.5371775,0.03927121,97.97479545],[4.53717707,0.03926946,97.9748433],[4.53717663,0.03926771,97.97489127],[4.5371762,0.03926596,97.97493934],[4.53717576,0.03926421,97.97498748],[4.53717532,0.03926246,97.97503567],[4.53717489,0.03926071,97.97508391],[4.53717445,0.03925896,97.97513215],[4.53717401,0.03925721,97.97518039],[4.53717358,0.03925546,97.97522861],[4.53717314,0.03925371,97.97527677],[4.5371727,0.03925196,97.97532488],[4.53717226,0.03925021,97.97537289],[4.53717183,0.03924846,97.97542079],[4.53717139,0.03924671,97.97546857],[4.53717095,0.03924496,97.9755162],[4.53717051,0.03924321,97.97556366],[4.53717007,0.03924147,97.97561093],[4.53716963,0.03923972,97.97565799],[4.53716919,0.03923797,97.97570482],[4.53716875,0.03923622,97.97575141],[4.53716831,0.03923447,97.97579789],[4.53716787,0.03923272,97.97584454],[4.53716743,0.03923097,97.97589148],[4.53716698,0.03922923,97.9759387],[4.53716654,0.03922748,97.97598614],[4.5371661,0.03922573,97.97603377],[4.53716566,0.03922398,97.97608156],[4.53716522,0.03922223,97.97612948],[4.53716477,0.03922048,97.97617748],[4.53716433,0.03921873,97.97622552],[4.53716389,0.03921699,97.97627359],[4.53716344,0.03921524,97.97632162],[4.537163,0.03921349,97.97636961],[4.53716256,0.03921174,97.97641749],[4.53716211,0.03920999,97.97646525],[4.53716167,0.03920825,97.97651284],[4.53716122,0.0392065,97.97656023],[4.53716078,0.03920475,97.97660738],[4.53716033,0.039203,97.97665426],[4.53715989,0.03920126,97.97670083],[4.53715944,0.03919951,97.97674706],[4.53715899,0.03919776,97.97679291],[4.53715855,0.03919601,97.97683834],[4.5371581,0.03919427,97.97688332],[4.53715765,0.03919252,97.97692781],[4.5371572,0.03919077,97.97697178],[4.53715676,0.03918902,97.97701519],[4.53715631,0.03918728,97.97705801],[4.53715586,0.03918553,97.9771002],[4.53715541,0.03918378,97.97714172],[4.53715496,0.03918204,97.9771825],[4.53715451,0.03918029,97.97722222],[4.53715405,0.03917854,97.97726063],[4.5371536,0.0391768,97.97729764],[4.53715315,0.03917505,97.97733329],[4.53715269,0.03917331,97.97736758],[4.53715224,0.03917156,97.97740052],[4.53715179,0.03916981,97.97743212],[4.53715133,0.03916807,97.97746241],[4.53715087,0.03916632,97.97749138],[4.53715042,0.03916458,97.97751907],[4.53714996,0.03916283,97.97754546],[4.5371495,0.03916109,97.97757059],[4.53714904,0.03915934,97.97759447],[4.53714858,0.0391576,97.9776171],[4.53714812,0.03915586,97.97763849],[4.53714766,0.03915411,97.97765867],[4.5371472,0.03915237,97.97767765],[4.53714674,0.03915063,97.97769543],[4.53714627,0.03914888,97.97771203],[4.53714581,0.03914714,97.97772747],[4.53714535,0.0391454,97.97774175],[4.53714488,0.03914366,97.9777549],[4.53714442,0.03914191,97.97776691],[4.53714395,0.03914017,97.97777781],[4.53714348,0.03913843,97.9777876],[4.53714302,0.03913669,97.97779631],[4.53714255,0.03913495,97.97780394],[4.53714208,0.03913321,97.97781049],[4.53714161,0.03913147,97.97781596],[4.53714114,0.03912972,97.97782034],[4.53714067,0.03912798,97.97782364],[4.5371402,0.03912624,97.97782584],[4.53713973,0.0391245,97.97782695],[4.53713926,0.03912276,97.97782695],[4.53713879,0.03912102,97.97782584],[4.53713831,0.03911928,97.97782363],[4.53713784,0.03911754,97.9778203],[4.53713737,0.0391158,97.97781585],[4.53713689,0.03911406,97.97781028],[4.53713641,0.03911232,97.97780358],[4.53713594,0.03911058,97.97779575],[4.53713546,0.03910884,97.97778679],[4.53713498,0.03910711,97.97777668],[4.53713451,0.03910537,97.97776543],[4.53713403,0.03910363,97.97775303],[4.53713355,0.03910189,97.97773948],[4.53713307,0.03910015,97.97772477],[4.53713259,0.03909841,97.9777089],[4.53713211,0.03909667,97.97769187],[4.53713162,0.03909494,97.97767366],[4.53713114,0.0390932,97.97765428],[4.53713066,0.03909146,97.97763373],[4.53713017,0.03908972,97.97761199],[4.53712969,0.03908799,97.97758907],[4.5371292,0.03908625,97.97756495],[4.53712872,0.03908451,97.97753964],[4.53712823,0.03908277,97.97751313],[4.53712774,0.03908104,97.97748542],[4.53712766,0.03908072,97.97748026]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1003400","id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3}},{"geometry":{"coordinates":[[4.53742625,0.04019919,98.17009974],[4.53742584,0.04019743,98.16956876],[4.53742543,0.04019568,98.16903997],[4.53742502,0.04019392,98.16851365],[4.53742461,0.04019217,98.16799009],[4.5374242,0.04019041,98.16746959],[4.53742379,0.04018866,98.16695243],[4.53742339,0.0401869,98.1664389],[4.53742298,0.04018514,98.1659293],[4.53742258,0.04018339,98.16542391],[4.53742217,0.04018163,98.16492302],[4.53742177,0.04017987,98.16442694],[4.53742137,0.04017811,98.16393594],[4.53742097,0.04017636,98.16345033],[4.53742057,0.0401746,98.1629704],[4.53742018,0.04017284,98.16249643],[4.53741978,0.04017108,98.16202873],[4.53741939,0.04016932,98.16156757],[4.537419,0.04016756,98.16111289],[4.53741861,0.0401658,98.16066428],[4.53741822,0.04016404,98.1602213],[4.53741783,0.04016228,98.15978353],[4.53741744,0.04016052,98.15935054],[4.53741706,0.04015876,98.15892189],[4.53741667,0.040157,98.15849717],[4.53741629,0.04015524,98.15807594],[4.53741591,0.04015348,98.15765777],[4.53741553,0.04015171,98.15724222],[4.53741514,0.04014995,98.15682887],[4.53741476,0.04014819,98.15641727],[4.53741438,0.04014643,98.156007],[4.537414,0.04014467,98.15559763],[4.53741361,0.04014291,98.15518871],[4.53741323,0.04014114,98.15477981],[4.53741285,0.04013938,98.1543705],[4.53741246,0.04013762,98.15396034],[4.53741208,0.04013586,98.15354889],[4.53741169,0.0401341,98.15313571],[4.53741131,0.04013234,98.15272037],[4.53741092,0.04013058,98.15230243],[4.53741053,0.04012882,98.15188145],[4.53741014,0.04012706,98.15145698],[4.53740974,0.0401253,98.15102859],[4.53740935,0.04012354,98.15059584],[4.53740895,0.04012178,98.15015828],[4.53740855,0.04012003,98.14971564],[4.53740815,0.04011827,98.14926827],[4.53740775,0.04011651,98.14881671],[4.53740735,0.04011475,98.14836148],[4.53740694,0.040113,98.14790311],[4.53740653,0.04011124,98.14744213],[4.53740612,0.04010949,98.14697906],[4.53740572,0.04010773,98.14651444],[4.53740531,0.04010598,98.14604879],[4.5374049,0.04010422,98.14558265],[4.53740449,0.04010247,98.14511655],[4.53740407,0.04010071,98.14465102],[4.53740366,0.04009896,98.14418659],[4.53740325,0.0400972,98.14372379],[4.53740284,0.04009545,98.14326317],[4.53740243,0.04009369,98.14280525],[4.53740202,0.04009194,98.14235057],[4.53740161,0.04009018,98.14189967],[4.53740121,0.04008842,98.14145308],[4.5374008,0.04008667,98.14101135],[4.53740039,0.04008491,98.140575],[4.53739999,0.04008316,98.14014457],[4.53739959,0.0400814,98.13972061],[4.53739919,0.04007964,98.13930366],[4.53739879,0.04007788,98.13889426],[4.53739839,0.04007613,98.13849293],[4.537398,0.04007437,98.13810008],[4.53739761,0.04007261,98.13771546],[4.53739722,0.04007085,98.13733866],[4.53739683,0.04006909,98.13696927],[4.53739645,0.04006733,98.1366069],[4.53739606,0.04006557,98.13625115],[4.53739568,0.0400638,98.13590159],[4.5373953,0.04006204,98.13555784],[4.53739492,0.04006028,98.13521949],[4.53739454,0.04005852,98.13488612],[4.53739416,0.04005676,98.13455734],[4.53739379,0.04005499,98.13423273],[4.53739341,0.04005323,98.13391189],[4.53739304,0.04005147,98.13359441],[4.53739266,0.0400497,98.13327988],[4.53739229,0.04004794,98.13296789],[4.53739191,0.04004618,98.13265804],[4.53739154,0.04004441,98.1323499],[4.53739116,0.04004265,98.13204308],[4.53739079,0.04004089,98.13173716],[4.53739041,0.04003913,98.13143173],[4.53739004,0.04003736,98.13112638],[4.53738966,0.0400356,98.13082069],[4.53738929,0.04003384,98.13051426],[4.53738891,0.04003207,98.13020667],[4.53738853,0.04003031,98.12989751],[4.53738815,0.04002855,98.12958637],[4.53738777,0.04002679,98.12927286],[4.53738739,0.04002503,98.12895657],[4.53738701,0.04002327,98.12863712],[4.53738662,0.0400215,98.12831411],[4.53738624,0.04001974,98.12798713],[4.53738585,0.04001798,98.12765578],[4.53738546,0.04001623,98.12731968],[4.53738507,0.04001447,98.12697843],[4.53738467,0.04001271,98.12663161],[4.53738427,0.04001095,98.12627883],[4.53738388,0.04000919,98.12591984],[4.53738347,0.04000744,98.12555493],[4.53738307,0.04000568,98.12518454],[4.53738266,0.04000392,98.1248091],[4.53738226,0.04000217,98.12442906],[4.53738185,0.04000041,98.12404486],[4.53738143,0.03999866,98.12365693],[4.53738102,0.0399969,98.12326571],[4.53738061,0.03999515,98.12287164],[4.53738019,0.0399934,98.12247516],[4.53737978,0.03999164,98.12207672],[4.53737936,0.03998989,98.12167674],[4.53737894,0.03998814,98.12127567],[4.53737852,0.03998639,98.12087395],[4.5373781,0.03998463,98.12047203],[4.53737768,0.03998288,98.12007034],[4.53737726,0.03998113,98.11966933],[4.53737684,0.03997937,98.11926944],[4.53737642,0.03997762,98.11887112],[4.537376,0.03997587,98.1184748],[4.53737558,0.03997412,98.11808093],[4.53737517,0.03997236,98.11768996],[4.53737475,0.03997061,98.11730232],[4.53737433,0.03996886,98.11691848],[4.53737391,0.03996711,98.11653886],[4.5373735,0.03996535,98.11616392],[4.53737308,0.0399636,98.1157941],[4.53737267,0.03996184,98.11542984],[4.53737226,0.03996009,98.1150716],[4.53737185,0.03995834,98.11471972],[4.53737144,0.03995658,98.11437407],[4.53737103,0.03995482,98.11403446],[4.53737063,0.03995307,98.11370066],[4.53737022,0.03995131,98.11337246],[4.53736982,0.03994956,98.11304964],[4.53736942,0.0399478,98.112732],[4.53736902,0.03994604,98.11241931],[4.53736862,0.03994429,98.11211136],[4.53736822,0.03994253,98.11180792],[4.53736782,0.03994077,98.1115088],[4.53736743,0.03993901,98.11121376],[4.53736703,0.03993726,98.1109226],[4.53736663,0.0399355,98.11063509],[4.53736624,0.03993374,98.11035102],[4.53736585,0.03993198,98.11007018],[4.53736545,0.03993022,98.10979234],[4.53736506,0.03992846,98.10951728],[4.53736467,0.03992671,98.1092448],[4.53736427,0.03992495,98.10897467],[4.53736388,0.03992319,98.10870667],[4.53736349,0.03992143,98.10844059],[4.5373631,0.03991967,98.10817621],[4.5373627,0.03991791,98.1079133],[4.53736231,0.03991615,98.10765166],[4.53736192,0.0399144,98.10739106],[4.53736153,0.03991264,98.10713128],[4.53736114,0.03991088,98.10687211],[4.53736074,0.03990912,98.10661333],[4.53736035,0.03990736,98.10635473],[4.53735996,0.0399056,98.1060961],[4.53735956,0.03990385,98.10583725],[4.53735917,0.03990209,98.10557819],[4.53735877,0.03990033,98.10531894],[4.53735838,0.03989857,98.10505953],[4.53735798,0.03989681,98.1048],[4.53735758,0.03989506,98.10454036],[4.53735719,0.0398933,98.10428066],[4.53735679,0.03989154,98.10402092],[4.53735639,0.03988978,98.10376117],[4.53735599,0.03988803,98.10350145],[4.53735559,0.03988627,98.10324178],[4.53735519,0.03988451,98.10298219],[4.53735479,0.03988276,98.10272272],[4.53735439,0.039881,98.1024634],[4.53735399,0.03987924,98.10220425],[4.53735359,0.03987749,98.10194531],[4.53735319,0.03987573,98.10168661],[4.53735279,0.03987397,98.10142817],[4.53735239,0.03987222,98.10117004],[4.53735198,0.03987046,98.10091223],[4.53735158,0.0398687,98.10065478],[4.53735118,0.03986695,98.10039773],[4.53735078,0.03986519,98.1001411],[4.53735037,0.03986344,98.09988494],[4.53734997,0.03986168,98.09962931],[4.53734956,0.03985993,98.09937426],[4.53734916,0.03985817,98.09911986],[4.53734876,0.03985641,98.09886617],[4.53734835,0.03985466,98.09861325],[4.53734795,0.0398529,98.09836116],[4.53734754,0.03985115,98.09810996],[4.53734714,0.03984939,98.09785971],[4.53734673,0.03984764,98.09761047],[4.53734633,0.03984588,98.0973623],[4.53734592,0.03984413,98.09711526],[4.53734552,0.03984237,98.09686941],[4.53734511,0.03984061,98.09662482],[4.5373447,0.03983886,98.09638153],[4.5373443,0.0398371,98.09613962],[4.53734389,0.03983535,98.09589914],[4.53734349,0.03983359,98.09566016],[4.53734308,0.03983184,98.09542273],[4.53734268,0.03983008,98.09518692],[4.53734227,0.03982833,98.09495279],[4.53734187,0.03982657,98.09472039],[4.53734146,0.03982482,98.09448978],[4.53734106,0.03982306,98.09426104],[4.53734065,0.03982131,98.09403422],[4.53734025,0.03981955,98.09380937],[4.53733984,0.03981779,98.09358657],[4.53733944,0.03981604,98.09336587],[4.53733904,0.03981428,98.09314733],[4.53733863,0.03981253,98.09293099],[4.53733823,0.03981077,98.09271684],[4.53733783,0.03980902,98.09250483],[4.53733742,0.03980726,98.09229492],[4.53733702,0.0398055,98.09208706],[4.53733662,0.03980375,98.09188122],[4.53733622,0.03980199,98.09167736],[4.53733582,0.03980024,98.09147544],[4.53733541,0.03979848,98.0912754],[4.53733501,0.03979672,98.09107722],[4.53733461,0.03979497,98.09088085],[4.53733421,0.03979321,98.09068625],[4.53733381,0.03979146,98.09049337],[4.53733341,0.0397897,98.09030219],[4.53733301,0.03978794,98.09011264],[4.53733261,0.03978619,98.08992467],[4.5373322,0.03978443,98.08973822],[4.5373318,0.03978267,98.08955323],[4.5373314,0.03978092,98.0893696],[4.537331,0.03977916,98.08918716],[4.5373306,0.03977741,98.08900574],[4.5373302,0.03977565,98.08882518],[4.5373298,0.03977389,98.08864532],[4.5373294,0.03977214,98.08846599],[4.53732899,0.03977038,98.08828702],[4.53732859,0.03976863,98.08810825],[4.53732819,0.03976687,98.08792952],[4.53732779,0.03976511,98.08775066],[4.53732738,0.03976336,98.08757151],[4.53732698,0.0397616,98.08739189],[4.53732657,0.03975985,98.08721165],[4.53732617,0.03975809,98.08703062],[4.53732576,0.03975634,98.08684863],[4.53732535,0.03975458,98.08666553],[4.53732495,0.03975283,98.08648113],[4.53732454,0.03975107,98.08629529],[4.53732413,0.03974932,98.08610783],[4.53732372,0.03974757,98.08591859],[4.5373233,0.03974581,98.0857274],[4.53732289,0.03974406,98.0855341],[4.53732248,0.03974231,98.08533852],[4.53732206,0.03974055,98.08514061],[4.53732165,0.03973882,98.08494075],[4.53732123,0.03973706,98.08473944],[4.53732082,0.03973531,98.08453715],[4.5373204,0.03973356,98.0843344],[4.53731998,0.03973181,98.08413166],[4.53731956,0.03973006,98.08392943],[4.53731914,0.03972831,98.0837282],[4.53731872,0.03972655,98.08352846],[4.5373183,0.0397248,98.0833307],[4.53731788,0.03972305,98.08313543],[4.53731747,0.0397213,98.08294312],[4.53731705,0.03971955,98.08275427],[4.53731663,0.03971779,98.08256938],[4.53731622,0.03971604,98.08238893],[4.5373158,0.03971429,98.08221342],[4.53731539,0.03971253,98.08204334],[4.53731498,0.03971078,98.08187919],[4.53731457,0.03970903,98.08172145],[4.53731416,0.03970727,98.08157062],[4.53731375,0.03970552,98.08142719],[4.53731335,0.03970376,98.08129167],[4.53731295,0.03970201,98.08116456],[4.53731255,0.03970025,98.08104618],[4.53731215,0.03969849,98.08093616],[4.53731175,0.03969674,98.08083391],[4.53731136,0.03969498,98.08073887],[4.53731097,0.03969322,98.08065047],[4.53731058,0.03969146,98.08056814],[4.53731019,0.0396897,98.08049133],[4.5373098,0.03968794,98.08041944],[4.53730941,0.03968618,98.08035193],[4.53730903,0.03968442,98.08028822],[4.53730864,0.03968266,98.08022774],[4.53730826,0.0396809,98.08016992],[4.53730787,0.03967914,98.0801142],[4.53730748,0.03967738,98.08006],[4.5373071,0.03967562,98.08000677],[4.53730671,0.03967386,98.07995392],[4.53730633,0.0396721,98.07990089],[4.53730594,0.03967034,98.07984711],[4.53730555,0.03966858,98.07979201],[4.53730517,0.03966682,98.07973503],[4.53730478,0.03966507,98.0796756],[4.53730439,0.03966331,98.07961314],[4.53730399,0.03966155,98.07954709],[4.5373036,0.03965979,98.07947687],[4.5373032,0.03965803,98.07940193],[4.5373028,0.03965628,98.07932169],[4.5373024,0.03965452,98.07923558],[4.537302,0.03965276,98.07914304],[4.5373016,0.03965101,98.07904349],[4.53730119,0.03964925,98.07893636],[4.53730078,0.0396475,98.0788211],[4.53730036,0.03964575,98.07869732],[4.53729995,0.03964399,98.07856545],[4.53729953,0.03964224,98.0784261],[4.53729911,0.03964049,98.07827988],[4.53729868,0.03963874,98.0781274],[4.53729825,0.03963699,98.07796928],[4.53729783,0.03963524,98.07780613],[4.5372974,0.03963349,98.07763857],[4.53729696,0.03963174,98.0774672],[4.53729653,0.03962999,98.07729262],[4.5372961,0.03962824,98.07711544],[4.53729566,0.03962649,98.07693625],[4.53729523,0.03962475,98.07675564],[4.53729479,0.039623,98.0765742],[4.53729435,0.03962125,98.07639254],[4.53729391,0.0396195,98.07621125],[4.53729348,0.03961775,98.07603091],[4.53729304,0.03961601,98.07585215],[4.5372926,0.03961426,98.07567555],[4.53729216,0.03961251,98.07550176],[4.53729173,0.03961076,98.07533139],[4.53729129,0.03960901,98.07516506],[4.53729086,0.03960726,98.07500338],[4.53729043,0.03960551,98.07484699],[4.53728999,0.03960377,98.0746965],[4.53728957,0.03960202,98.07455253],[4.53728914,0.03960027,98.0744157],[4.53728871,0.03959851,98.07428662],[4.53728829,0.03959676,98.07416593],[4.53728787,0.03959501,98.07405424],[4.53728745,0.03959326,98.07395215],[4.53728703,0.03959151,98.07385969],[4.53728662,0.03958975,98.07377636],[4.53728621,0.039588,98.07370163],[4.5372858,0.03958624,98.07363497],[4.53728539,0.03958449,98.07357585],[4.53728499,0.03958273,98.07352374],[4.53728458,0.03958098,98.07347811],[4.53728418,0.03957922,98.07343843],[4.53728378,0.03957746,98.07340417],[4.53728338,0.03957571,98.0733748],[4.53728298,0.03957395,98.0733498],[4.53728258,0.03957219,98.07332862],[4.53728219,0.03957043,98.07331075],[4.53728179,0.03956867,98.07329565],[4.53728139,0.03956692,98.07328279],[4.537281,0.03956516,98.07327165],[4.5372806,0.0395634,98.07326169],[4.53728021,0.03956164,98.07325239],[4.53727981,0.03955988,98.07324322],[4.53727941,0.03955813,98.07323364],[4.53727902,0.03955637,98.07322313],[4.53727862,0.03955461,98.07321116],[4.53727822,0.03955285,98.0731972],[4.53727782,0.0395511,98.07318072],[4.53727742,0.03954934,98.0731612],[4.53727701,0.03954758,98.0731381],[4.53727661,0.03954583,98.0731109],[4.5372762,0.03954407,98.07307907],[4.53727579,0.03954232,98.07304208],[4.53727538,0.03954056,98.0729994],[4.53727497,0.03953881,98.07295051],[4.53727455,0.03953706,98.07289487],[4.53727413,0.0395353,98.07283197],[4.53727371,0.03953355,98.07276149],[4.53727329,0.0395318,98.07268402],[4.53727286,0.03953005,98.07260038],[4.53727244,0.0395283,98.07251135],[4.53727201,0.03952655,98.07241776],[4.53727158,0.0395248,98.0723204],[4.53727114,0.03952305,98.07222007],[4.53727071,0.0395213,98.07211759],[4.53727028,0.03951955,98.07201375],[4.53726984,0.0395178,98.07190937],[4.53726941,0.03951605,98.07180524],[4.53726897,0.0395143,98.07170216],[4.53726854,0.03951255,98.07160095],[4.5372681,0.0395108,98.07150241],[4.53726767,0.03950905,98.07140733],[4.53726724,0.0395073,98.07131652],[4.53726681,0.03950555,98.07123079],[4.53726638,0.0395038,98.07115077],[4.53726595,0.03950205,98.07107649],[4.53726552,0.0395003,98.07100779],[4.5372651,0.03949855,98.07094452],[4.53726467,0.0394968,98.07088654],[4.53726425,0.03949505,98.0708337],[4.53726383,0.0394933,98.07078585],[4.53726341,0.03949154,98.07074285],[4.53726299,0.03948979,98.07070454],[4.53726257,0.03948804,98.07067077],[4.53726215,0.03948628,98.07064141],[4.53726173,0.03948453,98.07061631],[4.53726132,0.03948278,98.07059532],[4.5372609,0.03948102,98.07057834],[4.53726049,0.03947927,98.07056523],[4.53726008,0.03947751,98.07055586],[4.53725967,0.03947576,98.07055008],[4.53725926,0.039474,98.07054771],[4.53725884,0.03947225,98.07054857],[4.53725844,0.03947049,98.07055249],[4.53725803,0.03946874,98.0705593],[4.53725762,0.03946698,98.07056883],[4.53725721,0.03946523,98.07058089],[4.5372568,0.03946347,98.07059533],[4.53725639,0.03946172,98.07061197],[4.53725599,0.03945996,98.07063063],[4.53725558,0.0394582,98.07065115],[4.53725517,0.03945645,98.07067334],[4.53725477,0.03945469,98.07069704],[4.53725436,0.03945294,98.07072208],[4.53725395,0.03945118,98.07074828],[4.53725355,0.03944942,98.07077547],[4.53725314,0.03944767,98.07080347],[4.53725273,0.03944591,98.07083212],[4.53725233,0.03944416,98.07086125],[4.53725192,0.0394424,98.07089067],[4.53725151,0.03944064,98.07092023],[4.5372511,0.03943889,98.07094974],[4.5372507,0.03943713,98.07097903],[4.53725029,0.03943538,98.07100794],[4.53724988,0.03943362,98.07103629],[4.53724947,0.03943187,98.07106391],[4.53724906,0.03943011,98.07109063],[4.53724865,0.03942835,98.07111627],[4.53724824,0.0394266,98.07114067],[4.53724783,0.03942484,98.07116366],[4.53724741,0.03942309,98.07118506],[4.537247,0.03942134,98.07120488],[4.53724658,0.03941958,98.07122331],[4.53724617,0.03941783,98.07124052],[4.53724575,0.03941607,98.07125669],[4.53724534,0.03941432,98.071272],[4.53724492,0.03941257,98.07128664],[4.5372445,0.03941081,98.07130077],[4.53724409,0.03940906,98.0713146],[4.53724367,0.0394073,98.07132829],[4.53724325,0.03940555,98.07134202],[4.53724283,0.0394038,98.07135598],[4.53724241,0.03940204,98.07137035],[4.53724199,0.03940029,98.07138531],[4.53724157,0.03939854,98.07140103],[4.53724115,0.03939678,98.0714177],[4.53724074,0.03939503,98.07143549],[4.53724032,0.03939328,98.0714546],[4.5372399,0.03939152,98.07147519],[4.53723948,0.03938977,98.07149745],[4.53723906,0.03938802,98.07152156],[4.53723864,0.03938626,98.07154768],[4.53723823,0.03938451,98.07157585],[4.53723781,0.03938276,98.07160592],[4.53723739,0.039381,98.07163778],[4.53723697,0.03937925,98.07167127],[4.53723656,0.03937749,98.07170627],[4.53723614,0.03937574,98.07174264],[4.53723573,0.03937399,98.07178026],[4.53723531,0.03937223,98.07181903],[4.53723489,0.03937048,98.07185885],[4.53723448,0.03936873,98.07189962],[4.53723406,0.03936697,98.07194123],[4.53723365,0.03936522,98.07198358],[4.53723323,0.03936346,98.07202658],[4.53723281,0.03936171,98.07207011],[4.5372324,0.03935996,98.07211408],[4.53723198,0.0393582,98.07215839],[4.53723156,0.03935645,98.07220293],[4.53723114,0.03935469,98.07224761],[4.53723073,0.03935294,98.07229232],[4.53723031,0.03935119,98.07233695],[4.53722989,0.03934943,98.07238142],[4.53722947,0.03934768,98.07242561],[4.53722905,0.03934592,98.07246943],[4.53722863,0.03934417,98.07251277],[4.53722821,0.03934242,98.07255554],[4.53722779,0.03934066,98.07259763],[4.53722737,0.03933891,98.07263894],[4.53722695,0.03933716,98.0726795],[4.53722653,0.03933541,98.0727194],[4.53722611,0.03933365,98.07275877],[4.53722569,0.0393319,98.07279773],[4.53722526,0.03933015,98.0728364],[4.53722484,0.0393284,98.0728749],[4.53722441,0.03932664,98.07291334],[4.53722399,0.03932489,98.07295185],[4.53722357,0.03932314,98.07299054],[4.53722314,0.03932139,98.07302953],[4.53722272,0.03931963,98.07306894],[4.53722229,0.03931788,98.07310889],[4.53722187,0.03931613,98.07314951],[4.53722144,0.03931438,98.07319089],[4.53722102,0.03931262,98.07323316],[4.53722059,0.03931087,98.07327641],[4.53722017,0.03930912,98.07332073],[4.53721975,0.03930737,98.07336622],[4.53721932,0.03930562,98.07341299],[4.5372189,0.03930386,98.07346112],[4.53721847,0.03930211,98.07351072],[4.53721805,0.03930036,98.07356187],[4.53721763,0.03929861,98.07361469],[4.5372172,0.03929685,98.07366926],[4.53721678,0.0392951,98.07372569],[4.53721636,0.03929335,98.07378406],[4.53721593,0.03929159,98.07384449],[4.53721551,0.03928984,98.07390705],[4.53721509,0.03928809,98.07397185],[4.53721467,0.03928634,98.07403899],[4.53721425,0.03928458,98.07410857],[4.53721383,0.03928283,98.07418067],[4.53721341,0.03928107,98.07425539],[4.53721299,0.03927932,98.07433283],[4.53721257,0.03927757,98.07441304],[4.53721216,0.03927581,98.07449591],[4.53721174,0.03927406,98.07458127],[4.53721132,0.0392723,98.07466896],[4.53721091,0.03927055,98.07475884],[4.53721049,0.03926879,98.07485074],[4.53721007,0.03926704,98.07494451],[4.53720966,0.03926529,98.07503998],[4.53720924,0.03926353,98.07513701],[4.53720883,0.03926178,98.07523542],[4.53720842,0.03926002,98.07533508],[4.537208,0.03925827,98.07543581],[4.53720759,0.03925651,98.07553746],[4.53720717,0.03925476,98.07563988],[4.53720676,0.039253,98.07574291],[4.53720634,0.03925125,98.07584639],[4.53720593,0.03924949,98.07595017],[4.53720551,0.03924774,98.07605409],[4.5372051,0.03924598,98.07615798],[4.53720468,0.03924423,98.07626171],[4.53720427,0.03924247,98.0763651],[4.53720385,0.03924072,98.07646801],[4.53720343,0.03923896,98.07657027],[4.53720302,0.03923721,98.07667174],[4.5372026,0.03923546,98.07677226],[4.53720218,0.0392337,98.07687166],[4.53720176,0.03923195,98.0769698],[4.53720134,0.03923019,98.07706651],[4.53720092,0.03922844,98.07716166],[4.5372005,0.03922669,98.07725524],[4.53720008,0.03922493,98.0773474],[4.53719965,0.03922318,98.0774383],[4.53719923,0.03922143,98.07752809],[4.53719881,0.03921967,98.07761693],[4.53719838,0.03921792,98.07770497],[4.53719796,0.03921617,98.07779237],[4.53719753,0.03921442,98.07787929],[4.53719711,0.03921266,98.07796588],[4.53719668,0.03921091,98.0780523],[4.53719626,0.03920916,98.07813869],[4.53719583,0.03920741,98.07822522],[4.5371954,0.03920566,98.07831204],[4.53719498,0.0392039,98.07839931],[4.53719455,0.03920215,98.07848718],[4.53719412,0.0392004,98.0785758],[4.5371937,0.03919865,98.07866533],[4.53719327,0.03919689,98.07875592],[4.53719284,0.03919514,98.07884774],[4.53719242,0.03919339,98.07894092],[4.53719199,0.03919164,98.07903563],[4.53719157,0.03918988,98.07913203],[4.53719114,0.03918813,98.07923025],[4.53719072,0.03918638,98.07933047],[4.53719029,0.03918463,98.07943283],[4.53718987,0.03918287,98.07953748],[4.53718945,0.03918112,98.07964458],[4.53718902,0.03917937,98.07975429],[4.5371886,0.03917761,98.07986675],[4.53718818,0.03917586,98.07998212],[4.53718776,0.03917411,98.08010051],[4.53718734,0.03917235,98.0802218],[4.53718692,0.0391706,98.08034584],[4.5371865,0.03916884,98.08047248],[4.53718608,0.03916709,98.08060158],[4.53718567,0.03916534,98.08073299],[4.53718525,0.03916358,98.08086657],[4.53718483,0.03916183,98.08100218],[4.53718442,0.03916007,98.08113968],[4.537184,0.03915832,98.08127893],[4.53718358,0.03915656,98.08141979],[4.53718317,0.03915481,98.08156212],[4.53718275,0.03915305,98.08170577],[4.53718234,0.0391513,98.08185061],[4.53718192,0.03914954,98.08199649],[4.53718151,0.03914779,98.08214328],[4.53718109,0.03914603,98.08229083],[4.53718068,0.03914428,98.08243901],[4.53718026,0.03914252,98.08258768],[4.53717985,0.03914077,98.08273668],[4.53717943,0.03913901,98.0828859],[4.53717902,0.03913726,98.08303518],[4.5371786,0.0391355,98.08318438],[4.53717819,0.03913375,98.08333337],[4.53717777,0.039132,98.08348201],[4.53717735,0.03913024,98.08363015],[4.53717694,0.03912849,98.08377766],[4.53717652,0.03912673,98.08392441],[4.5371761,0.03912498,98.08407036],[4.53717568,0.03912323,98.08421558],[4.53717526,0.03912147,98.08436016],[4.53717484,0.03911972,98.08450418],[4.53717442,0.03911797,98.0846477],[4.537174,0.03911621,98.08479081],[4.53717358,0.03911446,98.08493358],[4.53717316,0.03911271,98.08507609],[4.53717274,0.03911096,98.08521843],[4.53717232,0.0391092,98.08536065],[4.5371719,0.03910745,98.08550285],[4.53717147,0.0391057,98.0856451],[4.53717105,0.03910394,98.08578748],[4.53717063,0.03910219,98.08593006],[4.53717021,0.03910044,98.08607292],[4.53716978,0.03909869,98.08621613],[4.53716936,0.03909693,98.08635978],[4.53716894,0.03909518,98.08650394],[4.53716852,0.03909343,98.08664869],[4.53716809,0.03909168,98.0867941],[4.53716767,0.03908992,98.08694025],[4.53716725,0.03908817,98.08708722],[4.53716682,0.03908642,98.08723508],[4.5371664,0.03908467,98.0873839],[4.53716598,0.03908291,98.08753378],[4.53716556,0.03908116,98.08768477],[4.53716513,0.03907941,98.08783697],[4.53716471,0.03907765,98.08799044],[4.53716429,0.0390759,98.08814525],[4.53716387,0.03907415,98.0883015],[4.53716345,0.0390724,98.08845924],[4.53716337,0.03907208,98.08848807]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1003400","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2}},{"geometry":{"coordinates":[[4.53745792,0.04019199,98.26618392],[4.53745753,0.04019023,98.26573888],[4.53745714,0.04018847,98.26529487],[4.53745674,0.04018671,98.2648519],[4.53745635,0.04018495,98.26440996],[4.53745596,0.04018319,98.26396905],[4.53745556,0.04018143,98.26352918],[4.53745517,0.04017967,98.26309034],[4.53745478,0.04017791,98.26265253],[4.53745438,0.04017615,98.26221576],[4.53745399,0.04017439,98.26178003],[4.5374536,0.04017263,98.26134533],[4.5374532,0.04017087,98.26091166],[4.53745281,0.04016911,98.26047903],[4.53745242,0.04016735,98.26004743],[4.53745202,0.04016559,98.25961687],[4.53745163,0.04016383,98.25918735],[4.53745123,0.04016207,98.25875886],[4.53745084,0.04016031,98.25833141],[4.53745045,0.04015855,98.25790499],[4.53745005,0.04015679,98.25747961],[4.53744966,0.04015503,98.25705527],[4.53744927,0.04015327,98.25663196],[4.53744887,0.04015151,98.25620969],[4.53744848,0.04014975,98.25578846],[4.53744808,0.04014799,98.25536826],[4.53744769,0.04014623,98.25494911],[4.5374473,0.04014448,98.25453099],[4.5374469,0.04014272,98.2541139],[4.53744651,0.04014096,98.25369786],[4.53744611,0.0401392,98.25328286],[4.53744572,0.04013744,98.25286889],[4.53744532,0.04013568,98.25245596],[4.53744493,0.04013392,98.25204407],[4.53744454,0.04013216,98.25163322],[4.53744414,0.0401304,98.25122341],[4.53744375,0.04012864,98.25081464],[4.53744335,0.04012688,98.25040691],[4.53744296,0.04012512,98.25000022],[4.53744256,0.04012336,98.24959457],[4.53744217,0.0401216,98.24918996],[4.53744177,0.04011984,98.24878638],[4.53744138,0.04011808,98.24838385],[4.53744098,0.04011632,98.24798236],[4.53744059,0.04011457,98.24758192],[4.53744019,0.04011281,98.24718251],[4.5374398,0.04011105,98.24678414],[4.5374394,0.04010929,98.24638682],[4.53743901,0.04010753,98.24599054],[4.53743861,0.04010577,98.2455953],[4.53743822,0.04010401,98.2452011],[4.53743782,0.04010225,98.24480794],[4.53743743,0.04010049,98.24441583],[4.53743703,0.04009873,98.24402476],[4.53743664,0.04009697,98.24363473],[4.53743624,0.04009521,98.24324574],[4.53743584,0.04009345,98.2428578],[4.53743545,0.0400917,98.2424709],[4.53743505,0.04008994,98.24208505],[4.53743466,0.04008818,98.24170024],[4.53743426,0.04008642,98.24131647],[4.53743387,0.04008466,98.24093375],[4.53743347,0.0400829,98.24055207],[4.53743307,0.04008114,98.24017143],[4.53743268,0.04007938,98.23979184],[4.53743228,0.04007762,98.2394133],[4.53743189,0.04007586,98.2390358],[4.53743149,0.0400741,98.23865935],[4.53743109,0.04007235,98.23828394],[4.5374307,0.04007059,98.23790957],[4.5374303,0.04006883,98.23753626],[4.5374299,0.04006707,98.23716399],[4.53742951,0.04006531,98.23679276],[4.53742911,0.04006355,98.23642258],[4.53742871,0.04006179,98.23605345],[4.53742832,0.04006003,98.23568536],[4.53742792,0.04005827,98.23531833],[4.53742752,0.04005652,98.23495234],[4.53742713,0.04005476,98.23458739],[4.53742673,0.040053,98.23422349],[4.53742633,0.04005124,98.23386065],[4.53742594,0.04004948,98.23349884],[4.53742554,0.04004772,98.23313809],[4.53742514,0.04004596,98.23277839],[4.53742475,0.0400442,98.23241973],[4.53742435,0.04004245,98.23206212],[4.53742395,0.04004069,98.23170556],[4.53742355,0.04003893,98.23135005],[4.53742316,0.04003717,98.23099559],[4.53742276,0.04003541,98.23064218],[4.53742236,0.04003365,98.23028982],[4.53742196,0.04003189,98.22993851],[4.53742157,0.04003014,98.22958825],[4.53742117,0.04002838,98.22923903],[4.53742077,0.04002662,98.22889087],[4.53742037,0.04002486,98.22854376],[4.53741997,0.0400231,98.2281977],[4.53741958,0.04002134,98.22785269],[4.53741918,0.04001958,98.22750873],[4.53741878,0.04001783,98.22716582],[4.53741838,0.04001607,98.22682397],[4.53741798,0.04001431,98.22648316],[4.53741758,0.04001255,98.22614341],[4.53741719,0.04001079,98.22580471],[4.53741679,0.04000903,98.22546706],[4.53741639,0.04000728,98.22513046],[4.53741599,0.04000552,98.22479492],[4.53741559,0.04000376,98.22446043],[4.53741519,0.040002,98.22412699],[4.53741479,0.04000024,98.22379461],[4.53741439,0.03999848,98.22346328],[4.537414,0.03999673,98.223133],[4.5374136,0.03999497,98.22280377],[4.5374132,0.03999321,98.2224756],[4.5374128,0.03999145,98.22214848],[4.5374124,0.03998969,98.2218224],[4.537412,0.03998793,98.22149738],[4.5374116,0.03998618,98.2211734],[4.5374112,0.03998442,98.22085046],[4.5374108,0.03998266,98.22052857],[4.5374104,0.0399809,98.22020773],[4.53741,0.03997914,98.21988792],[4.5374096,0.03997739,98.21956915],[4.5374092,0.03997563,98.21925143],[4.5374088,0.03997387,98.21893474],[4.5374084,0.03997211,98.21861908],[4.537408,0.03997035,98.21830446],[4.5374076,0.0399686,98.21799088],[4.5374072,0.03996684,98.21767832],[4.5374068,0.03996508,98.2173668],[4.5374064,0.03996332,98.21705631],[4.537406,0.03996156,98.21674685],[4.5374056,0.03995981,98.21643841],[4.5374052,0.03995805,98.216131],[4.5374048,0.03995629,98.21582461],[4.5374044,0.03995453,98.21551925],[4.53740399,0.03995278,98.21521491],[4.53740359,0.03995102,98.21491158],[4.53740319,0.03994926,98.21460928],[4.53740279,0.0399475,98.214308],[4.53740239,0.03994574,98.21400773],[4.53740199,0.03994399,98.21370848],[4.53740159,0.03994223,98.21341025],[4.53740119,0.03994047,98.21311302],[4.53740078,0.03993871,98.21281681],[4.53740038,0.03993696,98.21252161],[4.53739998,0.0399352,98.21222742],[4.53739958,0.03993344,98.21193423],[4.53739918,0.03993168,98.21164205],[4.53739878,0.03992993,98.21135088],[4.53739837,0.03992817,98.21106071],[4.53739797,0.03992641,98.21077154],[4.53739757,0.03992465,98.21048338],[4.53739717,0.0399229,98.21019621],[4.53739676,0.03992114,98.20991005],[4.53739636,0.03991938,98.20962488],[4.53739596,0.03991762,98.2093407],[4.53739556,0.03991587,98.20905753],[4.53739515,0.03991411,98.20877534],[4.53739475,0.03991235,98.20849415],[4.53739435,0.0399106,98.20821395],[4.53739394,0.03990884,98.20793474],[4.53739354,0.03990708,98.20765652],[4.53739314,0.03990532,98.20737929],[4.53739273,0.03990357,98.20710304],[4.53739233,0.03990181,98.20682778],[4.53739193,0.03990005,98.20655352],[4.53739152,0.0398983,98.20628026],[4.53739112,0.03989654,98.20600801],[4.53739072,0.03989478,98.20573676],[4.53739031,0.03989302,98.20546652],[4.53738991,0.03989127,98.2051973],[4.53738951,0.03988951,98.20492911],[4.5373891,0.03988775,98.20466193],[4.5373887,0.039886,98.20439579],[4.53738829,0.03988424,98.20413068],[4.53738789,0.03988248,98.20386661],[4.53738748,0.03988073,98.20360359],[4.53738708,0.03987897,98.20334161],[4.53738668,0.03987721,98.20308068],[4.53738627,0.03987545,98.20282081],[4.53738587,0.0398737,98.202562],[4.53738546,0.03987194,98.20230426],[4.53738506,0.03987018,98.20204759],[4.53738465,0.03986843,98.20179199],[4.53738425,0.03986667,98.20153748],[4.53738384,0.03986491,98.20128404],[4.53738344,0.03986316,98.2010317],[4.53738303,0.0398614,98.20078045],[4.53738263,0.03985964,98.2005303],[4.53738222,0.03985789,98.20028124],[4.53738182,0.03985613,98.2000333],[4.53738141,0.03985437,98.19978647],[4.53738101,0.03985262,98.19954075],[4.5373806,0.03985086,98.19929616],[4.5373802,0.0398491,98.19905269],[4.53737979,0.03984735,98.19881035],[4.53737939,0.03984559,98.19856915],[4.53737898,0.03984383,98.19832908],[4.53737857,0.03984208,98.19809016],[4.53737817,0.03984032,98.19785239],[4.53737776,0.03983856,98.19761577],[4.53737736,0.03983681,98.1973803],[4.53737695,0.03983505,98.197146],[4.53737655,0.03983329,98.19691287],[4.53737614,0.03983154,98.19668091],[4.53737573,0.03982978,98.19645012],[4.53737533,0.03982802,98.19622051],[4.53737492,0.03982627,98.19599209],[4.53737452,0.03982451,98.19576486],[4.53737411,0.03982276,98.19553883],[4.53737371,0.039821,98.19531399],[4.5373733,0.03981924,98.19509036],[4.53737289,0.03981749,98.19486793],[4.53737249,0.03981573,98.19464672],[4.53737208,0.03981397,98.19442672],[4.53737168,0.03981222,98.19420795],[4.53737127,0.03981046,98.19399041],[4.53737086,0.0398087,98.19377409],[4.53737046,0.03980695,98.19355901],[4.53737005,0.03980519,98.19334517],[4.53736965,0.03980343,98.19313258],[4.53736924,0.03980168,98.19292124],[4.53736884,0.03979992,98.19271115],[4.53736843,0.03979816,98.19250232],[4.53736802,0.03979641,98.19229476],[4.53736762,0.03979465,98.19208846],[4.53736721,0.0397929,98.19188344],[4.53736681,0.03979114,98.19167969],[4.5373664,0.03978938,98.19147723],[4.53736599,0.03978763,98.19127605],[4.53736559,0.03978587,98.19107617],[4.53736518,0.03978411,98.19087758],[4.53736478,0.03978236,98.19068029],[4.53736437,0.0397806,98.1904843],[4.53736396,0.03977884,98.19028959],[4.53736356,0.03977709,98.19009616],[4.53736315,0.03977533,98.18990399],[4.53736275,0.03977357,98.18971308],[4.53736234,0.03977182,98.1895234],[4.53736194,0.03977006,98.18933496],[4.53736153,0.0397683,98.18914773],[4.53736112,0.03976655,98.18896171],[4.53736072,0.03976479,98.18877689],[4.53736031,0.03976304,98.18859325],[4.53735991,0.03976128,98.18841078],[4.5373595,0.03975952,98.18822947],[4.53735909,0.03975777,98.18804932],[4.53735869,0.03975601,98.1878703],[4.53735828,0.03975425,98.18769241],[4.53735788,0.0397525,98.18751563],[4.53735747,0.03975074,98.18733996],[4.53735706,0.03974898,98.18716539],[4.53735666,0.03974723,98.18699189],[4.53735625,0.03974547,98.18681947],[4.53735584,0.03974372,98.1866481],[4.53735544,0.03974196,98.18647778],[4.53735503,0.0397402,98.1863085],[4.53735462,0.03973845,98.18614024],[4.53735422,0.03973669,98.185973],[4.53735381,0.03973493,98.18580675],[4.5373534,0.03973318,98.1856415],[4.537353,0.03973144,98.18547723],[4.53735259,0.03972968,98.18531392],[4.53735219,0.03972793,98.18515157],[4.53735178,0.03972617,98.18499017],[4.53735137,0.03972441,98.1848297],[4.53735097,0.03972266,98.18467015],[4.53735056,0.0397209,98.18451151],[4.53735015,0.03971915,98.18435377],[4.53734974,0.03971739,98.18419692],[4.53734934,0.03971563,98.18404094],[4.53734893,0.03971388,98.18388583],[4.53734852,0.03971212,98.18373157],[4.53734811,0.03971037,98.18357816],[4.5373477,0.03970861,98.18342557],[4.53734729,0.03970686,98.18327381],[4.53734689,0.0397051,98.18312285],[4.53734648,0.03970334,98.18297269],[4.53734607,0.03970159,98.18282331],[4.53734566,0.03969983,98.18267471],[4.53734525,0.03969808,98.18252687],[4.53734484,0.03969632,98.1823798],[4.53734443,0.03969457,98.18223349],[4.53734402,0.03969281,98.18208795],[4.53734361,0.03969105,98.18194317],[4.5373432,0.0396893,98.18179917],[4.53734279,0.03968754,98.18165593],[4.53734238,0.03968579,98.18151346],[4.53734197,0.03968403,98.18137177],[4.53734156,0.03968228,98.18123085],[4.53734115,0.03968052,98.1810907],[4.53734074,0.03967877,98.18095132],[4.53734033,0.03967701,98.18081273],[4.53733992,0.03967526,98.18067491],[4.53733951,0.0396735,98.18053786],[4.5373391,0.03967175,98.1804016],[4.53733869,0.03966999,98.18026612],[4.53733828,0.03966824,98.18013141],[4.53733786,0.03966648,98.17999749],[4.53733745,0.03966473,98.17986436],[4.53733704,0.03966297,98.179732],[4.53733663,0.03966122,98.17960044],[4.53733622,0.03965946,98.17946966],[4.5373358,0.03965771,98.17933966],[4.53733539,0.03965595,98.17921046],[4.53733498,0.0396542,98.17908204],[4.53733457,0.03965244,98.17895442],[4.53733416,0.03965069,98.17882759],[4.53733374,0.03964893,98.17870155],[4.53733333,0.03964718,98.1785763],[4.53733292,0.03964542,98.17845185],[4.5373325,0.03964367,98.1783282],[4.53733209,0.03964191,98.17820534],[4.53733168,0.03964016,98.17808328],[4.53733126,0.0396384,98.17796202],[4.53733085,0.03963665,98.17784157],[4.53733044,0.03963489,98.17772191],[4.53733002,0.03963314,98.17760306],[4.53732961,0.03963138,98.177485],[4.5373292,0.03962963,98.17736776],[4.53732878,0.03962788,98.17725132],[4.53732837,0.03962612,98.17713569],[4.53732795,0.03962437,98.17702086],[4.53732754,0.03962261,98.17690683],[4.53732712,0.03962086,98.17679358],[4.53732671,0.0396191,98.1766811],[4.5373263,0.03961735,98.17656936],[4.53732588,0.03961559,98.17645835],[4.53732547,0.03961384,98.17634806],[4.53732505,0.03961209,98.17623846],[4.53732464,0.03961033,98.17612954],[4.53732422,0.03960858,98.17602129],[4.5373238,0.03960682,98.17591371],[4.53732339,0.03960507,98.17580681],[4.53732297,0.03960331,98.1757006],[4.53732256,0.03960156,98.17559509],[4.53732214,0.03959981,98.17549029],[4.53732172,0.03959805,98.1753862],[4.53732131,0.0395963,98.17528284],[4.53732089,0.03959454,98.17518021],[4.53732048,0.03959279,98.17507832],[4.53732006,0.03959104,98.17497719],[4.53731964,0.03958928,98.17487681],[4.53731923,0.03958753,98.1747772],[4.53731881,0.03958577,98.17467837],[4.53731839,0.03958402,98.17458033],[4.53731797,0.03958227,98.17448308],[4.53731756,0.03958051,98.17438664],[4.53731714,0.03957876,98.174291],[4.53731672,0.03957701,98.17419619],[4.5373163,0.03957525,98.17410221],[4.53731589,0.0395735,98.17400907],[4.53731547,0.03957174,98.17391678],[4.53731505,0.03956999,98.17382534],[4.53731463,0.03956824,98.17373477],[4.53731422,0.03956648,98.17364507],[4.5373138,0.03956473,98.17355626],[4.53731338,0.03956298,98.17346833],[4.53731296,0.03956122,98.17338131],[4.53731254,0.03955947,98.1732952],[4.53731213,0.03955771,98.17321001],[4.53731171,0.03955596,98.17312574],[4.53731129,0.03955421,98.17304241],[4.53731087,0.03955245,98.17296002],[4.53731045,0.0395507,98.17287858],[4.53731003,0.03954895,98.17279811],[4.53730962,0.03954719,98.17271861],[4.5373092,0.03954544,98.17264009],[4.53730878,0.03954368,98.17256255],[4.53730836,0.03954193,98.17248602],[4.53730794,0.03954018,98.17241048],[4.53730752,0.03953842,98.17233597],[4.53730711,0.03953667,98.17226247],[4.53730669,0.03953492,98.17219001],[4.53730627,0.03953316,98.17211859],[4.53730585,0.03953141,98.17204822],[4.53730543,0.03952966,98.17197891],[4.53730501,0.0395279,98.17191066],[4.5373046,0.03952615,98.17184349],[4.53730418,0.03952439,98.17177741],[4.53730376,0.03952264,98.17171242],[4.53730334,0.03952089,98.17164853],[4.53730292,0.03951913,98.17158575],[4.5373025,0.03951738,98.17152409],[4.53730208,0.03951563,98.17146355],[4.53730167,0.03951387,98.17140416],[4.53730125,0.03951212,98.17134591],[4.53730083,0.03951037,98.17128882],[4.53730041,0.03950861,98.17123288],[4.53729999,0.03950686,98.17117812],[4.53729958,0.0395051,98.17112454],[4.53729916,0.03950335,98.17107215],[4.53729874,0.0395016,98.17102096],[4.53729832,0.03949984,98.17097097],[4.5372979,0.03949809,98.1709222],[4.53729749,0.03949633,98.17087466],[4.53729707,0.03949458,98.17082834],[4.53729665,0.03949283,98.17078327],[4.53729623,0.03949107,98.17073944],[4.53729582,0.03948932,98.17069688],[4.5372954,0.03948757,98.17065558],[4.53729498,0.03948581,98.17061556],[4.53729456,0.03948406,98.17057682],[4.53729415,0.0394823,98.17053938],[4.53729373,0.03948055,98.17050324],[4.53729331,0.03947879,98.17046841],[4.5372929,0.03947704,98.17043489],[4.53729248,0.03947529,98.17040273],[4.53729206,0.03947353,98.17037194],[4.53729165,0.03947178,98.17034256],[4.53729123,0.03947002,98.17031462],[4.53729081,0.03946827,98.17028811],[4.5372904,0.03946652,98.17026301],[4.53728998,0.03946476,98.1702393],[4.53728957,0.03946301,98.17021697],[4.53728915,0.03946125,98.170196],[4.53728873,0.0394595,98.17017637],[4.53728832,0.03945774,98.17015807],[4.5372879,0.03945599,98.17014108],[4.53728749,0.03945423,98.17012538],[4.53728707,0.03945248,98.17011095],[4.53728666,0.03945073,98.17009778],[4.53728624,0.03944897,98.17008586],[4.53728583,0.03944722,98.17007515],[4.53728541,0.03944546,98.17006566],[4.537285,0.03944371,98.17005735],[4.53728458,0.03944195,98.17005022],[4.53728417,0.0394402,98.17004425],[4.53728375,0.03943844,98.17003941],[4.53728334,0.03943669,98.1700357],[4.53728293,0.03943493,98.17003309],[4.53728251,0.03943318,98.17003158],[4.5372821,0.03943142,98.17003113],[4.53728168,0.03942967,98.17003174],[4.53728127,0.03942791,98.17003338],[4.53728085,0.03942616,98.17003605],[4.53728044,0.0394244,98.17003972],[4.53728003,0.03942265,98.17004438],[4.53727961,0.03942089,98.17005001],[4.5372792,0.03941914,98.1700566],[4.53727878,0.03941738,98.17006412],[4.53727837,0.03941563,98.17007256],[4.53727795,0.03941387,98.1700819],[4.53727754,0.03941212,98.17009213],[4.53727713,0.03941037,98.17010323],[4.53727671,0.03940861,98.17011518],[4.5372763,0.03940686,98.17012797],[4.53727588,0.0394051,98.17014157],[4.53727547,0.03940335,98.17015598],[4.53727505,0.03940159,98.17017117],[4.53727464,0.03939984,98.17018714],[4.53727422,0.03939808,98.17020385],[4.53727381,0.03939633,98.1702213],[4.5372734,0.03939457,98.17023946],[4.53727298,0.03939282,98.17025833],[4.53727257,0.03939106,98.17027788],[4.53727215,0.03938931,98.1702981],[4.53727174,0.03938755,98.17031897],[4.53727132,0.0393858,98.17034047],[4.53727091,0.03938404,98.17036259],[4.53727049,0.03938229,98.17038531],[4.53727008,0.03938053,98.17040862],[4.53726966,0.03937878,98.17043249],[4.53726925,0.03937702,98.17045692],[4.53726883,0.03937527,98.17048187],[4.53726841,0.03937352,98.17050735],[4.537268,0.03937176,98.17053332],[4.53726758,0.03937001,98.17055978],[4.53726717,0.03936825,98.17058671],[4.53726675,0.0393665,98.1706141],[4.53726633,0.03936474,98.17064198],[4.53726592,0.03936299,98.17067035],[4.5372655,0.03936124,98.17069924],[4.53726508,0.03935948,98.17072866],[4.53726467,0.03935773,98.17075863],[4.53726425,0.03935597,98.17078916],[4.53726383,0.03935422,98.17082028],[4.53726342,0.03935247,98.17085198],[4.537263,0.03935071,98.1708843],[4.53726258,0.03934896,98.17091725],[4.53726217,0.0393472,98.17095084],[4.53726175,0.03934545,98.1709851],[4.53726133,0.03934369,98.17102002],[4.53726091,0.03934194,98.17105565],[4.5372605,0.03934019,98.17109198],[4.53726008,0.03933843,98.17112903],[4.53725966,0.03933668,98.17116682],[4.53725924,0.03933492,98.17120537],[4.53725883,0.03933317,98.1712447],[4.53725841,0.03933142,98.17128481],[4.53725799,0.03932966,98.17132573],[4.53725757,0.03932791,98.17136746],[4.53725716,0.03932615,98.17141004],[4.53725674,0.0393244,98.17145346],[4.53725632,0.03932264,98.17149776],[4.5372559,0.03932089,98.17154294],[4.53725548,0.03931914,98.17158902],[4.53725507,0.03931738,98.17163602],[4.53725465,0.03931563,98.17168395],[4.53725423,0.03931387,98.17173282],[4.53725382,0.03931212,98.17178267],[4.5372534,0.03931037,98.17183349],[4.53725298,0.03930861,98.17188531],[4.53725256,0.03930686,98.17193814],[4.53725215,0.0393051,98.17199198],[4.53725173,0.03930335,98.17204683],[4.53725131,0.03930159,98.17210269],[4.53725089,0.03929984,98.17215954],[4.53725048,0.03929809,98.17221739],[4.53725006,0.03929633,98.17227622],[4.53724964,0.03929458,98.17233604],[4.53724923,0.03929282,98.17239684],[4.53724881,0.03929107,98.17245861],[4.53724839,0.03928931,98.17252134],[4.53724798,0.03928756,98.17258504],[4.53724756,0.0392858,98.1726497],[4.53724714,0.03928405,98.17271531],[4.53724673,0.0392823,98.17278186],[4.53724631,0.03928054,98.17284936],[4.53724589,0.03927879,98.1729178],[4.53724548,0.03927703,98.17298716],[4.53724506,0.03927528,98.17305745],[4.53724465,0.03927352,98.17312866],[4.53724423,0.03927177,98.17320079],[4.53724381,0.03927001,98.17327381],[4.5372434,0.03926826,98.17334774],[4.53724298,0.0392665,98.17342257],[4.53724256,0.03926475,98.17349828],[4.53724215,0.039263,98.17357487],[4.53724173,0.03926124,98.17365234],[4.53724132,0.03925949,98.17373068],[4.5372409,0.03925773,98.17380989],[4.53724048,0.03925598,98.17388995],[4.53724007,0.03925422,98.17397087],[4.53723965,0.03925247,98.17405262],[4.53723924,0.03925071,98.17413522],[4.53723882,0.03924896,98.17421866],[4.5372384,0.0392472,98.17430292],[4.53723799,0.03924545,98.174388],[4.53723757,0.03924369,98.17447389],[4.53723716,0.03924194,98.1745606],[4.53723674,0.03924019,98.17464811],[4.53723633,0.03923843,98.17473642],[4.53723591,0.03923668,98.17482551],[4.53723549,0.03923492,98.1749154],[4.53723508,0.03923317,98.17500606],[4.53723466,0.03923141,98.17509749],[4.53723425,0.03922966,98.1751897],[4.53723383,0.0392279,98.17528266],[4.53723342,0.03922615,98.17537637],[4.537233,0.03922439,98.17547084],[4.53723258,0.03922264,98.17556605],[4.53723217,0.03922088,98.175662],[4.53723175,0.03921913,98.17575867],[4.53723134,0.03921737,98.17585607],[4.53723092,0.03921562,98.17595419],[4.53723051,0.03921386,98.17605303],[4.53723009,0.03921211,98.17615257],[4.53722967,0.03921036,98.17625281],[4.53722926,0.0392086,98.17635374],[4.53722884,0.03920685,98.17645536],[4.53722843,0.03920509,98.17655767],[4.53722801,0.03920334,98.17666065],[4.53722759,0.03920158,98.17676431],[4.53722718,0.03919983,98.17686862],[4.53722676,0.03919807,98.1769736],[4.53722635,0.03919632,98.17707923],[4.53722593,0.03919456,98.17718551],[4.53722551,0.03919281,98.17729242],[4.5372251,0.03919105,98.17739998],[4.53722468,0.0391893,98.17750816],[4.53722427,0.03918754,98.17761696],[4.53722385,0.03918579,98.17772638],[4.53722343,0.03918404,98.17783641],[4.53722302,0.03918228,98.17794705],[4.5372226,0.03918053,98.17805829],[4.53722219,0.03917877,98.17817012],[4.53722177,0.03917702,98.17828253],[4.53722135,0.03917526,98.17839553],[4.53722094,0.03917351,98.1785091],[4.53722052,0.03917175,98.17862324],[4.5372201,0.03917,98.17873795],[4.53721969,0.03916824,98.17885321],[4.53721927,0.03916649,98.17896903],[4.53721885,0.03916473,98.17908539],[4.53721844,0.03916298,98.17920229],[4.53721802,0.03916123,98.17931972],[4.5372176,0.03915947,98.17943769],[4.53721719,0.03915772,98.17955621],[4.53721677,0.03915596,98.17967527],[4.53721635,0.03915421,98.17979489],[4.53721594,0.03915245,98.17991507],[4.53721552,0.0391507,98.18003582],[4.5372151,0.03914894,98.18015715],[4.53721469,0.03914719,98.18027906],[4.53721427,0.03914543,98.18040155],[4.53721385,0.03914368,98.18052464],[4.53721344,0.03914193,98.18064834],[4.53721302,0.03914017,98.18077264],[4.5372126,0.03913842,98.18089755],[4.53721218,0.03913666,98.18102309],[4.53721177,0.03913491,98.18114925],[4.53721135,0.03913315,98.18127605],[4.53721093,0.0391314,98.18140348],[4.53721052,0.03912965,98.18153156],[4.5372101,0.03912789,98.1816603],[4.53720968,0.03912614,98.18178969],[4.53720926,0.03912438,98.18191975],[4.53720885,0.03912263,98.18205049],[4.53720843,0.03912087,98.1821819],[4.53720801,0.03911912,98.18231399],[4.53720759,0.03911737,98.18244678],[4.53720718,0.03911561,98.18258026],[4.53720676,0.03911386,98.18271445],[4.53720634,0.0391121,98.18284935],[4.53720592,0.03911035,98.18298497],[4.53720551,0.0391086,98.18312131],[4.53720509,0.03910684,98.18325838],[4.53720467,0.03910509,98.18339618],[4.53720425,0.03910333,98.18353473],[4.53720384,0.03910158,98.18367403],[4.53720342,0.03909982,98.18381408],[4.537203,0.03909807,98.18395489],[4.53720258,0.03909632,98.18409647],[4.53720217,0.03909456,98.18423883],[4.53720175,0.03909281,98.18438196],[4.53720133,0.03909105,98.18452589],[4.53720092,0.0390893,98.1846706],[4.5372005,0.03908755,98.18481612],[4.53720008,0.03908579,98.18496244],[4.53719966,0.03908404,98.18510957],[4.53719925,0.03908228,98.18525752],[4.53719883,0.03908053,98.1854063],[4.53719841,0.03907877,98.18555591],[4.537198,0.03907702,98.18570635],[4.53719758,0.03907527,98.18585764],[4.53719716,0.03907351,98.18600978],[4.53719674,0.03907176,98.18616277],[4.53719633,0.03907,98.18631663],[4.53719591,0.03906825,98.18647135],[4.53719549,0.03906649,98.18662695],[4.53719508,0.03906474,98.18678343],[4.537195,0.03906442,98.18681196]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1003400","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}},{"geometry":{"coordinates":[[4.53722947,0.03905608,98.29396748],[4.53722955,0.03905639,98.29394371],[4.53722997,0.03905815,98.29381326],[4.53723039,0.0390599,98.29368341],[4.53723081,0.03906166,98.29355416],[4.53723123,0.03906341,98.29342551],[4.53723165,0.03906516,98.29329745],[4.53723207,0.03906692,98.29316998],[4.53723249,0.03906867,98.29304311],[4.53723291,0.03907043,98.29291683],[4.53723332,0.03907218,98.29279114],[4.53723374,0.03907393,98.29266604],[4.53723416,0.03907569,98.29254151],[4.53723458,0.03907744,98.29241758],[4.537235,0.0390792,98.29229422],[4.53723542,0.03908095,98.29217145],[4.53723584,0.03908271,98.29204925],[4.53723626,0.03908446,98.29192763],[4.53723668,0.03908621,98.29180658],[4.5372371,0.03908797,98.2916861],[4.53723751,0.03908972,98.2915662],[4.53723793,0.03909148,98.29144686],[4.53723835,0.03909323,98.29132809],[4.53723877,0.03909498,98.29120989],[4.53723919,0.03909674,98.29109225],[4.53723961,0.03909849,98.29097517],[4.53724003,0.03910025,98.29085865],[4.53724044,0.039102,98.29074268],[4.53724086,0.03910376,98.29062728],[4.53724128,0.03910551,98.29051242],[4.5372417,0.03910726,98.29039812],[4.53724212,0.03910902,98.29028437],[4.53724254,0.03911077,98.29017117],[4.53724295,0.03911253,98.29005852],[4.53724337,0.03911428,98.28994641],[4.53724379,0.03911604,98.28983484],[4.53724421,0.03911779,98.28972381],[4.53724463,0.03911954,98.28961332],[4.53724504,0.0391213,98.28950338],[4.53724546,0.03912305,98.28939396],[4.53724588,0.03912481,98.28928508],[4.5372463,0.03912656,98.28917673],[4.53724671,0.03912832,98.28906891],[4.53724713,0.03913007,98.28896162],[4.53724755,0.03913183,98.28885486],[4.53724797,0.03913358,98.28874862],[4.53724838,0.03913533,98.2886429],[4.5372488,0.03913709,98.28853771],[4.53724922,0.03913884,98.28843303],[4.53724963,0.0391406,98.28832887],[4.53725005,0.03914235,98.28822523],[4.53725047,0.03914411,98.28812209],[4.53725089,0.03914586,98.28801947],[4.5372513,0.03914761,98.28791736],[4.53725172,0.03914937,98.28781576],[4.53725214,0.03915112,98.28771466],[4.53725255,0.03915288,98.28761407],[4.53725297,0.03915463,98.28751397],[4.53725339,0.03915639,98.28741439],[4.5372538,0.03915814,98.28731532],[4.53725422,0.0391599,98.28721677],[4.53725464,0.03916165,98.28711876],[4.53725505,0.0391634,98.28702129],[4.53725547,0.03916516,98.28692438],[4.53725589,0.03916691,98.28682804],[4.5372563,0.03916867,98.28673228],[4.53725672,0.03917042,98.28663711],[4.53725714,0.03917218,98.28654253],[4.53725755,0.03917393,98.28644857],[4.53725797,0.03917569,98.28635522],[4.53725839,0.03917744,98.28626251],[4.5372588,0.03917919,98.28617044],[4.53725922,0.03918095,98.28607902],[4.53725963,0.0391827,98.28598826],[4.53726005,0.03918446,98.28589818],[4.53726047,0.03918621,98.28580879],[4.53726088,0.03918797,98.28572011],[4.5372613,0.03918972,98.28563214],[4.53726172,0.03919148,98.28554492],[4.53726213,0.03919323,98.28545844],[4.53726255,0.03919499,98.28537273],[4.53726296,0.03919674,98.2852878],[4.53726338,0.03919849,98.28520367],[4.5372638,0.03920025,98.28512035],[4.53726421,0.039202,98.28503785],[4.53726463,0.03920376,98.2849562],[4.53726505,0.03920551,98.2848754],[4.53726546,0.03920727,98.28479547],[4.53726588,0.03920902,98.28471643],[4.5372663,0.03921078,98.28463829],[4.53726671,0.03921253,98.28456107],[4.53726713,0.03921428,98.28448478],[4.53726755,0.03921604,98.28440944],[4.53726797,0.03921779,98.28433506],[4.53726838,0.03921955,98.28426166],[4.5372688,0.0392213,98.28418924],[4.53726922,0.03922306,98.28411784],[4.53726964,0.03922481,98.28404746],[4.53727005,0.03922656,98.28397812],[4.53727047,0.03922832,98.28390983],[4.53727089,0.03923007,98.28384261],[4.53727131,0.03923183,98.28377647],[4.53727172,0.03923358,98.28371143],[4.53727214,0.03923534,98.2836475],[4.53727256,0.03923709,98.28358471],[4.53727298,0.03923884,98.28352306],[4.5372734,0.0392406,98.28346256],[4.53727382,0.03924235,98.28340325],[4.53727424,0.03924411,98.28334512],[4.53727465,0.03924586,98.2832882],[4.53727507,0.03924761,98.2832325],[4.53727549,0.03924937,98.28317803],[4.53727591,0.03925112,98.28312482],[4.53727633,0.03925288,98.28307287],[4.53727675,0.03925463,98.2830222],[4.53727717,0.03925638,98.28297283],[4.53727759,0.03925814,98.28292478],[4.53727801,0.03925989,98.28287805],[4.53727843,0.03926164,98.28283266],[4.53727885,0.0392634,98.28278863],[4.53727927,0.03926515,98.28274598],[4.5372797,0.0392669,98.28270472],[4.53728012,0.03926866,98.28266485],[4.53728054,0.03927041,98.28262641],[4.53728096,0.03927216,98.2825894],[4.53728138,0.03927392,98.28255383],[4.5372818,0.03927567,98.2825197],[4.53728223,0.03927742,98.282487],[4.53728265,0.03927918,98.28245575],[4.53728307,0.03928093,98.28242594],[4.5372835,0.03928268,98.28239757],[4.53728392,0.03928444,98.28237065],[4.53728434,0.03928619,98.28234517],[4.53728477,0.03928794,98.28232114],[4.53728519,0.0392897,98.28229856],[4.53728561,0.03929145,98.28227744],[4.53728604,0.0392932,98.28225777],[4.53728646,0.03929495,98.28223955],[4.53728689,0.03929671,98.28222279],[4.53728731,0.03929846,98.28220748],[4.53728774,0.03930021,98.28219363],[4.53728816,0.03930196,98.28218124],[4.53728859,0.03930372,98.28217028],[4.53728902,0.03930547,98.28216074],[4.53728944,0.03930722,98.28215259],[4.53728987,0.03930897,98.28214582],[4.53729029,0.03931073,98.2821404],[4.53729072,0.03931248,98.28213632],[4.53729115,0.03931423,98.28213356],[4.53729157,0.03931598,98.28213209],[4.537292,0.03931773,98.2821319],[4.53729243,0.03931949,98.28213297],[4.53729286,0.03932124,98.28213528],[4.53729328,0.03932299,98.28213881],[4.53729371,0.03932474,98.28214354],[4.53729414,0.03932649,98.28214945],[4.53729457,0.03932825,98.28215651],[4.53729499,0.03933,98.28216472],[4.53729542,0.03933175,98.28217405],[4.53729585,0.0393335,98.28218447],[4.53729628,0.03933525,98.28219598],[4.53729671,0.03933701,98.28220855],[4.53729714,0.03933876,98.28222216],[4.53729756,0.03934051,98.2822368],[4.53729799,0.03934226,98.28225243],[4.53729842,0.03934401,98.28226905],[4.53729885,0.03934576,98.28228663],[4.53729928,0.03934752,98.28230515],[4.53729971,0.03934927,98.2823246],[4.53730014,0.03935102,98.28234495],[4.53730056,0.03935277,98.28236618],[4.53730099,0.03935452,98.28238827],[4.53730142,0.03935627,98.28241121],[4.53730185,0.03935802,98.28243497],[4.53730228,0.03935978,98.28245954],[4.53730271,0.03936153,98.28248489],[4.53730314,0.03936328,98.282511],[4.53730357,0.03936503,98.28253786],[4.53730399,0.03936678,98.28256544],[4.53730442,0.03936854,98.28259373],[4.53730485,0.03937029,98.2826227],[4.53730528,0.03937204,98.28265234],[4.53730571,0.03937379,98.28268262],[4.53730614,0.03937554,98.28271352],[4.53730657,0.0393773,98.28274503],[4.53730699,0.03937905,98.28277712],[4.53730742,0.0393808,98.28280977],[4.53730785,0.03938255,98.28284292],[4.53730828,0.0393843,98.2828765],[4.53730871,0.03938606,98.28291044],[4.53730913,0.03938781,98.28294469],[4.53730956,0.03938956,98.28297916],[4.53730999,0.03939131,98.28301381],[4.53731041,0.03939306,98.28304856],[4.53731084,0.03939482,98.28308334],[4.53731127,0.03939657,98.2831181],[4.53731169,0.03939832,98.28315275],[4.53731212,0.03940007,98.28318725],[4.53731255,0.03940183,98.28322151],[4.53731297,0.03940358,98.28325549],[4.5373134,0.03940533,98.2832891],[4.53731382,0.03940709,98.28332228],[4.53731424,0.03940884,98.28335497],[4.53731467,0.03941059,98.2833871],[4.53731509,0.03941235,98.2834186],[4.53731551,0.0394141,98.28344941],[4.53731593,0.03941585,98.28347946],[4.53731636,0.03941761,98.28350869],[4.53731678,0.03941936,98.28353702],[4.5373172,0.03942111,98.2835644],[4.53731762,0.03942287,98.28359075],[4.53731804,0.03942462,98.28361601],[4.53731846,0.03942638,98.28364012],[4.53731887,0.03942813,98.283663],[4.53731929,0.03942989,98.2836846],[4.53731971,0.03943164,98.28370491],[4.53732012,0.0394334,98.28372402],[4.53732054,0.03943515,98.283742],[4.53732095,0.03943691,98.28375893],[4.53732137,0.03943866,98.28377488],[4.53732178,0.03944042,98.28378992],[4.53732219,0.03944217,98.28380415],[4.53732261,0.03944393,98.28381763],[4.53732302,0.03944569,98.28383043],[4.53732343,0.03944744,98.28384264],[4.53732384,0.0394492,98.28385433],[4.53732425,0.03945095,98.28386558],[4.53732466,0.03945271,98.28387647],[4.53732507,0.03945447,98.28388706],[4.53732548,0.03945622,98.28389745],[4.53732589,0.03945798,98.2839077],[4.5373263,0.03945974,98.28391789],[4.53732671,0.03946149,98.28392809],[4.53732712,0.03946325,98.2839384],[4.53732752,0.03946501,98.28394887],[4.53732793,0.03946677,98.28395959],[4.53732834,0.03946852,98.28397064],[4.53732875,0.03947028,98.28398209],[4.53732915,0.03947204,98.28399403],[4.53732956,0.03947379,98.28400655],[4.53732997,0.03947555,98.28401977],[4.53733038,0.03947731,98.28403378],[4.53733078,0.03947907,98.28404868],[4.53733119,0.03948082,98.28406458],[4.5373316,0.03948258,98.28408157],[4.53733201,0.03948434,98.28409976],[4.53733241,0.03948609,98.28411925],[4.53733282,0.03948785,98.28414015],[4.53733323,0.03948961,98.28416255],[4.53733364,0.03949137,98.28418656],[4.53733405,0.03949312,98.28421227],[4.53733445,0.03949488,98.28423977],[4.53733486,0.03949664,98.28426905],[4.53733527,0.03949839,98.28430008],[4.53733568,0.03950015,98.28433281],[4.53733609,0.03950191,98.28436724],[4.5373365,0.03950366,98.28440331],[4.53733691,0.03950542,98.284441],[4.53733732,0.03950718,98.28448029],[4.53733773,0.03950893,98.28452114],[4.53733814,0.03951069,98.28456351],[4.53733855,0.03951245,98.28460738],[4.53733896,0.0395142,98.28465272],[4.53733937,0.03951596,98.28469949],[4.53733979,0.03951771,98.28474767],[4.5373402,0.03951947,98.28479722],[4.53734061,0.03952123,98.28484811],[4.53734102,0.03952298,98.28490032],[4.53734143,0.03952474,98.2849538],[4.53734184,0.0395265,98.28500854],[4.53734226,0.03952825,98.28506449],[4.53734267,0.03953001,98.28512163],[4.53734308,0.03953176,98.28517992],[4.53734349,0.03953352,98.28523934],[4.5373439,0.03953528,98.28529985],[4.53734432,0.03953703,98.28536143],[4.53734473,0.03953879,98.28542403],[4.53734514,0.03954054,98.28548764],[4.53734555,0.0395423,98.28555221],[4.53734596,0.03954406,98.28561773],[4.53734638,0.03954581,98.28568415],[4.53734679,0.03954757,98.28575144],[4.5373472,0.03954933,98.28581958],[4.53734761,0.03955108,98.28588853],[4.53734802,0.03955284,98.28595827],[4.53734844,0.03955459,98.28602875],[4.53734885,0.03955635,98.28609995],[4.53734926,0.03955811,98.28617185],[4.53734967,0.03955986,98.2862444],[4.53735008,0.03956162,98.28631758],[4.53735049,0.03956338,98.28639139],[4.53735091,0.03956513,98.28646585],[4.53735132,0.03956689,98.28654095],[4.53735173,0.03956864,98.2866167],[4.53735214,0.0395704,98.28669311],[4.53735255,0.03957216,98.28677019],[4.53735296,0.03957391,98.28684794],[4.53735337,0.03957567,98.28692637],[4.53735378,0.03957743,98.28700549],[4.53735419,0.03957918,98.2870853],[4.5373546,0.03958094,98.2871658],[4.53735501,0.0395827,98.28724701],[4.53735542,0.03958445,98.28732893],[4.53735583,0.03958621,98.28741157],[4.53735624,0.03958797,98.28749493],[4.53735665,0.03958972,98.28757903],[4.53735706,0.03959148,98.28766386],[4.53735747,0.03959324,98.28774944],[4.53735788,0.03959499,98.28783576],[4.53735829,0.03959675,98.28792285],[4.5373587,0.03959851,98.28801069],[4.53735911,0.03960027,98.28809931],[4.53735952,0.03960202,98.2881887],[4.53735993,0.03960378,98.28827888],[4.53736034,0.03960554,98.28836985],[4.53736075,0.03960729,98.28846161],[4.53736115,0.03960905,98.28855417],[4.53736156,0.03961081,98.28864755],[4.53736197,0.03961256,98.28874174],[4.53736238,0.03961432,98.28883675],[4.53736279,0.03961608,98.28893259],[4.5373632,0.03961784,98.28902927],[4.53736361,0.03961959,98.28912678],[4.53736401,0.03962135,98.28922512],[4.53736442,0.03962311,98.28932427],[4.53736483,0.03962486,98.28942423],[4.53736524,0.03962662,98.28952497],[4.53736565,0.03962838,98.2896265],[4.53736606,0.03963014,98.28972879],[4.53736646,0.03963189,98.28983184],[4.53736687,0.03963365,98.28993564],[4.53736728,0.03963541,98.29004017],[4.53736769,0.03963717,98.29014543],[4.53736809,0.03963892,98.2902514],[4.5373685,0.03964068,98.29035807],[4.53736891,0.03964244,98.29046542],[4.53736932,0.03964419,98.29057346],[4.53736972,0.03964595,98.29068217],[4.53737013,0.03964771,98.29079153],[4.53737054,0.03964947,98.29090153],[4.53737094,0.03965123,98.29101217],[4.53737135,0.03965298,98.29112343],[4.53737176,0.03965474,98.2912353],[4.53737216,0.0396565,98.29134777],[4.53737257,0.03965826,98.29146083],[4.53737298,0.03966001,98.29157447],[4.53737338,0.03966177,98.29168867],[4.53737379,0.03966353,98.29180343],[4.53737419,0.03966529,98.29191873],[4.5373746,0.03966705,98.29203456],[4.537375,0.0396688,98.29215091],[4.53737541,0.03967056,98.29226777],[4.53737581,0.03967232,98.29238513],[4.53737622,0.03967408,98.29250298],[4.53737662,0.03967584,98.29262131],[4.53737703,0.03967759,98.29274009],[4.53737743,0.03967935,98.29285934],[4.53737783,0.03968111,98.29297902],[4.53737824,0.03968287,98.29309914],[4.53737864,0.03968463,98.29321972],[4.53737904,0.03968639,98.29334077],[4.53737945,0.03968814,98.29346232],[4.53737985,0.0396899,98.2935844],[4.53738025,0.03969166,98.29370703],[4.53738065,0.03969342,98.29383022],[4.53738106,0.03969518,98.29395401],[4.53738146,0.03969694,98.29407842],[4.53738186,0.0396987,98.29420346],[4.53738226,0.03970046,98.29432917],[4.53738266,0.03970221,98.29445557],[4.53738307,0.03970397,98.29458269],[4.53738347,0.03970573,98.29471054],[4.53738387,0.03970749,98.29483915],[4.53738427,0.03970925,98.29496855],[4.53738467,0.03971101,98.29509876],[4.53738507,0.03971277,98.2952298],[4.53738547,0.03971453,98.29536169],[4.53738587,0.03971629,98.29549447],[4.53738628,0.03971805,98.29562816],[4.53738668,0.0397198,98.29576278],[4.53738708,0.03972156,98.29589835],[4.53738748,0.03972332,98.29603489],[4.53738787,0.03972507,98.29617244],[4.53738827,0.03972683,98.29631102],[4.53738868,0.03972858,98.29645064],[4.53738908,0.03973034,98.29659134],[4.53738948,0.0397321,98.29673314],[4.53738988,0.03973386,98.29687606],[4.53739028,0.03973562,98.29702012],[4.53739068,0.03973738,98.29716536],[4.53739108,0.03973914,98.29731179],[4.53739148,0.0397409,98.29745944],[4.53739188,0.03974266,98.29760832],[4.53739228,0.03974442,98.29775848],[4.53739268,0.03974618,98.29790993],[4.53739308,0.03974794,98.29806268],[4.53739348,0.0397497,98.29821678],[4.53739388,0.03975145,98.29837224],[4.53739428,0.03975321,98.29852908],[4.53739469,0.03975497,98.29868734],[4.53739509,0.03975673,98.29884702],[4.53739549,0.03975849,98.29900817],[4.53739589,0.03976025,98.2991708],[4.53739629,0.03976201,98.29933493],[4.53739669,0.03976377,98.29950059],[4.53739709,0.03976553,98.2996678],[4.5373975,0.03976729,98.29983656],[4.5373979,0.03976904,98.30000687],[4.5373983,0.0397708,98.30017869],[4.5373987,0.03977256,98.30035201],[4.5373991,0.03977432,98.30052681],[4.53739951,0.03977608,98.30070308],[4.53739991,0.03977784,98.30088079],[4.53740031,0.0397796,98.30105992],[4.53740071,0.03978136,98.30124047],[4.53740112,0.03978311,98.30142241],[4.53740152,0.03978487,98.30160572],[4.53740192,0.03978663,98.30179038],[4.53740232,0.03978839,98.30197638],[4.53740273,0.03979015,98.30216369],[4.53740313,0.03979191,98.30235231],[4.53740353,0.03979367,98.3025422],[4.53740394,0.03979543,98.30273336],[4.53740434,0.03979718,98.30292576],[4.53740474,0.03979894,98.30311939],[4.53740515,0.0398007,98.30331422],[4.53740555,0.03980246,98.30351025],[4.53740595,0.03980422,98.30370745],[4.53740636,0.03980598,98.3039058],[4.53740676,0.03980773,98.30410528],[4.53740716,0.03980949,98.30430589],[4.53740757,0.03981125,98.30450759],[4.53740797,0.03981301,98.30471037],[4.53740837,0.03981477,98.30491421],[4.53740877,0.03981653,98.3051191],[4.53740918,0.03981829,98.30532501],[4.53740958,0.03982004,98.30553194],[4.53740998,0.0398218,98.30573985],[4.53741039,0.03982356,98.30594873],[4.53741079,0.03982532,98.30615857],[4.53741119,0.03982708,98.30636934],[4.5374116,0.03982884,98.30658103],[4.537412,0.0398306,98.30679362],[4.5374124,0.03983235,98.30700709],[4.5374128,0.03983411,98.30722142],[4.53741321,0.03983587,98.3074366],[4.53741361,0.03983763,98.3076526],[4.53741401,0.03983939,98.30786942],[4.53741441,0.03984115,98.30808702],[4.53741481,0.03984291,98.3083054],[4.53741522,0.03984467,98.30852453],[4.53741562,0.03984642,98.3087444],[4.53741602,0.03984818,98.30896498],[4.53741642,0.03984994,98.30918627],[4.53741682,0.0398517,98.30940828],[4.53741722,0.03985346,98.30963105],[4.53741762,0.03985522,98.30985464],[4.53741802,0.03985698,98.31007909],[4.53741843,0.03985874,98.31030445],[4.53741883,0.0398605,98.31053076],[4.53741923,0.03986225,98.31075808],[4.53741963,0.03986401,98.31098646],[4.53742003,0.03986577,98.31121593],[4.53742043,0.03986753,98.31144656],[4.53742083,0.03986929,98.31167838],[4.53742123,0.03987105,98.31191145],[4.53742163,0.03987281,98.31214581],[4.53742203,0.03987457,98.31238151],[4.53742243,0.03987633,98.3126186],[4.53742284,0.03987809,98.31285713],[4.53742324,0.03987984,98.31309714],[4.53742364,0.0398816,98.31333868],[4.53742404,0.03988336,98.3135818],[4.53742444,0.03988512,98.31382655],[4.53742484,0.03988688,98.31407297],[4.53742524,0.03988864,98.31432112],[4.53742565,0.0398904,98.31457103],[4.53742605,0.03989215,98.31482276],[4.53742645,0.03989391,98.31507636],[4.53742685,0.03989567,98.31533187],[4.53742726,0.03989743,98.31558933],[4.53742766,0.03989919,98.3158488],[4.53742807,0.03990095,98.31611034],[4.53742847,0.0399027,98.31637398],[4.53742887,0.03990446,98.31663978],[4.53742928,0.03990622,98.3169078],[4.53742968,0.03990798,98.3171781],[4.53743009,0.03990974,98.31745071],[4.53743049,0.03991149,98.31772569],[4.5374309,0.03991325,98.31800311],[4.53743131,0.03991501,98.318283],[4.53743171,0.03991677,98.31856542],[4.53743212,0.03991852,98.31885043],[4.53743253,0.03992028,98.31913807],[4.53743294,0.03992204,98.31942839],[4.53743335,0.0399238,98.31972136],[4.53743376,0.03992555,98.32001697],[4.53743417,0.03992731,98.32031518],[4.53743458,0.03992907,98.32061597],[4.53743499,0.03993082,98.32091932],[4.5374354,0.03993258,98.32122519],[4.53743581,0.03993434,98.32153355],[4.53743622,0.03993609,98.32184439],[4.53743664,0.03993785,98.32215767],[4.53743705,0.0399396,98.32247336],[4.53743746,0.03994136,98.32279145],[4.53743788,0.03994312,98.3231119],[4.53743829,0.03994487,98.32343468],[4.5374387,0.03994663,98.32375978],[4.53743912,0.03994838,98.32408715],[4.53743953,0.03995014,98.32441678],[4.53743995,0.03995189,98.32474864],[4.53744037,0.03995365,98.32508271],[4.53744078,0.0399554,98.32541894],[4.5374412,0.03995716,98.32575733],[4.53744162,0.03995891,98.32609784],[4.53744203,0.03996067,98.32644044],[4.53744245,0.03996242,98.32678511],[4.53744287,0.03996418,98.32713182],[4.53744329,0.03996593,98.32748054],[4.53744371,0.03996769,98.32783125],[4.53744412,0.03996944,98.32818393],[4.53744454,0.0399712,98.32853853],[4.53744496,0.03997295,98.32889504],[4.53744538,0.03997471,98.32925319],[4.5374458,0.03997646,98.32961256],[4.53744622,0.03997822,98.32997269],[4.53744664,0.03997997,98.33033313],[4.53744706,0.03998173,98.33069345],[4.53744748,0.03998348,98.33105318],[4.53744789,0.03998524,98.33141188],[4.53744831,0.03998699,98.33176911],[4.53744873,0.03998875,98.33212442],[4.53744914,0.0399905,98.33247736],[4.53744955,0.03999226,98.33282749],[4.53744997,0.03999401,98.33317437],[4.53745038,0.03999577,98.33351755],[4.53745079,0.03999753,98.33385658],[4.53745119,0.03999929,98.33419102],[4.5374516,0.04000104,98.33452045],[4.537452,0.0400028,98.33484486],[4.5374524,0.04000456,98.33516462],[4.5374528,0.04000632,98.33548011],[4.5374532,0.04000808,98.33579172],[4.53745359,0.04000984,98.33609985],[4.53745399,0.0400116,98.33640487],[4.53745438,0.04001336,98.33670718],[4.53745478,0.04001512,98.33700716],[4.53745517,0.04001688,98.3373052],[4.53745556,0.04001864,98.33760168],[4.53745595,0.0400204,98.33789698],[4.53745634,0.04002216,98.3381915],[4.53745673,0.04002393,98.33848561],[4.53745712,0.04002569,98.3387797],[4.5374575,0.04002745,98.33907415],[4.53745789,0.04002921,98.33936935],[4.53745828,0.04003097,98.33966568],[4.53745867,0.04003273,98.33996351],[4.53745906,0.0400345,98.34026302],[4.53745945,0.04003626,98.34056421],[4.53745983,0.04003802,98.34086706],[4.53746022,0.04003978,98.34117156],[4.53746061,0.04004154,98.3414777],[4.537461,0.0400433,98.34178547],[4.53746139,0.04004506,98.34209486],[4.53746178,0.04004683,98.34240585],[4.53746217,0.04004859,98.34271844],[4.53746256,0.04005035,98.34303262],[4.53746295,0.04005211,98.34334836],[4.53746334,0.04005387,98.34366567],[4.53746373,0.04005563,98.34398452],[4.53746412,0.04005739,98.34430491],[4.53746451,0.04005915,98.34462683],[4.5374649,0.04006091,98.34495026],[4.53746529,0.04006268,98.3452752],[4.53746569,0.04006444,98.34560163],[4.53746608,0.0400662,98.34592954],[4.53746647,0.04006796,98.34625892],[4.53746686,0.04006972,98.34658975],[4.53746725,0.04007148,98.34692203],[4.53746764,0.04007324,98.34725575],[4.53746803,0.040075,98.34759089],[4.53746843,0.04007676,98.34792745],[4.53746882,0.04007852,98.3482654],[4.53746921,0.04008028,98.34860474],[4.5374696,0.04008204,98.34894547],[4.53746999,0.0400838,98.34928756],[4.53747039,0.04008557,98.349631],[4.53747078,0.04008733,98.34997579],[4.53747117,0.04008909,98.35032192],[4.53747156,0.04009085,98.35066936],[4.53747196,0.04009261,98.35101812],[4.53747235,0.04009437,98.35136818],[4.53747274,0.04009613,98.35171952],[4.53747313,0.04009789,98.35207215],[4.53747353,0.04009965,98.35242603],[4.53747392,0.04010141,98.35278118],[4.53747431,0.04010317,98.35313757],[4.5374747,0.04010493,98.35349519],[4.5374751,0.04010669,98.35385403],[4.53747549,0.04010845,98.35421408],[4.53747588,0.04011021,98.35457533],[4.53747628,0.04011197,98.35493777],[4.53747667,0.04011373,98.35530138],[4.53747706,0.04011549,98.35566617],[4.53747746,0.04011725,98.3560321],[4.53747785,0.04011901,98.35639918],[4.53747824,0.04012077,98.3567674],[4.53747863,0.04012254,98.35713673],[4.53747903,0.0401243,98.35750718],[4.53747942,0.04012606,98.35787872],[4.53747981,0.04012782,98.35825136],[4.53748021,0.04012958,98.35862507],[4.5374806,0.04013134,98.35899985],[4.53748099,0.0401331,98.35937568],[4.53748139,0.04013486,98.35975256],[4.53748178,0.04013662,98.36013047],[4.53748217,0.04013838,98.36050941],[4.53748257,0.04014014,98.36088936],[4.53748296,0.0401419,98.36127031],[4.53748335,0.04014366,98.36165225],[4.53748374,0.04014542,98.36203517],[4.53748414,0.04014718,98.36241906],[4.53748453,0.04014894,98.36280391],[4.53748492,0.0401507,98.3631897],[4.53748532,0.04015246,98.36357643],[4.53748571,0.04015422,98.36396409],[4.5374861,0.04015598,98.36435266],[4.53748649,0.04015774,98.36474214],[4.53748689,0.0401595,98.36513251],[4.53748728,0.04016126,98.36552376],[4.53748767,0.04016302,98.36591588],[4.53748806,0.04016478,98.36630887],[4.53748846,0.04016655,98.3667027],[4.53748885,0.04016831,98.36709738],[4.53748924,0.04017007,98.36749288],[4.53748963,0.04017183,98.36788921],[4.53749002,0.04017359,98.36828634],[4.53749042,0.04017535,98.36868427],[4.53749081,0.04017711,98.36908299],[4.53749119,0.04017887,98.36945629],[4.53749123,0.04018071,98.36877606],[4.53749126,0.04018255,98.36809767],[4.5374913,0.0401844,98.36742114]],"type":"LineString"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1003400","id":1,"type":"shoulder","predecessorId":1}},{"geometry":{"coordinates":[[4.53724438,0.03905247,98.29396748],[4.53724446,0.03905279,98.29394371],[4.53724488,0.03905454,98.29381326],[4.53724529,0.0390563,98.29368341],[4.53724571,0.03905805,98.29355416],[4.53724613,0.0390598,98.29342551],[4.53724655,0.03906156,98.29329745],[4.53724696,0.03906331,98.29316998],[4.53724738,0.03906507,98.29304311],[4.5372478,0.03906682,98.29291683],[4.53724821,0.03906858,98.29279114],[4.53724863,0.03907033,98.29266604],[4.53724905,0.03907209,98.29254151],[4.53724947,0.03907384,98.29241758],[4.53724988,0.0390756,98.29229422],[4.5372503,0.03907735,98.29217145],[4.53725072,0.03907911,98.29204925],[4.53725114,0.03908086,98.29192763],[4.53725155,0.03908262,98.29180658],[4.53725197,0.03908437,98.2916861],[4.53725239,0.03908612,98.2915662],[4.5372528,0.03908788,98.29144686],[4.53725322,0.03908963,98.29132809],[4.53725364,0.03909139,98.29120989],[4.53725405,0.03909314,98.29109225],[4.53725447,0.0390949,98.29097517],[4.53725489,0.03909665,98.29085865],[4.5372553,0.03909841,98.29074268],[4.53725572,0.03910016,98.29062728],[4.53725614,0.03910192,98.29051242],[4.53725655,0.03910367,98.29039812],[4.53725697,0.03910543,98.29028437],[4.53725739,0.03910718,98.29017117],[4.5372578,0.03910894,98.29005852],[4.53725822,0.03911069,98.28994641],[4.53725863,0.03911245,98.28983484],[4.53725905,0.0391142,98.28972381],[4.53725947,0.03911596,98.28961332],[4.53725988,0.03911771,98.28950338],[4.5372603,0.03911947,98.28939396],[4.53726071,0.03912122,98.28928508],[4.53726113,0.03912298,98.28917673],[4.53726154,0.03912473,98.28906891],[4.53726196,0.03912649,98.28896162],[4.53726237,0.03912824,98.28885486],[4.53726279,0.03913,98.28874862],[4.5372632,0.03913175,98.2886429],[4.53726362,0.03913351,98.28853771],[4.53726403,0.03913526,98.28843303],[4.53726445,0.03913702,98.28832887],[4.53726486,0.03913877,98.28822523],[4.53726528,0.03914053,98.28812209],[4.53726569,0.03914228,98.28801947],[4.53726611,0.03914404,98.28791736],[4.53726652,0.03914579,98.28781576],[4.53726693,0.03914755,98.28771466],[4.53726735,0.0391493,98.28761407],[4.53726776,0.03915106,98.28751397],[4.53726817,0.03915281,98.28741439],[4.53726859,0.03915457,98.28731532],[4.537269,0.03915632,98.28721677],[4.53726942,0.03915808,98.28711876],[4.53726983,0.03915983,98.28702129],[4.53727024,0.03916159,98.28692438],[4.53727065,0.03916334,98.28682804],[4.53727107,0.0391651,98.28673228],[4.53727148,0.03916685,98.28663711],[4.53727189,0.03916861,98.28654253],[4.5372723,0.03917036,98.28644857],[4.53727272,0.03917212,98.28635522],[4.53727313,0.03917387,98.28626251],[4.53727354,0.03917563,98.28617044],[4.53727395,0.03917739,98.28607902],[4.53727436,0.03917914,98.28598826],[4.53727478,0.0391809,98.28589818],[4.53727519,0.03918265,98.28580879],[4.5372756,0.03918441,98.28572011],[4.53727601,0.03918616,98.28563214],[4.53727642,0.03918792,98.28554492],[4.53727683,0.03918968,98.28545844],[4.53727725,0.03919143,98.28537273],[4.53727766,0.03919319,98.2852878],[4.53727807,0.03919494,98.28520367],[4.53727848,0.0391967,98.28512035],[4.53727889,0.03919845,98.28503785],[4.5372793,0.03920021,98.2849562],[4.53727971,0.03920197,98.2848754],[4.53728012,0.03920372,98.28479547],[4.53728053,0.03920548,98.28471643],[4.53728094,0.03920723,98.28463829],[4.53728135,0.03920899,98.28456107],[4.53728176,0.03921075,98.28448478],[4.53728217,0.0392125,98.28440944],[4.53728258,0.03921426,98.28433506],[4.53728299,0.03921601,98.28426166],[4.5372834,0.03921777,98.28418924],[4.53728381,0.03921953,98.28411784],[4.53728422,0.03922128,98.28404746],[4.53728463,0.03922304,98.28397812],[4.53728504,0.03922479,98.28390983],[4.53728545,0.03922655,98.28384261],[4.53728586,0.03922831,98.28377647],[4.53728627,0.03923006,98.28371143],[4.53728668,0.03923182,98.2836475],[4.53728709,0.03923358,98.28358471],[4.5372875,0.03923533,98.28352306],[4.53728791,0.03923709,98.28346256],[4.53728832,0.03923884,98.28340325],[4.53728873,0.0392406,98.28334512],[4.53728914,0.03924236,98.2832882],[4.53728955,0.03924411,98.2832325],[4.53728996,0.03924587,98.28317803],[4.53729037,0.03924763,98.28312482],[4.53729078,0.03924938,98.28307287],[4.53729119,0.03925114,98.2830222],[4.5372916,0.03925289,98.28297283],[4.53729201,0.03925465,98.28292478],[4.53729242,0.03925641,98.28287805],[4.53729283,0.03925816,98.28283266],[4.53729324,0.03925992,98.28278863],[4.53729365,0.03926168,98.28274598],[4.53729406,0.03926343,98.28270472],[4.53729447,0.03926519,98.28266485],[4.53729488,0.03926694,98.28262641],[4.53729529,0.0392687,98.2825894],[4.5372957,0.03927046,98.28255383],[4.53729611,0.03927221,98.2825197],[4.53729652,0.03927397,98.282487],[4.53729693,0.03927573,98.28245575],[4.53729734,0.03927748,98.28242594],[4.53729775,0.03927924,98.28239757],[4.53729816,0.03928099,98.28237065],[4.53729858,0.03928275,98.28234517],[4.53729899,0.03928451,98.28232114],[4.5372994,0.03928626,98.28229856],[4.53729981,0.03928802,98.28227744],[4.53730022,0.03928977,98.28225777],[4.53730063,0.03929153,98.28223955],[4.53730105,0.03929328,98.28222279],[4.53730146,0.03929504,98.28220748],[4.53730187,0.0392968,98.28219363],[4.53730228,0.03929855,98.28218124],[4.5373027,0.03930031,98.28217028],[4.53730311,0.03930206,98.28216074],[4.53730352,0.03930382,98.28215259],[4.53730393,0.03930557,98.28214582],[4.53730435,0.03930733,98.2821404],[4.53730476,0.03930909,98.28213632],[4.53730518,0.03931084,98.28213356],[4.53730559,0.0393126,98.28213209],[4.537306,0.03931435,98.2821319],[4.53730642,0.03931611,98.28213297],[4.53730683,0.03931786,98.28213528],[4.53730725,0.03931962,98.28213881],[4.53730766,0.03932137,98.28214354],[4.53730808,0.03932313,98.28214945],[4.53730849,0.03932488,98.28215651],[4.53730891,0.03932664,98.28216472],[4.53730932,0.03932839,98.28217405],[4.53730974,0.03933015,98.28218447],[4.53731015,0.0393319,98.28219598],[4.53731057,0.03933366,98.28220855],[4.53731098,0.03933541,98.28222216],[4.5373114,0.03933717,98.2822368],[4.53731181,0.03933892,98.28225243],[4.53731223,0.03934068,98.28226905],[4.53731265,0.03934243,98.28228663],[4.53731306,0.03934419,98.28230515],[4.53731348,0.03934594,98.2823246],[4.5373139,0.0393477,98.28234495],[4.53731431,0.03934945,98.28236618],[4.53731473,0.03935121,98.28238827],[4.53731514,0.03935296,98.28241121],[4.53731556,0.03935472,98.28243497],[4.53731598,0.03935647,98.28245954],[4.5373164,0.03935822,98.28248489],[4.53731681,0.03935998,98.282511],[4.53731723,0.03936173,98.28253786],[4.53731765,0.03936349,98.28256544],[4.53731806,0.03936524,98.28259373],[4.53731848,0.039367,98.2826227],[4.5373189,0.03936875,98.28265234],[4.53731932,0.03937051,98.28268262],[4.53731974,0.03937226,98.28271352],[4.53732015,0.03937402,98.28274503],[4.53732057,0.03937577,98.28277712],[4.53732099,0.03937753,98.28280977],[4.53732141,0.03937928,98.28284292],[4.53732183,0.03938104,98.2828765],[4.53732224,0.03938279,98.28291044],[4.53732266,0.03938455,98.28294469],[4.53732308,0.0393863,98.28297916],[4.5373235,0.03938805,98.28301381],[4.53732392,0.03938981,98.28304856],[4.53732433,0.03939156,98.28308334],[4.53732475,0.03939332,98.2831181],[4.53732517,0.03939507,98.28315275],[4.53732559,0.03939683,98.28318725],[4.537326,0.03939858,98.28322151],[4.53732642,0.03940034,98.28325549],[4.53732684,0.03940209,98.2832891],[4.53732726,0.03940385,98.28332228],[4.53732767,0.0394056,98.28335497],[4.53732809,0.03940736,98.2833871],[4.53732851,0.03940911,98.2834186],[4.53732892,0.03941087,98.28344941],[4.53732934,0.03941262,98.28347946],[4.53732975,0.03941438,98.28350869],[4.53733017,0.03941613,98.28353702],[4.53733058,0.03941789,98.2835644],[4.537331,0.03941964,98.28359075],[4.53733141,0.0394214,98.28361601],[4.53733183,0.03942316,98.28364012],[4.53733224,0.03942491,98.283663],[4.53733265,0.03942667,98.2836846],[4.53733307,0.03942842,98.28370491],[4.53733348,0.03943018,98.28372402],[4.53733389,0.03943194,98.283742],[4.5373343,0.03943369,98.28375893],[4.53733471,0.03943545,98.28377488],[4.53733512,0.03943721,98.28378992],[4.53733553,0.03943896,98.28380415],[4.53733594,0.03944072,98.28381763],[4.53733635,0.03944248,98.28383043],[4.53733676,0.03944423,98.28384264],[4.53733717,0.03944599,98.28385433],[4.53733758,0.03944775,98.28386558],[4.53733799,0.03944951,98.28387647],[4.53733839,0.03945126,98.28388706],[4.5373388,0.03945302,98.28389745],[4.53733921,0.03945478,98.2839077],[4.53733962,0.03945653,98.28391789],[4.53734002,0.03945829,98.28392809],[4.53734043,0.03946005,98.2839384],[4.53734084,0.03946181,98.28394887],[4.53734124,0.03946356,98.28395959],[4.53734165,0.03946532,98.28397064],[4.53734206,0.03946708,98.28398209],[4.53734246,0.03946884,98.28399403],[4.53734287,0.0394706,98.28400655],[4.53734328,0.03947235,98.28401977],[4.53734368,0.03947411,98.28403378],[4.53734409,0.03947587,98.28404868],[4.5373445,0.03947763,98.28406458],[4.53734491,0.03947938,98.28408157],[4.53734531,0.03948114,98.28409976],[4.53734572,0.0394829,98.28411925],[4.53734613,0.03948466,98.28414015],[4.53734653,0.03948641,98.28416255],[4.53734694,0.03948817,98.28418656],[4.53734735,0.03948993,98.28421227],[4.53734776,0.03949169,98.28423977],[4.53734817,0.03949344,98.28426905],[4.53734858,0.0394952,98.28430008],[4.53734899,0.03949696,98.28433281],[4.5373494,0.03949871,98.28436724],[4.53734981,0.03950047,98.28440331],[4.53735022,0.03950223,98.284441],[4.53735063,0.03950399,98.28448029],[4.53735104,0.03950574,98.28452114],[4.53735145,0.0395075,98.28456351],[4.53735186,0.03950926,98.28460738],[4.53735227,0.03951101,98.28465272],[4.53735268,0.03951277,98.28469949],[4.53735309,0.03951453,98.28474767],[4.5373535,0.03951628,98.28479722],[4.53735391,0.03951804,98.28484811],[4.53735432,0.0395198,98.28490032],[4.53735473,0.03952155,98.2849538],[4.53735514,0.03952331,98.28500854],[4.53735556,0.03952507,98.28506449],[4.53735597,0.03952682,98.28512163],[4.53735638,0.03952858,98.28517992],[4.53735679,0.03953034,98.28523934],[4.5373572,0.03953209,98.28529985],[4.53735761,0.03953385,98.28536143],[4.53735802,0.03953561,98.28542403],[4.53735843,0.03953736,98.28548764],[4.53735884,0.03953912,98.28555221],[4.53735926,0.03954088,98.28561773],[4.53735967,0.03954263,98.28568415],[4.53736008,0.03954439,98.28575144],[4.53736049,0.03954615,98.28581958],[4.5373609,0.0395479,98.28588853],[4.53736131,0.03954966,98.28595827],[4.53736172,0.03955142,98.28602875],[4.53736213,0.03955317,98.28609995],[4.53736254,0.03955493,98.28617185],[4.53736295,0.03955669,98.2862444],[4.53736336,0.03955845,98.28631758],[4.53736377,0.0395602,98.28639139],[4.53736418,0.03956196,98.28646585],[4.53736459,0.03956372,98.28654095],[4.537365,0.03956547,98.2866167],[4.53736541,0.03956723,98.28669311],[4.53736582,0.03956899,98.28677019],[4.53736623,0.03957075,98.28684794],[4.53736664,0.0395725,98.28692637],[4.53736705,0.03957426,98.28700549],[4.53736746,0.03957602,98.2870853],[4.53736787,0.03957777,98.2871658],[4.53736828,0.03957953,98.28724701],[4.53736869,0.03958129,98.28732893],[4.5373691,0.03958305,98.28741157],[4.53736951,0.0395848,98.28749493],[4.53736992,0.03958656,98.28757903],[4.53737033,0.03958832,98.28766386],[4.53737074,0.03959008,98.28774944],[4.53737114,0.03959183,98.28783576],[4.53737155,0.03959359,98.28792285],[4.53737196,0.03959535,98.28801069],[4.53737237,0.03959711,98.28809931],[4.53737278,0.03959886,98.2881887],[4.53737319,0.03960062,98.28827888],[4.5373736,0.03960238,98.28836985],[4.53737401,0.03960414,98.28846161],[4.53737442,0.03960589,98.28855417],[4.53737483,0.03960765,98.28864755],[4.53737524,0.03960941,98.28874174],[4.53737564,0.03961117,98.28883675],[4.53737605,0.03961292,98.28893259],[4.53737646,0.03961468,98.28902927],[4.53737687,0.03961644,98.28912678],[4.53737728,0.0396182,98.28922512],[4.53737769,0.03961995,98.28932427],[4.5373781,0.03962171,98.28942423],[4.53737851,0.03962347,98.28952497],[4.53737892,0.03962522,98.2896265],[4.53737933,0.03962698,98.28972879],[4.53737974,0.03962874,98.28983184],[4.53738015,0.0396305,98.28993564],[4.53738056,0.03963225,98.29004017],[4.53738097,0.03963401,98.29014543],[4.53738138,0.03963577,98.2902514],[4.53738179,0.03963753,98.29035807],[4.5373822,0.03963928,98.29046542],[4.53738261,0.03964104,98.29057346],[4.53738301,0.0396428,98.29068217],[4.53738342,0.03964456,98.29079153],[4.53738383,0.03964631,98.29090153],[4.53738424,0.03964807,98.29101217],[4.53738465,0.03964983,98.29112343],[4.53738506,0.03965159,98.2912353],[4.53738547,0.03965334,98.29134777],[4.53738588,0.0396551,98.29146083],[4.53738629,0.03965686,98.29157447],[4.5373867,0.03965862,98.29168867],[4.53738711,0.03966037,98.29180343],[4.53738752,0.03966213,98.29191873],[4.53738793,0.03966389,98.29203456],[4.53738834,0.03966565,98.29215091],[4.53738875,0.0396674,98.29226777],[4.53738916,0.03966916,98.29238513],[4.53738957,0.03967092,98.29250298],[4.53738998,0.03967268,98.29262131],[4.53739039,0.03967443,98.29274009],[4.5373908,0.03967619,98.29285934],[4.53739121,0.03967795,98.29297902],[4.53739162,0.03967971,98.29309914],[4.53739202,0.03968146,98.29321972],[4.53739243,0.03968322,98.29334077],[4.53739284,0.03968498,98.29346232],[4.53739325,0.03968674,98.2935844],[4.53739366,0.0396885,98.29370703],[4.53739407,0.03969025,98.29383022],[4.53739448,0.03969201,98.29395401],[4.53739488,0.03969377,98.29407842],[4.53739529,0.03969553,98.29420346],[4.5373957,0.03969728,98.29432917],[4.53739611,0.03969904,98.29445557],[4.53739652,0.0397008,98.29458269],[4.53739693,0.03970256,98.29471054],[4.53739733,0.03970432,98.29483915],[4.53739774,0.03970607,98.29496855],[4.53739815,0.03970783,98.29509876],[4.53739856,0.03970959,98.2952298],[4.53739896,0.03971135,98.29536169],[4.53739937,0.03971311,98.29549447],[4.53739978,0.03971486,98.29562816],[4.53740019,0.03971662,98.29576278],[4.53740059,0.03971838,98.29589835],[4.537401,0.03972014,98.29603489],[4.53740141,0.03972188,98.29617244],[4.53740181,0.03972364,98.29631102],[4.53740222,0.0397254,98.29645064],[4.53740263,0.03972716,98.29659134],[4.53740304,0.03972891,98.29673314],[4.53740344,0.03973067,98.29687606],[4.53740385,0.03973243,98.29702012],[4.53740426,0.03973419,98.29716536],[4.53740467,0.03973595,98.29731179],[4.53740507,0.03973771,98.29745944],[4.53740548,0.03973946,98.29760832],[4.53740589,0.03974122,98.29775848],[4.5374063,0.03974298,98.29790993],[4.5374067,0.03974474,98.29806268],[4.53740711,0.0397465,98.29821678],[4.53740752,0.03974825,98.29837224],[4.53740793,0.03975001,98.29852908],[4.53740834,0.03975177,98.29868734],[4.53740874,0.03975353,98.29884702],[4.53740915,0.03975529,98.29900817],[4.53740956,0.03975705,98.2991708],[4.53740997,0.0397588,98.29933493],[4.53741037,0.03976056,98.29950059],[4.53741078,0.03976232,98.2996678],[4.53741119,0.03976408,98.29983656],[4.5374116,0.03976584,98.30000687],[4.53741201,0.03976759,98.30017869],[4.53741242,0.03976935,98.30035201],[4.53741282,0.03977111,98.30052681],[4.53741323,0.03977287,98.30070308],[4.53741364,0.03977463,98.30088079],[4.53741405,0.03977638,98.30105992],[4.53741446,0.03977814,98.30124047],[4.53741487,0.0397799,98.30142241],[4.53741527,0.03978166,98.30160572],[4.53741568,0.03978342,98.30179038],[4.53741609,0.03978517,98.30197638],[4.5374165,0.03978693,98.30216369],[4.53741691,0.03978869,98.30235231],[4.53741731,0.03979045,98.3025422],[4.53741772,0.03979221,98.30273336],[4.53741813,0.03979396,98.30292576],[4.53741854,0.03979572,98.30311939],[4.53741895,0.03979748,98.30331422],[4.53741935,0.03979924,98.30351025],[4.53741976,0.039801,98.30370745],[4.53742017,0.03980275,98.3039058],[4.53742058,0.03980451,98.30410528],[4.53742098,0.03980627,98.30430589],[4.53742139,0.03980803,98.30450759],[4.5374218,0.03980979,98.30471037],[4.53742221,0.03981154,98.30491421],[4.53742261,0.0398133,98.3051191],[4.53742302,0.03981506,98.30532501],[4.53742343,0.03981682,98.30553194],[4.53742384,0.03981858,98.30573985],[4.53742424,0.03982033,98.30594873],[4.53742465,0.03982209,98.30615857],[4.53742506,0.03982385,98.30636934],[4.53742546,0.03982561,98.30658103],[4.53742587,0.03982737,98.30679362],[4.53742627,0.03982913,98.30700709],[4.53742668,0.03983088,98.30722142],[4.53742709,0.03983264,98.3074366],[4.53742749,0.0398344,98.3076526],[4.5374279,0.03983616,98.30786942],[4.5374283,0.03983792,98.30808702],[4.53742871,0.03983968,98.3083054],[4.53742911,0.03984144,98.30852453],[4.53742952,0.03984319,98.3087444],[4.53742992,0.03984495,98.30896498],[4.53743033,0.03984671,98.30918627],[4.53743073,0.03984847,98.30940828],[4.53743114,0.03985023,98.30963105],[4.53743154,0.03985199,98.30985464],[4.53743194,0.03985375,98.31007909],[4.53743235,0.0398555,98.31030445],[4.53743275,0.03985726,98.31053076],[4.53743316,0.03985902,98.31075808],[4.53743356,0.03986078,98.31098646],[4.53743396,0.03986254,98.31121593],[4.53743437,0.0398643,98.31144656],[4.53743477,0.03986606,98.31167838],[4.53743517,0.03986782,98.31191145],[4.53743558,0.03986958,98.31214581],[4.53743598,0.03987133,98.31238151],[4.53743638,0.03987309,98.3126186],[4.53743678,0.03987485,98.31285713],[4.53743719,0.03987661,98.31309714],[4.53743759,0.03987837,98.31333868],[4.53743799,0.03988013,98.3135818],[4.5374384,0.03988189,98.31382655],[4.5374388,0.03988365,98.31407297],[4.5374392,0.03988541,98.31432112],[4.53743961,0.03988716,98.31457103],[4.53744001,0.03988892,98.31482276],[4.53744041,0.03989068,98.31507636],[4.53744081,0.03989244,98.31533187],[4.53744122,0.0398942,98.31558933],[4.53744162,0.03989596,98.3158488],[4.53744202,0.03989772,98.31611034],[4.53744243,0.03989948,98.31637398],[4.53744283,0.03990124,98.31663978],[4.53744323,0.03990299,98.3169078],[4.53744364,0.03990475,98.3171781],[4.53744404,0.03990651,98.31745071],[4.53744444,0.03990827,98.31772569],[4.53744485,0.03991003,98.31800311],[4.53744525,0.03991179,98.318283],[4.53744565,0.03991355,98.31856542],[4.53744606,0.03991531,98.31885043],[4.53744646,0.03991706,98.31913807],[4.53744687,0.03991882,98.31942839],[4.53744727,0.03992058,98.31972136],[4.53744767,0.03992234,98.32001697],[4.53744808,0.0399241,98.32031518],[4.53744848,0.03992586,98.32061597],[4.53744888,0.03992762,98.32091932],[4.53744928,0.03992938,98.32122519],[4.53744969,0.03993113,98.32153355],[4.53745009,0.03993289,98.32184439],[4.53745049,0.03993465,98.32215767],[4.53745089,0.03993641,98.32247336],[4.5374513,0.03993817,98.32279145],[4.5374517,0.03993993,98.3231119],[4.5374521,0.03994169,98.32343468],[4.5374525,0.03994345,98.32375978],[4.5374529,0.03994521,98.32408715],[4.5374533,0.03994697,98.32441678],[4.5374537,0.03994873,98.32474864],[4.5374541,0.03995049,98.32508271],[4.5374545,0.03995225,98.32541894],[4.5374549,0.03995401,98.32575733],[4.53745529,0.03995577,98.32609784],[4.53745569,0.03995753,98.32644044],[4.53745609,0.03995928,98.32678511],[4.53745649,0.03996104,98.32713182],[4.53745689,0.0399628,98.32748054],[4.53745729,0.03996456,98.32783125],[4.53745769,0.03996632,98.32818393],[4.53745809,0.03996808,98.32853853],[4.53745849,0.03996984,98.32889504],[4.5374589,0.0399716,98.32925319],[4.5374593,0.03997336,98.32961256],[4.5374597,0.03997512,98.32997269],[4.5374601,0.03997688,98.33033313],[4.53746051,0.03997864,98.33069345],[4.53746091,0.03998039,98.33105318],[4.53746131,0.03998215,98.33141188],[4.53746172,0.03998391,98.33176911],[4.53746212,0.03998567,98.33212442],[4.53746252,0.03998743,98.33247736],[4.53746292,0.03998919,98.33282749],[4.53746333,0.03999095,98.33317437],[4.53746373,0.03999271,98.33351755],[4.53746413,0.03999446,98.33385658],[4.53746453,0.03999622,98.33419102],[4.53746493,0.03999798,98.33452045],[4.53746533,0.03999974,98.33484486],[4.53746573,0.0400015,98.33516462],[4.53746613,0.04000326,98.33548011],[4.53746653,0.04000502,98.33579172],[4.53746692,0.04000678,98.33609985],[4.53746732,0.04000854,98.33640487],[4.53746772,0.0400103,98.33670718],[4.53746812,0.04001206,98.33700716],[4.53746851,0.04001382,98.3373052],[4.53746891,0.04001558,98.33760168],[4.53746931,0.04001734,98.33789698],[4.5374697,0.0400191,98.3381915],[4.5374701,0.04002086,98.33848561],[4.53747049,0.04002262,98.3387797],[4.53747089,0.04002438,98.33907415],[4.53747129,0.04002614,98.33936935],[4.53747168,0.0400279,98.33966568],[4.53747208,0.04002966,98.33996351],[4.53747248,0.04003142,98.34026302],[4.53747288,0.04003318,98.34056421],[4.53747327,0.04003494,98.34086706],[4.53747367,0.0400367,98.34117156],[4.53747407,0.04003846,98.3414777],[4.53747446,0.04004022,98.34178547],[4.53747486,0.04004198,98.34209486],[4.53747526,0.04004374,98.34240585],[4.53747566,0.0400455,98.34271844],[4.53747605,0.04004726,98.34303262],[4.53747645,0.04004902,98.34334836],[4.53747685,0.04005078,98.34366567],[4.53747724,0.04005254,98.34398452],[4.53747764,0.0400543,98.34430491],[4.53747804,0.04005606,98.34462683],[4.53747843,0.04005782,98.34495026],[4.53747883,0.04005958,98.3452752],[4.53747923,0.04006134,98.34560163],[4.53747962,0.0400631,98.34592954],[4.53748002,0.04006486,98.34625892],[4.53748042,0.04006662,98.34658975],[4.53748081,0.04006838,98.34692203],[4.53748121,0.04007014,98.34725575],[4.53748161,0.0400719,98.34759089],[4.537482,0.04007366,98.34792745],[4.5374824,0.04007542,98.3482654],[4.53748279,0.04007718,98.34860474],[4.53748319,0.04007894,98.34894547],[4.53748359,0.0400807,98.34928756],[4.53748398,0.04008246,98.349631],[4.53748438,0.04008422,98.34997579],[4.53748477,0.04008598,98.35032192],[4.53748517,0.04008774,98.35066936],[4.53748557,0.0400895,98.35101812],[4.53748596,0.04009126,98.35136818],[4.53748636,0.04009302,98.35171952],[4.53748675,0.04009478,98.35207215],[4.53748715,0.04009654,98.35242603],[4.53748754,0.0400983,98.35278118],[4.53748794,0.04010006,98.35313757],[4.53748834,0.04010182,98.35349519],[4.53748873,0.04010358,98.35385403],[4.53748913,0.04010534,98.35421408],[4.53748952,0.0401071,98.35457533],[4.53748992,0.04010886,98.35493777],[4.53749031,0.04011062,98.35530138],[4.53749071,0.04011238,98.35566617],[4.5374911,0.04011414,98.3560321],[4.5374915,0.0401159,98.35639918],[4.53749189,0.04011766,98.3567674],[4.53749229,0.04011942,98.35713673],[4.53749268,0.04012118,98.35750718],[4.53749308,0.04012294,98.35787872],[4.53749347,0.0401247,98.35825136],[4.53749387,0.04012646,98.35862507],[4.53749426,0.04012822,98.35899985],[4.53749466,0.04012998,98.35937568],[4.53749505,0.04013174,98.35975256],[4.53749545,0.0401335,98.36013047],[4.53749584,0.04013526,98.36050941],[4.53749624,0.04013702,98.36088936],[4.53749663,0.04013878,98.36127031],[4.53749703,0.04014054,98.36165225],[4.53749742,0.0401423,98.36203517],[4.53749782,0.04014406,98.36241906],[4.53749821,0.04014583,98.36280391],[4.5374986,0.04014759,98.3631897],[4.537499,0.04014935,98.36357643],[4.53749939,0.04015111,98.36396409],[4.53749979,0.04015287,98.36435266],[4.53750018,0.04015463,98.36474214],[4.53750058,0.04015639,98.36513251],[4.53750097,0.04015815,98.36552376],[4.53750136,0.04015991,98.36591588],[4.53750176,0.04016167,98.36630887],[4.53750215,0.04016343,98.3667027],[4.53750255,0.04016519,98.36709738],[4.53750294,0.04016695,98.36749288],[4.53750333,0.04016871,98.36788921],[4.53750373,0.04017047,98.36828634],[4.53750412,0.04017223,98.36868427],[4.53750451,0.04017399,98.36908299],[4.53750491,0.04017575,98.36945629],[4.5375053,0.04017751,98.36877606],[4.5375057,0.04017927,98.36809767],[4.53750609,0.04018103,98.36742114]],"type":"LineString"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1003400","id":2,"type":"none","predecessorId":2}},{"geometry":{"coordinates":[[4.53707988,0.03909229,97.9645388],[4.53707938,0.03909055,97.9644832],[4.53707888,0.03908882,97.96443095],[4.53707839,0.03908709,97.96439156],[4.5370779,0.03908535,97.96436509],[4.53707741,0.03908361,97.96434923],[4.53707693,0.03908188,97.9643417],[4.53707645,0.03908014,97.96434019],[4.53707597,0.0390784,97.9643424],[4.53707549,0.03907666,97.96434606],[4.537075,0.03907492,97.96434886],[4.53707452,0.03907319,97.96434853],[4.53707404,0.03907145,97.96434275],[4.53707355,0.03906971,97.96432959],[4.53707306,0.03906798,97.96431159],[4.53707257,0.03906624,97.96429463],[4.53707209,0.0390645,97.96428466],[4.5370716,0.03906277,97.96428756],[4.53707112,0.03906103,97.9643038],[4.53707065,0.03905929,97.96432637],[4.53707017,0.03905755,97.96434826],[4.53706969,0.03905581,97.96436245],[4.5370692,0.03905407,97.96436195],[4.53706871,0.03905234,97.96434744],[4.53706822,0.0390506,97.96433457],[4.53706774,0.03904886,97.96432581],[4.53706725,0.03904713,97.96432003],[4.53706676,0.03904539,97.96431612],[4.53706627,0.03904365,97.96431297],[4.53706579,0.03904192,97.96430946],[4.5370653,0.03904018,97.96430447],[4.53706481,0.03903845,97.9642969],[4.53706432,0.03903671,97.96428546],[4.53706382,0.03903497,97.96426722],[4.53706332,0.03903324,97.96423936],[4.53706282,0.03903151,97.96420153],[4.53706232,0.03902977,97.96415451],[4.53706181,0.03902804,97.96409912],[4.5370613,0.03902631,97.96403618],[4.53706079,0.03902458,97.96396649],[4.53706028,0.03902285,97.96389087],[4.53705976,0.03902112,97.96381014],[4.53705925,0.03901939,97.96372511],[4.53705873,0.03901766,97.96363672],[4.53705821,0.03901593,97.96354625],[4.53705769,0.0390142,97.96345501],[4.53705717,0.03901247,97.9633643],[4.53705665,0.03901074,97.963275],[4.53705613,0.03900902,97.9631877],[4.53705561,0.03900729,97.96310292],[4.53705509,0.03900556,97.96302122],[4.53705457,0.03900383,97.96294313],[4.53705406,0.0390021,97.96286903],[4.53705354,0.03900037,97.96279922],[4.53705303,0.03899864,97.96273345],[4.53705251,0.03899691,97.96267084],[4.537052,0.03899518,97.96261066],[4.53705149,0.03899344,97.96255249],[4.53705098,0.03899171,97.96249597],[4.53705046,0.03898998,97.96244075],[4.53704995,0.03898825,97.96238644],[4.53704944,0.03898652,97.96233259],[4.53704893,0.03898479,97.96227877],[4.53704841,0.03898306,97.96222454],[4.5370479,0.03898133,97.96216947],[4.53704739,0.0389796,97.96211325],[4.53704687,0.03897787,97.96205562],[4.53704636,0.03897614,97.96199634],[4.53704584,0.03897441,97.96193515],[4.53704533,0.03897268,97.96187174],[4.53704481,0.03897095,97.96180564],[4.53704429,0.03896922,97.96173638],[4.53704377,0.03896749,97.96166345],[4.53704325,0.03896576,97.96158638],[4.53704272,0.03896403,97.961505],[4.5370422,0.03896231,97.96141948],[4.53704167,0.03896058,97.96132998],[4.53704114,0.03895885,97.96123666],[4.53704061,0.03895713,97.96113964],[4.53704008,0.0389554,97.96103905],[4.53703955,0.03895367,97.96093499],[4.53703901,0.03895195,97.96082761],[4.53703848,0.03895022,97.96071703],[4.53703794,0.0389485,97.96060338],[4.5370374,0.03894677,97.96048679],[4.53703687,0.03894505,97.96036739],[4.53703633,0.03894332,97.9602453],[4.53703578,0.0389416,97.96012067],[4.53703524,0.03893988,97.95999378],[4.5370347,0.03893815,97.9598652],[4.53703416,0.03893643,97.95973551],[4.53703361,0.03893471,97.95960531],[4.53703307,0.03893298,97.95947518],[4.53703253,0.03893126,97.95934564],[4.53703198,0.03892954,97.95921695],[4.53703144,0.03892782,97.95908932],[4.53703089,0.03892609,97.95896295],[4.53703035,0.03892437,97.95883809],[4.53702981,0.03892265,97.95871518],[4.53702927,0.03892092,97.9585947],[4.53702872,0.0389192,97.95847709],[4.53702818,0.03891747,97.95836254],[4.53702764,0.03891575,97.95825122],[4.5370271,0.03891403,97.95814326],[4.53702657,0.0389123,97.9580385],[4.53702603,0.03891058,97.95793632],[4.53702549,0.03890885,97.95783605],[4.53702495,0.03890713,97.95773703],[4.53702442,0.0389054,97.9576386],[4.53702388,0.03890368,97.9575401],[4.53702334,0.03890196,97.957441],[4.5370228,0.03890023,97.95734111],[4.53702226,0.03889851,97.95724034],[4.53702172,0.03889678,97.95713858],[4.53702118,0.03889506,97.95703572],[4.53702064,0.03889334,97.95693167],[4.5370201,0.03889161,97.95682631],[4.53701956,0.03888989,97.95671956],[4.53701902,0.03888816,97.95661129],[4.53701848,0.03888644,97.95650142],[4.53701793,0.03888472,97.95638983],[4.53701739,0.038883,97.95627641],[4.53701684,0.03888127,97.95616088],[4.53701629,0.03887955,97.95604283],[4.53701575,0.03887783,97.95592221],[4.5370152,0.03887611,97.95579911],[4.53701465,0.03887439,97.95567362],[4.5370141,0.03887267,97.95554603],[4.53701354,0.03887094,97.95541665],[4.53701299,0.03886922,97.95528579],[4.53701244,0.0388675,97.95515375],[4.53701189,0.03886578,97.95502082],[4.53701133,0.03886406,97.95488709],[4.53701078,0.03886234,97.95475266],[4.53701022,0.03886062,97.9546176],[4.53700967,0.0388589,97.954482],[4.53700911,0.03885718,97.95434594],[4.53700856,0.03885546,97.95420949],[4.537008,0.03885374,97.95407275],[4.53700744,0.03885202,97.95393579],[4.53700689,0.0388503,97.95379869],[4.53700633,0.03884858,97.95366154],[4.53700577,0.03884686,97.95352442],[4.53700522,0.03884514,97.9533874],[4.53700466,0.03884342,97.95325058],[4.5370041,0.0388417,97.95311402],[4.53700354,0.03883998,97.95297788],[4.53700299,0.03883826,97.9528425],[4.53700243,0.03883655,97.95270831],[4.53700187,0.03883483,97.95257573],[4.53700131,0.03883311,97.95244516],[4.53700076,0.03883139,97.95231689],[4.5370002,0.03882967,97.95219111],[4.53699965,0.03882795,97.95206797],[4.53699909,0.03882623,97.95194757],[4.53699854,0.0388245,97.95182974],[4.53699799,0.03882278,97.95171425],[4.53699744,0.03882106,97.95160088],[4.53699688,0.03881934,97.95148939],[4.53699633,0.03881762,97.95137954],[4.53699578,0.0388159,97.95127112],[4.53699523,0.03881418,97.95116389],[4.53699468,0.03881246,97.95105762],[4.53699413,0.03881074,97.95095208],[4.53699358,0.03880902,97.95084705],[4.53699303,0.0388073,97.95074228],[4.53699247,0.03880558,97.95063756],[4.53699192,0.03880385,97.95053265],[4.53699137,0.03880213,97.95042733],[4.53699082,0.03880041,97.95032136],[4.53699027,0.03879869,97.95021451],[4.53698971,0.03879697,97.95010657],[4.53698916,0.03879525,97.94999729],[4.5369886,0.03879353,97.94988646],[4.53698805,0.03879181,97.94977384],[4.53698749,0.03879009,97.9496592],[4.53698693,0.03878837,97.94954232],[4.53698638,0.03878665,97.94942297],[4.53698582,0.03878493,97.94930092],[4.53698526,0.03878321,97.94917594],[4.53698469,0.0387815,97.94904781],[4.53698413,0.03877978,97.9489163],[4.53698357,0.03877806,97.94878117],[4.53698326,0.03877713,97.94870629]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1003400","id":-6,"type":"none","predecessorId":-5}},{"geometry":{"coordinates":[[4.53712349,0.03908173,97.9645388],[4.537123,0.03908,97.9644832],[4.5371225,0.03907826,97.96443095],[4.53712201,0.03907653,97.96439156],[4.53712152,0.03907479,97.96436509],[4.53712103,0.03907305,97.96434923],[4.53712055,0.03907131,97.9643417],[4.53712007,0.03906958,97.96434019],[4.53711959,0.03906784,97.9643424],[4.53711911,0.0390661,97.96434606],[4.53711863,0.03906436,97.96434886],[4.53711815,0.03906262,97.96434853],[4.53711766,0.03906088,97.96434275],[4.53711718,0.03905915,97.96432959],[4.53711669,0.03905741,97.96431159],[4.5371162,0.03905567,97.96429463],[4.53711571,0.03905394,97.96428466],[4.53711523,0.0390522,97.96428756],[4.53711475,0.03905046,97.9643038],[4.53711428,0.03904872,97.96432637],[4.5371138,0.03904698,97.96434826],[4.53711332,0.03904524,97.96436245],[4.53711284,0.03904351,97.96436195],[4.53711235,0.03904177,97.96434744],[4.53711186,0.03904003,97.96433457],[4.53711137,0.0390383,97.96432581],[4.53711088,0.03903656,97.96432003],[4.53711039,0.03903482,97.96431612],[4.53710991,0.03903308,97.96431297],[4.53710942,0.03903135,97.96430946],[4.53710893,0.03902961,97.96430447],[4.53710844,0.03902787,97.9642969],[4.53710795,0.03902614,97.96428546],[4.53710746,0.0390244,97.96426722],[4.53710696,0.03902267,97.96423936],[4.53710646,0.03902093,97.96420153],[4.53710596,0.0390192,97.96415451],[4.53710545,0.03901747,97.96409912],[4.53710495,0.03901574,97.96403618],[4.53710443,0.03901401,97.96396649],[4.53710392,0.03901227,97.96389087],[4.53710341,0.03901054,97.96381014],[4.53710289,0.03900881,97.96372511],[4.53710237,0.03900709,97.96363672],[4.53710185,0.03900536,97.96354625],[4.53710133,0.03900363,97.96345501],[4.53710081,0.0390019,97.9633643],[4.53710029,0.03900017,97.963275],[4.53709977,0.03899844,97.9631877],[4.53709926,0.03899671,97.96310292],[4.53709874,0.03899498,97.96302122],[4.53709822,0.03899325,97.96294313],[4.5370977,0.03899152,97.96286903],[4.53709719,0.03898979,97.96279922],[4.53709668,0.03898806,97.96273345],[4.53709616,0.03898633,97.96267084],[4.53709565,0.0389846,97.96261066],[4.53709514,0.03898287,97.96255249],[4.53709463,0.03898113,97.96249597],[4.53709412,0.0389794,97.96244075],[4.53709361,0.03897767,97.96238644],[4.5370931,0.03897594,97.96233259],[4.53709258,0.03897421,97.96227877],[4.53709207,0.03897248,97.96222454],[4.53709156,0.03897075,97.96216947],[4.53709105,0.03896902,97.96211325],[4.53709053,0.03896729,97.96205562],[4.53709002,0.03896555,97.96199634],[4.5370895,0.03896382,97.96193515],[4.53708899,0.03896209,97.96187174],[4.53708847,0.03896036,97.96180564],[4.53708795,0.03895864,97.96173638],[4.53708743,0.03895691,97.96166345],[4.53708691,0.03895518,97.96158638],[4.53708639,0.03895345,97.961505],[4.53708586,0.03895172,97.96141948],[4.53708534,0.03894999,97.96132998],[4.53708481,0.03894827,97.96123666],[4.53708428,0.03894654,97.96113964],[4.53708375,0.03894481,97.96103905],[4.53708322,0.03894309,97.96093499],[4.53708268,0.03894136,97.96082761],[4.53708215,0.03893964,97.96071703],[4.53708161,0.03893791,97.96060338],[4.53708107,0.03893618,97.96048679],[4.53708054,0.03893446,97.96036739],[4.53708,0.03893274,97.9602453],[4.53707946,0.03893101,97.96012067],[4.53707892,0.03892929,97.95999378],[4.53707837,0.03892756,97.9598652],[4.53707783,0.03892584,97.95973551],[4.53707729,0.03892412,97.95960531],[4.53707674,0.03892239,97.95947518],[4.5370762,0.03892067,97.95934564],[4.53707566,0.03891895,97.95921695],[4.53707512,0.03891722,97.95908932],[4.53707457,0.0389155,97.95896295],[4.53707403,0.03891378,97.95883809],[4.53707349,0.03891205,97.95871518],[4.53707295,0.03891033,97.9585947],[4.5370724,0.03890861,97.95847709],[4.53707186,0.03890688,97.95836254],[4.53707132,0.03890516,97.95825122],[4.53707079,0.03890343,97.95814326],[4.53707025,0.03890171,97.9580385],[4.53706971,0.03889998,97.95793632],[4.53706918,0.03889826,97.95783605],[4.53706864,0.03889653,97.95773703],[4.5370681,0.03889481,97.9576386],[4.53706757,0.03889308,97.9575401],[4.53706703,0.03889136,97.957441],[4.53706649,0.03888963,97.95734111],[4.53706595,0.03888791,97.95724034],[4.53706541,0.03888618,97.95713858],[4.53706487,0.03888446,97.95703572],[4.53706433,0.03888274,97.95693167],[4.53706379,0.03888101,97.95682631],[4.53706325,0.03887929,97.95671956],[4.53706271,0.03887756,97.95661129],[4.53706217,0.03887584,97.95650142],[4.53706163,0.03887412,97.95638983],[4.53706108,0.0388724,97.95627641],[4.53706054,0.03887067,97.95616088],[4.53705999,0.03886895,97.95604283],[4.53705944,0.03886723,97.95592221],[4.53705889,0.03886551,97.95579911],[4.53705834,0.03886378,97.95567362],[4.53705779,0.03886206,97.95554603],[4.53705724,0.03886034,97.95541665],[4.53705669,0.03885862,97.95528579],[4.53705614,0.0388569,97.95515375],[4.53705559,0.03885518,97.95502082],[4.53705503,0.03885346,97.95488709],[4.53705448,0.03885174,97.95475266],[4.53705393,0.03885002,97.9546176],[4.53705337,0.03884829,97.954482],[4.53705282,0.03884657,97.95434594],[4.53705226,0.03884485,97.95420949],[4.53705171,0.03884313,97.95407275],[4.53705115,0.03884141,97.95393579],[4.53705059,0.03883969,97.95379869],[4.53705004,0.03883797,97.95366154],[4.53704948,0.03883625,97.95352442],[4.53704892,0.03883453,97.9533874],[4.53704837,0.03883281,97.95325058],[4.53704781,0.03883109,97.95311402],[4.53704725,0.03882937,97.95297788],[4.5370467,0.03882765,97.9528425],[4.53704614,0.03882593,97.95270831],[4.53704558,0.03882421,97.95257573],[4.53704503,0.03882249,97.95244516],[4.53704447,0.03882077,97.95231689],[4.53704392,0.03881905,97.95219111],[4.53704336,0.03881733,97.95206797],[4.53704281,0.03881561,97.95194757],[4.53704226,0.03881389,97.95182974],[4.5370417,0.03881217,97.95171425],[4.53704115,0.03881045,97.95160088],[4.5370406,0.03880873,97.95148939],[4.53704005,0.03880701,97.95137954],[4.5370395,0.03880528,97.95127112],[4.53703895,0.03880356,97.95116389],[4.5370384,0.03880184,97.95105762],[4.53703785,0.03880012,97.95095208],[4.5370373,0.0387984,97.95084705],[4.53703675,0.03879668,97.95074228],[4.5370362,0.03879496,97.95063756],[4.53703565,0.03879324,97.95053265],[4.5370351,0.03879151,97.95042733],[4.53703454,0.03878979,97.95032136],[4.53703399,0.03878807,97.95021451],[4.53703344,0.03878635,97.95010657],[4.53703289,0.03878463,97.94999729],[4.53703233,0.03878291,97.94988646],[4.53703178,0.03878119,97.94977384],[4.53703122,0.03877947,97.9496592],[4.53703066,0.03877775,97.94954232],[4.53703011,0.03877603,97.94942297],[4.53702955,0.03877431,97.94930092],[4.53702899,0.03877259,97.94917594],[4.53702843,0.03877087,97.94904781],[4.53702786,0.03876915,97.9489163],[4.5370273,0.03876743,97.94878117],[4.53702699,0.0387665,97.94870629]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1003400","id":-5,"type":"shoulder","predecessorId":-4}},{"geometry":{"coordinates":[[4.53712766,0.03908072,97.97748026],[4.53712715,0.03907899,97.97740934],[4.53712665,0.03907726,97.97734058],[4.53712616,0.03907552,97.97728334],[4.53712566,0.03907379,97.97723755],[4.53712517,0.03907205,97.97720074],[4.53712468,0.03907031,97.97717048],[4.53712419,0.03906858,97.97714432],[4.5371237,0.03906684,97.97711983],[4.53712322,0.0390651,97.97709456],[4.53712273,0.03906337,97.97706607],[4.53712223,0.03906163,97.97703193],[4.53712174,0.0390599,97.9769897],[4.53712124,0.03905816,97.97693727],[4.53712074,0.03905643,97.97687706],[4.53712024,0.0390547,97.97681479],[4.53711974,0.03905296,97.97675627],[4.53711924,0.03905123,97.97670723],[4.53711874,0.03904949,97.97666799],[4.53711825,0.03904776,97.9766314],[4.53711775,0.03904602,97.97659031],[4.53711725,0.03904429,97.97653754],[4.53711674,0.03904256,97.97646597],[4.53711623,0.03904083,97.97637636],[4.53711572,0.0390391,97.97628546],[4.5371152,0.03903737,97.97619704],[4.53711469,0.03903564,97.97611131],[4.53711418,0.0390339,97.97602846],[4.53711367,0.03903217,97.97594871],[4.53711316,0.03903044,97.97587226],[4.53711265,0.03902871,97.97579931],[4.53711214,0.03902698,97.97573006],[4.53711163,0.03902525,97.97566455],[4.53711113,0.03902351,97.97560112],[4.53711062,0.03902178,97.97553723],[4.53711011,0.03902005,97.9754718],[4.5371096,0.03901832,97.97540489],[4.53710909,0.03901659,97.97533656],[4.53710858,0.03901486,97.97526687],[4.53710807,0.03901312,97.97519589],[4.53710756,0.03901139,97.97512369],[4.53710705,0.03900966,97.97505033],[4.53710653,0.03900793,97.97497589],[4.53710602,0.0390062,97.97490056],[4.53710551,0.03900447,97.97482488],[4.53710499,0.03900274,97.97474939],[4.53710448,0.03900101,97.97467466],[4.53710397,0.03899928,97.97460085],[4.53710345,0.03899755,97.97452778],[4.53710294,0.03899582,97.97445523],[4.53710242,0.03899409,97.97438303],[4.53710191,0.03899236,97.97431095],[4.53710139,0.03899063,97.97423864],[4.53710088,0.03898889,97.9741657],[4.53710036,0.03898716,97.9740917],[4.53709985,0.03898543,97.97401624],[4.53709933,0.0389837,97.97393902],[4.53709881,0.03898197,97.97386007],[4.53709829,0.03898025,97.97377951],[4.53709778,0.03897852,97.97369743],[4.53709726,0.03897679,97.9736139],[4.53709673,0.03897506,97.97352893],[4.53709621,0.03897333,97.97344255],[4.53709569,0.0389716,97.97335476],[4.53709517,0.03896987,97.9732656],[4.53709464,0.03896814,97.97317521],[4.53709412,0.03896642,97.97308379],[4.5370936,0.03896469,97.97299153],[4.53709307,0.03896296,97.97289865],[4.53709255,0.03896123,97.97280528],[4.53709202,0.0389595,97.97271143],[4.53709149,0.03895778,97.97261704],[4.53709097,0.03895605,97.97252208],[4.53709044,0.03895432,97.97242651],[4.53708991,0.03895259,97.97233028],[4.53708938,0.03895087,97.97223336],[4.53708886,0.03894914,97.97213571],[4.53708833,0.03894741,97.97203726],[4.5370878,0.03894569,97.97193792],[4.53708727,0.03894396,97.9718376],[4.53708674,0.03894223,97.97173622],[4.53708621,0.03894051,97.97163369],[4.53708567,0.03893878,97.97152992],[4.53708514,0.03893705,97.97142484],[4.53708461,0.03893533,97.97131835],[4.53708408,0.0389336,97.97121039],[4.53708354,0.03893188,97.97110086],[4.53708301,0.03893015,97.97098969],[4.53708247,0.03892843,97.97087696],[4.53708193,0.0389267,97.97076302],[4.5370814,0.03892498,97.97064825],[4.53708086,0.03892325,97.97053303],[4.53708032,0.03892153,97.97041774],[4.53707978,0.0389198,97.97030268],[4.53707924,0.03891808,97.9701879],[4.53707871,0.03891635,97.9700734],[4.53707817,0.03891463,97.96995917],[4.53707763,0.0389129,97.96984526],[4.53707709,0.03891118,97.9697319],[4.53707655,0.03890945,97.96961935],[4.53707601,0.03890773,97.96950789],[4.53707548,0.03890601,97.96939779],[4.53707494,0.03890428,97.96928933],[4.5370744,0.03890256,97.96918277],[4.53707386,0.03890083,97.96907805],[4.53707333,0.03889911,97.96897468],[4.53707279,0.03889738,97.96887211],[4.53707225,0.03889566,97.9687698],[4.53707172,0.03889393,97.96866721],[4.53707118,0.03889221,97.96856379],[4.53707064,0.03889048,97.96845913],[4.5370701,0.03888876,97.96835316],[4.53706956,0.03888703,97.96824591],[4.53706902,0.03888531,97.96813739],[4.53706848,0.03888359,97.9680276],[4.53706794,0.03888186,97.96791657],[4.5370674,0.03888014,97.96780432],[4.53706685,0.03887842,97.96769084],[4.53706631,0.03887669,97.96757617],[4.53706577,0.03887497,97.96746031],[4.53706522,0.03887325,97.96734328],[4.53706468,0.03887152,97.96722507],[4.53706413,0.0388698,97.96710554],[4.53706358,0.03886808,97.96698437],[4.53706304,0.03886636,97.96686166],[4.53706249,0.03886463,97.96673758],[4.53706194,0.03886291,97.96661232],[4.53706139,0.03886119,97.96648609],[4.53706084,0.03885947,97.96635906],[4.53706029,0.03885775,97.96623142],[4.53705974,0.03885602,97.96610337],[4.53705919,0.0388543,97.96597505],[4.53705864,0.03885258,97.96584645],[4.53705809,0.03885086,97.96571753],[4.53705754,0.03884914,97.96558824],[4.53705698,0.03884742,97.96545855],[4.53705643,0.0388457,97.96532841],[4.53705588,0.03884398,97.9651978],[4.53705533,0.03884226,97.96506665],[4.53705477,0.03884053,97.96493494],[4.53705422,0.03883881,97.96480263],[4.53705366,0.03883709,97.96466967],[4.53705311,0.03883537,97.96453602],[4.53705255,0.03883365,97.96440164],[4.537052,0.03883193,97.9642665],[4.53705144,0.03883021,97.96413055],[4.53705089,0.03882849,97.9639938],[4.53705033,0.03882677,97.96385651],[4.53704977,0.03882505,97.96371895],[4.53704921,0.03882333,97.96358144],[4.53704866,0.03882161,97.96344426],[4.5370481,0.03881989,97.96330772],[4.53704754,0.03881817,97.96317209],[4.53704698,0.03881645,97.96303769],[4.53704643,0.03881473,97.96290474],[4.53704587,0.03881301,97.96277319],[4.53704531,0.03881129,97.96264295],[4.53704476,0.03880957,97.96251392],[4.5370442,0.03880785,97.96238598],[4.53704364,0.03880613,97.96225905],[4.53704309,0.03880441,97.96213302],[4.53704253,0.03880269,97.96200779],[4.53704198,0.03880097,97.96188326],[4.53704142,0.03879925,97.96175932],[4.53704087,0.03879753,97.96163588],[4.53704031,0.03879581,97.96151283],[4.53703975,0.03879409,97.96139007],[4.5370392,0.03879237,97.96126751],[4.53703864,0.03879065,97.96114503],[4.53703808,0.03878893,97.96102254],[4.53703753,0.03878721,97.96089994],[4.53703697,0.03878549,97.96077713],[4.53703641,0.03878377,97.96065401],[4.53703586,0.03878205,97.96053047],[4.5370353,0.03878033,97.96040642],[4.53703474,0.03877861,97.96028175],[4.53703418,0.0387769,97.96015636],[4.53703362,0.03877518,97.96003016],[4.53703306,0.03877346,97.95990304],[4.5370325,0.03877174,97.9597749],[4.53703194,0.03877002,97.95964564],[4.53703138,0.0387683,97.95951517],[4.53703082,0.03876658,97.95938338],[4.53703051,0.03876565,97.95931131]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1003400","id":-4,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3}},{"geometry":{"coordinates":[[4.53716337,0.03907208,98.08848807],[4.53716289,0.03907034,98.08847289],[4.53716236,0.03906861,98.08827953],[4.53716177,0.0390669,98.08793787],[4.53716115,0.0390652,98.0874683],[4.53716049,0.0390635,98.08688887],[4.5371598,0.03906181,98.0862176],[4.53715908,0.03906013,98.08547249],[4.53715835,0.03905845,98.08467155],[4.53715761,0.03905678,98.08383276],[4.53715686,0.0390551,98.08297411],[4.5371561,0.03905343,98.08211354],[4.53715535,0.03905176,98.08126901],[4.53715462,0.03905008,98.08045858],[4.5371539,0.0390484,98.0797018],[4.5371532,0.03904671,98.0790192],[4.53715253,0.03904502,98.07843134],[4.5371519,0.03904332,98.0779587],[4.53715131,0.03904161,98.07760803],[4.53715075,0.03903989,98.07735429],[4.53715022,0.03903816,98.07716795],[4.53714969,0.03903643,98.07701952],[4.53714917,0.03903471,98.07687953],[4.53714864,0.03903298,98.07672645],[4.53714811,0.03903125,98.07655936],[4.53714757,0.03902953,98.07638068],[4.53714703,0.0390278,98.0761928],[4.53714649,0.03902608,98.07599812],[4.53714594,0.03902436,98.07579906],[4.5371454,0.03902263,98.075598],[4.53714485,0.03902091,98.07539735],[4.53714431,0.03901919,98.07519951],[4.53714376,0.03901746,98.07500669],[4.53714322,0.03901574,98.07481942],[4.53714268,0.03901401,98.07463726],[4.53714214,0.03901229,98.07445976],[4.53714161,0.03901056,98.07428647],[4.53714107,0.03900884,98.07411693],[4.53714053,0.03900711,98.0739507],[4.53714,0.03900539,98.07378731],[4.53713946,0.03900366,98.07362634],[4.53713893,0.03900194,98.07346731],[4.53713839,0.03900021,98.07330978],[4.53713786,0.03899849,98.07315345],[4.53713733,0.03899676,98.07299831],[4.53713679,0.03899503,98.07284441],[4.53713626,0.03899331,98.07269181],[4.53713572,0.03899158,98.07254056],[4.53713519,0.03898986,98.07239071],[4.53713466,0.03898813,98.07224231],[4.53713413,0.0389864,98.07209542],[4.53713359,0.03898468,98.07195006],[4.53713306,0.03898295,98.07180615],[4.53713253,0.03898123,98.07166351],[4.537132,0.0389795,98.07152198],[4.53713146,0.03897777,98.0713814],[4.53713093,0.03897605,98.07124159],[4.5371304,0.03897432,98.07110239],[4.53712987,0.03897259,98.07096364],[4.53712934,0.03897087,98.07082516],[4.5371288,0.03896914,98.07068675],[4.53712827,0.03896741,98.07054816],[4.53712774,0.03896569,98.07040914],[4.5371272,0.03896396,98.07026942],[4.53712667,0.03896224,98.07012878],[4.53712613,0.03896051,98.06998708],[4.5371256,0.03895879,98.06984426],[4.53712506,0.03895706,98.06970025],[4.53712453,0.03895534,98.06955498],[4.53712399,0.03895361,98.06940838],[4.53712345,0.03895189,98.06926038],[4.53712291,0.03895016,98.06911092],[4.53712237,0.03894844,98.06895993],[4.53712183,0.03894671,98.06880734],[4.53712129,0.03894499,98.06865309],[4.53712075,0.03894326,98.0684971],[4.53712021,0.03894154,98.0683393],[4.53711966,0.03893982,98.06817961],[4.53711912,0.03893809,98.0680179],[4.53711857,0.03893637,98.06785407],[4.53711803,0.03893465,98.067688],[4.53711748,0.03893292,98.06751957],[4.53711693,0.0389312,98.06734866],[4.53711638,0.03892948,98.06717518],[4.53711583,0.03892776,98.06699901],[4.53711528,0.03892604,98.06682005],[4.53711473,0.03892432,98.06663818],[4.53711417,0.03892259,98.0664533],[4.53711362,0.03892087,98.06626546],[4.53711306,0.03891915,98.06607499],[4.5371125,0.03891743,98.06588223],[4.53711195,0.03891571,98.06568755],[4.53711139,0.03891399,98.06549128],[4.53711083,0.03891227,98.06529379],[4.53711027,0.03891055,98.0650954],[4.53710971,0.03890884,98.06489646],[4.53710915,0.03890712,98.06469732],[4.53710858,0.0389054,98.06449837],[4.53710802,0.03890368,98.06430017],[4.53710746,0.03890196,98.06410335],[4.5371069,0.03890024,98.06390852],[4.53710634,0.03889852,98.06371631],[4.53710578,0.0388968,98.06352734],[4.53710522,0.03889508,98.06334221],[4.53710467,0.03889336,98.06316122],[4.53710411,0.03889164,98.06298421],[4.53710356,0.03888992,98.06281098],[4.537103,0.0388882,98.06264133],[4.53710245,0.03888648,98.06247507],[4.5371019,0.03888476,98.062312],[4.53710135,0.03888303,98.06215193],[4.5371008,0.03888131,98.06199465],[4.53710025,0.03887959,98.06183998],[4.5370997,0.03887787,98.06168771],[4.53709915,0.03887615,98.06153765],[4.5370986,0.03887442,98.06138961],[4.53709805,0.0388727,98.06124338],[4.5370975,0.03887098,98.06109878],[4.53709696,0.03886926,98.06095561],[4.53709641,0.03886753,98.06081367],[4.53709586,0.03886581,98.06067277],[4.53709531,0.03886409,98.06053271],[4.53709477,0.03886237,98.0603931],[4.53709422,0.03886065,98.06025345],[4.53709367,0.03885892,98.06011362],[4.53709312,0.0388572,98.0599736],[4.53709257,0.03885548,98.05983336],[4.53709202,0.03885376,98.05969289],[4.53709148,0.03885203,98.05955217],[4.53709093,0.03885031,98.05941117],[4.53709038,0.03884859,98.05926989],[4.53708983,0.03884687,98.0591283],[4.53708928,0.03884515,98.05898638],[4.53708873,0.03884343,98.05884412],[4.53708817,0.0388417,98.0587015],[4.53708762,0.03883998,98.05855849],[4.53708707,0.03883826,98.05841509],[4.53708652,0.03883654,98.05827127],[4.53708597,0.03883482,98.05812701],[4.53708541,0.0388331,98.0579823],[4.53708486,0.03883138,98.05783711],[4.53708431,0.03882966,98.05769143],[4.53708375,0.03882793,98.05754525],[4.5370832,0.03882621,98.05739853],[4.53708264,0.03882449,98.05725127],[4.53708209,0.03882277,98.05710344],[4.53708153,0.03882105,98.05695509],[4.53708098,0.03881933,98.05680647],[4.53708042,0.03881761,98.05665791],[4.53707987,0.03881589,98.05650971],[4.53707931,0.03881417,98.0563622],[4.53707875,0.03881245,98.0562157],[4.5370782,0.03881073,98.05607052],[4.53707764,0.03880901,98.05592698],[4.53707709,0.03880729,98.05578533],[4.53707653,0.03880557,98.05564555],[4.53707598,0.03880385,98.05550756],[4.53707542,0.03880213,98.05537128],[4.53707487,0.03880041,98.05523663],[4.53707432,0.03879869,98.05510354],[4.53707376,0.03879696,98.05497192],[4.53707321,0.03879524,98.05484169],[4.53707266,0.03879352,98.05471277],[4.53707211,0.0387918,98.05458509],[4.53707155,0.03879008,98.05445856],[4.537071,0.03878836,98.0543331],[4.53707045,0.03878664,98.05420864],[4.5370699,0.03878492,98.05408509],[4.53706935,0.0387832,98.05396239],[4.5370688,0.03878147,98.05384043],[4.53706824,0.03877975,98.05371916],[4.53706769,0.03877803,98.05359849],[4.53706714,0.03877631,98.05347833],[4.53706659,0.03877459,98.05335862],[4.53706604,0.03877287,98.05323926],[4.53706549,0.03877115,98.05312019],[4.53706493,0.03876942,98.05300132],[4.53706438,0.0387677,98.05288258],[4.53706383,0.03876598,98.05276388],[4.53706328,0.03876426,98.05264515],[4.53706272,0.03876254,98.05252631],[4.53706217,0.03876082,98.05240727],[4.53706162,0.0387591,98.05228797],[4.53706132,0.03875816,98.05222312]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"none","height":0.0},{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"broken","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1003400","id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":0}},{"geometry":{"coordinates":[[4.53716337,0.03907208,98.08848807],[4.53716295,0.03907033,98.08864301],[4.53716252,0.03906857,98.08879791],[4.5371621,0.03906682,98.0889528],[4.53716168,0.03906507,98.08910771],[4.53716125,0.03906331,98.08926268],[4.53716083,0.03906156,98.08941773],[4.53716041,0.03905981,98.08957291],[4.53715998,0.03905806,98.08972823],[4.53715956,0.03905631,98.08988374],[4.53715913,0.03905455,98.09003947],[4.53715871,0.0390528,98.09019545],[4.53715828,0.03905105,98.09035171],[4.53715786,0.0390493,98.09050828],[4.53715743,0.03904754,98.0906652],[4.53715701,0.03904579,98.0908225],[4.53715658,0.03904404,98.09098021],[4.53715616,0.03904229,98.09113836],[4.53715573,0.03904054,98.09129699],[4.53715531,0.03903878,98.09145613],[4.53715488,0.03903703,98.0916158],[4.53715445,0.03903528,98.09177605],[4.53715403,0.03903353,98.0919369],[4.5371536,0.03903178,98.09209839],[4.53715318,0.03903002,98.09226054],[4.53715275,0.03902827,98.0924234],[4.53715233,0.03902652,98.09258698],[4.5371519,0.03902477,98.09275133],[4.53715148,0.03902302,98.09291648],[4.53715105,0.03902126,98.09308245],[4.53715062,0.03901951,98.09324929],[4.5371502,0.03901776,98.09341701],[4.53714977,0.03901601,98.09358566],[4.53714935,0.03901425,98.09375527],[4.53714892,0.0390125,98.09392586],[4.5371485,0.03901075,98.09409747],[4.53714807,0.039009,98.09427013],[4.53714765,0.03900725,98.09444387],[4.53714722,0.03900549,98.09461873],[4.5371468,0.03900374,98.09479473],[4.53714638,0.03900199,98.09497191],[4.53714595,0.03900024,98.0951503],[4.53714553,0.03899848,98.09532993],[4.5371451,0.03899673,98.09551083],[4.53714468,0.03899498,98.09569304],[4.53714426,0.03899323,98.09587658],[4.53714383,0.03899147,98.09606149],[4.53714341,0.03898972,98.0962478],[4.53714299,0.03898797,98.09643554],[4.53714257,0.03898621,98.09662474],[4.53714215,0.03898446,98.09681543],[4.53714172,0.03898271,98.09700765],[4.5371413,0.03898095,98.09720142],[4.53714088,0.0389792,98.09739679],[4.53714046,0.03897745,98.09759377],[4.53714004,0.03897569,98.0977924],[4.53713962,0.03897394,98.09799271],[4.5371392,0.03897219,98.09819473],[4.53713878,0.03897043,98.0983985],[4.53713836,0.03896868,98.09860404],[4.53713794,0.03896693,98.09881134],[4.53713752,0.03896517,98.09902035],[4.53713711,0.03896342,98.09923101],[4.53713669,0.03896166,98.09944326],[4.53713627,0.03895991,98.09965705],[4.53713585,0.03895816,98.09987233],[4.53713544,0.0389564,98.10008902],[4.53713502,0.03895465,98.10030709],[4.53713461,0.03895289,98.10052648],[4.53713419,0.03895114,98.10074712],[4.53713377,0.03894938,98.10096896],[4.53713336,0.03894763,98.10119195],[4.53713294,0.03894587,98.10141604],[4.53713253,0.03894412,98.10164115],[4.53713211,0.03894236,98.10186725],[4.5371317,0.03894061,98.10209427],[4.53713128,0.03893886,98.10232215],[4.53713087,0.0389371,98.10255083],[4.53713045,0.03893535,98.10278019],[4.53713004,0.03893359,98.10301012],[4.53712962,0.03893184,98.10324054],[4.53712921,0.03893008,98.10347132],[4.53712879,0.03892833,98.10370238],[4.53712838,0.03892657,98.10393362],[4.53712796,0.03892482,98.10416494],[4.53712754,0.03892306,98.10439624],[4.53712713,0.03892131,98.10462743],[4.53712671,0.03891955,98.10485841],[4.5371263,0.0389178,98.10508909],[4.53712588,0.03891605,98.10531936],[4.53712546,0.03891429,98.10554913],[4.53712504,0.03891254,98.10577831],[4.53712463,0.03891078,98.10600679],[4.53712421,0.03890903,98.10623448],[4.53712379,0.03890728,98.10646127],[4.53712337,0.03890552,98.10668706],[4.53712295,0.03890377,98.10691174],[4.53712253,0.03890202,98.10713525],[4.53712211,0.03890026,98.10735772],[4.53712169,0.03889851,98.10757934],[4.53712126,0.03889676,98.10780026],[4.53712084,0.038895,98.10802066],[4.53712042,0.03889325,98.10824073],[4.53712,0.0388915,98.10846062],[4.53711957,0.03888975,98.10868052],[4.53711915,0.03888799,98.1089006],[4.53711873,0.03888624,98.10912104],[4.5371183,0.03888449,98.10934199],[4.53711788,0.03888273,98.10956365],[4.53711746,0.03888098,98.10978618],[4.53711703,0.03887923,98.11000975],[4.53711661,0.03887748,98.11023454],[4.53711619,0.03887572,98.11046072],[4.53711576,0.03887397,98.11068846],[4.53711534,0.03887222,98.11091793],[4.53711492,0.03887046,98.11114931],[4.5371145,0.03886871,98.11138277],[4.53711408,0.03886696,98.11161849],[4.53711366,0.0388652,98.11185662],[4.53711324,0.03886345,98.11209735],[4.53711282,0.0388617,98.11234085],[4.53711241,0.03885994,98.11258728],[4.53711199,0.03885819,98.11283662],[4.53711157,0.03885643,98.11308868],[4.53711116,0.03885468,98.11334326],[4.53711074,0.03885293,98.11360015],[4.53711033,0.03885117,98.11385916],[4.53710991,0.03884942,98.11412008],[4.5371095,0.03884766,98.1143827],[4.53710909,0.03884591,98.11464684],[4.53710867,0.03884415,98.11491228],[4.53710826,0.0388424,98.11517883],[4.53710785,0.03884064,98.11544628],[4.53710744,0.03883888,98.11571443],[4.53710702,0.03883713,98.11598308],[4.53710661,0.03883537,98.11625203],[4.5371062,0.03883362,98.11652108],[4.53710578,0.03883186,98.11679003],[4.53710537,0.03883011,98.11705868],[4.53710496,0.03882835,98.11732683],[4.53710454,0.0388266,98.11759427],[4.53710413,0.03882484,98.11786082],[4.53710371,0.03882309,98.11812625],[4.5371033,0.03882134,98.11839039],[4.53710288,0.03881958,98.11865302],[4.53710246,0.03881783,98.11891396],[4.53710205,0.03881607,98.11917304],[4.53710163,0.03881432,98.11943037],[4.53710121,0.03881257,98.11968606],[4.53710079,0.03881081,98.11994027],[4.53710037,0.03880906,98.12019312],[4.53709995,0.03880731,98.12044475],[4.53709952,0.03880555,98.12069531],[4.5370991,0.0388038,98.12094492],[4.53709868,0.03880205,98.12119372],[4.53709826,0.03880029,98.12144186],[4.53709783,0.03879854,98.12168946],[4.53709741,0.03879679,98.12193666],[4.53709698,0.03879504,98.1221836],[4.53709656,0.03879328,98.12243041],[4.53709614,0.03879153,98.12267724],[4.53709571,0.03878978,98.12292421],[4.53709529,0.03878803,98.12317146],[4.53709486,0.03878628,98.12341913],[4.53709444,0.03878452,98.12366735],[4.53709401,0.03878277,98.12391626],[4.53709359,0.03878102,98.12416599],[4.53709316,0.03877927,98.12441668],[4.53709274,0.03877751,98.12466847],[4.53709232,0.03877576,98.12492149],[4.53709189,0.03877401,98.12517587],[4.53709147,0.03877226,98.12543175],[4.53709105,0.0387705,98.12568927],[4.53709062,0.03876875,98.12594855],[4.5370902,0.038767,98.12620974],[4.53708978,0.03876524,98.12647297],[4.53708936,0.03876349,98.12673837],[4.53708894,0.03876174,98.12700608],[4.53708852,0.03875998,98.12727623],[4.5370881,0.03875823,98.12754896],[4.53708768,0.03875648,98.1278244],[4.53708726,0.03875472,98.12810268],[4.53708685,0.03875297,98.12838395],[4.53708662,0.03875202,98.1285378]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1003400","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2}},{"geometry":{"coordinates":[[4.537195,0.03906442,98.18681196],[4.53719458,0.03906267,98.18696934],[4.53719417,0.03906091,98.18712731],[4.53719375,0.03905916,98.18728587],[4.53719333,0.0390574,98.18744502],[4.53719292,0.03905565,98.18760476],[4.5371925,0.03905389,98.18776509],[4.53719208,0.03905214,98.18792601],[4.53719167,0.03905039,98.18808752],[4.53719125,0.03904863,98.18824961],[4.53719083,0.03904688,98.18841229],[4.53719042,0.03904512,98.18857555],[4.53719,0.03904337,98.1887394],[4.53718958,0.03904161,98.18890383],[4.53718916,0.03903986,98.18906885],[4.53718875,0.03903811,98.18923445],[4.53718833,0.03903635,98.18940063],[4.53718791,0.0390346,98.18956739],[4.5371875,0.03903284,98.18973473],[4.53718708,0.03903109,98.18990266],[4.53718666,0.03902933,98.19007116],[4.53718624,0.03902758,98.19024024],[4.53718583,0.03902583,98.1904099],[4.53718541,0.03902407,98.19058013],[4.53718499,0.03902232,98.19075095],[4.53718457,0.03902056,98.19092233],[4.53718416,0.03901881,98.1910943],[4.53718374,0.03901706,98.19126684],[4.53718332,0.0390153,98.19143995],[4.5371829,0.03901355,98.19161363],[4.53718249,0.03901179,98.19178789],[4.53718207,0.03901004,98.19196272],[4.53718165,0.03900828,98.19213812],[4.53718123,0.03900653,98.19231409],[4.53718081,0.03900478,98.19249063],[4.5371804,0.03900302,98.19266774],[4.53717998,0.03900127,98.19284542],[4.53717956,0.03899951,98.19302366],[4.53717914,0.03899776,98.19320248],[4.53717873,0.03899601,98.19338186],[4.53717831,0.03899425,98.1935618],[4.53717789,0.0389925,98.19374231],[4.53717747,0.03899074,98.19392339],[4.53717705,0.03898899,98.19410502],[4.53717664,0.03898723,98.19428723],[4.53717622,0.03898548,98.19446999],[4.5371758,0.03898373,98.19465331],[4.53717538,0.03898197,98.1948372],[4.53717496,0.03898022,98.19502165],[4.53717455,0.03897846,98.19520665],[4.53717413,0.03897671,98.19539222],[4.53717371,0.03897496,98.19557834],[4.53717329,0.0389732,98.19576502],[4.53717287,0.03897145,98.19595226],[4.53717245,0.03896969,98.19614005],[4.53717204,0.03896794,98.1963284],[4.53717162,0.03896619,98.1965173],[4.5371712,0.03896443,98.19670676],[4.53717078,0.03896268,98.19689677],[4.53717036,0.03896092,98.19708733],[4.53716994,0.03895917,98.19727845],[4.53716953,0.03895742,98.19747012],[4.53716911,0.03895566,98.19766234],[4.53716869,0.03895391,98.1978551],[4.53716827,0.03895215,98.19804842],[4.53716785,0.0389504,98.19824229],[4.53716743,0.03894865,98.1984367],[4.53716701,0.03894689,98.19863166],[4.5371666,0.03894514,98.19882717],[4.53716618,0.03894338,98.19902323],[4.53716576,0.03894163,98.19921982],[4.53716534,0.03893988,98.19941697],[4.53716492,0.03893812,98.19961466],[4.5371645,0.03893637,98.19981289],[4.53716408,0.03893461,98.20001166],[4.53716366,0.03893286,98.20021097],[4.53716325,0.03893111,98.20041083],[4.53716283,0.03892935,98.20061123],[4.53716241,0.0389276,98.20081216],[4.53716199,0.03892584,98.20101364],[4.53716157,0.03892409,98.20121565],[4.53716115,0.03892234,98.20141821],[4.53716073,0.03892058,98.2016213],[4.53716031,0.03891883,98.20182495],[4.53715989,0.03891708,98.20202915],[4.53715948,0.03891532,98.20223392],[4.53715906,0.03891357,98.20243926],[4.53715864,0.03891181,98.20264517],[4.53715822,0.03891006,98.20285166],[4.5371578,0.03890831,98.20305874],[4.53715738,0.03890655,98.20326641],[4.53715696,0.0389048,98.20347469],[4.53715654,0.03890304,98.20368357],[4.53715612,0.03890129,98.20389305],[4.5371557,0.03889954,98.20410314],[4.53715529,0.03889778,98.20431383],[4.53715487,0.03889603,98.20452512],[4.53715445,0.03889428,98.20473701],[4.53715403,0.03889252,98.20494949],[4.53715361,0.03889077,98.20516257],[4.53715319,0.03888901,98.20537625],[4.53715277,0.03888726,98.20559051],[4.53715235,0.03888551,98.20580536],[4.53715193,0.03888375,98.2060208],[4.53715151,0.038882,98.20623682],[4.53715109,0.03888024,98.20645342],[4.53715068,0.03887849,98.20667061],[4.53715026,0.03887674,98.20688838],[4.53714984,0.03887498,98.20710672],[4.53714942,0.03887323,98.20732564],[4.537149,0.03887148,98.20754513],[4.53714858,0.03886972,98.20776519],[4.53714816,0.03886797,98.20798583],[4.53714774,0.03886621,98.20820703],[4.53714732,0.03886446,98.2084288],[4.5371469,0.03886271,98.20865113],[4.53714648,0.03886095,98.20887403],[4.53714607,0.0388592,98.20909748],[4.53714565,0.03885744,98.2093215],[4.53714523,0.03885569,98.20954607],[4.53714481,0.03885394,98.20977119],[4.53714439,0.03885218,98.20999687],[4.53714397,0.03885043,98.2102231],[4.53714355,0.03884868,98.21044988],[4.53714313,0.03884692,98.21067721],[4.53714271,0.03884517,98.21090508],[4.53714229,0.03884341,98.21113349],[4.53714187,0.03884166,98.21136245],[4.53714145,0.03883991,98.21159195],[4.53714104,0.03883815,98.21182199],[4.53714062,0.0388364,98.21205256],[4.5371402,0.03883465,98.21228367],[4.53713978,0.03883289,98.2125153],[4.53713936,0.03883114,98.21274747],[4.53713894,0.03882938,98.21298017],[4.53713852,0.03882763,98.2132134],[4.5371381,0.03882588,98.21344715],[4.53713768,0.03882412,98.21368142],[4.53713726,0.03882237,98.21391622],[4.53713684,0.03882062,98.21415153],[4.53713642,0.03881886,98.21438737],[4.537136,0.03881711,98.21462372],[4.53713558,0.03881535,98.21486058],[4.53713517,0.0388136,98.21509795],[4.53713475,0.03881185,98.21533584],[4.53713433,0.03881009,98.21557423],[4.53713391,0.03880834,98.21581313],[4.53713349,0.03880659,98.21605254],[4.53713307,0.03880483,98.21629244],[4.53713265,0.03880308,98.21653285],[4.53713223,0.03880132,98.21677376],[4.53713181,0.03879957,98.21701517],[4.53713139,0.03879782,98.21725707],[4.53713097,0.03879606,98.21749946],[4.53713055,0.03879431,98.21774235],[4.53713013,0.03879256,98.21798572],[4.53712971,0.0387908,98.21822959],[4.53712929,0.03878905,98.21847394],[4.53712887,0.03878729,98.21871877],[4.53712845,0.03878554,98.21896409],[4.53712803,0.03878379,98.21920989],[4.53712761,0.03878203,98.21945616],[4.53712719,0.03878028,98.21970292],[4.53712677,0.03877853,98.21995014],[4.53712635,0.03877677,98.22019785],[4.53712593,0.03877502,98.22044602],[4.53712551,0.03877327,98.22069466],[4.53712509,0.03877151,98.22094378],[4.53712467,0.03876976,98.22119335],[4.53712425,0.038768,98.22144339],[4.53712383,0.03876625,98.2216939],[4.53712341,0.0387645,98.22194486],[4.53712299,0.03876274,98.22219628],[4.53712257,0.03876099,98.22244816],[4.53712215,0.03875924,98.2227005],[4.53712173,0.03875748,98.22295329],[4.53712131,0.03875573,98.22320652],[4.53712089,0.03875398,98.22346021],[4.53712047,0.03875222,98.22371435],[4.53712005,0.03875047,98.22396893],[4.53711963,0.03874872,98.22422396],[4.53711921,0.03874696,98.22447942],[4.53711879,0.03874521,98.22473533],[4.53711856,0.03874426,98.22487432]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1003400","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}},{"geometry":{"coordinates":[[4.53715297,0.0387359,98.32865246],[4.5371532,0.03873685,98.32852204],[4.53715362,0.0387386,98.32828181],[4.53715404,0.03874036,98.32804187],[4.53715446,0.03874211,98.32780222],[4.53715488,0.03874386,98.32756287],[4.5371553,0.03874562,98.32732382],[4.53715572,0.03874737,98.32708508],[4.53715614,0.03874913,98.32684666],[4.53715656,0.03875088,98.32660855],[4.53715698,0.03875263,98.32637078],[4.5371574,0.03875439,98.32613333],[4.53715782,0.03875614,98.32589622],[4.53715824,0.03875789,98.32565945],[4.53715866,0.03875965,98.32542303],[4.53715908,0.0387614,98.32518696],[4.5371595,0.03876316,98.32495125],[4.53715992,0.03876491,98.32471591],[4.53716033,0.03876666,98.32448093],[4.53716075,0.03876842,98.32424633],[4.53716117,0.03877017,98.3240121],[4.53716159,0.03877193,98.32377826],[4.53716201,0.03877368,98.32354482],[4.53716243,0.03877543,98.32331177],[4.53716285,0.03877719,98.32307912],[4.53716327,0.03877894,98.32284688],[4.53716368,0.0387807,98.32261505],[4.5371641,0.03878245,98.32238363],[4.53716452,0.03878421,98.32215265],[4.53716494,0.03878596,98.32192209],[4.53716536,0.03878771,98.32169196],[4.53716578,0.03878947,98.32146228],[4.5371662,0.03879122,98.32123304],[4.53716661,0.03879298,98.32100425],[4.53716703,0.03879473,98.32077592],[4.53716745,0.03879648,98.32054805],[4.53716787,0.03879824,98.32032064],[4.53716829,0.03879999,98.32009371],[4.5371687,0.03880175,98.31986726],[4.53716912,0.0388035,98.31964129],[4.53716954,0.03880526,98.31941581],[4.53716996,0.03880701,98.31919083],[4.53717038,0.03880876,98.31896635],[4.53717079,0.03881052,98.31874237],[4.53717121,0.03881227,98.3185189],[4.53717163,0.03881403,98.31829595],[4.53717205,0.03881578,98.31807352],[4.53717247,0.03881754,98.31785162],[4.53717288,0.03881929,98.31763026],[4.5371733,0.03882104,98.31740943],[4.53717372,0.0388228,98.31718914],[4.53717414,0.03882455,98.31696941],[4.53717455,0.03882631,98.31675023],[4.53717497,0.03882806,98.31653161],[4.53717539,0.03882982,98.31631356],[4.53717581,0.03883157,98.31609609],[4.53717623,0.03883333,98.31587918],[4.53717664,0.03883508,98.31566287],[4.53717706,0.03883683,98.31544714],[4.53717748,0.03883859,98.315232],[4.5371779,0.03884034,98.31501747],[4.53717831,0.0388421,98.31480354],[4.53717873,0.03884385,98.31459022],[4.53717915,0.03884561,98.31437752],[4.53717957,0.03884736,98.31416544],[4.53717999,0.03884911,98.31395398],[4.5371804,0.03885087,98.31374317],[4.53718082,0.03885262,98.31353299],[4.53718124,0.03885438,98.31332345],[4.53718166,0.03885613,98.31311456],[4.53718207,0.03885789,98.31290633],[4.53718249,0.03885964,98.31269877],[4.53718291,0.03886139,98.31249186],[4.53718333,0.03886315,98.31228564],[4.53718375,0.0388649,98.31208008],[4.53718416,0.03886666,98.31187522],[4.53718458,0.03886841,98.31167104],[4.537185,0.03887017,98.31146755],[4.53718542,0.03887192,98.31126477],[4.53718584,0.03887367,98.3110627],[4.53718625,0.03887543,98.31086133],[4.53718667,0.03887718,98.31066068],[4.53718709,0.03887894,98.31046076],[4.53718751,0.03888069,98.31026156],[4.53718793,0.03888245,98.3100631],[4.53718835,0.0388842,98.30986538],[4.53718876,0.03888595,98.3096684],[4.53718918,0.03888771,98.30947218],[4.5371896,0.03888946,98.30927671],[4.53719002,0.03889122,98.30908201],[4.53719044,0.03889297,98.30888807],[4.53719086,0.03889472,98.30869491],[4.53719127,0.03889648,98.30850253],[4.53719169,0.03889823,98.30831093],[4.53719211,0.03889999,98.30812011],[4.53719253,0.03890174,98.30793007],[4.53719295,0.03890349,98.30774081],[4.53719337,0.03890525,98.30755232],[4.53719379,0.038907,98.30736461],[4.53719421,0.03890876,98.30717766],[4.53719463,0.03891051,98.30699148],[4.53719504,0.03891226,98.30680607],[4.53719546,0.03891402,98.30662142],[4.53719588,0.03891577,98.30643753],[4.5371963,0.03891753,98.30625439],[4.53719672,0.03891928,98.30607201],[4.53719714,0.03892103,98.30589039],[4.53719756,0.03892279,98.30570951],[4.53719798,0.03892454,98.30552938],[4.5371984,0.0389263,98.30535],[4.53719882,0.03892805,98.30517136],[4.53719924,0.0389298,98.30499346],[4.53719966,0.03893156,98.30481629],[4.53720008,0.03893331,98.30463986],[4.5372005,0.03893507,98.30446417],[4.53720092,0.03893682,98.3042892],[4.53720134,0.03893857,98.30411497],[4.53720176,0.03894033,98.30394145],[4.53720218,0.03894208,98.30376867],[4.5372026,0.03894383,98.3035966],[4.53720301,0.03894559,98.30342525],[4.53720343,0.03894734,98.30325461],[4.53720385,0.0389491,98.30308469],[4.53720427,0.03895085,98.30291548],[4.53720469,0.0389526,98.30274697],[4.53720511,0.03895436,98.30257918],[4.53720553,0.03895611,98.30241208],[4.53720595,0.03895786,98.30224569],[4.53720637,0.03895962,98.30207999],[4.53720679,0.03896137,98.30191499],[4.53720721,0.03896313,98.30175068],[4.53720763,0.03896488,98.30158706],[4.53720805,0.03896663,98.30142413],[4.53720847,0.03896839,98.30126189],[4.53720889,0.03897014,98.30110033],[4.53720932,0.03897189,98.30093945],[4.53720974,0.03897365,98.30077924],[4.53721016,0.0389754,98.30061971],[4.53721058,0.03897716,98.30046086],[4.537211,0.03897891,98.30030268],[4.53721142,0.03898066,98.30014516],[4.53721184,0.03898242,98.29998831],[4.53721226,0.03898417,98.29983212],[4.53721268,0.03898592,98.29967659],[4.5372131,0.03898768,98.29952172],[4.53721352,0.03898943,98.2993675],[4.53721394,0.03899119,98.29921394],[4.53721436,0.03899294,98.29906103],[4.53721478,0.03899469,98.29890876],[4.5372152,0.03899645,98.29875714],[4.53721562,0.0389982,98.29860616],[4.53721604,0.03899995,98.29845582],[4.53721646,0.03900171,98.29830612],[4.53721688,0.03900346,98.29815706],[4.5372173,0.03900521,98.29800862],[4.53721772,0.03900697,98.29786082],[4.53721814,0.03900872,98.29771364],[4.53721856,0.03901048,98.29756709],[4.53721898,0.03901223,98.29742116],[4.5372194,0.03901398,98.29727585],[4.53721982,0.03901574,98.29713115],[4.53722024,0.03901749,98.29698707],[4.53722066,0.03901924,98.29684361],[4.53722108,0.039021,98.29670075],[4.5372215,0.03902275,98.29655849],[4.53722192,0.03902451,98.29641684],[4.53722234,0.03902626,98.2962758],[4.53722276,0.03902801,98.29613535],[4.53722318,0.03902977,98.2959955],[4.5372236,0.03903152,98.29585624],[4.53722402,0.03903328,98.29571757],[4.53722444,0.03903503,98.29557949],[4.53722486,0.03903678,98.29544199],[4.53722528,0.03903854,98.29530508],[4.5372257,0.03904029,98.29516875],[4.53722612,0.03904204,98.295033],[4.53722654,0.0390438,98.29489783],[4.53722696,0.03904555,98.29476322],[4.53722738,0.03904731,98.29462919],[4.5372278,0.03904906,98.29449572],[4.53722822,0.03905081,98.29436282],[4.53722864,0.03905257,98.29423048],[4.53722906,0.03905432,98.2940987],[4.53722947,0.03905608,98.29396748]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1003400","id":1,"type":"shoulder","predecessorId":1}},{"geometry":{"coordinates":[[4.53716765,0.03873233,98.32865246],[4.53716788,0.03873328,98.32852204],[4.53716831,0.03873504,98.32828181],[4.53716873,0.03873679,98.32804187],[4.53716915,0.03873854,98.32780222],[4.53716958,0.03874029,98.32756287],[4.53717,0.03874205,98.32732382],[4.53717043,0.0387438,98.32708508],[4.53717085,0.03874555,98.32684666],[4.53717127,0.0387473,98.32660855],[4.5371717,0.03874906,98.32637078],[4.53717212,0.03875081,98.32613333],[4.53717255,0.03875256,98.32589622],[4.53717297,0.03875432,98.32565945],[4.53717339,0.03875607,98.32542303],[4.53717382,0.03875782,98.32518696],[4.53717424,0.03875958,98.32495125],[4.53717466,0.03876133,98.32471591],[4.53717509,0.03876308,98.32448093],[4.53717551,0.03876483,98.32424633],[4.53717593,0.03876659,98.3240121],[4.53717636,0.03876834,98.32377826],[4.53717678,0.03877009,98.32354482],[4.5371772,0.03877185,98.32331177],[4.53717763,0.0387736,98.32307912],[4.53717805,0.03877535,98.32284688],[4.53717847,0.03877711,98.32261505],[4.53717889,0.03877886,98.32238363],[4.53717932,0.03878061,98.32215265],[4.53717974,0.03878237,98.32192209],[4.53718016,0.03878412,98.32169196],[4.53718058,0.03878587,98.32146228],[4.53718101,0.03878763,98.32123304],[4.53718143,0.03878938,98.32100425],[4.53718185,0.03879113,98.32077592],[4.53718227,0.03879289,98.32054805],[4.5371827,0.03879464,98.32032064],[4.53718312,0.03879639,98.32009371],[4.53718354,0.03879815,98.31986726],[4.53718396,0.0387999,98.31964129],[4.53718438,0.03880165,98.31941581],[4.5371848,0.03880341,98.31919083],[4.53718523,0.03880516,98.31896635],[4.53718565,0.03880691,98.31874237],[4.53718607,0.03880867,98.3185189],[4.53718649,0.03881042,98.31829595],[4.53718691,0.03881217,98.31807352],[4.53718733,0.03881393,98.31785162],[4.53718776,0.03881568,98.31763026],[4.53718818,0.03881743,98.31740943],[4.5371886,0.03881919,98.31718914],[4.53718902,0.03882094,98.31696941],[4.53718944,0.0388227,98.31675023],[4.53718986,0.03882445,98.31653161],[4.53719028,0.0388262,98.31631356],[4.53719071,0.03882796,98.31609609],[4.53719113,0.03882971,98.31587918],[4.53719155,0.03883146,98.31566287],[4.53719197,0.03883322,98.31544714],[4.53719239,0.03883497,98.315232],[4.53719281,0.03883672,98.31501747],[4.53719323,0.03883848,98.31480354],[4.53719365,0.03884023,98.31459022],[4.53719407,0.03884198,98.31437752],[4.53719449,0.03884374,98.31416544],[4.53719491,0.03884549,98.31395398],[4.53719534,0.03884725,98.31374317],[4.53719576,0.038849,98.31353299],[4.53719618,0.03885075,98.31332345],[4.5371966,0.03885251,98.31311456],[4.53719702,0.03885426,98.31290633],[4.53719744,0.03885601,98.31269877],[4.53719786,0.03885777,98.31249186],[4.53719828,0.03885952,98.31228564],[4.5371987,0.03886128,98.31208008],[4.53719912,0.03886303,98.31187522],[4.53719954,0.03886478,98.31167104],[4.53719996,0.03886654,98.31146755],[4.53720038,0.03886829,98.31126477],[4.5372008,0.03887004,98.3110627],[4.53720122,0.0388718,98.31086133],[4.53720164,0.03887355,98.31066068],[4.53720206,0.03887531,98.31046076],[4.53720248,0.03887706,98.31026156],[4.5372029,0.03887881,98.3100631],[4.53720332,0.03888057,98.30986538],[4.53720374,0.03888232,98.3096684],[4.53720416,0.03888407,98.30947218],[4.53720458,0.03888583,98.30927671],[4.537205,0.03888758,98.30908201],[4.53720542,0.03888934,98.30888807],[4.53720584,0.03889109,98.30869491],[4.53720626,0.03889284,98.30850253],[4.53720668,0.0388946,98.30831093],[4.5372071,0.03889635,98.30812011],[4.53720752,0.03889811,98.30793007],[4.53720794,0.03889986,98.30774081],[4.53720836,0.03890161,98.30755232],[4.53720878,0.03890337,98.30736461],[4.5372092,0.03890512,98.30717766],[4.53720962,0.03890687,98.30699148],[4.53721004,0.03890863,98.30680607],[4.53721046,0.03891038,98.30662142],[4.53721088,0.03891214,98.30643753],[4.5372113,0.03891389,98.30625439],[4.53721172,0.03891564,98.30607201],[4.53721214,0.0389174,98.30589039],[4.53721256,0.03891915,98.30570951],[4.53721298,0.03892091,98.30552938],[4.5372134,0.03892266,98.30535],[4.53721382,0.03892441,98.30517136],[4.53721424,0.03892617,98.30499346],[4.53721466,0.03892792,98.30481629],[4.53721508,0.03892967,98.30463986],[4.5372155,0.03893143,98.30446417],[4.53721592,0.03893318,98.3042892],[4.53721634,0.03893494,98.30411497],[4.53721676,0.03893669,98.30394145],[4.53721718,0.03893844,98.30376867],[4.5372176,0.0389402,98.3035966],[4.53721802,0.03894195,98.30342525],[4.53721844,0.03894371,98.30325461],[4.53721886,0.03894546,98.30308469],[4.53721928,0.03894721,98.30291548],[4.53721969,0.03894897,98.30274697],[4.53722011,0.03895072,98.30257918],[4.53722053,0.03895248,98.30241208],[4.53722095,0.03895423,98.30224569],[4.53722137,0.03895598,98.30207999],[4.53722179,0.03895774,98.30191499],[4.53722221,0.03895949,98.30175068],[4.53722263,0.03896125,98.30158706],[4.53722305,0.038963,98.30142413],[4.53722347,0.03896475,98.30126189],[4.53722389,0.03896651,98.30110033],[4.53722431,0.03896826,98.30093945],[4.53722472,0.03897002,98.30077924],[4.53722514,0.03897177,98.30061971],[4.53722556,0.03897352,98.30046086],[4.53722598,0.03897528,98.30030268],[4.5372264,0.03897703,98.30014516],[4.53722682,0.03897879,98.29998831],[4.53722724,0.03898054,98.29983212],[4.53722766,0.03898229,98.29967659],[4.53722808,0.03898405,98.29952172],[4.5372285,0.0389858,98.2993675],[4.53722891,0.03898756,98.29921394],[4.53722933,0.03898931,98.29906103],[4.53722975,0.03899106,98.29890876],[4.53723017,0.03899282,98.29875714],[4.53723059,0.03899457,98.29860616],[4.53723101,0.03899633,98.29845582],[4.53723143,0.03899808,98.29830612],[4.53723184,0.03899984,98.29815706],[4.53723226,0.03900159,98.29800862],[4.53723268,0.03900334,98.29786082],[4.5372331,0.0390051,98.29771364],[4.53723352,0.03900685,98.29756709],[4.53723394,0.03900861,98.29742116],[4.53723435,0.03901036,98.29727585],[4.53723477,0.03901212,98.29713115],[4.53723519,0.03901387,98.29698707],[4.53723561,0.03901562,98.29684361],[4.53723603,0.03901738,98.29670075],[4.53723645,0.03901913,98.29655849],[4.53723686,0.03902089,98.29641684],[4.53723728,0.03902264,98.2962758],[4.5372377,0.0390244,98.29613535],[4.53723812,0.03902615,98.2959955],[4.53723854,0.0390279,98.29585624],[4.53723895,0.03902966,98.29571757],[4.53723937,0.03903141,98.29557949],[4.53723979,0.03903317,98.29544199],[4.53724021,0.03903492,98.29530508],[4.53724062,0.03903668,98.29516875],[4.53724104,0.03903843,98.295033],[4.53724146,0.03904019,98.29489783],[4.53724188,0.03904194,98.29476322],[4.5372423,0.03904369,98.29462919],[4.53724271,0.03904545,98.29449572],[4.53724313,0.0390472,98.29436282],[4.53724355,0.03904896,98.29423048],[4.53724397,0.03905071,98.2940987],[4.53724438,0.03905247,98.29396748]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1003400","id":2,"type":"none","predecessorId":2}},{"geometry":{"coordinates":[[4.53263741,0.02355038,94.65671402],[4.53263697,0.02354947,94.65369187],[4.53263651,0.02354851,94.65073194],[4.53263601,0.02354751,94.64783788],[4.53263549,0.02354646,94.64501348],[4.53263495,0.02354538,94.64226261],[4.53263439,0.02354424,94.63958928],[4.53263381,0.02354306,94.63699756],[4.53263322,0.02354185,94.63449162],[4.53263262,0.0235406,94.63207164],[4.53263202,0.02353933,94.62972219],[4.53263141,0.02353805,94.62743311],[4.5326308,0.02353674,94.62519688],[4.53263017,0.02353541,94.62299875],[4.53262953,0.02353407,94.62082456],[4.53262888,0.02353272,94.61866121],[4.53262821,0.02353135,94.61649819],[4.53262752,0.02352997,94.61433644],[4.5326268,0.02352857,94.61217996],[4.53262607,0.02352716,94.61003737],[4.53262533,0.02352574,94.60792959],[4.53262458,0.0235243,94.60586068],[4.53262382,0.02352283,94.60382947],[4.53262305,0.02352135,94.60183471],[4.53262229,0.02351985,94.59986801],[4.53262152,0.02351832,94.59789819],[4.53262075,0.02351678,94.59590159],[4.53261996,0.02351521,94.59385822],[4.53261917,0.02351363,94.59176154],[4.53261837,0.02351203,94.58961836],[4.53261756,0.02351042,94.58743627],[4.53261674,0.02350878,94.58522305],[4.5326159,0.02350709,94.5829867],[4.53261507,0.02350545,94.5807354],[4.53261424,0.02350381,94.57847588],[4.53261342,0.02350217,94.57620876],[4.5326126,0.02350054,94.57393155],[4.53261178,0.02349892,94.5716356],[4.53261096,0.02349731,94.56931202],[4.53261014,0.0234957,94.56695594],[4.53260932,0.0234941,94.56456515],[4.53260851,0.02349251,94.56213755],[4.53260769,0.02349092,94.55967103],[4.53260688,0.02348934,94.55716349],[4.53260607,0.02348776,94.55461282],[4.53260526,0.02348619,94.55201693],[4.53260445,0.02348463,94.54582076],[4.53260364,0.02348307,94.53305912],[4.53260285,0.02348152,94.5113396],[4.53260205,0.02347997,94.48341545],[4.53260125,0.02347843,94.4803916],[4.53260046,0.0234769,94.47904804],[4.53259976,0.02347532,94.51885454],[4.53259888,0.02347384,94.52731885],[4.53259807,0.02347234,94.52467105],[4.53259727,0.02347084,94.52192255],[4.53259649,0.02346933,94.51907943],[4.53259573,0.02346783,94.51614782],[4.53259497,0.02346633,94.51313387],[4.53259422,0.02346483,94.51004378],[4.53259347,0.02346333,94.50688375],[4.53259272,0.02346185,94.50365998],[4.53259197,0.02346037,94.50037928],[4.53259122,0.02345889,94.4970484],[4.53259047,0.02345743,94.49367359],[4.53258972,0.02345597,94.49026105],[4.53258898,0.02345452,94.48681705],[4.53258823,0.02345307,94.48334783],[4.53258749,0.02345162,94.47985965],[4.53258674,0.02345016,94.47635884],[4.53258593,0.02344875,94.4728634],[4.5325851,0.02344734,94.46937955],[4.53258428,0.02344592,94.46590155],[4.53258346,0.02344451,94.46242364],[4.53258264,0.02344309,94.45894005],[4.53258182,0.02344168,94.45544497],[4.532581,0.02344026,94.45193255],[4.53258018,0.02343885,94.44839696],[4.53257936,0.02343743,94.44483258],[4.53257853,0.02343601,94.44123386],[4.53257771,0.0234346,94.43759551],[4.53257688,0.02343318,94.4339193],[4.53257605,0.02343176,94.4302138],[4.53257522,0.02343035,94.42648785],[4.53257439,0.02342893,94.42275034],[4.53257355,0.02342752,94.41901017],[4.5325727,0.02342611,94.41527628],[4.53257185,0.0234247,94.41155764],[4.532571,0.0234233,94.40786328],[4.53257014,0.02342189,94.40420224],[4.53256928,0.02342049,94.40058155],[4.53256841,0.02341909,94.39700221],[4.53256754,0.02341769,94.39346515],[4.53256669,0.02341635,94.3899714],[4.53256581,0.02341496,94.38652196],[4.53256493,0.02341358,94.38311784],[4.53256405,0.02341219,94.37976004],[4.53256316,0.02341081,94.37644955],[4.53256228,0.02340943,94.37318735],[4.53256139,0.02340805,94.36997442],[4.5325605,0.02340667,94.36681173],[4.5325596,0.02340529,94.36370023],[4.53255871,0.02340391,94.36064088],[4.53255782,0.02340254,94.35763461],[4.53255773,0.0234024,94.35735316]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004100","id":-5,"type":"none","predecessorId":0}},{"geometry":{"coordinates":[[4.53267579,0.02353745,94.65671402],[4.53267517,0.02353606,94.65369187],[4.53267455,0.02353466,94.65073194],[4.53267391,0.02353325,94.64783788],[4.53267326,0.02353183,94.64501348],[4.5326726,0.02353038,94.64226261],[4.53267194,0.02352892,94.63958928],[4.53267127,0.02352745,94.63699756],[4.5326706,0.02352596,94.63449162],[4.53266993,0.02352446,94.63207164],[4.53266926,0.02352295,94.62972219],[4.53266859,0.02352143,94.62743311],[4.53266791,0.02351991,94.62519688],[4.53266722,0.02351838,94.62299875],[4.53266652,0.02351685,94.62082456],[4.53266581,0.02351532,94.61866121],[4.53266508,0.02351378,94.61649819],[4.53266434,0.02351225,94.61433644],[4.53266359,0.02351071,94.61217996],[4.53266283,0.02350917,94.61003737],[4.53266207,0.02350762,94.60792959],[4.5326613,0.02350606,94.60586068],[4.53266054,0.02350449,94.60382947],[4.53265978,0.02350291,94.60183471],[4.53265901,0.02350133,94.59986801],[4.53265824,0.02349974,94.59789819],[4.53265746,0.02349815,94.59590159],[4.53265666,0.02349656,94.59385822],[4.53265584,0.02349497,94.59176154],[4.53265502,0.02349338,94.58961836],[4.53265418,0.02349178,94.58743627],[4.53265334,0.02349018,94.58522305],[4.53265248,0.02348853,94.5829867],[4.53265163,0.02348693,94.5807354],[4.53265079,0.02348532,94.57847588],[4.53264995,0.02348371,94.57620876],[4.53264912,0.0234821,94.57393155],[4.53264829,0.0234805,94.5716356],[4.53264746,0.02347889,94.56931202],[4.53264663,0.02347729,94.56695594],[4.5326458,0.02347569,94.56456515],[4.53264498,0.0234741,94.56213755],[4.53264415,0.02347251,94.55967103],[4.53264332,0.02347092,94.55716349],[4.53264249,0.02346933,94.55461282],[4.53264166,0.02346774,94.55201693],[4.53263925,0.02346696,94.54582076],[4.53263502,0.02346712,94.53305912],[4.53262704,0.02346919,94.5113396],[4.53262618,0.02346765,94.48341545],[4.53262533,0.0234661,94.4803916],[4.53262449,0.02346456,94.47904804],[4.53262841,0.02346057,94.51885454],[4.5326345,0.02345544,94.52731885],[4.5326338,0.02345382,94.52467105],[4.53263304,0.02345223,94.52192255],[4.53263226,0.02345064,94.51907943],[4.53263148,0.02344907,94.51614782],[4.53263069,0.0234475,94.51313387],[4.5326299,0.02344594,94.51004378],[4.53262909,0.02344438,94.50688375],[4.53262828,0.02344284,94.50365998],[4.53262746,0.02344129,94.50037928],[4.53262664,0.02343976,94.4970484],[4.53262581,0.02343822,94.49367359],[4.53262499,0.02343669,94.49026105],[4.53262416,0.02343518,94.48681705],[4.53262333,0.02343366,94.48334783],[4.53262249,0.02343213,94.47985965],[4.53262166,0.02343061,94.47635884],[4.53262082,0.02342909,94.4728634],[4.53261999,0.02342756,94.46937955],[4.53261917,0.02342604,94.46590155],[4.53261834,0.02342451,94.46242364],[4.53261751,0.02342298,94.45894005],[4.53261668,0.02342146,94.45544497],[4.53261584,0.02341993,94.45193255],[4.53261499,0.02341841,94.44839696],[4.53261414,0.0234169,94.44483258],[4.53261328,0.02341539,94.44123386],[4.53261241,0.02341388,94.43759551],[4.53261152,0.02341239,94.4339193],[4.53261063,0.02341089,94.4302138],[4.53260973,0.0234094,94.42648785],[4.53260882,0.02340792,94.42275034],[4.5326079,0.02340644,94.41901017],[4.53260698,0.02340496,94.41527628],[4.53260606,0.02340348,94.41155764],[4.53260513,0.02340201,94.40786328],[4.5326042,0.02340053,94.40420224],[4.53260328,0.02339905,94.40058155],[4.53260235,0.02339757,94.39700221],[4.53260143,0.0233961,94.39346515],[4.53260052,0.02339467,94.3899714],[4.5325996,0.02339319,94.38652196],[4.53259867,0.02339172,94.38311784],[4.53259775,0.02339025,94.37976004],[4.53259682,0.02338878,94.37644955],[4.53259589,0.02338731,94.37318735],[4.53259495,0.02338584,94.36997442],[4.53259402,0.02338437,94.36681173],[4.53259308,0.02338291,94.36370023],[4.53259214,0.02338144,94.36064088],[4.5325912,0.02337998,94.35763461],[4.53259111,0.02337984,94.35735316]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004100","id":-4,"type":"border","predecessorId":0}},{"geometry":{"coordinates":[[4.53267707,0.02353702,94.50671402],[4.53267646,0.02353561,94.50369187],[4.53267582,0.0235342,94.50073194],[4.53267518,0.02353277,94.49783788],[4.53267453,0.02353133,94.49501348],[4.53267387,0.02352988,94.49226261],[4.5326732,0.02352841,94.48958928],[4.53267253,0.02352692,94.48699756],[4.53267186,0.02352543,94.48449162],[4.53267118,0.02352392,94.48207164],[4.53267051,0.0235224,94.47972219],[4.53266983,0.02352088,94.47743311],[4.53266915,0.02351935,94.47519688],[4.53266846,0.02351781,94.47299875],[4.53266776,0.02351628,94.47082456],[4.53266704,0.02351474,94.46866121],[4.53266631,0.0235132,94.46649819],[4.53266557,0.02351166,94.46433644],[4.53266482,0.02351011,94.46217996],[4.53266406,0.02350857,94.46003737],[4.53266329,0.02350701,94.45792959],[4.53266253,0.02350545,94.45586068],[4.53266176,0.02350388,94.45382947],[4.53266099,0.0235023,94.45183471],[4.53266023,0.02350072,94.44986801],[4.53265946,0.02349913,94.44789819],[4.53265867,0.02349754,94.44590159],[4.53265787,0.02349594,94.44385822],[4.53265706,0.02349435,94.44176154],[4.53265623,0.02349276,94.43961836],[4.5326554,0.02349116,94.43743627],[4.53265455,0.02348956,94.43522305],[4.53265369,0.02348792,94.4329867],[4.53265285,0.02348631,94.4307354],[4.53265201,0.0234847,94.42847588],[4.53265117,0.02348309,94.42620876],[4.53265034,0.02348149,94.42393155],[4.53264951,0.02347988,94.4216356],[4.53264868,0.02347828,94.41931202],[4.53264785,0.02347668,94.41695594],[4.53264702,0.02347508,94.41456515],[4.53264619,0.02347348,94.41213755],[4.53264536,0.02347189,94.40967103],[4.53264453,0.0234703,94.40716349],[4.5326437,0.02346871,94.40461282],[4.53264287,0.02346713,94.40201693],[4.53264129,0.02346593,94.39582076],[4.53263833,0.02346543,94.38305912],[4.53263351,0.02346589,94.3613396],[4.53262741,0.02346702,94.33341545],[4.53262656,0.02346547,94.3303916],[4.53262607,0.02346375,94.32904804],[4.53263419,0.02345759,94.36885454],[4.53263576,0.02345479,94.37731885],[4.53263501,0.02345319,94.37467105],[4.53263424,0.0234516,94.37192255],[4.53263347,0.02345001,94.36907943],[4.53263269,0.02344844,94.36614782],[4.5326319,0.02344687,94.36313387],[4.5326311,0.0234453,94.36004378],[4.53263029,0.02344375,94.35688375],[4.53262948,0.0234422,94.35365998],[4.53262866,0.02344065,94.35037928],[4.53262783,0.02343911,94.3470484],[4.53262701,0.02343758,94.34367359],[4.53262618,0.02343604,94.34026105],[4.53262535,0.02343453,94.33681705],[4.53262451,0.023433,94.33334783],[4.53262368,0.02343148,94.32985965],[4.53262284,0.02342995,94.32635884],[4.532622,0.02342843,94.3228634],[4.53262117,0.0234269,94.31937955],[4.53262034,0.02342537,94.31590155],[4.53261951,0.02342384,94.31242364],[4.53261868,0.02342231,94.30894005],[4.53261784,0.02342078,94.30544497],[4.532617,0.02341925,94.30193255],[4.53261616,0.02341773,94.29839696],[4.5326153,0.02341621,94.29483258],[4.53261444,0.0234147,94.29123386],[4.53261356,0.02341319,94.28759551],[4.53261268,0.02341169,94.2839193],[4.53261178,0.0234102,94.2802138],[4.53261087,0.02340871,94.27648785],[4.53260996,0.02340722,94.27275034],[4.53260904,0.02340574,94.26901017],[4.53260812,0.02340425,94.26527628],[4.5326072,0.02340278,94.26155764],[4.53260627,0.0234013,94.25786328],[4.53260534,0.02339982,94.25420224],[4.53260441,0.02339834,94.25058155],[4.53260348,0.02339686,94.24700221],[4.53260255,0.02339538,94.24346515],[4.53260165,0.02339394,94.2399714],[4.53260072,0.02339247,94.23652196],[4.53259979,0.02339099,94.23311784],[4.53259886,0.02338952,94.22976004],[4.53259793,0.02338805,94.22644955],[4.532597,0.02338658,94.22318735],[4.53259607,0.0233851,94.21997442],[4.53259513,0.02338364,94.21681173],[4.53259419,0.02338217,94.21370023],[4.53259325,0.0233807,94.21064088],[4.5325923,0.02337924,94.20763461],[4.53259221,0.0233791,94.20735316]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1004100","id":-3,"type":"border","predecessorId":0}},{"geometry":{"coordinates":[[4.53268013,0.02353599,94.51621299],[4.53267953,0.02353453,94.51346354],[4.53267889,0.02353308,94.51069638],[4.53267822,0.02353163,94.50792394],[4.53267752,0.02353017,94.50515992],[4.53267681,0.02352871,94.50241916],[4.53267608,0.02352724,94.49971761],[4.53267534,0.02352575,94.4970722],[4.5326746,0.02352426,94.49450078],[4.53267387,0.02352276,94.492018],[4.53267315,0.02352124,94.48962315],[4.53267242,0.02351972,94.48731096],[4.5326717,0.02351819,94.48506846],[4.53267098,0.02351665,94.48287461],[4.53267025,0.02351512,94.48070861],[4.53266951,0.02351358,94.47855037],[4.53266875,0.02351204,94.4763821],[4.53266797,0.0235105,94.47419715],[4.53266718,0.02350897,94.4719917],[4.53266638,0.02350743,94.46976987],[4.53266557,0.02350589,94.46756212],[4.53266476,0.02350434,94.46538594],[4.53266395,0.02350279,94.46325394],[4.53266315,0.02350122,94.46117907],[4.53266236,0.02349964,94.45916741],[4.53266157,0.02349806,94.45719892],[4.53266079,0.02349646,94.45524695],[4.53265999,0.02349487,94.45328488],[4.53265919,0.02349327,94.4512993],[4.53265838,0.02349166,94.44928996],[4.53265757,0.02349005,94.44725717],[4.53265676,0.02348844,94.44520131],[4.53265592,0.02348679,94.44312278],[4.5326551,0.02348517,94.44102208],[4.53265428,0.02348355,94.43889973],[4.53265346,0.02348194,94.43675628],[4.53265265,0.02348032,94.43459078],[4.53265183,0.02347871,94.43239613],[4.53265102,0.0234771,94.43016502],[4.5326502,0.02347549,94.42789417],[4.53264938,0.02347389,94.42558304],[4.53264856,0.02347229,94.42323116],[4.53264774,0.02347069,94.42083811],[4.53264693,0.02346909,94.4184035],[4.53264611,0.0234675,94.41592692],[4.53264529,0.02346591,94.413408],[4.53264447,0.02346432,94.41084637],[4.53264365,0.02346273,94.40824167],[4.53264283,0.02346114,94.4055935],[4.53264201,0.02345956,94.40290132],[4.5326412,0.02345798,94.40016434],[4.53264038,0.0234564,94.39738156],[4.53263957,0.02345482,94.39455205],[4.53263875,0.02345324,94.39167656],[4.53263794,0.02345167,94.3887578],[4.53263713,0.02345009,94.38579859],[4.53263632,0.02344852,94.38280173],[4.53263551,0.02344695,94.37977004],[4.53263471,0.02344539,94.37670632],[4.5326339,0.02344382,94.37361338],[4.5326331,0.02344225,94.37049403],[4.5326323,0.02344069,94.36735101],[4.5326315,0.02343913,94.36418697],[4.5326307,0.02343756,94.36100394],[4.5326299,0.023436,94.35780341],[4.5326291,0.02343445,94.35458687],[4.53262831,0.0234329,94.35135579],[4.53262751,0.02343134,94.34811164],[4.53262672,0.02342978,94.34485593],[4.53262592,0.02342823,94.34157988],[4.53262504,0.02342672,94.3378818],[4.53262416,0.02342521,94.33418798],[4.53262328,0.0234237,94.3304987],[4.5326224,0.02342218,94.32681426],[4.53262152,0.02342067,94.32313494],[4.53262064,0.02341916,94.31946103],[4.53261976,0.02341764,94.3157928],[4.53261889,0.02341613,94.31213056],[4.53261801,0.02341462,94.30847489],[4.53261712,0.02341311,94.30482645],[4.53261624,0.02341159,94.30118584],[4.53261536,0.02341008,94.29755366],[4.53261447,0.02340857,94.2939305],[4.53261358,0.02340707,94.29031696],[4.53261268,0.02340556,94.28671361],[4.53261179,0.02340405,94.28312102],[4.53261089,0.02340255,94.27953975],[4.53260998,0.02340105,94.27597037],[4.53260907,0.02339955,94.27241339],[4.53260816,0.02339805,94.26886937],[4.53260724,0.02339656,94.26533891],[4.53260631,0.02339506,94.26182452],[4.53260538,0.02339357,94.25833053],[4.53260448,0.02339213,94.25486134],[4.53260354,0.02339065,94.25142136],[4.5326026,0.02338917,94.24801504],[4.53260166,0.0233877,94.24464681],[4.53260072,0.02338622,94.24132114],[4.53259977,0.02338475,94.2380425],[4.53259883,0.02338328,94.23481539],[4.53259788,0.02338181,94.23164432],[4.53259693,0.02338033,94.2285338],[4.53259598,0.02337886,94.2254884],[4.53259503,0.02337739,94.22251267],[4.53259494,0.02337725,94.22223509]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004100","id":-2,"type":"shoulder","predecessorId":0}},{"geometry":{"coordinates":[[4.53268133,0.02353558,94.51993667],[4.53268072,0.02353412,94.51724985],[4.5326801,0.02353264,94.51463646],[4.53267947,0.02353116,94.51209528],[4.53267884,0.02352966,94.5096248],[4.5326782,0.02352816,94.50722322],[4.53267754,0.02352664,94.50488847],[4.53267689,0.0235251,94.50261823],[4.53267623,0.02352357,94.50040993],[4.53267556,0.02352203,94.4982608],[4.53267489,0.02352048,94.49616781],[4.53267421,0.02351892,94.49412747],[4.53267353,0.02351736,94.49212878],[4.53267284,0.0235158,94.49015293],[4.53267213,0.02351424,94.48818155],[4.53267141,0.02351268,94.48619721],[4.53267067,0.02351112,94.48418201],[4.5326699,0.02350957,94.48211757],[4.53266911,0.02350803,94.47998507],[4.53266829,0.02350649,94.47777327],[4.53266745,0.02350496,94.47550247],[4.53266659,0.02350343,94.47320176],[4.53266573,0.0235019,94.47090125],[4.53266487,0.02350036,94.46863197],[4.53266402,0.02349881,94.46641863],[4.53266318,0.02349724,94.46426031],[4.53266235,0.02349567,94.46214989],[4.53266152,0.02349409,94.46008003],[4.5326607,0.0234925,94.45804318],[4.53265988,0.0234909,94.45603153],[4.53265907,0.02348929,94.45403707],[4.53265827,0.02348767,94.45205159],[4.53265745,0.02348601,94.45006672],[4.53265664,0.02348439,94.44807398],[4.53265584,0.02348276,94.44606475],[4.53265505,0.02348114,94.4440303],[4.53265425,0.02347951,94.44196183],[4.53265344,0.0234779,94.43985051],[4.53265264,0.02347628,94.4376888],[4.53265183,0.02347467,94.43547321],[4.53265102,0.02347306,94.433203],[4.5326502,0.02347146,94.43087752],[4.53264938,0.02346986,94.42849618],[4.53264855,0.02346827,94.42605841],[4.53264773,0.02346668,94.42356366],[4.5326469,0.02346509,94.42101142],[4.53264606,0.0234635,94.41840118],[4.53264523,0.02346192,94.41573245],[4.53264439,0.02346035,94.41300472],[4.53264355,0.02345877,94.41021733],[4.53264271,0.0234572,94.40736961],[4.53264186,0.02345564,94.40446089],[4.53264102,0.02345407,94.40149057],[4.53264017,0.02345251,94.39845975],[4.53263932,0.02345095,94.39537148],[4.53263847,0.0234494,94.39222893],[4.53263762,0.02344785,94.38903525],[4.53263676,0.0234463,94.38579359],[4.53263591,0.02344475,94.38250713],[4.53263505,0.02344321,94.37917901],[4.53263419,0.02344167,94.37581238],[4.53263334,0.02344013,94.37241033],[4.53263248,0.0234386,94.36897585],[4.53263162,0.02343706,94.36551129],[4.53263076,0.02343554,94.36201847],[4.5326299,0.02343401,94.35849919],[4.53262904,0.02343249,94.35495524],[4.53262818,0.02343097,94.35138841],[4.53262732,0.02342945,94.34780047],[4.53262645,0.02342793,94.34419321],[4.53262558,0.02342641,94.34056861],[4.53262471,0.02342489,94.33692894],[4.53262383,0.02342338,94.33327657],[4.53262296,0.02342186,94.3296138],[4.53262208,0.02342035,94.325943],[4.5326212,0.02341883,94.3222665],[4.53262032,0.02341732,94.31858664],[4.53261944,0.02341581,94.31490579],[4.53261855,0.0234143,94.31122661],[4.53261766,0.02341279,94.30755184],[4.53261677,0.02341128,94.30388417],[4.53261588,0.02340977,94.30022632],[4.53261499,0.02340826,94.29658099],[4.53261409,0.02340675,94.29295089],[4.5326132,0.02340525,94.28933872],[4.5326123,0.02340374,94.28574722],[4.5326114,0.02340223,94.28217911],[4.5326105,0.02340073,94.2786371],[4.53260959,0.02339922,94.27512394],[4.53260869,0.02339772,94.27164235],[4.53260779,0.02339621,94.26819509],[4.53260688,0.0233947,94.2647849],[4.53260597,0.0233932,94.26141452],[4.53260509,0.02339174,94.25808671],[4.53260418,0.02339024,94.25480423],[4.53260327,0.02338874,94.25156986],[4.53260237,0.02338724,94.24838636],[4.53260146,0.02338574,94.24525651],[4.53260055,0.02338424,94.24218309],[4.53259964,0.02338274,94.23916889],[4.53259873,0.02338124,94.2362167],[4.53259782,0.02337974,94.23332933],[4.53259691,0.02337824,94.23050959],[4.532596,0.02337674,94.22776027],[4.53259591,0.0233766,94.22750408]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004100","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":0}},{"geometry":{"coordinates":[[4.53263993,0.02334684,94.46742628],[4.53264001,0.023347,94.46754585],[4.53264081,0.02334873,94.46885826],[4.53264161,0.02335046,94.47025602],[4.53264241,0.02335218,94.47173652],[4.53264321,0.02335391,94.47329716],[4.53264401,0.02335563,94.47493534],[4.53264481,0.02335735,94.47664846],[4.53264561,0.02335908,94.47843394],[4.53264641,0.0233608,94.48028917],[4.53264721,0.02336251,94.48221159],[4.53264801,0.02336423,94.48419861],[4.53264878,0.02336591,94.48624767],[4.53264958,0.02336763,94.48835619],[4.53265038,0.02336935,94.49052161],[4.53265118,0.02337107,94.49274137],[4.53265197,0.02337278,94.49501291],[4.53265277,0.0233745,94.49733369],[4.53265357,0.02337621,94.49970115],[4.53265436,0.02337792,94.50211277],[4.53265516,0.02337963,94.50456599],[4.53265595,0.02338134,94.50705829],[4.53265675,0.02338305,94.50958713],[4.53265754,0.02338476,94.51215],[4.53265833,0.02338647,94.51474438],[4.53265913,0.02338818,94.51736789],[4.53265992,0.02338988,94.52001828],[4.53266071,0.02339159,94.52269329],[4.5326615,0.02339329,94.52539061],[4.53266229,0.02339499,94.52810773],[4.53266309,0.0233967,94.53084205],[4.53266388,0.0233984,94.53359099],[4.53266467,0.0234001,94.53635198],[4.53266546,0.0234018,94.53912244],[4.53266625,0.0234035,94.5418998],[4.53266704,0.0234052,94.5446815],[4.53266783,0.0234069,94.54746494],[4.53266862,0.0234086,94.55024708],[4.53266941,0.0234103,94.55302466],[4.53267019,0.02341199,94.55579443],[4.53267098,0.02341368,94.55855317],[4.53267176,0.02341538,94.56129766],[4.53267255,0.02341707,94.56402469],[4.53267333,0.02341875,94.56673107],[4.53267411,0.02342044,94.56941361],[4.53267489,0.02342212,94.57206916],[4.53267567,0.0234238,94.57465372],[4.53267635,0.02342553,94.57680486],[4.53267704,0.02342725,94.57891711],[4.53267773,0.02342897,94.58098653],[4.53267842,0.02343068,94.5830092],[4.5326791,0.02343239,94.58498122],[4.53267978,0.0234341,94.5868987],[4.53268047,0.02343581,94.58875788],[4.53268115,0.02343752,94.59055696],[4.53268183,0.02343922,94.59229588],[4.53268251,0.02344092,94.59397463],[4.53268318,0.02344262,94.59559324],[4.53268386,0.02344432,94.59715175],[4.53268454,0.02344601,94.59865023],[4.53268521,0.0234477,94.60008875],[4.53268588,0.02344939,94.60146743],[4.53268656,0.02345108,94.60278638],[4.53268723,0.02345277,94.60404576],[4.53268789,0.02345445,94.60524575],[4.53268856,0.02345614,94.60638654],[4.53268923,0.02345782,94.60746836],[4.53268989,0.0234595,94.60849147],[4.53269056,0.02346118,94.6094562],[4.53269122,0.02346286,94.61036403],[4.53269188,0.02346453,94.61121763],[4.53269254,0.0234662,94.61201975],[4.5326932,0.02346788,94.61277314],[4.53269387,0.02346957,94.61348052],[4.53269454,0.02347124,94.61414459],[4.5326952,0.02347292,94.61476719],[4.53269588,0.0234746,94.61534922],[4.53269655,0.02347628,94.61589159],[4.53269723,0.02347797,94.61639521],[4.53269791,0.02347967,94.61686102],[4.53269859,0.02348138,94.61728997],[4.53269927,0.02348309,94.61768304],[4.53269995,0.0234848,94.61804124],[4.53270063,0.02348653,94.61836561],[4.53270131,0.02348826,94.61865725],[4.53270199,0.02349,94.61891878],[4.53270266,0.02349174,94.61915432],[4.53270333,0.02349349,94.61936799],[4.532704,0.02349525,94.61956383],[4.53270467,0.02349701,94.61974576],[4.53270534,0.02349878,94.6199176],[4.532706,0.02350055,94.62008306],[4.53270667,0.02350233,94.62024579],[4.53270733,0.02350412,94.62041079],[4.53270799,0.02350591,94.62058431],[4.53270865,0.02350771,94.62077234],[4.53270932,0.02350951,94.62098052],[4.53270998,0.02351131,94.6212141],[4.53271066,0.02351313,94.62147795],[4.53271134,0.02351496,94.62177648],[4.53271202,0.0235168,94.62211364],[4.53271271,0.02351866,94.6224929],[4.53271341,0.02352052,94.62291719],[4.53271411,0.0235224,94.62338888],[4.53271482,0.0235243,94.62390976]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004100","rules":[{"value":"barred"}],"id":1,"type":"restricted","predecessorId":0}},{"geometry":{"coordinates":[[4.53271484,0.02352429,94.63361523],[4.5327142,0.0235226,94.63235682],[4.53271357,0.02352091,94.63109732],[4.53271294,0.02351922,94.62983741],[4.5327123,0.02351753,94.62857773],[4.53271167,0.02351584,94.62731895],[4.53271103,0.02351415,94.62606173],[4.5327104,0.02351246,94.62480674],[4.53270976,0.02351077,94.62355463],[4.53270913,0.02350908,94.62230609],[4.53270849,0.02350739,94.62106177],[4.53270786,0.0235057,94.61982235],[4.53270723,0.02350401,94.61858851],[4.5327066,0.02350232,94.61736092],[4.53270597,0.02350062,94.61614027],[4.53270534,0.02349893,94.61492723],[4.53270472,0.02349724,94.6137217],[4.53270409,0.02349554,94.61252048],[4.53270346,0.02349385,94.61131963],[4.53270283,0.02349216,94.6101152],[4.5327022,0.02349047,94.60890323],[4.53270156,0.02348877,94.60767974],[4.53270092,0.02348709,94.60644076],[4.53270027,0.0234854,94.6051825],[4.53269961,0.02348372,94.60390528],[4.53269894,0.02348204,94.60261342],[4.53269827,0.02348036,94.60131141],[4.5326976,0.02347868,94.60000374],[4.53269692,0.023477,94.59869492],[4.53269624,0.02347532,94.59738947],[4.53269557,0.02347364,94.59609113],[4.53269489,0.02347197,94.59480064],[4.53269422,0.02347029,94.59351807],[4.53269354,0.02346861,94.59224349],[4.53269287,0.02346693,94.59097696],[4.5326922,0.02346525,94.58971853],[4.53269152,0.02346357,94.58846829],[4.53269085,0.02346189,94.58722629],[4.53269018,0.02346021,94.58599261],[4.53268951,0.02345853,94.58476732],[4.53268884,0.02345685,94.58355049],[4.53268817,0.02345517,94.5823422],[4.5326875,0.02345349,94.58114252],[4.53268683,0.02345181,94.57995153],[4.53268616,0.02345013,94.57876931],[4.53268549,0.02344845,94.57759594],[4.53268483,0.02344677,94.5764315],[4.53268416,0.02344509,94.57527608],[4.53268349,0.0234434,94.57412976],[4.53268282,0.02344172,94.57299263],[4.53268215,0.02344004,94.57186479],[4.53268149,0.02343836,94.57074631],[4.53268082,0.02343668,94.5696373],[4.53268015,0.023435,94.56853784],[4.53267948,0.02343332,94.56744805],[4.53267881,0.02343163,94.56636801],[4.53267814,0.02342995,94.56529783],[4.53267747,0.02342827,94.5642376],[4.53267681,0.02342659,94.56318745],[4.53267614,0.02342491,94.56214748],[4.53267544,0.02342324,94.56104616],[4.53267468,0.02342159,94.55973368],[4.53267391,0.02341994,94.55843252],[4.53267314,0.02341829,94.55714305],[4.53267238,0.02341664,94.55586564],[4.53267161,0.02341499,94.55460067],[4.53267084,0.02341334,94.55334853],[4.53267007,0.0234117,94.5521096],[4.53266931,0.02341005,94.55088425],[4.53266854,0.0234084,94.54967285],[4.53266777,0.02340675,94.54847575],[4.532667,0.0234051,94.54729333],[4.53266623,0.02340345,94.54612596],[4.53266546,0.0234018,94.544974],[4.5326647,0.02340015,94.54383785],[4.53266393,0.0233985,94.54271788],[4.53266316,0.02339686,94.54161448],[4.53266239,0.02339521,94.54052803],[4.53266162,0.02339356,94.53945896],[4.53266085,0.02339191,94.53840768],[4.53266008,0.02339026,94.53737467],[4.53265931,0.02338861,94.53636037],[4.53265855,0.02338696,94.53536525],[4.53265778,0.02338531,94.53438977],[4.53265701,0.02338366,94.53343439],[4.53265624,0.02338201,94.5324996],[4.53265547,0.02338036,94.53158586],[4.53265471,0.02337871,94.53069364],[4.53265394,0.02337707,94.52982343],[4.53265317,0.02337542,94.5289757],[4.5326524,0.02337377,94.52815094],[4.53265164,0.02337212,94.52734964],[4.53265087,0.02337047,94.52657228],[4.53265011,0.02336882,94.52581935],[4.53264934,0.02336717,94.52509134],[4.53264858,0.02336552,94.52438875],[4.53264781,0.02336387,94.52371208],[4.53264705,0.02336222,94.52306182],[4.53264629,0.02336057,94.52243848],[4.53264553,0.02335892,94.52184254],[4.53264476,0.02335727,94.52127452],[4.532644,0.02335562,94.52073492],[4.53264324,0.02335397,94.52022425],[4.53264248,0.02335232,94.51974298],[4.53264173,0.02335067,94.51929115],[4.53264097,0.02334902,94.51886833],[4.53264021,0.02334737,94.51847404],[4.53263945,0.02334572,94.51810781],[4.5326387,0.02334407,94.51776908],[4.53263794,0.02334242,94.51745627],[4.53263719,0.02334077,94.51716696],[4.53263643,0.02333912,94.51689874],[4.53263567,0.02333747,94.51664923],[4.53263491,0.02333582,94.51641609],[4.53263415,0.02333418,94.51619703],[4.53263339,0.02333253,94.51598981],[4.53263261,0.02333089,94.51579224],[4.53263184,0.02332925,94.51560216],[4.53263106,0.02332761,94.51541745],[4.53263027,0.02332597,94.51523701],[4.53262948,0.02332433,94.5150624],[4.53262868,0.0233227,94.51489554],[4.53262788,0.02332107,94.5147383],[4.53262708,0.02331944,94.51459248],[4.53262627,0.0233178,94.51445981],[4.53262547,0.02331617,94.51434193],[4.53262466,0.02331454,94.51424044],[4.53262386,0.02331291,94.51415683],[4.53262305,0.02331128,94.51409254],[4.53262226,0.02330965,94.51404892],[4.53262146,0.02330802,94.51402565],[4.53262067,0.02330638,94.51401923],[4.53261987,0.02330475,94.5140258],[4.53261908,0.02330312,94.51404161],[4.53261828,0.02330149,94.51406297],[4.53261749,0.02329986,94.51408629],[4.53261668,0.02329823,94.51410803],[4.53261587,0.0232966,94.51412476],[4.53261506,0.02329497,94.51413311],[4.53261424,0.02329335,94.51412982],[4.5326134,0.02329173,94.51411354],[4.53261257,0.02329012,94.51408583],[4.53261172,0.02328851,94.51404844],[4.53261087,0.02328689,94.51400302],[4.53261001,0.02328528,94.51395114],[4.53260915,0.02328368,94.51389428],[4.53260829,0.02328207,94.51383385],[4.53260743,0.02328046,94.51377114],[4.53260657,0.02327886,94.51370738],[4.5326057,0.02327725,94.51364372],[4.53260484,0.02327565,94.51358121],[4.53260398,0.02327404,94.51352083],[4.53260313,0.02327243,94.5134635],[4.53260254,0.02327073,94.51394306],[4.53260201,0.02326902,94.51450869],[4.53260148,0.0232673,94.51505709],[4.53260095,0.02326559,94.51558743],[4.53260042,0.02326388,94.51609888],[4.53259989,0.02326216,94.5165906],[4.53259936,0.02326045,94.51706177],[4.53259883,0.02325874,94.51751156],[4.5325983,0.02325702,94.51793914],[4.53259777,0.02325531,94.51834368],[4.53259724,0.0232536,94.51872436],[4.53259671,0.02325188,94.51908037],[4.53259617,0.02325017,94.51941087],[4.53259564,0.02324846,94.51971505],[4.53259511,0.02324674,94.51999209],[4.53259458,0.02324503,94.52024117],[4.53259406,0.02324332,94.52046149],[4.53259353,0.02324161,94.52065222],[4.532593,0.0232399,94.52081256],[4.53259247,0.02323819,94.52094169],[4.53259194,0.02323647,94.52103882],[4.53259141,0.02323476,94.52110313],[4.53259088,0.02323305,94.52113383],[4.53259035,0.02323134,94.52113011],[4.53258982,0.02322963,94.52109117],[4.53258981,0.0232296,94.52109012]],"type":"LineString"},"type":"feature","properties":{"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004200","rules":[{"value":"barred"}],"id":-3,"type":"restricted","predecessorId":0}},{"geometry":{"coordinates":[[4.53271484,0.02352429,94.63361523],[4.53271427,0.02352258,94.6325505],[4.5327137,0.02352087,94.63148678],[4.53271313,0.02351915,94.63042422],[4.53271256,0.02351744,94.62936299],[4.53271199,0.02351573,94.62830327],[4.53271142,0.02351402,94.62724521],[4.53271085,0.02351231,94.62618898],[4.53271028,0.0235106,94.62513474],[4.53270972,0.02350888,94.62408267],[4.53270915,0.02350717,94.62303292],[4.53270858,0.02350546,94.62198566],[4.53270801,0.02350375,94.62094106],[4.53270744,0.02350203,94.61989929],[4.53270687,0.02350032,94.6188605],[4.5327063,0.02349861,94.61782487],[4.53270573,0.0234969,94.61679256],[4.53270516,0.02349518,94.61576373],[4.53270459,0.02349347,94.61473855],[4.53270402,0.02349176,94.61371719],[4.53270345,0.02349005,94.61269981],[4.53270288,0.02348833,94.61168657],[4.53270231,0.02348662,94.61067765],[4.53270174,0.02348491,94.6096732],[4.53270117,0.02348319,94.6086734],[4.5327006,0.02348148,94.60767841],[4.53270003,0.02347976,94.60668839],[4.53269946,0.02347805,94.60570351],[4.53269889,0.02347634,94.60472394],[4.53269832,0.02347462,94.60374984],[4.53269775,0.02347291,94.60278138],[4.53269718,0.0234712,94.60181871],[4.53269662,0.02346948,94.60086202],[4.53269605,0.02346777,94.59991146],[4.53269548,0.02346606,94.5989672],[4.53269491,0.02346434,94.59802941],[4.53269434,0.02346263,94.59709825],[4.53269377,0.02346091,94.59617389],[4.5326932,0.0234592,94.59525649],[4.53269263,0.02345749,94.59434623],[4.53269206,0.02345577,94.59344326],[4.53269149,0.02345406,94.59254775],[4.53269092,0.02345234,94.59165987],[4.53269035,0.02345063,94.59077979],[4.53268979,0.02344892,94.58990767],[4.53268922,0.0234472,94.58904368],[4.53268865,0.02344549,94.58818799],[4.53268808,0.02344377,94.58734076],[4.53268751,0.02344206,94.58650216],[4.53268694,0.02344035,94.58567235],[4.53268637,0.02343863,94.58485151],[4.5326858,0.02343692,94.5840398],[4.53268524,0.0234352,94.58323739],[4.53268467,0.02343349,94.58244445],[4.5326841,0.02343177,94.58166113],[4.53268353,0.02343006,94.58088762],[4.53268296,0.02342835,94.58012408],[4.53268239,0.02342663,94.57937067],[4.53268183,0.02342492,94.57862757],[4.53268126,0.0234232,94.57789494],[4.53268069,0.02342149,94.57717295],[4.53268012,0.02341977,94.57646177],[4.53267955,0.02341806,94.57576157],[4.53267899,0.02341634,94.57507251],[4.53267842,0.02341463,94.57439477],[4.53267785,0.02341291,94.5737285],[4.53267728,0.0234112,94.57307388],[4.53267671,0.02340949,94.57243107],[4.53267615,0.02340777,94.57180021],[4.53267558,0.02340606,94.57118144],[4.53267501,0.02340434,94.5705749],[4.53267444,0.02340263,94.5699807],[4.53267388,0.02340091,94.56939899],[4.53267331,0.0233992,94.5688299],[4.53267274,0.02339748,94.56827356],[4.53267217,0.02339577,94.5677301],[4.5326716,0.02339405,94.56719967],[4.53267104,0.02339234,94.56668238],[4.53267047,0.02339062,94.5661784],[4.5326699,0.02338891,94.56568789],[4.53266933,0.02338719,94.56521105],[4.53266876,0.02338548,94.56474806],[4.5326682,0.02338376,94.56429913],[4.53266763,0.02338205,94.56386443],[4.53266706,0.02338033,94.56344416],[4.53266649,0.02337862,94.56303851],[4.53266592,0.0233769,94.56264767],[4.53266535,0.02337519,94.56227183],[4.53266479,0.02337347,94.56191118],[4.53266422,0.02337176,94.56156592],[4.53266365,0.02337005,94.56123624],[4.53266308,0.02336833,94.56092232],[4.53266251,0.02336662,94.56062437],[4.53266194,0.0233649,94.56034257],[4.53266138,0.02336319,94.56007712],[4.53266081,0.02336148,94.55982821],[4.53266024,0.02335976,94.55959604],[4.53265967,0.02335805,94.55938079],[4.5326591,0.02335634,94.55918267],[4.53265854,0.02335462,94.55900185],[4.53265797,0.02335291,94.55883855],[4.5326574,0.0233512,94.55869295],[4.53265683,0.02334948,94.55856525],[4.53265626,0.02334777,94.55845562],[4.5326557,0.02334606,94.55836389],[4.53265513,0.02334435,94.55828954],[4.53265456,0.02334264,94.55823203],[4.53265399,0.02334092,94.55819081],[4.53265342,0.02333921,94.55816533],[4.53265286,0.0233375,94.55815504],[4.53265229,0.02333579,94.55815934],[4.53265172,0.02333408,94.55817767],[4.53265115,0.02333236,94.55820945],[4.53265058,0.02333065,94.55825409],[4.53265002,0.02332894,94.55831106],[4.53264945,0.02332723,94.5583798],[4.53264888,0.02332552,94.55845978],[4.53264831,0.02332381,94.55855045],[4.53264774,0.0233221,94.55865127],[4.53264718,0.02332039,94.55876171],[4.53264661,0.02331868,94.55888121],[4.53264604,0.02331697,94.55900924],[4.53264547,0.02331526,94.55914525],[4.5326449,0.02331355,94.55928869],[4.53264434,0.02331184,94.55943901],[4.53264377,0.02331013,94.55959567],[4.5326432,0.02330842,94.55975812],[4.53264263,0.02330671,94.55992581],[4.53264206,0.023305,94.56009819],[4.5326415,0.02330329,94.5602747],[4.53264093,0.02330159,94.5604548],[4.53264036,0.02329988,94.56063793],[4.53263979,0.02329817,94.56082354],[4.53263922,0.02329646,94.56101107],[4.53263865,0.02329475,94.56119996],[4.53263809,0.02329304,94.56138966],[4.53263752,0.02329134,94.56157961],[4.53263695,0.02328963,94.56176925],[4.53263638,0.02328792,94.56195802],[4.53263582,0.02328621,94.56214536],[4.53263525,0.0232845,94.5623307],[4.53263468,0.0232828,94.56251349],[4.53263411,0.02328109,94.56269316],[4.53263354,0.02327938,94.56286915],[4.53263298,0.02327768,94.56304088],[4.53263241,0.02327597,94.5632078],[4.53263184,0.02327426,94.56336934],[4.53263127,0.02327256,94.56352493],[4.53263071,0.02327085,94.56367401],[4.53263014,0.02326914,94.56381599],[4.53262957,0.02326744,94.56395032],[4.532629,0.02326573,94.56407642],[4.53262844,0.02326403,94.56419372],[4.53262787,0.02326232,94.56430166],[4.5326273,0.02326061,94.56439965],[4.53262673,0.02325891,94.56448713],[4.53262617,0.0232572,94.56456352],[4.5326256,0.0232555,94.56462824],[4.53262503,0.02325379,94.56468074],[4.53262447,0.02325209,94.56472042],[4.5326239,0.02325038,94.56474672],[4.53262333,0.02324868,94.56475907],[4.53262277,0.02324697,94.56475687],[4.5326222,0.02324527,94.56473957],[4.53262163,0.02324356,94.56470659],[4.53262107,0.02324186,94.56465735],[4.5326205,0.02324015,94.56459127],[4.53261994,0.02323845,94.56450778],[4.53261937,0.02323675,94.56440631],[4.5326188,0.02323504,94.56428627],[4.53261824,0.02323334,94.56414711],[4.53261767,0.02323163,94.56398823],[4.53261711,0.02322993,94.56380907],[4.53261654,0.02322823,94.56360905],[4.53261598,0.02322652,94.5633876],[4.53261541,0.02322482,94.56314414],[4.53261485,0.02322312,94.56287812],[4.53261428,0.02322141,94.56258894],[4.53261427,0.02322138,94.56258339]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004200","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":0}},{"geometry":{"coordinates":[[4.53274593,0.02351381,94.72737248],[4.53274536,0.0235121,94.72633087],[4.5327448,0.02351039,94.72529344],[4.53274423,0.02350868,94.72426022],[4.53274366,0.02350696,94.72323121],[4.5327431,0.02350525,94.72220645],[4.53274253,0.02350354,94.72118597],[4.53274196,0.02350183,94.72016978],[4.5327414,0.02350012,94.71915791],[4.53274083,0.0234984,94.71815038],[4.53274026,0.02349669,94.71714722],[4.53273969,0.02349498,94.71614844],[4.53273913,0.02349327,94.71515408],[4.53273856,0.02349156,94.71416415],[4.53273799,0.02348985,94.71317868],[4.53273743,0.02348813,94.71219769],[4.53273686,0.02348642,94.7112212],[4.53273629,0.02348471,94.71024925],[4.53273572,0.023483,94.70928184],[4.53273516,0.02348129,94.708319],[4.53273459,0.02347957,94.70736076],[4.53273402,0.02347786,94.70640714],[4.53273345,0.02347615,94.70545816],[4.53273289,0.02347444,94.70451384],[4.53273232,0.02347273,94.7035742],[4.53273175,0.02347101,94.70263928],[4.53273119,0.0234693,94.70170909],[4.53273062,0.02346759,94.70078365],[4.53273005,0.02346588,94.69986299],[4.53272948,0.02346416,94.69894713],[4.53272892,0.02346245,94.69803609],[4.53272835,0.02346074,94.6971299],[4.53272778,0.02345903,94.69622857],[4.53272721,0.02345732,94.69533214],[4.53272665,0.0234556,94.69444062],[4.53272608,0.02345389,94.69355403],[4.53272551,0.02345218,94.6926724],[4.53272494,0.02345047,94.69179576],[4.53272438,0.02344876,94.69092412],[4.53272381,0.02344704,94.69005751],[4.53272324,0.02344533,94.68919595],[4.53272267,0.02344362,94.68833946],[4.53272211,0.02344191,94.68748808],[4.53272154,0.02344019,94.68664181],[4.53272097,0.02343848,94.68580069],[4.5327204,0.02343677,94.68496473],[4.53271984,0.02343506,94.68413397],[4.53271927,0.02343335,94.68330842],[4.5327187,0.02343163,94.68248812],[4.53271813,0.02342992,94.68167307],[4.53271757,0.02342821,94.68086331],[4.532717,0.0234265,94.68005886],[4.53271643,0.02342478,94.67925975],[4.53271587,0.02342307,94.678466],[4.5327153,0.02342136,94.67767763],[4.53271473,0.02341965,94.67689468],[4.53271416,0.02341794,94.67611715],[4.5327136,0.02341622,94.67534509],[4.53271303,0.02341451,94.67457851],[4.53271246,0.0234128,94.67381743],[4.53271189,0.02341109,94.6730619],[4.53271133,0.02340937,94.67231192],[4.53271076,0.02340766,94.67156753],[4.53271019,0.02340595,94.67082875],[4.53270962,0.02340424,94.67009562],[4.53270906,0.02340252,94.66936814],[4.53270849,0.02340081,94.66864636],[4.53270792,0.0233991,94.6679303],[4.53270735,0.02339739,94.66721996],[4.53270679,0.02339567,94.66651535],[4.53270622,0.02339396,94.66581645],[4.53270565,0.02339225,94.66512326],[4.53270508,0.02339054,94.66443577],[4.53270452,0.02338883,94.66375398],[4.53270395,0.02338711,94.66307788],[4.53270338,0.0233854,94.66240746],[4.53270281,0.02338369,94.66174273],[4.53270225,0.02338198,94.66108368],[4.53270168,0.02338026,94.66043032],[4.53270111,0.02337855,94.65978268],[4.53270054,0.02337684,94.65914083],[4.53269997,0.02337513,94.6585048],[4.53269941,0.02337342,94.65787466],[4.53269884,0.0233717,94.65725046],[4.53269827,0.02336999,94.65663224],[4.5326977,0.02336828,94.65602007],[4.53269713,0.02336657,94.655414],[4.53269656,0.02336486,94.65481407],[4.53269599,0.02336314,94.65422035],[4.53269543,0.02336143,94.65363289],[4.53269486,0.02335972,94.65305174],[4.53269429,0.02335801,94.65247696],[4.53269372,0.0233563,94.6519086],[4.53269315,0.02335458,94.65134672],[4.53269258,0.02335287,94.65079138],[4.53269201,0.02335116,94.65024262],[4.53269144,0.02334945,94.64970052],[4.53269087,0.02334774,94.64916511],[4.5326903,0.02334603,94.64863647],[4.53268974,0.02334432,94.64811464],[4.53268917,0.02334261,94.64759969],[4.5326886,0.02334089,94.64709167],[4.53268803,0.02333918,94.64659063],[4.53268746,0.02333747,94.64609663],[4.53268689,0.02333576,94.64560961],[4.53268632,0.02333405,94.64512938],[4.53268575,0.02333234,94.64465576],[4.53268518,0.02333063,94.64418856],[4.53268461,0.02332892,94.64372759],[4.53268404,0.02332721,94.64327262],[4.53268347,0.0233255,94.64282345],[4.53268291,0.02332378,94.64237985],[4.53268234,0.02332207,94.64194159],[4.53268177,0.02332036,94.64150845],[4.5326812,0.02331865,94.64108024],[4.53268063,0.02331694,94.64065676],[4.53268006,0.02331523,94.64023783],[4.53267949,0.02331352,94.63982326],[4.53267892,0.02331181,94.63941286],[4.53267835,0.0233101,94.63900644],[4.53267778,0.02330839,94.63860382],[4.53267721,0.02330668,94.6382048],[4.53267664,0.02330497,94.63780919],[4.53267607,0.02330326,94.63741679],[4.5326755,0.02330155,94.63702742],[4.53267493,0.02329984,94.63664087],[4.53267436,0.02329813,94.63625696],[4.53267379,0.02329642,94.63587547],[4.53267322,0.02329471,94.63549622],[4.53267265,0.023293,94.63511901],[4.53267208,0.02329129,94.63474362],[4.53267151,0.02328958,94.63436987],[4.53267094,0.02328788,94.63399755],[4.53267037,0.02328617,94.63362645],[4.5326698,0.02328446,94.63325638],[4.53266923,0.02328275,94.63288711],[4.53266866,0.02328104,94.63251846],[4.53266809,0.02327933,94.6321502],[4.53266752,0.02327762,94.63178212],[4.53266695,0.02327591,94.63141403],[4.53266637,0.0232742,94.6310457],[4.5326658,0.02327249,94.63067693],[4.53266523,0.02327078,94.6303075],[4.53266466,0.02326907,94.62993719],[4.53266409,0.02326737,94.6295658],[4.53266352,0.02326566,94.6291931],[4.53266295,0.02326395,94.62881888],[4.53266238,0.02326224,94.62844292],[4.53266181,0.02326053,94.628065],[4.53266124,0.02325882,94.6276849],[4.53266067,0.02325711,94.6273024],[4.5326601,0.0232554,94.62691728],[4.53265954,0.0232537,94.62652932],[4.53265897,0.02325199,94.6261383],[4.5326584,0.02325028,94.62574398],[4.53265783,0.02324857,94.62534616],[4.53265726,0.02324686,94.6249446],[4.53265669,0.02324515,94.62453907],[4.53265612,0.02324345,94.62412937],[4.53265555,0.02324174,94.62371524],[4.53265498,0.02324003,94.62329648],[4.53265441,0.02323832,94.62287286],[4.53265384,0.02323661,94.62244414],[4.53265327,0.0232349,94.62201011],[4.5326527,0.02323319,94.62157053],[4.53265213,0.02323149,94.62112517],[4.53265157,0.02322978,94.62067382],[4.532651,0.02322807,94.62021624],[4.53265043,0.02322636,94.61975221],[4.53264986,0.02322465,94.61928149],[4.53264929,0.02322295,94.61880387],[4.53264872,0.02322124,94.61831912],[4.53264816,0.02321953,94.617827],[4.53264759,0.02321782,94.6173273],[4.53264702,0.02321611,94.61681978],[4.53264645,0.0232144,94.61630424],[4.53264589,0.0232127,94.61578043],[4.53264532,0.02321099,94.61524814],[4.53264531,0.02321096,94.61523825]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004200","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":0}},{"geometry":{"coordinates":[[4.53267974,0.02319939,94.67364753],[4.53267975,0.02319942,94.67366197],[4.53268031,0.02320114,94.67445265],[4.53268088,0.02320285,94.67525682],[4.53268145,0.02320457,94.67607392],[4.53268202,0.02320628,94.67690337],[4.5326826,0.02320799,94.6777446],[4.53268318,0.0232097,94.67859705],[4.53268376,0.02321141,94.67946012],[4.53268434,0.02321312,94.68033324],[4.53268492,0.02321483,94.68121581],[4.53268551,0.02321654,94.68210724],[4.53268609,0.02321825,94.68300689],[4.53268668,0.02321995,94.68391416],[4.53268727,0.02322166,94.68482839],[4.53268785,0.02322337,94.68574895],[4.53268844,0.02322508,94.68667515],[4.53268903,0.02322678,94.68760632],[4.53268961,0.02322849,94.68854175],[4.5326902,0.0232302,94.68948073],[4.53269078,0.02323191,94.69042253],[4.53269136,0.02323362,94.69136674],[4.53269194,0.02323532,94.69231329],[4.53269252,0.02323703,94.69326212],[4.5326931,0.02323874,94.69421318],[4.53269368,0.02324045,94.69516642],[4.53269425,0.02324216,94.69612178],[4.53269483,0.02324388,94.69707922],[4.5326954,0.02324559,94.6980387],[4.53269598,0.0232473,94.69900018],[4.53269655,0.02324901,94.69996363],[4.53269712,0.02325072,94.70092901],[4.53269769,0.02325243,94.7018963],[4.53269827,0.02325414,94.70286547],[4.53269884,0.02325585,94.7038365],[4.53269941,0.02325757,94.70480938],[4.53269998,0.02325928,94.70578411],[4.53270055,0.02326099,94.70676068],[4.53270112,0.0232627,94.70773908],[4.53270169,0.02326441,94.70871933],[4.53270226,0.02326613,94.7097014],[4.53270283,0.02326784,94.71068514],[4.5327034,0.02326955,94.71167037],[4.53270397,0.02327126,94.71265691],[4.53270454,0.02327297,94.71364457],[4.53270511,0.02327468,94.71463317],[4.53270568,0.02327639,94.71562252],[4.53270625,0.0232781,94.71661244],[4.53270682,0.02327982,94.71760272],[4.53270739,0.02328153,94.71859318],[4.53270796,0.02328324,94.71958363],[4.53270853,0.02328495,94.72057388],[4.5327091,0.02328666,94.72156372],[4.53270967,0.02328837,94.72255296],[4.53271025,0.02329008,94.72354141],[4.53271082,0.02329179,94.72452886],[4.53271139,0.0232935,94.72551511],[4.53271196,0.02329521,94.72649996],[4.53271253,0.02329692,94.72748321],[4.5327131,0.02329863,94.72846465],[4.53271367,0.02330034,94.72944408],[4.53271424,0.02330205,94.73042129],[4.53271481,0.02330376,94.73139608],[4.53271538,0.02330547,94.73236823],[4.53271595,0.02330718,94.73333755],[4.53271652,0.02330889,94.73430384],[4.53271709,0.0233106,94.73526687],[4.53271766,0.02331231,94.73622644],[4.53271823,0.02331402,94.73718234],[4.5327188,0.02331573,94.73813437],[4.53271937,0.02331744,94.7390823],[4.53271994,0.02331915,94.74002593],[4.53272051,0.02332086,94.74096503],[4.53272108,0.02332257,94.74189936],[4.53272165,0.02332428,94.74282868],[4.53272222,0.02332599,94.74375272],[4.53272279,0.0233277,94.74467125],[4.53272336,0.02332941,94.74558417],[4.53272393,0.02333112,94.74649151],[4.5327245,0.02333283,94.74739333],[4.53272506,0.02333454,94.74828967],[4.53272563,0.02333625,94.7491806],[4.5327262,0.02333796,94.75006616],[4.53272677,0.02333967,94.75094639],[4.53272733,0.02334138,94.75182136],[4.5327279,0.02334309,94.7526911],[4.53272847,0.0233448,94.75355567],[4.53272903,0.02334651,94.75441513],[4.5327296,0.02334822,94.75526951],[4.53273016,0.02334993,94.75611888],[4.53273073,0.02335165,94.75696328],[4.53273129,0.02335336,94.75780276],[4.53273186,0.02335507,94.75863745],[4.53273242,0.02335678,94.75946749],[4.53273299,0.02335849,94.76029307],[4.53273355,0.0233602,94.76111436],[4.53273411,0.02336191,94.76193153],[4.53273467,0.02336362,94.76274475],[4.53273524,0.02336533,94.7635542],[4.5327358,0.02336704,94.76436006],[4.53273636,0.02336875,94.7651625],[4.53273692,0.02337047,94.76596171],[4.53273748,0.02337218,94.76675786],[4.53273804,0.02337389,94.76755114],[4.5327386,0.0233756,94.76834172],[4.53273916,0.02337731,94.76912979],[4.53273972,0.02337902,94.76991552],[4.53274028,0.02338074,94.77069911],[4.53274084,0.02338245,94.77148074],[4.5327414,0.02338416,94.77226059],[4.53274196,0.02338587,94.77303884],[4.53274252,0.02338758,94.77381569],[4.53274308,0.0233893,94.77459131],[4.53274364,0.02339101,94.77536588],[4.5327442,0.02339272,94.77613955],[4.53274476,0.02339443,94.77691247],[4.53274532,0.02339615,94.77768479],[4.53274588,0.02339786,94.77845666],[4.53274644,0.02339957,94.77922824],[4.532747,0.02340128,94.77999968],[4.53274756,0.02340299,94.78077113],[4.53274812,0.02340471,94.78154274],[4.53274868,0.02340642,94.78231467],[4.53274924,0.02340813,94.78308707],[4.5327498,0.02340984,94.78386009],[4.53275036,0.02341155,94.78463389],[4.53275092,0.02341327,94.78540861],[4.53275148,0.02341498,94.78618441],[4.53275204,0.02341669,94.78696145],[4.5327526,0.0234184,94.78773987],[4.53275316,0.02342012,94.78851984],[4.53275372,0.02342183,94.78930149],[4.53275428,0.02342354,94.79008499],[4.53275484,0.02342525,94.79087048],[4.5327554,0.02342696,94.79165813],[4.53275596,0.02342868,94.79244807],[4.53275652,0.02343039,94.79324047],[4.53275708,0.0234321,94.79403548],[4.53275764,0.02343381,94.79483324],[4.5327582,0.02343552,94.79563392],[4.53275876,0.02343724,94.79643765],[4.53275932,0.02343895,94.79724461],[4.53275988,0.02344066,94.79805492],[4.53276044,0.02344237,94.79886876],[4.53276101,0.02344408,94.79968626],[4.53276157,0.02344579,94.80050759],[4.53276213,0.02344751,94.80133288],[4.53276269,0.02344922,94.8021623],[4.53276325,0.02345093,94.802996],[4.53276381,0.02345264,94.80383412],[4.53276438,0.02345435,94.80467681],[4.53276494,0.02345606,94.80552423],[4.5327655,0.02345778,94.80637652],[4.53276606,0.02345949,94.80723385],[4.53276663,0.0234612,94.80809634],[4.53276719,0.02346291,94.80896417],[4.53276775,0.02346462,94.80983747],[4.53276832,0.02346633,94.8107164],[4.53276888,0.02346804,94.81160111],[4.53276944,0.02346975,94.81249174],[4.53277001,0.02347146,94.81338845],[4.53277057,0.02347318,94.81429138],[4.53277114,0.02347489,94.81520069],[4.5327717,0.0234766,94.81611652],[4.53277227,0.02347831,94.81703903],[4.53277283,0.02348002,94.81796836],[4.5327734,0.02348173,94.81890466],[4.53277396,0.02348344,94.81984808],[4.53277453,0.02348515,94.82079877],[4.5327751,0.02348686,94.82175688],[4.53277566,0.02348857,94.82272256],[4.53277623,0.02349028,94.82369595],[4.5327768,0.023492,94.82467722],[4.53277736,0.02349371,94.82566649],[4.53277793,0.02349542,94.82666393],[4.5327785,0.02349713,94.82766969],[4.53277907,0.02349884,94.82868391],[4.53277964,0.02350055,94.82970674],[4.53278021,0.02350226,94.83073834]],"type":"LineString"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004200","id":1,"type":"shoulder","predecessorId":0}},{"geometry":{"coordinates":[[4.53269278,0.02319501,94.67364753],[4.53269279,0.02319504,94.67366197],[4.53269335,0.02319676,94.67445265],[4.53269392,0.02319848,94.67525682],[4.53269448,0.0232002,94.67607392],[4.53269505,0.02320191,94.67690337],[4.53269561,0.02320363,94.6777446],[4.53269617,0.02320535,94.67859705],[4.53269674,0.02320707,94.67946012],[4.5326973,0.02320878,94.68033324],[4.53269787,0.0232105,94.68121581],[4.53269843,0.02321222,94.68210724],[4.53269899,0.02321394,94.68300689],[4.53269956,0.02321565,94.68391416],[4.53270012,0.02321737,94.68482839],[4.53270068,0.02321909,94.68574895],[4.53270125,0.02322081,94.68667515],[4.53270181,0.02322252,94.68760632],[4.53270237,0.02322424,94.68854175],[4.53270294,0.02322596,94.68948073],[4.5327035,0.02322767,94.69042253],[4.53270406,0.02322939,94.69136674],[4.53270463,0.02323111,94.69231329],[4.53270519,0.02323282,94.69326212],[4.53270575,0.02323454,94.69421318],[4.53270631,0.02323626,94.69516642],[4.53270687,0.02323797,94.69612178],[4.53270744,0.02323969,94.69707922],[4.532708,0.02324141,94.6980387],[4.53270856,0.02324312,94.69900018],[4.53270912,0.02324484,94.69996363],[4.53270968,0.02324656,94.70092901],[4.53271024,0.02324827,94.7018963],[4.5327108,0.02324999,94.70286547],[4.53271135,0.02325171,94.7038365],[4.53271191,0.02325342,94.70480938],[4.53271247,0.02325514,94.70578411],[4.53271303,0.02325686,94.70676068],[4.53271359,0.02325857,94.70773908],[4.53271415,0.02326029,94.70871933],[4.53271471,0.02326201,94.7097014],[4.53271527,0.02326372,94.71068514],[4.53271582,0.02326544,94.71167037],[4.53271638,0.02326715,94.71265691],[4.53271694,0.02326887,94.71364457],[4.5327175,0.02327059,94.71463317],[4.53271806,0.0232723,94.71562252],[4.53271862,0.02327402,94.71661244],[4.53271918,0.02327573,94.71760272],[4.53271974,0.02327745,94.71859318],[4.5327203,0.02327916,94.71958363],[4.53272086,0.02328088,94.72057388],[4.53272142,0.02328259,94.72156372],[4.53272198,0.02328431,94.72255296],[4.53272254,0.02328602,94.72354141],[4.53272309,0.02328774,94.72452886],[4.53272365,0.02328945,94.72551511],[4.53272421,0.02329117,94.72649996],[4.53272477,0.02329288,94.72748321],[4.53272533,0.0232946,94.72846465],[4.53272589,0.02329631,94.72944408],[4.53272645,0.02329803,94.73042129],[4.532727,0.02329974,94.73139608],[4.53272756,0.02330145,94.73236823],[4.53272812,0.02330317,94.73333755],[4.53272868,0.02330488,94.73430384],[4.53272924,0.0233066,94.73526687],[4.53272979,0.02330831,94.73622644],[4.53273035,0.02331002,94.73718234],[4.53273091,0.02331174,94.73813437],[4.53273147,0.02331345,94.7390823],[4.53273203,0.02331517,94.74002593],[4.53273259,0.02331688,94.74096503],[4.53273314,0.02331859,94.74189936],[4.5327337,0.0233203,94.74282868],[4.53273426,0.02332202,94.74375272],[4.53273482,0.02332373,94.74467125],[4.53273538,0.02332544,94.74558417],[4.53273594,0.02332716,94.74649151],[4.5327365,0.02332887,94.74739333],[4.53273706,0.02333058,94.74828967],[4.53273762,0.02333229,94.7491806],[4.53273818,0.023334,94.75006616],[4.53273874,0.02333572,94.75094639],[4.5327393,0.02333743,94.75182136],[4.53273986,0.02333914,94.7526911],[4.53274042,0.02334085,94.75355567],[4.53274098,0.02334256,94.75441513],[4.53274154,0.02334427,94.75526951],[4.5327421,0.02334598,94.75611888],[4.53274266,0.0233477,94.75696328],[4.53274322,0.02334941,94.75780276],[4.53274378,0.02335112,94.75863745],[4.53274435,0.02335283,94.75946749],[4.53274491,0.02335454,94.76029307],[4.53274547,0.02335625,94.76111436],[4.53274603,0.02335796,94.76193153],[4.53274659,0.02335967,94.76274475],[4.53274715,0.02336138,94.7635542],[4.53274772,0.02336309,94.76436006],[4.53274828,0.0233648,94.7651625],[4.53274884,0.02336651,94.76596171],[4.5327494,0.02336822,94.76675786],[4.53274997,0.02336993,94.76755114],[4.53275053,0.02337164,94.76834172],[4.53275109,0.02337335,94.76912979],[4.53275165,0.02337506,94.76991552],[4.53275222,0.02337677,94.77069911],[4.53275278,0.02337848,94.77148074],[4.53275335,0.02338019,94.77226059],[4.53275391,0.0233819,94.77303884],[4.53275448,0.02338361,94.77381569],[4.53275504,0.02338532,94.77459131],[4.5327556,0.02338703,94.77536588],[4.53275617,0.02338874,94.77613955],[4.53275674,0.02339044,94.77691247],[4.5327573,0.02339215,94.77768479],[4.53275787,0.02339386,94.77845666],[4.53275843,0.02339557,94.77922824],[4.532759,0.02339728,94.77999968],[4.53275957,0.02339899,94.78077113],[4.53276014,0.0234007,94.78154274],[4.5327607,0.02340241,94.78231467],[4.53276127,0.02340412,94.78308707],[4.53276184,0.02340582,94.78386009],[4.53276241,0.02340753,94.78463389],[4.53276297,0.02340924,94.78540861],[4.53276354,0.02341095,94.78618441],[4.53276411,0.02341266,94.78696145],[4.53276468,0.02341437,94.78773987],[4.53276525,0.02341607,94.78851984],[4.53276582,0.02341778,94.78930149],[4.53276639,0.02341949,94.79008499],[4.53276696,0.0234212,94.79087048],[4.53276753,0.02342291,94.79165813],[4.5327681,0.02342461,94.79244807],[4.53276867,0.02342632,94.79324047],[4.53276924,0.02342803,94.79403548],[4.53276981,0.02342974,94.79483324],[4.53277038,0.02343144,94.79563392],[4.53277095,0.02343315,94.79643765],[4.53277152,0.02343486,94.79724461],[4.53277209,0.02343657,94.79805492],[4.53277266,0.02343828,94.79886876],[4.53277323,0.02343998,94.79968626],[4.5327738,0.02344169,94.80050759],[4.53277437,0.0234434,94.80133288],[4.53277494,0.02344511,94.8021623],[4.53277551,0.02344681,94.802996],[4.53277609,0.02344852,94.80383412],[4.53277666,0.02345023,94.80467681],[4.53277723,0.02345194,94.80552423],[4.5327778,0.02345364,94.80637652],[4.53277837,0.02345535,94.80723385],[4.53277894,0.02345706,94.80809634],[4.53277951,0.02345877,94.80896417],[4.53278008,0.02346048,94.80983747],[4.53278066,0.02346218,94.8107164],[4.53278123,0.02346389,94.81160111],[4.5327818,0.0234656,94.81249174],[4.53278237,0.02346731,94.81338845],[4.53278294,0.02346902,94.81429138],[4.53278351,0.02347072,94.81520069],[4.53278408,0.02347243,94.81611652],[4.53278465,0.02347414,94.81703903],[4.53278522,0.02347585,94.81796836],[4.53278579,0.02347756,94.81890466],[4.53278636,0.02347927,94.81984808],[4.53278694,0.02348097,94.82079877],[4.53278751,0.02348268,94.82175688],[4.53278808,0.02348439,94.82272256],[4.53278865,0.0234861,94.82369595],[4.53278922,0.02348781,94.82467722],[4.53278979,0.02348952,94.82566649],[4.53279036,0.02349123,94.82666393],[4.53279093,0.02349294,94.82766969],[4.53279149,0.02349465,94.82868391],[4.53279206,0.02349636,94.82970674],[4.53279263,0.02349807,94.83073834]],"type":"LineString"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1004200","id":2,"type":"none","predecessorId":0}},{"geometry":{"coordinates":[[4.532555,0.02324129,94.52109012],[4.53255374,0.02323984,94.52095261],[4.53255248,0.02323838,94.52077786],[4.53255122,0.02323692,94.52056507],[4.53254996,0.02323547,94.52031342],[4.5325487,0.02323401,94.52002213],[4.53254743,0.02323255,94.51969063],[4.53254617,0.0232311,94.51931921],[4.53254491,0.02322964,94.51890837],[4.53254365,0.02322819,94.51845862],[4.53254239,0.02322673,94.51797046],[4.53254112,0.02322527,94.51744439],[4.53254053,0.02322359,94.5168809],[4.53253996,0.0232219,94.51628051],[4.53253939,0.02322021,94.51564371],[4.53253883,0.02321852,94.514971],[4.53253826,0.02321683,94.5142629],[4.53253769,0.02321513,94.51351989],[4.53253712,0.02321344,94.51274249],[4.53253656,0.02321175,94.5119312],[4.53253599,0.02321005,94.51108652],[4.53253542,0.02320836,94.51020897],[4.53253486,0.02320667,94.50929906],[4.53253429,0.02320497,94.50835729],[4.53253372,0.02320328,94.50738418],[4.53253316,0.02320158,94.50638024],[4.53253259,0.02319989,94.50534599],[4.53253203,0.02319819,94.50428195],[4.53253146,0.0231965,94.50318863],[4.5325309,0.0231948,94.50206655],[4.53253033,0.0231931,94.50091624],[4.53252977,0.02319141,94.49973823],[4.53252921,0.02318971,94.49853305],[4.53252864,0.02318801,94.49730121],[4.53252808,0.02318631,94.49604327],[4.53252752,0.02318461,94.49475974],[4.53252696,0.02318292,94.49345118],[4.5325264,0.02318122,94.49211809],[4.53252584,0.02317952,94.49076091],[4.53252528,0.02317781,94.48938009],[4.53252472,0.02317611,94.4879761],[4.53252416,0.02317441,94.4865494],[4.53252361,0.02317271,94.48510046],[4.53252305,0.02317101,94.48362974],[4.53252249,0.02316931,94.4821377],[4.53252193,0.0231676,94.48062479],[4.53252138,0.0231659,94.47909149],[4.53252082,0.0231642,94.47753823],[4.53252027,0.02316249,94.47596547],[4.53251971,0.02316079,94.47437367],[4.53251915,0.02315908,94.47276327],[4.5325186,0.02315738,94.47113472],[4.53251804,0.02315567,94.46948846],[4.53251748,0.02315397,94.46782493],[4.53251693,0.02315226,94.46614457],[4.53251637,0.02315056,94.4644478],[4.53251581,0.02314885,94.46273507],[4.53251526,0.02314714,94.4610068],[4.5325147,0.02314544,94.45926341],[4.53251414,0.02314373,94.45750532],[4.53251358,0.02314203,94.45573293],[4.53251303,0.02314032,94.45394664],[4.53251247,0.02313861,94.45214679],[4.53251191,0.02313691,94.45033371],[4.53251134,0.0231352,94.44850774],[4.53251078,0.02313349,94.44666931],[4.53251022,0.02313179,94.44481899],[4.53250966,0.02313008,94.44295731],[4.53250909,0.02312837,94.44108484],[4.53250853,0.02312667,94.43920213],[4.53250796,0.02312496,94.43730973],[4.5325074,0.02312325,94.43540821],[4.53250683,0.02312155,94.43349812],[4.53250626,0.02311984,94.43158001],[4.5325057,0.02311813,94.42965445],[4.53250513,0.02311643,94.42772201],[4.53250456,0.02311472,94.42578323],[4.53250399,0.02311301,94.4238387],[4.53250342,0.02311131,94.42188896],[4.53250285,0.0231096,94.41993459],[4.53250228,0.02310789,94.41797615],[4.53250171,0.02310618,94.41601422],[4.53250114,0.02310448,94.41404937],[4.53250057,0.02310277,94.4120822],[4.5325,0.02310106,94.41011335],[4.53249943,0.02309935,94.40814343],[4.53249886,0.02309764,94.40617306],[4.53249829,0.02309593,94.40420288],[4.53249772,0.02309423,94.40223348],[4.53249715,0.02309252,94.4002654],[4.53249658,0.02309081,94.39829913],[4.532496,0.0230891,94.39633516],[4.53249543,0.02308739,94.394374],[4.53249486,0.02308568,94.39241614],[4.53249429,0.02308397,94.39046208],[4.53249372,0.02308226,94.38851231],[4.53249315,0.02308054,94.3865673],[4.53249258,0.02307883,94.38462752],[4.53249201,0.02307712,94.38269342],[4.53249144,0.02307541,94.38076546],[4.53249086,0.0230737,94.37884409],[4.53249029,0.02307199,94.37692977],[4.53248972,0.02307027,94.37502295],[4.53248915,0.02306856,94.37312407],[4.53248858,0.02306685,94.37123358],[4.532488,0.02306514,94.36935194],[4.53248743,0.02306342,94.36747958],[4.53248686,0.02306171,94.36561695],[4.53248629,0.02306,94.36376449],[4.53248571,0.02305828,94.36192265],[4.53248514,0.02305657,94.36009187],[4.53248457,0.02305486,94.35827258],[4.53248399,0.02305314,94.35646522],[4.53248342,0.02305143,94.35467023],[4.53248284,0.02304971,94.35288805],[4.53248227,0.023048,94.35111912],[4.53248169,0.02304628,94.34936386],[4.53248111,0.02304457,94.34762273],[4.53248054,0.02304286,94.34589621],[4.53247996,0.02304114,94.34418484],[4.53247938,0.02303943,94.3424891],[4.53247881,0.02303771,94.34080952],[4.53247823,0.023036,94.33914662],[4.53247765,0.02303428,94.33750089],[4.53247707,0.02303257,94.33587275],[4.53247649,0.02303085,94.33426215],[4.53247591,0.02302913,94.33266895],[4.53247533,0.02302742,94.33109303],[4.53247475,0.0230257,94.32953422],[4.53247417,0.02302399,94.32799241],[4.53247359,0.02302227,94.32646745],[4.53247301,0.02302056,94.3249592],[4.53247243,0.02301884,94.32346754],[4.53247185,0.02301713,94.32199232],[4.53247127,0.02301541,94.32053342],[4.53247069,0.0230137,94.31909069],[4.5324701,0.02301198,94.31766401],[4.53246952,0.02301027,94.31625325],[4.53246894,0.02300855,94.31485827],[4.53246836,0.02300684,94.31347894],[4.53246777,0.02300513,94.31211513],[4.53246719,0.02300341,94.31076672],[4.53246661,0.0230017,94.30943357],[4.53246603,0.02299999,94.30811556],[4.53246544,0.02299827,94.30681255],[4.53246486,0.02299656,94.30552443],[4.53246428,0.02299485,94.30425105],[4.53246369,0.02299313,94.3029923],[4.53246311,0.02299142,94.30174804],[4.53246252,0.02298971,94.30051814],[4.53246194,0.02298799,94.29930247],[4.53246135,0.02298628,94.29810089],[4.53246077,0.02298457,94.29691327],[4.53246019,0.02298286,94.2957395],[4.5324596,0.02298114,94.29457949],[4.53245902,0.02297943,94.29343318],[4.53245843,0.02297772,94.29230059],[4.53245785,0.02297601,94.29118172],[4.53245726,0.0229743,94.29007658],[4.53245668,0.02297258,94.28898518],[4.53245609,0.02297087,94.28790755],[4.53245551,0.02296916,94.28684368],[4.53245492,0.02296745,94.28579358],[4.53245434,0.02296574,94.28475728],[4.53245375,0.02296402,94.28373479],[4.53245317,0.02296231,94.2827261],[4.53245259,0.0229606,94.28173124],[4.53245201,0.02295889,94.28075022],[4.53245142,0.02295717,94.27978304],[4.53245084,0.02295546,94.27882971],[4.53245026,0.02295375,94.27789022],[4.53244968,0.02295204,94.27696451],[4.5324491,0.02295032,94.27605251],[4.53244852,0.02294861,94.27515409],[4.53244794,0.0229469,94.27426907],[4.53244737,0.02294518,94.27339723],[4.53244679,0.02294347,94.27253836],[4.53244621,0.02294175,94.27169227],[4.53244564,0.02294004,94.27085874],[4.53244506,0.02293833,94.27003757],[4.53244449,0.02293661,94.26922856],[4.53244391,0.0229349,94.2684315],[4.53244334,0.02293318,94.26764619],[4.53244276,0.02293147,94.26687241],[4.53244219,0.02292975,94.26610996],[4.53244162,0.02292804,94.26535864],[4.53244105,0.02292632,94.26461823],[4.53244047,0.02292461,94.26388853],[4.5324399,0.02292289,94.26316934],[4.53243933,0.02292118,94.26246045],[4.53243876,0.02291946,94.26176165],[4.53243819,0.02291775,94.26107273],[4.53243762,0.02291603,94.2603935],[4.53243705,0.02291432,94.25972374],[4.53243648,0.0229126,94.25906325],[4.53243591,0.02291089,94.25841182],[4.53243534,0.02290917,94.25776925],[4.53243477,0.02290746,94.25713534],[4.5324342,0.02290574,94.25650988],[4.53243363,0.02290403,94.25589266],[4.53243306,0.02290231,94.25528348],[4.53243249,0.0229006,94.25468214],[4.53243192,0.02289888,94.25408844],[4.53243135,0.02289717,94.25350217],[4.53243078,0.02289545,94.25292314],[4.53243022,0.02289374,94.25235113],[4.53242965,0.02289202,94.25178596],[4.53242908,0.02289031,94.25122741],[4.53242851,0.02288859,94.2506753],[4.53242794,0.02288688,94.25012941],[4.53242737,0.02288516,94.24958956],[4.5324268,0.02288345,94.24905554],[4.53242623,0.02288173,94.24852716],[4.53242566,0.02288002,94.24800423],[4.53242509,0.02287831,94.24748658],[4.53242452,0.02287659,94.24697403],[4.53242395,0.02287488,94.24646639],[4.53242338,0.02287316,94.24596351],[4.53242281,0.02287145,94.24546519],[4.53242224,0.02286974,94.24497126],[4.53242166,0.02286802,94.24448156],[4.53242109,0.02286631,94.24399591],[4.53242052,0.0228646,94.24351413],[4.53241995,0.02286288,94.24303606],[4.53241938,0.02286117,94.2425616],[4.5324188,0.02285946,94.24209064],[4.53241823,0.02285775,94.24162308],[4.53241766,0.02285603,94.24115882],[4.53241708,0.02285432,94.24069775],[4.53241651,0.02285261,94.24023976],[4.53241593,0.0228509,94.23978475],[4.53241536,0.02284919,94.2393326],[4.53241479,0.02284747,94.23888321],[4.53241421,0.02284576,94.23843646],[4.53241364,0.02284405,94.23799225],[4.53241306,0.02284234,94.23755048],[4.53241248,0.02284063,94.23711101],[4.53241191,0.02283892,94.23667376],[4.53241133,0.02283721,94.23623861],[4.53241076,0.0228355,94.23580544],[4.53241018,0.02283379,94.23537415],[4.5324096,0.02283208,94.23494462],[4.53240903,0.02283036,94.23451675],[4.53240845,0.02282865,94.23409042],[4.53240788,0.02282694,94.23366552],[4.5324073,0.02282523,94.23324193],[4.53240672,0.02282352,94.23281955],[4.53240614,0.02282181,94.23239826],[4.53240557,0.0228201,94.23197795],[4.53240499,0.02281839,94.2315585],[4.53240441,0.02281668,94.23113981],[4.53240384,0.02281497,94.23072174],[4.53240326,0.02281326,94.2303042],[4.53240268,0.02281156,94.22988707],[4.5324021,0.02280985,94.22947022],[4.53240153,0.02280814,94.22905355],[4.53240095,0.02280643,94.22863694],[4.53240037,0.02280472,94.22822027],[4.53239979,0.02280301,94.22780343],[4.53239922,0.0228013,94.22738629],[4.53239864,0.02279959,94.22696875],[4.53239806,0.02279788,94.22655068],[4.53239749,0.02279617,94.22613197],[4.53239691,0.02279446,94.22571249],[4.53239633,0.02279275,94.22529214],[4.53239575,0.02279104,94.22487078],[4.53239518,0.02278934,94.22444831],[4.5323946,0.02278763,94.2240246],[4.53239402,0.02278592,94.22359953],[4.53239345,0.02278421,94.22317299],[4.53239287,0.0227825,94.22274484],[4.53239229,0.02278079,94.22231498],[4.53239172,0.02277908,94.22188329],[4.53239114,0.02277737,94.22144963],[4.53239056,0.02277566,94.22101389],[4.53238999,0.02277396,94.22057604],[4.53238941,0.02277225,94.2201361],[4.53238884,0.02277054,94.21969412],[4.53238826,0.02276883,94.21925012],[4.53238769,0.02276712,94.21880411],[4.53238711,0.02276541,94.21835612],[4.53238654,0.0227637,94.21790617],[4.53238596,0.02276199,94.21745427],[4.53238539,0.02276029,94.21700045],[4.53238481,0.02275858,94.21654473],[4.53238424,0.02275687,94.21608712],[4.53238366,0.02275516,94.21562765],[4.53238309,0.02275345,94.21516634],[4.53238252,0.02275174,94.2147032],[4.53238194,0.02275003,94.21423827],[4.53238137,0.02274832,94.21377155],[4.5323808,0.02274661,94.21330306],[4.53238022,0.02274491,94.21283284],[4.53237965,0.0227432,94.2123609],[4.53237908,0.02274149,94.21188725],[4.5323785,0.02273978,94.21141192],[4.53237793,0.02273807,94.21093494],[4.53237736,0.02273636,94.21045631],[4.53237679,0.02273465,94.20997607],[4.53237622,0.02273294,94.20949423],[4.53237564,0.02273123,94.20901083],[4.53237507,0.02272953,94.20852589],[4.5323745,0.02272782,94.20803945],[4.53237393,0.02272611,94.20755153],[4.53237336,0.0227244,94.20706218],[4.53237279,0.02272269,94.20657142],[4.53237222,0.02272098,94.20607928],[4.53237165,0.02271927,94.20558579],[4.53237108,0.02271756,94.20509099],[4.53237051,0.02271585,94.20459491],[4.53236994,0.02271414,94.20409758],[4.53236937,0.02271243,94.20359902],[4.5323688,0.02271073,94.20309928],[4.53236823,0.02270902,94.20259837],[4.53236766,0.02270731,94.20209634],[4.5323671,0.0227056,94.20159321],[4.53236653,0.02270389,94.20108901],[4.53236596,0.02270218,94.20058377],[4.53236539,0.02270047,94.20007753],[4.53236483,0.02269876,94.19957031],[4.53236426,0.02269705,94.19906215],[4.53236369,0.02269534,94.198553],[4.53236313,0.02269363,94.19804277],[4.53236256,0.02269192,94.19753134],[4.53236199,0.02269021,94.19701862],[4.53236143,0.0226885,94.19650451],[4.53236086,0.02268679,94.1959889],[4.5323603,0.02268508,94.19547168],[4.53235973,0.02268337,94.19495276],[4.53235916,0.02268167,94.19443204],[4.5323586,0.02267996,94.19390941],[4.53235803,0.02267825,94.19338477],[4.53235746,0.02267654,94.19285803],[4.5323569,0.02267483,94.19232908],[4.53235633,0.02267312,94.19179782],[4.53235576,0.02267141,94.19126416],[4.53235519,0.02266971,94.19072799],[4.53235462,0.022668,94.19018921],[4.53235405,0.02266629,94.18964772],[4.53235348,0.02266458,94.18910343],[4.53235291,0.02266288,94.18855624],[4.53235234,0.02266117,94.18800604],[4.53235176,0.02265946,94.18745274],[4.53235119,0.02265776,94.18689623],[4.53235062,0.02265605,94.18633644],[4.53235004,0.02265435,94.1857735],[4.53234946,0.02265264,94.18520755],[4.53234889,0.02265094,94.18463876],[4.53234831,0.02264923,94.18406727],[4.53234773,0.02264753,94.18349324],[4.53234715,0.02264583,94.18291682],[4.53234657,0.02264412,94.18233816],[4.53234599,0.02264242,94.18175743],[4.53234541,0.02264072,94.18117476],[4.53234483,0.02263902,94.18059032],[4.53234425,0.02263731,94.18000425],[4.53234366,0.02263561,94.17941671],[4.53234308,0.02263391,94.17882785],[4.5323425,0.02263221,94.17823782],[4.53234192,0.0226305,94.17764677],[4.53234134,0.0226288,94.17705485],[4.53234075,0.0226271,94.17646221],[4.53234017,0.0226254,94.17586901],[4.53233959,0.0226237,94.1752754],[4.53233901,0.02262199,94.17468152],[4.53233843,0.02262029,94.17408751],[4.53233784,0.02261858,94.17349336],[4.53233726,0.02261688,94.17289904],[4.53233668,0.02261518,94.17230453],[4.5323361,0.02261348,94.1717098],[4.53233552,0.02261177,94.17111482],[4.53233494,0.02261007,94.17051957],[4.53233436,0.02260837,94.16992402],[4.53233378,0.02260667,94.16932815],[4.5323332,0.02260496,94.16873192],[4.53233261,0.02260326,94.16813531],[4.53233203,0.02260156,94.16753829],[4.53233145,0.02259986,94.16694084],[4.53233087,0.02259815,94.16634292],[4.53233029,0.02259645,94.16574452],[4.53232971,0.02259475,94.1651456],[4.53232913,0.02259305,94.16454615],[4.53232855,0.02259134,94.16394614],[4.53232797,0.02258964,94.16334554],[4.53232739,0.02258794,94.16274431],[4.53232681,0.02258624,94.16214242],[4.53232622,0.02258453,94.16153984],[4.53232564,0.02258283,94.16093652],[4.53232506,0.02258113,94.16033243],[4.53232448,0.02257943,94.15972754],[4.53232389,0.02257772,94.15912181],[4.53232331,0.02257602,94.1585152],[4.53232273,0.02257432,94.15790768],[4.53232215,0.02257262,94.15729921],[4.53232156,0.02257092,94.15668978],[4.53232098,0.02256922,94.15607949],[4.53232039,0.02256751,94.15546847],[4.53231981,0.02256581,94.15485684],[4.53231922,0.02256411,94.15424473],[4.53231864,0.02256241,94.15363225],[4.53231805,0.02256071,94.15301955],[4.53231747,0.02255901,94.15240673],[4.53231688,0.0225573,94.15179394],[4.5323163,0.0225556,94.1511813],[4.53231571,0.0225539,94.15056893],[4.53231513,0.0225522,94.14995697],[4.53231454,0.0225505,94.14934553],[4.53231396,0.0225488,94.14873475],[4.53231337,0.0225471,94.14812476],[4.53231279,0.02254539,94.14751569],[4.5323122,0.02254369,94.14690766],[4.53231162,0.02254199,94.14630081],[4.53231104,0.02254029,94.14569527],[4.53231045,0.02253858,94.14509116],[4.53230987,0.02253688,94.14448862],[4.53230929,0.02253518,94.14388778],[4.53230871,0.02253347,94.14328877],[4.53230813,0.02253177,94.1426917],[4.53230755,0.02253007,94.14209657],[4.53230697,0.02252836,94.14150336],[4.53230639,0.02252666,94.14091206],[4.53230582,0.02252495,94.14032263],[4.53230524,0.02252325,94.13973507],[4.53230466,0.02252155,94.13914933],[4.53230409,0.02251984,94.13856542],[4.53230351,0.02251813,94.13798329],[4.53230294,0.02251643,94.13740294],[4.53230236,0.02251472,94.13682434],[4.53230179,0.02251302,94.13624747],[4.53230122,0.02251131,94.1356723],[4.53230064,0.02250961,94.13509882],[4.53230007,0.0225079,94.134527],[4.5322995,0.02250619,94.13395682],[4.53229893,0.02250449,94.13338826],[4.53229835,0.02250278,94.1328213],[4.53229778,0.02250107,94.1322559],[4.53229721,0.02249937,94.13169206],[4.53229664,0.02249766,94.13112975],[4.53229607,0.02249595,94.13056894],[4.5322955,0.02249424,94.13000962],[4.53229493,0.02249254,94.12945175],[4.53229436,0.02249083,94.12889532],[4.53229379,0.02248912,94.1283403],[4.53229322,0.02248741,94.12778666],[4.53229266,0.02248571,94.12723439],[4.53229209,0.022484,94.12668346],[4.53229152,0.02248229,94.12613385],[4.53229095,0.02248058,94.12558553],[4.53229038,0.02247887,94.12503847],[4.53228981,0.02247717,94.12449266],[4.53228925,0.02247546,94.12394806],[4.53228868,0.02247375,94.12340467],[4.53228811,0.02247204,94.12286247],[4.53228754,0.02247033,94.12232145],[4.53228697,0.02246862,94.1217816],[4.53228641,0.02246692,94.12124291],[4.53228584,0.02246521,94.12070536],[4.53228527,0.0224635,94.12016894],[4.5322847,0.02246179,94.11963364],[4.53228413,0.02246008,94.11909944],[4.53228356,0.02245837,94.11856634],[4.532283,0.02245667,94.11803432],[4.53228243,0.02245496,94.11750336],[4.53228186,0.02245325,94.11697349],[4.53228129,0.02245154,94.11644472],[4.53228072,0.02244983,94.11591707],[4.53228015,0.02244812,94.11539056],[4.53227958,0.02244642,94.1148652],[4.53227902,0.02244471,94.11434102],[4.53227845,0.022443,94.11381802],[4.53227788,0.02244129,94.11329623],[4.53227731,0.02243958,94.11277565],[4.53227674,0.02243788,94.1122563],[4.53227617,0.02243617,94.1117382],[4.5322756,0.02243446,94.11122135],[4.53227503,0.02243275,94.11070578],[4.53227446,0.02243104,94.11019149],[4.53227389,0.02242933,94.1096785],[4.53227332,0.02242763,94.10916683],[4.53227275,0.02242592,94.10865649],[4.53227218,0.02242421,94.1081475],[4.53227161,0.0224225,94.10763986],[4.53227104,0.02242079,94.10713359],[4.53227047,0.02241909,94.10662872],[4.5322699,0.02241738,94.10612524],[4.53226933,0.02241567,94.10562318],[4.53226876,0.02241396,94.10512255],[4.53226819,0.02241225,94.10462337],[4.53226761,0.02241055,94.10412564],[4.53226704,0.02240884,94.10362938],[4.53226647,0.02240713,94.10313461],[4.5322659,0.02240542,94.10264134],[4.53226533,0.02240372,94.10214958],[4.53226476,0.02240201,94.10165935],[4.53226418,0.0224003,94.10117066],[4.53226361,0.02239859,94.10068353],[4.53226304,0.02239688,94.10019796],[4.53226247,0.02239518,94.09971398],[4.53226189,0.02239347,94.09923159],[4.53226132,0.02239176,94.09875082],[4.53226075,0.02239005,94.09827166],[4.53226018,0.02238835,94.09779415],[4.5322596,0.02238664,94.09731828],[4.53225903,0.02238493,94.09684408],[4.53225846,0.02238322,94.09637156],[4.53225788,0.02238152,94.09590073],[4.53225731,0.02237981,94.0954316],[4.53225674,0.0223781,94.09496419],[4.53225616,0.0223764,94.09449851],[4.53225559,0.02237469,94.09403457],[4.53225501,0.02237298,94.09357239],[4.53225444,0.02237127,94.09311199],[4.53225386,0.02236957,94.09265339],[4.53225329,0.02236786,94.0921966],[4.53225271,0.02236615,94.09174166],[4.53225214,0.02236445,94.09128859],[4.53225156,0.02236274,94.0908374],[4.53225099,0.02236103,94.09038812],[4.53225041,0.02235933,94.08994078],[4.53224984,0.02235762,94.08949539],[4.53224926,0.02235591,94.08905198],[4.53224868,0.0223542,94.08861057],[4.53224811,0.0223525,94.08817118],[4.53224753,0.02235079,94.08773382],[4.53224695,0.02234908,94.08729849],[4.53224638,0.02234738,94.08686522],[4.5322458,0.02234567,94.086434],[4.53224522,0.02234396,94.08600485],[4.53224465,0.02234226,94.08557778],[4.53224407,0.02234055,94.0851528],[4.53224349,0.02233885,94.08472992],[4.53224291,0.02233714,94.08430914],[4.53224234,0.02233543,94.08389049],[4.53224176,0.02233373,94.08347396],[4.53224118,0.02233202,94.08305958],[4.5322406,0.02233031,94.08264734],[4.53224002,0.02232861,94.08223726],[4.53223944,0.0223269,94.08182935],[4.53223886,0.0223252,94.08142362],[4.53223829,0.02232349,94.08102008],[4.53223771,0.02232178,94.08061873],[4.53223713,0.02232008,94.08021959],[4.53223655,0.02231837,94.07982267],[4.53223597,0.02231667,94.07942798],[4.53223539,0.02231496,94.07903552],[4.53223481,0.02231325,94.07864531],[4.53223423,0.02231155,94.07825735],[4.53223395,0.02230974,94.07787166],[4.53223392,0.02230784,94.07748824],[4.53223388,0.02230595,94.0771071],[4.53223384,0.02230406,94.07672826],[4.53223381,0.02230217,94.07635172],[4.53223377,0.02230027,94.0759775],[4.53223373,0.02229838,94.07560559],[4.53223369,0.02229649,94.07523604],[4.53223366,0.0222946,94.07486895],[4.53223362,0.02229271,94.07450446],[4.53223358,0.02229081,94.07414271],[4.53223354,0.02228892,94.07378383],[4.5322335,0.02228703,94.07342797],[4.53223346,0.02228514,94.07307525],[4.53223342,0.02228325,94.07272582],[4.53223338,0.02228136,94.07237981],[4.53223334,0.02227946,94.07203737],[4.5322333,0.02227757,94.07169863],[4.53223327,0.02227568,94.07136374],[4.53223323,0.02227379,94.07103283],[4.53223319,0.02227189,94.07070605],[4.53223316,0.02227,94.07038354],[4.53223313,0.02226811,94.07006544],[4.53223309,0.02226621,94.06975189],[4.53223306,0.02226432,94.06944303],[4.53223303,0.02226242,94.06913868],[4.532233,0.02226053,94.06883835],[4.53223297,0.02225863,94.06854155],[4.53223294,0.02225674,94.06824777],[4.53223292,0.02225484,94.06795652],[4.53223289,0.02225294,94.06766729],[4.53223286,0.02225105,94.06737958],[4.53223284,0.02224915,94.06709287],[4.53223281,0.02224725,94.06680666],[4.53223278,0.02224536,94.06652043],[4.53223276,0.02224346,94.06623367],[4.53223273,0.02224156,94.06594586],[4.5322327,0.02223967,94.06565649],[4.53223267,0.02223777,94.06536503],[4.53223264,0.02223588,94.06507111],[4.53223261,0.02223398,94.06477493],[4.53223258,0.02223209,94.06447685],[4.53223255,0.02223019,94.06417721],[4.53223252,0.0222283,94.06387637],[4.53223248,0.0222264,94.06357467],[4.53223245,0.02222451,94.06327248],[4.53223241,0.02222262,94.06297015],[4.53223238,0.02222072,94.06266804],[4.53223234,0.02221883,94.06236651],[4.5322323,0.02221694,94.06206592],[4.53223227,0.02221505,94.06176663],[4.53223223,0.02221315,94.061469],[4.53223219,0.02221126,94.06117341],[4.53223215,0.02220937,94.06088021],[4.53223212,0.02220747,94.06058977],[4.53223208,0.02220558,94.06030247],[4.53223204,0.02220369,94.06001867],[4.532232,0.0222018,94.05973874],[4.53223197,0.0221999,94.05946306],[4.53223193,0.02219801,94.05919199],[4.53223189,0.02219612,94.05892592],[4.53223186,0.02219423,94.05866522],[4.53223182,0.02219233,94.05841026],[4.53223178,0.02219044,94.05816142],[4.53223175,0.02218855,94.05791909],[4.53223171,0.02218665,94.05722502],[4.53223168,0.02218476,94.05608962],[4.53223164,0.02218286,94.05495667],[4.53223161,0.02218097,94.0538262],[4.53223158,0.02217908,94.05266111],[4.53223154,0.02217718,94.05079245],[4.53223151,0.02217537,94.04900345]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1004200","id":-4,"type":"none","predecessorId":0}},{"geometry":{"coordinates":[[4.53258981,0.0232296,94.52109012],[4.53258925,0.0232279,94.52095261],[4.53258868,0.0232262,94.52077786],[4.53258812,0.02322451,94.52056507],[4.53258755,0.02322281,94.52031342],[4.53258698,0.02322111,94.52002213],[4.53258642,0.02321941,94.51969063],[4.53258585,0.02321772,94.51931921],[4.53258528,0.02321602,94.51890837],[4.53258471,0.02321432,94.51845862],[4.53258415,0.02321262,94.51797046],[4.53258358,0.02321093,94.51744439],[4.53258301,0.02320923,94.5168809],[4.53258244,0.02320753,94.51628051],[4.53258187,0.02320583,94.51564371],[4.5325813,0.02320413,94.514971],[4.53258073,0.02320243,94.5142629],[4.53258016,0.02320074,94.51351989],[4.53257959,0.02319904,94.51274249],[4.53257903,0.02319734,94.5119312],[4.53257846,0.02319564,94.51108652],[4.53257789,0.02319394,94.51020897],[4.53257732,0.02319224,94.50929906],[4.53257675,0.02319054,94.50835729],[4.53257618,0.02318884,94.50738418],[4.53257561,0.02318714,94.50638024],[4.53257505,0.02318544,94.50534599],[4.53257448,0.02318374,94.50428195],[4.53257391,0.02318204,94.50318863],[4.53257335,0.02318033,94.50206655],[4.53257278,0.02317863,94.50091624],[4.53257222,0.02317693,94.49973823],[4.53257165,0.02317523,94.49853305],[4.53257109,0.02317352,94.49730121],[4.53257052,0.02317182,94.49604327],[4.53256996,0.02317012,94.49475974],[4.5325694,0.02316841,94.49345118],[4.53256883,0.02316671,94.49211809],[4.53256827,0.023165,94.49076091],[4.53256771,0.0231633,94.48938009],[4.53256715,0.02316159,94.4879761],[4.53256659,0.02315989,94.4865494],[4.53256603,0.02315818,94.48510046],[4.53256548,0.02315648,94.48362974],[4.53256492,0.02315477,94.4821377],[4.53256436,0.02315306,94.48062479],[4.5325638,0.02315135,94.47909149],[4.53256324,0.02314965,94.47753823],[4.53256269,0.02314794,94.47596547],[4.53256213,0.02314623,94.47437367],[4.53256157,0.02314452,94.47276327],[4.53256102,0.02314282,94.47113472],[4.53256046,0.02314111,94.46948846],[4.5325599,0.0231394,94.46782493],[4.53255934,0.02313769,94.46614457],[4.53255879,0.02313598,94.4644478],[4.53255823,0.02313427,94.46273507],[4.53255767,0.02313256,94.4610068],[4.53255711,0.02313085,94.45926341],[4.53255655,0.02312915,94.45750532],[4.53255599,0.02312744,94.45573293],[4.53255543,0.02312573,94.45394664],[4.53255487,0.02312402,94.45214679],[4.53255431,0.02312231,94.45033371],[4.53255375,0.0231206,94.44850774],[4.53255319,0.02311889,94.44666931],[4.53255263,0.02311718,94.44481899],[4.53255206,0.02311547,94.44295731],[4.5325515,0.02311377,94.44108484],[4.53255093,0.02311206,94.43920213],[4.53255037,0.02311035,94.43730973],[4.5325498,0.02310864,94.43540821],[4.53254923,0.02310693,94.43349812],[4.53254867,0.02310522,94.43158001],[4.5325481,0.02310352,94.42965445],[4.53254753,0.02310181,94.42772201],[4.53254696,0.0231001,94.42578323],[4.53254639,0.02309839,94.4238387],[4.53254582,0.02309668,94.42188896],[4.53254525,0.02309497,94.41993459],[4.53254468,0.02309327,94.41797615],[4.53254411,0.02309156,94.41601422],[4.53254354,0.02308985,94.41404937],[4.53254297,0.02308814,94.4120822],[4.5325424,0.02308643,94.41011335],[4.53254183,0.02308472,94.40814343],[4.53254126,0.02308301,94.40617306],[4.53254069,0.0230813,94.40420288],[4.53254012,0.02307959,94.40223348],[4.53253955,0.02307789,94.4002654],[4.53253898,0.02307618,94.39829913],[4.53253841,0.02307447,94.39633516],[4.53253783,0.02307276,94.394374],[4.53253726,0.02307105,94.39241614],[4.53253669,0.02306934,94.39046208],[4.53253612,0.02306762,94.38851231],[4.53253555,0.02306591,94.3865673],[4.53253498,0.0230642,94.38462752],[4.53253441,0.02306249,94.38269342],[4.53253384,0.02306078,94.38076546],[4.53253327,0.02305907,94.37884409],[4.5325327,0.02305736,94.37692977],[4.53253213,0.02305565,94.37502295],[4.53253155,0.02305394,94.37312407],[4.53253098,0.02305222,94.37123358],[4.53253041,0.02305051,94.36935194],[4.53252984,0.0230488,94.36747958],[4.53252927,0.02304709,94.36561695],[4.53252869,0.02304538,94.36376449],[4.53252812,0.02304366,94.36192265],[4.53252755,0.02304195,94.36009187],[4.53252698,0.02304024,94.35827258],[4.5325264,0.02303853,94.35646522],[4.53252583,0.02303682,94.35467023],[4.53252525,0.0230351,94.35288805],[4.53252468,0.02303339,94.35111912],[4.5325241,0.02303168,94.34936386],[4.53252353,0.02302997,94.34762273],[4.53252295,0.02302825,94.34589621],[4.53252238,0.02302654,94.34418484],[4.5325218,0.02302483,94.3424891],[4.53252122,0.02302312,94.34080952],[4.53252065,0.0230214,94.33914662],[4.53252007,0.02301969,94.33750089],[4.53251949,0.02301798,94.33587275],[4.53251891,0.02301627,94.33426215],[4.53251834,0.02301455,94.33266895],[4.53251776,0.02301284,94.33109303],[4.53251718,0.02301113,94.32953422],[4.5325166,0.02300941,94.32799241],[4.53251602,0.0230077,94.32646745],[4.53251544,0.02300599,94.3249592],[4.53251486,0.02300428,94.32346754],[4.53251428,0.02300256,94.32199232],[4.5325137,0.02300085,94.32053342],[4.53251312,0.02299914,94.31909069],[4.53251254,0.02299743,94.31766401],[4.53251196,0.02299572,94.31625325],[4.53251138,0.02299401,94.31485827],[4.53251079,0.0229923,94.31347894],[4.53251021,0.02299058,94.31211513],[4.53250963,0.02298887,94.31076672],[4.53250905,0.02298716,94.30943357],[4.53250847,0.02298545,94.30811556],[4.53250788,0.02298374,94.30681255],[4.5325073,0.02298203,94.30552443],[4.53250672,0.02298032,94.30425105],[4.53250614,0.02297861,94.3029923],[4.53250555,0.0229769,94.30174804],[4.53250497,0.02297519,94.30051814],[4.53250439,0.02297348,94.29930247],[4.5325038,0.02297177,94.29810089],[4.53250322,0.02297006,94.29691327],[4.53250264,0.02296835,94.2957395],[4.53250205,0.02296664,94.29457949],[4.53250147,0.02296493,94.29343318],[4.53250088,0.02296322,94.29230059],[4.5325003,0.02296151,94.29118172],[4.53249971,0.0229598,94.29007658],[4.53249913,0.02295809,94.28898518],[4.53249855,0.02295638,94.28790755],[4.53249796,0.02295467,94.28684368],[4.53249738,0.02295296,94.28579358],[4.5324968,0.02295125,94.28475728],[4.53249621,0.02294954,94.28373479],[4.53249563,0.02294783,94.2827261],[4.53249505,0.02294612,94.28173124],[4.53249447,0.02294441,94.28075022],[4.53249389,0.0229427,94.27978304],[4.5324933,0.02294099,94.27882971],[4.53249272,0.02293928,94.27789022],[4.53249214,0.02293757,94.27696451],[4.53249157,0.02293585,94.27605251],[4.53249099,0.02293414,94.27515409],[4.53249041,0.02293243,94.27426907],[4.53248983,0.02293072,94.27339723],[4.53248926,0.02292901,94.27253836],[4.53248868,0.0229273,94.27169227],[4.5324881,0.02292558,94.27085874],[4.53248753,0.02292387,94.27003757],[4.53248696,0.02292216,94.26922856],[4.53248638,0.02292045,94.2684315],[4.53248581,0.02291874,94.26764619],[4.53248524,0.02291702,94.26687241],[4.53248466,0.02291531,94.26610996],[4.53248409,0.0229136,94.26535864],[4.53248352,0.02291188,94.26461823],[4.53248295,0.02291017,94.26388853],[4.53248238,0.02290846,94.26316934],[4.5324818,0.02290674,94.26246045],[4.53248123,0.02290503,94.26176165],[4.53248066,0.02290332,94.26107273],[4.53248009,0.0229016,94.2603935],[4.53247952,0.02289989,94.25972374],[4.53247895,0.02289818,94.25906325],[4.53247839,0.02289646,94.25841182],[4.53247782,0.02289475,94.25776925],[4.53247725,0.02289304,94.25713534],[4.53247668,0.02289132,94.25650988],[4.53247611,0.02288961,94.25589266],[4.53247554,0.0228879,94.25528348],[4.53247497,0.02288618,94.25468214],[4.5324744,0.02288447,94.25408844],[4.53247383,0.02288276,94.25350217],[4.53247327,0.02288104,94.25292314],[4.5324727,0.02287933,94.25235113],[4.53247213,0.02287762,94.25178596],[4.53247156,0.0228759,94.25122741],[4.53247099,0.02287419,94.2506753],[4.53247042,0.02287248,94.25012941],[4.53246985,0.02287076,94.24958956],[4.53246928,0.02286905,94.24905554],[4.53246871,0.02286734,94.24852716],[4.53246814,0.02286562,94.24800423],[4.53246757,0.02286391,94.24748658],[4.532467,0.0228622,94.24697403],[4.53246643,0.02286049,94.24646639],[4.53246586,0.02285877,94.24596351],[4.53246529,0.02285706,94.24546519],[4.53246472,0.02285535,94.24497126],[4.53246415,0.02285364,94.24448156],[4.53246358,0.02285192,94.24399591],[4.53246301,0.02285021,94.24351413],[4.53246244,0.0228485,94.24303606],[4.53246186,0.02284679,94.2425616],[4.53246129,0.02284508,94.24209064],[4.53246072,0.02284337,94.24162308],[4.53246015,0.02284166,94.24115882],[4.53245957,0.02283994,94.24069775],[4.532459,0.02283823,94.24023976],[4.53245842,0.02283652,94.23978475],[4.53245785,0.02283481,94.2393326],[4.53245728,0.0228331,94.23888321],[4.5324567,0.02283139,94.23843646],[4.53245613,0.02282968,94.23799225],[4.53245555,0.02282797,94.23755048],[4.53245498,0.02282626,94.23711101],[4.5324544,0.02282455,94.23667376],[4.53245382,0.02282284,94.23623861],[4.53245325,0.02282113,94.23580544],[4.53245267,0.02281942,94.23537415],[4.5324521,0.02281771,94.23494462],[4.53245152,0.022816,94.23451675],[4.53245094,0.02281429,94.23409042],[4.53245037,0.02281258,94.23366552],[4.53244979,0.02281087,94.23324193],[4.53244921,0.02280916,94.23281955],[4.53244864,0.02280745,94.23239826],[4.53244806,0.02280575,94.23197795],[4.53244748,0.02280404,94.2315585],[4.53244691,0.02280233,94.23113981],[4.53244633,0.02280062,94.23072174],[4.53244575,0.02279891,94.2303042],[4.53244517,0.0227972,94.22988707],[4.5324446,0.02279549,94.22947022],[4.53244402,0.02279378,94.22905355],[4.53244344,0.02279207,94.22863694],[4.53244287,0.02279037,94.22822027],[4.53244229,0.02278866,94.22780343],[4.53244171,0.02278695,94.22738629],[4.53244113,0.02278524,94.22696875],[4.53244056,0.02278353,94.22655068],[4.53243998,0.02278182,94.22613197],[4.5324394,0.02278011,94.22571249],[4.53243882,0.0227784,94.22529214],[4.53243825,0.0227767,94.22487078],[4.53243767,0.02277499,94.22444831],[4.53243709,0.02277328,94.2240246],[4.53243652,0.02277157,94.22359953],[4.53243594,0.02276986,94.22317299],[4.53243536,0.02276815,94.22274484],[4.53243479,0.02276645,94.22231498],[4.53243421,0.02276474,94.22188329],[4.53243363,0.02276303,94.22144963],[4.53243306,0.02276132,94.22101389],[4.53243248,0.02275961,94.22057604],[4.53243191,0.0227579,94.2201361],[4.53243133,0.02275619,94.21969412],[4.53243076,0.02275449,94.21925012],[4.53243018,0.02275278,94.21880411],[4.5324296,0.02275107,94.21835612],[4.53242903,0.02274936,94.21790617],[4.53242845,0.02274765,94.21745427],[4.53242788,0.02274594,94.21700045],[4.53242731,0.02274423,94.21654473],[4.53242673,0.02274252,94.21608712],[4.53242616,0.02274082,94.21562765],[4.53242558,0.02273911,94.21516634],[4.53242501,0.0227374,94.2147032],[4.53242444,0.02273569,94.21423827],[4.53242386,0.02273398,94.21377155],[4.53242329,0.02273227,94.21330306],[4.53242272,0.02273056,94.21283284],[4.53242214,0.02272885,94.2123609],[4.53242157,0.02272714,94.21188725],[4.532421,0.02272543,94.21141192],[4.53242042,0.02272373,94.21093494],[4.53241985,0.02272202,94.21045631],[4.53241928,0.02272031,94.20997607],[4.53241871,0.0227186,94.20949423],[4.53241814,0.02271689,94.20901083],[4.53241756,0.02271518,94.20852589],[4.53241699,0.02271347,94.20803945],[4.53241642,0.02271176,94.20755153],[4.53241585,0.02271005,94.20706218],[4.53241528,0.02270834,94.20657142],[4.53241471,0.02270663,94.20607928],[4.53241414,0.02270492,94.20558579],[4.53241357,0.02270321,94.20509099],[4.532413,0.02270151,94.20459491],[4.53241243,0.0226998,94.20409758],[4.53241186,0.02269809,94.20359902],[4.53241129,0.02269638,94.20309928],[4.53241072,0.02269467,94.20259837],[4.53241015,0.02269296,94.20209634],[4.53240959,0.02269125,94.20159321],[4.53240902,0.02268954,94.20108901],[4.53240845,0.02268783,94.20058377],[4.53240788,0.02268612,94.20007753],[4.53240731,0.02268441,94.19957031],[4.53240675,0.0226827,94.19906215],[4.53240618,0.02268099,94.198553],[4.53240561,0.02267928,94.19804277],[4.53240505,0.02267757,94.19753134],[4.53240448,0.02267586,94.19701862],[4.53240392,0.02267415,94.19650451],[4.53240335,0.02267244,94.1959889],[4.53240278,0.02267073,94.19547168],[4.53240222,0.02266902,94.19495276],[4.53240165,0.02266731,94.19443204],[4.53240108,0.0226656,94.19390941],[4.53240052,0.02266389,94.19338477],[4.53239995,0.02266218,94.19285803],[4.53239938,0.02266047,94.19232908],[4.53239881,0.02265876,94.19179782],[4.53239824,0.02265705,94.19126416],[4.53239767,0.02265534,94.19072799],[4.5323971,0.02265363,94.19018921],[4.53239653,0.02265192,94.18964772],[4.53239596,0.02265022,94.18910343],[4.53239539,0.02264851,94.18855624],[4.53239482,0.0226468,94.18800604],[4.53239425,0.02264509,94.18745274],[4.53239367,0.02264339,94.18689623],[4.5323931,0.02264168,94.18633644],[4.53239252,0.02263997,94.1857735],[4.53239194,0.02263827,94.18520755],[4.53239137,0.02263656,94.18463876],[4.53239079,0.02263486,94.18406727],[4.53239021,0.02263315,94.18349324],[4.53238963,0.02263145,94.18291682],[4.53238905,0.02262974,94.18233816],[4.53238847,0.02262804,94.18175743],[4.53238789,0.02262634,94.18117476],[4.5323873,0.02262463,94.18059032],[4.53238672,0.02262293,94.18000425],[4.53238614,0.02262122,94.17941671],[4.53238556,0.02261952,94.17882785],[4.53238497,0.02261782,94.17823782],[4.53238439,0.02261611,94.17764677],[4.53238381,0.02261441,94.17705485],[4.53238323,0.02261271,94.17646221],[4.53238264,0.022611,94.17586901],[4.53238206,0.0226093,94.1752754],[4.53238148,0.0226076,94.17468152],[4.5323809,0.02260589,94.17408751],[4.53238031,0.02260418,94.17349336],[4.53237973,0.02260248,94.17289904],[4.53237915,0.02260078,94.17230453],[4.53237857,0.02259907,94.1717098],[4.53237799,0.02259737,94.17111482],[4.53237741,0.02259567,94.17051957],[4.53237682,0.02259396,94.16992402],[4.53237624,0.02259226,94.16932815],[4.53237566,0.02259055,94.16873192],[4.53237508,0.02258885,94.16813531],[4.5323745,0.02258715,94.16753829],[4.53237392,0.02258544,94.16694084],[4.53237334,0.02258374,94.16634292],[4.53237276,0.02258203,94.16574452],[4.53237218,0.02258033,94.1651456],[4.53237159,0.02257863,94.16454615],[4.53237101,0.02257692,94.16394614],[4.53237043,0.02257522,94.16334554],[4.53236985,0.02257351,94.16274431],[4.53236927,0.02257181,94.16214242],[4.53236869,0.02257011,94.16153984],[4.5323681,0.0225684,94.16093652],[4.53236752,0.0225667,94.16033243],[4.53236694,0.022565,94.15972754],[4.53236635,0.02256329,94.15912181],[4.53236577,0.02256159,94.1585152],[4.53236519,0.02255989,94.15790768],[4.5323646,0.02255818,94.15729921],[4.53236402,0.02255648,94.15668978],[4.53236343,0.02255478,94.15607949],[4.53236285,0.02255307,94.15546847],[4.53236226,0.02255137,94.15485684],[4.53236168,0.02254967,94.15424473],[4.53236109,0.02254797,94.15363225],[4.53236051,0.02254626,94.15301955],[4.53235992,0.02254456,94.15240673],[4.53235934,0.02254286,94.15179394],[4.53235875,0.02254116,94.1511813],[4.53235816,0.02253945,94.15056893],[4.53235758,0.02253775,94.14995697],[4.53235699,0.02253605,94.14934553],[4.53235641,0.02253434,94.14873475],[4.53235582,0.02253264,94.14812476],[4.53235524,0.02253094,94.14751569],[4.53235465,0.02252924,94.14690766],[4.53235407,0.02252753,94.14630081],[4.53235349,0.02252583,94.14569527],[4.5323529,0.02252412,94.14509116],[4.53235232,0.02252242,94.14448862],[4.53235174,0.02252072,94.14388778],[4.53235116,0.02251901,94.14328877],[4.53235058,0.02251731,94.1426917],[4.53235,0.0225156,94.14209657],[4.53234942,0.0225139,94.14150336],[4.53234884,0.02251219,94.14091206],[4.53234826,0.02251049,94.14032263],[4.53234769,0.02250878,94.13973507],[4.53234711,0.02250708,94.13914933],[4.53234653,0.02250537,94.13856542],[4.53234596,0.02250366,94.13798329],[4.53234538,0.02250196,94.13740294],[4.53234481,0.02250025,94.13682434],[4.53234423,0.02249854,94.13624747],[4.53234366,0.02249684,94.1356723],[4.53234309,0.02249513,94.13509882],[4.53234251,0.02249342,94.134527],[4.53234194,0.02249171,94.13395682],[4.53234137,0.02249001,94.13338826],[4.5323408,0.0224883,94.1328213],[4.53234023,0.02248659,94.1322559],[4.53233965,0.02248488,94.13169206],[4.53233908,0.02248317,94.13112975],[4.53233851,0.02248147,94.13056894],[4.53233794,0.02247976,94.13000962],[4.53233737,0.02247805,94.12945175],[4.5323368,0.02247634,94.12889532],[4.53233623,0.02247463,94.1283403],[4.53233566,0.02247292,94.12778666],[4.5323351,0.02247122,94.12723439],[4.53233453,0.02246951,94.12668346],[4.53233396,0.0224678,94.12613385],[4.53233339,0.02246609,94.12558553],[4.53233282,0.02246438,94.12503847],[4.53233225,0.02246267,94.12449266],[4.53233168,0.02246096,94.12394806],[4.53233112,0.02245925,94.12340467],[4.53233055,0.02245754,94.12286247],[4.53232998,0.02245583,94.12232145],[4.53232941,0.02245412,94.1217816],[4.53232884,0.02245242,94.12124291],[4.53232827,0.02245071,94.12070536],[4.53232771,0.022449,94.12016894],[4.53232714,0.02244729,94.11963364],[4.53232657,0.02244558,94.11909944],[4.532326,0.02244387,94.11856634],[4.53232543,0.02244216,94.11803432],[4.53232486,0.02244045,94.11750336],[4.53232429,0.02243874,94.11697349],[4.53232372,0.02243703,94.11644472],[4.53232316,0.02243532,94.11591707],[4.53232259,0.02243361,94.11539056],[4.53232202,0.02243191,94.1148652],[4.53232145,0.0224302,94.11434102],[4.53232088,0.02242849,94.11381802],[4.53232031,0.02242678,94.11329623],[4.53231974,0.02242507,94.11277565],[4.53231917,0.02242336,94.1122563],[4.5323186,0.02242165,94.1117382],[4.53231803,0.02241994,94.11122135],[4.53231746,0.02241823,94.11070578],[4.53231689,0.02241653,94.11019149],[4.53231632,0.02241482,94.1096785],[4.53231575,0.02241311,94.10916683],[4.53231518,0.0224114,94.10865649],[4.53231461,0.02240969,94.1081475],[4.53231404,0.02240798,94.10763986],[4.53231347,0.02240627,94.10713359],[4.5323129,0.02240456,94.10662872],[4.53231233,0.02240286,94.10612524],[4.53231176,0.02240115,94.10562318],[4.53231119,0.02239944,94.10512255],[4.53231061,0.02239773,94.10462337],[4.53231004,0.02239602,94.10412564],[4.53230947,0.02239431,94.10362938],[4.5323089,0.0223926,94.10313461],[4.53230833,0.0223909,94.10264134],[4.53230776,0.02238919,94.10214958],[4.53230718,0.02238748,94.10165935],[4.53230661,0.02238577,94.10117066],[4.53230604,0.02238406,94.10068353],[4.53230547,0.02238235,94.10019796],[4.53230489,0.02238065,94.09971398],[4.53230432,0.02237894,94.09923159],[4.53230375,0.02237723,94.09875082],[4.53230318,0.02237552,94.09827166],[4.5323026,0.02237381,94.09779415],[4.53230203,0.02237211,94.09731828],[4.53230146,0.0223704,94.09684408],[4.53230088,0.02236869,94.09637156],[4.53230031,0.02236698,94.09590073],[4.53229973,0.02236527,94.0954316],[4.53229916,0.02236357,94.09496419],[4.53229859,0.02236186,94.09449851],[4.53229801,0.02236015,94.09403457],[4.53229744,0.02235844,94.09357239],[4.53229686,0.02235673,94.09311199],[4.53229629,0.02235503,94.09265339],[4.53229571,0.02235332,94.0921966],[4.53229514,0.02235161,94.09174166],[4.53229456,0.0223499,94.09128859],[4.53229399,0.0223482,94.0908374],[4.53229341,0.02234649,94.09038812],[4.53229284,0.02234478,94.08994078],[4.53229226,0.02234307,94.08949539],[4.53229168,0.02234137,94.08905198],[4.53229111,0.02233966,94.08861057],[4.53229053,0.02233795,94.08817118],[4.53228995,0.02233625,94.08773382],[4.53228938,0.02233454,94.08729849],[4.5322888,0.02233283,94.08686522],[4.53228822,0.02233112,94.086434],[4.53228765,0.02232942,94.08600485],[4.53228707,0.02232771,94.08557778],[4.53228649,0.022326,94.0851528],[4.53228591,0.0223243,94.08472992],[4.53228534,0.02232259,94.08430914],[4.53228476,0.02232088,94.08389049],[4.53228418,0.02231918,94.08347396],[4.5322836,0.02231747,94.08305958],[4.53228302,0.02231576,94.08264734],[4.53228244,0.02231406,94.08223726],[4.53228187,0.02231235,94.08182935],[4.53228129,0.02231064,94.08142362],[4.53228071,0.02230894,94.08102008],[4.53228013,0.02230723,94.08061873],[4.53227955,0.02230552,94.08021959],[4.53227897,0.02230382,94.07982267],[4.53227839,0.02230211,94.07942798],[4.53227781,0.02230041,94.07903552],[4.53227723,0.0222987,94.07864531],[4.53227665,0.02229699,94.07825735],[4.53227607,0.02229529,94.07787166],[4.53227548,0.02229358,94.07748824],[4.5322749,0.02229188,94.0771071],[4.53227432,0.02229017,94.07672826],[4.53227374,0.02228846,94.07635172],[4.53227316,0.02228676,94.0759775],[4.53227258,0.02228505,94.07560559],[4.53227199,0.02228335,94.07523604],[4.53227141,0.02228164,94.07486895],[4.53227083,0.02227994,94.07450446],[4.53227025,0.02227823,94.07414271],[4.53226966,0.02227653,94.07378383],[4.53226908,0.02227482,94.07342797],[4.5322685,0.02227312,94.07307525],[4.53226791,0.02227141,94.07272582],[4.53226733,0.0222697,94.07237981],[4.53226675,0.022268,94.07203737],[4.53226617,0.02226629,94.07169863],[4.53226558,0.02226459,94.07136374],[4.532265,0.02226288,94.07103283],[4.53226442,0.02226118,94.07070605],[4.53226384,0.02225947,94.07038354],[4.53226326,0.02225776,94.07006544],[4.53226268,0.02225606,94.06975189],[4.5322621,0.02225435,94.06944303],[4.53226152,0.02225264,94.06913868],[4.53226094,0.02225094,94.06883835],[4.53226036,0.02224923,94.06854155],[4.53225978,0.02224752,94.06824777],[4.5322592,0.02224582,94.06795652],[4.53225862,0.02224411,94.06766729],[4.53225804,0.0222424,94.06737958],[4.53225746,0.0222407,94.06709287],[4.53225687,0.02223899,94.06680666],[4.53225629,0.02223729,94.06652043],[4.5322557,0.02223558,94.06623367],[4.53225512,0.02223388,94.06594586],[4.53225453,0.02223218,94.06565649],[4.53225394,0.02223047,94.06536503],[4.53225334,0.02222877,94.06507111],[4.53225275,0.02222707,94.06477493],[4.53225215,0.02222537,94.06447685],[4.53225155,0.02222367,94.06417721],[4.53225096,0.02222197,94.06387637],[4.53225035,0.02222027,94.06357467],[4.53224975,0.02221857,94.06327248],[4.53224915,0.02221687,94.06297015],[4.53224854,0.02221517,94.06266804],[4.53224794,0.02221348,94.06236651],[4.53224733,0.02221178,94.06206592],[4.53224672,0.02221008,94.06176663],[4.53224611,0.02220839,94.061469],[4.5322455,0.02220669,94.06117341],[4.53224489,0.02220499,94.06088021],[4.53224428,0.0222033,94.06058977],[4.53224367,0.0222016,94.06030247],[4.53224306,0.02219991,94.06001867],[4.53224245,0.02219821,94.05973874],[4.53224184,0.02219651,94.05946306],[4.53224123,0.02219482,94.05919199],[4.53224062,0.02219312,94.05892592],[4.53224001,0.02219142,94.05866522],[4.5322394,0.02218973,94.05841026],[4.53223879,0.02218803,94.05816142],[4.53223819,0.02218633,94.05791909],[4.53223743,0.02218469,94.05722502],[4.53223652,0.02218309,94.05608962],[4.53223562,0.0221815,94.05495667],[4.53223471,0.02217991,94.0538262],[4.53223379,0.02217832,94.05266111],[4.53223264,0.02217681,94.05079245],[4.53223153,0.02217536,94.04900345]],"type":"LineString"},"type":"feature","properties":{"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004200","id":-3,"type":"stop","predecessorId":-3}},{"geometry":{"coordinates":[[4.53261427,0.02322138,94.56258339],[4.53261371,0.02321968,94.56226968],[4.53261314,0.02321798,94.56193088],[4.53261258,0.02321628,94.56156642],[4.53261201,0.02321457,94.56117575],[4.53261144,0.02321287,94.56075831],[4.53261088,0.02321117,94.56031369],[4.53261031,0.02320947,94.55984205],[4.53260974,0.02320777,94.55934371],[4.53260917,0.02320606,94.55881894],[4.53260861,0.02320436,94.55826806],[4.53260804,0.02320266,94.55769135],[4.53260747,0.02320096,94.55708912],[4.5326069,0.02319925,94.55646167],[4.53260633,0.02319755,94.55580929],[4.53260576,0.02319585,94.55513228],[4.53260519,0.02319415,94.55443094],[4.53260462,0.02319244,94.55370556],[4.53260405,0.02319074,94.55295645],[4.53260348,0.02318904,94.5521839],[4.53260291,0.02318734,94.55138821],[4.53260234,0.02318564,94.55056968],[4.53260176,0.02318393,94.54972861],[4.53260119,0.02318223,94.54886529],[4.53260062,0.02318053,94.54798004],[4.53260005,0.02317882,94.54707314],[4.53259948,0.02317712,94.5461449],[4.53259891,0.02317542,94.54519562],[4.53259833,0.02317372,94.5442256],[4.53259776,0.02317201,94.54323515],[4.53259719,0.02317031,94.54222456],[4.53259662,0.02316861,94.54119415],[4.53259605,0.0231669,94.54014421],[4.53259547,0.0231652,94.53907504],[4.5325949,0.0231635,94.53798696],[4.53259433,0.02316179,94.53688027],[4.53259376,0.02316009,94.53575528],[4.53259318,0.02315839,94.53461229],[4.53259261,0.02315668,94.53345162],[4.53259204,0.02315498,94.53227365],[4.53259147,0.02315327,94.53107875],[4.5325909,0.02315157,94.5298673],[4.53259032,0.02314987,94.52863968],[4.53258975,0.02314816,94.52739628],[4.53258918,0.02314646,94.52613748],[4.53258861,0.02314475,94.52486366],[4.53258804,0.02314305,94.5235752],[4.53258746,0.02314134,94.52227249],[4.53258689,0.02313964,94.52095592],[4.53258632,0.02313793,94.51962587],[4.53258575,0.02313623,94.51828272],[4.53258518,0.02313452,94.51692688],[4.53258461,0.02313281,94.51555873],[4.53258404,0.02313111,94.51417865],[4.53258347,0.0231294,94.51278704],[4.5325829,0.02312769,94.51138429],[4.53258233,0.02312599,94.50997079],[4.53258176,0.02312428,94.50854693],[4.53258119,0.02312257,94.50711312],[4.53258063,0.02312087,94.50566973],[4.53258006,0.02311916,94.50421717],[4.53257949,0.02311745,94.50275578],[4.53257892,0.02311574,94.50128591],[4.53257835,0.02311403,94.49980789],[4.53257779,0.02311233,94.49832204],[4.53257722,0.02311062,94.49682869],[4.53257665,0.02310891,94.49532816],[4.53257609,0.0231072,94.49382076],[4.53257552,0.02310549,94.49230683],[4.53257496,0.02310378,94.49078668],[4.53257439,0.02310207,94.48926063],[4.53257382,0.02310036,94.48772899],[4.53257326,0.02309865,94.48619208],[4.53257269,0.02309694,94.4846502],[4.53257213,0.02309523,94.48310368],[4.53257156,0.02309352,94.48155281],[4.532571,0.02309181,94.47999791],[4.53257043,0.0230901,94.47843927],[4.53256986,0.02308839,94.47687721],[4.5325693,0.02308668,94.47531202],[4.53256873,0.02308497,94.473744],[4.53256817,0.02308326,94.47217346],[4.5325676,0.02308155,94.47060068],[4.53256704,0.02307984,94.46902601],[4.53256647,0.02307813,94.46744979],[4.5325659,0.02307642,94.46587234],[4.53256534,0.02307471,94.46429402],[4.53256477,0.02307299,94.46271515],[4.53256421,0.02307128,94.46113606],[4.53256364,0.02306957,94.45955711],[4.53256307,0.02306786,94.45797861],[4.53256251,0.02306615,94.4564009],[4.53256194,0.02306444,94.45482433],[4.53256137,0.02306273,94.45324921],[4.53256081,0.02306101,94.45167588],[4.53256024,0.0230593,94.45010467],[4.53255967,0.02305759,94.4485359],[4.5325591,0.02305588,94.44696986],[4.53255854,0.02305417,94.44540684],[4.53255797,0.02305246,94.44384715],[4.5325574,0.02305074,94.44229107],[4.53255683,0.02304903,94.44073889],[4.53255626,0.02304732,94.43919091],[4.5325557,0.02304561,94.43764741],[4.53255513,0.0230439,94.43610867],[4.53255456,0.02304218,94.43457499],[4.53255399,0.02304047,94.43304666],[4.53255342,0.02303876,94.43152394],[4.53255285,0.02303705,94.43000714],[4.53255228,0.02303534,94.42849653],[4.53255171,0.02303362,94.42699238],[4.53255114,0.02303191,94.42549499],[4.53255057,0.0230302,94.42400463],[4.53255,0.02302849,94.42252158],[4.53254943,0.02302678,94.42104612],[4.53254885,0.02302506,94.41957853],[4.53254828,0.02302335,94.41811908],[4.53254771,0.02302164,94.41666806],[4.53254714,0.02301993,94.41522582],[4.53254656,0.02301822,94.4137927],[4.53254599,0.0230165,94.41236906],[4.53254541,0.02301479,94.41095526],[4.53254484,0.02301308,94.40955166],[4.53254426,0.02301137,94.4081586],[4.53254369,0.02300966,94.40677637],[4.53254311,0.02300795,94.40540498],[4.53254254,0.02300623,94.40404434],[4.53254196,0.02300452,94.40269439],[4.53254138,0.02300281,94.40135507],[4.53254081,0.0230011,94.40002629],[4.53254023,0.02299939,94.39870801],[4.53253965,0.02299768,94.39740014],[4.53253908,0.02299596,94.39610264],[4.5325385,0.02299425,94.39481543],[4.53253792,0.02299254,94.39353845],[4.53253734,0.02299083,94.39227164],[4.53253677,0.02298912,94.39101493],[4.53253619,0.02298741,94.38976828],[4.53253561,0.0229857,94.38853161],[4.53253503,0.02298399,94.38730486],[4.53253445,0.02298228,94.38608799],[4.53253387,0.02298057,94.38488092],[4.5325333,0.02297886,94.38368361],[4.53253272,0.02297715,94.38249599],[4.53253214,0.02297544,94.38131801],[4.53253156,0.02297372,94.38014962],[4.53253098,0.02297201,94.37899074],[4.5325304,0.0229703,94.37784134],[4.53252982,0.02296859,94.37670134],[4.53252924,0.02296688,94.37557069],[4.53252866,0.02296517,94.37444933],[4.53252809,0.02296346,94.37333718],[4.53252751,0.02296175,94.37223419],[4.53252693,0.02296004,94.37114033],[4.53252635,0.02295833,94.37005556],[4.53252577,0.02295662,94.36897985],[4.53252519,0.02295491,94.36791317],[4.53252461,0.0229532,94.36685547],[4.53252403,0.02295149,94.36580674],[4.53252345,0.02294978,94.36476693],[4.53252287,0.02294807,94.36373601],[4.53252229,0.02294636,94.36271396],[4.53252172,0.02294465,94.36170074],[4.53252114,0.02294294,94.36069631],[4.53252056,0.02294123,94.35970064],[4.53251998,0.02293952,94.3587137],[4.5325194,0.02293781,94.35773547],[4.53251882,0.0229361,94.3567659],[4.53251825,0.02293439,94.35580496],[4.53251767,0.02293268,94.35485262],[4.53251709,0.02293097,94.35390882],[4.53251652,0.02292926,94.35297345],[4.53251594,0.02292755,94.35204642],[4.53251536,0.02292584,94.35112763],[4.53251479,0.02292413,94.35021698],[4.53251421,0.02292242,94.34931437],[4.53251363,0.02292071,94.34841971],[4.53251306,0.022919,94.3475329],[4.53251248,0.02291729,94.34665384],[4.53251191,0.02291558,94.34578242],[4.53251133,0.02291387,94.34491856],[4.53251076,0.02291215,94.34406215],[4.53251018,0.02291044,94.34321309],[4.53250961,0.02290873,94.34237128],[4.53250903,0.02290702,94.34153663],[4.53250846,0.02290531,94.34070903],[4.53250789,0.0229036,94.33988839],[4.53250731,0.02290189,94.33907461],[4.53250674,0.02290018,94.33826759],[4.53250616,0.02289847,94.33746723],[4.53250559,0.02289676,94.33667342],[4.53250502,0.02289504,94.33588608],[4.53250444,0.02289333,94.33510511],[4.53250387,0.02289162,94.33433039],[4.5325033,0.02288991,94.33356185],[4.53250272,0.0228882,94.33279937],[4.53250215,0.02288649,94.33204285],[4.53250158,0.02288478,94.33129221],[4.53250101,0.02288307,94.33054734],[4.53250043,0.02288135,94.32980813],[4.53249986,0.02287964,94.32907451],[4.53249929,0.02287793,94.32834636],[4.53249872,0.02287622,94.32762358],[4.53249814,0.02287451,94.32690609],[4.53249757,0.0228728,94.32619377],[4.532497,0.02287109,94.32548654],[4.53249643,0.02286938,94.3247843],[4.53249585,0.02286766,94.32408694],[4.53249528,0.02286595,94.32339437],[4.53249471,0.02286424,94.3227065],[4.53249414,0.02286253,94.32202322],[4.53249357,0.02286082,94.32134444],[4.53249299,0.02285911,94.32067007],[4.53249242,0.0228574,94.32000002],[4.53249185,0.02285569,94.3193342],[4.53249128,0.02285398,94.31867255],[4.5324907,0.02285226,94.31801499],[4.53249013,0.02285055,94.31736143],[4.53248956,0.02284884,94.31671181],[4.53248899,0.02284713,94.31606604],[4.53248842,0.02284542,94.31542404],[4.53248784,0.02284371,94.31478574],[4.53248727,0.022842,94.31415107],[4.5324867,0.02284029,94.31351993],[4.53248613,0.02283858,94.31289227],[4.53248556,0.02283687,94.312268],[4.53248498,0.02283515,94.31164703],[4.53248441,0.02283344,94.3110293],[4.53248384,0.02283173,94.31041471],[4.53248327,0.02283002,94.30980318],[4.5324827,0.02282831,94.30919463],[4.53248212,0.0228266,94.30858896],[4.53248155,0.02282489,94.3079861],[4.53248098,0.02282318,94.30738596],[4.53248041,0.02282147,94.30678845],[4.53247984,0.02281976,94.30619349],[4.53247926,0.02281805,94.30560099],[4.53247869,0.02281634,94.30501087],[4.53247812,0.02281463,94.30442305],[4.53247755,0.02281291,94.30383743],[4.53247698,0.0228112,94.30325393],[4.53247641,0.02280949,94.30267247],[4.53247583,0.02280778,94.30209296],[4.53247526,0.02280607,94.30151532],[4.53247469,0.02280436,94.30093946],[4.53247412,0.02280265,94.30036529],[4.53247355,0.02280094,94.29979274],[4.53247297,0.02279923,94.29922172],[4.5324724,0.02279752,94.29865213],[4.53247183,0.02279581,94.29808391],[4.53247126,0.0227941,94.29751695],[4.53247069,0.02279239,94.29695118],[4.53247012,0.02279068,94.29638651],[4.53246954,0.02278897,94.29582286],[4.53246897,0.02278726,94.29526013],[4.5324684,0.02278555,94.29469826],[4.53246783,0.02278384,94.29413714],[4.53246726,0.02278213,94.2935767],[4.53246668,0.02278042,94.29301685],[4.53246611,0.02277871,94.29245751],[4.53246554,0.022777,94.29189858],[4.53246497,0.02277529,94.29133999],[4.5324644,0.02277358,94.29078166],[4.53246382,0.02277187,94.29022348],[4.53246325,0.02277016,94.28966539],[4.53246268,0.02276845,94.28910729],[4.53246211,0.02276674,94.2885491],[4.53246153,0.02276503,94.28799073],[4.53246096,0.02276332,94.2874321],[4.53246039,0.02276161,94.28687313],[4.53245982,0.0227599,94.28631372],[4.53245924,0.02275819,94.2857538],[4.53245867,0.02275648,94.28519327],[4.5324581,0.02275477,94.28463206],[4.53245753,0.02275306,94.28407007],[4.53245695,0.02275135,94.28350727],[4.53245638,0.02274964,94.28294367],[4.53245581,0.02274793,94.28237928],[4.53245524,0.02274622,94.28181411],[4.53245466,0.02274451,94.28124817],[4.53245409,0.0227428,94.28068147],[4.53245352,0.02274109,94.28011402],[4.53245294,0.02273938,94.27954583],[4.53245237,0.02273767,94.27897692],[4.5324518,0.02273597,94.27840728],[4.53245123,0.02273426,94.27783694],[4.53245065,0.02273255,94.2772659],[4.53245008,0.02273084,94.27669417],[4.53244951,0.02272913,94.27612177],[4.53244893,0.02272742,94.2755487],[4.53244836,0.02272571,94.27497498],[4.53244778,0.022724,94.27440061],[4.53244721,0.02272229,94.2738256],[4.53244664,0.02272058,94.27324997],[4.53244606,0.02271888,94.27267373],[4.53244549,0.02271717,94.27209688],[4.53244492,0.02271546,94.27151944],[4.53244434,0.02271375,94.27094141],[4.53244377,0.02271204,94.27036281],[4.53244319,0.02271033,94.26978365],[4.53244262,0.02270862,94.26920395],[4.53244204,0.02270692,94.26862372],[4.53244147,0.02270521,94.268043],[4.5324409,0.0227035,94.26746179],[4.53244032,0.02270179,94.26688013],[4.53243975,0.02270008,94.26629802],[4.53243917,0.02269837,94.2657155],[4.5324386,0.02269667,94.26513258],[4.53243802,0.02269496,94.26454929],[4.53243745,0.02269325,94.26396563],[4.53243687,0.02269154,94.26338164],[4.5324363,0.02268983,94.26279733],[4.53243572,0.02268813,94.26221272],[4.53243515,0.02268642,94.26162783],[4.53243457,0.02268471,94.26104268],[4.532434,0.022683,94.26045729],[4.53243342,0.0226813,94.25987167],[4.53243285,0.02267959,94.25928585],[4.53243227,0.02267788,94.25869985],[4.5324317,0.02267617,94.25811367],[4.53243112,0.02267446,94.25752736],[4.53243054,0.02267276,94.25694091],[4.53242997,0.02267105,94.25635435],[4.53242939,0.02266934,94.2557677],[4.53242882,0.02266763,94.25518098],[4.53242824,0.02266593,94.2545942],[4.53242767,0.02266422,94.25400739],[4.53242709,0.02266251,94.25342057],[4.53242652,0.0226608,94.25283374],[4.53242594,0.0226591,94.25224694],[4.53242537,0.02265739,94.25166018],[4.53242479,0.02265568,94.25107347],[4.53242421,0.02265398,94.25048684],[4.53242364,0.02265227,94.24990031],[4.53242306,0.02265056,94.24931389],[4.53242249,0.02264885,94.2487276],[4.53242191,0.02264715,94.24814147],[4.53242134,0.02264544,94.2475555],[4.53242076,0.02264373,94.24696973],[4.53242019,0.02264202,94.24638416],[4.53241961,0.02264032,94.24579881],[4.53241904,0.02263861,94.24521371],[4.53241846,0.0226369,94.24462887],[4.53241789,0.0226352,94.24404431],[4.53241731,0.02263349,94.24346003],[4.53241673,0.02263178,94.24287605],[4.53241616,0.02263007,94.24229239],[4.53241558,0.02262837,94.24170906],[4.53241501,0.02262666,94.24112607],[4.53241443,0.02262495,94.24054344],[4.53241386,0.02262325,94.23996118],[4.53241328,0.02262154,94.2393793],[4.53241271,0.02261983,94.23879782],[4.53241213,0.02261813,94.23821676],[4.53241156,0.02261642,94.23763612],[4.53241098,0.02261471,94.23705592],[4.53241041,0.022613,94.23647617],[4.53240983,0.0226113,94.23589689],[4.53240926,0.02260959,94.2353181],[4.53240868,0.02260788,94.2347398],[4.53240811,0.02260618,94.23416201],[4.53240753,0.02260447,94.23358474],[4.53240696,0.02260276,94.23300802],[4.53240639,0.02260106,94.23243185],[4.53240581,0.02259935,94.23185624],[4.53240524,0.02259764,94.23128121],[4.53240466,0.02259593,94.23070678],[4.53240408,0.02259422,94.23013296],[4.53240351,0.02259252,94.22955977],[4.53240294,0.02259081,94.22898721],[4.53240236,0.0225891,94.22841531],[4.53240179,0.02258739,94.22784407],[4.53240121,0.02258569,94.22727351],[4.53240064,0.02258398,94.22670365],[4.53240006,0.02258227,94.2261345],[4.53239949,0.02258057,94.22556608],[4.53239891,0.02257886,94.2249984],[4.53239834,0.02257715,94.22443146],[4.53239777,0.02257545,94.2238653],[4.53239719,0.02257374,94.22329992],[4.53239662,0.02257203,94.22273535],[4.53239604,0.02257032,94.22217159],[4.53239547,0.02256862,94.22160867],[4.5323949,0.02256691,94.2210466],[4.53239432,0.0225652,94.22048539],[4.53239375,0.02256349,94.21992503],[4.53239317,0.02256179,94.21936555],[4.5323926,0.02256008,94.21880694],[4.53239203,0.02255837,94.21824921],[4.53239145,0.02255666,94.21769237],[4.53239088,0.02255496,94.21713643],[4.53239031,0.02255325,94.21658138],[4.53238973,0.02255154,94.21602725],[4.53238916,0.02254984,94.21547404],[4.53238858,0.02254813,94.21492174],[4.53238801,0.02254642,94.21437038],[4.53238744,0.02254471,94.21381995],[4.53238686,0.02254301,94.21327047],[4.53238629,0.0225413,94.21272194],[4.53238572,0.02253959,94.21217437],[4.53238514,0.02253788,94.21162776],[4.53238457,0.02253617,94.21108212],[4.532384,0.02253447,94.21053746],[4.53238342,0.02253276,94.20999379],[4.53238285,0.02253105,94.20945111],[4.53238228,0.02252934,94.20890943],[4.5323817,0.02252764,94.20836875],[4.53238113,0.02252593,94.20782909],[4.53238056,0.02252422,94.20729045],[4.53237998,0.02252251,94.20675284],[4.53237941,0.02252081,94.20621626],[4.53237884,0.0225191,94.20568072],[4.53237826,0.02251739,94.20514622],[4.53237769,0.02251568,94.20461279],[4.53237712,0.02251398,94.20408041],[4.53237654,0.02251227,94.2035491],[4.53237597,0.02251056,94.20301887],[4.5323754,0.02250885,94.20248972],[4.53237482,0.02250714,94.20196166],[4.53237425,0.02250544,94.20143469],[4.53237367,0.02250373,94.20090883],[4.5323731,0.02250202,94.20038407],[4.53237253,0.02250031,94.19986043],[4.53237195,0.02249861,94.19933791],[4.53237138,0.0224969,94.19881653],[4.53237081,0.02249519,94.19829627],[4.53237023,0.02249348,94.19777716],[4.53236966,0.02249178,94.1972592],[4.53236908,0.02249007,94.1967424],[4.53236851,0.02248836,94.19622676],[4.53236794,0.02248665,94.19571228],[4.53236736,0.02248495,94.19519898],[4.53236679,0.02248324,94.19468687],[4.53236621,0.02248153,94.19417594],[4.53236564,0.02247982,94.19366621],[4.53236507,0.02247811,94.19315768],[4.53236449,0.02247641,94.19265036],[4.53236392,0.0224747,94.19214425],[4.53236334,0.02247299,94.19163936],[4.53236277,0.02247128,94.1911357],[4.53236219,0.02246958,94.19063327],[4.53236162,0.02246787,94.19013208],[4.53236105,0.02246616,94.18963214],[4.53236047,0.02246445,94.18913345],[4.5323599,0.02246275,94.18863602],[4.53235932,0.02246104,94.18813985],[4.53235875,0.02245933,94.18764495],[4.53235817,0.02245763,94.18715133],[4.5323576,0.02245592,94.18665899],[4.53235702,0.02245421,94.18616794],[4.53235644,0.0224525,94.18567819],[4.53235587,0.0224508,94.18518975],[4.53235529,0.02244909,94.18470265],[4.53235472,0.02244738,94.1842169],[4.53235414,0.02244567,94.18373252],[4.53235357,0.02244397,94.18324953],[4.53235299,0.02244226,94.18276796],[4.53235242,0.02244055,94.18228782],[4.53235184,0.02243885,94.18180913],[4.53235126,0.02243714,94.18133191],[4.53235069,0.02243543,94.18085619],[4.53235011,0.02243372,94.18038197],[4.53234954,0.02243202,94.17990929],[4.53234896,0.02243031,94.17943816],[4.53234838,0.0224286,94.17896859],[4.53234781,0.0224269,94.17850062],[4.53234723,0.02242519,94.17803427],[4.53234665,0.02242348,94.17756954],[4.53234608,0.02242177,94.17710646],[4.5323455,0.02242007,94.17664505],[4.53234492,0.02241836,94.17618533],[4.53234435,0.02241665,94.1757273],[4.53234377,0.02241495,94.17527099],[4.5323432,0.02241324,94.17481641],[4.53234262,0.02241153,94.17436358],[4.53234204,0.02240982,94.17391252],[4.53234147,0.02240812,94.17346323],[4.53234089,0.02240641,94.17301575],[4.53234031,0.0224047,94.17257008],[4.53233974,0.022403,94.17212625],[4.53233916,0.02240129,94.17168427],[4.53233858,0.02239958,94.17124416],[4.53233801,0.02239787,94.17080593],[4.53233743,0.02239617,94.1703696],[4.53233685,0.02239446,94.1699352],[4.53233628,0.02239275,94.16950273],[4.5323357,0.02239105,94.16907221],[4.53233512,0.02238934,94.16864367],[4.53233455,0.02238763,94.16821711],[4.53233397,0.02238592,94.16779256],[4.53233339,0.02238422,94.16737003],[4.53233282,0.02238251,94.16694955],[4.53233224,0.0223808,94.16653112],[4.53233167,0.0223791,94.16611477],[4.53233109,0.02237739,94.16570051],[4.53233051,0.02237568,94.16528837],[4.53232994,0.02237397,94.16487835],[4.53232936,0.02237227,94.16447047],[4.53232878,0.02237056,94.16406476],[4.53232821,0.02236885,94.16366123],[4.53232763,0.02236714,94.1632599],[4.53232705,0.02236544,94.16286079],[4.53232648,0.02236373,94.16246391],[4.5323259,0.02236202,94.16206928],[4.53232533,0.02236031,94.16167692],[4.53232475,0.02235861,94.16128685],[4.53232417,0.0223569,94.16089909],[4.5323236,0.02235519,94.16051364],[4.53232302,0.02235348,94.16013054],[4.53232245,0.02235178,94.1597498],[4.53232187,0.02235007,94.15937143],[4.5323213,0.02234836,94.15899546],[4.53232072,0.02234665,94.1586219],[4.53232014,0.02234495,94.15825077],[4.53231957,0.02234324,94.15788209],[4.53231899,0.02234153,94.15751588],[4.53231842,0.02233982,94.15715215],[4.53231784,0.02233811,94.15679092],[4.53231727,0.02233641,94.15643221],[4.53231669,0.0223347,94.15607604],[4.53231612,0.02233299,94.15572243],[4.53231554,0.02233128,94.1553714],[4.53231497,0.02232957,94.15502295],[4.53231439,0.02232787,94.15467709],[4.53231382,0.02232616,94.15433383],[4.53231324,0.02232445,94.15399318],[4.53231267,0.02232274,94.15365514],[4.53231209,0.02232103,94.15331971],[4.53231152,0.02231933,94.15298691],[4.53231095,0.02231762,94.15265673],[4.53231037,0.02231591,94.15232919],[4.5323098,0.0223142,94.15200428],[4.53230922,0.02231249,94.15168202],[4.53230865,0.02231078,94.1513624],[4.53230807,0.02230908,94.15104544],[4.5323075,0.02230737,94.15073114],[4.53230693,0.02230566,94.15041951],[4.53230635,0.02230395,94.15011054],[4.53230578,0.02230224,94.14980425],[4.5323052,0.02230053,94.14950064],[4.53230463,0.02229883,94.14919972],[4.53230406,0.02229712,94.14890149],[4.53230348,0.02229541,94.14860595],[4.53230291,0.0222937,94.14831312],[4.53230234,0.02229199,94.14802299],[4.53230176,0.02229028,94.14773557],[4.53230119,0.02228857,94.14745086],[4.53230061,0.02228687,94.14716888],[4.53230004,0.02228516,94.14688962],[4.53229947,0.02228345,94.14661309],[4.53229889,0.02228174,94.14633929],[4.53229832,0.02228003,94.14606824],[4.53229775,0.02227832,94.14579992],[4.53229717,0.02227661,94.14553436],[4.5322966,0.0222749,94.14527155],[4.53229603,0.0222732,94.14501149],[4.53229545,0.02227149,94.1447542],[4.53229488,0.02226978,94.14449967],[4.5322943,0.02226807,94.14424791],[4.53229373,0.02226636,94.14399892],[4.53229316,0.02226465,94.14375272],[4.53229258,0.02226294,94.1435093],[4.53229201,0.02226123,94.14326866],[4.53229144,0.02225953,94.14303082],[4.53229086,0.02225782,94.14279577],[4.53229029,0.02225611,94.14256353],[4.53228971,0.0222544,94.14233409],[4.53228914,0.02225269,94.14210746],[4.53228857,0.02225098,94.14188364],[4.53228799,0.02224927,94.14166264],[4.53228742,0.02224756,94.14144446],[4.53228684,0.02224586,94.1412291],[4.53228627,0.02224415,94.14101658],[4.5322857,0.02224244,94.14080689],[4.53228512,0.02224073,94.14060003],[4.53228455,0.02223902,94.14039602],[4.53228397,0.02223731,94.14019485],[4.5322834,0.0222356,94.13999653],[4.53228283,0.0222339,94.13980107],[4.53228225,0.02223219,94.13960846],[4.53228168,0.02223048,94.13941871],[4.5322811,0.02222877,94.13923182],[4.53228053,0.02222706,94.13904781],[4.53227995,0.02222535,94.13886666],[4.53227938,0.02222365,94.13868839],[4.5322788,0.02222194,94.138513],[4.53227823,0.02222023,94.13834049],[4.53227765,0.02221852,94.13817086],[4.53227708,0.02221681,94.13800413],[4.5322765,0.0222151,94.13784029],[4.53227593,0.02221339,94.13767934],[4.53227535,0.02221169,94.1375213],[4.53227478,0.02220998,94.13736616],[4.5322742,0.02220827,94.13721392],[4.53227363,0.02220656,94.1370646],[4.53227305,0.02220485,94.13691819],[4.53227248,0.02220315,94.13677469],[4.5322719,0.02220144,94.13663412],[4.53227132,0.02219973,94.13649647],[4.53227075,0.02219802,94.13636175],[4.53227017,0.02219631,94.13622996],[4.5322696,0.02219461,94.1361011],[4.53226902,0.0221929,94.13597518],[4.53226844,0.02219119,94.1358522],[4.53226787,0.02218948,94.13573216],[4.53226729,0.02218778,94.13561507],[4.53226671,0.02218607,94.13550093],[4.53226613,0.02218436,94.13538975],[4.53226556,0.02218265,94.13528152],[4.53226498,0.02218094,94.13517625],[4.5322644,0.02217924,94.13507394],[4.53226383,0.02217753,94.13497461],[4.53226325,0.02217582,94.13487824],[4.53226267,0.02217412,94.13478484],[4.53226209,0.02217241,94.13469443],[4.53226151,0.0221707,94.13460699],[4.53226093,0.02216899,94.13452253],[4.53226036,0.02216729,94.13444106],[4.5322598,0.02216565,94.1343658]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004200","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2}},{"geometry":{"coordinates":[[4.53264531,0.02321096,94.61523825],[4.53264474,0.02320925,94.6146969],[4.53264417,0.02320754,94.61414619],[4.53264361,0.02320584,94.61358588],[4.53264304,0.02320413,94.61301573],[4.53264247,0.02320242,94.61243552],[4.5326419,0.02320071,94.61184507],[4.53264134,0.023199,94.61124441],[4.53264077,0.0231973,94.6106336],[4.5326402,0.02319559,94.6100127],[4.53263963,0.02319388,94.60938179],[4.53263906,0.02319217,94.60874094],[4.53263849,0.02319047,94.6080902],[4.53263792,0.02318876,94.60742965],[4.53263735,0.02318705,94.60675936],[4.53263679,0.02318534,94.6060794],[4.53263622,0.02318363,94.60538983],[4.53263565,0.02318193,94.60469074],[4.53263508,0.02318022,94.60398218],[4.53263451,0.02317851,94.60326423],[4.53263394,0.0231768,94.60253696],[4.53263337,0.0231751,94.60180045],[4.5326328,0.02317339,94.60105476],[4.53263223,0.02317168,94.60029997],[4.53263166,0.02316997,94.59953614],[4.53263109,0.02316826,94.59876337],[4.53263052,0.02316656,94.59798171],[4.53262995,0.02316485,94.59719124],[4.53262938,0.02316314,94.59639203],[4.53262881,0.02316143,94.59558417],[4.53262824,0.02315972,94.59476772],[4.53262767,0.02315802,94.59394275],[4.5326271,0.02315631,94.59310936],[4.53262653,0.0231546,94.5922676],[4.53262596,0.02315289,94.59141756],[4.53262539,0.02315118,94.59055931],[4.53262481,0.02314948,94.58969293],[4.53262424,0.02314777,94.58881849],[4.53262367,0.02314606,94.58793609],[4.5326231,0.02314435,94.58704585],[4.53262253,0.02314264,94.58614794],[4.53262196,0.02314094,94.58524248],[4.53262139,0.02313923,94.58432964],[4.53262082,0.02313752,94.58340955],[4.53262025,0.02313581,94.58248237],[4.53261968,0.0231341,94.58154824],[4.53261911,0.02313239,94.58060731],[4.53261854,0.02313069,94.57965973],[4.53261797,0.02312898,94.57870564],[4.5326174,0.02312727,94.5777452],[4.53261682,0.02312556,94.57677855],[4.53261625,0.02312385,94.57580585],[4.53261568,0.02312214,94.57482723],[4.53261511,0.02312043,94.57384285],[4.53261454,0.02311873,94.57285286],[4.53261397,0.02311702,94.5718574],[4.5326134,0.02311531,94.57085662],[4.53261283,0.0231136,94.56985067],[4.53261226,0.02311189,94.56883971],[4.53261169,0.02311018,94.56782387],[4.53261112,0.02310847,94.56680329],[4.53261055,0.02310676,94.56577811],[4.53260998,0.02310505,94.56474844],[4.53260941,0.02310335,94.56371441],[4.53260884,0.02310164,94.56267614],[4.53260827,0.02309993,94.56163376],[4.5326077,0.02309822,94.56058739],[4.53260713,0.02309651,94.55953714],[4.53260656,0.0230948,94.55848315],[4.53260599,0.02309309,94.55742553],[4.53260542,0.02309138,94.55636439],[4.53260485,0.02308967,94.55529986],[4.53260428,0.02308796,94.55423204],[4.53260371,0.02308625,94.55316107],[4.53260314,0.02308454,94.55208705],[4.53260257,0.02308283,94.5510101],[4.532602,0.02308112,94.54993033],[4.53260143,0.02307941,94.54884785],[4.53260086,0.0230777,94.54776278],[4.53260028,0.02307599,94.54667522],[4.53259971,0.02307428,94.54558528],[4.53259914,0.02307257,94.54449308],[4.53259857,0.02307086,94.54339873],[4.532598,0.02306916,94.54230236],[4.53259743,0.02306745,94.54120414],[4.53259686,0.02306574,94.54010422],[4.53259629,0.02306403,94.53900275],[4.53259572,0.02306232,94.53789988],[4.53259515,0.02306061,94.53679576],[4.53259457,0.0230589,94.53569055],[4.532594,0.02305719,94.53458441],[4.53259343,0.02305548,94.53347749],[4.53259286,0.02305377,94.53236993],[4.53259229,0.02305206,94.53126191],[4.53259172,0.02305035,94.53015356],[4.53259115,0.02304864,94.52904505],[4.53259058,0.02304693,94.52793651],[4.53259,0.02304522,94.52682807],[4.53258943,0.02304351,94.52571984],[4.53258886,0.0230418,94.52461196],[4.53258829,0.02304009,94.52350452],[4.53258772,0.02303838,94.52239767],[4.53258715,0.02303667,94.52129151],[4.53258658,0.02303496,94.52018617],[4.53258601,0.02303325,94.51908176],[4.53258544,0.02303154,94.51797839],[4.53258487,0.02302982,94.5168762],[4.5325843,0.02302811,94.51577528],[4.53258373,0.0230264,94.51467576],[4.53258316,0.02302469,94.51357775],[4.53258258,0.02302298,94.51248137],[4.53258201,0.02302127,94.51138673],[4.53258144,0.02301956,94.51029395],[4.53258087,0.02301785,94.50920313],[4.5325803,0.02301614,94.50811439],[4.53257973,0.02301443,94.50702785],[4.53257916,0.02301272,94.5059436],[4.53257859,0.02301101,94.50486178],[4.53257802,0.02300929,94.50378247],[4.53257745,0.02300758,94.50270581],[4.53257688,0.02300587,94.50163189],[4.53257631,0.02300416,94.50056082],[4.53257574,0.02300245,94.49949272],[4.53257517,0.02300074,94.49842769],[4.5325746,0.02299903,94.49736582],[4.53257403,0.02299732,94.49630709],[4.53257346,0.0229956,94.49525148],[4.53257289,0.02299389,94.49419895],[4.53257232,0.02299218,94.49314946],[4.53257175,0.02299047,94.49210299],[4.53257118,0.02298876,94.4910595],[4.53257061,0.02298705,94.49001895],[4.53257004,0.02298533,94.48898132],[4.53256947,0.02298362,94.48794657],[4.5325689,0.02298191,94.48691468],[4.53256833,0.0229802,94.4858856],[4.53256776,0.02297849,94.4848593],[4.53256719,0.02297678,94.48383576],[4.53256662,0.02297507,94.48281494],[4.53256605,0.02297335,94.48179681],[4.53256548,0.02297164,94.48078134],[4.53256491,0.02296993,94.4797685],[4.53256434,0.02296822,94.47875825],[4.53256377,0.02296651,94.47775056],[4.5325632,0.0229648,94.47674541],[4.53256263,0.02296309,94.47574277],[4.53256206,0.02296138,94.47474259],[4.53256149,0.02295966,94.47374486],[4.53256092,0.02295795,94.47274953],[4.53256035,0.02295624,94.47175657],[4.53255978,0.02295453,94.47076593],[4.53255921,0.02295282,94.4697776],[4.53255864,0.02295111,94.46879152],[4.53255807,0.0229494,94.46780768],[4.5325575,0.02294769,94.46682609],[4.53255693,0.02294598,94.46584673],[4.53255636,0.02294427,94.46486958],[4.53255579,0.02294256,94.46389465],[4.53255521,0.02294084,94.46292193],[4.53255464,0.02293913,94.4619514],[4.53255407,0.02293742,94.46098307],[4.5325535,0.02293571,94.46001692],[4.53255293,0.022934,94.45905295],[4.53255236,0.02293229,94.45809115],[4.53255178,0.02293058,94.45713152],[4.53255121,0.02292887,94.45617405],[4.53255064,0.02292716,94.45521874],[4.53255007,0.02292545,94.45426557],[4.5325495,0.02292374,94.45331455],[4.53254892,0.02292203,94.45236567],[4.53254835,0.02292032,94.45141892],[4.53254778,0.02291861,94.45047431],[4.53254721,0.0229169,94.44953182],[4.53254663,0.02291519,94.44859145],[4.53254606,0.02291348,94.44765321],[4.53254549,0.02291177,94.44671708],[4.53254491,0.02291006,94.44578306],[4.53254434,0.02290835,94.44485115],[4.53254377,0.02290664,94.44392134],[4.53254319,0.02290493,94.44299364],[4.53254262,0.02290322,94.44206803],[4.53254205,0.02290151,94.44114453],[4.53254148,0.0228998,94.44022311],[4.5325409,0.02289809,94.43930379],[4.53254033,0.02289638,94.43838655],[4.53253975,0.02289467,94.4374714],[4.53253918,0.02289296,94.43655834],[4.53253861,0.02289125,94.43564736],[4.53253803,0.02288954,94.43473845],[4.53253746,0.02288783,94.43383163],[4.53253689,0.02288612,94.43292688],[4.53253631,0.02288441,94.4320242],[4.53253574,0.0228827,94.4311236],[4.53253516,0.02288099,94.43022506],[4.53253459,0.02287928,94.4293286],[4.53253402,0.02287757,94.4284342],[4.53253344,0.02287586,94.42754186],[4.53253287,0.02287416,94.42665159],[4.53253229,0.02287245,94.42576339],[4.53253172,0.02287074,94.42487724],[4.53253114,0.02286903,94.42399315],[4.53253057,0.02286732,94.42311112],[4.53253,0.02286561,94.42223115],[4.53252942,0.0228639,94.42135323],[4.53252885,0.02286219,94.42047736],[4.53252827,0.02286048,94.41960355],[4.5325277,0.02285877,94.41873179],[4.53252712,0.02285706,94.41786207],[4.53252655,0.02285535,94.4169944],[4.53252597,0.02285364,94.41612878],[4.5325254,0.02285194,94.4152652],[4.53252482,0.02285023,94.41440367],[4.53252425,0.02284852,94.41354419],[4.53252367,0.02284681,94.41268676],[4.5325231,0.0228451,94.41183138],[4.53252252,0.02284339,94.41097806],[4.53252195,0.02284168,94.4101268],[4.53252137,0.02283997,94.40927761],[4.5325208,0.02283826,94.40843048],[4.53252022,0.02283655,94.40758542],[4.53251965,0.02283484,94.40674244],[4.53251907,0.02283314,94.40590153],[4.5325185,0.02283143,94.40506269],[4.53251792,0.02282972,94.40422594],[4.53251735,0.02282801,94.40339126],[4.53251677,0.0228263,94.40255867],[4.5325162,0.02282459,94.40172816],[4.53251562,0.02282288,94.40089974],[4.53251505,0.02282117,94.40007339],[4.53251447,0.02281946,94.39924912],[4.5325139,0.02281775,94.39842691],[4.53251332,0.02281605,94.39760675],[4.53251275,0.02281434,94.39678865],[4.53251217,0.02281263,94.3959726],[4.5325116,0.02281092,94.39515859],[4.53251103,0.02280921,94.39434661],[4.53251045,0.0228075,94.39353665],[4.53250988,0.02280579,94.39272872],[4.5325093,0.02280408,94.3919228],[4.53250873,0.02280237,94.39111888],[4.53250815,0.02280067,94.39031697],[4.53250758,0.02279896,94.38951705],[4.532507,0.02279725,94.38871911],[4.53250643,0.02279554,94.38792316],[4.53250585,0.02279383,94.38712918],[4.53250528,0.02279212,94.38633716],[4.5325047,0.02279041,94.3855471],[4.53250413,0.0227887,94.38475899],[4.53250355,0.02278699,94.38397283],[4.53250298,0.02278529,94.3831886],[4.5325024,0.02278358,94.38240631],[4.53250183,0.02278187,94.38162593],[4.53250125,0.02278016,94.38084747],[4.53250068,0.02277845,94.38007091],[4.53250011,0.02277674,94.37929625],[4.53249953,0.02277503,94.37852349],[4.53249896,0.02277332,94.3777526],[4.53249838,0.02277161,94.3769836],[4.53249781,0.02276991,94.37621646],[4.53249723,0.0227682,94.37545118],[4.53249666,0.02276649,94.37468775],[4.53249608,0.02276478,94.37392616],[4.53249551,0.02276307,94.37316641],[4.53249494,0.02276136,94.37240849],[4.53249436,0.02275965,94.37165238],[4.53249379,0.02275794,94.37089809],[4.53249321,0.02275623,94.37014559],[4.53249264,0.02275453,94.36939489],[4.53249206,0.02275282,94.36864598],[4.53249149,0.02275111,94.36789884],[4.53249091,0.0227494,94.36715347],[4.53249034,0.02274769,94.36640985],[4.53248977,0.02274598,94.36566799],[4.53248919,0.02274427,94.36492786],[4.53248862,0.02274256,94.36418947],[4.53248804,0.02274085,94.36345281],[4.53248747,0.02273915,94.36271787],[4.5324869,0.02273744,94.36198468],[4.53248632,0.02273573,94.36125322],[4.53248575,0.02273402,94.36052351],[4.53248517,0.02273231,94.35979554],[4.5324846,0.0227306,94.35906932],[4.53248402,0.02272889,94.35834485],[4.53248345,0.02272718,94.35762214],[4.53248288,0.02272547,94.35690119],[4.5324823,0.02272377,94.356182],[4.53248173,0.02272206,94.35546457],[4.53248115,0.02272035,94.35474892],[4.53248058,0.02271864,94.35403504],[4.53248001,0.02271693,94.35332293],[4.53247943,0.02271522,94.35261261],[4.53247886,0.02271351,94.35190407],[4.53247829,0.0227118,94.35119731],[4.53247771,0.0227101,94.35049234],[4.53247714,0.02270839,94.34978917],[4.53247656,0.02270668,94.34908779],[4.53247599,0.02270497,94.34838821],[4.53247542,0.02270326,94.34769044],[4.53247484,0.02270155,94.34699447],[4.53247427,0.02269984,94.34630031],[4.5324737,0.02269813,94.34560796],[4.53247312,0.02269642,94.34491743],[4.53247255,0.02269472,94.34422872],[4.53247197,0.02269301,94.34354183],[4.5324714,0.0226913,94.34285677],[4.53247083,0.02268959,94.34217354],[4.53247025,0.02268788,94.34149214],[4.53246968,0.02268617,94.34081258],[4.53246911,0.02268446,94.34013486],[4.53246853,0.02268275,94.33945899],[4.53246796,0.02268104,94.33878496],[4.53246739,0.02267934,94.33811278],[4.53246681,0.02267763,94.33744245],[4.53246624,0.02267592,94.33677397],[4.53246567,0.02267421,94.33610735],[4.53246509,0.0226725,94.33544259],[4.53246452,0.02267079,94.33477969],[4.53246395,0.02266908,94.33411865],[4.53246337,0.02266737,94.33345949],[4.5324628,0.02266567,94.33280218],[4.53246223,0.02266396,94.33214676],[4.53246165,0.02266225,94.3314932],[4.53246108,0.02266054,94.33084152],[4.53246051,0.02265883,94.33019172],[4.53245993,0.02265712,94.32954381],[4.53245936,0.02265541,94.32889777],[4.53245879,0.0226537,94.32825363],[4.53245821,0.02265199,94.32761137],[4.53245764,0.02265029,94.32697101],[4.53245707,0.02264858,94.32633254],[4.5324565,0.02264687,94.32569597],[4.53245592,0.02264516,94.3250613],[4.53245535,0.02264345,94.32442854],[4.53245478,0.02264174,94.32379768],[4.5324542,0.02264003,94.32316873],[4.53245363,0.02263832,94.32254169],[4.53245306,0.02263662,94.32191656],[4.53245249,0.02263491,94.32129336],[4.53245191,0.0226332,94.32067207],[4.53245134,0.02263149,94.32005271],[4.53245077,0.02262978,94.31943527],[4.53245019,0.02262807,94.31881976],[4.53244962,0.02262636,94.31820618],[4.53244905,0.02262465,94.31759453],[4.53244848,0.02262294,94.3169848],[4.5324479,0.02262124,94.316377],[4.53244733,0.02261953,94.31577112],[4.53244676,0.02261782,94.31516716],[4.53244618,0.02261611,94.31456511],[4.53244561,0.0226144,94.31396498],[4.53244504,0.02261269,94.31336677],[4.53244447,0.02261098,94.31277047],[4.53244389,0.02260927,94.31217607],[4.53244332,0.02260757,94.31158359],[4.53244275,0.02260586,94.31099301],[4.53244218,0.02260415,94.31040434],[4.5324416,0.02260244,94.30981757],[4.53244103,0.02260073,94.3092327],[4.53244046,0.02259902,94.30864974],[4.53243988,0.02259731,94.30806867],[4.53243931,0.02259561,94.30748949],[4.53243874,0.0225939,94.30691221],[4.53243817,0.02259219,94.30633683],[4.53243759,0.02259048,94.30576333],[4.53243702,0.02258877,94.30519173],[4.53243645,0.02258706,94.30462201],[4.53243587,0.02258535,94.30405418],[4.5324353,0.02258364,94.30348823],[4.53243472,0.02258193,94.30292417],[4.53243415,0.02258022,94.30236199],[4.53243358,0.02257851,94.30180169],[4.532433,0.0225768,94.30124326],[4.53243243,0.0225751,94.30068672],[4.53243186,0.02257339,94.30013204],[4.53243128,0.02257168,94.29957924],[4.53243071,0.02256997,94.29902832],[4.53243014,0.02256826,94.29847926],[4.53242956,0.02256655,94.29793207],[4.53242899,0.02256485,94.29738675],[4.53242842,0.02256314,94.29684329],[4.53242784,0.02256143,94.2963017],[4.53242727,0.02255972,94.29576197],[4.53242669,0.02255801,94.29522413],[4.53242612,0.0225563,94.29468816],[4.53242554,0.0225546,94.29415407],[4.53242497,0.02255289,94.29362186],[4.5324244,0.02255118,94.29309155],[4.53242382,0.02254947,94.29256313],[4.53242325,0.02254776,94.2920366],[4.53242267,0.02254605,94.29151198],[4.5324221,0.02254435,94.29098926],[4.53242152,0.02254264,94.29046844],[4.53242095,0.02254093,94.28994954],[4.53242037,0.02253922,94.28943256],[4.5324198,0.02253751,94.2889175],[4.53241923,0.02253581,94.28840435],[4.53241865,0.0225341,94.28789314],[4.53241808,0.02253239,94.28738386],[4.5324175,0.02253068,94.28687651],[4.53241693,0.02252897,94.28637111],[4.53241635,0.02252727,94.28586764],[4.53241578,0.02252556,94.28536612],[4.5324152,0.02252385,94.28486656],[4.53241463,0.02252214,94.28436895],[4.53241405,0.02252043,94.28387329],[4.53241348,0.02251873,94.2833796],[4.5324129,0.02251702,94.28288788],[4.53241232,0.02251531,94.28239813],[4.53241175,0.0225136,94.28191035],[4.53241117,0.02251189,94.28142455],[4.5324106,0.02251019,94.28094073],[4.53241002,0.02250848,94.2804589],[4.53240945,0.02250677,94.27997905],[4.53240887,0.02250506,94.27950121],[4.5324083,0.02250335,94.27902536],[4.53240772,0.02250165,94.27855151],[4.53240715,0.02249994,94.27807967],[4.53240657,0.02249823,94.27760984],[4.53240599,0.02249652,94.27714203],[4.53240542,0.02249481,94.27667623],[4.53240484,0.02249311,94.27621246],[4.53240427,0.0224914,94.27575071],[4.53240369,0.02248969,94.275291],[4.53240312,0.02248798,94.27483331],[4.53240254,0.02248628,94.27437767],[4.53240196,0.02248457,94.27392407],[4.53240139,0.02248286,94.27347252],[4.53240081,0.02248115,94.27302302],[4.53240024,0.02247944,94.27257558],[4.53239966,0.02247774,94.27213019],[4.53239908,0.02247603,94.27168687],[4.53239851,0.02247432,94.27124562],[4.53239793,0.02247261,94.27080644],[4.53239736,0.02247091,94.27036933],[4.53239678,0.0224692,94.26993431],[4.5323962,0.02246749,94.26950137],[4.53239563,0.02246578,94.26907052],[4.53239505,0.02246407,94.26864176],[4.53239448,0.02246237,94.26821511],[4.5323939,0.02246066,94.26779055],[4.53239332,0.02245895,94.2673681],[4.53239275,0.02245724,94.26694776],[4.53239217,0.02245554,94.26652954],[4.5323916,0.02245383,94.26611343],[4.53239102,0.02245212,94.26569945],[4.53239044,0.02245041,94.2652876],[4.53238987,0.0224487,94.26487788],[4.53238929,0.022447,94.26447029],[4.53238872,0.02244529,94.26406485],[4.53238814,0.02244358,94.26366155],[4.53238756,0.02244187,94.26326041],[4.53238699,0.02244017,94.26286142],[4.53238641,0.02243846,94.26246458],[4.53238584,0.02243675,94.26206991],[4.53238526,0.02243504,94.26167741],[4.53238468,0.02243333,94.26128708],[4.53238411,0.02243163,94.26089893],[4.53238353,0.02242992,94.26051296],[4.53238296,0.02242821,94.26012917],[4.53238238,0.0224265,94.25974758],[4.5323818,0.02242479,94.25936818],[4.53238123,0.02242309,94.25899098],[4.53238065,0.02242138,94.25861598],[4.53238008,0.02241967,94.2582432],[4.5323795,0.02241796,94.25787262],[4.53237892,0.02241626,94.25750427],[4.53237835,0.02241455,94.25713814],[4.53237777,0.02241284,94.25677423],[4.5323772,0.02241113,94.25641256],[4.53237662,0.02240942,94.25605312],[4.53237604,0.02240772,94.25569591],[4.53237547,0.02240601,94.25534093],[4.53237489,0.0224043,94.25498819],[4.53237432,0.02240259,94.25463769],[4.53237374,0.02240088,94.25428942],[4.53237317,0.02239918,94.25394338],[4.53237259,0.02239747,94.25359959],[4.53237201,0.02239576,94.25325803],[4.53237144,0.02239405,94.25291872],[4.53237086,0.02239234,94.25258165],[4.53237029,0.02239064,94.25224682],[4.53236971,0.02238893,94.25191423],[4.53236914,0.02238722,94.25158389],[4.53236856,0.02238551,94.2512558],[4.53236798,0.0223838,94.25092996],[4.53236741,0.0223821,94.25060636],[4.53236683,0.02238039,94.25028502],[4.53236626,0.02237868,94.24996593],[4.53236568,0.02237697,94.2496491],[4.53236511,0.02237526,94.24933451],[4.53236453,0.02237356,94.24902219],[4.53236396,0.02237185,94.24871212],[4.53236338,0.02237014,94.2484043],[4.5323628,0.02236843,94.24809875],[4.53236223,0.02236672,94.24779546],[4.53236165,0.02236502,94.24749443],[4.53236108,0.02236331,94.24719566],[4.5323605,0.0223616,94.24689916],[4.53235993,0.02235989,94.24660492],[4.53235935,0.02235818,94.24631295],[4.53235878,0.02235648,94.24602324],[4.5323582,0.02235477,94.24573581],[4.53235762,0.02235306,94.24545064],[4.53235705,0.02235135,94.24516774],[4.53235647,0.02234964,94.24488712],[4.5323559,0.02234793,94.24460876],[4.53235532,0.02234623,94.24433268],[4.53235475,0.02234452,94.24405888],[4.53235417,0.02234281,94.24378735],[4.5323536,0.0223411,94.2435181],[4.53235302,0.02233939,94.24325112],[4.53235244,0.02233769,94.24298643],[4.53235187,0.02233598,94.24272401],[4.53235129,0.02233427,94.24246388],[4.53235072,0.02233256,94.24220602],[4.53235014,0.02233085,94.24195045],[4.53234957,0.02232915,94.24169716],[4.53234899,0.02232744,94.24144616],[4.53234842,0.02232573,94.24119744],[4.53234784,0.02232402,94.24095101],[4.53234726,0.02232231,94.24070687],[4.53234669,0.0223206,94.24046501],[4.53234611,0.0223189,94.24022544],[4.53234554,0.02231719,94.23998816],[4.53234496,0.02231548,94.23975318],[4.53234439,0.02231377,94.23952048],[4.53234381,0.02231206,94.23929008],[4.53234324,0.02231036,94.23906197],[4.53234266,0.02230865,94.23883615],[4.53234208,0.02230694,94.23861263],[4.53234151,0.02230523,94.2383914],[4.53234093,0.02230352,94.23817247],[4.53234036,0.02230181,94.23795584],[4.53233978,0.02230011,94.2377415],[4.53233921,0.0222984,94.23752946],[4.53233863,0.02229669,94.23731972],[4.53233806,0.02229498,94.23711229],[4.53233748,0.02229327,94.23690715],[4.5323369,0.02229157,94.23670431],[4.53233633,0.02228986,94.23650377],[4.53233575,0.02228815,94.23630554],[4.53233518,0.02228644,94.23610961],[4.5323346,0.02228473,94.23591599],[4.53233403,0.02228302,94.23572466],[4.53233345,0.02228132,94.23553565],[4.53233287,0.02227961,94.23534894],[4.5323323,0.0222779,94.23516453],[4.53233172,0.02227619,94.23498243],[4.53233115,0.02227448,94.23480264],[4.53233057,0.02227278,94.23462516],[4.53232999,0.02227107,94.23444999],[4.53232942,0.02226936,94.23427712],[4.53232884,0.02226765,94.23410656],[4.53232827,0.02226594,94.23393832],[4.53232769,0.02226424,94.23377238],[4.53232712,0.02226253,94.23360876],[4.53232654,0.02226082,94.23344745],[4.53232596,0.02225911,94.23328844],[4.53232539,0.0222574,94.23313176],[4.53232481,0.02225569,94.23297738],[4.53232424,0.02225399,94.23282532],[4.53232366,0.02225228,94.23267557],[4.53232308,0.02225057,94.23252814],[4.53232251,0.02224886,94.23238302],[4.53232193,0.02224715,94.23224022],[4.53232136,0.02224545,94.23209974],[4.53232078,0.02224374,94.23196157],[4.5323202,0.02224203,94.23182572],[4.53231963,0.02224032,94.23169219],[4.53231905,0.02223861,94.23156098],[4.53231847,0.02223691,94.23143209],[4.5323179,0.0222352,94.23130552],[4.53231732,0.02223349,94.23118127],[4.53231675,0.02223178,94.23105934],[4.53231617,0.02223007,94.23093973],[4.53231559,0.02222837,94.23082245],[4.53231502,0.02222666,94.23070748],[4.53231444,0.02222495,94.23059485],[4.53231386,0.02222324,94.23048453],[4.53231329,0.02222153,94.23037654],[4.53231271,0.02221983,94.23027088],[4.53231214,0.02221812,94.23016754],[4.53231156,0.02221641,94.23006652],[4.53231098,0.0222147,94.22996783],[4.53231041,0.02221299,94.22987147],[4.53230983,0.02221129,94.22977744],[4.53230925,0.02220958,94.22968574],[4.53230868,0.02220787,94.22959636],[4.5323081,0.02220616,94.22950931],[4.53230752,0.02220445,94.22942459],[4.53230695,0.02220275,94.2293422],[4.53230637,0.02220104,94.22926214],[4.53230579,0.02219933,94.22918441],[4.53230522,0.02219762,94.22910901],[4.53230464,0.02219592,94.22903594],[4.53230406,0.02219421,94.2289652],[4.53230348,0.0221925,94.2288968],[4.53230291,0.02219079,94.22883073],[4.53230233,0.02218908,94.22876699],[4.53230175,0.02218738,94.22870558],[4.53230118,0.02218567,94.22864651],[4.5323006,0.02218396,94.22858977],[4.53230002,0.02218225,94.22853537],[4.53229945,0.02218055,94.2284833],[4.53229887,0.02217884,94.22843357],[4.53229829,0.02217713,94.22838617],[4.53229771,0.02217542,94.22834111],[4.53229714,0.02217371,94.22829838],[4.53229656,0.02217201,94.22825799],[4.53229598,0.0221703,94.22821994],[4.5322954,0.02216859,94.22818423],[4.53229483,0.02216688,94.22815085],[4.53229425,0.02216518,94.22811982],[4.53229367,0.02216347,94.22809112],[4.53229309,0.02216176,94.22806476],[4.53229252,0.02216005,94.22804074],[4.53229194,0.02215835,94.22801906],[4.53229136,0.02215664,94.22799972],[4.53229081,0.022155,94.22798338]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004200","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}},{"geometry":{"coordinates":[[4.5323251,0.02214323,94.33152954],[4.53232565,0.02214486,94.33146479],[4.53232622,0.02214657,94.33139778],[4.53232679,0.02214828,94.33133141],[4.53232736,0.02214999,94.33126577],[4.53232793,0.0221517,94.33120093],[4.5323285,0.02215341,94.33113698],[4.53232907,0.02215512,94.33107399],[4.53232964,0.02215683,94.33101205],[4.53233021,0.02215855,94.33095124],[4.53233078,0.02216026,94.33089164],[4.53233135,0.02216197,94.33083333],[4.53233192,0.02216368,94.33077638],[4.53233249,0.02216539,94.33072088],[4.53233306,0.0221671,94.3306669],[4.53233363,0.02216881,94.33061453],[4.5323342,0.02217052,94.33056385],[4.53233477,0.02217223,94.33051492],[4.53233534,0.02217394,94.33046783],[4.53233591,0.02217565,94.33042266],[4.53233648,0.02217736,94.33037949],[4.53233705,0.02217907,94.33033838],[4.53233762,0.02218078,94.33029943],[4.53233819,0.02218249,94.3302627],[4.53233876,0.0221842,94.33022828],[4.53233933,0.02218591,94.33019624],[4.5323399,0.02218762,94.33016665],[4.53234047,0.02218933,94.33013959],[4.53234105,0.02219104,94.33011514],[4.53234162,0.02219275,94.33009338],[4.53234219,0.02219446,94.33007436],[4.53234276,0.02219617,94.33005818],[4.53234334,0.02219788,94.33004491],[4.53234391,0.02219959,94.33003461],[4.53234449,0.02220129,94.33002737],[4.53234506,0.022203,94.33002325],[4.53234564,0.02220471,94.33002233],[4.53234621,0.02220642,94.33002469],[4.53234679,0.02220813,94.33003036],[4.53234737,0.02220984,94.3300393],[4.53234794,0.02221154,94.33005145],[4.53234852,0.02221325,94.33006673],[4.5323491,0.02221496,94.33008506],[4.53234968,0.02221667,94.33010639],[4.53235026,0.02221837,94.33013063],[4.53235084,0.02222008,94.33015772],[4.53235142,0.02222179,94.3301876],[4.532352,0.02222349,94.33022018],[4.53235258,0.0222252,94.3302554],[4.53235316,0.02222691,94.3302932],[4.53235374,0.02222861,94.33033349],[4.53235432,0.02223032,94.33037623],[4.53235491,0.02223203,94.33042133],[4.53235549,0.02223373,94.33046872],[4.53235607,0.02223544,94.33051836],[4.53235665,0.02223714,94.33057015],[4.53235723,0.02223885,94.33062405],[4.53235782,0.02224056,94.33067997],[4.5323584,0.02224226,94.33073786],[4.53235898,0.02224397,94.33079765],[4.53235956,0.02224567,94.33085928],[4.53236015,0.02224738,94.33092268],[4.53236073,0.02224909,94.33098778],[4.53236131,0.02225079,94.33105452],[4.53236189,0.0222525,94.33112284],[4.53236248,0.02225421,94.33119267],[4.53236306,0.02225591,94.33126395],[4.53236364,0.02225762,94.33133662],[4.53236422,0.02225932,94.33141061],[4.5323648,0.02226103,94.33148587],[4.53236538,0.02226274,94.33156232],[4.53236596,0.02226444,94.33163992],[4.53236654,0.02226615,94.3317186],[4.53236712,0.02226786,94.33179829],[4.5323677,0.02226957,94.33187896],[4.53236828,0.02227127,94.33196064],[4.53236886,0.02227298,94.33204336],[4.53236944,0.02227469,94.33212719],[4.53237002,0.02227639,94.33221217],[4.5323706,0.0222781,94.33229835],[4.53237117,0.02227981,94.33238577],[4.53237175,0.02228152,94.33247448],[4.53237233,0.02228323,94.33256454],[4.53237291,0.02228493,94.33265597],[4.53237348,0.02228664,94.33274885],[4.53237406,0.02228835,94.3328432],[4.53237464,0.02229006,94.33293907],[4.53237521,0.02229177,94.33303652],[4.53237579,0.02229348,94.33313559],[4.53237636,0.02229518,94.33323632],[4.53237694,0.02229689,94.33333876],[4.53237751,0.0222986,94.33344295],[4.53237809,0.02230031,94.33354895],[4.53237866,0.02230202,94.33365679],[4.53237924,0.02230373,94.33376653],[4.53237981,0.02230544,94.3338782],[4.53238039,0.02230714,94.33399185],[4.53238096,0.02230885,94.33410752],[4.53238154,0.02231056,94.33422527],[4.53238211,0.02231227,94.33434513],[4.53238269,0.02231398,94.33446714],[4.53238326,0.02231569,94.33459136],[4.53238384,0.0223174,94.33471782],[4.53238441,0.02231911,94.33484657],[4.53238499,0.02232082,94.33497765],[4.53238556,0.02232252,94.3351111],[4.53238614,0.02232423,94.33524698],[4.53238671,0.02232594,94.33538531],[4.53238729,0.02232765,94.33552614],[4.53238786,0.02232936,94.33566952],[4.53238844,0.02233107,94.33581548],[4.53238901,0.02233278,94.33596407],[4.53238959,0.02233449,94.33611533],[4.53239016,0.02233619,94.3362693],[4.53239074,0.0223379,94.33642602],[4.53239131,0.02233961,94.33658554],[4.53239189,0.02234132,94.33674789],[4.53239246,0.02234303,94.33691312],[4.53239304,0.02234474,94.33708126],[4.53239362,0.02234645,94.33725235],[4.53239419,0.02234815,94.33742645],[4.53239477,0.02234986,94.33760358],[4.53239535,0.02235157,94.33778378],[4.53239593,0.02235328,94.33796711],[4.5323965,0.02235499,94.33815358],[4.53239708,0.02235669,94.33834326],[4.53239766,0.0223584,94.33853616],[4.53239824,0.02236011,94.33873234],[4.53239882,0.02236182,94.33893183],[4.5323994,0.02236352,94.33913467],[4.53239997,0.02236523,94.3393409],[4.53240055,0.02236694,94.33955056],[4.53240113,0.02236865,94.33976368],[4.53240172,0.02237035,94.33998031],[4.5324023,0.02237206,94.34020047],[4.53240288,0.02237377,94.34042422],[4.53240346,0.02237547,94.34065157],[4.53240404,0.02237718,94.34088248],[4.53240462,0.02237889,94.34111689],[4.53240521,0.02238059,94.34135476],[4.53240579,0.0223823,94.34159602],[4.53240637,0.022384,94.34184062],[4.53240696,0.02238571,94.3420885],[4.53240754,0.02238742,94.34233962],[4.53240813,0.02238912,94.34259392],[4.53240871,0.02239083,94.34285134],[4.5324093,0.02239253,94.34311183],[4.53240988,0.02239424,94.34337535],[4.53241047,0.02239594,94.34364183],[4.53241105,0.02239765,94.34391122],[4.53241164,0.02239935,94.34418349],[4.53241222,0.02240106,94.34445856],[4.53241281,0.02240276,94.34473641],[4.53241339,0.02240447,94.34501696],[4.53241398,0.02240618,94.34530019],[4.53241456,0.02240788,94.34558602],[4.53241515,0.02240959,94.34587443],[4.53241574,0.02241129,94.34616535],[4.53241632,0.022413,94.34645875],[4.53241691,0.0224147,94.34675456],[4.53241749,0.02241641,94.34705275],[4.53241808,0.02241811,94.34735326],[4.53241866,0.02241982,94.34765606],[4.53241925,0.02242152,94.34796116],[4.53241983,0.02242323,94.34826857],[4.53242041,0.02242494,94.3485783],[4.532421,0.02242664,94.34889037],[4.53242158,0.02242835,94.3492048],[4.53242217,0.02243005,94.34952159],[4.53242275,0.02243176,94.34984077],[4.53242333,0.02243347,94.35016235],[4.53242392,0.02243517,94.35048635],[4.5324245,0.02243688,94.35081278],[4.53242508,0.02243858,94.35114165],[4.53242566,0.02244029,94.35147298],[4.53242625,0.022442,94.35180679],[4.53242683,0.0224437,94.35214309],[4.53242741,0.02244541,94.35248189],[4.53242799,0.02244712,94.35282322],[4.53242858,0.02244882,94.35316708],[4.53242916,0.02245053,94.35351349],[4.53242974,0.02245224,94.35386246],[4.53243032,0.02245394,94.35421401],[4.5324309,0.02245565,94.35456816],[4.53243148,0.02245736,94.35492491],[4.53243206,0.02245906,94.35528429],[4.53243264,0.02246077,94.35564631],[4.53243323,0.02246248,94.35601098],[4.53243381,0.02246419,94.35637832],[4.53243439,0.02246589,94.35674834],[4.53243497,0.0224676,94.35712105],[4.53243555,0.02246931,94.35749648],[4.53243613,0.02247101,94.35787463],[4.53243671,0.02247272,94.35825552],[4.53243729,0.02247443,94.35863916],[4.53243787,0.02247614,94.35902558],[4.53243845,0.02247784,94.35941477],[4.53243903,0.02247955,94.35980677],[4.53243961,0.02248126,94.36020157],[4.53244019,0.02248297,94.3605992],[4.53244076,0.02248467,94.36099967],[4.53244134,0.02248638,94.361403],[4.53244192,0.02248809,94.36180919],[4.5324425,0.0224898,94.36221827],[4.53244308,0.02249151,94.36263024],[4.53244366,0.02249321,94.36304513],[4.53244424,0.02249492,94.36346294],[4.53244482,0.02249663,94.36388369],[4.5324454,0.02249834,94.36430739],[4.53244597,0.02250005,94.36473406],[4.53244655,0.02250175,94.36516371],[4.53244713,0.02250346,94.36559636],[4.53244771,0.02250517,94.36603201],[4.53244829,0.02250688,94.36647069],[4.53244886,0.02250859,94.36691241],[4.53244944,0.02251029,94.36735718],[4.53245002,0.022512,94.36780501],[4.5324506,0.02251371,94.36825593],[4.53245117,0.02251542,94.36870993],[4.53245175,0.02251713,94.36916705],[4.53245233,0.02251883,94.36962728],[4.53245291,0.02252054,94.37009065],[4.53245348,0.02252225,94.37055717],[4.53245406,0.02252396,94.37102685],[4.53245464,0.02252567,94.37149971],[4.53245522,0.02252738,94.37197576],[4.53245579,0.02252909,94.37245501],[4.53245637,0.02253079,94.37293748],[4.53245695,0.0225325,94.37342318],[4.53245752,0.02253421,94.37391212],[4.5324581,0.02253592,94.37440433],[4.53245868,0.02253763,94.37489981],[4.53245925,0.02253934,94.37539857],[4.53245983,0.02254105,94.37590064],[4.53246041,0.02254275,94.37640601],[4.53246098,0.02254446,94.37691467],[4.53246156,0.02254617,94.37742664],[4.53246214,0.02254788,94.37794189],[4.53246271,0.02254959,94.37846042],[4.53246329,0.0225513,94.37898223],[4.53246386,0.02255301,94.37950731],[4.53246444,0.02255472,94.38003566],[4.53246502,0.02255642,94.38056727],[4.53246559,0.02255813,94.38110213],[4.53246617,0.02255984,94.38164024],[4.53246674,0.02256155,94.3821816],[4.53246732,0.02256326,94.3827262],[4.53246789,0.02256497,94.38327403],[4.53246847,0.02256668,94.38382509],[4.53246904,0.02256839,94.38437937],[4.53246962,0.0225701,94.38493687],[4.53247019,0.02257181,94.38549758],[4.53247077,0.02257352,94.3860615],[4.53247134,0.02257523,94.38662861],[4.53247192,0.02257694,94.38719893],[4.53247249,0.02257865,94.38777243],[4.53247307,0.02258036,94.38834912],[4.53247364,0.02258207,94.38892898],[4.53247421,0.02258378,94.38951202],[4.53247479,0.02258549,94.39009822],[4.53247536,0.0225872,94.39068759],[4.53247593,0.02258891,94.39128011],[4.5324765,0.02259062,94.39187578],[4.53247708,0.02259233,94.39247459],[4.53247765,0.02259404,94.39307654],[4.53247822,0.02259575,94.39368162],[4.53247879,0.02259746,94.39428982],[4.53247936,0.02259917,94.39490116],[4.53247993,0.02260088,94.39551567],[4.5324805,0.02260259,94.39613343],[4.53248108,0.0226043,94.39675449],[4.53248165,0.02260601,94.39737892],[4.53248222,0.02260772,94.39800678],[4.53248279,0.02260943,94.39863813],[4.53248336,0.02261114,94.39927303],[4.53248393,0.02261285,94.39991154],[4.5324845,0.02261456,94.40055373],[4.53248507,0.02261628,94.40119966],[4.53248564,0.02261799,94.4018494],[4.53248621,0.0226197,94.40250299],[4.53248678,0.02262141,94.40316051],[4.53248735,0.02262312,94.403822],[4.53248792,0.02262483,94.40448753],[4.53248849,0.02262654,94.40515715],[4.53248906,0.02262825,94.40583093],[4.53248963,0.02262996,94.40650892],[4.5324902,0.02263167,94.40719118],[4.53249077,0.02263338,94.40787777],[4.53249134,0.02263509,94.40856874],[4.53249191,0.0226368,94.40926416],[4.53249249,0.02263851,94.4099641],[4.53249306,0.02264022,94.41066859],[4.53249363,0.02264193,94.41137772],[4.5324942,0.02264364,94.41209153],[4.53249478,0.02264535,94.4128101],[4.53249535,0.02264706,94.41353347],[4.53249592,0.02264877,94.41426171],[4.5324965,0.02265048,94.41499489],[4.53249707,0.02265219,94.41573306],[4.53249765,0.02265389,94.41647629],[4.53249822,0.0226556,94.41722465],[4.5324988,0.02265731,94.41797818],[4.53249937,0.02265902,94.41873694],[4.53249995,0.02266073,94.41950087],[4.53250053,0.02266244,94.4202699],[4.53250111,0.02266414,94.42104395],[4.53250169,0.02266585,94.42182295],[4.53250226,0.02266756,94.42260682],[4.53250284,0.02266927,94.42339548],[4.53250342,0.02267097,94.42418886],[4.532504,0.02267268,94.42498687],[4.53250458,0.02267439,94.42578945],[4.53250516,0.02267609,94.42659651],[4.53250574,0.0226778,94.42740799],[4.53250632,0.02267951,94.42822378],[4.5325069,0.02268122,94.42904383],[4.53250748,0.02268292,94.42986805],[4.53250806,0.02268463,94.43069635],[4.53250864,0.02268634,94.43152867],[4.53250922,0.02268804,94.43236491],[4.5325098,0.02268975,94.43320501],[4.53251038,0.02269146,94.43404886],[4.53251096,0.02269316,94.4348964],[4.53251154,0.02269487,94.43574754],[4.53251212,0.02269658,94.43660219],[4.5325127,0.02269829,94.43746027],[4.53251328,0.02269999,94.4383217],[4.53251385,0.0227017,94.43918638],[4.53251443,0.02270341,94.44005424],[4.53251501,0.02270512,94.44092518],[4.53251558,0.02270682,94.44179912],[4.53251616,0.02270853,94.44267596],[4.53251674,0.02271024,94.44355562],[4.53251731,0.02271195,94.444438],[4.53251789,0.02271366,94.44532304],[4.53251846,0.02271537,94.44621076],[4.53251903,0.02271708,94.44710119],[4.5325196,0.02271879,94.44799439],[4.53252018,0.02272049,94.44889039],[4.53252075,0.0227222,94.44978924],[4.53252132,0.02272391,94.45069099],[4.53252189,0.02272562,94.45159567],[4.53252246,0.02272733,94.45250334],[4.53252303,0.02272904,94.45341403],[4.5325236,0.02273076,94.45432779],[4.53252416,0.02273247,94.45524467],[4.53252473,0.02273418,94.45616467],[4.5325253,0.02273589,94.45708774],[4.53252587,0.0227376,94.45801387],[4.53252643,0.02273931,94.458943],[4.532527,0.02274102,94.4598751],[4.53252757,0.02274273,94.46081015],[4.53252813,0.02274444,94.46174809],[4.5325287,0.02274616,94.46268891],[4.53252926,0.02274787,94.46363255],[4.53252983,0.02274958,94.464579],[4.53253039,0.02275129,94.46552821],[4.53253096,0.022753,94.46648015],[4.53253152,0.02275471,94.4674348],[4.53253208,0.02275643,94.4683921],[4.53253265,0.02275814,94.46935205],[4.53253321,0.02275985,94.47031459],[4.53253378,0.02276156,94.4712797],[4.53253434,0.02276327,94.47224736],[4.5325349,0.02276499,94.47321752],[4.53253547,0.0227667,94.47419016],[4.53253603,0.02276841,94.47516525],[4.53253659,0.02277012,94.47614277],[4.53253715,0.02277184,94.47712267],[4.53253772,0.02277355,94.47810494],[4.53253828,0.02277526,94.47908955],[4.53253884,0.02277697,94.48007647],[4.53253941,0.02277868,94.4810657],[4.53253997,0.0227804,94.48205732],[4.53254053,0.02278211,94.48305147],[4.5325411,0.02278382,94.48404826],[4.53254166,0.02278553,94.48504781],[4.53254222,0.02278724,94.48605025],[4.53254279,0.02278896,94.4870557],[4.53254335,0.02279067,94.4880643],[4.53254392,0.02279238,94.48907617],[4.53254449,0.02279409,94.49009145],[4.53254505,0.0227958,94.49111027],[4.53254562,0.02279751,94.49213276],[4.53254619,0.02279922,94.49315907],[4.53254676,0.02280093,94.49418934],[4.53254733,0.02280264,94.4952237],[4.5325479,0.02280435,94.4962623],[4.53254848,0.02280606,94.49730528],[4.53254905,0.02280777,94.49835279],[4.53254963,0.02280947,94.49940496],[4.5325502,0.02281118,94.50046169],[4.53255078,0.02281289,94.50152257],[4.53255136,0.02281459,94.50258723],[4.53255194,0.0228163,94.50365525],[4.53255252,0.02281801,94.50472624],[4.5325531,0.02281971,94.50579977],[4.53255368,0.02282142,94.50687546],[4.53255427,0.02282312,94.50795287],[4.53255485,0.02282483,94.5090316],[4.53255543,0.02282653,94.51011122],[4.53255601,0.02282824,94.51119131],[4.5325566,0.02282994,94.51227144],[4.53255718,0.02283165,94.51335118],[4.53255776,0.02283335,94.51443011],[4.53255834,0.02283506,94.51550778],[4.53255893,0.02283677,94.51658377],[4.53255951,0.02283847,94.51765762],[4.53256009,0.02284018,94.5187289],[4.53256067,0.02284188,94.51979716],[4.53256124,0.02284359,94.52086195],[4.53256182,0.0228453,94.52192284],[4.5325624,0.02284701,94.52297937],[4.53256297,0.02284871,94.5240311],[4.53256354,0.02285042,94.52507758],[4.53256412,0.02285213,94.52611834],[4.53256469,0.02285384,94.52715295],[4.53256525,0.02285555,94.52818115],[4.53256582,0.02285726,94.52920352],[4.53256639,0.02285897,94.53022085],[4.53256695,0.02286068,94.53123396],[4.53256751,0.02286239,94.53224365],[4.53256808,0.02286411,94.53325074],[4.53256864,0.02286582,94.53425604],[4.5325692,0.02286753,94.53526039],[4.53256977,0.02286924,94.53626462],[4.53257033,0.02287095,94.53726955],[4.5325709,0.02287266,94.53827604],[4.53257147,0.02287437,94.53928491],[4.53257204,0.02287608,94.54029681],[4.53257261,0.02287779,94.54131149],[4.53257318,0.0228795,94.54232848],[4.53257375,0.02288121,94.5433473],[4.53257433,0.02288292,94.54436747],[4.5325749,0.02288462,94.54538852],[4.53257548,0.02288633,94.54640997],[4.53257606,0.02288804,94.54743132],[4.53257663,0.02288974,94.5484521],[4.53257721,0.02289145,94.54947182],[4.53257779,0.02289316,94.55048998],[4.53257837,0.02289486,94.5515061],[4.53257895,0.02289657,94.55251968],[4.53257953,0.02289827,94.55353023],[4.53258011,0.02289998,94.55453726],[4.53258069,0.02290169,94.55554027],[4.53258127,0.02290339,94.55653876],[4.53258184,0.0229051,94.55753225],[4.53258242,0.02290681,94.55852023],[4.532583,0.02290851,94.5595022],[4.53258357,0.02291022,94.56047769],[4.53258415,0.02291193,94.56144649],[4.53258472,0.02291363,94.56240866],[4.53258529,0.02291534,94.56336428],[4.53258586,0.02291705,94.56431343],[4.53258644,0.02291876,94.5652562],[4.53258701,0.02292047,94.56619267],[4.53258758,0.02292218,94.56712292],[4.53258814,0.02292389,94.56804704],[4.53258871,0.0229256,94.56896512],[4.53258928,0.02292731,94.56987724],[4.53258985,0.02292902,94.57078348],[4.53259041,0.02293073,94.57168394],[4.53259098,0.02293244,94.5725787],[4.53259155,0.02293415,94.57346786],[4.53259211,0.02293586,94.57435149],[4.53259268,0.02293757,94.57522969],[4.53259324,0.02293928,94.57610255],[4.53259381,0.02294099,94.57697016],[4.53259437,0.0229427,94.5778326],[4.53259494,0.02294441,94.57868999],[4.5325955,0.02294612,94.57954245],[4.53259607,0.02294783,94.58039009],[4.53259663,0.02294954,94.58123302],[4.5325972,0.02295125,94.58207136],[4.53259776,0.02295297,94.58290521],[4.53259833,0.02295468,94.5837347],[4.53259889,0.02295639,94.58455992],[4.53259946,0.0229581,94.58538087],[4.53260003,0.02295981,94.58619743],[4.5326006,0.02296152,94.5870095],[4.53260116,0.02296323,94.58781695],[4.53260173,0.02296493,94.58861967],[4.5326023,0.02296664,94.58941753],[4.53260287,0.02296835,94.59021043],[4.53260344,0.02297006,94.59099824],[4.53260401,0.02297177,94.59178085],[4.53260458,0.02297348,94.59255813],[4.53260515,0.02297519,94.59332999],[4.53260571,0.0229769,94.59409629],[4.53260628,0.02297861,94.59485693],[4.53260686,0.02298032,94.59561179],[4.53260743,0.02298202,94.59636075],[4.532608,0.02298373,94.59710371],[4.53260857,0.02298544,94.59784054],[4.53260914,0.02298715,94.59857114],[4.53260971,0.02298886,94.59929539],[4.53261028,0.02299057,94.60001321],[4.53261085,0.02299228,94.60072464],[4.53261142,0.02299399,94.60142975],[4.53261199,0.02299569,94.60212861],[4.53261257,0.0229974,94.6028213],[4.53261314,0.02299911,94.60350788],[4.53261371,0.02300082,94.60418843],[4.53261428,0.02300253,94.60486302],[4.53261485,0.02300424,94.60553172],[4.53261542,0.02300595,94.60619462],[4.53261599,0.02300766,94.60685182],[4.53261656,0.02300936,94.60750347],[4.53261714,0.02301107,94.60814972],[4.53261771,0.02301278,94.60879071],[4.53261828,0.02301449,94.60942658],[4.53261885,0.0230162,94.61005748],[4.53261942,0.02301791,94.61068356],[4.53261999,0.02301962,94.61130495],[4.53262056,0.02302133,94.6119218],[4.53262113,0.02302304,94.61253425],[4.5326217,0.02302475,94.61314244],[4.53262227,0.02302646,94.61374651],[4.53262284,0.02302817,94.6143466],[4.53262342,0.02302988,94.61494285],[4.53262399,0.02303159,94.6155354],[4.53262456,0.0230333,94.61612437],[4.53262513,0.02303501,94.61670992],[4.5326257,0.02303672,94.61729217],[4.53262627,0.02303843,94.61787125],[4.53262684,0.02304013,94.61844729],[4.53262741,0.02304184,94.61902038],[4.53262798,0.02304355,94.61959063],[4.53262855,0.02304526,94.62015813],[4.53262912,0.02304697,94.62072299],[4.5326297,0.02304868,94.6212853],[4.53263027,0.02305039,94.62184517],[4.53263084,0.0230521,94.62240269],[4.53263141,0.02305381,94.62295797],[4.53263198,0.02305552,94.6235111],[4.53263255,0.02305724,94.62406218],[4.53263312,0.02305895,94.62461131],[4.53263369,0.02306066,94.6251586],[4.53263426,0.02306237,94.62570414],[4.53263483,0.02306408,94.62624803],[4.53263541,0.02306579,94.62679036],[4.53263598,0.0230675,94.62733125],[4.53263655,0.02306921,94.62787079],[4.53263712,0.02307092,94.62840907],[4.53263769,0.02307263,94.62894619],[4.53263826,0.02307434,94.62948227],[4.53263883,0.02307605,94.63001738],[4.5326394,0.02307776,94.63055164],[4.53263997,0.02307947,94.63108514],[4.53264054,0.02308119,94.63161798],[4.53264111,0.0230829,94.63215027],[4.53264168,0.02308461,94.63268215],[4.53264225,0.02308632,94.63321376],[4.53264282,0.02308803,94.63374521],[4.53264339,0.02308974,94.63427664],[4.53264396,0.02309145,94.63480818],[4.53264453,0.02309317,94.63533996],[4.53264509,0.02309488,94.6358721],[4.53264566,0.02309659,94.63640473],[4.53264623,0.0230983,94.63693798],[4.5326468,0.02310001,94.63747195],[4.53264737,0.02310172,94.63800678],[4.53264794,0.02310344,94.63854256],[4.53264851,0.02310515,94.63907938],[4.53264908,0.02310686,94.63961735],[4.53264965,0.02310857,94.64015657],[4.53265022,0.02311029,94.64069714],[4.53265078,0.023112,94.64123915],[4.53265135,0.02311371,94.6417827],[4.53265192,0.02311542,94.6423279],[4.53265249,0.02311713,94.64287483],[4.53265306,0.02311885,94.6434236],[4.53265363,0.02312056,94.64397431],[4.5326542,0.02312227,94.64452704],[4.53265477,0.02312398,94.64508191],[4.53265534,0.0231257,94.645639],[4.5326559,0.02312741,94.64619841],[4.53265647,0.02312912,94.64676024],[4.53265704,0.02313084,94.64732458],[4.53265761,0.02313255,94.64789154],[4.53265818,0.02313426,94.6484612],[4.53265875,0.02313597,94.64903366],[4.53265932,0.02313769,94.64960904],[4.53265988,0.0231394,94.65018747],[4.53266045,0.02314111,94.65076914],[4.53266102,0.02314283,94.6513542],[4.53266159,0.02314454,94.65194282],[4.53266216,0.02314625,94.65253516],[4.53266272,0.02314797,94.65313139],[4.53266329,0.02314968,94.65373168],[4.53266386,0.02315139,94.6543362],[4.53266443,0.02315311,94.6549451],[4.532665,0.02315482,94.65555855],[4.53266556,0.02315653,94.65617672],[4.53266613,0.02315825,94.65679978],[4.5326667,0.02315996,94.65742789],[4.53266727,0.02316167,94.65806122],[4.53266784,0.02316339,94.65869993],[4.5326684,0.0231651,94.65934419],[4.53266897,0.02316682,94.65999417],[4.53266954,0.02316853,94.66065003],[4.5326701,0.02317024,94.66131195],[4.53267067,0.02317196,94.66198008],[4.53267124,0.02317367,94.66265461],[4.53267181,0.02317539,94.66333568],[4.53267237,0.0231771,94.66402349],[4.53267294,0.02317882,94.66471819],[4.53267351,0.02318053,94.66541995],[4.53267407,0.02318225,94.66612894],[4.53267464,0.02318396,94.66684534],[4.53267521,0.02318567,94.66756931],[4.53267577,0.02318739,94.66830102],[4.53267634,0.0231891,94.66904066],[4.53267691,0.02319082,94.66978838],[4.53267747,0.02319253,94.67054431],[4.53267804,0.02319425,94.67130835],[4.53267861,0.02319596,94.67208033],[4.53267917,0.02319768,94.6728601],[4.53267974,0.02319939,94.67364753]],"type":"LineString"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004200","id":1,"type":"shoulder","predecessorId":1}},{"geometry":{"coordinates":[[4.53233752,0.02213896,94.33152954],[4.53233808,0.02214059,94.33146479],[4.53233866,0.0221423,94.33139778],[4.53233923,0.02214401,94.33133141],[4.53233981,0.02214572,94.33126577],[4.53234039,0.02214743,94.33120093],[4.53234096,0.02214913,94.33113698],[4.53234154,0.02215084,94.33107399],[4.53234212,0.02215255,94.33101205],[4.5323427,0.02215426,94.33095124],[4.53234327,0.02215597,94.33089164],[4.53234385,0.02215767,94.33083333],[4.53234443,0.02215938,94.33077638],[4.532345,0.02216109,94.33072088],[4.53234558,0.0221628,94.3306669],[4.53234616,0.02216451,94.33061453],[4.53234673,0.02216621,94.33056385],[4.53234731,0.02216792,94.33051492],[4.53234789,0.02216963,94.33046783],[4.53234846,0.02217134,94.33042266],[4.53234904,0.02217305,94.33037949],[4.53234962,0.02217475,94.33033838],[4.53235019,0.02217646,94.33029943],[4.53235077,0.02217817,94.3302627],[4.53235135,0.02217988,94.33022828],[4.53235192,0.02218159,94.33019624],[4.5323525,0.02218329,94.33016665],[4.53235308,0.022185,94.33013959],[4.53235366,0.02218671,94.33011514],[4.53235423,0.02218842,94.33009338],[4.53235481,0.02219013,94.33007436],[4.53235539,0.02219183,94.33005818],[4.53235596,0.02219354,94.33004491],[4.53235654,0.02219525,94.33003461],[4.53235712,0.02219696,94.33002737],[4.5323577,0.02219867,94.33002325],[4.53235827,0.02220037,94.33002233],[4.53235885,0.02220208,94.33002469],[4.53235943,0.02220379,94.33003036],[4.53236,0.0222055,94.3300393],[4.53236058,0.02220721,94.33005145],[4.53236116,0.02220891,94.33006673],[4.53236174,0.02221062,94.33008506],[4.53236232,0.02221233,94.33010639],[4.53236289,0.02221404,94.33013063],[4.53236347,0.02221574,94.33015772],[4.53236405,0.02221745,94.3301876],[4.53236463,0.02221916,94.33022018],[4.53236521,0.02222087,94.3302554],[4.53236578,0.02222257,94.3302932],[4.53236636,0.02222428,94.33033349],[4.53236694,0.02222599,94.33037623],[4.53236752,0.0222277,94.33042133],[4.53236809,0.0222294,94.33046872],[4.53236867,0.02223111,94.33051836],[4.53236925,0.02223282,94.33057015],[4.53236983,0.02223453,94.33062405],[4.5323704,0.02223624,94.33067997],[4.53237098,0.02223794,94.33073786],[4.53237156,0.02223965,94.33079765],[4.53237214,0.02224136,94.33085928],[4.53237271,0.02224307,94.33092268],[4.53237329,0.02224478,94.33098778],[4.53237387,0.02224648,94.33105452],[4.53237444,0.02224819,94.33112284],[4.53237502,0.0222499,94.33119267],[4.5323756,0.02225161,94.33126395],[4.53237617,0.02225332,94.33133662],[4.53237675,0.02225502,94.33141061],[4.53237733,0.02225673,94.33148587],[4.5323779,0.02225844,94.33156232],[4.53237848,0.02226015,94.33163992],[4.53237905,0.02226186,94.3317186],[4.53237963,0.02226357,94.33179829],[4.5323802,0.02226528,94.33187896],[4.53238078,0.02226699,94.33196064],[4.53238135,0.02226869,94.33204336],[4.53238193,0.0222704,94.33212719],[4.5323825,0.02227211,94.33221217],[4.53238308,0.02227382,94.33229835],[4.53238365,0.02227553,94.33238577],[4.53238423,0.02227724,94.33247448],[4.5323848,0.02227895,94.33256454],[4.53238538,0.02228066,94.33265597],[4.53238595,0.02228237,94.33274885],[4.53238653,0.02228407,94.3328432],[4.5323871,0.02228578,94.33293907],[4.53238767,0.02228749,94.33303652],[4.53238825,0.0222892,94.33313559],[4.53238882,0.02229091,94.33323632],[4.5323894,0.02229262,94.33333876],[4.53238997,0.02229433,94.33344295],[4.53239055,0.02229604,94.33354895],[4.53239112,0.02229775,94.33365679],[4.5323917,0.02229945,94.33376653],[4.53239227,0.02230116,94.3338782],[4.53239285,0.02230287,94.33399185],[4.53239342,0.02230458,94.33410752],[4.532394,0.02230629,94.33422527],[4.53239458,0.022308,94.33434513],[4.53239515,0.02230971,94.33446714],[4.53239573,0.02231142,94.33459136],[4.5323963,0.02231313,94.33471782],[4.53239688,0.02231483,94.33484657],[4.53239745,0.02231654,94.33497765],[4.53239803,0.02231825,94.3351111],[4.53239861,0.02231996,94.33524698],[4.53239918,0.02232167,94.33538531],[4.53239976,0.02232338,94.33552614],[4.53240033,0.02232509,94.33566952],[4.53240091,0.02232679,94.33581548],[4.53240149,0.0223285,94.33596407],[4.53240206,0.02233021,94.33611533],[4.53240264,0.02233192,94.3362693],[4.53240322,0.02233363,94.33642602],[4.53240379,0.02233534,94.33658554],[4.53240437,0.02233704,94.33674789],[4.53240495,0.02233875,94.33691312],[4.53240552,0.02234046,94.33708126],[4.5324061,0.02234217,94.33725235],[4.53240668,0.02234388,94.33742645],[4.53240726,0.02234559,94.33760358],[4.53240783,0.02234729,94.33778378],[4.53240841,0.022349,94.33796711],[4.53240899,0.02235071,94.33815358],[4.53240957,0.02235242,94.33834326],[4.53241015,0.02235413,94.33853616],[4.53241072,0.02235583,94.33873234],[4.5324113,0.02235754,94.33893183],[4.53241188,0.02235925,94.33913467],[4.53241246,0.02236096,94.3393409],[4.53241304,0.02236267,94.33955056],[4.53241362,0.02236437,94.33976368],[4.53241419,0.02236608,94.33998031],[4.53241477,0.02236779,94.34020047],[4.53241535,0.0223695,94.34042422],[4.53241593,0.0223712,94.34065157],[4.53241651,0.02237291,94.34088248],[4.53241709,0.02237462,94.34111689],[4.53241767,0.02237633,94.34135476],[4.53241825,0.02237803,94.34159602],[4.53241883,0.02237974,94.34184062],[4.53241941,0.02238145,94.3420885],[4.53241999,0.02238316,94.34233962],[4.53242057,0.02238486,94.34259392],[4.53242115,0.02238657,94.34285134],[4.53242173,0.02238828,94.34311183],[4.53242231,0.02238999,94.34337535],[4.53242289,0.02239169,94.34364183],[4.53242347,0.0223934,94.34391122],[4.53242405,0.02239511,94.34418349],[4.53242463,0.02239682,94.34445856],[4.53242521,0.02239852,94.34473641],[4.53242579,0.02240023,94.34501696],[4.53242637,0.02240194,94.34530019],[4.53242694,0.02240365,94.34558602],[4.53242752,0.02240536,94.34587443],[4.5324281,0.02240706,94.34616535],[4.53242868,0.02240877,94.34645875],[4.53242926,0.02241048,94.34675456],[4.53242984,0.02241219,94.34705275],[4.53243041,0.0224139,94.34735326],[4.53243099,0.02241561,94.34765606],[4.53243157,0.02241731,94.34796116],[4.53243214,0.02241902,94.34826857],[4.53243272,0.02242073,94.3485783],[4.5324333,0.02242244,94.34889037],[4.53243387,0.02242415,94.3492048],[4.53243445,0.02242586,94.34952159],[4.53243502,0.02242757,94.34984077],[4.5324356,0.02242928,94.35016235],[4.53243618,0.02243099,94.35048635],[4.53243675,0.02243269,94.35081278],[4.53243732,0.0224344,94.35114165],[4.5324379,0.02243611,94.35147298],[4.53243847,0.02243782,94.35180679],[4.53243905,0.02243953,94.35214309],[4.53243962,0.02244124,94.35248189],[4.5324402,0.02244295,94.35282322],[4.53244077,0.02244466,94.35316708],[4.53244134,0.02244637,94.35351349],[4.53244192,0.02244808,94.35386246],[4.53244249,0.02244979,94.35421401],[4.53244306,0.0224515,94.35456816],[4.53244364,0.02245321,94.35492491],[4.53244421,0.02245492,94.35528429],[4.53244478,0.02245663,94.35564631],[4.53244536,0.02245834,94.35601098],[4.53244593,0.02246005,94.35637832],[4.5324465,0.02246176,94.35674834],[4.53244707,0.02246347,94.35712105],[4.53244765,0.02246518,94.35749648],[4.53244822,0.02246689,94.35787463],[4.53244879,0.0224686,94.35825552],[4.53244937,0.02247031,94.35863916],[4.53244994,0.02247202,94.35902558],[4.53245051,0.02247373,94.35941477],[4.53245108,0.02247544,94.35980677],[4.53245166,0.02247715,94.36020157],[4.53245223,0.02247886,94.3605992],[4.5324528,0.02248057,94.36099967],[4.53245338,0.02248228,94.361403],[4.53245395,0.02248399,94.36180919],[4.53245452,0.0224857,94.36221827],[4.53245509,0.02248741,94.36263024],[4.53245567,0.02248912,94.36304513],[4.53245624,0.02249083,94.36346294],[4.53245681,0.02249254,94.36388369],[4.53245739,0.02249425,94.36430739],[4.53245796,0.02249596,94.36473406],[4.53245854,0.02249767,94.36516371],[4.53245911,0.02249938,94.36559636],[4.53245968,0.02250109,94.36603201],[4.53246026,0.0225028,94.36647069],[4.53246083,0.02250451,94.36691241],[4.5324614,0.02250622,94.36735718],[4.53246198,0.02250793,94.36780501],[4.53246255,0.02250964,94.36825593],[4.53246313,0.02251135,94.36870993],[4.5324637,0.02251306,94.36916705],[4.53246427,0.02251477,94.36962728],[4.53246485,0.02251648,94.37009065],[4.53246542,0.02251819,94.37055717],[4.532466,0.0225199,94.37102685],[4.53246657,0.02252161,94.37149971],[4.53246715,0.02252332,94.37197576],[4.53246772,0.02252503,94.37245501],[4.5324683,0.02252674,94.37293748],[4.53246887,0.02252845,94.37342318],[4.53246945,0.02253016,94.37391212],[4.53247002,0.02253187,94.37440433],[4.5324706,0.02253358,94.37489981],[4.53247117,0.02253529,94.37539857],[4.53247175,0.022537,94.37590064],[4.53247232,0.02253871,94.37640601],[4.5324729,0.02254042,94.37691467],[4.53247347,0.02254213,94.37742664],[4.53247405,0.02254384,94.37794189],[4.53247462,0.02254554,94.37846042],[4.5324752,0.02254725,94.37898223],[4.53247577,0.02254896,94.37950731],[4.53247635,0.02255067,94.38003566],[4.53247692,0.02255238,94.38056727],[4.5324775,0.02255409,94.38110213],[4.53247808,0.0225558,94.38164024],[4.53247865,0.02255751,94.3821816],[4.53247923,0.02255922,94.3827262],[4.5324798,0.02256093,94.38327403],[4.53248038,0.02256264,94.38382509],[4.53248095,0.02256435,94.38437937],[4.53248153,0.02256606,94.38493687],[4.5324821,0.02256777,94.38549758],[4.53248268,0.02256948,94.3860615],[4.53248326,0.02257119,94.38662861],[4.53248383,0.0225729,94.38719893],[4.53248441,0.02257461,94.38777243],[4.53248498,0.02257632,94.38834912],[4.53248556,0.02257803,94.38892898],[4.53248613,0.02257974,94.38951202],[4.5324867,0.02258145,94.39009822],[4.53248728,0.02258316,94.39068759],[4.53248785,0.02258487,94.39128011],[4.53248843,0.02258658,94.39187578],[4.532489,0.02258829,94.39247459],[4.53248957,0.02259,94.39307654],[4.53249015,0.02259171,94.39368162],[4.53249072,0.02259342,94.39428982],[4.53249129,0.02259513,94.39490116],[4.53249187,0.02259684,94.39551567],[4.53249244,0.02259855,94.39613343],[4.53249301,0.02260026,94.39675449],[4.53249358,0.02260197,94.39737892],[4.53249416,0.02260368,94.39800678],[4.53249473,0.02260539,94.39863813],[4.5324953,0.0226071,94.39927303],[4.53249587,0.02260881,94.39991154],[4.53249645,0.02261052,94.40055373],[4.53249702,0.02261223,94.40119966],[4.53249759,0.02261394,94.4018494],[4.53249816,0.02261565,94.40250299],[4.53249874,0.02261736,94.40316051],[4.53249931,0.02261907,94.403822],[4.53249988,0.02262078,94.40448753],[4.53250045,0.02262249,94.40515715],[4.53250103,0.0226242,94.40583093],[4.5325016,0.02262591,94.40650892],[4.53250217,0.02262762,94.40719118],[4.53250275,0.02262933,94.40787777],[4.53250332,0.02263104,94.40856874],[4.53250389,0.02263275,94.40926416],[4.53250447,0.02263446,94.4099641],[4.53250504,0.02263617,94.41066859],[4.53250561,0.02263788,94.41137772],[4.53250619,0.02263959,94.41209153],[4.53250676,0.0226413,94.4128101],[4.53250734,0.02264301,94.41353347],[4.53250791,0.02264472,94.41426171],[4.53250848,0.02264643,94.41499489],[4.53250906,0.02264814,94.41573306],[4.53250963,0.02264985,94.41647629],[4.53251021,0.02265156,94.41722465],[4.53251078,0.02265326,94.41797818],[4.53251135,0.02265497,94.41873694],[4.53251193,0.02265668,94.41950087],[4.5325125,0.02265839,94.4202699],[4.53251307,0.0226601,94.42104395],[4.53251364,0.02266181,94.42182295],[4.53251422,0.02266352,94.42260682],[4.53251479,0.02266523,94.42339548],[4.53251536,0.02266694,94.42418886],[4.53251593,0.02266865,94.42498687],[4.5325165,0.02267036,94.42578945],[4.53251707,0.02267207,94.42659651],[4.53251764,0.02267378,94.42740799],[4.53251821,0.02267549,94.42822378],[4.53251878,0.0226772,94.42904383],[4.53251936,0.02267891,94.42986805],[4.53251993,0.02268062,94.43069635],[4.5325205,0.02268233,94.43152867],[4.53252107,0.02268404,94.43236491],[4.53252164,0.02268575,94.43320501],[4.53252221,0.02268746,94.43404886],[4.53252278,0.02268917,94.4348964],[4.53252335,0.02269088,94.43574754],[4.53252392,0.02269259,94.43660219],[4.5325245,0.0226943,94.43746027],[4.53252507,0.02269601,94.4383217],[4.53252564,0.02269772,94.43918638],[4.53252622,0.02269943,94.44005424],[4.53252679,0.02270114,94.44092518],[4.53252737,0.02270285,94.44179912],[4.53252794,0.02270456,94.44267596],[4.53252852,0.02270626,94.44355562],[4.53252909,0.02270797,94.444438],[4.53252967,0.02270968,94.44532304],[4.53253024,0.02271139,94.44621076],[4.53253082,0.0227131,94.44710119],[4.5325314,0.02271481,94.44799439],[4.53253197,0.02271651,94.44889039],[4.53253255,0.02271822,94.44978924],[4.53253312,0.02271993,94.45069099],[4.5325337,0.02272164,94.45159567],[4.53253428,0.02272334,94.45250334],[4.53253485,0.02272505,94.45341403],[4.53253543,0.02272676,94.45432779],[4.53253601,0.02272847,94.45524467],[4.53253658,0.02273018,94.45616467],[4.53253716,0.02273188,94.45708774],[4.53253774,0.02273359,94.45801387],[4.53253831,0.0227353,94.458943],[4.53253889,0.02273701,94.4598751],[4.53253947,0.02273871,94.46081015],[4.53254004,0.02274042,94.46174809],[4.53254062,0.02274213,94.46268891],[4.5325412,0.02274384,94.46363255],[4.53254177,0.02274554,94.464579],[4.53254235,0.02274725,94.46552821],[4.53254293,0.02274896,94.46648015],[4.5325435,0.02275067,94.4674348],[4.53254408,0.02275238,94.4683921],[4.53254465,0.02275408,94.46935205],[4.53254523,0.02275579,94.47031459],[4.5325458,0.0227575,94.4712797],[4.53254638,0.02275921,94.47224736],[4.53254695,0.02276092,94.47321752],[4.53254753,0.02276262,94.47419016],[4.5325481,0.02276433,94.47516525],[4.53254868,0.02276604,94.47614277],[4.53254925,0.02276775,94.47712267],[4.53254982,0.02276946,94.47810494],[4.5325504,0.02277117,94.47908955],[4.53255097,0.02277287,94.48007647],[4.53255154,0.02277458,94.4810657],[4.53255211,0.02277629,94.48205732],[4.53255269,0.022778,94.48305147],[4.53255326,0.02277971,94.48404826],[4.53255383,0.02278142,94.48504781],[4.5325544,0.02278313,94.48605025],[4.53255497,0.02278484,94.4870557],[4.53255554,0.02278655,94.4880643],[4.53255611,0.02278826,94.48907617],[4.53255668,0.02278997,94.49009145],[4.53255725,0.02279167,94.49111027],[4.53255782,0.02279338,94.49213276],[4.53255839,0.02279509,94.49315907],[4.53255897,0.0227968,94.49418934],[4.53255954,0.02279851,94.4952237],[4.53256011,0.02280022,94.4962623],[4.53256068,0.02280193,94.49730528],[4.53256125,0.02280364,94.49835279],[4.53256182,0.02280535,94.49940496],[4.53256239,0.02280706,94.50046169],[4.53256296,0.02280876,94.50152257],[4.53256354,0.02281047,94.50258723],[4.53256411,0.02281218,94.50365525],[4.53256468,0.02281389,94.50472624],[4.53256526,0.0228156,94.50579977],[4.53256583,0.0228173,94.50687546],[4.53256641,0.02281901,94.50795287],[4.53256698,0.02282072,94.5090316],[4.53256756,0.02282243,94.51011122],[4.53256813,0.02282414,94.51119131],[4.5325687,0.02282584,94.51227144],[4.53256928,0.02282755,94.51335118],[4.53256985,0.02282926,94.51443011],[4.53257043,0.02283097,94.51550778],[4.532571,0.02283267,94.51658377],[4.53257158,0.02283438,94.51765762],[4.53257215,0.02283609,94.5187289],[4.53257273,0.0228378,94.51979716],[4.5325733,0.0228395,94.52086195],[4.53257387,0.02284121,94.52192284],[4.53257445,0.02284292,94.52297937],[4.53257502,0.02284463,94.5240311],[4.53257559,0.02284633,94.52507758],[4.53257617,0.02284804,94.52611834],[4.53257674,0.02284975,94.52715295],[4.53257731,0.02285146,94.52818115],[4.53257788,0.02285317,94.52920352],[4.53257845,0.02285488,94.53022085],[4.53257901,0.02285659,94.53123396],[4.53257958,0.0228583,94.53224365],[4.53258015,0.02286001,94.53325074],[4.53258072,0.02286172,94.53425604],[4.53258128,0.02286343,94.53526039],[4.53258185,0.02286514,94.53626462],[4.53258242,0.02286685,94.53726955],[4.53258299,0.02286856,94.53827604],[4.53258355,0.02287026,94.53928491],[4.53258412,0.02287197,94.54029681],[4.53258469,0.02287368,94.54131149],[4.53258526,0.02287539,94.54232848],[4.53258583,0.0228771,94.5433473],[4.5325864,0.02287881,94.54436747],[4.53258697,0.02288052,94.54538852],[4.53258755,0.02288223,94.54640997],[4.53258812,0.02288393,94.54743132],[4.53258869,0.02288564,94.5484521],[4.53258926,0.02288735,94.54947182],[4.53258983,0.02288906,94.55048998],[4.5325904,0.02289077,94.5515061],[4.53259097,0.02289247,94.55251968],[4.53259154,0.02289418,94.55353023],[4.53259211,0.02289589,94.55453726],[4.53259269,0.0228976,94.55554027],[4.53259326,0.02289931,94.55653876],[4.53259383,0.02290102,94.55753225],[4.5325944,0.02290272,94.55852023],[4.53259497,0.02290443,94.5595022],[4.53259554,0.02290614,94.56047769],[4.53259611,0.02290785,94.56144649],[4.53259668,0.02290956,94.56240866],[4.53259725,0.02291127,94.56336428],[4.53259782,0.02291297,94.56431343],[4.53259839,0.02291468,94.5652562],[4.53259896,0.02291639,94.56619267],[4.53259953,0.0229181,94.56712292],[4.5326001,0.02291981,94.56804704],[4.53260067,0.02292151,94.56896512],[4.53260125,0.02292322,94.56987724],[4.53260182,0.02292493,94.57078348],[4.53260239,0.02292664,94.57168394],[4.53260296,0.02292835,94.5725787],[4.53260353,0.02293005,94.57346786],[4.5326041,0.02293176,94.57435149],[4.53260467,0.02293347,94.57522969],[4.53260524,0.02293518,94.57610255],[4.53260582,0.02293688,94.57697016],[4.53260639,0.02293859,94.5778326],[4.53260696,0.0229403,94.57868999],[4.53260753,0.02294201,94.57954245],[4.53260809,0.02294372,94.58039009],[4.53260866,0.02294543,94.58123302],[4.53260923,0.02294713,94.58207136],[4.5326098,0.02294884,94.58290521],[4.53261037,0.02295055,94.5837347],[4.53261094,0.02295226,94.58455992],[4.53261151,0.02295397,94.58538087],[4.53261208,0.02295568,94.58619743],[4.53261264,0.02295739,94.5870095],[4.53261321,0.02295909,94.58781695],[4.53261378,0.0229608,94.58861967],[4.53261435,0.02296251,94.58941753],[4.53261492,0.02296422,94.59021043],[4.53261549,0.02296593,94.59099824],[4.53261606,0.02296764,94.59178085],[4.53261663,0.02296934,94.59255813],[4.5326172,0.02297105,94.59332999],[4.53261777,0.02297276,94.59409629],[4.53261834,0.02297447,94.59485693],[4.53261891,0.02297618,94.59561179],[4.53261948,0.02297788,94.59636075],[4.53262005,0.02297959,94.59710371],[4.53262062,0.0229813,94.59784054],[4.53262119,0.02298301,94.59857114],[4.53262176,0.02298472,94.59929539],[4.53262233,0.02298642,94.60001321],[4.5326229,0.02298813,94.60072464],[4.53262347,0.02298984,94.60142975],[4.53262405,0.02299155,94.60212861],[4.53262462,0.02299325,94.6028213],[4.53262519,0.02299496,94.60350788],[4.53262576,0.02299667,94.60418843],[4.53262633,0.02299838,94.60486302],[4.53262691,0.02300008,94.60553172],[4.53262748,0.02300179,94.60619462],[4.53262805,0.0230035,94.60685182],[4.53262863,0.02300521,94.60750347],[4.5326292,0.02300692,94.60814972],[4.53262977,0.02300862,94.60879071],[4.53263035,0.02301033,94.60942658],[4.53263092,0.02301204,94.61005748],[4.53263149,0.02301375,94.61068356],[4.53263207,0.02301545,94.61130495],[4.53263264,0.02301716,94.6119218],[4.53263322,0.02301887,94.61253425],[4.53263379,0.02302058,94.61314244],[4.53263437,0.02302229,94.61374651],[4.53263494,0.02302399,94.6143466],[4.53263552,0.0230257,94.61494285],[4.53263609,0.02302741,94.6155354],[4.53263667,0.02302912,94.61612437],[4.53263725,0.02303082,94.61670992],[4.53263782,0.02303253,94.61729217],[4.5326384,0.02303424,94.61787125],[4.53263898,0.02303595,94.61844729],[4.53263955,0.02303765,94.61902038],[4.53264013,0.02303936,94.61959063],[4.53264071,0.02304107,94.62015813],[4.53264129,0.02304278,94.62072299],[4.53264186,0.02304449,94.6212853],[4.53264244,0.02304619,94.62184517],[4.53264302,0.0230479,94.62240269],[4.5326436,0.02304961,94.62295797],[4.53264418,0.02305132,94.6235111],[4.53264476,0.02305302,94.62406218],[4.53264534,0.02305473,94.62461131],[4.53264592,0.02305644,94.6251586],[4.5326465,0.02305815,94.62570414],[4.53264708,0.02305985,94.62624803],[4.53264766,0.02306156,94.62679036],[4.53264824,0.02306327,94.62733125],[4.53264882,0.02306498,94.62787079],[4.5326494,0.02306668,94.62840907],[4.53264998,0.02306839,94.62894619],[4.53265056,0.0230701,94.62948227],[4.53265114,0.02307181,94.63001738],[4.53265172,0.02307352,94.63055164],[4.5326523,0.02307522,94.63108514],[4.53265288,0.02307693,94.63161798],[4.53265347,0.02307864,94.63215027],[4.53265405,0.02308035,94.63268215],[4.53265463,0.02308206,94.63321376],[4.53265521,0.02308376,94.63374521],[4.53265579,0.02308547,94.63427664],[4.53265637,0.02308718,94.63480818],[4.53265695,0.02308889,94.63533996],[4.53265753,0.0230906,94.6358721],[4.53265812,0.02309231,94.63640473],[4.5326587,0.02309401,94.63693798],[4.53265928,0.02309572,94.63747195],[4.53265986,0.02309743,94.63800678],[4.53266044,0.02309914,94.63854256],[4.53266102,0.02310085,94.63907938],[4.53266161,0.02310256,94.63961735],[4.53266219,0.02310427,94.64015657],[4.53266277,0.02310597,94.64069714],[4.53266335,0.02310768,94.64123915],[4.53266393,0.02310939,94.6417827],[4.53266452,0.0231111,94.6423279],[4.5326651,0.02311281,94.64287483],[4.53266568,0.02311452,94.6434236],[4.53266626,0.02311623,94.64397431],[4.53266684,0.02311794,94.64452704],[4.53266742,0.02311965,94.64508191],[4.53266801,0.02312136,94.645639],[4.53266859,0.02312307,94.64619841],[4.53266917,0.02312478,94.64676024],[4.53266975,0.02312649,94.64732458],[4.53267033,0.0231282,94.64789154],[4.53267091,0.02312991,94.6484612],[4.53267149,0.02313162,94.64903366],[4.53267207,0.02313333,94.64960904],[4.53267265,0.02313504,94.65018747],[4.53267323,0.02313675,94.65076914],[4.53267381,0.02313846,94.6513542],[4.53267439,0.02314017,94.65194282],[4.53267497,0.02314188,94.65253516],[4.53267555,0.02314359,94.65313139],[4.53267613,0.0231453,94.65373168],[4.53267671,0.02314702,94.6543362],[4.53267729,0.02314873,94.6549451],[4.53267787,0.02315044,94.65555855],[4.53267844,0.02315215,94.65617672],[4.53267902,0.02315386,94.65679978],[4.5326796,0.02315558,94.65742789],[4.53268018,0.02315729,94.65806122],[4.53268075,0.023159,94.65869993],[4.53268133,0.02316071,94.65934419],[4.53268191,0.02316243,94.65999417],[4.53268248,0.02316414,94.66065003],[4.53268306,0.02316585,94.66131195],[4.53268363,0.02316757,94.66198008],[4.53268421,0.02316928,94.66265461],[4.53268478,0.023171,94.66333568],[4.53268536,0.02317271,94.66402349],[4.53268593,0.02317442,94.66471819],[4.5326865,0.02317614,94.66541995],[4.53268708,0.02317785,94.66612894],[4.53268765,0.02317957,94.66684534],[4.53268822,0.02318128,94.66756931],[4.53268879,0.023183,94.66830102],[4.53268936,0.02318471,94.66904066],[4.53268993,0.02318643,94.66978838],[4.5326905,0.02318815,94.67054431],[4.53269107,0.02318986,94.67130835],[4.53269164,0.02319158,94.67208033],[4.53269221,0.02319329,94.6728601],[4.53269278,0.02319501,94.67364753]],"type":"LineString"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1004200","id":2,"type":"none","predecessorId":2}},{"geometry":{"coordinates":[[4.53223153,0.02217536,94.04900345],[4.53223276,0.02217303,94.05433512],[4.53223399,0.02217071,94.05967777],[4.53223522,0.02216838,94.06503126],[4.53223644,0.02216605,94.07039542],[4.53223728,0.02216386,94.07458174],[4.53223705,0.02216203,94.07554193],[4.53223682,0.02216021,94.07650745],[4.53223658,0.02215838,94.07747829],[4.53223635,0.02215655,94.07845443],[4.53223612,0.02215473,94.07943584],[4.53223589,0.0221529,94.08042252],[4.53223566,0.02215108,94.08141443],[4.53223542,0.02214925,94.08241157],[4.53223519,0.02214742,94.0834139],[4.53223496,0.0221456,94.08442141],[4.53223473,0.02214377,94.08543408],[4.5322345,0.02214194,94.08645188],[4.53223426,0.02214012,94.0874748],[4.53223403,0.02213829,94.0885028],[4.5322338,0.02213647,94.08953587],[4.53223357,0.02213464,94.09057398],[4.53223331,0.02213282,94.09154549],[4.53223297,0.02213104,94.09225171],[4.53223262,0.02212925,94.09296267],[4.53223228,0.02212746,94.09367836],[4.53223194,0.02212567,94.09439876],[4.53223159,0.02212389,94.09512386],[4.53223125,0.0221221,94.09585365],[4.5322309,0.02212031,94.09658812],[4.53223056,0.02211852,94.09732724],[4.53223022,0.02211674,94.09807102],[4.53222987,0.02211495,94.09881943],[4.53222953,0.02211316,94.09957246],[4.53222918,0.02211137,94.1003301],[4.53222884,0.02210959,94.10109232],[4.53222849,0.0221078,94.10185912],[4.53222815,0.02210601,94.10263048],[4.5322278,0.02210422,94.10340639],[4.53222746,0.02210244,94.10418682],[4.53222712,0.02210065,94.10497177],[4.53222677,0.02209886,94.10576121],[4.53222643,0.02209707,94.10655513],[4.53222608,0.02209529,94.1073535],[4.53222574,0.0220935,94.10815633],[4.53222539,0.02209171,94.10896357],[4.53222505,0.02208992,94.10977523],[4.5322247,0.02208814,94.11059127],[4.53222436,0.02208635,94.11141169],[4.53222401,0.02208456,94.11223645],[4.53222367,0.02208277,94.11306555],[4.53222333,0.02208099,94.11389896],[4.53222298,0.0220792,94.11473667],[4.53222264,0.02207741,94.11557865],[4.53222229,0.02207563,94.11642488],[4.53222195,0.02207384,94.11727534],[4.5322216,0.02207205,94.11813001],[4.53222126,0.02207026,94.11898887],[4.53222091,0.02206848,94.1198519],[4.53222057,0.02206669,94.12071908],[4.53222022,0.0220649,94.12159038],[4.53221983,0.02206313,94.12232776],[4.53221936,0.02206139,94.12281287],[4.53221888,0.02205964,94.12330223],[4.53221841,0.0220579,94.12379584],[4.53221794,0.02205616,94.1242937],[4.53221746,0.02205442,94.1247958],[4.53221699,0.02205267,94.12530214],[4.53221651,0.02205093,94.12581272],[4.53221604,0.02204919,94.12632752],[4.53221557,0.02204744,94.12684656],[4.53221509,0.0220457,94.12736981],[4.53221462,0.02204396,94.12789729],[4.53221414,0.02204222,94.12842898],[4.53221367,0.02204047,94.12896488],[4.5322132,0.02203873,94.12950498],[4.53221272,0.02203699,94.13004929],[4.53221225,0.02203524,94.13059779],[4.53221177,0.0220335,94.13115049],[4.5322113,0.02203176,94.13170737],[4.53221082,0.02203002,94.13226843],[4.53221035,0.02202827,94.13283367],[4.53220988,0.02202653,94.13340308],[4.5322094,0.02202479,94.13397666],[4.53220893,0.02202304,94.13455439],[4.53220845,0.0220213,94.13513628],[4.53220798,0.02201956,94.13572232],[4.5322075,0.02201782,94.13631249],[4.53220703,0.02201607,94.13690681],[4.53220655,0.02201433,94.13750525],[4.53220608,0.02201259,94.13810782],[4.5322056,0.02201084,94.1387145],[4.53220513,0.0220091,94.13932529],[4.53220466,0.02200736,94.13994018],[4.53220418,0.02200562,94.14055917],[4.53220371,0.02200387,94.14118225],[4.53220323,0.02200213,94.14180941],[4.53220276,0.02200039,94.14244065],[4.53220228,0.02199865,94.14307595],[4.53220181,0.0219969,94.14371532],[4.53220133,0.02199516,94.14435873],[4.53220086,0.02199342,94.14500619],[4.53220038,0.02199168,94.14565769],[4.53219991,0.02198993,94.14631321],[4.53219943,0.02198819,94.14697276],[4.53219896,0.02198645,94.14763632],[4.53219848,0.02198471,94.14830388],[4.53219844,0.02198456,94.14836096]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004200","rules":[{"value":"barred"}],"id":-3,"type":"restricted","predecessorId":-3}},{"geometry":{"coordinates":[[4.5322598,0.02216565,94.1343658],[4.53225922,0.02216394,94.13429496],[4.53225865,0.02216224,94.13422758],[4.53225807,0.02216053,94.13416366],[4.53225749,0.02215882,94.13410322],[4.53225692,0.02215711,94.13404627],[4.53225634,0.02215541,94.13399282],[4.53225576,0.0221537,94.13394289],[4.53225518,0.02215199,94.13389648],[4.53225461,0.02215028,94.13385361],[4.53225403,0.02214858,94.13381428],[4.53225345,0.02214687,94.13377852],[4.53225287,0.02214516,94.13374633],[4.5322523,0.02214345,94.13371772],[4.53225172,0.02214175,94.1336927],[4.53225114,0.02214004,94.13367129],[4.53225056,0.02213833,94.1336535],[4.53224999,0.02213662,94.13363934],[4.53224941,0.02213492,94.13362882],[4.53224883,0.02213321,94.13362195],[4.53224825,0.0221315,94.13361875],[4.53224768,0.02212979,94.13361922],[4.5322471,0.02212809,94.13362338],[4.53224652,0.02212638,94.13363124],[4.53224594,0.02212467,94.13364281],[4.53224536,0.02212297,94.1336581],[4.53224479,0.02212126,94.13367712],[4.53224421,0.02211955,94.1336999],[4.53224363,0.02211784,94.13372642],[4.53224305,0.02211614,94.13375672],[4.53224248,0.02211443,94.1337908],[4.5322419,0.02211272,94.13382867],[4.53224132,0.02211101,94.13387034],[4.53224074,0.02210931,94.13391583],[4.53224016,0.0221076,94.13396515],[4.53223959,0.02210589,94.1340183],[4.53223901,0.02210419,94.1340753],[4.53223843,0.02210248,94.13413617],[4.53223785,0.02210077,94.13420091],[4.53223727,0.02209906,94.13426953],[4.5322367,0.02209736,94.13434205],[4.53223612,0.02209565,94.13441848],[4.53223554,0.02209394,94.13449883],[4.53223496,0.02209223,94.13458311],[4.53223438,0.02209053,94.13467134],[4.53223381,0.02208882,94.13476352],[4.53223323,0.02208711,94.13485966],[4.53223265,0.02208541,94.13495979],[4.53223207,0.0220837,94.1350639],[4.53223149,0.02208199,94.13517201],[4.53223091,0.02208028,94.13528414],[4.53223034,0.02207858,94.1354003],[4.53222976,0.02207687,94.13552049],[4.53222918,0.02207516,94.13564472],[4.5322286,0.02207346,94.13577302],[4.53222802,0.02207175,94.13590539],[4.53222744,0.02207004,94.13604184],[4.53222687,0.02206834,94.13618239],[4.53222629,0.02206663,94.13632705],[4.53222571,0.02206492,94.13647582],[4.53222513,0.02206321,94.13662872],[4.53222455,0.02206151,94.13678577],[4.53222397,0.0220598,94.13694697],[4.5322234,0.02205809,94.13711233],[4.53222282,0.02205639,94.13728187],[4.53222224,0.02205468,94.1374556],[4.53222166,0.02205297,94.13763353],[4.53222108,0.02205127,94.13781567],[4.5322205,0.02204956,94.13800204],[4.53221992,0.02204785,94.13819264],[4.53221934,0.02204614,94.13838749],[4.53221877,0.02204444,94.1385866],[4.53221819,0.02204273,94.13878997],[4.53221761,0.02204102,94.13899764],[4.53221703,0.02203932,94.13920959],[4.53221645,0.02203761,94.13942585],[4.53221587,0.0220359,94.13964643],[4.53221529,0.0220342,94.13987134],[4.53221471,0.02203249,94.1401006],[4.53221413,0.02203078,94.1403342],[4.53221356,0.02202908,94.14057217],[4.53221298,0.02202737,94.14081452],[4.5322124,0.02202566,94.14106125],[4.53221182,0.02202396,94.14131239],[4.53221124,0.02202225,94.14156794],[4.53221066,0.02202054,94.14182791],[4.53221008,0.02201884,94.14209232],[4.5322095,0.02201713,94.14236118],[4.53220892,0.02201542,94.1426345],[4.53220834,0.02201371,94.14291229],[4.53220776,0.02201201,94.14319456],[4.53220718,0.0220103,94.14348133],[4.5322066,0.02200859,94.14377261],[4.53220603,0.02200689,94.1440684],[4.53220545,0.02200518,94.14436873],[4.53220487,0.02200347,94.1446736],[4.53220429,0.02200177,94.14498302],[4.53220371,0.02200006,94.14529702],[4.53220313,0.02199836,94.14561559],[4.53220255,0.02199665,94.14593875],[4.53220197,0.02199494,94.14626651],[4.53220139,0.02199324,94.14659889],[4.53220081,0.02199153,94.1469359],[4.53220023,0.02198982,94.14727754],[4.53219965,0.02198812,94.14762384],[4.53219907,0.02198641,94.1479748],[4.53219849,0.0219847,94.14833043],[4.53219844,0.02198456,94.14836096]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004200","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2}},{"geometry":{"coordinates":[[4.53229081,0.022155,94.22798338],[4.53229023,0.0221533,94.22797039],[4.53228965,0.02215159,94.22795983],[4.53228907,0.02214988,94.22795173],[4.5322885,0.02214817,94.22794606],[4.53228792,0.02214646,94.22794285],[4.53228734,0.02214476,94.22794209],[4.53228677,0.02214305,94.22794378],[4.53228619,0.02214134,94.22794793],[4.53228561,0.02213963,94.22795453],[4.53228503,0.02213793,94.2279636],[4.53228446,0.02213622,94.22797512],[4.53228388,0.02213451,94.22798911],[4.5322833,0.0221328,94.22800555],[4.53228272,0.0221311,94.22802447],[4.53228215,0.02212939,94.22804585],[4.53228157,0.02212768,94.22806971],[4.53228099,0.02212597,94.22809603],[4.53228041,0.02212427,94.22812483],[4.53227983,0.02212256,94.22815611],[4.53227926,0.02212085,94.22818986],[4.53227868,0.02211914,94.2282261],[4.5322781,0.02211744,94.22826481],[4.53227752,0.02211573,94.22830601],[4.53227695,0.02211402,94.22834969],[4.53227637,0.02211231,94.22839586],[4.53227579,0.02211061,94.22844452],[4.53227521,0.0221089,94.22849567],[4.53227464,0.02210719,94.22854932],[4.53227406,0.02210548,94.22860546],[4.53227348,0.02210378,94.22866409],[4.5322729,0.02210207,94.22872523],[4.53227232,0.02210036,94.22878886],[4.53227175,0.02209865,94.228855],[4.53227117,0.02209695,94.22892364],[4.53227059,0.02209524,94.22899479],[4.53227001,0.02209353,94.22906844],[4.53226943,0.02209182,94.22914461],[4.53226886,0.02209012,94.22922329],[4.53226828,0.02208841,94.22930448],[4.5322677,0.0220867,94.22938819],[4.53226712,0.02208499,94.22947442],[4.53226654,0.02208329,94.22956317],[4.53226597,0.02208158,94.22965444],[4.53226539,0.02207987,94.22974823],[4.53226481,0.02207816,94.22984455],[4.53226423,0.02207646,94.2299434],[4.53226365,0.02207475,94.23004478],[4.53226307,0.02207304,94.23014869],[4.5322625,0.02207134,94.23025513],[4.53226192,0.02206963,94.23036411],[4.53226134,0.02206792,94.23047562],[4.53226076,0.02206621,94.23058968],[4.53226018,0.02206451,94.23070627],[4.5322596,0.0220628,94.23082541],[4.53225903,0.02206109,94.2309471],[4.53225845,0.02205938,94.23107133],[4.53225787,0.02205768,94.23119812],[4.53225729,0.02205597,94.23132745],[4.53225671,0.02205426,94.23145934],[4.53225613,0.02205256,94.23159378],[4.53225555,0.02205085,94.23173078],[4.53225498,0.02204914,94.23187034],[4.5322544,0.02204743,94.23201246],[4.53225382,0.02204573,94.23215715],[4.53225324,0.02204402,94.2323044],[4.53225266,0.02204231,94.23245422],[4.53225208,0.02204061,94.23260661],[4.5322515,0.0220389,94.23276157],[4.53225093,0.02203719,94.2329191],[4.53225035,0.02203548,94.23307921],[4.53224977,0.02203378,94.2332419],[4.53224919,0.02203207,94.23340716],[4.53224861,0.02203036,94.23357501],[4.53224803,0.02202866,94.23374545],[4.53224745,0.02202695,94.23391847],[4.53224687,0.02202524,94.23409407],[4.53224629,0.02202353,94.23427227],[4.53224572,0.02202183,94.23445306],[4.53224514,0.02202012,94.23463644],[4.53224456,0.02201841,94.23482243],[4.53224398,0.02201671,94.23501101],[4.5322434,0.022015,94.23520219],[4.53224282,0.02201329,94.23539597],[4.53224224,0.02201159,94.23559236],[4.53224166,0.02200988,94.23579135],[4.53224108,0.02200817,94.23599296],[4.5322405,0.02200646,94.23619717],[4.53223992,0.02200476,94.236404],[4.53223934,0.02200305,94.23661345],[4.53223877,0.02200134,94.23682551],[4.53223819,0.02199964,94.2370402],[4.53223761,0.02199793,94.23725751],[4.53223703,0.02199622,94.23747744],[4.53223645,0.02199452,94.23769999],[4.53223587,0.02199281,94.23792518],[4.53223529,0.0219911,94.238153],[4.53223471,0.0219894,94.23838345],[4.53223413,0.02198769,94.23861654],[4.53223355,0.02198598,94.23885226],[4.53223297,0.02198428,94.23909063],[4.53223239,0.02198257,94.23933163],[4.53223181,0.02198086,94.23957529],[4.53223123,0.02197915,94.23982158],[4.53223065,0.02197745,94.24007053],[4.53223007,0.02197574,94.24032213],[4.53222949,0.02197403,94.24057639],[4.53222944,0.02197389,94.24059818]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004200","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}},{"geometry":{"coordinates":[[4.532264,0.021962,94.34342722],[4.53226405,0.02196214,94.34341506],[4.53226463,0.02196385,94.34327268],[4.53226521,0.02196556,94.3431308],[4.53226579,0.02196726,94.3429894],[4.53226637,0.02196897,94.34284849],[4.53226695,0.02197068,94.34270807],[4.53226753,0.02197238,94.34256815],[4.53226811,0.02197409,94.34242872],[4.53226869,0.0219758,94.3422898],[4.53226927,0.02197751,94.34215137],[4.53226985,0.02197921,94.34201345],[4.53227043,0.02198092,94.34187603],[4.53227101,0.02198263,94.34173911],[4.53227159,0.02198433,94.3416027],[4.53227216,0.02198604,94.3414668],[4.53227274,0.02198775,94.34133141],[4.53227332,0.02198946,94.34119654],[4.5322739,0.02199116,94.34106217],[4.53227448,0.02199287,94.34092832],[4.53227506,0.02199458,94.34079499],[4.53227564,0.02199629,94.34066218],[4.53227622,0.02199799,94.34052989],[4.5322768,0.0219997,94.34039812],[4.53227738,0.02200141,94.34026687],[4.53227796,0.02200311,94.34013615],[4.53227853,0.02200482,94.34000595],[4.53227911,0.02200653,94.33987628],[4.53227969,0.02200824,94.33974715],[4.53228027,0.02200994,94.33961854],[4.53228085,0.02201165,94.33949047],[4.53228143,0.02201336,94.33936293],[4.53228201,0.02201507,94.33923592],[4.53228258,0.02201677,94.33910946],[4.53228316,0.02201848,94.33898353],[4.53228374,0.02202019,94.33885814],[4.53228432,0.0220219,94.3387333],[4.5322849,0.0220236,94.338609],[4.53228548,0.02202531,94.33848525],[4.53228605,0.02202702,94.33836204],[4.53228663,0.02202873,94.33823938],[4.53228721,0.02203043,94.33811727],[4.53228779,0.02203214,94.33799572],[4.53228836,0.02203385,94.33787472],[4.53228894,0.02203556,94.33775427],[4.53228952,0.02203727,94.33763438],[4.5322901,0.02203897,94.33751505],[4.53229067,0.02204068,94.33739628],[4.53229125,0.02204239,94.33727808],[4.53229183,0.0220441,94.33716044],[4.53229241,0.02204581,94.33704336],[4.53229298,0.02204751,94.33692685],[4.53229356,0.02204922,94.33681091],[4.53229414,0.02205093,94.33669555],[4.53229471,0.02205264,94.33658075],[4.53229529,0.02205435,94.33646654],[4.53229587,0.02205605,94.3363529],[4.53229644,0.02205776,94.33623984],[4.53229702,0.02205947,94.33612736],[4.53229759,0.02206118,94.33601546],[4.53229817,0.02206289,94.33590415],[4.53229874,0.0220646,94.33579343],[4.53229932,0.0220663,94.3356833],[4.5322999,0.02206801,94.33557376],[4.53230047,0.02206972,94.33546481],[4.53230105,0.02207143,94.33535646],[4.53230162,0.02207314,94.33524871],[4.5323022,0.02207485,94.33514156],[4.53230277,0.02207656,94.33503501],[4.53230335,0.02207826,94.33492906],[4.53230392,0.02207997,94.33482373],[4.53230449,0.02208168,94.334719],[4.53230507,0.02208339,94.33461489],[4.53230564,0.0220851,94.3345114],[4.53230622,0.02208681,94.33440857],[4.53230679,0.02208852,94.3343064],[4.53230736,0.02209023,94.33420493],[4.53230794,0.02209194,94.33410417],[4.53230851,0.02209365,94.33400416],[4.53230908,0.02209535,94.33390491],[4.53230966,0.02209706,94.33380644],[4.53231023,0.02209877,94.33370879],[4.5323108,0.02210048,94.33361197],[4.53231137,0.02210219,94.333516],[4.53231195,0.0221039,94.33342092],[4.53231252,0.02210561,94.33332673],[4.53231309,0.02210732,94.33323347],[4.53231366,0.02210903,94.33314116],[4.53231424,0.02211074,94.33304982],[4.53231481,0.02211245,94.33295948],[4.53231538,0.02211416,94.33287016],[4.53231595,0.02211587,94.33278187],[4.53231653,0.02211758,94.33269465],[4.5323171,0.02211929,94.33260851],[4.53231767,0.022121,94.33252349],[4.53231824,0.02212271,94.33243959],[4.53231881,0.02212442,94.33235686],[4.53231938,0.02212613,94.3322753],[4.53231996,0.02212784,94.33219494],[4.53232053,0.02212955,94.33211581],[4.5323211,0.02213126,94.33203792],[4.53232167,0.02213297,94.3319613],[4.53232224,0.02213468,94.33188598],[4.53232281,0.02213639,94.33181197],[4.53232339,0.0221381,94.3317393],[4.53232396,0.02213981,94.33166799],[4.53232453,0.02214152,94.33159806],[4.5323251,0.02214323,94.33152954]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004200","id":1,"type":"shoulder","predecessorId":1}},{"geometry":{"coordinates":[[4.53227612,0.02195783,94.34342722],[4.53227617,0.02195797,94.34341506],[4.53227675,0.02195968,94.34327268],[4.53227733,0.02196139,94.3431308],[4.53227791,0.02196309,94.3429894],[4.53227849,0.0219648,94.34284849],[4.53227907,0.02196651,94.34270807],[4.53227965,0.02196821,94.34256815],[4.53228023,0.02196992,94.34242872],[4.53228081,0.02197163,94.3422898],[4.53228139,0.02197334,94.34215137],[4.53228197,0.02197504,94.34201345],[4.53228255,0.02197675,94.34187603],[4.53228313,0.02197846,94.34173911],[4.53228371,0.02198016,94.3416027],[4.53228429,0.02198187,94.3414668],[4.53228487,0.02198358,94.34133141],[4.53228545,0.02198529,94.34119654],[4.53228603,0.02198699,94.34106217],[4.53228661,0.0219887,94.34092832],[4.53228719,0.02199041,94.34079499],[4.53228777,0.02199211,94.34066218],[4.53228835,0.02199382,94.34052989],[4.53228893,0.02199553,94.34039812],[4.5322895,0.02199724,94.34026687],[4.53229008,0.02199894,94.34013615],[4.53229066,0.02200065,94.34000595],[4.53229124,0.02200236,94.33987628],[4.53229182,0.02200406,94.33974715],[4.5322924,0.02200577,94.33961854],[4.53229298,0.02200748,94.33949047],[4.53229356,0.02200919,94.33936293],[4.53229414,0.02201089,94.33923592],[4.53229472,0.0220126,94.33910946],[4.5322953,0.02201431,94.33898353],[4.53229588,0.02201601,94.33885814],[4.53229646,0.02201772,94.3387333],[4.53229704,0.02201943,94.338609],[4.53229762,0.02202114,94.33848525],[4.5322982,0.02202284,94.33836204],[4.53229878,0.02202455,94.33823938],[4.53229936,0.02202626,94.33811727],[4.53229993,0.02202797,94.33799572],[4.53230051,0.02202967,94.33787472],[4.53230109,0.02203138,94.33775427],[4.53230167,0.02203309,94.33763438],[4.53230225,0.02203479,94.33751505],[4.53230283,0.0220365,94.33739628],[4.53230341,0.02203821,94.33727808],[4.53230399,0.02203992,94.33716044],[4.53230457,0.02204162,94.33704336],[4.53230515,0.02204333,94.33692685],[4.53230573,0.02204504,94.33681091],[4.53230631,0.02204675,94.33669555],[4.53230688,0.02204845,94.33658075],[4.53230746,0.02205016,94.33646654],[4.53230804,0.02205187,94.3363529],[4.53230862,0.02205358,94.33623984],[4.5323092,0.02205528,94.33612736],[4.53230978,0.02205699,94.33601546],[4.53231036,0.0220587,94.33590415],[4.53231094,0.02206041,94.33579343],[4.53231152,0.02206211,94.3356833],[4.53231209,0.02206382,94.33557376],[4.53231267,0.02206553,94.33546481],[4.53231325,0.02206723,94.33535646],[4.53231383,0.02206894,94.33524871],[4.53231441,0.02207065,94.33514156],[4.53231499,0.02207236,94.33503501],[4.53231557,0.02207406,94.33492906],[4.53231614,0.02207577,94.33482373],[4.53231672,0.02207748,94.334719],[4.5323173,0.02207919,94.33461489],[4.53231788,0.02208089,94.3345114],[4.53231846,0.0220826,94.33440857],[4.53231904,0.02208431,94.3343064],[4.53231961,0.02208602,94.33420493],[4.53232019,0.02208773,94.33410417],[4.53232077,0.02208943,94.33400416],[4.53232135,0.02209114,94.33390491],[4.53232193,0.02209285,94.33380644],[4.5323225,0.02209456,94.33370879],[4.53232308,0.02209626,94.33361197],[4.53232366,0.02209797,94.333516],[4.53232424,0.02209968,94.33342092],[4.53232482,0.02210139,94.33332673],[4.53232539,0.02210309,94.33323347],[4.53232597,0.0221048,94.33314116],[4.53232655,0.02210651,94.33304982],[4.53232713,0.02210822,94.33295948],[4.53232771,0.02210993,94.33287016],[4.53232828,0.02211163,94.33278187],[4.53232886,0.02211334,94.33269465],[4.53232944,0.02211505,94.33260851],[4.53233002,0.02211676,94.33252349],[4.53233059,0.02211846,94.33243959],[4.53233117,0.02212017,94.33235686],[4.53233175,0.02212188,94.3322753],[4.53233233,0.02212359,94.33219494],[4.5323329,0.0221253,94.33211581],[4.53233348,0.022127,94.33203792],[4.53233406,0.02212871,94.3319613],[4.53233464,0.02213042,94.33188598],[4.53233521,0.02213213,94.33181197],[4.53233579,0.02213383,94.3317393],[4.53233637,0.02213554,94.33166799],[4.53233695,0.02213725,94.33159806],[4.53233752,0.02213896,94.33152954]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1004200","id":2,"type":"none","predecessorId":2}},{"geometry":{"coordinates":[[4.53469285,0.03043239,97.65343948],[4.53469235,0.03043066,97.65226247],[4.53469185,0.03042892,97.65108477],[4.53469136,0.03042719,97.64990638],[4.53469086,0.03042546,97.6487273],[4.53469036,0.03042373,97.64754754],[4.53468987,0.030422,97.64636709],[4.53468937,0.03042027,97.64518596],[4.53468887,0.03041854,97.64400413],[4.53468838,0.03041681,97.64282162],[4.53468788,0.03041507,97.64163842],[4.53468739,0.03041334,97.64045453],[4.53468689,0.03041161,97.63926996],[4.53468639,0.03040988,97.6380847],[4.5346859,0.03040815,97.63689875],[4.5346854,0.03040642,97.63571211],[4.5346849,0.03040469,97.63452478],[4.53468441,0.03040295,97.63333677],[4.53468391,0.03040122,97.63214807],[4.53468341,0.03039949,97.63095868],[4.53468292,0.03039776,97.62976861],[4.53468242,0.03039603,97.62857785],[4.53468193,0.0303943,97.6273864],[4.53468143,0.03039257,97.62619426],[4.53468093,0.03039084,97.62500144],[4.53468044,0.0303891,97.62380792],[4.53467994,0.03038737,97.62261373],[4.53467945,0.03038564,97.62141884],[4.53467895,0.03038391,97.62022327],[4.53467845,0.03038218,97.61902701],[4.53467796,0.03038045,97.61783006],[4.53467746,0.03037872,97.61663243],[4.53467696,0.03037698,97.61543411],[4.53467647,0.03037525,97.61423511],[4.53467597,0.03037352,97.61303542],[4.53467548,0.03037179,97.61183504],[4.53467498,0.03037006,97.61063398],[4.53467448,0.03036833,97.60943223],[4.53467399,0.0303666,97.60822979],[4.53467349,0.03036487,97.60702667],[4.53467299,0.03036313,97.60582287],[4.5346725,0.0303614,97.60461838],[4.534672,0.03035967,97.6034132],[4.53467151,0.03035794,97.60220734],[4.53467101,0.03035621,97.60100079],[4.53467051,0.03035448,97.59979356],[4.53467002,0.03035275,97.59858565],[4.53466952,0.03035101,97.59737705],[4.53466902,0.03034928,97.59616777],[4.53466853,0.03034755,97.5949578],[4.53466803,0.03034582,97.59374715],[4.53466753,0.03034409,97.59253582],[4.53466704,0.03034236,97.5913238],[4.53466654,0.03034063,97.5901111],[4.53466604,0.0303389,97.58889772],[4.53466555,0.03033716,97.58768365],[4.53466505,0.03033543,97.5864689],[4.53466455,0.0303337,97.58525347],[4.53466406,0.03033197,97.58403736],[4.53466356,0.03033024,97.58282057],[4.53466306,0.03032851,97.58160309],[4.53466257,0.03032678,97.58038494],[4.53466207,0.03032504,97.5791661],[4.53466157,0.03032331,97.57794658],[4.53466108,0.03032158,97.57672638],[4.53466058,0.03031985,97.5755055],[4.53466008,0.03031812,97.57428394],[4.53465958,0.03031639,97.5730617],[4.53465909,0.03031466,97.57183878],[4.53465859,0.03031293,97.57061518],[4.53465809,0.03031119,97.56939091],[4.5346576,0.03030946,97.56816595],[4.5346571,0.03030773,97.56694031],[4.5346566,0.030306,97.565714],[4.5346561,0.03030427,97.56448701],[4.53465561,0.03030254,97.56325935],[4.53465511,0.03030081,97.56203105],[4.53465461,0.03029908,97.56080212],[4.53465411,0.03029735,97.55957259],[4.53465361,0.03029561,97.55834248],[4.53465312,0.03029388,97.5571118],[4.53465262,0.03029215,97.55588059],[4.53465212,0.03029042,97.55464887],[4.53465162,0.03028869,97.55341664],[4.53465113,0.03028696,97.55218391],[4.53465063,0.03028523,97.55095068],[4.53465013,0.0302835,97.54971693],[4.53464963,0.03028177,97.54848265],[4.53464913,0.03028003,97.54724785],[4.53464864,0.0302783,97.54601252],[4.53464814,0.03027657,97.54477664],[4.53464764,0.03027484,97.54354022],[4.53464714,0.03027311,97.54230324],[4.53464664,0.03027138,97.54106571],[4.53464615,0.03026965,97.5398276],[4.53464565,0.03026792,97.53858893],[4.53464515,0.03026619,97.53734967],[4.53464465,0.03026445,97.53610983],[4.53464415,0.03026272,97.53486939],[4.53464365,0.03026099,97.53362836],[4.53464316,0.03025926,97.53238672],[4.53464266,0.03025753,97.53114446],[4.53464216,0.0302558,97.52990159],[4.53464166,0.03025407,97.5286581],[4.53464116,0.03025234,97.52741397],[4.53464066,0.03025061,97.52616921],[4.53464016,0.03024887,97.5249238],[4.53463966,0.03024714,97.52367774],[4.53463916,0.03024541,97.52243102],[4.53463867,0.03024368,97.52118364],[4.53463817,0.03024195,97.51993559],[4.53463767,0.03024022,97.51868687],[4.53463717,0.03023849,97.51743746],[4.53463667,0.03023675,97.51618736],[4.53463617,0.03023502,97.51493657],[4.53463567,0.03023329,97.51368507],[4.53463517,0.03023156,97.51243287],[4.53463467,0.03022983,97.51117995],[4.53463417,0.0302281,97.50992631],[4.53463367,0.03022637,97.50867195],[4.53463316,0.03022463,97.50741685],[4.53463266,0.0302229,97.50616101],[4.53463216,0.03022117,97.50490442],[4.53463166,0.03021944,97.50364708],[4.53463116,0.03021771,97.50238898],[4.53463066,0.03021598,97.50113012],[4.53463016,0.03021425,97.49987048],[4.53462966,0.03021252,97.49861007],[4.53462915,0.03021078,97.49734888],[4.53462865,0.03020905,97.49608693],[4.53462815,0.03020732,97.49482422],[4.53462765,0.03020559,97.49356077],[4.53462715,0.03020386,97.49229658],[4.53462664,0.03020213,97.49103168],[4.53462614,0.0302004,97.48976607],[4.53462564,0.03019866,97.48849977],[4.53462513,0.03019693,97.48723278],[4.53462463,0.0301952,97.48596512],[4.53462413,0.03019347,97.4846968],[4.53462362,0.03019174,97.48342784],[4.53462312,0.03019001,97.48215824],[4.53462262,0.03018827,97.48088802],[4.53462211,0.03018654,97.47961719],[4.53462161,0.03018481,97.47834576],[4.53462111,0.03018308,97.47707374],[4.5346206,0.03018135,97.47580116],[4.5346201,0.03017962,97.474528],[4.53461959,0.03017789,97.4732543],[4.53461909,0.03017615,97.47198006],[4.53461859,0.03017442,97.4707053],[4.53461808,0.03017269,97.46943002],[4.53461758,0.03017096,97.46815425],[4.53461707,0.03016923,97.46687799],[4.53461657,0.0301675,97.46560126],[4.53461606,0.03016576,97.46432407],[4.53461556,0.03016403,97.46304643],[4.53461505,0.0301623,97.46176835],[4.53461455,0.03016057,97.46048986],[4.53461404,0.03015884,97.45921095],[4.53461354,0.0301571,97.45793165],[4.53461303,0.03015537,97.45665197],[4.53461253,0.03015364,97.45537192],[4.53461202,0.03015191,97.45409151],[4.53461152,0.03015018,97.45281076],[4.53461101,0.03014845,97.45152968],[4.53461051,0.03014671,97.45024827],[4.53461,0.03014498,97.44896657],[4.5346095,0.03014325,97.44768457],[4.53460899,0.03014152,97.44640229],[4.53460849,0.03013978,97.44511974],[4.53460798,0.03013805,97.44383694],[4.53460748,0.03013632,97.4425539],[4.53460697,0.03013459,97.44127065],[4.53460647,0.03013285,97.43998719],[4.53460596,0.03013112,97.43870356],[4.53460546,0.03012939,97.43741976],[4.53460495,0.03012766,97.43613583],[4.53460444,0.03012592,97.43485177],[4.53460394,0.03012419,97.43356762],[4.53460343,0.03012246,97.43228338],[4.53460293,0.03012073,97.43099908],[4.53460242,0.03011899,97.42971473],[4.53460192,0.03011726,97.42843036],[4.53460141,0.03011553,97.42714599],[4.53460091,0.03011379,97.42586164],[4.53460041,0.03011206,97.42457734],[4.5345999,0.03011033,97.42329311],[4.5345994,0.0301086,97.42200895],[4.53459889,0.03010686,97.42072481],[4.53459839,0.03010513,97.41944069],[4.53459788,0.0301034,97.41815654],[4.53459738,0.03010166,97.41687234],[4.53459687,0.03009993,97.41558807],[4.53459637,0.03009819,97.41430369],[4.53459587,0.03009646,97.41301917],[4.53459536,0.03009473,97.4117345],[4.53459486,0.03009299,97.41044964],[4.53459435,0.03009126,97.40916457],[4.53459385,0.03008953,97.40787926],[4.53459334,0.03008779,97.40659367],[4.53459284,0.03008606,97.40530779],[4.53459234,0.03008432,97.40402159],[4.53459183,0.03008259,97.40273503],[4.53459133,0.03008086,97.4014481],[4.53459082,0.03007912,97.40016075],[4.53459032,0.03007739,97.39887298],[4.53458981,0.03007565,97.39758474],[4.53458931,0.03007392,97.39629601],[4.5345888,0.03007219,97.39500677],[4.5345883,0.03007045,97.39371698],[4.53458779,0.03006872,97.39242662],[4.53458729,0.03006698,97.39113567],[4.53458678,0.03006525,97.38984408],[4.53458628,0.03006352,97.38855185],[4.53458577,0.03006178,97.3872592],[4.53458526,0.03006005,97.38596658],[4.53458476,0.03005831,97.38467445],[4.53458425,0.03005658,97.38338327],[4.53458375,0.03005484,97.38209351],[4.53458324,0.03005311,97.38080564],[4.53458274,0.03005137,97.37952012],[4.53458224,0.03004964,97.37823741],[4.53458174,0.0300479,97.37695797],[4.53458124,0.03004617,97.37568227],[4.53458074,0.03004443,97.37441078],[4.53458024,0.03004269,97.37314395],[4.53457975,0.03004096,97.37188225],[4.53457925,0.03003922,97.37062615],[4.53457876,0.03003748,97.3693761],[4.53457827,0.03003574,97.36813259],[4.53457779,0.03003401,97.3668961],[4.5345773,0.03003227,97.36566714],[4.53457682,0.03003053,97.36444621],[4.53457634,0.03002878,97.36323381],[4.53457587,0.03002704,97.36203044],[4.5345754,0.0300253,97.36083639],[4.53457493,0.03002356,97.35965117],[4.53457446,0.03002181,97.35847406],[4.534574,0.03002007,97.35730436],[4.53457353,0.03001833,97.35614135],[4.53457307,0.03001658,97.35498434],[4.53457262,0.03001484,97.3538326],[4.53457216,0.03001309,97.35268544],[4.5345717,0.03001134,97.35154215],[4.53457125,0.0300096,97.35040201],[4.53457079,0.03000785,97.34926433],[4.53457034,0.03000611,97.34812838],[4.53456989,0.03000436,97.34699347],[4.53456943,0.03000261,97.34585888],[4.53456898,0.03000087,97.34472391],[4.53456853,0.02999912,97.34358785],[4.53456807,0.02999738,97.34244999],[4.53456762,0.02999563,97.34130962],[4.53456716,0.02999389,97.34016603],[4.5345667,0.02999215,97.33901882],[4.53456624,0.0299904,97.33786883],[4.53456578,0.02998866,97.33671719],[4.53456532,0.02998692,97.33556503],[4.53456486,0.02998517,97.33441349],[4.5345644,0.02998343,97.3332637],[4.53456394,0.02998169,97.33211681],[4.53456348,0.02997995,97.33097394],[4.53456302,0.02997821,97.32983623],[4.53456257,0.02997646,97.32870482],[4.53456212,0.02997472,97.32758085],[4.53456167,0.02997297,97.32646545],[4.53456122,0.02997123,97.32535976],[4.53456077,0.02996948,97.32426491],[4.53456033,0.02996774,97.32318205],[4.5345599,0.02996599,97.3221123],[4.53455947,0.02996424,97.32105682],[4.53455904,0.02996249,97.32001673],[4.53455862,0.02996074,97.31899309],[4.5345582,0.02995898,97.3179852],[4.53455779,0.02995723,97.31699061],[4.53455738,0.02995547,97.31600678],[4.53455698,0.02995372,97.31503118],[4.53455657,0.02995196,97.31406127],[4.53455617,0.02995021,97.31309458],[4.53455577,0.02994845,97.31212991],[4.53455536,0.02994669,97.31116732],[4.53455496,0.02994494,97.31020694],[4.53455456,0.02994318,97.30924889],[4.53455416,0.02994142,97.30829328],[4.53455376,0.02993967,97.30734025],[4.53455336,0.02993791,97.30638988],[4.53455296,0.02993615,97.30544222],[4.53455257,0.0299344,97.30449734],[4.53455217,0.02993264,97.3035553],[4.53455177,0.02993088,97.30261614],[4.53455138,0.02992912,97.30167994],[4.53455098,0.02992737,97.30074673],[4.53455059,0.02992561,97.29981659],[4.5345502,0.02992385,97.29888958],[4.53454981,0.02992209,97.29796574],[4.53454942,0.02992034,97.29704513],[4.53454903,0.02991858,97.29612782],[4.53454864,0.02991682,97.29521386],[4.53454826,0.02991506,97.29430331],[4.53454787,0.0299133,97.29339622],[4.53454749,0.02991154,97.29249266],[4.5345471,0.02990978,97.29159268],[4.53454672,0.02990802,97.29069634],[4.53454634,0.02990626,97.2898037],[4.53454596,0.0299045,97.28891481],[4.53454559,0.02990274,97.28802974],[4.53454521,0.02990098,97.28714843],[4.53454483,0.02989922,97.28627048],[4.53454446,0.02989746,97.28539534],[4.53454409,0.0298957,97.28452249],[4.53454371,0.02989394,97.2836514],[4.53454334,0.02989217,97.28278154],[4.53454297,0.02989041,97.2819124],[4.5345426,0.02988865,97.28104343],[4.53454223,0.02988689,97.28017412],[4.53454186,0.02988513,97.27930394],[4.53454148,0.02988337,97.27843235],[4.53454111,0.02988161,97.27755883],[4.53454074,0.02987985,97.27668285],[4.53454036,0.02987809,97.27580388],[4.53453998,0.02987633,97.2749214],[4.53453961,0.02987457,97.27403488],[4.53453922,0.02987281,97.27314424],[4.53453884,0.02987106,97.27225113],[4.53453845,0.0298693,97.27135766],[4.53453807,0.02986754,97.2704659],[4.53453768,0.02986579,97.26957796],[4.5345373,0.02986403,97.26869592],[4.53453691,0.02986228,97.26782188],[4.53453653,0.02986052,97.26695793],[4.53453615,0.02985876,97.26610617],[4.53453577,0.02985701,97.26526868],[4.53453539,0.02985525,97.26444757],[4.53453502,0.02985349,97.26364492],[4.53453465,0.02985173,97.26286272],[4.53453429,0.02984997,97.26210001],[4.53453393,0.0298482,97.26135294],[4.53453358,0.02984644,97.26061751],[4.53453323,0.02984467,97.25988973],[4.53453289,0.02984291,97.2591656],[4.53453255,0.02984114,97.25844113],[4.53453221,0.02983937,97.2577123],[4.53453187,0.0298376,97.2569763],[4.53453153,0.02983583,97.25623488],[4.53453119,0.02983407,97.25549092],[4.53453085,0.0298323,97.25474731],[4.5345305,0.02983053,97.25400693],[4.53453016,0.02982877,97.25327267],[4.53452982,0.029827,97.25254742],[4.53452948,0.02982523,97.25183406],[4.53452914,0.02982346,97.25113547],[4.53452881,0.0298217,97.25045456],[4.53452847,0.02981993,97.24979344],[4.53452814,0.02981816,97.24915124],[4.53452781,0.02981639,97.24852628],[4.53452748,0.02981461,97.24791694],[4.53452716,0.02981284,97.24732156],[4.53452685,0.02981106,97.24673848],[4.53452654,0.02980928,97.24616607],[4.53452623,0.0298075,97.24560266],[4.53452593,0.02980572,97.24504662],[4.53452564,0.02980393,97.24449628],[4.53452534,0.02980215,97.24394999],[4.53452505,0.02980036,97.24340611],[4.53452477,0.02979857,97.24286298],[4.53452448,0.02979678,97.24231895],[4.53452419,0.02979499,97.24177236],[4.5345239,0.0297932,97.24122156],[4.53452361,0.02979141,97.24066532],[4.53452332,0.02978962,97.24010404],[4.53452303,0.02978784,97.23953856],[4.53452273,0.02978605,97.23896968],[4.53452243,0.02978426,97.2383982],[4.53452213,0.02978247,97.23782488],[4.53452183,0.02978068,97.23725049],[4.53452153,0.02977889,97.23667582],[4.53452122,0.02977711,97.23610162],[4.53452092,0.02977532,97.23552869],[4.53452061,0.02977353,97.23495778],[4.53452031,0.02977174,97.23438968],[4.53452,0.02976995,97.23382515],[4.5345197,0.02976816,97.23326498],[4.5345194,0.02976637,97.23270993],[4.5345191,0.02976458,97.23216078],[4.5345188,0.02976278,97.2316183],[4.53451851,0.02976099,97.23108327],[4.53451822,0.02975919,97.23055633],[4.53451793,0.02975739,97.2300351],[4.53451765,0.0297556,97.22951425],[4.53451736,0.0297538,97.22898834],[4.53451707,0.029752,97.22845191],[4.53451678,0.0297502,97.22789951],[4.53451648,0.02974841,97.22732571],[4.53451618,0.02974661,97.22672515],[4.53451586,0.02974482,97.22609249],[4.53451553,0.02974304,97.22542431],[4.53451519,0.02974125,97.22472481],[4.53451484,0.02973947,97.22400014],[4.53451449,0.02973769,97.22325641],[4.53451413,0.02973591,97.22249976],[4.53451377,0.02973413,97.22173632],[4.5345134,0.02973235,97.22097222],[4.53451304,0.02973057,97.2202136],[4.53451268,0.02972879,97.21946658],[4.53451232,0.02972701,97.21873549],[4.53451197,0.02972523,97.21801761],[4.53451161,0.02972345,97.21730856],[4.53451126,0.02972166,97.21660391],[4.53451091,0.02971988,97.21589927],[4.53451055,0.02971809,97.21519023],[4.53451019,0.02971631,97.21447239],[4.53450983,0.02971453,97.21374133],[4.53450946,0.02971275,97.21299265],[4.53450908,0.02971097,97.21222194],[4.53450869,0.0297092,97.2114263],[4.5345083,0.02970742,97.21060874],[4.53450789,0.02970565,97.20977372],[4.53450749,0.02970388,97.20892573],[4.53450708,0.02970211,97.20806926],[4.53450667,0.02970034,97.20720882],[4.53450626,0.02969857,97.2063489],[4.53450585,0.0296968,97.20549311],[4.53450544,0.02969503,97.20464173],[4.53450503,0.02969326,97.20379422],[4.53450463,0.02969149,97.20295003],[4.53450422,0.02968971,97.20210862],[4.53450382,0.02968794,97.20126945],[4.53450341,0.02968617,97.20043198],[4.53450301,0.02968439,97.19959567],[4.53450261,0.02968262,97.19875997],[4.5345022,0.02968084,97.19792435],[4.5345018,0.02967907,97.19708826],[4.53450139,0.02967729,97.19625116],[4.53450099,0.02967552,97.19541251],[4.53450058,0.02967374,97.19457176],[4.53450018,0.02967197,97.19372838],[4.53449977,0.02967019,97.19288182],[4.53449936,0.02966842,97.19203153],[4.53449895,0.02966664,97.19117698],[4.53449853,0.02966487,97.19031762],[4.53449812,0.02966309,97.18945292],[4.5344977,0.02966132,97.18858232],[4.53449729,0.02965954,97.18770528],[4.53449686,0.02965777,97.18682127],[4.53449644,0.029656,97.18592974],[4.53449601,0.02965423,97.18503014],[4.53449559,0.02965245,97.18412194],[4.53449515,0.02965068,97.18320459],[4.53449472,0.02964891,97.1822779],[4.53449428,0.02964714,97.18134278],[4.53449384,0.02964537,97.18040045],[4.5344934,0.02964361,97.1794521],[4.53449295,0.02964184,97.17849894],[4.53449251,0.02964008,97.17754216],[4.53449206,0.02963831,97.17658298],[4.53449161,0.02963654,97.17562258],[4.53449117,0.02963478,97.17466218],[4.53449072,0.02963301,97.17370298],[4.53449028,0.02963124,97.17274617],[4.53449024,0.02963111,97.17267337]],"type":"LineString"},"type":"feature","properties":{"successorId":-3,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1004700","id":-4,"type":"none","predecessorId":0}},{"geometry":{"coordinates":[[4.53473587,0.03041976,97.65343948],[4.53473538,0.03041803,97.65226247],[4.53473488,0.0304163,97.65108477],[4.53473438,0.03041457,97.64990638],[4.53473389,0.03041284,97.6487273],[4.53473339,0.0304111,97.64754754],[4.53473289,0.03040937,97.64636709],[4.5347324,0.03040764,97.64518596],[4.5347319,0.03040591,97.64400413],[4.5347314,0.03040417,97.64282162],[4.53473091,0.03040244,97.64163842],[4.53473041,0.03040071,97.64045453],[4.53472991,0.03039898,97.63926996],[4.53472942,0.03039725,97.6380847],[4.53472892,0.03039551,97.63689875],[4.53472842,0.03039378,97.63571211],[4.53472793,0.03039205,97.63452478],[4.53472743,0.03039032,97.63333677],[4.53472693,0.03038858,97.63214807],[4.53472644,0.03038685,97.63095868],[4.53472594,0.03038512,97.62976861],[4.53472544,0.03038339,97.62857785],[4.53472495,0.03038166,97.6273864],[4.53472445,0.03037992,97.62619426],[4.53472396,0.03037819,97.62500144],[4.53472346,0.03037646,97.62380792],[4.53472296,0.03037473,97.62261373],[4.53472247,0.030373,97.62141884],[4.53472197,0.03037126,97.62022327],[4.53472147,0.03036953,97.61902701],[4.53472098,0.0303678,97.61783006],[4.53472048,0.03036607,97.61663243],[4.53471999,0.03036433,97.61543411],[4.53471949,0.0303626,97.61423511],[4.53471899,0.03036087,97.61303542],[4.5347185,0.03035914,97.61183504],[4.534718,0.03035741,97.61063398],[4.5347175,0.03035567,97.60943223],[4.53471701,0.03035394,97.60822979],[4.53471651,0.03035221,97.60702667],[4.53471602,0.03035048,97.60582287],[4.53471552,0.03034874,97.60461838],[4.53471502,0.03034701,97.6034132],[4.53471453,0.03034528,97.60220734],[4.53471403,0.03034355,97.60100079],[4.53471353,0.03034181,97.59979356],[4.53471304,0.03034008,97.59858565],[4.53471254,0.03033835,97.59737705],[4.53471204,0.03033662,97.59616777],[4.53471155,0.03033489,97.5949578],[4.53471105,0.03033315,97.59374715],[4.53471055,0.03033142,97.59253582],[4.53471006,0.03032969,97.5913238],[4.53470956,0.03032796,97.5901111],[4.53470906,0.03032623,97.58889772],[4.53470857,0.03032449,97.58768365],[4.53470807,0.03032276,97.5864689],[4.53470757,0.03032103,97.58525347],[4.53470708,0.0303193,97.58403736],[4.53470658,0.03031756,97.58282057],[4.53470608,0.03031583,97.58160309],[4.53470559,0.0303141,97.58038494],[4.53470509,0.03031237,97.5791661],[4.53470459,0.03031064,97.57794658],[4.5347041,0.0303089,97.57672638],[4.5347036,0.03030717,97.5755055],[4.5347031,0.03030544,97.57428394],[4.53470261,0.03030371,97.5730617],[4.53470211,0.03030198,97.57183878],[4.53470161,0.03030024,97.57061518],[4.53470111,0.03029851,97.56939091],[4.53470062,0.03029678,97.56816595],[4.53470012,0.03029505,97.56694031],[4.53469962,0.03029331,97.565714],[4.53469912,0.03029158,97.56448701],[4.53469863,0.03028985,97.56325935],[4.53469813,0.03028812,97.56203105],[4.53469763,0.03028639,97.56080212],[4.53469713,0.03028465,97.55957259],[4.53469664,0.03028292,97.55834248],[4.53469614,0.03028119,97.5571118],[4.53469564,0.03027946,97.55588059],[4.53469514,0.03027773,97.55464887],[4.53469464,0.030276,97.55341664],[4.53469415,0.03027426,97.55218391],[4.53469365,0.03027253,97.55095068],[4.53469315,0.0302708,97.54971693],[4.53469265,0.03026907,97.54848265],[4.53469216,0.03026734,97.54724785],[4.53469166,0.0302656,97.54601252],[4.53469116,0.03026387,97.54477664],[4.53469066,0.03026214,97.54354022],[4.53469016,0.03026041,97.54230324],[4.53468967,0.03025868,97.54106571],[4.53468917,0.03025694,97.5398276],[4.53468867,0.03025521,97.53858893],[4.53468817,0.03025348,97.53734967],[4.53468767,0.03025175,97.53610983],[4.53468717,0.03025002,97.53486939],[4.53468668,0.03024829,97.53362836],[4.53468618,0.03024655,97.53238672],[4.53468568,0.03024482,97.53114446],[4.53468518,0.03024309,97.52990159],[4.53468468,0.03024136,97.5286581],[4.53468418,0.03023963,97.52741397],[4.53468368,0.03023789,97.52616921],[4.53468318,0.03023616,97.5249238],[4.53468269,0.03023443,97.52367774],[4.53468219,0.0302327,97.52243102],[4.53468169,0.03023097,97.52118364],[4.53468119,0.03022923,97.51993559],[4.53468069,0.0302275,97.51868687],[4.53468019,0.03022577,97.51743746],[4.53467969,0.03022404,97.51618736],[4.53467919,0.03022231,97.51493657],[4.53467869,0.03022058,97.51368507],[4.53467819,0.03021884,97.51243287],[4.53467769,0.03021711,97.51117995],[4.53467719,0.03021538,97.50992631],[4.53467669,0.03021365,97.50867195],[4.53467619,0.03021192,97.50741685],[4.53467569,0.03021019,97.50616101],[4.53467519,0.03020845,97.50490442],[4.53467468,0.03020672,97.50364708],[4.53467418,0.03020499,97.50238898],[4.53467368,0.03020326,97.50113012],[4.53467318,0.03020153,97.49987048],[4.53467268,0.0301998,97.49861007],[4.53467218,0.03019806,97.49734888],[4.53467168,0.03019633,97.49608693],[4.53467117,0.0301946,97.49482422],[4.53467067,0.03019287,97.49356077],[4.53467017,0.03019114,97.49229658],[4.53466967,0.03018941,97.49103168],[4.53466916,0.03018767,97.48976607],[4.53466866,0.03018594,97.48849977],[4.53466816,0.03018421,97.48723278],[4.53466765,0.03018248,97.48596512],[4.53466715,0.03018075,97.4846968],[4.53466665,0.03017902,97.48342784],[4.53466614,0.03017729,97.48215824],[4.53466564,0.03017555,97.48088802],[4.53466514,0.03017382,97.47961719],[4.53466463,0.03017209,97.47834576],[4.53466413,0.03017036,97.47707374],[4.53466363,0.03016863,97.47580116],[4.53466312,0.0301669,97.474528],[4.53466262,0.03016517,97.4732543],[4.53466211,0.03016344,97.47198006],[4.53466161,0.0301617,97.4707053],[4.5346611,0.03015997,97.46943002],[4.5346606,0.03015824,97.46815425],[4.5346601,0.03015651,97.46687799],[4.53465959,0.03015478,97.46560126],[4.53465909,0.03015305,97.46432407],[4.53465858,0.03015132,97.46304643],[4.53465808,0.03014958,97.46176835],[4.53465757,0.03014785,97.46048986],[4.53465707,0.03014612,97.45921095],[4.53465656,0.03014439,97.45793165],[4.53465606,0.03014266,97.45665197],[4.53465555,0.03014093,97.45537192],[4.53465505,0.0301392,97.45409151],[4.53465454,0.03013746,97.45281076],[4.53465404,0.03013573,97.45152968],[4.53465353,0.030134,97.45024827],[4.53465303,0.03013227,97.44896657],[4.53465252,0.03013054,97.44768457],[4.53465202,0.03012881,97.44640229],[4.53465151,0.03012708,97.44511974],[4.534651,0.03012534,97.44383694],[4.5346505,0.03012361,97.4425539],[4.53464999,0.03012188,97.44127065],[4.53464949,0.03012015,97.43998719],[4.53464898,0.03011842,97.43870356],[4.53464848,0.03011669,97.43741976],[4.53464797,0.03011495,97.43613583],[4.53464747,0.03011322,97.43485177],[4.53464696,0.03011149,97.43356762],[4.53464646,0.03010976,97.43228338],[4.53464595,0.03010803,97.43099908],[4.53464545,0.03010629,97.42971473],[4.53464494,0.03010456,97.42843036],[4.53464444,0.03010283,97.42714599],[4.53464393,0.0301011,97.42586164],[4.53464343,0.03009937,97.42457734],[4.53464292,0.03009763,97.42329311],[4.53464242,0.0300959,97.42200895],[4.53464191,0.03009417,97.42072481],[4.53464141,0.03009244,97.41944069],[4.5346409,0.03009071,97.41815654],[4.5346404,0.03008897,97.41687234],[4.5346399,0.03008724,97.41558807],[4.53463939,0.03008551,97.41430369],[4.53463889,0.03008378,97.41301917],[4.53463838,0.03008204,97.4117345],[4.53463788,0.03008031,97.41044964],[4.53463737,0.03007858,97.40916457],[4.53463687,0.03007685,97.40787926],[4.53463636,0.03007511,97.40659367],[4.53463586,0.03007338,97.40530779],[4.53463536,0.03007165,97.40402159],[4.53463485,0.03006992,97.40273503],[4.53463435,0.03006818,97.4014481],[4.53463384,0.03006645,97.40016075],[4.53463334,0.03006472,97.39887298],[4.53463283,0.03006299,97.39758474],[4.53463233,0.03006125,97.39629601],[4.53463182,0.03005952,97.39500677],[4.53463132,0.03005779,97.39371698],[4.53463081,0.03005606,97.39242662],[4.5346303,0.03005432,97.39113567],[4.5346298,0.03005259,97.38984408],[4.53462929,0.03005086,97.38855185],[4.53462879,0.03004913,97.3872592],[4.53462828,0.03004739,97.38596658],[4.53462777,0.03004566,97.38467445],[4.53462727,0.03004393,97.38338327],[4.53462676,0.0300422,97.38209351],[4.53462626,0.03004046,97.38080564],[4.53462575,0.03003873,97.37952012],[4.53462525,0.030037,97.37823741],[4.53462475,0.03003526,97.37695797],[4.53462425,0.03003353,97.37568227],[4.53462375,0.03003179,97.37441078],[4.53462325,0.03003006,97.37314395],[4.53462276,0.03002832,97.37188225],[4.53462227,0.03002659,97.37062615],[4.53462177,0.03002485,97.3693761],[4.53462129,0.03002311,97.36813259],[4.5346208,0.03002138,97.3668961],[4.53462031,0.03001964,97.36566714],[4.53461983,0.0300179,97.36444621],[4.53461935,0.03001616,97.36323381],[4.53461888,0.03001442,97.36203044],[4.53461841,0.03001268,97.36083639],[4.53461794,0.03001093,97.35965117],[4.53461747,0.03000919,97.35847406],[4.53461701,0.03000745,97.35730436],[4.53461654,0.0300057,97.35614135],[4.53461608,0.03000396,97.35498434],[4.53461563,0.03000221,97.3538326],[4.53461517,0.03000047,97.35268544],[4.53461471,0.02999872,97.35154215],[4.53461426,0.02999698,97.35040201],[4.5346138,0.02999523,97.34926433],[4.53461335,0.02999348,97.34812838],[4.5346129,0.02999174,97.34699347],[4.53461245,0.02998999,97.34585888],[4.53461199,0.02998825,97.34472391],[4.53461154,0.0299865,97.34358785],[4.53461109,0.02998476,97.34244999],[4.53461063,0.02998301,97.34130962],[4.53461017,0.02998127,97.34016603],[4.53460972,0.02997952,97.33901882],[4.53460926,0.02997778,97.33786883],[4.5346088,0.02997603,97.33671719],[4.53460834,0.02997429,97.33556503],[4.53460788,0.02997255,97.33441349],[4.53460742,0.0299708,97.3332637],[4.53460696,0.02996906,97.33211681],[4.53460651,0.02996732,97.33097394],[4.53460605,0.02996557,97.32983623],[4.5346056,0.02996383,97.32870482],[4.53460515,0.02996208,97.32758085],[4.5346047,0.02996033,97.32646545],[4.53460426,0.02995859,97.32535976],[4.53460382,0.02995684,97.32426491],[4.53460338,0.02995509,97.32318205],[4.53460295,0.02995334,97.3221123],[4.53460252,0.02995159,97.32105682],[4.53460209,0.02994984,97.32001673],[4.53460168,0.02994808,97.31899309],[4.53460126,0.02994633,97.3179852],[4.53460086,0.02994457,97.31699061],[4.53460045,0.02994281,97.31600678],[4.53460005,0.02994105,97.31503118],[4.53459965,0.02993929,97.31406127],[4.53459925,0.02993753,97.31309458],[4.53459885,0.02993577,97.31212991],[4.53459845,0.02993401,97.31116732],[4.53459805,0.02993225,97.31020694],[4.53459765,0.02993049,97.30924889],[4.53459726,0.02992873,97.30829328],[4.53459686,0.02992697,97.30734025],[4.53459646,0.02992521,97.30638988],[4.53459607,0.02992345,97.30544222],[4.53459567,0.02992169,97.30449734],[4.53459528,0.02991993,97.3035553],[4.53459489,0.02991817,97.30261614],[4.5345945,0.02991641,97.30167994],[4.5345941,0.02991465,97.30074673],[4.53459371,0.02991289,97.29981659],[4.53459332,0.02991113,97.29888958],[4.53459294,0.02990937,97.29796574],[4.53459255,0.0299076,97.29704513],[4.53459216,0.02990584,97.29612782],[4.53459177,0.02990408,97.29521386],[4.53459139,0.02990232,97.29430331],[4.534591,0.02990056,97.29339622],[4.53459062,0.02989879,97.29249266],[4.53459024,0.02989703,97.29159268],[4.53458986,0.02989527,97.29069634],[4.53458947,0.0298935,97.2898037],[4.5345891,0.02989174,97.28891481],[4.53458872,0.02988998,97.28802974],[4.53458834,0.02988821,97.28714843],[4.53458796,0.02988645,97.28627048],[4.53458759,0.02988468,97.28539534],[4.53458721,0.02988292,97.28452249],[4.53458683,0.02988115,97.2836514],[4.53458646,0.02987939,97.28278154],[4.53458608,0.02987762,97.2819124],[4.53458571,0.02987586,97.28104343],[4.53458533,0.02987409,97.28017412],[4.53458495,0.02987233,97.27930394],[4.53458458,0.02987057,97.27843235],[4.5345842,0.0298688,97.27755883],[4.53458382,0.02986704,97.27668285],[4.53458344,0.02986528,97.27580388],[4.53458305,0.02986352,97.2749214],[4.53458267,0.02986175,97.27403488],[4.53458228,0.02985999,97.27314424],[4.53458189,0.02985823,97.27225113],[4.53458151,0.02985647,97.27135766],[4.53458112,0.02985471,97.2704659],[4.53458073,0.02985295,97.26957796],[4.53458035,0.02985119,97.26869592],[4.53457996,0.02984943,97.26782188],[4.53457958,0.02984767,97.26695793],[4.53457921,0.0298459,97.26610617],[4.53457884,0.02984414,97.26526868],[4.53457847,0.02984237,97.26444757],[4.53457811,0.0298406,97.26364492],[4.53457775,0.02983883,97.26286272],[4.53457741,0.02983706,97.26210001],[4.53457706,0.02983529,97.26135294],[4.53457672,0.02983351,97.26061751],[4.53457638,0.02983174,97.25988973],[4.53457605,0.02982996,97.2591656],[4.53457571,0.02982819,97.25844113],[4.53457537,0.02982641,97.2577123],[4.53457503,0.02982464,97.2569763],[4.53457468,0.02982287,97.25623488],[4.53457433,0.02982109,97.25549092],[4.53457399,0.02981932,97.25474731],[4.53457364,0.02981755,97.25400693],[4.5345733,0.02981578,97.25327267],[4.53457296,0.029814,97.25254742],[4.53457262,0.02981223,97.25183406],[4.53457228,0.02981045,97.25113547],[4.53457196,0.02980868,97.25045456],[4.53457163,0.0298069,97.24979344],[4.53457132,0.02980512,97.24915124],[4.53457101,0.02980333,97.24852628],[4.5345707,0.02980155,97.24791694],[4.5345704,0.02979976,97.24732156],[4.5345701,0.02979797,97.24673848],[4.5345698,0.02979619,97.24616607],[4.53456951,0.0297944,97.24560266],[4.53456922,0.0297926,97.24504662],[4.53456892,0.02979081,97.24449628],[4.53456864,0.02978902,97.24394999],[4.53456835,0.02978723,97.24340611],[4.53456806,0.02978544,97.24286298],[4.53456777,0.02978364,97.24231895],[4.53456747,0.02978185,97.24177236],[4.53456718,0.02978006,97.24122156],[4.53456689,0.02977827,97.24066532],[4.53456659,0.02977648,97.24010404],[4.53456629,0.02977469,97.23953856],[4.53456599,0.0297729,97.23896968],[4.53456568,0.02977111,97.2383982],[4.53456538,0.02976932,97.23782488],[4.53456508,0.02976753,97.23725049],[4.53456477,0.02976574,97.23667582],[4.53456447,0.02976395,97.23610162],[4.53456416,0.02976216,97.23552869],[4.53456386,0.02976037,97.23495778],[4.53456355,0.02975858,97.23438968],[4.53456325,0.02975678,97.23382515],[4.53456295,0.02975499,97.23326498],[4.53456265,0.0297532,97.23270993],[4.53456235,0.02975141,97.23216078],[4.53456205,0.02974961,97.2316183],[4.53456175,0.02974782,97.23108327],[4.53456146,0.02974602,97.23055633],[4.53456117,0.02974423,97.2300351],[4.53456088,0.02974243,97.22951425],[4.53456058,0.02974064,97.22898834],[4.53456029,0.02973884,97.22845191],[4.53455998,0.02973705,97.22789951],[4.53455967,0.02973526,97.22732571],[4.53455935,0.02973347,97.22672515],[4.53455902,0.02973168,97.22609249],[4.53455868,0.0297299,97.22542431],[4.53455833,0.02972812,97.22472481],[4.53455797,0.02972635,97.22400014],[4.5345576,0.02972457,97.22325641],[4.53455722,0.0297228,97.22249976],[4.53455685,0.02972103,97.22173632],[4.53455647,0.02971926,97.22097222],[4.5345561,0.02971748,97.2202136],[4.53455573,0.02971571,97.21946658],[4.53455536,0.02971394,97.21873549],[4.534555,0.02971216,97.21801761],[4.53455464,0.02971038,97.21730856],[4.53455429,0.0297086,97.21660391],[4.53455393,0.02970682,97.21589927],[4.53455357,0.02970505,97.21519023],[4.53455321,0.02970327,97.21447239],[4.53455284,0.02970149,97.21374133],[4.53455247,0.02969972,97.21299265],[4.53455209,0.02969795,97.21222194],[4.5345517,0.02969618,97.2114263],[4.5345513,0.02969441,97.21060874],[4.5345509,0.02969264,97.20977372],[4.53455049,0.02969088,97.20892573],[4.53455008,0.02968911,97.20806926],[4.53454967,0.02968735,97.20720882],[4.53454926,0.02968559,97.2063489],[4.53454885,0.02968382,97.20549311],[4.53454844,0.02968206,97.20464173],[4.53454804,0.02968029,97.20379422],[4.53454763,0.02967853,97.20295003],[4.53454722,0.02967676,97.20210862],[4.53454682,0.029675,97.20126945],[4.53454642,0.02967323,97.20043198],[4.53454601,0.02967146,97.19959567],[4.53454561,0.0296697,97.19875997],[4.5345452,0.02966793,97.19792435],[4.5345448,0.02966617,97.19708826],[4.5345444,0.0296644,97.19625116],[4.53454399,0.02966263,97.19541251],[4.53454359,0.02966087,97.19457176],[4.53454318,0.0296591,97.19372838],[4.53454277,0.02965733,97.19288182],[4.53454236,0.02965557,97.19203153],[4.53454195,0.0296538,97.19117698],[4.53454154,0.02965204,97.19031762],[4.53454113,0.02965027,97.18945292],[4.53454071,0.02964851,97.18858232],[4.5345403,0.02964675,97.18770528],[4.53453988,0.02964498,97.18682127],[4.53453945,0.02964322,97.18592974],[4.53453903,0.02964146,97.18503014],[4.5345386,0.0296397,97.18412194],[4.53453817,0.02963794,97.18320459],[4.53453774,0.02963618,97.1822779],[4.5345373,0.02963442,97.18134278],[4.53453686,0.02963267,97.18040045],[4.53453642,0.02963091,97.1794521],[4.53453598,0.02962915,97.17849894],[4.53453554,0.0296274,97.17754216],[4.53453509,0.02962565,97.17658298],[4.53453465,0.02962389,97.17562258],[4.53453421,0.02962213,97.17466218],[4.53453376,0.02962038,97.17370298],[4.53453332,0.02961862,97.17274617],[4.53453329,0.02961849,97.17267337]],"type":"LineString"},"type":"feature","properties":{"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004700","id":-3,"type":"shoulder","predecessorId":0}},{"geometry":{"coordinates":[[4.53473839,0.03041902,97.66117107],[4.5347379,0.03041729,97.66000628],[4.53473741,0.03041556,97.65883935],[4.53473692,0.03041382,97.65767031],[4.53473642,0.03041209,97.65649919],[4.53473593,0.03041036,97.65532601],[4.53473543,0.03040863,97.6541508],[4.53473494,0.03040689,97.65297358],[4.53473444,0.03040516,97.65179438],[4.53473395,0.03040343,97.65061323],[4.53473345,0.03040169,97.64943015],[4.53473296,0.03039996,97.64824516],[4.53473246,0.03039823,97.6470583],[4.53473196,0.0303965,97.64586959],[4.53473146,0.03039477,97.64467905],[4.53473097,0.03039303,97.6434867],[4.53473047,0.0303913,97.64229259],[4.53472997,0.03038957,97.64109672],[4.53472947,0.03038784,97.63989913],[4.53472897,0.03038611,97.63869984],[4.53472847,0.03038438,97.63749888],[4.53472797,0.03038265,97.63629627],[4.53472747,0.03038091,97.63509203],[4.53472697,0.03037918,97.6338862],[4.53472647,0.03037745,97.6326788],[4.53472597,0.03037572,97.63146985],[4.53472547,0.03037399,97.63025938],[4.53472497,0.03037226,97.62904741],[4.53472447,0.03037053,97.62783397],[4.53472397,0.0303688,97.62661908],[4.53472347,0.03036707,97.62540278],[4.53472296,0.03036534,97.62418507],[4.53472246,0.03036361,97.622966],[4.53472196,0.03036188,97.62174558],[4.53472146,0.03036015,97.62052384],[4.53472095,0.03035842,97.6193008],[4.53472045,0.03035669,97.61807649],[4.53471995,0.03035495,97.61685094],[4.53471944,0.03035322,97.61562416],[4.53471894,0.03035149,97.61439619],[4.53471843,0.03034976,97.61316705],[4.53471793,0.03034803,97.61193676],[4.53471742,0.0303463,97.61070534],[4.53471692,0.03034458,97.60947283],[4.53471642,0.03034285,97.60823925],[4.53471591,0.03034112,97.60700462],[4.53471541,0.03033939,97.60576897],[4.5347149,0.03033766,97.60453232],[4.53471439,0.03033593,97.60329469],[4.53471389,0.0303342,97.60205612],[4.53471338,0.03033247,97.60081662],[4.53471288,0.03033074,97.59957622],[4.53471237,0.03032901,97.59833495],[4.53471187,0.03032728,97.59709283],[4.53471136,0.03032555,97.59584988],[4.53471085,0.03032382,97.59460613],[4.53471035,0.03032209,97.5933616],[4.53470984,0.03032036,97.59211632],[4.53470934,0.03031863,97.59087031],[4.53470883,0.0303169,97.5896236],[4.53470832,0.03031517,97.58837621],[4.53470782,0.03031344,97.58712816],[4.53470731,0.03031171,97.58587949],[4.5347068,0.03030998,97.5846302],[4.5347063,0.03030825,97.58338034],[4.53470579,0.03030653,97.58212992],[4.53470529,0.0303048,97.58087897],[4.53470478,0.03030307,97.57962751],[4.53470427,0.03030134,97.57837556],[4.53470377,0.03029961,97.57712316],[4.53470326,0.03029788,97.57587032],[4.53470275,0.03029615,97.57461707],[4.53470225,0.03029442,97.57336343],[4.53470174,0.03029269,97.57210943],[4.53470123,0.03029096,97.57085509],[4.53470073,0.03028923,97.56960043],[4.53470022,0.0302875,97.56834549],[4.53469972,0.03028577,97.56709028],[4.53469921,0.03028404,97.56583483],[4.5346987,0.03028231,97.56457917],[4.5346982,0.03028058,97.56332331],[4.53469769,0.03027885,97.56206728],[4.53469719,0.03027712,97.5608111],[4.53469668,0.03027539,97.55955481],[4.53469618,0.03027366,97.55829838],[4.53469567,0.03027193,97.55704183],[4.53469517,0.0302702,97.55578515],[4.53469466,0.03026847,97.55452833],[4.53469416,0.03026675,97.55327137],[4.53469365,0.03026502,97.55201427],[4.53469315,0.03026329,97.55075702],[4.53469264,0.03026156,97.54949962],[4.53469214,0.03025983,97.54824207],[4.53469163,0.0302581,97.54698436],[4.53469113,0.03025637,97.54572648],[4.53469062,0.03025464,97.54446844],[4.53469012,0.03025291,97.54321023],[4.53468962,0.03025117,97.54195185],[4.53468911,0.03024944,97.54069329],[4.53468861,0.03024771,97.53943455],[4.5346881,0.03024598,97.53817562],[4.5346876,0.03024425,97.53691651],[4.5346871,0.03024252,97.5356572],[4.53468659,0.03024079,97.5343977],[4.53468609,0.03023906,97.533138],[4.53468558,0.03023733,97.53187809],[4.53468508,0.0302356,97.53061798],[4.53468458,0.03023387,97.52935766],[4.53468407,0.03023214,97.52809713],[4.53468357,0.03023041,97.52683637],[4.53468307,0.03022868,97.5255754],[4.53468256,0.03022695,97.5243142],[4.53468206,0.03022522,97.52305278],[4.53468156,0.03022349,97.52179112],[4.53468105,0.03022176,97.52052922],[4.53468055,0.03022003,97.51926709],[4.53468005,0.03021829,97.51800471],[4.53467954,0.03021656,97.51674208],[4.53467904,0.03021483,97.51547921],[4.53467854,0.0302131,97.51421608],[4.53467803,0.03021137,97.5129527],[4.53467753,0.03020964,97.51168905],[4.53467703,0.03020791,97.51042514],[4.53467652,0.03020618,97.50916096],[4.53467602,0.03020445,97.50789651],[4.53467552,0.03020272,97.50663178],[4.53467501,0.03020098,97.50536677],[4.53467451,0.03019925,97.50410149],[4.53467401,0.03019752,97.50283591],[4.5346735,0.03019579,97.50157005],[4.534673,0.03019406,97.50030392],[4.5346725,0.03019233,97.49903752],[4.534672,0.0301906,97.49777085],[4.53467149,0.03018887,97.49650394],[4.53467099,0.03018713,97.49523678],[4.53467049,0.0301854,97.49396938],[4.53466998,0.03018367,97.49270176],[4.53466948,0.03018194,97.49143391],[4.53466898,0.03018021,97.49016585],[4.53466847,0.03017848,97.48889759],[4.53466797,0.03017675,97.48762912],[4.53466747,0.03017501,97.48636047],[4.53466697,0.03017328,97.48509163],[4.53466646,0.03017155,97.48382263],[4.53466596,0.03016982,97.48255345],[4.53466546,0.03016809,97.48128412],[4.53466496,0.03016636,97.48001463],[4.53466445,0.03016462,97.478745],[4.53466395,0.03016289,97.47747524],[4.53466345,0.03016116,97.47620536],[4.53466294,0.03015943,97.47493535],[4.53466244,0.0301577,97.47366524],[4.53466194,0.03015596,97.47239503],[4.53466144,0.03015423,97.47112472],[4.53466094,0.0301525,97.46985434],[4.53466043,0.03015077,97.46858388],[4.53465993,0.03014904,97.46731335],[4.53465943,0.0301473,97.46604277],[4.53465893,0.03014557,97.46477215],[4.53465842,0.03014384,97.46350148],[4.53465792,0.03014211,97.46223078],[4.53465742,0.03014038,97.46096007],[4.53465692,0.03013864,97.45968934],[4.53465642,0.03013691,97.4584186],[4.53465592,0.03013518,97.45714787],[4.53465541,0.03013345,97.45587716],[4.53465491,0.03013171,97.45460647],[4.53465441,0.03012998,97.4533358],[4.53465391,0.03012825,97.45206518],[4.53465341,0.03012651,97.45079461],[4.53465291,0.03012478,97.44952409],[4.53465241,0.03012305,97.44825364],[4.53465191,0.03012132,97.44698328],[4.53465141,0.03011958,97.44571302],[4.5346509,0.03011785,97.44444287],[4.5346504,0.03011612,97.44317286],[4.5346499,0.03011438,97.44190298],[4.5346494,0.03011265,97.44063327],[4.5346489,0.03011092,97.43936374],[4.5346484,0.03010918,97.4380944],[4.5346479,0.03010745,97.43682527],[4.5346474,0.03010572,97.43555636],[4.5346469,0.03010398,97.43428768],[4.5346464,0.03010225,97.43301926],[4.5346459,0.03010052,97.43175111],[4.5346454,0.03009878,97.43048327],[4.53464491,0.03009705,97.42921575],[4.53464441,0.03009532,97.4279486],[4.53464391,0.03009358,97.42668185],[4.53464341,0.03009185,97.42541553],[4.53464291,0.03009011,97.42414967],[4.53464241,0.03008838,97.4228843],[4.53464192,0.03008665,97.42161946],[4.53464142,0.03008491,97.42035518],[4.53464092,0.03008318,97.41909148],[4.53464042,0.03008144,97.41782841],[4.53463993,0.03007971,97.416566],[4.53463943,0.03007797,97.41530427],[4.53463893,0.03007624,97.41404326],[4.53463844,0.0300745,97.41278301],[4.53463794,0.03007277,97.41152353],[4.53463745,0.03007103,97.41026487],[4.53463695,0.0300693,97.40900706],[4.53463646,0.03006756,97.40775013],[4.53463596,0.03006583,97.40649412],[4.53463547,0.03006409,97.40523904],[4.53463497,0.03006235,97.40398495],[4.53463448,0.03006062,97.40273186],[4.53463399,0.03005888,97.40147981],[4.5346335,0.03005715,97.40022884],[4.534633,0.03005541,97.39897897],[4.53463251,0.03005367,97.39773024],[4.53463202,0.03005194,97.39648268],[4.53463153,0.0300502,97.39523632],[4.53463104,0.03004846,97.3939912],[4.53463055,0.03004673,97.39274735],[4.53463006,0.03004499,97.39150479],[4.53462957,0.03004325,97.39026356],[4.53462908,0.03004151,97.3890237],[4.5346286,0.03003977,97.38778523],[4.53462811,0.03003804,97.3865482],[4.53462762,0.0300363,97.38531262],[4.53462714,0.03003456,97.38407853],[4.53462665,0.03003282,97.38284597],[4.53462617,0.03003108,97.38161497],[4.53462568,0.03002934,97.38038556],[4.5346252,0.03002761,97.37915776],[4.53462471,0.03002587,97.37793163],[4.53462423,0.03002413,97.37670718],[4.53462375,0.03002239,97.37548445],[4.53462327,0.03002065,97.37426351],[4.53462279,0.03001891,97.37304444],[4.53462231,0.03001717,97.37182729],[4.53462183,0.03001543,97.37061214],[4.53462135,0.03001369,97.36939906],[4.53462087,0.03001195,97.36818811],[4.53462039,0.03001021,97.36697936],[4.53461992,0.03000847,97.36577289],[4.53461944,0.03000673,97.36456875],[4.53461896,0.03000499,97.36336702],[4.53461849,0.03000325,97.36216776],[4.53461802,0.03000151,97.36097104],[4.53461754,0.02999977,97.35977694],[4.53461707,0.02999803,97.3585855],[4.5346166,0.02999629,97.35739682],[4.53461613,0.02999455,97.35621094],[4.53461566,0.02999281,97.35502795],[4.53461519,0.02999107,97.3538479],[4.53461473,0.02998932,97.35267087],[4.53461426,0.02998758,97.35149692],[4.5346138,0.02998584,97.35032612],[4.53461333,0.0299841,97.34915855],[4.53461287,0.02998235,97.34799426],[4.53461241,0.02998061,97.34683332],[4.53461195,0.02997887,97.34567581],[4.53461149,0.02997712,97.34452179],[4.53461103,0.02997538,97.34337133],[4.53461057,0.02997364,97.34222449],[4.53461011,0.02997189,97.34108136],[4.53460966,0.02997015,97.33994198],[4.5346092,0.0299684,97.33880643],[4.53460875,0.02996666,97.33767479],[4.5346083,0.02996491,97.33654711],[4.53460785,0.02996317,97.33542347],[4.5346074,0.02996142,97.33430393],[4.53460695,0.02995967,97.33318856],[4.53460651,0.02995793,97.33207743],[4.53460606,0.02995618,97.33097061],[4.53460562,0.02995443,97.32986817],[4.53460517,0.02995269,97.32877017],[4.53460473,0.02995094,97.32767668],[4.53460429,0.02994919,97.32658777],[4.53460386,0.02994744,97.32550352],[4.53460342,0.02994569,97.32442397],[4.53460298,0.02994394,97.32334922],[4.53460255,0.02994219,97.32227932],[4.53460212,0.02994044,97.32121434],[4.53460169,0.02993869,97.32015435],[4.53460126,0.02993694,97.31909942],[4.53460083,0.02993519,97.31804961],[4.5346004,0.02993344,97.317005],[4.53459998,0.02993169,97.31596566],[4.53459955,0.02992994,97.31493165],[4.53459913,0.02992818,97.31390303],[4.53459871,0.02992643,97.31287989],[4.53459829,0.02992468,97.31186225],[4.53459788,0.02992292,97.31085011],[4.53459746,0.02992117,97.30984349],[4.53459705,0.02991941,97.30884238],[4.53459664,0.02991766,97.30784679],[4.53459623,0.0299159,97.30685672],[4.53459582,0.02991415,97.30587218],[4.53459541,0.02991239,97.30489317],[4.53459501,0.02991063,97.30391969],[4.5345946,0.02990887,97.30295175],[4.5345942,0.02990712,97.30198935],[4.5345938,0.02990536,97.3010325],[4.5345934,0.0299036,97.30008119],[4.534593,0.02990184,97.29913544],[4.53459261,0.02990008,97.29819524],[4.53459221,0.02989832,97.29726061],[4.53459182,0.02989656,97.29633154],[4.53459143,0.0298948,97.29540804],[4.53459104,0.02989304,97.29449011],[4.53459065,0.02989128,97.29357775],[4.53459027,0.02988952,97.29267098],[4.53458988,0.02988775,97.2917698],[4.5345895,0.02988599,97.2908742],[4.53458912,0.02988423,97.2899842],[4.53458874,0.02988246,97.28909979],[4.53458836,0.0298807,97.28822099],[4.53458798,0.02987894,97.28734779],[4.53458761,0.02987717,97.28648021],[4.53458723,0.02987541,97.28561823],[4.53458686,0.02987364,97.28476188],[4.53458649,0.02987187,97.28391115],[4.53458612,0.02987011,97.28306604],[4.53458575,0.02986834,97.28222657],[4.53458539,0.02986657,97.28139273],[4.53458502,0.02986481,97.28056453],[4.53458466,0.02986304,97.27974198],[4.5345843,0.02986127,97.27892507],[4.53458394,0.0298595,97.27811382],[4.53458358,0.02985773,97.27730824],[4.53458322,0.02985596,97.27650834],[4.53458287,0.02985419,97.27571412],[4.53458252,0.02985242,97.2749256],[4.53458216,0.02985065,97.27414279],[4.53458181,0.02984888,97.27336569],[4.53458146,0.0298471,97.27259431],[4.53458112,0.02984533,97.27182866],[4.53458077,0.02984356,97.27106876],[4.53458043,0.02984179,97.2703146],[4.53458008,0.02984001,97.26956621],[4.53457974,0.02983824,97.26882358],[4.5345794,0.02983646,97.2680867],[4.53457906,0.02983469,97.26735546],[4.53457872,0.02983291,97.26662973],[4.53457839,0.02983114,97.26590939],[4.53457805,0.02982936,97.26519431],[4.53457772,0.02982758,97.26448436],[4.53457739,0.02982581,97.26377942],[4.53457706,0.02982403,97.26307936],[4.53457673,0.02982225,97.26238405],[4.5345764,0.02982047,97.26169337],[4.53457607,0.0298187,97.26100719],[4.53457574,0.02981692,97.26032538],[4.53457542,0.02981514,97.25964782],[4.53457509,0.02981336,97.25897438],[4.53457477,0.02981158,97.25830493],[4.53457445,0.0298098,97.25763934],[4.53457413,0.02980802,97.25697749],[4.5345738,0.02980624,97.25631925],[4.53457348,0.02980446,97.2556645],[4.53457316,0.02980268,97.25501311],[4.53457284,0.0298009,97.25436494],[4.53457252,0.02979912,97.25371988],[4.5345722,0.02979734,97.25307779],[4.53457189,0.02979555,97.25243855],[4.53457157,0.02979377,97.25180203],[4.53457125,0.02979199,97.2511681],[4.53457093,0.0297902,97.25053664],[4.53457061,0.02978842,97.24990751],[4.5345703,0.02978664,97.2492806],[4.53456998,0.02978485,97.24865577],[4.53456966,0.02978307,97.24803289],[4.53456935,0.02978128,97.24741184],[4.53456903,0.0297795,97.24679249],[4.53456872,0.02977771,97.2461747],[4.5345684,0.02977593,97.24555831],[4.53456808,0.02977414,97.24494316],[4.53456777,0.02977236,97.24432909],[4.53456745,0.02977057,97.24371589],[4.53456713,0.02976878,97.24310336],[4.53456682,0.029767,97.24249129],[4.5345665,0.02976521,97.24187946],[4.53456618,0.02976343,97.24126767],[4.53456586,0.02976164,97.2406557],[4.53456555,0.02975985,97.24004335],[4.53456523,0.02975807,97.23943041],[4.53456491,0.02975628,97.23881665],[4.53456459,0.02975449,97.23820189],[4.53456426,0.02975271,97.23758589],[4.53456394,0.02975092,97.23696846],[4.53456362,0.02974914,97.23634939],[4.5345633,0.02974735,97.23572845],[4.53456297,0.02974556,97.23510545],[4.53456264,0.02974378,97.23448016],[4.53456232,0.02974199,97.23385239],[4.53456199,0.02974021,97.23322191],[4.53456166,0.02973842,97.23258852],[4.53456133,0.02973664,97.23195201],[4.534561,0.02973486,97.23131218],[4.53456066,0.02973307,97.23066892],[4.53456033,0.02973129,97.23002213],[4.53455999,0.0297295,97.22937171],[4.53455965,0.02972772,97.22871757],[4.53455931,0.02972594,97.2280596],[4.53455897,0.02972416,97.22739771],[4.53455863,0.02972238,97.22673181],[4.53455828,0.02972059,97.22606178],[4.53455794,0.02971881,97.22538755],[4.53455759,0.02971703,97.224709],[4.53455724,0.02971525,97.22402605],[4.53455689,0.02971347,97.22333858],[4.53455654,0.02971169,97.22264652],[4.53455618,0.02970991,97.22194975],[4.53455582,0.02970813,97.22124818],[4.53455547,0.02970636,97.22054171],[4.53455511,0.02970458,97.21983025],[4.53455474,0.0297028,97.21911369],[4.53455438,0.02970102,97.21839195],[4.53455401,0.02969925,97.21766491],[4.53455365,0.02969747,97.21693249],[4.53455328,0.0296957,97.21619458],[4.53455291,0.02969392,97.2154511],[4.53455253,0.02969215,97.21470206],[4.53455216,0.02969038,97.21394744],[4.53455178,0.0296886,97.21318728],[4.5345514,0.02968683,97.21242156],[4.53455102,0.02968506,97.21165031],[4.53455063,0.02968329,97.21087353],[4.53455025,0.02968151,97.21009124],[4.53454986,0.02967974,97.20930343],[4.53454947,0.02967797,97.20851013],[4.53454908,0.0296762,97.20771133],[4.53454869,0.02967444,97.20690706],[4.53454829,0.02967267,97.20609731],[4.5345479,0.0296709,97.2052821],[4.5345475,0.02966913,97.20446144],[4.5345471,0.02966736,97.20363534],[4.53454669,0.0296656,97.2028038],[4.53454629,0.02966383,97.20196683],[4.53454588,0.02966206,97.20112445],[4.53454548,0.0296603,97.20027667],[4.53454507,0.02965853,97.19942348],[4.53454466,0.02965677,97.19856492],[4.53454424,0.02965501,97.19770097],[4.53454383,0.02965324,97.19683165],[4.53454341,0.02965148,97.19595698],[4.53454299,0.02964972,97.19507696],[4.53454257,0.02964796,97.1941916],[4.53454215,0.02964619,97.1933009],[4.53454173,0.02964443,97.19240489],[4.5345413,0.02964267,97.19150357],[4.53454087,0.02964091,97.19059694],[4.53454045,0.02963915,97.18968502],[4.53454002,0.02963739,97.18876783],[4.53453958,0.02963563,97.18784541],[4.53453915,0.02963388,97.18691783],[4.53453871,0.02963212,97.18598514],[4.53453828,0.02963036,97.18504739],[4.53453784,0.0296286,97.18410466],[4.5345374,0.02962685,97.18315699],[4.53453696,0.0296251,97.18220444],[4.53453652,0.02962334,97.18124708],[4.53453607,0.02962159,97.18028495],[4.53453563,0.02961983,97.17931812],[4.53453518,0.02961808,97.17834665],[4.53453514,0.02961795,97.17827241]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004700","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"entry","predecessorId":0}},{"geometry":{"coordinates":[[4.53476802,0.03041033,97.75210046],[4.53476752,0.0304086,97.75088695],[4.53476702,0.03040687,97.74967282],[4.53476652,0.03040514,97.74845808],[4.53476602,0.0304034,97.74724273],[4.53476552,0.03040167,97.74602677],[4.53476502,0.03039994,97.7448102],[4.53476452,0.03039821,97.74359303],[4.53476403,0.03039648,97.74237524],[4.53476353,0.03039474,97.74115686],[4.53476303,0.03039301,97.73993787],[4.53476253,0.03039128,97.73871828],[4.53476203,0.03038955,97.73749809],[4.53476153,0.03038782,97.7362773],[4.53476103,0.03038608,97.73505591],[4.53476053,0.03038435,97.73383393],[4.53476003,0.03038262,97.73261136],[4.53475953,0.03038089,97.73138819],[4.53475903,0.03037916,97.73016443],[4.53475853,0.03037742,97.72894009],[4.53475803,0.03037569,97.72771515],[4.53475753,0.03037396,97.72648963],[4.53475703,0.03037223,97.72526352],[4.53475653,0.0303705,97.72403683],[4.53475604,0.03036876,97.72280956],[4.53475554,0.03036703,97.7215817],[4.53475504,0.0303653,97.72035327],[4.53475454,0.03036357,97.71912426],[4.53475404,0.03036184,97.71789468],[4.53475354,0.0303601,97.71666452],[4.53475304,0.03035837,97.71543379],[4.53475254,0.03035664,97.71420248],[4.53475204,0.03035491,97.71297061],[4.53475154,0.03035318,97.71173817],[4.53475104,0.03035144,97.71050516],[4.53475054,0.03034971,97.70927159],[4.53475004,0.03034798,97.70803745],[4.53474954,0.03034625,97.70680275],[4.53474904,0.03034452,97.70556749],[4.53474854,0.03034279,97.70433167],[4.53474804,0.03034105,97.7030953],[4.53474754,0.03033932,97.70185836],[4.53474704,0.03033759,97.70062088],[4.53474654,0.03033586,97.69938284],[4.53474604,0.03033413,97.69814425],[4.53474554,0.03033239,97.69690511],[4.53474504,0.03033066,97.69566542],[4.53474454,0.03032893,97.69442519],[4.53474404,0.0303272,97.69318441],[4.53474354,0.03032547,97.69194308],[4.53474304,0.03032374,97.69070122],[4.53474254,0.030322,97.68945881],[4.53474204,0.03032027,97.68821587],[4.53474154,0.03031854,97.68697239],[4.53474104,0.03031681,97.68572837],[4.53474054,0.03031508,97.68448382],[4.53474004,0.03031334,97.68323874],[4.53473954,0.03031161,97.68199313],[4.53473904,0.03030988,97.68074698],[4.53473854,0.03030815,97.67950031],[4.53473804,0.03030642,97.67825312],[4.53473754,0.03030469,97.67700539],[4.53473703,0.03030295,97.67575715],[4.53473653,0.03030122,97.67450839],[4.53473603,0.03029949,97.6732591],[4.53473553,0.03029776,97.6720093],[4.53473503,0.03029603,97.67075898],[4.53473453,0.0302943,97.66950815],[4.53473403,0.03029256,97.6682568],[4.53473353,0.03029083,97.66700494],[4.53473303,0.0302891,97.66575257],[4.53473253,0.03028737,97.66449969],[4.53473203,0.03028564,97.66324631],[4.53473152,0.03028391,97.66199242],[4.53473102,0.03028218,97.66073802],[4.53473052,0.03028044,97.65948313],[4.53473002,0.03027871,97.65822773],[4.53472952,0.03027698,97.65697184],[4.53472902,0.03027525,97.65571544],[4.53472852,0.03027352,97.65445856],[4.53472801,0.03027179,97.65320117],[4.53472751,0.03027006,97.6519433],[4.53472701,0.03026832,97.65068493],[4.53472651,0.03026659,97.64942608],[4.53472601,0.03026486,97.64816673],[4.53472551,0.03026313,97.64690691],[4.534725,0.0302614,97.64564659],[4.5347245,0.03025967,97.6443858],[4.534724,0.03025794,97.64312452],[4.5347235,0.03025621,97.64186276],[4.534723,0.03025447,97.64060053],[4.53472249,0.03025274,97.63933782],[4.53472199,0.03025101,97.63807463],[4.53472149,0.03024928,97.63681097],[4.53472099,0.03024755,97.63554684],[4.53472048,0.03024582,97.63428224],[4.53471998,0.03024409,97.63301717],[4.53471948,0.03024236,97.63175163],[4.53471898,0.03024062,97.63048563],[4.53471847,0.03023889,97.62921917],[4.53471797,0.03023716,97.62795224],[4.53471747,0.03023543,97.62668485],[4.53471696,0.0302337,97.62541701],[4.53471646,0.03023197,97.62414871],[4.53471596,0.03023024,97.62287995],[4.53471545,0.03022851,97.62161074],[4.53471495,0.03022678,97.62034107],[4.53471445,0.03022505,97.61907096],[4.53471394,0.03022331,97.61780039],[4.53471344,0.03022158,97.61652938],[4.53471294,0.03021985,97.61525793],[4.53471243,0.03021812,97.61398602],[4.53471193,0.03021639,97.61271368],[4.53471143,0.03021466,97.6114409],[4.53471092,0.03021293,97.61016767],[4.53471042,0.0302112,97.60889401],[4.53470991,0.03020947,97.60761991],[4.53470941,0.03020774,97.60634538],[4.53470891,0.030206,97.60507041],[4.5347084,0.03020427,97.60379502],[4.5347079,0.03020254,97.60251919],[4.53470739,0.03020081,97.60124294],[4.53470689,0.03019908,97.59996625],[4.53470638,0.03019735,97.59868915],[4.53470588,0.03019562,97.59741162],[4.53470537,0.03019389,97.59613367],[4.53470487,0.03019216,97.5948553],[4.53470436,0.03019043,97.59357651],[4.53470386,0.0301887,97.5922973],[4.53470335,0.03018697,97.59101768],[4.53470285,0.03018524,97.58973764],[4.53470234,0.0301835,97.5884572],[4.53470184,0.03018177,97.58717634],[4.53470133,0.03018004,97.58589507],[4.53470083,0.03017831,97.5846134],[4.53470032,0.03017658,97.58333132],[4.53469982,0.03017485,97.58204883],[4.53469931,0.03017312,97.58076595],[4.53469881,0.03017139,97.57948266],[4.5346983,0.03016966,97.57819897],[4.53469779,0.03016793,97.57691489],[4.53469729,0.0301662,97.57563041],[4.53469678,0.03016447,97.57434553],[4.53469628,0.03016274,97.57306026],[4.53469577,0.03016101,97.5717746],[4.53469526,0.03015928,97.57048855],[4.53469476,0.03015754,97.56920212],[4.53469425,0.03015581,97.56791529],[4.53469375,0.03015408,97.56662808],[4.53469324,0.03015235,97.56534049],[4.53469273,0.03015062,97.56405252],[4.53469223,0.03014889,97.56276417],[4.53469172,0.03014716,97.56147545],[4.53469121,0.03014543,97.56018636],[4.53469071,0.0301437,97.55889689],[4.5346902,0.03014197,97.55760706],[4.53468969,0.03014024,97.55631686],[4.53468919,0.03013851,97.5550263],[4.53468868,0.03013678,97.55373538],[4.53468817,0.03013505,97.55244411],[4.53468766,0.03013332,97.55115248],[4.53468716,0.03013159,97.54986049],[4.53468665,0.03012986,97.54856816],[4.53468614,0.03012813,97.54727547],[4.53468563,0.0301264,97.54598244],[4.53468513,0.03012467,97.54468907],[4.53468462,0.03012294,97.54339536],[4.53468411,0.03012121,97.54210131],[4.5346836,0.03011948,97.54080693],[4.5346831,0.03011775,97.53951221],[4.53468259,0.03011602,97.53821716],[4.53468208,0.03011428,97.53692179],[4.53468157,0.03011255,97.5356261],[4.53468106,0.03011082,97.5343301],[4.53468055,0.03010909,97.53303381],[4.53468005,0.03010736,97.53173722],[4.53467954,0.03010563,97.53044036],[4.53467903,0.0301039,97.52914323],[4.53467852,0.03010217,97.52784583],[4.53467801,0.03010044,97.52654818],[4.5346775,0.03009871,97.52525029],[4.534677,0.03009698,97.52395217],[4.53467649,0.03009525,97.52265382],[4.53467598,0.03009352,97.52135525],[4.53467547,0.03009179,97.52005647],[4.53467496,0.03009006,97.5187575],[4.53467445,0.03008833,97.51745834],[4.53467394,0.0300866,97.51615899],[4.53467343,0.03008487,97.51485948],[4.53467293,0.03008314,97.5135598],[4.53467242,0.03008141,97.51225997],[4.53467191,0.03007968,97.51096],[4.5346714,0.03007795,97.50965989],[4.53467089,0.03007622,97.50835966],[4.53467038,0.03007449,97.5070593],[4.53466987,0.03007276,97.50575884],[4.53466936,0.03007103,97.50445829],[4.53466885,0.0300693,97.50315764],[4.53466835,0.03006757,97.50185691],[4.53466784,0.03006584,97.5005561],[4.53466733,0.03006411,97.49925524],[4.53466682,0.03006238,97.49795432],[4.53466631,0.03006065,97.49665336],[4.5346658,0.03005892,97.49535236],[4.53466529,0.03005719,97.49405133],[4.53466478,0.03005546,97.49275028],[4.53466427,0.03005373,97.49144923],[4.53466377,0.030052,97.49014818],[4.53466326,0.03005027,97.48884713],[4.53466275,0.03004853,97.48754611],[4.53466224,0.0300468,97.48624511],[4.53466173,0.03004507,97.48494414],[4.53466122,0.03004334,97.48364323],[4.53466071,0.03004161,97.48234236],[4.5346602,0.03003988,97.48104156],[4.5346597,0.03003815,97.47974084],[4.53465919,0.03003642,97.47844019],[4.53465868,0.03003469,97.47713963],[4.53465817,0.03003296,97.47583918],[4.53465766,0.03003123,97.47453883],[4.53465715,0.0300295,97.4732386],[4.53465665,0.03002777,97.47193849],[4.53465614,0.03002604,97.47063852],[4.53465563,0.03002431,97.4693387],[4.53465512,0.03002258,97.46803903],[4.53465461,0.03002084,97.46673952],[4.5346541,0.03001911,97.46544018],[4.5346536,0.03001738,97.46414102],[4.53465309,0.03001565,97.46284205],[4.53465258,0.03001392,97.46154329],[4.53465207,0.03001219,97.46024472],[4.53465157,0.03001046,97.45894638],[4.53465106,0.03000873,97.45764826],[4.53465055,0.030007,97.45635038],[4.53465004,0.03000527,97.45505273],[4.53464954,0.03000354,97.45375534],[4.53464903,0.03000181,97.45245821],[4.53464852,0.03000008,97.45116133],[4.53464801,0.02999835,97.44986473],[4.53464751,0.02999662,97.44856841],[4.534647,0.02999489,97.44727238],[4.53464649,0.02999316,97.44597663],[4.53464599,0.02999143,97.44468119],[4.53464548,0.0299897,97.44338605],[4.53464497,0.02998796,97.44209122],[4.53464446,0.02998623,97.44079672],[4.53464396,0.0299845,97.43950255],[4.53464345,0.02998277,97.43820871],[4.53464294,0.02998104,97.43691521],[4.53464244,0.02997931,97.43562206],[4.53464193,0.02997758,97.43432927],[4.53464142,0.02997585,97.43303684],[4.53464092,0.02997412,97.43174478],[4.53464041,0.02997239,97.4304531],[4.5346399,0.02997066,97.42916181],[4.5346394,0.02996893,97.42787091],[4.53463889,0.0299672,97.4265804],[4.53463838,0.02996547,97.42529031],[4.53463788,0.02996374,97.42400062],[4.53463737,0.02996201,97.42271136],[4.53463687,0.02996028,97.42142252],[4.53463636,0.02995855,97.42013412],[4.53463585,0.02995682,97.41884617],[4.53463535,0.02995509,97.41755866],[4.53463484,0.02995336,97.4162716],[4.53463433,0.02995163,97.41498502],[4.53463383,0.0299499,97.4136989],[4.53463332,0.02994817,97.41241326],[4.53463281,0.02994644,97.4111281],[4.53463231,0.02994471,97.40984344],[4.5346318,0.02994298,97.40855927],[4.5346313,0.02994125,97.40727561],[4.53463079,0.02993952,97.40599247],[4.53463028,0.0299378,97.40470984],[4.53462978,0.02993607,97.40342775],[4.53462927,0.02993434,97.40214619],[4.53462877,0.02993261,97.40086517],[4.53462826,0.02993088,97.3995847],[4.53462775,0.02992915,97.39830478],[4.53462725,0.02992742,97.39702543],[4.53462674,0.02992569,97.39574665],[4.53462623,0.02992396,97.39446845],[4.53462573,0.02992223,97.39319083],[4.53462522,0.0299205,97.39191381],[4.53462472,0.02991877,97.39063738],[4.53462421,0.02991704,97.38936156],[4.5346237,0.02991531,97.38808636],[4.5346232,0.02991358,97.38681177],[4.53462269,0.02991186,97.38553781],[4.53462218,0.02991013,97.38426449],[4.53462168,0.0299084,97.38299181],[4.53462117,0.02990667,97.38171978],[4.53462067,0.02990494,97.38044841],[4.53462016,0.02990321,97.3791777],[4.53461965,0.02990148,97.37790766],[4.53461915,0.02989975,97.3766383],[4.53461864,0.02989802,97.37536963],[4.53461813,0.0298963,97.37410165],[4.53461763,0.02989457,97.37283436],[4.53461712,0.02989284,97.37156779],[4.53461661,0.02989111,97.37030193],[4.53461611,0.02988938,97.36903679],[4.5346156,0.02988765,97.36777238],[4.53461509,0.02988592,97.3665087],[4.53461459,0.0298842,97.36524577],[4.53461408,0.02988247,97.3639836],[4.53461357,0.02988074,97.36272218],[4.53461307,0.02987901,97.36146153],[4.53461256,0.02987728,97.36020165],[4.53461205,0.02987555,97.35894256],[4.53461155,0.02987383,97.35768425],[4.53461104,0.0298721,97.35642674],[4.53461053,0.02987037,97.35517004],[4.53461003,0.02986864,97.35391415],[4.53460952,0.02986691,97.35265908],[4.53460901,0.02986519,97.35140483],[4.53460851,0.02986346,97.35015142],[4.534608,0.02986173,97.34889886],[4.53460749,0.02986,97.34764714],[4.53460698,0.02985827,97.34639628],[4.53460648,0.02985655,97.34514629],[4.53460597,0.02985482,97.34389717],[4.53460546,0.02985309,97.34264893],[4.53460495,0.02985136,97.3414016],[4.53460445,0.02984964,97.34015518],[4.53460394,0.02984791,97.33890969],[4.53460343,0.02984618,97.33766514],[4.53460292,0.02984445,97.33642153],[4.53460242,0.02984273,97.33517889],[4.53460191,0.029841,97.33393722],[4.5346014,0.02983927,97.33269655],[4.53460089,0.02983755,97.33145687],[4.53460039,0.02983582,97.33021821],[4.53459988,0.02983409,97.32898057],[4.53459937,0.02983236,97.32774398],[4.53459886,0.02983064,97.32650843],[4.53459835,0.02982891,97.32527395],[4.53459785,0.02982718,97.32404055],[4.53459734,0.02982546,97.32280824],[4.53459683,0.02982373,97.32157702],[4.53459632,0.029822,97.32034693],[4.53459581,0.02982028,97.31911796],[4.5345953,0.02981855,97.31789013],[4.5345948,0.02981682,97.31666345],[4.53459429,0.0298151,97.31543794],[4.53459378,0.02981337,97.31421361],[4.53459327,0.02981164,97.31299047],[4.53459276,0.02980992,97.31176853],[4.53459225,0.02980819,97.31054781],[4.53459174,0.02980646,97.30932832],[4.53459124,0.02980474,97.30811006],[4.53459073,0.02980301,97.30689307],[4.53459022,0.02980129,97.30567733],[4.53458971,0.02979956,97.30446288],[4.5345892,0.02979783,97.30324972],[4.53458869,0.02979611,97.30203787],[4.53458818,0.02979438,97.30082733],[4.53458767,0.02979266,97.29961812],[4.53458717,0.02979093,97.29841026],[4.53458666,0.0297892,97.29720375],[4.53458615,0.02978747,97.29599861],[4.53458564,0.02978575,97.29479485],[4.53458513,0.02978402,97.29359248],[4.53458462,0.02978229,97.29239152],[4.53458411,0.02978057,97.29119198],[4.5345836,0.02977884,97.28999387],[4.53458309,0.02977711,97.2887972],[4.53458259,0.02977538,97.28760199],[4.53458208,0.02977365,97.28640824],[4.53458157,0.02977193,97.28521592],[4.53458106,0.0297702,97.28402502],[4.53458055,0.02976847,97.28283552],[4.53458004,0.02976674,97.28164736],[4.53457954,0.02976501,97.28046047],[4.53457903,0.02976328,97.27927477],[4.53457852,0.02976156,97.2780902],[4.53457801,0.02975983,97.27690669],[4.5345775,0.0297581,97.27572416],[4.53457699,0.02975637,97.27454256],[4.53457649,0.02975464,97.27336181],[4.53457598,0.02975291,97.27218184],[4.53457547,0.02975118,97.27100258],[4.53457496,0.02974945,97.26982397],[4.53457445,0.02974772,97.26864592],[4.53457394,0.02974599,97.26746838],[4.53457343,0.02974426,97.26629128],[4.53457293,0.02974253,97.26511454],[4.53457242,0.0297408,97.26393809],[4.53457191,0.02973907,97.26276187],[4.5345714,0.02973734,97.26158581],[4.53457089,0.02973561,97.26040983],[4.53457038,0.02973388,97.25923387],[4.53456987,0.02973216,97.25805786],[4.53456935,0.02973043,97.25688172],[4.53456884,0.0297287,97.25570539],[4.53456833,0.02972697,97.2545288],[4.53456782,0.02972524,97.25335188],[4.53456731,0.02972351,97.25217456],[4.53456679,0.02972178,97.25099677],[4.53456628,0.02972005,97.24981843],[4.53456577,0.02971832,97.24863949],[4.53456525,0.02971659,97.24745987],[4.53456474,0.02971486,97.2462795],[4.53456422,0.02971313,97.24509831],[4.53456371,0.0297114,97.24391623],[4.53456319,0.02970967,97.24273319],[4.53456268,0.02970794,97.24154912],[4.53456216,0.02970621,97.24036396],[4.53456164,0.02970448,97.23917763],[4.53456112,0.02970275,97.23799006],[4.53456061,0.02970102,97.23680118],[4.53456009,0.02969929,97.23561092],[4.53455957,0.02969757,97.23441922],[4.53455905,0.02969584,97.233226],[4.53455853,0.02969411,97.23203119],[4.534558,0.02969238,97.23083475],[4.53455748,0.02969065,97.22963668],[4.53455696,0.02968892,97.22843704],[4.53455643,0.02968719,97.22723585],[4.53455591,0.02968547,97.22603315],[4.53455538,0.02968374,97.22482898],[4.53455486,0.02968201,97.22362338],[4.53455433,0.02968028,97.22241638],[4.53455381,0.02967855,97.22120803],[4.53455328,0.02967683,97.21999836],[4.53455275,0.0296751,97.2187874],[4.53455222,0.02967337,97.2175752],[4.53455169,0.02967164,97.21636179],[4.53455117,0.02966992,97.21514721],[4.53455064,0.02966819,97.2139315],[4.53455011,0.02966646,97.2127147],[4.53454958,0.02966473,97.21149683],[4.53454905,0.029663,97.21027795],[4.53454851,0.02966128,97.20905808],[4.53454798,0.02965955,97.20783727],[4.53454745,0.02965782,97.20661555],[4.53454692,0.02965609,97.20539296],[4.53454639,0.02965437,97.20416954],[4.53454585,0.02965264,97.20294532],[4.53454532,0.02965091,97.20172035],[4.53454479,0.02964918,97.20049466],[4.53454426,0.02964745,97.19926828],[4.53454372,0.02964573,97.19804127],[4.53454319,0.029644,97.19681364],[4.53454265,0.02964227,97.19558545],[4.53454212,0.02964054,97.19435672],[4.53454159,0.02963881,97.19312751],[4.53454105,0.02963709,97.19189784],[4.53454052,0.02963536,97.19066781],[4.53453998,0.02963363,97.18943749],[4.53453945,0.0296319,97.18820697],[4.53453892,0.02963017,97.18697635],[4.53453838,0.02962844,97.18574569],[4.53453785,0.02962672,97.1845151],[4.53453732,0.02962499,97.18328466],[4.53453678,0.02962326,97.18205444],[4.53453625,0.02962153,97.18082455],[4.53453572,0.02961981,97.17959506],[4.53453518,0.02961808,97.17836606],[4.53453514,0.02961795,97.17827241]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004700","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":0}},{"geometry":{"coordinates":[[4.5345824,0.02960409,97.32070773],[4.53458244,0.02960422,97.32079431],[4.53458294,0.02960595,97.32193022],[4.53458344,0.02960767,97.3230659],[4.53458394,0.0296094,97.32420132],[4.53458444,0.02961113,97.32533646],[4.53458494,0.02961285,97.32647128],[4.53458543,0.02961457,97.32760578],[4.53458593,0.0296163,97.32873991],[4.53458643,0.02961802,97.32987366],[4.53458693,0.02961975,97.331007],[4.53458743,0.02962147,97.3321399],[4.53458793,0.0296232,97.33327234],[4.53458843,0.02962492,97.3344043],[4.53458893,0.02962665,97.33553574],[4.53458943,0.02962838,97.3366667],[4.53458993,0.0296301,97.33779719],[4.53459043,0.02963183,97.33892724],[4.53459093,0.02963356,97.34005686],[4.53459143,0.02963528,97.34118609],[4.53459193,0.02963701,97.34231493],[4.53459243,0.02963874,97.34344343],[4.53459293,0.02964046,97.34457159],[4.53459343,0.02964219,97.34569944],[4.53459393,0.02964392,97.34682701],[4.53459443,0.02964564,97.34795432],[4.53459492,0.02964737,97.34908138],[4.53459542,0.0296491,97.35020823],[4.53459592,0.02965083,97.35133488],[4.53459642,0.02965255,97.35246136],[4.53459692,0.02965428,97.3535877],[4.53459742,0.02965601,97.3547139],[4.53459792,0.02965774,97.35584],[4.53459842,0.02965947,97.35696602],[4.53459892,0.0296612,97.35809199],[4.53459942,0.02966292,97.35921791],[4.53459992,0.02966465,97.36034382],[4.53460042,0.02966638,97.36146975],[4.53460091,0.02966811,97.3625957],[4.53460141,0.02966984,97.36372171],[4.53460191,0.02967157,97.3648478],[4.53460241,0.0296733,97.36597399],[4.53460291,0.02967503,97.3671003],[4.53460341,0.02967676,97.36822676],[4.53460391,0.02967849,97.36935339],[4.53460441,0.02968022,97.37048021],[4.53460491,0.02968194,97.37160724],[4.53460541,0.02968367,97.37273451],[4.53460591,0.0296854,97.37386204],[4.53460641,0.02968713,97.37498985],[4.53460691,0.02968886,97.37611796],[4.5346074,0.0296906,97.3772464],[4.5346079,0.02969233,97.3783752],[4.5346084,0.02969406,97.37950436],[4.5346089,0.02969579,97.38063392],[4.5346094,0.02969752,97.3817639],[4.5346099,0.02969925,97.38289432],[4.5346104,0.02970098,97.3840252],[4.5346109,0.02970271,97.38515657],[4.5346114,0.02970444,97.38628844],[4.5346119,0.02970617,97.38742085],[4.5346124,0.0297079,97.38855381],[4.5346129,0.02970963,97.38968735],[4.5346134,0.02971137,97.39082148],[4.5346139,0.0297131,97.39195624],[4.5346144,0.02971483,97.39309164],[4.5346149,0.02971656,97.39422771],[4.5346154,0.02971829,97.39536446],[4.5346159,0.02972002,97.39650193],[4.5346164,0.02972176,97.39764013],[4.5346169,0.02972349,97.39877909],[4.5346174,0.02972522,97.39991883],[4.5346179,0.02972695,97.40105937],[4.5346184,0.02972869,97.40220073],[4.5346189,0.02973042,97.40334295],[4.5346194,0.02973215,97.40448603],[4.5346199,0.02973388,97.40563],[4.5346204,0.02973562,97.40677489],[4.5346209,0.02973735,97.40792071],[4.5346214,0.02973908,97.40906749],[4.5346219,0.02974081,97.41021526],[4.5346224,0.02974255,97.41136403],[4.5346229,0.02974428,97.41251382],[4.5346234,0.02974601,97.41366467],[4.5346239,0.02974775,97.41481659],[4.5346244,0.02974948,97.4159696],[4.5346249,0.02975121,97.41712372],[4.53462541,0.02975295,97.41827899],[4.53462591,0.02975468,97.41943543],[4.53462641,0.02975642,97.42059311],[4.53462691,0.02975815,97.42175211],[4.53462741,0.02975988,97.42291252],[4.53462791,0.02976162,97.42407441],[4.53462841,0.02976335,97.42523787],[4.53462892,0.02976509,97.42640296],[4.53462942,0.02976682,97.42756973],[4.53462992,0.02976855,97.42873824],[4.53463042,0.02977029,97.42990854],[4.53463093,0.02977202,97.43108067],[4.53463143,0.02977376,97.4322547],[4.53463193,0.02977549,97.43343067],[4.53463244,0.02977722,97.43460863],[4.53463294,0.02977896,97.43578863],[4.53463344,0.02978069,97.43697073],[4.53463395,0.02978243,97.43815498],[4.53463445,0.02978416,97.43934143],[4.53463496,0.02978589,97.44053013],[4.53463546,0.02978763,97.44172113],[4.53463597,0.02978936,97.44291449],[4.53463647,0.0297911,97.44411025],[4.53463698,0.02979283,97.44530846],[4.53463749,0.02979456,97.44650919],[4.534638,0.0297963,97.44771247],[4.5346385,0.02979803,97.44891837],[4.53463901,0.02979976,97.45012693],[4.53463952,0.0298015,97.4513382],[4.53464003,0.02980323,97.45255223],[4.53464054,0.02980496,97.45376908],[4.53464105,0.0298067,97.45498873],[4.53464156,0.02980843,97.4562111],[4.53464207,0.02981016,97.45743611],[4.53464258,0.02981189,97.45866368],[4.53464309,0.02981363,97.45989373],[4.5346436,0.02981536,97.46112618],[4.53464412,0.02981709,97.46236095],[4.53464463,0.02981882,97.46359796],[4.53464514,0.02982055,97.46483712],[4.53464566,0.02982228,97.46607837],[4.53464617,0.02982401,97.46732161],[4.53464668,0.02982575,97.46856677],[4.5346472,0.02982748,97.46981377],[4.53464771,0.02982921,97.47106253],[4.53464823,0.02983094,97.47231296],[4.53464874,0.02983267,97.47356499],[4.53464925,0.0298344,97.47481854],[4.53464977,0.02983613,97.47607352],[4.53465028,0.02983786,97.47732986],[4.5346508,0.02983959,97.47858748],[4.53465131,0.02984132,97.47984629],[4.53465183,0.02984305,97.48110622],[4.53465234,0.02984478,97.48236718],[4.53465286,0.02984651,97.4836291],[4.53465337,0.02984825,97.4848919],[4.53465389,0.02984998,97.48615549],[4.5346544,0.02985171,97.48741979],[4.53465492,0.02985344,97.48868474],[4.53465543,0.02985517,97.48995026],[4.53465594,0.0298569,97.49121632],[4.53465646,0.02985863,97.49248288],[4.53465697,0.02986036,97.4937499],[4.53465748,0.02986209,97.49501735],[4.534658,0.02986382,97.49628518],[4.53465851,0.02986555,97.49755336],[4.53465902,0.02986728,97.49882185],[4.53465954,0.02986901,97.5000906],[4.53466005,0.02987074,97.50135959],[4.53466056,0.02987247,97.50262878],[4.53466107,0.0298742,97.50389811],[4.53466158,0.02987594,97.50516757],[4.53466209,0.02987767,97.50643711],[4.53466261,0.0298794,97.50770669],[4.53466312,0.02988113,97.50897627],[4.53466363,0.02988286,97.51024581],[4.53466414,0.02988459,97.51151528],[4.53466465,0.02988632,97.51278464],[4.53466516,0.02988805,97.51405386],[4.53466566,0.02988978,97.51532288],[4.53466617,0.02989152,97.51659169],[4.53466668,0.02989325,97.51786023],[4.53466719,0.02989498,97.51912847],[4.5346677,0.02989671,97.52039637],[4.5346682,0.02989844,97.5216639],[4.53466871,0.02990017,97.52293101],[4.53466922,0.02990191,97.52419767],[4.53466972,0.02990364,97.52546385],[4.53467023,0.02990537,97.52672949],[4.53467073,0.0299071,97.52799457],[4.53467124,0.02990883,97.52925905],[4.53467174,0.02991057,97.53052289],[4.53467225,0.0299123,97.53178606],[4.53467275,0.02991403,97.5330485],[4.53467325,0.02991576,97.5343102],[4.53467375,0.0299175,97.5355711],[4.53467426,0.02991923,97.53683119],[4.53467476,0.02992096,97.53809051],[4.53467526,0.02992269,97.53934911],[4.53467576,0.02992443,97.54060707],[4.53467626,0.02992616,97.54186443],[4.53467676,0.02992789,97.54312126],[4.53467726,0.02992963,97.54437762],[4.53467776,0.02993136,97.54563355],[4.53467825,0.02993309,97.54688914],[4.53467875,0.02993483,97.54814442],[4.53467925,0.02993656,97.54939946],[4.53467975,0.0299383,97.55065433],[4.53468025,0.02994003,97.55190907],[4.53468074,0.02994176,97.55316375],[4.53468124,0.0299435,97.55441843],[4.53468174,0.02994523,97.55567316],[4.53468223,0.02994696,97.556928],[4.53468273,0.0299487,97.55818302],[4.53468323,0.02995043,97.55943827],[4.53468372,0.02995216,97.56069382],[4.53468422,0.0299539,97.56194971],[4.53468472,0.02995563,97.56320601],[4.53468521,0.02995737,97.56446278],[4.53468571,0.0299591,97.56572007],[4.53468621,0.02996083,97.56697795],[4.5346867,0.02996257,97.56823647],[4.5346872,0.0299643,97.56949569],[4.5346877,0.02996603,97.57075568],[4.53468819,0.02996777,97.57201648],[4.53468869,0.0299695,97.57327817],[4.53468919,0.02997123,97.57454079],[4.53468969,0.02997297,97.57580441],[4.53469018,0.0299747,97.57706908],[4.53469068,0.02997643,97.57833487],[4.53469118,0.02997816,97.57960183],[4.53469168,0.0299799,97.58087002],[4.53469218,0.02998163,97.58213951],[4.53469268,0.02998336,97.58341034],[4.53469318,0.02998509,97.58468257],[4.53469368,0.02998682,97.58595628],[4.53469418,0.02998856,97.58723151],[4.53469468,0.02999029,97.58850832],[4.53469518,0.02999202,97.58978678],[4.53469568,0.02999375,97.59106694],[4.53469619,0.02999548,97.59234886],[4.53469669,0.02999721,97.59363259],[4.53469719,0.02999894,97.59491821],[4.5346977,0.03000067,97.59620576],[4.5346982,0.0300024,97.59749531],[4.53469871,0.03000413,97.59878691],[4.53469921,0.03000586,97.60008062],[4.53469972,0.03000759,97.60137651],[4.53470023,0.03000932,97.6026746],[4.53470074,0.03001105,97.60397484],[4.53470125,0.03001278,97.60527715],[4.53470176,0.03001451,97.60658145],[4.53470227,0.03001624,97.60788765],[4.53470278,0.03001796,97.60919567],[4.53470329,0.03001969,97.61050544],[4.5347038,0.03002142,97.61181686],[4.53470431,0.03002315,97.61312987],[4.53470482,0.03002488,97.61444437],[4.53470534,0.0300266,97.61576029],[4.53470585,0.03002833,97.61707754],[4.53470637,0.03003006,97.61839604],[4.53470688,0.03003179,97.61971572],[4.53470739,0.03003351,97.62103649],[4.53470791,0.03003524,97.62235826],[4.53470843,0.03003697,97.62368097],[4.53470894,0.03003869,97.62500452],[4.53470946,0.03004042,97.62632883],[4.53470997,0.03004215,97.62765383],[4.53471049,0.03004387,97.62897943],[4.53471101,0.0300456,97.63030555],[4.53471152,0.03004733,97.63163211],[4.53471204,0.03004905,97.63295903],[4.53471256,0.03005078,97.63428622],[4.53471307,0.03005251,97.63561361],[4.53471359,0.03005423,97.63694112],[4.53471411,0.03005596,97.63826865],[4.53471462,0.03005769,97.63959614],[4.53471514,0.03005941,97.64092349],[4.53471566,0.03006114,97.64225064],[4.53471617,0.03006287,97.64357749],[4.53471669,0.03006459,97.64490396],[4.53471721,0.03006632,97.64622998],[4.53471772,0.03006805,97.64755546],[4.53471824,0.03006977,97.64888033],[4.53471876,0.0300715,97.65020449],[4.53471927,0.03007323,97.65152787],[4.53471979,0.03007496,97.65285038],[4.5347203,0.03007668,97.65417196],[4.53472082,0.03007841,97.6554925],[4.53472133,0.03008014,97.65681194],[4.53472184,0.03008187,97.65813019],[4.53472236,0.03008359,97.65944716],[4.53472287,0.03008532,97.66076279],[4.53472338,0.03008705,97.66207697],[4.53472389,0.03008878,97.66338965],[4.5347244,0.03009051,97.66470072],[4.53472492,0.03009224,97.66601012],[4.53472543,0.03009396,97.66731776],[4.53472593,0.03009569,97.66862355],[4.53472644,0.03009742,97.66992742],[4.53472695,0.03009915,97.67122929],[4.53472746,0.03010088,97.67252913],[4.53472797,0.03010261,97.67382702],[4.53472847,0.03010434,97.67512298],[4.53472898,0.03010607,97.67641709],[4.53472948,0.0301078,97.6777094],[4.53472999,0.03010953,97.67899997],[4.53473049,0.03011126,97.68028887],[4.53473099,0.03011299,97.68157614],[4.5347315,0.03011473,97.68286185],[4.534732,0.03011646,97.68414607],[4.5347325,0.03011819,97.68542884],[4.534733,0.03011992,97.68671023],[4.5347335,0.03012165,97.68799031],[4.534734,0.03012338,97.68926912],[4.5347345,0.03012512,97.69054672],[4.534735,0.03012685,97.69182319],[4.5347355,0.03012858,97.69309858],[4.534736,0.03013031,97.69437294],[4.5347365,0.03013205,97.69564634],[4.534737,0.03013378,97.69691883],[4.5347375,0.03013551,97.69819048],[4.53473799,0.03013724,97.69946135],[4.53473849,0.03013898,97.70073149],[4.53473899,0.03014071,97.70200097],[4.53473949,0.03014244,97.70326985],[4.53473998,0.03014417,97.70453818],[4.53474048,0.03014591,97.70580603],[4.53474098,0.03014764,97.70707345],[4.53474147,0.03014937,97.7083405],[4.53474197,0.03015111,97.70960725],[4.53474247,0.03015284,97.71087375],[4.53474296,0.03015457,97.71214007],[4.53474346,0.03015631,97.71340626],[4.53474396,0.03015804,97.71467239],[4.53474445,0.03015977,97.71593851],[4.53474495,0.03016151,97.71720468],[4.53474544,0.03016324,97.71847096],[4.53474594,0.03016497,97.71973742],[4.53474644,0.03016671,97.72100412],[4.53474693,0.03016844,97.72227111],[4.53474743,0.03017017,97.72353845],[4.53474793,0.03017191,97.7248062],[4.53474842,0.03017364,97.72607443],[4.53474892,0.03017537,97.72734319],[4.53474942,0.03017711,97.72861255],[4.53474992,0.03017884,97.72988256],[4.53475042,0.03018057,97.73115328],[4.53475091,0.03018231,97.73242478],[4.53475141,0.03018404,97.73369711],[4.53475191,0.03018577,97.73497034],[4.53475241,0.0301875,97.73624453],[4.53475291,0.03018924,97.73751973],[4.53475341,0.03019097,97.738796],[4.53475391,0.0301927,97.74007341],[4.53475441,0.03019443,97.74135202],[4.53475491,0.03019617,97.74263189],[4.53475541,0.0301979,97.74391308],[4.53475592,0.03019963,97.74519564],[4.53475642,0.03020136,97.74647962],[4.53475692,0.03020309,97.74776499],[4.53475742,0.03020482,97.74905169],[4.53475793,0.03020656,97.75033966],[4.53475843,0.03020829,97.75162886],[4.53475894,0.03021002,97.75291922],[4.53475944,0.03021175,97.75421069],[4.53475995,0.03021348,97.75550321],[4.53476045,0.03021521,97.75679674],[4.53476096,0.03021694,97.75809121],[4.53476147,0.03021867,97.75938658],[4.53476197,0.0302204,97.76068278],[4.53476248,0.03022213,97.76197976],[4.53476299,0.03022386,97.76327747],[4.5347635,0.03022559,97.76457585],[4.534764,0.03022733,97.76587485],[4.53476451,0.03022906,97.7671744],[4.53476502,0.03023079,97.76847447],[4.53476553,0.03023252,97.76977499],[4.53476604,0.03023425,97.7710759],[4.53476655,0.03023598,97.77237716],[4.53476705,0.03023771,97.7736787],[4.53476756,0.03023944,97.77498048],[4.53476807,0.03024117,97.77628243],[4.53476858,0.0302429,97.7775845],[4.53476909,0.03024463,97.77888664],[4.5347696,0.03024636,97.78018879],[4.53477011,0.03024809,97.78149089],[4.53477062,0.03024982,97.7827929],[4.53477113,0.03025155,97.78409475],[4.53477164,0.03025328,97.78539639],[4.53477214,0.03025501,97.78669776],[4.53477265,0.03025674,97.78799882],[4.53477316,0.03025847,97.78929949],[4.53477367,0.0302602,97.79059974],[4.53477418,0.03026193,97.79189952],[4.53477469,0.03026366,97.79319885],[4.5347752,0.03026539,97.7944977],[4.5347757,0.03026712,97.79579608],[4.53477621,0.03026885,97.79709399],[4.53477672,0.03027058,97.79839141],[4.53477723,0.03027231,97.79968836],[4.53477774,0.03027404,97.80098483],[4.53477824,0.03027577,97.8022808],[4.53477875,0.0302775,97.80357629],[4.53477926,0.03027923,97.80487128],[4.53477977,0.03028096,97.80616577],[4.53478027,0.03028269,97.80745976],[4.53478078,0.03028442,97.80875325],[4.53478129,0.03028615,97.81004623],[4.53478179,0.03028789,97.8113387],[4.5347823,0.03028962,97.81263065],[4.53478281,0.03029135,97.81392209],[4.53478331,0.03029308,97.815213],[4.53478382,0.03029481,97.8165034],[4.53478433,0.03029654,97.81779326],[4.53478483,0.03029827,97.81908259],[4.53478534,0.0303,97.82037139],[4.53478584,0.03030173,97.82165966],[4.53478635,0.03030346,97.82294738],[4.53478685,0.03030519,97.82423455],[4.53478736,0.03030693,97.82552118],[4.53478787,0.03030866,97.82680726],[4.53478837,0.03031039,97.82809279],[4.53478888,0.03031212,97.82937775],[4.53478938,0.03031385,97.83066216],[4.53478989,0.03031558,97.831946],[4.53479039,0.03031731,97.83322927],[4.53479089,0.03031905,97.83451198],[4.5347914,0.03032078,97.8357941],[4.5347919,0.03032251,97.83707565],[4.53479241,0.03032424,97.83835662],[4.53479291,0.03032597,97.83963701],[4.53479342,0.0303277,97.8409168],[4.53479392,0.03032943,97.84219601],[4.53479442,0.03033117,97.84347462],[4.53479493,0.0303329,97.84475263],[4.53479543,0.03033463,97.84603004],[4.53479593,0.03033636,97.84730685],[4.53479644,0.03033809,97.84858305],[4.53479694,0.03033983,97.84985863],[4.53479744,0.03034156,97.8511336],[4.53479794,0.03034329,97.85240796],[4.53479845,0.03034502,97.85368169],[4.53479895,0.03034675,97.85495479],[4.53479945,0.03034849,97.85622727],[4.53479995,0.03035022,97.85749911],[4.53480046,0.03035195,97.85877032],[4.53480096,0.03035368,97.86004089],[4.53480146,0.03035541,97.86131081],[4.53480196,0.03035715,97.8625801],[4.53480246,0.03035888,97.86384873],[4.53480297,0.03036061,97.86511671],[4.53480347,0.03036234,97.86638403],[4.53480397,0.03036408,97.86765069],[4.53480447,0.03036581,97.86891669],[4.53480497,0.03036754,97.87018202],[4.53480547,0.03036927,97.87144668],[4.53480597,0.03037101,97.87271067],[4.53480647,0.03037274,97.87397399],[4.53480697,0.03037447,97.87523662],[4.53480747,0.0303762,97.87649856],[4.53480797,0.03037794,97.87775982],[4.53480847,0.03037967,97.87902039],[4.53480897,0.0303814,97.88028027],[4.53480947,0.03038313,97.88153945],[4.53480997,0.03038487,97.88279792],[4.53481047,0.0303866,97.88405569],[4.53481097,0.03038833,97.88531275],[4.53481147,0.03039007,97.8865691],[4.53481197,0.0303918,97.88782474],[4.53481247,0.03039353,97.88907965],[4.53481297,0.03039527,97.89033385],[4.53481347,0.030397,97.89158731]],"type":"LineString"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004700","id":1,"type":"shoulder","predecessorId":0}},{"geometry":{"coordinates":[[4.53459477,0.02960046,97.32070773],[4.53459481,0.0296006,97.32079431],[4.5345953,0.02960232,97.32193022],[4.53459578,0.02960405,97.3230659],[4.53459627,0.02960578,97.32420132],[4.53459675,0.0296075,97.32533646],[4.53459724,0.02960923,97.32647128],[4.53459772,0.02961095,97.32760578],[4.5345982,0.02961267,97.32873991],[4.53459869,0.0296144,97.32987366],[4.53459917,0.02961613,97.331007],[4.53459965,0.02961785,97.3321399],[4.53460014,0.02961958,97.33327234],[4.53460062,0.02962131,97.3344043],[4.53460111,0.02962304,97.33553574],[4.53460159,0.02962476,97.3366667],[4.53460207,0.02962649,97.33779719],[4.53460256,0.02962822,97.33892724],[4.53460304,0.02962995,97.34005686],[4.53460352,0.02963168,97.34118609],[4.53460401,0.02963341,97.34231493],[4.53460449,0.02963513,97.34344343],[4.53460497,0.02963686,97.34457159],[4.53460546,0.02963859,97.34569944],[4.53460594,0.02964032,97.34682701],[4.53460643,0.02964205,97.34795432],[4.53460691,0.02964378,97.34908138],[4.5346074,0.02964551,97.35020823],[4.53460788,0.02964724,97.35133488],[4.53460837,0.02964897,97.35246136],[4.53460885,0.0296507,97.3535877],[4.53460934,0.02965243,97.3547139],[4.53460983,0.02965416,97.35584],[4.53461032,0.02965589,97.35696602],[4.53461081,0.02965762,97.35809199],[4.5346113,0.02965934,97.35921791],[4.53461179,0.02966107,97.36034382],[4.53461228,0.0296628,97.36146975],[4.53461277,0.02966453,97.3625957],[4.53461326,0.02966626,97.36372171],[4.53461375,0.02966799,97.3648478],[4.53461425,0.02966972,97.36597399],[4.53461474,0.02967145,97.3671003],[4.53461524,0.02967318,97.36822676],[4.53461573,0.02967491,97.36935339],[4.53461623,0.02967664,97.37048021],[4.53461673,0.02967836,97.37160724],[4.53461723,0.02968009,97.37273451],[4.53461773,0.02968182,97.37386204],[4.53461823,0.02968355,97.37498985],[4.53461873,0.02968528,97.37611796],[4.53461923,0.02968701,97.3772464],[4.53461974,0.02968873,97.3783752],[4.53462024,0.02969046,97.37950436],[4.53462075,0.02969219,97.38063392],[4.53462125,0.02969392,97.3817639],[4.53462176,0.02969564,97.38289432],[4.53462227,0.02969737,97.3840252],[4.53462278,0.0296991,97.38515657],[4.53462329,0.02970083,97.38628844],[4.5346238,0.02970255,97.38742085],[4.53462431,0.02970428,97.38855381],[4.53462482,0.02970601,97.38968735],[4.53462534,0.02970773,97.39082148],[4.53462585,0.02970946,97.39195624],[4.53462636,0.02971119,97.39309164],[4.53462688,0.02971291,97.39422771],[4.53462739,0.02971464,97.39536446],[4.53462791,0.02971637,97.39650193],[4.53462843,0.02971809,97.39764013],[4.53462894,0.02971982,97.39877909],[4.53462946,0.02972155,97.39991883],[4.53462998,0.02972327,97.40105937],[4.5346305,0.029725,97.40220073],[4.53463101,0.02972673,97.40334295],[4.53463153,0.02972846,97.40448603],[4.53463205,0.02973018,97.40563],[4.53463257,0.02973191,97.40677489],[4.53463309,0.02973364,97.40792071],[4.53463361,0.02973536,97.40906749],[4.53463413,0.02973709,97.41021526],[4.53463465,0.02973882,97.41136403],[4.53463518,0.02974055,97.41251382],[4.5346357,0.02974227,97.41366467],[4.53463622,0.029744,97.41481659],[4.53463674,0.02974573,97.4159696],[4.53463726,0.02974746,97.41712372],[4.53463778,0.02974919,97.41827899],[4.5346383,0.02975091,97.41943543],[4.53463883,0.02975264,97.42059311],[4.53463935,0.02975437,97.42175211],[4.53463987,0.0297561,97.42291252],[4.53464039,0.02975783,97.42407441],[4.53464091,0.02975956,97.42523787],[4.53464143,0.02976129,97.42640296],[4.53464196,0.02976302,97.42756973],[4.53464248,0.02976474,97.42873824],[4.534643,0.02976647,97.42990854],[4.53464352,0.0297682,97.43108067],[4.53464404,0.02976993,97.4322547],[4.53464456,0.02977166,97.43343067],[4.53464509,0.02977339,97.43460863],[4.53464561,0.02977512,97.43578863],[4.53464613,0.02977686,97.43697073],[4.53464665,0.02977859,97.43815498],[4.53464717,0.02978032,97.43934143],[4.53464769,0.02978205,97.44053013],[4.53464821,0.02978378,97.44172113],[4.53464873,0.02978551,97.44291449],[4.53464925,0.02978724,97.44411025],[4.53464978,0.02978897,97.44530846],[4.5346503,0.0297907,97.44650919],[4.53465082,0.02979244,97.44771247],[4.53465134,0.02979417,97.44891837],[4.53465186,0.0297959,97.45012693],[4.53465238,0.02979763,97.4513382],[4.5346529,0.02979936,97.45255223],[4.53465342,0.02980109,97.45376908],[4.53465394,0.02980283,97.45498873],[4.53465446,0.02980456,97.4562111],[4.53465498,0.02980629,97.45743611],[4.53465549,0.02980802,97.45866368],[4.53465601,0.02980975,97.45989373],[4.53465653,0.02981149,97.46112618],[4.53465705,0.02981322,97.46236095],[4.53465757,0.02981495,97.46359796],[4.53465808,0.02981668,97.46483712],[4.5346586,0.02981841,97.46607837],[4.53465912,0.02982015,97.46732161],[4.53465963,0.02982188,97.46856677],[4.53466015,0.02982361,97.46981377],[4.53466066,0.02982534,97.47106253],[4.53466117,0.02982708,97.47231296],[4.53466169,0.02982881,97.47356499],[4.5346622,0.02983054,97.47481854],[4.53466271,0.02983228,97.47607352],[4.53466322,0.02983401,97.47732986],[4.53466373,0.02983574,97.47858748],[4.53466424,0.02983748,97.47984629],[4.53466475,0.02983921,97.48110622],[4.53466526,0.02984094,97.48236718],[4.53466577,0.02984268,97.4836291],[4.53466627,0.02984441,97.4848919],[4.53466678,0.02984615,97.48615549],[4.53466729,0.02984788,97.48741979],[4.53466779,0.02984961,97.48868474],[4.5346683,0.02985135,97.48995026],[4.5346688,0.02985308,97.49121632],[4.53466931,0.02985482,97.49248288],[4.53466981,0.02985655,97.4937499],[4.53467032,0.02985829,97.49501735],[4.53467082,0.02986002,97.49628518],[4.53467133,0.02986175,97.49755336],[4.53467183,0.02986349,97.49882185],[4.53467233,0.02986522,97.5000906],[4.53467284,0.02986696,97.50135959],[4.53467334,0.02986869,97.50262878],[4.53467385,0.02987043,97.50389811],[4.53467435,0.02987216,97.50516757],[4.53467485,0.0298739,97.50643711],[4.53467536,0.02987563,97.50770669],[4.53467586,0.02987736,97.50897627],[4.53467636,0.0298791,97.51024581],[4.53467687,0.02988083,97.51151528],[4.53467737,0.02988257,97.51278464],[4.53467787,0.0298843,97.51405386],[4.53467838,0.02988603,97.51532288],[4.53467888,0.02988777,97.51659169],[4.53467939,0.0298895,97.51786023],[4.53467989,0.02989123,97.51912847],[4.5346804,0.02989297,97.52039637],[4.5346809,0.0298947,97.5216639],[4.53468141,0.02989643,97.52293101],[4.53468191,0.02989816,97.52419767],[4.53468242,0.0298999,97.52546385],[4.53468293,0.02990163,97.52672949],[4.53468344,0.02990336,97.52799457],[4.53468395,0.02990509,97.52925905],[4.53468445,0.02990682,97.53052289],[4.53468496,0.02990856,97.53178606],[4.53468547,0.02991029,97.5330485],[4.53468598,0.02991202,97.5343102],[4.53468649,0.02991375,97.5355711],[4.534687,0.02991548,97.53683119],[4.53468751,0.02991721,97.53809051],[4.53468802,0.02991894,97.53934911],[4.53468852,0.02992068,97.54060707],[4.53468903,0.02992241,97.54186443],[4.53468954,0.02992414,97.54312126],[4.53469005,0.02992587,97.54437762],[4.53469056,0.0299276,97.54563355],[4.53469107,0.02992933,97.54688914],[4.53469158,0.02993106,97.54814442],[4.53469209,0.02993279,97.54939946],[4.53469259,0.02993452,97.55065433],[4.5346931,0.02993625,97.55190907],[4.53469361,0.02993798,97.55316375],[4.53469412,0.02993972,97.55441843],[4.53469463,0.02994145,97.55567316],[4.53469513,0.02994318,97.556928],[4.53469564,0.02994491,97.55818302],[4.53469615,0.02994664,97.55943827],[4.53469666,0.02994837,97.56069382],[4.53469716,0.0299501,97.56194971],[4.53469767,0.02995183,97.56320601],[4.53469818,0.02995356,97.56446278],[4.53469868,0.02995529,97.56572007],[4.53469919,0.02995702,97.56697795],[4.53469969,0.02995875,97.56823647],[4.5347002,0.02996049,97.56949569],[4.5347007,0.02996222,97.57075568],[4.53470121,0.02996395,97.57201648],[4.53470171,0.02996568,97.57327817],[4.53470221,0.02996741,97.57454079],[4.53470272,0.02996914,97.57580441],[4.53470322,0.02997087,97.57706908],[4.53470372,0.0299726,97.57833487],[4.53470422,0.02997434,97.57960183],[4.53470472,0.02997607,97.58087002],[4.53470522,0.0299778,97.58213951],[4.53470572,0.02997953,97.58341034],[4.53470622,0.02998126,97.58468257],[4.53470672,0.029983,97.58595628],[4.53470722,0.02998473,97.58723151],[4.53470772,0.02998646,97.58850832],[4.53470822,0.02998819,97.58978678],[4.53470872,0.02998992,97.59106694],[4.53470922,0.02999166,97.59234886],[4.53470972,0.02999339,97.59363259],[4.53471022,0.02999512,97.59491821],[4.53471071,0.02999685,97.59620576],[4.53471121,0.02999858,97.59749531],[4.53471171,0.03000031,97.59878691],[4.53471221,0.03000205,97.60008062],[4.53471271,0.03000378,97.60137651],[4.53471321,0.03000551,97.6026746],[4.53471371,0.03000724,97.60397484],[4.53471421,0.03000897,97.60527715],[4.53471471,0.0300107,97.60658145],[4.53471521,0.03001243,97.60788765],[4.53471571,0.03001416,97.60919567],[4.53471621,0.03001589,97.61050544],[4.53471671,0.03001762,97.61181686],[4.53471721,0.03001935,97.61312987],[4.53471771,0.03002108,97.61444437],[4.53471821,0.03002282,97.61576029],[4.53471872,0.03002455,97.61707754],[4.53471922,0.03002628,97.61839604],[4.53471972,0.03002801,97.61971572],[4.53472022,0.03002974,97.62103649],[4.53472072,0.03003147,97.62235826],[4.53472123,0.0300332,97.62368097],[4.53472173,0.03003493,97.62500452],[4.53472223,0.03003666,97.62632883],[4.53472273,0.03003839,97.62765383],[4.53472324,0.03004012,97.62897943],[4.53472374,0.03004185,97.63030555],[4.53472424,0.03004358,97.63163211],[4.53472475,0.03004531,97.63295903],[4.53472525,0.03004704,97.63428622],[4.53472575,0.03004877,97.63561361],[4.53472626,0.0300505,97.63694112],[4.53472676,0.03005223,97.63826865],[4.53472726,0.03005396,97.63959614],[4.53472777,0.03005569,97.64092349],[4.53472827,0.03005742,97.64225064],[4.53472877,0.03005915,97.64357749],[4.53472928,0.03006088,97.64490396],[4.53472978,0.03006261,97.64622998],[4.53473029,0.03006434,97.64755546],[4.53473079,0.03006607,97.64888033],[4.53473129,0.0300678,97.65020449],[4.5347318,0.03006953,97.65152787],[4.5347323,0.03007126,97.65285038],[4.5347328,0.03007299,97.65417196],[4.53473331,0.03007472,97.6554925],[4.53473381,0.03007645,97.65681194],[4.53473432,0.03007818,97.65813019],[4.53473482,0.03007991,97.65944716],[4.53473532,0.03008165,97.66076279],[4.53473583,0.03008338,97.66207697],[4.53473633,0.03008511,97.66338965],[4.53473683,0.03008684,97.66470072],[4.53473734,0.03008857,97.66601012],[4.53473784,0.0300903,97.66731776],[4.53473834,0.03009203,97.66862355],[4.53473885,0.03009376,97.66992742],[4.53473935,0.03009549,97.67122929],[4.53473985,0.03009722,97.67252913],[4.53474036,0.03009895,97.67382702],[4.53474086,0.03010068,97.67512298],[4.53474136,0.03010241,97.67641709],[4.53474187,0.03010414,97.6777094],[4.53474237,0.03010587,97.67899997],[4.53474287,0.03010761,97.68028887],[4.53474338,0.03010934,97.68157614],[4.53474388,0.03011107,97.68286185],[4.53474438,0.0301128,97.68414607],[4.53474489,0.03011453,97.68542884],[4.53474539,0.03011626,97.68671023],[4.5347459,0.03011799,97.68799031],[4.5347464,0.03011972,97.68926912],[4.53474691,0.03012145,97.69054672],[4.53474742,0.03012318,97.69182319],[4.53474792,0.03012491,97.69309858],[4.53474843,0.03012664,97.69437294],[4.53474894,0.03012837,97.69564634],[4.53474944,0.0301301,97.69691883],[4.53474995,0.03013183,97.69819048],[4.53475046,0.03013356,97.69946135],[4.53475097,0.03013529,97.70073149],[4.53475148,0.03013702,97.70200097],[4.53475199,0.03013875,97.70326985],[4.5347525,0.03014048,97.70453818],[4.534753,0.03014221,97.70580603],[4.53475351,0.03014393,97.70707345],[4.53475402,0.03014566,97.7083405],[4.53475453,0.03014739,97.70960725],[4.53475505,0.03014912,97.71087375],[4.53475556,0.03015085,97.71214007],[4.53475607,0.03015258,97.71340626],[4.53475658,0.03015431,97.71467239],[4.53475709,0.03015604,97.71593851],[4.5347576,0.03015777,97.71720468],[4.53475811,0.0301595,97.71847096],[4.53475862,0.03016122,97.71973742],[4.53475913,0.03016295,97.72100412],[4.53475965,0.03016468,97.72227111],[4.53476016,0.03016641,97.72353845],[4.53476067,0.03016814,97.7248062],[4.53476118,0.03016987,97.72607443],[4.53476169,0.0301716,97.72734319],[4.53476221,0.03017333,97.72861255],[4.53476272,0.03017506,97.72988256],[4.53476323,0.03017678,97.73115328],[4.53476374,0.03017851,97.73242478],[4.53476426,0.03018024,97.73369711],[4.53476477,0.03018197,97.73497034],[4.53476528,0.0301837,97.73624453],[4.53476579,0.03018543,97.73751973],[4.5347663,0.03018716,97.738796],[4.53476682,0.03018889,97.74007341],[4.53476733,0.03019062,97.74135202],[4.53476784,0.03019234,97.74263189],[4.53476835,0.03019407,97.74391308],[4.53476887,0.0301958,97.74519564],[4.53476938,0.03019753,97.74647962],[4.53476989,0.03019926,97.74776499],[4.53477041,0.03020099,97.74905169],[4.53477092,0.03020272,97.75033966],[4.53477143,0.03020445,97.75162886],[4.53477194,0.03020617,97.75291922],[4.53477246,0.0302079,97.75421069],[4.53477297,0.03020963,97.75550321],[4.53477349,0.03021136,97.75679674],[4.534774,0.03021309,97.75809121],[4.53477451,0.03021482,97.75938658],[4.53477503,0.03021655,97.76068278],[4.53477554,0.03021828,97.76197976],[4.53477606,0.03022,97.76327747],[4.53477657,0.03022173,97.76457585],[4.53477709,0.03022346,97.76587485],[4.5347776,0.03022519,97.7671744],[4.53477812,0.03022692,97.76847447],[4.53477863,0.03022865,97.76977499],[4.53477915,0.03023037,97.7710759],[4.53477966,0.0302321,97.77237716],[4.53478018,0.03023383,97.7736787],[4.53478069,0.03023556,97.77498048],[4.53478121,0.03023729,97.77628243],[4.53478173,0.03023902,97.7775845],[4.53478224,0.03024074,97.77888664],[4.53478276,0.03024247,97.78018879],[4.53478328,0.0302442,97.78149089],[4.53478379,0.03024593,97.7827929],[4.53478431,0.03024766,97.78409475],[4.53478483,0.03024938,97.78539639],[4.53478534,0.03025111,97.78669776],[4.53478586,0.03025284,97.78799882],[4.53478638,0.03025457,97.78929949],[4.53478689,0.0302563,97.79059974],[4.53478741,0.03025802,97.79189952],[4.53478793,0.03025975,97.79319885],[4.53478845,0.03026148,97.7944977],[4.53478897,0.03026321,97.79579608],[4.53478948,0.03026494,97.79709399],[4.53479,0.03026666,97.79839141],[4.53479052,0.03026839,97.79968836],[4.53479104,0.03027012,97.80098483],[4.53479155,0.03027185,97.8022808],[4.53479207,0.03027357,97.80357629],[4.53479259,0.0302753,97.80487128],[4.53479311,0.03027703,97.80616577],[4.53479362,0.03027876,97.80745976],[4.53479414,0.03028049,97.80875325],[4.53479465,0.03028221,97.81004623],[4.53479517,0.03028394,97.8113387],[4.53479569,0.03028567,97.81263065],[4.5347962,0.0302874,97.81392209],[4.53479672,0.03028913,97.815213],[4.53479723,0.03029086,97.8165034],[4.53479774,0.03029259,97.81779326],[4.53479826,0.03029432,97.81908259],[4.53479877,0.03029605,97.82037139],[4.53479928,0.03029777,97.82165966],[4.53479979,0.0302995,97.82294738],[4.5348003,0.03030123,97.82423455],[4.53480081,0.03030296,97.82552118],[4.53480132,0.03030469,97.82680726],[4.53480183,0.03030642,97.82809279],[4.53480234,0.03030816,97.82937775],[4.53480285,0.03030989,97.83066216],[4.53480336,0.03031162,97.831946],[4.53480386,0.03031335,97.83322927],[4.53480437,0.03031508,97.83451198],[4.53480487,0.03031681,97.8357941],[4.53480538,0.03031854,97.83707565],[4.53480588,0.03032027,97.83835662],[4.53480638,0.03032201,97.83963701],[4.53480689,0.03032374,97.8409168],[4.53480739,0.03032547,97.84219601],[4.53480789,0.0303272,97.84347462],[4.53480839,0.03032894,97.84475263],[4.53480889,0.03033067,97.84603004],[4.53480939,0.0303324,97.84730685],[4.53480989,0.03033414,97.84858305],[4.53481039,0.03033587,97.84985863],[4.53481089,0.0303376,97.8511336],[4.53481139,0.03033934,97.85240796],[4.53481188,0.03034107,97.85368169],[4.53481238,0.0303428,97.85495479],[4.53481288,0.03034454,97.85622727],[4.53481337,0.03034627,97.85749911],[4.53481387,0.03034801,97.85877032],[4.53481437,0.03034974,97.86004089],[4.53481486,0.03035148,97.86131081],[4.53481536,0.03035321,97.8625801],[4.53481586,0.03035494,97.86384873],[4.53481635,0.03035668,97.86511671],[4.53481685,0.03035841,97.86638403],[4.53481734,0.03036015,97.86765069],[4.53481784,0.03036188,97.86891669],[4.53481833,0.03036362,97.87018202],[4.53481883,0.03036535,97.87144668],[4.53481932,0.03036709,97.87271067],[4.53481982,0.03036882,97.87397399],[4.53482031,0.03037055,97.87523662],[4.53482081,0.03037229,97.87649856],[4.5348213,0.03037402,97.87775982],[4.5348218,0.03037576,97.87902039],[4.53482229,0.03037749,97.88028027],[4.53482279,0.03037923,97.88153945],[4.53482328,0.03038096,97.88279792],[4.53482378,0.0303827,97.88405569],[4.53482428,0.03038443,97.88531275],[4.53482477,0.03038616,97.8865691],[4.53482527,0.0303879,97.88782474],[4.53482576,0.03038963,97.88907965],[4.53482626,0.03039137,97.89033385],[4.53482676,0.0303931,97.89158731]],"type":"LineString"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1004700","id":2,"type":"none","predecessorId":0}},{"geometry":{"coordinates":[[4.53449024,0.02963111,97.17267337],[4.5344898,0.02962934,97.17172505],[4.53448936,0.02962758,97.1707865],[4.53448892,0.02962581,97.16985252],[4.53448849,0.02962404,97.16891791],[4.53448805,0.02962228,97.16797747],[4.5344876,0.02962051,97.167026],[4.53448716,0.02961875,97.1660583],[4.5344867,0.02961699,97.16506916],[4.53448624,0.02961523,97.16405359],[4.53448576,0.02961348,97.1630113],[4.53448528,0.02961173,97.16194674],[4.5344848,0.02960998,97.16086454],[4.53448431,0.02960823,97.15976934],[4.53448382,0.02960649,97.1586658],[4.53448332,0.02960474,97.15755854],[4.53448283,0.02960299,97.15645221],[4.53448234,0.02960125,97.15535059],[4.53448184,0.0295995,97.15425398],[4.53448136,0.02959776,97.15316185],[4.53448087,0.02959601,97.15207364],[4.53448038,0.02959427,97.15098879],[4.53447989,0.02959252,97.14990676],[4.53447941,0.02959078,97.14882701],[4.53447892,0.02958903,97.14774897],[4.53447844,0.02958729,97.1466721],[4.53447796,0.02958554,97.14559585],[4.53447747,0.0295838,97.14451966],[4.53447699,0.02958206,97.14344299],[4.5344765,0.02958031,97.14236539],[4.53447601,0.02957857,97.14128674],[4.53447553,0.02957683,97.14020707],[4.53447504,0.02957509,97.13912635],[4.53447455,0.02957335,97.13804459],[4.53447407,0.02957161,97.13696179],[4.53447358,0.02956987,97.13587795],[4.53447309,0.02956813,97.13479306],[4.5344726,0.02956639,97.13370712],[4.53447211,0.02956465,97.13262013],[4.53447162,0.02956292,97.13153209],[4.53447113,0.02956118,97.13044299],[4.53447063,0.02955944,97.12935283],[4.53447014,0.02955771,97.12826162],[4.53446965,0.02955597,97.12716934],[4.53446916,0.02955424,97.126076],[4.53446866,0.02955251,97.1249816],[4.53446817,0.02955077,97.12388613],[4.53446767,0.02954904,97.12278958],[4.53446717,0.02954731,97.12169197],[4.53446668,0.02954558,97.12059329],[4.53446618,0.02954385,97.11949353],[4.53446568,0.02954212,97.11839269],[4.53446518,0.02954039,97.11729079],[4.53446468,0.02953866,97.11618798],[4.53446418,0.02953693,97.1150846],[4.53446368,0.0295352,97.11398099],[4.53446317,0.02953347,97.1128775],[4.53446267,0.02953175,97.11177446],[4.53446217,0.02953002,97.11067221],[4.53446167,0.02952829,97.1095711],[4.53446117,0.02952657,97.10847146],[4.53446066,0.02952484,97.10737364],[4.53446016,0.02952312,97.10627798],[4.53445966,0.02952139,97.10518481],[4.53445916,0.02951967,97.10409448],[4.53445866,0.02951794,97.10300732],[4.53445816,0.02951622,97.10192367],[4.53445766,0.02951449,97.10084365],[4.53445716,0.02951277,97.09976716],[4.53445666,0.02951105,97.09869409],[4.53445616,0.02950932,97.09762435],[4.53445567,0.0295076,97.09655783],[4.53445517,0.02950588,97.09549443],[4.53445467,0.02950416,97.09443403],[4.53445418,0.02950243,97.09337655],[4.53445368,0.02950071,97.09232187],[4.53445319,0.02949899,97.09126989],[4.53445269,0.02949727,97.09022051],[4.5344522,0.02949555,97.08917363],[4.5344517,0.02949383,97.08812913],[4.53445121,0.02949211,97.08708693],[4.53445071,0.02949039,97.0860469],[4.53445022,0.02948867,97.08500895],[4.53444972,0.02948695,97.08397298],[4.53444923,0.02948523,97.08293889],[4.53444873,0.02948351,97.08190656],[4.53444824,0.02948179,97.08087589],[4.53444774,0.02948008,97.07984679],[4.53444725,0.02947836,97.07881915],[4.53444675,0.02947664,97.07779286],[4.53444625,0.02947492,97.07676782],[4.53444576,0.0294732,97.07574393],[4.53444526,0.02947149,97.07472109],[4.53444476,0.02946977,97.07369918],[4.53444426,0.02946805,97.07267812],[4.53444376,0.02946633,97.07165792],[4.53444326,0.02946461,97.07063873],[4.53444276,0.02946289,97.06962069],[4.53444226,0.02946117,97.06860393],[4.53444176,0.02945945,97.06758857],[4.53444126,0.02945773,97.06657465],[4.53444075,0.02945601,97.06556224],[4.53444025,0.02945429,97.06455139],[4.53443975,0.02945257,97.06354216],[4.53443924,0.02945085,97.06253461],[4.53443874,0.02944913,97.0615288],[4.53443824,0.02944741,97.06052478],[4.53443773,0.02944568,97.05952261],[4.53443723,0.02944396,97.05852235],[4.53443672,0.02944224,97.05752406],[4.53443622,0.02944052,97.05652779],[4.53443572,0.02943879,97.05553361],[4.53443521,0.02943707,97.05454156],[4.53443471,0.02943535,97.05355171],[4.5344342,0.02943362,97.05256411],[4.5344337,0.0294319,97.05157882],[4.53443319,0.02943017,97.0505959],[4.53443269,0.02942845,97.04961541],[4.53443218,0.02942672,97.0486374],[4.53443168,0.029425,97.04766194],[4.53443118,0.02942327,97.04668907],[4.53443067,0.02942154,97.04571885],[4.53443017,0.02941982,97.04475135],[4.53442966,0.02941809,97.04378662],[4.53442916,0.02941636,97.04282472],[4.53442866,0.02941463,97.04186569],[4.53442815,0.02941291,97.04090962],[4.53442765,0.02941118,97.03995653],[4.53442715,0.02940945,97.03900651],[4.53442665,0.02940772,97.03805959],[4.53442615,0.02940599,97.03711585],[4.53442565,0.02940426,97.03617529],[4.53442515,0.02940252,97.03523789],[4.53442465,0.02940079,97.03430365],[4.53442415,0.02939906,97.03337253],[4.53442365,0.02939733,97.03244453],[4.53442315,0.02939559,97.03151961],[4.53442265,0.02939386,97.03059776],[4.53442215,0.02939213,97.02967896],[4.53442165,0.02939039,97.02876319],[4.53442116,0.02938866,97.02785043],[4.53442066,0.02938692,97.02694066],[4.53442016,0.02938519,97.02603386],[4.53441967,0.02938345,97.02513002],[4.53441917,0.02938171,97.0242291],[4.53441868,0.02937998,97.0233311],[4.53441818,0.02937824,97.02243601],[4.53441769,0.0293765,97.02154383],[4.53441719,0.02937476,97.02065454],[4.5344167,0.02937302,97.01976814],[4.53441621,0.02937128,97.01888462],[4.53441571,0.02936954,97.01800396],[4.53441522,0.0293678,97.01712616],[4.53441473,0.02936606,97.01625121],[4.53441424,0.02936432,97.01537909],[4.53441375,0.02936258,97.01450981],[4.53441326,0.02936084,97.01364334],[4.53441277,0.02935909,97.01277968],[4.53441228,0.02935735,97.01191882],[4.53441179,0.02935561,97.01106075],[4.5344113,0.02935386,97.01020546],[4.53441081,0.02935212,97.00935271],[4.53441033,0.02935037,97.00850139],[4.53440984,0.02934863,97.00765015],[4.53440935,0.02934688,97.00679766],[4.53440886,0.02934514,97.00594258],[4.53440837,0.02934339,97.00508356],[4.53440787,0.02934165,97.00421928],[4.53440738,0.0293399,97.00334839],[4.53440688,0.02933816,97.00246956],[4.53440637,0.02933642,97.00158146],[4.53440587,0.02933467,97.00068275],[4.53440536,0.02933293,96.9997721],[4.53440484,0.02933119,96.99884879],[4.53440432,0.02932945,96.9979145],[4.5344038,0.02932771,96.99697154],[4.53440327,0.02932597,96.99602218],[4.53440275,0.02932424,96.99506873],[4.53440222,0.0293225,96.99411348],[4.53440169,0.02932076,96.9931587],[4.53440116,0.02931902,96.99220668],[4.53440064,0.02931728,96.99125972],[4.53440011,0.02931554,96.99032008],[4.53439959,0.0293138,96.98939005],[4.53439908,0.02931205,96.98847181],[4.53439857,0.02931031,96.98756554],[4.53439806,0.02930856,96.98666948],[4.53439755,0.02930681,96.98578175],[4.53439704,0.02930506,96.98490051],[4.53439654,0.02930331,96.9840239],[4.53439604,0.02930156,96.98315007],[4.53439554,0.02929981,96.98227715],[4.53439503,0.02929806,96.98140331],[4.53439453,0.02929631,96.98052669],[4.53439402,0.02929456,96.97964544],[4.53439352,0.02929281,96.97875772],[4.534393,0.02929106,96.97786168],[4.53439249,0.02928931,96.97695562],[4.53439197,0.02928757,96.97604123],[4.53439146,0.02928582,96.97512351],[4.53439094,0.02928407,96.9742076],[4.53439042,0.02928232,96.97329865],[4.53438991,0.02928057,96.97240179],[4.53438941,0.02927882,96.97152214],[4.53438891,0.02927707,96.97066484],[4.53438842,0.02927531,96.96983501],[4.53438795,0.02927355,96.96903743],[4.53438748,0.02927178,96.96826919],[4.53438702,0.02927002,96.96751976],[4.53438656,0.02926825,96.96677829],[4.5343861,0.02926649,96.96603575],[4.53438564,0.02926472,96.9652904],[4.53438518,0.02926296,96.96454231],[4.53438472,0.02926119,96.96379155],[4.53438426,0.02925943,96.9630382],[4.5343838,0.02925766,96.96228232],[4.53438334,0.0292559,96.96152402],[4.53438287,0.02925414,96.9607634],[4.53438241,0.02925237,96.96000055],[4.53438194,0.02925061,96.95923558],[4.53438148,0.02924885,96.95846857],[4.53438101,0.02924709,96.95769962],[4.53438055,0.02924532,96.95692884],[4.53438008,0.02924356,96.95615632],[4.53437961,0.0292418,96.95538216],[4.53437914,0.02924004,96.95460646],[4.53437868,0.02923828,96.95382931],[4.53437821,0.02923652,96.95305081],[4.53437774,0.02923475,96.95227105],[4.53437727,0.02923299,96.95149014],[4.5343768,0.02923123,96.95070818],[4.53437633,0.02922947,96.94992525],[4.53437586,0.02922771,96.94914146],[4.53437539,0.02922595,96.94835689],[4.53437492,0.02922419,96.94757166],[4.53437445,0.02922243,96.94678579],[4.53437398,0.02922067,96.94599927],[4.53437351,0.02921891,96.94521209],[4.53437304,0.02921715,96.94442423],[4.53437257,0.0292154,96.94363568],[4.5343721,0.02921364,96.94284641],[4.53437163,0.02921188,96.94205642],[4.53437115,0.02921012,96.94126568],[4.53437068,0.02920836,96.94047419],[4.53437021,0.0292066,96.93968192],[4.53436974,0.02920484,96.93888886],[4.53436927,0.02920308,96.93809499],[4.5343688,0.02920133,96.93730031],[4.53436832,0.02919957,96.93650478],[4.53436785,0.02919781,96.9357084],[4.53436738,0.02919605,96.93491115],[4.5343669,0.02919429,96.93411302],[4.53436643,0.02919254,96.93331398],[4.53436596,0.02919078,96.93251403],[4.53436548,0.02918902,96.93171315],[4.53436501,0.02918727,96.93091132],[4.53436453,0.02918551,96.93010852],[4.53436406,0.02918375,96.92930475],[4.53436359,0.029182,96.92849998],[4.53436311,0.02918024,96.9276942],[4.53436263,0.02917848,96.92688739],[4.53436216,0.02917673,96.92607955],[4.53436168,0.02917497,96.92527074],[4.53436121,0.02917321,96.92446113],[4.53436073,0.02917146,96.92365087],[4.53436025,0.0291697,96.92284013],[4.53435978,0.02916795,96.92202908],[4.5343593,0.02916619,96.92121787],[4.53435882,0.02916444,96.92040666],[4.53435835,0.02916268,96.91959563],[4.53435787,0.02916093,96.91878492],[4.5343574,0.02915917,96.9179747],[4.53435692,0.02915742,96.91716514],[4.53435645,0.02915566,96.9163564],[4.53435597,0.02915391,96.91554865],[4.5343555,0.02915215,96.91474208],[4.53435502,0.0291504,96.91393685],[4.53435455,0.02914864,96.91313314],[4.53435408,0.02914688,96.91233112],[4.5343536,0.02914513,96.91153097],[4.53435313,0.02914337,96.91073285],[4.53435266,0.02914162,96.90993696],[4.53435219,0.02913986,96.90914345],[4.53435173,0.0291381,96.90835245],[4.53435126,0.02913635,96.90756389],[4.53435079,0.02913459,96.90677765],[4.53435032,0.02913283,96.9059936],[4.53434986,0.02913108,96.90521163],[4.5343494,0.02912932,96.90443162],[4.53434893,0.02912756,96.90365344],[4.53434847,0.02912581,96.90287698],[4.53434801,0.02912405,96.9021021],[4.53434754,0.02912229,96.9013287],[4.53434708,0.02912054,96.90055666],[4.53434662,0.02911878,96.89978585],[4.53434616,0.02911702,96.89901615],[4.5343457,0.02911526,96.89824744],[4.53434524,0.02911351,96.89747961],[4.53434478,0.02911175,96.89671253],[4.53434432,0.02910999,96.89594608],[4.53434386,0.02910823,96.89518013],[4.5343434,0.02910648,96.89441451],[4.53434295,0.02910472,96.89364906],[4.53434249,0.02910296,96.89288363],[4.53434203,0.0291012,96.89211807],[4.53434157,0.02909945,96.8913522],[4.53434111,0.02909769,96.89058588],[4.53434065,0.02909593,96.88981894],[4.53434019,0.02909418,96.88905123],[4.53433973,0.02909242,96.8882826],[4.53433927,0.02909066,96.88751289],[4.53433881,0.02908891,96.88674197],[4.53433835,0.02908715,96.88596983],[4.53433789,0.0290854,96.88519654],[4.53433743,0.02908364,96.88442216],[4.53433697,0.02908188,96.88364676],[4.53433651,0.02908013,96.88287042],[4.53433604,0.02907837,96.8820932],[4.53433558,0.02907662,96.88131518],[4.53433512,0.02907486,96.88053642],[4.53433466,0.02907311,96.87975699],[4.53433419,0.02907135,96.87897697],[4.53433373,0.0290696,96.87819642],[4.53433327,0.02906785,96.87741542],[4.5343328,0.02906609,96.87663403],[4.53433234,0.02906434,96.87585232],[4.53433188,0.02906258,96.87507036],[4.53433141,0.02906083,96.87428823],[4.53433095,0.02905908,96.87350599],[4.53433049,0.02905732,96.8727237],[4.53433002,0.02905557,96.87194145],[4.53432956,0.02905381,96.8711593],[4.5343291,0.02905206,96.87037731],[4.53432863,0.02905031,96.86959557],[4.53432817,0.02904855,96.86881412],[4.53432771,0.0290468,96.86803306],[4.53432725,0.02904507,96.86725243],[4.53432679,0.02904332,96.86647232],[4.53432633,0.02904156,96.86569279],[4.53432586,0.02903981,96.86491391],[4.5343254,0.02903806,96.86413575],[4.53432494,0.0290363,96.86335838],[4.53432448,0.02903455,96.86258186],[4.53432402,0.0290328,96.86180626],[4.53432356,0.02903104,96.86103166],[4.5343231,0.02902929,96.86025812],[4.53432264,0.02902753,96.8594857],[4.53432218,0.02902578,96.85871453],[4.53432172,0.02902402,96.85794569],[4.53432127,0.02902227,96.85718123],[4.53432081,0.02902051,96.85642325],[4.53432036,0.02901876,96.85567384],[4.53431991,0.029017,96.85493511],[4.53431947,0.02901524,96.85420914],[4.53431903,0.02901348,96.85349802],[4.5343186,0.02901172,96.85280325],[4.53431817,0.02900996,96.85212397],[4.53431775,0.0290082,96.85145873],[4.53431734,0.02900643,96.85080611],[4.53431692,0.02900466,96.85016467],[4.53431651,0.0290029,96.84953297],[4.53431611,0.02900113,96.84890957],[4.5343157,0.02899936,96.84829305],[4.5343153,0.02899759,96.84768197],[4.5343149,0.02899582,96.8470749],[4.5343145,0.02899405,96.84647042],[4.5343141,0.02899228,96.84586708],[4.53431371,0.02899051,96.84526347],[4.53431331,0.02898875,96.84465816],[4.53431291,0.02898698,96.84404972],[4.5343125,0.02898521,96.84343673],[4.5343121,0.02898344,96.84281775],[4.5343118,0.02898212,96.8423516]],"type":"LineString"},"type":"feature","properties":{"successorId":-3,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1004700","id":-3,"type":"none","predecessorId":-4}},{"geometry":{"coordinates":[[4.53453329,0.02961849,97.17267337],[4.53453285,0.02961673,97.17172505],[4.53453241,0.02961498,97.1707865],[4.53453198,0.02961322,97.16985252],[4.53453154,0.02961146,97.16891791],[4.5345311,0.02960971,97.16797747],[4.53453066,0.02960795,97.167026],[4.53453022,0.0296062,97.1660583],[4.53452976,0.02960445,97.16506916],[4.5345293,0.0296027,97.16405359],[4.53452883,0.02960095,97.1630113],[4.53452836,0.02959921,97.16194674],[4.53452787,0.02959747,97.16086454],[4.53452738,0.02959573,97.15976934],[4.53452689,0.02959399,97.1586658],[4.5345264,0.02959225,97.15755854],[4.53452591,0.02959051,97.15645221],[4.53452542,0.02958877,97.15535059],[4.53452493,0.02958703,97.15425398],[4.53452444,0.02958529,97.15316185],[4.53452395,0.02958355,97.15207364],[4.53452347,0.02958181,97.15098879],[4.53452298,0.02958007,97.14990676],[4.5345225,0.02957833,97.14882701],[4.53452202,0.02957659,97.14774897],[4.53452153,0.02957485,97.1466721],[4.53452105,0.02957311,97.14559585],[4.53452057,0.02957137,97.14451966],[4.53452008,0.02956964,97.14344299],[4.5345196,0.0295679,97.14236539],[4.53451911,0.02956616,97.14128674],[4.53451863,0.02956442,97.14020707],[4.53451814,0.02956268,97.13912635],[4.53451766,0.02956094,97.13804459],[4.53451717,0.02955921,97.13696179],[4.53451668,0.02955747,97.13587795],[4.53451619,0.02955573,97.13479306],[4.5345157,0.029554,97.13370712],[4.53451521,0.02955226,97.13262013],[4.53451472,0.02955052,97.13153209],[4.53451423,0.02954879,97.13044299],[4.53451374,0.02954705,97.12935283],[4.53451325,0.02954532,97.12826162],[4.53451275,0.02954358,97.12716934],[4.53451226,0.02954185,97.126076],[4.53451177,0.02954012,97.1249816],[4.53451127,0.02953838,97.12388613],[4.53451077,0.02953665,97.12278958],[4.53451028,0.02953492,97.12169197],[4.53450978,0.02953318,97.12059329],[4.53450928,0.02953145,97.11949353],[4.53450878,0.02952972,97.11839269],[4.53450828,0.02952799,97.11729079],[4.53450778,0.02952626,97.11618798],[4.53450728,0.02952453,97.1150846],[4.53450678,0.0295228,97.11398099],[4.53450627,0.02952107,97.1128775],[4.53450577,0.02951934,97.11177446],[4.53450527,0.02951761,97.11067221],[4.53450477,0.02951588,97.1095711],[4.53450426,0.02951415,97.10847146],[4.53450376,0.02951242,97.10737364],[4.53450326,0.02951069,97.10627798],[4.53450275,0.02950896,97.10518481],[4.53450225,0.02950723,97.10409448],[4.53450175,0.0295055,97.10300732],[4.53450125,0.02950378,97.10192367],[4.53450075,0.02950205,97.10084365],[4.53450025,0.02950032,97.09976716],[4.53449975,0.02949859,97.09869409],[4.53449925,0.02949686,97.09762435],[4.53449875,0.02949513,97.09655783],[4.53449825,0.0294934,97.09549443],[4.53449775,0.02949167,97.09443403],[4.53449725,0.02948994,97.09337655],[4.53449676,0.02948821,97.09232187],[4.53449626,0.02948649,97.09126989],[4.53449576,0.02948476,97.09022051],[4.53449526,0.02948303,97.08917363],[4.53449477,0.0294813,97.08812913],[4.53449427,0.02947957,97.08708693],[4.53449377,0.02947784,97.0860469],[4.53449328,0.02947612,97.08500895],[4.53449278,0.02947439,97.08397298],[4.53449228,0.02947266,97.08293889],[4.53449178,0.02947093,97.08190656],[4.53449129,0.02946921,97.08087589],[4.53449079,0.02946748,97.07984679],[4.53449029,0.02946575,97.07881915],[4.53448979,0.02946402,97.07779286],[4.53448929,0.0294623,97.07676782],[4.53448879,0.02946057,97.07574393],[4.53448829,0.02945884,97.07472109],[4.53448779,0.02945712,97.07369918],[4.53448729,0.02945539,97.07267812],[4.53448678,0.02945366,97.07165792],[4.53448628,0.02945193,97.07063873],[4.53448578,0.02945021,97.06962069],[4.53448528,0.02944848,97.06860393],[4.53448477,0.02944675,97.06758857],[4.53448427,0.02944503,97.06657465],[4.53448376,0.0294433,97.06556224],[4.53448326,0.02944157,97.06455139],[4.53448275,0.02943985,97.06354216],[4.53448225,0.02943812,97.06253461],[4.53448174,0.02943639,97.0615288],[4.53448124,0.02943466,97.06052478],[4.53448073,0.02943294,97.05952261],[4.53448023,0.02943121,97.05852235],[4.53447972,0.02942948,97.05752406],[4.53447921,0.02942775,97.05652779],[4.53447871,0.02942603,97.05553361],[4.5344782,0.0294243,97.05454156],[4.5344777,0.02942257,97.05355171],[4.53447719,0.02942084,97.05256411],[4.53447668,0.02941911,97.05157882],[4.53447618,0.02941739,97.0505959],[4.53447567,0.02941566,97.04961541],[4.53447517,0.02941393,97.0486374],[4.53447466,0.0294122,97.04766194],[4.53447416,0.02941047,97.04668907],[4.53447365,0.02940874,97.04571885],[4.53447315,0.02940701,97.04475135],[4.53447264,0.02940528,97.04378662],[4.53447214,0.02940355,97.04282472],[4.53447164,0.02940182,97.04186569],[4.53447113,0.02940009,97.04090962],[4.53447063,0.02939836,97.03995653],[4.53447013,0.02939663,97.03900651],[4.53446963,0.0293949,97.03805959],[4.53446912,0.02939317,97.03711585],[4.53446862,0.02939144,97.03617529],[4.53446812,0.02938971,97.03523789],[4.53446762,0.02938797,97.03430365],[4.53446712,0.02938624,97.03337253],[4.53446662,0.02938451,97.03244453],[4.53446612,0.02938278,97.03151961],[4.53446562,0.02938104,97.03059776],[4.53446513,0.02937931,97.02967896],[4.53446463,0.02937758,97.02876319],[4.53446413,0.02937584,97.02785043],[4.53446364,0.02937411,97.02694066],[4.53446314,0.02937237,97.02603386],[4.53446264,0.02937064,97.02513002],[4.53446215,0.0293689,97.0242291],[4.53446165,0.02936717,97.0233311],[4.53446116,0.02936543,97.02243601],[4.53446067,0.0293637,97.02154383],[4.53446017,0.02936196,97.02065454],[4.53445968,0.02936022,97.01976814],[4.53445919,0.02935849,97.01888462],[4.5344587,0.02935675,97.01800396],[4.5344582,0.02935501,97.01712616],[4.53445771,0.02935328,97.01625121],[4.53445722,0.02935154,97.01537909],[4.53445673,0.0293498,97.01450981],[4.53445625,0.02934806,97.01364334],[4.53445576,0.02934633,97.01277968],[4.53445527,0.02934459,97.01191882],[4.53445478,0.02934285,97.01106075],[4.53445429,0.02934111,97.01020546],[4.53445381,0.02933937,97.00935271],[4.53445332,0.02933763,97.00850139],[4.53445284,0.02933589,97.00765015],[4.53445235,0.02933415,97.00679766],[4.53445186,0.02933241,97.00594258],[4.53445137,0.02933067,97.00508356],[4.53445088,0.02932893,97.00421928],[4.53445038,0.0293272,97.00334839],[4.53444989,0.02932546,97.00246956],[4.53444938,0.02932372,97.00158146],[4.53444888,0.02932199,97.00068275],[4.53444837,0.02932025,96.9997721],[4.53444786,0.02931852,96.99884879],[4.53444734,0.02931679,96.9979145],[4.53444682,0.02931506,96.99697154],[4.5344463,0.02931333,96.99602218],[4.53444577,0.0293116,96.99506873],[4.53444525,0.02930987,96.99411348],[4.53444472,0.02930814,96.9931587],[4.5344442,0.02930641,96.99220668],[4.53444367,0.02930468,96.99125972],[4.53444315,0.02930294,96.99032008],[4.53444264,0.02930121,96.98939005],[4.53444212,0.02929948,96.98847181],[4.53444161,0.02929774,96.98756554],[4.53444111,0.029296,96.98666948],[4.5344406,0.02929427,96.98578175],[4.5344401,0.02929253,96.98490051],[4.5344396,0.02929079,96.9840239],[4.5344391,0.02928905,96.98315007],[4.5344386,0.02928731,96.98227715],[4.5344381,0.02928557,96.98140331],[4.5344376,0.02928383,96.98052669],[4.5344371,0.0292821,96.97964544],[4.53443659,0.02928036,96.97875772],[4.53443609,0.02927862,96.97786168],[4.53443558,0.02927688,96.97695562],[4.53443506,0.02927515,96.97604123],[4.53443455,0.02927341,96.97512351],[4.53443403,0.02927168,96.9742076],[4.53443352,0.02926994,96.97329865],[4.53443302,0.02926821,96.97240179],[4.53443251,0.02926647,96.97152214],[4.53443202,0.02926473,96.97066484],[4.53443154,0.02926298,96.96983501],[4.53443106,0.02926124,96.96903743],[4.5344306,0.02925948,96.96826919],[4.53443014,0.02925773,96.96751976],[4.53442969,0.02925598,96.96677829],[4.53442923,0.02925423,96.96603575],[4.53442878,0.02925247,96.9652904],[4.53442832,0.02925072,96.96454231],[4.53442786,0.02924897,96.96379155],[4.53442741,0.02924722,96.9630382],[4.53442695,0.02924547,96.96228232],[4.53442649,0.02924372,96.96152402],[4.53442603,0.02924197,96.9607634],[4.53442557,0.02924021,96.96000055],[4.53442511,0.02923846,96.95923558],[4.53442464,0.02923671,96.95846857],[4.53442418,0.02923496,96.95769962],[4.53442372,0.02923321,96.95692884],[4.53442325,0.02923146,96.95615632],[4.53442279,0.02922971,96.95538216],[4.53442233,0.02922797,96.95460646],[4.53442186,0.02922622,96.95382931],[4.5344214,0.02922447,96.95305081],[4.53442093,0.02922272,96.95227105],[4.53442046,0.02922097,96.95149014],[4.53442,0.02921922,96.95070818],[4.53441953,0.02921747,96.94992525],[4.53441907,0.02921572,96.94914146],[4.5344186,0.02921398,96.94835689],[4.53441813,0.02921223,96.94757166],[4.53441766,0.02921048,96.94678579],[4.5344172,0.02920873,96.94599927],[4.53441673,0.02920698,96.94521209],[4.53441626,0.02920523,96.94442423],[4.53441579,0.02920349,96.94363568],[4.53441533,0.02920174,96.94284641],[4.53441486,0.02919999,96.94205642],[4.53441439,0.02919824,96.94126568],[4.53441392,0.0291965,96.94047419],[4.53441345,0.02919475,96.93968192],[4.53441298,0.029193,96.93888886],[4.53441251,0.02919125,96.93809499],[4.53441205,0.02918951,96.93730031],[4.53441158,0.02918776,96.93650478],[4.53441111,0.02918601,96.9357084],[4.53441064,0.02918427,96.93491115],[4.53441017,0.02918252,96.93411302],[4.5344097,0.02918077,96.93331398],[4.53440922,0.02917903,96.93251403],[4.53440875,0.02917728,96.93171315],[4.53440828,0.02917553,96.93091132],[4.53440781,0.02917379,96.93010852],[4.53440734,0.02917204,96.92930475],[4.53440687,0.02917029,96.92849998],[4.53440639,0.02916855,96.9276942],[4.53440592,0.0291668,96.92688739],[4.53440545,0.02916506,96.92607955],[4.53440497,0.02916331,96.92527074],[4.5344045,0.02916156,96.92446113],[4.53440403,0.02915982,96.92365087],[4.53440355,0.02915807,96.92284013],[4.53440308,0.02915633,96.92202908],[4.53440261,0.02915458,96.92121787],[4.53440213,0.02915284,96.92040666],[4.53440166,0.02915109,96.91959563],[4.53440118,0.02914934,96.91878492],[4.53440071,0.0291476,96.9179747],[4.53440024,0.02914585,96.91716514],[4.53439977,0.02914411,96.9163564],[4.53439929,0.02914236,96.91554865],[4.53439882,0.02914062,96.91474208],[4.53439835,0.02913887,96.91393685],[4.53439788,0.02913712,96.91313314],[4.53439741,0.02913538,96.91233112],[4.53439694,0.02913363,96.91153097],[4.53439647,0.02913188,96.91073285],[4.534396,0.02913014,96.90993696],[4.53439553,0.02912839,96.90914345],[4.53439507,0.02912664,96.90835245],[4.5343946,0.0291249,96.90756389],[4.53439414,0.02912315,96.90677765],[4.53439367,0.0291214,96.9059936],[4.53439321,0.02911965,96.90521163],[4.53439275,0.0291179,96.90443162],[4.53439229,0.02911616,96.90365344],[4.53439183,0.02911441,96.90287698],[4.53439137,0.02911266,96.9021021],[4.53439091,0.02911091,96.9013287],[4.53439045,0.02910916,96.90055666],[4.53438999,0.02910741,96.89978585],[4.53438953,0.02910566,96.89901615],[4.53438907,0.02910391,96.89824744],[4.53438861,0.02910216,96.89747961],[4.53438816,0.02910042,96.89671253],[4.5343877,0.02909867,96.89594608],[4.53438724,0.02909692,96.89518013],[4.53438679,0.02909517,96.89441451],[4.53438633,0.02909342,96.89364906],[4.53438587,0.02909167,96.89288363],[4.53438542,0.02908992,96.89211807],[4.53438496,0.02908817,96.8913522],[4.5343845,0.02908642,96.89058588],[4.53438404,0.02908467,96.88981894],[4.53438359,0.02908292,96.88905123],[4.53438313,0.02908117,96.8882826],[4.53438267,0.02907942,96.88751289],[4.53438221,0.02907768,96.88674197],[4.53438175,0.02907593,96.88596983],[4.5343813,0.02907418,96.88519654],[4.53438084,0.02907243,96.88442216],[4.53438038,0.02907068,96.88364676],[4.53437992,0.02906893,96.88287042],[4.53437946,0.02906719,96.8820932],[4.53437899,0.02906544,96.88131518],[4.53437853,0.02906369,96.88053642],[4.53437807,0.02906194,96.87975699],[4.53437761,0.02906019,96.87897697],[4.53437715,0.02905845,96.87819642],[4.53437669,0.0290567,96.87741542],[4.53437623,0.02905495,96.87663403],[4.53437576,0.0290532,96.87585232],[4.5343753,0.02905146,96.87507036],[4.53437484,0.02904971,96.87428823],[4.53437438,0.02904796,96.87350599],[4.53437392,0.02904621,96.8727237],[4.53437346,0.02904447,96.87194145],[4.53437299,0.02904272,96.8711593],[4.53437253,0.02904097,96.87037731],[4.53437207,0.02903922,96.86959557],[4.53437161,0.02903748,96.86881412],[4.53437115,0.02903573,96.86803306],[4.53437069,0.02903401,96.86725243],[4.53437023,0.02903226,96.86647232],[4.53436977,0.02903051,96.86569279],[4.53436931,0.02902876,96.86491391],[4.53436885,0.02902702,96.86413575],[4.53436839,0.02902527,96.86335838],[4.53436793,0.02902352,96.86258186],[4.53436747,0.02902177,96.86180626],[4.53436701,0.02902003,96.86103166],[4.53436655,0.02901828,96.86025812],[4.5343661,0.02901653,96.8594857],[4.53436564,0.02901478,96.85871453],[4.53436518,0.02901303,96.85794569],[4.53436473,0.02901129,96.85718123],[4.53436427,0.02900954,96.85642325],[4.53436382,0.02900779,96.85567384],[4.53436338,0.02900604,96.85493511],[4.53436294,0.02900428,96.85420914],[4.5343625,0.02900253,96.85349802],[4.53436207,0.02900078,96.85280325],[4.53436165,0.02899902,96.85212397],[4.53436123,0.02899726,96.85145873],[4.53436081,0.0289955,96.85080611],[4.5343604,0.02899374,96.85016467],[4.53435999,0.02899198,96.84953297],[4.53435959,0.02899022,96.84890957],[4.53435918,0.02898846,96.84829305],[4.53435878,0.0289867,96.84768197],[4.53435839,0.02898493,96.8470749],[4.53435799,0.02898317,96.84647042],[4.53435759,0.02898141,96.84586708],[4.53435719,0.02897964,96.84526347],[4.5343568,0.02897788,96.84465816],[4.5343564,0.02897612,96.84404972],[4.534356,0.02897436,96.84343673],[4.53435559,0.02897259,96.84281775],[4.53435529,0.02897128,96.8423516]],"type":"LineString"},"type":"feature","properties":{"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004700","id":-2,"type":"shoulder","predecessorId":-3}},{"geometry":{"coordinates":[[4.53453514,0.02961795,97.17827241],[4.53453469,0.02961619,97.17729622],[4.53453424,0.02961444,97.17631601],[4.53453379,0.02961269,97.17533184],[4.53453334,0.02961094,97.17434377],[4.53453289,0.02960919,97.17335189],[4.53453243,0.02960743,97.17235627],[4.53453198,0.02960568,97.17135696],[4.53453152,0.02960394,97.17035404],[4.53453106,0.02960219,97.16934758],[4.5345306,0.02960044,97.16833766],[4.53453014,0.02959869,97.16732433],[4.53452968,0.02959694,97.16630767],[4.53452922,0.0295952,97.16528776],[4.53452875,0.02959345,97.16426465],[4.53452829,0.0295917,97.16323842],[4.53452782,0.02958996,97.16220914],[4.53452735,0.02958821,97.16117688],[4.53452688,0.02958647,97.16014171],[4.53452641,0.02958472,97.1591037],[4.53452594,0.02958298,97.15806292],[4.53452547,0.02958123,97.15701944],[4.534525,0.02957949,97.15597333],[4.53452453,0.02957775,97.15492466],[4.53452405,0.02957601,97.15387349],[4.53452358,0.02957427,97.15281991],[4.5345231,0.02957252,97.15176398],[4.53452262,0.02957078,97.15070576],[4.53452214,0.02956904,97.14964534],[4.53452166,0.0295673,97.14858277],[4.53452118,0.02956556,97.14751814],[4.5345207,0.02956382,97.14645151],[4.53452022,0.02956208,97.14538295],[4.53451974,0.02956034,97.14431252],[4.53451925,0.02955861,97.14324031],[4.53451877,0.02955687,97.14216638],[4.53451828,0.02955513,97.14109081],[4.5345178,0.02955339,97.14001365],[4.53451731,0.02955166,97.13893499],[4.53451682,0.02954992,97.13785489],[4.53451633,0.02954818,97.13677342],[4.53451585,0.02954645,97.13569065],[4.53451536,0.02954471,97.13460666],[4.53451486,0.02954298,97.13352151],[4.53451437,0.02954124,97.13243528],[4.53451388,0.02953951,97.13134803],[4.53451339,0.02953777,97.13025983],[4.53451289,0.02953604,97.12917076],[4.5345124,0.02953431,97.12808089],[4.5345119,0.02953257,97.12699028],[4.53451141,0.02953084,97.12589901],[4.53451091,0.02952911,97.12480714],[4.53451042,0.02952738,97.12371475],[4.53450992,0.02952564,97.12262191],[4.53450942,0.02952391,97.12152869],[4.53450892,0.02952218,97.12043515],[4.53450842,0.02952045,97.11934138],[4.53450792,0.02951872,97.11824743],[4.53450742,0.02951699,97.11715338],[4.53450692,0.02951526,97.1160593],[4.53450642,0.02951353,97.11496527],[4.53450592,0.0295118,97.11387134],[4.53450542,0.02951007,97.1127776],[4.53450491,0.02950834,97.11168411],[4.53450441,0.02950661,97.11059094],[4.53450391,0.02950488,97.10949816],[4.5345034,0.02950315,97.10840584],[4.5345029,0.02950143,97.10731406],[4.53450239,0.0294997,97.10622289],[4.53450189,0.02949797,97.10513238],[4.53450138,0.02949624,97.10404263],[4.53450087,0.02949452,97.10295368],[4.53450037,0.02949279,97.10186563],[4.53449986,0.02949106,97.10077853],[4.53449935,0.02948934,97.09969245],[4.53449884,0.02948761,97.09860747],[4.53449834,0.02948588,97.09752366],[4.53449783,0.02948416,97.09644109],[4.53449732,0.02948243,97.09535983],[4.53449681,0.02948071,97.09427994],[4.5344963,0.02947898,97.0932015],[4.53449579,0.02947726,97.09212459],[4.53449528,0.02947553,97.09104926],[4.53449477,0.02947381,97.08997559],[4.53449426,0.02947208,97.08890365],[4.53449375,0.02947036,97.08783351],[4.53449324,0.02946863,97.08676524],[4.53449273,0.02946691,97.08569891],[4.53449222,0.02946519,97.08463459],[4.53449171,0.02946346,97.08357236],[4.5344912,0.02946174,97.08251227],[4.53449069,0.02946001,97.08145441],[4.53449018,0.02945829,97.08039884],[4.53448966,0.02945656,97.07934563],[4.53448915,0.02945484,97.07829485],[4.53448864,0.02945312,97.07724657],[4.53448813,0.02945139,97.07620087],[4.53448762,0.02944967,97.07515781],[4.53448711,0.02944794,97.07411745],[4.5344866,0.02944622,97.07307983],[4.53448608,0.02944449,97.07204493],[4.53448557,0.02944277,97.07101273],[4.53448506,0.02944104,97.06998321],[4.53448455,0.02943931,97.06895636],[4.53448404,0.02943759,97.06793215],[4.53448353,0.02943586,97.06691058],[4.53448302,0.02943414,97.06589163],[4.53448251,0.02943241,97.06487527],[4.534482,0.02943068,97.06386149],[4.53448149,0.02942896,97.06285028],[4.53448098,0.02942723,97.06184162],[4.53448047,0.0294255,97.06083549],[4.53447996,0.02942378,97.05983187],[4.53447945,0.02942205,97.05883074],[4.53447894,0.02942032,97.0578321],[4.53447843,0.02941859,97.05683592],[4.53447792,0.02941687,97.05584218],[4.53447741,0.02941514,97.05485088],[4.53447691,0.02941341,97.05386198],[4.5344764,0.02941168,97.05287548],[4.53447589,0.02940996,97.05189136],[4.53447538,0.02940823,97.0509096],[4.53447487,0.0294065,97.04993018],[4.53447436,0.02940477,97.04895309],[4.53447385,0.02940304,97.0479783],[4.53447335,0.02940131,97.04700581],[4.53447284,0.02939958,97.0460356],[4.53447233,0.02939785,97.04506765],[4.53447182,0.02939613,97.04410194],[4.53447132,0.0293944,97.04313845],[4.53447081,0.02939267,97.04217717],[4.5344703,0.02939094,97.04121808],[4.53446979,0.02938921,97.04026117],[4.53446929,0.02938748,97.03930641],[4.53446878,0.02938575,97.03835379],[4.53446827,0.02938402,97.0374033],[4.53446777,0.02938228,97.03645491],[4.53446726,0.02938055,97.03550861],[4.53446675,0.02937882,97.03456439],[4.53446625,0.02937709,97.03362222],[4.53446574,0.02937536,97.03268209],[4.53446524,0.02937363,97.03174398],[4.53446473,0.0293719,97.03080787],[4.53446423,0.02937017,97.02987376],[4.53446372,0.02936843,97.02894161],[4.53446321,0.0293667,97.02801143],[4.53446271,0.02936497,97.0270832],[4.5344622,0.02936324,97.02615692],[4.5344617,0.02936151,97.0252326],[4.5344612,0.02935977,97.02431021],[4.53446069,0.02935804,97.02338976],[4.53446019,0.02935631,97.02247124],[4.53445968,0.02935457,97.02155463],[4.53445918,0.02935284,97.02063995],[4.53445868,0.02935111,97.01972717],[4.53445817,0.02934937,97.01881629],[4.53445767,0.02934764,97.0179073],[4.53445717,0.02934591,97.0170002],[4.53445666,0.02934417,97.01609498],[4.53445616,0.02934244,97.01519163],[4.53445566,0.0293407,97.01429016],[4.53445516,0.02933897,97.01339054],[4.53445466,0.02933723,97.01249277],[4.53445416,0.0293355,97.01159685],[4.53445365,0.02933376,97.01070278],[4.53445315,0.02933203,97.00981053],[4.53445265,0.02933029,97.00892011],[4.53445215,0.02932856,97.00803151],[4.53445165,0.02932682,97.00714472],[4.53445115,0.02932508,97.00625974],[4.53445066,0.02932335,97.00537656],[4.53445016,0.02932161,97.00449517],[4.53444966,0.02931987,97.00361557],[4.53444916,0.02931814,97.00273774],[4.53444866,0.0293164,97.00186169],[4.53444817,0.02931466,97.0009874],[4.53444767,0.02931292,97.00011487],[4.53444717,0.02931119,96.9992441],[4.53444668,0.02930945,96.99837507],[4.53444618,0.02930771,96.99750777],[4.53444569,0.02930597,96.99664221],[4.53444519,0.02930423,96.99577838],[4.5344447,0.02930249,96.99491626],[4.5344442,0.02930075,96.99405585],[4.53444371,0.02929901,96.99319714],[4.53444322,0.02929727,96.99234008],[4.53444272,0.02929553,96.99148467],[4.53444223,0.02929379,96.99063086],[4.53444174,0.02929205,96.98977862],[4.53444125,0.02929031,96.98892794],[4.53444076,0.02928857,96.98807877],[4.53444027,0.02928683,96.98723109],[4.53443978,0.02928509,96.98638487],[4.53443929,0.02928334,96.98554008],[4.5344388,0.0292816,96.9846967],[4.53443831,0.02927986,96.98385468],[4.53443782,0.02927812,96.98301401],[4.53443734,0.02927638,96.98217466],[4.53443685,0.02927463,96.98133659],[4.53443636,0.02927289,96.98049978],[4.53443587,0.02927115,96.97966419],[4.53443539,0.0292694,96.9788298],[4.53443491,0.02926767,96.97799659],[4.53443442,0.02926592,96.97716451],[4.53443394,0.02926418,96.97633355],[4.53443345,0.02926243,96.97550367],[4.53443297,0.02926069,96.97467485],[4.53443249,0.02925895,96.97384705],[4.534432,0.0292572,96.97302025],[4.53443152,0.02925546,96.97219442],[4.53443104,0.02925371,96.97136952],[4.53443056,0.02925197,96.97054554],[4.53443008,0.02925022,96.96972244],[4.5344296,0.02924848,96.96890019],[4.53442911,0.02924674,96.96807877],[4.53442863,0.02924499,96.96725815],[4.53442815,0.02924325,96.96643833],[4.53442768,0.0292415,96.96561929],[4.5344272,0.02923976,96.96480105],[4.53442672,0.02923801,96.96398358],[4.53442624,0.02923627,96.9631669],[4.53442576,0.02923452,96.962351],[4.53442528,0.02923277,96.96153587],[4.53442481,0.02923103,96.96072151],[4.53442433,0.02922928,96.95990792],[4.53442385,0.02922754,96.95909509],[4.53442338,0.02922579,96.95828303],[4.5344229,0.02922405,96.95747171],[4.53442242,0.0292223,96.95666116],[4.53442195,0.02922056,96.95585135],[4.53442147,0.02921881,96.95504229],[4.534421,0.02921706,96.95423397],[4.53442053,0.02921532,96.95342639],[4.53442005,0.02921357,96.95261955],[4.53441958,0.02921183,96.95181344],[4.5344191,0.02921008,96.95100806],[4.53441863,0.02920833,96.95020341],[4.53441816,0.02920659,96.94939947],[4.53441769,0.02920484,96.94859626],[4.53441721,0.0292031,96.94779376],[4.53441674,0.02920135,96.94699197],[4.53441627,0.0291996,96.9461909],[4.5344158,0.02919786,96.94539052],[4.53441533,0.02919611,96.94459085],[4.53441486,0.02919436,96.94379188],[4.53441439,0.02919262,96.9429936],[4.53441392,0.02919087,96.94219601],[4.53441345,0.02918912,96.94139911],[4.53441298,0.02918738,96.9406029],[4.53441251,0.02918563,96.93980737],[4.53441204,0.02918388,96.93901251],[4.53441157,0.02918214,96.93821833],[4.5344111,0.02918039,96.93742481],[4.53441064,0.02917864,96.93663197],[4.53441017,0.02917689,96.93583979],[4.5344097,0.02917515,96.93504827],[4.53440923,0.0291734,96.9342574],[4.53440877,0.02917165,96.93346719],[4.5344083,0.02916991,96.93267763],[4.53440783,0.02916816,96.93188871],[4.53440737,0.02916641,96.93110044],[4.5344069,0.02916466,96.93031281],[4.53440644,0.02916292,96.92952581],[4.53440597,0.02916117,96.92873944],[4.53440551,0.02915942,96.92795371],[4.53440504,0.02915767,96.9271686],[4.53440458,0.02915592,96.92638411],[4.53440411,0.02915418,96.92560024],[4.53440365,0.02915243,96.92481699],[4.53440319,0.02915068,96.92403434],[4.53440272,0.02914893,96.92325231],[4.53440226,0.02914719,96.92247088],[4.5344018,0.02914544,96.92169005],[4.53440134,0.02914369,96.92090982],[4.53440087,0.02914194,96.92013022],[4.53440041,0.02914019,96.91935123],[4.53439995,0.02913844,96.91857288],[4.53439949,0.0291367,96.91779518],[4.53439903,0.02913495,96.91701813],[4.53439857,0.0291332,96.91624175],[4.53439811,0.02913145,96.91546604],[4.53439765,0.0291297,96.91469102],[4.53439718,0.02912795,96.9139167],[4.53439673,0.02912621,96.91314308],[4.53439627,0.02912446,96.91237017],[4.53439581,0.02912271,96.91159799],[4.53439535,0.02912096,96.91082655],[4.53439489,0.02911921,96.91005585],[4.53439443,0.02911746,96.90928591],[4.53439397,0.02911571,96.90851674],[4.53439351,0.02911396,96.90774834],[4.53439306,0.02911221,96.90698072],[4.5343926,0.02911047,96.9062139],[4.53439214,0.02910872,96.90544788],[4.53439169,0.02910697,96.90468268],[4.53439123,0.02910522,96.90391831],[4.53439078,0.02910347,96.90315477],[4.53439032,0.02910172,96.90239207],[4.53438986,0.02909997,96.90163023],[4.53438941,0.02909822,96.90086925],[4.53438896,0.02909647,96.90010912],[4.5343885,0.02909472,96.89934982],[4.53438805,0.02909297,96.89859131],[4.53438759,0.02909122,96.89783356],[4.53438714,0.02908947,96.89707654],[4.53438669,0.02908772,96.89632023],[4.53438623,0.02908597,96.8955646],[4.53438578,0.02908422,96.89480961],[4.53438533,0.02908247,96.89405524],[4.53438488,0.02908072,96.89330147],[4.53438443,0.02907897,96.89254825],[4.53438397,0.02907722,96.89179561],[4.53438352,0.02907547,96.89104355],[4.53438307,0.02907372,96.89029207],[4.53438262,0.02907197,96.88954119],[4.53438217,0.02907022,96.88879092],[4.53438172,0.02906847,96.88804125],[4.53438127,0.02906672,96.88729222],[4.53438082,0.02906497,96.88654381],[4.53438037,0.02906322,96.88579605],[4.53437992,0.02906147,96.88504893],[4.53437947,0.02905972,96.88430248],[4.53437902,0.02905797,96.88355669],[4.53437858,0.02905621,96.88281158],[4.53437813,0.02905446,96.88206715],[4.53437768,0.02905271,96.88132341],[4.53437723,0.02905096,96.88058038],[4.53437678,0.02904921,96.87983806],[4.53437634,0.02904746,96.87909647],[4.53437589,0.02904571,96.8783556],[4.53437544,0.02904396,96.87761546],[4.534375,0.02904221,96.87687608],[4.53437455,0.02904046,96.87613745],[4.5343741,0.0290387,96.87539958],[4.53437366,0.02903695,96.87466248],[4.53437321,0.0290352,96.87392617],[4.53437278,0.02903347,96.87319065],[4.53437233,0.02903172,96.87245592],[4.53437189,0.02902997,96.871722],[4.53437144,0.02902822,96.8709889],[4.534371,0.02902647,96.87025663],[4.53437056,0.02902472,96.86952518],[4.53437011,0.02902297,96.86879458],[4.53436967,0.02902122,96.86806483],[4.53436923,0.02901947,96.86733593],[4.53436879,0.02901771,96.86660791],[4.53436834,0.02901596,96.86588075],[4.5343679,0.02901421,96.86515449],[4.53436746,0.02901246,96.86442912],[4.53436702,0.02901071,96.86370464],[4.53436658,0.02900895,96.86298108],[4.53436614,0.0290072,96.86225844],[4.5343657,0.02900545,96.86153672],[4.53436526,0.0290037,96.86081594],[4.53436482,0.02900194,96.86009611],[4.53436439,0.02900019,96.85937722],[4.53436395,0.02899844,96.8586593],[4.53436351,0.02899669,96.85794235],[4.53436307,0.02899493,96.85722637],[4.53436264,0.02899318,96.85651139],[4.5343622,0.02899143,96.85579739],[4.53436176,0.02898967,96.8550844],[4.53436133,0.02898792,96.85437242],[4.53436089,0.02898617,96.85366147],[4.53436046,0.02898441,96.85295154],[4.53436003,0.02898266,96.85224264],[4.53435959,0.02898091,96.8515348],[4.53435916,0.02897915,96.850828],[4.53435873,0.0289774,96.85012227],[4.53435829,0.02897564,96.84941761],[4.53435786,0.02897389,96.84871403],[4.53435743,0.02897214,96.84801153],[4.53435711,0.02897083,96.84748857]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004700","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"entry","predecessorId":-1}},{"geometry":{"coordinates":[[4.53440501,0.02895889,96.98299205],[4.53440456,0.02896038,96.98137169],[4.53440417,0.02896234,96.97977178],[4.53440457,0.02896409,96.98041896],[4.53440498,0.02896585,96.9810629],[4.53440538,0.0289676,96.98170398],[4.53440578,0.02896936,96.98234262],[4.53440617,0.02897111,96.9829792],[4.53440657,0.02897287,96.98361412],[4.53440697,0.02897462,96.98424779],[4.53440737,0.02897638,96.98488058],[4.53440777,0.02897813,96.98551292],[4.53440816,0.02897989,96.98614518],[4.53440856,0.02898164,96.98677778],[4.53440896,0.0289834,96.98741111],[4.53440936,0.02898516,96.98804557],[4.53440976,0.02898691,96.98868155],[4.53441016,0.02898867,96.98931946],[4.53441056,0.02899042,96.9899597],[4.53441096,0.02899218,96.99060267],[4.53441136,0.02899393,96.99124877],[4.53441177,0.02899568,96.9918984],[4.53441217,0.02899744,96.99255195],[4.53441258,0.02899919,96.99320984],[4.53441299,0.02900095,96.99387247],[4.5344134,0.0290027,96.99454022],[4.53441381,0.02900445,96.99521352],[4.53441423,0.0290062,96.99589276],[4.53441464,0.02900795,96.99657834],[4.53441506,0.0290097,96.99727067],[4.53441548,0.02901145,96.99797016],[4.53441591,0.0290132,96.99867717],[4.53441633,0.02901495,96.99939157],[4.53441676,0.0290167,97.00011267],[4.53441719,0.02901845,97.00083978],[4.53441763,0.02902019,97.00157217],[4.53441806,0.02902194,97.00230917],[4.53441849,0.02902366,97.00305005],[4.53441893,0.02902541,97.00379411],[4.53441937,0.02902716,97.00454065],[4.5344198,0.0290289,97.00528897],[4.53442024,0.02903065,97.00603834],[4.53442068,0.0290324,97.00678807],[4.53442112,0.02903414,97.00753746],[4.53442156,0.02903589,97.00828578],[4.534422,0.02903763,97.00903233],[4.53442244,0.02903938,97.0097764],[4.53442287,0.02904113,97.01051748],[4.53442331,0.02904287,97.01125584],[4.53442374,0.02904462,97.01199195],[4.53442417,0.02904637,97.01272628],[4.53442461,0.02904811,97.0134593],[4.53442504,0.02904986,97.01419147],[4.53442547,0.02905161,97.01492328],[4.5344259,0.02905336,97.0156552],[4.53442634,0.0290551,97.01638769],[4.53442677,0.02905685,97.01712122],[4.5344272,0.0290586,97.01785628],[4.53442764,0.02906034,97.01859333],[4.53442807,0.02906209,97.01933285],[4.53442851,0.02906384,97.02007532],[4.53442895,0.02906558,97.02082119],[4.53442939,0.02906733,97.02157096],[4.53442983,0.02906907,97.0223251],[4.53443027,0.02907082,97.02308408],[4.53443071,0.02907256,97.02384838],[4.53443116,0.0290743,97.02461847],[4.53443161,0.02907605,97.02539484],[4.53443206,0.02907779,97.0261778],[4.53443251,0.02907953,97.02696702],[4.53443296,0.02908127,97.02776203],[4.53443342,0.02908301,97.02856234],[4.53443388,0.02908475,97.02936746],[4.53443434,0.02908649,97.03017692],[4.5344348,0.02908823,97.03099022],[4.53443526,0.02908997,97.03180686],[4.53443572,0.02909171,97.03262632],[4.53443618,0.02909344,97.03344808],[4.53443665,0.02909518,97.0342716],[4.53443711,0.02909692,97.03509637],[4.53443758,0.02909866,97.03592184],[4.53443804,0.0291004,97.03674751],[4.53443851,0.02910213,97.03757283],[4.53443897,0.02910387,97.03839729],[4.53443944,0.02910561,97.03922034],[4.5344399,0.02910735,97.04004147],[4.53444036,0.02910909,97.04086013],[4.53444082,0.02911082,97.04167597],[4.53444129,0.02911256,97.04248924],[4.53444175,0.0291143,97.04330038],[4.5344422,0.02911604,97.0441098],[4.53444266,0.02911778,97.04491794],[4.53444312,0.02911952,97.04572521],[4.53444358,0.02912126,97.04653206],[4.53444404,0.02912299,97.0473389],[4.5344445,0.02912473,97.04814616],[4.53444496,0.02912647,97.04895427],[4.53444542,0.02912821,97.04976366],[4.53444588,0.02912995,97.05057476],[4.53444634,0.02913169,97.05138799],[4.5344468,0.02913342,97.0522038],[4.53444726,0.02913516,97.0530226],[4.53444773,0.0291369,97.05384483],[4.53444819,0.02913864,97.05467091],[4.53444866,0.02914037,97.05550129],[4.53444913,0.02914211,97.05633627],[4.5344496,0.02914384,97.05717571],[4.53445007,0.02914558,97.05801933],[4.53445054,0.02914731,97.05886685],[4.53445102,0.02914905,97.05971802],[4.53445149,0.02915078,97.06057256],[4.53445197,0.02915251,97.06143019],[4.53445245,0.02915425,97.06229065],[4.53445293,0.02915598,97.06315366],[4.5344534,0.02915771,97.06401895],[4.53445388,0.02915944,97.06488626],[4.53445436,0.02916117,97.06575529],[4.53445485,0.02916291,97.0666258],[4.53445533,0.02916464,97.06749749],[4.53445581,0.02916637,97.06837009],[4.53445629,0.0291681,97.06924334],[4.53445677,0.02916983,97.07011696],[4.53445726,0.02917156,97.07099067],[4.53445774,0.02917329,97.0718642],[4.53445822,0.02917503,97.07273728],[4.5344587,0.02917676,97.0736098],[4.53445919,0.02917849,97.07448177],[4.53445967,0.02918022,97.07535322],[4.53446015,0.02918195,97.0762242],[4.53446063,0.02918368,97.07709473],[4.53446111,0.02918541,97.07796485],[4.53446159,0.02918714,97.07883459],[4.53446208,0.02918887,97.07970398],[4.53446256,0.02919061,97.08057306],[4.53446304,0.02919234,97.08144185],[4.53446352,0.02919407,97.08231039],[4.534464,0.0291958,97.08317872],[4.53446448,0.02919753,97.08404686],[4.53446496,0.02919926,97.08491486],[4.53446544,0.02920099,97.08578273],[4.53446593,0.02920272,97.08665052],[4.53446641,0.02920445,97.08751826],[4.53446689,0.02920618,97.08838598],[4.53446737,0.02920791,97.08925372],[4.53446785,0.02920964,97.0901215],[4.53446833,0.02921137,97.09098936],[4.53446882,0.0292131,97.09185734],[4.5344693,0.02921483,97.09272546],[4.53446978,0.02921656,97.09359376],[4.53447026,0.02921829,97.09446228],[4.53447074,0.02922002,97.09533104],[4.53447123,0.02922175,97.09620009],[4.53447171,0.02922348,97.09706944],[4.53447219,0.02922521,97.09793915],[4.53447268,0.02922694,97.09880923],[4.53447316,0.02922867,97.09967973],[4.53447364,0.0292304,97.10055067],[4.53447413,0.02923213,97.10142209],[4.53447461,0.02923386,97.10229403],[4.53447509,0.02923559,97.10316652],[4.53447558,0.02923732,97.10403961],[4.53447606,0.02923905,97.10491334],[4.53447655,0.02924078,97.10578773],[4.53447704,0.02924251,97.10666278],[4.53447752,0.02924423,97.10753852],[4.53447801,0.02924596,97.10841495],[4.53447849,0.02924769,97.10929209],[4.53447898,0.02924942,97.11016996],[4.53447947,0.02925115,97.11104857],[4.53447996,0.02925287,97.11192793],[4.53448044,0.0292546,97.11280805],[4.53448093,0.02925632,97.11368896],[4.53448142,0.02925805,97.11457066],[4.53448191,0.02925978,97.11545317],[4.5344824,0.0292615,97.1163365],[4.53448289,0.02926323,97.11722067],[4.53448338,0.02926496,97.11810569],[4.53448387,0.02926669,97.11899157],[4.53448436,0.02926842,97.11987834],[4.53448485,0.02927014,97.12076599],[4.53448534,0.02927187,97.12165456],[4.53448584,0.0292736,97.12254405],[4.53448633,0.02927533,97.12343447],[4.53448682,0.02927706,97.12432584],[4.53448732,0.02927878,97.12521818],[4.53448781,0.02928051,97.12611149],[4.5344883,0.02928224,97.1270058],[4.5344888,0.02928397,97.12790112],[4.53448929,0.0292857,97.12879746],[4.53448979,0.02928742,97.12969483],[4.53449028,0.02928915,97.13059325],[4.53449078,0.02929088,97.13149274],[4.53449127,0.02929261,97.1323933],[4.53449177,0.02929434,97.13329496],[4.53449227,0.02929606,97.13419772],[4.53449276,0.02929779,97.13510161],[4.53449326,0.02929952,97.13600663],[4.53449376,0.02930125,97.1369128],[4.53449426,0.02930298,97.13782013],[4.53449476,0.02930471,97.13872865],[4.53449525,0.02930643,97.13963835],[4.53449575,0.02930816,97.14054927],[4.53449625,0.02930989,97.1414614],[4.53449675,0.02931162,97.14237478],[4.53449725,0.02931335,97.1432894],[4.53449775,0.02931508,97.14420528],[4.53449825,0.0293168,97.14512245],[4.53449875,0.02931853,97.14604091],[4.53449925,0.02932026,97.14696068],[4.53449975,0.02932199,97.14788177],[4.53450025,0.02932372,97.14880419],[4.53450076,0.02932545,97.14972797],[4.53450126,0.02932718,97.15065312],[4.53450176,0.02932891,97.15157964],[4.53450226,0.02933063,97.15250756],[4.53450276,0.02933236,97.15343689],[4.53450327,0.02933409,97.15436764],[4.53450377,0.02933582,97.15529983],[4.53450427,0.02933755,97.15623348],[4.53450477,0.02933928,97.15716859],[4.53450528,0.02934101,97.15810518],[4.53450578,0.02934274,97.15904327],[4.53450628,0.02934447,97.15998287],[4.53450679,0.0293462,97.160924],[4.53450729,0.02934793,97.16186666],[4.5345078,0.02934966,97.16281088],[4.5345083,0.02935139,97.16375667],[4.53450881,0.02935312,97.16470404],[4.53450931,0.02935485,97.16565301],[4.53450982,0.02935658,97.16660359],[4.53451032,0.02935831,97.16755579],[4.53451083,0.02936004,97.16850965],[4.53451133,0.02936177,97.16946519],[4.53451184,0.0293635,97.17042245],[4.53451234,0.02936523,97.17138143],[4.53451285,0.02936696,97.17234216],[4.53451335,0.02936869,97.17330466],[4.53451386,0.02937042,97.17426894],[4.53451437,0.02937215,97.17523502],[4.53451487,0.02937388,97.17620292],[4.53451538,0.02937561,97.17717266],[4.53451589,0.02937734,97.17814426],[4.53451639,0.02937907,97.17911772],[4.5345169,0.0293808,97.18009308],[4.53451741,0.02938253,97.18107036],[4.53451792,0.02938426,97.18204955],[4.53451843,0.02938599,97.1830307],[4.53451893,0.02938772,97.18401381],[4.53451944,0.02938946,97.1849989],[4.53451995,0.02939119,97.18598599],[4.53452046,0.02939292,97.18697511],[4.53452097,0.02939465,97.18796625],[4.53452148,0.02939638,97.18895946],[4.53452198,0.02939811,97.18995473],[4.53452249,0.02939984,97.1909521],[4.534523,0.02940157,97.19195158],[4.53452351,0.02940331,97.19295318],[4.53452402,0.02940504,97.19395694],[4.53452453,0.02940677,97.19496285],[4.53452504,0.0294085,97.19597095],[4.53452555,0.02941023,97.19698124],[4.53452606,0.02941197,97.19799376],[4.53452657,0.0294137,97.19900851],[4.53452708,0.02941543,97.20002552],[4.53452759,0.02941716,97.2010448],[4.5345281,0.02941889,97.20206637],[4.53452861,0.02942063,97.20309025],[4.53452912,0.02942236,97.20411645],[4.53452964,0.02942409,97.205145],[4.53453015,0.02942583,97.20617592],[4.53453066,0.02942756,97.20720922],[4.53453117,0.02942929,97.20824491],[4.53453168,0.02943102,97.20928303],[4.53453219,0.02943276,97.21032358],[4.5345327,0.02943449,97.21136658],[4.53453322,0.02943622,97.21241206],[4.53453373,0.02943796,97.21346001],[4.53453424,0.02943969,97.21451039],[4.53453475,0.02944142,97.21556318],[4.53453527,0.02944316,97.21661834],[4.53453578,0.02944489,97.21767584],[4.53453629,0.02944662,97.21873566],[4.5345368,0.02944836,97.21979776],[4.53453732,0.02945009,97.2208621],[4.53453783,0.02945182,97.22192866],[4.53453834,0.02945356,97.2229974],[4.53453885,0.02945529,97.22406829],[4.53453937,0.02945703,97.2251413],[4.53453988,0.02945876,97.2262164],[4.53454039,0.0294605,97.22729356],[4.5345409,0.02946223,97.22837274],[4.53454142,0.02946397,97.22945392],[4.53454193,0.0294657,97.23053705],[4.53454244,0.02946743,97.23162211],[4.53454295,0.02946917,97.23270907],[4.53454346,0.0294709,97.2337979],[4.53454397,0.02947263,97.23488856],[4.53454448,0.02947437,97.23598102],[4.534545,0.0294761,97.23707524],[4.53454551,0.02947783,97.23817121],[4.53454602,0.02947957,97.23926888],[4.53454653,0.0294813,97.24036822],[4.53454704,0.02948303,97.24146921],[4.53454755,0.02948476,97.2425718],[4.53454806,0.0294865,97.24367597],[4.53454857,0.02948823,97.24478169],[4.53454908,0.02948996,97.24588892],[4.53454959,0.02949169,97.24699763],[4.5345501,0.02949343,97.24810779],[4.53455061,0.02949516,97.24921937],[4.53455112,0.02949689,97.25033233],[4.53455163,0.02949862,97.25144665],[4.53455213,0.02950036,97.25256229],[4.53455264,0.02950209,97.25367921],[4.53455315,0.02950382,97.2547974],[4.53455366,0.02950555,97.25591681],[4.53455417,0.02950728,97.25703741],[4.53455468,0.02950901,97.25815917],[4.53455519,0.02951074,97.25928206],[4.53455569,0.02951248,97.26040605],[4.5345562,0.02951421,97.26153111],[4.53455671,0.02951594,97.2626572],[4.53455722,0.02951767,97.26378429],[4.53455772,0.0295194,97.26491235],[4.53455823,0.02952113,97.26604134],[4.53455874,0.02952286,97.26717124],[4.53455925,0.02952459,97.26830201],[4.53455975,0.02952632,97.26943363],[4.53456026,0.02952805,97.27056605],[4.53456077,0.02952978,97.27169925],[4.53456127,0.02953151,97.27283319],[4.53456178,0.02953324,97.27396785],[4.53456228,0.02953497,97.27510319],[4.53456279,0.0295367,97.27623917],[4.5345633,0.02953843,97.27737578],[4.5345638,0.02954016,97.27851296],[4.53456431,0.02954189,97.2796507],[4.53456481,0.02954362,97.28078896],[4.53456532,0.02954535,97.28192771],[4.53456582,0.02954708,97.28306692],[4.53456633,0.02954881,97.28420655],[4.53456683,0.02955054,97.28534657],[4.53456734,0.02955227,97.28648696],[4.53456784,0.029554,97.28762767],[4.53456835,0.02955573,97.28876868],[4.53456885,0.02955745,97.28990995],[4.53456935,0.02955918,97.29105146],[4.53456986,0.02956091,97.29219317],[4.53457036,0.02956264,97.29333504],[4.53457087,0.02956437,97.29447706],[4.53457137,0.0295661,97.29561918],[4.53457187,0.02956782,97.29676137],[4.53457237,0.02956955,97.2979036],[4.53457288,0.02957128,97.29904584],[4.53457338,0.02957301,97.30018806],[4.53457388,0.02957474,97.30133022],[4.53457439,0.02957646,97.3024723],[4.53457489,0.02957819,97.30361426],[4.53457539,0.02957992,97.30475606],[4.53457589,0.02958165,97.30589769],[4.53457639,0.02958337,97.3070391],[4.53457689,0.0295851,97.30818027],[4.5345774,0.02958683,97.30932115],[4.5345779,0.02958855,97.31046173],[4.5345784,0.02959028,97.31160196],[4.5345789,0.02959201,97.31274183],[4.5345794,0.02959373,97.31388128],[4.5345799,0.02959546,97.3150203],[4.5345804,0.02959719,97.31615885],[4.5345809,0.02959891,97.3172969],[4.5345814,0.02960064,97.31843442],[4.5345819,0.02960237,97.31957137],[4.5345824,0.02960409,97.32070773]],"type":"LineString"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004700","id":1,"type":"shoulder","predecessorId":1}},{"geometry":{"coordinates":[[4.53441012,0.02895762,96.98299205],[4.53441039,0.02895893,96.98137169],[4.53441075,0.0289607,96.97977178],[4.53441111,0.02896246,96.98041896],[4.53441147,0.02896422,96.9810629],[4.53441182,0.02896599,96.98170398],[4.53441218,0.02896775,96.98234262],[4.53441254,0.02896952,96.9829792],[4.53441289,0.02897128,96.98361412],[4.53441325,0.02897305,96.98424779],[4.53441373,0.02897478,96.98488058],[4.53441421,0.02897652,96.98551292],[4.53441469,0.02897825,96.98614518],[4.53441518,0.02897998,96.98677778],[4.53441566,0.02898172,96.98741111],[4.53441615,0.02898345,96.98804557],[4.53441663,0.02898518,96.98868155],[4.53441712,0.02898691,96.98931946],[4.53441761,0.02898864,96.9899597],[4.5344181,0.02899038,96.99060267],[4.53441859,0.02899211,96.99124877],[4.53441908,0.02899384,96.9918984],[4.53441957,0.02899557,96.99255195],[4.53442006,0.0289973,96.99320984],[4.53442055,0.02899903,96.99387247],[4.53442104,0.02900077,96.99454022],[4.53442153,0.0290025,96.99521352],[4.53442202,0.02900423,96.99589276],[4.53442251,0.02900596,96.99657834],[4.534423,0.02900769,96.99727067],[4.5344235,0.02900942,96.99797016],[4.53442399,0.02901115,96.99867717],[4.53442448,0.02901288,96.99939157],[4.53442497,0.02901461,97.00011267],[4.53442546,0.02901635,97.00083978],[4.53442595,0.02901808,97.00157217],[4.53442644,0.02901981,97.00230917],[4.53442692,0.02902152,97.00305005],[4.53442741,0.02902325,97.00379411],[4.53442789,0.02902498,97.00454065],[4.53442838,0.02902671,97.00528897],[4.53442887,0.02902845,97.00603834],[4.53442935,0.02903018,97.00678807],[4.53442984,0.02903191,97.00753746],[4.53443033,0.02903364,97.00828578],[4.53443081,0.02903538,97.00903233],[4.5344313,0.02903711,97.0097764],[4.53443178,0.02903884,97.01051748],[4.53443227,0.02904057,97.01125584],[4.53443276,0.0290423,97.01199195],[4.53443325,0.02904404,97.01272628],[4.53443374,0.02904577,97.0134593],[4.53443423,0.0290475,97.01419147],[4.53443472,0.02904923,97.01492328],[4.53443521,0.02905096,97.0156552],[4.5344357,0.02905269,97.01638769],[4.53443619,0.02905442,97.01712122],[4.53443668,0.02905615,97.01785628],[4.53443717,0.02905788,97.01859333],[4.53443765,0.02905961,97.01933285],[4.53443813,0.02906135,97.02007532],[4.53443861,0.02906308,97.02082119],[4.53443909,0.02906481,97.02157096],[4.53443956,0.02906655,97.0223251],[4.53444003,0.02906828,97.02308408],[4.5344405,0.02907002,97.02384838],[4.53444096,0.02907176,97.02461847],[4.53444142,0.02907349,97.02539484],[4.53444188,0.02907523,97.0261778],[4.53444234,0.02907697,97.02696702],[4.53444279,0.02907871,97.02776203],[4.53444325,0.02908045,97.02856234],[4.5344437,0.02908219,97.02936746],[4.53444415,0.02908393,97.03017692],[4.5344446,0.02908567,97.03099022],[4.53444505,0.02908741,97.03180686],[4.5344455,0.02908915,97.03262632],[4.53444595,0.02909089,97.03344808],[4.5344464,0.02909263,97.0342716],[4.53444684,0.02909437,97.03509637],[4.53444729,0.02909611,97.03592184],[4.53444774,0.02909785,97.03674751],[4.53444818,0.02909959,97.03757283],[4.53444863,0.02910133,97.03839729],[4.53444908,0.02910307,97.03922034],[4.53444953,0.02910481,97.04004147],[4.53444998,0.02910655,97.04086013],[4.53445043,0.02910829,97.04167597],[4.53445088,0.02911003,97.04248924],[4.53445133,0.02911177,97.04330038],[4.53445178,0.02911351,97.0441098],[4.53445223,0.02911525,97.04491794],[4.53445268,0.02911698,97.04572521],[4.53445313,0.02911872,97.04653206],[4.53445358,0.02912046,97.0473389],[4.53445403,0.0291222,97.04814616],[4.53445448,0.02912394,97.04895427],[4.53445493,0.02912568,97.04976366],[4.53445537,0.02912742,97.05057476],[4.53445582,0.02912916,97.05138799],[4.53445627,0.0291309,97.0522038],[4.53445672,0.02913263,97.0530226],[4.53445717,0.02913437,97.05384483],[4.53445762,0.02913611,97.05467091],[4.53445806,0.02913785,97.05550129],[4.53445851,0.02913959,97.05633627],[4.53445895,0.02914133,97.05717571],[4.5344594,0.02914307,97.05801933],[4.53445985,0.02914481,97.05886685],[4.53446029,0.02914655,97.05971802],[4.53446074,0.02914829,97.06057256],[4.53446119,0.02915003,97.06143019],[4.53446163,0.02915177,97.06229065],[4.53446208,0.02915351,97.06315366],[4.53446253,0.02915524,97.06401895],[4.53446298,0.02915698,97.06488626],[4.53446343,0.02915872,97.06575529],[4.53446388,0.02916046,97.0666258],[4.53446438,0.02916218,97.06749749],[4.53446492,0.02916389,97.06837009],[4.53446546,0.02916561,97.06924334],[4.53446601,0.02916732,97.07011696],[4.53446655,0.02916903,97.07099067],[4.5344671,0.02917074,97.0718642],[4.53446764,0.02917245,97.07273728],[4.53446818,0.02917417,97.0736098],[4.53446872,0.02917588,97.07448177],[4.53446927,0.02917759,97.07535322],[4.53446981,0.0291793,97.0762242],[4.53447035,0.02918101,97.07709473],[4.53447089,0.02918273,97.07796485],[4.53447143,0.02918444,97.07883459],[4.53447198,0.02918615,97.07970398],[4.53447252,0.02918786,97.08057306],[4.53447306,0.02918957,97.08144185],[4.5344736,0.02919128,97.08231039],[4.53447414,0.029193,97.08317872],[4.53447468,0.02919471,97.08404686],[4.53447522,0.02919642,97.08491486],[4.53447575,0.02919813,97.08578273],[4.53447629,0.02919984,97.08665052],[4.53447683,0.02920156,97.08751826],[4.53447737,0.02920327,97.08838598],[4.5344779,0.02920498,97.08925372],[4.53447844,0.02920669,97.0901215],[4.53447898,0.0292084,97.09098936],[4.53447951,0.02921012,97.09185734],[4.53448005,0.02921183,97.09272546],[4.53448059,0.02921354,97.09359376],[4.53448112,0.02921525,97.09446228],[4.53448166,0.02921696,97.09533104],[4.53448219,0.02921868,97.09620009],[4.53448273,0.02922039,97.09706944],[4.53448326,0.0292221,97.09793915],[4.5344838,0.02922381,97.09880923],[4.53448434,0.02922552,97.09967973],[4.53448488,0.02922723,97.10055067],[4.53448542,0.02922894,97.10142209],[4.53448596,0.02923065,97.10229403],[4.5344865,0.02923236,97.10316652],[4.53448704,0.02923407,97.10403961],[4.53448758,0.02923578,97.10491334],[4.53448811,0.02923749,97.10578773],[4.53448864,0.0292392,97.10666278],[4.53448916,0.02924092,97.10753852],[4.53448967,0.02924263,97.10841495],[4.53449018,0.02924435,97.10929209],[4.53449068,0.02924607,97.11016996],[4.53449118,0.02924779,97.11104857],[4.53449167,0.02924952,97.11192793],[4.53449216,0.02925124,97.11280805],[4.53449264,0.02925296,97.11368896],[4.53449313,0.02925468,97.11457066],[4.53449361,0.02925641,97.11545317],[4.53449409,0.02925814,97.1163365],[4.53449457,0.02925986,97.11722067],[4.53449505,0.02926159,97.11810569],[4.53449553,0.02926332,97.11899157],[4.53449602,0.02926504,97.11987834],[4.5344965,0.02926677,97.12076599],[4.53449699,0.02926849,97.12165456],[4.53449748,0.02927022,97.12254405],[4.53449797,0.02927194,97.12343447],[4.53449846,0.02927367,97.12432584],[4.53449896,0.02927539,97.12521818],[4.53449945,0.02927712,97.12611149],[4.53449995,0.02927884,97.1270058],[4.53450044,0.02928057,97.12790112],[4.53450094,0.02928229,97.12879746],[4.53450144,0.02928402,97.12969483],[4.53450194,0.02928574,97.13059325],[4.53450244,0.02928746,97.13149274],[4.53450294,0.02928919,97.1323933],[4.53450344,0.02929091,97.13329496],[4.53450394,0.02929264,97.13419772],[4.53450445,0.02929436,97.13510161],[4.53450495,0.02929608,97.13600663],[4.53450545,0.02929781,97.1369128],[4.53450596,0.02929953,97.13782013],[4.53450646,0.02930126,97.13872865],[4.53450696,0.02930298,97.13963835],[4.53450747,0.02930471,97.14054927],[4.53450797,0.02930643,97.1414614],[4.53450847,0.02930816,97.14237478],[4.53450898,0.02930988,97.1432894],[4.53450948,0.02931161,97.14420528],[4.53450998,0.02931333,97.14512245],[4.53451048,0.02931506,97.14604091],[4.53451098,0.02931679,97.14696068],[4.53451148,0.02931851,97.14788177],[4.53451198,0.02932024,97.14880419],[4.53451248,0.02932197,97.14972797],[4.53451298,0.0293237,97.15065312],[4.53451348,0.02932543,97.15157964],[4.53451398,0.02932715,97.15250756],[4.53451448,0.02932888,97.15343689],[4.53451497,0.02933061,97.15436764],[4.53451547,0.02933234,97.15529983],[4.53451597,0.02933407,97.15623348],[4.53451647,0.0293358,97.15716859],[4.53451696,0.02933753,97.15810518],[4.53451746,0.02933926,97.15904327],[4.53451796,0.02934099,97.15998287],[4.53451846,0.02934272,97.160924],[4.53451896,0.02934445,97.16186666],[4.53451946,0.02934618,97.16281088],[4.53451996,0.02934791,97.16375667],[4.53452046,0.02934964,97.16470404],[4.53452096,0.02935137,97.16565301],[4.53452147,0.0293531,97.16660359],[4.53452197,0.02935483,97.16755579],[4.53452248,0.02935656,97.16850965],[4.53452299,0.02935829,97.16946519],[4.5345235,0.02936002,97.17042245],[4.53452401,0.02936175,97.17138143],[4.53452452,0.02936347,97.17234216],[4.53452503,0.0293652,97.17330466],[4.53452555,0.02936693,97.17426894],[4.53452606,0.02936866,97.17523502],[4.53452658,0.02937039,97.17620292],[4.53452709,0.02937212,97.17717266],[4.53452761,0.02937384,97.17814426],[4.53452812,0.02937557,97.17911772],[4.53452863,0.0293773,97.18009308],[4.53452915,0.02937903,97.18107036],[4.53452966,0.02938076,97.18204955],[4.53453017,0.02938249,97.1830307],[4.53453069,0.02938422,97.18401381],[4.5345312,0.02938595,97.1849989],[4.53453171,0.02938768,97.18598599],[4.53453222,0.02938941,97.18697511],[4.53453273,0.02939114,97.18796625],[4.53453324,0.02939288,97.18895946],[4.53453375,0.02939461,97.18995473],[4.53453426,0.02939634,97.1909521],[4.53453477,0.02939807,97.19195158],[4.53453528,0.02939981,97.19295318],[4.53453579,0.02940154,97.19395694],[4.5345363,0.02940327,97.19496285],[4.53453681,0.029405,97.19597095],[4.53453732,0.02940674,97.19698124],[4.53453783,0.02940847,97.19799376],[4.53453834,0.02941021,97.19900851],[4.53453885,0.02941194,97.20002552],[4.53453935,0.02941367,97.2010448],[4.53453986,0.02941541,97.20206637],[4.53454037,0.02941714,97.20309025],[4.53454088,0.02941888,97.20411645],[4.53454139,0.02942061,97.205145],[4.5345419,0.02942235,97.20617592],[4.53454241,0.02942408,97.20720922],[4.53454292,0.02942582,97.20824491],[4.53454343,0.02942755,97.20928303],[4.53454394,0.02942929,97.21032358],[4.53454445,0.02943102,97.21136658],[4.53454496,0.02943276,97.21241206],[4.53454547,0.0294345,97.21346001],[4.53454598,0.02943623,97.21451039],[4.5345465,0.02943797,97.21556318],[4.53454701,0.0294397,97.21661834],[4.53454752,0.02944144,97.21767584],[4.53454803,0.02944318,97.21873566],[4.53454855,0.02944491,97.21979776],[4.53454906,0.02944665,97.2208621],[4.53454957,0.02944838,97.22192866],[4.53455009,0.02945012,97.2229974],[4.5345506,0.02945186,97.22406829],[4.53455111,0.0294536,97.2251413],[4.53455163,0.02945533,97.2262164],[4.53455214,0.02945707,97.22729356],[4.53455266,0.0294588,97.22837274],[4.53455317,0.02946054,97.22945392],[4.53455369,0.02946228,97.23053705],[4.5345542,0.02946401,97.23162211],[4.53455471,0.02946575,97.23270907],[4.53455523,0.02946748,97.2337979],[4.53455574,0.02946922,97.23488856],[4.53455626,0.02947095,97.23598102],[4.53455677,0.02947268,97.23707524],[4.53455729,0.02947442,97.23817121],[4.5345578,0.02947615,97.23926888],[4.53455832,0.02947789,97.24036822],[4.53455883,0.02947962,97.24146921],[4.53455935,0.02948135,97.2425718],[4.53455987,0.02948308,97.24367597],[4.53456038,0.02948482,97.24478169],[4.5345609,0.02948655,97.24588892],[4.53456141,0.02948828,97.24699763],[4.53456193,0.02949001,97.24810779],[4.53456245,0.02949174,97.24921937],[4.53456296,0.02949348,97.25033233],[4.53456348,0.02949521,97.25144665],[4.534564,0.02949694,97.25256229],[4.53456451,0.02949867,97.25367921],[4.53456503,0.0295004,97.2547974],[4.53456555,0.02950213,97.25591681],[4.53456607,0.02950386,97.25703741],[4.53456658,0.02950559,97.25815917],[4.5345671,0.02950732,97.25928206],[4.53456762,0.02950905,97.26040605],[4.53456814,0.02951077,97.26153111],[4.53456866,0.0295125,97.2626572],[4.53456917,0.02951423,97.26378429],[4.53456969,0.02951596,97.26491235],[4.53457021,0.02951769,97.26604134],[4.53457073,0.02951941,97.26717124],[4.53457125,0.02952114,97.26830201],[4.53457177,0.02952287,97.26943363],[4.53457228,0.0295246,97.27056605],[4.5345728,0.02952632,97.27169925],[4.53457332,0.02952805,97.27283319],[4.53457384,0.02952978,97.27396785],[4.53457436,0.0295315,97.27510319],[4.53457488,0.02953323,97.27623917],[4.5345754,0.02953495,97.27737578],[4.53457591,0.02953668,97.27851296],[4.53457643,0.0295384,97.2796507],[4.53457695,0.02954013,97.28078896],[4.53457747,0.02954185,97.28192771],[4.53457799,0.02954358,97.28306692],[4.53457851,0.0295453,97.28420655],[4.53457903,0.02954703,97.28534657],[4.53457955,0.02954875,97.28648696],[4.53458006,0.02955048,97.28762767],[4.53458058,0.0295522,97.28876868],[4.5345811,0.02955392,97.28990995],[4.53458162,0.02955565,97.29105146],[4.53458214,0.02955737,97.29219317],[4.53458265,0.02955909,97.29333504],[4.53458317,0.02956081,97.29447706],[4.53458369,0.02956254,97.29561918],[4.5345842,0.02956426,97.29676137],[4.53458472,0.02956598,97.2979036],[4.53458523,0.02956771,97.29904584],[4.53458575,0.02956943,97.30018806],[4.53458626,0.02957115,97.30133022],[4.53458677,0.02957287,97.3024723],[4.53458728,0.0295746,97.30361426],[4.53458779,0.02957632,97.30475606],[4.5345883,0.02957804,97.30589769],[4.53458881,0.02957977,97.3070391],[4.53458931,0.02958149,97.30818027],[4.53458982,0.02958321,97.30932115],[4.53459032,0.02958494,97.31046173],[4.53459082,0.02958666,97.31160196],[4.53459132,0.02958839,97.31274183],[4.53459182,0.02959011,97.31388128],[4.53459232,0.02959184,97.3150203],[4.53459281,0.02959356,97.31615885],[4.53459331,0.02959529,97.3172969],[4.5345938,0.02959701,97.31843442],[4.53459429,0.02959874,97.31957137],[4.53459477,0.02960046,97.32070773]],"type":"LineString"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1004700","id":2,"type":"none","predecessorId":2}},{"geometry":{"coordinates":[[4.5343118,0.02898212,96.8423516],[4.53431139,0.02898035,96.84172308],[4.53431139,0.02898033,96.8417152]],"type":"LineString"},"type":"feature","properties":{"successorId":-3,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1004700","id":-3,"type":"none","predecessorId":-3}},{"geometry":{"coordinates":[[4.53435529,0.02897128,96.8423516],[4.53435489,0.02896952,96.84172308],[4.53435488,0.0289695,96.8417152]],"type":"LineString"},"type":"feature","properties":{"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004700","id":-2,"type":"shoulder","predecessorId":-2}},{"geometry":{"coordinates":[[4.53435711,0.02897083,96.84748857],[4.53435668,0.02896907,96.84678783],[4.53435667,0.02896905,96.84677905]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004700","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"entry","predecessorId":-1}},{"geometry":{"coordinates":[[4.53440974,0.02895583,96.99688415],[4.53440744,0.02895643,96.99036498],[4.53440501,0.02895889,96.98299205]],"type":"LineString"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004700","rules":[{"value":"barred"}],"id":1,"type":"restricted","predecessorId":1}},{"geometry":{"coordinates":[[4.53440975,0.02895583,96.99688415],[4.53440976,0.02895585,96.99036498],[4.53441012,0.02895762,96.98299205]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1004700","id":2,"type":"none","predecessorId":2}},{"geometry":{"coordinates":[[4.53431139,0.02898033,96.8417152],[4.53431098,0.02897856,96.8410843],[4.53431057,0.0289768,96.84044904],[4.53431016,0.02897503,96.83980958],[4.53430975,0.02897326,96.83916608],[4.53430933,0.0289715,96.83851869],[4.53430892,0.02896973,96.83786756],[4.5343085,0.02896797,96.83721287],[4.53430809,0.0289662,96.83655477],[4.53430767,0.02896444,96.83589342],[4.53430725,0.02896267,96.83522897],[4.53430683,0.02896091,96.83456158],[4.53430641,0.02895914,96.83389141],[4.53430599,0.02895738,96.83321863],[4.53430557,0.02895561,96.83254338],[4.53430515,0.02895385,96.83186583],[4.53430472,0.02895209,96.83118612],[4.5343043,0.02895032,96.83050443],[4.53430388,0.02894856,96.82982091],[4.53430345,0.0289468,96.82913571],[4.53430303,0.02894503,96.82844899],[4.5343026,0.02894327,96.82776091],[4.53430217,0.02894151,96.82707163],[4.53430175,0.02893974,96.8263813],[4.53430132,0.02893798,96.82569008],[4.5343009,0.02893622,96.82499812],[4.53430047,0.02893445,96.82430559],[4.53430004,0.02893269,96.82361263],[4.53429962,0.02893093,96.82291942],[4.53429919,0.02892916,96.82222609],[4.53429876,0.0289274,96.82153281],[4.53429834,0.02892564,96.82083974],[4.53429791,0.02892387,96.82014702],[4.53429749,0.02892211,96.81945482],[4.53429706,0.02892035,96.8187633],[4.53429664,0.02891858,96.8180726],[4.53429622,0.02891682,96.81738289],[4.53429579,0.02891505,96.81669431],[4.53429537,0.02891329,96.81600703],[4.53429495,0.02891152,96.81532121],[4.53429453,0.02890976,96.81463698],[4.53429411,0.028908,96.81395453],[4.53429369,0.02890623,96.81327399],[4.53429327,0.02890446,96.81259552],[4.53429285,0.0289027,96.81191927],[4.53429244,0.02890093,96.81124527],[4.53429202,0.02889917,96.81057341],[4.53429161,0.0288974,96.80990356],[4.53429119,0.02889563,96.80923561],[4.53429078,0.02889387,96.80856945],[4.53429037,0.0288921,96.80790497],[4.53428996,0.02889033,96.80724204],[4.53428955,0.02888856,96.80658057],[4.53428914,0.0288868,96.80592044],[4.53428873,0.02888503,96.80526155],[4.53428832,0.02888326,96.8046038],[4.53428791,0.02888149,96.80394708],[4.53428751,0.02887972,96.8032913],[4.5342871,0.02887796,96.80263633],[4.53428669,0.02887619,96.8019821],[4.53428629,0.02887442,96.80132847],[4.53428588,0.02887265,96.80067537],[4.53428548,0.02887088,96.80002267],[4.53428507,0.02886911,96.79937028],[4.53428467,0.02886734,96.7987181],[4.53428426,0.02886557,96.79806601],[4.53428386,0.0288638,96.79741393],[4.53428346,0.02886204,96.79676178],[4.53428305,0.02886027,96.79610952],[4.53428265,0.0288585,96.79545711],[4.53428225,0.02885673,96.79480448],[4.53428184,0.02885496,96.79415161],[4.53428144,0.02885319,96.79349843],[4.53428104,0.02885142,96.79284489],[4.53428064,0.02884965,96.79219096],[4.53428023,0.02884788,96.79153658],[4.53427983,0.02884611,96.79088171],[4.53427943,0.02884434,96.79022629],[4.53427903,0.02884257,96.78957027],[4.53427863,0.0288408,96.7889136],[4.53427822,0.02883903,96.78825611],[4.53427782,0.02883726,96.78759765],[4.53427742,0.02883549,96.78693805],[4.53427702,0.02883372,96.78627713],[4.53427661,0.02883195,96.78561474],[4.53427621,0.02883018,96.78495069],[4.53427581,0.02882842,96.78428483],[4.53427541,0.02882665,96.78361699],[4.534275,0.02882488,96.782947],[4.5342746,0.02882311,96.78227474],[4.53427419,0.02882135,96.78160032],[4.53427379,0.02881958,96.78092391],[4.53427338,0.02881781,96.78024566],[4.53427298,0.02881604,96.77956575],[4.53427257,0.02881428,96.77888432],[4.53427216,0.02881251,96.77820154],[4.53427176,0.02881074,96.77751758],[4.53427135,0.02880897,96.7768326],[4.53427095,0.02880721,96.77614675],[4.53427054,0.02880544,96.7754602],[4.53427013,0.02880368,96.77477311],[4.53426973,0.02880191,96.77408565],[4.53426932,0.02880014,96.77339798],[4.53426891,0.02879838,96.77271025],[4.53426851,0.02879661,96.77202263],[4.5342681,0.02879485,96.77133529],[4.5342677,0.02879308,96.77064838],[4.5342673,0.02879131,96.76996206],[4.53426689,0.02878955,96.76927651],[4.53426649,0.02878778,96.76859188],[4.53426609,0.02878602,96.76790833],[4.53426569,0.02878425,96.76722603],[4.53426529,0.02878249,96.76654517],[4.53426489,0.02878072,96.76586601],[4.53426449,0.02877895,96.76518878],[4.53426409,0.02877719,96.76451372],[4.53426369,0.02877542,96.76384104],[4.5342633,0.02877366,96.76317096],[4.5342629,0.02877189,96.76250371],[4.53426251,0.02877012,96.76183952],[4.53426212,0.02876836,96.7611786],[4.53426173,0.02876659,96.76052119],[4.53426134,0.02876482,96.75986743],[4.53426095,0.02876306,96.75921715],[4.53426057,0.02876129,96.75857012],[4.53426018,0.02875952,96.75792609],[4.5342598,0.02875776,96.75728482],[4.53425942,0.02875599,96.75664607],[4.53425904,0.02875422,96.7560096],[4.53425866,0.02875245,96.75537516],[4.53425828,0.02875069,96.75474251],[4.5342579,0.02874892,96.75411141],[4.53425752,0.02874715,96.75348163],[4.53425715,0.02874538,96.7528529],[4.53425677,0.02874362,96.75222501],[4.53425639,0.02874185,96.75159769],[4.53425602,0.02874008,96.75097072],[4.53425564,0.02873831,96.75034384],[4.53425527,0.02873655,96.74971682],[4.53425489,0.02873478,96.74908941],[4.53425452,0.02873301,96.74846136],[4.53425414,0.02873125,96.74783244],[4.53425377,0.02872948,96.7472024],[4.53425339,0.02872771,96.746571],[4.53425302,0.02872595,96.74593799],[4.53425264,0.02872418,96.74530313],[4.53425226,0.02872242,96.74466617],[4.53425188,0.02872065,96.74402688],[4.53425151,0.02871889,96.743385],[4.53425113,0.02871712,96.74274021],[4.53425075,0.02871536,96.74209213],[4.53425036,0.0287136,96.74144036],[4.53424998,0.02871183,96.74078451],[4.5342496,0.02871007,96.74012419],[4.53424921,0.02870831,96.739459],[4.53424882,0.02870655,96.73878857],[4.53424844,0.02870479,96.7381126],[4.53424804,0.02870303,96.73743083],[4.53424765,0.02870127,96.73674301],[4.53424726,0.02869951,96.73604887],[4.53424686,0.02869775,96.73534825],[4.53424646,0.02869599,96.73464141],[4.53424606,0.02869423,96.7339287],[4.53424566,0.02869248,96.73321049],[4.53424525,0.02869072,96.73248713],[4.53424484,0.02868897,96.73175898],[4.53424444,0.02868721,96.7310264],[4.53424403,0.02868546,96.73028974],[4.53424362,0.0286837,96.72954937],[4.53424321,0.02868195,96.72880565],[4.53424279,0.02868019,96.72805892],[4.53424238,0.02867844,96.72730956],[4.53424197,0.02867669,96.72655793],[4.53424155,0.02867494,96.72580438],[4.53424114,0.02867318,96.72504927],[4.53424072,0.02867143,96.72429298],[4.53424031,0.02866968,96.72353585],[4.53423989,0.02866793,96.72277828],[4.53423948,0.02866618,96.72202069],[4.53423907,0.02866443,96.72126348],[4.53423865,0.02866268,96.72050709],[4.53423824,0.02866093,96.71975192],[4.53423782,0.02865917,96.7189984],[4.53423741,0.02865742,96.71824687],[4.534237,0.02865567,96.71749736],[4.53423659,0.02865392,96.71674986],[4.53423618,0.02865217,96.71600434],[4.53423577,0.02865041,96.71526077],[4.53423536,0.02864866,96.71451912],[4.53423496,0.02864691,96.71377936],[4.53423455,0.02864516,96.71304147],[4.53423414,0.02864341,96.71230541],[4.53423374,0.02864166,96.71157117],[4.53423334,0.02863991,96.71083871],[4.53423293,0.02863816,96.710108],[4.53423253,0.02863641,96.70937902],[4.53423213,0.02863466,96.7086517],[4.53423173,0.02863291,96.70792595],[4.53423133,0.02863116,96.70720166],[4.53423093,0.02862941,96.70647873],[4.53423053,0.02862766,96.70575704],[4.53423013,0.02862592,96.70503649],[4.53422973,0.02862417,96.70431697],[4.53422933,0.02862242,96.70359838],[4.53422893,0.02862067,96.70288061],[4.53422853,0.02861893,96.70216355],[4.53422813,0.02861718,96.7014471],[4.53422774,0.02861544,96.70073115],[4.53422734,0.02861369,96.70001563],[4.53422694,0.02861194,96.69930048],[4.53422655,0.0286102,96.69858562],[4.53422615,0.02860846,96.69787098],[4.53422575,0.02860671,96.69715651],[4.53422535,0.02860497,96.69644212],[4.53422496,0.02860322,96.69572784],[4.53422456,0.02860148,96.69501375],[4.53422416,0.02859974,96.69429993],[4.53422376,0.028598,96.6935865],[4.53422337,0.02859626,96.69287352],[4.53422297,0.02859451,96.6921611],[4.53422257,0.02859277,96.69144932],[4.53422218,0.02859103,96.69073828],[4.53422178,0.02858929,96.69002806],[4.53422138,0.02858755,96.68931877],[4.53422099,0.02858581,96.68861049],[4.53422059,0.02858407,96.68790332],[4.5342202,0.02858234,96.68719734],[4.5342198,0.0285806,96.68649266],[4.5342194,0.02857886,96.68578935],[4.53421901,0.02857712,96.68508753],[4.53421861,0.02857538,96.68438727],[4.53421822,0.02857365,96.68368868],[4.53421783,0.02857191,96.68299185],[4.53421743,0.02857017,96.68229688],[4.53421704,0.02856844,96.68160385],[4.53421665,0.0285667,96.68091274],[4.53421626,0.02856496,96.68022309],[4.53421586,0.02856323,96.67953429],[4.53421547,0.02856149,96.67884576],[4.53421508,0.02855976,96.6781569],[4.53421468,0.02855803,96.67746713],[4.53421429,0.02855629,96.67677584],[4.53421389,0.02855456,96.67608245],[4.5342135,0.02855283,96.67538641],[4.5342131,0.0285511,96.67468717],[4.5342127,0.02854937,96.67398415],[4.5342123,0.02854764,96.67327682],[4.53421189,0.02854591,96.6725646],[4.53421149,0.02854418,96.67184693],[4.53421108,0.02854245,96.67112325],[4.53421067,0.02854073,96.67039303],[4.53421026,0.028539,96.66965624],[4.53420984,0.02853728,96.66891341],[4.53420942,0.02853555,96.66816508],[4.534209,0.02853383,96.66741178],[4.53420858,0.02853211,96.66665406],[4.53420816,0.02853039,96.66589247],[4.53420773,0.02852867,96.66512754],[4.53420731,0.02852695,96.66435983],[4.53420688,0.02852523,96.66358988],[4.53420645,0.02852352,96.66281824],[4.53420602,0.0285218,96.66204546],[4.53420559,0.02852008,96.66127209],[4.53420516,0.02851837,96.66049869],[4.53420473,0.02851665,96.65972581],[4.5342043,0.02851493,96.658954],[4.53420387,0.02851322,96.65818382],[4.53420344,0.02851151,96.65741584],[4.53420301,0.02850979,96.65665061],[4.53420258,0.02850808,96.65588869],[4.53420215,0.02850639,96.65513064],[4.53420173,0.02850468,96.65437665],[4.5342013,0.02850296,96.65362663],[4.53420087,0.02850124,96.65288043],[4.53420044,0.02849952,96.65213781],[4.53420002,0.0284978,96.65139854],[4.53419959,0.02849608,96.65066235],[4.53419916,0.02849436,96.64992899],[4.53419874,0.02849263,96.6491982],[4.53419831,0.02849091,96.64846973],[4.53419789,0.02848918,96.64774333],[4.53419746,0.02848745,96.64701872],[4.53419703,0.02848572,96.64629565],[4.53419661,0.02848398,96.64557387],[4.53419618,0.02848225,96.64485312],[4.53419575,0.02848052,96.64413313],[4.53419533,0.02847878,96.64341364],[4.5341949,0.02847704,96.64269439],[4.53419447,0.0284753,96.64197512],[4.53419404,0.02847356,96.64125557],[4.53419362,0.02847182,96.64053546],[4.53419319,0.02847007,96.63981455],[4.53419276,0.02846833,96.63909255],[4.53419233,0.02846658,96.63836921],[4.5341919,0.02846483,96.63764425],[4.53419147,0.02846308,96.63691741],[4.53419103,0.02846133,96.63618845],[4.5341906,0.02845958,96.63545717],[4.53419017,0.02845783,96.63472335],[4.53418973,0.02845608,96.63398679],[4.5341893,0.02845432,96.63324738],[4.53418886,0.02845257,96.63250501],[4.53418842,0.02845081,96.63175952],[4.53418798,0.02844905,96.63101072],[4.53418754,0.02844729,96.63025846],[4.5341871,0.02844553,96.62950256],[4.53418666,0.02844376,96.62874286],[4.53418622,0.028442,96.62797917],[4.53418578,0.02844024,96.62721133],[4.53418534,0.02843847,96.62643917],[4.53418489,0.0284367,96.62566251],[4.53418444,0.02843493,96.62488118],[4.534184,0.02843316,96.624095],[4.53418355,0.02843139,96.62330381],[4.5341831,0.02842962,96.62250744],[4.53418265,0.02842785,96.6217058],[4.5341822,0.02842607,96.62089882],[4.53418175,0.0284243,96.62008643],[4.5341813,0.02842252,96.61926854],[4.53418084,0.02842074,96.61844509],[4.53418039,0.02841896,96.617616],[4.53417993,0.02841718,96.61678118],[4.53417948,0.0284154,96.61594058],[4.53417902,0.02841362,96.61509409],[4.53417856,0.02841184,96.61424166],[4.5341781,0.02841005,96.61338321],[4.53417764,0.02840826,96.6125191],[4.53417718,0.02840648,96.61165029],[4.53417672,0.02840469,96.61077785],[4.53417626,0.0284029,96.6099028],[4.5341758,0.0284011,96.60902619],[4.53417535,0.02839931,96.60814907],[4.53417489,0.02839751,96.60727227],[4.53417444,0.02839572,96.60639582],[4.53417399,0.02839392,96.60551959],[4.53417354,0.02839213,96.60464344],[4.53417309,0.02839035,96.60376697],[4.53417265,0.02838857,96.60288953],[4.53417221,0.02838679,96.60201045],[4.53417177,0.02838503,96.60112908],[4.53417133,0.02838326,96.60024475],[4.53417089,0.02838151,96.5993568],[4.53417045,0.02837975,96.59846454],[4.53417001,0.02837801,96.59756732],[4.53416958,0.02837627,96.59666444],[4.53416914,0.02837454,96.59575524],[4.5341687,0.02837281,96.59483903],[4.53416826,0.02837109,96.59391512],[4.53416782,0.02836937,96.59298324],[4.53416738,0.02836766,96.59204456],[4.53416693,0.02836596,96.59110052],[4.53416649,0.02836426,96.59015261],[4.53416605,0.02836257,96.58920232],[4.5341656,0.02836089,96.58825111],[4.53416516,0.02835921,96.5873005],[4.53416472,0.02835754,96.58635199],[4.53416428,0.02835587,96.58540755],[4.53416384,0.02835421,96.58446955],[4.5341634,0.02835255,96.58353925],[4.53416297,0.0283509,96.58261615],[4.53416253,0.02834926,96.58169959],[4.5341621,0.02834762,96.58078892],[4.53416167,0.02834598,96.57988349],[4.53416124,0.02834436,96.57898216],[4.5341608,0.02834274,96.57808224],[4.53416037,0.02834113,96.57718125],[4.53415994,0.02833952,96.57628047],[4.53415951,0.02833793,96.57538257],[4.53415908,0.02833636,96.57449026],[4.53415865,0.0283348,96.57360623],[4.53415823,0.02833325,96.57273321],[4.53415781,0.02833172,96.57187393],[4.5341574,0.0283302,96.57103113],[4.53415699,0.0283287,96.57020756],[4.53415658,0.02832721,96.569406],[4.53415619,0.02832573,96.56862923],[4.5341558,0.02832428,96.56789043]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1004700","id":-3,"type":"none","predecessorId":-3}},{"geometry":{"coordinates":[[4.53435488,0.0289695,96.8417152],[4.53435448,0.02896774,96.8410843],[4.53435407,0.02896598,96.84044904],[4.53435366,0.02896422,96.83980958],[4.53435325,0.02896246,96.83916608],[4.53435284,0.0289607,96.83851869],[4.53435243,0.02895894,96.83786756],[4.53435201,0.02895718,96.83721287],[4.5343516,0.02895542,96.83655477],[4.53435118,0.02895366,96.83589342],[4.53435076,0.0289519,96.83522897],[4.53435035,0.02895014,96.83456158],[4.53434993,0.02894839,96.83389141],[4.53434951,0.02894663,96.83321863],[4.53434909,0.02894487,96.83254338],[4.53434867,0.02894311,96.83186583],[4.53434825,0.02894136,96.83118612],[4.53434782,0.0289396,96.83050443],[4.5343474,0.02893784,96.82982091],[4.53434698,0.02893609,96.82913571],[4.53434655,0.02893433,96.82844899],[4.53434613,0.02893257,96.82776091],[4.53434571,0.02893082,96.82707163],[4.53434528,0.02892906,96.8263813],[4.53434486,0.0289273,96.82569008],[4.53434443,0.02892555,96.82499812],[4.53434401,0.02892379,96.82430559],[4.53434358,0.02892203,96.82361263],[4.53434316,0.02892028,96.82291942],[4.53434273,0.02891852,96.82222609],[4.53434231,0.02891676,96.82153281],[4.53434189,0.02891501,96.82083974],[4.53434146,0.02891325,96.82014702],[4.53434104,0.02891149,96.81945482],[4.53434062,0.02890974,96.8187633],[4.53434019,0.02890798,96.8180726],[4.53433977,0.02890622,96.81738289],[4.53433935,0.02890446,96.81669431],[4.53433893,0.02890271,96.81600703],[4.53433851,0.02890095,96.81532121],[4.53433809,0.02889919,96.81463698],[4.53433767,0.02889743,96.81395453],[4.53433725,0.02889567,96.81327399],[4.53433684,0.02889392,96.81259552],[4.53433642,0.02889216,96.81191927],[4.53433601,0.0288904,96.81124527],[4.53433559,0.02888864,96.81057341],[4.53433518,0.02888688,96.80990356],[4.53433477,0.02888512,96.80923561],[4.53433436,0.02888336,96.80856945],[4.53433395,0.0288816,96.80790497],[4.53433354,0.02887984,96.80724204],[4.53433313,0.02887808,96.80658057],[4.53433272,0.02887632,96.80592044],[4.53433231,0.02887456,96.80526155],[4.53433191,0.0288728,96.8046038],[4.5343315,0.02887104,96.80394708],[4.5343311,0.02886927,96.8032913],[4.53433069,0.02886751,96.80263633],[4.53433029,0.02886575,96.8019821],[4.53432988,0.02886399,96.80132847],[4.53432948,0.02886223,96.80067537],[4.53432908,0.02886047,96.80002267],[4.53432867,0.0288587,96.79937028],[4.53432827,0.02885694,96.7987181],[4.53432787,0.02885518,96.79806601],[4.53432747,0.02885342,96.79741393],[4.53432706,0.02885166,96.79676178],[4.53432666,0.02884989,96.79610952],[4.53432626,0.02884813,96.79545711],[4.53432586,0.02884637,96.79480448],[4.53432546,0.02884461,96.79415161],[4.53432506,0.02884284,96.79349843],[4.53432466,0.02884108,96.79284489],[4.53432426,0.02883932,96.79219096],[4.53432386,0.02883756,96.79153658],[4.53432346,0.02883579,96.79088171],[4.53432306,0.02883403,96.79022629],[4.53432265,0.02883227,96.78957027],[4.53432225,0.0288305,96.7889136],[4.53432185,0.02882874,96.78825611],[4.53432145,0.02882698,96.78759765],[4.53432105,0.02882522,96.78693805],[4.53432065,0.02882345,96.78627713],[4.53432025,0.02882169,96.78561474],[4.53431985,0.02881993,96.78495069],[4.53431945,0.02881818,96.78428483],[4.53431905,0.02881642,96.78361699],[4.53431865,0.02881465,96.782947],[4.53431824,0.02881289,96.78227474],[4.53431784,0.02881113,96.78160032],[4.53431744,0.02880937,96.78092391],[4.53431703,0.02880761,96.78024566],[4.53431663,0.02880585,96.77956575],[4.53431622,0.02880409,96.77888432],[4.53431582,0.02880233,96.77820154],[4.53431542,0.02880057,96.77751758],[4.53431501,0.0287988,96.7768326],[4.5343146,0.02879704,96.77614675],[4.5343142,0.02879528,96.7754602],[4.53431379,0.02879352,96.77477311],[4.53431339,0.02879176,96.77408565],[4.53431299,0.02879,96.77339798],[4.53431258,0.02878824,96.77271025],[4.53431218,0.02878648,96.77202263],[4.53431177,0.02878472,96.77133529],[4.53431137,0.02878296,96.77064838],[4.53431097,0.0287812,96.76996206],[4.53431057,0.02877944,96.76927651],[4.53431016,0.02877768,96.76859188],[4.53430976,0.02877592,96.76790833],[4.53430936,0.02877416,96.76722603],[4.53430896,0.0287724,96.76654517],[4.53430856,0.02877063,96.76586601],[4.53430817,0.02876887,96.76518878],[4.53430777,0.02876711,96.76451372],[4.53430737,0.02876535,96.76384104],[4.53430698,0.02876359,96.76317096],[4.53430659,0.02876183,96.76250371],[4.53430619,0.02876006,96.76183952],[4.5343058,0.0287583,96.7611786],[4.53430541,0.02875654,96.76052119],[4.53430503,0.02875477,96.75986743],[4.53430464,0.02875301,96.75921715],[4.53430426,0.02875125,96.75857012],[4.53430387,0.02874948,96.75792609],[4.53430349,0.02874772,96.75728482],[4.53430311,0.02874595,96.75664607],[4.53430273,0.02874419,96.7560096],[4.53430235,0.02874242,96.75537516],[4.53430197,0.02874066,96.75474251],[4.53430159,0.0287389,96.75411141],[4.53430122,0.02873713,96.75348163],[4.53430084,0.02873536,96.7528529],[4.53430047,0.0287336,96.75222501],[4.53430009,0.02873183,96.75159769],[4.53429972,0.02873007,96.75097072],[4.53429934,0.0287283,96.75034384],[4.53429897,0.02872654,96.74971682],[4.53429859,0.02872477,96.74908941],[4.53429822,0.02872301,96.74846136],[4.53429784,0.02872124,96.74783244],[4.53429747,0.02871948,96.7472024],[4.53429709,0.02871771,96.746571],[4.53429672,0.02871595,96.74593799],[4.53429634,0.02871418,96.74530313],[4.53429596,0.02871242,96.74466617],[4.53429558,0.02871066,96.74402688],[4.53429521,0.02870889,96.743385],[4.53429483,0.02870713,96.74274021],[4.53429445,0.02870537,96.74209213],[4.53429407,0.0287036,96.74144036],[4.53429368,0.02870184,96.74078451],[4.5342933,0.02870008,96.74012419],[4.53429291,0.02869832,96.739459],[4.53429253,0.02869656,96.73878857],[4.53429214,0.02869479,96.7381126],[4.53429175,0.02869303,96.73743083],[4.53429135,0.02869127,96.73674301],[4.53429096,0.02868951,96.73604887],[4.53429056,0.02868776,96.73534825],[4.53429016,0.028686,96.73464141],[4.53428976,0.02868424,96.7339287],[4.53428936,0.02868248,96.73321049],[4.53428895,0.02868073,96.73248713],[4.53428855,0.02867897,96.73175898],[4.53428814,0.02867721,96.7310264],[4.53428773,0.02867546,96.73028974],[4.53428732,0.0286737,96.72954937],[4.53428691,0.02867195,96.72880565],[4.53428649,0.02867019,96.72805892],[4.53428608,0.02866844,96.72730956],[4.53428567,0.02866668,96.72655793],[4.53428525,0.02866493,96.72580438],[4.53428484,0.02866318,96.72504927],[4.53428442,0.02866142,96.72429298],[4.53428401,0.02865967,96.72353585],[4.53428359,0.02865792,96.72277828],[4.53428318,0.02865616,96.72202069],[4.53428276,0.02865441,96.72126348],[4.53428235,0.02865265,96.72050709],[4.53428193,0.0286509,96.71975192],[4.53428152,0.02864915,96.7189984],[4.53428111,0.02864739,96.71824687],[4.5342807,0.02864564,96.71749736],[4.53428028,0.02864388,96.71674986],[4.53427987,0.02864213,96.71600434],[4.53427946,0.02864037,96.71526077],[4.53427905,0.02863862,96.71451912],[4.53427865,0.02863686,96.71377936],[4.53427824,0.02863511,96.71304147],[4.53427783,0.02863335,96.71230541],[4.53427743,0.0286316,96.71157117],[4.53427702,0.02862984,96.71083871],[4.53427662,0.02862809,96.710108],[4.53427621,0.02862633,96.70937902],[4.53427581,0.02862458,96.7086517],[4.53427541,0.02862282,96.70792595],[4.53427501,0.02862107,96.70720166],[4.5342746,0.02861931,96.70647873],[4.5342742,0.02861756,96.70575704],[4.5342738,0.0286158,96.70503649],[4.5342734,0.02861405,96.70431697],[4.534273,0.02861229,96.70359838],[4.5342726,0.02861054,96.70288061],[4.5342722,0.02860879,96.70216355],[4.5342718,0.02860703,96.7014471],[4.5342714,0.02860528,96.70073115],[4.534271,0.02860352,96.70001563],[4.5342706,0.02860177,96.69930048],[4.53427021,0.02860002,96.69858562],[4.53426981,0.02859826,96.69787098],[4.53426941,0.02859651,96.69715651],[4.53426901,0.02859476,96.69644212],[4.53426861,0.028593,96.69572784],[4.53426821,0.02859125,96.69501375],[4.53426781,0.0285895,96.69429993],[4.53426741,0.02858774,96.6935865],[4.53426701,0.02858599,96.69287352],[4.53426661,0.02858424,96.6921611],[4.53426621,0.02858249,96.69144932],[4.53426581,0.02858073,96.69073828],[4.53426541,0.02857898,96.69002806],[4.53426501,0.02857723,96.68931877],[4.53426461,0.02857548,96.68861049],[4.53426421,0.02857373,96.68790332],[4.53426382,0.02857197,96.68719734],[4.53426342,0.02857022,96.68649266],[4.53426302,0.02856847,96.68578935],[4.53426262,0.02856672,96.68508753],[4.53426222,0.02856497,96.68438727],[4.53426182,0.02856322,96.68368868],[4.53426143,0.02856146,96.68299185],[4.53426103,0.02855971,96.68229688],[4.53426063,0.02855796,96.68160385],[4.53426024,0.02855621,96.68091274],[4.53425984,0.02855446,96.68022309],[4.53425945,0.02855271,96.67953429],[4.53425905,0.02855096,96.67884576],[4.53425865,0.02854921,96.6781569],[4.53425826,0.02854746,96.67746713],[4.53425786,0.02854571,96.67677584],[4.53425746,0.02854396,96.67608245],[4.53425706,0.02854221,96.67538641],[4.53425665,0.02854046,96.67468717],[4.53425625,0.02853871,96.67398415],[4.53425585,0.02853696,96.67327682],[4.53425544,0.02853522,96.6725646],[4.53425503,0.02853347,96.67184693],[4.53425461,0.02853172,96.67112325],[4.5342542,0.02852998,96.67039303],[4.53425378,0.02852823,96.66965624],[4.53425336,0.02852649,96.66891341],[4.53425294,0.02852475,96.66816508],[4.53425251,0.02852301,96.66741178],[4.53425209,0.02852126,96.66665406],[4.53425166,0.02851952,96.66589247],[4.53425123,0.02851778,96.66512754],[4.5342508,0.02851604,96.66435983],[4.53425036,0.0285143,96.66358988],[4.53424993,0.02851256,96.66281824],[4.53424949,0.02851083,96.66204546],[4.53424906,0.02850909,96.66127209],[4.53424862,0.02850735,96.66049869],[4.53424819,0.02850561,96.65972581],[4.53424775,0.02850387,96.658954],[4.53424731,0.02850213,96.65818382],[4.53424688,0.0285004,96.65741584],[4.53424644,0.02849866,96.65665061],[4.53424601,0.02849692,96.65588869],[4.53424558,0.02849521,96.65513064],[4.53424514,0.02849347,96.65437665],[4.53424471,0.02849174,96.65362663],[4.53424428,0.02849,96.65288043],[4.53424384,0.02848826,96.65213781],[4.53424341,0.02848652,96.65139854],[4.53424298,0.02848478,96.65066235],[4.53424255,0.02848304,96.64992899],[4.53424212,0.02848129,96.6491982],[4.53424169,0.02847955,96.64846973],[4.53424126,0.02847781,96.64774333],[4.53424083,0.02847606,96.64701872],[4.5342404,0.02847432,96.64629565],[4.53423997,0.02847257,96.64557387],[4.53423954,0.02847083,96.64485312],[4.53423911,0.02846908,96.64413313],[4.53423868,0.02846734,96.64341364],[4.53423825,0.02846559,96.64269439],[4.53423783,0.02846384,96.64197512],[4.5342374,0.02846209,96.64125557],[4.53423697,0.02846035,96.64053546],[4.53423654,0.0284586,96.63981455],[4.5342361,0.02845685,96.63909255],[4.53423567,0.0284551,96.63836921],[4.53423524,0.02845335,96.63764425],[4.53423481,0.0284516,96.63691741],[4.53423438,0.02844985,96.63618845],[4.53423395,0.0284481,96.63545717],[4.53423351,0.02844635,96.63472335],[4.53423308,0.02844459,96.63398679],[4.53423264,0.02844284,96.63324738],[4.53423221,0.02844109,96.63250501],[4.53423177,0.02843934,96.63175952],[4.53423133,0.02843758,96.63101072],[4.5342309,0.02843583,96.63025846],[4.53423046,0.02843408,96.62950256],[4.53423002,0.02843232,96.62874286],[4.53422958,0.02843057,96.62797917],[4.53422914,0.02842882,96.62721133],[4.5342287,0.02842706,96.62643917],[4.53422826,0.02842531,96.62566251],[4.53422782,0.02842355,96.62488118],[4.53422737,0.02842179,96.624095],[4.53422693,0.02842004,96.62330381],[4.53422649,0.02841828,96.62250744],[4.53422604,0.02841653,96.6217058],[4.53422559,0.02841477,96.62089882],[4.53422515,0.02841301,96.62008643],[4.5342247,0.02841126,96.61926854],[4.53422425,0.0284095,96.61844509],[4.5342238,0.02840774,96.617616],[4.53422335,0.02840598,96.61678118],[4.5342229,0.02840422,96.61594058],[4.53422245,0.02840247,96.61509409],[4.534222,0.02840071,96.61424166],[4.53422155,0.02839895,96.61338321],[4.53422109,0.02839719,96.6125191],[4.53422064,0.02839543,96.61165029],[4.53422019,0.02839367,96.61077785],[4.53421974,0.0283919,96.6099028],[4.53421929,0.02839014,96.60902619],[4.53421884,0.02838838,96.60814907],[4.53421839,0.02838661,96.60727227],[4.53421794,0.02838485,96.60639582],[4.5342175,0.02838309,96.60551959],[4.53421706,0.02838133,96.60464344],[4.53421662,0.02837957,96.60376697],[4.53421618,0.02837781,96.60288953],[4.53421574,0.02837605,96.60201045],[4.5342153,0.02837429,96.60112908],[4.53421487,0.02837254,96.60024475],[4.53421443,0.02837078,96.5993568],[4.53421399,0.02836903,96.59846454],[4.53421356,0.02836729,96.59756732],[4.53421312,0.02836554,96.59666444],[4.53421268,0.0283638,96.59575524],[4.53421223,0.02836206,96.59483903],[4.53421179,0.02836032,96.59391512],[4.53421134,0.02835858,96.59298324],[4.5342109,0.02835685,96.59204456],[4.53421045,0.02835512,96.59110052],[4.53420999,0.02835339,96.59015261],[4.53420954,0.02835166,96.58920232],[4.53420909,0.02834994,96.58825111],[4.53420863,0.02834822,96.5873005],[4.53420818,0.0283465,96.58635199],[4.53420773,0.02834478,96.58540755],[4.53420727,0.02834306,96.58446955],[4.53420682,0.02834135,96.58353925],[4.53420637,0.02833963,96.58261615],[4.53420592,0.02833792,96.58169959],[4.53420547,0.02833621,96.58078892],[4.53420502,0.02833451,96.57988349],[4.53420457,0.0283328,96.57898216],[4.53420412,0.0283311,96.57808224],[4.53420366,0.02832941,96.57718125],[4.5342032,0.02832771,96.57628047],[4.53420275,0.02832603,96.57538257],[4.53420229,0.02832434,96.57449026],[4.53420183,0.02832266,96.57360623],[4.53420137,0.02832099,96.57273321],[4.53420091,0.02831932,96.57187393],[4.53420046,0.02831765,96.57103113],[4.5342,0.02831599,96.57020756],[4.53419955,0.02831434,96.569406],[4.5341991,0.02831268,96.56862923],[4.53419866,0.02831106,96.56789043]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004700","id":-2,"type":"shoulder","predecessorId":-2}},{"geometry":{"coordinates":[[4.53435667,0.02896905,96.84677905],[4.53435624,0.0289673,96.84607908],[4.53435581,0.02896554,96.84537987],[4.53435538,0.02896379,96.84468142],[4.53435495,0.02896203,96.8439837],[4.53435453,0.02896028,96.84328673],[4.5343541,0.02895852,96.84259049],[4.53435367,0.02895677,96.84189498],[4.53435324,0.02895501,96.8412002],[4.53435281,0.02895326,96.84050614],[4.53435239,0.0289515,96.8398128],[4.53435196,0.02894974,96.83912018],[4.53435154,0.02894799,96.83842827],[4.53435111,0.02894623,96.83773707],[4.53435068,0.02894448,96.83704658],[4.53435026,0.02894272,96.83635678],[4.53434983,0.02894096,96.83566769],[4.53434941,0.02893921,96.83497929],[4.53434899,0.02893745,96.83429158],[4.53434856,0.0289357,96.83360456],[4.53434814,0.02893394,96.83291822],[4.53434772,0.02893218,96.83223256],[4.53434729,0.02893043,96.83154758],[4.53434687,0.02892867,96.83086327],[4.53434645,0.02892691,96.83017963],[4.53434603,0.02892515,96.82949665],[4.53434561,0.0289234,96.82881434],[4.53434519,0.02892164,96.82813268],[4.53434477,0.02891988,96.82745168],[4.53434435,0.02891813,96.82677133],[4.53434393,0.02891637,96.82609162],[4.53434351,0.02891461,96.82541256],[4.53434309,0.02891285,96.82473414],[4.53434268,0.02891109,96.82405636],[4.53434226,0.02890934,96.8233792],[4.53434184,0.02890758,96.82270268],[4.53434142,0.02890582,96.82202678],[4.53434101,0.02890406,96.82135151],[4.53434059,0.0289023,96.82067685],[4.53434018,0.02890054,96.82000281],[4.53433976,0.02889879,96.81932938],[4.53433935,0.02889703,96.81865655],[4.53433893,0.02889527,96.81798433],[4.53433852,0.02889351,96.81731271],[4.5343381,0.02889175,96.81664169],[4.53433769,0.02888999,96.81597126],[4.53433728,0.02888823,96.81530142],[4.53433687,0.02888647,96.81463217],[4.53433645,0.02888471,96.8139635],[4.53433604,0.02888295,96.81329541],[4.53433563,0.02888119,96.81262789],[4.53433522,0.02887943,96.81196095],[4.53433481,0.02887767,96.81129458],[4.5343344,0.02887591,96.81062879],[4.53433399,0.02887415,96.80996359],[4.53433358,0.02887239,96.80929898],[4.53433317,0.02887063,96.80863498],[4.53433277,0.02886887,96.80797159],[4.53433236,0.02886711,96.80730881],[4.53433195,0.02886535,96.80664666],[4.53433154,0.02886359,96.80598514],[4.53433114,0.02886183,96.80532425],[4.53433073,0.02886007,96.80466401],[4.53433033,0.02885831,96.80400443],[4.53432992,0.02885655,96.8033455],[4.53432952,0.02885479,96.80268724],[4.53432911,0.02885303,96.80202966],[4.53432871,0.02885126,96.8013728],[4.53432831,0.0288495,96.80071674],[4.5343279,0.02884774,96.80006152],[4.5343275,0.02884598,96.79940722],[4.5343271,0.02884422,96.7987539],[4.5343267,0.02884245,96.79810162],[4.5343263,0.02884069,96.79745044],[4.5343259,0.02883893,96.79680042],[4.5343255,0.02883717,96.79615163],[4.53432511,0.0288354,96.79550413],[4.53432471,0.02883364,96.79485799],[4.53432431,0.02883188,96.79421326],[4.53432392,0.02883011,96.79356998],[4.53432352,0.02882835,96.79292813],[4.53432313,0.02882658,96.79228764],[4.53432274,0.02882482,96.79164846],[4.53432234,0.02882306,96.79101053],[4.53432195,0.02882129,96.79037379],[4.53432156,0.02881953,96.78973819],[4.53432117,0.02881777,96.78910368],[4.53432078,0.02881601,96.78847018],[4.53432039,0.02881424,96.78783766],[4.53432001,0.02881248,96.78720604],[4.53431962,0.02881072,96.78657528],[4.53431923,0.02880895,96.78594532],[4.53431885,0.02880719,96.7853161],[4.53431846,0.02880542,96.78468756],[4.53431807,0.02880366,96.78405965],[4.53431769,0.02880189,96.78343231],[4.5343173,0.02880012,96.78280549],[4.53431692,0.02879836,96.78217913],[4.53431654,0.02879659,96.78155317],[4.53431615,0.02879483,96.78092755],[4.53431577,0.02879306,96.78030223],[4.53431539,0.0287913,96.77967713],[4.53431501,0.02878953,96.77905221],[4.53431462,0.02878777,96.77842741],[4.53431424,0.028786,96.77780268],[4.53431386,0.02878424,96.77717795],[4.53431348,0.02878247,96.77655317],[4.5343131,0.02878071,96.77592828],[4.53431272,0.02877894,96.77530323],[4.53431234,0.02877718,96.77467796],[4.53431196,0.02877541,96.77405241],[4.53431158,0.02877364,96.77342653],[4.5343112,0.02877188,96.77280029],[4.53431082,0.02877011,96.77217374],[4.53431044,0.02876835,96.77154688],[4.53431006,0.02876658,96.77091972],[4.53430968,0.02876482,96.77029227],[4.5343093,0.02876305,96.76966453],[4.53430892,0.02876129,96.7690365],[4.53430854,0.02875952,96.76840818],[4.53430816,0.02875776,96.76777959],[4.53430778,0.02875599,96.76715073],[4.5343074,0.02875423,96.7665216],[4.53430702,0.02875246,96.7658922],[4.53430664,0.0287507,96.76526254],[4.53430626,0.02874893,96.76463262],[4.53430589,0.02874717,96.76400245],[4.53430551,0.0287454,96.76337203],[4.53430513,0.02874364,96.76274137],[4.53430475,0.02874187,96.76211047],[4.53430437,0.02874011,96.76147934],[4.534304,0.02873834,96.76084797],[4.53430362,0.02873658,96.76021638],[4.53430324,0.02873481,96.75958457],[4.53430286,0.02873305,96.75895253],[4.53430249,0.02873129,96.75832029],[4.53430211,0.02872952,96.75768784],[4.53430173,0.02872776,96.75705518],[4.53430135,0.02872599,96.75642232],[4.53430098,0.02872423,96.75578927],[4.5343006,0.02872246,96.75515602],[4.53430022,0.0287207,96.75452259],[4.53429985,0.02871893,96.75388898],[4.53429947,0.02871717,96.75325518],[4.53429909,0.02871541,96.75262122],[4.53429872,0.02871364,96.75198709],[4.53429834,0.02871188,96.75135279],[4.53429796,0.02871011,96.75071833],[4.53429759,0.02870835,96.75008371],[4.53429721,0.02870658,96.74944887],[4.53429684,0.02870482,96.74881365],[4.53429646,0.02870306,96.74817793],[4.53429608,0.02870129,96.74754155],[4.53429571,0.02869953,96.74690438],[4.53429533,0.02869776,96.74626627],[4.53429495,0.028696,96.7456271],[4.53429458,0.02869424,96.74498682],[4.5342942,0.02869247,96.74434543],[4.53429382,0.02869071,96.74370291],[4.53429344,0.02868895,96.74305926],[4.53429307,0.02868718,96.74241448],[4.53429269,0.02868542,96.74176854],[4.53429231,0.02868366,96.74112145],[4.53429193,0.02868189,96.7404732],[4.53429155,0.02868013,96.73982378],[4.53429117,0.02867837,96.73917317],[4.53429079,0.02867661,96.73852138],[4.53429041,0.02867484,96.7378684],[4.53429003,0.02867308,96.73721421],[4.53428965,0.02867132,96.73655881],[4.53428927,0.02866956,96.73590219],[4.53428889,0.0286678,96.73524434],[4.5342885,0.02866603,96.73458526],[4.53428812,0.02866427,96.73392493],[4.53428774,0.02866251,96.73326335],[4.53428736,0.02866075,96.73260051],[4.53428697,0.02865899,96.7319364],[4.53428659,0.02865723,96.73127104],[4.5342862,0.02865547,96.73060448],[4.53428582,0.02865371,96.72993677],[4.53428544,0.02865195,96.72926793],[4.53428505,0.02865019,96.72859803],[4.53428467,0.02864842,96.72792711],[4.53428428,0.02864666,96.72725522],[4.53428389,0.0286449,96.72658239],[4.53428351,0.02864314,96.72590867],[4.53428312,0.02864138,96.72523411],[4.53428273,0.02863962,96.72455876],[4.53428235,0.02863786,96.72388266],[4.53428196,0.0286361,96.72320586],[4.53428157,0.02863434,96.7225284],[4.53428119,0.02863258,96.72185033],[4.5342808,0.02863082,96.7211717],[4.53428041,0.02862906,96.72049254],[4.53428002,0.0286273,96.71981291],[4.53427963,0.02862554,96.71913286],[4.53427925,0.02862378,96.71845239],[4.53427886,0.02862203,96.71777148],[4.53427847,0.02862027,96.7170901],[4.53427808,0.02861851,96.71640822],[4.53427769,0.02861675,96.7157258],[4.5342773,0.02861499,96.71504281],[4.53427691,0.02861324,96.71435922],[4.53427652,0.02861148,96.71367499],[4.53427613,0.02860972,96.7129901],[4.53427574,0.02860796,96.71230452],[4.53427535,0.02860621,96.7116182],[4.53427496,0.02860445,96.71093112],[4.53427457,0.02860269,96.71024329],[4.53427418,0.02860094,96.70955471],[4.53427379,0.02859918,96.70886539],[4.53427339,0.02859742,96.70817533],[4.534273,0.02859567,96.70748455],[4.53427261,0.02859391,96.70679304],[4.53427222,0.02859216,96.70610082],[4.53427182,0.0285904,96.70540789],[4.53427143,0.02858865,96.70471426],[4.53427103,0.02858689,96.70401994],[4.53427064,0.02858514,96.70332493],[4.53427024,0.02858338,96.70262924],[4.53426984,0.02858163,96.70193287],[4.53426945,0.02857988,96.70123584],[4.53426905,0.02857812,96.70053815],[4.53426865,0.02857637,96.69983981],[4.53426826,0.02857461,96.69914083],[4.53426786,0.02857286,96.6984412],[4.53426746,0.02857111,96.69774095],[4.53426706,0.02856936,96.69704007],[4.53426666,0.0285676,96.69633857],[4.53426626,0.02856585,96.69563647],[4.53426586,0.0285641,96.69493376],[4.53426546,0.02856235,96.69423046],[4.53426506,0.0285606,96.69352657],[4.53426465,0.02855884,96.6928221],[4.53426425,0.02855709,96.69211706],[4.53426385,0.02855534,96.69141145],[4.53426344,0.02855359,96.69070529],[4.53426304,0.02855184,96.68999857],[4.53426263,0.02855009,96.68929131],[4.53426223,0.02854834,96.68858351],[4.53426182,0.02854659,96.68787519],[4.53426142,0.02854484,96.68716634],[4.53426101,0.02854309,96.686457],[4.5342606,0.02854134,96.68574721],[4.53426019,0.02853959,96.68503703],[4.53425978,0.02853785,96.6843265],[4.53425937,0.0285361,96.68361567],[4.53425896,0.02853435,96.6829046],[4.53425855,0.0285326,96.68219333],[4.53425814,0.02853085,96.68148193],[4.53425773,0.02852911,96.68077043],[4.53425732,0.02852736,96.68005889],[4.53425691,0.02852561,96.67934737],[4.5342565,0.02852386,96.67863591],[4.53425608,0.02852212,96.67792457],[4.53425567,0.02852037,96.6772134],[4.53425525,0.02851862,96.67650245],[4.53425484,0.02851688,96.67579177],[4.53425443,0.02851513,96.67508142],[4.53425401,0.02851339,96.67437145],[4.53425359,0.02851164,96.67366191],[4.53425318,0.0285099,96.67295286],[4.53425276,0.02850815,96.67224435],[4.53425234,0.02850641,96.67153643],[4.53425193,0.02850466,96.67082916],[4.53425151,0.02850292,96.67012259],[4.53425109,0.02850117,96.66941677],[4.53425067,0.02849943,96.66871176],[4.53425026,0.02849768,96.66800762],[4.53424984,0.02849594,96.6673044],[4.53424942,0.02849422,96.66660214],[4.534249,0.02849248,96.6659009],[4.53424858,0.02849073,96.66520068],[4.53424816,0.02848899,96.66450149],[4.53424774,0.02848725,96.66380326],[4.53424732,0.0284855,96.66310587],[4.5342469,0.02848376,96.66240923],[4.53424648,0.02848201,96.66171323],[4.53424606,0.02848026,96.66101776],[4.53424564,0.02847852,96.66032271],[4.53424521,0.02847677,96.65962798],[4.53424479,0.02847502,96.65893346],[4.53424437,0.02847328,96.65823905],[4.53424394,0.02847153,96.65754462],[4.53424352,0.02846978,96.65685008],[4.5342431,0.02846803,96.65615532],[4.53424267,0.02846628,96.65546023],[4.53424225,0.02846454,96.6547647],[4.53424182,0.02846279,96.65406861],[4.5342414,0.02846104,96.65337187],[4.53424097,0.02845929,96.65267436],[4.53424055,0.02845754,96.65197597],[4.53424012,0.02845579,96.65127659],[4.53423969,0.02845403,96.65057611],[4.53423927,0.02845228,96.64987441],[4.53423884,0.02845053,96.6491714],[4.53423841,0.02844878,96.64846698],[4.53423798,0.02844703,96.64776111],[4.53423756,0.02844527,96.64705373],[4.53423713,0.02844352,96.64634479],[4.5342367,0.02844177,96.64563421],[4.53423627,0.02844001,96.64492179],[4.53423584,0.02843826,96.64420723],[4.53423541,0.02843651,96.64349027],[4.53423498,0.02843475,96.64277061],[4.53423455,0.028433,96.642048],[4.53423412,0.02843124,96.64132214],[4.53423369,0.02842949,96.64059276],[4.53423326,0.02842773,96.63985956],[4.53423283,0.02842598,96.63912228],[4.53423239,0.02842422,96.63838063],[4.53423196,0.02842246,96.63763431],[4.53423152,0.02842071,96.63688305],[4.53423109,0.02841895,96.63612656],[4.53423065,0.02841719,96.63536457],[4.53423021,0.02841544,96.63459687],[4.53422977,0.02841368,96.63382329],[4.53422933,0.02841192,96.63304363],[4.53422889,0.02841017,96.6322577],[4.53422845,0.02840841,96.63146531],[4.53422801,0.02840665,96.63066627],[4.53422757,0.0284049,96.6298604],[4.53422712,0.02840314,96.62904749],[4.53422668,0.02840138,96.62822736],[4.53422623,0.02839962,96.6273998],[4.53422578,0.02839786,96.62656465],[4.53422533,0.02839611,96.62572212],[4.53422488,0.02839435,96.62487309],[4.53422443,0.02839259,96.62401847],[4.53422398,0.02839083,96.62315919],[4.53422353,0.02838907,96.62229617],[4.53422308,0.02838731,96.62143035],[4.53422263,0.02838555,96.62056242],[4.53422219,0.02838379,96.61969231],[4.53422174,0.02838203,96.61881977],[4.5342213,0.02838027,96.61794452],[4.53422085,0.02837852,96.61706633],[4.53422041,0.02837676,96.61618493],[4.53421997,0.028375,96.61530006],[4.53421952,0.02837325,96.61441147],[4.53421908,0.0283715,96.61351888],[4.53421864,0.02836975,96.61262205],[4.53421819,0.028368,96.6117207],[4.53421775,0.02836625,96.61081458],[4.5342173,0.02836451,96.60990341],[4.53421686,0.02836277,96.60898694],[4.53421641,0.02836103,96.60806489],[4.53421596,0.02835929,96.607137],[4.53421551,0.02835755,96.60620341],[4.53421505,0.02835581,96.60526569],[4.5342146,0.02835408,96.60432574],[4.53421415,0.02835235,96.60338544],[4.53421369,0.02835062,96.60244671],[4.53421324,0.02834889,96.60151147],[4.53421278,0.02834717,96.60058162],[4.53421233,0.02834544,96.59965911],[4.53421188,0.02834372,96.59874586],[4.53421144,0.02834199,96.59784381],[4.53421099,0.02834027,96.59695374],[4.53421055,0.02833855,96.59607469],[4.53421011,0.02833683,96.59520554],[4.53420966,0.02833511,96.59434515],[4.53420922,0.02833339,96.59349239],[4.53420878,0.02833168,96.59264567],[4.53420834,0.02832997,96.59180178],[4.5342079,0.02832826,96.5909578],[4.53420745,0.02832656,96.5901145],[4.534207,0.02832485,96.58927408],[4.53420656,0.02832315,96.58843875],[4.53420611,0.02832146,96.58761072],[4.53420566,0.02831977,96.58679222],[4.53420521,0.02831808,96.5859855],[4.53420476,0.0283164,96.58519278],[4.53420431,0.02831472,96.58441634],[4.53420386,0.02831305,96.58365844],[4.53420341,0.02831137,96.58292136],[4.53420297,0.02830973,96.58221732]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004700","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"entry","predecessorId":-1}},{"geometry":{"coordinates":[[4.53423771,0.02829901,96.69770012],[4.53423821,0.0283008,96.69833627],[4.53423872,0.02830261,96.6990075],[4.53423923,0.02830441,96.69970269],[4.53423973,0.02830621,96.70041969],[4.53424024,0.028308,96.70115633],[4.53424074,0.02830979,96.70191045],[4.53424125,0.02831158,96.70267992],[4.53424175,0.02831336,96.70346261],[4.53424225,0.02831515,96.7042564],[4.53424274,0.02831692,96.70505917],[4.53424324,0.0283187,96.70586882],[4.53424373,0.02832046,96.70668326],[4.53424422,0.02832223,96.70750182],[4.53424471,0.028324,96.70832751],[4.5342452,0.02832577,96.70916293],[4.53424568,0.02832754,96.71000894],[4.53424617,0.0283293,96.71086626],[4.53424666,0.02833106,96.71173562],[4.53424716,0.02833282,96.71261773],[4.53424765,0.02833458,96.71351316],[4.53424815,0.02833634,96.71442069],[4.53424864,0.0283381,96.71533801],[4.53424914,0.02833985,96.71626278],[4.53424964,0.0283416,96.71719267],[4.53425013,0.02834335,96.71812535],[4.53425063,0.0283451,96.71905852],[4.53425112,0.02834685,96.71998987],[4.53425161,0.0283486,96.72091737],[4.5342521,0.02835034,96.7218407],[4.53425259,0.02835209,96.72276028],[4.53425308,0.02835383,96.72367653],[4.53425356,0.02835558,96.72458989],[4.53425404,0.02835732,96.72550077],[4.53425452,0.02835906,96.72640958],[4.53425501,0.02836079,96.72731676],[4.53425549,0.02836253,96.72822271],[4.53425597,0.02836427,96.72912784],[4.53425645,0.028366,96.73003258],[4.53425693,0.02836773,96.73093733],[4.53425741,0.02836946,96.7318425],[4.53425789,0.02837119,96.73274849],[4.53425838,0.02837291,96.73365561],[4.53425887,0.02837463,96.73456337],[4.53425935,0.02837635,96.73547095],[4.53425984,0.02837807,96.73637753],[4.53426033,0.0283798,96.73728229],[4.53426082,0.02838152,96.73818443],[4.53426131,0.02838324,96.73908313],[4.5342618,0.02838496,96.73997759],[4.53426229,0.02838668,96.74086702],[4.53426278,0.02838841,96.7417506],[4.53426327,0.02839013,96.7426276],[4.53426376,0.02839186,96.7434979],[4.53426425,0.02839358,96.7443618],[4.53426474,0.02839531,96.74521961],[4.53426522,0.02839703,96.74607164],[4.53426571,0.02839876,96.74691821],[4.53426619,0.02840049,96.7477596],[4.53426668,0.02840221,96.7485961],[4.53426716,0.02840394,96.74942797],[4.53426765,0.02840567,96.7502555],[4.53426813,0.0284074,96.75107898],[4.53426862,0.02840913,96.75189866],[4.5342691,0.02841086,96.75271484],[4.53426959,0.02841259,96.75352778],[4.53427007,0.02841432,96.75433776],[4.53427055,0.02841605,96.75514505],[4.53427104,0.02841778,96.75594993],[4.53427152,0.02841951,96.75675266],[4.534272,0.02842125,96.75755351],[4.53427249,0.02842298,96.75835275],[4.53427297,0.02842471,96.75915065],[4.53427346,0.02842645,96.75994748],[4.53427394,0.02842818,96.76074351],[4.53427443,0.02842991,96.76153899],[4.53427491,0.02843165,96.76233419],[4.5342754,0.02843338,96.76312939],[4.53427588,0.02843512,96.76392478],[4.53427637,0.02843686,96.76472043],[4.53427686,0.02843859,96.76551639],[4.53427735,0.02844033,96.7663127],[4.53427783,0.02844206,96.76710942],[4.53427832,0.0284438,96.76790658],[4.53427881,0.02844554,96.76870423],[4.5342793,0.02844728,96.76950242],[4.53427979,0.02844901,96.77030119],[4.53428028,0.02845075,96.77110059],[4.53428077,0.02845249,96.77190066],[4.53428126,0.02845423,96.77270145],[4.53428175,0.02845597,96.773503],[4.53428224,0.02845771,96.77430536],[4.53428273,0.02845945,96.77510857],[4.53428323,0.02846119,96.77591267],[4.53428372,0.02846294,96.77671772],[4.53428421,0.02846468,96.77752376],[4.5342847,0.02846642,96.77833082],[4.53428519,0.02846816,96.77913896],[4.53428568,0.02846991,96.77994821],[4.53428618,0.02847165,96.78075863],[4.53428667,0.02847339,96.78157026],[4.53428716,0.02847514,96.78238314],[4.53428765,0.02847688,96.78319731],[4.53428814,0.02847863,96.78401282],[4.53428864,0.02848038,96.78482971],[4.53428913,0.02848212,96.785648],[4.53428962,0.02848387,96.78646761],[4.53429011,0.02848559,96.78728848],[4.5342906,0.02848734,96.78811052],[4.53429109,0.02848909,96.78893365],[4.53429158,0.02849084,96.78975779],[4.53429207,0.02849259,96.79058287],[4.53429256,0.02849434,96.79140881],[4.53429305,0.02849609,96.79223554],[4.53429353,0.02849784,96.79306296],[4.53429402,0.02849959,96.79389102],[4.53429451,0.02850134,96.79471962],[4.534295,0.02850309,96.7955487],[4.53429548,0.02850483,96.79637818],[4.53429597,0.02850658,96.79720798],[4.53429645,0.02850833,96.79803802],[4.53429694,0.02851008,96.79886824],[4.53429742,0.02851183,96.79969855],[4.5342979,0.02851358,96.80052889],[4.53429839,0.02851533,96.80135916],[4.53429887,0.02851708,96.80218937],[4.53429935,0.02851883,96.80301958],[4.53429983,0.02852058,96.80384986],[4.53430031,0.02852233,96.8046803],[4.53430079,0.02852408,96.80551097],[4.53430127,0.02852583,96.80634195],[4.53430175,0.02852758,96.80717332],[4.53430222,0.02852933,96.80800515],[4.5343027,0.02853108,96.80883752],[4.53430318,0.02853283,96.8096705],[4.53430366,0.02853458,96.81050419],[4.53430413,0.02853633,96.81133864],[4.53430461,0.02853808,96.81217397],[4.53430509,0.02853983,96.81301029],[4.53430556,0.02854158,96.81384772],[4.53430604,0.02854333,96.81468638],[4.53430651,0.02854508,96.81552639],[4.53430699,0.02854682,96.81636787],[4.53430746,0.02854857,96.81721092],[4.53430794,0.02855032,96.81805553],[4.53430842,0.02855207,96.8189017],[4.53430889,0.02855382,96.81974937],[4.53430937,0.02855557,96.82059851],[4.53430985,0.02855732,96.8214491],[4.53431032,0.02855907,96.82230109],[4.5343108,0.02856081,96.82315446],[4.53431127,0.02856256,96.82400918],[4.53431175,0.02856431,96.82486521],[4.53431223,0.02856606,96.82572252],[4.5343127,0.02856781,96.82658107],[4.53431318,0.02856955,96.82744084],[4.53431366,0.0285713,96.8283018],[4.53431413,0.02857305,96.8291639],[4.53431461,0.0285748,96.83002713],[4.53431509,0.02857654,96.83089144],[4.53431556,0.02857829,96.8317568],[4.53431604,0.02858004,96.83262319],[4.53431651,0.02858178,96.83349058],[4.53431699,0.02858353,96.83435892],[4.53431747,0.02858528,96.8352282],[4.53431794,0.02858702,96.83609837],[4.53431842,0.02858877,96.83696941],[4.5343189,0.02859052,96.83784129],[4.53431937,0.02859226,96.83871397],[4.53431985,0.02859401,96.83958742],[4.53432033,0.02859575,96.84046162],[4.5343208,0.0285975,96.84133654],[4.53432128,0.02859924,96.84221213],[4.53432176,0.02860099,96.84308837],[4.53432223,0.02860274,96.84396524],[4.53432271,0.02860448,96.8448427],[4.53432319,0.02860623,96.84572071],[4.53432366,0.02860797,96.84659926],[4.53432414,0.02860971,96.8474783],[4.53432462,0.02861146,96.84835781],[4.53432509,0.0286132,96.84923777],[4.53432557,0.02861495,96.85011813],[4.53432604,0.02861669,96.85099886],[4.53432652,0.02861844,96.85187989],[4.534327,0.02862018,96.85276111],[4.53432747,0.02862192,96.85364241],[4.53432795,0.02862367,96.85452373],[4.53432842,0.02862541,96.85540507],[4.5343289,0.02862715,96.85628643],[4.53432938,0.0286289,96.85716782],[4.53432985,0.02863065,96.85804926],[4.53433033,0.02863239,96.85893073],[4.5343308,0.02863413,96.85981225],[4.53433128,0.02863588,96.86069383],[4.53433175,0.02863762,96.86157546],[4.53433223,0.02863936,96.86245716],[4.5343327,0.0286411,96.86333893],[4.53433318,0.02864285,96.86422078],[4.53433365,0.02864459,96.86510272],[4.53433413,0.02864633,96.86598474],[4.5343346,0.02864808,96.86686685],[4.53433508,0.02864982,96.86774907],[4.53433555,0.02865156,96.86863139],[4.53433603,0.0286533,96.86951382],[4.5343365,0.02865505,96.87039637],[4.53433698,0.02865679,96.87127905],[4.53433745,0.02865853,96.87216185],[4.53433793,0.02866027,96.87304478],[4.5343384,0.02866201,96.87392786],[4.53433887,0.02866376,96.87481108],[4.53433935,0.0286655,96.87569446],[4.53433982,0.02866724,96.87657799],[4.5343403,0.02866898,96.87746168],[4.53434077,0.02867072,96.87834554],[4.53434125,0.02867247,96.87922958],[4.53434172,0.02867421,96.8801138],[4.5343422,0.02867595,96.8809982],[4.53434267,0.02867769,96.88188279],[4.53434315,0.02867943,96.88276758],[4.53434362,0.02868117,96.88365257],[4.5343441,0.02868292,96.88453777],[4.53434457,0.02868466,96.88542318],[4.53434505,0.0286864,96.88630881],[4.53434552,0.02868814,96.8871947],[4.534346,0.02868988,96.88808098],[4.53434647,0.02869162,96.8889677],[4.53434695,0.02869336,96.88985482],[4.53434742,0.0286951,96.8907423],[4.5343479,0.02869684,96.89163009],[4.53434838,0.02869858,96.89251812],[4.53434885,0.02870032,96.89340637],[4.53434933,0.02870206,96.89429476],[4.5343498,0.0287038,96.89518327],[4.53435028,0.02870554,96.89607182],[4.53435076,0.02870728,96.89696039],[4.53435123,0.02870902,96.89784891],[4.53435171,0.02871076,96.89873733],[4.53435218,0.0287125,96.89962561],[4.53435266,0.02871424,96.9005137],[4.53435314,0.02871598,96.90140154],[4.53435361,0.02871772,96.90228909],[4.53435409,0.02871946,96.9031763],[4.53435456,0.0287212,96.90406312],[4.53435504,0.02872294,96.90494949],[4.53435551,0.02872468,96.90583538],[4.53435599,0.02872642,96.90672072],[4.53435646,0.02872816,96.90760547],[4.53435694,0.0287299,96.90848959],[4.53435741,0.02873164,96.90937301],[4.53435789,0.02873337,96.91025569],[4.53435836,0.02873511,96.91113759],[4.53435883,0.02873685,96.91201865],[4.53435931,0.02873859,96.91289882],[4.53435978,0.02874033,96.91377805],[4.53436025,0.02874207,96.91465629],[4.53436072,0.02874381,96.9155335],[4.5343612,0.02874555,96.91640963],[4.53436167,0.02874729,96.91728461],[4.53436214,0.02874903,96.91815842],[4.53436261,0.02875076,96.91903098],[4.53436308,0.0287525,96.91990229],[4.53436355,0.02875424,96.92077243],[4.53436402,0.02875598,96.92164155],[4.53436449,0.02875772,96.92250979],[4.53436496,0.02875946,96.92337729],[4.53436543,0.0287612,96.92424418],[4.5343659,0.02876294,96.92511054],[4.53436637,0.02876467,96.92597638],[4.53436684,0.02876641,96.92684174],[4.5343673,0.02876815,96.92770664],[4.53436777,0.02876989,96.92857111],[4.53436824,0.02877163,96.92943517],[4.53436871,0.02877337,96.93029884],[4.53436918,0.0287751,96.93116216],[4.53436965,0.02877684,96.93202514],[4.53437012,0.02877858,96.93288782],[4.53437058,0.02878032,96.93375021],[4.53437105,0.02878206,96.93461234],[4.53437152,0.02878379,96.93547425],[4.53437199,0.02878553,96.93633594],[4.53437246,0.02878727,96.93719746],[4.53437293,0.02878901,96.93805881],[4.5343734,0.02879074,96.93892004],[4.53437386,0.02879248,96.93978116],[4.53437433,0.02879422,96.94064219],[4.5343748,0.02879595,96.94150317],[4.53437527,0.02879769,96.94236412],[4.53437574,0.02879943,96.94322506],[4.53437621,0.02880116,96.94408602],[4.53437668,0.0288029,96.94494702],[4.53437715,0.02880464,96.94580809],[4.53437761,0.02880636,96.94666925],[4.53437808,0.0288081,96.94753053],[4.53437855,0.02880983,96.94839195],[4.53437902,0.02881157,96.94925354],[4.5343795,0.0288133,96.95011532],[4.53437997,0.02881504,96.95097732],[4.53438044,0.02881678,96.95183955],[4.53438091,0.02881851,96.95270206],[4.53438138,0.02882025,96.95356486],[4.53438185,0.02882198,96.95442797],[4.53438232,0.02882372,96.95529142],[4.53438279,0.02882545,96.95615524],[4.53438327,0.02882719,96.95701945],[4.53438374,0.02882893,96.95788408],[4.53438421,0.02883066,96.95874914],[4.53438469,0.0288324,96.95961467],[4.53438516,0.02883413,96.96048069],[4.53438563,0.02883587,96.96134722],[4.53438611,0.0288376,96.96221429],[4.53438658,0.02883934,96.96308193],[4.53438706,0.02884107,96.96395012],[4.53438753,0.0288428,96.96481871],[4.53438801,0.02884454,96.96568755],[4.53438848,0.02884627,96.96655645],[4.53438896,0.02884801,96.96742526],[4.53438943,0.02884974,96.96829381],[4.53438991,0.02885148,96.96916195],[4.53439038,0.02885321,96.9700295],[4.53439086,0.02885495,96.97089631],[4.53439133,0.02885668,96.9717622],[4.53439181,0.02885842,96.97262702],[4.53439228,0.02886015,96.9734906],[4.53439275,0.02886188,96.97435278],[4.53439323,0.02886362,96.97521339],[4.5343937,0.02886535,96.97607227],[4.53439417,0.02886709,96.97692926],[4.53439464,0.02886882,96.97778418],[4.53439511,0.02887056,96.97863688],[4.53439558,0.0288723,96.97948719],[4.53439605,0.02887403,96.98033495],[4.53439652,0.02887577,96.98117999],[4.53439699,0.0288775,96.98202214],[4.53439745,0.02887924,96.98286125],[4.53439792,0.02888098,96.98369714],[4.53439838,0.02888271,96.98452965],[4.53439885,0.02888445,96.98535862],[4.53439931,0.02888619,96.98618388],[4.53439977,0.02888793,96.98700527],[4.53440023,0.02888966,96.98782282],[4.53440068,0.0288914,96.98863679],[4.53440114,0.02889314,96.98944746],[4.5344016,0.02889488,96.99025509],[4.53440205,0.02889662,96.99105997],[4.53440251,0.02889836,96.99186237],[4.53440296,0.0289001,96.99266256],[4.53440341,0.02890184,96.99346081],[4.53440386,0.02890358,96.99425741],[4.53440431,0.02890532,96.99505263],[4.53440476,0.02890706,96.99584674],[4.53440522,0.0289088,96.99664002],[4.53440567,0.02891054,96.99743274],[4.53440612,0.02891228,96.99822518],[4.53440657,0.02891402,96.99901761],[4.53440702,0.02891576,96.99981031],[4.53440747,0.0289175,97.00060355],[4.53440792,0.02891924,97.00139762],[4.53440837,0.02892098,97.00219278],[4.53440866,0.02892276,97.00251516],[4.53440872,0.0289246,97.00220572],[4.53440878,0.02892643,97.00189586],[4.53440884,0.02892827,97.00158558],[4.5344089,0.02893011,97.00127488],[4.53440896,0.02893194,97.00096377],[4.53440902,0.02893378,97.00065225],[4.53440908,0.02893562,97.00034033],[4.53440914,0.02893746,97.00002801],[4.5344092,0.02893929,96.9997153],[4.53440926,0.02894113,96.9994022],[4.53440932,0.02894297,96.99908872],[4.53440938,0.02894481,96.99877487],[4.53440944,0.02894664,96.99846064],[4.5344095,0.02894848,96.99814605],[4.53440956,0.02895032,96.9978311],[4.53440962,0.02895216,96.99751579],[4.53440968,0.028954,96.99720013],[4.53440974,0.02895583,96.99688415]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004700","rules":[{"value":"barred"}],"id":1,"type":"restricted","predecessorId":1}},{"geometry":{"coordinates":[[4.53413895,0.02826181,96.54483368],[4.5341385,0.02826007,96.54398301],[4.53413804,0.02825833,96.54311075],[4.53413757,0.02825659,96.54222053],[4.53413709,0.02825485,96.54131597],[4.5341366,0.02825312,96.54040074],[4.53413611,0.02825138,96.53947852],[4.53413562,0.02824965,96.53855299],[4.53413512,0.02824792,96.53762786],[4.53413463,0.02824619,96.53670685],[4.53413413,0.02824446,96.53579368],[4.53413363,0.02824273,96.53489139],[4.53413314,0.02824099,96.53400009],[4.53413264,0.02823926,96.53311919],[4.53413215,0.02823753,96.53224809],[4.53413165,0.0282358,96.53138618],[4.53413116,0.02823406,96.53053286],[4.53413067,0.02823233,96.52968752],[4.53413017,0.02823059,96.52884956],[4.53412968,0.02822886,96.52801836],[4.53412919,0.02822713,96.5271933],[4.5341287,0.02822539,96.52637378],[4.53412821,0.02822366,96.52555917],[4.53412771,0.02822193,96.52474886],[4.53412722,0.02822019,96.52394234],[4.53412672,0.02821846,96.52313948],[4.53412623,0.02821673,96.5223403],[4.53412573,0.02821499,96.52154478],[4.53412524,0.02821326,96.52075293],[4.53412474,0.02821153,96.51996473],[4.53412425,0.0282098,96.51918018],[4.53412375,0.02820806,96.51839929],[4.53412325,0.02820633,96.51762204],[4.53412276,0.0282046,96.51684844],[4.53412226,0.02820287,96.51607848],[4.53412177,0.02820113,96.51531215],[4.53412127,0.0281994,96.51454946],[4.53412077,0.02819767,96.51379041],[4.53412028,0.02819594,96.51303498],[4.53411978,0.0281942,96.51228318],[4.53411928,0.02819247,96.51153501],[4.53411879,0.02819074,96.51079046],[4.53411829,0.02818901,96.51004953],[4.5341178,0.02818727,96.50931223],[4.5341173,0.02818554,96.50857854],[4.53411681,0.02818381,96.50784846],[4.53411631,0.02818207,96.507122],[4.53411581,0.02818034,96.50639916],[4.53411532,0.02817861,96.50567993],[4.53411482,0.02817688,96.50496428],[4.53411433,0.02817514,96.50425205],[4.53411383,0.02817341,96.50354307],[4.53411334,0.02817168,96.50283715],[4.53411284,0.02816994,96.5021341],[4.53411234,0.02816821,96.50143374],[4.53411185,0.02816648,96.5007359],[4.53411135,0.02816474,96.50004037],[4.53411085,0.02816301,96.49934699],[4.53411036,0.02816128,96.49865556],[4.53410986,0.02815955,96.4979659],[4.53410936,0.02815782,96.49727784],[4.53410886,0.02815608,96.49659118],[4.53410836,0.02815435,96.49590575],[4.53410786,0.02815262,96.49522135],[4.53410736,0.02815089,96.49453782],[4.53410686,0.02814916,96.49385501],[4.53410635,0.02814743,96.49317294],[4.53410585,0.0281457,96.49249169],[4.53410534,0.02814397,96.49181133],[4.53410484,0.02814224,96.49113193],[4.53410433,0.02814051,96.49045356],[4.53410383,0.02813878,96.48977629],[4.53410332,0.02813705,96.4891002],[4.53410281,0.02813532,96.48842535],[4.5341023,0.02813359,96.48775182],[4.53410179,0.02813186,96.48707968],[4.53410128,0.02813013,96.486409],[4.53410077,0.02812841,96.48573985],[4.53410026,0.02812668,96.48507231],[4.53409974,0.02812495,96.48440644],[4.53409923,0.02812322,96.48374236],[4.53409872,0.02812149,96.48308017],[4.5340982,0.02811977,96.48242],[4.53409769,0.02811804,96.48176197],[4.53409717,0.02811631,96.48110621],[4.53409666,0.02811459,96.48045285],[4.53409614,0.02811286,96.47980199],[4.53409563,0.02811113,96.47915377],[4.53409511,0.02810941,96.4785083],[4.5340946,0.02810768,96.47786572],[4.53409408,0.02810595,96.47722613],[4.53409357,0.02810422,96.47658967],[4.53409305,0.0281025,96.47595646],[4.53409253,0.02810077,96.47532661],[4.53409202,0.02809904,96.47470024],[4.5340915,0.02809732,96.47407749],[4.53409099,0.02809559,96.47345846],[4.53409047,0.02809386,96.47284328],[4.53408996,0.02809214,96.47223208],[4.53408945,0.02809041,96.47162496],[4.53408893,0.02808868,96.47102205],[4.53408842,0.02808695,96.47042346],[4.53408791,0.02808523,96.46982929],[4.53408739,0.0280835,96.46923946],[4.53408688,0.02808177,96.46865391],[4.53408637,0.02808004,96.46807258],[4.53408586,0.02807831,96.46749543],[4.53408535,0.02807659,96.4669224],[4.53408484,0.02807486,96.46635345],[4.53408433,0.02807313,96.46578854],[4.53408382,0.0280714,96.4652276],[4.53408331,0.02806967,96.4646706],[4.5340828,0.02806794,96.46411747],[4.53408229,0.02806621,96.46356819],[4.53408179,0.02806448,96.46302268],[4.53408128,0.02806275,96.46248092],[4.53408077,0.02806102,96.46194284],[4.53408026,0.0280593,96.4614084],[4.53407976,0.02805757,96.46087755],[4.53407925,0.02805584,96.46035023],[4.53407875,0.02805411,96.45982632],[4.53407824,0.02805238,96.4593056],[4.53407774,0.02805065,96.45878784],[4.53407723,0.02804892,96.45827283],[4.53407673,0.02804719,96.45776035],[4.53407622,0.02804546,96.45725018],[4.53407572,0.02804373,96.45674211],[4.53407521,0.02804199,96.45623591],[4.53407471,0.02804026,96.45573138],[4.5340742,0.02803853,96.45522829],[4.5340737,0.02803681,96.45472644],[4.53407319,0.02803508,96.45422561],[4.53407268,0.02803335,96.45372559],[4.53407218,0.02803162,96.45322617],[4.53407167,0.02802989,96.45272714],[4.53407116,0.02802816,96.45222828],[4.53407065,0.02802643,96.4517294],[4.53407014,0.0280247,96.45123028],[4.53406963,0.02802297,96.45073072],[4.53406912,0.02802124,96.45023051],[4.53406861,0.02801952,96.44972942],[4.53406809,0.02801779,96.44922715],[4.53406758,0.02801606,96.44872337],[4.53406706,0.02801433,96.44821776],[4.53406655,0.02801261,96.44770999],[4.53406603,0.02801088,96.4471998],[4.53406551,0.02800916,96.44668711],[4.53406499,0.02800743,96.44617189],[4.53406446,0.02800571,96.44565412],[4.53406394,0.02800398,96.44513377],[4.53406341,0.02800226,96.44461087],[4.53406289,0.02800054,96.44408565],[4.53406236,0.02799881,96.44355842],[4.53406183,0.02799709,96.44302944],[4.5340613,0.02799537,96.44249903],[4.53406077,0.02799365,96.44196745],[4.53406024,0.02799193,96.441435],[4.5340597,0.0279902,96.44090196],[4.53405917,0.02798848,96.44036861],[4.53405863,0.02798676,96.43983524],[4.5340581,0.02798504,96.43930213],[4.53405756,0.02798332,96.43876956],[4.53405703,0.0279816,96.43823781],[4.53405649,0.02797988,96.43770715],[4.53405596,0.02797816,96.43717786],[4.53405542,0.02797644,96.43665022],[4.53405489,0.02797472,96.43612446],[4.53405435,0.027973,96.43560068],[4.53405382,0.02797128,96.43507895],[4.53405328,0.02796956,96.43455932],[4.53405275,0.02796784,96.43404186],[4.53405221,0.02796611,96.43352663],[4.53405168,0.02796439,96.43301368],[4.53405114,0.02796267,96.43250309],[4.53405061,0.02796095,96.4319949],[4.53405008,0.02795923,96.43148917],[4.53404954,0.02795751,96.43098598],[4.53404901,0.02795579,96.43048536],[4.53404848,0.02795406,96.42998739],[4.53404795,0.02795234,96.42949211],[4.53404742,0.02795062,96.42899959],[4.53404689,0.0279489,96.42850982],[4.53404636,0.02794718,96.42802252],[4.53404583,0.02794545,96.42753736],[4.5340453,0.02794373,96.42705401],[4.53404477,0.02794201,96.42657226],[4.53404425,0.02794029,96.426092],[4.53404372,0.02793856,96.42561313],[4.53404319,0.02793684,96.42513556],[4.53404266,0.02793512,96.42465919],[4.53404213,0.02793339,96.42418392],[4.5340416,0.02793167,96.42370966],[4.53404108,0.02792995,96.4232363],[4.53404055,0.02792823,96.42276375],[4.53404002,0.0279265,96.42229192],[4.53403949,0.02792478,96.4218207],[4.53403896,0.02792306,96.42135001],[4.53403843,0.02792133,96.42087975],[4.53403791,0.02791961,96.42040982],[4.53403738,0.02791789,96.41994013],[4.53403685,0.02791617,96.41947058],[4.53403632,0.02791444,96.41900109],[4.53403579,0.02791272,96.41853156],[4.53403526,0.027911,96.4180619],[4.53403473,0.02790928,96.41759201],[4.5340342,0.02790756,96.4171218],[4.53403367,0.02790583,96.41665125],[4.53403313,0.02790411,96.41618063],[4.5340326,0.02790239,96.41571039],[4.53403207,0.02790067,96.41524095],[4.53403154,0.02789895,96.41477276],[4.53403101,0.02789722,96.41430613],[4.53403048,0.0278955,96.4138413],[4.53402995,0.02789378,96.4133785],[4.53402942,0.02789206,96.41291794],[4.53402889,0.02789033,96.41245985],[4.53402837,0.02788861,96.41200445],[4.53402784,0.02788689,96.41155195],[4.53402731,0.02788516,96.41110257],[4.53402679,0.02788344,96.41065653],[4.53402627,0.02788172,96.41021404],[4.53402574,0.02787999,96.40977532],[4.53402522,0.02787827,96.40934057],[4.5340247,0.02787654,96.40890991],[4.53402418,0.02787481,96.40848307],[4.53402367,0.02787309,96.40805966],[4.53402315,0.02787136,96.40763922],[4.53402264,0.02786963,96.40722128],[4.53402212,0.02786791,96.40680536],[4.53402161,0.02786618,96.40639099],[4.5340211,0.02786445,96.40597771],[4.53402058,0.02786273,96.40556504],[4.53402007,0.027861,96.40515253],[4.53401956,0.02785927,96.40473971],[4.53401904,0.02785754,96.40432613],[4.53401853,0.02785582,96.40391132],[4.53401801,0.02785409,96.40349484],[4.5340175,0.02785236,96.40307624],[4.53401698,0.02785064,96.40265506],[4.53401647,0.02784891,96.40223086],[4.53401595,0.02784718,96.4018032],[4.53401543,0.02784546,96.40137164],[4.53401491,0.02784373,96.40093574],[4.53401438,0.02784201,96.40049516],[4.53401386,0.02784028,96.40005001],[4.53401333,0.02783856,96.3996005],[4.5340128,0.02783684,96.39914692],[4.53401227,0.02783512,96.39868952],[4.53401174,0.02783339,96.39822859],[4.53401121,0.02783167,96.39776439],[4.53401068,0.02782995,96.39729718],[4.53401015,0.02782823,96.39682723],[4.53400961,0.02782651,96.39635479],[4.53400908,0.02782479,96.39588014],[4.53400854,0.02782307,96.39540353],[4.534008,0.02782135,96.39492522],[4.53400747,0.02781963,96.39444546],[4.53400693,0.02781791,96.39396451],[4.53400639,0.02781619,96.39348262],[4.53400585,0.02781447,96.39300004],[4.53400531,0.02781275,96.39251702],[4.53400478,0.02781103,96.39203369],[4.53400424,0.02780931,96.39155007],[4.5340037,0.02780759,96.39106617],[4.53400316,0.02780587,96.39058201],[4.53400263,0.02780415,96.3900976],[4.53400209,0.02780243,96.38961297],[4.53400155,0.02780071,96.38912812],[4.53400101,0.02779899,96.38864306],[4.53400048,0.02779727,96.38815782],[4.53399994,0.02779555,96.38767241],[4.5339994,0.02779383,96.38718683],[4.53399887,0.02779211,96.38670111],[4.53399833,0.02779039,96.38621525],[4.53399779,0.02778867,96.38572927],[4.53399726,0.02778695,96.38524318],[4.53399672,0.02778523,96.38475692],[4.53399619,0.02778351,96.38427046],[4.53399565,0.02778179,96.38378374],[4.53399512,0.02778007,96.38329671],[4.53399458,0.02777835,96.38280932],[4.53399405,0.02777663,96.38232152],[4.53399351,0.0277749,96.38183324],[4.53399298,0.02777318,96.38134445],[4.53399244,0.02777146,96.38085508],[4.53399191,0.02776974,96.3803651],[4.53399138,0.02776802,96.37987443],[4.53399084,0.0277663,96.37938305],[4.53399031,0.02776458,96.37889088],[4.53398977,0.02776286,96.37839789],[4.53398924,0.02776114,96.37790401],[4.53398871,0.02775942,96.37740921],[4.53398817,0.0277577,96.37691343],[4.53398764,0.02775597,96.37641661],[4.5339871,0.02775425,96.37591871],[4.53398657,0.02775253,96.37541969],[4.53398604,0.02775081,96.37491947],[4.5339855,0.02774909,96.37441801],[4.53398497,0.02774737,96.37391525],[4.53398443,0.02774565,96.37341114],[4.5339839,0.02774393,96.37290562],[4.53398337,0.02774221,96.37239863],[4.53398283,0.02774049,96.37189012],[4.5339823,0.02773876,96.37138003],[4.53398176,0.02773704,96.37086831],[4.53398123,0.02773532,96.3703549],[4.53398069,0.0277336,96.36983976],[4.53398016,0.02773188,96.36932281],[4.53397962,0.02773016,96.36880402],[4.53397909,0.02772844,96.36828333],[4.53397855,0.02772672,96.36776073],[4.53397802,0.027725,96.36723619],[4.53397748,0.02772328,96.36670971],[4.53397695,0.02772156,96.36618128],[4.53397641,0.02771984,96.36565088],[4.53397587,0.02771812,96.36511851],[4.53397534,0.0277164,96.36458414],[4.5339748,0.02771468,96.36404776],[4.53397427,0.02771296,96.36350937],[4.53397373,0.02771124,96.36296894],[4.53397319,0.02770952,96.36242647],[4.53397266,0.0277078,96.36188193],[4.53397212,0.02770608,96.36133532],[4.53397158,0.02770436,96.36078662],[4.53397104,0.02770264,96.36023582],[4.53397051,0.02770092,96.35968289],[4.53396997,0.0276992,96.35912783],[4.53396943,0.02769748,96.35857062],[4.53396889,0.02769576,96.35801125],[4.53396836,0.02769404,96.35744972],[4.53396782,0.02769232,96.35688605],[4.53396728,0.0276906,96.35632026],[4.53396674,0.02768888,96.35575237],[4.53396621,0.02768716,96.35518239],[4.53396567,0.02768544,96.35461034],[4.53396513,0.02768372,96.35403617],[4.53396459,0.027682,96.35345987],[4.53396406,0.02768028,96.35288139],[4.53396352,0.02767856,96.35230071],[4.53396298,0.02767684,96.3517178],[4.53396244,0.02767512,96.35113262],[4.53396191,0.0276734,96.35054516],[4.53396137,0.02767168,96.34995537],[4.53396083,0.02766996,96.34936323],[4.53396029,0.02766824,96.3487687],[4.53395976,0.02766652,96.34817177],[4.53395922,0.0276648,96.34757239],[4.53395868,0.02766308,96.34697054],[4.53395814,0.02766136,96.34636619],[4.53395761,0.02765964,96.3457593],[4.53395707,0.02765792,96.34514985],[4.53395653,0.0276562,96.34453781],[4.53395599,0.02765448,96.34392315],[4.53395546,0.02765276,96.34330583],[4.53395492,0.02765104,96.34268583],[4.53395438,0.02764932,96.34206312],[4.53395385,0.0276476,96.34143767],[4.53395331,0.02764589,96.34080944],[4.53395277,0.02764417,96.34017841],[4.53395223,0.02764245,96.33954454],[4.5339517,0.02764073,96.33890782],[4.53395116,0.02763901,96.3382682],[4.53395062,0.02763729,96.33762566],[4.53395008,0.02763557,96.33698016],[4.53394955,0.02763385,96.33633168],[4.53394901,0.02763213,96.33568019],[4.53394847,0.02763041,96.33502566],[4.53394793,0.02762869,96.33436806],[4.5339474,0.02762697,96.33370735],[4.53394686,0.02762525,96.33304351],[4.53394632,0.02762353,96.33237651],[4.53394579,0.02762181,96.33170631],[4.53394525,0.02762009,96.33103289],[4.53394471,0.02761837,96.33035622],[4.53394417,0.02761665,96.32967627],[4.53394364,0.02761493,96.32899301],[4.5339431,0.02761321,96.3283064],[4.53394256,0.02761149,96.32761642],[4.53394202,0.02760977,96.32692304],[4.53394149,0.02760805,96.32622623],[4.53394095,0.02760633,96.32552595],[4.53394041,0.02760461,96.32482218],[4.53393987,0.02760289,96.32411489],[4.53393934,0.02760117,96.32340405],[4.5339388,0.02759945,96.32268962],[4.53393826,0.02759773,96.32197159],[4.53393772,0.02759601,96.32124991],[4.53393718,0.02759429,96.32052456],[4.53393665,0.02759257,96.3197955],[4.53393611,0.02759085,96.31906272],[4.53393557,0.02758913,96.31832617],[4.53393503,0.02758741,96.31758582],[4.53393449,0.0275857,96.31684165],[4.53393396,0.02758398,96.3160936],[4.53393342,0.02758226,96.31534165],[4.53393288,0.02758054,96.31458576],[4.53393234,0.02757882,96.31382589],[4.5339318,0.0275771,96.313062],[4.53393127,0.02757538,96.31229406],[4.53393073,0.02757366,96.31152203],[4.53393019,0.02757194,96.31074588],[4.53392965,0.02757022,96.30996556],[4.53392911,0.0275685,96.30918104],[4.53392857,0.02756678,96.30839229],[4.53392803,0.02756506,96.30759927],[4.5339275,0.02756334,96.30680194],[4.53392696,0.02756162,96.30600026],[4.53392642,0.0275599,96.3051942],[4.53392588,0.02755819,96.30438371],[4.53392534,0.02755647,96.30356877],[4.5339248,0.02755475,96.30274934],[4.53392426,0.02755303,96.30192537],[4.53392372,0.02755131,96.30109684],[4.53392318,0.02754959,96.3002637],[4.53392264,0.02754787,96.29942592],[4.5339221,0.02754615,96.29858347],[4.53392156,0.02754443,96.29773635],[4.53392102,0.02754272,96.2968846],[4.53392048,0.027541,96.29602823],[4.53391994,0.02753928,96.29516726],[4.5339194,0.02753756,96.29430171],[4.53391886,0.02753584,96.2934316],[4.53391832,0.02753412,96.29255696],[4.53391778,0.0275324,96.2916778],[4.53391724,0.02753068,96.29079414],[4.5339167,0.02752897,96.28990601],[4.53391616,0.02752725,96.28901343],[4.53391562,0.02752553,96.28811641],[4.53391508,0.02752381,96.28721499],[4.53391454,0.02752209,96.28630917],[4.533914,0.02752037,96.28539898],[4.53391346,0.02751865,96.28448445],[4.53391292,0.02751693,96.2835656],[4.53391238,0.02751521,96.28264244],[4.53391184,0.02751349,96.28171501],[4.53391131,0.02751177,96.28078332],[4.53391077,0.02751006,96.27984737],[4.53391023,0.02750834,96.27890714],[4.53390969,0.02750662,96.2779626],[4.53390916,0.0275049,96.27701372],[4.53390862,0.02750318,96.27606048],[4.53390808,0.02750146,96.27510285],[4.53390755,0.02749974,96.27414081],[4.53390701,0.02749802,96.27317433],[4.53390648,0.0274963,96.27220339],[4.53390594,0.02749458,96.27122796],[4.53390541,0.02749286,96.27024801],[4.53390487,0.02749113,96.26926352],[4.53390434,0.02748941,96.26827447],[4.5339038,0.02748769,96.26728083],[4.53390327,0.02748597,96.26628257],[4.53390274,0.02748425,96.26527968],[4.5339022,0.02748253,96.26427212],[4.53390167,0.02748081,96.26325987],[4.53390114,0.02747909,96.26224292],[4.53390061,0.02747737,96.26122122],[4.53390008,0.02747565,96.26019477],[4.53389954,0.02747392,96.25916354],[4.53389901,0.0274722,96.25812749],[4.53389848,0.02747048,96.25708662],[4.53389795,0.02746876,96.25604089],[4.53389742,0.02746704,96.25499028],[4.53389689,0.02746532,96.25393478],[4.53389636,0.02746359,96.25287435],[4.53389583,0.02746187,96.25180897],[4.5338953,0.02746015,96.25073862],[4.53389478,0.02745843,96.24966329],[4.53389425,0.0274567,96.24858293],[4.53389372,0.02745498,96.24749755],[4.53389319,0.02745326,96.24640709],[4.53389266,0.02745154,96.24531146],[4.53389214,0.02744981,96.24421058],[4.53389161,0.02744809,96.24310432],[4.53389108,0.02744637,96.24199259],[4.53389056,0.02744464,96.24087529],[4.53389003,0.02744292,96.2397523],[4.5338895,0.0274412,96.23862356],[4.53388898,0.02743948,96.23748903],[4.53388845,0.02743775,96.23634867],[4.53388792,0.02743603,96.23520243],[4.5338874,0.02743431,96.23405027],[4.53388687,0.02743258,96.23289217],[4.53388634,0.02743086,96.23172807],[4.53388582,0.02742914,96.23055795],[4.53388529,0.02742741,96.22938175],[4.53388477,0.02742569,96.22819944],[4.53388424,0.02742397,96.22701097],[4.53388371,0.02742225,96.22581632],[4.53388319,0.02742052,96.22461543],[4.53388266,0.0274188,96.22340827],[4.53388214,0.02741708,96.2221948],[4.53388161,0.02741535,96.22097501],[4.53388108,0.02741363,96.21974904],[4.53388056,0.02741191,96.21851708],[4.53388003,0.02741018,96.2172793],[4.5338795,0.02740846,96.21603588],[4.53387898,0.02740674,96.214787],[4.53387845,0.02740502,96.21353284],[4.53387792,0.02740329,96.21227357],[4.5338774,0.02740157,96.21100937],[4.53387687,0.02739985,96.20974043],[4.53387634,0.02739812,96.20846691],[4.53387582,0.0273964,96.20718899],[4.53387529,0.02739468,96.20590685],[4.53387476,0.02739296,96.20462067],[4.53387424,0.02739123,96.20333062],[4.53387371,0.02738951,96.20203688],[4.53387318,0.02738779,96.20073961],[4.53387265,0.02738606,96.19943901],[4.53387213,0.02738434,96.19813524],[4.5338716,0.02738262,96.19682847],[4.53387107,0.0273809,96.19551889],[4.53387054,0.02737917,96.19420666],[4.53387001,0.02737745,96.19289195],[4.53386949,0.02737573,96.19157496],[4.53386896,0.02737401,96.19025583],[4.53386843,0.02737229,96.18893476],[4.5338679,0.02737056,96.1876119],[4.53386737,0.02736884,96.18628744],[4.53386684,0.02736712,96.18496154],[4.53386631,0.0273654,96.18363438],[4.53386578,0.02736368,96.18230614],[4.53386525,0.02736195,96.18097697],[4.53386472,0.02736023,96.17964705],[4.53386419,0.02735851,96.17831656],[4.53386366,0.02735679,96.17698566],[4.53386313,0.02735507,96.17565452],[4.5338626,0.02735335,96.17432332],[4.53386207,0.02735162,96.17299222],[4.53386153,0.0273499,96.1716614],[4.533861,0.02734818,96.17033103],[4.53386047,0.02734646,96.16900132],[4.53385994,0.02734474,96.16767248],[4.5338594,0.02734302,96.16634472],[4.53385887,0.0273413,96.16501826],[4.53385834,0.02733958,96.16369333],[4.53385781,0.02733786,96.16237013],[4.53385727,0.02733614,96.16104888],[4.53385674,0.02733442,96.15972982],[4.5338562,0.02733269,96.15841315],[4.53385567,0.02733097,96.1570991],[4.53385513,0.02732925,96.15578789],[4.5338546,0.02732753,96.15447974],[4.53385407,0.02732581,96.15317487],[4.53385353,0.02732409,96.1518735],[4.533853,0.02732237,96.15057585],[4.53385246,0.02732065,96.14928216],[4.53385193,0.02731893,96.14799263],[4.53385139,0.02731721,96.14670749],[4.53385086,0.02731549,96.14542697],[4.53385032,0.02731377,96.14415128],[4.53384979,0.02731205,96.14288066],[4.53384925,0.02731033,96.14161533],[4.53384871,0.02730861,96.14035551],[4.53384818,0.02730689,96.13910142],[4.53384764,0.02730517,96.13785329],[4.53384711,0.02730345,96.13661135],[4.53384657,0.02730173,96.13537581],[4.53384604,0.02730001,96.13414681],[4.5338455,0.02729829,96.13292451],[4.53384497,0.02729657,96.13170905],[4.53384443,0.02729485,96.13050056],[4.5338439,0.02729313,96.12929922],[4.53384336,0.02729141,96.1281052],[4.53384282,0.02728969,96.12691868],[4.53384229,0.02728797,96.12573982],[4.53384175,0.02728625,96.12456881],[4.53384122,0.02728453,96.12340581],[4.53384068,0.02728281,96.12225099],[4.53384014,0.02728109,96.12110454],[4.53383961,0.02727937,96.11996663],[4.53383907,0.02727765,96.11883742],[4.53383853,0.02727593,96.11771709],[4.533838,0.02727421,96.11660581],[4.53383746,0.02727249,96.11550376],[4.53383692,0.02727077,96.11441111],[4.53383639,0.02726905,96.11332803],[4.53383585,0.02726734,96.1122547],[4.53383531,0.02726562,96.11119128],[4.53383477,0.0272639,96.11013795],[4.53383424,0.02726218,96.10909489],[4.5338337,0.02726046,96.10806226],[4.53383316,0.02725874,96.10704024],[4.53383262,0.02725702,96.10602901],[4.53383208,0.0272553,96.10502876],[4.53383155,0.02725358,96.10403972],[4.53383101,0.02725186,96.10306213],[4.53383047,0.02725014,96.1020962],[4.53382993,0.02724843,96.10114218],[4.53382939,0.02724671,96.10020029],[4.53382885,0.02724499,96.09927076],[4.53382831,0.02724327,96.09835382],[4.53382777,0.02724155,96.09744969],[4.53382723,0.02723983,96.09655862],[4.53382669,0.02723811,96.09568084],[4.53382615,0.02723639,96.09481656],[4.53382561,0.02723468,96.09396603],[4.53382507,0.02723296,96.09312947],[4.53382453,0.02723124,96.09230712],[4.53382399,0.02722952,96.09149921],[4.53382345,0.0272278,96.09070596],[4.53382291,0.02722608,96.08992761],[4.53382237,0.02722436,96.0891644],[4.53382183,0.02722265,96.08841654],[4.53382129,0.02722093,96.08768427],[4.53382075,0.02721921,96.08696761],[4.53382022,0.02721749,96.08626638],[4.53381968,0.02721577,96.0855804],[4.53381914,0.02721405,96.08490948],[4.5338186,0.02721233,96.08425345],[4.53381806,0.02721061,96.08361212],[4.53381752,0.0272089,96.0829853],[4.53381698,0.02720718,96.0823728],[4.53381644,0.02720546,96.08177446],[4.5338159,0.02720374,96.08119006],[4.53381537,0.02720202,96.08061939],[4.53381483,0.0272003,96.08006221],[4.53381429,0.02719858,96.0795183],[4.53381375,0.02719686,96.07898743],[4.53381321,0.02719514,96.07846935],[4.53381268,0.02719342,96.07796386],[4.53381214,0.0271917,96.0774707],[4.5338116,0.02718998,96.07698965],[4.53381107,0.02718827,96.07652047],[4.53381053,0.02718655,96.07606295],[4.53380999,0.02718483,96.07561683],[4.53380946,0.02718311,96.0751819],[4.53380892,0.02718139,96.07475791],[4.53380839,0.02717967,96.07434465],[4.53380785,0.02717795,96.07394186],[4.53380731,0.02717623,96.07354933],[4.53380678,0.02717451,96.07316682],[4.53380624,0.02717279,96.0727941],[4.53380571,0.02717107,96.07243093],[4.53380517,0.02716935,96.07207709],[4.53380464,0.02716763,96.07173233],[4.5338041,0.02716591,96.07139643],[4.53380357,0.02716419,96.07106916],[4.53380303,0.02716247,96.07075026],[4.5338025,0.02716075,96.07043951],[4.53380196,0.02715903,96.07013667],[4.53380143,0.02715731,96.06984151],[4.5338009,0.02715559,96.06955377],[4.53380036,0.02715387,96.06927323],[4.53379983,0.02715215,96.06899966],[4.53379929,0.02715042,96.06873281],[4.53379876,0.0271487,96.06847244],[4.53379823,0.02714698,96.06821833],[4.53379769,0.02714526,96.06797023],[4.53379716,0.02714354,96.0677279],[4.53379663,0.02714182,96.06749112],[4.53379609,0.0271401,96.06725964],[4.53379556,0.02713838,96.06703323],[4.53379503,0.02713666,96.06681165],[4.53379449,0.02713494,96.06659467],[4.53379396,0.02713322,96.06638206],[4.53379343,0.0271315,96.06617356],[4.53379289,0.02712978,96.06596896],[4.53379236,0.02712806,96.06576801],[4.53379183,0.02712634,96.06557048],[4.5337913,0.02712462,96.06537614],[4.53379076,0.0271229,96.06518477],[4.53379023,0.02712117,96.06499612],[4.5337897,0.02711945,96.06480996],[4.53378916,0.02711773,96.06462608],[4.53378863,0.02711601,96.06444424],[4.5337881,0.02711429,96.0642642],[4.53378757,0.02711257,96.06408575],[4.53378703,0.02711085,96.06390864],[4.5337865,0.02710913,96.06373266],[4.53378597,0.02710741,96.06355759],[4.53378544,0.02710569,96.06338319],[4.5337849,0.02710397,96.06320924],[4.53378437,0.02710225,96.06303552],[4.53378384,0.02710053,96.06286181],[4.53378331,0.0270988,96.06268787],[4.53378277,0.02709708,96.06251349],[4.53378224,0.02709536,96.06233845],[4.53378171,0.02709364,96.06216251],[4.53378118,0.02709192,96.06198546],[4.53378065,0.0270902,96.06180708],[4.53378011,0.02708848,96.06162712],[4.53377958,0.02708676,96.06144539],[4.53377905,0.02708504,96.06126164],[4.53377852,0.02708332,96.06107566],[4.53377798,0.0270816,96.06088723],[4.53377745,0.02707988,96.06069612],[4.53377692,0.02707815,96.0605021],[4.53377639,0.02707643,96.06030496],[4.53377585,0.02707471,96.06010447],[4.53377532,0.02707299,96.05990041],[4.53377479,0.02707127,96.05969255],[4.53377425,0.02706955,96.05948068],[4.53377372,0.02706783,96.05926457],[4.53377319,0.02706611,96.059044],[4.53377266,0.02706439,96.05881873],[4.53377212,0.02706267,96.05858857],[4.53377159,0.02706095,96.05835327],[4.53377105,0.02705923,96.05811262],[4.53377052,0.02705751,96.05786639],[4.53376999,0.02705579,96.05761437],[4.53376945,0.02705407,96.05735632],[4.53376892,0.02705235,96.05709203],[4.53376838,0.02705063,96.05682128],[4.53376785,0.02704891,96.05654384],[4.53376731,0.02704719,96.0562595],[4.53376678,0.02704547,96.05596802],[4.53376624,0.02704375,96.05566919],[4.53376571,0.02704203,96.05536278],[4.53376517,0.02704031,96.05504858],[4.53376464,0.02703859,96.05472636],[4.5337641,0.02703687,96.0543959],[4.53376357,0.02703515,96.05405698],[4.53376303,0.02703343,96.05370937],[4.53376249,0.02703171,96.05335286],[4.53376195,0.02702999,96.05298722],[4.53376142,0.02702827,96.05261224],[4.53376088,0.02702655,96.05222768],[4.53376034,0.02702483,96.05183333],[4.5337598,0.02702312,96.05142896],[4.53375926,0.0270214,96.05101437],[4.53375873,0.02701968,96.05058931],[4.53375819,0.02701796,96.05015358],[4.53375765,0.02701624,96.04970694],[4.53375711,0.02701452,96.04924919],[4.53375657,0.0270128,96.04878009],[4.53375603,0.02701109,96.04829943],[4.53375549,0.02700937,96.04780699],[4.53375495,0.02700765,96.04730253],[4.53375441,0.02700593,96.04678585],[4.53375387,0.02700421,96.04625672],[4.53375333,0.02700249,96.04571492],[4.53375279,0.02700078,96.04516022],[4.53375225,0.02699906,96.04459241],[4.53375171,0.02699734,96.04401127],[4.53375117,0.02699562,96.04341657],[4.53375063,0.02699391,96.04280809],[4.5337501,0.02699219,96.04218561],[4.53374956,0.02699047,96.04154891],[4.53374902,0.02698875,96.04089776],[4.53374848,0.02698703,96.04023195],[4.53374794,0.02698531,96.03955125],[4.53374741,0.02698359,96.03885545],[4.53374687,0.02698187,96.03814431],[4.53374634,0.02698015,96.03741764],[4.5337458,0.02697843,96.03667539],[4.53374527,0.02697671,96.03591776],[4.53374473,0.02697499,96.03514492],[4.5337442,0.02697327,96.03435704],[4.53374367,0.02697155,96.03355432],[4.53374314,0.02696983,96.03273693],[4.53374261,0.02696811,96.03190505],[4.53374208,0.02696639,96.03105886],[4.53374155,0.02696466,96.03019854],[4.53374102,0.02696294,96.02932427],[4.53374049,0.02696122,96.02843624],[4.53373997,0.0269595,96.02753462],[4.53373944,0.02695777,96.02661959],[4.53373892,0.02695605,96.02569133],[4.53373839,0.02695433,96.02475002],[4.53373787,0.0269526,96.02379584],[4.53373735,0.02695088,96.02282898],[4.53373683,0.02694916,96.0218496],[4.5337363,0.02694743,96.02085789],[4.53373578,0.02694571,96.01985403],[4.53373526,0.02694398,96.01883819],[4.53373474,0.02694226,96.01781057],[4.53373422,0.02694053,96.01677132],[4.5337337,0.02693881,96.01572064],[4.53373319,0.02693708,96.01465869],[4.53373267,0.02693536,96.01358567],[4.53373215,0.02693363,96.01250174],[4.53373163,0.02693191,96.01140709],[4.53373111,0.02693018,96.01030192],[4.53373059,0.02692846,96.0091864],[4.53373008,0.02692673,96.00806074],[4.53372956,0.02692501,96.00692513],[4.53372904,0.02692328,96.00577974],[4.53372852,0.02692156,96.00462479],[4.533728,0.02691983,96.00346045],[4.53372748,0.0269181,96.00228692],[4.53372696,0.02691638,96.00110439],[4.53372644,0.02691465,95.99991305],[4.53372592,0.02691293,95.9987131],[4.5337254,0.02691121,95.99750471],[4.53372488,0.02690948,95.99628808],[4.53372436,0.02690776,95.99506337],[4.53372384,0.02690603,95.99383078],[4.53372332,0.02690431,95.99259048],[4.5337228,0.02690258,95.99134266],[4.53372228,0.02690086,95.9900875],[4.53372176,0.02689913,95.98882517],[4.53372124,0.02689741,95.98755587],[4.53372071,0.02689569,95.98627976],[4.53372019,0.02689396,95.98499704],[4.53371967,0.02689224,95.98370788],[4.53371915,0.02689051,95.98241247],[4.53371862,0.02688879,95.98111098],[4.5337181,0.02688707,95.9798036],[4.53371758,0.02688534,95.97849051],[4.53371706,0.02688362,95.97717189],[4.53371653,0.02688189,95.97584791],[4.53371601,0.02688017,95.97451878],[4.53371549,0.02687845,95.97318465],[4.53371496,0.02687672,95.97184572],[4.53371444,0.026875,95.97050217],[4.53371392,0.02687328,95.96915418],[4.53371339,0.02687155,95.96780192],[4.53371287,0.02686983,95.96644559],[4.53371235,0.0268681,95.96508535],[4.53371182,0.02686638,95.9637214],[4.5337113,0.02686466,95.96235392],[4.53371078,0.02686293,95.96098308],[4.53371025,0.02686121,95.95960907],[4.53370973,0.02685949,95.95823207],[4.5337092,0.02685776,95.95685225],[4.53370868,0.02685604,95.95546981],[4.53370816,0.02685432,95.95408492],[4.53370764,0.02685259,95.95269777],[4.53370711,0.02685087,95.95130853],[4.53370659,0.02684914,95.94991739],[4.53370607,0.02684742,95.94852453],[4.53370554,0.0268457,95.94713013],[4.53370502,0.02684397,95.94573437],[4.5337045,0.02684225,95.94433743],[4.53370398,0.02684052,95.94293951],[4.53370345,0.0268388,95.94154076],[4.53370293,0.02683707,95.94014139],[4.53370241,0.02683535,95.93874157],[4.53370189,0.02683363,95.93734148],[4.53370137,0.0268319,95.9359413],[4.53370085,0.02683018,95.93454122],[4.53370033,0.02682845,95.93314141],[4.53369981,0.02682673,95.93174207],[4.53369928,0.026825,95.93034337],[4.53369876,0.02682328,95.92894549],[4.53369824,0.02682155,95.92754861],[4.53369773,0.02681983,95.92615292],[4.53369721,0.0268181,95.9247586],[4.53369669,0.02681638,95.92336584],[4.53369617,0.02681465,95.9219748],[4.53369565,0.02681293,95.92058568],[4.53369513,0.0268112,95.91919866],[4.53369461,0.02680948,95.91781392],[4.53369409,0.02680775,95.91643164],[4.53369357,0.02680603,95.915052],[4.53369306,0.0268043,95.91367519],[4.53369254,0.02680258,95.91230139],[4.53369202,0.02680085,95.91093078],[4.5336915,0.02679913,95.90956355],[4.53369098,0.0267974,95.90819987],[4.53369046,0.02679568,95.90683992],[4.53368994,0.02679395,95.9054839],[4.53368942,0.02679223,95.90413199],[4.5336889,0.0267905,95.90278436],[4.53368838,0.02678878,95.9014412],[4.53368786,0.02678705,95.90010269],[4.53368734,0.02678533,95.89876902],[4.53368681,0.0267836,95.89744036],[4.53368629,0.02678188,95.89611691],[4.53368577,0.02678016,95.89479884],[4.53368524,0.02677843,95.89348633],[4.53368472,0.02677671,95.89217958],[4.53368419,0.02677498,95.89087875],[4.53368367,0.02677326,95.88958405],[4.53368314,0.02677154,95.88829564],[4.53368262,0.02676981,95.88701371],[4.5336821,0.02676809,95.88573845],[4.53368157,0.02676637,95.88447004],[4.53368105,0.02676464,95.88320866],[4.53368053,0.02676292,95.8819545],[4.53368001,0.02676119,95.88070774],[4.53367949,0.02675947,95.87946856],[4.53367898,0.02675774,95.87823714],[4.53367847,0.02675601,95.87701368],[4.53367796,0.02675428,95.87579835],[4.53367745,0.02675256,95.87459134],[4.53367694,0.02675083,95.87339279],[4.53367643,0.0267491,95.87220269],[4.53367591,0.02674737,95.87102099],[4.53367538,0.02674565,95.86984762],[4.53367485,0.02674393,95.86868254],[4.5336743,0.02674221,95.86752568],[4.53367405,0.02674143,95.86700215]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-5,"type":"none","predecessorId":0}},{"geometry":{"coordinates":[[4.53418181,0.02824851,96.54483368],[4.53418135,0.02824677,96.54398301],[4.53418087,0.02824504,96.54311075],[4.53418039,0.0282433,96.54222053],[4.5341799,0.02824156,96.54131597],[4.53417941,0.02823983,96.54040074],[4.53417891,0.0282381,96.53947852],[4.53417841,0.02823637,96.53855299],[4.53417791,0.02823464,96.53762786],[4.5341774,0.02823291,96.53670685],[4.5341769,0.02823118,96.53579368],[4.5341764,0.02822945,96.53489139],[4.5341759,0.02822772,96.53400009],[4.53417541,0.02822598,96.53311919],[4.53417491,0.02822425,96.53224809],[4.53417442,0.02822252,96.53138618],[4.53417393,0.02822078,96.53053286],[4.53417344,0.02821905,96.52968752],[4.53417295,0.02821731,96.52884956],[4.53417246,0.02821558,96.52801836],[4.53417197,0.02821384,96.5271933],[4.53417148,0.02821211,96.52637378],[4.53417099,0.02821037,96.52555917],[4.5341705,0.02820864,96.52474886],[4.53417001,0.0282069,96.52394234],[4.53416952,0.02820517,96.52313948],[4.53416903,0.02820343,96.5223403],[4.53416854,0.0282017,96.52154478],[4.53416805,0.02819996,96.52075293],[4.53416756,0.02819823,96.51996473],[4.53416707,0.02819649,96.51918018],[4.53416658,0.02819476,96.51839929],[4.53416608,0.02819302,96.51762204],[4.53416559,0.02819129,96.51684844],[4.5341651,0.02818956,96.51607848],[4.53416461,0.02818782,96.51531215],[4.53416411,0.02818609,96.51454946],[4.53416362,0.02818435,96.51379041],[4.53416313,0.02818262,96.51303498],[4.53416264,0.02818089,96.51228318],[4.53416214,0.02817915,96.51153501],[4.53416165,0.02817742,96.51079046],[4.53416115,0.02817569,96.51004953],[4.53416066,0.02817395,96.50931223],[4.53416017,0.02817222,96.50857854],[4.53415967,0.02817048,96.50784846],[4.53415918,0.02816875,96.507122],[4.53415868,0.02816702,96.50639916],[4.53415819,0.02816528,96.50567993],[4.53415769,0.02816355,96.50496428],[4.5341572,0.02816182,96.50425205],[4.5341567,0.02816008,96.50354307],[4.5341562,0.02815835,96.50283715],[4.53415571,0.02815662,96.5021341],[4.53415521,0.02815488,96.50143374],[4.53415471,0.02815315,96.5007359],[4.53415422,0.02815142,96.50004037],[4.53415372,0.02814969,96.49934699],[4.53415322,0.02814795,96.49865556],[4.53415272,0.02814622,96.4979659],[4.53415222,0.02814449,96.49727784],[4.53415172,0.02814276,96.49659118],[4.53415122,0.02814103,96.49590575],[4.53415072,0.02813929,96.49522135],[4.53415021,0.02813756,96.49453782],[4.53414971,0.02813583,96.49385501],[4.53414921,0.0281341,96.49317294],[4.5341487,0.02813237,96.49249169],[4.53414819,0.02813064,96.49181133],[4.53414769,0.02812891,96.49113193],[4.53414718,0.02812718,96.49045356],[4.53414667,0.02812545,96.48977629],[4.53414616,0.02812372,96.4891002],[4.53414565,0.028122,96.48842535],[4.53414514,0.02812027,96.48775182],[4.53414463,0.02811854,96.48707968],[4.53414411,0.02811681,96.486409],[4.5341436,0.02811508,96.48573985],[4.53414309,0.02811336,96.48507231],[4.53414257,0.02811163,96.48440644],[4.53414206,0.0281099,96.48374236],[4.53414154,0.02810817,96.48308017],[4.53414103,0.02810645,96.48242],[4.53414051,0.02810472,96.48176197],[4.53414,0.02810299,96.48110621],[4.53413948,0.02810126,96.48045285],[4.53413896,0.02809954,96.47980199],[4.53413845,0.02809781,96.47915377],[4.53413793,0.02809608,96.4785083],[4.53413741,0.02809436,96.47786572],[4.5341369,0.02809263,96.47722613],[4.53413638,0.0280909,96.47658967],[4.53413586,0.02808918,96.47595646],[4.53413535,0.02808745,96.47532661],[4.53413483,0.02808572,96.47470024],[4.53413431,0.028084,96.47407749],[4.5341338,0.02808227,96.47345846],[4.53413328,0.02808054,96.47284328],[4.53413277,0.02807881,96.47223208],[4.53413225,0.02807709,96.47162496],[4.53413174,0.02807536,96.47102205],[4.53413122,0.02807363,96.47042346],[4.53413071,0.0280719,96.46982929],[4.5341302,0.02807018,96.46923946],[4.53412969,0.02806845,96.46865391],[4.53412917,0.02806672,96.46807258],[4.53412866,0.02806499,96.46749543],[4.53412815,0.02806326,96.4669224],[4.53412764,0.02806153,96.46635345],[4.53412713,0.02805981,96.46578854],[4.53412662,0.02805808,96.4652276],[4.53412611,0.02805635,96.4646706],[4.5341256,0.02805462,96.46411747],[4.5341251,0.02805289,96.46356819],[4.53412459,0.02805116,96.46302268],[4.53412408,0.02804943,96.46248092],[4.53412357,0.0280477,96.46194284],[4.53412307,0.02804597,96.4614084],[4.53412256,0.02804424,96.46087755],[4.53412206,0.02804251,96.46035023],[4.53412155,0.02804078,96.45982632],[4.53412104,0.02803905,96.4593056],[4.53412054,0.02803732,96.45878784],[4.53412004,0.02803559,96.45827283],[4.53411953,0.02803386,96.45776035],[4.53411903,0.02803213,96.45725018],[4.53411852,0.0280304,96.45674211],[4.53411802,0.02802867,96.45623591],[4.53411751,0.02802694,96.45573138],[4.53411701,0.02802521,96.45522829],[4.5341165,0.02802348,96.45472644],[4.53411599,0.02802175,96.45422561],[4.53411549,0.02802002,96.45372559],[4.53411498,0.02801829,96.45322617],[4.53411447,0.02801656,96.45272714],[4.53411397,0.02801483,96.45222828],[4.53411346,0.0280131,96.4517294],[4.53411295,0.02801137,96.45123028],[4.53411244,0.02800964,96.45073072],[4.53411193,0.02800791,96.45023051],[4.53411142,0.02800618,96.44972942],[4.5341109,0.02800445,96.44922715],[4.53411039,0.02800273,96.44872337],[4.53410987,0.028001,96.44821776],[4.53410936,0.02799927,96.44770999],[4.53410884,0.02799755,96.4471998],[4.53410832,0.02799582,96.44668711],[4.5341078,0.02799409,96.44617189],[4.53410728,0.02799237,96.44565412],[4.53410675,0.02799065,96.44513377],[4.53410623,0.02798892,96.44461087],[4.5341057,0.0279872,96.44408565],[4.53410517,0.02798547,96.44355842],[4.53410464,0.02798375,96.44302944],[4.53410411,0.02798203,96.44249903],[4.53410358,0.02798031,96.44196745],[4.53410305,0.02797858,96.441435],[4.53410252,0.02797686,96.44090196],[4.53410198,0.02797514,96.44036861],[4.53410145,0.02797342,96.43983524],[4.53410091,0.0279717,96.43930213],[4.53410038,0.02796998,96.43876956],[4.53409984,0.02796826,96.43823781],[4.53409931,0.02796654,96.43770715],[4.53409877,0.02796481,96.43717786],[4.53409824,0.02796309,96.43665022],[4.5340977,0.02796137,96.43612446],[4.53409717,0.02795965,96.43560068],[4.53409663,0.02795793,96.43507895],[4.5340961,0.02795621,96.43455932],[4.53409556,0.02795449,96.43404186],[4.53409503,0.02795277,96.43352663],[4.5340945,0.02795105,96.43301368],[4.53409396,0.02794932,96.43250309],[4.53409343,0.0279476,96.4319949],[4.5340929,0.02794588,96.43148917],[4.53409236,0.02794416,96.43098598],[4.53409183,0.02794244,96.43048536],[4.5340913,0.02794071,96.42998739],[4.53409077,0.02793899,96.42949211],[4.53409024,0.02793727,96.42899959],[4.53408971,0.02793555,96.42850982],[4.53408918,0.02793382,96.42802252],[4.53408865,0.0279321,96.42753736],[4.53408812,0.02793038,96.42705401],[4.53408759,0.02792866,96.42657226],[4.53408706,0.02792693,96.426092],[4.53408654,0.02792521,96.42561313],[4.53408601,0.02792349,96.42513556],[4.53408548,0.02792176,96.42465919],[4.53408495,0.02792004,96.42418392],[4.53408442,0.02791832,96.42370966],[4.5340839,0.02791659,96.4232363],[4.53408337,0.02791487,96.42276375],[4.53408284,0.02791315,96.42229192],[4.53408231,0.02791142,96.4218207],[4.53408178,0.0279097,96.42135001],[4.53408125,0.02790798,96.42087975],[4.53408072,0.02790626,96.42040982],[4.5340802,0.02790453,96.41994013],[4.53407967,0.02790281,96.41947058],[4.53407914,0.02790109,96.41900109],[4.53407861,0.02789936,96.41853156],[4.53407808,0.02789764,96.4180619],[4.53407755,0.02789592,96.41759201],[4.53407702,0.0278942,96.4171218],[4.53407648,0.02789247,96.41665125],[4.53407595,0.02789075,96.41618063],[4.53407542,0.02788903,96.41571039],[4.53407489,0.02788731,96.41524095],[4.53407436,0.02788559,96.41477276],[4.53407383,0.02788386,96.41430613],[4.5340733,0.02788214,96.4138413],[4.53407277,0.02788042,96.4133785],[4.53407224,0.0278787,96.41291794],[4.53407171,0.02787697,96.41245985],[4.53407118,0.02787525,96.41200445],[4.53407065,0.02787353,96.41155195],[4.53407013,0.0278718,96.41110257],[4.5340696,0.02787008,96.41065653],[4.53406908,0.02786835,96.41021404],[4.53406856,0.02786663,96.40977532],[4.53406804,0.0278649,96.40934057],[4.53406752,0.02786318,96.40890991],[4.534067,0.02786145,96.40848307],[4.53406648,0.02785972,96.40805966],[4.53406597,0.027858,96.40763922],[4.53406545,0.02785627,96.40722128],[4.53406494,0.02785454,96.40680536],[4.53406442,0.02785282,96.40639099],[4.53406391,0.02785109,96.40597771],[4.53406339,0.02784936,96.40556504],[4.53406288,0.02784763,96.40515253],[4.53406237,0.0278459,96.40473971],[4.53406185,0.02784418,96.40432613],[4.53406134,0.02784245,96.40391132],[4.53406083,0.02784072,96.40349484],[4.53406031,0.02783899,96.40307624],[4.53405979,0.02783727,96.40265506],[4.53405928,0.02783554,96.40223086],[4.53405876,0.02783382,96.4018032],[4.53405824,0.02783209,96.40137164],[4.53405771,0.02783036,96.40093574],[4.53405719,0.02782864,96.40049516],[4.53405667,0.02782692,96.40005001],[4.53405614,0.02782519,96.3996005],[4.53405561,0.02782347,96.39914692],[4.53405508,0.02782175,96.39868952],[4.53405455,0.02782002,96.39822859],[4.53405402,0.0278183,96.39776439],[4.53405349,0.02781658,96.39729718],[4.53405295,0.02781486,96.39682723],[4.53405242,0.02781314,96.39635479],[4.53405188,0.02781142,96.39588014],[4.53405134,0.0278097,96.39540353],[4.53405081,0.02780798,96.39492522],[4.53405027,0.02780626,96.39444546],[4.53404973,0.02780454,96.39396451],[4.53404919,0.02780282,96.39348262],[4.53404866,0.0278011,96.39300004],[4.53404812,0.02779938,96.39251702],[4.53404758,0.02779766,96.39203369],[4.53404704,0.02779594,96.39155007],[4.5340465,0.02779422,96.39106617],[4.53404597,0.0277925,96.39058201],[4.53404543,0.02779078,96.3900976],[4.53404489,0.02778906,96.38961297],[4.53404435,0.02778734,96.38912812],[4.53404382,0.02778562,96.38864306],[4.53404328,0.02778389,96.38815782],[4.53404274,0.02778217,96.38767241],[4.5340422,0.02778045,96.38718683],[4.53404167,0.02777873,96.38670111],[4.53404113,0.02777701,96.38621525],[4.53404059,0.02777529,96.38572927],[4.53404006,0.02777357,96.38524318],[4.53403952,0.02777185,96.38475692],[4.53403899,0.02777013,96.38427046],[4.53403845,0.02776841,96.38378374],[4.53403792,0.02776669,96.38329671],[4.53403738,0.02776497,96.38280932],[4.53403685,0.02776325,96.38232152],[4.53403631,0.02776153,96.38183324],[4.53403578,0.0277598,96.38134445],[4.53403524,0.02775808,96.38085508],[4.53403471,0.02775636,96.3803651],[4.53403417,0.02775464,96.37987443],[4.53403364,0.02775292,96.37938305],[4.5340331,0.0277512,96.37889088],[4.53403257,0.02774948,96.37839789],[4.53403204,0.02774776,96.37790401],[4.5340315,0.02774604,96.37740921],[4.53403097,0.02774431,96.37691343],[4.53403043,0.02774259,96.37641661],[4.5340299,0.02774087,96.37591871],[4.53402937,0.02773915,96.37541969],[4.53402883,0.02773743,96.37491947],[4.5340283,0.02773571,96.37441801],[4.53402776,0.02773399,96.37391525],[4.53402723,0.02773226,96.37341114],[4.53402669,0.02773054,96.37290562],[4.53402616,0.02772882,96.37239863],[4.53402563,0.0277271,96.37189012],[4.53402509,0.02772538,96.37138003],[4.53402456,0.02772366,96.37086831],[4.53402402,0.02772194,96.3703549],[4.53402349,0.02772022,96.36983976],[4.53402295,0.0277185,96.36932281],[4.53402242,0.02771677,96.36880402],[4.53402188,0.02771505,96.36828333],[4.53402135,0.02771333,96.36776073],[4.53402081,0.02771161,96.36723619],[4.53402027,0.02770989,96.36670971],[4.53401974,0.02770817,96.36618128],[4.5340192,0.02770645,96.36565088],[4.53401867,0.02770473,96.36511851],[4.53401813,0.02770301,96.36458414],[4.53401759,0.02770129,96.36404776],[4.53401706,0.02769957,96.36350937],[4.53401652,0.02769785,96.36296894],[4.53401598,0.02769613,96.36242647],[4.53401545,0.02769441,96.36188193],[4.53401491,0.02769269,96.36133532],[4.53401437,0.02769097,96.36078662],[4.53401383,0.02768925,96.36023582],[4.5340133,0.02768753,96.35968289],[4.53401276,0.02768581,96.35912783],[4.53401222,0.02768409,96.35857062],[4.53401168,0.02768237,96.35801125],[4.53401115,0.02768065,96.35744972],[4.53401061,0.02767893,96.35688605],[4.53401007,0.02767721,96.35632026],[4.53400953,0.02767549,96.35575237],[4.534009,0.02767377,96.35518239],[4.53400846,0.02767205,96.35461034],[4.53400792,0.02767033,96.35403617],[4.53400738,0.02766861,96.35345987],[4.53400684,0.02766689,96.35288139],[4.53400631,0.02766517,96.35230071],[4.53400577,0.02766344,96.3517178],[4.53400523,0.02766172,96.35113262],[4.53400469,0.02766,96.35054516],[4.53400416,0.02765828,96.34995537],[4.53400362,0.02765656,96.34936323],[4.53400308,0.02765484,96.3487687],[4.53400254,0.02765312,96.34817177],[4.53400201,0.0276514,96.34757239],[4.53400147,0.02764968,96.34697054],[4.53400093,0.02764796,96.34636619],[4.53400039,0.02764624,96.3457593],[4.53399986,0.02764452,96.34514985],[4.53399932,0.0276428,96.34453781],[4.53399878,0.02764108,96.34392315],[4.53399824,0.02763936,96.34330583],[4.53399771,0.02763764,96.34268583],[4.53399717,0.02763592,96.34206312],[4.53399663,0.0276342,96.34143767],[4.5339961,0.02763248,96.34080944],[4.53399556,0.02763076,96.34017841],[4.53399502,0.02762904,96.33954454],[4.53399448,0.02762732,96.33890782],[4.53399395,0.0276256,96.3382682],[4.53399341,0.02762388,96.33762566],[4.53399287,0.02762216,96.33698016],[4.53399233,0.02762044,96.33633168],[4.5339918,0.02761872,96.33568019],[4.53399126,0.027617,96.33502566],[4.53399072,0.02761528,96.33436806],[4.53399018,0.02761356,96.33370735],[4.53398965,0.02761184,96.33304351],[4.53398911,0.02761012,96.33237651],[4.53398857,0.0276084,96.33170631],[4.53398803,0.02760668,96.33103289],[4.5339875,0.02760496,96.33035622],[4.53398696,0.02760324,96.32967627],[4.53398642,0.02760152,96.32899301],[4.53398588,0.0275998,96.3283064],[4.53398535,0.02759808,96.32761642],[4.53398481,0.02759636,96.32692304],[4.53398427,0.02759464,96.32622623],[4.53398373,0.02759292,96.32552595],[4.5339832,0.0275912,96.32482218],[4.53398266,0.02758948,96.32411489],[4.53398212,0.02758776,96.32340405],[4.53398158,0.02758604,96.32268962],[4.53398104,0.02758432,96.32197159],[4.53398051,0.0275826,96.32124991],[4.53397997,0.02758088,96.32052456],[4.53397943,0.02757916,96.3197955],[4.53397889,0.02757744,96.31906272],[4.53397836,0.02757572,96.31832617],[4.53397782,0.027574,96.31758582],[4.53397728,0.02757228,96.31684165],[4.53397674,0.02757056,96.3160936],[4.5339762,0.02756884,96.31534165],[4.53397566,0.02756712,96.31458576],[4.53397513,0.0275654,96.31382589],[4.53397459,0.02756368,96.313062],[4.53397405,0.02756196,96.31229406],[4.53397351,0.02756024,96.31152203],[4.53397297,0.02755852,96.31074588],[4.53397243,0.0275568,96.30996556],[4.5339719,0.02755508,96.30918104],[4.53397136,0.02755336,96.30839229],[4.53397082,0.02755164,96.30759927],[4.53397028,0.02754992,96.30680194],[4.53396974,0.0275482,96.30600026],[4.5339692,0.02754648,96.3051942],[4.53396866,0.02754476,96.30438371],[4.53396812,0.02754304,96.30356877],[4.53396758,0.02754132,96.30274934],[4.53396704,0.0275396,96.30192537],[4.5339665,0.02753789,96.30109684],[4.53396596,0.02753617,96.3002637],[4.53396542,0.02753445,96.29942592],[4.53396488,0.02753273,96.29858347],[4.53396434,0.02753101,96.29773635],[4.5339638,0.02752929,96.2968846],[4.53396326,0.02752757,96.29602823],[4.53396272,0.02752585,96.29516726],[4.53396218,0.02752413,96.29430171],[4.53396164,0.02752241,96.2934316],[4.5339611,0.02752069,96.29255696],[4.53396056,0.02751897,96.2916778],[4.53396002,0.02751726,96.29079414],[4.53395948,0.02751554,96.28990601],[4.53395894,0.02751382,96.28901343],[4.5339584,0.0275121,96.28811641],[4.53395786,0.02751038,96.28721499],[4.53395732,0.02750866,96.28630917],[4.53395678,0.02750694,96.28539898],[4.53395624,0.02750522,96.28448445],[4.5339557,0.0275035,96.2835656],[4.53395516,0.02750178,96.28264244],[4.53395463,0.02750006,96.28171501],[4.53395409,0.02749834,96.28078332],[4.53395355,0.02749662,96.27984737],[4.53395301,0.0274949,96.27890714],[4.53395247,0.02749318,96.2779626],[4.53395194,0.02749146,96.27701372],[4.5339514,0.02748974,96.27606048],[4.53395086,0.02748802,96.27510285],[4.53395033,0.0274863,96.27414081],[4.53394979,0.02748458,96.27317433],[4.53394926,0.02748286,96.27220339],[4.53394872,0.02748114,96.27122796],[4.53394819,0.02747942,96.27024801],[4.53394765,0.0274777,96.26926352],[4.53394712,0.02747598,96.26827447],[4.53394658,0.02747425,96.26728083],[4.53394605,0.02747253,96.26628257],[4.53394552,0.02747081,96.26527968],[4.53394498,0.02746909,96.26427212],[4.53394445,0.02746737,96.26325987],[4.53394392,0.02746565,96.26224292],[4.53394339,0.02746393,96.26122122],[4.53394285,0.0274622,96.26019477],[4.53394232,0.02746048,96.25916354],[4.53394179,0.02745876,96.25812749],[4.53394126,0.02745704,96.25708662],[4.53394073,0.02745532,96.25604089],[4.5339402,0.02745359,96.25499028],[4.53393967,0.02745187,96.25393478],[4.53393914,0.02745015,96.25287435],[4.53393861,0.02744843,96.25180897],[4.53393808,0.0274467,96.25073862],[4.53393755,0.02744498,96.24966329],[4.53393702,0.02744326,96.24858293],[4.5339365,0.02744153,96.24749755],[4.53393597,0.02743981,96.24640709],[4.53393544,0.02743809,96.24531146],[4.53393491,0.02743637,96.24421058],[4.53393439,0.02743464,96.24310432],[4.53393386,0.02743292,96.24199259],[4.53393333,0.0274312,96.24087529],[4.5339328,0.02742947,96.2397523],[4.53393228,0.02742775,96.23862356],[4.53393175,0.02742603,96.23748903],[4.53393122,0.0274243,96.23634867],[4.5339307,0.02742258,96.23520243],[4.53393017,0.02742086,96.23405027],[4.53392964,0.02741913,96.23289217],[4.53392912,0.02741741,96.23172807],[4.53392859,0.02741568,96.23055795],[4.53392807,0.02741396,96.22938175],[4.53392754,0.02741224,96.22819944],[4.53392701,0.02741051,96.22701097],[4.53392649,0.02740879,96.22581632],[4.53392596,0.02740707,96.22461543],[4.53392543,0.02740534,96.22340827],[4.53392491,0.02740362,96.2221948],[4.53392438,0.0274019,96.22097501],[4.53392385,0.02740017,96.21974904],[4.53392333,0.02739845,96.21851708],[4.5339228,0.02739673,96.2172793],[4.53392227,0.027395,96.21603588],[4.53392175,0.02739328,96.214787],[4.53392122,0.02739156,96.21353284],[4.53392069,0.02738983,96.21227357],[4.53392017,0.02738811,96.21100937],[4.53391964,0.02738639,96.20974043],[4.53391911,0.02738466,96.20846691],[4.53391859,0.02738294,96.20718899],[4.53391806,0.02738122,96.20590685],[4.53391753,0.02737949,96.20462067],[4.53391701,0.02737777,96.20333062],[4.53391648,0.02737605,96.20203688],[4.53391595,0.02737432,96.20073961],[4.53391542,0.0273726,96.19943901],[4.5339149,0.02737088,96.19813524],[4.53391437,0.02736915,96.19682847],[4.53391384,0.02736743,96.19551889],[4.53391331,0.02736571,96.19420666],[4.53391278,0.02736399,96.19289195],[4.53391225,0.02736226,96.19157496],[4.53391173,0.02736054,96.19025583],[4.5339112,0.02735882,96.18893476],[4.53391067,0.0273571,96.1876119],[4.53391014,0.02735537,96.18628744],[4.53390961,0.02735365,96.18496154],[4.53390908,0.02735193,96.18363438],[4.53390855,0.02735021,96.18230614],[4.53390802,0.02734848,96.18097697],[4.53390749,0.02734676,96.17964705],[4.53390696,0.02734504,96.17831656],[4.53390643,0.02734332,96.17698566],[4.5339059,0.02734159,96.17565452],[4.53390536,0.02733987,96.17432332],[4.53390483,0.02733815,96.17299222],[4.5339043,0.02733643,96.1716614],[4.53390377,0.02733471,96.17033103],[4.53390324,0.02733299,96.16900132],[4.5339027,0.02733126,96.16767248],[4.53390217,0.02732954,96.16634472],[4.53390164,0.02732782,96.16501826],[4.53390111,0.0273261,96.16369333],[4.53390057,0.02732438,96.16237013],[4.53390004,0.02732266,96.16104888],[4.5338995,0.02732094,96.15972982],[4.53389897,0.02731922,96.15841315],[4.53389844,0.0273175,96.1570991],[4.5338979,0.02731577,96.15578789],[4.53389737,0.02731405,96.15447974],[4.53389683,0.02731233,96.15317487],[4.5338963,0.02731061,96.1518735],[4.53389576,0.02730889,96.15057585],[4.53389523,0.02730717,96.14928216],[4.53389469,0.02730545,96.14799263],[4.53389416,0.02730373,96.14670749],[4.53389362,0.02730201,96.14542697],[4.53389309,0.02730029,96.14415128],[4.53389255,0.02729857,96.14288066],[4.53389202,0.02729685,96.14161533],[4.53389148,0.02729513,96.14035551],[4.53389095,0.02729341,96.13910142],[4.53389041,0.02729168,96.13785329],[4.53388988,0.02728996,96.13661135],[4.53388934,0.02728824,96.13537581],[4.53388881,0.02728652,96.13414681],[4.53388827,0.0272848,96.13292451],[4.53388774,0.02728308,96.13170905],[4.5338872,0.02728136,96.13050056],[4.53388666,0.02727964,96.12929922],[4.53388613,0.02727792,96.1281052],[4.53388559,0.0272762,96.12691868],[4.53388506,0.02727448,96.12573982],[4.53388452,0.02727276,96.12456881],[4.53388399,0.02727104,96.12340581],[4.53388345,0.02726932,96.12225099],[4.53388291,0.0272676,96.12110454],[4.53388238,0.02726588,96.11996663],[4.53388184,0.02726416,96.11883742],[4.53388131,0.02726244,96.11771709],[4.53388077,0.02726072,96.11660581],[4.53388023,0.027259,96.11550376],[4.5338797,0.02725728,96.11441111],[4.53387916,0.02725556,96.11332803],[4.53387862,0.02725384,96.1122547],[4.53387808,0.02725212,96.11119128],[4.53387755,0.0272504,96.11013795],[4.53387701,0.02724868,96.10909489],[4.53387647,0.02724696,96.10806226],[4.53387593,0.02724524,96.10704024],[4.5338754,0.02724352,96.10602901],[4.53387486,0.0272418,96.10502876],[4.53387432,0.02724008,96.10403972],[4.53387378,0.02723836,96.10306213],[4.53387324,0.02723664,96.1020962],[4.5338727,0.02723492,96.10114218],[4.53387217,0.0272332,96.10020029],[4.53387163,0.02723148,96.09927076],[4.53387109,0.02722976,96.09835382],[4.53387055,0.02722804,96.09744969],[4.53387001,0.02722632,96.09655862],[4.53386947,0.0272246,96.09568084],[4.53386893,0.02722288,96.09481656],[4.53386839,0.02722116,96.09396603],[4.53386785,0.02721945,96.09312947],[4.53386731,0.02721773,96.09230712],[4.53386677,0.02721601,96.09149921],[4.53386623,0.02721429,96.09070596],[4.53386569,0.02721257,96.08992761],[4.53386515,0.02721085,96.0891644],[4.53386461,0.02720913,96.08841654],[4.53386407,0.02720741,96.08768427],[4.53386354,0.02720569,96.08696761],[4.533863,0.02720397,96.08626638],[4.53386246,0.02720225,96.0855804],[4.53386192,0.02720053,96.08490948],[4.53386138,0.02719881,96.08425345],[4.53386084,0.02719709,96.08361212],[4.5338603,0.02719537,96.0829853],[4.53385976,0.02719366,96.0823728],[4.53385922,0.02719194,96.08177446],[4.53385869,0.02719022,96.08119006],[4.53385815,0.0271885,96.08061939],[4.53385761,0.02718678,96.08006221],[4.53385707,0.02718506,96.0795183],[4.53385654,0.02718334,96.07898743],[4.533856,0.02718162,96.07846935],[4.53385546,0.0271799,96.07796386],[4.53385492,0.02717818,96.0774707],[4.53385439,0.02717646,96.07698965],[4.53385385,0.02717474,96.07652047],[4.53385331,0.02717302,96.07606295],[4.53385278,0.0271713,96.07561683],[4.53385224,0.02716958,96.0751819],[4.5338517,0.02716786,96.07475791],[4.53385117,0.02716614,96.07434465],[4.53385063,0.02716442,96.07394186],[4.5338501,0.0271627,96.07354933],[4.53384956,0.02716097,96.07316682],[4.53384903,0.02715925,96.0727941],[4.53384849,0.02715753,96.07243093],[4.53384795,0.02715581,96.07207709],[4.53384742,0.02715409,96.07173233],[4.53384688,0.02715237,96.07139643],[4.53384635,0.02715065,96.07106916],[4.53384581,0.02714893,96.07075026],[4.53384528,0.02714721,96.07043951],[4.53384475,0.02714549,96.07013667],[4.53384421,0.02714377,96.06984151],[4.53384368,0.02714205,96.06955377],[4.53384314,0.02714033,96.06927323],[4.53384261,0.02713861,96.06899966],[4.53384207,0.02713689,96.06873281],[4.53384154,0.02713516,96.06847244],[4.533841,0.02713344,96.06821833],[4.53384047,0.02713172,96.06797023],[4.53383994,0.02713,96.0677279],[4.5338394,0.02712828,96.06749112],[4.53383887,0.02712656,96.06725964],[4.53383834,0.02712484,96.06703323],[4.5338378,0.02712312,96.06681165],[4.53383727,0.0271214,96.06659467],[4.53383673,0.02711968,96.06638206],[4.5338362,0.02711796,96.06617356],[4.53383567,0.02711623,96.06596896],[4.53383513,0.02711451,96.06576801],[4.5338346,0.02711279,96.06557048],[4.53383407,0.02711107,96.06537614],[4.53383353,0.02710935,96.06518477],[4.533833,0.02710763,96.06499612],[4.53383246,0.02710591,96.06480996],[4.53383193,0.02710419,96.06462608],[4.5338314,0.02710247,96.06444424],[4.53383086,0.02710075,96.0642642],[4.53383033,0.02709902,96.06408575],[4.5338298,0.0270973,96.06390864],[4.53382926,0.02709558,96.06373266],[4.53382873,0.02709386,96.06355759],[4.53382819,0.02709214,96.06338319],[4.53382766,0.02709042,96.06320924],[4.53382713,0.0270887,96.06303552],[4.53382659,0.02708698,96.06286181],[4.53382606,0.02708526,96.06268787],[4.53382553,0.02708354,96.06251349],[4.53382499,0.02708181,96.06233845],[4.53382446,0.02708009,96.06216251],[4.53382392,0.02707837,96.06198546],[4.53382339,0.02707665,96.06180708],[4.53382286,0.02707493,96.06162712],[4.53382232,0.02707321,96.06144539],[4.53382179,0.02707149,96.06126164],[4.53382125,0.02706977,96.06107566],[4.53382072,0.02706805,96.06088723],[4.53382019,0.02706633,96.06069612],[4.53381965,0.02706461,96.0605021],[4.53381912,0.02706288,96.06030496],[4.53381858,0.02706116,96.06010447],[4.53381805,0.02705944,96.05990041],[4.53381752,0.02705772,96.05969255],[4.53381698,0.027056,96.05948068],[4.53381645,0.02705428,96.05926457],[4.53381591,0.02705256,96.059044],[4.53381538,0.02705084,96.05881873],[4.53381484,0.02704912,96.05858857],[4.53381431,0.0270474,96.05835327],[4.53381378,0.02704568,96.05811262],[4.53381324,0.02704396,96.05786639],[4.53381271,0.02704224,96.05761437],[4.53381217,0.02704051,96.05735632],[4.53381164,0.02703879,96.05709203],[4.5338111,0.02703707,96.05682128],[4.53381057,0.02703535,96.05654384],[4.53381003,0.02703363,96.0562595],[4.5338095,0.02703191,96.05596802],[4.53380896,0.02703019,96.05566919],[4.53380843,0.02702847,96.05536278],[4.53380789,0.02702675,96.05504858],[4.53380736,0.02702503,96.05472636],[4.53380682,0.02702331,96.0543959],[4.53380629,0.02702159,96.05405698],[4.53380575,0.02701987,96.05370937],[4.53380522,0.02701815,96.05335286],[4.53380468,0.02701643,96.05298722],[4.53380415,0.02701471,96.05261224],[4.53380361,0.02701299,96.05222768],[4.53380308,0.02701127,96.05183333],[4.53380254,0.02700955,96.05142896],[4.53380201,0.02700783,96.05101437],[4.53380147,0.0270061,96.05058931],[4.53380093,0.02700438,96.05015358],[4.5338004,0.02700266,96.04970694],[4.53379986,0.02700094,96.04924919],[4.53379933,0.02699922,96.04878009],[4.53379879,0.0269975,96.04829943],[4.53379826,0.02699578,96.04780699],[4.53379772,0.02699406,96.04730253],[4.53379718,0.02699234,96.04678585],[4.53379665,0.02699062,96.04625672],[4.53379611,0.0269889,96.04571492],[4.53379557,0.02698718,96.04516022],[4.53379504,0.02698547,96.04459241],[4.5337945,0.02698375,96.04401127],[4.53379397,0.02698203,96.04341657],[4.53379343,0.02698031,96.04280809],[4.53379289,0.02697859,96.04218561],[4.53379236,0.02697687,96.04154891],[4.53379182,0.02697515,96.04089776],[4.53379128,0.02697343,96.04023195],[4.53379074,0.02697171,96.03955125],[4.53379021,0.02696999,96.03885545],[4.53378967,0.02696827,96.03814431],[4.53378913,0.02696655,96.03741764],[4.5337886,0.02696483,96.03667539],[4.53378806,0.02696311,96.03591776],[4.53378752,0.02696139,96.03514492],[4.53378698,0.02695967,96.03435704],[4.53378645,0.02695795,96.03355432],[4.53378591,0.02695623,96.03273693],[4.53378537,0.02695451,96.03190505],[4.53378483,0.02695279,96.03105886],[4.53378429,0.02695107,96.03019854],[4.53378376,0.02694935,96.02932427],[4.53378322,0.02694763,96.02843624],[4.53378268,0.02694591,96.02753462],[4.53378214,0.02694419,96.02661959],[4.5337816,0.02694247,96.02569133],[4.53378106,0.02694075,96.02475002],[4.53378052,0.02693903,96.02379584],[4.53377999,0.02693732,96.02282898],[4.53377945,0.0269356,96.0218496],[4.53377891,0.02693388,96.02085789],[4.53377837,0.02693216,96.01985403],[4.53377783,0.02693044,96.01883819],[4.53377729,0.02692872,96.01781057],[4.53377675,0.026927,96.01677132],[4.53377621,0.02692528,96.01572064],[4.53377567,0.02692356,96.01465869],[4.53377513,0.02692184,96.01358567],[4.53377459,0.02692012,96.01250174],[4.53377405,0.02691841,96.01140709],[4.53377351,0.02691669,96.01030192],[4.53377297,0.02691497,96.0091864],[4.53377243,0.02691325,96.00806074],[4.53377189,0.02691153,96.00692513],[4.53377135,0.02690981,96.00577974],[4.53377081,0.02690809,96.00462479],[4.53377027,0.02690637,96.00346045],[4.53376973,0.02690465,96.00228692],[4.53376919,0.02690294,96.00110439],[4.53376865,0.02690122,95.99991305],[4.53376811,0.0268995,95.9987131],[4.53376756,0.02689778,95.99750471],[4.53376702,0.02689606,95.99628808],[4.53376648,0.02689434,95.99506337],[4.53376594,0.02689262,95.99383078],[4.5337654,0.02689091,95.99259048],[4.53376486,0.02688919,95.99134266],[4.53376432,0.02688747,95.9900875],[4.53376378,0.02688575,95.98882517],[4.53376323,0.02688403,95.98755587],[4.53376269,0.02688231,95.98627976],[4.53376215,0.02688059,95.98499704],[4.53376161,0.02687888,95.98370788],[4.53376107,0.02687716,95.98241247],[4.53376053,0.02687544,95.98111098],[4.53375998,0.02687372,95.9798036],[4.53375944,0.026872,95.97849051],[4.5337589,0.02687028,95.97717189],[4.53375836,0.02686857,95.97584791],[4.53375782,0.02686685,95.97451878],[4.53375727,0.02686513,95.97318465],[4.53375673,0.02686341,95.97184572],[4.53375619,0.02686169,95.97050217],[4.53375565,0.02685997,95.96915418],[4.5337551,0.02685826,95.96780192],[4.53375456,0.02685654,95.96644559],[4.53375402,0.02685482,95.96508535],[4.53375348,0.0268531,95.9637214],[4.53375293,0.02685138,95.96235392],[4.53375239,0.02684967,95.96098308],[4.53375185,0.02684795,95.95960907],[4.53375131,0.02684623,95.95823207],[4.53375076,0.02684451,95.95685225],[4.53375022,0.02684279,95.95546981],[4.53374968,0.02684108,95.95408492],[4.53374913,0.02683936,95.95269777],[4.53374859,0.02683764,95.95130853],[4.53374805,0.02683592,95.94991739],[4.5337475,0.0268342,95.94852453],[4.53374696,0.02683249,95.94713013],[4.53374642,0.02683077,95.94573437],[4.53374587,0.02682905,95.94433743],[4.53374533,0.02682733,95.94293951],[4.53374479,0.02682561,95.94154076],[4.53374424,0.0268239,95.94014139],[4.5337437,0.02682218,95.93874157],[4.53374316,0.02682046,95.93734148],[4.53374261,0.02681874,95.9359413],[4.53374207,0.02681702,95.93454122],[4.53374153,0.02681531,95.93314141],[4.53374098,0.02681359,95.93174207],[4.53374044,0.02681187,95.93034337],[4.53373989,0.02681015,95.92894549],[4.53373935,0.02680844,95.92754861],[4.53373881,0.02680672,95.92615292],[4.53373826,0.026805,95.9247586],[4.53373772,0.02680328,95.92336584],[4.53373717,0.02680157,95.9219748],[4.53373663,0.02679985,95.92058568],[4.53373608,0.02679813,95.91919866],[4.53373554,0.02679641,95.91781392],[4.53373499,0.02679469,95.91643164],[4.53373445,0.02679298,95.915052],[4.53373391,0.02679126,95.91367519],[4.53373336,0.02678954,95.91230139],[4.53373282,0.02678782,95.91093078],[4.53373227,0.02678611,95.90956355],[4.53373173,0.02678439,95.90819987],[4.53373118,0.02678267,95.90683992],[4.53373064,0.02678095,95.9054839],[4.53373009,0.02677924,95.90413199],[4.53372955,0.02677752,95.90278436],[4.533729,0.0267758,95.9014412],[4.53372846,0.02677408,95.90010269],[4.53372791,0.02677237,95.89876902],[4.53372737,0.02677065,95.89744036],[4.53372682,0.02676893,95.89611691],[4.53372628,0.02676722,95.89479884],[4.53372573,0.0267655,95.89348633],[4.53372519,0.02676378,95.89217958],[4.53372464,0.02676206,95.89087875],[4.53372409,0.02676035,95.88958405],[4.53372355,0.02675863,95.88829564],[4.533723,0.02675691,95.88701371],[4.53372246,0.02675519,95.88573845],[4.53372191,0.02675348,95.88447004],[4.53372137,0.02675176,95.88320866],[4.53372082,0.02675004,95.8819545],[4.53372027,0.02674833,95.88070774],[4.53371973,0.02674661,95.87946856],[4.53371918,0.02674489,95.87823714],[4.53371864,0.02674317,95.87701368],[4.53371809,0.02674146,95.87579835],[4.53371754,0.02673974,95.87459134],[4.533717,0.02673802,95.87339279],[4.53371645,0.02673631,95.87220269],[4.5337159,0.02673459,95.87102099],[4.53371536,0.02673287,95.86984762],[4.53371481,0.02673115,95.86868254],[4.53371427,0.02672944,95.86752568],[4.53371402,0.02672866,95.86700215]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-4,"type":"shoulder","predecessorId":0}},{"geometry":{"coordinates":[[4.53418596,0.02824723,96.55741251],[4.53418547,0.02824549,96.55652485],[4.53418499,0.02824376,96.55564181],[4.53418451,0.02824202,96.55476336],[4.53418403,0.02824028,96.55388944],[4.53418354,0.02823855,96.55302002],[4.53418306,0.02823681,96.55215506],[4.53418258,0.02823508,96.5512945],[4.53418209,0.02823334,96.55043832],[4.53418161,0.0282316,96.54958646],[4.53418112,0.02822987,96.54873888],[4.53418064,0.02822813,96.54789555],[4.53418016,0.0282264,96.54705642],[4.53417967,0.02822466,96.54622145],[4.53417919,0.02822292,96.54539059],[4.5341787,0.02822119,96.54456381],[4.53417822,0.02821945,96.54374107],[4.53417773,0.02821771,96.54292231],[4.53417724,0.02821598,96.54210751],[4.53417676,0.02821424,96.54129662],[4.53417627,0.0282125,96.54048959],[4.53417578,0.02821077,96.53968639],[4.5341753,0.02820903,96.53888697],[4.53417481,0.0282073,96.5380913],[4.53417432,0.02820556,96.53729933],[4.53417384,0.02820383,96.53651103],[4.53417335,0.02820209,96.53572634],[4.53417286,0.02820035,96.53494524],[4.53417237,0.02819862,96.53416767],[4.53417188,0.02819688,96.5333936],[4.53417139,0.02819515,96.53262299],[4.53417091,0.02819341,96.5318558],[4.53417042,0.02819168,96.53109199],[4.53416993,0.02818994,96.53033151],[4.53416944,0.02818821,96.52957433],[4.53416895,0.02818647,96.52882041],[4.53416845,0.02818474,96.5280697],[4.53416796,0.028183,96.52732217],[4.53416747,0.02818127,96.52657778],[4.53416698,0.02817954,96.52583649],[4.53416649,0.0281778,96.52509825],[4.534166,0.02817607,96.52436304],[4.5341655,0.02817433,96.5236308],[4.53416501,0.0281726,96.52290151],[4.53416452,0.02817086,96.52217511],[4.53416402,0.02816913,96.52145158],[4.53416353,0.0281674,96.52073087],[4.53416304,0.02816566,96.52001295],[4.53416254,0.02816393,96.51929777],[4.53416205,0.0281622,96.5185853],[4.53416155,0.02816046,96.5178755],[4.53416106,0.02815873,96.51716834],[4.53416056,0.028157,96.51646376],[4.53416006,0.02815526,96.51576174],[4.53415957,0.02815353,96.51506224],[4.53415907,0.0281518,96.51436522],[4.53415857,0.02815006,96.51367064],[4.53415807,0.02814833,96.51297846],[4.53415758,0.0281466,96.51228865],[4.53415708,0.02814487,96.51160117],[4.53415658,0.02814313,96.51091598],[4.53415608,0.0281414,96.51023305],[4.53415558,0.02813967,96.50955234],[4.53415508,0.02813794,96.50887381],[4.53415458,0.02813621,96.50819743],[4.53415408,0.02813447,96.50752315],[4.53415358,0.02813274,96.50685095],[4.53415307,0.02813101,96.50618079],[4.53415257,0.02812928,96.50551263],[4.53415207,0.02812755,96.50484643],[4.53415156,0.02812582,96.50418216],[4.53415106,0.02812409,96.50351979],[4.53415056,0.02812236,96.50285927],[4.53415005,0.02812063,96.50220058],[4.53414955,0.0281189,96.50154367],[4.53414904,0.02811717,96.50088852],[4.53414854,0.02811544,96.50023509],[4.53414803,0.02811371,96.49958334],[4.53414752,0.02811198,96.49893324],[4.53414701,0.02811025,96.49828475],[4.53414651,0.02810852,96.49763787],[4.534146,0.02810679,96.49699262],[4.53414549,0.02810506,96.496349],[4.53414498,0.02810333,96.49570703],[4.53414447,0.0281016,96.49506674],[4.53414396,0.02809987,96.49442814],[4.53414345,0.02809814,96.49379124],[4.53414294,0.02809641,96.49315606],[4.53414243,0.02809468,96.49252263],[4.53414192,0.02809296,96.49189095],[4.5341414,0.02809123,96.49126104],[4.53414089,0.0280895,96.49063293],[4.53414038,0.02808777,96.49000662],[4.53413987,0.02808604,96.48938214],[4.53413935,0.02808432,96.4887595],[4.53413884,0.02808259,96.48813872],[4.53413833,0.02808086,96.48751981],[4.53413781,0.02807913,96.4869028],[4.5341373,0.02807741,96.4862877],[4.53413678,0.02807568,96.48567453],[4.53413627,0.02807395,96.48506331],[4.53413575,0.02807222,96.48445404],[4.53413524,0.0280705,96.48384676],[4.53413472,0.02806877,96.48324148],[4.53413421,0.02806704,96.48263824],[4.53413369,0.02806531,96.48203711],[4.53413317,0.02806359,96.48143815],[4.53413266,0.02806186,96.48084143],[4.53413214,0.02806013,96.48024703],[4.53413163,0.02805841,96.479655],[4.53413111,0.02805668,96.47906542],[4.53413059,0.02805495,96.47847834],[4.53413008,0.02805323,96.47789385],[4.53412956,0.0280515,96.47731199],[4.53412905,0.02804977,96.47673284],[4.53412853,0.02804804,96.47615647],[4.53412801,0.02804632,96.47558293],[4.5341275,0.02804459,96.4750123],[4.53412698,0.02804286,96.47444464],[4.53412647,0.02804114,96.47388001],[4.53412595,0.02803941,96.47331839],[4.53412544,0.02803768,96.47275968],[4.53412493,0.02803595,96.47220376],[4.53412441,0.02803423,96.47165054],[4.5341239,0.0280325,96.4710999],[4.53412338,0.02803077,96.47055174],[4.53412287,0.02802904,96.47000595],[4.53412236,0.02802731,96.46946244],[4.53412184,0.02802559,96.46892109],[4.53412133,0.02802386,96.46838179],[4.53412081,0.02802213,96.46784445],[4.5341203,0.0280204,96.46730896],[4.53411979,0.02801868,96.46677522],[4.53411927,0.02801695,96.46624312],[4.53411876,0.02801522,96.46571257],[4.53411824,0.02801349,96.46518346],[4.53411773,0.02801177,96.46465569],[4.53411722,0.02801004,96.46412917],[4.5341167,0.02800831,96.46360378],[4.53411619,0.02800658,96.46307943],[4.53411567,0.02800486,96.462556],[4.53411515,0.02800313,96.46203329],[4.53411464,0.0280014,96.46151107],[4.53411412,0.02799968,96.46098913],[4.5341136,0.02799795,96.46046724],[4.53411309,0.02799622,96.4599452],[4.53411257,0.0279945,96.45942277],[4.53411205,0.02799277,96.45889976],[4.53411153,0.02799105,96.45837593],[4.53411101,0.02798932,96.45785108],[4.53411048,0.02798759,96.45732505],[4.53410996,0.02798587,96.45679788],[4.53410944,0.02798415,96.45626968],[4.53410891,0.02798242,96.45574056],[4.53410839,0.0279807,96.45521061],[4.53410786,0.02797897,96.45467994],[4.53410733,0.02797725,96.45414865],[4.5341068,0.02797553,96.45361683],[4.53410627,0.0279738,96.45308461],[4.53410575,0.02797208,96.45255206],[4.53410522,0.02797036,96.4520193],[4.53410469,0.02796864,96.45148642],[4.53410415,0.02796691,96.45095352],[4.53410362,0.02796519,96.4504207],[4.53410309,0.02796347,96.44988807],[4.53410256,0.02796175,96.44935571],[4.53410203,0.02796003,96.44882373],[4.53410149,0.0279583,96.44829222],[4.53410096,0.02795658,96.44776129],[4.53410043,0.02795486,96.44723102],[4.53409989,0.02795314,96.44670151],[4.53409936,0.02795142,96.44617286],[4.53409883,0.0279497,96.44564516],[4.53409829,0.02794797,96.44511851],[4.53409776,0.02794625,96.444593],[4.53409722,0.02794453,96.44406873],[4.53409669,0.02794281,96.44354578],[4.53409615,0.02794109,96.44302425],[4.53409562,0.02793937,96.44250423],[4.53409509,0.02793765,96.44198581],[4.53409455,0.02793592,96.44146908],[4.53409402,0.0279342,96.44095408],[4.53409349,0.02793248,96.44044055],[4.53409295,0.02793076,96.43992819],[4.53409242,0.02792904,96.43941672],[4.53409189,0.02792732,96.43890595],[4.53409135,0.0279256,96.43839581],[4.53409082,0.02792387,96.43788623],[4.53409029,0.02792215,96.43737716],[4.53408975,0.02792043,96.43686851],[4.53408922,0.02791871,96.43636024],[4.53408868,0.02791699,96.43585227],[4.53408815,0.02791527,96.43534453],[4.53408761,0.02791355,96.43483698],[4.53408708,0.02791183,96.43432953],[4.53408654,0.0279101,96.43382213],[4.53408601,0.02790838,96.43331471],[4.53408547,0.02790666,96.43280721],[4.53408493,0.02790494,96.43229957],[4.5340844,0.02790322,96.43179173],[4.53408386,0.0279015,96.43128361],[4.53408332,0.02789978,96.43077516],[4.53408278,0.02789806,96.43026632],[4.53408224,0.02789634,96.42975703],[4.5340817,0.02789462,96.42924721],[4.53408116,0.0278929,96.42873682],[4.53408062,0.02789118,96.42822585],[4.53408008,0.02788946,96.4277145],[4.53407954,0.02788774,96.42720302],[4.534079,0.02788603,96.42669169],[4.53407846,0.02788431,96.42618075],[4.53407792,0.02788259,96.42567034],[4.53407738,0.02788087,96.42516052],[4.53407684,0.02787915,96.42465134],[4.5340763,0.02787743,96.42414283],[4.53407576,0.02787571,96.42363506],[4.53407521,0.02787399,96.42312805],[4.53407467,0.02787227,96.42262186],[4.53407413,0.02787055,96.42211654],[4.53407359,0.02786883,96.42161212],[4.53407305,0.02786711,96.42110865],[4.53407251,0.02786539,96.42060617],[4.53407197,0.02786367,96.42010473],[4.53407143,0.02786196,96.41960437],[4.53407089,0.02786024,96.41910514],[4.53407035,0.02785852,96.41860704],[4.53406982,0.0278568,96.41811004],[4.53406928,0.02785508,96.41761406],[4.53406874,0.02785336,96.41711903],[4.5340682,0.02785164,96.41662487],[4.53406766,0.02784992,96.41613152],[4.53406713,0.0278482,96.4156389],[4.53406659,0.02784647,96.41514694],[4.53406605,0.02784475,96.41465557],[4.53406551,0.02784303,96.41416473],[4.53406498,0.02784131,96.41367433],[4.53406444,0.02783959,96.41318432],[4.5340639,0.02783787,96.41269462],[4.53406337,0.02783615,96.41220517],[4.53406283,0.02783443,96.41171588],[4.53406229,0.02783271,96.4112267],[4.53406176,0.02783099,96.41073756],[4.53406122,0.02782927,96.41024839],[4.53406068,0.02782755,96.40975912],[4.53406015,0.02782583,96.40926968],[4.53405961,0.02782411,96.40878006],[4.53405907,0.02782239,96.40829026],[4.53405853,0.02782067,96.40780031],[4.534058,0.02781895,96.40731022],[4.53405746,0.02781723,96.40682002],[4.53405692,0.02781551,96.40632971],[4.53405639,0.02781379,96.40583931],[4.53405585,0.02781207,96.40534885],[4.53405531,0.02781035,96.40485833],[4.53405478,0.02780862,96.40436777],[4.53405424,0.0278069,96.4038772],[4.5340537,0.02780518,96.40338661],[4.53405317,0.02780346,96.40289604],[4.53405263,0.02780174,96.40240549],[4.53405209,0.02780002,96.40191498],[4.53405156,0.0277983,96.40142452],[4.53405102,0.02779658,96.40093413],[4.53405049,0.02779486,96.40044382],[4.53404995,0.02779314,96.39995361],[4.53404942,0.02779142,96.39946352],[4.53404888,0.0277897,96.39897354],[4.53404835,0.02778798,96.3984837],[4.53404781,0.02778625,96.39799402],[4.53404728,0.02778453,96.39750449],[4.53404674,0.02778281,96.39701515],[4.53404621,0.02778109,96.39652599],[4.53404568,0.02777937,96.39603704],[4.53404515,0.02777765,96.3955483],[4.53404461,0.02777593,96.39505979],[4.53404408,0.0277742,96.39457151],[4.53404355,0.02777248,96.39408347],[4.53404302,0.02777076,96.39359564],[4.53404249,0.02776904,96.39310795],[4.53404196,0.02776731,96.39262036],[4.53404142,0.02776559,96.39213281],[4.53404089,0.02776387,96.39164525],[4.53404036,0.02776215,96.39115763],[4.53403983,0.02776042,96.39066989],[4.53403931,0.0277587,96.39018198],[4.53403878,0.02775698,96.38969385],[4.53403825,0.02775526,96.38920544],[4.53403772,0.02775353,96.3887167],[4.53403719,0.02775181,96.38822759],[4.53403666,0.02775009,96.38773804],[4.53403613,0.02774836,96.387248],[4.53403561,0.02774664,96.38675743],[4.53403508,0.02774492,96.38626627],[4.53403455,0.02774319,96.38577448],[4.53403402,0.02774147,96.38528199],[4.5340335,0.02773975,96.38478876],[4.53403297,0.02773802,96.38429474],[4.53403244,0.0277363,96.38379987],[4.53403192,0.02773458,96.38330409],[4.53403139,0.02773285,96.38280736],[4.53403086,0.02773113,96.3823096],[4.53403034,0.0277294,96.38181077],[4.53402981,0.02772768,96.38131081],[4.53402928,0.02772596,96.38080967],[4.53402876,0.02772423,96.38030729],[4.53402823,0.02772251,96.37980361],[4.53402771,0.02772079,96.37929858],[4.53402718,0.02771906,96.37879215],[4.53402665,0.02771734,96.37828425],[4.53402613,0.02771561,96.37777485],[4.5340256,0.02771389,96.37726387],[4.53402507,0.02771217,96.37675127],[4.53402455,0.02771044,96.37623699],[4.53402402,0.02770872,96.37572098],[4.53402349,0.027707,96.37520318],[4.53402297,0.02770527,96.37468355],[4.53402244,0.02770355,96.37416202],[4.53402191,0.02770183,96.37363855],[4.53402139,0.0277001,96.37311308],[4.53402086,0.02769838,96.37258556],[4.53402033,0.02769666,96.37205593],[4.5340198,0.02769493,96.37152414],[4.53401927,0.02769321,96.37099013],[4.53401875,0.02769149,96.37045386],[4.53401822,0.02768976,96.36991527],[4.53401769,0.02768804,96.3693743],[4.53401716,0.02768632,96.36883091],[4.53401663,0.02768459,96.36828503],[4.5340161,0.02768287,96.36773662],[4.53401557,0.02768115,96.36718562],[4.53401504,0.02767943,96.366632],[4.53401451,0.0276777,96.36607575],[4.53401398,0.02767598,96.36551683],[4.53401345,0.02767426,96.36495525],[4.53401292,0.02767254,96.36439097],[4.53401239,0.02767081,96.36382399],[4.53401186,0.02766909,96.36325431],[4.53401133,0.02766737,96.36268191],[4.53401079,0.02766565,96.36210678],[4.53401026,0.02766393,96.36152893],[4.53400973,0.0276622,96.36094833],[4.5340092,0.02766048,96.36036499],[4.53400866,0.02765876,96.35977889],[4.53400813,0.02765704,96.35919002],[4.5340076,0.02765532,96.35859838],[4.53400706,0.0276536,96.35800395],[4.53400653,0.02765188,96.35740673],[4.534006,0.02765015,96.35680671],[4.53400546,0.02764843,96.35620388],[4.53400493,0.02764671,96.35559823],[4.53400439,0.02764499,96.35498975],[4.53400386,0.02764327,96.35437842],[4.53400332,0.02764155,96.35376426],[4.53400279,0.02763983,96.35314723],[4.53400225,0.02763811,96.35252733],[4.53400172,0.02763639,96.35190456],[4.53400118,0.02763467,96.3512789],[4.53400065,0.02763294,96.35065034],[4.53400011,0.02763122,96.35001887],[4.53399958,0.0276295,96.34938449],[4.53399904,0.02762778,96.34874718],[4.53399851,0.02762606,96.34810692],[4.53399797,0.02762434,96.34746373],[4.53399743,0.02762262,96.34681757],[4.5339969,0.0276209,96.34616844],[4.53399636,0.02761918,96.34551633],[4.53399583,0.02761746,96.34486123],[4.53399529,0.02761574,96.34420313],[4.53399475,0.02761402,96.34354202],[4.53399422,0.0276123,96.34287789],[4.53399368,0.02761058,96.34221072],[4.53399314,0.02760886,96.3415405],[4.53399261,0.02760714,96.34086724],[4.53399207,0.02760541,96.3401909],[4.53399153,0.02760369,96.33951149],[4.533991,0.02760197,96.33882899],[4.53399046,0.02760025,96.33814339],[4.53398992,0.02759853,96.33745468],[4.53398939,0.02759681,96.33676285],[4.53398885,0.02759509,96.33606789],[4.53398831,0.02759337,96.33536978],[4.53398778,0.02759165,96.33466852],[4.53398724,0.02758993,96.33396409],[4.53398671,0.02758821,96.33325648],[4.53398617,0.02758649,96.33254568],[4.53398563,0.02758477,96.33183169],[4.5339851,0.02758305,96.33111448],[4.53398456,0.02758133,96.33039405],[4.53398403,0.02757961,96.32967039],[4.53398349,0.02757789,96.32894348],[4.53398295,0.02757617,96.32821332],[4.53398242,0.02757445,96.32747988],[4.53398188,0.02757272,96.32674317],[4.53398135,0.027571,96.32600316],[4.53398081,0.02756928,96.32525982],[4.53398028,0.02756756,96.32451316],[4.53397974,0.02756584,96.32376314],[4.53397921,0.02756412,96.32300975],[4.53397867,0.0275624,96.32225297],[4.53397814,0.02756068,96.32149279],[4.5339776,0.02755896,96.32072919],[4.53397707,0.02755724,96.31996214],[4.53397653,0.02755551,96.31919164],[4.533976,0.02755379,96.31841766],[4.53397547,0.02755207,96.31764019],[4.53397493,0.02755035,96.31685921],[4.5339744,0.02754863,96.3160747],[4.53397386,0.02754691,96.31528665],[4.53397333,0.02754519,96.31449504],[4.5339728,0.02754347,96.31369985],[4.53397226,0.02754174,96.31290107],[4.53397173,0.02754002,96.31209868],[4.5339712,0.0275383,96.31129265],[4.53397067,0.02753658,96.31048298],[4.53397013,0.02753486,96.30966965],[4.5339696,0.02753314,96.30885264],[4.53396907,0.02753141,96.30803194],[4.53396854,0.02752969,96.30720752],[4.53396801,0.02752797,96.30637938],[4.53396748,0.02752625,96.30554749],[4.53396694,0.02752453,96.30471184],[4.53396641,0.0275228,96.30387241],[4.53396588,0.02752108,96.3030292],[4.53396535,0.02751936,96.30218217],[4.53396482,0.02751764,96.30133132],[4.53396429,0.02751591,96.30047663],[4.53396376,0.02751419,96.29961809],[4.53396323,0.02751247,96.29875567],[4.5339627,0.02751075,96.29788937],[4.53396217,0.02750902,96.29701916],[4.53396165,0.0275073,96.29614504],[4.53396112,0.02750558,96.29526699],[4.53396059,0.02750385,96.29438499],[4.53396006,0.02750213,96.29349904],[4.53395953,0.02750041,96.2926091],[4.53395901,0.02749869,96.29171518],[4.53395848,0.02749696,96.29081724],[4.53395795,0.02749524,96.28991527],[4.53395743,0.02749352,96.28900919],[4.5339569,0.02749179,96.28809893],[4.53395637,0.02749007,96.28718444],[4.53395585,0.02748834,96.28626565],[4.53395532,0.02748662,96.2853425],[4.53395479,0.0274849,96.28441492],[4.53395427,0.02748317,96.28348285],[4.53395374,0.02748145,96.28254622],[4.53395322,0.02747973,96.28160497],[4.53395269,0.027478,96.28065904],[4.53395217,0.02747628,96.27970836],[4.53395164,0.02747455,96.27875287],[4.53395112,0.02747283,96.27779249],[4.53395059,0.02747111,96.27682717],[4.53395007,0.02746938,96.27585684],[4.53394954,0.02746766,96.27488144],[4.53394902,0.02746593,96.2739009],[4.53394849,0.02746421,96.27291514],[4.53394797,0.02746249,96.27192412],[4.53394744,0.02746076,96.27092775],[4.53394691,0.02745904,96.26992598],[4.53394639,0.02745731,96.26891874],[4.53394586,0.02745559,96.26790595],[4.53394534,0.02745387,96.26688756],[4.53394481,0.02745214,96.26586349],[4.53394428,0.02745042,96.26483368],[4.53394376,0.0274487,96.26379805],[4.53394323,0.02744697,96.26275654],[4.5339427,0.02744525,96.26170909],[4.53394218,0.02744353,96.26065561],[4.53394165,0.0274418,96.25959604],[4.53394112,0.02744008,96.2585303],[4.53394059,0.02743836,96.25745834],[4.53394006,0.02743664,96.25638008],[4.53393953,0.02743491,96.25529543],[4.533939,0.02743319,96.25420435],[4.53393847,0.02743147,96.25310674],[4.53393794,0.02742975,96.25200254],[4.53393741,0.02742802,96.25089167],[4.53393688,0.0274263,96.2497741],[4.53393635,0.02742458,96.24864981],[4.53393582,0.02742286,96.2475188],[4.53393528,0.02742114,96.24638107],[4.53393475,0.02741941,96.24523659],[4.53393422,0.02741769,96.24408537],[4.53393368,0.02741597,96.24292739],[4.53393315,0.02741425,96.24176266],[4.53393262,0.02741253,96.24059115],[4.53393208,0.02741081,96.23941287],[4.53393155,0.02740909,96.23822781],[4.53393101,0.02740737,96.23703596],[4.53393047,0.02740565,96.23583731],[4.53392994,0.02740393,96.23463185],[4.5339294,0.02740221,96.23341959],[4.53392887,0.02740049,96.23220053],[4.53392833,0.02739877,96.23097486],[4.53392779,0.02739705,96.22974278],[4.53392725,0.02739533,96.22850447],[4.53392672,0.02739361,96.22726015],[4.53392618,0.02739189,96.22601002],[4.53392564,0.02739017,96.22475428],[4.5339251,0.02738845,96.22349312],[4.53392456,0.02738673,96.22222676],[4.53392402,0.02738501,96.22095538],[4.53392348,0.02738329,96.21967921],[4.53392294,0.02738157,96.21839843],[4.5339224,0.02737985,96.21711325],[4.53392186,0.02737813,96.21582388],[4.53392132,0.02737641,96.21453051],[4.53392078,0.02737469,96.21323336],[4.53392024,0.02737297,96.21193262],[4.5339197,0.02737125,96.2106285],[4.53391916,0.02736953,96.2093212],[4.53391862,0.02736782,96.20801093],[4.53391808,0.0273661,96.2066979],[4.53391754,0.02736438,96.2053823],[4.533917,0.02736266,96.20406435],[4.53391646,0.02736094,96.20274425],[4.53391592,0.02735922,96.2014222],[4.53391538,0.0273575,96.20009842],[4.53391484,0.02735578,96.19877311],[4.53391429,0.02735406,96.19744647],[4.53391375,0.02735235,96.19611872],[4.53391321,0.02735063,96.19479007],[4.53391267,0.02734891,96.19346071],[4.53391213,0.02734719,96.19213087],[4.53391159,0.02734547,96.19080075],[4.53391105,0.02734375,96.18947055],[4.5339105,0.02734203,96.1881405],[4.53390996,0.02734031,96.18681079],[4.53390942,0.0273386,96.18548164],[4.53390888,0.02733688,96.18415326],[4.53390834,0.02733516,96.18282586],[4.5339078,0.02733344,96.18149965],[4.53390726,0.02733172,96.18017485],[4.53390672,0.02733,96.17885166],[4.53390618,0.02732828,96.1775303],[4.53390564,0.02732656,96.17621099],[4.53390509,0.02732484,96.17489394],[4.53390455,0.02732312,96.17357936],[4.53390401,0.02732141,96.17226748],[4.53390347,0.02731969,96.17095852],[4.53390293,0.02731797,96.16965269],[4.53390239,0.02731625,96.16835022],[4.53390185,0.02731453,96.16705132],[4.53390131,0.02731281,96.16575621],[4.53390078,0.02731109,96.16446512],[4.53390024,0.02730937,96.16317826],[4.5338997,0.02730765,96.16189586],[4.53389916,0.02730593,96.16061814],[4.53389862,0.02730421,96.15934531],[4.53389808,0.02730249,96.1580776],[4.53389755,0.02730077,96.15681523],[4.53389701,0.02729905,96.15555843],[4.53389647,0.02729733,96.15430741],[4.53389593,0.02729561,96.1530624],[4.5338954,0.02729389,96.15182362],[4.53389486,0.02729217,96.15059129],[4.53389433,0.02729045,96.14936563],[4.53389379,0.02728873,96.14814688],[4.53389326,0.02728701,96.14693523],[4.53389272,0.02728529,96.14573085],[4.53389219,0.02728357,96.14453386],[4.53389165,0.02728185,96.1433444],[4.53389112,0.02728013,96.14216262],[4.53389059,0.0272784,96.14098865],[4.53389005,0.02727668,96.13982262],[4.53388952,0.02727496,96.13866468],[4.53388899,0.02727324,96.13751495],[4.53388845,0.02727152,96.13637358],[4.53388792,0.0272698,96.13524069],[4.53388739,0.02726808,96.13411642],[4.53388686,0.02726635,96.1330009],[4.53388632,0.02726463,96.13189426],[4.53388579,0.02726291,96.13079665],[4.53388526,0.02726119,96.12970818],[4.53388473,0.02725947,96.12862899],[4.5338842,0.02725774,96.12755921],[4.53388367,0.02725602,96.12649897],[4.53388314,0.0272543,96.12544841],[4.5338826,0.02725258,96.12440764],[4.53388207,0.02725086,96.1233768],[4.53388154,0.02724914,96.12235602],[4.53388101,0.02724741,96.12134544],[4.53388048,0.02724569,96.12034516],[4.53387995,0.02724397,96.11935533],[4.53387942,0.02724225,96.11837608],[4.53387888,0.02724053,96.11740755],[4.53387835,0.0272388,96.11644994],[4.53387782,0.02723708,96.11550342],[4.53387729,0.02723536,96.11456818],[4.53387676,0.02723364,96.11364439],[4.53387622,0.02723192,96.11273226],[4.53387569,0.0272302,96.11183195],[4.53387516,0.02722847,96.11094365],[4.53387463,0.02722675,96.11006754],[4.53387409,0.02722503,96.10920381],[4.53387356,0.02722331,96.10835264],[4.53387303,0.02722159,96.10751421],[4.5338725,0.02721987,96.1066887],[4.53387196,0.02721815,96.10587631],[4.53387143,0.02721642,96.10507721],[4.5338709,0.0272147,96.10429158],[4.53387037,0.02721298,96.10351961],[4.53386983,0.02721126,96.10276148],[4.5338693,0.02720954,96.10201738],[4.53386877,0.02720782,96.10128749],[4.53386823,0.0272061,96.10057199],[4.5338677,0.02720438,96.09987085],[4.53386717,0.02720265,96.09918389],[4.53386663,0.02720093,96.09851089],[4.5338661,0.02719921,96.09785164],[4.53386556,0.02719749,96.09720593],[4.53386503,0.02719577,96.09657356],[4.5338645,0.02719405,96.09595431],[4.53386396,0.02719233,96.09534798],[4.53386343,0.02719061,96.09475436],[4.53386289,0.02718889,96.09417324],[4.53386236,0.02718716,96.09360441],[4.53386183,0.02718544,96.09304767],[4.53386129,0.02718372,96.09250279],[4.53386076,0.027182,96.09196959],[4.53386022,0.02718028,96.09144784],[4.53385969,0.02717856,96.09093734],[4.53385915,0.02717684,96.09043789],[4.53385862,0.02717512,96.08994927],[4.53385809,0.0271734,96.08947127],[4.53385755,0.02717168,96.08900369],[4.53385702,0.02716996,96.08854632],[4.53385648,0.02716824,96.08809895],[4.53385595,0.02716651,96.08766138],[4.53385541,0.02716479,96.08723339],[4.53385488,0.02716307,96.08681478],[4.53385434,0.02716135,96.08640534],[4.53385381,0.02715963,96.08600486],[4.53385327,0.02715791,96.08561313],[4.53385274,0.02715619,96.08522996],[4.5338522,0.02715447,96.08485512],[4.53385167,0.02715275,96.08448841],[4.53385113,0.02715103,96.08412963],[4.53385059,0.02714931,96.08377856],[4.53385006,0.02714759,96.08343499],[4.53384952,0.02714587,96.0830987],[4.53384899,0.02714415,96.08276949],[4.53384845,0.02714243,96.08244714],[4.53384792,0.02714071,96.08213144],[4.53384738,0.02713899,96.08182218],[4.53384685,0.02713727,96.08151915],[4.53384631,0.02713554,96.08122213],[4.53384577,0.02713382,96.08093091],[4.53384524,0.0271321,96.08064529],[4.5338447,0.02713038,96.08036504],[4.53384417,0.02712866,96.08008996],[4.53384363,0.02712694,96.07981983],[4.53384309,0.02712522,96.07955445],[4.53384256,0.0271235,96.0792936],[4.53384202,0.02712178,96.07903706],[4.53384148,0.02712006,96.07878464],[4.53384095,0.02711834,96.07853612],[4.53384041,0.02711662,96.07829128],[4.53383988,0.0271149,96.07804991],[4.53383934,0.02711318,96.07781181],[4.5338388,0.02711146,96.07757676],[4.53383827,0.02710974,96.07734454],[4.53383773,0.02710802,96.07711496],[4.53383719,0.0271063,96.0768878],[4.53383665,0.02710458,96.07666284],[4.53383612,0.02710286,96.07643988],[4.53383558,0.02710114,96.0762187],[4.53383504,0.02709942,96.07599909],[4.53383451,0.0270977,96.07578085],[4.53383397,0.02709598,96.07556376],[4.53383343,0.02709426,96.07534762],[4.53383289,0.02709254,96.07513221],[4.53383236,0.02709082,96.07491734],[4.53383182,0.0270891,96.0747028],[4.53383128,0.02708738,96.07448837],[4.53383074,0.02708566,96.07427387],[4.5338302,0.02708394,96.07405907],[4.53382967,0.02708222,96.07384377],[4.53382913,0.0270805,96.07362777],[4.53382859,0.02707878,96.07341086],[4.53382805,0.02707706,96.07319284],[4.53382751,0.02707534,96.07297349],[4.53382698,0.02707363,96.07275261],[4.53382644,0.02707191,96.07253],[4.5338259,0.02707019,96.07230545],[4.53382536,0.02706847,96.07207874],[4.53382482,0.02706675,96.07184969],[4.53382428,0.02706503,96.07161807],[4.53382375,0.02706331,96.07138369],[4.53382321,0.02706159,96.07114633],[4.53382267,0.02705987,96.07090579],[4.53382213,0.02705815,96.07066186],[4.53382159,0.02705643,96.07041434],[4.53382105,0.02705471,96.07016301],[4.53382051,0.02705299,96.06990768],[4.53381997,0.02705127,96.06964814],[4.53381944,0.02704955,96.06938417],[4.5338189,0.02704783,96.06911557],[4.53381836,0.02704611,96.06884214],[4.53381782,0.02704439,96.06856366],[4.53381728,0.02704268,96.06827994],[4.53381674,0.02704096,96.06799075],[4.5338162,0.02703924,96.06769591],[4.53381566,0.02703752,96.06739519],[4.53381512,0.0270358,96.06708839],[4.53381458,0.02703408,96.0667753],[4.53381404,0.02703236,96.06645573],[4.5338135,0.02703064,96.06612945],[4.53381296,0.02702892,96.06579626],[4.53381242,0.0270272,96.06545596],[4.53381188,0.02702548,96.06510833],[4.53381134,0.02702376,96.06475317],[4.53381081,0.02702205,96.06439028],[4.53381027,0.02702033,96.06401943],[4.53380973,0.02701861,96.06364044],[4.53380919,0.02701689,96.06325308],[4.53380865,0.02701517,96.06285715],[4.53380811,0.02701345,96.06245245],[4.53380757,0.02701173,96.06203875],[4.53380703,0.02701001,96.06161587],[4.53380649,0.02700829,96.06118358],[4.53380595,0.02700657,96.06074169],[4.53380541,0.02700485,96.06028998],[4.53380487,0.02700314,96.05982824],[4.53380433,0.02700142,96.05935627],[4.53380379,0.0269997,96.05887386],[4.53380325,0.02699798,96.0583808],[4.53380271,0.02699626,96.05787688],[4.53380217,0.02699454,96.0573619],[4.53380163,0.02699282,96.05683564],[4.53380109,0.0269911,96.0562979],[4.53380055,0.02698938,96.05574847],[4.53380001,0.02698766,96.05518714],[4.53379947,0.02698595,96.0546137],[4.53379893,0.02698423,96.05402795],[4.53379839,0.02698251,96.05342967],[4.53379785,0.02698079,96.05281867],[4.53379731,0.02697907,96.05219472],[4.53379677,0.02697736,96.05155762],[4.53379623,0.02697564,96.05090717],[4.53379569,0.02697392,96.05024315],[4.53379515,0.0269722,96.04956536],[4.53379461,0.02697048,96.04887358],[4.53379407,0.02696876,96.04816762],[4.53379353,0.02696704,96.04744726],[4.53379299,0.02696532,96.0467123],[4.53379244,0.0269636,96.04596272],[4.5337919,0.02696189,96.04519869],[4.53379136,0.02696017,96.04442039],[4.53379082,0.02695845,96.04362799],[4.53379028,0.02695673,96.04282167],[4.53378974,0.02695501,96.0420016],[4.5337892,0.02695329,96.04116796],[4.53378866,0.02695157,96.04032091],[4.53378812,0.02694985,96.03946065],[4.53378758,0.02694813,96.03858734],[4.53378704,0.02694642,96.03770115],[4.5337865,0.0269447,96.03680227],[4.53378596,0.02694298,96.03589087],[4.53378542,0.02694126,96.03496712],[4.53378488,0.02693954,96.0340312],[4.53378434,0.02693782,96.03308328],[4.5337838,0.0269361,96.03212355],[4.53378326,0.02693438,96.03115217],[4.53378272,0.02693266,96.03016932],[4.53378218,0.02693094,96.02917519],[4.53378164,0.02692923,96.02816993],[4.5337811,0.02692751,96.02715373],[4.53378056,0.02692579,96.02612677],[4.53378002,0.02692407,96.02508922],[4.53377948,0.02692235,96.02404125],[4.53377894,0.02692063,96.02298304],[4.5337784,0.02691891,96.02191477],[4.53377786,0.02691719,96.02083661],[4.53377732,0.02691547,96.01974876],[4.53377678,0.02691375,96.01865137],[4.53377624,0.02691204,96.01754465],[4.5337757,0.02691032,96.01642875],[4.53377516,0.0269086,96.01530388],[4.53377462,0.02690688,96.01417019],[4.53377408,0.02690516,96.01302788],[4.53377354,0.02690344,96.01187713],[4.533773,0.02690172,96.0107181],[4.53377246,0.0269,96.009551],[4.53377193,0.02689828,96.00837598],[4.53377139,0.02689656,96.00719324],[4.53377085,0.02689484,96.00600293],[4.53377031,0.02689312,96.00480523],[4.53376977,0.02689141,96.00360031],[4.53376923,0.02688969,96.00238834],[4.53376869,0.02688797,96.0011695],[4.53376815,0.02688625,95.99994394],[4.53376761,0.02688453,95.99871184],[4.53376707,0.02688281,95.99747337],[4.53376653,0.02688109,95.99622869],[4.53376599,0.02687937,95.99497799],[4.53376546,0.02687765,95.99372143],[4.53376492,0.02687593,95.99245918],[4.53376438,0.02687421,95.99119141],[4.53376384,0.02687249,95.98991829],[4.5337633,0.02687077,95.98863998],[4.53376276,0.02686905,95.98735667],[4.53376222,0.02686733,95.98606851],[4.53376168,0.02686562,95.98477568],[4.53376114,0.0268639,95.98347835],[4.53376061,0.02686218,95.98217669],[4.53376007,0.02686046,95.98087086],[4.53375953,0.02685874,95.97956104],[4.53375899,0.02685702,95.97824739],[4.53375845,0.0268553,95.97693009],[4.53375791,0.02685358,95.97560931],[4.53375737,0.02685186,95.97428521],[4.53375683,0.02685014,95.97295796],[4.53375629,0.02684842,95.97162773],[4.53375576,0.0268467,95.97029469],[4.53375522,0.02684498,95.96895901],[4.53375468,0.02684326,95.96762086],[4.53375414,0.02684154,95.96628041],[4.5337536,0.02683982,95.96493782],[4.53375306,0.0268381,95.96359326],[4.53375252,0.02683639,95.96224691],[4.53375198,0.02683467,95.96089894],[4.53375145,0.02683295,95.9595495],[4.53375091,0.02683123,95.95819877],[4.53375037,0.02682951,95.95684691],[4.53374983,0.02682779,95.9554941],[4.53374929,0.02682607,95.95414051],[4.53374875,0.02682435,95.95278629],[4.53374821,0.02682263,95.95143162],[4.53374767,0.02682091,95.95007667],[4.53374713,0.02681919,95.94872161],[4.5337466,0.02681747,95.94736659],[4.53374606,0.02681575,95.9460118],[4.53374552,0.02681403,95.9446574],[4.53374498,0.02681231,95.94330354],[4.53374444,0.02681059,95.94195042],[4.5337439,0.02680888,95.94059818],[4.53374336,0.02680716,95.939247],[4.53374282,0.02680544,95.93789704],[4.53374228,0.02680372,95.93654848],[4.53374174,0.026802,95.93520147],[4.5337412,0.02680028,95.93385619],[4.53374066,0.02679856,95.9325128],[4.53374012,0.02679684,95.93117147],[4.53373958,0.02679512,95.92983237],[4.53373904,0.0267934,95.92849566],[4.5337385,0.02679168,95.92716151],[4.53373796,0.02678996,95.92583009],[4.53373742,0.02678824,95.92450156],[4.53373688,0.02678653,95.92317609],[4.53373634,0.02678481,95.92185385],[4.5337358,0.02678309,95.920535],[4.53373526,0.02678137,95.9192197],[4.53373472,0.02677965,95.91790813],[4.53373418,0.02677793,95.91660046],[4.53373364,0.02677621,95.91529684],[4.5337331,0.02677449,95.91399744],[4.53373256,0.02677277,95.91270243],[4.53373202,0.02677105,95.91141198],[4.53373148,0.02676934,95.91012625],[4.53373094,0.02676762,95.90884541],[4.5337304,0.0267659,95.90756963],[4.53372986,0.02676418,95.90629906],[4.53372932,0.02676246,95.90503388],[4.53372878,0.02676074,95.90377424],[4.53372823,0.02675902,95.90252033],[4.53372769,0.0267573,95.9012723],[4.53372715,0.02675559,95.90003032],[4.53372661,0.02675387,95.89879455],[4.53372607,0.02675215,95.89756517],[4.53372553,0.02675043,95.89634233],[4.53372498,0.02674871,95.8951262],[4.53372444,0.02674699,95.89391695],[4.5337239,0.02674527,95.89271475],[4.53372336,0.02674356,95.89151975],[4.53372282,0.02674184,95.89033213],[4.53372227,0.02674012,95.88915206],[4.53372173,0.0267384,95.88797968],[4.53372119,0.02673668,95.88681515],[4.53372065,0.02673496,95.88565843],[4.5337201,0.02673325,95.88450946],[4.53371956,0.02673153,95.88336819],[4.53371902,0.02672981,95.88223454],[4.53371847,0.02672809,95.88110848],[4.53371823,0.02672731,95.88059873]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"entry","predecessorId":0}},{"geometry":{"coordinates":[[4.53421898,0.02823698,96.65767692],[4.53421845,0.02823526,96.65674618],[4.53421792,0.02823354,96.65581864],[4.53421739,0.02823182,96.65489427],[4.53421686,0.02823009,96.65397306],[4.53421633,0.02822837,96.653055],[4.5342158,0.02822665,96.65214005],[4.53421527,0.02822493,96.6512282],[4.53421474,0.02822321,96.65031942],[4.53421421,0.02822148,96.64941371],[4.53421367,0.02821976,96.64851103],[4.53421314,0.02821804,96.64761137],[4.53421261,0.02821632,96.6467147],[4.53421208,0.02821459,96.64582101],[4.53421155,0.02821287,96.64493028],[4.53421102,0.02821115,96.64404248],[4.53421049,0.02820943,96.64315759],[4.53420996,0.0282077,96.64227559],[4.53420943,0.02820598,96.64139646],[4.5342089,0.02820426,96.64052019],[4.53420837,0.02820253,96.63964674],[4.53420784,0.02820081,96.6387761],[4.53420731,0.02819909,96.63790825],[4.53420679,0.02819737,96.63704316],[4.53420626,0.02819564,96.63618081],[4.53420573,0.02819392,96.63532119],[4.5342052,0.0281922,96.63446427],[4.53420467,0.02819047,96.63361003],[4.53420414,0.02818875,96.63275844],[4.53420361,0.02818703,96.63190949],[4.53420308,0.0281853,96.63106316],[4.53420255,0.02818358,96.63021942],[4.53420202,0.02818186,96.62937825],[4.53420149,0.02818014,96.62853962],[4.53420096,0.02817841,96.62770353],[4.53420043,0.02817669,96.62686995],[4.5341999,0.02817497,96.62603884],[4.53419938,0.02817324,96.6252102],[4.53419885,0.02817152,96.624384],[4.53419832,0.0281698,96.62356022],[4.53419779,0.02816807,96.62273884],[4.53419726,0.02816635,96.62191983],[4.53419673,0.02816463,96.62110317],[4.5341962,0.02816291,96.62028884],[4.53419567,0.02816118,96.61947683],[4.53419514,0.02815946,96.6186671],[4.53419461,0.02815774,96.61785963],[4.53419408,0.02815601,96.61705441],[4.53419356,0.02815429,96.61625141],[4.53419303,0.02815257,96.61545061],[4.5341925,0.02815084,96.61465198],[4.53419197,0.02814912,96.61385551],[4.53419144,0.0281474,96.61306117],[4.53419091,0.02814567,96.61226894],[4.53419038,0.02814395,96.61147881],[4.53418985,0.02814223,96.61069073],[4.53418932,0.02814051,96.60990471],[4.53418879,0.02813878,96.6091207],[4.53418826,0.02813706,96.6083387],[4.53418773,0.02813534,96.60755867],[4.5341872,0.02813361,96.6067806],[4.53418667,0.02813189,96.60600447],[4.53418614,0.02813017,96.60523025],[4.53418561,0.02812844,96.60445792],[4.53418508,0.02812672,96.60368746],[4.53418455,0.028125,96.60291884],[4.53418402,0.02812328,96.60215205],[4.53418349,0.02812155,96.60138706],[4.53418296,0.02811983,96.60062386],[4.53418243,0.02811811,96.59986241],[4.5341819,0.02811638,96.5991027],[4.53418137,0.02811466,96.59834471],[4.53418084,0.02811294,96.59758841],[4.53418031,0.02811122,96.59683378],[4.53417978,0.02810949,96.59608081],[4.53417925,0.02810777,96.59532946],[4.53417871,0.02810605,96.59457972],[4.53417818,0.02810433,96.59383156],[4.53417765,0.0281026,96.59308497],[4.53417712,0.02810088,96.59233992],[4.53417659,0.02809916,96.59159642],[4.53417606,0.02809744,96.59085449],[4.53417553,0.02809571,96.59011417],[4.53417499,0.02809399,96.58937548],[4.53417446,0.02809227,96.58863845],[4.53417393,0.02809055,96.58790312],[4.5341734,0.02808883,96.5871695],[4.53417287,0.0280871,96.58643763],[4.53417233,0.02808538,96.58570755],[4.5341718,0.02808366,96.58497926],[4.53417127,0.02808194,96.58425282],[4.53417074,0.02808021,96.58352823],[4.5341702,0.02807849,96.58280554],[4.53416967,0.02807677,96.58208478],[4.53416914,0.02807505,96.58136596],[4.53416861,0.02807333,96.58064912],[4.53416808,0.0280716,96.57993428],[4.53416755,0.02806988,96.57922148],[4.53416701,0.02806816,96.57851074],[4.53416648,0.02806644,96.57780209],[4.53416595,0.02806471,96.57709556],[4.53416542,0.02806299,96.57639118],[4.53416489,0.02806127,96.57568897],[4.53416436,0.02805955,96.57498896],[4.53416383,0.02805782,96.57429118],[4.5341633,0.0280561,96.57359565],[4.53416277,0.02805438,96.57290241],[4.53416224,0.02805265,96.57221148],[4.53416171,0.02805093,96.57152288],[4.53416118,0.02804921,96.57083665],[4.53416065,0.02804749,96.57015281],[4.53416012,0.02804576,96.56947139],[4.53415959,0.02804404,96.5687924],[4.53415906,0.02804232,96.56811589],[4.53415854,0.02804059,96.56744187],[4.53415801,0.02803887,96.56677037],[4.53415748,0.02803714,96.56610142],[4.53415695,0.02803542,96.56543504],[4.53415643,0.0280337,96.56477126],[4.5341559,0.02803197,96.56411009],[4.53415538,0.02803025,96.56345148],[4.53415485,0.02802852,96.56279529],[4.53415432,0.0280268,96.56214137],[4.5341538,0.02802508,96.56148957],[4.53415327,0.02802335,96.56083975],[4.53415275,0.02802163,96.56019176],[4.53415223,0.0280199,96.55954546],[4.5341517,0.02801818,96.5589007],[4.53415118,0.02801645,96.55825735],[4.53415065,0.02801473,96.55761525],[4.53415013,0.028013,96.55697427],[4.5341496,0.02801128,96.55633426],[4.53414908,0.02800955,96.55569508],[4.53414855,0.02800783,96.5550566],[4.53414803,0.0280061,96.55441866],[4.5341475,0.02800438,96.55378115],[4.53414698,0.02800266,96.55314391],[4.53414645,0.02800093,96.5525068],[4.53414593,0.02799921,96.5518697],[4.5341454,0.02799748,96.55123246],[4.53414487,0.02799576,96.55059494],[4.53414434,0.02799404,96.54995702],[4.53414381,0.02799231,96.54931855],[4.53414329,0.02799059,96.5486794],[4.53414276,0.02798887,96.54803944],[4.53414223,0.02798715,96.54739852],[4.53414169,0.02798542,96.54675653],[4.53414116,0.0279837,96.54611332],[4.53414063,0.02798198,96.54546876],[4.5341401,0.02798026,96.54482273],[4.53413956,0.02797854,96.54417514],[4.53413903,0.02797681,96.54352613],[4.53413849,0.02797509,96.54287588],[4.53413795,0.02797337,96.54222457],[4.53413742,0.02797165,96.5415724],[4.53413688,0.02796993,96.54091954],[4.53413634,0.02796821,96.54026617],[4.5341358,0.02796649,96.53961249],[4.53413526,0.02796477,96.53895866],[4.53413472,0.02796305,96.53830487],[4.53413418,0.02796133,96.5376513],[4.53413364,0.02795961,96.53699813],[4.5341331,0.02795789,96.53634553],[4.53413256,0.02795617,96.53569369],[4.53413202,0.02795445,96.53504277],[4.53413148,0.02795273,96.53439296],[4.53413094,0.02795101,96.53374444],[4.5341304,0.02794929,96.53309736],[4.53412986,0.02794757,96.53245191],[4.53412932,0.02794586,96.53180826],[4.53412878,0.02794414,96.53116658],[4.53412824,0.02794242,96.53052703],[4.5341277,0.02794069,96.5298898],[4.53412716,0.02793897,96.52925505],[4.53412663,0.02793725,96.52862294],[4.53412609,0.02793553,96.52799365],[4.53412555,0.02793381,96.52736733],[4.53412502,0.02793209,96.52674416],[4.53412448,0.02793037,96.5261243],[4.53412395,0.02792865,96.52550791],[4.53412342,0.02792693,96.52489514],[4.53412289,0.0279252,96.52428611],[4.53412236,0.02792348,96.52368064],[4.53412183,0.02792176,96.5230785],[4.5341213,0.02792003,96.52247945],[4.53412077,0.02791831,96.52188327],[4.53412024,0.02791659,96.52128972],[4.53411972,0.02791486,96.52069859],[4.53411919,0.02791314,96.52010963],[4.53411867,0.02791141,96.51952263],[4.53411814,0.02790969,96.51893736],[4.53411762,0.02790796,96.51835359],[4.53411709,0.02790624,96.5177711],[4.53411657,0.02790452,96.51718967],[4.53411604,0.02790279,96.51660907],[4.53411552,0.02790107,96.5160291],[4.534115,0.02789934,96.51544952],[4.53411447,0.02789762,96.51487012],[4.53411395,0.02789589,96.51429068],[4.53411342,0.02789417,96.51371099],[4.5341129,0.02789244,96.51313083],[4.53411237,0.02789072,96.51254998],[4.53411185,0.02788899,96.51196824],[4.53411132,0.02788727,96.5113854],[4.53411079,0.02788555,96.51080124],[4.53411027,0.02788382,96.51021555],[4.53410974,0.0278821,96.50962817],[4.53410921,0.02788038,96.50903918],[4.53410868,0.02787865,96.50844868],[4.53410815,0.02787693,96.50785679],[4.53410762,0.02787521,96.50726361],[4.53410709,0.02787349,96.50666927],[4.53410655,0.02787176,96.50607386],[4.53410602,0.02787004,96.5054775],[4.53410549,0.02786832,96.50488031],[4.53410495,0.0278666,96.50428239],[4.53410442,0.02786488,96.50368384],[4.53410389,0.02786315,96.50308478],[4.53410335,0.02786143,96.50248531],[4.53410282,0.02785971,96.50188555],[4.53410228,0.02785799,96.50128559],[4.53410175,0.02785627,96.50068554],[4.53410121,0.02785455,96.5000855],[4.53410068,0.02785283,96.49948559],[4.53410014,0.02785111,96.4988859],[4.53409961,0.02784938,96.49828652],[4.53409907,0.02784766,96.49768745],[4.53409854,0.02784594,96.49708868],[4.53409801,0.02784422,96.49649021],[4.53409747,0.0278425,96.49589201],[4.53409694,0.02784078,96.49529408],[4.5340964,0.02783906,96.4946964],[4.53409587,0.02783733,96.49409896],[4.53409533,0.02783561,96.49350175],[4.5340948,0.02783389,96.49290476],[4.53409426,0.02783217,96.49230797],[4.53409373,0.02783045,96.49171137],[4.53409319,0.02782873,96.49111496],[4.53409266,0.02782701,96.49051871],[4.53409212,0.02782528,96.48992262],[4.53409159,0.02782356,96.48932668],[4.53409106,0.02782184,96.48873086],[4.53409052,0.02782012,96.48813517],[4.53408999,0.0278184,96.48753958],[4.53408945,0.02781668,96.48694409],[4.53408892,0.02781496,96.48634868],[4.53408839,0.02781323,96.48575334],[4.53408785,0.02781151,96.48515805],[4.53408732,0.02780979,96.48456282],[4.53408678,0.02780807,96.48396762],[4.53408625,0.02780635,96.48337244],[4.53408572,0.02780463,96.48277727],[4.53408518,0.0278029,96.48218209],[4.53408465,0.02780118,96.4815869],[4.53408411,0.02779946,96.48099169],[4.53408358,0.02779774,96.48039643],[4.53408305,0.02779602,96.47980112],[4.53408251,0.0277943,96.47920575],[4.53408198,0.02779257,96.4786103],[4.53408145,0.02779085,96.47801477],[4.53408091,0.02778913,96.47741913],[4.53408038,0.02778741,96.47682338],[4.53407985,0.02778569,96.4762275],[4.53407931,0.02778397,96.47563148],[4.53407878,0.02778224,96.47503532],[4.53407825,0.02778052,96.47443899],[4.53407771,0.0277788,96.47384249],[4.53407718,0.02777708,96.47324579],[4.53407665,0.02777536,96.47264891],[4.53407611,0.02777363,96.4720518],[4.53407558,0.02777191,96.47145448],[4.53407505,0.02777019,96.47085692],[4.53407451,0.02776847,96.47025911],[4.53407398,0.02776675,96.46966104],[4.53407345,0.02776502,96.46906269],[4.53407291,0.0277633,96.46846406],[4.53407238,0.02776158,96.46786514],[4.53407185,0.02775986,96.4672659],[4.53407132,0.02775814,96.46666634],[4.53407078,0.02775642,96.46606643],[4.53407025,0.02775469,96.46546617],[4.53406972,0.02775297,96.46486553],[4.53406919,0.02775125,96.4642645],[4.53406865,0.02774953,96.46366306],[4.53406812,0.02774781,96.4630612],[4.53406759,0.02774608,96.46245889],[4.53406706,0.02774436,96.46185613],[4.53406652,0.02774264,96.46125289],[4.53406599,0.02774092,96.46064916],[4.53406546,0.02773919,96.46004492],[4.53406493,0.02773747,96.45944015],[4.53406439,0.02773575,96.45883484],[4.53406386,0.02773403,96.45822897],[4.53406333,0.02773231,96.45762253],[4.5340628,0.02773058,96.4570155],[4.53406226,0.02772886,96.45640786],[4.53406173,0.02772714,96.45579959],[4.5340612,0.02772542,96.45519067],[4.53406067,0.0277237,96.45458109],[4.53406013,0.02772197,96.45397081],[4.5340596,0.02772025,96.45335983],[4.53405907,0.02771853,96.45274812],[4.53405854,0.02771681,96.45213566],[4.53405801,0.02771509,96.45152243],[4.53405747,0.02771336,96.45090842],[4.53405694,0.02771164,96.4502936],[4.53405641,0.02770992,96.44967794],[4.53405588,0.0277082,96.44906144],[4.53405534,0.02770647,96.44844407],[4.53405481,0.02770475,96.44782582],[4.53405428,0.02770303,96.44720666],[4.53405375,0.02770131,96.44658656],[4.53405321,0.02769959,96.44596553],[4.53405268,0.02769786,96.44534352],[4.53405215,0.02769614,96.44472053],[4.53405162,0.02769442,96.44409653],[4.53405108,0.0276927,96.4434715],[4.53405055,0.02769098,96.44284543],[4.53405002,0.02768925,96.4422183],[4.53404949,0.02768753,96.44159007],[4.53404895,0.02768581,96.44096074],[4.53404842,0.02768409,96.44033028],[4.53404789,0.02768237,96.43969867],[4.53404736,0.02768064,96.43906589],[4.53404682,0.02767892,96.43843192],[4.53404629,0.0276772,96.43779674],[4.53404576,0.02767548,96.43716033],[4.53404523,0.02767376,96.43652266],[4.53404469,0.02767203,96.43588372],[4.53404416,0.02767031,96.43524349],[4.53404363,0.02766859,96.43460194],[4.53404309,0.02766687,96.43395906],[4.53404256,0.02766515,96.43331482],[4.53404203,0.02766343,96.43266921],[4.53404149,0.0276617,96.43202221],[4.53404096,0.02765998,96.43137382],[4.53404043,0.02765826,96.43072402],[4.53403989,0.02765654,96.43007279],[4.53403936,0.02765482,96.42942014],[4.53403883,0.02765309,96.42876605],[4.53403829,0.02765137,96.4281105],[4.53403776,0.02764965,96.42745349],[4.53403723,0.02764793,96.42679501],[4.53403669,0.02764621,96.42613505],[4.53403616,0.02764449,96.42547359],[4.53403563,0.02764276,96.42481062],[4.53403509,0.02764104,96.42414613],[4.53403456,0.02763932,96.42348012],[4.53403402,0.0276376,96.42281256],[4.53403349,0.02763588,96.42214346],[4.53403296,0.02763416,96.42147279],[4.53403242,0.02763244,96.42080055],[4.53403189,0.02763071,96.42012673],[4.53403135,0.02762899,96.41945131],[4.53403082,0.02762727,96.41877428],[4.53403029,0.02762555,96.41809564],[4.53402975,0.02762383,96.41741536],[4.53402922,0.02762211,96.41673345],[4.53402868,0.02762038,96.41604988],[4.53402815,0.02761866,96.41536465],[4.53402762,0.02761694,96.41467774],[4.53402708,0.02761522,96.41398915],[4.53402655,0.0276135,96.41329886],[4.53402601,0.02761178,96.41260687],[4.53402548,0.02761006,96.41191315],[4.53402495,0.02760833,96.4112177],[4.53402441,0.02760661,96.41052051],[4.53402388,0.02760489,96.40982156],[4.53402334,0.02760317,96.40912085],[4.53402281,0.02760145,96.40841836],[4.53402228,0.02759973,96.40771408],[4.53402174,0.027598,96.407008],[4.53402121,0.02759628,96.40630011],[4.53402067,0.02759456,96.4055904],[4.53402014,0.02759284,96.40487885],[4.53401961,0.02759112,96.40416546],[4.53401907,0.0275894,96.4034502],[4.53401854,0.02758768,96.40273308],[4.534018,0.02758595,96.40201408],[4.53401747,0.02758423,96.40129319],[4.53401694,0.02758251,96.40057039],[4.5340164,0.02758079,96.39984568],[4.53401587,0.02757907,96.39911904],[4.53401534,0.02757735,96.39839047],[4.5340148,0.02757562,96.39765994],[4.53401427,0.0275739,96.39692746],[4.53401374,0.02757218,96.396193],[4.5340132,0.02757046,96.39545656],[4.53401267,0.02756874,96.39471812],[4.53401213,0.02756702,96.39397768],[4.5340116,0.02756529,96.39323522],[4.53401107,0.02756357,96.39249072],[4.53401054,0.02756185,96.39174418],[4.53401,0.02756013,96.39099556],[4.53400947,0.02755841,96.39024487],[4.53400894,0.02755669,96.38949206],[4.5340084,0.02755496,96.38873714],[4.53400787,0.02755324,96.38798008],[4.53400734,0.02755152,96.38722085],[4.5340068,0.0275498,96.38645946],[4.53400627,0.02754808,96.38569587],[4.53400574,0.02754635,96.38493007],[4.53400521,0.02754463,96.38416205],[4.53400467,0.02754291,96.38339177],[4.53400414,0.02754119,96.38261924],[4.53400361,0.02753947,96.38184442],[4.53400308,0.02753774,96.38106731],[4.53400254,0.02753602,96.38028788],[4.53400201,0.0275343,96.37950611],[4.53400148,0.02753258,96.378722],[4.53400095,0.02753086,96.37793551],[4.53400041,0.02752913,96.37714664],[4.53399988,0.02752741,96.37635536],[4.53399935,0.02752569,96.37556167],[4.53399882,0.02752397,96.37476553],[4.53399828,0.02752225,96.37396694],[4.53399775,0.02752052,96.37316588],[4.53399722,0.0275188,96.37236232],[4.53399669,0.02751708,96.37155626],[4.53399616,0.02751536,96.37074767],[4.53399562,0.02751364,96.36993653],[4.53399509,0.02751191,96.36912284],[4.53399456,0.02751019,96.36830656],[4.53399403,0.02750847,96.3674877],[4.53399349,0.02750675,96.36666621],[4.53399296,0.02750503,96.3658421],[4.53399243,0.0275033,96.36501534],[4.5339919,0.02750158,96.36418592],[4.53399137,0.02749986,96.36335381],[4.53399084,0.02749814,96.36251901],[4.5339903,0.02749641,96.36168148],[4.53398977,0.02749469,96.36084123],[4.53398924,0.02749297,96.35999822],[4.53398871,0.02749125,96.35915244],[4.53398818,0.02748953,96.35830388],[4.53398764,0.0274878,96.35745251],[4.53398711,0.02748608,96.35659833],[4.53398658,0.02748436,96.3557413],[4.53398605,0.02748264,96.35488142],[4.53398552,0.02748092,96.35401867],[4.53398499,0.02747919,96.35315303],[4.53398445,0.02747747,96.35228449],[4.53398392,0.02747575,96.35141302],[4.53398339,0.02747403,96.3505386],[4.53398286,0.0274723,96.34966123],[4.53398233,0.02747058,96.34878089],[4.5339818,0.02746886,96.34789755],[4.53398126,0.02746714,96.3470112],[4.53398073,0.02746542,96.34612183],[4.5339802,0.02746369,96.34522941],[4.53397967,0.02746197,96.34433392],[4.53397914,0.02746025,96.34343536],[4.5339786,0.02745853,96.34253371],[4.53397807,0.0274568,96.34162894],[4.53397754,0.02745508,96.34072104],[4.53397701,0.02745336,96.33980999],[4.53397648,0.02745164,96.33889578],[4.53397595,0.02744992,96.33797838],[4.53397541,0.02744819,96.33705779],[4.53397488,0.02744647,96.33613398],[4.53397435,0.02744475,96.33520693],[4.53397382,0.02744303,96.33427664],[4.53397329,0.0274413,96.33334307],[4.53397276,0.02743958,96.33240622],[4.53397222,0.02743786,96.33146607],[4.53397169,0.02743614,96.3305226],[4.53397116,0.02743442,96.32957579],[4.53397063,0.02743269,96.32862562],[4.5339701,0.02743097,96.32767208],[4.53396956,0.02742925,96.32671516],[4.53396903,0.02742753,96.32575482],[4.5339685,0.02742581,96.32479106],[4.53396797,0.02742408,96.32382386],[4.53396744,0.02742236,96.3228532],[4.53396691,0.02742064,96.32187907],[4.53396637,0.02741892,96.32090144],[4.53396584,0.02741719,96.3199203],[4.53396531,0.02741547,96.31893563],[4.53396478,0.02741375,96.31794741],[4.53396425,0.02741203,96.31695563],[4.53396371,0.02741031,96.31596027],[4.53396318,0.02740858,96.31496131],[4.53396265,0.02740686,96.31395874],[4.53396212,0.02740514,96.31295254],[4.53396158,0.02740342,96.31194268],[4.53396105,0.0274017,96.31092916],[4.53396052,0.02739997,96.30991196],[4.53395999,0.02739825,96.30889106],[4.53395946,0.02739653,96.30786644],[4.53395892,0.02739481,96.30683808],[4.53395839,0.02739309,96.30580597],[4.53395786,0.02739136,96.30477011],[4.53395733,0.02738964,96.3037306],[4.53395679,0.02738792,96.30268754],[4.53395626,0.0273862,96.30164103],[4.53395573,0.02738448,96.30059121],[4.53395519,0.02738276,96.29953817],[4.53395466,0.02738103,96.29848202],[4.53395413,0.02737931,96.29742288],[4.5339536,0.02737759,96.29636086],[4.53395306,0.02737587,96.29529606],[4.53395253,0.02737415,96.29422861],[4.533952,0.02737242,96.2931586],[4.53395147,0.0273707,96.29208615],[4.53395093,0.02736898,96.29101137],[4.5339504,0.02736726,96.28993437],[4.53394987,0.02736554,96.28885526],[4.53394933,0.02736382,96.28777415],[4.5339488,0.02736209,96.28669115],[4.53394827,0.02736037,96.28560637],[4.53394773,0.02735865,96.28451993],[4.5339472,0.02735693,96.28343193],[4.53394667,0.02735521,96.28234247],[4.53394613,0.02735349,96.28125168],[4.5339456,0.02735176,96.28015967],[4.53394507,0.02735004,96.27906653],[4.53394453,0.02734832,96.27797238],[4.533944,0.0273466,96.27687734],[4.53394347,0.02734488,96.27578151],[4.53394293,0.02734316,96.274685],[4.5339424,0.02734143,96.27358792],[4.53394186,0.02733971,96.27249038],[4.53394133,0.02733799,96.2713925],[4.5339408,0.02733627,96.27029437],[4.53394026,0.02733455,96.26919612],[4.53393973,0.02733283,96.26809784],[4.53393919,0.02733111,96.26699966],[4.53393866,0.02732938,96.26590167],[4.53393813,0.02732766,96.26480399],[4.53393759,0.02732594,96.26370673],[4.53393706,0.02732422,96.26261],[4.53393652,0.0273225,96.26151391],[4.53393599,0.02732078,96.26041856],[4.53393545,0.02731906,96.25932407],[4.53393492,0.02731734,96.25823055],[4.53393438,0.02731561,96.25713811],[4.53393385,0.02731389,96.25604687],[4.53393331,0.02731217,96.25495693],[4.53393278,0.02731045,96.25386842],[4.53393224,0.02730873,96.25278146],[4.53393171,0.02730701,96.25169614],[4.53393117,0.02730529,96.25061259],[4.53393064,0.02730357,96.24953093],[4.5339301,0.02730185,96.24845125],[4.53392957,0.02730012,96.24737369],[4.53392903,0.0272984,96.24629836],[4.5339285,0.02729668,96.24522536],[4.53392796,0.02729496,96.24415482],[4.53392743,0.02729324,96.24308685],[4.53392689,0.02729152,96.24202156],[4.53392636,0.0272898,96.24095906],[4.53392582,0.02728808,96.23989948],[4.53392529,0.02728636,96.23884293],[4.53392475,0.02728464,96.23778952],[4.53392421,0.02728292,96.23673936],[4.53392368,0.02728119,96.23569257],[4.53392314,0.02727947,96.23464928],[4.53392261,0.02727775,96.23360958],[4.53392207,0.02727603,96.23257359],[4.53392153,0.02727431,96.23154144],[4.533921,0.02727259,96.23051324],[4.53392046,0.02727087,96.22948909],[4.53391993,0.02726915,96.22846912],[4.53391939,0.02726743,96.22745344],[4.53391885,0.02726571,96.22644217],[4.53391832,0.02726399,96.22543541],[4.53391778,0.02726227,96.2244333],[4.53391724,0.02726055,96.22343593],[4.53391671,0.02725882,96.22244344],[4.53391617,0.0272571,96.22145592],[4.53391564,0.02725538,96.22047351],[4.5339151,0.02725366,96.2194963],[4.53391456,0.02725194,96.21852443],[4.53391403,0.02725022,96.21755799],[4.53391349,0.0272485,96.21659712],[4.53391295,0.02724678,96.21564192],[4.53391242,0.02724506,96.21469252],[4.53391188,0.02724334,96.21374901],[4.53391134,0.02724162,96.21281153],[4.53391081,0.0272399,96.21188019],[4.53391027,0.02723818,96.2109551],[4.53390973,0.02723646,96.21003638],[4.5339092,0.02723474,96.20912414],[4.53390866,0.02723302,96.20821851],[4.53390812,0.0272313,96.20731959],[4.53390759,0.02722957,96.2064275],[4.53390705,0.02722785,96.20554236],[4.53390651,0.02722613,96.20466428],[4.53390598,0.02722441,96.20379338],[4.53390544,0.02722269,96.20292977],[4.5339049,0.02722097,96.20207358],[4.53390436,0.02721925,96.20122491],[4.53390383,0.02721753,96.20038389],[4.53390329,0.02721581,96.19955062],[4.53390275,0.02721409,96.19872523],[4.53390222,0.02721237,96.19790783],[4.53390168,0.02721065,96.19709853],[4.53390114,0.02720893,96.19629746],[4.53390061,0.02720721,96.19550472],[4.53390007,0.02720549,96.19472044],[4.53389953,0.02720377,96.19394473],[4.53389899,0.02720205,96.1931777],[4.53389846,0.02720033,96.19241947],[4.53389792,0.02719861,96.19167016],[4.53389738,0.02719689,96.19092988],[4.53389685,0.02719517,96.19019863],[4.53389631,0.02719345,96.18947627],[4.53389577,0.02719173,96.18876269],[4.53389524,0.02719,96.18805776],[4.5338947,0.02718828,96.18736136],[4.53389416,0.02718656,96.18667335],[4.53389362,0.02718484,96.18599361],[4.53389309,0.02718312,96.18532201],[4.53389255,0.0271814,96.18465844],[4.53389201,0.02717968,96.18400275],[4.53389148,0.02717796,96.18335483],[4.53389094,0.02717624,96.18271454],[4.5338904,0.02717452,96.18208177],[4.53388986,0.0271728,96.18145638],[4.53388933,0.02717108,96.18083825],[4.53388879,0.02716936,96.18022726],[4.53388825,0.02716764,96.17962326],[4.53388772,0.02716592,96.17902615],[4.53388718,0.0271642,96.17843579],[4.53388664,0.02716248,96.17785205],[4.53388611,0.02716076,96.1772748],[4.53388557,0.02715904,96.17670393],[4.53388503,0.02715732,96.1761393],[4.5338845,0.0271556,96.17558079],[4.53388396,0.02715388,96.17502827],[4.53388342,0.02715215,96.17448161],[4.53388289,0.02715043,96.17394068],[4.53388235,0.02714871,96.17340536],[4.53388181,0.02714699,96.17287552],[4.53388127,0.02714527,96.17235103],[4.53388074,0.02714355,96.17183177],[4.5338802,0.02714183,96.17131761],[4.53387966,0.02714011,96.17080841],[4.53387913,0.02713839,96.17030404],[4.53387859,0.02713667,96.16980438],[4.53387806,0.02713495,96.16930928],[4.53387752,0.02713323,96.16881862],[4.53387698,0.02713151,96.16833227],[4.53387645,0.02712979,96.16785008],[4.53387591,0.02712807,96.16737194],[4.53387537,0.02712635,96.1668977],[4.53387484,0.02712463,96.16642724],[4.5338743,0.02712291,96.16596042],[4.53387376,0.02712119,96.16549711],[4.53387323,0.02711946,96.16503718],[4.53387269,0.02711774,96.16458049],[4.53387215,0.02711602,96.16412692],[4.53387162,0.0271143,96.16367632],[4.53387108,0.02711258,96.16322858],[4.53387055,0.02711086,96.16278356],[4.53387001,0.02710914,96.16234111],[4.53386947,0.02710742,96.16190112],[4.53386894,0.0271057,96.16146345],[4.5338684,0.02710398,96.16102797],[4.53386786,0.02710226,96.16059455],[4.53386733,0.02710054,96.16016304],[4.53386679,0.02709882,96.15973333],[4.53386626,0.0270971,96.15930528],[4.53386572,0.02709538,96.15887876],[4.53386518,0.02709365,96.15845363],[4.53386465,0.02709193,96.15802976],[4.53386411,0.02709021,96.15760703],[4.53386357,0.02708849,96.1571853],[4.53386304,0.02708677,96.15676443],[4.5338625,0.02708505,96.1563443],[4.53386197,0.02708333,96.15592478],[4.53386143,0.02708161,96.15550572],[4.53386089,0.02707989,96.15508701],[4.53386036,0.02707817,96.15466851],[4.53385982,0.02707645,96.15425008],[4.53385929,0.02707473,96.1538316],[4.53385875,0.02707301,96.15341293],[4.53385821,0.02707129,96.15299395],[4.53385768,0.02706957,96.15257451],[4.53385714,0.02706785,96.1521545],[4.5338566,0.02706612,96.15173377],[4.53385607,0.0270644,96.15131221],[4.53385553,0.02706268,96.15088966],[4.533855,0.02706096,96.15046601],[4.53385446,0.02705924,96.15004112],[4.53385392,0.02705752,96.14961487],[4.53385339,0.0270558,96.14918711],[4.53385285,0.02705408,96.14875773],[4.53385232,0.02705236,96.14832658],[4.53385178,0.02705064,96.14789354],[4.53385124,0.02704892,96.14745847],[4.53385071,0.0270472,96.14702125],[4.53385017,0.02704548,96.14658174],[4.53384963,0.02704376,96.14613982],[4.5338491,0.02704204,96.14569535],[4.53384856,0.02704031,96.1452482],[4.53384803,0.02703859,96.14479824],[4.53384749,0.02703687,96.14434534],[4.53384695,0.02703515,96.14388937],[4.53384642,0.02703343,96.1434302],[4.53384588,0.02703171,96.1429677],[4.53384534,0.02702999,96.14250173],[4.53384481,0.02702827,96.14203217],[4.53384427,0.02702655,96.14155889],[4.53384373,0.02702483,96.14108175],[4.5338432,0.02702311,96.14060063],[4.53384266,0.02702139,96.14011539],[4.53384213,0.02701967,96.13962591],[4.53384159,0.02701795,96.13913206],[4.53384105,0.02701623,96.13863369],[4.53384052,0.02701451,96.1381307],[4.53383998,0.02701279,96.13762293],[4.53383944,0.02701107,96.13711027],[4.53383891,0.02700934,96.13659259],[4.53383837,0.02700762,96.13606974],[4.53383783,0.0270059,96.13554162],[4.5338373,0.02700418,96.13500807],[4.53383676,0.02700246,96.13446898],[4.53383622,0.02700074,96.13392421],[4.53383569,0.02699902,96.13337364],[4.53383515,0.0269973,96.13281713],[4.53383461,0.02699558,96.13225455],[4.53383408,0.02699386,96.13168578],[4.53383354,0.02699214,96.13111069],[4.533833,0.02699042,96.13052913],[4.53383246,0.0269887,96.129941],[4.53383193,0.02698698,96.12934614],[4.53383139,0.02698526,96.12874445],[4.53383085,0.02698354,96.12813578],[4.53383032,0.02698182,96.12752],[4.53382978,0.0269801,96.126897],[4.53382924,0.02697838,96.12626663],[4.53382871,0.02697666,96.12562876],[4.53382817,0.02697494,96.12498328],[4.53382763,0.02697322,96.12433004],[4.53382709,0.0269715,96.12366892],[4.53382656,0.02696978,96.12299979],[4.53382602,0.02696806,96.12232252],[4.53382548,0.02696634,96.12163698],[4.53382495,0.02696462,96.12094304],[4.53382441,0.0269629,96.12024057],[4.53382387,0.02696118,96.11952944],[4.53382333,0.02695946,96.11880952],[4.53382279,0.02695774,96.11808069],[4.53382226,0.02695602,96.11734281],[4.53382172,0.0269543,96.11659587],[4.53382118,0.02695258,96.11583999],[4.53382064,0.02695086,96.11507525],[4.53382011,0.02694914,96.11430178],[4.53381957,0.02694742,96.11351966],[4.53381903,0.0269457,96.11272902],[4.53381849,0.02694398,96.11192995],[4.53381795,0.02694226,96.11112256],[4.53381742,0.02694054,96.11030696],[4.53381688,0.02693882,96.10948324],[4.53381634,0.0269371,96.10865153],[4.5338158,0.02693538,96.10781191],[4.53381526,0.02693366,96.1069645],[4.53381472,0.02693194,96.10610941],[4.53381419,0.02693022,96.10524673],[4.53381365,0.0269285,96.10437657],[4.53381311,0.02692678,96.10349904],[4.53381257,0.02692506,96.10261425],[4.53381203,0.02692334,96.10172229],[4.53381149,0.02692162,96.10082327],[4.53381095,0.0269199,96.0999173],[4.53381042,0.02691818,96.09900448],[4.53380988,0.02691646,96.09808492],[4.53380934,0.02691474,96.09715871],[4.5338088,0.02691302,96.09622597],[4.53380826,0.0269113,96.0952868],[4.53380772,0.02690958,96.09434131],[4.53380718,0.02690786,96.09338959],[4.53380664,0.02690614,96.09243176],[4.5338061,0.02690442,96.09146793],[4.53380556,0.0269027,96.09049821],[4.53380502,0.02690098,96.08952269],[4.53380449,0.02689926,96.0885415],[4.53380395,0.02689754,96.08755473],[4.53380341,0.02689582,96.08656249],[4.53380287,0.0268941,96.0855649],[4.53380233,0.02689238,96.08456206],[4.53380179,0.02689067,96.08355407],[4.53380125,0.02688895,96.08254105],[4.53380071,0.02688723,96.08152309],[4.53380017,0.02688551,96.08050032],[4.53379963,0.02688379,96.07947283],[4.53379909,0.02688207,96.07844074],[4.53379855,0.02688035,96.07740414],[4.53379801,0.02687863,96.07636316],[4.53379747,0.02687691,96.07531789],[4.53379693,0.02687519,96.07426844],[4.53379639,0.02687347,96.07321492],[4.53379585,0.02687175,96.07215744],[4.53379531,0.02687003,96.0710961],[4.53379477,0.02686831,96.07003102],[4.53379422,0.02686659,96.06896229],[4.53379368,0.02686487,96.06789003],[4.53379314,0.02686316,96.06681435],[4.5337926,0.02686144,96.06573535],[4.53379206,0.02685972,96.06465313],[4.53379152,0.026858,96.06356781],[4.53379098,0.02685628,96.0624795],[4.53379044,0.02685456,96.06138829],[4.5337899,0.02685284,96.06029431],[4.53378936,0.02685112,96.05919764],[4.53378882,0.0268494,96.05809842],[4.53378828,0.02684768,96.05699673],[4.53378774,0.02684596,96.05589269],[4.53378719,0.02684424,96.05478641],[4.53378665,0.02684253,96.05367798],[4.53378611,0.02684081,96.05256753],[4.53378557,0.02683909,96.05145516],[4.53378503,0.02683737,96.05034097],[4.53378449,0.02683565,96.04922508],[4.53378395,0.02683393,96.04810758],[4.53378341,0.02683221,96.04698859],[4.53378286,0.02683049,96.04586822],[4.53378232,0.02682877,96.04474658],[4.53378178,0.02682705,96.04362376],[4.53378124,0.02682534,96.04249988],[4.5337807,0.02682362,96.04137505],[4.53378016,0.0268219,96.04024937],[4.53377962,0.02682018,96.03912295],[4.53377907,0.02681846,96.03799591],[4.53377853,0.02681674,96.03686834],[4.53377799,0.02681502,96.03574035],[4.53377745,0.0268133,96.03461206],[4.53377691,0.02681158,96.03348357],[4.53377637,0.02680986,96.03235498],[4.53377582,0.02680815,96.03122642],[4.53377528,0.02680643,96.03009798],[4.53377474,0.02680471,96.02896977],[4.5337742,0.02680299,96.0278419],[4.53377366,0.02680127,96.02671448],[4.53377312,0.02679955,96.02558761],[4.53377257,0.02679783,96.02446141],[4.53377203,0.02679611,96.02333598],[4.53377149,0.0267944,96.02221144],[4.53377095,0.02679268,96.02108788],[4.53377041,0.02679096,96.01996541],[4.53376986,0.02678924,96.01884416],[4.53376932,0.02678752,96.01772421],[4.53376878,0.0267858,96.01660569],[4.53376824,0.02678408,96.0154887],[4.5337677,0.02678236,96.01437334],[4.53376715,0.02678064,96.01325973],[4.53376661,0.02677893,96.01214798],[4.53376607,0.02677721,96.01103819],[4.53376553,0.02677549,96.00993047],[4.53376498,0.02677377,96.00882493],[4.53376444,0.02677205,96.00772167],[4.5337639,0.02677033,96.00662082],[4.53376336,0.02676861,96.00552247],[4.53376282,0.02676689,96.00442673],[4.53376227,0.02676518,96.00333371],[4.53376173,0.02676346,96.00224352],[4.53376119,0.02676174,96.00115628],[4.53376065,0.02676002,96.00007208],[4.53376011,0.0267583,95.99899103],[4.53375956,0.02675658,95.99791325],[4.53375902,0.02675486,95.99683884],[4.53375848,0.02675314,95.99576792],[4.53375794,0.02675143,95.99470059],[4.53375739,0.02674971,95.99363695],[4.53375685,0.02674799,95.99257712],[4.53375631,0.02674627,95.99152121],[4.53375577,0.02674455,95.99046932],[4.53375522,0.02674283,95.98942157],[4.53375468,0.02674111,95.98837806],[4.53375414,0.02673939,95.9873389],[4.5337536,0.02673768,95.9863042],[4.53375306,0.02673596,95.98527407],[4.53375251,0.02673424,95.98424861],[4.53375197,0.02673252,95.98322795],[4.53375143,0.0267308,95.98221217],[4.53375089,0.02672908,95.9812014],[4.53375034,0.02672736,95.98019572],[4.5337498,0.02672564,95.97919512],[4.53374926,0.02672393,95.97819958],[4.53374872,0.02672221,95.97720905],[4.53374817,0.02672049,95.97622352],[4.53374763,0.02671877,95.97524295],[4.53374739,0.02671799,95.97479853]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":0}},{"geometry":{"coordinates":[[4.53425006,0.02822734,96.7520086],[4.53424953,0.02822562,96.75118906],[4.534249,0.02822389,96.75037048],[4.53424847,0.02822217,96.74955285],[4.53424795,0.02822045,96.74873616],[4.53424742,0.02821872,96.74792041],[4.53424689,0.028217,96.7471056],[4.53424636,0.02821528,96.74629171],[4.53424584,0.02821355,96.74547875],[4.53424531,0.02821183,96.74466671],[4.53424478,0.0282101,96.74385559],[4.53424425,0.02820838,96.74304538],[4.53424373,0.02820666,96.74223608],[4.5342432,0.02820493,96.74142767],[4.53424267,0.02820321,96.74062017],[4.53424214,0.02820149,96.73981355],[4.53424161,0.02819976,96.73900783],[4.53424109,0.02819804,96.73820298],[4.53424056,0.02819631,96.73739902],[4.53424003,0.02819459,96.73659593],[4.5342395,0.02819287,96.7357937],[4.53423897,0.02819114,96.73499234],[4.53423845,0.02818942,96.73419184],[4.53423792,0.0281877,96.7333922],[4.53423739,0.02818597,96.7325934],[4.53423686,0.02818425,96.73179545],[4.53423633,0.02818252,96.73099834],[4.53423581,0.0281808,96.73020206],[4.53423528,0.02817908,96.72940662],[4.53423475,0.02817735,96.728612],[4.53423422,0.02817563,96.7278182],[4.53423369,0.02817391,96.72702521],[4.53423317,0.02817218,96.72623304],[4.53423264,0.02817046,96.72544168],[4.53423211,0.02816874,96.72465112],[4.53423158,0.02816701,96.72386135],[4.53423105,0.02816529,96.72307238],[4.53423053,0.02816356,96.72228419],[4.53423,0.02816184,96.72149679],[4.53422947,0.02816012,96.72071017],[4.53422894,0.02815839,96.71992432],[4.53422841,0.02815667,96.71913923],[4.53422788,0.02815495,96.71835492],[4.53422736,0.02815322,96.71757136],[4.53422683,0.0281515,96.71678855],[4.5342263,0.02814978,96.7160065],[4.53422577,0.02814805,96.71522518],[4.53422524,0.02814633,96.71444461],[4.53422471,0.0281446,96.71366478],[4.53422419,0.02814288,96.71288567],[4.53422366,0.02814116,96.71210729],[4.53422313,0.02813943,96.71132964],[4.5342226,0.02813771,96.71055269],[4.53422207,0.02813599,96.70977646],[4.53422154,0.02813426,96.70900094],[4.53422102,0.02813254,96.70822612],[4.53422049,0.02813082,96.70745199],[4.53421996,0.02812909,96.70667856],[4.53421943,0.02812737,96.70590582],[4.5342189,0.02812564,96.70513376],[4.53421837,0.02812392,96.70436237],[4.53421784,0.0281222,96.70359166],[4.53421732,0.02812047,96.70282162],[4.53421679,0.02811875,96.70205224],[4.53421626,0.02811703,96.70128353],[4.53421573,0.0281153,96.70051546],[4.5342152,0.02811358,96.69974805],[4.53421467,0.02811186,96.69898128],[4.53421414,0.02811013,96.69821515],[4.53421361,0.02810841,96.69744966],[4.53421309,0.02810669,96.6966848],[4.53421256,0.02810496,96.69592057],[4.53421203,0.02810324,96.69515695],[4.5342115,0.02810152,96.69439396],[4.53421097,0.02809979,96.69363157],[4.53421044,0.02809807,96.6928698],[4.53420991,0.02809635,96.69210862],[4.53420938,0.02809462,96.69134805],[4.53420885,0.0280929,96.69058806],[4.53420833,0.02809118,96.68982867],[4.5342078,0.02808945,96.68906986],[4.53420727,0.02808773,96.68831163],[4.53420674,0.02808601,96.68755398],[4.53420621,0.02808428,96.68679689],[4.53420568,0.02808256,96.68604037],[4.53420515,0.02808083,96.68528441],[4.53420462,0.02807911,96.68452901],[4.53420409,0.02807739,96.68377416],[4.53420356,0.02807566,96.68301985],[4.53420303,0.02807394,96.68226609],[4.5342025,0.02807222,96.68151287],[4.53420198,0.02807049,96.68076017],[4.53420145,0.02806877,96.68000801],[4.53420092,0.02806705,96.67925637],[4.53420039,0.02806533,96.67850525],[4.53419986,0.0280636,96.67775464],[4.53419933,0.02806188,96.67700455],[4.5341988,0.02806016,96.67625496],[4.53419827,0.02805843,96.67550587],[4.53419774,0.02805671,96.67475727],[4.53419721,0.02805499,96.67400917],[4.53419668,0.02805326,96.67326155],[4.53419615,0.02805154,96.67251442],[4.53419562,0.02804982,96.67176777],[4.53419509,0.02804809,96.67102158],[4.53419456,0.02804637,96.67027587],[4.53419403,0.02804465,96.66953062],[4.5341935,0.02804292,96.66878583],[4.53419297,0.0280412,96.6680415],[4.53419244,0.02803948,96.66729761],[4.53419191,0.02803775,96.66655417],[4.53419138,0.02803603,96.66581118],[4.53419085,0.02803431,96.66506862],[4.53419032,0.02803258,96.66432649],[4.53418979,0.02803086,96.66358479],[4.53418926,0.02802914,96.66284352],[4.53418873,0.02802742,96.66210266],[4.5341882,0.02802569,96.66136222],[4.53418767,0.02802397,96.66062219],[4.53418714,0.02802225,96.65988256],[4.53418661,0.02802052,96.65914334],[4.53418608,0.0280188,96.65840451],[4.53418555,0.02801708,96.65766607],[4.53418502,0.02801535,96.65692802],[4.53418449,0.02801363,96.65619036],[4.53418396,0.02801191,96.65545307],[4.53418343,0.02801019,96.65471616],[4.5341829,0.02800846,96.65397962],[4.53418237,0.02800674,96.65324344],[4.53418184,0.02800502,96.65250762],[4.53418131,0.02800329,96.65177217],[4.53418078,0.02800157,96.65103706],[4.53418024,0.02799985,96.65030231],[4.53417971,0.02799813,96.6495679],[4.53417918,0.0279964,96.64883384],[4.53417865,0.02799468,96.64810013],[4.53417812,0.02799296,96.64736675],[4.53417759,0.02799123,96.64663372],[4.53417706,0.02798951,96.64590101],[4.53417653,0.02798779,96.64516865],[4.534176,0.02798607,96.64443661],[4.53417547,0.02798434,96.64370489],[4.53417494,0.02798262,96.6429735],[4.5341744,0.0279809,96.64224244],[4.53417387,0.02797917,96.64151169],[4.53417334,0.02797745,96.64078126],[4.53417281,0.02797573,96.64005114],[4.53417228,0.02797401,96.63932133],[4.53417175,0.02797228,96.63859183],[4.53417122,0.02797056,96.63786263],[4.53417069,0.02796884,96.63713374],[4.53417015,0.02796712,96.63640515],[4.53416962,0.02796539,96.63567685],[4.53416909,0.02796367,96.63494885],[4.53416856,0.02796195,96.63422114],[4.53416803,0.02796022,96.63349372],[4.5341675,0.0279585,96.63276659],[4.53416696,0.02795678,96.63203974],[4.53416643,0.02795506,96.63131317],[4.5341659,0.02795333,96.63058688],[4.53416537,0.02795161,96.62986086],[4.53416484,0.02794989,96.62913512],[4.53416431,0.02794817,96.62840964],[4.53416377,0.02794644,96.62768444],[4.53416324,0.02794472,96.62695949],[4.53416271,0.027943,96.62623481],[4.53416218,0.02794128,96.62551039],[4.53416165,0.02793955,96.62478622],[4.53416112,0.02793783,96.62406231],[4.53416058,0.02793611,96.62333865],[4.53416005,0.02793439,96.62261523],[4.53415952,0.02793266,96.62189206],[4.53415899,0.02793094,96.62116913],[4.53415846,0.02792922,96.62044644],[4.53415792,0.0279275,96.61972399],[4.53415739,0.02792577,96.61900177],[4.53415686,0.02792405,96.61827978],[4.53415633,0.02792233,96.61755802],[4.53415579,0.02792061,96.61683648],[4.53415526,0.02791888,96.61611517],[4.53415473,0.02791716,96.61539407],[4.5341542,0.02791544,96.61467319],[4.53415367,0.02791372,96.61395253],[4.53415313,0.027912,96.61323208],[4.5341526,0.02791027,96.61251183],[4.53415207,0.02790855,96.61179179],[4.53415154,0.02790683,96.61107195],[4.534151,0.02790511,96.61035231],[4.53415047,0.02790338,96.60963287],[4.53414994,0.02790166,96.60891363],[4.53414941,0.02789994,96.60819457],[4.53414887,0.02789822,96.6074757],[4.53414834,0.02789649,96.60675701],[4.53414781,0.02789477,96.60603851],[4.53414728,0.02789305,96.60532019],[4.53414674,0.02789133,96.60460204],[4.53414621,0.02788961,96.60388407],[4.53414568,0.02788788,96.60316627],[4.53414515,0.02788616,96.60244863],[4.53414461,0.02788444,96.60173116],[4.53414408,0.02788272,96.60101385],[4.53414355,0.02788099,96.6002967],[4.53414302,0.02787927,96.5995797],[4.53414248,0.02787755,96.59886286],[4.53414195,0.02787583,96.59814617],[4.53414142,0.0278741,96.59742962],[4.53414088,0.02787238,96.59671322],[4.53414035,0.02787066,96.59599696],[4.53413982,0.02786894,96.59528084],[4.53413929,0.02786722,96.59456485],[4.53413875,0.02786549,96.59384899],[4.53413822,0.02786377,96.59313326],[4.53413769,0.02786205,96.59241766],[4.53413715,0.02786033,96.59170218],[4.53413662,0.0278586,96.59098682],[4.53413609,0.02785688,96.59027157],[4.53413556,0.02785516,96.58955644],[4.53413502,0.02785344,96.58884142],[4.53413449,0.02785172,96.58812651],[4.53413396,0.02784999,96.5874117],[4.53413342,0.02784827,96.58669699],[4.53413289,0.02784655,96.58598238],[4.53413236,0.02784483,96.58526786],[4.53413182,0.02784311,96.58455344],[4.53413129,0.02784138,96.5838391],[4.53413076,0.02783966,96.58312486],[4.53413023,0.02783794,96.58241069],[4.53412969,0.02783622,96.5816966],[4.53412916,0.02783449,96.58098259],[4.53412863,0.02783277,96.58026865],[4.53412809,0.02783105,96.57955478],[4.53412756,0.02782933,96.57884098],[4.53412703,0.02782761,96.57812724],[4.53412649,0.02782588,96.57741357],[4.53412596,0.02782416,96.57669995],[4.53412543,0.02782244,96.57598638],[4.53412489,0.02782072,96.57527286],[4.53412436,0.027819,96.5745594],[4.53412383,0.02781727,96.57384597],[4.5341233,0.02781555,96.57313259],[4.53412276,0.02781383,96.57241925],[4.53412223,0.02781211,96.57170594],[4.5341217,0.02781038,96.57099266],[4.53412116,0.02780866,96.57027941],[4.53412063,0.02780694,96.56956618],[4.5341201,0.02780522,96.56885298],[4.53411956,0.0278035,96.56813979],[4.53411903,0.02780177,96.56742662],[4.5341185,0.02780005,96.56671346],[4.53411796,0.02779833,96.56600031],[4.53411743,0.02779661,96.56528717],[4.5341169,0.02779489,96.56457402],[4.53411636,0.02779316,96.56386088],[4.53411583,0.02779144,96.56314773],[4.5341153,0.02778972,96.56243457],[4.53411476,0.027788,96.56172141],[4.53411423,0.02778628,96.56100822],[4.5341137,0.02778455,96.56029502],[4.53411316,0.02778283,96.5595818],[4.53411263,0.02778111,96.55886855],[4.5341121,0.02777939,96.55815528],[4.53411156,0.02777767,96.55744197],[4.53411103,0.02777594,96.55672863],[4.5341105,0.02777422,96.55601525],[4.53410996,0.0277725,96.55530183],[4.53410943,0.02777078,96.55458836],[4.5341089,0.02776906,96.55387484],[4.53410836,0.02776733,96.55316128],[4.53410783,0.02776561,96.55244766],[4.5341073,0.02776389,96.55173397],[4.53410677,0.02776217,96.55102023],[4.53410623,0.02776044,96.55030642],[4.5341057,0.02775872,96.54959255],[4.53410517,0.027757,96.5488786],[4.53410463,0.02775528,96.54816457],[4.5341041,0.02775356,96.54745046],[4.53410357,0.02775183,96.54673628],[4.53410303,0.02775011,96.546022],[4.5341025,0.02774839,96.54530764],[4.53410197,0.02774667,96.54459318],[4.53410143,0.02774495,96.54387863],[4.5341009,0.02774322,96.54316397],[4.53410037,0.0277415,96.54244922],[4.53409983,0.02773978,96.54173435],[4.5340993,0.02773806,96.54101938],[4.53409877,0.02773634,96.54030429],[4.53409823,0.02773461,96.53958908],[4.5340977,0.02773289,96.53887375],[4.53409717,0.02773117,96.5381583],[4.53409663,0.02772945,96.53744272],[4.5340961,0.02772773,96.53672701],[4.53409557,0.027726,96.53601116],[4.53409503,0.02772428,96.53529517],[4.5340945,0.02772256,96.53457904],[4.53409397,0.02772084,96.53386277],[4.53409344,0.02771911,96.53314634],[4.5340929,0.02771739,96.53242976],[4.53409237,0.02771567,96.53171302],[4.53409184,0.02771395,96.53099612],[4.5340913,0.02771223,96.53027905],[4.53409077,0.0277105,96.5295618],[4.53409024,0.02770878,96.52884438],[4.5340897,0.02770706,96.52812678],[4.53408917,0.02770534,96.52740898],[4.53408864,0.02770362,96.526691],[4.5340881,0.02770189,96.52597281],[4.53408757,0.02770017,96.52525442],[4.53408704,0.02769845,96.52453583],[4.53408651,0.02769673,96.52381702],[4.53408597,0.027695,96.523098],[4.53408544,0.02769328,96.52237875],[4.53408491,0.02769156,96.52165928],[4.53408437,0.02768984,96.52093958],[4.53408384,0.02768812,96.52021964],[4.53408331,0.02768639,96.51949946],[4.53408278,0.02768467,96.51877903],[4.53408224,0.02768295,96.51805835],[4.53408171,0.02768123,96.51733742],[4.53408118,0.02767951,96.51661622],[4.53408064,0.02767778,96.51589476],[4.53408011,0.02767606,96.51517302],[4.53407958,0.02767434,96.514451],[4.53407905,0.02767262,96.5137287],[4.53407851,0.02767089,96.51300611],[4.53407798,0.02766917,96.51228322],[4.53407745,0.02766745,96.51156003],[4.53407691,0.02766573,96.51083653],[4.53407638,0.02766401,96.51011271],[4.53407585,0.02766228,96.50938857],[4.53407532,0.02766056,96.50866411],[4.53407478,0.02765884,96.50793931],[4.53407425,0.02765712,96.50721417],[4.53407372,0.02765539,96.50648869],[4.53407319,0.02765367,96.50576286],[4.53407265,0.02765195,96.50503667],[4.53407212,0.02765023,96.50431012],[4.53407159,0.0276485,96.50358319],[4.53407106,0.02764678,96.5028559],[4.53407052,0.02764506,96.50212823],[4.53406999,0.02764334,96.50140016],[4.53406946,0.02764162,96.50067171],[4.53406893,0.02763989,96.49994286],[4.53406839,0.02763817,96.49921361],[4.53406786,0.02763645,96.49848394],[4.53406733,0.02763473,96.49775386],[4.5340668,0.027633,96.49702336],[4.53406626,0.02763128,96.49629243],[4.53406573,0.02762956,96.49556107],[4.5340652,0.02762784,96.49482927],[4.53406467,0.02762611,96.49409702],[4.53406413,0.02762439,96.49336432],[4.5340636,0.02762267,96.49263117],[4.53406307,0.02762095,96.49189756],[4.53406254,0.02761923,96.49116347],[4.534062,0.0276175,96.49042892],[4.53406147,0.02761578,96.48969388],[4.53406094,0.02761406,96.48895836],[4.53406041,0.02761234,96.48822234],[4.53405987,0.02761061,96.48748583],[4.53405934,0.02760889,96.48674882],[4.53405881,0.02760717,96.4860113],[4.53405828,0.02760545,96.48527326],[4.53405774,0.02760372,96.4845347],[4.53405721,0.027602,96.48379562],[4.53405668,0.02760028,96.483056],[4.53405615,0.02759856,96.48231585],[4.53405562,0.02759684,96.48157516],[4.53405508,0.02759511,96.48083391],[4.53405455,0.02759339,96.48009211],[4.53405402,0.02759167,96.47934976],[4.53405349,0.02758995,96.47860683],[4.53405295,0.02758822,96.47786333],[4.53405242,0.0275865,96.47711926],[4.53405189,0.02758478,96.4763746],[4.53405136,0.02758306,96.47562935],[4.53405082,0.02758133,96.47488351],[4.53405029,0.02757961,96.47413707],[4.53404976,0.02757789,96.47339003],[4.53404923,0.02757617,96.47264237],[4.5340487,0.02757444,96.47189409],[4.53404816,0.02757272,96.47114519],[4.53404763,0.027571,96.47039566],[4.5340471,0.02756928,96.4696455],[4.53404657,0.02756756,96.4688947],[4.53404603,0.02756583,96.46814325],[4.5340455,0.02756411,96.46739116],[4.53404497,0.02756239,96.4666384],[4.53404444,0.02756067,96.46588498],[4.5340439,0.02755894,96.4651309],[4.53404337,0.02755722,96.46437614],[4.53404284,0.0275555,96.4636207],[4.53404231,0.02755378,96.46286458],[4.53404178,0.02755205,96.46210777],[4.53404124,0.02755033,96.46135026],[4.53404071,0.02754861,96.46059205],[4.53404018,0.02754689,96.45983313],[4.53403965,0.02754516,96.4590735],[4.53403911,0.02754344,96.45831315],[4.53403858,0.02754172,96.45755208],[4.53403805,0.02754,96.45679028],[4.53403752,0.02753828,96.45602774],[4.53403699,0.02753655,96.45526446],[4.53403645,0.02753483,96.45450044],[4.53403592,0.02753311,96.45373566],[4.53403539,0.02753139,96.45297013],[4.53403486,0.02752966,96.45220384],[4.53403432,0.02752794,96.45143678],[4.53403379,0.02752622,96.45066894],[4.53403326,0.0275245,96.44990033],[4.53403273,0.02752277,96.44913093],[4.5340322,0.02752105,96.44836074],[4.53403166,0.02751933,96.44758975],[4.53403113,0.02751761,96.44681797],[4.5340306,0.02751588,96.44604537],[4.53403007,0.02751416,96.44527197],[4.53402953,0.02751244,96.44449775],[4.534029,0.02751072,96.4437227],[4.53402847,0.027509,96.44294683],[4.53402794,0.02750727,96.44217012],[4.5340274,0.02750555,96.44139257],[4.53402687,0.02750383,96.44061418],[4.53402634,0.02750211,96.43983494],[4.53402581,0.02750038,96.43905484],[4.53402528,0.02749866,96.43827388],[4.53402474,0.02749694,96.43749206],[4.53402421,0.02749522,96.43670936],[4.53402368,0.02749349,96.43592578],[4.53402315,0.02749177,96.43514132],[4.53402261,0.02749005,96.43435598],[4.53402208,0.02748833,96.43356974],[4.53402155,0.0274866,96.4327826],[4.53402102,0.02748488,96.43199455],[4.53402048,0.02748316,96.4312056],[4.53401995,0.02748144,96.43041573],[4.53401942,0.02747972,96.42962494],[4.53401889,0.02747799,96.42883322],[4.53401835,0.02747627,96.42804058],[4.53401782,0.02747455,96.42724699],[4.53401729,0.02747283,96.42645246],[4.53401676,0.0274711,96.42565699],[4.53401622,0.02746938,96.42486056],[4.53401569,0.02746766,96.42406317],[4.53401516,0.02746594,96.42326482],[4.53401463,0.02746422,96.4224655],[4.53401409,0.02746249,96.42166521],[4.53401356,0.02746077,96.42086393],[4.53401303,0.02745905,96.42006167],[4.5340125,0.02745733,96.41925842],[4.53401196,0.0274556,96.41845418],[4.53401143,0.02745388,96.41764893],[4.5340109,0.02745216,96.41684267],[4.53401037,0.02745044,96.4160354],[4.53400983,0.02744871,96.41522712],[4.5340093,0.02744699,96.41441781],[4.53400877,0.02744527,96.41360747],[4.53400824,0.02744355,96.4127961],[4.5340077,0.02744183,96.41198369],[4.53400717,0.0274401,96.41117024],[4.53400664,0.02743838,96.41035574],[4.53400611,0.02743666,96.40954018],[4.53400557,0.02743494,96.40872356],[4.53400504,0.02743321,96.40790587],[4.53400451,0.02743149,96.40708712],[4.53400398,0.02742977,96.40626728],[4.53400344,0.02742805,96.40544637],[4.53400291,0.02742633,96.40462437],[4.53400238,0.0274246,96.40380127],[4.53400184,0.02742288,96.40297708],[4.53400131,0.02742116,96.40215179],[4.53400078,0.02741944,96.40132538],[4.53400025,0.02741771,96.40049786],[4.53399971,0.02741599,96.39966923],[4.53399918,0.02741427,96.39883946],[4.53399865,0.02741255,96.39800857],[4.53399811,0.02741083,96.39717654],[4.53399758,0.0274091,96.39634338],[4.53399705,0.02740738,96.39550906],[4.53399652,0.02740566,96.3946736],[4.53399598,0.02740394,96.39383697],[4.53399545,0.02740222,96.39299919],[4.53399492,0.02740049,96.39216024],[4.53399438,0.02739877,96.39132011],[4.53399385,0.02739705,96.39047881],[4.53399332,0.02739533,96.38963633],[4.53399278,0.0273936,96.38879266],[4.53399225,0.02739188,96.3879478],[4.53399172,0.02739016,96.38710175],[4.53399119,0.02738844,96.38625449],[4.53399065,0.02738672,96.38540602],[4.53399012,0.02738499,96.38455635],[4.53398959,0.02738327,96.38370546],[4.53398905,0.02738155,96.38285335],[4.53398852,0.02737983,96.38200006],[4.53398799,0.02737811,96.38114563],[4.53398745,0.02737638,96.38029009],[4.53398692,0.02737466,96.37943348],[4.53398639,0.02737294,96.37857584],[4.53398585,0.02737122,96.3777172],[4.53398532,0.0273695,96.37685761],[4.53398479,0.02736777,96.3759971],[4.53398425,0.02736605,96.37513571],[4.53398372,0.02736433,96.37427347],[4.53398319,0.02736261,96.37341044],[4.53398265,0.02736089,96.37254663],[4.53398212,0.02735916,96.3716821],[4.53398159,0.02735744,96.37081687],[4.53398105,0.02735572,96.36995099],[4.53398052,0.027354,96.36908449],[4.53397999,0.02735228,96.36821742],[4.53397945,0.02735055,96.3673498],[4.53397892,0.02734883,96.36648168],[4.53397839,0.02734711,96.3656131],[4.53397785,0.02734539,96.36474409],[4.53397732,0.02734367,96.36387469],[4.53397679,0.02734194,96.36300493],[4.53397625,0.02734022,96.36213486],[4.53397572,0.0273385,96.36126452],[4.53397518,0.02733678,96.36039393],[4.53397465,0.02733506,96.35952314],[4.53397412,0.02733333,96.35865219],[4.53397358,0.02733161,96.35778111],[4.53397305,0.02732989,96.35690994],[4.53397252,0.02732817,96.35603872],[4.53397198,0.02732645,96.35516749],[4.53397145,0.02732473,96.35429628],[4.53397092,0.027323,96.35342513],[4.53397038,0.02732128,96.35255407],[4.53396985,0.02731956,96.35168315],[4.53396931,0.02731784,96.35081241],[4.53396878,0.02731612,96.34994188],[4.53396825,0.02731439,96.34907159],[4.53396771,0.02731267,96.34820159],[4.53396718,0.02731095,96.34733191],[4.53396664,0.02730923,96.3464626],[4.53396611,0.02730751,96.34559368],[4.53396558,0.02730579,96.34472519],[4.53396504,0.02730406,96.34385718],[4.53396451,0.02730234,96.34298968],[4.53396398,0.02730062,96.34212272],[4.53396344,0.0272989,96.34125635],[4.53396291,0.02729718,96.3403906],[4.53396237,0.02729545,96.33952551],[4.53396184,0.02729373,96.33866112],[4.53396131,0.02729201,96.33779745],[4.53396077,0.02729029,96.33693456],[4.53396024,0.02728857,96.33607248],[4.5339597,0.02728685,96.33521125],[4.53395917,0.02728512,96.33435089],[4.53395863,0.0272834,96.33349146],[4.5339581,0.02728168,96.33263298],[4.53395757,0.02727996,96.3317755],[4.53395703,0.02727824,96.33091904],[4.5339565,0.02727652,96.33006366],[4.53395596,0.02727479,96.32920938],[4.53395543,0.02727307,96.32835625],[4.53395489,0.02727135,96.32750429],[4.53395436,0.02726963,96.32665355],[4.53395383,0.02726791,96.32580407],[4.53395329,0.02726618,96.32495588],[4.53395276,0.02726446,96.32410901],[4.53395222,0.02726274,96.32326351],[4.53395169,0.02726102,96.32241942],[4.53395115,0.0272593,96.32157676],[4.53395062,0.02725758,96.32073558],[4.53395009,0.02725586,96.31989591],[4.53394955,0.02725413,96.31905779],[4.53394902,0.02725241,96.31822126],[4.53394848,0.02725069,96.31738636],[4.53394795,0.02724897,96.31655312],[4.53394741,0.02724725,96.31572157],[4.53394688,0.02724553,96.31489176],[4.53394634,0.0272438,96.31406373],[4.53394581,0.02724208,96.3132375],[4.53394527,0.02724036,96.31241312],[4.53394474,0.02723864,96.31159062],[4.53394421,0.02723692,96.31077004],[4.53394367,0.0272352,96.30995142],[4.53394314,0.02723347,96.30913479],[4.5339426,0.02723175,96.30832019],[4.53394207,0.02723003,96.30750766],[4.53394153,0.02722831,96.30669724],[4.533941,0.02722659,96.30588895],[4.53394046,0.02722487,96.30508284],[4.53393993,0.02722314,96.30427895],[4.53393939,0.02722142,96.30347731],[4.53393886,0.0272197,96.30267796],[4.53393832,0.02721798,96.30188093],[4.53393779,0.02721626,96.30108626],[4.53393725,0.02721454,96.30029399],[4.53393672,0.02721282,96.29950416],[4.53393618,0.02721109,96.2987168],[4.53393565,0.02720937,96.29793195],[4.53393511,0.02720765,96.29714964],[4.53393458,0.02720593,96.29636991],[4.53393404,0.02720421,96.29559281],[4.53393351,0.02720249,96.29481835],[4.53393297,0.02720077,96.29404659],[4.53393244,0.02719904,96.29327756],[4.5339319,0.02719732,96.29251129],[4.53393137,0.0271956,96.29174783],[4.53393083,0.02719388,96.2909872],[4.5339303,0.02719216,96.29022945],[4.53392976,0.02719044,96.28947461],[4.53392923,0.02718872,96.28872271],[4.53392869,0.02718699,96.2879738],[4.53392816,0.02718527,96.28722787],[4.53392762,0.02718355,96.28648488],[4.53392709,0.02718183,96.28574478],[4.53392655,0.02718011,96.28500753],[4.53392602,0.02717839,96.28427308],[4.53392548,0.02717667,96.2835414],[4.53392494,0.02717494,96.28281244],[4.53392441,0.02717322,96.28208616],[4.53392387,0.0271715,96.28136251],[4.53392334,0.02716978,96.28064145],[4.5339228,0.02716806,96.27992294],[4.53392227,0.02716634,96.27920693],[4.53392173,0.02716462,96.27849338],[4.5339212,0.0271629,96.27778224],[4.53392066,0.02716117,96.27707348],[4.53392013,0.02715945,96.27636705],[4.53391959,0.02715773,96.2756629],[4.53391905,0.02715601,96.274961],[4.53391852,0.02715429,96.27426129],[4.53391798,0.02715257,96.27356375],[4.53391745,0.02715085,96.27286831],[4.53391691,0.02714913,96.27217495],[4.53391638,0.0271474,96.27148361],[4.53391584,0.02714568,96.27079426],[4.5339153,0.02714396,96.27010685],[4.53391477,0.02714224,96.26942133],[4.53391423,0.02714052,96.26873767],[4.5339137,0.0271388,96.26805582],[4.53391316,0.02713708,96.26737573],[4.53391263,0.02713536,96.26669738],[4.53391209,0.02713363,96.2660207],[4.53391155,0.02713191,96.26534566],[4.53391102,0.02713019,96.26467222],[4.53391048,0.02712847,96.26400032],[4.53390995,0.02712675,96.26332994],[4.53390941,0.02712503,96.26266103],[4.53390887,0.02712331,96.26199353],[4.53390834,0.02712159,96.26132742],[4.5339078,0.02711987,96.26066264],[4.53390727,0.02711814,96.25999916],[4.53390673,0.02711642,96.25933693],[4.53390619,0.0271147,96.25867591],[4.53390566,0.02711298,96.25801605],[4.53390512,0.02711126,96.25735732],[4.53390459,0.02710954,96.25669966],[4.53390405,0.02710782,96.25604304],[4.53390351,0.0271061,96.25538742],[4.53390298,0.02710438,96.25473274],[4.53390244,0.02710265,96.25407897],[4.5339019,0.02710093,96.25342607],[4.53390137,0.02709921,96.25277399],[4.53390083,0.02709749,96.25212269],[4.5339003,0.02709577,96.25147212],[4.53389976,0.02709405,96.25082225],[4.53389922,0.02709233,96.25017303],[4.53389869,0.02709061,96.24952442],[4.53389815,0.02708889,96.24887637],[4.53389761,0.02708716,96.24822885],[4.53389708,0.02708544,96.24758181],[4.53389654,0.02708372,96.2469352],[4.533896,0.027082,96.24628899],[4.53389547,0.02708028,96.24564312],[4.53389493,0.02707856,96.24499757],[4.53389439,0.02707684,96.24435229],[4.53389386,0.02707512,96.24370723],[4.53389332,0.0270734,96.24306235],[4.53389278,0.02707168,96.2424176],[4.53389225,0.02706995,96.24177296],[4.53389171,0.02706823,96.24112837],[4.53389117,0.02706651,96.24048378],[4.53389064,0.02706479,96.23983917],[4.5338901,0.02706307,96.23919448],[4.53388956,0.02706135,96.23854968],[4.53388903,0.02705963,96.23790471],[4.53388849,0.02705791,96.23725955],[4.53388795,0.02705619,96.23661414],[4.53388742,0.02705447,96.23596844],[4.53388688,0.02705275,96.23532241],[4.53388634,0.02705102,96.23467601],[4.53388581,0.0270493,96.2340292],[4.53388527,0.02704758,96.23338193],[4.53388473,0.02704586,96.23273416],[4.5338842,0.02704414,96.23208585],[4.53388366,0.02704242,96.23143696],[4.53388312,0.0270407,96.23078744],[4.53388259,0.02703898,96.23013725],[4.53388205,0.02703726,96.22948635],[4.53388151,0.02703554,96.2288347],[4.53388097,0.02703382,96.22818225],[4.53388044,0.0270321,96.22752896],[4.5338799,0.02703037,96.2268748],[4.53387936,0.02702865,96.22621971],[4.53387883,0.02702693,96.22556366],[4.53387829,0.02702521,96.2249066],[4.53387775,0.02702349,96.22424849],[4.53387721,0.02702177,96.22358929],[4.53387668,0.02702005,96.22292895],[4.53387614,0.02701833,96.22226744],[4.5338756,0.02701661,96.22160471],[4.53387507,0.02701489,96.22094072],[4.53387453,0.02701317,96.22027543],[4.53387399,0.02701145,96.2196088],[4.53387345,0.02700973,96.21894078],[4.53387292,0.02700801,96.21827133],[4.53387238,0.02700628,96.21760041],[4.53387184,0.02700456,96.21692797],[4.5338713,0.02700284,96.21625399],[4.53387077,0.02700112,96.2155784],[4.53387023,0.0269994,96.21490118],[4.53386969,0.02699768,96.21422227],[4.53386915,0.02699596,96.21354165],[4.53386862,0.02699424,96.21285925],[4.53386808,0.02699252,96.21217505],[4.53386754,0.0269908,96.21148901],[4.533867,0.02698908,96.21080107],[4.53386647,0.02698736,96.2101112],[4.53386593,0.02698564,96.20941935],[4.53386539,0.02698392,96.20872549],[4.53386485,0.0269822,96.20802957],[4.53386431,0.02698048,96.20733155],[4.53386378,0.02697875,96.20663138],[4.53386324,0.02697703,96.20592904],[4.5338627,0.02697531,96.20522446],[4.53386216,0.02697359,96.20451762],[4.53386163,0.02697187,96.20380847],[4.53386109,0.02697015,96.20309697],[4.53386055,0.02696843,96.20238308],[4.53386001,0.02696671,96.20166675],[4.53385948,0.02696499,96.20094794],[4.53385894,0.02696327,96.20022662],[4.5338584,0.02696155,96.19950273],[4.53385786,0.02695983,96.19877625],[4.53385732,0.02695811,96.19804712],[4.53385679,0.02695639,96.19731531],[4.53385625,0.02695467,96.19658077],[4.53385571,0.02695295,96.19584346],[4.53385517,0.02695123,96.19510334],[4.53385463,0.02694951,96.19436037],[4.5338541,0.02694779,96.19361451],[4.53385356,0.02694607,96.19286571],[4.53385302,0.02694435,96.19211398],[4.53385248,0.02694263,96.19135935],[4.53385194,0.02694091,96.19060185],[4.5338514,0.02693919,96.18984152],[4.53385087,0.02693747,96.18907839],[4.53385033,0.02693575,96.18831251],[4.53384979,0.02693403,96.1875439],[4.53384925,0.02693231,96.1867726],[4.53384871,0.02693059,96.18599865],[4.53384817,0.02692887,96.18522209],[4.53384764,0.02692714,96.18444294],[4.5338471,0.02692542,96.18366125],[4.53384656,0.0269237,96.18287704],[4.53384602,0.02692198,96.18209037],[4.53384548,0.02692026,96.18130125],[4.53384494,0.02691854,96.18050973],[4.53384441,0.02691682,96.17971584],[4.53384387,0.0269151,96.17891962],[4.53384333,0.02691338,96.1781211],[4.53384279,0.02691166,96.17732032],[4.53384225,0.02690994,96.17651731],[4.53384171,0.02690822,96.17571211],[4.53384117,0.0269065,96.17490476],[4.53384063,0.02690478,96.17409528],[4.5338401,0.02690306,96.17328371],[4.53383956,0.02690134,96.1724701],[4.53383902,0.02689962,96.17165447],[4.53383848,0.0268979,96.17083685],[4.53383794,0.02689618,96.17001729],[4.5338374,0.02689446,96.16919581],[4.53383686,0.02689274,96.16837246],[4.53383632,0.02689102,96.16754726],[4.53383579,0.0268893,96.16672026],[4.53383525,0.02688758,96.16589148],[4.53383471,0.02688586,96.16506097],[4.53383417,0.02688414,96.16422874],[4.53383363,0.02688242,96.16339485],[4.53383309,0.0268807,96.16255933],[4.53383255,0.02687898,96.16172221],[4.53383201,0.02687726,96.16088352],[4.53383147,0.02687554,96.1600433],[4.53383093,0.02687382,96.15920158],[4.5338304,0.0268721,96.1583584],[4.53382986,0.02687038,96.1575138],[4.53382932,0.02686866,96.1566678],[4.53382878,0.02686694,96.15582044],[4.53382824,0.02686522,96.15497176],[4.5338277,0.0268635,96.15412179],[4.53382716,0.02686178,96.15327057],[4.53382662,0.02686006,96.15241813],[4.53382608,0.02685834,96.1515645],[4.53382554,0.02685662,96.15070972],[4.533825,0.0268549,96.14985383],[4.53382446,0.02685318,96.14899685],[4.53382392,0.02685146,96.14813882],[4.53382338,0.02684974,96.14727978],[4.53382285,0.02684802,96.14641976],[4.53382231,0.0268463,96.1455588],[4.53382177,0.02684458,96.14469692],[4.53382123,0.02684286,96.14383417],[4.53382069,0.02684114,96.14297058],[4.53382015,0.02683942,96.14210617],[4.53381961,0.0268377,96.141241],[4.53381907,0.02683598,96.14037508],[4.53381853,0.02683426,96.13950846],[4.53381799,0.02683254,96.13864117],[4.53381745,0.02683082,96.13777324],[4.53381691,0.0268291,96.1369047],[4.53381637,0.02682738,96.1360356],[4.53381583,0.02682566,96.13516596],[4.53381529,0.02682394,96.13429582],[4.53381475,0.02682222,96.13342522],[4.53381421,0.0268205,96.13255418],[4.53381367,0.02681878,96.13168274],[4.53381313,0.02681706,96.13081094],[4.53381259,0.02681534,96.1299388],[4.53381205,0.02681362,96.12906637],[4.53381151,0.0268119,96.12819368],[4.53381097,0.02681018,96.12732076],[4.53381043,0.02680846,96.12644764],[4.53380989,0.02680674,96.12557436],[4.53380935,0.02680502,96.12470095],[4.53380881,0.0268033,96.12382745],[4.53380827,0.02680158,96.12295389],[4.53380773,0.02679986,96.1220803],[4.53380719,0.02679814,96.12120672],[4.53380665,0.02679642,96.12033318],[4.53380611,0.0267947,96.11945972],[4.53380557,0.02679298,96.11858636],[4.53380503,0.02679126,96.11771315],[4.53380448,0.02678954,96.11684012],[4.53380394,0.02678782,96.11596729],[4.5338034,0.0267861,96.11509471],[4.53380286,0.02678438,96.11422241],[4.53380232,0.02678266,96.11335041],[4.53380178,0.02678094,96.11247876],[4.53380124,0.02677922,96.1116075],[4.5338007,0.0267775,96.11073664],[4.53380016,0.02677578,96.10986623],[4.53379962,0.02677406,96.1089963],[4.53379908,0.02677234,96.10812688],[4.53379854,0.02677063,96.107258],[4.533798,0.02676891,96.10638971],[4.53379745,0.02676719,96.10552203],[4.53379691,0.02676547,96.104655],[4.53379637,0.02676375,96.10378865],[4.53379583,0.02676203,96.10292302],[4.53379529,0.02676031,96.10205813],[4.53379475,0.02675859,96.10119402],[4.53379421,0.02675687,96.10033073],[4.53379367,0.02675515,96.09946829],[4.53379312,0.02675343,96.09860673],[4.53379258,0.02675171,96.09774609],[4.53379204,0.02674999,96.0968864],[4.5337915,0.02674827,96.09602768],[4.53379096,0.02674655,96.09516999],[4.53379042,0.02674483,96.09431334],[4.53378988,0.02674311,96.09345778],[4.53378933,0.02674139,96.09260334],[4.53378879,0.02673968,96.09175004],[4.53378825,0.02673796,96.09089793],[4.53378771,0.02673624,96.09004704],[4.53378717,0.02673452,96.0891974],[4.53378663,0.0267328,96.08834904],[4.53378608,0.02673108,96.08750201],[4.53378554,0.02672936,96.08665632],[4.533785,0.02672764,96.08581202],[4.53378446,0.02672592,96.08496913],[4.53378392,0.0267242,96.0841277],[4.53378337,0.02672248,96.08328776],[4.53378283,0.02672076,96.08244934],[4.53378229,0.02671904,96.08161246],[4.53378175,0.02671732,96.08077717],[4.53378121,0.02671561,96.07994345],[4.53378066,0.02671389,96.0791113],[4.53378012,0.02671217,96.0782807],[4.53377958,0.02671045,96.07745164],[4.53377904,0.02670873,96.07662411],[4.53377879,0.02670795,96.07624817]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":0}},{"geometry":{"coordinates":[[4.53381307,0.02669699,96.18698408],[4.53381332,0.02669777,96.18730152],[4.53381387,0.02669948,96.18799357],[4.53381442,0.0267012,96.1886779],[4.53381497,0.02670292,96.18935476],[4.53381552,0.02670464,96.1900244],[4.53381606,0.02670636,96.19068708],[4.53381661,0.02670807,96.19134305],[4.53381715,0.02670979,96.19199258],[4.53381769,0.02671151,96.19263596],[4.53381823,0.02671323,96.19327351],[4.53381877,0.02671495,96.19390552],[4.53381931,0.02671668,96.19453231],[4.53381985,0.0267184,96.19515418],[4.53382038,0.02672012,96.19577144],[4.53382092,0.02672184,96.19638439],[4.53382145,0.02672356,96.19699332],[4.53382199,0.02672528,96.19759855],[4.53382252,0.02672701,96.19820036],[4.53382305,0.02672873,96.19879906],[4.53382358,0.02673045,96.19939493],[4.53382411,0.02673218,96.19998828],[4.53382465,0.0267339,96.20057938],[4.53382518,0.02673562,96.20116854],[4.53382571,0.02673735,96.20175603],[4.53382624,0.02673907,96.20234214],[4.53382677,0.02674079,96.20292715],[4.5338273,0.02674251,96.20351134],[4.53382783,0.02674424,96.204095],[4.53382836,0.02674596,96.20467839],[4.53382889,0.02674768,96.20526174],[4.53382942,0.02674941,96.20584515],[4.53382996,0.02675113,96.20642863],[4.53383049,0.02675285,96.20701223],[4.53383102,0.02675458,96.20759597],[4.53383155,0.0267563,96.2081799],[4.53383209,0.02675802,96.20876404],[4.53383262,0.02675974,96.20934844],[4.53383315,0.02676147,96.20993312],[4.53383369,0.02676319,96.21051812],[4.53383422,0.02676491,96.21110347],[4.53383476,0.02676663,96.21168921],[4.53383529,0.02676835,96.21227538],[4.53383583,0.02677008,96.21286199],[4.53383636,0.0267718,96.21344909],[4.5338369,0.02677352,96.21403671],[4.53383743,0.02677524,96.21462489],[4.53383797,0.02677696,96.21521366],[4.5338385,0.02677868,96.21580304],[4.53383904,0.02678041,96.21639308],[4.53383958,0.02678213,96.21698381],[4.53384011,0.02678385,96.21757525],[4.53384065,0.02678557,96.21816746],[4.53384119,0.02678729,96.21876044],[4.53384173,0.02678901,96.21935425],[4.53384227,0.02679073,96.21994891],[4.5338428,0.02679245,96.22054445],[4.53384334,0.02679417,96.22114092],[4.53384388,0.0267959,96.22173834],[4.53384442,0.02679762,96.22233674],[4.53384496,0.02679934,96.22293616],[4.5338455,0.02680106,96.22353663],[4.53384604,0.02680278,96.22413819],[4.53384658,0.0268045,96.22474087],[4.53384712,0.02680622,96.22534469],[4.53384766,0.02680794,96.22594971],[4.5338482,0.02680966,96.22655593],[4.53384874,0.02681138,96.22716339],[4.53384928,0.0268131,96.22777209],[4.53384982,0.02681482,96.22838203],[4.53385036,0.02681654,96.22899324],[4.53385091,0.02681826,96.22960571],[4.53385145,0.02681998,96.23021948],[4.53385199,0.0268217,96.23083453],[4.53385253,0.02682342,96.2314509],[4.53385308,0.02682514,96.23206859],[4.53385362,0.02682686,96.23268761],[4.53385416,0.02682857,96.23330798],[4.5338547,0.02683029,96.23392971],[4.53385525,0.02683201,96.23455282],[4.53385579,0.02683373,96.23517731],[4.53385633,0.02683545,96.23580321],[4.53385688,0.02683717,96.23643054],[4.53385742,0.02683889,96.23705929],[4.53385796,0.02684061,96.2376895],[4.53385851,0.02684233,96.23832118],[4.53385905,0.02684405,96.23895435],[4.53385959,0.02684577,96.23958901],[4.53386014,0.02684749,96.24022519],[4.53386068,0.02684921,96.24086291],[4.53386122,0.02685093,96.24150218],[4.53386177,0.02685264,96.24214303],[4.53386231,0.02685436,96.24278546],[4.53386285,0.02685608,96.24342951],[4.5338634,0.0268578,96.24407518],[4.53386394,0.02685952,96.2447225],[4.53386448,0.02686124,96.24537148],[4.53386503,0.02686296,96.24602215],[4.53386557,0.02686468,96.24667453],[4.53386611,0.0268664,96.24732863],[4.53386666,0.02686812,96.24798448],[4.5338672,0.02686984,96.2486421],[4.53386774,0.02687156,96.24930151],[4.53386829,0.02687328,96.24996272],[4.53386883,0.026875,96.25062577],[4.53386937,0.02687672,96.25129066],[4.53386991,0.02687843,96.25195743],[4.53387045,0.02688015,96.25262609],[4.533871,0.02688187,96.25329667],[4.53387154,0.02688359,96.25396919],[4.53387208,0.02688531,96.25464366],[4.53387262,0.02688703,96.25532012],[4.53387316,0.02688875,96.25599859],[4.5338737,0.02689047,96.25667911],[4.53387424,0.02689219,96.25736176],[4.53387478,0.02689391,96.25804658],[4.53387533,0.02689563,96.25873363],[4.53387587,0.02689735,96.25942297],[4.53387641,0.02689907,96.26011466],[4.53387695,0.02690079,96.26080875],[4.53387748,0.02690252,96.2615053],[4.53387802,0.02690424,96.26220437],[4.53387856,0.02690596,96.26290601],[4.5338791,0.02690768,96.26361027],[4.53387964,0.0269094,96.26431721],[4.53388018,0.02691112,96.26502689],[4.53388072,0.02691284,96.26573936],[4.53388126,0.02691456,96.26645468],[4.5338818,0.02691628,96.26717289],[4.53388234,0.026918,96.26789406],[4.53388287,0.02691972,96.26861824],[4.53388341,0.02692144,96.26934548],[4.53388395,0.02692316,96.27007583],[4.53388449,0.02692489,96.27080935],[4.53388503,0.02692661,96.2715461],[4.53388556,0.02692833,96.27228612],[4.5338861,0.02693005,96.27302947],[4.53388664,0.02693177,96.2737762],[4.53388718,0.02693349,96.27452637],[4.53388771,0.02693521,96.27528003],[4.53388825,0.02693693,96.27603723],[4.53388879,0.02693865,96.27679797],[4.53388932,0.02694038,96.27756221],[4.53388986,0.0269421,96.27832992],[4.5338904,0.02694382,96.27910105],[4.53389094,0.02694554,96.27987555],[4.53389147,0.02694726,96.28065338],[4.53389201,0.02694898,96.28143451],[4.53389255,0.0269507,96.28221889],[4.53389308,0.02695242,96.28300647],[4.53389362,0.02695415,96.28379721],[4.53389415,0.02695586,96.28459108],[4.53389469,0.02695759,96.28538803],[4.53389523,0.02695931,96.28618801],[4.53389576,0.02696103,96.28699099],[4.5338963,0.02696275,96.28779692],[4.53389684,0.02696447,96.28860576],[4.53389737,0.02696619,96.28941747],[4.53389791,0.02696791,96.29023201],[4.53389845,0.02696964,96.29104933],[4.53389898,0.02697136,96.2918694],[4.53389952,0.02697308,96.29269217],[4.53390006,0.0269748,96.2935176],[4.53390059,0.02697652,96.29434565],[4.53390113,0.02697824,96.29517628],[4.53390167,0.02697996,96.29600944],[4.5339022,0.02698168,96.29684507],[4.53390274,0.02698341,96.29768311],[4.53390328,0.02698513,96.29852351],[4.53390381,0.02698685,96.2993662],[4.53390435,0.02698857,96.30021113],[4.53390489,0.02699029,96.30105823],[4.53390543,0.02699201,96.30190746],[4.53390596,0.02699373,96.30275875],[4.5339065,0.02699546,96.30361204],[4.53390704,0.02699718,96.30446728],[4.53390757,0.0269989,96.3053244],[4.53390811,0.02700062,96.30618335],[4.53390865,0.02700234,96.30704406],[4.53390918,0.02700406,96.30790649],[4.53390972,0.02700578,96.30877057],[4.53391026,0.02700751,96.30963624],[4.53391079,0.02700923,96.31050345],[4.53391133,0.02701095,96.31137213],[4.53391187,0.02701267,96.31224223],[4.53391241,0.02701439,96.31311369],[4.53391294,0.02701611,96.31398644],[4.53391348,0.02701783,96.31486043],[4.53391402,0.02701955,96.31573561],[4.53391455,0.02702128,96.31661191],[4.53391509,0.027023,96.31748927],[4.53391563,0.02702472,96.31836763],[4.53391616,0.02702644,96.31924694],[4.5339167,0.02702816,96.32012714],[4.53391724,0.02702988,96.32100816],[4.53391777,0.0270316,96.32188995],[4.53391831,0.02703333,96.32277244],[4.53391885,0.02703505,96.32365559],[4.53391938,0.02703677,96.32453932],[4.53391992,0.02703849,96.32542358],[4.53392046,0.02704021,96.32630831],[4.53392099,0.02704193,96.32719345],[4.53392153,0.02704365,96.32807894],[4.53392206,0.02704538,96.32896473],[4.5339226,0.0270471,96.32985074],[4.53392314,0.02704882,96.33073692],[4.53392367,0.02705054,96.33162321],[4.53392421,0.02705226,96.33250956],[4.53392474,0.02705398,96.33339589],[4.53392528,0.02705571,96.33428216],[4.53392581,0.02705743,96.33516829],[4.53392635,0.02705915,96.33605424],[4.53392689,0.02706087,96.33693993],[4.53392742,0.02706259,96.33782532],[4.53392796,0.02706432,96.33871033],[4.53392849,0.02706604,96.33959492],[4.53392903,0.02706776,96.34047901],[4.53392956,0.02706948,96.34136255],[4.5339301,0.0270712,96.34224548],[4.53393063,0.02707292,96.34312774],[4.53393117,0.02707465,96.34400926],[4.5339317,0.02707637,96.34488999],[4.53393223,0.02707809,96.34576986],[4.53393277,0.02707981,96.34664882],[4.5339333,0.02708154,96.34752681],[4.53393384,0.02708326,96.34840376],[4.53393437,0.02708498,96.34927961],[4.53393491,0.0270867,96.3501543],[4.53393544,0.02708842,96.35102778],[4.53393597,0.02709015,96.35189997],[4.53393651,0.02709187,96.35277083],[4.53393704,0.02709359,96.35364029],[4.53393757,0.02709531,96.35450829],[4.53393811,0.02709704,96.3553748],[4.53393864,0.02709876,96.35623982],[4.53393917,0.02710048,96.35710335],[4.5339397,0.0271022,96.3579654],[4.53394024,0.02710393,96.35882597],[4.53394077,0.02710565,96.35968506],[4.5339413,0.02710737,96.36054268],[4.53394184,0.02710909,96.36139883],[4.53394237,0.02711082,96.36225352],[4.5339429,0.02711254,96.36310675],[4.53394343,0.02711426,96.36395852],[4.53394397,0.02711599,96.36480886],[4.5339445,0.02711771,96.36565775],[4.53394503,0.02711943,96.36650522],[4.53394557,0.02712115,96.36735127],[4.5339461,0.02712288,96.3681959],[4.53394663,0.0271246,96.36903912],[4.53394717,0.02712632,96.36988095],[4.5339477,0.02712804,96.37072139],[4.53394823,0.02712976,96.37156045],[4.53394877,0.02713149,96.37239814],[4.5339493,0.02713321,96.37323447],[4.53394984,0.02713493,96.37406946],[4.53395037,0.02713665,96.3749031],[4.53395091,0.02713837,96.37573541],[4.53395145,0.0271401,96.37656641],[4.53395198,0.02714182,96.3773961],[4.53395252,0.02714354,96.37822449],[4.53395306,0.02714526,96.37905159],[4.53395359,0.02714698,96.37987741],[4.53395413,0.0271487,96.38070196],[4.53395467,0.02715042,96.38152526],[4.53395521,0.02715214,96.38234725],[4.53395575,0.02715386,96.38316786],[4.53395629,0.02715558,96.38398698],[4.53395683,0.0271573,96.38480452],[4.53395737,0.02715902,96.3856204],[4.53395791,0.02716074,96.38643451],[4.53395845,0.02716246,96.38724677],[4.53395899,0.02716418,96.38805707],[4.53395953,0.0271659,96.38886532],[4.53396007,0.02716762,96.38967143],[4.53396062,0.02716934,96.3904753],[4.53396116,0.02717106,96.39127683],[4.5339617,0.02717278,96.39207592],[4.53396225,0.0271745,96.39287248],[4.53396279,0.02717622,96.3936664],[4.53396333,0.02717794,96.3944576],[4.53396388,0.02717966,96.39524601],[4.53396442,0.02718138,96.39603164],[4.53396497,0.0271831,96.39681447],[4.53396551,0.02718482,96.39759451],[4.53396606,0.02718653,96.39837175],[4.5339666,0.02718825,96.39914619],[4.53396715,0.02718997,96.39991782],[4.53396769,0.02719169,96.40068665],[4.53396824,0.02719341,96.40145265],[4.53396878,0.02719513,96.40221584],[4.53396933,0.02719685,96.40297621],[4.53396987,0.02719856,96.40373375],[4.53397042,0.02720028,96.40448846],[4.53397097,0.027202,96.40524034],[4.53397151,0.02720372,96.40598938],[4.53397206,0.02720544,96.40673558],[4.5339726,0.02720716,96.40747893],[4.53397315,0.02720888,96.40821944],[4.53397369,0.02721059,96.40895709],[4.53397424,0.02721231,96.40969189],[4.53397479,0.02721403,96.41042384],[4.53397533,0.02721575,96.41115293],[4.53397588,0.02721747,96.41187917],[4.53397642,0.02721919,96.41260254],[4.53397697,0.02722091,96.41332305],[4.53397751,0.02722262,96.4140407],[4.53397806,0.02722434,96.41475548],[4.5339786,0.02722606,96.41546741],[4.53397915,0.02722778,96.41617647],[4.53397969,0.0272295,96.41688268],[4.53398023,0.02723122,96.41758602],[4.53398078,0.02723294,96.41828651],[4.53398132,0.02723466,96.41898414],[4.53398187,0.02723638,96.41967893],[4.53398241,0.0272381,96.42037086],[4.53398295,0.02723982,96.42105995],[4.53398349,0.02724153,96.4217462],[4.53398404,0.02724325,96.42242961],[4.53398458,0.02724497,96.42311019],[4.53398512,0.02724669,96.42378795],[4.53398566,0.02724841,96.42446289],[4.5339862,0.02725013,96.42513502],[4.53398674,0.02725185,96.42580435],[4.53398728,0.02725357,96.42647089],[4.53398782,0.02725529,96.42713463],[4.53398836,0.02725701,96.4277956],[4.5339889,0.02725874,96.4284538],[4.53398944,0.02726046,96.42910925],[4.53398998,0.02726218,96.42976195],[4.53399052,0.0272639,96.43041191],[4.53399105,0.02726562,96.43105916],[4.53399159,0.02726734,96.43170369],[4.53399213,0.02726906,96.43234553],[4.53399266,0.02727078,96.43298468],[4.5339932,0.02727251,96.43362121],[4.53399373,0.02727423,96.43425521],[4.53399427,0.02727595,96.43488677],[4.5339948,0.02727767,96.435516],[4.53399533,0.02727939,96.43614297],[4.53399587,0.02728112,96.4367678],[4.5339964,0.02728284,96.43739057],[4.53399693,0.02728456,96.43801138],[4.53399746,0.02728629,96.43863033],[4.53399799,0.02728801,96.4392475],[4.53399852,0.02728973,96.439863],[4.53399905,0.02729146,96.44047691],[4.53399958,0.02729318,96.44108932],[4.53400011,0.0272949,96.44170034],[4.53400064,0.02729663,96.44231005],[4.53400117,0.02729835,96.44291854],[4.5340017,0.02730007,96.44352591],[4.53400223,0.0273018,96.44413224],[4.53400276,0.02730352,96.44473764],[4.53400328,0.02730525,96.44534217],[4.53400381,0.02730697,96.44594594],[4.53400434,0.02730869,96.44654904],[4.53400487,0.02731042,96.44715156],[4.53400539,0.02731214,96.44775357],[4.53400592,0.02731387,96.44835517],[4.53400645,0.02731559,96.44895645],[4.53400697,0.02731732,96.4495575],[4.5340075,0.02731904,96.45015839],[4.53400802,0.02732077,96.45075922],[4.53400855,0.02732249,96.45136008],[4.53400908,0.02732422,96.45196103],[4.5340096,0.02732594,96.45256218],[4.53401013,0.02732767,96.4531636],[4.53401065,0.02732939,96.45376538],[4.53401118,0.02733112,96.4543676],[4.5340117,0.02733284,96.45497034],[4.53401223,0.02733457,96.45557368],[4.53401275,0.02733629,96.45617771],[4.53401328,0.02733802,96.45678251],[4.5340138,0.02733974,96.45738815],[4.53401433,0.02734147,96.45799472],[4.53401486,0.02734319,96.4586023],[4.53401538,0.02734491,96.45921096],[4.53401591,0.02734664,96.45982078],[4.53401643,0.02734836,96.46043184],[4.53401696,0.02735009,96.46104423],[4.53401748,0.02735181,96.461658],[4.53401801,0.02735354,96.46227326],[4.53401854,0.02735526,96.46289006],[4.53401906,0.02735699,96.46350848],[4.53401959,0.02735871,96.46412861],[4.53402011,0.02736044,96.46475051],[4.53402064,0.02736216,96.46537426],[4.53402117,0.02736389,96.46599994],[4.5340217,0.02736561,96.46662762],[4.53402222,0.02736733,96.46725737],[4.53402275,0.02736906,96.46788926],[4.53402328,0.02737078,96.46852338],[4.53402381,0.02737251,96.46915978],[4.53402434,0.02737423,96.46979855],[4.53402486,0.02737595,96.4704397],[4.53402539,0.02737768,96.47108325],[4.53402592,0.0273794,96.47172924],[4.53402645,0.02738112,96.47237768],[4.53402698,0.02738285,96.47302858],[4.53402751,0.02738457,96.47368198],[4.53402805,0.02738629,96.4743379],[4.53402858,0.02738802,96.47499634],[4.53402911,0.02738974,96.47565734],[4.53402964,0.02739146,96.47632088],[4.53403017,0.02739319,96.47698694],[4.53403071,0.02739491,96.47765547],[4.53403124,0.02739663,96.47832646],[4.53403177,0.02739835,96.47899987],[4.53403231,0.02740007,96.47967566],[4.53403284,0.0274018,96.48035381],[4.53403338,0.02740352,96.48103428],[4.53403391,0.02740524,96.48171705],[4.53403445,0.02740696,96.48240209],[4.53403499,0.02740868,96.48308936],[4.53403552,0.02741041,96.48377884],[4.53403606,0.02741213,96.4844705],[4.5340366,0.02741385,96.48516431],[4.53403713,0.02741557,96.48586024],[4.53403767,0.02741729,96.48655826],[4.53403821,0.02741901,96.48725835],[4.53403875,0.02742073,96.48796048],[4.53403928,0.02742245,96.48866461],[4.53403982,0.02742417,96.48937073],[4.53404036,0.02742589,96.49007881],[4.5340409,0.02742761,96.49078881],[4.53404144,0.02742933,96.49150072],[4.53404198,0.02743105,96.49221451],[4.53404252,0.02743277,96.49293014],[4.53404306,0.0274345,96.4936476],[4.5340436,0.02743622,96.49436686],[4.53404414,0.02743794,96.4950879],[4.53404468,0.02743966,96.49581068],[4.53404522,0.02744138,96.49653519],[4.53404577,0.0274431,96.4972614],[4.53404631,0.02744482,96.49798928],[4.53404685,0.02744653,96.49871881],[4.53404739,0.02744825,96.49944997],[4.53404793,0.02744997,96.50018272],[4.53404847,0.02745169,96.50091706],[4.53404902,0.02745341,96.50165294],[4.53404956,0.02745513,96.50239036],[4.5340501,0.02745685,96.50312928],[4.53405064,0.02745857,96.50386968],[4.53405119,0.02746029,96.50461154],[4.53405173,0.02746201,96.50535484],[4.53405227,0.02746373,96.50609954],[4.53405282,0.02746545,96.50684564],[4.53405336,0.02746717,96.50759309],[4.5340539,0.02746889,96.5083419],[4.53405445,0.02747061,96.50909202],[4.53405499,0.02747233,96.50984343],[4.53405553,0.02747405,96.51059612],[4.53405608,0.02747577,96.51135006],[4.53405662,0.02747748,96.51210523],[4.53405716,0.0274792,96.5128616],[4.53405771,0.02748092,96.51361916],[4.53405825,0.02748264,96.51437787],[4.53405879,0.02748436,96.51513773],[4.53405934,0.02748608,96.5158987],[4.53405988,0.0274878,96.51666076],[4.53406042,0.02748952,96.51742389],[4.53406097,0.02749124,96.51818807],[4.53406151,0.02749296,96.51895328],[4.53406205,0.02749468,96.51971949],[4.5340626,0.0274964,96.52048668],[4.53406314,0.02749812,96.52125483],[4.53406368,0.02749983,96.52202391],[4.53406422,0.02750155,96.52279391],[4.53406477,0.02750327,96.52356481],[4.53406531,0.02750499,96.52433657],[4.53406585,0.02750671,96.52510918],[4.5340664,0.02750843,96.52588261],[4.53406694,0.02751015,96.52665685],[4.53406748,0.02751187,96.52743186],[4.53406802,0.02751359,96.52820764],[4.53406856,0.02751531,96.52898414],[4.53406911,0.02751703,96.52976136],[4.53406965,0.02751875,96.53053928],[4.53407019,0.02752047,96.53131785],[4.53407073,0.02752219,96.53209708],[4.53407127,0.02752391,96.53287692],[4.53407181,0.02752563,96.53365737],[4.53407235,0.02752735,96.53443839],[4.53407289,0.02752907,96.53521996],[4.53407343,0.02753079,96.53600206],[4.53407397,0.02753251,96.53678468],[4.53407451,0.02753423,96.53756777],[4.53407505,0.02753595,96.53835133],[4.53407559,0.02753767,96.53913532],[4.53407613,0.02753939,96.53991973],[4.53407667,0.02754111,96.54070453],[4.53407721,0.02754283,96.5414897],[4.53407775,0.02754455,96.54227521],[4.53407829,0.02754627,96.54306105],[4.53407883,0.02754799,96.54384717],[4.53407936,0.02754972,96.54463358],[4.5340799,0.02755144,96.54542023],[4.53408044,0.02755316,96.5462071],[4.53408097,0.02755488,96.54699417],[4.53408151,0.0275566,96.54778142],[4.53408205,0.02755832,96.54856882],[4.53408258,0.02756004,96.54935635],[4.53408312,0.02756177,96.55014398],[4.53408365,0.02756349,96.55093169],[4.53408419,0.02756521,96.55171945],[4.53408472,0.02756693,96.55250723],[4.53408525,0.02756865,96.55329502],[4.53408579,0.02757038,96.55408279],[4.53408632,0.0275721,96.55487051],[4.53408685,0.02757382,96.5556582],[4.53408738,0.02757554,96.55644589],[4.53408792,0.02757727,96.55723358],[4.53408845,0.02757899,96.5580213],[4.53408898,0.02758071,96.55880907],[4.53408951,0.02758244,96.55959691],[4.53409004,0.02758416,96.56038483],[4.53409057,0.02758588,96.56117285],[4.5340911,0.02758761,96.561961],[4.53409163,0.02758933,96.5627493],[4.53409216,0.02759105,96.56353775],[4.53409269,0.02759278,96.56432639],[4.53409322,0.0275945,96.56511523],[4.53409375,0.02759622,96.56590429],[4.53409427,0.02759795,96.56669358],[4.5340948,0.02759967,96.56748314],[4.53409533,0.0276014,96.56827298],[4.53409586,0.02760312,96.56906311],[4.53409638,0.02760484,96.56985356],[4.53409691,0.02760657,96.57064435],[4.53409744,0.02760829,96.57143549],[4.53409797,0.02761002,96.57222701],[4.53409849,0.02761174,96.57301893],[4.53409902,0.02761347,96.57381126],[4.53409955,0.02761519,96.57460403],[4.53410007,0.02761692,96.57539725],[4.5341006,0.02761864,96.57619095],[4.53410113,0.02762036,96.57698514],[4.53410165,0.02762209,96.57777986],[4.53410218,0.02762381,96.5785751],[4.53410271,0.02762554,96.57937091],[4.53410323,0.02762726,96.5801673],[4.53410376,0.02762899,96.58096428],[4.53410429,0.02763071,96.58176188],[4.53410481,0.02763244,96.58256013],[4.53410534,0.02763416,96.58335903],[4.53410587,0.02763588,96.58415862],[4.53410639,0.02763761,96.58495892],[4.53410692,0.02763933,96.58575994],[4.53410745,0.02764106,96.58656171],[4.53410797,0.02764278,96.58736425],[4.5341085,0.02764451,96.58816758],[4.53410903,0.02764623,96.58897172],[4.53410955,0.02764796,96.5897767],[4.53411008,0.02764968,96.59058254],[4.53411061,0.0276514,96.59138926],[4.53411114,0.02765313,96.59219689],[4.53411166,0.02765485,96.59300544],[4.53411219,0.02765658,96.59381494],[4.53411272,0.0276583,96.59462542],[4.53411325,0.02766002,96.59543685],[4.53411378,0.02766175,96.59624922],[4.5341143,0.02766347,96.59706254],[4.53411483,0.0276652,96.59787677],[4.53411536,0.02766692,96.59869192],[4.53411589,0.02766864,96.59950795],[4.53411642,0.02767037,96.60032488],[4.53411695,0.02767209,96.60114267],[4.53411748,0.02767381,96.60196132],[4.53411801,0.02767554,96.60278081],[4.53411854,0.02767726,96.60360113],[4.53411907,0.02767898,96.60442226],[4.5341196,0.02768071,96.60524419],[4.53412013,0.02768243,96.60606691],[4.53412066,0.02768415,96.6068904],[4.53412119,0.02768588,96.60771464],[4.53412172,0.0276876,96.60853963],[4.53412225,0.02768932,96.60936534],[4.53412279,0.02769105,96.61019177],[4.53412332,0.02769277,96.6110189],[4.53412385,0.02769449,96.61184672],[4.53412438,0.02769621,96.6126752],[4.53412491,0.02769794,96.61350434],[4.53412544,0.02769966,96.61433412],[4.53412598,0.02770138,96.61516453],[4.53412651,0.02770311,96.61599555],[4.53412704,0.02770483,96.61682716],[4.53412757,0.02770655,96.61765936],[4.5341281,0.02770827,96.61849213],[4.53412864,0.02771,96.61932545],[4.53412917,0.02771172,96.6201593],[4.5341297,0.02771344,96.62099369],[4.53413023,0.02771516,96.62182858],[4.53413077,0.02771689,96.62266397],[4.5341313,0.02771861,96.62349984],[4.53413183,0.02772033,96.62433619],[4.53413236,0.02772205,96.62517299],[4.5341329,0.02772378,96.62601024],[4.53413343,0.0277255,96.62684791],[4.53413396,0.02772722,96.627686],[4.5341345,0.02772894,96.6285245],[4.53413503,0.02773067,96.62936338],[4.53413556,0.02773239,96.63020263],[4.5341361,0.02773411,96.63104224],[4.53413663,0.02773583,96.6318822],[4.53413716,0.02773756,96.6327225],[4.53413769,0.02773928,96.63356311],[4.53413823,0.027741,96.63440402],[4.53413876,0.02774272,96.63524522],[4.53413929,0.02774445,96.6360867],[4.53413983,0.02774617,96.63692843],[4.53414036,0.02774789,96.63777042],[4.53414089,0.02774961,96.63861263],[4.53414143,0.02775133,96.63945506],[4.53414196,0.02775306,96.64029769],[4.53414249,0.02775478,96.64114051],[4.53414303,0.0277565,96.64198351],[4.53414356,0.02775822,96.64282666],[4.53414409,0.02775995,96.64366996],[4.53414463,0.02776167,96.64451342],[4.53414516,0.02776339,96.64535704],[4.53414569,0.02776511,96.64620082],[4.53414623,0.02776684,96.64704477],[4.53414676,0.02776856,96.6478889],[4.53414729,0.02777028,96.6487332],[4.53414782,0.027772,96.64957768],[4.53414836,0.02777373,96.65042234],[4.53414889,0.02777545,96.65126719],[4.53414942,0.02777717,96.65211223],[4.53414996,0.02777889,96.65295747],[4.53415049,0.02778062,96.65380291],[4.53415102,0.02778234,96.65464856],[4.53415156,0.02778406,96.65549442],[4.53415209,0.02778578,96.65634049],[4.53415262,0.02778751,96.65718678],[4.53415316,0.02778923,96.65803329],[4.53415369,0.02779095,96.65888003],[4.53415422,0.02779267,96.65972701],[4.53415476,0.02779439,96.66057422],[4.53415529,0.02779612,96.66142167],[4.53415582,0.02779784,96.66226937],[4.53415636,0.02779956,96.66311733],[4.53415689,0.02780128,96.66396554],[4.53415742,0.02780301,96.66481401],[4.53415796,0.02780473,96.66566275],[4.53415849,0.02780645,96.66651176],[4.53415902,0.02780817,96.66736105],[4.53415956,0.02780989,96.66821063],[4.53416009,0.02781162,96.66906049],[4.53416063,0.02781334,96.66991064],[4.53416116,0.02781506,96.67076109],[4.53416169,0.02781678,96.67161185],[4.53416223,0.0278185,96.67246291],[4.53416276,0.02782023,96.67331429],[4.5341633,0.02782195,96.67416599],[4.53416383,0.02782367,96.67501802],[4.53416437,0.02782539,96.67587038],[4.5341649,0.02782711,96.67672307],[4.53416544,0.02782884,96.67757611],[4.53416597,0.02783056,96.6784295],[4.53416651,0.02783228,96.67928324],[4.53416704,0.027834,96.68013734],[4.53416758,0.02783572,96.6809918],[4.53416811,0.02783744,96.68184661],[4.53416865,0.02783917,96.68270177],[4.53416919,0.02784089,96.68355727],[4.53416972,0.02784261,96.6844131],[4.53417026,0.02784433,96.68526925],[4.53417079,0.02784605,96.68612572],[4.53417133,0.02784777,96.6869825],[4.53417187,0.0278495,96.68783959],[4.5341724,0.02785122,96.68869696],[4.53417294,0.02785294,96.68955463],[4.53417348,0.02785466,96.69041257],[4.53417401,0.02785638,96.69127079],[4.53417455,0.0278581,96.69212927],[4.53417509,0.02785982,96.69298801],[4.53417562,0.02786154,96.69384701],[4.53417616,0.02786326,96.69470624],[4.5341767,0.02786499,96.69556571],[4.53417724,0.02786671,96.69642541],[4.53417777,0.02786843,96.69728532],[4.53417831,0.02787015,96.69814545],[4.53417885,0.02787187,96.69900578],[4.53417939,0.02787359,96.69986631],[4.53417993,0.02787531,96.70072703],[4.53418046,0.02787703,96.70158793],[4.534181,0.02787875,96.70244901],[4.53418154,0.02788047,96.70331024],[4.53418208,0.02788219,96.70417164],[4.53418262,0.02788392,96.70503319],[4.53418315,0.02788564,96.70589487],[4.53418369,0.02788736,96.70675669],[4.53418423,0.02788908,96.70761864],[4.53418477,0.0278908,96.7084807],[4.53418531,0.02789252,96.70934288],[4.53418585,0.02789424,96.71020515],[4.53418639,0.02789596,96.71106752],[4.53418693,0.02789768,96.71192997],[4.53418747,0.0278994,96.71279249],[4.534188,0.02790112,96.71365509],[4.53418854,0.02790284,96.71451775],[4.53418908,0.02790456,96.71538045],[4.53418962,0.02790628,96.7162432],[4.53419016,0.027908,96.71710599],[4.5341907,0.02790972,96.7179688],[4.53419124,0.02791144,96.71883162],[4.53419178,0.02791316,96.71969446],[4.53419232,0.02791489,96.7205573],[4.53419286,0.02791661,96.72142011],[4.5341934,0.02791833,96.72228282],[4.53419394,0.02792005,96.72314533],[4.53419448,0.02792177,96.72400755],[4.53419502,0.02792349,96.72486937],[4.53419556,0.02792521,96.72573071],[4.5341961,0.02792693,96.72659146],[4.53419664,0.02792865,96.72745153],[4.53419718,0.02793037,96.72831081],[4.53419772,0.02793209,96.72916922],[4.53419825,0.02793381,96.73002664],[4.53419879,0.02793553,96.73088299],[4.53419933,0.02793725,96.73173816],[4.53419987,0.02793897,96.73259205],[4.53420041,0.02794069,96.73344456],[4.53420094,0.02794241,96.73429559],[4.53420148,0.02794414,96.73514504],[4.53420202,0.02794586,96.73599281],[4.53420255,0.02794758,96.7368388],[4.53420309,0.0279493,96.7376829],[4.53420362,0.02795102,96.73852501],[4.53420415,0.02795274,96.73936502],[4.53420469,0.02795447,96.74020285],[4.53420522,0.02795619,96.74103837],[4.53420575,0.02795791,96.74187152],[4.53420628,0.02795964,96.74270231],[4.53420681,0.02796136,96.74353078],[4.53420734,0.02796308,96.74435698],[4.53420787,0.02796481,96.74518095],[4.5342084,0.02796653,96.74600273],[4.53420893,0.02796825,96.74682237],[4.53420946,0.02796998,96.74763991],[4.53420999,0.0279717,96.74845539],[4.53421051,0.02797343,96.74926886],[4.53421104,0.02797515,96.75008037],[4.53421156,0.02797688,96.75088995],[4.53421209,0.0279786,96.75169767],[4.53421261,0.02798033,96.75250355],[4.53421314,0.02798205,96.75330765],[4.53421366,0.02798378,96.75411001],[4.53421419,0.0279855,96.75491068],[4.53421471,0.02798723,96.7557097],[4.53421523,0.02798895,96.75650713],[4.53421575,0.02799068,96.75730301],[4.53421628,0.0279924,96.75809739],[4.5342168,0.02799413,96.75889031],[4.53421732,0.02799586,96.75968182],[4.53421784,0.02799758,96.76047198],[4.53421836,0.02799931,96.76126083],[4.53421888,0.02800103,96.76204842],[4.5342194,0.02800276,96.76283481],[4.53421992,0.02800449,96.76362004],[4.53422044,0.02800621,96.76440416],[4.53422096,0.02800794,96.76518724],[4.53422148,0.02800967,96.76596931],[4.534222,0.02801139,96.76675042],[4.53422252,0.02801312,96.76753064],[4.53422304,0.02801485,96.76831001],[4.53422356,0.02801657,96.76908859],[4.53422408,0.0280183,96.76986642],[4.5342246,0.02802003,96.77064356],[4.53422512,0.02802175,96.77142007],[4.53422564,0.02802348,96.77219599],[4.53422616,0.02802521,96.77297137],[4.53422667,0.02802693,96.77374628],[4.53422719,0.02802866,96.77452076],[4.53422771,0.02803039,96.77529487],[4.53422823,0.02803211,96.77606865],[4.53422875,0.02803384,96.77684217],[4.53422927,0.02803557,96.77761548],[4.53422979,0.02803729,96.77838863],[4.53423031,0.02803902,96.77916167],[4.53423083,0.02804075,96.77993467],[4.53423135,0.02804247,96.78070766],[4.53423187,0.0280442,96.78148072],[4.53423239,0.02804592,96.78225388],[4.53423292,0.02804765,96.78302721],[4.53423344,0.02804938,96.78380076],[4.53423396,0.0280511,96.78457459],[4.53423448,0.02805283,96.78534874],[4.534235,0.02805455,96.78612328],[4.53423553,0.02805628,96.78689825],[4.53423605,0.028058,96.78767372],[4.53423657,0.02805973,96.78844973],[4.5342371,0.02806146,96.78922635],[4.53423762,0.02806318,96.79000362],[4.53423815,0.02806491,96.7907816],[4.53423867,0.02806663,96.79156035],[4.5342392,0.02806835,96.79233991],[4.53423972,0.02807008,96.79312035],[4.53424025,0.0280718,96.79390172],[4.53424078,0.02807353,96.79468407],[4.53424131,0.02807525,96.79546739],[4.53424184,0.02807698,96.79625163],[4.53424236,0.0280787,96.79703672],[4.53424289,0.02808042,96.7978226],[4.53424342,0.02808215,96.7986092],[4.53424395,0.02808387,96.79939647],[4.53424448,0.02808559,96.80018433],[4.53424502,0.02808732,96.80097273],[4.53424555,0.02808904,96.80176159],[4.53424608,0.02809076,96.80255086],[4.53424661,0.02809248,96.80334047],[4.53424714,0.02809421,96.80413035],[4.53424768,0.02809593,96.80492044],[4.53424821,0.02809765,96.80571068],[4.53424874,0.02809937,96.806501],[4.53424928,0.0281011,96.80729133],[4.53424981,0.02810282,96.80808161],[4.53425035,0.02810454,96.80887178],[4.53425088,0.02810626,96.80966176],[4.53425141,0.02810798,96.8104515],[4.53425195,0.02810971,96.81124093],[4.53425248,0.02811143,96.81202998],[4.53425302,0.02811315,96.81281859],[4.53425355,0.02811487,96.81360668],[4.53425409,0.02811659,96.81439421],[4.53425462,0.02811831,96.81518109],[4.53425516,0.02812004,96.81596727],[4.53425569,0.02812176,96.81675267],[4.53425623,0.02812348,96.81753724],[4.53425676,0.0281252,96.8183209],[4.5342573,0.02812692,96.81910359],[4.53425784,0.02812865,96.81988525],[4.53425837,0.02813037,96.82066581],[4.53425891,0.02813209,96.8214452],[4.53425944,0.02813381,96.82222336],[4.53425997,0.02813553,96.82300023],[4.53426051,0.02813725,96.82377573],[4.53426104,0.02813898,96.8245498],[4.53426158,0.0281407,96.82532238],[4.53426211,0.02814242,96.82609341],[4.53426265,0.02814414,96.8268628],[4.53426318,0.02814587,96.82763052],[4.53426371,0.02814759,96.82839647],[4.53426425,0.02814931,96.82916062],[4.53426478,0.02815103,96.82992288],[4.53426531,0.02815276,96.83068319],[4.53426584,0.02815448,96.83144149],[4.53426637,0.0281562,96.83219772],[4.53426691,0.02815792,96.83295181],[4.53426744,0.02815965,96.8337037],[4.53426797,0.02816137,96.83445333],[4.5342685,0.02816309,96.83520063],[4.53426903,0.02816482,96.83594554],[4.53426956,0.02816654,96.83668799],[4.53427008,0.02816827,96.83742793],[4.53427061,0.02816999,96.8381653],[4.53427114,0.02817171,96.83890008],[4.53427167,0.02817344,96.83963231],[4.53427219,0.02817516,96.84036204],[4.53427272,0.02817689,96.84108932],[4.53427324,0.02817861,96.84181418],[4.53427377,0.02818034,96.84253666],[4.53427429,0.02818206,96.84325681],[4.53427482,0.02818379,96.84397467],[4.53427534,0.02818551,96.84469029],[4.53427587,0.02818724,96.8454037],[4.53427639,0.02818896,96.84611495],[4.53427691,0.02819069,96.84682409],[4.53427743,0.02819241,96.84753114],[4.53427796,0.02819414,96.84823617],[4.53427848,0.02819587,96.84893921],[4.534279,0.02819759,96.8496403],[4.53427952,0.02819932,96.85033948],[4.53428004,0.02820104,96.8510368],[4.53428056,0.02820277,96.85173231],[4.53428108,0.0282045,96.85242603],[4.5342816,0.02820622,96.85311802],[4.53428212,0.02820795,96.85380832],[4.53428264,0.02820968,96.85449697],[4.53428316,0.0282114,96.85518401],[4.53428368,0.02821313,96.85586948],[4.5342842,0.02821486,96.85655343],[4.53428472,0.02821659,96.8572359]],"type":"LineString"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":1,"type":"shoulder","predecessorId":0}},{"geometry":{"coordinates":[[4.53382537,0.02669305,96.18698408],[4.53382562,0.02669384,96.18730152],[4.53382616,0.02669556,96.18799357],[4.5338267,0.02669728,96.1886779],[4.53382724,0.026699,96.18935476],[4.53382779,0.02670071,96.1900244],[4.53382833,0.02670243,96.19068708],[4.53382887,0.02670415,96.19134305],[4.53382942,0.02670587,96.19199258],[4.53382996,0.02670759,96.19263596],[4.5338305,0.02670931,96.19327351],[4.53383105,0.02671103,96.19390552],[4.53383159,0.02671275,96.19453231],[4.53383213,0.02671447,96.19515418],[4.53383267,0.02671619,96.19577144],[4.53383322,0.02671791,96.19638439],[4.53383376,0.02671963,96.19699332],[4.5338343,0.02672135,96.19759855],[4.53383484,0.02672307,96.19820036],[4.53383539,0.02672479,96.19879906],[4.53383593,0.02672651,96.19939493],[4.53383647,0.02672823,96.19998828],[4.53383701,0.02672995,96.20057938],[4.53383756,0.02673167,96.20116854],[4.5338381,0.02673339,96.20175603],[4.53383864,0.02673511,96.20234214],[4.53383918,0.02673683,96.20292715],[4.53383972,0.02673855,96.20351134],[4.53384027,0.02674027,96.204095],[4.53384081,0.02674199,96.20467839],[4.53384135,0.02674371,96.20526174],[4.53384189,0.02674543,96.20584515],[4.53384243,0.02674715,96.20642863],[4.53384298,0.02674887,96.20701223],[4.53384352,0.02675059,96.20759597],[4.53384406,0.02675231,96.2081799],[4.5338446,0.02675403,96.20876404],[4.53384514,0.02675575,96.20934844],[4.53384568,0.02675747,96.20993312],[4.53384623,0.02675919,96.21051812],[4.53384677,0.02676091,96.21110347],[4.53384731,0.02676263,96.21168921],[4.53384785,0.02676435,96.21227538],[4.53384839,0.02676607,96.21286199],[4.53384893,0.02676779,96.21344909],[4.53384947,0.02676951,96.21403671],[4.53385002,0.02677123,96.21462489],[4.53385056,0.02677295,96.21521366],[4.5338511,0.02677467,96.21580304],[4.53385164,0.02677639,96.21639308],[4.53385218,0.02677811,96.21698381],[4.53385272,0.02677983,96.21757525],[4.53385326,0.02678155,96.21816746],[4.5338538,0.02678327,96.21876044],[4.53385434,0.02678499,96.21935425],[4.53385489,0.02678671,96.21994891],[4.53385543,0.02678843,96.22054445],[4.53385597,0.02679015,96.22114092],[4.53385651,0.02679187,96.22173834],[4.53385705,0.02679359,96.22233674],[4.53385759,0.02679531,96.22293616],[4.53385813,0.02679703,96.22353663],[4.53385867,0.02679875,96.22413819],[4.53385921,0.02680047,96.22474087],[4.53385975,0.02680219,96.22534469],[4.53386029,0.02680391,96.22594971],[4.53386083,0.02680563,96.22655593],[4.53386137,0.02680735,96.22716339],[4.53386191,0.02680907,96.22777209],[4.53386245,0.02681079,96.22838203],[4.53386299,0.02681251,96.22899324],[4.53386353,0.02681423,96.22960571],[4.53386407,0.02681595,96.23021948],[4.53386461,0.02681767,96.23083453],[4.53386515,0.02681939,96.2314509],[4.53386569,0.02682111,96.23206859],[4.53386623,0.02682283,96.23268761],[4.53386677,0.02682455,96.23330798],[4.53386731,0.02682628,96.23392971],[4.53386785,0.026828,96.23455282],[4.53386839,0.02682972,96.23517731],[4.53386893,0.02683144,96.23580321],[4.53386947,0.02683316,96.23643054],[4.53387001,0.02683488,96.23705929],[4.53387055,0.0268366,96.2376895],[4.53387109,0.02683832,96.23832118],[4.53387163,0.02684004,96.23895435],[4.53387217,0.02684176,96.23958901],[4.53387271,0.02684348,96.24022519],[4.53387325,0.0268452,96.24086291],[4.53387378,0.02684692,96.24150218],[4.53387432,0.02684864,96.24214303],[4.53387486,0.02685037,96.24278546],[4.5338754,0.02685209,96.24342951],[4.53387594,0.02685381,96.24407518],[4.53387648,0.02685553,96.2447225],[4.53387702,0.02685725,96.24537148],[4.53387756,0.02685897,96.24602215],[4.5338781,0.02686069,96.24667453],[4.53387863,0.02686241,96.24732863],[4.53387917,0.02686413,96.24798448],[4.53387971,0.02686585,96.2486421],[4.53388025,0.02686757,96.24930151],[4.53388079,0.0268693,96.24996272],[4.53388133,0.02687102,96.25062577],[4.53388186,0.02687274,96.25129066],[4.5338824,0.02687446,96.25195743],[4.53388294,0.02687618,96.25262609],[4.53388348,0.0268779,96.25329667],[4.53388402,0.02687962,96.25396919],[4.53388455,0.02688134,96.25464366],[4.53388509,0.02688306,96.25532012],[4.53388563,0.02688479,96.25599859],[4.53388617,0.02688651,96.25667911],[4.53388671,0.02688823,96.25736176],[4.53388724,0.02688995,96.25804658],[4.53388778,0.02689167,96.25873363],[4.53388832,0.02689339,96.25942297],[4.53388886,0.02689511,96.26011466],[4.53388939,0.02689683,96.26080875],[4.53388993,0.02689856,96.2615053],[4.53389047,0.02690028,96.26220437],[4.53389101,0.026902,96.26290601],[4.53389154,0.02690372,96.26361027],[4.53389208,0.02690544,96.26431721],[4.53389262,0.02690716,96.26502689],[4.53389315,0.02690888,96.26573936],[4.53389369,0.02691061,96.26645468],[4.53389423,0.02691233,96.26717289],[4.53389477,0.02691405,96.26789406],[4.5338953,0.02691577,96.26861824],[4.53389584,0.02691749,96.26934548],[4.53389638,0.02691921,96.27007583],[4.53389691,0.02692093,96.27080935],[4.53389745,0.02692266,96.2715461],[4.53389799,0.02692438,96.27228612],[4.53389852,0.0269261,96.27302947],[4.53389906,0.02692782,96.2737762],[4.5338996,0.02692954,96.27452637],[4.53390013,0.02693126,96.27528003],[4.53390067,0.02693299,96.27603723],[4.53390121,0.02693471,96.27679797],[4.53390174,0.02693643,96.27756221],[4.53390228,0.02693815,96.27832992],[4.53390282,0.02693987,96.27910105],[4.53390335,0.02694159,96.27987555],[4.53390389,0.02694331,96.28065338],[4.53390443,0.02694504,96.28143451],[4.53390496,0.02694676,96.28221889],[4.5339055,0.02694848,96.28300647],[4.53390604,0.0269502,96.28379721],[4.53390657,0.02695192,96.28459108],[4.53390711,0.02695364,96.28538803],[4.53390765,0.02695536,96.28618801],[4.53390818,0.02695708,96.28699099],[4.53390872,0.0269588,96.28779692],[4.53390926,0.02696053,96.28860576],[4.53390979,0.02696225,96.28941747],[4.53391033,0.02696397,96.29023201],[4.53391087,0.02696569,96.29104933],[4.5339114,0.02696741,96.2918694],[4.53391194,0.02696913,96.29269217],[4.53391248,0.02697086,96.2935176],[4.53391301,0.02697258,96.29434565],[4.53391355,0.0269743,96.29517628],[4.53391409,0.02697602,96.29600944],[4.53391462,0.02697774,96.29684507],[4.53391516,0.02697946,96.29768311],[4.5339157,0.02698118,96.29852351],[4.53391624,0.02698291,96.2993662],[4.53391677,0.02698463,96.30021113],[4.53391731,0.02698635,96.30105823],[4.53391785,0.02698807,96.30190746],[4.53391839,0.02698979,96.30275875],[4.53391892,0.02699151,96.30361204],[4.53391946,0.02699323,96.30446728],[4.53392,0.02699496,96.3053244],[4.53392054,0.02699668,96.30618335],[4.53392107,0.0269984,96.30704406],[4.53392161,0.02700012,96.30790649],[4.53392215,0.02700184,96.30877057],[4.53392269,0.02700356,96.30963624],[4.53392322,0.02700528,96.31050345],[4.53392376,0.027007,96.31137213],[4.5339243,0.02700873,96.31224223],[4.53392484,0.02701045,96.31311369],[4.53392538,0.02701217,96.31398644],[4.53392591,0.02701389,96.31486043],[4.53392645,0.02701561,96.31573561],[4.53392699,0.02701733,96.31661191],[4.53392753,0.02701905,96.31748927],[4.53392807,0.02702077,96.31836763],[4.5339286,0.02702249,96.31924694],[4.53392914,0.02702422,96.32012714],[4.53392968,0.02702594,96.32100816],[4.53393022,0.02702766,96.32188995],[4.53393076,0.02702938,96.32277244],[4.53393129,0.0270311,96.32365559],[4.53393183,0.02703282,96.32453932],[4.53393237,0.02703454,96.32542358],[4.53393291,0.02703626,96.32630831],[4.53393345,0.02703799,96.32719345],[4.53393398,0.02703971,96.32807894],[4.53393452,0.02704143,96.32896473],[4.53393506,0.02704315,96.32985074],[4.5339356,0.02704487,96.33073692],[4.53393614,0.02704659,96.33162321],[4.53393667,0.02704831,96.33250956],[4.53393721,0.02705003,96.33339589],[4.53393775,0.02705175,96.33428216],[4.53393829,0.02705348,96.33516829],[4.53393882,0.0270552,96.33605424],[4.53393936,0.02705692,96.33693993],[4.5339399,0.02705864,96.33782532],[4.53394044,0.02706036,96.33871033],[4.53394098,0.02706208,96.33959492],[4.53394151,0.0270638,96.34047901],[4.53394205,0.02706552,96.34136255],[4.53394259,0.02706725,96.34224548],[4.53394313,0.02706897,96.34312774],[4.53394366,0.02707069,96.34400926],[4.5339442,0.02707241,96.34488999],[4.53394474,0.02707413,96.34576986],[4.53394528,0.02707585,96.34664882],[4.53394581,0.02707757,96.34752681],[4.53394635,0.02707929,96.34840376],[4.53394689,0.02708102,96.34927961],[4.53394743,0.02708274,96.3501543],[4.53394796,0.02708446,96.35102778],[4.5339485,0.02708618,96.35189997],[4.53394904,0.0270879,96.35277083],[4.53394958,0.02708962,96.35364029],[4.53395011,0.02709134,96.35450829],[4.53395065,0.02709307,96.3553748],[4.53395119,0.02709479,96.35623982],[4.53395172,0.02709651,96.35710335],[4.53395226,0.02709823,96.3579654],[4.5339528,0.02709995,96.35882597],[4.53395333,0.02710167,96.35968506],[4.53395387,0.0271034,96.36054268],[4.5339544,0.02710512,96.36139883],[4.53395494,0.02710684,96.36225352],[4.53395548,0.02710856,96.36310675],[4.53395601,0.02711028,96.36395852],[4.53395655,0.027112,96.36480886],[4.53395709,0.02711373,96.36565775],[4.53395762,0.02711545,96.36650522],[4.53395816,0.02711717,96.36735127],[4.53395869,0.02711889,96.3681959],[4.53395923,0.02712061,96.36903912],[4.53395977,0.02712233,96.36988095],[4.5339603,0.02712406,96.37072139],[4.53396084,0.02712578,96.37156045],[4.53396138,0.0271275,96.37239814],[4.53396191,0.02712922,96.37323447],[4.53396245,0.02713094,96.37406946],[4.53396298,0.02713266,96.3749031],[4.53396352,0.02713439,96.37573541],[4.53396406,0.02713611,96.37656641],[4.53396459,0.02713783,96.3773961],[4.53396513,0.02713955,96.37822449],[4.53396567,0.02714127,96.37905159],[4.5339662,0.02714299,96.37987741],[4.53396674,0.02714471,96.38070196],[4.53396728,0.02714644,96.38152526],[4.53396782,0.02714816,96.38234725],[4.53396835,0.02714988,96.38316786],[4.53396889,0.0271516,96.38398698],[4.53396943,0.02715332,96.38480452],[4.53396997,0.02715504,96.3856204],[4.5339705,0.02715676,96.38643451],[4.53397104,0.02715848,96.38724677],[4.53397158,0.02716021,96.38805707],[4.53397212,0.02716193,96.38886532],[4.53397266,0.02716365,96.38967143],[4.5339732,0.02716537,96.3904753],[4.53397373,0.02716709,96.39127683],[4.53397427,0.02716881,96.39207592],[4.53397481,0.02717053,96.39287248],[4.53397535,0.02717225,96.3936664],[4.53397589,0.02717397,96.3944576],[4.53397643,0.0271757,96.39524601],[4.53397696,0.02717742,96.39603164],[4.5339775,0.02717914,96.39681447],[4.53397804,0.02718086,96.39759451],[4.53397858,0.02718258,96.39837175],[4.53397912,0.0271843,96.39914619],[4.53397965,0.02718602,96.39991782],[4.53398019,0.02718774,96.40068665],[4.53398073,0.02718946,96.40145265],[4.53398127,0.02719118,96.40221584],[4.53398181,0.02719291,96.40297621],[4.53398234,0.02719463,96.40373375],[4.53398288,0.02719635,96.40448846],[4.53398342,0.02719807,96.40524034],[4.53398395,0.02719979,96.40598938],[4.53398449,0.02720151,96.40673558],[4.53398503,0.02720323,96.40747893],[4.53398557,0.02720496,96.40821944],[4.5339861,0.02720668,96.40895709],[4.53398664,0.0272084,96.40969189],[4.53398717,0.02721012,96.41042384],[4.53398771,0.02721184,96.41115293],[4.53398824,0.02721356,96.41187917],[4.53398878,0.02721529,96.41260254],[4.53398931,0.02721701,96.41332305],[4.53398985,0.02721873,96.4140407],[4.53399038,0.02722045,96.41475548],[4.53399092,0.02722218,96.41546741],[4.53399145,0.0272239,96.41617647],[4.53399199,0.02722562,96.41688268],[4.53399252,0.02722734,96.41758602],[4.53399305,0.02722907,96.41828651],[4.53399358,0.02723079,96.41898414],[4.53399412,0.02723251,96.41967893],[4.53399465,0.02723423,96.42037086],[4.53399518,0.02723596,96.42105995],[4.53399571,0.02723768,96.4217462],[4.53399625,0.0272394,96.42242961],[4.53399678,0.02724113,96.42311019],[4.53399731,0.02724285,96.42378795],[4.53399785,0.02724457,96.42446289],[4.53399838,0.02724629,96.42513502],[4.53399891,0.02724802,96.42580435],[4.53399945,0.02724974,96.42647089],[4.53399998,0.02725146,96.42713463],[4.53400051,0.02725318,96.4277956],[4.53400105,0.02725491,96.4284538],[4.53400158,0.02725663,96.42910925],[4.53400212,0.02725835,96.42976195],[4.53400265,0.02726007,96.43041191],[4.53400319,0.02726179,96.43105916],[4.53400373,0.02726351,96.43170369],[4.53400427,0.02726523,96.43234553],[4.5340048,0.02726696,96.43298468],[4.53400534,0.02726868,96.43362121],[4.53400588,0.0272704,96.43425521],[4.53400642,0.02727212,96.43488677],[4.53400696,0.02727384,96.435516],[4.5340075,0.02727556,96.43614297],[4.53400804,0.02727728,96.4367678],[4.53400858,0.027279,96.43739057],[4.53400912,0.02728072,96.43801138],[4.53400966,0.02728244,96.43863033],[4.5340102,0.02728416,96.4392475],[4.53401074,0.02728588,96.439863],[4.53401128,0.0272876,96.44047691],[4.53401182,0.02728932,96.44108932],[4.53401236,0.02729104,96.44170034],[4.5340129,0.02729276,96.44231005],[4.53401344,0.02729448,96.44291854],[4.53401398,0.02729621,96.44352591],[4.53401452,0.02729793,96.44413224],[4.53401505,0.02729965,96.44473764],[4.53401559,0.02730137,96.44534217],[4.53401613,0.02730309,96.44594594],[4.53401666,0.02730481,96.44654904],[4.5340172,0.02730653,96.44715156],[4.53401773,0.02730826,96.44775357],[4.53401827,0.02730998,96.44835517],[4.5340188,0.0273117,96.44895645],[4.53401934,0.02731342,96.4495575],[4.53401987,0.02731514,96.45015839],[4.5340204,0.02731687,96.45075922],[4.53402094,0.02731859,96.45136008],[4.53402147,0.02732031,96.45196103],[4.534022,0.02732204,96.45256218],[4.53402254,0.02732376,96.4531636],[4.53402307,0.02732548,96.45376538],[4.5340236,0.0273272,96.4543676],[4.53402413,0.02732893,96.45497034],[4.53402467,0.02733065,96.45557368],[4.5340252,0.02733237,96.45617771],[4.53402573,0.0273341,96.45678251],[4.53402626,0.02733582,96.45738815],[4.53402679,0.02733754,96.45799472],[4.53402733,0.02733926,96.4586023],[4.53402786,0.02734099,96.45921096],[4.53402839,0.02734271,96.45982078],[4.53402892,0.02734443,96.46043184],[4.53402946,0.02734616,96.46104423],[4.53402999,0.02734788,96.461658],[4.53403052,0.0273496,96.46227326],[4.53403106,0.02735132,96.46289006],[4.53403159,0.02735305,96.46350848],[4.53403212,0.02735477,96.46412861],[4.53403266,0.02735649,96.46475051],[4.53403319,0.02735821,96.46537426],[4.53403373,0.02735993,96.46599994],[4.53403426,0.02736166,96.46662762],[4.5340348,0.02736338,96.46725737],[4.53403534,0.0273651,96.46788926],[4.53403587,0.02736682,96.46852338],[4.53403641,0.02736854,96.46915978],[4.53403695,0.02737026,96.46979855],[4.53403749,0.02737198,96.4704397],[4.53403802,0.02737371,96.47108325],[4.53403856,0.02737543,96.47172924],[4.5340391,0.02737715,96.47237768],[4.53403964,0.02737887,96.47302858],[4.53404018,0.02738059,96.47368198],[4.53404071,0.02738231,96.4743379],[4.53404125,0.02738403,96.47499634],[4.53404179,0.02738575,96.47565734],[4.53404233,0.02738747,96.47632088],[4.53404287,0.02738919,96.47698694],[4.53404341,0.02739091,96.47765547],[4.53404395,0.02739264,96.47832646],[4.53404449,0.02739436,96.47899987],[4.53404502,0.02739608,96.47967566],[4.53404556,0.0273978,96.48035381],[4.5340461,0.02739952,96.48103428],[4.53404664,0.02740124,96.48171705],[4.53404717,0.02740296,96.48240209],[4.53404771,0.02740468,96.48308936],[4.53404824,0.02740641,96.48377884],[4.53404878,0.02740813,96.4844705],[4.53404932,0.02740985,96.48516431],[4.53404985,0.02741157,96.48586024],[4.53405038,0.02741329,96.48655826],[4.53405092,0.02741502,96.48725835],[4.53405145,0.02741674,96.48796048],[4.53405199,0.02741846,96.48866461],[4.53405252,0.02742018,96.48937073],[4.53405305,0.02742191,96.49007881],[4.53405359,0.02742363,96.49078881],[4.53405412,0.02742535,96.49150072],[4.53405465,0.02742707,96.49221451],[4.53405518,0.0274288,96.49293014],[4.53405572,0.02743052,96.4936476],[4.53405625,0.02743224,96.49436686],[4.53405678,0.02743396,96.4950879],[4.53405731,0.02743569,96.49581068],[4.53405784,0.02743741,96.49653519],[4.53405838,0.02743913,96.4972614],[4.53405891,0.02744086,96.49798928],[4.53405944,0.02744258,96.49871881],[4.53405997,0.0274443,96.49944997],[4.5340605,0.02744603,96.50018272],[4.53406103,0.02744775,96.50091706],[4.53406157,0.02744947,96.50165294],[4.5340621,0.02745119,96.50239036],[4.53406263,0.02745292,96.50312928],[4.53406316,0.02745464,96.50386968],[4.53406369,0.02745636,96.50461154],[4.53406423,0.02745809,96.50535484],[4.53406476,0.02745981,96.50609954],[4.53406529,0.02746153,96.50684564],[4.53406582,0.02746325,96.50759309],[4.53406636,0.02746498,96.5083419],[4.53406689,0.0274667,96.50909202],[4.53406742,0.02746842,96.50984343],[4.53406796,0.02747015,96.51059612],[4.53406849,0.02747187,96.51135006],[4.53406902,0.02747359,96.51210523],[4.53406955,0.02747531,96.5128616],[4.53407009,0.02747704,96.51361916],[4.53407062,0.02747876,96.51437787],[4.53407115,0.02748048,96.51513773],[4.53407169,0.0274822,96.5158987],[4.53407222,0.02748393,96.51666076],[4.53407276,0.02748565,96.51742389],[4.53407329,0.02748737,96.51818807],[4.53407382,0.02748909,96.51895328],[4.53407436,0.02749081,96.51971949],[4.53407489,0.02749254,96.52048668],[4.53407543,0.02749426,96.52125483],[4.53407596,0.02749598,96.52202391],[4.53407649,0.0274977,96.52279391],[4.53407703,0.02749943,96.52356481],[4.53407756,0.02750115,96.52433657],[4.5340781,0.02750287,96.52510918],[4.53407863,0.02750459,96.52588261],[4.53407917,0.02750631,96.52665685],[4.5340797,0.02750804,96.52743186],[4.53408023,0.02750976,96.52820764],[4.53408077,0.02751148,96.52898414],[4.5340813,0.0275132,96.52976136],[4.53408184,0.02751492,96.53053928],[4.53408237,0.02751665,96.53131785],[4.53408291,0.02751837,96.53209708],[4.53408344,0.02752009,96.53287692],[4.53408398,0.02752181,96.53365737],[4.53408451,0.02752354,96.53443839],[4.53408505,0.02752526,96.53521996],[4.53408558,0.02752698,96.53600206],[4.53408612,0.0275287,96.53678468],[4.53408665,0.02753042,96.53756777],[4.53408719,0.02753215,96.53835133],[4.53408772,0.02753387,96.53913532],[4.53408826,0.02753559,96.53991973],[4.53408879,0.02753731,96.54070453],[4.53408933,0.02753903,96.5414897],[4.53408986,0.02754076,96.54227521],[4.53409039,0.02754248,96.54306105],[4.53409093,0.0275442,96.54384717],[4.53409146,0.02754592,96.54463358],[4.534092,0.02754764,96.54542023],[4.53409253,0.02754937,96.5462071],[4.53409307,0.02755109,96.54699417],[4.5340936,0.02755281,96.54778142],[4.53409414,0.02755453,96.54856882],[4.53409467,0.02755625,96.54935635],[4.53409521,0.02755798,96.55014398],[4.53409574,0.0275597,96.55093169],[4.53409628,0.02756142,96.55171945],[4.53409681,0.02756314,96.55250723],[4.53409735,0.02756486,96.55329502],[4.53409788,0.02756659,96.55408279],[4.53409841,0.02756831,96.55487051],[4.53409895,0.02757003,96.5556582],[4.53409948,0.02757175,96.55644589],[4.53410002,0.02757347,96.55723358],[4.53410055,0.0275752,96.5580213],[4.53410109,0.02757692,96.55880907],[4.53410162,0.02757864,96.55959691],[4.53410215,0.02758036,96.56038483],[4.53410269,0.02758209,96.56117285],[4.53410322,0.02758381,96.561961],[4.53410376,0.02758553,96.5627493],[4.53410429,0.02758725,96.56353775],[4.53410482,0.02758897,96.56432639],[4.53410536,0.0275907,96.56511523],[4.53410589,0.02759242,96.56590429],[4.53410643,0.02759414,96.56669358],[4.53410696,0.02759586,96.56748314],[4.53410749,0.02759759,96.56827298],[4.53410803,0.02759931,96.56906311],[4.53410856,0.02760103,96.56985356],[4.53410909,0.02760275,96.57064435],[4.53410963,0.02760448,96.57143549],[4.53411016,0.0276062,96.57222701],[4.53411069,0.02760792,96.57301893],[4.53411123,0.02760964,96.57381126],[4.53411176,0.02761137,96.57460403],[4.53411229,0.02761309,96.57539725],[4.53411282,0.02761481,96.57619095],[4.53411336,0.02761653,96.57698514],[4.53411389,0.02761826,96.57777986],[4.53411442,0.02761998,96.5785751],[4.53411495,0.0276217,96.57937091],[4.53411549,0.02762343,96.5801673],[4.53411602,0.02762515,96.58096428],[4.53411655,0.02762687,96.58176188],[4.53411708,0.02762859,96.58256013],[4.53411761,0.02763032,96.58335903],[4.53411815,0.02763204,96.58415862],[4.53411868,0.02763376,96.58495892],[4.53411921,0.02763549,96.58575994],[4.53411974,0.02763721,96.58656171],[4.53412027,0.02763893,96.58736425],[4.53412081,0.02764065,96.58816758],[4.53412134,0.02764238,96.58897172],[4.53412187,0.0276441,96.5897767],[4.5341224,0.02764582,96.59058254],[4.53412293,0.02764755,96.59138926],[4.53412347,0.02764927,96.59219689],[4.534124,0.02765099,96.59300544],[4.53412453,0.02765271,96.59381494],[4.53412506,0.02765444,96.59462542],[4.5341256,0.02765616,96.59543685],[4.53412613,0.02765788,96.59624922],[4.53412666,0.0276596,96.59706254],[4.53412719,0.02766133,96.59787677],[4.53412773,0.02766305,96.59869192],[4.53412826,0.02766477,96.59950795],[4.53412879,0.02766649,96.60032488],[4.53412933,0.02766822,96.60114267],[4.53412986,0.02766994,96.60196132],[4.53413039,0.02767166,96.60278081],[4.53413093,0.02767339,96.60360113],[4.53413146,0.02767511,96.60442226],[4.53413199,0.02767683,96.60524419],[4.53413252,0.02767855,96.60606691],[4.53413306,0.02768028,96.6068904],[4.53413359,0.027682,96.60771464],[4.53413412,0.02768372,96.60853963],[4.53413466,0.02768544,96.60936534],[4.53413519,0.02768717,96.61019177],[4.53413572,0.02768889,96.6110189],[4.53413626,0.02769061,96.61184672],[4.53413679,0.02769233,96.6126752],[4.53413732,0.02769406,96.61350434],[4.53413785,0.02769578,96.61433412],[4.53413839,0.0276975,96.61516453],[4.53413892,0.02769922,96.61599555],[4.53413945,0.02770095,96.61682716],[4.53413999,0.02770267,96.61765936],[4.53414052,0.02770439,96.61849213],[4.53414105,0.02770611,96.61932545],[4.53414158,0.02770784,96.6201593],[4.53414211,0.02770956,96.62099369],[4.53414265,0.02771128,96.62182858],[4.53414318,0.02771301,96.62266397],[4.53414371,0.02771473,96.62349984],[4.53414424,0.02771645,96.62433619],[4.53414478,0.02771817,96.62517299],[4.53414531,0.0277199,96.62601024],[4.53414584,0.02772162,96.62684791],[4.53414637,0.02772334,96.627686],[4.5341469,0.02772506,96.6285245],[4.53414744,0.02772679,96.62936338],[4.53414797,0.02772851,96.63020263],[4.5341485,0.02773023,96.63104224],[4.53414903,0.02773196,96.6318822],[4.53414956,0.02773368,96.6327225],[4.5341501,0.0277354,96.63356311],[4.53415063,0.02773713,96.63440402],[4.53415116,0.02773885,96.63524522],[4.53415169,0.02774057,96.6360867],[4.53415222,0.02774229,96.63692843],[4.53415275,0.02774402,96.63777042],[4.53415329,0.02774574,96.63861263],[4.53415382,0.02774746,96.63945506],[4.53415435,0.02774919,96.64029769],[4.53415488,0.02775091,96.64114051],[4.53415541,0.02775263,96.64198351],[4.53415595,0.02775435,96.64282666],[4.53415648,0.02775608,96.64366996],[4.53415701,0.0277578,96.64451342],[4.53415754,0.02775952,96.64535704],[4.53415807,0.02776125,96.64620082],[4.53415861,0.02776297,96.64704477],[4.53415914,0.02776469,96.6478889],[4.53415967,0.02776641,96.6487332],[4.5341602,0.02776814,96.64957768],[4.53416073,0.02776986,96.65042234],[4.53416127,0.02777158,96.65126719],[4.5341618,0.0277733,96.65211223],[4.53416233,0.02777503,96.65295747],[4.53416286,0.02777675,96.65380291],[4.5341634,0.02777847,96.65464856],[4.53416393,0.0277802,96.65549442],[4.53416446,0.02778192,96.65634049],[4.53416499,0.02778364,96.65718678],[4.53416553,0.02778536,96.65803329],[4.53416606,0.02778709,96.65888003],[4.53416659,0.02778881,96.65972701],[4.53416712,0.02779053,96.66057422],[4.53416766,0.02779225,96.66142167],[4.53416819,0.02779398,96.66226937],[4.53416872,0.0277957,96.66311733],[4.53416925,0.02779742,96.66396554],[4.53416979,0.02779915,96.66481401],[4.53417032,0.02780087,96.66566275],[4.53417085,0.02780259,96.66651176],[4.53417138,0.02780431,96.66736105],[4.53417192,0.02780604,96.66821063],[4.53417245,0.02780776,96.66906049],[4.53417298,0.02780948,96.66991064],[4.53417351,0.0278112,96.67076109],[4.53417405,0.02781293,96.67161185],[4.53417458,0.02781465,96.67246291],[4.53417511,0.02781637,96.67331429],[4.53417565,0.02781809,96.67416599],[4.53417618,0.02781982,96.67501802],[4.53417671,0.02782154,96.67587038],[4.53417724,0.02782326,96.67672307],[4.53417778,0.02782498,96.67757611],[4.53417831,0.02782671,96.6784295],[4.53417884,0.02782843,96.67928324],[4.53417937,0.02783015,96.68013734],[4.53417991,0.02783188,96.6809918],[4.53418044,0.0278336,96.68184661],[4.53418097,0.02783532,96.68270177],[4.5341815,0.02783704,96.68355727],[4.53418204,0.02783877,96.6844131],[4.53418257,0.02784049,96.68526925],[4.5341831,0.02784221,96.68612572],[4.53418363,0.02784393,96.6869825],[4.53418417,0.02784566,96.68783959],[4.5341847,0.02784738,96.68869696],[4.53418523,0.0278491,96.68955463],[4.53418576,0.02785083,96.69041257],[4.53418629,0.02785255,96.69127079],[4.53418683,0.02785427,96.69212927],[4.53418736,0.02785599,96.69298801],[4.53418789,0.02785772,96.69384701],[4.53418842,0.02785944,96.69470624],[4.53418895,0.02786116,96.69556571],[4.53418948,0.02786289,96.69642541],[4.53419002,0.02786461,96.69728532],[4.53419055,0.02786633,96.69814545],[4.53419108,0.02786806,96.69900578],[4.53419161,0.02786978,96.69986631],[4.53419214,0.0278715,96.70072703],[4.53419267,0.02787322,96.70158793],[4.5341932,0.02787495,96.70244901],[4.53419374,0.02787667,96.70331024],[4.53419427,0.02787839,96.70417164],[4.5341948,0.02788012,96.70503319],[4.53419533,0.02788184,96.70589487],[4.53419586,0.02788356,96.70675669],[4.53419639,0.02788529,96.70761864],[4.53419692,0.02788701,96.7084807],[4.53419746,0.02788873,96.70934288],[4.53419799,0.02789045,96.71020515],[4.53419852,0.02789218,96.71106752],[4.53419905,0.0278939,96.71192997],[4.53419958,0.02789562,96.71279249],[4.53420012,0.02789735,96.71365509],[4.53420065,0.02789907,96.71451775],[4.53420118,0.02790079,96.71538045],[4.53420171,0.02790251,96.7162432],[4.53420224,0.02790424,96.71710599],[4.53420278,0.02790596,96.7179688],[4.53420331,0.02790768,96.71883162],[4.53420384,0.0279094,96.71969446],[4.53420438,0.02791113,96.7205573],[4.53420491,0.02791285,96.72142011],[4.53420544,0.02791457,96.72228282],[4.53420598,0.02791629,96.72314533],[4.53420651,0.02791802,96.72400755],[4.53420704,0.02791974,96.72486937],[4.53420758,0.02792146,96.72573071],[4.53420811,0.02792318,96.72659146],[4.53420865,0.02792491,96.72745153],[4.53420918,0.02792663,96.72831081],[4.53420971,0.02792835,96.72916922],[4.53421025,0.02793007,96.73002664],[4.53421078,0.02793179,96.73088299],[4.53421131,0.02793352,96.73173816],[4.53421185,0.02793524,96.73259205],[4.53421238,0.02793696,96.73344456],[4.53421291,0.02793868,96.73429559],[4.53421345,0.02794041,96.73514504],[4.53421398,0.02794213,96.73599281],[4.53421451,0.02794385,96.7368388],[4.53421505,0.02794557,96.7376829],[4.53421558,0.0279473,96.73852501],[4.53421611,0.02794902,96.73936502],[4.53421664,0.02795074,96.74020285],[4.53421717,0.02795247,96.74103837],[4.5342177,0.02795419,96.74187152],[4.53421824,0.02795591,96.74270231],[4.53421877,0.02795764,96.74353078],[4.5342193,0.02795936,96.74435698],[4.53421983,0.02796108,96.74518095],[4.53422036,0.0279628,96.74600273],[4.53422089,0.02796453,96.74682237],[4.53422142,0.02796625,96.74763991],[4.53422195,0.02796797,96.74845539],[4.53422248,0.0279697,96.74926886],[4.53422301,0.02797142,96.75008037],[4.53422354,0.02797314,96.75088995],[4.53422407,0.02797487,96.75169767],[4.5342246,0.02797659,96.75250355],[4.53422513,0.02797831,96.75330765],[4.53422566,0.02798004,96.75411001],[4.5342262,0.02798176,96.75491068],[4.53422673,0.02798348,96.7557097],[4.53422726,0.02798521,96.75650713],[4.53422779,0.02798693,96.75730301],[4.53422832,0.02798865,96.75809739],[4.53422885,0.02799038,96.75889031],[4.53422938,0.0279921,96.75968182],[4.53422991,0.02799382,96.76047198],[4.53423044,0.02799555,96.76126083],[4.53423097,0.02799727,96.76204842],[4.5342315,0.02799899,96.76283481],[4.53423203,0.02800072,96.76362004],[4.53423256,0.02800244,96.76440416],[4.53423309,0.02800416,96.76518724],[4.53423362,0.02800589,96.76596931],[4.53423416,0.02800761,96.76675042],[4.53423469,0.02800933,96.76753064],[4.53423522,0.02801106,96.76831001],[4.53423575,0.02801278,96.76908859],[4.53423628,0.0280145,96.76986642],[4.53423681,0.02801623,96.77064356],[4.53423734,0.02801795,96.77142007],[4.53423787,0.02801967,96.77219599],[4.5342384,0.0280214,96.77297137],[4.53423893,0.02802312,96.77374628],[4.53423946,0.02802484,96.77452076],[4.53423999,0.02802657,96.77529487],[4.53424052,0.02802829,96.77606865],[4.53424105,0.02803001,96.77684217],[4.53424158,0.02803174,96.77761548],[4.53424211,0.02803346,96.77838863],[4.53424264,0.02803518,96.77916167],[4.53424317,0.02803691,96.77993467],[4.5342437,0.02803863,96.78070766],[4.53424423,0.02804035,96.78148072],[4.53424476,0.02804208,96.78225388],[4.53424529,0.0280438,96.78302721],[4.53424582,0.02804552,96.78380076],[4.53424634,0.02804725,96.78457459],[4.53424687,0.02804897,96.78534874],[4.5342474,0.0280507,96.78612328],[4.53424793,0.02805242,96.78689825],[4.53424846,0.02805414,96.78767372],[4.53424899,0.02805587,96.78844973],[4.53424952,0.02805759,96.78922635],[4.53425005,0.02805931,96.79000362],[4.53425058,0.02806104,96.7907816],[4.53425111,0.02806276,96.79156035],[4.53425163,0.02806449,96.79233991],[4.53425216,0.02806621,96.79312035],[4.53425269,0.02806793,96.79390172],[4.53425322,0.02806966,96.79468407],[4.53425375,0.02807138,96.79546739],[4.53425428,0.02807311,96.79625163],[4.5342548,0.02807483,96.79703672],[4.53425533,0.02807655,96.7978226],[4.53425586,0.02807828,96.7986092],[4.53425639,0.02808,96.79939647],[4.53425692,0.02808173,96.80018433],[4.53425745,0.02808345,96.80097273],[4.53425797,0.02808517,96.80176159],[4.5342585,0.0280869,96.80255086],[4.53425903,0.02808862,96.80334047],[4.53425956,0.02809035,96.80413035],[4.53426009,0.02809207,96.80492044],[4.53426062,0.02809379,96.80571068],[4.53426114,0.02809552,96.806501],[4.53426167,0.02809724,96.80729133],[4.5342622,0.02809897,96.80808161],[4.53426273,0.02810069,96.80887178],[4.53426326,0.02810241,96.80966176],[4.53426378,0.02810414,96.8104515],[4.53426431,0.02810586,96.81124093],[4.53426484,0.02810759,96.81202998],[4.53426537,0.02810931,96.81281859],[4.5342659,0.02811103,96.81360668],[4.53426643,0.02811276,96.81439421],[4.53426695,0.02811448,96.81518109],[4.53426748,0.02811621,96.81596727],[4.53426801,0.02811793,96.81675267],[4.53426854,0.02811965,96.81753724],[4.53426907,0.02812138,96.8183209],[4.53426959,0.0281231,96.81910359],[4.53427012,0.02812483,96.81988525],[4.53427065,0.02812655,96.82066581],[4.53427118,0.02812827,96.8214452],[4.53427171,0.02813,96.82222336],[4.53427224,0.02813172,96.82300023],[4.53427276,0.02813345,96.82377573],[4.53427329,0.02813517,96.8245498],[4.53427382,0.02813689,96.82532238],[4.53427435,0.02813862,96.82609341],[4.53427488,0.02814034,96.8268628],[4.5342754,0.02814207,96.82763052],[4.53427593,0.02814379,96.82839647],[4.53427646,0.02814551,96.82916062],[4.53427699,0.02814724,96.82992288],[4.53427752,0.02814896,96.83068319],[4.53427804,0.02815069,96.83144149],[4.53427857,0.02815241,96.83219772],[4.5342791,0.02815414,96.83295181],[4.53427963,0.02815586,96.8337037],[4.53428016,0.02815758,96.83445333],[4.53428068,0.02815931,96.83520063],[4.53428121,0.02816103,96.83594554],[4.53428174,0.02816276,96.83668799],[4.53428227,0.02816448,96.83742793],[4.5342828,0.0281662,96.8381653],[4.53428332,0.02816793,96.83890008],[4.53428385,0.02816965,96.83963231],[4.53428438,0.02817138,96.84036204],[4.53428491,0.0281731,96.84108932],[4.53428544,0.02817483,96.84181418],[4.53428596,0.02817655,96.84253666],[4.53428649,0.02817827,96.84325681],[4.53428702,0.02818,96.84397467],[4.53428755,0.02818172,96.84469029],[4.53428808,0.02818345,96.8454037],[4.53428861,0.02818517,96.84611495],[4.53428913,0.02818689,96.84682409],[4.53428966,0.02818862,96.84753114],[4.53429019,0.02819034,96.84823617],[4.53429072,0.02819207,96.84893921],[4.53429125,0.02819379,96.8496403],[4.53429178,0.02819551,96.85033948],[4.5342923,0.02819724,96.8510368],[4.53429283,0.02819896,96.85173231],[4.53429336,0.02820069,96.85242603],[4.53429389,0.02820241,96.85311802],[4.53429442,0.02820414,96.85380832],[4.53429494,0.02820586,96.85449697],[4.53429547,0.02820758,96.85518401],[4.534296,0.02820931,96.85586948],[4.53429653,0.02821103,96.85655343],[4.53429705,0.02821276,96.8572359]],"type":"LineString"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":2,"type":"none","predecessorId":0}},{"geometry":{"coordinates":[[4.53367405,0.02674143,96.01700215],[4.5336735,0.02673972,96.01574157],[4.53367294,0.02673801,96.01448878],[4.53367239,0.02673629,96.01324372],[4.53367183,0.02673458,96.01200635],[4.53367128,0.02673286,96.01077662],[4.53367097,0.02673193,96.01010574]],"type":"LineString"},"type":"feature","properties":{"successorId":-7,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15},{"outer":0.15,"inner":0.025}],"roadId":"1000100","id":-7,"type":"none","predecessorId":0}},{"geometry":{"coordinates":[[4.53371271,0.02672908,95.86700215],[4.53371212,0.02672737,95.86574157],[4.53371154,0.02672566,95.86448878],[4.53371096,0.02672396,95.86324372],[4.53371038,0.02672225,95.86200635],[4.53370979,0.02672055,95.86077662],[4.53370947,0.02671961,96.01010574]],"type":"LineString"},"type":"feature","properties":{"successorId":-6,"level":true,"heights":[{"outer":0.0,"inner":0.0},{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-6,"type":"border","predecessorId":0}},{"geometry":{"coordinates":[[4.53371402,0.02672866,95.86700215],[4.53371343,0.02672695,95.86574157],[4.53371285,0.02672525,95.86448878],[4.53371227,0.02672354,95.86324372],[4.53371169,0.02672183,95.86200635],[4.5337111,0.02672013,95.86077662],[4.53371079,0.02671919,95.86010574]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-5,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-5,"type":"border","predecessorId":0}},{"geometry":{"coordinates":[[4.53371678,0.02672777,95.87592062],[4.53371622,0.02672606,95.87476227],[4.53371567,0.02672434,95.87361166],[4.53371511,0.02672263,95.87246875],[4.53371456,0.02672092,95.87133349],[4.533714,0.0267192,95.87020583],[4.5337137,0.02671826,95.86959087]],"type":"LineString"},"type":"feature","properties":{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-4,"type":"shoulder","predecessorId":0}},{"geometry":{"coordinates":[[4.53371823,0.02672731,95.88059873],[4.53371768,0.02672559,95.87948691],[4.53371714,0.02672387,95.8783828],[4.5337166,0.02672216,95.87728635],[4.53371606,0.02672044,95.87619751],[4.53371551,0.02671872,95.87511622],[4.53371522,0.02671778,95.87452667]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"entry","predecessorId":-3}},{"geometry":{"coordinates":[[4.53374739,0.02671799,95.97479853],[4.53374684,0.02671627,95.97382879],[4.5337463,0.02671455,95.97286378],[4.53374576,0.02671283,95.97190347],[4.53374522,0.02671111,95.97094783],[4.53374468,0.02670939,95.96999683],[4.53374438,0.02670845,95.96947746]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2}},{"geometry":{"coordinates":[[4.53377879,0.02670795,96.07624817],[4.53377825,0.02670623,96.07542603],[4.53377771,0.02670451,96.07460541],[4.53377716,0.02670279,96.07378628],[4.53377662,0.02670107,96.07296864],[4.53377608,0.02669935,96.07215248],[4.53377578,0.02669841,96.07170569]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}},{"geometry":{"coordinates":[[4.53380999,0.02668747,96.1830712],[4.5338103,0.02668841,96.18346066],[4.53381085,0.02669012,96.18416953],[4.53381141,0.02669184,96.18487632],[4.53381196,0.02669356,96.18558102],[4.53381251,0.02669527,96.18628361],[4.53381307,0.02669699,96.18698408]],"type":"LineString"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":1,"type":"shoulder","predecessorId":1}},{"geometry":{"coordinates":[[4.53382235,0.02668351,96.1830712],[4.53382265,0.02668446,96.18346066],[4.5338232,0.02668618,96.18416953],[4.53382374,0.0266879,96.18487632],[4.53382428,0.02668962,96.18558102],[4.53382483,0.02669134,96.18628361],[4.53382537,0.02669305,96.18698408]],"type":"LineString"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":2,"type":"none","predecessorId":2}},{"geometry":{"coordinates":[[4.53367097,0.02673193,96.01010574],[4.53367042,0.02673021,96.00901064],[4.53366986,0.0267285,96.00792417],[4.5336693,0.02672679,96.0068462],[4.53366875,0.02672507,96.00577662],[4.53366819,0.02672336,96.00471528],[4.53366764,0.02672164,96.00366208],[4.53366708,0.02671993,96.00261688],[4.53366653,0.02671822,96.00157955],[4.53366597,0.0267165,96.00054998],[4.53366542,0.02671479,95.99952803],[4.53366486,0.02671308,95.99851358],[4.53366431,0.02671136,95.9975065],[4.53366375,0.02670965,95.99650667],[4.53366319,0.02670794,95.99551395],[4.53366264,0.02670622,95.99452822],[4.53366208,0.02670451,95.99354934],[4.53366153,0.02670279,95.9925772],[4.53366097,0.02670108,95.99161166],[4.53366041,0.02669937,95.99065259],[4.53365985,0.02669766,95.98969987],[4.5336593,0.02669594,95.98875336],[4.53365874,0.02669423,95.98781287],[4.53365818,0.02669252,95.98687742],[4.53365762,0.0266908,95.98594764],[4.53365706,0.02668909,95.9850249],[4.53365651,0.02668738,95.98411056],[4.53365596,0.02668566,95.98320598],[4.53365542,0.02668394,95.98231141],[4.53365489,0.02668222,95.98142491],[4.53365437,0.0266805,95.9805462],[4.53365384,0.02667877,95.97967511],[4.53365333,0.02667705,95.9788115],[4.53365281,0.02667532,95.9779552],[4.5336523,0.02667359,95.97710607],[4.53365178,0.02667187,95.97626393],[4.53365127,0.02667014,95.97542865],[4.53365076,0.02666841,95.97460005],[4.53365024,0.02666668,95.97377799],[4.53364973,0.02666496,95.9729623],[4.53364921,0.02666323,95.97215283],[4.53364868,0.02666151,95.97134942],[4.53364815,0.02665979,95.9705519],[4.53364761,0.02665807,95.96976008],[4.53364707,0.02665635,95.96897368],[4.53364653,0.02665463,95.96819243],[4.53364598,0.02665292,95.96741607],[4.53364543,0.0266512,95.96664433],[4.53364487,0.02664949,95.96587695],[4.53364432,0.02664777,95.96511364],[4.53364376,0.02664606,95.96435416],[4.5336432,0.02664435,95.96359857],[4.53364264,0.02664264,95.96284755],[4.53364209,0.02664092,95.96210114],[4.53364153,0.02663921,95.96135933],[4.53364097,0.0266375,95.9606221],[4.53364041,0.02663578,95.95988946],[4.53363985,0.02663407,95.95916139],[4.5336393,0.02663236,95.95843789],[4.53363874,0.02663064,95.95771895],[4.53363818,0.02662893,95.95700456],[4.53363763,0.02662722,95.95629472],[4.53363707,0.0266255,95.95558942],[4.53363652,0.02662379,95.95488865],[4.53363596,0.02662208,95.95419241],[4.53363541,0.02662036,95.95350068],[4.53363485,0.02661865,95.95281346],[4.5336343,0.02661693,95.95213074],[4.53363375,0.02661522,95.95145252],[4.5336332,0.0266135,95.95077878],[4.53363265,0.02661179,95.95010953],[4.5336321,0.02661007,95.94944474],[4.53363155,0.02660835,95.94878442],[4.53363101,0.02660664,95.94812856],[4.53363046,0.02660492,95.94747714],[4.53362992,0.0266032,95.94683016],[4.53362937,0.02660149,95.94618761],[4.53362883,0.02659977,95.94554949],[4.53362829,0.02659805,95.94491578],[4.53362775,0.02659633,95.94428644],[4.53362721,0.02659461,95.94366127],[4.53362667,0.02659289,95.94304007],[4.53362614,0.02659117,95.94242259],[4.5336256,0.02658945,95.94180869],[4.53362507,0.02658773,95.94119828],[4.53362453,0.02658601,95.94059127],[4.533624,0.02658429,95.93998758],[4.53362347,0.02658257,95.93938711],[4.53362294,0.02658085,95.93878979],[4.5336224,0.02657913,95.93819552],[4.53362187,0.0265774,95.93760423],[4.53362134,0.02657568,95.93701581],[4.53362081,0.02657396,95.9364302],[4.53362028,0.02657224,95.9358473],[4.53361975,0.02657052,95.93526702],[4.53361922,0.0265688,95.93468928],[4.53361869,0.02656707,95.93411401],[4.53361816,0.02656535,95.9335411],[4.53361763,0.02656363,95.93297047],[4.5336171,0.02656191,95.93240204],[4.53361657,0.02656019,95.93183573],[4.53361604,0.02655847,95.93127145],[4.5336155,0.02655674,95.93070911],[4.53361497,0.02655502,95.93014863],[4.53361444,0.0265533,95.92958993],[4.53361391,0.02655158,95.92903291],[4.53361337,0.02654986,95.9284775],[4.53361284,0.02654814,95.92792361],[4.5336123,0.02654642,95.92737116],[4.53361177,0.0265447,95.92682006],[4.53361123,0.02654298,95.92627024],[4.5336107,0.02654126,95.92572162],[4.53361016,0.02653954,95.92517414],[4.53360962,0.02653782,95.92462772],[4.53360909,0.0265361,95.92408229],[4.53360855,0.02653438,95.92353778],[4.53360801,0.02653266,95.92299413],[4.53360747,0.02653094,95.92245127],[4.53360693,0.02652922,95.92190911],[4.53360639,0.0265275,95.9213676],[4.53360585,0.02652578,95.92082666],[4.53360531,0.02652407,95.92028623],[4.53360477,0.02652235,95.91974623],[4.53360422,0.02652063,95.91920659],[4.53360368,0.02651891,95.91866728],[4.53360313,0.0265172,95.91812842],[4.53360259,0.02651548,95.91759016],[4.53360204,0.02651376,95.91705264],[4.5336015,0.02651204,95.916516],[4.53360095,0.02651033,95.91598041],[4.5336004,0.02650861,95.915446],[4.53359985,0.0265069,95.91491292],[4.53359931,0.02650518,95.91438132],[4.53359876,0.02650346,95.9138513],[4.53359821,0.02650175,95.91332281],[4.53359766,0.02650003,95.91279578],[4.53359711,0.02649831,95.91227012],[4.53359656,0.0264966,95.91174575],[4.53359601,0.02649488,95.91122258],[4.53359546,0.02649317,95.91070053],[4.53359491,0.02649145,95.91017952],[4.53359436,0.02648974,95.90965946],[4.53359382,0.02648802,95.90914028],[4.53359327,0.0264863,95.90862189],[4.53359272,0.02648459,95.9081042],[4.53359217,0.02648287,95.90758714],[4.53359162,0.02648116,95.90707062],[4.53359107,0.02647944,95.90655457],[4.53359052,0.02647772,95.90603889],[4.53358997,0.02647601,95.90552351],[4.53358942,0.02647429,95.90500834],[4.53358887,0.02647258,95.90449331],[4.53358833,0.02647086,95.90397832],[4.53358778,0.02646914,95.90346331],[4.53358723,0.02646743,95.90294818],[4.53358668,0.02646571,95.90243283],[4.53358614,0.02646399,95.90191702],[4.53358559,0.02646228,95.90140051],[4.53358504,0.02646056,95.90088302],[4.5335845,0.02645884,95.9003643],[4.53358395,0.02645713,95.8998442],[4.5335834,0.02645541,95.89932268],[4.53358286,0.02645369,95.89879968],[4.53358231,0.02645198,95.89827518],[4.53358177,0.02645026,95.89774912],[4.53358122,0.02644854,95.89722146],[4.53358068,0.02644682,95.89669217],[4.53358013,0.02644511,95.89616119],[4.53357958,0.02644339,95.8956285],[4.53357904,0.02644167,95.89509403],[4.53357849,0.02643996,95.89455776],[4.53357795,0.02643824,95.89401964],[4.5335774,0.02643652,95.89347963],[4.53357686,0.0264348,95.89293768],[4.53357631,0.02643309,95.89239375],[4.53357576,0.02643137,95.8918478],[4.53357522,0.02642965,95.89129978],[4.53357467,0.02642794,95.89074966],[4.53357412,0.02642622,95.89019739],[4.53357358,0.0264245,95.88964292],[4.53357303,0.02642279,95.88908622],[4.53357248,0.02642107,95.88852724],[4.53357193,0.02641935,95.88796594],[4.53357138,0.02641764,95.88740227],[4.53357083,0.02641592,95.88683619],[4.53357029,0.02641421,95.88626766],[4.53356974,0.02641249,95.88569663],[4.53356919,0.02641077,95.88512306],[4.53356863,0.02640906,95.88454691],[4.53356808,0.02640734,95.88396814],[4.53356753,0.02640563,95.88338669],[4.53356698,0.02640391,95.88280253],[4.53356643,0.0264022,95.8822156],[4.53356587,0.02640048,95.88162576],[4.53356532,0.02639877,95.88103292],[4.53356476,0.02639706,95.88043697],[4.53356421,0.02639534,95.8798378],[4.53356365,0.02639363,95.87923531],[4.5335631,0.02639191,95.87862943],[4.53356254,0.0263902,95.87802025],[4.53356198,0.02638849,95.87740789],[4.53356142,0.02638677,95.87679248],[4.53356087,0.02638506,95.87617415],[4.53356031,0.02638335,95.87555302],[4.53355975,0.02638164,95.87492922],[4.53355919,0.02637992,95.87430286],[4.53355863,0.02637821,95.87367409],[4.53355807,0.0263765,95.87304301],[4.53355751,0.02637479,95.87240975],[4.53355695,0.02637307,95.87177444],[4.53355639,0.02637136,95.8711372],[4.53355583,0.02636965,95.87049815],[4.53355526,0.02636794,95.86985742],[4.5335547,0.02636622,95.86921513],[4.53355414,0.02636451,95.8685714],[4.53355358,0.0263628,95.86792635],[4.53355302,0.02636109,95.86728011],[4.53355246,0.02635937,95.8666328],[4.53355191,0.02635766,95.86598455],[4.53355135,0.02635595,95.86533546],[4.53355079,0.02635423,95.86468568],[4.53355023,0.02635252,95.86403532],[4.53354967,0.02635081,95.86338451],[4.53354912,0.02634909,95.86273333],[4.53354856,0.02634738,95.86208151],[4.53354801,0.02634566,95.86142873],[4.53354745,0.02634395,95.86077466],[4.5335469,0.02634224,95.86011899],[4.53354635,0.02634052,95.85946139],[4.5335458,0.0263388,95.85880154],[4.53354525,0.02633709,95.85813911],[4.5335447,0.02633537,95.85747378],[4.53354416,0.02633366,95.85680524],[4.53354361,0.02633194,95.85613315],[4.53354307,0.02633022,95.85545713],[4.53354252,0.0263285,95.85477657],[4.53354198,0.02632678,95.85409123],[4.53354144,0.02632507,95.85340134],[4.5335409,0.02632335,95.85270714],[4.53354035,0.02632163,95.85200886],[4.53353981,0.02631991,95.85130677],[4.53353928,0.02631819,95.85060108],[4.53353874,0.02631647,95.84989205],[4.5335382,0.02631475,95.84917992],[4.53353766,0.02631303,95.84846493],[4.53353712,0.02631131,95.84774732],[4.53353659,0.02630959,95.84702733],[4.53353605,0.02630787,95.84630519],[4.53353551,0.02630615,95.84558116],[4.53353498,0.02630443,95.84485546],[4.53353444,0.02630271,95.84412834],[4.53353391,0.02630099,95.84339988],[4.53353337,0.02629927,95.84267006],[4.53353283,0.02629755,95.84193881],[4.5335323,0.02629583,95.8412061],[4.53353176,0.02629411,95.84047186],[4.53353123,0.02629239,95.83973606],[4.53353069,0.02629067,95.83899865],[4.53353015,0.02628895,95.83825957],[4.53352961,0.02628723,95.83751878],[4.53352908,0.02628551,95.83677624],[4.53352854,0.02628379,95.83603188],[4.533528,0.02628207,95.83528567],[4.53352746,0.02628035,95.83453756],[4.53352691,0.02627863,95.83378756],[4.53352637,0.02627691,95.83303593],[4.53352583,0.0262752,95.83228299],[4.53352528,0.02627348,95.83152906],[4.53352474,0.02627176,95.83077446],[4.53352419,0.02627004,95.83001945],[4.53352364,0.02626833,95.82926398],[4.5335231,0.02626661,95.82850797],[4.53352255,0.02626489,95.82775131],[4.533522,0.02626318,95.8269939],[4.53352145,0.02626146,95.82623566],[4.5335209,0.02625975,95.82547647],[4.53352035,0.02625803,95.82471625],[4.5335198,0.02625631,95.82395488],[4.53351925,0.0262546,95.82319228],[4.5335187,0.02625288,95.82242835],[4.53351815,0.02625117,95.82166298],[4.5335176,0.02624945,95.82089608],[4.53351706,0.02624773,95.82012755],[4.53351651,0.02624602,95.81935729],[4.53351596,0.0262443,95.81858521],[4.53351541,0.02624258,95.81781119],[4.53351486,0.02624087,95.81703515],[4.53351432,0.02623915,95.81625699],[4.53351377,0.02623743,95.8154766],[4.53351323,0.02623572,95.81469389],[4.53351268,0.026234,95.81390875],[4.53351214,0.02623228,95.81312116],[4.5335116,0.02623056,95.8123313],[4.53351106,0.02622884,95.81153928],[4.53351052,0.02622712,95.81074514],[4.53350998,0.0262254,95.80994896],[4.53350944,0.02622368,95.80915078],[4.5335089,0.02622196,95.80835067],[4.53350836,0.02622024,95.80754868],[4.53350783,0.02621852,95.80674488],[4.53350729,0.0262168,95.80593932],[4.53350675,0.02621508,95.80513207],[4.53350622,0.02621336,95.80432318],[4.53350568,0.02621164,95.80351271],[4.53350515,0.02620992,95.80270072],[4.53350461,0.0262082,95.80188727],[4.53350407,0.02620648,95.80107243],[4.53350353,0.02620476,95.80025623],[4.53350299,0.02620304,95.79943876],[4.53350245,0.02620132,95.79862006],[4.53350191,0.0261996,95.79780019],[4.53350137,0.02619789,95.79697921],[4.53350083,0.02619617,95.79615719],[4.53350029,0.02619445,95.79533418],[4.53349975,0.02619273,95.79451024],[4.5334992,0.02619101,95.79368543],[4.53349866,0.02618929,95.7928598],[4.53349811,0.02618758,95.79203343],[4.53349757,0.02618586,95.79120636],[4.53349702,0.02618414,95.79037866],[4.53349648,0.02618242,95.78955039],[4.53349593,0.02618071,95.78872161],[4.53349538,0.02617899,95.78789234],[4.53349484,0.02617727,95.78706252],[4.53349429,0.02617556,95.78623203],[4.53349375,0.02617384,95.78540079],[4.5334932,0.02617212,95.78456867],[4.53349265,0.0261704,95.78373559],[4.53349211,0.02616869,95.78290155],[4.53349156,0.02616697,95.78206657],[4.53349102,0.02616525,95.78123065],[4.53349047,0.02616353,95.78039382],[4.53348992,0.02616182,95.77955609],[4.53348938,0.0261601,95.77871746],[4.53348883,0.02615838,95.77787797],[4.53348829,0.02615667,95.77703762],[4.53348774,0.02615495,95.77619643],[4.53348719,0.02615323,95.77535442],[4.53348665,0.02615151,95.77451159],[4.5334861,0.0261498,95.77366797],[4.53348555,0.02614808,95.77282357],[4.53348501,0.02614636,95.7719784],[4.53348446,0.02614465,95.77113249],[4.53348391,0.02614293,95.77028586],[4.53348337,0.02614121,95.76943852],[4.53348282,0.02613949,95.7685905],[4.53348228,0.02613778,95.76774183],[4.53348173,0.02613606,95.76689251],[4.53348118,0.02613434,95.76604258],[4.53348064,0.02613262,95.76519205],[4.53348009,0.02613091,95.76434095],[4.53347954,0.02612919,95.76348929],[4.533479,0.02612747,95.7626371],[4.53347845,0.02612576,95.76178437],[4.53347791,0.02612404,95.76093107],[4.53347736,0.02612232,95.76007716],[4.53347681,0.0261206,95.7592226],[4.53347627,0.02611889,95.75836736],[4.53347572,0.02611717,95.7575114],[4.53347517,0.02611545,95.75665469],[4.53347463,0.02611374,95.7557972],[4.53347408,0.02611202,95.75493888],[4.53347353,0.0261103,95.7540797],[4.53347299,0.02610858,95.75321963],[4.53347244,0.02610687,95.75235863],[4.53347189,0.02610515,95.75149665],[4.53347135,0.02610343,95.75063368],[4.5334708,0.02610172,95.74976966],[4.53347025,0.0261,95.74890457],[4.5334697,0.02609828,95.74803836],[4.53346916,0.02609657,95.747171],[4.53346861,0.02609485,95.74630245],[4.53346806,0.02609313,95.74543268],[4.53346751,0.02609142,95.74456165],[4.53346696,0.0260897,95.74368934],[4.53346641,0.02608798,95.74281577],[4.53346586,0.02608627,95.74194094],[4.53346531,0.02608455,95.74106485],[4.53346476,0.02608283,95.74018753],[4.53346421,0.02608112,95.73930897],[4.53346366,0.0260794,95.73842919],[4.53346311,0.02607769,95.73754819],[4.53346256,0.02607597,95.73666599],[4.53346201,0.02607426,95.73578259],[4.53346146,0.02607254,95.73489799],[4.5334609,0.02607082,95.73401222],[4.53346035,0.02606911,95.73312527],[4.5334598,0.02606739,95.73223715],[4.53345925,0.02606568,95.73134788],[4.53345869,0.02606396,95.73045746],[4.53345814,0.02606225,95.7295659],[4.53345759,0.02606053,95.72867321],[4.53345703,0.02605882,95.72777939],[4.53345648,0.0260571,95.72688448],[4.53345592,0.02605539,95.72598858],[4.53345537,0.02605368,95.72509181],[4.53345481,0.02605196,95.72419429],[4.53345426,0.02605025,95.72329615],[4.5334537,0.02604853,95.72239751],[4.53345315,0.02604682,95.7214985],[4.53345259,0.0260451,95.72059924],[4.53345204,0.02604339,95.71969985],[4.53345148,0.02604167,95.71880046],[4.53345093,0.02603996,95.71790118],[4.53345037,0.02603825,95.71700207],[4.53344982,0.02603653,95.71610318],[4.53344926,0.02603482,95.71520455],[4.53344871,0.0260331,95.71430622],[4.53344815,0.02603139,95.71340825],[4.5334476,0.02602967,95.71251069],[4.53344705,0.02602796,95.71161357],[4.53344649,0.02602624,95.71071694],[4.53344594,0.02602453,95.70982086],[4.53344538,0.02602281,95.70892536],[4.53344483,0.0260211,95.70803049],[4.53344428,0.02601938,95.70713631],[4.53344373,0.02601767,95.70624285],[4.53344317,0.02601595,95.70535017],[4.53344262,0.02601424,95.70445831],[4.53344207,0.02601252,95.70356732],[4.53344152,0.0260108,95.70267725],[4.53344096,0.02600909,95.70178814],[4.53344041,0.02600737,95.70090004],[4.53343986,0.02600566,95.70001299],[4.53343931,0.02600394,95.69912706],[4.53343876,0.02600223,95.69824227],[4.53343821,0.02600051,95.69735869],[4.53343766,0.02599879,95.69647636],[4.53343711,0.02599708,95.69559532],[4.53343656,0.02599536,95.69471562],[4.53343602,0.02599364,95.6938373],[4.53343547,0.02599193,95.6929604],[4.53343492,0.02599021,95.69208496],[4.53343437,0.02598849,95.69121102],[4.53343383,0.02598678,95.69033863],[4.53343328,0.02598506,95.68946783],[4.53343273,0.02598334,95.68859866],[4.53343219,0.02598162,95.68773115],[4.53343164,0.02597991,95.68686536],[4.5334311,0.02597819,95.68600132],[4.53343056,0.02597647,95.68513908],[4.53343001,0.02597475,95.68427868],[4.53342999,0.02597467,95.68423833]],"type":"LineString"},"type":"feature","properties":{"successorId":-7,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-7,"type":"none","predecessorId":-7}},{"geometry":{"coordinates":[[4.53370947,0.02671961,96.01010574],[4.53370893,0.0267179,96.00901064],[4.53370838,0.02671618,96.00792417],[4.53370784,0.02671446,96.0068462],[4.5337073,0.02671274,96.00577662],[4.53370675,0.02671103,96.00471528],[4.53370621,0.02670931,96.00366208],[4.53370566,0.02670759,96.00261688],[4.53370512,0.02670587,96.00157955],[4.53370457,0.02670415,96.00054998],[4.53370403,0.02670244,95.99952803],[4.53370349,0.02670072,95.99851358],[4.53370294,0.026699,95.9975065],[4.5337024,0.02669728,95.99650667],[4.53370186,0.02669556,95.99551395],[4.53370131,0.02669385,95.99452822],[4.53370077,0.02669213,95.99354934],[4.53370022,0.02669041,95.9925772],[4.53369968,0.02668869,95.99161166],[4.53369913,0.02668698,95.99065259],[4.53369859,0.02668526,95.98969987],[4.53369804,0.02668354,95.98875336],[4.5336975,0.02668182,95.98781287],[4.53369695,0.02668011,95.98687742],[4.53369641,0.02667839,95.98594764],[4.53369586,0.02667667,95.9850249],[4.53369531,0.02667496,95.98411056],[4.53369477,0.02667324,95.98320598],[4.53369423,0.02667152,95.98231141],[4.53369368,0.0266698,95.98142491],[4.53369314,0.02666808,95.9805462],[4.5336926,0.02666637,95.97967511],[4.53369206,0.02666465,95.9788115],[4.53369151,0.02666293,95.9779552],[4.53369097,0.02666121,95.97710607],[4.53369043,0.02665949,95.97626393],[4.53368989,0.02665777,95.97542865],[4.53368935,0.02665605,95.97460005],[4.53368881,0.02665433,95.97377799],[4.53368827,0.02665262,95.9729623],[4.53368773,0.0266509,95.97215283],[4.53368719,0.02664918,95.97134942],[4.53368665,0.02664746,95.9705519],[4.53368611,0.02664574,95.96976008],[4.53368557,0.02664402,95.96897368],[4.53368503,0.0266423,95.96819243],[4.53368449,0.02664058,95.96741607],[4.53368394,0.02663886,95.96664433],[4.5336834,0.02663714,95.96587695],[4.53368286,0.02663543,95.96511364],[4.53368232,0.02663371,95.96435416],[4.53368178,0.02663199,95.96359857],[4.53368123,0.02663027,95.96284755],[4.53368069,0.02662855,95.96210114],[4.53368015,0.02662683,95.96135933],[4.5336796,0.02662512,95.9606221],[4.53367906,0.0266234,95.95988946],[4.53367852,0.02662168,95.95916139],[4.53367797,0.02661996,95.95843789],[4.53367743,0.02661824,95.95771895],[4.53367689,0.02661653,95.95700456],[4.53367634,0.02661481,95.95629472],[4.5336758,0.02661309,95.95558942],[4.53367526,0.02661137,95.95488865],[4.53367471,0.02660965,95.95419241],[4.53367417,0.02660794,95.95350068],[4.53367362,0.02660622,95.95281346],[4.53367308,0.0266045,95.95213074],[4.53367254,0.02660278,95.95145252],[4.53367199,0.02660107,95.95077878],[4.53367145,0.02659935,95.95010953],[4.53367091,0.02659763,95.94944474],[4.53367036,0.02659591,95.94878442],[4.53366982,0.02659419,95.94812856],[4.53366928,0.02659247,95.94747714],[4.53366874,0.02659076,95.94683016],[4.53366819,0.02658904,95.94618761],[4.53366765,0.02658732,95.94554949],[4.53366711,0.0265856,95.94491578],[4.53366657,0.02658388,95.94428644],[4.53366602,0.02658216,95.94366127],[4.53366548,0.02658045,95.94304007],[4.53366494,0.02657873,95.94242259],[4.5336644,0.02657701,95.94180869],[4.53366386,0.02657529,95.94119828],[4.53366331,0.02657357,95.94059127],[4.53366277,0.02657185,95.93998758],[4.53366223,0.02657013,95.93938711],[4.53366169,0.02656842,95.93878979],[4.53366115,0.0265667,95.93819552],[4.53366061,0.02656498,95.93760423],[4.53366006,0.02656326,95.93701581],[4.53365952,0.02656154,95.9364302],[4.53365898,0.02655982,95.9358473],[4.53365844,0.0265581,95.93526702],[4.5336579,0.02655638,95.93468928],[4.53365735,0.02655467,95.93411401],[4.53365681,0.02655295,95.9335411],[4.53365627,0.02655123,95.93297047],[4.53365573,0.02654951,95.93240204],[4.53365518,0.02654779,95.93183573],[4.53365464,0.02654607,95.93127145],[4.5336541,0.02654436,95.93070911],[4.53365356,0.02654264,95.93014863],[4.53365301,0.02654092,95.92958993],[4.53365247,0.0265392,95.92903291],[4.53365193,0.02653748,95.9284775],[4.53365138,0.02653577,95.92792361],[4.53365084,0.02653405,95.92737116],[4.53365029,0.02653233,95.92682006],[4.53364975,0.02653061,95.92627024],[4.53364921,0.02652889,95.92572162],[4.53364866,0.02652718,95.92517414],[4.53364812,0.02652546,95.92462772],[4.53364757,0.02652374,95.92408229],[4.53364703,0.02652202,95.92353778],[4.53364648,0.02652031,95.92299413],[4.53364593,0.02651859,95.92245127],[4.53364539,0.02651687,95.92190911],[4.53364484,0.02651515,95.9213676],[4.53364429,0.02651344,95.92082666],[4.53364375,0.02651172,95.92028623],[4.5336432,0.02651,95.91974623],[4.53364265,0.02650829,95.91920659],[4.53364211,0.02650657,95.91866728],[4.53364156,0.02650485,95.91812842],[4.53364101,0.02650314,95.91759016],[4.53364046,0.02650142,95.91705264],[4.53363991,0.0264997,95.916516],[4.53363936,0.02649799,95.91598041],[4.53363882,0.02649627,95.915446],[4.53363827,0.02649455,95.91491292],[4.53363772,0.02649284,95.91438132],[4.53363717,0.02649112,95.9138513],[4.53363663,0.0264894,95.91332281],[4.53363608,0.02648769,95.91279578],[4.53363553,0.02648597,95.91227012],[4.53363499,0.02648425,95.91174575],[4.53363444,0.02648253,95.91122258],[4.53363389,0.02648082,95.91070053],[4.53363335,0.0264791,95.91017952],[4.5336328,0.02647738,95.90965946],[4.53363226,0.02647566,95.90914028],[4.53363171,0.02647395,95.90862189],[4.53363117,0.02647223,95.9081042],[4.53363062,0.02647051,95.90758714],[4.53363008,0.02646879,95.90707062],[4.53362953,0.02646708,95.90655457],[4.53362899,0.02646536,95.90603889],[4.53362845,0.02646364,95.90552351],[4.5336279,0.02646192,95.90500834],[4.53362736,0.0264602,95.90449331],[4.53362682,0.02645849,95.90397832],[4.53362627,0.02645677,95.90346331],[4.53362573,0.02645505,95.90294818],[4.53362519,0.02645333,95.90243283],[4.53362464,0.02645161,95.90191702],[4.5336241,0.02644989,95.90140051],[4.53362356,0.02644818,95.90088302],[4.53362301,0.02644646,95.9003643],[4.53362247,0.02644474,95.8998442],[4.53362193,0.02644302,95.89932268],[4.53362138,0.0264413,95.89879968],[4.53362084,0.02643959,95.89827518],[4.5336203,0.02643787,95.89774912],[4.53361975,0.02643615,95.89722146],[4.53361921,0.02643443,95.89669217],[4.53361866,0.02643271,95.89616119],[4.53361812,0.026431,95.8956285],[4.53361757,0.02642928,95.89509403],[4.53361703,0.02642756,95.89455776],[4.53361648,0.02642584,95.89401964],[4.53361594,0.02642413,95.89347963],[4.53361539,0.02642241,95.89293768],[4.53361485,0.02642069,95.89239375],[4.5336143,0.02641897,95.8918478],[4.53361376,0.02641726,95.89129978],[4.53361321,0.02641554,95.89074966],[4.53361266,0.02641382,95.89019739],[4.53361212,0.0264121,95.88964292],[4.53361157,0.02641039,95.88908622],[4.53361103,0.02640867,95.88852724],[4.53361048,0.02640695,95.88796594],[4.53360993,0.02640523,95.88740227],[4.53360939,0.02640352,95.88683619],[4.53360884,0.0264018,95.88626766],[4.53360829,0.02640008,95.88569663],[4.53360775,0.02639836,95.88512306],[4.5336072,0.02639665,95.88454691],[4.53360665,0.02639493,95.88396814],[4.53360611,0.02639321,95.88338669],[4.53360556,0.0263915,95.88280253],[4.53360501,0.02638978,95.8822156],[4.53360447,0.02638806,95.88162576],[4.53360392,0.02638635,95.88103292],[4.53360337,0.02638463,95.88043697],[4.53360282,0.02638291,95.8798378],[4.53360228,0.02638119,95.87923531],[4.53360173,0.02637948,95.87862943],[4.53360118,0.02637776,95.87802025],[4.53360063,0.02637604,95.87740789],[4.53360008,0.02637433,95.87679248],[4.53359954,0.02637261,95.87617415],[4.53359899,0.02637089,95.87555302],[4.53359844,0.02636918,95.87492922],[4.53359789,0.02636746,95.87430286],[4.53359734,0.02636575,95.87367409],[4.53359679,0.02636403,95.87304301],[4.53359624,0.02636231,95.87240975],[4.53359569,0.0263606,95.87177444],[4.53359515,0.02635888,95.8711372],[4.5335946,0.02635716,95.87049815],[4.53359405,0.02635545,95.86985742],[4.5335935,0.02635373,95.86921513],[4.53359295,0.02635201,95.8685714],[4.53359241,0.02635029,95.86792635],[4.53359186,0.02634858,95.86728011],[4.53359131,0.02634686,95.8666328],[4.53359077,0.02634514,95.86598455],[4.53359022,0.02634342,95.86533546],[4.53358968,0.02634171,95.86468568],[4.53358913,0.02633999,95.86403532],[4.53358859,0.02633827,95.86338451],[4.53358805,0.02633655,95.86273333],[4.53358751,0.02633483,95.86208151],[4.53358696,0.02633311,95.86142873],[4.53358642,0.0263314,95.86077466],[4.53358588,0.02632968,95.86011899],[4.53358534,0.02632796,95.85946139],[4.5335848,0.02632624,95.85880154],[4.53358426,0.02632452,95.85813911],[4.53358372,0.0263228,95.85747378],[4.53358317,0.02632108,95.85680524],[4.53358263,0.02631936,95.85613315],[4.53358209,0.02631765,95.85545713],[4.53358154,0.02631593,95.85477657],[4.533581,0.02631421,95.85409123],[4.53358045,0.02631249,95.85340134],[4.53357991,0.02631077,95.85270714],[4.53357936,0.02630906,95.85200886],[4.53357881,0.02630734,95.85130677],[4.53357827,0.02630562,95.85060108],[4.53357772,0.02630391,95.84989205],[4.53357717,0.02630219,95.84917992],[4.53357662,0.02630047,95.84846493],[4.53357607,0.02629876,95.84774732],[4.53357552,0.02629704,95.84702733],[4.53357497,0.02629532,95.84630519],[4.53357442,0.02629361,95.84558116],[4.53357387,0.02629189,95.84485546],[4.53357332,0.02629018,95.84412834],[4.53357277,0.02628846,95.84339988],[4.53357223,0.02628674,95.84267006],[4.53357168,0.02628503,95.84193881],[4.53357113,0.02628331,95.8412061],[4.53357058,0.02628159,95.84047186],[4.53357003,0.02627988,95.83973606],[4.53356948,0.02627816,95.83899865],[4.53356894,0.02627644,95.83825957],[4.53356839,0.02627473,95.83751878],[4.53356784,0.02627301,95.83677624],[4.53356729,0.02627129,95.83603188],[4.53356674,0.02626958,95.83528567],[4.5335662,0.02626786,95.83453756],[4.53356565,0.02626614,95.83378756],[4.5335651,0.02626442,95.83303593],[4.53356455,0.02626271,95.83228299],[4.533564,0.02626099,95.83152906],[4.53356346,0.02625927,95.83077446],[4.53356291,0.02625756,95.83001945],[4.53356236,0.02625584,95.82926398],[4.53356182,0.02625412,95.82850797],[4.53356127,0.0262524,95.82775131],[4.53356073,0.02625069,95.8269939],[4.53356018,0.02624897,95.82623566],[4.53355964,0.02624725,95.82547647],[4.53355909,0.02624553,95.82471625],[4.53355855,0.02624381,95.82395488],[4.533558,0.0262421,95.82319228],[4.53355746,0.02624038,95.82242835],[4.53355691,0.02623866,95.82166298],[4.53355637,0.02623694,95.82089608],[4.53355583,0.02623522,95.82012755],[4.53355528,0.02623351,95.81935729],[4.53355474,0.02623179,95.81858521],[4.53355419,0.02623007,95.81781119],[4.53355365,0.02622835,95.81703515],[4.5335531,0.02622663,95.81625699],[4.53355256,0.02622492,95.8154766],[4.53355201,0.0262232,95.81469389],[4.53355147,0.02622148,95.81390875],[4.53355092,0.02621976,95.81312116],[4.53355037,0.02621805,95.8123313],[4.53354983,0.02621633,95.81153928],[4.53354928,0.02621461,95.81074514],[4.53354873,0.0262129,95.80994896],[4.53354819,0.02621118,95.80915078],[4.53354764,0.02620946,95.80835067],[4.53354709,0.02620774,95.80754868],[4.53354654,0.02620603,95.80674488],[4.533546,0.02620431,95.80593932],[4.53354545,0.02620259,95.80513207],[4.5335449,0.02620088,95.80432318],[4.53354435,0.02619916,95.80351271],[4.5335438,0.02619744,95.80270072],[4.53354325,0.02619573,95.80188727],[4.53354271,0.02619401,95.80107243],[4.53354216,0.02619229,95.80025623],[4.53354161,0.02619058,95.79943876],[4.53354106,0.02618886,95.79862006],[4.53354051,0.02618714,95.79780019],[4.53353996,0.02618543,95.79697921],[4.53353942,0.02618371,95.79615719],[4.53353887,0.02618199,95.79533418],[4.53353832,0.02618027,95.79451024],[4.53353777,0.02617856,95.79368543],[4.53353722,0.02617684,95.7928598],[4.53353668,0.02617512,95.79203343],[4.53353613,0.02617341,95.79120636],[4.53353558,0.02617169,95.79037866],[4.53353503,0.02616997,95.78955039],[4.53353449,0.02616826,95.78872161],[4.53353394,0.02616654,95.78789234],[4.53353339,0.02616482,95.78706252],[4.53353285,0.0261631,95.78623203],[4.5335323,0.02616139,95.78540079],[4.53353175,0.02615967,95.78456867],[4.53353121,0.02615795,95.78373559],[4.53353066,0.02615623,95.78290155],[4.53353011,0.02615452,95.78206657],[4.53352957,0.0261528,95.78123065],[4.53352902,0.02615108,95.78039382],[4.53352847,0.02614936,95.77955609],[4.53352793,0.02614765,95.77871746],[4.53352738,0.02614593,95.77787797],[4.53352683,0.02614421,95.77703762],[4.53352629,0.02614249,95.77619643],[4.53352574,0.02614078,95.77535442],[4.5335252,0.02613906,95.77451159],[4.53352465,0.02613734,95.77366797],[4.5335241,0.02613563,95.77282357],[4.53352356,0.02613391,95.7719784],[4.53352301,0.02613219,95.77113249],[4.53352246,0.02613047,95.77028586],[4.53352192,0.02612875,95.76943852],[4.53352137,0.02612704,95.7685905],[4.53352083,0.02612532,95.76774183],[4.53352028,0.0261236,95.76689251],[4.53351973,0.02612188,95.76604258],[4.53351919,0.02612017,95.76519205],[4.53351864,0.02611845,95.76434095],[4.5335181,0.02611673,95.76348929],[4.53351755,0.02611501,95.7626371],[4.53351701,0.0261133,95.76178437],[4.53351646,0.02611158,95.76093107],[4.53351591,0.02610986,95.76007716],[4.53351537,0.02610814,95.7592226],[4.53351482,0.02610643,95.75836736],[4.53351428,0.02610471,95.7575114],[4.53351373,0.02610299,95.75665469],[4.53351319,0.02610127,95.7557972],[4.53351264,0.02609955,95.75493888],[4.53351209,0.02609784,95.7540797],[4.53351155,0.02609612,95.75321963],[4.533511,0.0260944,95.75235863],[4.53351045,0.02609268,95.75149665],[4.53350991,0.02609097,95.75063368],[4.53350936,0.02608925,95.74976966],[4.53350882,0.02608753,95.74890457],[4.53350827,0.02608582,95.74803836],[4.53350772,0.0260841,95.747171],[4.53350717,0.02608238,95.74630245],[4.53350663,0.02608066,95.74543268],[4.53350608,0.02607895,95.74456165],[4.53350553,0.02607723,95.74368934],[4.53350498,0.02607551,95.74281577],[4.53350443,0.0260738,95.74194094],[4.53350388,0.02607208,95.74106485],[4.53350333,0.02607036,95.74018753],[4.53350278,0.02606865,95.73930897],[4.53350223,0.02606693,95.73842919],[4.53350168,0.02606521,95.73754819],[4.53350113,0.0260635,95.73666599],[4.53350058,0.02606178,95.73578259],[4.53350003,0.02606007,95.73489799],[4.53349948,0.02605835,95.73401222],[4.53349893,0.02605663,95.73312527],[4.53349838,0.02605492,95.73223715],[4.53349783,0.0260532,95.73134788],[4.53349727,0.02605149,95.73045746],[4.53349672,0.02604977,95.7295659],[4.53349617,0.02604806,95.72867321],[4.53349561,0.02604634,95.72777939],[4.53349506,0.02604463,95.72688448],[4.53349451,0.02604291,95.72598858],[4.53349395,0.0260412,95.72509181],[4.5334934,0.02603948,95.72419429],[4.53349284,0.02603777,95.72329615],[4.53349229,0.02603605,95.72239751],[4.53349174,0.02603434,95.7214985],[4.53349118,0.02603262,95.72059924],[4.53349063,0.02603091,95.71969985],[4.53349007,0.02602919,95.71880046],[4.53348952,0.02602748,95.71790118],[4.53348896,0.02602576,95.71700207],[4.53348841,0.02602405,95.71610318],[4.53348786,0.02602233,95.71520455],[4.5334873,0.02602062,95.71430622],[4.53348675,0.0260189,95.71340825],[4.53348619,0.02601719,95.71251069],[4.53348564,0.02601547,95.71161357],[4.53348509,0.02601375,95.71071694],[4.53348453,0.02601204,95.70982086],[4.53348398,0.02601032,95.70892536],[4.53348343,0.02600861,95.70803049],[4.53348288,0.02600689,95.70713631],[4.53348232,0.02600518,95.70624285],[4.53348177,0.02600346,95.70535017],[4.53348122,0.02600175,95.70445831],[4.53348067,0.02600003,95.70356732],[4.53348012,0.02599831,95.70267725],[4.53347956,0.0259966,95.70178814],[4.53347901,0.02599488,95.70090004],[4.53347846,0.02599317,95.70001299],[4.53347791,0.02599145,95.69912706],[4.53347736,0.02598973,95.69824227],[4.53347681,0.02598802,95.69735869],[4.53347626,0.0259863,95.69647636],[4.53347571,0.02598458,95.69559532],[4.53347517,0.02598287,95.69471562],[4.53347462,0.02598115,95.6938373],[4.53347407,0.02597943,95.6929604],[4.53347352,0.02597772,95.69208496],[4.53347297,0.025976,95.69121102],[4.53347243,0.02597428,95.69033863],[4.53347188,0.02597256,95.68946783],[4.53347134,0.02597085,95.68859866],[4.53347079,0.02596913,95.68773115],[4.53347024,0.02596741,95.68686536],[4.5334697,0.02596569,95.68600132],[4.53346916,0.02596397,95.68513908],[4.53346861,0.02596226,95.68427868],[4.53346859,0.02596217,95.68423833]],"type":"LineString"},"type":"feature","properties":{"successorId":-6,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-6,"type":"border","predecessorId":-6}},{"geometry":{"coordinates":[[4.53371079,0.02671919,95.86010574],[4.53371024,0.02671748,95.85901064],[4.5337097,0.02671576,95.85792417],[4.53370915,0.02671404,95.8568462],[4.53370861,0.02671232,95.85577662],[4.53370806,0.02671061,95.85471528],[4.53370752,0.02670889,95.85366208],[4.53370698,0.02670717,95.85261688],[4.53370643,0.02670545,95.85157955],[4.53370589,0.02670373,95.85054998],[4.53370534,0.02670202,95.84952803],[4.5337048,0.0267003,95.84851358],[4.53370426,0.02669858,95.8475065],[4.53370371,0.02669686,95.84650667],[4.53370317,0.02669514,95.84551395],[4.53370262,0.02669343,95.84452822],[4.53370208,0.02669171,95.84354934],[4.53370154,0.02668999,95.8425772],[4.53370099,0.02668827,95.84161166],[4.53370045,0.02668656,95.84065259],[4.5336999,0.02668484,95.83969987],[4.53369936,0.02668312,95.83875336],[4.53369881,0.0266814,95.83781287],[4.53369827,0.02667969,95.83687742],[4.53369772,0.02667797,95.83594764],[4.53369717,0.02667625,95.8350249],[4.53369663,0.02667454,95.83411056],[4.53369608,0.02667282,95.83320598],[4.53369554,0.0266711,95.83231141],[4.533695,0.02666938,95.83142491],[4.53369445,0.02666766,95.8305462],[4.53369391,0.02666594,95.82967511],[4.53369337,0.02666423,95.8288115],[4.53369283,0.02666251,95.8279552],[4.53369229,0.02666079,95.82710607],[4.53369174,0.02665907,95.82626393],[4.5336912,0.02665735,95.82542865],[4.53369066,0.02665563,95.82460005],[4.53369012,0.02665391,95.82377799],[4.53368958,0.02665219,95.8229623],[4.53368904,0.02665048,95.82215283],[4.5336885,0.02664876,95.82134942],[4.53368796,0.02664704,95.8205519],[4.53368742,0.02664532,95.81976008],[4.53368688,0.0266436,95.81897368],[4.53368634,0.02664188,95.81819243],[4.5336858,0.02664016,95.81741607],[4.53368526,0.02663844,95.81664433],[4.53368472,0.02663672,95.81587695],[4.53368418,0.02663501,95.81511364],[4.53368363,0.02663329,95.81435416],[4.53368309,0.02663157,95.81359857],[4.53368255,0.02662985,95.81284755],[4.533682,0.02662813,95.81210114],[4.53368146,0.02662641,95.81135933],[4.53368092,0.0266247,95.8106221],[4.53368038,0.02662298,95.80988946],[4.53367983,0.02662126,95.80916139],[4.53367929,0.02661954,95.80843789],[4.53367874,0.02661782,95.80771895],[4.5336782,0.02661611,95.80700456],[4.53367766,0.02661439,95.80629472],[4.53367711,0.02661267,95.80558942],[4.53367657,0.02661095,95.80488865],[4.53367603,0.02660923,95.80419241],[4.53367548,0.02660752,95.80350068],[4.53367494,0.0266058,95.80281346],[4.5336744,0.02660408,95.80213074],[4.53367385,0.02660236,95.80145252],[4.53367331,0.02660064,95.80077878],[4.53367276,0.02659893,95.80010953],[4.53367222,0.02659721,95.79944474],[4.53367168,0.02659549,95.79878442],[4.53367113,0.02659377,95.79812856],[4.53367059,0.02659205,95.79747714],[4.53367005,0.02659033,95.79683016],[4.53366951,0.02658862,95.79618761],[4.53366896,0.0265869,95.79554949],[4.53366842,0.02658518,95.79491578],[4.53366788,0.02658346,95.79428644],[4.53366734,0.02658174,95.79366127],[4.5336668,0.02658002,95.79304007],[4.53366625,0.02657831,95.79242259],[4.53366571,0.02657659,95.79180869],[4.53366517,0.02657487,95.79119828],[4.53366463,0.02657315,95.79059127],[4.53366409,0.02657143,95.78998758],[4.53366354,0.02656971,95.78938711],[4.533663,0.02656799,95.78878979],[4.53366246,0.02656628,95.78819552],[4.53366192,0.02656456,95.78760423],[4.53366138,0.02656284,95.78701581],[4.53366084,0.02656112,95.7864302],[4.53366029,0.0265594,95.7858473],[4.53365975,0.02655768,95.78526702],[4.53365921,0.02655596,95.78468928],[4.53365867,0.02655425,95.78411401],[4.53365813,0.02655253,95.7835411],[4.53365758,0.02655081,95.78297047],[4.53365704,0.02654909,95.78240204],[4.5336565,0.02654737,95.78183573],[4.53365595,0.02654565,95.78127145],[4.53365541,0.02654393,95.78070911],[4.53365487,0.02654222,95.78014863],[4.53365433,0.0265405,95.77958993],[4.53365378,0.02653878,95.77903291],[4.53365324,0.02653706,95.7784775],[4.5336527,0.02653534,95.77792361],[4.53365215,0.02653363,95.77737116],[4.53365161,0.02653191,95.77682006],[4.53365106,0.02653019,95.77627024],[4.53365052,0.02652847,95.77572162],[4.53364997,0.02652676,95.77517414],[4.53364943,0.02652504,95.77462772],[4.53364888,0.02652332,95.77408229],[4.53364834,0.0265216,95.77353778],[4.53364779,0.02651989,95.77299413],[4.53364725,0.02651817,95.77245127],[4.5336467,0.02651645,95.77190911],[4.53364615,0.02651473,95.7713676],[4.53364561,0.02651302,95.77082666],[4.53364506,0.0265113,95.77028623],[4.53364451,0.02650958,95.76974623],[4.53364396,0.02650787,95.76920659],[4.53364342,0.02650615,95.76866728],[4.53364287,0.02650443,95.76812842],[4.53364232,0.02650272,95.76759016],[4.53364177,0.026501,95.76705264],[4.53364122,0.02649928,95.766516],[4.53364068,0.02649757,95.76598041],[4.53364013,0.02649585,95.765446],[4.53363958,0.02649413,95.76491292],[4.53363903,0.02649242,95.76438132],[4.53363848,0.0264907,95.7638513],[4.53363794,0.02648898,95.76332281],[4.53363739,0.02648726,95.76279578],[4.53363684,0.02648555,95.76227012],[4.5336363,0.02648383,95.76174575],[4.53363575,0.02648211,95.76122258],[4.53363521,0.0264804,95.76070053],[4.53363466,0.02647868,95.76017952],[4.53363411,0.02647696,95.75965946],[4.53363357,0.02647524,95.75914028],[4.53363302,0.02647353,95.75862189],[4.53363248,0.02647181,95.7581042],[4.53363193,0.02647009,95.75758714],[4.53363139,0.02646837,95.75707062],[4.53363085,0.02646665,95.75655457],[4.5336303,0.02646494,95.75603889],[4.53362976,0.02646322,95.75552351],[4.53362921,0.0264615,95.75500834],[4.53362867,0.02645978,95.75449331],[4.53362813,0.02645806,95.75397832],[4.53362758,0.02645635,95.75346331],[4.53362704,0.02645463,95.75294818],[4.5336265,0.02645291,95.75243283],[4.53362595,0.02645119,95.75191702],[4.53362541,0.02644947,95.75140051],[4.53362487,0.02644775,95.75088302],[4.53362432,0.02644604,95.7503643],[4.53362378,0.02644432,95.7498442],[4.53362324,0.0264426,95.74932268],[4.53362269,0.02644088,95.74879968],[4.53362215,0.02643916,95.74827518],[4.5336216,0.02643745,95.74774912],[4.53362106,0.02643573,95.74722146],[4.53362052,0.02643401,95.74669217],[4.53361997,0.02643229,95.74616119],[4.53361943,0.02643057,95.7456285],[4.53361888,0.02642886,95.74509403],[4.53361834,0.02642714,95.74455776],[4.53361779,0.02642542,95.74401964],[4.53361725,0.0264237,95.74347963],[4.5336167,0.02642199,95.74293768],[4.53361616,0.02642027,95.74239375],[4.53361561,0.02641855,95.7418478],[4.53361506,0.02641683,95.74129978],[4.53361452,0.02641512,95.74074966],[4.53361397,0.0264134,95.74019739],[4.53361343,0.02641168,95.73964292],[4.53361288,0.02640996,95.73908622],[4.53361233,0.02640825,95.73852724],[4.53361179,0.02640653,95.73796594],[4.53361124,0.02640481,95.73740227],[4.5336107,0.0264031,95.73683619],[4.53361015,0.02640138,95.73626766],[4.5336096,0.02639966,95.73569663],[4.53360906,0.02639794,95.73512306],[4.53360851,0.02639623,95.73454691],[4.53360796,0.02639451,95.73396814],[4.53360742,0.02639279,95.73338669],[4.53360687,0.02639108,95.73280253],[4.53360632,0.02638936,95.7322156],[4.53360577,0.02638764,95.73162576],[4.53360523,0.02638592,95.73103292],[4.53360468,0.02638421,95.73043697],[4.53360413,0.02638249,95.7298378],[4.53360359,0.02638077,95.72923531],[4.53360304,0.02637906,95.72862943],[4.53360249,0.02637734,95.72802025],[4.53360194,0.02637562,95.72740789],[4.53360139,0.02637391,95.72679248],[4.53360084,0.02637219,95.72617415],[4.53360029,0.02637047,95.72555302],[4.53359975,0.02636876,95.72492922],[4.5335992,0.02636704,95.72430286],[4.53359865,0.02636532,95.72367409],[4.5335981,0.02636361,95.72304301],[4.53359755,0.02636189,95.72240975],[4.533597,0.02636017,95.72177444],[4.53359645,0.02635846,95.7211372],[4.53359591,0.02635674,95.72049815],[4.53359536,0.02635502,95.71985742],[4.53359481,0.02635331,95.71921513],[4.53359426,0.02635159,95.7185714],[4.53359371,0.02634987,95.71792635],[4.53359317,0.02634816,95.71728011],[4.53359262,0.02634644,95.7166328],[4.53359208,0.02634472,95.71598455],[4.53359153,0.026343,95.71533546],[4.53359099,0.02634129,95.71468568],[4.53359044,0.02633957,95.71403532],[4.5335899,0.02633785,95.71338451],[4.53358936,0.02633613,95.71273333],[4.53358881,0.02633441,95.71208151],[4.53358827,0.02633269,95.71142873],[4.53358773,0.02633097,95.71077466],[4.53358719,0.02632926,95.71011899],[4.53358665,0.02632754,95.70946139],[4.53358611,0.02632582,95.70880154],[4.53358556,0.0263241,95.70813911],[4.53358502,0.02632238,95.70747378],[4.53358448,0.02632066,95.70680524],[4.53358394,0.02631894,95.70613315],[4.5335834,0.02631722,95.70545713],[4.53358285,0.02631551,95.70477657],[4.53358231,0.02631379,95.70409123],[4.53358176,0.02631207,95.70340134],[4.53358122,0.02631035,95.70270714],[4.53358067,0.02630864,95.70200886],[4.53358012,0.02630692,95.70130677],[4.53357957,0.0263052,95.70060108],[4.53357902,0.02630349,95.69989205],[4.53357848,0.02630177,95.69917992],[4.53357793,0.02630005,95.69846493],[4.53357738,0.02629834,95.69774732],[4.53357683,0.02629662,95.69702733],[4.53357628,0.0262949,95.69630519],[4.53357573,0.02629319,95.69558116],[4.53357518,0.02629147,95.69485546],[4.53357463,0.02628975,95.69412834],[4.53357408,0.02628804,95.69339988],[4.53357353,0.02628632,95.69267006],[4.53357298,0.0262846,95.69193881],[4.53357244,0.02628289,95.6912061],[4.53357189,0.02628117,95.69047186],[4.53357134,0.02627945,95.68973606],[4.53357079,0.02627774,95.68899865],[4.53357024,0.02627602,95.68825957],[4.53356969,0.0262743,95.68751878],[4.53356915,0.02627259,95.68677624],[4.5335686,0.02627087,95.68603188],[4.53356805,0.02626915,95.68528567],[4.5335675,0.02626744,95.68453756],[4.53356695,0.02626572,95.68378756],[4.53356641,0.026264,95.68303593],[4.53356586,0.02626229,95.68228299],[4.53356531,0.02626057,95.68152906],[4.53356476,0.02625885,95.68077446],[4.53356422,0.02625713,95.68001945],[4.53356367,0.02625542,95.67926398],[4.53356312,0.0262537,95.67850797],[4.53356258,0.02625198,95.67775131],[4.53356203,0.02625026,95.6769939],[4.53356149,0.02624855,95.67623566],[4.53356094,0.02624683,95.67547647],[4.5335604,0.02624511,95.67471625],[4.53355985,0.02624339,95.67395488],[4.53355931,0.02624168,95.67319228],[4.53355877,0.02623996,95.67242835],[4.53355822,0.02623824,95.67166298],[4.53355768,0.02623652,95.67089608],[4.53355713,0.0262348,95.67012755],[4.53355659,0.02623308,95.66935729],[4.53355604,0.02623137,95.66858521],[4.5335555,0.02622965,95.66781119],[4.53355496,0.02622793,95.66703515],[4.53355441,0.02622621,95.66625699],[4.53355387,0.0262245,95.6654766],[4.53355332,0.02622278,95.66469389],[4.53355277,0.02622106,95.66390875],[4.53355223,0.02621934,95.66312116],[4.53355168,0.02621762,95.6623313],[4.53355114,0.02621591,95.66153928],[4.53355059,0.02621419,95.66074514],[4.53355004,0.02621247,95.65994896],[4.53354949,0.02621076,95.65915078],[4.53354895,0.02620904,95.65835067],[4.5335484,0.02620732,95.65754868],[4.53354785,0.0262056,95.65674488],[4.5335473,0.02620389,95.65593932],[4.53354676,0.02620217,95.65513207],[4.53354621,0.02620045,95.65432318],[4.53354566,0.02619874,95.65351271],[4.53354511,0.02619702,95.65270072],[4.53354456,0.0261953,95.65188727],[4.53354401,0.02619359,95.65107243],[4.53354347,0.02619187,95.65025623],[4.53354292,0.02619015,95.64943876],[4.53354237,0.02618844,95.64862006],[4.53354182,0.02618672,95.64780019],[4.53354127,0.026185,95.64697921],[4.53354072,0.02618329,95.64615719],[4.53354018,0.02618157,95.64533418],[4.53353963,0.02617985,95.64451024],[4.53353908,0.02617814,95.64368543],[4.53353853,0.02617642,95.6428598],[4.53353798,0.0261747,95.64203343],[4.53353744,0.02617298,95.64120636],[4.53353689,0.02617127,95.64037866],[4.53353634,0.02616955,95.63955039],[4.53353579,0.02616783,95.63872161],[4.53353525,0.02616612,95.63789234],[4.5335347,0.0261644,95.63706252],[4.53353415,0.02616268,95.63623203],[4.53353361,0.02616096,95.63540079],[4.53353306,0.02615925,95.63456867],[4.53353251,0.02615753,95.63373559],[4.53353197,0.02615581,95.63290155],[4.53353142,0.02615409,95.63206657],[4.53353088,0.02615238,95.63123065],[4.53353033,0.02615066,95.63039382],[4.53352978,0.02614894,95.62955609],[4.53352924,0.02614722,95.62871746],[4.53352869,0.02614551,95.62787797],[4.53352814,0.02614379,95.62703762],[4.5335276,0.02614207,95.62619643],[4.53352705,0.02614035,95.62535442],[4.5335265,0.02613864,95.62451159],[4.53352596,0.02613692,95.62366797],[4.53352541,0.0261352,95.62282357],[4.53352487,0.02613348,95.6219784],[4.53352432,0.02613177,95.62113249],[4.53352377,0.02613005,95.62028586],[4.53352323,0.02612833,95.61943852],[4.53352268,0.02612661,95.6185905],[4.53352214,0.0261249,95.61774183],[4.53352159,0.02612318,95.61689251],[4.53352104,0.02612146,95.61604258],[4.5335205,0.02611974,95.61519205],[4.53351995,0.02611803,95.61434095],[4.53351941,0.02611631,95.61348929],[4.53351886,0.02611459,95.6126371],[4.53351831,0.02611287,95.61178437],[4.53351777,0.02611116,95.61093107],[4.53351722,0.02610944,95.61007716],[4.53351668,0.02610772,95.6092226],[4.53351613,0.026106,95.60836736],[4.53351559,0.02610428,95.6075114],[4.53351504,0.02610257,95.60665469],[4.53351449,0.02610085,95.6057972],[4.53351395,0.02609913,95.60493888],[4.5335134,0.02609741,95.6040797],[4.53351286,0.0260957,95.60321963],[4.53351231,0.02609398,95.60235863],[4.53351176,0.02609226,95.60149665],[4.53351122,0.02609054,95.60063368],[4.53351067,0.02608883,95.59976966],[4.53351012,0.02608711,95.59890457],[4.53350958,0.02608539,95.59803836],[4.53350903,0.02608367,95.597171],[4.53350848,0.02608196,95.59630245],[4.53350794,0.02608024,95.59543268],[4.53350739,0.02607852,95.59456165],[4.53350684,0.02607681,95.59368934],[4.53350629,0.02607509,95.59281577],[4.53350574,0.02607337,95.59194094],[4.53350519,0.02607166,95.59106485],[4.53350464,0.02606994,95.59018753],[4.53350409,0.02606822,95.58930897],[4.53350354,0.02606651,95.58842919],[4.53350299,0.02606479,95.58754819],[4.53350244,0.02606307,95.58666599],[4.53350189,0.02606136,95.58578259],[4.53350134,0.02605964,95.58489799],[4.53350079,0.02605793,95.58401222],[4.53350024,0.02605621,95.58312527],[4.53349969,0.02605449,95.58223715],[4.53349914,0.02605278,95.58134788],[4.53349858,0.02605106,95.58045746],[4.53349803,0.02604935,95.5795659],[4.53349748,0.02604763,95.57867321],[4.53349692,0.02604592,95.57777939],[4.53349637,0.0260442,95.57688448],[4.53349582,0.02604249,95.57598858],[4.53349526,0.02604077,95.57509181],[4.53349471,0.02603906,95.57419429],[4.53349415,0.02603734,95.57329615],[4.5334936,0.02603563,95.57239751],[4.53349305,0.02603391,95.5714985],[4.53349249,0.0260322,95.57059924],[4.53349194,0.02603048,95.56969985],[4.53349138,0.02602877,95.56880046],[4.53349083,0.02602705,95.56790118],[4.53349027,0.02602534,95.56700207],[4.53348972,0.02602362,95.56610318],[4.53348917,0.02602191,95.56520455],[4.53348861,0.02602019,95.56430622],[4.53348806,0.02601848,95.56340825],[4.5334875,0.02601676,95.56251069],[4.53348695,0.02601505,95.56161357],[4.5334864,0.02601333,95.56071694],[4.53348584,0.02601162,95.55982086],[4.53348529,0.0260099,95.55892536],[4.53348474,0.02600818,95.55803049],[4.53348419,0.02600647,95.55713631],[4.53348363,0.02600475,95.55624285],[4.53348308,0.02600304,95.55535017],[4.53348253,0.02600132,95.55445831],[4.53348198,0.02599961,95.55356732],[4.53348143,0.02599789,95.55267725],[4.53348088,0.02599617,95.55178814],[4.53348032,0.02599446,95.55090004],[4.53347977,0.02599274,95.55001299],[4.53347922,0.02599103,95.54912706],[4.53347867,0.02598931,95.54824227],[4.53347812,0.02598759,95.54735869],[4.53347757,0.02598588,95.54647636],[4.53347703,0.02598416,95.54559532],[4.53347648,0.02598244,95.54471562],[4.53347593,0.02598073,95.5438373],[4.53347538,0.02597901,95.5429604],[4.53347483,0.02597729,95.54208496],[4.53347429,0.02597557,95.54121102],[4.53347374,0.02597386,95.54033863],[4.53347319,0.02597214,95.53946783],[4.53347265,0.02597042,95.53859866],[4.5334721,0.0259687,95.53773115],[4.53347156,0.02596699,95.53686536],[4.53347101,0.02596527,95.53600132],[4.53347047,0.02596355,95.53513908],[4.53346992,0.02596183,95.53427868],[4.5334699,0.02596175,95.53423833]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-5,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-5,"type":"border","predecessorId":-5}},{"geometry":{"coordinates":[[4.5337137,0.02671826,95.86959087],[4.53371314,0.02671655,95.86847552],[4.53371259,0.02671483,95.86736851],[4.53371204,0.02671312,95.86626972],[4.53371148,0.0267114,95.86517901],[4.53371093,0.02670969,95.86409625],[4.53371037,0.02670797,95.8630213],[4.53370982,0.02670626,95.86195402],[4.53370927,0.02670455,95.86089429],[4.53370871,0.02670283,95.85984196],[4.53370816,0.02670112,95.8587969],[4.5337076,0.0266994,95.85775897],[4.53370705,0.02669769,95.85672803],[4.5337065,0.02669597,95.85570394],[4.53370594,0.02669426,95.85468657],[4.53370539,0.02669254,95.85367578],[4.53370484,0.02669083,95.85267143],[4.53370428,0.02668911,95.85167338],[4.53370373,0.0266874,95.85068149],[4.53370317,0.02668568,95.84969563],[4.53370262,0.02668397,95.84871564],[4.53370206,0.02668226,95.8477414],[4.53370151,0.02668054,95.84677276],[4.53370095,0.02667883,95.84581038],[4.5337004,0.02667711,95.84485811],[4.53369984,0.0266754,95.84392061],[4.53369929,0.02667368,95.84300256],[4.53369875,0.02667196,95.84210862],[4.53369822,0.02667024,95.84124222],[4.53369768,0.02666852,95.8404017],[4.53369716,0.0266668,95.83958414],[4.53369664,0.02666507,95.83878662],[4.53369612,0.02666335,95.83800618],[4.5336956,0.02666162,95.83723989],[4.53369509,0.02665989,95.83648481],[4.53369458,0.02665816,95.83573798],[4.53369406,0.02665644,95.83499643],[4.53369355,0.02665471,95.83425722],[4.53369303,0.02665298,95.83351737],[4.53369251,0.02665126,95.83277392],[4.53369199,0.02664953,95.8320239],[4.53369146,0.02664781,95.83126434],[4.53369093,0.02664609,95.83049237],[4.53369039,0.02664437,95.8297076],[4.53368984,0.02664265,95.82891209],[4.5336893,0.02664093,95.82810801],[4.53368874,0.02663922,95.82729754],[4.53368819,0.0266375,95.82648286],[4.53368763,0.02663579,95.82566613],[4.53368708,0.02663408,95.82484955],[4.53368652,0.02663236,95.82403529],[4.53368596,0.02663065,95.82322549],[4.5336854,0.02662894,95.82242127],[4.53368484,0.02662722,95.82162271],[4.53368428,0.02662551,95.82082984],[4.53368373,0.0266238,95.82004272],[4.53368317,0.02662208,95.81926137],[4.53368261,0.02662037,95.81848584],[4.53368205,0.02661866,95.81771616],[4.5336815,0.02661694,95.81695239],[4.53368094,0.02661523,95.81619454],[4.53368038,0.02661351,95.81544267],[4.53367983,0.0266118,95.81469681],[4.53367927,0.02661008,95.813957],[4.53367872,0.02660837,95.81322328],[4.53367817,0.02660666,95.81249568],[4.53367761,0.02660494,95.81177425],[4.53367706,0.02660323,95.81105901],[4.53367651,0.02660151,95.81035001],[4.53367596,0.02659979,95.80964728],[4.53367541,0.02659808,95.80895086],[4.53367486,0.02659636,95.80826078],[4.53367431,0.02659465,95.80757708],[4.53367376,0.02659293,95.80689979],[4.53367321,0.02659121,95.80622895],[4.53367266,0.0265895,95.8055646],[4.53367212,0.02658778,95.80490676],[4.53367157,0.02658606,95.80425546],[4.53367103,0.02658434,95.80361076],[4.53367048,0.02658263,95.80297263],[4.53366994,0.02658091,95.80234093],[4.5336694,0.02657919,95.80171548],[4.53366886,0.02657747,95.80109609],[4.53366832,0.02657575,95.80048258],[4.53366778,0.02657403,95.79987476],[4.53366724,0.02657231,95.79927245],[4.5336667,0.02657059,95.79867547],[4.53366616,0.02656887,95.79808362],[4.53366563,0.02656715,95.79749674],[4.53366509,0.02656543,95.79691462],[4.53366455,0.02656371,95.7963371],[4.53366402,0.02656199,95.79576398],[4.53366348,0.02656027,95.79519509],[4.53366295,0.02655855,95.79463023],[4.53366241,0.02655683,95.79406924],[4.53366188,0.02655511,95.79351191],[4.53366134,0.02655339,95.79295809],[4.53366081,0.02655167,95.79240757],[4.53366028,0.02654994,95.79186018],[4.53365974,0.02654822,95.79131574],[4.53365921,0.0265465,95.79077406],[4.53365868,0.02654478,95.79023498],[4.53365814,0.02654306,95.7896983],[4.53365761,0.02654134,95.78916384],[4.53365708,0.02653962,95.78863143],[4.53365654,0.02653789,95.78810089],[4.53365601,0.02653617,95.78757204],[4.53365548,0.02653445,95.7870447],[4.53365494,0.02653273,95.7865187],[4.53365441,0.02653101,95.78599385],[4.53365387,0.02652929,95.78546998],[4.53365334,0.02652757,95.78494694],[4.5336528,0.02652585,95.78442455],[4.53365227,0.02652413,95.78390267],[4.53365173,0.0265224,95.78338112],[4.5336512,0.02652068,95.78285974],[4.53365066,0.02651896,95.78233837],[4.53365012,0.02651724,95.78181686],[4.53364959,0.02651552,95.78129504],[4.53364905,0.0265138,95.78077275],[4.53364851,0.02651208,95.78024983],[4.53364797,0.02651036,95.77972612],[4.53364743,0.02650865,95.77920147],[4.53364689,0.02650693,95.77867572],[4.53364635,0.02650521,95.77814875],[4.53364581,0.02650349,95.77762058],[4.53364526,0.02650177,95.77709127],[4.53364472,0.02650005,95.77656088],[4.53364418,0.02649833,95.77602949],[4.53364363,0.02649662,95.77549714],[4.53364309,0.0264949,95.77496391],[4.53364254,0.02649318,95.77442984],[4.53364199,0.02649146,95.773895],[4.53364145,0.02648975,95.77335945],[4.5336409,0.02648803,95.77282325],[4.53364035,0.02648631,95.77228646],[4.5336398,0.0264846,95.77174914],[4.53363926,0.02648288,95.77121134],[4.53363871,0.02648116,95.77067312],[4.53363816,0.02647945,95.77013454],[4.53363761,0.02647773,95.76959565],[4.53363706,0.02647601,95.76905652],[4.53363651,0.0264743,95.7685172],[4.53363596,0.02647258,95.76797774],[4.53363542,0.02647086,95.76743821],[4.53363487,0.02646915,95.76689864],[4.53363432,0.02646743,95.76635911],[4.53363377,0.02646571,95.76581966],[4.53363322,0.026464,95.76528035],[4.53363267,0.02646228,95.76474123],[4.53363212,0.02646057,95.76420235],[4.53363157,0.02645885,95.76366376],[4.53363103,0.02645713,95.76312553],[4.53363048,0.02645542,95.76258769],[4.53362993,0.0264537,95.76205031],[4.53362938,0.02645198,95.76151339],[4.53362884,0.02645026,95.76097685],[4.53362829,0.02644855,95.76044056],[4.53362774,0.02644683,95.75990438],[4.5336272,0.02644511,95.7593682],[4.53362665,0.0264434,95.75883186],[4.5336261,0.02644168,95.75829526],[4.53362556,0.02643996,95.75775824],[4.53362501,0.02643824,95.7572207],[4.53362447,0.02643653,95.75668248],[4.53362392,0.02643481,95.75614348],[4.53362338,0.02643309,95.75560355],[4.53362283,0.02643137,95.75506257],[4.53362229,0.02642966,95.7545204],[4.53362174,0.02642794,95.75397693],[4.53362119,0.02642622,95.75343203],[4.53362065,0.0264245,95.75288555],[4.5336201,0.02642279,95.75233739],[4.53361956,0.02642107,95.7517874],[4.53361901,0.02641935,95.75123547],[4.53361847,0.02641763,95.75068146],[4.53361792,0.02641592,95.75012525],[4.53361737,0.0264142,95.74956672],[4.53361683,0.02641248,95.74900573],[4.53361628,0.02641076,95.74844216],[4.53361573,0.02640905,95.74787589],[4.53361519,0.02640733,95.74730679],[4.53361464,0.02640561,95.74673473],[4.53361409,0.0264039,95.74615959],[4.53361354,0.02640218,95.74558124],[4.53361299,0.02640046,95.74499956],[4.53361245,0.02639875,95.74441442],[4.5336119,0.02639703,95.74382571],[4.53361135,0.02639531,95.74323328],[4.5336108,0.0263936,95.74263703],[4.53361024,0.02639188,95.74203682],[4.53360969,0.02639017,95.74143254],[4.53360914,0.02638845,95.74082405],[4.53360859,0.02638674,95.74021127],[4.53360804,0.02638502,95.73959413],[4.53360748,0.02638331,95.73897259],[4.53360693,0.02638159,95.73834658],[4.53360637,0.02637988,95.73771604],[4.53360582,0.02637816,95.73708096],[4.53360526,0.02637645,95.73644147],[4.5336047,0.02637473,95.73579774],[4.53360414,0.02637302,95.73514996],[4.53360359,0.02637131,95.73449828],[4.53360303,0.02636959,95.73384289],[4.53360247,0.02636788,95.73318395],[4.53360191,0.02636617,95.73252164],[4.53360135,0.02636445,95.73185612],[4.53360079,0.02636274,95.73118757],[4.53360023,0.02636103,95.73051616],[4.53359967,0.02635932,95.72984205],[4.53359911,0.0263576,95.72916542],[4.53359855,0.02635589,95.72848643],[4.53359799,0.02635418,95.72780525],[4.53359743,0.02635246,95.72712206],[4.53359687,0.02635075,95.72643702],[4.53359631,0.02634904,95.72575029],[4.53359575,0.02634732,95.72506205],[4.53359519,0.02634561,95.72437246],[4.53359463,0.0263439,95.7236817],[4.53359407,0.02634218,95.72298992],[4.53359352,0.02634047,95.72229729],[4.53359296,0.02633876,95.72160399],[4.5335924,0.02633704,95.7209102],[4.53359185,0.02633533,95.72021609],[4.53359129,0.02633361,95.71952184],[4.53359074,0.0263319,95.71882764],[4.53359018,0.02633019,95.71813365],[4.53358963,0.02632847,95.71744006],[4.53358908,0.02632675,95.71674705],[4.53358852,0.02632504,95.71605479],[4.53358797,0.02632332,95.71536347],[4.53358742,0.02632161,95.71467325],[4.53358688,0.02631989,95.71398432],[4.53358633,0.02631817,95.71329686],[4.53358578,0.02631645,95.71261098],[4.53358524,0.02631474,95.71192654],[4.5335847,0.02631302,95.71124333],[4.53358415,0.0263113,95.71056115],[4.53358361,0.02630958,95.7098798],[4.53358307,0.02630786,95.70919906],[4.53358253,0.02630614,95.70851875],[4.53358199,0.02630442,95.70783865],[4.53358145,0.0263027,95.70715856],[4.53358092,0.02630098,95.70647829],[4.53358038,0.02629926,95.70579762],[4.53357984,0.02629754,95.70511635],[4.53357931,0.02629582,95.70443429],[4.53357877,0.0262941,95.70375123],[4.53357823,0.02629238,95.70306697],[4.5335777,0.02629066,95.70238131],[4.53357716,0.02628894,95.70169405],[4.53357663,0.02628722,95.70100499],[4.53357609,0.0262855,95.70031392],[4.53357556,0.02628378,95.69962065],[4.53357502,0.02628205,95.69892497],[4.53357448,0.02628033,95.69822668],[4.53357395,0.02627861,95.69752559],[4.53357341,0.02627689,95.69682148],[4.53357287,0.02627517,95.69611417],[4.53357234,0.02627345,95.69540345],[4.5335718,0.02627173,95.69468912],[4.53357126,0.02627001,95.69397098],[4.53357072,0.02626829,95.69324882],[4.53357018,0.02626657,95.69252245],[4.53356964,0.02626485,95.69179173],[4.53356909,0.02626314,95.69105676],[4.53356855,0.02626142,95.69031771],[4.53356801,0.0262597,95.68957474],[4.53356746,0.02625798,95.68882803],[4.53356692,0.02625626,95.68807774],[4.53356637,0.02625455,95.68732404],[4.53356582,0.02625283,95.68656709],[4.53356528,0.02625111,95.68580706],[4.53356473,0.02624939,95.68504411],[4.53356418,0.02624768,95.68427842],[4.53356363,0.02624596,95.68351014],[4.53356309,0.02624424,95.68273945],[4.53356254,0.02624253,95.68196651],[4.53356199,0.02624081,95.68119149],[4.53356144,0.02623909,95.68041456],[4.53356089,0.02623738,95.67963587],[4.53356034,0.02623566,95.6788556],[4.53355979,0.02623394,95.67807392],[4.53355924,0.02623223,95.67729098],[4.53355869,0.02623051,95.67650697],[4.53355815,0.02622879,95.67572204],[4.5335576,0.02622708,95.67493636],[4.53355705,0.02622536,95.6741501],[4.5335565,0.02622364,95.67336342],[4.53355595,0.02622193,95.6725765],[4.53355541,0.02622021,95.6717895],[4.53355486,0.02621849,95.67100259],[4.53355432,0.02621677,95.67021589],[4.53355377,0.02621506,95.66942939],[4.53355323,0.02621334,95.66864301],[4.53355268,0.02621162,95.66785668],[4.53355214,0.0262099,95.66707035],[4.53355159,0.02620818,95.66628394],[4.53355105,0.02620647,95.6654974],[4.53355051,0.02620475,95.66471064],[4.53354997,0.02620303,95.66392361],[4.53354942,0.02620131,95.66313624],[4.53354888,0.02619959,95.66234846],[4.53354834,0.02619787,95.66156021],[4.5335478,0.02619615,95.66077143],[4.53354726,0.02619443,95.65998203],[4.53354672,0.02619271,95.65919196],[4.53354618,0.02619099,95.65840115],[4.53354564,0.02618928,95.65760953],[4.5335451,0.02618756,95.65681704],[4.53354456,0.02618584,95.6560236],[4.53354402,0.02618412,95.65522915],[4.53354347,0.0261824,95.65443362],[4.53354293,0.02618068,95.65363695],[4.53354239,0.02617896,95.65283906],[4.53354185,0.02617724,95.65203989],[4.53354131,0.02617552,95.65123936],[4.53354077,0.0261738,95.65043742],[4.53354023,0.02617208,95.64963399],[4.53353969,0.02617036,95.64882901],[4.53353915,0.02616864,95.6480224],[4.53353861,0.02616692,95.6472141],[4.53353807,0.02616521,95.64640403],[4.53353753,0.02616349,95.64559214],[4.53353698,0.02616177,95.64477834],[4.53353644,0.02616005,95.64396257],[4.5335359,0.02615833,95.64314475],[4.53353535,0.02615661,95.64232483],[4.53353481,0.02615489,95.64150284],[4.53353427,0.02615318,95.64067883],[4.53353372,0.02615146,95.63985284],[4.53353318,0.02614974,95.63902493],[4.53353263,0.02614802,95.63819514],[4.53353209,0.0261463,95.63736352],[4.53353154,0.02614459,95.63653012],[4.533531,0.02614287,95.63569499],[4.53353045,0.02614115,95.63485817],[4.5335299,0.02613943,95.63401972],[4.53352936,0.02613772,95.63317968],[4.53352881,0.026136,95.63233811],[4.53352826,0.02613428,95.63149505],[4.53352772,0.02613256,95.63065054],[4.53352717,0.02613085,95.62980466],[4.53352662,0.02612913,95.62895744],[4.53352607,0.02612741,95.62810894],[4.53352553,0.0261257,95.62725923],[4.53352498,0.02612398,95.62640835],[4.53352443,0.02612226,95.62555636],[4.53352388,0.02612054,95.62470331],[4.53352333,0.02611883,95.62384927],[4.53352278,0.02611711,95.62299428],[4.53352224,0.02611539,95.6221384],[4.53352169,0.02611368,95.62128168],[4.53352114,0.02611196,95.62042416],[4.53352059,0.02611024,95.61956583],[4.53352004,0.02610853,95.61870669],[4.53351949,0.02610681,95.61784675],[4.53351894,0.02610509,95.61698599],[4.5335184,0.02610338,95.61612442],[4.53351785,0.02610166,95.61526205],[4.5335173,0.02609994,95.61439885],[4.53351675,0.02609823,95.61353485],[4.5335162,0.02609651,95.61267003],[4.53351565,0.02609479,95.61180439],[4.5335151,0.02609308,95.61093793],[4.53351455,0.02609136,95.61007066],[4.533514,0.02608964,95.60920257],[4.53351345,0.02608793,95.60833365],[4.5335129,0.02608621,95.60746392],[4.53351235,0.02608449,95.60659336],[4.5335118,0.02608278,95.60572197],[4.53351125,0.02608106,95.60484976],[4.5335107,0.02607935,95.60397673],[4.53351015,0.02607763,95.60310286],[4.5335096,0.02607591,95.60222816],[4.53350905,0.0260742,95.60135263],[4.5335085,0.02607248,95.60047627],[4.53350795,0.02607076,95.59959907],[4.5335074,0.02606905,95.59872104],[4.53350685,0.02606733,95.59784217],[4.5335063,0.02606562,95.59696246],[4.53350575,0.0260639,95.59608191],[4.53350519,0.02606218,95.59520051],[4.53350464,0.02606047,95.59431828],[4.53350409,0.02605875,95.59343519],[4.53350354,0.02605704,95.59255126],[4.53350299,0.02605532,95.59166648],[4.53350243,0.02605361,95.59078084],[4.53350188,0.02605189,95.58989436],[4.53350133,0.02605018,95.58900702],[4.53350077,0.02604846,95.58811882],[4.53350022,0.02604674,95.58722976],[4.53349967,0.02604503,95.58633984],[4.53349911,0.02604331,95.58544908],[4.53349856,0.0260416,95.58455757],[4.53349801,0.02603988,95.58366542],[4.53349745,0.02603817,95.58277274],[4.5334969,0.02603645,95.58187966],[4.53349634,0.02603474,95.58098627],[4.53349579,0.02603302,95.5800927],[4.53349524,0.02603131,95.57919906],[4.53349468,0.02602959,95.57830546],[4.53349413,0.02602788,95.57741202],[4.53349357,0.02602616,95.57651884],[4.53349302,0.02602445,95.57562596],[4.53349247,0.02602273,95.57473342],[4.53349191,0.02602102,95.57384127],[4.53349136,0.0260193,95.57294952],[4.53349081,0.02601759,95.57205823],[4.53349025,0.02601587,95.57116742],[4.5334897,0.02601416,95.57027712],[4.53348915,0.02601244,95.56938739],[4.5334886,0.02601073,95.56849825],[4.53348804,0.02600901,95.56760973],[4.53348749,0.02600729,95.56672188],[4.53348694,0.02600558,95.56583473],[4.53348639,0.02600386,95.56494831],[4.53348584,0.02600215,95.56406267],[4.53348528,0.02600043,95.56317783],[4.53348473,0.02599871,95.56229384],[4.53348418,0.025997,95.56141073],[4.53348363,0.02599528,95.56052853],[4.53348308,0.02599357,95.55964729],[4.53348253,0.02599185,95.55876704],[4.53348198,0.02599013,95.55788781],[4.53348143,0.02598842,95.55700964],[4.53348088,0.0259867,95.55613258],[4.53348034,0.02598498,95.55525665],[4.53347979,0.02598327,95.55438189],[4.53347924,0.02598155,95.55350833],[4.53347869,0.02597983,95.55263601],[4.53347814,0.02597811,95.55176495],[4.5334776,0.0259764,95.55089518],[4.53347705,0.02597468,95.55002674],[4.5334765,0.02597296,95.54915965],[4.53347596,0.02597124,95.54829394],[4.53347541,0.02596953,95.54742965],[4.53347486,0.02596781,95.5465668],[4.53347432,0.02596609,95.54570543],[4.53347377,0.02596437,95.54484556],[4.53347323,0.02596265,95.54398723],[4.53347269,0.02596094,95.54313047],[4.53347266,0.02596086,95.54309029]],"type":"LineString"},"type":"feature","properties":{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-4,"type":"shoulder","predecessorId":-4}},{"geometry":{"coordinates":[[4.53371522,0.02671778,95.87452667],[4.53371467,0.02671606,95.87345694],[4.53371413,0.02671434,95.87239493],[4.53371359,0.02671262,95.87134058],[4.53371304,0.0267109,95.87029383],[4.5337125,0.02670919,95.86925462],[4.53371196,0.02670747,95.8682229],[4.53371142,0.02670575,95.8671986],[4.53371087,0.02670403,95.86618167],[4.53371033,0.02670231,95.86517205],[4.53370979,0.02670059,95.86416968],[4.53370925,0.02669888,95.8631745],[4.53370871,0.02669716,95.86218646],[4.53370816,0.02669544,95.86120549],[4.53370762,0.02669372,95.86023154],[4.53370708,0.026692,95.85926456],[4.53370654,0.02669028,95.85830447],[4.53370599,0.02668856,95.85735123],[4.53370545,0.02668685,95.85640477],[4.53370491,0.02668513,95.85546503],[4.53370437,0.02668341,95.85453196],[4.53370383,0.02668169,95.8536055],[4.53370328,0.02667997,95.85268559],[4.53370274,0.02667825,95.85177217],[4.5337022,0.02667654,95.85086518],[4.53370166,0.02667482,95.84996457],[4.53370111,0.0266731,95.84907027],[4.53370057,0.02667138,95.84818222],[4.53370003,0.02666966,95.84730037],[4.53369949,0.02666794,95.84642466],[4.53369895,0.02666622,95.84555502],[4.5336984,0.02666451,95.84469141],[4.53369786,0.02666279,95.84383375],[4.53369732,0.02666107,95.84298201],[4.53369678,0.02665935,95.84213611],[4.53369624,0.02665763,95.84129601],[4.53369569,0.02665591,95.84046164],[4.53369515,0.0266542,95.83963296],[4.53369461,0.02665248,95.83880991],[4.53369407,0.02665076,95.83799243],[4.53369352,0.02664904,95.83718046],[4.53369298,0.02664732,95.83637395],[4.53369244,0.0266456,95.83557284],[4.5336919,0.02664388,95.83477708],[4.53369136,0.02664217,95.83398661],[4.53369081,0.02664045,95.83320138],[4.53369027,0.02663873,95.83242132],[4.53368973,0.02663701,95.83164639],[4.53368919,0.02663529,95.83087653],[4.53368864,0.02663357,95.83011168],[4.5336881,0.02663186,95.82935178],[4.53368756,0.02663014,95.82859678],[4.53368702,0.02662842,95.82784663],[4.53368647,0.0266267,95.82710126],[4.53368593,0.02662498,95.82636062],[4.53368539,0.02662326,95.82562467],[4.53368485,0.02662155,95.82489333],[4.5336843,0.02661983,95.82416655],[4.53368376,0.02661811,95.82344429],[4.53368322,0.02661639,95.82272647],[4.53368268,0.02661467,95.82201305],[4.53368213,0.02661295,95.82130398],[4.53368159,0.02661124,95.82059918],[4.53368105,0.02660952,95.81989862],[4.5336805,0.0266078,95.81920223],[4.53367996,0.02660608,95.81850996],[4.53367942,0.02660436,95.81782174],[4.53367888,0.02660264,95.81713754],[4.53367833,0.02660093,95.81645728],[4.53367779,0.02659921,95.81578092],[4.53367725,0.02659749,95.81510839],[4.5336767,0.02659577,95.81443965],[4.53367616,0.02659405,95.81377463],[4.53367562,0.02659233,95.81311329],[4.53367507,0.02659062,95.81245556],[4.53367453,0.0265889,95.81180139],[4.53367399,0.02658718,95.81115072],[4.53367344,0.02658546,95.81050351],[4.5336729,0.02658374,95.80985968],[4.53367236,0.02658203,95.80921919],[4.53367181,0.02658031,95.80858199],[4.53367127,0.02657859,95.807948],[4.53367073,0.02657687,95.80731719],[4.53367018,0.02657515,95.8066895],[4.53366964,0.02657344,95.80606486],[4.53366909,0.02657172,95.80544322],[4.53366855,0.02657,95.80482453],[4.53366801,0.02656828,95.80420874],[4.53366746,0.02656656,95.80359578],[4.53366692,0.02656485,95.8029856],[4.53366637,0.02656313,95.80237815],[4.53366583,0.02656141,95.80177337],[4.53366529,0.02655969,95.8011712],[4.53366474,0.02655797,95.80057159],[4.5336642,0.02655626,95.79997449],[4.53366365,0.02655454,95.79937983],[4.53366311,0.02655282,95.79878757],[4.53366256,0.0265511,95.79819764],[4.53366202,0.02654938,95.79761],[4.53366147,0.02654767,95.79702458],[4.53366093,0.02654595,95.79644133],[4.53366038,0.02654423,95.79586021],[4.53365984,0.02654251,95.79528114],[4.53365929,0.0265408,95.79470407],[4.53365875,0.02653908,95.79412896],[4.5336582,0.02653736,95.79355574],[4.53365766,0.02653564,95.79298437],[4.53365711,0.02653393,95.79241477],[4.53365657,0.02653221,95.79184691],[4.53365602,0.02653049,95.79128072],[4.53365548,0.02652877,95.79071616],[4.53365493,0.02652706,95.79015318],[4.53365439,0.02652534,95.78959174],[4.53365384,0.02652362,95.78903181],[4.5336533,0.0265219,95.78847333],[4.53365275,0.02652019,95.78791627],[4.5336522,0.02651847,95.78736058],[4.53365166,0.02651675,95.78680622],[4.53365111,0.02651503,95.78625316],[4.53365057,0.02651332,95.78570134],[4.53365002,0.0265116,95.78515074],[4.53364947,0.02650988,95.78460129],[4.53364893,0.02650816,95.78405297],[4.53364838,0.02650645,95.78350573],[4.53364783,0.02650473,95.78295953],[4.53364729,0.02650301,95.78241432],[4.53364674,0.0265013,95.78187007],[4.5336462,0.02649958,95.78132673],[4.53364565,0.02649786,95.78078425],[4.5336451,0.02649614,95.78024261],[4.53364456,0.02649443,95.77970174],[4.53364401,0.02649271,95.77916162],[4.53364346,0.02649099,95.7786222],[4.53364292,0.02648927,95.77808343],[4.53364237,0.02648756,95.77754528],[4.53364183,0.02648584,95.7770077],[4.53364128,0.02648412,95.77647065],[4.53364073,0.02648241,95.77593408],[4.53364019,0.02648069,95.77539796],[4.53363964,0.02647897,95.77486224],[4.53363909,0.02647725,95.77432687],[4.53363855,0.02647554,95.77379182],[4.533638,0.02647382,95.77325704],[4.53363746,0.0264721,95.77272249],[4.53363691,0.02647038,95.77218812],[4.53363636,0.02646867,95.7716539],[4.53363582,0.02646695,95.77111978],[4.53363527,0.02646523,95.77058571],[4.53363473,0.02646351,95.77005165],[4.53363418,0.0264618,95.76951757],[4.53363364,0.02646008,95.76898341],[4.53363309,0.02645836,95.76844913],[4.53363254,0.02645664,95.76791469],[4.533632,0.02645493,95.76738005],[4.53363145,0.02645321,95.76684517],[4.53363091,0.02645149,95.76630999],[4.53363036,0.02644977,95.76577446],[4.53362982,0.02644806,95.76523853],[4.53362927,0.02644634,95.76470213],[4.53362873,0.02644462,95.7641652],[4.53362818,0.0264429,95.76362769],[4.53362764,0.02644119,95.76308952],[4.53362709,0.02643947,95.76255064],[4.53362655,0.02643775,95.76201099],[4.533626,0.02643603,95.76147051],[4.53362546,0.02643431,95.76092913],[4.53362491,0.0264326,95.76038678],[4.53362437,0.02643088,95.75984342],[4.53362382,0.02642916,95.75929898],[4.53362328,0.02642744,95.7587534],[4.53362273,0.02642573,95.75820661],[4.53362219,0.02642401,95.75765855],[4.53362164,0.02642229,95.75710917],[4.5336211,0.02642057,95.7565584],[4.53362055,0.02641885,95.75600618],[4.53362001,0.02641714,95.75545245],[4.53361947,0.02641542,95.75489715],[4.53361892,0.0264137,95.75434021],[4.53361838,0.02641198,95.75378158],[4.53361783,0.02641026,95.7532212],[4.53361729,0.02640855,95.752659],[4.53361674,0.02640683,95.75209492],[4.5336162,0.02640511,95.7515289],[4.53361565,0.02640339,95.75096088],[4.53361511,0.02640167,95.75039081],[4.53361457,0.02639996,95.74981861],[4.53361402,0.02639824,95.74924423],[4.53361348,0.02639652,95.74866761],[4.53361293,0.0263948,95.74808868],[4.53361239,0.02639309,95.74750739],[4.53361184,0.02639137,95.74692368],[4.5336113,0.02638965,95.74633747],[4.53361075,0.02638793,95.74574873],[4.53361021,0.02638621,95.7451574],[4.53360967,0.0263845,95.74456351],[4.53360912,0.02638278,95.74396705],[4.53360858,0.02638106,95.74336803],[4.53360803,0.02637934,95.74276644],[4.53360749,0.02637762,95.74216231],[4.53360694,0.02637591,95.74155562],[4.5336064,0.02637419,95.74094639],[4.53360585,0.02637247,95.74033463],[4.53360531,0.02637075,95.73972032],[4.53360476,0.02636903,95.73910349],[4.53360422,0.02636732,95.73848414],[4.53360367,0.0263656,95.73786227],[4.53360313,0.02636388,95.73723788],[4.53360258,0.02636216,95.73661099],[4.53360204,0.02636045,95.73598159],[4.53360149,0.02635873,95.7353497],[4.53360095,0.02635701,95.73471531],[4.5336004,0.02635529,95.73407844],[4.53359986,0.02635358,95.73343908],[4.53359931,0.02635186,95.73279725],[4.53359876,0.02635014,95.73215295],[4.53359822,0.02634842,95.73150617],[4.53359767,0.0263467,95.73085694],[4.53359713,0.02634499,95.73020525],[4.53359658,0.02634327,95.72955111],[4.53359604,0.02634155,95.72889452],[4.53359549,0.02633983,95.72823549],[4.53359494,0.02633812,95.72757403],[4.5335944,0.0263364,95.72691016],[4.53359385,0.02633468,95.7262439],[4.5335933,0.02633297,95.72557525],[4.53359276,0.02633125,95.72490425],[4.53359221,0.02632953,95.7242309],[4.53359167,0.02632781,95.72355523],[4.53359112,0.0263261,95.72287725],[4.53359057,0.02632438,95.72219697],[4.53359003,0.02632266,95.72151442],[4.53358948,0.02632094,95.72082962],[4.53358893,0.02631923,95.72014257],[4.53358838,0.02631751,95.71945331],[4.53358784,0.02631579,95.71876183],[4.53358729,0.02631408,95.71806817],[4.53358674,0.02631236,95.71737234],[4.5335862,0.02631064,95.71667435],[4.53358565,0.02630892,95.71597422],[4.5335851,0.02630721,95.71527198],[4.53358455,0.02630549,95.71456763],[4.53358401,0.02630377,95.7138612],[4.53358346,0.02630206,95.7131527],[4.53358291,0.02630034,95.71244214],[4.53358236,0.02629862,95.71172955],[4.53358182,0.02629691,95.71101495],[4.53358127,0.02629519,95.71029834],[4.53358072,0.02629347,95.70957975],[4.53358017,0.02629175,95.70885919],[4.53357963,0.02629004,95.70813668],[4.53357908,0.02628832,95.70741224],[4.53357853,0.0262866,95.70668589],[4.53357798,0.02628489,95.70595763],[4.53357743,0.02628317,95.7052275],[4.53357689,0.02628145,95.7044955],[4.53357634,0.02627974,95.70376165],[4.53357579,0.02627802,95.70302597],[4.53357524,0.0262763,95.70228848],[4.5335747,0.02627459,95.70154919],[4.53357415,0.02627287,95.70080812],[4.5335736,0.02627115,95.70006529],[4.53357305,0.02626943,95.69932071],[4.5335725,0.02626772,95.69857441],[4.53357196,0.026266,95.69782639],[4.53357141,0.02626428,95.69707668],[4.53357086,0.02626257,95.69632529],[4.53357031,0.02626085,95.69557224],[4.53356976,0.02625913,95.69481754],[4.53356922,0.02625742,95.69406122],[4.53356867,0.0262557,95.69330329],[4.53356812,0.02625398,95.69254377],[4.53356757,0.02625227,95.69178267],[4.53356702,0.02625055,95.69102001],[4.53356648,0.02624883,95.69025581],[4.53356593,0.02624711,95.68949009],[4.53356538,0.0262454,95.68872285],[4.53356483,0.02624368,95.68795413],[4.53356428,0.02624196,95.68718394],[4.53356374,0.02624025,95.68641228],[4.53356319,0.02623853,95.68563919],[4.53356264,0.02623681,95.68486468],[4.53356209,0.0262351,95.68408876],[4.53356155,0.02623338,95.68331145],[4.533561,0.02623166,95.68253277],[4.53356045,0.02622995,95.68175274],[4.5335599,0.02622823,95.68097137],[4.53355935,0.02622651,95.68018868],[4.53355881,0.02622479,95.67940469],[4.53355826,0.02622308,95.67861942],[4.53355771,0.02622136,95.67783287],[4.53355716,0.02621964,95.67704507],[4.53355662,0.02621793,95.67625604],[4.53355607,0.02621621,95.6754658],[4.53355552,0.02621449,95.67467435],[4.53355498,0.02621277,95.67388172],[4.53355443,0.02621106,95.67308793],[4.53355388,0.02620934,95.67229298],[4.53355333,0.02620762,95.67149691],[4.53355279,0.02620591,95.67069973],[4.53355224,0.02620419,95.66990144],[4.53355169,0.02620247,95.66910208],[4.53355115,0.02620075,95.66830166],[4.5335506,0.02619904,95.66750019],[4.53355005,0.02619732,95.6666977],[4.53354951,0.0261956,95.66589419],[4.53354896,0.02619388,95.6650897],[4.53354841,0.02619217,95.66428422],[4.53354787,0.02619045,95.66347779],[4.53354732,0.02618873,95.66267042],[4.53354677,0.02618701,95.66186211],[4.53354623,0.0261853,95.6610529],[4.53354568,0.02618358,95.6602428],[4.53354514,0.02618186,95.65943183],[4.53354459,0.02618014,95.65861999],[4.53354404,0.02617843,95.65780731],[4.5335435,0.02617671,95.65699381],[4.53354295,0.02617499,95.6561795],[4.53354241,0.02617327,95.6553644],[4.53354186,0.02617156,95.65454852],[4.53354132,0.02616984,95.65373189],[4.53354077,0.02616812,95.65291452],[4.53354023,0.0261664,95.65209642],[4.53353968,0.02616468,95.65127762],[4.53353914,0.02616297,95.65045813],[4.53353859,0.02616125,95.64963796],[4.53353805,0.02615953,95.64881714],[4.5335375,0.02615781,95.64799567],[4.53353696,0.02615609,95.64717357],[4.53353641,0.02615438,95.64635085],[4.53353587,0.02615266,95.64552752],[4.53353532,0.02615094,95.64470361],[4.53353478,0.02614922,95.64387912],[4.53353424,0.0261475,95.64305407],[4.53353369,0.02614578,95.64222847],[4.53353315,0.02614407,95.64140233],[4.53353261,0.02614235,95.64057568],[4.53353206,0.02614063,95.63974852],[4.53353152,0.02613891,95.63892087],[4.53353098,0.02613719,95.63809275],[4.53353043,0.02613547,95.63726415],[4.53352989,0.02613376,95.63643511],[4.53352935,0.02613204,95.63560564],[4.5335288,0.02613032,95.63477575],[4.53352826,0.0261286,95.63394547],[4.53352772,0.02612688,95.63311481],[4.53352718,0.02612516,95.63228379],[4.53352663,0.02612344,95.63145245],[4.53352609,0.02612172,95.63062078],[4.53352555,0.02612001,95.62978883],[4.53352501,0.02611829,95.6289566],[4.53352446,0.02611657,95.62812411],[4.53352392,0.02611485,95.62729139],[4.53352338,0.02611313,95.62645846],[4.53352284,0.02611141,95.62562531],[4.5335223,0.02610969,95.62479189],[4.53352176,0.02610797,95.62395819],[4.53352122,0.02610625,95.62312415],[4.53352068,0.02610453,95.62228975],[4.53352013,0.02610281,95.62145494],[4.53351959,0.0261011,95.62061969],[4.53351905,0.02609938,95.61978397],[4.53351851,0.02609766,95.61894773],[4.53351797,0.02609594,95.61811095],[4.53351743,0.02609422,95.61727357],[4.53351689,0.0260925,95.61643557],[4.53351635,0.02609078,95.61559691],[4.53351581,0.02608906,95.61475755],[4.53351527,0.02608734,95.61391745],[4.53351472,0.02608562,95.61307657],[4.53351418,0.0260839,95.61223489],[4.53351364,0.02608218,95.61139235],[4.5335131,0.02608046,95.61054893],[4.53351256,0.02607875,95.60970458],[4.53351202,0.02607703,95.60885926],[4.53351147,0.02607531,95.60801295],[4.53351093,0.02607359,95.60716559],[4.53351039,0.02607187,95.60631715],[4.53350985,0.02607015,95.6054676],[4.5335093,0.02606843,95.60461689],[4.53350876,0.02606671,95.60376498],[4.53350822,0.026065,95.60291184],[4.53350767,0.02606328,95.60205742],[4.53350713,0.02606156,95.6012017],[4.53350658,0.02605984,95.60034462],[4.53350604,0.02605812,95.59948615],[4.53350549,0.02605641,95.59862625],[4.53350495,0.02605469,95.59776488],[4.5335044,0.02605297,95.596902],[4.53350385,0.02605125,95.59603757],[4.53350331,0.02604954,95.59517155],[4.53350276,0.02604782,95.5943039],[4.53350221,0.0260461,95.59343458],[4.53350166,0.02604438,95.59256355],[4.53350111,0.02604267,95.59169078],[4.53350056,0.02604095,95.59081635],[4.53350001,0.02603923,95.5899403],[4.53349946,0.02603752,95.58906273],[4.53349891,0.0260358,95.5881837],[4.53349836,0.02603409,95.5873033],[4.53349781,0.02603237,95.58642159],[4.53349726,0.02603065,95.58553864],[4.53349671,0.02602894,95.58465454],[4.53349615,0.02602722,95.58376936],[4.5334956,0.02602551,95.58288317],[4.53349505,0.02602379,95.58199605],[4.5334945,0.02602208,95.58110808],[4.53349394,0.02602036,95.58021932],[4.53349339,0.02601865,95.57932986],[4.53349283,0.02601693,95.57843978],[4.53349228,0.02601522,95.57754913],[4.53349173,0.0260135,95.57665802],[4.53349117,0.02601179,95.5757665],[4.53349062,0.02601007,95.57487465],[4.53349006,0.02600836,95.57398256],[4.53348951,0.02600664,95.5730903],[4.53348895,0.02600493,95.57219794],[4.5334884,0.02600321,95.57130557],[4.53348784,0.0260015,95.57041325],[4.53348729,0.02599978,95.56952108],[4.53348673,0.02599807,95.56862911],[4.53348618,0.02599635,95.56773744],[4.53348563,0.02599464,95.56684614],[4.53348507,0.02599292,95.56595529],[4.53348452,0.02599121,95.56506496],[4.53348396,0.02598949,95.56417523],[4.53348341,0.02598778,95.56328619],[4.53348286,0.02598606,95.56239791],[4.5334823,0.02598435,95.56151046],[4.53348175,0.02598263,95.56062394],[4.5334812,0.02598092,95.5597384],[4.53348064,0.0259792,95.55885392],[4.53348009,0.02597748,95.55797058],[4.53347954,0.02597577,95.55708845],[4.53347899,0.02597405,95.5562076],[4.53347843,0.02597234,95.5553281],[4.53347788,0.02597062,95.55445002],[4.53347733,0.0259689,95.55357345],[4.53347678,0.02596719,95.55269845],[4.53347623,0.02596547,95.5518251],[4.53347568,0.02596375,95.55095346],[4.53347513,0.02596204,95.55008362],[4.53347459,0.02596032,95.54921565],[4.53347456,0.02596024,95.54917495]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"entry","predecessorId":-3}},{"geometry":{"coordinates":[[4.53374438,0.02670845,95.96947746],[4.53374384,0.02670673,95.96853395],[4.5337433,0.02670501,95.96759495],[4.53374276,0.02670329,95.96666043],[4.53374222,0.02670157,95.96573033],[4.53374168,0.02669985,95.96480465],[4.53374113,0.02669814,95.96388333],[4.53374059,0.02669642,95.96296634],[4.53374005,0.0266947,95.96205366],[4.53373951,0.02669298,95.96114525],[4.53373897,0.02669126,95.96024107],[4.53373842,0.02668954,95.95934109],[4.53373788,0.02668782,95.95844527],[4.53373734,0.0266861,95.95755359],[4.5337368,0.02668438,95.95666601],[4.53373626,0.02668267,95.95578249],[4.53373571,0.02668095,95.95490301],[4.53373517,0.02667923,95.95402753],[4.53373463,0.02667751,95.953156],[4.53373409,0.02667579,95.95228842],[4.53373354,0.02667407,95.95142472],[4.533733,0.02667235,95.9505649],[4.53373246,0.02667063,95.9497089],[4.53373192,0.02666892,95.9488567],[4.53373137,0.0266672,95.94800827],[4.53373083,0.02666548,95.94716356],[4.53373029,0.02666376,95.94632255],[4.53372975,0.02666204,95.94548521],[4.5337292,0.02666032,95.9446515],[4.53372866,0.0266586,95.94382138],[4.53372812,0.02665689,95.94299483],[4.53372757,0.02665517,95.9421718],[4.53372703,0.02665345,95.94135228],[4.53372649,0.02665173,95.94053622],[4.53372594,0.02665001,95.93972361],[4.5337254,0.02664829,95.9389144],[4.53372486,0.02664657,95.93810857],[4.53372431,0.02664486,95.93730608],[4.53372377,0.02664314,95.93650692],[4.53372323,0.02664142,95.93571104],[4.53372268,0.0266397,95.93491842],[4.53372214,0.02663798,95.93412903],[4.53372159,0.02663626,95.93334284],[4.53372105,0.02663455,95.93255981],[4.53372051,0.02663283,95.93177992],[4.53371996,0.02663111,95.93100314],[4.53371942,0.02662939,95.93022944],[4.53371887,0.02662767,95.92945878],[4.53371833,0.02662596,95.92869114],[4.53371779,0.02662424,95.9279265],[4.53371724,0.02662252,95.9271648],[4.5337167,0.0266208,95.92640604],[4.53371615,0.02661908,95.92565018],[4.53371561,0.02661736,95.92489718],[4.53371506,0.02661565,95.92414703],[4.53371452,0.02661393,95.92339968],[4.53371398,0.02661221,95.92265511],[4.53371343,0.02661049,95.92191329],[4.53371289,0.02660877,95.92117419],[4.53371234,0.02660706,95.92043778],[4.5337118,0.02660534,95.91970403],[4.53371125,0.02660362,95.91897291],[4.53371071,0.0266019,95.91824439],[4.53371016,0.02660018,95.91751844],[4.53370962,0.02659847,95.91679502],[4.53370907,0.02659675,95.91607413],[4.53370853,0.02659503,95.91535571],[4.53370798,0.02659331,95.91463974],[4.53370744,0.02659159,95.91392619],[4.53370689,0.02658988,95.91321504],[4.53370635,0.02658816,95.91250625],[4.5337058,0.02658644,95.91179978],[4.53370526,0.02658472,95.91109562],[4.53370471,0.026583,95.91039374],[4.53370417,0.02658129,95.90969409],[4.53370362,0.02657957,95.90899666],[4.53370308,0.02657785,95.90830141],[4.53370253,0.02657613,95.90760832],[4.53370199,0.02657442,95.90691734],[4.53370144,0.0265727,95.90622846],[4.53370089,0.02657098,95.90554165],[4.53370035,0.02656926,95.90485687],[4.5336998,0.02656754,95.90417409],[4.53369926,0.02656583,95.90349328],[4.53369871,0.02656411,95.90281442],[4.53369817,0.02656239,95.90213747],[4.53369762,0.02656067,95.90146241],[4.53369708,0.02655896,95.9007892],[4.53369653,0.02655724,95.90011782],[4.53369598,0.02655552,95.89944823],[4.53369544,0.0265538,95.89878041],[4.53369489,0.02655208,95.89811432],[4.53369435,0.02655037,95.89744994],[4.5336938,0.02654865,95.89678723],[4.53369326,0.02654693,95.89612616],[4.53369271,0.02654521,95.89546671],[4.53369216,0.0265435,95.89480885],[4.53369162,0.02654178,95.89415254],[4.53369107,0.02654006,95.89349775],[4.53369053,0.02653834,95.89284447],[4.53368998,0.02653663,95.89219264],[4.53368943,0.02653491,95.89154225],[4.53368889,0.02653319,95.89089327],[4.53368834,0.02653147,95.89024566],[4.5336878,0.02652975,95.88959939],[4.53368725,0.02652804,95.88895444],[4.53368671,0.02652632,95.88831078],[4.53368616,0.0265246,95.88766837],[4.53368561,0.02652288,95.88702718],[4.53368507,0.02652117,95.88638719],[4.53368452,0.02651945,95.88574837],[4.53368398,0.02651773,95.88511067],[4.53368343,0.02651601,95.88447408],[4.53368288,0.0265143,95.88383857],[4.53368234,0.02651258,95.88320409],[4.53368179,0.02651086,95.88257064],[4.53368125,0.02650914,95.88193816],[4.5336807,0.02650743,95.88130664],[4.53368015,0.02650571,95.88067604],[4.53367961,0.02650399,95.88004633],[4.53367906,0.02650227,95.87941748],[4.53367852,0.02650055,95.87878947],[4.53367797,0.02649884,95.87816226],[4.53367742,0.02649712,95.87753581],[4.53367688,0.0264954,95.87691011],[4.53367633,0.02649368,95.87628512],[4.53367579,0.02649197,95.87566081],[4.53367524,0.02649025,95.87503715],[4.53367469,0.02648853,95.87441411],[4.53367415,0.02648681,95.87379166],[4.5336736,0.0264851,95.87316977],[4.53367306,0.02648338,95.8725484],[4.53367251,0.02648166,95.87192753],[4.53367196,0.02647994,95.87130713],[4.53367142,0.02647822,95.87068717],[4.53367087,0.02647651,95.87006761],[4.53367033,0.02647479,95.86944843],[4.53366978,0.02647307,95.86882959],[4.53366923,0.02647135,95.86821107],[4.53366869,0.02646964,95.86759283],[4.53366814,0.02646792,95.86697485],[4.5336676,0.0264662,95.86635709],[4.53366705,0.02646448,95.86573952],[4.53366651,0.02646277,95.86512211],[4.53366596,0.02646105,95.86450484],[4.53366541,0.02645933,95.86388766],[4.53366487,0.02645761,95.86327056],[4.53366432,0.02645589,95.8626535],[4.53366378,0.02645418,95.86203644],[4.53366323,0.02645246,95.86141937],[4.53366269,0.02645074,95.86080224],[4.53366214,0.02644902,95.86018503],[4.53366159,0.02644731,95.8595677],[4.53366105,0.02644559,95.85895023],[4.5336605,0.02644387,95.85833259],[4.53365996,0.02644215,95.85771474],[4.53365941,0.02644043,95.85709665],[4.53365887,0.02643872,95.8564783],[4.53365832,0.026437,95.85585964],[4.53365778,0.02643528,95.85524065],[4.53365723,0.02643356,95.85462129],[4.53365669,0.02643184,95.85400153],[4.53365614,0.02643013,95.85338133],[4.53365559,0.02642841,95.85276065],[4.53365505,0.02642669,95.85213946],[4.5336545,0.02642497,95.85151773],[4.53365396,0.02642325,95.85089541],[4.53365341,0.02642154,95.85027248],[4.53365287,0.02641982,95.8496489],[4.53365232,0.0264181,95.84902464],[4.53365178,0.02641638,95.84839966],[4.53365123,0.02641466,95.84777392],[4.53365069,0.02641295,95.84714739],[4.53365014,0.02641123,95.84652004],[4.5336496,0.02640951,95.84589182],[4.53364905,0.02640779,95.84526272],[4.53364851,0.02640607,95.84463268],[4.53364796,0.02640436,95.84400168],[4.53364742,0.02640264,95.84336968],[4.53364687,0.02640092,95.84273665],[4.53364633,0.0263992,95.84210255],[4.53364578,0.02639748,95.84146734],[4.53364524,0.02639577,95.840831],[4.53364469,0.02639405,95.84019348],[4.53364415,0.02639233,95.83955476],[4.5336436,0.02639061,95.83891479],[4.53364306,0.02638889,95.83827355],[4.53364251,0.02638718,95.83763099],[4.53364197,0.02638546,95.83698709],[4.53364142,0.02638374,95.83634181],[4.53364088,0.02638202,95.83569511],[4.53364033,0.0263803,95.83504696],[4.53363979,0.02637859,95.83439732],[4.53363924,0.02637687,95.83374619],[4.5336387,0.02637515,95.83309356],[4.53363815,0.02637343,95.83243944],[4.53363761,0.02637171,95.83178383],[4.53363706,0.02637,95.83112675],[4.53363652,0.02636828,95.83046819],[4.53363597,0.02636656,95.82980817],[4.53363543,0.02636484,95.82914668],[4.53363489,0.02636312,95.82848375],[4.53363434,0.02636141,95.82781936],[4.5336338,0.02635969,95.82715354],[4.53363325,0.02635797,95.82648628],[4.53363271,0.02635625,95.8258176],[4.53363216,0.02635453,95.82514749],[4.53363162,0.02635281,95.82447597],[4.53363107,0.0263511,95.82380304],[4.53363053,0.02634938,95.8231287],[4.53362998,0.02634766,95.82245297],[4.53362944,0.02634594,95.82177585],[4.53362889,0.02634422,95.82109735],[4.53362835,0.02634251,95.82041747],[4.5336278,0.02634079,95.81973622],[4.53362726,0.02633907,95.81905361],[4.53362671,0.02633735,95.81836964],[4.53362617,0.02633563,95.81768432],[4.53362562,0.02633392,95.81699765],[4.53362508,0.0263322,95.81630965],[4.53362453,0.02633048,95.81562031],[4.53362399,0.02632876,95.81492965],[4.53362344,0.02632704,95.81423767],[4.5336229,0.02632533,95.81354437],[4.53362235,0.02632361,95.81284978],[4.53362181,0.02632189,95.81215388],[4.53362126,0.02632017,95.81145668],[4.53362072,0.02631845,95.81075821],[4.53362017,0.02631673,95.81005845],[4.53361963,0.02631502,95.80935741],[4.53361908,0.0263133,95.80865511],[4.53361854,0.02631158,95.80795155],[4.53361799,0.02630986,95.80724674],[4.53361745,0.02630814,95.80654068],[4.5336169,0.02630643,95.80583337],[4.53361636,0.02630471,95.80512483],[4.53361581,0.02630299,95.80441506],[4.53361527,0.02630127,95.80370407],[4.53361472,0.02629955,95.80299187],[4.53361418,0.02629784,95.80227845],[4.53361364,0.02629612,95.80156383],[4.53361309,0.0262944,95.80084802],[4.53361255,0.02629268,95.80013101],[4.533612,0.02629096,95.79941283],[4.53361146,0.02628925,95.79869346],[4.53361091,0.02628753,95.79797293],[4.53361037,0.02628581,95.79725123],[4.53360982,0.02628409,95.79652837],[4.53360928,0.02628237,95.79580437],[4.53360873,0.02628066,95.79507921],[4.53360819,0.02627894,95.79435292],[4.53360764,0.02627722,95.7936255],[4.53360709,0.0262755,95.79289696],[4.53360655,0.02627378,95.79216729],[4.533606,0.02627206,95.79143651],[4.53360546,0.02627035,95.79070463],[4.53360491,0.02626863,95.78997165],[4.53360437,0.02626691,95.78923757],[4.53360382,0.02626519,95.78850241],[4.53360328,0.02626347,95.78776617],[4.53360273,0.02626176,95.78702886],[4.53360219,0.02626004,95.78629047],[4.53360164,0.02625832,95.78555103],[4.5336011,0.0262566,95.78481054],[4.53360055,0.02625488,95.78406899],[4.53360001,0.02625317,95.78332641],[4.53359946,0.02625145,95.78258279],[4.53359892,0.02624973,95.78183814],[4.53359837,0.02624801,95.78109247],[4.53359783,0.02624629,95.78034579],[4.53359728,0.02624458,95.7795981],[4.53359674,0.02624286,95.7788494],[4.53359619,0.02624114,95.77809971],[4.53359565,0.02623942,95.77734903],[4.5335951,0.0262377,95.77659737],[4.53359456,0.02623599,95.77584473],[4.53359401,0.02623427,95.77509112],[4.53359346,0.02623255,95.77433655],[4.53359292,0.02623083,95.77358102],[4.53359237,0.02622911,95.77282454],[4.53359183,0.0262274,95.77206711],[4.53359128,0.02622568,95.77130875],[4.53359074,0.02622396,95.77054946],[4.53359019,0.02622224,95.76978924],[4.53358965,0.02622052,95.7690281],[4.5335891,0.02621881,95.76826606],[4.53358856,0.02621709,95.7675031],[4.53358801,0.02621537,95.76673925],[4.53358746,0.02621365,95.7659745],[4.53358692,0.02621194,95.76520887],[4.53358637,0.02621022,95.76444236],[4.53358583,0.0262085,95.76367497],[4.53358528,0.02620678,95.76290672],[4.53358474,0.02620506,95.76213761],[4.53358419,0.02620335,95.76136764],[4.53358364,0.02620163,95.76059682],[4.5335831,0.02619991,95.75982517],[4.53358255,0.02619819,95.75905268],[4.53358201,0.02619647,95.75827936],[4.53358146,0.02619476,95.75750522],[4.53358092,0.02619304,95.75673026],[4.53358037,0.02619132,95.75595449],[4.53357982,0.0261896,95.75517792],[4.53357928,0.02618788,95.75440056],[4.53357873,0.02618617,95.7536224],[4.53357819,0.02618445,95.75284346],[4.53357764,0.02618273,95.75206375],[4.53357709,0.02618101,95.75128326],[4.53357655,0.0261793,95.75050201],[4.533576,0.02617758,95.74972],[4.53357546,0.02617586,95.74893724],[4.53357491,0.02617414,95.74815373],[4.53357436,0.02617242,95.74736949],[4.53357382,0.02617071,95.74658451],[4.53357327,0.02616899,95.7457988],[4.53357273,0.02616727,95.74501238],[4.53357218,0.02616555,95.74422524],[4.53357163,0.02616384,95.7434374],[4.53357109,0.02616212,95.74264885],[4.53357054,0.0261604,95.74185961],[4.53357,0.02615868,95.74106968],[4.53356945,0.02615696,95.74027907],[4.5335689,0.02615525,95.73948779],[4.53356836,0.02615353,95.73869584],[4.53356781,0.02615181,95.73790322],[4.53356726,0.02615009,95.73710994],[4.53356672,0.02614838,95.736316],[4.53356617,0.02614666,95.73552141],[4.53356562,0.02614494,95.73472617],[4.53356508,0.02614322,95.73393028],[4.53356453,0.02614151,95.73313374],[4.53356398,0.02613979,95.73233657],[4.53356344,0.02613807,95.73153875],[4.53356289,0.02613635,95.7307403],[4.53356234,0.02613464,95.72994122],[4.5335618,0.02613292,95.72914151],[4.53356125,0.0261312,95.72834118],[4.5335607,0.02612948,95.72754022],[4.53356016,0.02612777,95.72673864],[4.53355961,0.02612605,95.72593645],[4.53355906,0.02612433,95.72513364],[4.53355852,0.02612261,95.72433023],[4.53355797,0.0261209,95.72352621],[4.53355742,0.02611918,95.7227216],[4.53355687,0.02611746,95.72191641],[4.53355633,0.02611574,95.72111065],[4.53355578,0.02611403,95.72030432],[4.53355523,0.02611231,95.71949744],[4.53355469,0.02611059,95.71869001],[4.53355414,0.02610887,95.71788204],[4.53355359,0.02610716,95.71707355],[4.53355304,0.02610544,95.71626454],[4.5335525,0.02610372,95.71545501],[4.53355195,0.026102,95.71464499],[4.5335514,0.02610029,95.71383447],[4.53355085,0.02609857,95.71302347],[4.53355031,0.02609685,95.712212],[4.53354976,0.02609513,95.71140006],[4.53354921,0.02609342,95.71058767],[4.53354866,0.0260917,95.70977483],[4.53354811,0.02608998,95.70896155],[4.53354757,0.02608827,95.70814785],[4.53354702,0.02608655,95.70733372],[4.53354647,0.02608483,95.70651919],[4.53354592,0.02608311,95.70570425],[4.53354537,0.0260814,95.70488893],[4.53354483,0.02607968,95.70407322],[4.53354428,0.02607796,95.70325713],[4.53354373,0.02607625,95.70244069],[4.53354318,0.02607453,95.70162388],[4.53354263,0.02607281,95.70080673],[4.53354209,0.02607109,95.69998925],[4.53354154,0.02606938,95.69917143],[4.53354099,0.02606766,95.6983533],[4.53354044,0.02606594,95.69753486],[4.53353989,0.02606423,95.69671612],[4.53353935,0.02606251,95.69589708],[4.5335388,0.02606079,95.69507777],[4.53353825,0.02605907,95.69425818],[4.5335377,0.02605736,95.69343832],[4.53353715,0.02605564,95.69261822],[4.5335366,0.02605392,95.69179786],[4.53353606,0.02605221,95.69097727],[4.53353551,0.02605049,95.69015646],[4.53353496,0.02604877,95.68933542],[4.53353441,0.02604705,95.68851418],[4.53353386,0.02604534,95.68769274],[4.53353331,0.02604362,95.6868711],[4.53353276,0.0260419,95.68604929],[4.53353222,0.02604019,95.6852273],[4.53353167,0.02603847,95.68440516],[4.53353112,0.02603675,95.68358285],[4.53353057,0.02603503,95.68276041],[4.53353002,0.02603332,95.68193782],[4.53352947,0.0260316,95.68111512],[4.53352892,0.02602988,95.68029229],[4.53352838,0.02602817,95.67946936],[4.53352783,0.02602645,95.67864633],[4.53352728,0.02602473,95.67782321],[4.53352673,0.02602302,95.67700002],[4.53352618,0.0260213,95.67617675],[4.53352563,0.02601958,95.67535342],[4.53352508,0.02601786,95.67453004],[4.53352454,0.02601615,95.67370662],[4.53352399,0.02601443,95.67288316],[4.53352344,0.02601271,95.67205968],[4.53352289,0.026011,95.67123619],[4.53352234,0.02600928,95.67041269],[4.53352179,0.02600756,95.66958919],[4.53352124,0.02600585,95.66876571],[4.5335207,0.02600413,95.66794225],[4.53352015,0.02600241,95.66711882],[4.5335196,0.02600069,95.66629543],[4.53351905,0.02599898,95.6654721],[4.5335185,0.02599726,95.66464882],[4.53351795,0.02599554,95.66382561],[4.5335174,0.02599383,95.66300249],[4.53351685,0.02599211,95.66217945],[4.53351631,0.02599039,95.6613565],[4.53351576,0.02598868,95.66053367],[4.53351521,0.02598696,95.65971095],[4.53351466,0.02598524,95.65888835],[4.53351411,0.02598352,95.6580659],[4.53351356,0.02598181,95.65724358],[4.53351301,0.02598009,95.65642142],[4.53351247,0.02597837,95.65559942],[4.53351192,0.02597666,95.65477759],[4.53351137,0.02597494,95.65395595],[4.53351082,0.02597322,95.6531345],[4.53351027,0.0259715,95.65231324],[4.53350972,0.02596979,95.65149217],[4.53350918,0.02596807,95.65067131],[4.53350863,0.02596635,95.64985065],[4.53350808,0.02596464,95.64903019],[4.53350753,0.02596292,95.64820995],[4.53350698,0.0259612,95.64738991],[4.53350643,0.02595949,95.64657009],[4.53350588,0.02595777,95.64575049],[4.53350534,0.02595605,95.6449311],[4.53350479,0.02595433,95.64411194],[4.53350424,0.02595262,95.64329301],[4.53350369,0.0259509,95.6424743],[4.53350366,0.02595082,95.64243587]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2}},{"geometry":{"coordinates":[[4.53377578,0.02669841,96.07170569],[4.53377524,0.02669669,96.07089162],[4.5337747,0.02669497,96.07007894],[4.53377416,0.02669325,96.06926766],[4.53377362,0.02669153,96.06845775],[4.53377307,0.02668981,96.0676492],[4.53377253,0.02668809,96.06684201],[4.53377199,0.02668637,96.06603616],[4.53377145,0.02668465,96.06523164],[4.53377091,0.02668293,96.06442843],[4.53377036,0.02668122,96.06362653],[4.53376982,0.0266795,96.06282592],[4.53376928,0.02667778,96.0620266],[4.53376874,0.02667606,96.06122854],[4.53376819,0.02667434,96.06043175],[4.53376765,0.02667262,96.0596362],[4.53376711,0.0266709,96.05884188],[4.53376657,0.02666918,96.05804879],[4.53376602,0.02666746,96.05725691],[4.53376548,0.02666574,96.05646623],[4.53376494,0.02666402,96.05567674],[4.53376439,0.02666231,96.05488843],[4.53376385,0.02666059,96.05410128],[4.53376331,0.02665887,96.05331529],[4.53376277,0.02665715,96.05253044],[4.53376222,0.02665543,96.05174672],[4.53376168,0.02665371,96.05096413],[4.53376114,0.02665199,96.05018264],[4.53376059,0.02665027,96.04940224],[4.53376005,0.02664856,96.04862294],[4.53375951,0.02664684,96.0478447],[4.53375896,0.02664512,96.04706753],[4.53375842,0.0266434,96.04629142],[4.53375787,0.02664168,96.04551635],[4.53375733,0.02663996,96.04474231],[4.53375679,0.02663824,96.04396931],[4.53375624,0.02663652,96.04319732],[4.5337557,0.02663481,96.04242635],[4.53375515,0.02663309,96.04165638],[4.53375461,0.02663137,96.04088741],[4.53375407,0.02662965,96.04011942],[4.53375352,0.02662793,96.03935242],[4.53375298,0.02662621,96.03858639],[4.53375243,0.02662449,96.03782132],[4.53375189,0.02662278,96.03705721],[4.53375134,0.02662106,96.03629404],[4.5337508,0.02661934,96.03553181],[4.53375026,0.02661762,96.03477052],[4.53374971,0.0266159,96.03401015],[4.53374917,0.02661418,96.0332507],[4.53374862,0.02661247,96.03249215],[4.53374808,0.02661075,96.03173451],[4.53374753,0.02660903,96.03097775],[4.53374699,0.02660731,96.03022188],[4.53374644,0.02660559,96.02946689],[4.5337459,0.02660387,96.02871276],[4.53374535,0.02660216,96.0279595],[4.53374481,0.02660044,96.02720709],[4.53374426,0.02659872,96.02645552],[4.53374372,0.026597,96.02570479],[4.53374317,0.02659528,96.02495489],[4.53374263,0.02659356,96.0242058],[4.53374208,0.02659185,96.02345754],[4.53374154,0.02659013,96.02271007],[4.53374099,0.02658841,96.02196341],[4.53374045,0.02658669,96.02121753],[4.5337399,0.02658497,96.02047243],[4.53373936,0.02658325,96.01972811],[4.53373881,0.02658154,96.01898456],[4.53373826,0.02657982,96.01824176],[4.53373772,0.0265781,96.01749971],[4.53373717,0.02657638,96.01675841],[4.53373663,0.02657466,96.01601783],[4.53373608,0.02657295,96.01527799],[4.53373554,0.02657123,96.01453886],[4.53373499,0.02656951,96.01380045],[4.53373444,0.02656779,96.01306273],[4.5337339,0.02656607,96.01232571],[4.53373335,0.02656436,96.01158938],[4.53373281,0.02656264,96.01085373],[4.53373226,0.02656092,96.01011874],[4.53373172,0.0265592,96.00938442],[4.53373117,0.02655748,96.00865076],[4.53373062,0.02655577,96.00791774],[4.53373008,0.02655405,96.00718536],[4.53372953,0.02655233,96.00645362],[4.53372899,0.02655061,96.00572249],[4.53372844,0.02654889,96.00499199],[4.53372789,0.02654718,96.00426208],[4.53372735,0.02654546,96.00353278],[4.5337268,0.02654374,96.00280407],[4.53372626,0.02654202,96.00207594],[4.53372571,0.0265403,96.00134839],[4.53372516,0.02653859,96.00062141],[4.53372462,0.02653687,95.99989498],[4.53372407,0.02653515,95.9991691],[4.53372352,0.02653343,95.99844377],[4.53372298,0.02653171,95.99771898],[4.53372243,0.02653,95.9969947],[4.53372189,0.02652828,95.99627095],[4.53372134,0.02652656,95.99554771],[4.53372079,0.02652484,95.99482497],[4.53372025,0.02652313,95.99410273],[4.5337197,0.02652141,95.99338097],[4.53371915,0.02651969,95.99265969],[4.53371861,0.02651797,95.99193888],[4.53371806,0.02651625,95.99121853],[4.53371752,0.02651454,95.99049863],[4.53371697,0.02651282,95.98977918],[4.53371642,0.0265111,95.98906016],[4.53371588,0.02650938,95.98834158],[4.53371533,0.02650766,95.98762341],[4.53371478,0.02650595,95.98690566],[4.53371424,0.02650423,95.98618831],[4.53371369,0.02650251,95.98547136],[4.53371314,0.02650079,95.98475479],[4.5337126,0.02649908,95.9840386],[4.53371205,0.02649736,95.98332278],[4.53371151,0.02649564,95.98260732],[4.53371096,0.02649392,95.98189222],[4.53371041,0.0264922,95.98117746],[4.53370987,0.02649049,95.98046304],[4.53370932,0.02648877,95.97974895],[4.53370877,0.02648705,95.97903518],[4.53370823,0.02648533,95.97832172],[4.53370768,0.02648361,95.97760856],[4.53370713,0.0264819,95.9768957],[4.53370659,0.02648018,95.97618312],[4.53370604,0.02647846,95.97547082],[4.5337055,0.02647674,95.97475879],[4.53370495,0.02647502,95.97404702],[4.5337044,0.02647331,95.9733355],[4.53370386,0.02647159,95.97262422],[4.53370331,0.02646987,95.97191318],[4.53370276,0.02646815,95.97120237],[4.53370222,0.02646644,95.97049177],[4.53370167,0.02646472,95.96978138],[4.53370112,0.026463,95.96907119],[4.53370058,0.02646128,95.9683612],[4.53370003,0.02645956,95.96765138],[4.53369949,0.02645785,95.96694174],[4.53369894,0.02645613,95.96623227],[4.53369839,0.02645441,95.96552295],[4.53369785,0.02645269,95.96481378],[4.5336973,0.02645097,95.96410475],[4.53369675,0.02644926,95.96339585],[4.53369621,0.02644754,95.96268707],[4.53369566,0.02644582,95.96197841],[4.53369512,0.0264441,95.96126985],[4.53369457,0.02644238,95.96056138],[4.53369402,0.02644067,95.95985301],[4.53369348,0.02643895,95.95914471],[4.53369293,0.02643723,95.95843648],[4.53369239,0.02643551,95.9577283],[4.53369184,0.02643379,95.95702019],[4.53369129,0.02643208,95.95631211],[4.53369075,0.02643036,95.95560407],[4.5336902,0.02642864,95.95489605],[4.53368966,0.02642692,95.95418804],[4.53368911,0.0264252,95.95348004],[4.53368857,0.02642349,95.95277203],[4.53368802,0.02642177,95.95206398],[4.53368747,0.02642005,95.9513559],[4.53368693,0.02641833,95.95064777],[4.53368638,0.02641661,95.94993957],[4.53368584,0.0264149,95.9492313],[4.53368529,0.02641318,95.94852293],[4.53368475,0.02641146,95.94781446],[4.5336842,0.02640974,95.94710587],[4.53368365,0.02640802,95.94639714],[4.53368311,0.02640631,95.94568828],[4.53368256,0.02640459,95.94497926],[4.53368202,0.02640287,95.94427006],[4.53368147,0.02640115,95.94356069],[4.53368093,0.02639943,95.94285112],[4.53368038,0.02639771,95.94214133],[4.53367984,0.026396,95.94143133],[4.53367929,0.02639428,95.94072109],[4.53367875,0.02639256,95.9400106],[4.5336782,0.02639084,95.93929985],[4.53367765,0.02638912,95.93858883],[4.53367711,0.02638741,95.93787752],[4.53367656,0.02638569,95.9371659],[4.53367602,0.02638397,95.93645398],[4.53367547,0.02638225,95.93574173],[4.53367493,0.02638053,95.93502914],[4.53367438,0.02637881,95.93431619],[4.53367384,0.0263771,95.93360288],[4.53367329,0.02637538,95.9328892],[4.53367275,0.02637366,95.93217512],[4.5336722,0.02637194,95.93146064],[4.53367166,0.02637022,95.93074574],[4.53367111,0.0263685,95.93003041],[4.53367057,0.02636679,95.92931465],[4.53367002,0.02636507,95.92859845],[4.53366948,0.02636335,95.92788182],[4.53366893,0.02636163,95.92716475],[4.53366838,0.02635991,95.92644724],[4.53366784,0.0263582,95.92572931],[4.53366729,0.02635648,95.92501094],[4.53366675,0.02635476,95.92429215],[4.5336662,0.02635304,95.92357292],[4.53366566,0.02635132,95.92285327],[4.53366511,0.0263496,95.9221332],[4.53366457,0.02634789,95.9214127],[4.53366402,0.02634617,95.92069179],[4.53366348,0.02634445,95.91997045],[4.53366293,0.02634273,95.91924869],[4.53366239,0.02634101,95.91852652],[4.53366184,0.02633929,95.91780394],[4.5336613,0.02633758,95.91708094],[4.53366075,0.02633586,95.91635752],[4.53366021,0.02633414,95.9156337],[4.53365966,0.02633242,95.91490947],[4.53365912,0.0263307,95.91418483],[4.53365857,0.02632898,95.91345979],[4.53365803,0.02632727,95.91273434],[4.53365748,0.02632555,95.91200849],[4.53365693,0.02632383,95.91128224],[4.53365639,0.02632211,95.91055559],[4.53365584,0.02632039,95.90982854],[4.5336553,0.02631868,95.9091011],[4.53365475,0.02631696,95.90837327],[4.53365421,0.02631524,95.90764504],[4.53365366,0.02631352,95.90691642],[4.53365312,0.0263118,95.90618741],[4.53365257,0.02631008,95.90545801],[4.53365203,0.02630837,95.90472823],[4.53365148,0.02630665,95.90399806],[4.53365094,0.02630493,95.90326751],[4.53365039,0.02630321,95.90253658],[4.53364985,0.02630149,95.90180527],[4.5336493,0.02629977,95.90107358],[4.53364876,0.02629806,95.90034152],[4.53364821,0.02629634,95.89960908],[4.53364766,0.02629462,95.89887627],[4.53364712,0.0262929,95.89814309],[4.53364657,0.02629118,95.89740954],[4.53364603,0.02628947,95.89667562],[4.53364548,0.02628775,95.89594133],[4.53364494,0.02628603,95.89520669],[4.53364439,0.02628431,95.89447167],[4.53364385,0.02628259,95.8937363],[4.5336433,0.02628087,95.89300057],[4.53364276,0.02627916,95.89226447],[4.53364221,0.02627744,95.89152803],[4.53364167,0.02627572,95.89079123],[4.53364112,0.026274,95.89005407],[4.53364057,0.02627228,95.88931657],[4.53364003,0.02627057,95.88857871],[4.53363948,0.02626885,95.88784051],[4.53363894,0.02626713,95.88710196],[4.53363839,0.02626541,95.88636306],[4.53363785,0.02626369,95.88562383],[4.5336373,0.02626197,95.88488425],[4.53363676,0.02626026,95.88414433],[4.53363621,0.02625854,95.88340408],[4.53363567,0.02625682,95.88266348],[4.53363512,0.0262551,95.88192256],[4.53363457,0.02625338,95.8811813],[4.53363403,0.02625166,95.88043971],[4.53363348,0.02624995,95.87969779],[4.53363294,0.02624823,95.87895554],[4.53363239,0.02624651,95.87821297],[4.53363185,0.02624479,95.87747007],[4.5336313,0.02624307,95.87672685],[4.53363076,0.02624136,95.87598331],[4.53363021,0.02623964,95.87523945],[4.53362966,0.02623792,95.87449527],[4.53362912,0.0262362,95.87375077],[4.53362857,0.02623448,95.87300596],[4.53362803,0.02623277,95.87226084],[4.53362748,0.02623105,95.8715154],[4.53362694,0.02622933,95.87076966],[4.53362639,0.02622761,95.87002361],[4.53362584,0.02622589,95.86927725],[4.5336253,0.02622417,95.86853058],[4.53362475,0.02622246,95.86778362],[4.53362421,0.02622074,95.86703635],[4.53362366,0.02621902,95.86628878],[4.53362312,0.0262173,95.86554092],[4.53362257,0.02621558,95.86479276],[4.53362202,0.02621387,95.8640443],[4.53362148,0.02621215,95.86329555],[4.53362093,0.02621043,95.86254651],[4.53362039,0.02620871,95.86179718],[4.53361984,0.02620699,95.86104756],[4.53361929,0.02620528,95.86029766],[4.53361875,0.02620356,95.85954747],[4.5336182,0.02620184,95.858797],[4.53361766,0.02620012,95.85804624],[4.53361711,0.0261984,95.85729521],[4.53361656,0.02619669,95.85654389],[4.53361602,0.02619497,95.8557923],[4.53361547,0.02619325,95.85504044],[4.53361493,0.02619153,95.8542883],[4.53361438,0.02618981,95.85353589],[4.53361383,0.0261881,95.85278321],[4.53361329,0.02618638,95.85203026],[4.53361274,0.02618466,95.85127705],[4.53361219,0.02618294,95.85052356],[4.53361165,0.02618122,95.84976982],[4.5336111,0.02617951,95.84901581],[4.53361056,0.02617779,95.84826154],[4.53361001,0.02617607,95.84750702],[4.53360946,0.02617435,95.84675223],[4.53360892,0.02617263,95.84599719],[4.53360837,0.02617092,95.8452419],[4.53360782,0.0261692,95.84448635],[4.53360728,0.02616748,95.84373055],[4.53360673,0.02616576,95.84297451],[4.53360619,0.02616404,95.84221821],[4.53360564,0.02616233,95.84146167],[4.53360509,0.02616061,95.84070488],[4.53360455,0.02615889,95.83994785],[4.533604,0.02615717,95.83919058],[4.53360345,0.02615546,95.83843307],[4.53360291,0.02615374,95.83767532],[4.53360236,0.02615202,95.83691734],[4.53360181,0.0261503,95.83615912],[4.53360127,0.02614858,95.83540066],[4.53360072,0.02614687,95.83464198],[4.53360017,0.02614515,95.83388306],[4.53359963,0.02614343,95.83312391],[4.53359908,0.02614171,95.83236454],[4.53359853,0.02614,95.83160493],[4.53359799,0.02613828,95.83084509],[4.53359744,0.02613656,95.83008502],[4.53359689,0.02613484,95.82932472],[4.53359634,0.02613312,95.82856417],[4.5335958,0.02613141,95.82780339],[4.53359525,0.02612969,95.82704237],[4.5335947,0.02612797,95.82628111],[4.53359416,0.02612625,95.82551961],[4.53359361,0.02612454,95.82475786],[4.53359306,0.02612282,95.82399586],[4.53359252,0.0261211,95.82323362],[4.53359197,0.02611938,95.82247112],[4.53359142,0.02611766,95.82170838],[4.53359087,0.02611595,95.82094538],[4.53359033,0.02611423,95.82018213],[4.53358978,0.02611251,95.81941862],[4.53358923,0.02611079,95.81865487],[4.53358868,0.02610908,95.81789086],[4.53358814,0.02610736,95.81712661],[4.53358759,0.02610564,95.81636213],[4.53358704,0.02610392,95.81559741],[4.53358649,0.02610221,95.81483245],[4.53358595,0.02610049,95.81406728],[4.5335854,0.02609877,95.81330188],[4.53358485,0.02609705,95.81253626],[4.5335843,0.02609534,95.81177043],[4.53358375,0.02609362,95.81100439],[4.53358321,0.0260919,95.81023815],[4.53358266,0.02609018,95.8094717],[4.53358211,0.02608847,95.80870506],[4.53358156,0.02608675,95.80793823],[4.53358101,0.02608503,95.80717121],[4.53358047,0.02608332,95.80640401],[4.53357992,0.0260816,95.80563663],[4.53357937,0.02607988,95.80486908],[4.53357882,0.02607816,95.80410135],[4.53357827,0.02607645,95.80333346],[4.53357772,0.02607473,95.80256541],[4.53357718,0.02607301,95.8017972],[4.53357663,0.02607129,95.80102884],[4.53357608,0.02606958,95.80026033],[4.53357553,0.02606786,95.79949167],[4.53357498,0.02606614,95.79872288],[4.53357443,0.02606443,95.79795395],[4.53357389,0.02606271,95.79718489],[4.53357334,0.02606099,95.7964157],[4.53357279,0.02605927,95.79564639],[4.53357224,0.02605756,95.79487696],[4.53357169,0.02605584,95.79410742],[4.53357114,0.02605412,95.79333777],[4.53357059,0.0260524,95.79256802],[4.53357005,0.02605069,95.79179816],[4.5335695,0.02604897,95.79102821],[4.53356895,0.02604725,95.79025816],[4.5335684,0.02604554,95.78948803],[4.53356785,0.02604382,95.78871782],[4.5335673,0.0260421,95.78794752],[4.53356675,0.02604038,95.78717716],[4.5335662,0.02603867,95.78640672],[4.53356565,0.02603695,95.78563622],[4.53356511,0.02603523,95.78486565],[4.53356456,0.02603352,95.78409503],[4.53356401,0.0260318,95.78332436],[4.53356346,0.02603008,95.78255364],[4.53356291,0.02602836,95.78178288],[4.53356236,0.02602665,95.78101208],[4.53356181,0.02602493,95.78024124],[4.53356126,0.02602321,95.77947038],[4.53356071,0.0260215,95.77869949],[4.53356017,0.02601978,95.77792857],[4.53355962,0.02601806,95.77715765],[4.53355907,0.02601634,95.77638671],[4.53355852,0.02601463,95.77561576],[4.53355797,0.02601291,95.77484481],[4.53355742,0.02601119,95.77407386],[4.53355687,0.02600948,95.77330292],[4.53355632,0.02600776,95.77253198],[4.53355577,0.02600604,95.77176106],[4.53355522,0.02600433,95.77099017],[4.53355468,0.02600261,95.77021929],[4.53355413,0.02600089,95.76944845],[4.53355358,0.02599917,95.76867763],[4.53355303,0.02599746,95.76790686],[4.53355248,0.02599574,95.76713613],[4.53355193,0.02599402,95.76636544],[4.53355138,0.02599231,95.7655948],[4.53355083,0.02599059,95.76482423],[4.53355028,0.02598887,95.76405371],[4.53354973,0.02598715,95.76328325],[4.53354919,0.02598544,95.76251287],[4.53354864,0.02598372,95.76174256],[4.53354809,0.025982,95.76097233],[4.53354754,0.02598029,95.76020218],[4.53354699,0.02597857,95.75943212],[4.53354644,0.02597685,95.75866215],[4.53354589,0.02597513,95.75789228],[4.53354534,0.02597342,95.75712251],[4.53354479,0.0259717,95.75635285],[4.53354424,0.02596998,95.75558329],[4.5335437,0.02596827,95.75481386],[4.53354315,0.02596655,95.75404454],[4.5335426,0.02596483,95.75327535],[4.53354205,0.02596311,95.75250628],[4.5335415,0.0259614,95.75173735],[4.53354095,0.02595968,95.75096854],[4.5335404,0.02595796,95.75019985],[4.53353985,0.02595625,95.74943128],[4.5335393,0.02595453,95.74866284],[4.53353876,0.02595281,95.74789451],[4.53353821,0.02595109,95.7471263],[4.53353766,0.02594938,95.7463582],[4.53353711,0.02594766,95.74559022],[4.53353656,0.02594594,95.74482234],[4.53353601,0.02594423,95.74405458],[4.53353546,0.02594251,95.74328692],[4.53353491,0.02594079,95.74251936],[4.53353489,0.02594071,95.74248333]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}},{"geometry":{"coordinates":[[4.53356905,0.02592965,95.85195471],[4.53356908,0.02592973,95.85198917],[4.53356963,0.02593145,95.85272347],[4.53357019,0.02593316,95.85345827],[4.53357075,0.02593488,95.85419352],[4.5335713,0.02593659,95.85492919],[4.53357186,0.02593831,95.85566525],[4.53357242,0.02594002,95.85640167],[4.53357298,0.02594174,95.85713841],[4.53357353,0.02594345,95.85787545],[4.53357409,0.02594516,95.85861275],[4.53357465,0.02594688,95.85935028],[4.53357521,0.02594859,95.86008801],[4.53357576,0.02595031,95.86082591],[4.53357632,0.02595202,95.86156394],[4.53357688,0.02595374,95.86230207],[4.53357744,0.02595545,95.86304027],[4.53357799,0.02595717,95.8637785],[4.53357855,0.02595888,95.86451673],[4.53357911,0.0259606,95.86525492],[4.53357967,0.02596231,95.86599302],[4.53358022,0.02596402,95.86673101],[4.53358078,0.02596574,95.86746884],[4.53358134,0.02596745,95.86820648],[4.5335819,0.02596917,95.86894389],[4.53358245,0.02597088,95.86968103],[4.53358301,0.0259726,95.87041787],[4.53358357,0.02597431,95.87115437],[4.53358413,0.02597603,95.87189048],[4.53358468,0.02597774,95.87262619],[4.53358524,0.02597946,95.87336144],[4.5335858,0.02598117,95.8740962],[4.53358635,0.02598289,95.87483043],[4.53358691,0.0259846,95.8755641],[4.53358746,0.02598632,95.87629718],[4.53358802,0.02598803,95.87702962],[4.53358858,0.02598975,95.87776138],[4.53358913,0.02599146,95.87849245],[4.53358969,0.02599318,95.87922276],[4.53359024,0.02599489,95.8799523],[4.5335908,0.02599661,95.88068103],[4.53359135,0.02599832,95.8814089],[4.5335919,0.02600004,95.88213589],[4.53359246,0.02600176,95.88286195],[4.53359301,0.02600347,95.88358706],[4.53359356,0.02600519,95.88431117],[4.53359412,0.0260069,95.88503426],[4.53359467,0.02600862,95.88575628],[4.53359522,0.02601034,95.88647721],[4.53359577,0.02601205,95.887197],[4.53359632,0.02601377,95.88791565],[4.53359687,0.02601549,95.8886332],[4.53359742,0.0260172,95.88934967],[4.53359797,0.02601892,95.89006508],[4.53359852,0.02602064,95.89077947],[4.53359907,0.02602235,95.89149286],[4.53359962,0.02602407,95.89220528],[4.53360017,0.02602579,95.89291676],[4.53360072,0.02602751,95.89362733],[4.53360126,0.02602922,95.89433701],[4.53360181,0.02603094,95.89504583],[4.53360236,0.02603266,95.89575382],[4.5336029,0.02603438,95.896461],[4.53360345,0.0260361,95.89716741],[4.533604,0.02603781,95.89787308],[4.53360454,0.02603953,95.89857802],[4.53360509,0.02604125,95.89928226],[4.53360563,0.02604297,95.89998584],[4.53360618,0.02604469,95.90068878],[4.53360672,0.02604641,95.90139111],[4.53360727,0.02604813,95.90209285],[4.53360781,0.02604984,95.90279403],[4.53360836,0.02605156,95.90349468],[4.5336089,0.02605328,95.90419482],[4.53360944,0.026055,95.90489448],[4.53360999,0.02605672,95.9055937],[4.53361053,0.02605844,95.90629249],[4.53361107,0.02606016,95.90699088],[4.53361162,0.02606188,95.90768889],[4.53361216,0.0260636,95.90838657],[4.5336127,0.02606532,95.90908392],[4.53361324,0.02606704,95.90978098],[4.53361379,0.02606876,95.91047778],[4.53361433,0.02607048,95.91117433],[4.53361487,0.0260722,95.91187067],[4.53361541,0.02607392,95.91256682],[4.53361595,0.02607564,95.91326281],[4.53361649,0.02607736,95.91395867],[4.53361704,0.02607907,95.91465442],[4.53361758,0.02608079,95.91535008],[4.53361812,0.02608251,95.91604568],[4.53361866,0.02608423,95.91674126],[4.5336192,0.02608595,95.91743682],[4.53361974,0.02608767,95.91813241],[4.53362028,0.02608939,95.91882804],[4.53362082,0.02609111,95.91952374],[4.53362136,0.02609283,95.92021954],[4.5336219,0.02609455,95.92091546],[4.53362244,0.02609627,95.92161153],[4.53362298,0.02609799,95.92230777],[4.53362352,0.02609971,95.92300421],[4.53362406,0.02610144,95.92370087],[4.5336246,0.02610316,95.92439778],[4.53362514,0.02610488,95.92509493],[4.53362568,0.0261066,95.92579234],[4.53362623,0.02610832,95.92649004],[4.53362677,0.02611004,95.92718802],[4.53362731,0.02611176,95.92788631],[4.53362785,0.02611348,95.92858492],[4.53362839,0.0261152,95.92928386],[4.53362893,0.02611692,95.92998315],[4.53362947,0.02611864,95.9306828],[4.53363001,0.02612036,95.93138283],[4.53363055,0.02612208,95.93208324],[4.53363109,0.0261238,95.93278406],[4.53363163,0.02612552,95.9334853],[4.53363217,0.02612724,95.93418697],[4.53363271,0.02612896,95.93488908],[4.53363325,0.02613068,95.93559165],[4.53363379,0.0261324,95.9362947],[4.53363433,0.02613412,95.93699823],[4.53363487,0.02613584,95.93770227],[4.53363541,0.02613756,95.93840681],[4.53363595,0.02613928,95.93911189],[4.53363649,0.026141,95.93981751],[4.53363704,0.02614272,95.94052368],[4.53363758,0.02614444,95.94123043],[4.53363812,0.02614616,95.94193776],[4.53363866,0.02614788,95.94264568],[4.5336392,0.0261496,95.94335422],[4.53363974,0.02615132,95.94406338],[4.53364028,0.02615304,95.94477318],[4.53364082,0.02615476,95.94548363],[4.53364137,0.02615648,95.94619475],[4.53364191,0.02615819,95.94690655],[4.53364245,0.02615991,95.94761904],[4.53364299,0.02616163,95.94833223],[4.53364353,0.02616335,95.94904615],[4.53364408,0.02616507,95.94976081],[4.53364462,0.02616679,95.95047621],[4.53364516,0.02616851,95.95119237],[4.5336457,0.02617023,95.95190931],[4.53364625,0.02617195,95.95262703],[4.53364679,0.02617367,95.95334556],[4.53364733,0.02617539,95.95406491],[4.53364787,0.02617711,95.95478509],[4.53364842,0.02617883,95.95550611],[4.53364896,0.02618055,95.95622799],[4.5336495,0.02618227,95.95695073],[4.53365005,0.02618399,95.95767437],[4.53365059,0.0261857,95.9583989],[4.53365114,0.02618742,95.95912435],[4.53365168,0.02618914,95.95985072],[4.53365222,0.02619086,95.96057803],[4.53365277,0.02619258,95.96130629],[4.53365331,0.0261943,95.96203552],[4.53365386,0.02619602,95.96276574],[4.5336544,0.02619774,95.96349694],[4.53365495,0.02619945,95.96422916],[4.53365549,0.02620117,95.9649624],[4.53365604,0.02620289,95.96569667],[4.53365659,0.02620461,95.966432],[4.53365713,0.02620633,95.96716839],[4.53365768,0.02620805,95.96790585],[4.53365822,0.02620976,95.96864441],[4.53365877,0.02621148,95.96938403],[4.53365932,0.0262132,95.9701247],[4.53365986,0.02621492,95.97086639],[4.53366041,0.02621664,95.97160908],[4.53366096,0.02621835,95.97235274],[4.53366151,0.02622007,95.97309736],[4.53366205,0.02622179,95.97384291],[4.5336626,0.02622351,95.97458937],[4.53366315,0.02622523,95.97533671],[4.5336637,0.02622694,95.97608492],[4.53366425,0.02622866,95.97683397],[4.5336648,0.02623038,95.97758383],[4.53366534,0.0262321,95.97833448],[4.53366589,0.02623381,95.97908591],[4.53366644,0.02623553,95.97983809],[4.53366699,0.02623725,95.98059099],[4.53366754,0.02623897,95.98134459],[4.53366809,0.02624068,95.98209888],[4.53366864,0.0262424,95.98285382],[4.53366919,0.02624412,95.9836094],[4.53366973,0.02624583,95.98436559],[4.53367028,0.02624755,95.98512237],[4.53367083,0.02624927,95.98587972],[4.53367138,0.02625099,95.98663761],[4.53367193,0.0262527,95.98739602],[4.53367248,0.02625442,95.98815493],[4.53367303,0.02625614,95.98891432],[4.53367358,0.02625786,95.98967416],[4.53367413,0.02625957,95.99043444],[4.53367468,0.02626129,95.99119512],[4.53367522,0.02626301,95.99195618],[4.53367577,0.02626473,95.99271761],[4.53367632,0.02626644,95.99347938],[4.53367687,0.02626816,95.99424147],[4.53367742,0.02626988,95.99500385],[4.53367797,0.0262716,95.9957665],[4.53367852,0.02627331,95.9965294],[4.53367906,0.02627503,95.99729253],[4.53367961,0.02627675,95.99805586],[4.53368016,0.02627847,95.99881937],[4.53368071,0.02628018,95.99958304],[4.53368125,0.0262819,96.00034684],[4.5336818,0.02628362,96.00111075],[4.53368235,0.02628534,96.00187475],[4.5336829,0.02628705,96.00263881],[4.53368344,0.02628877,96.00340292],[4.53368399,0.02629049,96.00416704],[4.53368454,0.02629221,96.00493115],[4.53368508,0.02629393,96.00569524],[4.53368563,0.02629565,96.00645927],[4.53368618,0.02629736,96.00722323],[4.53368672,0.02629908,96.00798709],[4.53368727,0.0263008,96.00875083],[4.53368781,0.02630252,96.00951442],[4.53368836,0.02630424,96.01027783],[4.5336889,0.02630596,96.01104106],[4.53368945,0.02630768,96.01180406],[4.53368999,0.02630939,96.01256682],[4.53369053,0.02631111,96.01332931],[4.53369108,0.02631283,96.01409152],[4.53369162,0.02631455,96.0148534],[4.53369216,0.02631627,96.01561495],[4.53369271,0.02631799,96.01637616],[4.53369325,0.02631971,96.01713708],[4.53369379,0.02632143,96.01789772],[4.53369433,0.02632315,96.01865813],[4.53369487,0.02632487,96.01941835],[4.53369541,0.02632659,96.0201784],[4.53369596,0.02632831,96.02093832],[4.5336965,0.02633003,96.02169815],[4.53369704,0.02633175,96.02245792],[4.53369758,0.02633347,96.02321766],[4.53369812,0.02633519,96.02397741],[4.53369866,0.02633691,96.02473721],[4.5336992,0.02633863,96.02549708],[4.53369973,0.02634035,96.02625706],[4.53370027,0.02634207,96.02701719],[4.53370081,0.02634379,96.0277775],[4.53370135,0.02634551,96.02853803],[4.53370189,0.02634723,96.02929881],[4.53370243,0.02634895,96.03005988],[4.53370297,0.02635067,96.03082127],[4.53370351,0.0263524,96.03158301],[4.53370404,0.02635412,96.03234514],[4.53370458,0.02635584,96.0331077],[4.53370512,0.02635756,96.03387072],[4.53370566,0.02635928,96.03463423],[4.5337062,0.026361,96.03539827],[4.53370674,0.02636272,96.03616285],[4.53370727,0.02636444,96.036928],[4.53370781,0.02636616,96.03769372],[4.53370835,0.02636788,96.03846005],[4.53370889,0.0263696,96.039227],[4.53370943,0.02637133,96.03999459],[4.53370996,0.02637305,96.04076284],[4.5337105,0.02637477,96.04153178],[4.53371104,0.02637649,96.04230142],[4.53371158,0.02637821,96.04307178],[4.53371212,0.02637993,96.04384289],[4.53371265,0.02638165,96.04461477],[4.53371319,0.02638337,96.04538743],[4.53371373,0.02638509,96.04616089],[4.53371427,0.02638681,96.04693519],[4.53371481,0.02638853,96.04771034],[4.53371535,0.02639025,96.04848636],[4.53371589,0.02639197,96.04926327],[4.53371643,0.02639369,96.0500411],[4.53371697,0.02639541,96.05081986],[4.53371751,0.02639714,96.05159959],[4.53371805,0.02639886,96.0523803],[4.53371859,0.02640058,96.05316201],[4.53371913,0.0264023,96.05394475],[4.53371967,0.02640402,96.05472854],[4.53372021,0.02640574,96.05551341],[4.53372075,0.02640746,96.05629937],[4.53372129,0.02640918,96.05708645],[4.53372183,0.0264109,96.05787467],[4.53372237,0.02641262,96.058664],[4.53372291,0.02641434,96.05945443],[4.53372346,0.02641605,96.06024592],[4.533724,0.02641777,96.06103845],[4.53372454,0.02641949,96.06183199],[4.53372508,0.02642121,96.06262652],[4.53372563,0.02642293,96.063422],[4.53372617,0.02642465,96.06421841],[4.53372671,0.02642637,96.06501571],[4.53372726,0.02642809,96.06581387],[4.5337278,0.02642981,96.06661287],[4.53372835,0.02643153,96.06741266],[4.53372889,0.02643325,96.06821323],[4.53372944,0.02643496,96.06901453],[4.53372998,0.02643668,96.06981654],[4.53373053,0.0264384,96.07061923],[4.53373107,0.02644012,96.07142257],[4.53373162,0.02644184,96.07222652],[4.53373216,0.02644356,96.07303105],[4.53373271,0.02644528,96.07383614],[4.53373325,0.02644699,96.07464175],[4.5337338,0.02644871,96.07544784],[4.53373435,0.02645043,96.0762544],[4.53373489,0.02645215,96.07706138],[4.53373544,0.02645387,96.07786875],[4.53373598,0.02645559,96.07867649],[4.53373653,0.0264573,96.07948456],[4.53373708,0.02645902,96.08029292],[4.53373762,0.02646074,96.08110155],[4.53373817,0.02646246,96.08191042],[4.53373872,0.02646418,96.08271949],[4.53373926,0.02646589,96.08352873],[4.53373981,0.02646761,96.0843381],[4.53374036,0.02646933,96.08514759],[4.53374091,0.02647105,96.08595714],[4.53374145,0.02647277,96.08676673],[4.533742,0.02647448,96.08757633],[4.53374255,0.0264762,96.08838591],[4.5337431,0.02647792,96.08919542],[4.53374364,0.02647964,96.09000485],[4.53374419,0.02648136,96.09081415],[4.53374474,0.02648307,96.09162329],[4.53374528,0.02648479,96.09243224],[4.53374583,0.02648651,96.09324097],[4.53374638,0.02648823,96.09404944],[4.53374693,0.02648995,96.09485762],[4.53374747,0.02649166,96.09566547],[4.53374802,0.02649338,96.09647297],[4.53374857,0.0264951,96.09728008],[4.53374912,0.02649682,96.09808676],[4.53374966,0.02649854,96.09889298],[4.53375021,0.02650025,96.0996987],[4.53375076,0.02650197,96.1005039],[4.5337513,0.02650369,96.10130854],[4.53375185,0.02650541,96.10211259],[4.5337524,0.02650713,96.102916],[4.53375295,0.02650884,96.10371875],[4.53375349,0.02651056,96.10452079],[4.53375404,0.02651228,96.10532211],[4.53375459,0.026514,96.10612265],[4.53375513,0.02651572,96.10692239],[4.53375568,0.02651743,96.10772129],[4.53375622,0.02651915,96.10851932],[4.53375677,0.02652087,96.10931643],[4.53375732,0.02652259,96.11011261],[4.53375786,0.02652431,96.1109078],[4.53375841,0.02652603,96.11170198],[4.53375895,0.02652774,96.11249511],[4.5337595,0.02652946,96.11328715],[4.53376004,0.02653118,96.11407807],[4.53376059,0.0265329,96.11486784],[4.53376113,0.02653462,96.11565642],[4.53376168,0.02653634,96.11644377],[4.53376222,0.02653806,96.11722986],[4.53376277,0.02653978,96.11801466],[4.53376331,0.02654149,96.11879812],[4.53376385,0.02654321,96.11958022],[4.5337644,0.02654493,96.12036091],[4.53376494,0.02654665,96.12114016],[4.53376548,0.02654837,96.12191795],[4.53376603,0.02655009,96.12269427],[4.53376657,0.02655181,96.1234692],[4.53376711,0.02655353,96.12424277],[4.53376766,0.02655525,96.12501506],[4.5337682,0.02655697,96.12578612],[4.53376874,0.02655869,96.12655601],[4.53376928,0.02656041,96.12732479],[4.53376982,0.02656213,96.12809252],[4.53377037,0.02656385,96.12885925],[4.53377091,0.02656557,96.12962505],[4.53377145,0.02656729,96.13038998],[4.53377199,0.02656901,96.13115409],[4.53377253,0.02657073,96.13191744],[4.53377308,0.02657245,96.1326801],[4.53377362,0.02657416,96.13344212],[4.53377416,0.02657588,96.13420356],[4.5337747,0.0265776,96.13496449],[4.53377524,0.02657932,96.13572496],[4.53377579,0.02658104,96.13648504],[4.53377633,0.02658276,96.13724477],[4.53377687,0.02658448,96.13800423],[4.53377742,0.0265862,96.13876347],[4.53377796,0.02658792,96.13952255],[4.5337785,0.02658964,96.14028153],[4.53377905,0.02659136,96.14104047],[4.53377959,0.02659308,96.14179943],[4.53378014,0.0265948,96.14255847],[4.53378068,0.02659651,96.14331765],[4.53378123,0.02659823,96.14407703],[4.53378177,0.02659995,96.14483667],[4.53378232,0.02660167,96.14559662],[4.53378287,0.02660339,96.14635694],[4.53378341,0.02660511,96.1471177],[4.53378396,0.02660682,96.14787895],[4.53378451,0.02660854,96.14864073],[4.53378506,0.02661026,96.14940298],[4.53378561,0.02661198,96.15016565],[4.53378616,0.02661369,96.15092866],[4.53378671,0.02661541,96.15169194],[4.53378726,0.02661713,96.15245542],[4.53378781,0.02661884,96.15321903],[4.53378836,0.02662056,96.15398271],[4.53378891,0.02662228,96.15474637],[4.53378946,0.02662399,96.15550995],[4.53379001,0.02662571,96.15627339],[4.53379057,0.02662743,96.1570366],[4.53379112,0.02662914,96.15779952],[4.53379167,0.02663086,96.15856208],[4.53379223,0.02663257,96.1593242],[4.53379278,0.02663429,96.16008581],[4.53379333,0.02663601,96.16084685],[4.53379389,0.02663772,96.16160725],[4.53379444,0.02663944,96.16236693],[4.533795,0.02664115,96.16312582],[4.53379555,0.02664287,96.16388387],[4.53379611,0.02664458,96.16464099],[4.53379666,0.0266463,96.16539713],[4.53379722,0.02664801,96.16615221],[4.53379777,0.02664973,96.16690616],[4.53379833,0.02665145,96.16765893],[4.53379888,0.02665316,96.16841043],[4.53379944,0.02665488,96.1691606],[4.5338,0.02665659,96.16990937],[4.53380055,0.02665831,96.17065668],[4.53380111,0.02666002,96.17140245],[4.53380166,0.02666174,96.17214662],[4.53380222,0.02666345,96.17288912],[4.53380278,0.02666517,96.17362988],[4.53380333,0.02666688,96.17436884],[4.53380389,0.0266686,96.17510592],[4.53380444,0.02667031,96.17584107],[4.533805,0.02667203,96.17657421],[4.53380555,0.02667374,96.17730527],[4.53380611,0.02667546,96.1780342],[4.53380666,0.02667717,96.17876092],[4.53380722,0.02667889,96.17948536],[4.53380778,0.02668061,96.18020747],[4.53380833,0.02668232,96.18092717],[4.53380888,0.02668404,96.1816444],[4.53380944,0.02668575,96.1823591],[4.53380999,0.02668747,96.1830712]],"type":"LineString"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":1,"type":"shoulder","predecessorId":1}},{"geometry":{"coordinates":[[4.53358181,0.02592552,95.85195471],[4.53358183,0.0259256,95.85198917],[4.53358238,0.02592732,95.85272347],[4.53358293,0.02592904,95.85345827],[4.53358348,0.02593076,95.85419352],[4.53358403,0.02593247,95.85492919],[4.53358458,0.02593419,95.85566525],[4.53358513,0.02593591,95.85640167],[4.53358568,0.02593762,95.85713841],[4.53358623,0.02593934,95.85787545],[4.53358678,0.02594106,95.85861275],[4.53358732,0.02594278,95.85935028],[4.53358787,0.02594449,95.86008801],[4.53358842,0.02594621,95.86082591],[4.53358897,0.02594793,95.86156394],[4.53358952,0.02594964,95.86230207],[4.53359007,0.02595136,95.86304027],[4.53359062,0.02595308,95.8637785],[4.53359117,0.0259548,95.86451673],[4.53359172,0.02595651,95.86525492],[4.53359227,0.02595823,95.86599302],[4.53359282,0.02595995,95.86673101],[4.53359337,0.02596166,95.86746884],[4.53359393,0.02596338,95.86820648],[4.53359448,0.0259651,95.86894389],[4.53359503,0.02596681,95.86968103],[4.53359558,0.02596853,95.87041787],[4.53359613,0.02597025,95.87115437],[4.53359668,0.02597197,95.87189048],[4.53359723,0.02597368,95.87262619],[4.53359778,0.0259754,95.87336144],[4.53359833,0.02597712,95.8740962],[4.53359888,0.02597883,95.87483043],[4.53359943,0.02598055,95.8755641],[4.53359998,0.02598227,95.87629718],[4.53360053,0.02598399,95.87702962],[4.53360108,0.0259857,95.87776138],[4.53360163,0.02598742,95.87849245],[4.53360218,0.02598914,95.87922276],[4.53360273,0.02599085,95.8799523],[4.53360327,0.02599257,95.88068103],[4.53360382,0.02599429,95.8814089],[4.53360437,0.02599601,95.88213589],[4.53360492,0.02599772,95.88286195],[4.53360547,0.02599944,95.88358706],[4.53360602,0.02600116,95.88431117],[4.53360657,0.02600287,95.88503426],[4.53360712,0.02600459,95.88575628],[4.53360767,0.02600631,95.88647721],[4.53360822,0.02600803,95.887197],[4.53360876,0.02600975,95.88791565],[4.53360931,0.02601146,95.8886332],[4.53360986,0.02601318,95.88934967],[4.53361041,0.0260149,95.89006508],[4.53361096,0.02601662,95.89077947],[4.5336115,0.02601833,95.89149286],[4.53361205,0.02602005,95.89220528],[4.5336126,0.02602177,95.89291676],[4.53361315,0.02602349,95.89362733],[4.53361369,0.02602521,95.89433701],[4.53361424,0.02602692,95.89504583],[4.53361479,0.02602864,95.89575382],[4.53361534,0.02603036,95.896461],[4.53361588,0.02603208,95.89716741],[4.53361643,0.02603379,95.89787308],[4.53361698,0.02603551,95.89857802],[4.53361752,0.02603723,95.89928226],[4.53361807,0.02603895,95.89998584],[4.53361862,0.02604067,95.90068878],[4.53361917,0.02604238,95.90139111],[4.53361971,0.0260441,95.90209285],[4.53362026,0.02604582,95.90279403],[4.53362081,0.02604754,95.90349468],[4.53362135,0.02604926,95.90419482],[4.5336219,0.02605097,95.90489448],[4.53362245,0.02605269,95.9055937],[4.533623,0.02605441,95.90629249],[4.53362354,0.02605613,95.90699088],[4.53362409,0.02605785,95.90768889],[4.53362464,0.02605957,95.90838657],[4.53362518,0.02606128,95.90908392],[4.53362573,0.026063,95.90978098],[4.53362628,0.02606472,95.91047778],[4.53362682,0.02606644,95.91117433],[4.53362737,0.02606816,95.91187067],[4.53362792,0.02606987,95.91256682],[4.53362846,0.02607159,95.91326281],[4.53362901,0.02607331,95.91395867],[4.53362956,0.02607503,95.91465442],[4.5336301,0.02607675,95.91535008],[4.53363065,0.02607847,95.91604568],[4.5336312,0.02608018,95.91674126],[4.53363174,0.0260819,95.91743682],[4.53363229,0.02608362,95.91813241],[4.53363283,0.02608534,95.91882804],[4.53363338,0.02608706,95.91952374],[4.53363393,0.02608877,95.92021954],[4.53363447,0.02609049,95.92091546],[4.53363502,0.02609221,95.92161153],[4.53363557,0.02609393,95.92230777],[4.53363611,0.02609565,95.92300421],[4.53363666,0.02609737,95.92370087],[4.5336372,0.02609908,95.92439778],[4.53363775,0.0261008,95.92509493],[4.5336383,0.02610252,95.92579234],[4.53363884,0.02610424,95.92649004],[4.53363939,0.02610596,95.92718802],[4.53363993,0.02610768,95.92788631],[4.53364048,0.02610939,95.92858492],[4.53364103,0.02611111,95.92928386],[4.53364157,0.02611283,95.92998315],[4.53364212,0.02611455,95.9306828],[4.53364266,0.02611627,95.93138283],[4.53364321,0.02611799,95.93208324],[4.53364376,0.02611971,95.93278406],[4.5336443,0.02612142,95.9334853],[4.53364485,0.02612314,95.93418697],[4.53364539,0.02612486,95.93488908],[4.53364594,0.02612658,95.93559165],[4.53364648,0.0261283,95.9362947],[4.53364703,0.02613002,95.93699823],[4.53364758,0.02613173,95.93770227],[4.53364812,0.02613345,95.93840681],[4.53364867,0.02613517,95.93911189],[4.53364921,0.02613689,95.93981751],[4.53364976,0.02613861,95.94052368],[4.5336503,0.02614033,95.94123043],[4.53365085,0.02614205,95.94193776],[4.53365139,0.02614376,95.94264568],[4.53365194,0.02614548,95.94335422],[4.53365248,0.0261472,95.94406338],[4.53365303,0.02614892,95.94477318],[4.53365358,0.02615064,95.94548363],[4.53365412,0.02615236,95.94619475],[4.53365467,0.02615408,95.94690655],[4.53365521,0.02615579,95.94761904],[4.53365576,0.02615751,95.94833223],[4.5336563,0.02615923,95.94904615],[4.53365685,0.02616095,95.94976081],[4.53365739,0.02616267,95.95047621],[4.53365794,0.02616439,95.95119237],[4.53365848,0.02616611,95.95190931],[4.53365903,0.02616783,95.95262703],[4.53365957,0.02616954,95.95334556],[4.53366012,0.02617126,95.95406491],[4.53366066,0.02617298,95.95478509],[4.53366121,0.0261747,95.95550611],[4.53366175,0.02617642,95.95622799],[4.53366229,0.02617814,95.95695073],[4.53366284,0.02617986,95.95767437],[4.53366338,0.02618158,95.9583989],[4.53366393,0.02618329,95.95912435],[4.53366447,0.02618501,95.95985072],[4.53366502,0.02618673,95.96057803],[4.53366556,0.02618845,95.96130629],[4.53366611,0.02619017,95.96203552],[4.53366665,0.02619189,95.96276574],[4.5336672,0.02619361,95.96349694],[4.53366774,0.02619533,95.96422916],[4.53366828,0.02619705,95.9649624],[4.53366883,0.02619877,95.96569667],[4.53366937,0.02620048,95.966432],[4.53366992,0.0262022,95.96716839],[4.53367046,0.02620392,95.96790585],[4.53367101,0.02620564,95.96864441],[4.53367155,0.02620736,95.96938403],[4.53367209,0.02620908,95.9701247],[4.53367264,0.0262108,95.97086639],[4.53367318,0.02621252,95.97160908],[4.53367373,0.02621424,95.97235274],[4.53367427,0.02621596,95.97309736],[4.53367481,0.02621767,95.97384291],[4.53367536,0.02621939,95.97458937],[4.5336759,0.02622111,95.97533671],[4.53367645,0.02622283,95.97608492],[4.53367699,0.02622455,95.97683397],[4.53367753,0.02622627,95.97758383],[4.53367808,0.02622799,95.97833448],[4.53367862,0.02622971,95.97908591],[4.53367916,0.02623143,95.97983809],[4.53367971,0.02623315,95.98059099],[4.53368025,0.02623487,95.98134459],[4.5336808,0.02623658,95.98209888],[4.53368134,0.0262383,95.98285382],[4.53368188,0.02624002,95.9836094],[4.53368243,0.02624174,95.98436559],[4.53368297,0.02624346,95.98512237],[4.53368351,0.02624518,95.98587972],[4.53368406,0.0262469,95.98663761],[4.5336846,0.02624862,95.98739602],[4.53368515,0.02625034,95.98815493],[4.53368569,0.02625206,95.98891432],[4.53368623,0.02625378,95.98967416],[4.53368678,0.0262555,95.99043444],[4.53368732,0.02625721,95.99119512],[4.53368786,0.02625893,95.99195618],[4.53368841,0.02626065,95.99271761],[4.53368895,0.02626237,95.99347938],[4.5336895,0.02626409,95.99424147],[4.53369004,0.02626581,95.99500385],[4.53369058,0.02626753,95.9957665],[4.53369113,0.02626925,95.9965294],[4.53369167,0.02627097,95.99729253],[4.53369221,0.02627269,95.99805586],[4.53369276,0.02627441,95.99881937],[4.5336933,0.02627612,95.99958304],[4.53369385,0.02627784,96.00034684],[4.53369439,0.02627956,96.00111075],[4.53369493,0.02628128,96.00187475],[4.53369548,0.026283,96.00263881],[4.53369602,0.02628472,96.00340292],[4.53369657,0.02628644,96.00416704],[4.53369711,0.02628816,96.00493115],[4.53369765,0.02628988,96.00569524],[4.5336982,0.0262916,96.00645927],[4.53369874,0.02629331,96.00722323],[4.53369929,0.02629503,96.00798709],[4.53369983,0.02629675,96.00875083],[4.53370038,0.02629847,96.00951442],[4.53370092,0.02630019,96.01027783],[4.53370147,0.02630191,96.01104106],[4.53370201,0.02630363,96.01180406],[4.53370255,0.02630535,96.01256682],[4.5337031,0.02630707,96.01332931],[4.53370364,0.02630879,96.01409152],[4.53370419,0.0263105,96.0148534],[4.53370473,0.02631222,96.01561495],[4.53370528,0.02631394,96.01637616],[4.53370582,0.02631566,96.01713708],[4.53370637,0.02631738,96.01789772],[4.53370691,0.0263191,96.01865813],[4.53370745,0.02632082,96.01941835],[4.533708,0.02632254,96.0201784],[4.53370854,0.02632426,96.02093832],[4.53370909,0.02632597,96.02169815],[4.53370963,0.02632769,96.02245792],[4.53371018,0.02632941,96.02321766],[4.53371072,0.02633113,96.02397741],[4.53371127,0.02633285,96.02473721],[4.53371181,0.02633457,96.02549708],[4.53371235,0.02633629,96.02625706],[4.5337129,0.02633801,96.02701719],[4.53371344,0.02633973,96.0277775],[4.53371399,0.02634145,96.02853803],[4.53371453,0.02634316,96.02929881],[4.53371507,0.02634488,96.03005988],[4.53371562,0.0263466,96.03082127],[4.53371616,0.02634832,96.03158301],[4.53371671,0.02635004,96.03234514],[4.53371725,0.02635176,96.0331077],[4.53371779,0.02635348,96.03387072],[4.53371834,0.0263552,96.03463423],[4.53371888,0.02635692,96.03539827],[4.53371943,0.02635864,96.03616285],[4.53371997,0.02636036,96.036928],[4.53372051,0.02636207,96.03769372],[4.53372106,0.02636379,96.03846005],[4.5337216,0.02636551,96.039227],[4.53372215,0.02636723,96.03999459],[4.53372269,0.02636895,96.04076284],[4.53372323,0.02637067,96.04153178],[4.53372378,0.02637239,96.04230142],[4.53372432,0.02637411,96.04307178],[4.53372486,0.02637583,96.04384289],[4.53372541,0.02637755,96.04461477],[4.53372595,0.02637927,96.04538743],[4.5337265,0.02638099,96.04616089],[4.53372704,0.0263827,96.04693519],[4.53372758,0.02638442,96.04771034],[4.53372813,0.02638614,96.04848636],[4.53372867,0.02638786,96.04926327],[4.53372922,0.02638958,96.0500411],[4.53372976,0.0263913,96.05081986],[4.5337303,0.02639302,96.05159959],[4.53373085,0.02639474,96.0523803],[4.53373139,0.02639646,96.05316201],[4.53373193,0.02639818,96.05394475],[4.53373248,0.0263999,96.05472854],[4.53373302,0.02640161,96.05551341],[4.53373357,0.02640333,96.05629937],[4.53373411,0.02640505,96.05708645],[4.53373465,0.02640677,96.05787467],[4.5337352,0.02640849,96.058664],[4.53373574,0.02641021,96.05945443],[4.53373629,0.02641193,96.06024592],[4.53373683,0.02641365,96.06103845],[4.53373737,0.02641537,96.06183199],[4.53373792,0.02641709,96.06262652],[4.53373846,0.02641881,96.063422],[4.533739,0.02642053,96.06421841],[4.53373955,0.02642224,96.06501571],[4.53374009,0.02642396,96.06581387],[4.53374064,0.02642568,96.06661287],[4.53374118,0.0264274,96.06741266],[4.53374173,0.02642912,96.06821323],[4.53374227,0.02643084,96.06901453],[4.53374281,0.02643256,96.06981654],[4.53374336,0.02643428,96.07061923],[4.5337439,0.026436,96.07142257],[4.53374445,0.02643772,96.07222652],[4.53374499,0.02643943,96.07303105],[4.53374553,0.02644115,96.07383614],[4.53374608,0.02644287,96.07464175],[4.53374662,0.02644459,96.07544784],[4.53374717,0.02644631,96.0762544],[4.53374771,0.02644803,96.07706138],[4.53374826,0.02644975,96.07786875],[4.5337488,0.02645147,96.07867649],[4.53374935,0.02645319,96.07948456],[4.53374989,0.02645491,96.08029292],[4.53375043,0.02645662,96.08110155],[4.53375098,0.02645834,96.08191042],[4.53375152,0.02646006,96.08271949],[4.53375207,0.02646178,96.08352873],[4.53375261,0.0264635,96.0843381],[4.53375316,0.02646522,96.08514759],[4.5337537,0.02646694,96.08595714],[4.53375425,0.02646866,96.08676673],[4.53375479,0.02647038,96.08757633],[4.53375534,0.0264721,96.08838591],[4.53375588,0.02647381,96.08919542],[4.53375642,0.02647553,96.09000485],[4.53375697,0.02647725,96.09081415],[4.53375751,0.02647897,96.09162329],[4.53375806,0.02648069,96.09243224],[4.5337586,0.02648241,96.09324097],[4.53375915,0.02648413,96.09404944],[4.53375969,0.02648585,96.09485762],[4.53376024,0.02648756,96.09566547],[4.53376078,0.02648928,96.09647297],[4.53376133,0.026491,96.09728008],[4.53376187,0.02649272,96.09808676],[4.53376242,0.02649444,96.09889298],[4.53376296,0.02649616,96.0996987],[4.53376351,0.02649788,96.1005039],[4.53376405,0.0264996,96.10130854],[4.5337646,0.02650132,96.10211259],[4.53376514,0.02650303,96.102916],[4.53376569,0.02650475,96.10371875],[4.53376623,0.02650647,96.10452079],[4.53376678,0.02650819,96.10532211],[4.53376732,0.02650991,96.10612265],[4.53376787,0.02651163,96.10692239],[4.53376841,0.02651335,96.10772129],[4.53376896,0.02651507,96.10851932],[4.5337695,0.02651678,96.10931643],[4.53377005,0.0265185,96.11011261],[4.53377059,0.02652022,96.1109078],[4.53377114,0.02652194,96.11170198],[4.53377168,0.02652366,96.11249511],[4.53377223,0.02652538,96.11328715],[4.53377277,0.0265271,96.11407807],[4.53377332,0.02652882,96.11486784],[4.53377386,0.02653054,96.11565642],[4.53377441,0.02653225,96.11644377],[4.53377495,0.02653397,96.11722986],[4.5337755,0.02653569,96.11801466],[4.53377604,0.02653741,96.11879812],[4.53377659,0.02653913,96.11958022],[4.53377713,0.02654085,96.12036091],[4.53377768,0.02654257,96.12114016],[4.53377822,0.02654429,96.12191795],[4.53377877,0.026546,96.12269427],[4.53377931,0.02654772,96.1234692],[4.53377986,0.02654944,96.12424277],[4.5337804,0.02655116,96.12501506],[4.53378095,0.02655288,96.12578612],[4.53378149,0.0265546,96.12655601],[4.53378204,0.02655632,96.12732479],[4.53378258,0.02655804,96.12809252],[4.53378313,0.02655976,96.12885925],[4.53378367,0.02656147,96.12962505],[4.53378422,0.02656319,96.13038998],[4.53378476,0.02656491,96.13115409],[4.53378531,0.02656663,96.13191744],[4.53378585,0.02656835,96.1326801],[4.5337864,0.02657007,96.13344212],[4.53378695,0.02657179,96.13420356],[4.53378749,0.0265735,96.13496449],[4.53378804,0.02657522,96.13572496],[4.53378858,0.02657694,96.13648504],[4.53378913,0.02657866,96.13724477],[4.53378967,0.02658038,96.13800423],[4.53379022,0.0265821,96.13876347],[4.53379077,0.02658382,96.13952255],[4.53379131,0.02658553,96.14028153],[4.53379186,0.02658725,96.14104047],[4.5337924,0.02658897,96.14179943],[4.53379295,0.02659069,96.14255847],[4.53379349,0.02659241,96.14331765],[4.53379404,0.02659413,96.14407703],[4.53379459,0.02659585,96.14483667],[4.53379513,0.02659756,96.14559662],[4.53379568,0.02659928,96.14635694],[4.53379622,0.026601,96.1471177],[4.53379677,0.02660272,96.14787895],[4.53379732,0.02660444,96.14864073],[4.53379786,0.02660616,96.14940298],[4.53379841,0.02660788,96.15016565],[4.53379895,0.02660959,96.15092866],[4.5337995,0.02661131,96.15169194],[4.53380004,0.02661303,96.15245542],[4.53380059,0.02661475,96.15321903],[4.53380113,0.02661647,96.15398271],[4.53380168,0.02661819,96.15474637],[4.53380223,0.02661991,96.15550995],[4.53380277,0.02662163,96.15627339],[4.53380332,0.02662334,96.1570366],[4.53380386,0.02662506,96.15779952],[4.53380441,0.02662678,96.15856208],[4.53380495,0.0266285,96.1593242],[4.53380549,0.02663022,96.16008581],[4.53380604,0.02663194,96.16084685],[4.53380658,0.02663366,96.16160725],[4.53380713,0.02663538,96.16236693],[4.53380767,0.0266371,96.16312582],[4.53380822,0.02663881,96.16388387],[4.53380876,0.02664053,96.16464099],[4.53380931,0.02664225,96.16539713],[4.53380985,0.02664397,96.16615221],[4.53381039,0.02664569,96.16690616],[4.53381094,0.02664741,96.16765893],[4.53381148,0.02664913,96.16841043],[4.53381203,0.02665085,96.1691606],[4.53381257,0.02665257,96.16990937],[4.53381311,0.02665429,96.17065668],[4.53381366,0.02665601,96.17140245],[4.5338142,0.02665773,96.17214662],[4.53381475,0.02665944,96.17288912],[4.53381529,0.02666116,96.17362988],[4.53381583,0.02666288,96.17436884],[4.53381638,0.0266646,96.17510592],[4.53381692,0.02666632,96.17584107],[4.53381746,0.02666804,96.17657421],[4.53381801,0.02666976,96.17730527],[4.53381855,0.02667148,96.1780342],[4.53381909,0.0266732,96.17876092],[4.53381964,0.02667492,96.17948536],[4.53382018,0.02667664,96.18020747],[4.53382072,0.02667836,96.18092717],[4.53382127,0.02668008,96.1816444],[4.53382181,0.0266818,96.1823591],[4.53382235,0.02668351,96.1830712]],"type":"LineString"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":2,"type":"none","predecessorId":2}},{"geometry":{"coordinates":[[4.53342999,0.02597467,95.68423833],[4.53342944,0.02597295,95.68336341],[4.53342889,0.02597124,95.68248904],[4.53342834,0.02596952,95.6816152],[4.53342779,0.0259678,95.6807419],[4.53342724,0.02596609,95.67986914],[4.53342669,0.02596437,95.67899693],[4.53342614,0.02596265,95.67812525],[4.53342559,0.02596094,95.67725412],[4.53342505,0.02595922,95.67638353],[4.5334245,0.0259575,95.67551348],[4.53342395,0.02595579,95.67464398],[4.5334234,0.02595407,95.67377501],[4.53342285,0.02595235,95.67290659],[4.5334223,0.02595064,95.67203871],[4.53342175,0.02594892,95.67117138],[4.5334212,0.02594721,95.67030458],[4.53342065,0.02594549,95.66943834],[4.5334201,0.02594377,95.66857263],[4.53341955,0.02594206,95.66770747],[4.533419,0.02594034,95.66684285],[4.53341845,0.02593862,95.66597877],[4.5334179,0.02593691,95.66511524],[4.53341735,0.02593519,95.66425225],[4.5334168,0.02593347,95.6633898],[4.53341625,0.02593176,95.66252789],[4.5334157,0.02593004,95.66166653],[4.53341515,0.02592833,95.66080571],[4.5334146,0.02592661,95.65994543],[4.53341405,0.02592489,95.65908569],[4.5334135,0.02592318,95.6582265],[4.53341295,0.02592146,95.65736784],[4.5334124,0.02591975,95.65650973],[4.53341185,0.02591803,95.65565215],[4.5334113,0.02591631,95.65479512],[4.53341075,0.0259146,95.65393863],[4.5334102,0.02591288,95.65308267],[4.53340965,0.02591117,95.65222725],[4.5334091,0.02590945,95.65137238],[4.53340854,0.02590773,95.65051804],[4.53340799,0.02590602,95.64966424],[4.53340744,0.0259043,95.64881097],[4.53340689,0.02590259,95.64795825],[4.53340634,0.02590087,95.64710605],[4.53340579,0.02589916,95.6462544],[4.53340523,0.02589744,95.64540327],[4.53340468,0.02589572,95.64455266],[4.53340413,0.02589401,95.64370256],[4.53340358,0.02589229,95.64285302],[4.53340302,0.02589058,95.64200417],[4.53340247,0.02588886,95.64115614],[4.53340192,0.02588715,95.64030907],[4.53340136,0.02588543,95.63946308],[4.53340081,0.02588372,95.63861832],[4.53340026,0.025882,95.63777491],[4.53339971,0.02588029,95.63693298],[4.53339916,0.02587857,95.63609267],[4.5333986,0.02587685,95.63525412],[4.53339805,0.02587514,95.63441745],[4.5333975,0.02587342,95.6335828],[4.53339695,0.02587171,95.6327503],[4.5333964,0.02586999,95.63192009],[4.53339585,0.02586827,95.63109229],[4.5333953,0.02586656,95.63026706],[4.53339476,0.02586484,95.62944451],[4.53339421,0.02586312,95.62862479],[4.53339366,0.02586141,95.62780802],[4.53339311,0.02585969,95.62699435],[4.53339257,0.02585797,95.62618386],[4.53339202,0.02585625,95.62537642],[4.53339148,0.02585453,95.62457183],[4.53339094,0.02585282,95.62376991],[4.5333904,0.0258511,95.62297046],[4.53338985,0.02584938,95.62217328],[4.53338931,0.02584766,95.62137818],[4.53338877,0.02584594,95.62058483],[4.53338823,0.02584422,95.61979279],[4.53338769,0.0258425,95.6190016],[4.53338716,0.02584078,95.61821081],[4.53338662,0.02583906,95.61741996],[4.53338608,0.02583734,95.61662861],[4.53338554,0.02583562,95.61583629],[4.53338501,0.0258339,95.61504255],[4.53338447,0.02583218,95.61424694],[4.53338393,0.02583045,95.6134491],[4.5333834,0.02582873,95.61264912],[4.53338286,0.02582701,95.61184719],[4.53338233,0.02582529,95.6110435],[4.5333818,0.02582357,95.61023823],[4.53338126,0.02582185,95.60943159],[4.53338073,0.02582013,95.60862376],[4.53338019,0.02581841,95.60781493],[4.53337966,0.02581669,95.60700529],[4.53337913,0.02581496,95.60619504],[4.53337859,0.02581324,95.60538438],[4.53337806,0.02581152,95.60457348],[4.53337753,0.0258098,95.60376254],[4.53337699,0.02580808,95.60295176],[4.53337646,0.02580636,95.60214132],[4.53337592,0.02580463,95.60133141],[4.53337539,0.02580291,95.60052221],[4.53337485,0.02580119,95.59971392],[4.53337432,0.02579947,95.59890672],[4.53337378,0.02579775,95.5981008],[4.53337325,0.02579603,95.59729635],[4.53337271,0.02579431,95.59649355],[4.53337217,0.02579259,95.59569235],[4.53337164,0.02579087,95.59489252],[4.5333711,0.02578915,95.59409391],[4.53337056,0.02578743,95.59329646],[4.53337002,0.02578571,95.59250013],[4.53336948,0.02578399,95.59170488],[4.53336893,0.02578227,95.59091067],[4.53336839,0.02578055,95.59011745],[4.53336784,0.02577883,95.58932518],[4.5333673,0.02577712,95.58853383],[4.53336675,0.0257754,95.58774334],[4.53336621,0.02577368,95.58695367],[4.53336566,0.02577196,95.58616479],[4.53336511,0.02577025,95.58537664],[4.53336456,0.02576853,95.58458919],[4.53336402,0.02576681,95.5838024],[4.53336347,0.0257651,95.58301621],[4.53336292,0.02576338,95.58223059],[4.53336237,0.02576166,95.58144549],[4.53336182,0.02575995,95.58066089],[4.53336127,0.02575823,95.57987678],[4.53336072,0.02575651,95.57909316],[4.53336017,0.0257548,95.57831002],[4.53335962,0.02575308,95.57752735],[4.53335907,0.02575136,95.57674514],[4.53335853,0.02574965,95.57596339],[4.53335798,0.02574793,95.57518212],[4.53335743,0.02574621,95.5744015],[4.53335688,0.0257445,95.57362167],[4.53335633,0.02574278,95.57284267],[4.53335578,0.02574106,95.57206447],[4.53335523,0.02573935,95.57128707],[4.53335468,0.02573763,95.57051044],[4.53335413,0.02573591,95.56973459],[4.53335358,0.0257342,95.5689595],[4.53335303,0.02573248,95.56818516],[4.53335248,0.02573077,95.56741158],[4.53335193,0.02572905,95.56663873],[4.53335138,0.02572733,95.56586662],[4.53335083,0.02572562,95.56509524],[4.53335027,0.0257239,95.56432458],[4.53334972,0.02572219,95.56355463],[4.53334916,0.02572047,95.56278539],[4.53334861,0.02571876,95.56201684],[4.53334805,0.02571705,95.56124898],[4.53334749,0.02571533,95.56048181],[4.53334693,0.02571362,95.55971532],[4.53334637,0.02571191,95.55894948],[4.53334581,0.02571019,95.55818419],[4.53334525,0.02570848,95.55741919],[4.53334469,0.02570677,95.55665423],[4.53334413,0.02570506,95.55588908],[4.53334356,0.02570335,95.55512355],[4.533343,0.02570163,95.55435771],[4.53334243,0.02569992,95.55359168],[4.53334187,0.02569821,95.55282561],[4.5333413,0.0256965,95.55205962],[4.53334073,0.02569479,95.55129384],[4.53334016,0.02569308,95.55052841],[4.5333396,0.02569137,95.54976346],[4.53333903,0.02568966,95.54899912],[4.53333846,0.02568795,95.54823553],[4.53333789,0.02568624,95.54747281],[4.53333733,0.02568453,95.5467111],[4.53333676,0.02568282,95.54595052],[4.53333619,0.02568111,95.5451912],[4.53333563,0.02567939,95.54443328],[4.53333506,0.02567768,95.54367689],[4.5333345,0.02567597,95.54292215],[4.53333394,0.02567426,95.5421692],[4.53333337,0.02567255,95.54141816],[4.53333281,0.02567083,95.54066917],[4.53333225,0.02566912,95.53992236],[4.5333317,0.02566741,95.53917785],[4.53333114,0.02566569,95.53843577],[4.53333058,0.02566398,95.53769627],[4.53333003,0.02566226,95.53695945],[4.53332948,0.02566055,95.5362252],[4.53332893,0.02565883,95.5354932],[4.53332838,0.02565712,95.53476308],[4.53332783,0.0256554,95.5340345],[4.53332729,0.02565368,95.53330711],[4.53332674,0.02565196,95.53258056],[4.5333262,0.02565024,95.5318545],[4.53332566,0.02564853,95.53112858],[4.53332512,0.02564681,95.53040247],[4.53332458,0.02564509,95.52967584],[4.53332403,0.02564337,95.52894855],[4.53332349,0.02564165,95.52822065],[4.53332295,0.02563993,95.52749218],[4.53332241,0.02563821,95.52676317],[4.53332187,0.02563649,95.52603364],[4.53332133,0.02563477,95.52530357],[4.5333208,0.02563305,95.52457298],[4.53332026,0.02563133,95.52384186],[4.53331972,0.02562961,95.52311021],[4.53331918,0.02562789,95.52237802],[4.53331864,0.02562617,95.52164531],[4.5333181,0.02562445,95.52091207],[4.53331756,0.02562274,95.52017829],[4.53331702,0.02562102,95.51944399],[4.53331648,0.0256193,95.51870915],[4.53331594,0.02561758,95.51797378],[4.53331539,0.02561586,95.51723788],[4.53331485,0.02561414,95.51650144],[4.53331431,0.02561242,95.51576447],[4.53331377,0.0256107,95.51502696],[4.53331322,0.02560899,95.51428892],[4.53331268,0.02560727,95.51355035],[4.53331213,0.02560555,95.51281124],[4.53331158,0.02560383,95.51207166],[4.53331103,0.02560212,95.51133189],[4.53331049,0.0256004,95.5105923],[4.53330994,0.02559868,95.50985321],[4.53330939,0.02559697,95.50911481],[4.53330884,0.02559525,95.50837707],[4.53330829,0.02559354,95.50763996],[4.53330774,0.02559182,95.50690348],[4.53330719,0.0255901,95.50616759],[4.53330664,0.02558839,95.50543227],[4.53330609,0.02558667,95.5046975],[4.53330553,0.02558496,95.50396325],[4.53330498,0.02558324,95.5032295],[4.53330443,0.02558153,95.50249624],[4.53330388,0.02557981,95.50176343],[4.53330332,0.02557809,95.50103105],[4.53330277,0.02557638,95.50029908],[4.53330222,0.02557466,95.4995675],[4.53330167,0.02557295,95.49883628],[4.53330111,0.02557123,95.4981054],[4.53330056,0.02556952,95.49737484],[4.5333,0.02556781,95.49664458],[4.53329945,0.02556609,95.49591458],[4.5332989,0.02556438,95.49518484],[4.53329834,0.02556266,95.49445532],[4.53329779,0.02556095,95.493726],[4.53329723,0.02555923,95.49299687],[4.53329668,0.02555752,95.49226789],[4.53329612,0.0255558,95.49153905],[4.53329557,0.02555409,95.48671351],[4.53329501,0.02555237,95.47914782],[4.53329492,0.02555209,95.47753252]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-7,"type":"none","predecessorId":-7}},{"geometry":{"coordinates":[[4.53346859,0.02596217,95.68423833],[4.53346804,0.02596046,95.68336341],[4.53346749,0.02595874,95.68248904],[4.53346694,0.02595702,95.6816152],[4.53346639,0.02595531,95.6807419],[4.53346584,0.02595359,95.67986914],[4.53346529,0.02595187,95.67899693],[4.53346474,0.02595016,95.67812525],[4.53346419,0.02594844,95.67725412],[4.53346365,0.02594672,95.67638353],[4.5334631,0.02594501,95.67551348],[4.53346255,0.02594329,95.67464398],[4.533462,0.02594157,95.67377501],[4.53346145,0.02593986,95.67290659],[4.5334609,0.02593814,95.67203871],[4.53346035,0.02593642,95.67117138],[4.5334598,0.02593471,95.67030458],[4.53345925,0.02593299,95.66943834],[4.5334587,0.02593127,95.66857263],[4.53345815,0.02592956,95.66770747],[4.5334576,0.02592784,95.66684285],[4.53345706,0.02592612,95.66597877],[4.53345651,0.02592441,95.66511524],[4.53345596,0.02592269,95.66425225],[4.53345541,0.02592097,95.6633898],[4.53345486,0.02591926,95.66252789],[4.53345431,0.02591754,95.66166653],[4.53345376,0.02591582,95.66080571],[4.53345321,0.02591411,95.65994543],[4.53345266,0.02591239,95.65908569],[4.53345211,0.02591067,95.6582265],[4.53345156,0.02590896,95.65736784],[4.53345101,0.02590724,95.65650973],[4.53345046,0.02590552,95.65565215],[4.53344991,0.02590381,95.65479512],[4.53344936,0.02590209,95.65393863],[4.53344881,0.02590037,95.65308267],[4.53344826,0.02589866,95.65222725],[4.53344771,0.02589694,95.65137238],[4.53344716,0.02589523,95.65051804],[4.53344661,0.02589351,95.64966424],[4.53344606,0.02589179,95.64881097],[4.53344551,0.02589008,95.64795825],[4.53344496,0.02588836,95.64710605],[4.53344441,0.02588664,95.6462544],[4.53344386,0.02588493,95.64540327],[4.53344331,0.02588321,95.64455266],[4.53344276,0.02588149,95.64370256],[4.53344221,0.02587978,95.64285302],[4.53344166,0.02587806,95.64200417],[4.5334411,0.02587635,95.64115614],[4.53344055,0.02587463,95.64030907],[4.53344,0.02587291,95.63946308],[4.53343945,0.0258712,95.63861832],[4.5334389,0.02586948,95.63777491],[4.53343835,0.02586776,95.63693298],[4.5334378,0.02586605,95.63609267],[4.53343725,0.02586433,95.63525412],[4.5334367,0.02586261,95.63441745],[4.53343615,0.0258609,95.6335828],[4.53343561,0.02585918,95.6327503],[4.53343506,0.02585746,95.63192009],[4.53343451,0.02585575,95.63109229],[4.53343396,0.02585403,95.63026706],[4.53343342,0.02585231,95.62944451],[4.53343287,0.02585059,95.62862479],[4.53343233,0.02584888,95.62780802],[4.53343178,0.02584716,95.62699435],[4.53343124,0.02584544,95.62618386],[4.5334307,0.02584372,95.62537642],[4.53343016,0.025842,95.62457183],[4.53342961,0.02584028,95.62376991],[4.53342907,0.02583856,95.62297046],[4.53342853,0.02583684,95.62217328],[4.53342799,0.02583512,95.62137818],[4.53342745,0.0258334,95.62058483],[4.53342691,0.02583168,95.61979279],[4.53342638,0.02582996,95.6190016],[4.53342584,0.02582824,95.61821081],[4.5334253,0.02582652,95.61741996],[4.53342476,0.0258248,95.61662861],[4.53342422,0.02582308,95.61583629],[4.53342368,0.02582136,95.61504255],[4.53342313,0.02581964,95.61424694],[4.53342259,0.02581792,95.6134491],[4.53342205,0.02581621,95.61264912],[4.5334215,0.02581449,95.61184719],[4.53342096,0.02581277,95.6110435],[4.53342042,0.02581105,95.61023823],[4.53341987,0.02580934,95.60943159],[4.53341932,0.02580762,95.60862376],[4.53341878,0.0258059,95.60781493],[4.53341823,0.02580418,95.60700529],[4.53341768,0.02580247,95.60619504],[4.53341713,0.02580075,95.60538438],[4.53341659,0.02579903,95.60457348],[4.53341604,0.02579731,95.60376254],[4.53341549,0.0257956,95.60295176],[4.53341494,0.02579388,95.60214132],[4.53341439,0.02579216,95.60133141],[4.53341384,0.02579045,95.60052221],[4.5334133,0.02578873,95.59971392],[4.53341275,0.02578701,95.59890672],[4.5334122,0.0257853,95.5981008],[4.53341165,0.02578358,95.59729635],[4.5334111,0.02578186,95.59649355],[4.53341055,0.02578014,95.59569235],[4.53341001,0.02577843,95.59489252],[4.53340946,0.02577671,95.59409391],[4.53340891,0.02577499,95.59329646],[4.53340837,0.02577327,95.59250013],[4.53340782,0.02577156,95.59170488],[4.53340727,0.02576984,95.59091067],[4.53340672,0.02576812,95.59011745],[4.53340618,0.0257664,95.58932518],[4.53340563,0.02576469,95.58853383],[4.53340508,0.02576297,95.58774334],[4.53340453,0.02576125,95.58695367],[4.53340399,0.02575954,95.58616479],[4.53340344,0.02575782,95.58537664],[4.53340289,0.0257561,95.58458919],[4.53340234,0.02575438,95.5838024],[4.5334018,0.02575267,95.58301621],[4.53340125,0.02575095,95.58223059],[4.5334007,0.02574923,95.58144549],[4.53340015,0.02574752,95.58066089],[4.5333996,0.0257458,95.57987678],[4.53339905,0.02574408,95.57909316],[4.5333985,0.02574237,95.57831002],[4.53339796,0.02574065,95.57752735],[4.53339741,0.02573893,95.57674514],[4.53339686,0.02573722,95.57596339],[4.53339631,0.0257355,95.57518212],[4.53339576,0.02573378,95.5744015],[4.5333952,0.02573207,95.57362167],[4.53339465,0.02573035,95.57284267],[4.5333941,0.02572863,95.57206447],[4.53339355,0.02572692,95.57128707],[4.533393,0.0257252,95.57051044],[4.53339245,0.02572349,95.56973459],[4.5333919,0.02572177,95.5689595],[4.53339135,0.02572005,95.56818516],[4.53339079,0.02571834,95.56741158],[4.53339024,0.02571662,95.56663873],[4.53338969,0.02571491,95.56586662],[4.53338914,0.02571319,95.56509524],[4.53338858,0.02571148,95.56432458],[4.53338803,0.02570976,95.56355463],[4.53338748,0.02570805,95.56278539],[4.53338692,0.02570633,95.56201684],[4.53338637,0.02570461,95.56124898],[4.53338582,0.0257029,95.56048181],[4.53338526,0.02570118,95.55971532],[4.53338471,0.02569947,95.55894948],[4.53338416,0.02569775,95.55818419],[4.5333836,0.02569604,95.55741919],[4.53338305,0.02569432,95.55665423],[4.53338249,0.02569261,95.55588908],[4.53338194,0.02569089,95.55512355],[4.53338138,0.02568918,95.55435771],[4.53338083,0.02568746,95.55359168],[4.53338027,0.02568575,95.55282561],[4.53337971,0.02568404,95.55205962],[4.53337916,0.02568232,95.55129384],[4.5333786,0.02568061,95.55052841],[4.53337804,0.02567889,95.54976346],[4.53337749,0.02567718,95.54899912],[4.53337693,0.02567546,95.54823553],[4.53337637,0.02567375,95.54747281],[4.53337582,0.02567204,95.5467111],[4.53337526,0.02567032,95.54595052],[4.5333747,0.02566861,95.5451912],[4.53337415,0.02566689,95.54443328],[4.53337359,0.02566518,95.54367689],[4.53337304,0.02566346,95.54292215],[4.53337248,0.02566175,95.5421692],[4.53337193,0.02566003,95.54141816],[4.53337137,0.02565832,95.54066917],[4.53337082,0.0256566,95.53992236],[4.53337027,0.02565489,95.53917785],[4.53336972,0.02565317,95.53843577],[4.53336916,0.02565146,95.53769627],[4.53336861,0.02564974,95.53695945],[4.53336806,0.02564802,95.5362252],[4.53336751,0.02564631,95.5354932],[4.53336696,0.02564459,95.53476308],[4.53336641,0.02564287,95.5340345],[4.53336587,0.02564116,95.53330711],[4.53336532,0.02563944,95.53258056],[4.53336477,0.02563772,95.5318545],[4.53336422,0.02563601,95.53112858],[4.53336367,0.02563429,95.53040247],[4.53336312,0.02563257,95.52967584],[4.53336258,0.02563086,95.52894855],[4.53336203,0.02562914,95.52822065],[4.53336148,0.02562742,95.52749218],[4.53336093,0.02562571,95.52676317],[4.53336038,0.02562399,95.52603364],[4.53335983,0.02562227,95.52530357],[4.53335928,0.02562056,95.52457298],[4.53335873,0.02561884,95.52384186],[4.53335818,0.02561712,95.52311021],[4.53335763,0.02561541,95.52237802],[4.53335708,0.02561369,95.52164531],[4.53335653,0.02561197,95.52091207],[4.53335598,0.02561026,95.52017829],[4.53335543,0.02560854,95.51944399],[4.53335488,0.02560683,95.51870915],[4.53335433,0.02560511,95.51797378],[4.53335378,0.02560339,95.51723788],[4.53335323,0.02560168,95.51650144],[4.53335268,0.02559996,95.51576447],[4.53335213,0.02559824,95.51502696],[4.53335158,0.02559653,95.51428892],[4.53335102,0.02559481,95.51355035],[4.53335047,0.0255931,95.51281124],[4.53334992,0.02559138,95.51207166],[4.53334937,0.02558966,95.51133189],[4.53334882,0.02558795,95.5105923],[4.53334827,0.02558623,95.50985321],[4.53334772,0.02558452,95.50911481],[4.53334717,0.0255828,95.50837707],[4.53334662,0.02558108,95.50763996],[4.53334606,0.02557937,95.50690348],[4.53334551,0.02557765,95.50616759],[4.53334496,0.02557594,95.50543227],[4.53334441,0.02557422,95.5046975],[4.53334386,0.0255725,95.50396325],[4.53334331,0.02557079,95.5032295],[4.53334276,0.02556907,95.50249624],[4.53334221,0.02556736,95.50176343],[4.53334166,0.02556564,95.50103105],[4.53334111,0.02556392,95.50029908],[4.53334056,0.02556221,95.4995675],[4.53334001,0.02556049,95.49883628],[4.53333946,0.02555878,95.4981054],[4.5333389,0.02555706,95.49737484],[4.53333835,0.02555534,95.49664458],[4.5333378,0.02555363,95.49591458],[4.53333725,0.02555191,95.49518484],[4.5333367,0.0255502,95.49445532],[4.53333614,0.02554848,95.493726],[4.53333559,0.02554677,95.49299687],[4.53333504,0.02554505,95.49226789],[4.5333343,0.02554339,95.49153905],[4.53333225,0.02554217,95.48671351],[4.53332865,0.02554144,95.47914782],[4.53332796,0.02554135,95.47753252]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-6,"type":"border","predecessorId":-6}},{"geometry":{"coordinates":[[4.5334699,0.02596175,95.53423833],[4.53346935,0.02596003,95.53336341],[4.5334688,0.02595832,95.53248904],[4.53346825,0.0259566,95.5316152],[4.5334677,0.02595488,95.5307419],[4.53346716,0.02595316,95.52986914],[4.53346661,0.02595145,95.52899693],[4.53346606,0.02594973,95.52812525],[4.53346551,0.02594801,95.52725412],[4.53346496,0.0259463,95.52638353],[4.53346442,0.02594458,95.52551348],[4.53346387,0.02594286,95.52464398],[4.53346332,0.02594115,95.52377501],[4.53346277,0.02593943,95.52290659],[4.53346222,0.02593771,95.52203871],[4.53346167,0.02593599,95.52117138],[4.53346113,0.02593428,95.52030458],[4.53346058,0.02593256,95.51943834],[4.53346003,0.02593084,95.51857263],[4.53345948,0.02592913,95.51770747],[4.53345893,0.02592741,95.51684285],[4.53345838,0.02592569,95.51597877],[4.53345784,0.02592398,95.51511524],[4.53345729,0.02592226,95.51425225],[4.53345674,0.02592054,95.5133898],[4.53345619,0.02591882,95.51252789],[4.53345564,0.02591711,95.51166653],[4.53345509,0.02591539,95.51080571],[4.53345455,0.02591367,95.50994543],[4.533454,0.02591196,95.50908569],[4.53345345,0.02591024,95.5082265],[4.5334529,0.02590852,95.50736784],[4.53345235,0.02590681,95.50650973],[4.5334518,0.02590509,95.50565215],[4.53345125,0.02590337,95.50479512],[4.5334507,0.02590166,95.50393863],[4.53345015,0.02589994,95.50308267],[4.53344961,0.02589822,95.50222725],[4.53344906,0.02589651,95.50137238],[4.53344851,0.02589479,95.50051804],[4.53344796,0.02589307,95.49966424],[4.53344741,0.02589136,95.49881097],[4.53344686,0.02588964,95.49795825],[4.53344631,0.02588792,95.49710605],[4.53344576,0.02588621,95.4962544],[4.53344521,0.02588449,95.49540327],[4.53344466,0.02588277,95.49455266],[4.53344411,0.02588106,95.49370256],[4.53344356,0.02587934,95.49285302],[4.53344301,0.02587763,95.49200417],[4.53344246,0.02587591,95.49115614],[4.53344191,0.02587419,95.49030907],[4.53344135,0.02587248,95.48946308],[4.5334408,0.02587076,95.48861832],[4.53344025,0.02586904,95.48777491],[4.5334397,0.02586733,95.48693298],[4.53343915,0.02586561,95.48609267],[4.5334386,0.02586389,95.48525412],[4.53343806,0.02586218,95.48441745],[4.53343751,0.02586046,95.4835828],[4.53343696,0.02585874,95.4827503],[4.53343641,0.02585703,95.48192009],[4.53343586,0.02585531,95.48109229],[4.53343532,0.02585359,95.48026706],[4.53343477,0.02585187,95.47944451],[4.53343422,0.02585016,95.47862479],[4.53343368,0.02584844,95.47780802],[4.53343313,0.02584672,95.47699435],[4.53343259,0.025845,95.47618386],[4.53343205,0.02584328,95.47537642],[4.5334315,0.02584156,95.47457183],[4.53343096,0.02583984,95.47376991],[4.53343042,0.02583813,95.47297046],[4.53342988,0.02583641,95.47217328],[4.53342934,0.02583469,95.47137818],[4.5334288,0.02583297,95.47058483],[4.53342826,0.02583125,95.46979279],[4.53342771,0.02582953,95.4690016],[4.53342717,0.02582781,95.46821081],[4.53342663,0.02582609,95.46741996],[4.53342609,0.02582437,95.46662861],[4.53342555,0.02582265,95.46583629],[4.53342501,0.02582093,95.46504255],[4.53342446,0.02581921,95.46424694],[4.53342392,0.02581749,95.4634491],[4.53342337,0.02581578,95.46264912],[4.53342283,0.02581406,95.46184719],[4.53342228,0.02581234,95.4610435],[4.53342173,0.02581063,95.46023823],[4.53342119,0.02580891,95.45943159],[4.53342064,0.02580719,95.45862376],[4.53342009,0.02580548,95.45781493],[4.53341954,0.02580376,95.45700529],[4.53341899,0.02580204,95.45619504],[4.53341844,0.02580033,95.45538438],[4.53341789,0.02579861,95.45457348],[4.53341733,0.02579689,95.45376254],[4.53341678,0.02579518,95.45295176],[4.53341623,0.02579346,95.45214132],[4.53341568,0.02579175,95.45133141],[4.53341513,0.02579003,95.45052221],[4.53341458,0.02578831,95.44971392],[4.53341403,0.0257866,95.44890672],[4.53341347,0.02578488,95.4481008],[4.53341292,0.02578317,95.44729635],[4.53341237,0.02578145,95.44649355],[4.53341182,0.02577973,95.44569235],[4.53341127,0.02577802,95.44489252],[4.53341072,0.0257763,95.44409391],[4.53341017,0.02577458,95.44329646],[4.53340962,0.02577287,95.44250013],[4.53340907,0.02577115,95.44170488],[4.53340852,0.02576943,95.44091067],[4.53340797,0.02576772,95.44011745],[4.53340742,0.025766,95.43932518],[4.53340687,0.02576428,95.43853383],[4.53340632,0.02576257,95.43774334],[4.53340577,0.02576085,95.43695367],[4.53340522,0.02575914,95.43616479],[4.53340467,0.02575742,95.43537664],[4.53340412,0.0257557,95.43458919],[4.53340357,0.02575399,95.4338024],[4.53340302,0.02575227,95.43301621],[4.53340247,0.02575055,95.43223059],[4.53340192,0.02574884,95.43144549],[4.53340137,0.02574712,95.43066089],[4.53340082,0.0257454,95.42987678],[4.53340027,0.02574369,95.42909316],[4.53339972,0.02574197,95.42831002],[4.53339917,0.02574025,95.42752735],[4.53339862,0.02573854,95.42674514],[4.53339807,0.02573682,95.42596339],[4.53339752,0.0257351,95.42518212],[4.53339697,0.02573339,95.4244015],[4.53339642,0.02573167,95.42362167],[4.53339587,0.02572996,95.42284267],[4.53339532,0.02572824,95.42206447],[4.53339477,0.02572652,95.42128707],[4.53339422,0.02572481,95.42051044],[4.53339367,0.02572309,95.41973459],[4.53339312,0.02572137,95.4189595],[4.53339257,0.02571966,95.41818516],[4.53339202,0.02571794,95.41741158],[4.53339147,0.02571623,95.41663873],[4.53339092,0.02571451,95.41586662],[4.53339037,0.02571279,95.41509524],[4.53338981,0.02571108,95.41432458],[4.53338926,0.02570936,95.41355463],[4.53338871,0.02570764,95.41278539],[4.53338816,0.02570593,95.41201684],[4.53338761,0.02570421,95.41124898],[4.53338706,0.02570249,95.41048181],[4.53338651,0.02570078,95.40971532],[4.53338596,0.02569906,95.40894948],[4.53338541,0.02569735,95.40818419],[4.53338486,0.02569563,95.40741919],[4.53338431,0.02569391,95.40665423],[4.53338376,0.0256922,95.40588908],[4.53338321,0.02569048,95.40512355],[4.53338266,0.02568877,95.40435771],[4.53338211,0.02568705,95.40359168],[4.53338155,0.02568533,95.40282561],[4.533381,0.02568362,95.40205962],[4.53338045,0.0256819,95.40129384],[4.5333799,0.02568019,95.40052841],[4.53337934,0.02567847,95.39976346],[4.53337879,0.02567676,95.39899912],[4.53337824,0.02567504,95.39823553],[4.53337769,0.02567332,95.39747281],[4.53337714,0.02567161,95.3967111],[4.53337658,0.02566989,95.39595052],[4.53337603,0.02566818,95.3951912],[4.53337548,0.02566646,95.39443328],[4.53337493,0.02566474,95.39367689],[4.53337438,0.02566303,95.39292215],[4.53337383,0.02566131,95.3921692],[4.53337328,0.0256596,95.39141816],[4.53337273,0.02565788,95.39066917],[4.53337218,0.02565616,95.38992236],[4.53337163,0.02565445,95.38917785],[4.53337108,0.02565273,95.38843577],[4.53337053,0.02565101,95.38769627],[4.53336998,0.0256493,95.38695945],[4.53336944,0.02564758,95.3862252],[4.53336889,0.02564586,95.3854932],[4.53336835,0.02564414,95.38476308],[4.5333678,0.02564242,95.3840345],[4.53336725,0.02564071,95.38330711],[4.53336671,0.02563899,95.38258056],[4.53336616,0.02563727,95.3818545],[4.53336562,0.02563555,95.38112858],[4.53336507,0.02563384,95.38040247],[4.53336453,0.02563212,95.37967584],[4.53336398,0.0256304,95.37894855],[4.53336343,0.02562868,95.37822065],[4.53336289,0.02562697,95.37749218],[4.53336234,0.02562525,95.37676317],[4.53336179,0.02562353,95.37603364],[4.53336124,0.02562181,95.37530357],[4.53336069,0.0256201,95.37457298],[4.53336015,0.02561838,95.37384186],[4.5333596,0.02561666,95.37311021],[4.53335905,0.02561495,95.37237802],[4.5333585,0.02561323,95.37164531],[4.53335795,0.02561151,95.37091207],[4.5333574,0.0256098,95.37017829],[4.53335685,0.02560808,95.36944399],[4.53335629,0.02560637,95.36870915],[4.53335574,0.02560465,95.36797378],[4.53335519,0.02560293,95.36723788],[4.53335464,0.02560122,95.36650144],[4.53335409,0.0255995,95.36576447],[4.53335353,0.02559779,95.36502696],[4.53335298,0.02559607,95.36428892],[4.53335243,0.02559436,95.36355035],[4.53335187,0.02559264,95.36281124],[4.53335132,0.02559093,95.36207166],[4.53335077,0.02558921,95.36133189],[4.53335021,0.0255875,95.3605923],[4.53334966,0.02558578,95.35985321],[4.5333491,0.02558407,95.35911481],[4.53334855,0.02558235,95.35837707],[4.53334799,0.02558064,95.35763996],[4.53334744,0.02557892,95.35690348],[4.53334689,0.02557721,95.35616759],[4.53334633,0.02557549,95.35543227],[4.53334578,0.02557378,95.3546975],[4.53334522,0.02557206,95.35396325],[4.53334467,0.02557035,95.3532295],[4.53334412,0.02556863,95.35249624],[4.53334356,0.02556692,95.35176343],[4.53334301,0.0255652,95.35103105],[4.53334245,0.02556349,95.35029908],[4.5333419,0.02556177,95.3495675],[4.53334134,0.02556006,95.34883628],[4.53334079,0.02555834,95.3481054],[4.53334024,0.02555663,95.34737484],[4.53333968,0.02555491,95.34664458],[4.53333913,0.0255532,95.34591458],[4.53333857,0.02555148,95.34518484],[4.53333802,0.02554977,95.34445532],[4.53333746,0.02554805,95.343726],[4.53333691,0.02554634,95.34299687],[4.53333635,0.02554462,95.34226789],[4.5333358,0.02554291,95.34153905],[4.53333402,0.02554159,95.33671351],[4.53333144,0.02554054,95.32914782],[4.5333309,0.0255404,95.32753252]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-5,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-5,"type":"border","predecessorId":-5}},{"geometry":{"coordinates":[[4.53347266,0.02596086,95.54309029],[4.53347211,0.02595914,95.54221885],[4.53347156,0.02595742,95.54134791],[4.53347101,0.0259557,95.54047748],[4.53347047,0.02595399,95.53960755],[4.53346992,0.02595227,95.53873812],[4.53346937,0.02595055,95.53786918],[4.53346882,0.02594884,95.53700073],[4.53346827,0.02594712,95.53613277],[4.53346772,0.0259454,95.5352653],[4.53346717,0.02594369,95.5343983],[4.53346663,0.02594197,95.53353178],[4.53346608,0.02594025,95.53266573],[4.53346553,0.02593854,95.53180015],[4.53346498,0.02593682,95.53093504],[4.53346443,0.0259351,95.53007039],[4.53346388,0.02593339,95.52920619],[4.53346333,0.02593167,95.52834245],[4.53346278,0.02592995,95.52747916],[4.53346224,0.02592824,95.52661632],[4.53346169,0.02592652,95.52575392],[4.53346114,0.0259248,95.52489196],[4.53346059,0.02592308,95.52403043],[4.53346004,0.02592137,95.52316933],[4.53345949,0.02591965,95.52230866],[4.53345894,0.02591793,95.52144841],[4.53345839,0.02591622,95.52058858],[4.53345784,0.0259145,95.51972917],[4.53345729,0.02591278,95.51887016],[4.53345674,0.02591107,95.51801156],[4.53345619,0.02590935,95.51715336],[4.53345564,0.02590763,95.51629556],[4.53345509,0.02590592,95.51543816],[4.53345454,0.0259042,95.51458114],[4.53345399,0.02590249,95.5137245],[4.53345344,0.02590077,95.51286825],[4.53345289,0.02589905,95.51201237],[4.53345234,0.02589734,95.51115687],[4.53345179,0.02589562,95.51030173],[4.53345124,0.0258939,95.50944696],[4.53345069,0.02589219,95.50859254],[4.53345014,0.02589047,95.50773848],[4.53344959,0.02588876,95.50688477],[4.53344904,0.02588704,95.5060314],[4.53344849,0.02588532,95.50517838],[4.53344793,0.02588361,95.50432568],[4.53344738,0.02588189,95.5034733],[4.53344683,0.02588018,95.50262122],[4.53344628,0.02587846,95.50176949],[4.53344573,0.02587674,95.50091825],[4.53344517,0.02587503,95.50006761],[4.53344462,0.02587331,95.4992177],[4.53344407,0.0258716,95.49836866],[4.53344352,0.02586988,95.49752061],[4.53344296,0.02586817,95.49667369],[4.53344241,0.02586645,95.49582802],[4.53344186,0.02586473,95.49498372],[4.53344131,0.02586302,95.49414095],[4.53344076,0.0258613,95.49329981],[4.5334402,0.02585959,95.49246044],[4.53343965,0.02585787,95.49162298],[4.5334391,0.02585615,95.49078755],[4.53343855,0.02585444,95.48995428],[4.533438,0.02585272,95.4891233],[4.53343745,0.025851,95.48829475],[4.5334369,0.02584929,95.48746875],[4.53343636,0.02584757,95.48664545],[4.53343581,0.02584585,95.48582496],[4.53343526,0.02584414,95.48500742],[4.53343471,0.02584242,95.48419294],[4.53343417,0.0258407,95.48338164],[4.53343362,0.02583898,95.48257362],[4.53343308,0.02583726,95.48176898],[4.53343254,0.02583554,95.48096783],[4.53343199,0.02583383,95.48017026],[4.53343145,0.02583211,95.47937626],[4.53343091,0.02583039,95.47858568],[4.53343037,0.02582867,95.47779835],[4.53342983,0.02582695,95.47701414],[4.53342929,0.02582523,95.47623289],[4.53342876,0.02582351,95.47545444],[4.53342822,0.02582179,95.47467864],[4.53342768,0.02582007,95.47390533],[4.53342714,0.02581834,95.47313437],[4.53342661,0.02581662,95.4723656],[4.53342607,0.0258149,95.47159886],[4.53342554,0.02581318,95.47083401],[4.533425,0.02581146,95.47007091],[4.53342447,0.02580974,95.46930938],[4.53342393,0.02580802,95.4685493],[4.5334234,0.0258063,95.46779049],[4.53342286,0.02580458,95.46703282],[4.53342233,0.02580285,95.46627614],[4.53342179,0.02580113,95.46552028],[4.53342126,0.02579941,95.46476511],[4.53342072,0.02579769,95.46401046],[4.53342019,0.02579597,95.46325619],[4.53341965,0.02579425,95.46250214],[4.53341912,0.02579253,95.46174815],[4.53341858,0.0257908,95.46099406],[4.53341805,0.02578908,95.46023972],[4.53341751,0.02578736,95.45948497],[4.53341697,0.02578564,95.45872965],[4.53341644,0.02578392,95.4579736],[4.5334159,0.0257822,95.45721666],[4.53341536,0.02578048,95.45645868],[4.53341482,0.02577876,95.45569948],[4.53341428,0.02577704,95.45493893],[4.53341374,0.02577532,95.45417697],[4.5334132,0.0257736,95.45341365],[4.53341266,0.02577188,95.45264904],[4.53341212,0.02577016,95.4518832],[4.53341158,0.02576844,95.45111618],[4.53341103,0.02576672,95.45034804],[4.53341049,0.02576501,95.44957885],[4.53340995,0.02576329,95.44880866],[4.5334094,0.02576157,95.44803755],[4.53340886,0.02575985,95.44726555],[4.53340831,0.02575813,95.44649274],[4.53340776,0.02575642,95.44571918],[4.53340722,0.0257547,95.44494493],[4.53340667,0.02575298,95.44417005],[4.53340612,0.02575126,95.44339459],[4.53340558,0.02574955,95.44261863],[4.53340503,0.02574783,95.44184222],[4.53340448,0.02574611,95.44106543],[4.53340393,0.02574439,95.44028838],[4.53340338,0.02574268,95.43951114],[4.53340283,0.02574096,95.43873383],[4.53340229,0.02573924,95.43795654],[4.53340174,0.02573753,95.43717937],[4.53340119,0.02573581,95.43640241],[4.53340064,0.02573409,95.43562576],[4.53340009,0.02573238,95.43484952],[4.53339954,0.02573066,95.43407375],[4.53339899,0.02572894,95.43329838],[4.53339844,0.02572723,95.4325233],[4.53339789,0.02572551,95.4317484],[4.53339734,0.0257238,95.43097358],[4.53339679,0.02572208,95.43019873],[4.53339624,0.02572036,95.42942375],[4.53339568,0.02571865,95.42864854],[4.53339513,0.02571693,95.42787299],[4.53339458,0.02571521,95.42709701],[4.53339403,0.0257135,95.42632049],[4.53339348,0.02571178,95.42554333],[4.53339292,0.02571007,95.42476543],[4.53339237,0.02570835,95.42398669],[4.53339182,0.02570664,95.423207],[4.53339126,0.02570492,95.42242627],[4.53339071,0.02570321,95.42164438],[4.53339015,0.02570149,95.42086124],[4.5333896,0.02569978,95.42007675],[4.53338904,0.02569806,95.41929081],[4.53338848,0.02569635,95.41850331],[4.53338792,0.02569464,95.41771414],[4.53338737,0.02569292,95.41692322],[4.53338681,0.02569121,95.41613043],[4.53338625,0.0256895,95.41533573],[4.53338569,0.02568778,95.41453935],[4.53338512,0.02568607,95.41374155],[4.53338456,0.02568436,95.41294262],[4.533384,0.02568264,95.41214283],[4.53338344,0.02568093,95.41134246],[4.53338287,0.02567922,95.41054178],[4.53338231,0.02567751,95.40974107],[4.53338175,0.0256758,95.40894061],[4.53338118,0.02567408,95.40814068],[4.53338062,0.02567237,95.40734156],[4.53338006,0.02567066,95.40654351],[4.53337949,0.02566895,95.40574681],[4.53337893,0.02566724,95.40495174],[4.53337837,0.02566552,95.40415858],[4.53337781,0.02566381,95.40336759],[4.53337725,0.0256621,95.40257906],[4.53337669,0.02566038,95.40179326],[4.53337613,0.02565867,95.40101047],[4.53337557,0.02565696,95.40023095],[4.53337501,0.02565524,95.399455],[4.53337445,0.02565353,95.39868287],[4.53337389,0.02565182,95.39791486],[4.53337334,0.0256501,95.39715123],[4.53337279,0.02564839,95.39639224],[4.53337223,0.02564667,95.39563794],[4.53337168,0.02564495,95.39488814],[4.53337113,0.02564324,95.39414261],[4.53337058,0.02564152,95.39340118],[4.53337003,0.0256398,95.39266362],[4.53336948,0.02563809,95.39192973],[4.53336894,0.02563637,95.39119932],[4.53336839,0.02563465,95.39047217],[4.53336785,0.02563293,95.3897481],[4.5333673,0.02563122,95.38902692],[4.53336676,0.0256295,95.38830845],[4.53336622,0.02562778,95.38759252],[4.53336567,0.02562606,95.38687894],[4.53336513,0.02562434,95.38616753],[4.53336459,0.02562262,95.38545806],[4.53336405,0.0256209,95.38475032],[4.53336351,0.02561918,95.38404407],[4.53336296,0.02561746,95.38333909],[4.53336242,0.02561575,95.38263515],[4.53336188,0.02561403,95.38193204],[4.53336134,0.02561231,95.38122951],[4.5333608,0.02561059,95.38052735],[4.53336026,0.02560887,95.37982533],[4.53335972,0.02560715,95.37912323],[4.53335918,0.02560543,95.37842082],[4.53335864,0.02560371,95.37771786],[4.53335809,0.02560199,95.37701415],[4.53335755,0.02560027,95.37630945],[4.53335701,0.02559855,95.37560353],[4.53335646,0.02559684,95.37489617],[4.53335592,0.02559512,95.37418715],[4.53335538,0.0255934,95.37347624],[4.53335483,0.02559168,95.3727632],[4.53335428,0.02558996,95.37204789],[4.53335374,0.02558825,95.37133036],[4.53335319,0.02558653,95.37061075],[4.53335264,0.02558481,95.36988917],[4.53335209,0.0255831,95.36916576],[4.53335154,0.02558138,95.36844064],[4.53335099,0.02557966,95.36771395],[4.53335044,0.02557795,95.3669858],[4.53334988,0.02557623,95.36625633],[4.53334933,0.02557452,95.36552567],[4.53334878,0.0255728,95.36479393],[4.53334822,0.02557109,95.36406125],[4.53334767,0.02556937,95.36332775],[4.53334712,0.02556766,95.36259357],[4.53334656,0.02556594,95.36185882],[4.53334601,0.02556423,95.36112365],[4.53334545,0.02556251,95.36038816],[4.5333449,0.0255608,95.35965249],[4.53334434,0.02555908,95.35891678],[4.53334379,0.02555737,95.35818113],[4.53334323,0.02555565,95.35744569],[4.53334267,0.02555394,95.35671057],[4.53334212,0.02555223,95.35597591],[4.53334156,0.02555051,95.35524184],[4.53334101,0.0255488,95.35450847],[4.53334045,0.02554708,95.35377594],[4.5333399,0.02554537,95.35304437],[4.53333934,0.02554365,95.35231389],[4.53333879,0.02554194,95.35158462],[4.53333823,0.02554022,95.3508567],[4.53333768,0.02553851,95.35013025],[4.53333758,0.02553822,95.35000952]],"type":"LineString"},"type":"feature","properties":{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-4,"type":"shoulder","predecessorId":-4}},{"geometry":{"coordinates":[[4.53347456,0.02596024,95.54917495],[4.53347401,0.02595853,95.54829249],[4.53347345,0.02595681,95.54741056],[4.5334729,0.02595509,95.54652918],[4.53347235,0.02595338,95.54564836],[4.53347179,0.02595166,95.54476813],[4.53347124,0.02594995,95.54388849],[4.53347069,0.02594823,95.54300947],[4.53347014,0.02594652,95.54213109],[4.53346958,0.0259448,95.54125335],[4.53346903,0.02594309,95.54037627],[4.53346848,0.02594137,95.53949988],[4.53346792,0.02593965,95.53862419],[4.53346737,0.02593794,95.53774921],[4.53346682,0.02593622,95.53687496],[4.53346627,0.02593451,95.53600147],[4.53346571,0.02593279,95.53512873],[4.53346516,0.02593108,95.53425678],[4.53346461,0.02592936,95.53338562],[4.53346406,0.02592764,95.53251528],[4.53346351,0.02592593,95.53164578],[4.53346295,0.02592421,95.53077711],[4.5334624,0.0259225,95.52990932],[4.53346185,0.02592078,95.5290424],[4.5334613,0.02591907,95.52817639],[4.53346075,0.02591735,95.52731128],[4.5334602,0.02591563,95.52644711],[4.53345964,0.02591392,95.52558389],[4.53345909,0.0259122,95.52472163],[4.53345854,0.02591049,95.52386035],[4.53345799,0.02590877,95.52300007],[4.53345744,0.02590705,95.5221408],[4.53345689,0.02590534,95.52128256],[4.53345634,0.02590362,95.52042537],[4.53345579,0.0259019,95.51956925],[4.53345524,0.02590019,95.51871421],[4.53345469,0.02589847,95.51786026],[4.53345414,0.02589676,95.51700743],[4.53345359,0.02589504,95.51615573],[4.53345304,0.02589332,95.51530518],[4.53345249,0.02589161,95.51445579],[4.53345194,0.02588989,95.51360758],[4.53345139,0.02588817,95.51276058],[4.53345084,0.02588646,95.51191478],[4.53345029,0.02588474,95.51107022],[4.53344974,0.02588302,95.5102269],[4.53344919,0.02588131,95.50938483],[4.53344864,0.02587959,95.50854401],[4.53344809,0.02587787,95.50770444],[4.53344754,0.02587616,95.50686613],[4.53344699,0.02587444,95.50602908],[4.53344644,0.02587272,95.50519329],[4.53344589,0.02587101,95.50435877],[4.53344534,0.02586929,95.50352552],[4.5334448,0.02586757,95.50269353],[4.53344425,0.02586585,95.50186283],[4.5334437,0.02586414,95.5010334],[4.53344315,0.02586242,95.50020525],[4.5334426,0.0258607,95.49937839],[4.53344206,0.02585899,95.49855282],[4.53344151,0.02585727,95.49772853],[4.53344096,0.02585555,95.49690554],[4.53344041,0.02585383,95.49608385],[4.53343987,0.02585212,95.49526345],[4.53343932,0.0258504,95.49444436],[4.53343877,0.02584868,95.49362657],[4.53343822,0.02584696,95.49281009],[4.53343768,0.02584525,95.49199493],[4.53343713,0.02584353,95.49118107],[4.53343659,0.02584181,95.49036853],[4.53343604,0.02584009,95.48955726],[4.53343549,0.02583838,95.48874724],[4.53343495,0.02583666,95.48793846],[4.5334344,0.02583494,95.48713089],[4.53343386,0.02583322,95.4863245],[4.53343331,0.0258315,95.48551927],[4.53343276,0.02582979,95.48471518],[4.53343222,0.02582807,95.48391219],[4.53343167,0.02582635,95.48311029],[4.53343113,0.02582463,95.48230946],[4.53343058,0.02582291,95.48150966],[4.53343004,0.0258212,95.48071087],[4.53342949,0.02581948,95.47991308],[4.53342895,0.02581776,95.47911624],[4.5334284,0.02581604,95.47832035],[4.53342786,0.02581432,95.47752538],[4.53342731,0.02581261,95.47673131],[4.53342677,0.02581089,95.47593811],[4.53342622,0.02580917,95.47514578],[4.53342568,0.02580745,95.47435428],[4.53342513,0.02580573,95.4735636],[4.53342459,0.02580402,95.47277372],[4.53342404,0.0258023,95.47198462],[4.5334235,0.02580058,95.47119627],[4.53342295,0.02579886,95.47040866],[4.53342241,0.02579714,95.46962177],[4.53342186,0.02579543,95.46883558],[4.53342132,0.02579371,95.46805005],[4.53342077,0.02579199,95.46726517],[4.53342023,0.02579027,95.46648092],[4.53341968,0.02578855,95.46569725],[4.53341914,0.02578683,95.46491416],[4.53341859,0.02578512,95.4641316],[4.53341805,0.0257834,95.46334956],[4.5334175,0.02578168,95.46256801],[4.53341696,0.02577996,95.46178693],[4.53341641,0.02577824,95.46100627],[4.53341587,0.02577653,95.46022603],[4.53341532,0.02577481,95.45944617],[4.53341478,0.02577309,95.45866667],[4.53341423,0.02577137,95.45788749],[4.53341368,0.02576966,95.45710862],[4.53341314,0.02576794,95.45633003],[4.53341259,0.02576622,95.45555169],[4.53341204,0.0257645,95.45477357],[4.5334115,0.02576278,95.45399565],[4.53341095,0.02576107,95.45321791],[4.5334104,0.02575935,95.4524403],[4.53340986,0.02575763,95.45166282],[4.53340931,0.02575591,95.45088542],[4.53340876,0.0257542,95.45010809],[4.53340821,0.02575248,95.4493308],[4.53340767,0.02575076,95.44855353],[4.53340712,0.02574905,95.44777623],[4.53340657,0.02574733,95.4469989],[4.53340602,0.02574561,95.44622152],[4.53340547,0.0257439,95.44544409],[4.53340492,0.02574218,95.44466664],[4.53340437,0.02574046,95.44388917],[4.53340382,0.02573875,95.44311168],[4.53340327,0.02573703,95.44233419],[4.53340272,0.02573531,95.44155672],[4.53340217,0.0257336,95.44077925],[4.53340162,0.02573188,95.44000182],[4.53340107,0.02573016,95.43922442],[4.53340052,0.02572845,95.43844708],[4.53339997,0.02572673,95.43766978],[4.53339942,0.02572501,95.43689256],[4.53339887,0.0257233,95.43611541],[4.53339832,0.02572158,95.43533835],[4.53339777,0.02571987,95.43456141],[4.53339721,0.02571815,95.43378459],[4.53339666,0.02571643,95.43300791],[4.53339611,0.02571472,95.43223139],[4.53339556,0.025713,95.43145505],[4.53339501,0.02571129,95.4306789],[4.53339445,0.02570957,95.42990296],[4.5333939,0.02570786,95.42912725],[4.53339335,0.02570614,95.42835178],[4.5333928,0.02570442,95.42757657],[4.53339224,0.02570271,95.42680164],[4.53339169,0.02570099,95.426027],[4.53339114,0.02569928,95.42525267],[4.53339058,0.02569756,95.42447867],[4.53339003,0.02569585,95.42370501],[4.53338948,0.02569413,95.42293171],[4.53338892,0.02569242,95.42215879],[4.53338837,0.0256907,95.42138626],[4.53338782,0.02568899,95.42061415],[4.53338726,0.02568727,95.41984246],[4.53338671,0.02568556,95.41907122],[4.53338616,0.02568384,95.41830044],[4.5333856,0.02568213,95.41753014],[4.53338505,0.02568041,95.41676034],[4.53338449,0.02567869,95.41599105],[4.53338394,0.02567698,95.41522229],[4.53338339,0.02567526,95.41445407],[4.53338283,0.02567355,95.41368642],[4.53338228,0.02567183,95.41291934],[4.53338172,0.02567012,95.41215286],[4.53338117,0.0256684,95.41138699],[4.53338062,0.02566669,95.41062174],[4.53338006,0.02566497,95.40985713],[4.53337951,0.02566326,95.40909317],[4.53337895,0.02566154,95.40832988],[4.5333784,0.02565983,95.40756727],[4.53337785,0.02565811,95.40680536],[4.53337729,0.0256564,95.40604415],[4.53337674,0.02565468,95.40528367],[4.53337619,0.02565297,95.40452393],[4.53337563,0.02565125,95.40376495],[4.53337508,0.02564954,95.40300673],[4.53337452,0.02564782,95.4022493],[4.53337397,0.02564611,95.40149267],[4.53337342,0.02564439,95.40073685],[4.53337286,0.02564268,95.39998185],[4.53337231,0.02564096,95.3992277],[4.53337176,0.02563924,95.39847441],[4.5333712,0.02563753,95.39772199],[4.53337065,0.02563581,95.39697045],[4.5333701,0.0256341,95.39621982],[4.53336955,0.02563238,95.39547011],[4.53336899,0.02563067,95.39472137],[4.53336844,0.02562895,95.39397363],[4.53336789,0.02562724,95.39322694],[4.53336734,0.02562552,95.39248133],[4.53336678,0.0256238,95.39173684],[4.53336623,0.02562209,95.39099346],[4.53336568,0.02562037,95.39025118],[4.53336513,0.02561866,95.38951001],[4.53336458,0.02561694,95.38876994],[4.53336403,0.02561523,95.38803095],[4.53336347,0.02561351,95.38729304],[4.53336292,0.02561179,95.38655621],[4.53336237,0.02561008,95.38582044],[4.53336182,0.02560836,95.38508574],[4.53336127,0.02560664,95.38435209],[4.53336072,0.02560493,95.38361948],[4.53336017,0.02560321,95.38288792],[4.53335962,0.0256015,95.38215739],[4.53335907,0.02559978,95.38142789],[4.53335852,0.02559806,95.38069941],[4.53335797,0.02559635,95.37997194],[4.53335742,0.02559463,95.37924547],[4.53335687,0.02559291,95.37852001],[4.53335632,0.0255912,95.37779554],[4.53335577,0.02558948,95.37707205],[4.53335523,0.02558776,95.37634955],[4.53335468,0.02558605,95.37562801],[4.53335413,0.02558433,95.37490744],[4.53335358,0.02558261,95.37418783],[4.53335303,0.0255809,95.37346917],[4.53335248,0.02557918,95.37275146],[4.53335194,0.02557746,95.37203468],[4.53335139,0.02557574,95.37131883],[4.53335084,0.02557403,95.37060391],[4.53335029,0.02557231,95.36988991],[4.53334974,0.02557059,95.36917681],[4.5333492,0.02556888,95.36846462],[4.53334865,0.02556716,95.36775333],[4.5333481,0.02556544,95.36704292],[4.53334755,0.02556372,95.3663334],[4.53334701,0.02556201,95.36562475],[4.53334646,0.02556029,95.36491697],[4.53334591,0.02555857,95.36421005],[4.53334537,0.02555685,95.36350399],[4.53334482,0.02555514,95.36279878],[4.53334427,0.02555342,95.36209441],[4.53334373,0.0255517,95.36139087],[4.53334318,0.02554998,95.36068816],[4.53334264,0.02554827,95.35998627],[4.53334209,0.02554655,95.35928519],[4.53334154,0.02554483,95.35858492],[4.533341,0.02554311,95.35788545],[4.53334045,0.0255414,95.35718677],[4.53333991,0.02553968,95.35648888],[4.53333936,0.02553796,95.35579176],[4.53333927,0.02553767,95.35567583]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3}},{"geometry":{"coordinates":[[4.53350366,0.02595082,95.64243587],[4.53350311,0.0259491,95.64160181],[4.53350256,0.02594739,95.64076841],[4.533502,0.02594567,95.63993566],[4.53350145,0.02594396,95.63910358],[4.5335009,0.02594224,95.63827217],[4.53350035,0.02594053,95.63744143],[4.53349979,0.02593881,95.63661136],[4.53349924,0.02593709,95.63578197],[4.53349869,0.02593538,95.63495326],[4.53349814,0.02593366,95.63412523],[4.53349758,0.02593195,95.63329789],[4.53349703,0.02593023,95.63247123],[4.53349648,0.02592851,95.63164527],[4.53349593,0.0259268,95.63082001],[4.53349538,0.02592508,95.62999544],[4.53349483,0.02592337,95.62917158],[4.53349427,0.02592165,95.62834842],[4.53349372,0.02591993,95.62752597],[4.53349317,0.02591822,95.62670423],[4.53349262,0.0259165,95.6258832],[4.53349207,0.02591478,95.62506289],[4.53349152,0.02591307,95.6242433],[4.53349097,0.02591135,95.62342444],[4.53349042,0.02590964,95.6226063],[4.53348987,0.02590792,95.62178889],[4.53348932,0.0259062,95.62097221],[4.53348877,0.02590449,95.62015627],[4.53348822,0.02590277,95.61934106],[4.53348767,0.02590105,95.6185266],[4.53348712,0.02589934,95.61771288],[4.53348657,0.02589762,95.6168999],[4.53348602,0.0258959,95.61608768],[4.53348547,0.02589419,95.6152762],[4.53348492,0.02589247,95.61446549],[4.53348437,0.02589075,95.61365553],[4.53348382,0.02588904,95.61284633],[4.53348327,0.02588732,95.6120379],[4.53348272,0.0258856,95.61123023],[4.53348217,0.02588389,95.61042333],[4.53348162,0.02588217,95.6096172],[4.53348107,0.02588045,95.60881185],[4.53348052,0.02587874,95.60800727],[4.53347997,0.02587702,95.60720348],[4.53347942,0.0258753,95.60640047],[4.53347887,0.02587358,95.60559824],[4.53347832,0.02587187,95.60479679],[4.53347778,0.02587015,95.60399611],[4.53347723,0.02586843,95.6031962],[4.53347668,0.02586672,95.60239704],[4.53347613,0.025865,95.60159865],[4.53347558,0.02586328,95.600801],[4.53347503,0.02586156,95.60000409],[4.53347448,0.02585985,95.59920793],[4.53347394,0.02585813,95.59841249],[4.53347339,0.02585641,95.59761778],[4.53347284,0.0258547,95.59682379],[4.53347229,0.02585298,95.59603051],[4.53347174,0.02585126,95.59523795],[4.53347119,0.02584954,95.59444608],[4.53347065,0.02584783,95.59365491],[4.5334701,0.02584611,95.59286444],[4.53346955,0.02584439,95.59207464],[4.533469,0.02584268,95.59128553],[4.53346845,0.02584096,95.59049709],[4.53346791,0.02583924,95.58970932],[4.53346736,0.02583752,95.58892221],[4.53346681,0.02583581,95.58813575],[4.53346626,0.02583409,95.58734994],[4.53346572,0.02583237,95.58656478],[4.53346517,0.02583065,95.58578025],[4.53346462,0.02582894,95.58499636],[4.53346407,0.02582722,95.58421309],[4.53346352,0.0258255,95.58343044],[4.53346298,0.02582378,95.58264841],[4.53346243,0.02582207,95.58186698],[4.53346188,0.02582035,95.58108616],[4.53346133,0.02581863,95.58030593],[4.53346079,0.02581691,95.57952629],[4.53346024,0.0258152,95.57874723],[4.53345969,0.02581348,95.57796875],[4.53345914,0.02581176,95.57719085],[4.5334586,0.02581004,95.5764135],[4.53345805,0.02580833,95.57563672],[4.5334575,0.02580661,95.57486049],[4.53345696,0.02580489,95.57408482],[4.53345641,0.02580317,95.57330969],[4.53345586,0.02580146,95.57253512],[4.53345531,0.02579974,95.57176109],[4.53345477,0.02579802,95.5709876],[4.53345422,0.02579631,95.57021466],[4.53345367,0.02579459,95.56944226],[4.53345312,0.02579287,95.5686704],[4.53345258,0.02579115,95.56789908],[4.53345203,0.02578944,95.56712829],[4.53345148,0.02578772,95.56635804],[4.53345094,0.025786,95.56558833],[4.53345039,0.02578428,95.56481914],[4.53344984,0.02578257,95.56405047],[4.53344929,0.02578085,95.56328232],[4.53344875,0.02577913,95.56251467],[4.5334482,0.02577741,95.56174752],[4.53344765,0.0257757,95.56098086],[4.53344711,0.02577398,95.56021468],[4.53344656,0.02577226,95.55944898],[4.53344601,0.02577054,95.55868375],[4.53344546,0.02576882,95.55791898],[4.53344492,0.02576711,95.55715466],[4.53344437,0.02576539,95.55639079],[4.53344382,0.02576367,95.55562736],[4.53344328,0.02576195,95.55486436],[4.53344273,0.02576024,95.55410178],[4.53344218,0.02575852,95.55333961],[4.53344163,0.0257568,95.55257785],[4.53344109,0.02575508,95.5518165],[4.53344054,0.02575337,95.55105553],[4.53343999,0.02575165,95.55029495],[4.53343944,0.02574993,95.54953475],[4.5334389,0.02574821,95.54877492],[4.53343835,0.0257465,95.54801545],[4.5334378,0.02574478,95.54725633],[4.53343726,0.02574306,95.54649756],[4.53343671,0.02574134,95.54573913],[4.53343616,0.02573963,95.54498103],[4.53343561,0.02573791,95.54422326],[4.53343507,0.02573619,95.5434658],[4.53343452,0.02573448,95.54270865],[4.53343397,0.02573276,95.5419518],[4.53343342,0.02573104,95.54119525],[4.53343287,0.02572932,95.54043898],[4.53343233,0.02572761,95.53968299],[4.53343178,0.02572589,95.53892727],[4.53343123,0.02572417,95.53817182],[4.53343068,0.02572245,95.53741661],[4.53343013,0.02572074,95.53666166],[4.53342959,0.02571902,95.53590695],[4.53342904,0.0257173,95.53515247],[4.53342849,0.02571558,95.53439821],[4.53342794,0.02571387,95.53364417],[4.53342739,0.02571215,95.53289035],[4.53342684,0.02571043,95.53213674],[4.5334263,0.02570872,95.53138335],[4.53342575,0.025707,95.53063017],[4.5334252,0.02570528,95.52987721],[4.53342465,0.02570357,95.52912446],[4.5334241,0.02570185,95.52837191],[4.53342355,0.02570013,95.52761958],[4.533423,0.02569841,95.52686746],[4.53342245,0.0256967,95.52611555],[4.53342191,0.02569498,95.52536384],[4.53342136,0.02569326,95.52461234],[4.53342081,0.02569155,95.52386105],[4.53342026,0.02568983,95.52310996],[4.53341971,0.02568811,95.52235908],[4.53341916,0.0256864,95.5216084],[4.53341861,0.02568468,95.52085793],[4.53341806,0.02568296,95.52010766],[4.53341751,0.02568125,95.51935759],[4.53341696,0.02567953,95.51860772],[4.53341641,0.02567781,95.51785804],[4.53341586,0.0256761,95.51710857],[4.53341531,0.02567438,95.5163593],[4.53341476,0.02567266,95.51561022],[4.53341421,0.02567095,95.51486134],[4.53341366,0.02566923,95.51411266],[4.53341311,0.02566751,95.51336417],[4.53341256,0.0256658,95.51261588],[4.53341201,0.02566408,95.51186778],[4.53341146,0.02566236,95.51111987],[4.53341091,0.02566065,95.51037215],[4.53341036,0.02565893,95.50962462],[4.53340981,0.02565721,95.50887726],[4.53340926,0.0256555,95.50813009],[4.53340871,0.02565378,95.50738309],[4.53340816,0.02565206,95.50663627],[4.53340761,0.02565035,95.50588962],[4.53340706,0.02564863,95.50514313],[4.53340651,0.02564691,95.50439681],[4.53340596,0.0256452,95.50365064],[4.53340541,0.02564348,95.50290464],[4.53340486,0.02564177,95.50215879],[4.5334043,0.02564005,95.50141309],[4.53340375,0.02563833,95.50066754],[4.5334032,0.02563662,95.49992213],[4.53340265,0.0256349,95.49917687],[4.5334021,0.02563318,95.49843174],[4.53340155,0.02563147,95.49768676],[4.533401,0.02562975,95.4969419],[4.53340044,0.02562804,95.49619718],[4.53339989,0.02562632,95.49545258],[4.53339934,0.0256246,95.4947081],[4.53339879,0.02562289,95.49396376],[4.53339824,0.02562117,95.49321958],[4.53339769,0.02561946,95.49247556],[4.53339713,0.02561774,95.49173175],[4.53339658,0.02561602,95.49098815],[4.53339603,0.02561431,95.49024479],[4.53339548,0.02561259,95.4895017],[4.53339493,0.02561088,95.48875888],[4.53339437,0.02560916,95.48801636],[4.53339382,0.02560744,95.48727417],[4.53339327,0.02560573,95.48653233],[4.53339272,0.02560401,95.48579085],[4.53339217,0.0256023,95.48504976],[4.53339161,0.02560058,95.48430907],[4.53339106,0.02559887,95.48356882],[4.53339051,0.02559715,95.48282901],[4.53338996,0.02559543,95.48208968],[4.53338941,0.02559372,95.48135084],[4.53338885,0.025592,95.48061252],[4.5333883,0.02559029,95.47987473],[4.53338775,0.02558857,95.4791375],[4.5333872,0.02558685,95.47840085],[4.53338665,0.02558514,95.47766479],[4.53338609,0.02558342,95.47692936],[4.53338554,0.02558171,95.47619457],[4.53338499,0.02557999,95.47546043],[4.53338444,0.02557827,95.47472699],[4.53338389,0.02557656,95.47399425],[4.53338334,0.02557484,95.47326223],[4.53338279,0.02557312,95.47253096],[4.53338224,0.02557141,95.47180046],[4.53338169,0.02556969,95.47107075],[4.53338114,0.02556798,95.47034185],[4.53338059,0.02556626,95.46961378],[4.53338004,0.02556454,95.46888657],[4.53337949,0.02556283,95.46816022],[4.53337894,0.02556111,95.46743478],[4.53337839,0.02555939,95.46671024],[4.53337784,0.02555768,95.46598665],[4.53337729,0.02555596,95.46526401],[4.53337674,0.02555424,95.46454235],[4.53337619,0.02555253,95.46382169],[4.53337564,0.02555081,95.46310205],[4.53337509,0.02554909,95.46238346],[4.53337454,0.02554737,95.46166592],[4.533374,0.02554566,95.46094947],[4.53337345,0.02554394,95.46023413],[4.5333729,0.02554222,95.45951991],[4.53337235,0.02554051,95.45880683],[4.53337181,0.02553879,95.45809493],[4.53337126,0.02553707,95.45738421],[4.53337071,0.02553535,95.4566747],[4.53337017,0.02553363,95.45596642],[4.53336962,0.02553192,95.45525939],[4.53336907,0.0255302,95.45455364],[4.53336853,0.02552848,95.45384917],[4.53336844,0.02552819,95.45373207]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2}},{"geometry":{"coordinates":[[4.53353489,0.02594071,95.74248333],[4.53353434,0.02593899,95.74171599],[4.53353379,0.02593728,95.74094896],[4.53353324,0.02593556,95.74018224],[4.53353269,0.02593384,95.73941582],[4.53353214,0.02593213,95.73864972],[4.5335316,0.02593041,95.73788391],[4.53353105,0.02592869,95.73711841],[4.5335305,0.02592697,95.73635321],[4.53352995,0.02592526,95.73558831],[4.5335294,0.02592354,95.7348237],[4.53352885,0.02592182,95.73405939],[4.53352831,0.0259201,95.73329537],[4.53352776,0.02591839,95.73253164],[4.53352721,0.02591667,95.7317682],[4.53352666,0.02591495,95.73100505],[4.53352611,0.02591323,95.73024218],[4.53352556,0.02591152,95.72947959],[4.53352502,0.0259098,95.72871728],[4.53352447,0.02590808,95.72795525],[4.53352392,0.02590637,95.7271935],[4.53352337,0.02590465,95.72643202],[4.53352282,0.02590293,95.72567081],[4.53352228,0.02590121,95.72490987],[4.53352173,0.0258995,95.72414919],[4.53352118,0.02589778,95.72338879],[4.53352063,0.02589606,95.72262864],[4.53352009,0.02589434,95.72186876],[4.53351954,0.02589263,95.72110913],[4.53351899,0.02589091,95.72034976],[4.53351844,0.02588919,95.71959065],[4.53351789,0.02588747,95.71883178],[4.53351735,0.02588576,95.71807317],[4.5335168,0.02588404,95.7173148],[4.53351625,0.02588232,95.71655668],[4.5335157,0.0258806,95.7157988],[4.53351516,0.02587888,95.71504116],[4.53351461,0.02587717,95.71428375],[4.53351406,0.02587545,95.71352659],[4.53351351,0.02587373,95.71276965],[4.53351297,0.02587201,95.71201295],[4.53351242,0.0258703,95.71125648],[4.53351187,0.02586858,95.71050023],[4.53351132,0.02586686,95.70974421],[4.53351078,0.02586514,95.70898841],[4.53351023,0.02586343,95.70823282],[4.53350968,0.02586171,95.70747745],[4.53350913,0.02585999,95.70672229],[4.53350859,0.02585827,95.70596733],[4.53350804,0.02585656,95.70521256],[4.53350749,0.02585484,95.70445799],[4.53350694,0.02585312,95.70370361],[4.5335064,0.0258514,95.70294941],[4.53350585,0.02584969,95.70219539],[4.5335053,0.02584797,95.70144154],[4.53350475,0.02584625,95.70068785],[4.53350421,0.02584453,95.69993433],[4.53350366,0.02584282,95.69918096],[4.53350311,0.0258411,95.69842774],[4.53350256,0.02583938,95.69767467],[4.53350201,0.02583766,95.69692174],[4.53350147,0.02583595,95.69616894],[4.53350092,0.02583423,95.69541628],[4.53350037,0.02583251,95.69466373],[4.53349982,0.02583079,95.69391131],[4.53349928,0.02582908,95.693159],[4.53349873,0.02582736,95.69240681],[4.53349818,0.02582564,95.69165471],[4.53349763,0.02582392,95.69090271],[4.53349708,0.02582221,95.69015081],[4.53349654,0.02582049,95.68939899],[4.53349599,0.02581877,95.68864726],[4.53349544,0.02581705,95.6878956],[4.53349489,0.02581534,95.68714401],[4.53349434,0.02581362,95.68639249],[4.53349379,0.0258119,95.68564104],[4.53349325,0.02581018,95.68488963],[4.5334927,0.02580847,95.68413828],[4.53349215,0.02580675,95.68338697],[4.5334916,0.02580503,95.68263571],[4.53349105,0.02580332,95.68188448],[4.5334905,0.0258016,95.68113327],[4.53348996,0.02579988,95.68038209],[4.53348941,0.02579816,95.67963093],[4.53348886,0.02579645,95.67887979],[4.53348831,0.02579473,95.67812865],[4.53348776,0.02579301,95.67737753],[4.53348721,0.02579129,95.67662642],[4.53348666,0.02578958,95.67587531],[4.53348611,0.02578786,95.67512422],[4.53348556,0.02578615,95.67437313],[4.53348502,0.02578443,95.67362205],[4.53348447,0.02578271,95.67287098],[4.53348392,0.02578099,95.67211991],[4.53348337,0.02577928,95.67136884],[4.53348282,0.02577756,95.67061778],[4.53348227,0.02577584,95.66986672],[4.53348172,0.02577413,95.66911566],[4.53348117,0.02577241,95.6683646],[4.53348062,0.02577069,95.66761353],[4.53348007,0.02576898,95.66686247],[4.53347952,0.02576726,95.6661114],[4.53347897,0.02576554,95.66536033],[4.53347842,0.02576382,95.66460926],[4.53347787,0.02576211,95.66385817],[4.53347732,0.02576039,95.66310709],[4.53347677,0.02575867,95.66235599],[4.53347622,0.02575696,95.66160489],[4.53347567,0.02575524,95.66085377],[4.53347512,0.02575352,95.66010265],[4.53347457,0.02575181,95.65935151],[4.53347402,0.02575009,95.65860036],[4.53347347,0.02574837,95.6578492],[4.53347292,0.02574666,95.65709803],[4.53347237,0.02574494,95.65634684],[4.53347182,0.02574322,95.65559563],[4.53347127,0.02574151,95.65484441],[4.53347072,0.02573979,95.65409317],[4.53347017,0.02573807,95.65334191],[4.53346962,0.02573636,95.65259063],[4.53346907,0.02573464,95.65183933],[4.53346852,0.02573292,95.65108801],[4.53346796,0.02573121,95.65033667],[4.53346741,0.02572949,95.6495853],[4.53346686,0.02572778,95.64883391],[4.53346631,0.02572606,95.6480825],[4.53346576,0.02572434,95.64733106],[4.53346521,0.02572263,95.64657959],[4.53346466,0.02572091,95.6458281],[4.53346411,0.02571919,95.64507657],[4.53346356,0.02571748,95.64432502],[4.533463,0.02571576,95.64357344],[4.53346245,0.02571404,95.64282183],[4.5334619,0.02571233,95.64207018],[4.53346135,0.02571061,95.6413185],[4.5334608,0.0257089,95.64056679],[4.53346025,0.02570718,95.63981505],[4.53345969,0.02570546,95.63906327],[4.53345914,0.02570375,95.63831145],[4.53345859,0.02570203,95.6375596],[4.53345804,0.02570031,95.63680773],[4.53345749,0.0256986,95.63605584],[4.53345693,0.02569688,95.63530394],[4.53345638,0.02569517,95.63455203],[4.53345583,0.02569345,95.63380013],[4.53345528,0.02569173,95.63304822],[4.53345472,0.02569002,95.63229633],[4.53345417,0.0256883,95.63154446],[4.53345362,0.02568659,95.63079261],[4.53345307,0.02568487,95.63004079],[4.53345251,0.02568315,95.629289],[4.53345196,0.02568144,95.62853726],[4.53345141,0.02567972,95.62778556],[4.53345086,0.02567801,95.62703392],[4.5334503,0.02567629,95.62628234],[4.53344975,0.02567458,95.62553082],[4.5334492,0.02567286,95.62477938],[4.53344865,0.02567114,95.62402801],[4.53344809,0.02566943,95.62327672],[4.53344754,0.02566771,95.62252553],[4.53344699,0.025666,95.62177443],[4.53344643,0.02566428,95.62102343],[4.53344588,0.02566256,95.62027254],[4.53344533,0.02566085,95.61952176],[4.53344478,0.02565913,95.61877111],[4.53344422,0.02565742,95.61802058],[4.53344367,0.0256557,95.61727018],[4.53344312,0.02565398,95.61651992],[4.53344256,0.02565227,95.6157698],[4.53344201,0.02565055,95.61501983],[4.53344146,0.02564884,95.61427],[4.5334409,0.02564712,95.61352034],[4.53344035,0.02564541,95.61277082],[4.5334398,0.02564369,95.61202147],[4.53343925,0.02564197,95.61127229],[4.53343869,0.02564026,95.61052327],[4.53343814,0.02563854,95.60977443],[4.53343759,0.02563683,95.60902576],[4.53343703,0.02563511,95.60827728],[4.53343648,0.0256334,95.60752897],[4.53343593,0.02563168,95.60678086],[4.53343538,0.02562996,95.60603293],[4.53343482,0.02562825,95.6052852],[4.53343427,0.02562653,95.60453767],[4.53343372,0.02562482,95.60379033],[4.53343316,0.0256231,95.60304321],[4.53343261,0.02562138,95.60229629],[4.53343206,0.02561967,95.60154959],[4.53343151,0.02561795,95.60080311],[4.53343095,0.02561624,95.60005684],[4.5334304,0.02561452,95.5993108],[4.53342985,0.02561281,95.59856499],[4.53342929,0.02561109,95.59781941],[4.53342874,0.02560937,95.59707406],[4.53342819,0.02560766,95.59632896],[4.53342764,0.02560594,95.59558409],[4.53342708,0.02560423,95.59483948],[4.53342653,0.02560251,95.59409511],[4.53342598,0.02560079,95.593351],[4.53342543,0.02559908,95.59260714],[4.53342487,0.02559736,95.59186355],[4.53342432,0.02559565,95.59112022],[4.53342377,0.02559393,95.59037716],[4.53342322,0.02559221,95.58963437],[4.53342266,0.0255905,95.58889186],[4.53342211,0.02558878,95.58814963],[4.53342156,0.02558707,95.58740768],[4.53342101,0.02558535,95.58666602],[4.53342045,0.02558363,95.58592465],[4.5334199,0.02558192,95.58518357],[4.53341935,0.0255802,95.58444279],[4.5334188,0.02557849,95.58370232],[4.53341825,0.02557677,95.58296214],[4.53341769,0.02557505,95.58222228],[4.53341714,0.02557334,95.58148273],[4.53341659,0.02557162,95.5807435],[4.53341604,0.02556991,95.58000459],[4.53341549,0.02556819,95.579266],[4.53341493,0.02556647,95.57852774],[4.53341438,0.02556476,95.57778981],[4.53341383,0.02556304,95.57705221],[4.53341328,0.02556132,95.57631495],[4.53341273,0.02555961,95.57557804],[4.53341218,0.02555789,95.57484147],[4.53341162,0.02555618,95.57410525],[4.53341107,0.02555446,95.57336938],[4.53341052,0.02555274,95.57263387],[4.53340997,0.02555103,95.57189872],[4.53340942,0.02554931,95.57116393],[4.53340887,0.02554759,95.57042951],[4.53340832,0.02554588,95.56969546],[4.53340777,0.02554416,95.56896178],[4.53340722,0.02554244,95.56822849],[4.53340666,0.02554073,95.56749557],[4.53340611,0.02553901,95.56676304],[4.53340556,0.0255373,95.5660309],[4.53340501,0.02553558,95.56529915],[4.53340446,0.02553386,95.5645678],[4.53340391,0.02553215,95.56383684],[4.53340336,0.02553043,95.56310629],[4.53340281,0.02552871,95.56237615],[4.53340226,0.025527,95.56164642],[4.53340171,0.02552528,95.5609171],[4.53340116,0.02552356,95.5601882],[4.53340061,0.02552185,95.55945972],[4.53340006,0.02552013,95.55873166],[4.53339951,0.02551841,95.55800403],[4.53339942,0.02551813,95.55788299]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}},{"geometry":{"coordinates":[[4.53343407,0.02550686,95.67438492],[4.53343417,0.02550715,95.67451339],[4.53343473,0.02550886,95.67528484],[4.53343529,0.02551058,95.67605534],[4.53343585,0.02551229,95.67682488],[4.53343641,0.025514,95.67759349],[4.53343696,0.02551572,95.67836116],[4.53343752,0.02551743,95.6791279],[4.53343808,0.02551915,95.67989373],[4.53343864,0.02552086,95.68065865],[4.5334392,0.02552257,95.68142267],[4.53343976,0.02552429,95.6821858],[4.53344031,0.025526,95.68294805],[4.53344087,0.02552772,95.68370942],[4.53344143,0.02552943,95.68446993],[4.53344198,0.02553115,95.68522958],[4.53344254,0.02553286,95.68598839],[4.5334431,0.02553458,95.68674636],[4.53344365,0.02553629,95.68750349],[4.53344421,0.02553801,95.68825981],[4.53344476,0.02553972,95.68901531],[4.53344532,0.02554144,95.68977001],[4.53344588,0.02554315,95.69052391],[4.53344643,0.02554487,95.69127703],[4.53344698,0.02554658,95.69202937],[4.53344754,0.0255483,95.69278094],[4.53344809,0.02555002,95.69353174],[4.53344865,0.02555173,95.6942818],[4.5334492,0.02555345,95.69503111],[4.53344976,0.02555516,95.69577969],[4.53345031,0.02555688,95.69652754],[4.53345086,0.02555859,95.69727468],[4.53345141,0.02556031,95.69802111],[4.53345197,0.02556203,95.69876684],[4.53345252,0.02556374,95.69951187],[4.53345307,0.02556546,95.70025623],[4.53345363,0.02556717,95.70099991],[4.53345418,0.02556889,95.70174293],[4.53345473,0.02557061,95.7024853],[4.53345528,0.02557232,95.70322702],[4.53345583,0.02557404,95.7039681],[4.53345638,0.02557576,95.70470855],[4.53345694,0.02557747,95.70544838],[4.53345749,0.02557919,95.7061876],[4.53345804,0.02558091,95.70692622],[4.53345859,0.02558262,95.70766424],[4.53345914,0.02558434,95.70840168],[4.53345969,0.02558606,95.70913855],[4.53346024,0.02558777,95.70987485],[4.53346079,0.02558949,95.71061059],[4.53346134,0.02559121,95.71134578],[4.53346189,0.02559292,95.71208043],[4.53346244,0.02559464,95.71281456],[4.53346299,0.02559636,95.71354815],[4.53346354,0.02559808,95.71428124],[4.53346409,0.02559979,95.71501382],[4.53346464,0.02560151,95.71574591],[4.53346519,0.02560323,95.71647751],[4.53346574,0.02560494,95.71720863],[4.53346629,0.02560666,95.71793928],[4.53346683,0.02560838,95.71866948],[4.53346738,0.0256101,95.71939922],[4.53346793,0.02561181,95.72012852],[4.53346848,0.02561353,95.72085739],[4.53346903,0.02561525,95.72158583],[4.53346958,0.02561697,95.72231386],[4.53347013,0.02561868,95.72304149],[4.53347067,0.0256204,95.72376872],[4.53347122,0.02562212,95.72449555],[4.53347177,0.02562384,95.72522201],[4.53347232,0.02562555,95.7259481],[4.53347287,0.02562727,95.72667383],[4.53347341,0.02562899,95.72739921],[4.53347396,0.02563071,95.72812424],[4.53347451,0.02563242,95.72884894],[4.53347506,0.02563414,95.72957331],[4.5334756,0.02563586,95.73029736],[4.53347615,0.02563758,95.73102109],[4.5334767,0.0256393,95.73174451],[4.53347725,0.02564101,95.73246762],[4.53347779,0.02564273,95.73319042],[4.53347834,0.02564445,95.73391292],[4.53347889,0.02564617,95.73463512],[4.53347943,0.02564789,95.73535703],[4.53347998,0.0256496,95.73607864],[4.53348053,0.02565132,95.73679997],[4.53348107,0.02565304,95.737521],[4.53348162,0.02565476,95.73824175],[4.53348217,0.02565648,95.73896221],[4.53348271,0.02565819,95.7396824],[4.53348326,0.02565991,95.7404023],[4.53348381,0.02566163,95.74112192],[4.53348435,0.02566335,95.74184127],[4.5334849,0.02566507,95.74256034],[4.53348545,0.02566678,95.74327914],[4.53348599,0.0256685,95.74399768],[4.53348654,0.02567022,95.74471594],[4.53348709,0.02567194,95.74543394],[4.53348763,0.02567366,95.74615168],[4.53348818,0.02567537,95.74686915],[4.53348872,0.02567709,95.74758637],[4.53348927,0.02567881,95.74830333],[4.53348982,0.02568053,95.74902004],[4.53349036,0.02568225,95.74973649],[4.53349091,0.02568397,95.7504527],[4.53349145,0.02568568,95.75116865],[4.533492,0.0256874,95.75188436],[4.53349254,0.02568912,95.75259983],[4.53349309,0.02569084,95.75331505],[4.53349364,0.02569256,95.75403004],[4.53349418,0.02569428,95.75474479],[4.53349473,0.02569599,95.7554593],[4.53349527,0.02569771,95.75617358],[4.53349582,0.02569943,95.75688763],[4.53349636,0.02570115,95.75760146],[4.53349691,0.02570287,95.75831505],[4.53349745,0.02570459,95.75902842],[4.533498,0.02570631,95.75974157],[4.53349854,0.02570802,95.7604545],[4.53349909,0.02570974,95.76116721],[4.53349964,0.02571146,95.76187971],[4.53350018,0.02571318,95.76259199],[4.53350073,0.0257149,95.76330407],[4.53350127,0.02571662,95.76401593],[4.53350182,0.02571833,95.76472759],[4.53350236,0.02572005,95.76543904],[4.53350291,0.02572177,95.76615029],[4.53350345,0.02572349,95.76686134],[4.533504,0.02572521,95.76757219],[4.53350454,0.02572693,95.76828285],[4.53350509,0.02572865,95.76899331],[4.53350563,0.02573036,95.76970358],[4.53350618,0.02573208,95.77041366],[4.53350672,0.0257338,95.77112356],[4.53350727,0.02573552,95.77183326],[4.53350781,0.02573724,95.77254279],[4.53350836,0.02573896,95.77325214],[4.5335089,0.02574068,95.7739613],[4.53350944,0.0257424,95.77467029],[4.53350999,0.02574411,95.77537911],[4.53351053,0.02574583,95.77608775],[4.53351108,0.02574755,95.77679623],[4.53351162,0.02574927,95.77750453],[4.53351217,0.02575099,95.77821267],[4.53351271,0.02575271,95.77892065],[4.53351326,0.02575443,95.77962847],[4.5335138,0.02575614,95.78033612],[4.53351435,0.02575786,95.78104362],[4.53351489,0.02575958,95.78175097],[4.53351544,0.0257613,95.78245816],[4.53351598,0.02576302,95.7831652],[4.53351653,0.02576474,95.7838721],[4.53351707,0.02576646,95.78457885],[4.53351761,0.02576818,95.78528545],[4.53351816,0.02576989,95.78599191],[4.5335187,0.02577161,95.78669823],[4.53351925,0.02577333,95.78740442],[4.53351979,0.02577505,95.78811047],[4.53352034,0.02577677,95.78881638],[4.53352088,0.02577849,95.78952216],[4.53352143,0.0257802,95.79022782],[4.53352197,0.02578192,95.79093335],[4.53352252,0.02578364,95.79163875],[4.53352306,0.02578536,95.79234403],[4.5335236,0.02578708,95.79304919],[4.53352415,0.0257888,95.79375423],[4.53352469,0.02579052,95.79445916],[4.53352524,0.02579223,95.79516398],[4.53352578,0.02579395,95.79586871],[4.53352633,0.02579567,95.79657334],[4.53352687,0.02579739,95.79727788],[4.53352742,0.02579911,95.79798235],[4.53352796,0.02580083,95.79868674],[4.53352851,0.02580255,95.79939106],[4.53352905,0.02580427,95.80009533],[4.5335296,0.02580598,95.80079953],[4.53353014,0.0258077,95.80150369],[4.53353068,0.02580942,95.80220781],[4.53353123,0.02581114,95.8029119],[4.53353177,0.02581286,95.80361595],[4.53353232,0.02581458,95.80431998],[4.53353286,0.0258163,95.805024],[4.53353341,0.02581801,95.805728],[4.53353395,0.02581973,95.806432],[4.5335345,0.02582145,95.80713601],[4.53353504,0.02582317,95.80784002],[4.53353559,0.02582489,95.80854405],[4.53353613,0.02582661,95.8092481],[4.53353668,0.02582833,95.80995217],[4.53353722,0.02583004,95.81065628],[4.53353777,0.02583176,95.81136043],[4.53353832,0.02583348,95.81206463],[4.53353886,0.0258352,95.81276888],[4.53353941,0.02583692,95.81347319],[4.53353995,0.02583864,95.81417756],[4.5335405,0.02584036,95.814882],[4.53354104,0.02584207,95.81558653],[4.53354159,0.02584379,95.81629113],[4.53354213,0.02584551,95.81699582],[4.53354268,0.02584723,95.81770061],[4.53354323,0.02584895,95.8184055],[4.53354377,0.02585067,95.8191105],[4.53354432,0.02585238,95.81981561],[4.53354486,0.0258541,95.82052084],[4.53354541,0.02585582,95.8212262],[4.53354596,0.02585754,95.82193169],[4.5335465,0.02585926,95.82263732],[4.53354705,0.02586097,95.82334311],[4.5335476,0.02586269,95.82404906],[4.53354814,0.02586441,95.82475518],[4.53354869,0.02586613,95.82546148],[4.53354924,0.02586785,95.82616797],[4.53354978,0.02586956,95.82687466],[4.53355033,0.02587128,95.82758156],[4.53355088,0.025873,95.82828868],[4.53355143,0.02587472,95.82899602],[4.53355197,0.02587644,95.8297036],[4.53355252,0.02587815,95.83041143],[4.53355307,0.02587987,95.83111954],[4.53355362,0.02588159,95.83182798],[4.53355416,0.02588331,95.83253679],[4.53355471,0.02588502,95.83324599],[4.53355526,0.02588674,95.83395564],[4.53355581,0.02588846,95.83466578],[4.53355636,0.02589018,95.83537643],[4.53355691,0.02589189,95.83608765],[4.53355745,0.02589361,95.83679947],[4.533558,0.02589533,95.83751192],[4.53355855,0.02589705,95.83822506],[4.5335591,0.02589876,95.83893891],[4.53355965,0.02590048,95.83965352],[4.5335602,0.0259022,95.84036892],[4.53356075,0.02590391,95.84108516],[4.5335613,0.02590563,95.84180226],[4.53356185,0.02590735,95.84252028],[4.53356241,0.02590906,95.84323925],[4.53356296,0.02591078,95.8439592],[4.53356351,0.0259125,95.84468018],[4.53356406,0.02591421,95.84540223],[4.53356462,0.02591593,95.84612537],[4.53356517,0.02591764,95.84684966],[4.53356572,0.02591936,95.84757512],[4.53356628,0.02592108,95.84830179],[4.53356683,0.02592279,95.84902972],[4.53356738,0.02592451,95.84975894],[4.53356794,0.02592622,95.85048948],[4.5335685,0.02592794,95.8512214],[4.53356905,0.02592965,95.85195471]],"type":"LineString"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":1,"type":"shoulder","predecessorId":1}},{"geometry":{"coordinates":[[4.53344647,0.02550283,95.67438492],[4.53344656,0.02550312,95.67451339],[4.53344711,0.02550484,95.67528484],[4.53344766,0.02550655,95.67605534],[4.53344821,0.02550827,95.67682488],[4.53344876,0.02550999,95.67759349],[4.53344931,0.02551171,95.67836116],[4.53344986,0.02551342,95.6791279],[4.53345041,0.02551514,95.67989373],[4.53345096,0.02551686,95.68065865],[4.53345151,0.02551857,95.68142267],[4.53345206,0.02552029,95.6821858],[4.53345261,0.02552201,95.68294805],[4.53345316,0.02552372,95.68370942],[4.53345371,0.02552544,95.68446993],[4.53345426,0.02552716,95.68522958],[4.53345481,0.02552888,95.68598839],[4.53345536,0.02553059,95.68674636],[4.53345591,0.02553231,95.68750349],[4.53345646,0.02553403,95.68825981],[4.53345701,0.02553574,95.68901531],[4.53345756,0.02553746,95.68977001],[4.53345811,0.02553918,95.69052391],[4.53345866,0.02554089,95.69127703],[4.53345921,0.02554261,95.69202937],[4.53345976,0.02554433,95.69278094],[4.53346031,0.02554605,95.69353174],[4.53346086,0.02554776,95.6942818],[4.53346141,0.02554948,95.69503111],[4.53346196,0.0255512,95.69577969],[4.53346251,0.02555291,95.69652754],[4.53346307,0.02555463,95.69727468],[4.53346362,0.02555635,95.69802111],[4.53346417,0.02555806,95.69876684],[4.53346472,0.02555978,95.69951187],[4.53346527,0.0255615,95.70025623],[4.53346582,0.02556321,95.70099991],[4.53346637,0.02556493,95.70174293],[4.53346692,0.02556665,95.7024853],[4.53346747,0.02556836,95.70322702],[4.53346802,0.02557008,95.7039681],[4.53346857,0.0255718,95.70470855],[4.53346912,0.02557352,95.70544838],[4.53346967,0.02557523,95.7061876],[4.53347022,0.02557695,95.70692622],[4.53347077,0.02557867,95.70766424],[4.53347132,0.02558038,95.70840168],[4.53347188,0.0255821,95.70913855],[4.53347243,0.02558382,95.70987485],[4.53347298,0.02558553,95.71061059],[4.53347353,0.02558725,95.71134578],[4.53347408,0.02558897,95.71208043],[4.53347463,0.02559068,95.71281456],[4.53347518,0.0255924,95.71354815],[4.53347573,0.02559412,95.71428124],[4.53347628,0.02559583,95.71501382],[4.53347683,0.02559755,95.71574591],[4.53347738,0.02559927,95.71647751],[4.53347793,0.02560098,95.71720863],[4.53347848,0.0256027,95.71793928],[4.53347903,0.02560442,95.71866948],[4.53347959,0.02560613,95.71939922],[4.53348014,0.02560785,95.72012852],[4.53348069,0.02560957,95.72085739],[4.53348124,0.02561129,95.72158583],[4.53348179,0.025613,95.72231386],[4.53348234,0.02561472,95.72304149],[4.53348289,0.02561644,95.72376872],[4.53348344,0.02561815,95.72449555],[4.53348399,0.02561987,95.72522201],[4.53348454,0.02562159,95.7259481],[4.53348509,0.0256233,95.72667383],[4.53348564,0.02562502,95.72739921],[4.53348619,0.02562674,95.72812424],[4.53348674,0.02562845,95.72884894],[4.5334873,0.02563017,95.72957331],[4.53348785,0.02563189,95.73029736],[4.5334884,0.0256336,95.73102109],[4.53348895,0.02563532,95.73174451],[4.5334895,0.02563704,95.73246762],[4.53349005,0.02563875,95.73319042],[4.5334906,0.02564047,95.73391292],[4.53349115,0.02564219,95.73463512],[4.5334917,0.0256439,95.73535703],[4.53349225,0.02564562,95.73607864],[4.5334928,0.02564734,95.73679997],[4.53349335,0.02564905,95.737521],[4.5334939,0.02565077,95.73824175],[4.53349445,0.02565249,95.73896221],[4.53349501,0.02565421,95.7396824],[4.53349556,0.02565592,95.7404023],[4.53349611,0.02565764,95.74112192],[4.53349666,0.02565936,95.74184127],[4.53349721,0.02566107,95.74256034],[4.53349776,0.02566279,95.74327914],[4.53349831,0.02566451,95.74399768],[4.53349886,0.02566622,95.74471594],[4.53349941,0.02566794,95.74543394],[4.53349996,0.02566966,95.74615168],[4.53350051,0.02567137,95.74686915],[4.53350106,0.02567309,95.74758637],[4.53350161,0.02567481,95.74830333],[4.53350216,0.02567652,95.74902004],[4.53350271,0.02567824,95.74973649],[4.53350326,0.02567996,95.7504527],[4.53350382,0.02568167,95.75116865],[4.53350437,0.02568339,95.75188436],[4.53350492,0.02568511,95.75259983],[4.53350547,0.02568682,95.75331505],[4.53350602,0.02568854,95.75403004],[4.53350657,0.02569026,95.75474479],[4.53350712,0.02569198,95.7554593],[4.53350767,0.02569369,95.75617358],[4.53350822,0.02569541,95.75688763],[4.53350877,0.02569713,95.75760146],[4.53350932,0.02569884,95.75831505],[4.53350987,0.02570056,95.75902842],[4.53351042,0.02570228,95.75974157],[4.53351097,0.02570399,95.7604545],[4.53351152,0.02570571,95.76116721],[4.53351207,0.02570743,95.76187971],[4.53351262,0.02570914,95.76259199],[4.53351317,0.02571086,95.76330407],[4.53351372,0.02571258,95.76401593],[4.53351427,0.02571429,95.76472759],[4.53351482,0.02571601,95.76543904],[4.53351537,0.02571773,95.76615029],[4.53351592,0.02571945,95.76686134],[4.53351647,0.02572116,95.76757219],[4.53351702,0.02572288,95.76828285],[4.53351757,0.0257246,95.76899331],[4.53351812,0.02572631,95.76970358],[4.53351868,0.02572803,95.77041366],[4.53351923,0.02572975,95.77112356],[4.53351978,0.02573146,95.77183326],[4.53352033,0.02573318,95.77254279],[4.53352088,0.0257349,95.77325214],[4.53352143,0.02573662,95.7739613],[4.53352198,0.02573833,95.77467029],[4.53352253,0.02574005,95.77537911],[4.53352308,0.02574177,95.77608775],[4.53352363,0.02574348,95.77679623],[4.53352418,0.0257452,95.77750453],[4.53352473,0.02574692,95.77821267],[4.53352527,0.02574863,95.77892065],[4.53352582,0.02575035,95.77962847],[4.53352637,0.02575207,95.78033612],[4.53352692,0.02575379,95.78104362],[4.53352747,0.0257555,95.78175097],[4.53352802,0.02575722,95.78245816],[4.53352857,0.02575894,95.7831652],[4.53352912,0.02576065,95.7838721],[4.53352967,0.02576237,95.78457885],[4.53353022,0.02576409,95.78528545],[4.53353077,0.02576581,95.78599191],[4.53353132,0.02576752,95.78669823],[4.53353187,0.02576924,95.78740442],[4.53353242,0.02577096,95.78811047],[4.53353297,0.02577267,95.78881638],[4.53353352,0.02577439,95.78952216],[4.53353407,0.02577611,95.79022782],[4.53353462,0.02577782,95.79093335],[4.53353517,0.02577954,95.79163875],[4.53353572,0.02578126,95.79234403],[4.53353627,0.02578298,95.79304919],[4.53353681,0.02578469,95.79375423],[4.53353736,0.02578641,95.79445916],[4.53353791,0.02578813,95.79516398],[4.53353846,0.02578984,95.79586871],[4.53353901,0.02579156,95.79657334],[4.53353956,0.02579328,95.79727788],[4.53354011,0.025795,95.79798235],[4.53354066,0.02579671,95.79868674],[4.53354121,0.02579843,95.79939106],[4.53354176,0.02580015,95.80009533],[4.5335423,0.02580187,95.80079953],[4.53354285,0.02580358,95.80150369],[4.5335434,0.0258053,95.80220781],[4.53354395,0.02580702,95.8029119],[4.5335445,0.02580874,95.80361595],[4.53354505,0.02581045,95.80431998],[4.5335456,0.02581217,95.805024],[4.53354615,0.02581389,95.805728],[4.53354669,0.0258156,95.806432],[4.53354724,0.02581732,95.80713601],[4.53354779,0.02581904,95.80784002],[4.53354834,0.02582076,95.80854405],[4.53354889,0.02582247,95.8092481],[4.53354944,0.02582419,95.80995217],[4.53354999,0.02582591,95.81065628],[4.53355054,0.02582763,95.81136043],[4.53355108,0.02582934,95.81206463],[4.53355163,0.02583106,95.81276888],[4.53355218,0.02583278,95.81347319],[4.53355273,0.0258345,95.81417756],[4.53355328,0.02583621,95.814882],[4.53355383,0.02583793,95.81558653],[4.53355438,0.02583965,95.81629113],[4.53355492,0.02584137,95.81699582],[4.53355547,0.02584308,95.81770061],[4.53355602,0.0258448,95.8184055],[4.53355657,0.02584652,95.8191105],[4.53355712,0.02584824,95.81981561],[4.53355767,0.02584995,95.82052084],[4.53355821,0.02585167,95.8212262],[4.53355876,0.02585339,95.82193169],[4.53355931,0.02585511,95.82263732],[4.53355986,0.02585682,95.82334311],[4.53356041,0.02585854,95.82404906],[4.53356096,0.02586026,95.82475518],[4.53356151,0.02586198,95.82546148],[4.53356205,0.02586369,95.82616797],[4.5335626,0.02586541,95.82687466],[4.53356315,0.02586713,95.82758156],[4.5335637,0.02586885,95.82828868],[4.53356425,0.02587056,95.82899602],[4.5335648,0.02587228,95.8297036],[4.53356535,0.025874,95.83041143],[4.53356589,0.02587572,95.83111954],[4.53356644,0.02587743,95.83182798],[4.53356699,0.02587915,95.83253679],[4.53356754,0.02588087,95.83324599],[4.53356809,0.02588259,95.83395564],[4.53356864,0.0258843,95.83466578],[4.53356919,0.02588602,95.83537643],[4.53356973,0.02588774,95.83608765],[4.53357028,0.02588946,95.83679947],[4.53357083,0.02589117,95.83751192],[4.53357138,0.02589289,95.83822506],[4.53357193,0.02589461,95.83893891],[4.53357248,0.02589633,95.83965352],[4.53357303,0.02589804,95.84036892],[4.53357358,0.02589976,95.84108516],[4.53357412,0.02590148,95.84180226],[4.53357467,0.0259032,95.84252028],[4.53357522,0.02590491,95.84323925],[4.53357577,0.02590663,95.8439592],[4.53357632,0.02590835,95.84468018],[4.53357687,0.02591007,95.84540223],[4.53357742,0.02591178,95.84612537],[4.53357796,0.0259135,95.84684966],[4.53357851,0.02591522,95.84757512],[4.53357906,0.02591694,95.84830179],[4.53357961,0.02591865,95.84902972],[4.53358016,0.02592037,95.84975894],[4.53358071,0.02592209,95.85048948],[4.53358126,0.02592381,95.8512214],[4.53358181,0.02592552,95.85195471]],"type":"LineString"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":2,"type":"none","predecessorId":2}},{"geometry":{"coordinates":[[4.53329492,0.02555209,95.47753252],[4.53329451,0.0255508,95.46819295]],"type":"LineString"},"type":"feature","properties":{"successorId":-7,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-7,"type":"none","predecessorId":0}},{"geometry":{"coordinates":[[4.53332124,0.02554353,95.47753252],[4.53332077,0.02554227,95.46819295]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-6,"type":"border","predecessorId":0}},{"geometry":{"coordinates":[[4.5333309,0.0255404,95.32753252],[4.53332787,0.02553996,95.31819295]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-5,"type":"border","predecessorId":-5}},{"geometry":{"coordinates":[[4.53333758,0.02553822,95.35000952],[4.53333717,0.02553694,95.34946543]],"type":"LineString"},"type":"feature","properties":{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-4,"type":"shoulder","predecessorId":-4}},{"geometry":{"coordinates":[[4.53333927,0.02553767,95.35567583],[4.53333886,0.02553639,95.35515342]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3}},{"geometry":{"coordinates":[[4.53336844,0.02552819,95.45373207],[4.53336803,0.02552691,95.45320399]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2}},{"geometry":{"coordinates":[[4.53339942,0.02551813,95.55788299],[4.53339901,0.02551684,95.55733742]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}},{"geometry":{"coordinates":[[4.53343365,0.02550558,95.67380568],[4.53343407,0.02550686,95.67438492]],"type":"LineString"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":1,"type":"shoulder","predecessorId":1}},{"geometry":{"coordinates":[[4.53344606,0.02550155,95.67380568],[4.53344647,0.02550283,95.67438492]],"type":"LineString"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":2,"type":"none","predecessorId":2}},{"geometry":{"coordinates":[[4.53329451,0.0255508,95.4487602],[4.53329396,0.02554909,95.4477707],[4.53329341,0.02554737,95.44678178],[4.53329281,0.02554567,95.46595892],[4.53329224,0.02554396,95.47548211],[4.53329174,0.02554223,95.48500393],[4.5332912,0.02554051,95.48985493],[4.53329065,0.02553879,95.48917111],[4.5332901,0.02553707,95.48848665],[4.53328956,0.02553536,95.48780156],[4.53328901,0.02553364,95.48711582],[4.53328846,0.02553192,95.48642943],[4.53328792,0.02553021,95.48574238],[4.53328737,0.02552849,95.48505467],[4.53328682,0.02552677,95.48436629],[4.53328628,0.02552505,95.48367723],[4.53328573,0.02552334,95.4829875],[4.53328519,0.02552162,95.48229708],[4.53328464,0.0255199,95.48160597],[4.5332841,0.02551818,95.48091416],[4.53328355,0.02551647,95.48022165],[4.53328301,0.02551475,95.47952843],[4.53328246,0.02551303,95.4788345],[4.53328192,0.02551131,95.47813984],[4.53328137,0.0255096,95.47744446],[4.53328082,0.02550788,95.47674835],[4.53328027,0.02550616,95.4760515],[4.53327972,0.02550445,95.47535391],[4.53327917,0.02550273,95.47465558],[4.53327862,0.02550102,95.47395648],[4.53327807,0.0254993,95.47325663],[4.53327752,0.02549759,95.47255601],[4.53327696,0.02549587,95.47185463],[4.5332764,0.02549416,95.47115246],[4.53327585,0.02549244,95.47044952],[4.53327529,0.02549073,95.46974578],[4.53327473,0.02548902,95.46904126],[4.53327417,0.0254873,95.46833594],[4.53327362,0.02548559,95.46762981],[4.53327306,0.02548388,95.46692287],[4.5332725,0.02548216,95.46621512],[4.53327194,0.02548045,95.46550654],[4.53327138,0.02547874,95.46479715],[4.53327082,0.02547702,95.46408693],[4.53327026,0.02547531,95.4633759],[4.53326971,0.0254736,95.46266409],[4.53326915,0.02547188,95.4619515],[4.5332686,0.02547017,95.46123815],[4.53326804,0.02546845,95.46052406],[4.53326749,0.02546674,95.45980924],[4.53326694,0.02546502,95.45909371],[4.53326638,0.02546331,95.45837749],[4.53326583,0.02546159,95.45766058],[4.53326528,0.02545988,95.45694302],[4.53326473,0.02545816,95.4562248],[4.53326418,0.02545645,95.45550595],[4.53326363,0.02545473,95.45478649],[4.53326308,0.02545302,95.45406642],[4.53326253,0.0254513,95.45334577],[4.53326198,0.02544958,95.45262455],[4.53326143,0.02544787,95.45190277],[4.53326088,0.02544615,95.45118046],[4.53326033,0.02544443,95.45045763],[4.53325978,0.02544272,95.44973428],[4.53325923,0.025441,95.44901045],[4.53325868,0.02543929,95.44828614],[4.53325813,0.02543757,95.44756137],[4.53325758,0.02543585,95.44683616],[4.53325703,0.02543414,95.44611052],[4.53325649,0.02543242,95.44538447],[4.53325594,0.0254307,95.44465802],[4.53325539,0.02542899,95.44393119],[4.53325484,0.02542727,95.44320399],[4.53325429,0.02542556,95.44247644],[4.53325374,0.02542384,95.44174856],[4.53325319,0.02542213,95.44102035],[4.53325264,0.02542041,95.44029185],[4.5332523,0.02541935,95.43984364]],"type":"LineString"},"type":"feature","properties":{"successorId":-7,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-7,"type":"none","predecessorId":-7}},{"geometry":{"coordinates":[[4.53332077,0.02554227,95.4487602],[4.53332013,0.02554058,95.4477707],[4.5333195,0.02553889,95.44678178],[4.53331881,0.02553722,95.46595892],[4.53332597,0.02553299,95.47548211],[4.53332852,0.02553027,95.48500393],[4.53333064,0.02552769,95.48985493],[4.5333301,0.02552597,95.48917111],[4.53332956,0.02552425,95.48848665],[4.53332902,0.02552253,95.48780156],[4.53332848,0.02552081,95.48711582],[4.53332794,0.02551909,95.48642943],[4.5333274,0.02551737,95.48574238],[4.53332686,0.02551565,95.48505467],[4.53332632,0.02551393,95.48436629],[4.53332578,0.02551221,95.48367723],[4.53332524,0.02551049,95.4829875],[4.5333247,0.02550877,95.48229708],[4.53332416,0.02550705,95.48160597],[4.53332363,0.02550533,95.48091416],[4.53332309,0.02550361,95.48022165],[4.53332255,0.02550189,95.47952843],[4.53332201,0.02550017,95.4788345],[4.53332147,0.02549845,95.47813984],[4.53332093,0.02549673,95.47744446],[4.5333204,0.02549501,95.47674835],[4.53331986,0.02549329,95.4760515],[4.53331932,0.02549157,95.47535391],[4.53331878,0.02548985,95.47465558],[4.53331824,0.02548813,95.47395648],[4.5333177,0.02548641,95.47325663],[4.53331716,0.02548469,95.47255601],[4.53331662,0.02548297,95.47185463],[4.53331608,0.02548125,95.47115246],[4.53331554,0.02547953,95.47044952],[4.533315,0.02547782,95.46974578],[4.53331445,0.0254761,95.46904126],[4.53331391,0.02547438,95.46833594],[4.53331337,0.02547266,95.46762981],[4.53331282,0.02547094,95.46692287],[4.53331227,0.02546922,95.46621512],[4.53331173,0.02546751,95.46550654],[4.53331118,0.02546579,95.46479715],[4.53331063,0.02546407,95.46408693],[4.53331008,0.02546236,95.4633759],[4.53330953,0.02546064,95.46266409],[4.53330898,0.02545892,95.4619515],[4.53330843,0.02545721,95.46123815],[4.53330788,0.02545549,95.46052406],[4.53330732,0.02545378,95.45980924],[4.53330677,0.02545206,95.45909371],[4.53330621,0.02545035,95.45837749],[4.53330566,0.02544864,95.45766058],[4.5333051,0.02544692,95.45694302],[4.53330454,0.02544521,95.4562248],[4.53330398,0.02544349,95.45550595],[4.53330342,0.02544178,95.45478649],[4.53330286,0.02544007,95.45406642],[4.5333023,0.02543836,95.45334577],[4.53330174,0.02543664,95.45262455],[4.53330118,0.02543493,95.45190277],[4.53330062,0.02543322,95.45118046],[4.53330006,0.02543151,95.45045763],[4.53329949,0.02542979,95.44973428],[4.53329893,0.02542808,95.44901045],[4.53329837,0.02542637,95.44828614],[4.5332978,0.02542466,95.44756137],[4.53329724,0.02542295,95.44683616],[4.53329667,0.02542123,95.44611052],[4.53329611,0.02541952,95.44538447],[4.53329555,0.02541781,95.44465802],[4.53329498,0.0254161,95.44393119],[4.53329442,0.02541439,95.44320399],[4.53329385,0.02541268,95.44247644],[4.53329329,0.02541097,95.44174856],[4.53329272,0.02540925,95.44102035],[4.53329216,0.02540754,95.44029185],[4.53329181,0.02540649,95.43984364]],"type":"LineString"},"type":"feature","properties":{"successorId":-6,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-6,"type":"border","predecessorId":0}},{"geometry":{"coordinates":[[4.53332208,0.02554184,95.2987602],[4.53332145,0.02554015,95.2977707],[4.53332082,0.02553846,95.29678178],[4.53332618,0.02553482,95.31595892],[4.53332868,0.02553212,95.32548211],[4.53333117,0.02552941,95.33500393],[4.53333228,0.02552716,95.33985493],[4.53333173,0.02552544,95.33917111],[4.53333119,0.02552372,95.33848665],[4.53333065,0.025522,95.33780156],[4.5333301,0.02552028,95.33711582],[4.53332956,0.02551856,95.33642943],[4.53332901,0.02551685,95.33574238],[4.53332847,0.02551513,95.33505467],[4.53332792,0.02551341,95.33436629],[4.53332738,0.02551169,95.33367723],[4.53332683,0.02550997,95.3329875],[4.53332628,0.02550826,95.33229708],[4.53332574,0.02550654,95.33160597],[4.53332519,0.02550482,95.33091416],[4.53332464,0.02550311,95.33022165],[4.5333241,0.02550139,95.32952843],[4.53332355,0.02549967,95.3288345],[4.533323,0.02549795,95.32813984],[4.53332245,0.02549624,95.32744446],[4.5333219,0.02549452,95.32674835],[4.53332135,0.0254928,95.3260515],[4.5333208,0.02549109,95.32535391],[4.53332025,0.02548937,95.32465558],[4.5333197,0.02548766,95.32395648],[4.53331915,0.02548594,95.32325663],[4.5333186,0.02548422,95.32255601],[4.53331805,0.02548251,95.32185463],[4.5333175,0.02548079,95.32115246],[4.53331695,0.02547908,95.32044952],[4.53331639,0.02547736,95.31974578],[4.53331584,0.02547565,95.31904126],[4.53331529,0.02547393,95.31833594],[4.53331474,0.02547221,95.31762981],[4.53331418,0.0254705,95.31692287],[4.53331363,0.02546878,95.31621512],[4.53331307,0.02546707,95.31550654],[4.53331252,0.02546536,95.31479715],[4.53331196,0.02546364,95.31408693],[4.53331141,0.02546193,95.3133759],[4.53331085,0.02546021,95.31266409],[4.53331029,0.0254585,95.3119515],[4.53330974,0.02545678,95.31123815],[4.53330918,0.02545507,95.31052406],[4.53330862,0.02545336,95.30980924],[4.53330807,0.02545164,95.30909371],[4.53330751,0.02544993,95.30837749],[4.53330695,0.02544821,95.30766058],[4.53330639,0.0254465,95.30694302],[4.53330583,0.02544479,95.3062248],[4.53330527,0.02544307,95.30550595],[4.53330471,0.02544136,95.30478649],[4.53330415,0.02543965,95.30406642],[4.53330359,0.02543794,95.30334577],[4.53330303,0.02543622,95.30262455],[4.53330247,0.02543451,95.30190277],[4.53330191,0.0254328,95.30118046],[4.53330135,0.02543108,95.30045763],[4.53330079,0.02542937,95.29973428],[4.53330023,0.02542766,95.29901045],[4.53329966,0.02542595,95.29828614],[4.5332991,0.02542423,95.29756137],[4.53329854,0.02542252,95.29683616],[4.53329798,0.02542081,95.29611052],[4.53329741,0.0254191,95.29538447],[4.53329685,0.02541739,95.29465802],[4.53329629,0.02541567,95.29393119],[4.53329572,0.02541396,95.29320399],[4.53329516,0.02541225,95.29247644],[4.5332946,0.02541054,95.29174856],[4.53329403,0.02540883,95.29102035],[4.53329347,0.02540712,95.29029185],[4.53329312,0.02540606,95.28984364]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-5,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-5,"type":"border","predecessorId":0}},{"geometry":{"coordinates":[[4.53333717,0.02553694,95.34946543],[4.53333662,0.02553522,95.34875223],[4.53333607,0.0255335,95.34803947],[4.53333552,0.02553179,95.34732716],[4.53333497,0.02553007,95.34661529],[4.53333441,0.02552836,95.34590386],[4.53333386,0.02552664,95.34519287],[4.53333331,0.02552492,95.34448231],[4.53333276,0.02552321,95.34377218],[4.53333221,0.02552149,95.34306248],[4.53333166,0.02551978,95.34235321],[4.53333111,0.02551806,95.34164436],[4.53333056,0.02551634,95.34093593],[4.53333001,0.02551463,95.34022791],[4.53332946,0.02551291,95.33952032],[4.53332891,0.02551119,95.33881313],[4.53332836,0.02550948,95.33810636],[4.53332781,0.02550776,95.33739999],[4.53332725,0.02550605,95.33669403],[4.5333267,0.02550433,95.33598847],[4.53332615,0.02550261,95.3352833],[4.5333256,0.0255009,95.33457854],[4.53332505,0.02549918,95.33387417],[4.5333245,0.02549747,95.33317019],[4.53332395,0.02549575,95.3324666],[4.5333234,0.02549403,95.3317634],[4.53332285,0.02549232,95.33106058],[4.5333223,0.0254906,95.33035815],[4.53332175,0.02548889,95.32965609],[4.5333212,0.02548717,95.32895441],[4.53332064,0.02548545,95.3282531],[4.53332009,0.02548374,95.32755216],[4.53331954,0.02548202,95.32685159],[4.53331899,0.02548031,95.32615138],[4.53331844,0.02547859,95.32545154],[4.53331789,0.02547687,95.32475206],[4.53331734,0.02547516,95.32405293],[4.53331679,0.02547344,95.32335416],[4.53331624,0.02547173,95.32265574],[4.53331569,0.02547001,95.32195768],[4.53331513,0.02546829,95.32125996],[4.53331458,0.02546658,95.32056258],[4.53331403,0.02546486,95.31986555],[4.53331348,0.02546315,95.31916885],[4.53331293,0.02546143,95.31847249],[4.53331238,0.02545971,95.31777647],[4.53331183,0.025458,95.31708077],[4.53331128,0.02545628,95.31638541],[4.53331073,0.02545457,95.31569037],[4.53331017,0.02545285,95.31499566],[4.53330962,0.02545113,95.31430126],[4.53330907,0.02544942,95.31360719],[4.53330852,0.0254477,95.31291343],[4.53330797,0.02544599,95.31221998],[4.53330742,0.02544427,95.31152684],[4.53330687,0.02544256,95.31083402],[4.53330632,0.02544084,95.31014149],[4.53330577,0.02543912,95.30944927],[4.53330521,0.02543741,95.30875735],[4.53330466,0.02543569,95.30806573],[4.53330411,0.02543398,95.3073744],[4.53330356,0.02543226,95.30668336],[4.53330301,0.02543054,95.30599261],[4.53330246,0.02542883,95.30530215],[4.53330191,0.02542711,95.30461198],[4.53330136,0.0254254,95.30392208],[4.5333008,0.02542368,95.30323247],[4.53330025,0.02542197,95.30254313],[4.5332997,0.02542025,95.30185406],[4.53329915,0.02541853,95.30116527],[4.5332986,0.02541682,95.30047674],[4.53329805,0.0254151,95.29978848],[4.5332975,0.02541339,95.29910048],[4.53329694,0.02541167,95.29841275],[4.53329639,0.02540995,95.29772527],[4.53329584,0.02540824,95.29703805],[4.53329529,0.02540652,95.29635108],[4.53329495,0.02540547,95.29592869]],"type":"LineString"},"type":"feature","properties":{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-4,"type":"shoulder","predecessorId":-4}},{"geometry":{"coordinates":[[4.53333886,0.02553639,95.35515342],[4.53333832,0.02553467,95.35446088],[4.53333777,0.02553295,95.35376878],[4.53333723,0.02553123,95.35307711],[4.53333668,0.02552951,95.35238587],[4.53333614,0.0255278,95.35169505],[4.53333559,0.02552608,95.35100466],[4.53333505,0.02552436,95.35031469],[4.5333345,0.02552264,95.34962514],[4.53333396,0.02552092,95.348936],[4.53333342,0.0255192,95.34824728],[4.53333287,0.02551749,95.34755896],[4.53333233,0.02551577,95.34687106],[4.53333178,0.02551405,95.34618356],[4.53333124,0.02551233,95.34549646],[4.53333069,0.02551061,95.34480976],[4.53333015,0.0255089,95.34412346],[4.5333296,0.02550718,95.34343755],[4.53332906,0.02550546,95.34275203],[4.53332852,0.02550374,95.34206691],[4.53332797,0.02550202,95.34138217],[4.53332743,0.02550031,95.34069781],[4.53332688,0.02549859,95.34001383],[4.53332634,0.02549687,95.33933023],[4.53332579,0.02549515,95.33864701],[4.53332525,0.02549343,95.33796416],[4.5333247,0.02549171,95.33728168],[4.53332416,0.02549,95.33659957],[4.53332361,0.02548828,95.33591782],[4.53332307,0.02548656,95.33523644],[4.53332252,0.02548484,95.33455541],[4.53332198,0.02548312,95.33387474],[4.53332144,0.02548141,95.33319443],[4.53332089,0.02547969,95.33251447],[4.53332035,0.02547797,95.33183486],[4.5333198,0.02547625,95.33115559],[4.53331926,0.02547453,95.33047667],[4.53331871,0.02547282,95.32979808],[4.53331817,0.0254711,95.32911984],[4.53331762,0.02546938,95.32844193],[4.53331708,0.02546766,95.32776436],[4.53331653,0.02546594,95.32708711],[4.53331599,0.02546423,95.3264102],[4.53331544,0.02546251,95.32573361],[4.5333149,0.02546079,95.32505734],[4.53331435,0.02545907,95.32438139],[4.53331381,0.02545735,95.32370576],[4.53331326,0.02545564,95.32303044],[4.53331272,0.02545392,95.32235544],[4.53331218,0.0254522,95.32168074],[4.53331163,0.02545048,95.32100635],[4.53331109,0.02544876,95.32033227],[4.53331054,0.02544705,95.31965848],[4.53331,0.02544533,95.318985],[4.53330945,0.02544361,95.31831181],[4.53330891,0.02544189,95.31763891],[4.53330836,0.02544017,95.31696631],[4.53330782,0.02543846,95.31629399],[4.53330727,0.02543674,95.31562196],[4.53330673,0.02543502,95.31495022],[4.53330618,0.0254333,95.31427875],[4.53330564,0.02543158,95.31360756],[4.53330509,0.02542987,95.31293664],[4.53330455,0.02542815,95.312266],[4.533304,0.02542643,95.31159563],[4.53330346,0.02542471,95.31092553],[4.53330291,0.025423,95.31025569],[4.53330237,0.02542128,95.30958611],[4.53330182,0.02541956,95.30891679],[4.53330128,0.02541784,95.30824773],[4.53330073,0.02541612,95.30757892],[4.53330019,0.02541441,95.30691036],[4.53329964,0.02541269,95.30624205],[4.5332991,0.02541097,95.30557399],[4.53329855,0.02540925,95.30490617],[4.533298,0.02540753,95.3042386],[4.53329746,0.02540582,95.30357126],[4.53329712,0.02540476,95.30316093]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3}},{"geometry":{"coordinates":[[4.53336803,0.02552691,95.45320399],[4.53336748,0.02552519,95.45248928],[4.53336693,0.02552347,95.45177486],[4.53336638,0.02552176,95.45106071],[4.53336583,0.02552004,95.45034685],[4.53336529,0.02551832,95.44963327],[4.53336474,0.0255166,95.44891996],[4.53336419,0.02551489,95.44820693],[4.53336364,0.02551317,95.44749418],[4.53336309,0.02551145,95.44678169],[4.53336254,0.02550974,95.44606948],[4.53336199,0.02550802,95.44535753],[4.53336144,0.0255063,95.44464585],[4.5333609,0.02550459,95.44393443],[4.53336035,0.02550287,95.44322328],[4.5333598,0.02550115,95.44251239],[4.53335925,0.02549943,95.44180175],[4.5333587,0.02549772,95.44109138],[4.53335815,0.025496,95.44038126],[4.5333576,0.02549428,95.43967139],[4.53335706,0.02549257,95.43896177],[4.53335651,0.02549085,95.43825241],[4.53335596,0.02548913,95.43754329],[4.53335541,0.02548742,95.43683442],[4.53335486,0.0254857,95.43612579],[4.53335431,0.02548398,95.43541741],[4.53335376,0.02548226,95.43470927],[4.53335321,0.02548055,95.43400136],[4.53335267,0.02547883,95.4332937],[4.53335212,0.02547711,95.43258627],[4.53335157,0.0254754,95.43187907],[4.53335102,0.02547368,95.4311721],[4.53335047,0.02547196,95.43046537],[4.53334992,0.02547025,95.42975886],[4.53334937,0.02546853,95.42905258],[4.53334882,0.02546681,95.42834652],[4.53334827,0.0254651,95.42764069],[4.53334773,0.02546338,95.42693508],[4.53334718,0.02546166,95.42622968],[4.53334663,0.02545995,95.42552451],[4.53334608,0.02545823,95.42481955],[4.53334553,0.02545651,95.4241148],[4.53334498,0.02545479,95.42341027],[4.53334443,0.02545308,95.42270594],[4.53334388,0.02545136,95.42200183],[4.53334333,0.02544964,95.42129792],[4.53334279,0.02544793,95.42059421],[4.53334224,0.02544621,95.41989071],[4.53334169,0.02544449,95.41918741],[4.53334114,0.02544278,95.41848431],[4.53334059,0.02544106,95.4177814],[4.53334004,0.02543934,95.41707869],[4.53333949,0.02543763,95.41637618],[4.53333894,0.02543591,95.41567386],[4.53333839,0.02543419,95.41497173],[4.53333784,0.02543248,95.41426978],[4.53333729,0.02543076,95.41356803],[4.53333675,0.02542904,95.41286645],[4.5333362,0.02542733,95.41216507],[4.53333565,0.02542561,95.41146386],[4.5333351,0.02542389,95.41076283],[4.53333455,0.02542218,95.41006198],[4.533334,0.02542046,95.40936131],[4.53333345,0.02541874,95.40866081],[4.5333329,0.02541702,95.40796048],[4.53333235,0.02541531,95.40726032],[4.5333318,0.02541359,95.40656033],[4.53333125,0.02541187,95.40586051],[4.5333307,0.02541016,95.40516085],[4.53333016,0.02540844,95.40446136],[4.53332961,0.02540672,95.40376203],[4.53332906,0.02540501,95.40306286],[4.53332851,0.02540329,95.40236385],[4.53332796,0.02540157,95.40166499],[4.53332741,0.02539986,95.40096629],[4.53332686,0.02539814,95.40026774],[4.53332631,0.02539642,95.39956934],[4.53332597,0.02539537,95.39913986]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2}},{"geometry":{"coordinates":[[4.53339901,0.02551684,95.55733742],[4.53339846,0.02551512,95.55661364],[4.53339791,0.0255134,95.55588998],[4.53339736,0.02551169,95.55516645],[4.53339681,0.02550997,95.55444303],[4.53339626,0.02550825,95.55371974],[4.53339571,0.02550653,95.55299657],[4.53339517,0.02550482,95.55227351],[4.53339462,0.0255031,95.55155057],[4.53339407,0.02550138,95.55082775],[4.53339352,0.02549967,95.55010504],[4.53339297,0.02549795,95.54938244],[4.53339242,0.02549623,95.54865996],[4.53339187,0.02549451,95.54793759],[4.53339132,0.0254928,95.54721533],[4.53339077,0.02549108,95.54649319],[4.53339023,0.02548936,95.54577115],[4.53338968,0.02548765,95.54504922],[4.53338913,0.02548593,95.54432739],[4.53338858,0.02548421,95.54360568],[4.53338803,0.0254825,95.54288407],[4.53338748,0.02548078,95.54216256],[4.53338693,0.02547906,95.54144115],[4.53338638,0.02547734,95.54071985],[4.53338583,0.02547563,95.53999865],[4.53338529,0.02547391,95.53927755],[4.53338474,0.02547219,95.53855656],[4.53338419,0.02547048,95.53783565],[4.53338364,0.02546876,95.53711485],[4.53338309,0.02546704,95.53639414],[4.53338254,0.02546532,95.53567353],[4.53338199,0.02546361,95.53495302],[4.53338144,0.02546189,95.53423259],[4.53338089,0.02546017,95.53351226],[4.53338035,0.02545846,95.53279203],[4.5333798,0.02545674,95.53207188],[4.53337925,0.02545502,95.53135182],[4.5333787,0.0254533,95.53063185],[4.53337815,0.02545159,95.52991197],[4.5333776,0.02544987,95.52919218],[4.53337705,0.02544815,95.52847247],[4.5333765,0.02544644,95.52775285],[4.53337595,0.02544472,95.52703331],[4.5333754,0.025443,95.52631385],[4.53337486,0.02544129,95.52559448],[4.53337431,0.02543957,95.52487519],[4.53337376,0.02543785,95.52415597],[4.53337321,0.02543613,95.52343684],[4.53337266,0.02543442,95.52271779],[4.53337211,0.0254327,95.52199881],[4.53337156,0.02543098,95.52127991],[4.53337101,0.02542927,95.52056108],[4.53337046,0.02542755,95.51984233],[4.53336991,0.02542583,95.51912366],[4.53336936,0.02542411,95.51840505],[4.53336881,0.0254224,95.51768652],[4.53336827,0.02542068,95.51696806],[4.53336772,0.02541896,95.51624966],[4.53336717,0.02541725,95.51553134],[4.53336662,0.02541553,95.51481308],[4.53336607,0.02541381,95.51409489],[4.53336552,0.0254121,95.51337677],[4.53336497,0.02541038,95.51265871],[4.53336442,0.02540866,95.51194072],[4.53336387,0.02540695,95.51122278],[4.53336332,0.02540523,95.51050491],[4.53336277,0.02540351,95.50978711],[4.53336222,0.02540179,95.50906936],[4.53336167,0.02540008,95.50835167],[4.53336112,0.02539836,95.50763404],[4.53336057,0.02539664,95.50691646],[4.53336003,0.02539493,95.50619895],[4.53335948,0.02539321,95.50548149],[4.53335893,0.02539149,95.50476408],[4.53335838,0.02538978,95.50404673],[4.53335783,0.02538806,95.50332942],[4.53335728,0.02538634,95.50261217],[4.53335694,0.02538529,95.50217106]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}},{"geometry":{"coordinates":[[4.53339118,0.02537414,95.61608841],[4.53339151,0.0253752,95.61652143],[4.53339205,0.02537692,95.61722288],[4.53339259,0.02537864,95.61792158],[4.53339312,0.02538036,95.61861807],[4.53339366,0.02538208,95.61931287],[4.5333942,0.0253838,95.62000653],[4.53339473,0.02538552,95.62069959],[4.53339527,0.02538725,95.62139257],[4.53339581,0.02538897,95.62208603],[4.53339634,0.02539069,95.62278049],[4.53339688,0.02539241,95.6234765],[4.53339742,0.02539413,95.62417459],[4.53339796,0.02539585,95.62487531],[4.5333985,0.02539757,95.62557919],[4.53339904,0.02539929,95.62628677],[4.53339958,0.02540101,95.6269986],[4.53340012,0.02540273,95.62771521],[4.53340067,0.02540445,95.62843715],[4.53340121,0.02540617,95.62916496],[4.53340176,0.02540788,95.62989918],[4.53340231,0.0254096,95.63064016],[4.53340286,0.02541132,95.63138755],[4.53340342,0.02541303,95.6321408],[4.53340398,0.02541475,95.63289936],[4.53340453,0.02541646,95.63366268],[4.53340509,0.02541818,95.63443023],[4.53340565,0.02541989,95.63520144],[4.53340621,0.0254216,95.63597577],[4.53340677,0.02542332,95.63675268],[4.53340733,0.02542503,95.63753161],[4.5334079,0.02542674,95.63831202],[4.53340846,0.02542846,95.63909335],[4.53340902,0.02543017,95.63987505],[4.53340959,0.02543188,95.64065659],[4.53341015,0.0254336,95.6414374],[4.53341071,0.02543531,95.64221725],[4.53341127,0.02543702,95.64299615],[4.53341183,0.02543873,95.64377415],[4.5334124,0.02544045,95.64455127],[4.53341296,0.02544216,95.64532756],[4.53341352,0.02544387,95.64610305],[4.53341408,0.02544559,95.64687778],[4.53341464,0.0254473,95.64765179],[4.5334152,0.02544902,95.64842511],[4.53341576,0.02545073,95.64919779],[4.53341632,0.02545244,95.64996985],[4.53341688,0.02545416,95.65074134],[4.53341744,0.02545587,95.6515123],[4.533418,0.02545758,95.65228276],[4.53341856,0.0254593,95.65305275],[4.53341912,0.02546101,95.65382232],[4.53341968,0.02546273,95.65459151],[4.53342024,0.02546444,95.65536035],[4.53342079,0.02546615,95.65612888],[4.53342135,0.02546787,95.65689713],[4.53342191,0.02546958,95.65766515],[4.53342247,0.0254713,95.65843297],[4.53342303,0.02547301,95.65920063],[4.53342359,0.02547473,95.65996816],[4.53342415,0.02547644,95.66073561],[4.53342471,0.02547815,95.66150301],[4.53342526,0.02547987,95.66227041],[4.53342582,0.02548158,95.66303782],[4.53342638,0.0254833,95.66380531],[4.53342694,0.02548501,95.66457289],[4.5334275,0.02548672,95.66534062],[4.53342806,0.02548844,95.66610853],[4.53342862,0.02549015,95.66687665],[4.53342918,0.02549187,95.66764502],[4.53342974,0.02549358,95.66841369],[4.5334303,0.02549529,95.66918268],[4.53343085,0.02549701,95.66995205],[4.53343141,0.02549872,95.67072181],[4.53343197,0.02550044,95.67149202],[4.53343253,0.02550215,95.67226271],[4.53343309,0.02550386,95.67303392],[4.53343365,0.02550558,95.67380568]],"type":"LineString"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":1,"type":"shoulder","predecessorId":1}},{"geometry":{"coordinates":[[4.53340388,0.02537,95.61608841],[4.53340422,0.02537106,95.61652143],[4.53340477,0.02537278,95.61722288],[4.53340532,0.02537449,95.61792158],[4.53340588,0.02537621,95.61861807],[4.53340643,0.02537793,95.61931287],[4.53340698,0.02537964,95.62000653],[4.53340753,0.02538136,95.62069959],[4.53340808,0.02538308,95.62139257],[4.53340863,0.02538479,95.62208603],[4.53340918,0.02538651,95.62278049],[4.53340973,0.02538823,95.6234765],[4.53341028,0.02538994,95.62417459],[4.53341083,0.02539166,95.62487531],[4.53341139,0.02539338,95.62557919],[4.53341194,0.02539509,95.62628677],[4.53341249,0.02539681,95.6269986],[4.53341304,0.02539853,95.62771521],[4.53341359,0.02540024,95.62843715],[4.53341414,0.02540196,95.62916496],[4.53341469,0.02540368,95.62989918],[4.53341524,0.02540539,95.63064016],[4.53341579,0.02540711,95.63138755],[4.53341634,0.02540883,95.6321408],[4.5334169,0.02541054,95.63289936],[4.53341745,0.02541226,95.63366268],[4.533418,0.02541398,95.63443023],[4.53341855,0.02541569,95.63520144],[4.5334191,0.02541741,95.63597577],[4.53341965,0.02541913,95.63675268],[4.5334202,0.02542084,95.63753161],[4.53342075,0.02542256,95.63831202],[4.53342131,0.02542428,95.63909335],[4.53342186,0.02542599,95.63987505],[4.53342241,0.02542771,95.64065659],[4.53342296,0.02542943,95.6414374],[4.53342351,0.02543114,95.64221725],[4.53342406,0.02543286,95.64299615],[4.53342461,0.02543458,95.64377415],[4.53342516,0.0254363,95.64455127],[4.53342571,0.02543801,95.64532756],[4.53342626,0.02543973,95.64610305],[4.53342681,0.02544145,95.64687778],[4.53342736,0.02544316,95.64765179],[4.53342791,0.02544488,95.64842511],[4.53342846,0.0254466,95.64919779],[4.53342902,0.02544831,95.64996985],[4.53342957,0.02545003,95.65074134],[4.53343012,0.02545175,95.6515123],[4.53343067,0.02545347,95.65228276],[4.53343122,0.02545518,95.65305275],[4.53343177,0.0254569,95.65382232],[4.53343232,0.02545862,95.65459151],[4.53343287,0.02546033,95.65536035],[4.53343342,0.02546205,95.65612888],[4.53343397,0.02546377,95.65689713],[4.53343452,0.02546548,95.65766515],[4.53343507,0.0254672,95.65843297],[4.53343561,0.02546892,95.65920063],[4.53343616,0.02547064,95.65996816],[4.53343671,0.02547235,95.66073561],[4.53343726,0.02547407,95.66150301],[4.53343781,0.02547579,95.66227041],[4.53343836,0.0254775,95.66303782],[4.53343891,0.02547922,95.66380531],[4.53343946,0.02548094,95.66457289],[4.53344001,0.02548266,95.66534062],[4.53344056,0.02548437,95.66610853],[4.53344111,0.02548609,95.66687665],[4.53344166,0.02548781,95.66764502],[4.53344221,0.02548953,95.66841369],[4.53344276,0.02549124,95.66918268],[4.53344331,0.02549296,95.66995205],[4.53344386,0.02549468,95.67072181],[4.53344441,0.02549639,95.67149202],[4.53344496,0.02549811,95.67226271],[4.53344551,0.02549983,95.67303392],[4.53344606,0.02550155,95.67380568]],"type":"LineString"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":2,"type":"none","predecessorId":2}},{"geometry":{"coordinates":[[4.5332523,0.02541935,95.43984364],[4.53325175,0.02541764,95.43912366],[4.5332512,0.02541592,95.43840448],[4.53325065,0.02541421,95.43768687],[4.5332501,0.02541249,95.43701161],[4.53324955,0.02541077,95.43707462],[4.53324927,0.02540989,95.43703258]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15},{"outer":0.15,"inner":0.025}],"roadId":"1000100","id":-7,"type":"none","predecessorId":-7}},{"geometry":{"coordinates":[[4.53329181,0.02540649,95.43984364],[4.53329125,0.02540478,95.43912366],[4.53329069,0.02540307,95.43840448],[4.53329013,0.02540135,95.43768687],[4.53328957,0.02539964,95.43701161],[4.53328924,0.02539785,95.43707462],[4.53328907,0.02539693,95.31203258]],"type":"LineString"},"type":"feature","properties":{"successorId":-6,"level":true,"heights":[{"outer":0.15,"inner":0.15},{"outer":0.025,"inner":0.025}],"roadId":"1000100","id":-6,"type":"border","predecessorId":-6}},{"geometry":{"coordinates":[[4.53329312,0.02540606,95.28984364],[4.53329256,0.02540435,95.28912366],[4.533292,0.02540264,95.28840448],[4.53329144,0.02540093,95.28768687],[4.53329089,0.02539921,95.28701161],[4.53329056,0.02539742,95.28707462],[4.53329037,0.02539651,95.28703258]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-5,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-5,"type":"border","predecessorId":-5}},{"geometry":{"coordinates":[[4.53329495,0.02540547,95.29592869],[4.5332944,0.02540375,95.29525047],[4.53329393,0.02540201,95.29482791],[4.53329364,0.02540021,95.29501307],[4.53329335,0.02539841,95.29519814],[4.53329306,0.02539661,95.29538313],[4.53329291,0.02539568,95.29547782]],"type":"LineString"},"type":"feature","properties":{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-4,"type":"shoulder","predecessorId":-4}},{"geometry":{"coordinates":[[4.53329712,0.02540476,95.30316093],[4.53329658,0.02540304,95.30248372],[4.53329603,0.02540133,95.30180674],[4.53329548,0.02539961,95.30112999],[4.53329493,0.02539789,95.30045348],[4.53329438,0.02539618,95.29977719],[4.5332941,0.0253953,95.29943097]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3}},{"geometry":{"coordinates":[[4.53332597,0.02539537,95.39913986],[4.53332542,0.02539365,95.39843868],[4.53332487,0.02539194,95.39773765],[4.53332432,0.02539022,95.39703676],[4.53332377,0.0253885,95.39633602],[4.53332322,0.02538679,95.39563542],[4.53332294,0.02538591,95.39527672]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2}},{"geometry":{"coordinates":[[4.53335694,0.02538529,95.50217106],[4.53335639,0.02538357,95.50145045],[4.53335584,0.02538185,95.50072989],[4.53335529,0.02538014,95.50000937],[4.53335474,0.02537842,95.49928891],[4.53335419,0.0253767,95.4985685],[4.5333539,0.02537582,95.49819962]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}},{"geometry":{"coordinates":[[4.5333882,0.02536466,95.61220037],[4.53338848,0.02536554,95.61256166],[4.53338902,0.02536726,95.61326715],[4.53338956,0.02536898,95.61397257],[4.5333901,0.0253707,95.61467792],[4.53339064,0.02537242,95.6153832],[4.53339118,0.02537414,95.61608841]],"type":"LineString"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":1,"type":"shoulder","predecessorId":1}},{"geometry":{"coordinates":[[4.53340084,0.02536054,95.61220037],[4.53340113,0.02536142,95.61256166],[4.53340168,0.02536314,95.61326715],[4.53340223,0.02536485,95.61397257],[4.53340278,0.02536657,95.61467792],[4.53340333,0.02536829,95.6153832],[4.53340388,0.02537,95.61608841]],"type":"LineString"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":2,"type":"none","predecessorId":2}},{"geometry":{"coordinates":[[4.53327501,0.02540151,95.43703258],[4.53327445,0.0253998,95.43633351],[4.53327389,0.02539809,95.43563527],[4.53327333,0.02539637,95.43493727],[4.53327277,0.02539466,95.43423951],[4.53327222,0.02539295,95.43354198],[4.53327166,0.02539123,95.43284468],[4.5332711,0.02538952,95.43214761],[4.53327054,0.02538781,95.43145077],[4.53326998,0.02538609,95.43075415],[4.53326943,0.02538438,95.43005775],[4.53326892,0.02538282,95.42942553]],"type":"LineString"},"type":"feature","properties":{"successorId":-7,"level":true,"heights":[{"outer":0.15,"inner":0.025},{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-7,"type":"border","predecessorId":0}},{"geometry":{"coordinates":[[4.53328907,0.02539693,95.31203258],[4.53328851,0.02539522,95.31133351],[4.53328796,0.02539351,95.31063527],[4.5332874,0.02539179,95.30993727],[4.53328684,0.02539008,95.30923951],[4.53328628,0.02538837,95.30854198],[4.53328572,0.02538665,95.30784468],[4.53328517,0.02538494,95.30714761],[4.53328461,0.02538323,95.30645077],[4.53328405,0.02538151,95.30575415],[4.53328349,0.0253798,95.30505775],[4.53328298,0.02537824,95.42942553]],"type":"LineString"},"type":"feature","properties":{"successorId":-6,"level":true,"heights":[{"outer":0.025,"inner":0.025},{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-6,"type":"border","predecessorId":-6}},{"geometry":{"coordinates":[[4.53329037,0.02539651,95.28703258],[4.53328982,0.0253948,95.28633351],[4.53328926,0.02539308,95.28563527],[4.5332887,0.02539137,95.28493727],[4.53328815,0.02538965,95.28423951],[4.53328759,0.02538794,95.28354198],[4.53328704,0.02538623,95.28284468],[4.53328648,0.02538451,95.28214761],[4.53328592,0.0253828,95.28145077],[4.53328537,0.02538108,95.28075415],[4.53328481,0.02537937,95.28005775],[4.53328431,0.02537781,95.27942553]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-5,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-5,"type":"border","predecessorId":-5}},{"geometry":{"coordinates":[[4.53329291,0.02539568,95.29547782],[4.53329251,0.02539392,95.29528312],[4.53329196,0.0253922,95.29460105],[4.53329141,0.02539049,95.2939192],[4.53329086,0.02538877,95.29323758],[4.53329031,0.02538706,95.29255617],[4.53328976,0.02538534,95.29187498],[4.5332892,0.02538362,95.291194],[4.53328865,0.02538191,95.29051323],[4.5332881,0.02538019,95.28983268],[4.53328755,0.02537848,95.28915232],[4.53328705,0.02537692,95.28853466]],"type":"LineString"},"type":"feature","properties":{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-4,"type":"shoulder","predecessorId":-4}},{"geometry":{"coordinates":[[4.5332941,0.0253953,95.29943097],[4.53329355,0.02539358,95.29875236],[4.533293,0.02539186,95.29807397],[4.53329245,0.02539015,95.2973958],[4.5332919,0.02538843,95.29671785],[4.53329136,0.02538671,95.29604011],[4.53329081,0.025385,95.29536258],[4.53329026,0.02538328,95.29468527],[4.53328971,0.02538157,95.29400815],[4.53328916,0.02537985,95.29333125],[4.53328861,0.02537813,95.29265454],[4.53328811,0.02537657,95.29204018]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3}},{"geometry":{"coordinates":[[4.53332294,0.02538591,95.39527672],[4.53332239,0.02538419,95.3945776],[4.53332184,0.02538247,95.39387862],[4.53332129,0.02538076,95.39317978],[4.53332074,0.02537904,95.39248107],[4.53332019,0.02537733,95.39178249],[4.53331964,0.02537561,95.39108405],[4.53331909,0.02537389,95.39038573],[4.53331854,0.02537218,95.38968753],[4.53331799,0.02537046,95.38898946],[4.53331744,0.02536874,95.38829152],[4.53331694,0.02536718,95.3876578]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2}},{"geometry":{"coordinates":[[4.5333539,0.02537582,95.49819962],[4.53335335,0.02537411,95.49747762],[4.5333528,0.02537239,95.49675567],[4.53335225,0.02537068,95.49603377],[4.5333517,0.02536896,95.49531191],[4.53335115,0.02536724,95.49459009],[4.5333506,0.02536553,95.49386832],[4.53335005,0.02536381,95.49314659],[4.53334949,0.02536209,95.49242489],[4.53334894,0.02536038,95.49170324],[4.53334839,0.02535866,95.49098163],[4.53334789,0.0253571,95.49032635]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}},{"geometry":{"coordinates":[[4.53338231,0.02534589,95.60449918],[4.5333828,0.02534745,95.60514064],[4.53338334,0.02534917,95.60584694],[4.53338388,0.02535089,95.60655316],[4.53338442,0.02535261,95.60725931],[4.53338496,0.02535433,95.60796539],[4.5333855,0.02535606,95.6086714],[4.53338604,0.02535778,95.60937733],[4.53338658,0.0253595,95.6100832],[4.53338712,0.02536122,95.61078899],[4.53338766,0.02536294,95.61149472],[4.5333882,0.02536466,95.61220037]],"type":"LineString"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":1,"type":"shoulder","predecessorId":1}},{"geometry":{"coordinates":[[4.53339483,0.02534181,95.60449918],[4.53339533,0.02534337,95.60514064],[4.53339588,0.02534509,95.60584694],[4.53339643,0.02534681,95.60655316],[4.53339699,0.02534852,95.60725931],[4.53339754,0.02535024,95.60796539],[4.53339809,0.02535196,95.6086714],[4.53339864,0.02535367,95.60937733],[4.53339919,0.02535539,95.6100832],[4.53339974,0.02535711,95.61078899],[4.53340029,0.02535882,95.61149472],[4.53340084,0.02536054,95.61220037]],"type":"LineString"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":2,"type":"none","predecessorId":2}},{"geometry":{"coordinates":[[4.53326892,0.02538282,95.42942553],[4.53326837,0.02538111,95.42873503],[4.53326781,0.02537939,95.42804474],[4.53326726,0.02537768,95.42735465],[4.5332667,0.02537596,95.42666478],[4.53326615,0.02537425,95.4259751],[4.5332656,0.02537253,95.42528563],[4.53326504,0.02537082,95.42459636],[4.53326449,0.0253691,95.42390728],[4.53326394,0.02536739,95.42321839],[4.53326338,0.02536567,95.4225297],[4.53326283,0.02536396,95.42184119],[4.53326227,0.02536225,95.42115286],[4.53326172,0.02536053,95.42046472],[4.53326117,0.02535882,95.41977676],[4.53326061,0.0253571,95.41908897],[4.53326006,0.02535539,95.41840136],[4.53326004,0.02535534,95.41838169]],"type":"LineString"},"type":"feature","properties":{"successorId":-7,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-7,"type":"border","predecessorId":-7}},{"geometry":{"coordinates":[[4.53328298,0.02537824,95.42942553],[4.53328243,0.02537653,95.42873503],[4.53328188,0.02537481,95.42804474],[4.53328132,0.0253731,95.42735465],[4.53328077,0.02537138,95.42666478],[4.53328022,0.02536967,95.4259751],[4.53327966,0.02536795,95.42528563],[4.53327911,0.02536624,95.42459636],[4.53327855,0.02536452,95.42390728],[4.533278,0.02536281,95.42321839],[4.53327745,0.02536109,95.4225297],[4.53327689,0.02535938,95.42184119],[4.53327634,0.02535766,95.42115286],[4.53327579,0.02535595,95.42046472],[4.53327523,0.02535423,95.41977676],[4.53327468,0.02535252,95.41908897],[4.53327412,0.0253508,95.41840136],[4.53327411,0.02535075,95.41838169]],"type":"LineString"},"type":"feature","properties":{"successorId":-6,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-6,"type":"border","predecessorId":-6}},{"geometry":{"coordinates":[[4.53328431,0.02537781,95.27942553],[4.53328375,0.0253761,95.27873503],[4.5332832,0.02537438,95.27804474],[4.53328264,0.02537267,95.27735465],[4.53328209,0.02537095,95.27666478],[4.53328153,0.02536924,95.2759751],[4.53328098,0.02536752,95.27528563],[4.53328043,0.02536581,95.27459636],[4.53327987,0.02536409,95.27390728],[4.53327932,0.02536238,95.27321839],[4.53327876,0.02536066,95.2725297],[4.53327821,0.02535895,95.27184119],[4.53327765,0.02535724,95.27115286],[4.5332771,0.02535552,95.27046472],[4.53327654,0.02535381,95.26977676],[4.53327599,0.02535209,95.26908897],[4.53327543,0.02535038,95.26840136],[4.53327542,0.02535033,95.26838169]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-5,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-5,"type":"border","predecessorId":-5}},{"geometry":{"coordinates":[[4.53328705,0.02537692,95.28853466],[4.5332865,0.0253752,95.28785474],[4.53328595,0.02537349,95.28717503],[4.5332854,0.02537177,95.28649551],[4.53328485,0.02537005,95.28581618],[4.5332843,0.02536834,95.28513704],[4.53328375,0.02536662,95.2844581],[4.5332832,0.02536491,95.28377933],[4.53328265,0.02536319,95.28310075],[4.5332821,0.02536147,95.28242236],[4.53328154,0.02535976,95.28174414],[4.53328099,0.02535804,95.28106609],[4.53328044,0.02535633,95.28038822],[4.53327989,0.02535461,95.27971052],[4.53327934,0.02535289,95.27903299],[4.53327879,0.02535118,95.27835562],[4.53327824,0.02534946,95.27767841],[4.53327822,0.02534941,95.27765904]],"type":"LineString"},"type":"feature","properties":{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-4,"type":"shoulder","predecessorId":-4}},{"geometry":{"coordinates":[[4.53328811,0.02537657,95.29204018],[4.53328756,0.02537486,95.2913614],[4.53328701,0.02537314,95.29068282],[4.53328646,0.02537142,95.29000442],[4.53328591,0.02536971,95.28932622],[4.53328536,0.02536799,95.2886482],[4.53328481,0.02536628,95.28797037],[4.53328426,0.02536456,95.28729272],[4.53328371,0.02536284,95.28661525],[4.53328316,0.02536113,95.28593796],[4.53328261,0.02535941,95.28526084],[4.53328206,0.0253577,95.2845839],[4.53328151,0.02535598,95.28390712],[4.53328096,0.02535426,95.28323052],[4.53328041,0.02535255,95.28255407],[4.53327986,0.02535083,95.28187779],[4.5332793,0.02534912,95.28120167],[4.53327929,0.02534907,95.28118232]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3}},{"geometry":{"coordinates":[[4.53331694,0.02536718,95.3876578],[4.53331639,0.02536547,95.38695413],[4.53331583,0.02536375,95.38625058],[4.53331528,0.02536204,95.38554715],[4.53331473,0.02536032,95.38484384],[4.53331418,0.02535861,95.38414064],[4.53331363,0.02535689,95.38343755],[4.53331307,0.02535517,95.38273457],[4.53331252,0.02535346,95.38203171],[4.53331197,0.02535174,95.38132895],[4.53331142,0.02535003,95.3806263],[4.53331086,0.02534831,95.37992375],[4.53331031,0.02534659,95.3792213],[4.53330976,0.02534488,95.37851896],[4.53330921,0.02534316,95.37781671],[4.53330865,0.02534145,95.37711456],[4.5333081,0.02533973,95.37641251],[4.53330809,0.02533968,95.37639242]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2}},{"geometry":{"coordinates":[[4.53334789,0.0253571,95.49032635],[4.53334734,0.02535539,95.48960304],[4.53334679,0.02535367,95.48887976],[4.53334624,0.02535195,95.48815652],[4.53334568,0.02535024,95.48743332],[4.53334513,0.02534852,95.48671015],[4.53334458,0.02534681,95.48598702],[4.53334403,0.02534509,95.48526391],[4.53334348,0.02534337,95.48454084],[4.53334292,0.02534166,95.4838178],[4.53334237,0.02533994,95.48309478],[4.53334182,0.02533823,95.4823718],[4.53334127,0.02533651,95.48164884],[4.53334071,0.02533479,95.48092591],[4.53334016,0.02533308,95.48020301],[4.53333961,0.02533136,95.47948013],[4.53333906,0.02532965,95.47875727],[4.53333904,0.0253296,95.47873659]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}},{"geometry":{"coordinates":[[4.53337361,0.02531833,95.59304066],[4.53337363,0.02531838,95.59306113],[4.53337417,0.0253201,95.59377652],[4.53337472,0.02532182,95.59449185],[4.53337526,0.02532354,95.59520711],[4.5333758,0.02532526,95.59592229],[4.53337634,0.02532698,95.59663741],[4.53337689,0.0253287,95.59735246],[4.53337743,0.02533042,95.59806744],[4.53337797,0.02533214,95.59878236],[4.53337852,0.02533386,95.5994972],[4.53337906,0.02533558,95.60021197],[4.5333796,0.02533729,95.60092668],[4.53338014,0.02533901,95.60164132],[4.53338069,0.02534073,95.60235589],[4.53338123,0.02534245,95.60307039],[4.53338177,0.02534417,95.60378482],[4.53338231,0.02534589,95.60449918]],"type":"LineString"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":1,"type":"shoulder","predecessorId":1}},{"geometry":{"coordinates":[[4.53338598,0.0253143,95.63392391],[4.533386,0.02531435,95.63394544],[4.53338655,0.02531607,95.63469797],[4.5333871,0.02531779,95.63545041],[4.53338765,0.0253195,95.63620277],[4.5333882,0.02532122,95.63695503],[4.53338875,0.02532294,95.63770722],[4.53338931,0.02532465,95.63845931],[4.53338986,0.02532637,95.63921132],[4.53339041,0.02532809,95.63996324],[4.53339096,0.0253298,95.64071507],[4.53339151,0.02533152,95.64146681],[4.53339206,0.02533324,95.64221847],[4.53339261,0.02533495,95.64297003],[4.53339316,0.02533667,95.64372151],[4.53339372,0.02533839,95.64447289],[4.53339427,0.0253401,95.64522419],[4.53339482,0.02534182,95.64597539]],"type":"LineString"},"type":"feature","properties":{"successorId":2,"level":false,"roadId":"1000100","id":2,"type":"border","predecessorId":2}},{"geometry":{"coordinates":[[4.53326004,0.02535534,95.41838169],[4.53325949,0.02535362,95.41770683],[4.53325894,0.02535191,95.41703214],[4.53325839,0.02535019,95.41635761],[4.53325784,0.02534847,95.41568324],[4.53325729,0.02534676,95.41500902],[4.53325695,0.02534571,95.41459905]],"type":"LineString"},"type":"feature","properties":{"successorId":-7,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-7,"type":"border","predecessorId":-7}},{"geometry":{"coordinates":[[4.53327411,0.02535075,95.41838169],[4.53327356,0.02534904,95.41770683],[4.53327301,0.02534732,95.41703214],[4.53327246,0.02534561,95.41635761],[4.53327191,0.02534389,95.41568324],[4.53327136,0.02534217,95.41500902],[4.53327102,0.02534113,95.41459905]],"type":"LineString"},"type":"feature","properties":{"successorId":-6,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-6,"type":"border","predecessorId":-6}},{"geometry":{"coordinates":[[4.53327542,0.02535033,95.26838169],[4.53327487,0.02534861,95.26770683],[4.53327432,0.0253469,95.26703214],[4.53327376,0.02534518,95.26635761],[4.53327321,0.02534346,95.26568324],[4.53327266,0.02534175,95.26500902],[4.53327233,0.0253407,95.26459905]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-5,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-5,"type":"border","predecessorId":-5}},{"geometry":{"coordinates":[[4.53327822,0.02534941,95.27765904],[4.53327767,0.0253477,95.27698228],[4.53327712,0.02534598,95.27630569],[4.53327657,0.02534427,95.27562924],[4.53327602,0.02534255,95.27495295],[4.53327547,0.02534083,95.27427681],[4.53327513,0.02533979,95.27386566]],"type":"LineString"},"type":"feature","properties":{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-4,"type":"shoulder","predecessorId":-4}},{"geometry":{"coordinates":[[4.53327929,0.02534907,95.28118232],[4.53327874,0.02534735,95.28050593],[4.53327819,0.02534563,95.27982969],[4.53327764,0.02534392,95.2791536],[4.53327709,0.0253422,95.27847766],[4.53327654,0.02534049,95.27780187],[4.5332762,0.02533944,95.27739093]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3}},{"geometry":{"coordinates":[[4.53330809,0.02533968,95.37639242],[4.53330753,0.02533797,95.37568599],[4.53330698,0.02533625,95.37497965],[4.53330643,0.02533454,95.37427341],[4.53330587,0.02533282,95.37356725],[4.53330532,0.02533111,95.37286118],[4.53330498,0.02533006,95.3724318]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2}},{"geometry":{"coordinates":[[4.53333904,0.0253296,95.47873659],[4.53333849,0.02532788,95.47801313],[4.53333794,0.02532617,95.47728969],[4.53333738,0.02532445,95.47656627],[4.53333683,0.02532273,95.47584287],[4.53333628,0.02532102,95.47511949],[4.53333594,0.02531997,95.47467956]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}},{"geometry":{"coordinates":[[4.53337049,0.02530872,95.67542372],[4.53337083,0.02530976,95.52586868],[4.53337139,0.02531147,95.52660032],[4.53337194,0.02531319,95.52733198],[4.5333725,0.0253149,95.52806366],[4.53337306,0.02531662,95.52879536],[4.53337362,0.02531833,95.52952707]],"type":"LineString"},"type":"feature","properties":{"successorId":1,"level":true,"heights":[{"outer":0.0,"inner":0.0},{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":1,"type":"border","predecessorId":1}},{"geometry":{"coordinates":[[4.5333829,0.02530467,95.67542372],[4.53338324,0.02530572,95.67586868],[4.53338379,0.02530743,95.67660032],[4.53338434,0.02530915,95.67733198],[4.53338489,0.02531087,95.67806366],[4.53338544,0.02531258,95.67879536],[4.53338599,0.0253143,95.67952707]],"type":"LineString"},"type":"feature","properties":{"successorId":2,"level":true,"heights":[{"outer":0.15,"inner":0.15},{"outer":0.15,"inner":0.025}],"roadId":"1000100","id":2,"type":"border","predecessorId":2}},{"geometry":{"coordinates":[[4.53325695,0.02534571,95.41459905],[4.5332564,0.025344,95.4139195],[4.53325585,0.02534228,95.41324008],[4.53325529,0.02534057,95.41256079],[4.53325474,0.02533885,95.41188162],[4.53325419,0.02533714,95.41120259],[4.53325364,0.02533542,95.4105237],[4.53325308,0.02533371,95.40984496],[4.53325253,0.02533199,95.40916636],[4.53325198,0.02533028,95.40848791],[4.53325142,0.02532856,95.40780963],[4.53325087,0.02532685,95.4071315],[4.53325032,0.02532513,95.40645354],[4.53324977,0.02532342,95.40577576],[4.53324921,0.0253217,95.40509815],[4.53324866,0.02531999,95.40442071],[4.53324811,0.02531827,95.40374347],[4.53324755,0.02531656,95.40306641],[4.533247,0.02531484,95.40238955],[4.53324645,0.02531313,95.40171289],[4.53324589,0.02531141,95.40103643],[4.53324534,0.0253097,95.40036018],[4.53324479,0.02530798,95.39968413],[4.53324424,0.02530627,95.39900831],[4.53324368,0.02530455,95.39833271],[4.53324313,0.02530284,95.39765733],[4.53324258,0.02530112,95.39698218],[4.53324202,0.02529941,95.39630727],[4.53324147,0.02529769,95.39563259],[4.53324092,0.02529598,95.39495816],[4.53324037,0.02529426,95.39428397],[4.53323981,0.02529255,95.39361004],[4.53323926,0.02529083,95.39293636],[4.53323871,0.02528912,95.39226295],[4.53323815,0.0252874,95.3915898],[4.5332376,0.02528569,95.39091692],[4.53323705,0.02528397,95.39024431],[4.5332365,0.02528226,95.38957198],[4.53323594,0.02528054,95.38889994],[4.53323539,0.02527883,95.38822818],[4.53323484,0.02527711,95.38755671],[4.53323429,0.0252754,95.38688554],[4.53323373,0.02527368,95.38621467],[4.53323318,0.02527196,95.3855441],[4.53323263,0.02527025,95.38487385],[4.53323208,0.02526853,95.3842039],[4.53323152,0.02526682,95.38353428],[4.53323097,0.0252651,95.38286497],[4.53323042,0.02526339,95.38219599],[4.53322987,0.02526167,95.38152735],[4.53322932,0.02525996,95.38085903],[4.53322876,0.02525824,95.38019106],[4.53322821,0.02525653,95.37952342],[4.53322766,0.02525481,95.3788561],[4.53322711,0.0252531,95.37818909],[4.53322656,0.02525138,95.37752236],[4.53322601,0.02524967,95.37685592],[4.53322545,0.02524795,95.37618974],[4.5332249,0.02524623,95.3755238],[4.53322435,0.02524452,95.37485811],[4.5332238,0.0252428,95.37419263],[4.53322325,0.02524109,95.37352736],[4.5332227,0.02523937,95.37286229],[4.53322215,0.02523766,95.37219739],[4.5332216,0.02523594,95.37153266],[4.53322104,0.02523423,95.37086808],[4.53322049,0.02523251,95.37020365],[4.53321994,0.02523079,95.36953934],[4.53321939,0.02522908,95.36887517],[4.53321884,0.02522736,95.36821111],[4.53321829,0.02522565,95.36754716],[4.53321774,0.02522393,95.36688333],[4.53321719,0.02522222,95.36621959],[4.53321663,0.0252205,95.36555594],[4.53321608,0.02521879,95.36489237],[4.53321553,0.02521707,95.36422888],[4.53321498,0.02521535,95.36356546],[4.53321443,0.02521364,95.3629021],[4.53321388,0.02521192,95.3622388],[4.53321333,0.02521021,95.36157555],[4.53321278,0.02520849,95.36091233],[4.53321222,0.02520678,95.36024915],[4.53321167,0.02520506,95.359586],[4.53321112,0.02520335,95.35892287],[4.53321057,0.02520163,95.35825974],[4.53321002,0.02519991,95.35759663],[4.53320947,0.0251982,95.35693351],[4.53320892,0.02519648,95.35627038],[4.53320837,0.02519477,95.35560724],[4.53320781,0.02519305,95.35494407],[4.53320726,0.02519134,95.35428087],[4.53320671,0.02518962,95.35361764],[4.53320616,0.02518791,95.35295436],[4.53320561,0.02518619,95.35229102],[4.53320506,0.02518447,95.35162763],[4.53320451,0.02518276,95.35096418],[4.53320395,0.02518104,95.35030065],[4.5332034,0.02517933,95.34963704],[4.53320285,0.02517761,95.34897334],[4.5332023,0.0251759,95.34830955],[4.53320175,0.02517418,95.34764566],[4.5332012,0.02517247,95.34698166],[4.53320068,0.02517085,95.34635636]],"type":"LineString"},"type":"feature","properties":{"successorId":-7,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-7,"type":"border","predecessorId":-7}},{"geometry":{"coordinates":[[4.53327102,0.02534113,95.41459905],[4.53327047,0.02533941,95.4139195],[4.53326992,0.0253377,95.41324008],[4.53326936,0.02533598,95.41256079],[4.53326881,0.02533427,95.41188162],[4.53326826,0.02533255,95.41120259],[4.53326771,0.02533084,95.4105237],[4.53326715,0.02532912,95.40984496],[4.5332666,0.02532741,95.40916636],[4.53326605,0.02532569,95.40848791],[4.53326549,0.02532398,95.40780963],[4.53326494,0.02532226,95.4071315],[4.53326439,0.02532055,95.40645354],[4.53326384,0.02531883,95.40577576],[4.53326328,0.02531712,95.40509815],[4.53326273,0.0253154,95.40442071],[4.53326218,0.02531369,95.40374347],[4.53326162,0.02531197,95.40306641],[4.53326107,0.02531026,95.40238955],[4.53326052,0.02530854,95.40171289],[4.53325997,0.02530682,95.40103643],[4.53325941,0.02530511,95.40036018],[4.53325886,0.02530339,95.39968413],[4.53325831,0.02530168,95.39900831],[4.53325775,0.02529996,95.39833271],[4.5332572,0.02529825,95.39765733],[4.53325665,0.02529653,95.39698218],[4.5332561,0.02529482,95.39630727],[4.53325554,0.0252931,95.39563259],[4.53325499,0.02529139,95.39495816],[4.53325444,0.02528967,95.39428397],[4.53325389,0.02528796,95.39361004],[4.53325333,0.02528624,95.39293636],[4.53325278,0.02528453,95.39226295],[4.53325223,0.02528281,95.3915898],[4.53325167,0.0252811,95.39091692],[4.53325112,0.02527938,95.39024431],[4.53325057,0.02527767,95.38957198],[4.53325002,0.02527595,95.38889994],[4.53324947,0.02527423,95.38822818],[4.53324891,0.02527252,95.38755671],[4.53324836,0.0252708,95.38688554],[4.53324781,0.02526909,95.38621467],[4.53324726,0.02526737,95.3855441],[4.5332467,0.02526566,95.38487385],[4.53324615,0.02526394,95.3842039],[4.5332456,0.02526223,95.38353428],[4.53324505,0.02526051,95.38286497],[4.5332445,0.0252588,95.38219599],[4.53324394,0.02525708,95.38152735],[4.53324339,0.02525536,95.38085903],[4.53324284,0.02525365,95.38019106],[4.53324229,0.02525193,95.37952342],[4.53324174,0.02525022,95.3788561],[4.53324119,0.0252485,95.37818909],[4.53324063,0.02524679,95.37752236],[4.53324008,0.02524507,95.37685592],[4.53323953,0.02524336,95.37618974],[4.53323898,0.02524164,95.3755238],[4.53323843,0.02523992,95.37485811],[4.53323788,0.02523821,95.37419263],[4.53323733,0.02523649,95.37352736],[4.53323677,0.02523478,95.37286229],[4.53323622,0.02523306,95.37219739],[4.53323567,0.02523135,95.37153266],[4.53323512,0.02522963,95.37086808],[4.53323457,0.02522791,95.37020365],[4.53323402,0.0252262,95.36953934],[4.53323347,0.02522448,95.36887517],[4.53323292,0.02522277,95.36821111],[4.53323237,0.02522105,95.36754716],[4.53323181,0.02521934,95.36688333],[4.53323126,0.02521762,95.36621959],[4.53323071,0.0252159,95.36555594],[4.53323016,0.02521419,95.36489237],[4.53322961,0.02521247,95.36422888],[4.53322906,0.02521076,95.36356546],[4.53322851,0.02520904,95.3629021],[4.53322796,0.02520733,95.3622388],[4.53322741,0.02520561,95.36157555],[4.53322685,0.02520389,95.36091233],[4.5332263,0.02520218,95.36024915],[4.53322575,0.02520046,95.359586],[4.5332252,0.02519875,95.35892287],[4.53322465,0.02519703,95.35825974],[4.5332241,0.02519531,95.35759663],[4.53322355,0.0251936,95.35693351],[4.533223,0.02519188,95.35627038],[4.53322245,0.02519017,95.35560724],[4.53322189,0.02518845,95.35494407],[4.53322134,0.02518674,95.35428087],[4.53322079,0.02518502,95.35361764],[4.53322024,0.02518331,95.35295436],[4.53321969,0.02518159,95.35229102],[4.53321914,0.02517987,95.35162763],[4.53321859,0.02517816,95.35096418],[4.53321804,0.02517644,95.35030065],[4.53321748,0.02517473,95.34963704],[4.53321693,0.02517301,95.34897334],[4.53321638,0.0251713,95.34830955],[4.53321583,0.02516958,95.34764566],[4.53321528,0.02516786,95.34698166],[4.53321476,0.02516625,95.34635636]],"type":"LineString"},"type":"feature","properties":{"successorId":-6,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-6,"type":"border","predecessorId":-6}},{"geometry":{"coordinates":[[4.53327233,0.0253407,95.26459905],[4.53327177,0.02533899,95.2639195],[4.53327122,0.02533727,95.26324008],[4.53327067,0.02533556,95.26256079],[4.53327012,0.02533384,95.26188162],[4.53326956,0.02533213,95.26120259],[4.53326901,0.02533041,95.2605237],[4.53326846,0.0253287,95.25984496],[4.5332679,0.02532698,95.25916636],[4.53326735,0.02532527,95.25848791],[4.5332668,0.02532355,95.25780963],[4.53326625,0.02532184,95.2571315],[4.53326569,0.02532012,95.25645354],[4.53326514,0.02531841,95.25577576],[4.53326459,0.02531669,95.25509815],[4.53326403,0.02531498,95.25442071],[4.53326348,0.02531326,95.25374347],[4.53326293,0.02531155,95.25306641],[4.53326237,0.02530983,95.25238955],[4.53326182,0.02530812,95.25171289],[4.53326127,0.0253064,95.25103643],[4.53326071,0.02530469,95.25036018],[4.53326016,0.02530297,95.24968413],[4.53325961,0.02530125,95.24900831],[4.53325906,0.02529954,95.24833271],[4.5332585,0.02529782,95.24765733],[4.53325795,0.02529611,95.24698218],[4.5332574,0.02529439,95.24630727],[4.53325684,0.02529268,95.24563259],[4.53325629,0.02529096,95.24495816],[4.53325574,0.02528925,95.24428397],[4.53325519,0.02528753,95.24361004],[4.53325463,0.02528582,95.24293636],[4.53325408,0.0252841,95.24226295],[4.53325353,0.02528239,95.2415898],[4.53325297,0.02528067,95.24091692],[4.53325242,0.02527896,95.24024431],[4.53325187,0.02527724,95.23957198],[4.53325132,0.02527553,95.23889994],[4.53325076,0.02527381,95.23822818],[4.53325021,0.0252721,95.23755671],[4.53324966,0.02527038,95.23688554],[4.53324911,0.02526867,95.23621467],[4.53324855,0.02526695,95.2355441],[4.533248,0.02526523,95.23487385],[4.53324745,0.02526352,95.2342039],[4.5332469,0.0252618,95.23353428],[4.53324634,0.02526009,95.23286497],[4.53324579,0.02525837,95.23219599],[4.53324524,0.02525666,95.23152735],[4.53324469,0.02525494,95.23085903],[4.53324414,0.02525323,95.23019106],[4.53324358,0.02525151,95.22952342],[4.53324303,0.0252498,95.2288561],[4.53324248,0.02524808,95.22818909],[4.53324193,0.02524636,95.22752236],[4.53324138,0.02524465,95.22685592],[4.53324083,0.02524293,95.22618974],[4.53324027,0.02524122,95.2255238],[4.53323972,0.0252395,95.22485811],[4.53323917,0.02523779,95.22419263],[4.53323862,0.02523607,95.22352736],[4.53323807,0.02523435,95.22286229],[4.53323752,0.02523264,95.22219739],[4.53323697,0.02523092,95.22153266],[4.53323641,0.02522921,95.22086808],[4.53323586,0.02522749,95.22020365],[4.53323531,0.02522578,95.21953934],[4.53323476,0.02522406,95.21887517],[4.53323421,0.02522234,95.21821111],[4.53323366,0.02522063,95.21754716],[4.53323311,0.02521891,95.21688333],[4.53323256,0.0252172,95.21621959],[4.533232,0.02521548,95.21555594],[4.53323145,0.02521377,95.21489237],[4.5332309,0.02521205,95.21422888],[4.53323035,0.02521033,95.21356546],[4.5332298,0.02520862,95.2129021],[4.53322925,0.0252069,95.2122388],[4.5332287,0.02520519,95.21157555],[4.53322815,0.02520347,95.21091233],[4.53322759,0.02520176,95.21024915],[4.53322704,0.02520004,95.209586],[4.53322649,0.02519832,95.20892287],[4.53322594,0.02519661,95.20825974],[4.53322539,0.02519489,95.20759663],[4.53322484,0.02519318,95.20693351],[4.53322429,0.02519146,95.20627038],[4.53322374,0.02518975,95.20560724],[4.53322318,0.02518803,95.20494407],[4.53322263,0.02518632,95.20428087],[4.53322208,0.0251846,95.20361764],[4.53322153,0.02518288,95.20295436],[4.53322098,0.02518117,95.20229102],[4.53322043,0.02517945,95.20162763],[4.53321988,0.02517774,95.20096418],[4.53321932,0.02517602,95.20030065],[4.53321877,0.02517431,95.19963704],[4.53321822,0.02517259,95.19897334],[4.53321767,0.02517088,95.19830955],[4.53321712,0.02516916,95.19764566],[4.53321657,0.02516744,95.19698166],[4.53321605,0.02516583,95.19635636]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-5,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-5,"type":"border","predecessorId":-5}},{"geometry":{"coordinates":[[4.53327513,0.02533979,95.27386566],[4.53327458,0.02533807,95.27318732],[4.53327403,0.02533636,95.2725091],[4.53327348,0.02533464,95.27183099],[4.53327293,0.02533293,95.27115301],[4.53327237,0.02533121,95.27047515],[4.53327182,0.0253295,95.26979743],[4.53327127,0.02532778,95.26911984],[4.53327072,0.02532607,95.2684424],[4.53327017,0.02532435,95.2677651],[4.53326961,0.02532263,95.26708795],[4.53326906,0.02532092,95.26641096],[4.53326851,0.0253192,95.26573413],[4.53326796,0.02531749,95.26505746],[4.53326741,0.02531577,95.26438097],[4.53326685,0.02531406,95.26370464],[4.5332663,0.02531234,95.2630285],[4.53326575,0.02531063,95.26235254],[4.5332652,0.02530891,95.26167677],[4.53326465,0.02530719,95.26100119],[4.53326409,0.02530548,95.2603258],[4.53326354,0.02530376,95.25965062],[4.53326299,0.02530205,95.25897564],[4.53326244,0.02530033,95.25830088],[4.53326188,0.02529862,95.25762633],[4.53326133,0.0252969,95.256952],[4.53326078,0.02529519,95.25627789],[4.53326023,0.02529347,95.25560402],[4.53325968,0.02529176,95.25493037],[4.53325912,0.02529004,95.25425697],[4.53325857,0.02528832,95.2535838],[4.53325802,0.02528661,95.25291089],[4.53325747,0.02528489,95.25223822],[4.53325692,0.02528318,95.25156581],[4.53325637,0.02528146,95.25089366],[4.53325581,0.02527975,95.25022178],[4.53325526,0.02527803,95.24955016],[4.53325471,0.02527631,95.24887882],[4.53325416,0.0252746,95.24820776],[4.53325361,0.02527288,95.24753697],[4.53325306,0.02527117,95.24686648],[4.5332525,0.02526945,95.24619628],[4.53325195,0.02526774,95.24552637],[4.5332514,0.02526602,95.24485677],[4.53325085,0.02526431,95.24418746],[4.5332503,0.02526259,95.24351847],[4.53324975,0.02526087,95.24284979],[4.5332492,0.02525916,95.24218143],[4.53324864,0.02525744,95.24151339],[4.53324809,0.02525573,95.24084568],[4.53324754,0.02525401,95.2401783],[4.53324699,0.02525229,95.23951125],[4.53324644,0.02525058,95.23884454],[4.53324589,0.02524886,95.23817814],[4.53324534,0.02524715,95.23751204],[4.53324479,0.02524543,95.23684623],[4.53324424,0.02524372,95.2361807],[4.53324369,0.025242,95.23551542],[4.53324314,0.02524028,95.2348504],[4.53324259,0.02523857,95.2341856],[4.53324204,0.02523685,95.23352102],[4.53324148,0.02523514,95.23285665],[4.53324093,0.02523342,95.23219247],[4.53324038,0.0252317,95.23152846],[4.53323983,0.02522999,95.23086462],[4.53323928,0.02522827,95.23020093],[4.53323873,0.02522656,95.22953737],[4.53323818,0.02522484,95.22887395],[4.53323763,0.02522312,95.22821065],[4.53323708,0.02522141,95.22754746],[4.53323653,0.02521969,95.22688439],[4.53323598,0.02521797,95.22622142],[4.53323543,0.02521626,95.22555855],[4.53323488,0.02521454,95.22489577],[4.53323433,0.02521283,95.22423307],[4.53323378,0.02521111,95.22357044],[4.53323323,0.02520939,95.22290788],[4.53323268,0.02520768,95.22224538],[4.53323213,0.02520596,95.22158294],[4.53323158,0.02520425,95.22092054],[4.53323103,0.02520253,95.22025818],[4.53323048,0.02520081,95.21959585],[4.53322993,0.0251991,95.21893355],[4.53322938,0.02519738,95.21827127],[4.53322883,0.02519567,95.217609],[4.53322828,0.02519395,95.21694673],[4.53322773,0.02519223,95.21628446],[4.53322718,0.02519052,95.21562218],[4.53322663,0.0251888,95.21495988],[4.53322608,0.02518709,95.21429756],[4.53322552,0.02518537,95.2136352],[4.53322497,0.02518365,95.21297281],[4.53322442,0.02518194,95.21231037],[4.53322387,0.02518022,95.21164788],[4.53322332,0.02517851,95.21098534],[4.53322277,0.02517679,95.21032272],[4.53322222,0.02517507,95.20966003],[4.53322167,0.02517336,95.20899727],[4.53322112,0.02517164,95.20833441],[4.53322057,0.02516993,95.20767146],[4.53322002,0.02516821,95.20700841],[4.53321947,0.0251665,95.20634525],[4.53321895,0.02516488,95.20572075]],"type":"LineString"},"type":"feature","properties":{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-4,"type":"shoulder","predecessorId":-4}},{"geometry":{"coordinates":[[4.5332762,0.02533944,95.27739093],[4.53327565,0.02533773,95.27671416],[4.5332751,0.02533601,95.27603751],[4.53327455,0.02533429,95.27536097],[4.533274,0.02533258,95.27468455],[4.53327344,0.02533086,95.27400825],[4.53327289,0.02532915,95.27333209],[4.53327234,0.02532743,95.27265606],[4.53327179,0.02532572,95.27198016],[4.53327124,0.025324,95.27130441],[4.53327069,0.02532228,95.27062881],[4.53327014,0.02532057,95.26995336],[4.53326959,0.02531885,95.26927807],[4.53326903,0.02531714,95.26860294],[4.53326848,0.02531542,95.26792798],[4.53326793,0.02531371,95.26725319],[4.53326738,0.02531199,95.26657857],[4.53326683,0.02531027,95.26590413],[4.53326628,0.02530856,95.26522988],[4.53326573,0.02530684,95.26455582],[4.53326517,0.02530513,95.26388195],[4.53326462,0.02530341,95.26320829],[4.53326407,0.0253017,95.26253482],[4.53326352,0.02529998,95.26186156],[4.53326297,0.02529826,95.26118852],[4.53326242,0.02529655,95.26051569],[4.53326187,0.02529483,95.25984309],[4.53326132,0.02529312,95.25917071],[4.53326076,0.0252914,95.25849856],[4.53326021,0.02528968,95.25782665],[4.53325966,0.02528797,95.25715497],[4.53325911,0.02528625,95.25648354],[4.53325856,0.02528454,95.25581236],[4.53325801,0.02528282,95.25514144],[4.53325746,0.02528111,95.25447077],[4.53325691,0.02527939,95.25380036],[4.53325635,0.02527767,95.25313022],[4.5332558,0.02527596,95.25246035],[4.53325525,0.02527424,95.25179076],[4.5332547,0.02527253,95.25112145],[4.53325415,0.02527081,95.25045242],[4.5332536,0.02526909,95.24978368],[4.53325305,0.02526738,95.24911524],[4.5332525,0.02526566,95.24844709],[4.53325195,0.02526395,95.24777925],[4.5332514,0.02526223,95.24711171],[4.53325085,0.02526051,95.24644448],[4.5332503,0.0252588,95.24577758],[4.53324975,0.02525708,95.24511099],[4.5332492,0.02525537,95.24444472],[4.53324864,0.02525365,95.24377879],[4.53324809,0.02525193,95.24311318],[4.53324754,0.02525022,95.24244791],[4.53324699,0.0252485,95.24178295],[4.53324644,0.02524679,95.24111829],[4.53324589,0.02524507,95.24045392],[4.53324534,0.02524335,95.23978982],[4.53324479,0.02524164,95.23912598],[4.53324424,0.02523992,95.23846238],[4.53324369,0.02523821,95.23779901],[4.53324314,0.02523649,95.23713586],[4.53324259,0.02523477,95.23647292],[4.53324205,0.02523306,95.23581016],[4.5332415,0.02523134,95.23514758],[4.53324095,0.02522962,95.23448515],[4.5332404,0.02522791,95.23382288],[4.53323985,0.02522619,95.23316074],[4.5332393,0.02522448,95.23249873],[4.53323875,0.02522276,95.23183685],[4.5332382,0.02522104,95.23117508],[4.53323765,0.02521933,95.23051342],[4.5332371,0.02521761,95.22985186],[4.53323655,0.02521589,95.2291904],[4.533236,0.02521418,95.22852902],[4.53323545,0.02521246,95.22786773],[4.5332349,0.02521074,95.22720651],[4.53323435,0.02520903,95.22654535],[4.5332338,0.02520731,95.22588426],[4.53323325,0.0252056,95.22522322],[4.5332327,0.02520388,95.22456222],[4.53323215,0.02520216,95.22390126],[4.5332316,0.02520045,95.22324033],[4.53323105,0.02519873,95.22257943],[4.5332305,0.02519701,95.22191854],[4.53322995,0.0251953,95.22125766],[4.5332294,0.02519358,95.22059679],[4.53322885,0.02519187,95.21993591],[4.5332283,0.02519015,95.21927503],[4.53322776,0.02518843,95.21861412],[4.53322721,0.02518672,95.21795319],[4.53322666,0.025185,95.21729223],[4.53322611,0.02518328,95.21663122],[4.53322556,0.02518157,95.21597018],[4.53322501,0.02517985,95.21530908],[4.53322446,0.02517814,95.21464792],[4.53322391,0.02517642,95.21398669],[4.53322336,0.0251747,95.21332539],[4.53322281,0.02517299,95.21266401],[4.53322226,0.02517127,95.21200254],[4.53322171,0.02516956,95.21134097],[4.53322116,0.02516784,95.21067931],[4.53322061,0.02516612,95.21001753],[4.53322009,0.02516451,95.20939433]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3}},{"geometry":{"coordinates":[[4.53330498,0.02533006,95.3724318],[4.53330443,0.02532835,95.3717252],[4.53330387,0.02532663,95.37101865],[4.53330332,0.02532492,95.37031217],[4.53330276,0.0253232,95.36960574],[4.53330221,0.02532149,95.36889939],[4.53330166,0.02531977,95.36819312],[4.5333011,0.02531806,95.36748692],[4.53330055,0.02531634,95.36678082],[4.53329999,0.02531463,95.3660748],[4.53329944,0.02531291,95.36536888],[4.53329888,0.0253112,95.36466307],[4.53329833,0.02530948,95.36395737],[4.53329778,0.02530777,95.36325178],[4.53329722,0.02530605,95.36254631],[4.53329667,0.02530434,95.36184097],[4.53329611,0.02530262,95.36113575],[4.53329556,0.02530091,95.36043067],[4.533295,0.02529919,95.35972574],[4.53329445,0.02529748,95.35902095],[4.5332939,0.02529576,95.35831631],[4.53329334,0.02529405,95.35761183],[4.53329279,0.02529233,95.35690752],[4.53329223,0.02529062,95.35620337],[4.53329168,0.0252889,95.35549939],[4.53329112,0.02528719,95.3547956],[4.53329057,0.02528547,95.35409199],[4.53329002,0.02528376,95.35338857],[4.53328946,0.02528204,95.35268534],[4.53328891,0.02528033,95.35198232],[4.53328835,0.02527861,95.3512795],[4.5332878,0.0252769,95.35057689],[4.53328724,0.02527518,95.3498745],[4.53328669,0.02527347,95.34917233],[4.53328614,0.02527175,95.34847038],[4.53328558,0.02527004,95.34776867],[4.53328503,0.02526832,95.3470672],[4.53328447,0.02526661,95.34636597],[4.53328392,0.02526489,95.34566499],[4.53328337,0.02526318,95.34496426],[4.53328281,0.02526146,95.34426379],[4.53328226,0.02525974,95.34356358],[4.53328171,0.02525803,95.34286364],[4.53328115,0.02525631,95.34216398],[4.5332806,0.0252546,95.3414646],[4.53328004,0.02525288,95.3407655],[4.53327949,0.02525117,95.34006669],[4.53327894,0.02524945,95.33936818],[4.53327838,0.02524774,95.33866997],[4.53327783,0.02524602,95.33797206],[4.53327728,0.02524431,95.33727447],[4.53327672,0.02524259,95.33657718],[4.53327617,0.02524088,95.33588022],[4.53327562,0.02523916,95.33518355],[4.53327507,0.02523745,95.33448716],[4.53327451,0.02523573,95.33379105],[4.53327396,0.02523401,95.3330952],[4.53327341,0.0252323,95.33239959],[4.53327285,0.02523058,95.33170421],[4.5332723,0.02522887,95.33100906],[4.53327175,0.02522715,95.33031411],[4.5332712,0.02522544,95.32961935],[4.53327064,0.02522372,95.32892478],[4.53327009,0.02522201,95.32823037],[4.53326954,0.02522029,95.32753611],[4.53326898,0.02521857,95.326842],[4.53326843,0.02521686,95.32614802],[4.53326788,0.02521514,95.32545416],[4.53326733,0.02521343,95.32476042],[4.53326677,0.02521171,95.32406679],[4.53326622,0.02521,95.32337327],[4.53326567,0.02520828,95.32267985],[4.53326512,0.02520657,95.32198653],[4.53326456,0.02520485,95.32129329],[4.53326401,0.02520313,95.32060013],[4.53326346,0.02520142,95.31990705],[4.53326291,0.0251997,95.31921404],[4.53326235,0.02519799,95.31852108],[4.5332618,0.02519627,95.31782819],[4.53326125,0.02519456,95.31713534],[4.5332607,0.02519284,95.31644254],[4.53326014,0.02519113,95.31574978],[4.53325959,0.02518941,95.31505704],[4.53325904,0.02518769,95.31436433],[4.53325849,0.02518598,95.31367164],[4.53325793,0.02518426,95.31297896],[4.53325738,0.02518255,95.31228629],[4.53325683,0.02518083,95.31159362],[4.53325628,0.02517912,95.31090094],[4.53325572,0.0251774,95.31020825],[4.53325517,0.02517569,95.30951554],[4.53325462,0.02517397,95.3088228],[4.53325407,0.02517225,95.30813003],[4.53325351,0.02517054,95.30743723],[4.53325296,0.02516882,95.30674438],[4.53325241,0.02516711,95.30605148],[4.53325185,0.02516539,95.30535853],[4.5332513,0.02516368,95.30466551],[4.53325075,0.02516196,95.30397242],[4.5332502,0.02516025,95.30327926],[4.53324964,0.02515853,95.30258602],[4.53324909,0.02515682,95.30189269],[4.53324857,0.0251552,95.3012398]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2}},{"geometry":{"coordinates":[[4.53333594,0.02531997,95.47467956],[4.53333539,0.02531826,95.47395614],[4.53333484,0.02531654,95.47323272],[4.53333429,0.02531483,95.47250929],[4.53333373,0.02531311,95.47178586],[4.53333318,0.02531139,95.47106244],[4.53333263,0.02530968,95.47033903],[4.53333207,0.02530796,95.46961563],[4.53333152,0.02530625,95.46889226],[4.53333097,0.02530453,95.46816893],[4.53333042,0.02530282,95.46744563],[4.53332986,0.0253011,95.46672237],[4.53332931,0.02529938,95.46599917],[4.53332876,0.02529767,95.46527602],[4.5333282,0.02529595,95.46455293],[4.53332765,0.02529424,95.46382992],[4.5333271,0.02529252,95.46310697],[4.53332655,0.0252908,95.46238411],[4.53332599,0.02528909,95.46166134],[4.53332544,0.02528737,95.46093866],[4.53332489,0.02528566,95.46021608],[4.53332433,0.02528394,95.45949361],[4.53332378,0.02528223,95.45877125],[4.53332323,0.02528051,95.45804901],[4.53332268,0.02527879,95.45732689],[4.53332212,0.02527708,95.45660491],[4.53332157,0.02527536,95.45588306],[4.53332102,0.02527365,95.45516135],[4.53332047,0.02527193,95.4544398],[4.53331991,0.02527022,95.4537184],[4.53331936,0.0252685,95.45299716],[4.53331881,0.02526678,95.45227609],[4.53331825,0.02526507,95.4515552],[4.5333177,0.02526335,95.45083449],[4.53331715,0.02526164,95.45011396],[4.5333166,0.02525992,95.44939362],[4.53331604,0.0252582,95.44867349],[4.53331549,0.02525649,95.44795356],[4.53331494,0.02525477,95.44723384],[4.53331439,0.02525306,95.44651434],[4.53331383,0.02525134,95.44579506],[4.53331328,0.02524962,95.44507601],[4.53331273,0.02524791,95.44435719],[4.53331218,0.02524619,95.44363862],[4.53331163,0.02524448,95.44292029],[4.53331107,0.02524276,95.44220222],[4.53331052,0.02524104,95.44148441],[4.53330997,0.02523933,95.44076686],[4.53330942,0.02523761,95.44004959],[4.53330887,0.0252359,95.43933259],[4.53330831,0.02523418,95.43861588],[4.53330776,0.02523246,95.43789946],[4.53330721,0.02523075,95.43718332],[4.53330666,0.02522903,95.43646746],[4.53330611,0.02522732,95.43575186],[4.53330556,0.0252256,95.43503651],[4.533305,0.02522388,95.43432139],[4.53330445,0.02522217,95.4336065],[4.5333039,0.02522045,95.43289183],[4.53330335,0.02521873,95.43217735],[4.5333028,0.02521702,95.43146306],[4.53330225,0.0252153,95.43074894],[4.5333017,0.02521359,95.43003499],[4.53330114,0.02521187,95.42932119],[4.53330059,0.02521015,95.42860753],[4.53330004,0.02520844,95.427894],[4.53329949,0.02520672,95.42718058],[4.53329894,0.025205,95.42646727],[4.53329839,0.02520329,95.42575408],[4.53329784,0.02520157,95.42504098],[4.53329729,0.02519985,95.42432798],[4.53329674,0.02519814,95.42361507],[4.53329618,0.02519642,95.42290225],[4.53329563,0.02519471,95.42218951],[4.53329508,0.02519299,95.42147684],[4.53329453,0.02519127,95.42076424],[4.53329398,0.02518956,95.4200517],[4.53329343,0.02518784,95.41933922],[4.53329288,0.02518612,95.4186268],[4.53329233,0.02518441,95.41791442],[4.53329178,0.02518269,95.41720208],[4.53329122,0.02518097,95.41648978],[4.53329067,0.02517926,95.41577751],[4.53329012,0.02517754,95.41506527],[4.53328957,0.02517583,95.41435305],[4.53328902,0.02517411,95.41364084],[4.53328847,0.02517239,95.41292864],[4.53328792,0.02517068,95.41221644],[4.53328737,0.02516896,95.41150425],[4.53328682,0.02516724,95.41079204],[4.53328626,0.02516553,95.41007983],[4.53328571,0.02516381,95.4093676],[4.53328516,0.02516209,95.40865534],[4.53328461,0.02516038,95.40794306],[4.53328406,0.02515866,95.40723074],[4.53328351,0.02515695,95.40651838],[4.53328296,0.02515523,95.40580598],[4.5332824,0.02515351,95.40509353],[4.53328185,0.0251518,95.40438102],[4.5332813,0.02515008,95.40366846],[4.53328075,0.02514836,95.40295583],[4.5332802,0.02514665,95.40224312],[4.53327968,0.02514503,95.401572]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}},{"geometry":{"coordinates":[[4.53331408,0.02513379,95.60093314],[4.5333146,0.02513541,95.60162037],[4.53331515,0.02513712,95.60235027],[4.5333157,0.02513884,95.60308019],[4.53331625,0.02514056,95.60381012],[4.5333168,0.02514228,95.60454007],[4.53331735,0.02514399,95.60527003],[4.5333179,0.02514571,95.60600001],[4.53331845,0.02514743,95.60673001],[4.533319,0.02514914,95.60746001],[4.53331955,0.02515086,95.60819004],[4.5333201,0.02515258,95.60892008],[4.53332065,0.02515429,95.60965014],[4.5333212,0.02515601,95.61038021],[4.53332175,0.02515773,95.6111103],[4.53332231,0.02515944,95.6118404],[4.53332286,0.02516116,95.61257052],[4.53332341,0.02516288,95.61330065],[4.53332396,0.02516459,95.6140308],[4.53332451,0.02516631,95.61476097],[4.53332506,0.02516803,95.61549115],[4.53332561,0.02516974,95.61622135],[4.53332617,0.02517146,95.61695157],[4.53332672,0.02517318,95.6176818],[4.53332727,0.02517489,95.61841204],[4.53332782,0.02517661,95.61914231],[4.53332837,0.02517833,95.61987259],[4.53332892,0.02518004,95.62060288],[4.53332948,0.02518176,95.62133319],[4.53333003,0.02518347,95.62206352],[4.53333058,0.02518519,95.62279386],[4.53333113,0.02518691,95.62352422],[4.53333169,0.02518862,95.6242546],[4.53333224,0.02519034,95.62498499],[4.53333279,0.02519206,95.6257154],[4.53333334,0.02519377,95.62644583],[4.53333389,0.02519549,95.62717627],[4.53333445,0.0251972,95.62790673],[4.533335,0.02519892,95.6286372],[4.53333555,0.02520064,95.6293677],[4.5333361,0.02520235,95.63009821],[4.53333666,0.02520407,95.63082873],[4.53333721,0.02520579,95.63155927],[4.53333776,0.0252075,95.63228983],[4.53333831,0.02520922,95.63302041],[4.53333887,0.02521093,95.633751],[4.53333942,0.02521265,95.63448161],[4.53333997,0.02521437,95.63521223],[4.53334052,0.02521608,95.63594288],[4.53334108,0.0252178,95.63667354],[4.53334163,0.02521952,95.63740421],[4.53334218,0.02522123,95.63813491],[4.53334273,0.02522295,95.63886562],[4.53334329,0.02522466,95.63959635],[4.53334384,0.02522638,95.64032709],[4.53334439,0.0252281,95.64105786],[4.53334495,0.02522981,95.64178864],[4.5333455,0.02523153,95.64251943],[4.53334605,0.02523324,95.64325025],[4.5333466,0.02523496,95.64398108],[4.53334716,0.02523668,95.64471193],[4.53334771,0.02523839,95.64544279],[4.53334826,0.02524011,95.64617368],[4.53334882,0.02524182,95.64690458],[4.53334937,0.02524354,95.6476355],[4.53334992,0.02524526,95.64836643],[4.53335048,0.02524697,95.64909739],[4.53335103,0.02524869,95.64982836],[4.53335158,0.0252504,95.65055935],[4.53335214,0.02525212,95.65129035],[4.53335269,0.02525384,95.65202138],[4.53335324,0.02525555,95.65275242],[4.5333538,0.02525727,95.65348348],[4.53335435,0.02525898,95.65421456],[4.53335491,0.0252607,95.65494565],[4.53335546,0.02526241,95.65567677],[4.53335601,0.02526413,95.6564079],[4.53335657,0.02526585,95.65713905],[4.53335712,0.02526756,95.65787021],[4.53335768,0.02526928,95.6586014],[4.53335823,0.02527099,95.6593326],[4.53335879,0.02527271,95.66006382],[4.53335934,0.02527442,95.66079506],[4.5333599,0.02527614,95.66152632],[4.53336045,0.02527785,95.6622576],[4.53336101,0.02527957,95.66298889],[4.53336157,0.02528128,95.6637202],[4.53336212,0.025283,95.66445153],[4.53336268,0.02528471,95.66518288],[4.53336323,0.02528643,95.66591425],[4.53336379,0.02528814,95.66664564],[4.53336435,0.02528986,95.66737704],[4.5333649,0.02529157,95.66810846],[4.53336546,0.02529329,95.66883991],[4.53336602,0.025295,95.66957137],[4.53336658,0.02529672,95.67030284],[4.53336713,0.02529843,95.67103434],[4.53336769,0.02530015,95.67176586],[4.53336825,0.02530186,95.67249739],[4.53336881,0.02530358,95.67322895],[4.53336937,0.02530529,95.67396052],[4.53336993,0.025307,95.67469211],[4.53337049,0.02530872,95.67542372]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":1,"type":"border","predecessorId":1}},{"geometry":{"coordinates":[[4.53332653,0.02512972,95.60093314],[4.53332705,0.02513134,95.60162037],[4.53332761,0.02513305,95.60235027],[4.53332816,0.02513477,95.60308019],[4.53332872,0.02513648,95.60381012],[4.53332928,0.0251382,95.60454007],[4.53332983,0.02513991,95.60527003],[4.53333039,0.02514163,95.60600001],[4.53333094,0.02514334,95.60673001],[4.5333315,0.02514506,95.60746001],[4.53333205,0.02514678,95.60819004],[4.53333261,0.02514849,95.60892008],[4.53333316,0.02515021,95.60965014],[4.53333372,0.02515192,95.61038021],[4.53333427,0.02515364,95.6111103],[4.53333483,0.02515535,95.6118404],[4.53333538,0.02515707,95.61257052],[4.53333593,0.02515879,95.61330065],[4.53333649,0.0251605,95.6140308],[4.53333704,0.02516222,95.61476097],[4.5333376,0.02516393,95.61549115],[4.53333815,0.02516565,95.61622135],[4.53333871,0.02516736,95.61695157],[4.53333926,0.02516908,95.6176818],[4.53333982,0.0251708,95.61841204],[4.53334037,0.02517251,95.61914231],[4.53334092,0.02517423,95.61987259],[4.53334148,0.02517594,95.62060288],[4.53334203,0.02517766,95.62133319],[4.53334259,0.02517937,95.62206352],[4.53334314,0.02518109,95.62279386],[4.53334369,0.02518281,95.62352422],[4.53334425,0.02518452,95.6242546],[4.5333448,0.02518624,95.62498499],[4.53334535,0.02518795,95.6257154],[4.53334591,0.02518967,95.62644583],[4.53334646,0.02519139,95.62717627],[4.53334702,0.0251931,95.62790673],[4.53334757,0.02519482,95.6286372],[4.53334812,0.02519653,95.6293677],[4.53334868,0.02519825,95.63009821],[4.53334923,0.02519997,95.63082873],[4.53334978,0.02520168,95.63155927],[4.53335033,0.0252034,95.63228983],[4.53335089,0.02520511,95.63302041],[4.53335144,0.02520683,95.633751],[4.53335199,0.02520855,95.63448161],[4.53335255,0.02521026,95.63521223],[4.5333531,0.02521198,95.63594288],[4.53335365,0.0252137,95.63667354],[4.5333542,0.02521541,95.63740421],[4.53335476,0.02521713,95.63813491],[4.53335531,0.02521884,95.63886562],[4.53335586,0.02522056,95.63959635],[4.53335642,0.02522228,95.64032709],[4.53335697,0.02522399,95.64105786],[4.53335752,0.02522571,95.64178864],[4.53335807,0.02522743,95.64251943],[4.53335863,0.02522914,95.64325025],[4.53335918,0.02523086,95.64398108],[4.53335973,0.02523258,95.64471193],[4.53336028,0.02523429,95.64544279],[4.53336083,0.02523601,95.64617368],[4.53336139,0.02523772,95.64690458],[4.53336194,0.02523944,95.6476355],[4.53336249,0.02524116,95.64836643],[4.53336304,0.02524287,95.64909739],[4.5333636,0.02524459,95.64982836],[4.53336415,0.02524631,95.65055935],[4.5333647,0.02524802,95.65129035],[4.53336525,0.02524974,95.65202138],[4.5333658,0.02525146,95.65275242],[4.53336635,0.02525317,95.65348348],[4.53336691,0.02525489,95.65421456],[4.53336746,0.02525661,95.65494565],[4.53336801,0.02525832,95.65567677],[4.53336856,0.02526004,95.6564079],[4.53336911,0.02526176,95.65713905],[4.53336967,0.02526347,95.65787021],[4.53337022,0.02526519,95.6586014],[4.53337077,0.02526691,95.6593326],[4.53337132,0.02526862,95.66006382],[4.53337187,0.02527034,95.66079506],[4.53337242,0.02527205,95.66152632],[4.53337298,0.02527377,95.6622576],[4.53337353,0.02527549,95.66298889],[4.53337408,0.0252772,95.6637202],[4.53337463,0.02527892,95.66445153],[4.53337518,0.02528064,95.66518288],[4.53337573,0.02528235,95.66591425],[4.53337628,0.02528407,95.66664564],[4.53337684,0.02528579,95.66737704],[4.53337739,0.0252875,95.66810846],[4.53337794,0.02528922,95.66883991],[4.53337849,0.02529094,95.66957137],[4.53337904,0.02529265,95.67030284],[4.53337959,0.02529437,95.67103434],[4.53338014,0.02529609,95.67176586],[4.5333807,0.0252978,95.67249739],[4.53338125,0.02529952,95.67322895],[4.5333818,0.02530124,95.67396052],[4.53338235,0.02530295,95.67469211],[4.5333829,0.02530467,95.67542372]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":2,"type":"border","predecessorId":2}},{"geometry":{"coordinates":[[4.53320068,0.02517085,95.34635636],[4.53320012,0.02516914,95.34568737],[4.53319957,0.02516742,95.34501841],[4.53319902,0.02516571,95.34434946],[4.53319846,0.02516399,95.34368053],[4.53319791,0.02516228,95.34301162],[4.53319736,0.02516056,95.34234274],[4.53319681,0.02515885,95.34167389],[4.53319625,0.02515713,95.34100507],[4.5331957,0.02515542,95.34033629],[4.53319515,0.0251537,95.33966754],[4.53319459,0.02515199,95.33899884],[4.53319404,0.02515027,95.33833018],[4.53319349,0.02514856,95.33766156],[4.53319293,0.02514684,95.33699299],[4.53319238,0.02514513,95.33632447],[4.53319183,0.02514341,95.33565601],[4.53319127,0.0251417,95.33498761],[4.53319072,0.02513998,95.33431926],[4.53319017,0.02513827,95.33365098],[4.53318962,0.02513655,95.33298276],[4.53318906,0.02513484,95.33231461],[4.53318851,0.02513312,95.33164653],[4.53318796,0.02513141,95.33097853],[4.5331874,0.02512969,95.3303106],[4.53318687,0.02512805,95.32967114]],"type":"LineString"},"type":"feature","properties":{"successorId":-7,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-7,"type":"border","predecessorId":-7}},{"geometry":{"coordinates":[[4.53321476,0.02516625,95.34635636],[4.53321421,0.02516453,95.34568737],[4.53321365,0.02516282,95.34501841],[4.5332131,0.0251611,95.34434946],[4.53321254,0.02515939,95.34368053],[4.53321199,0.02515768,95.34301162],[4.53321144,0.02515596,95.34234274],[4.53321088,0.02515425,95.34167389],[4.53321033,0.02515253,95.34100507],[4.53320977,0.02515082,95.34033629],[4.53320922,0.0251491,95.33966754],[4.53320867,0.02514739,95.33899884],[4.53320811,0.02514567,95.33833018],[4.53320756,0.02514396,95.33766156],[4.53320701,0.02514224,95.33699299],[4.53320645,0.02514053,95.33632447],[4.5332059,0.02513881,95.33565601],[4.53320534,0.0251371,95.33498761],[4.53320479,0.02513538,95.33431926],[4.53320424,0.02513367,95.33365098],[4.53320368,0.02513195,95.33298276],[4.53320313,0.02513024,95.33231461],[4.53320258,0.02512852,95.33164653],[4.53320202,0.02512681,95.33097853],[4.53320147,0.02512509,95.3303106],[4.53320094,0.02512345,95.32967114]],"type":"LineString"},"type":"feature","properties":{"successorId":-6,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-6,"type":"border","predecessorId":-6}},{"geometry":{"coordinates":[[4.53321605,0.02516583,95.19635636],[4.53321549,0.02516411,95.19568737],[4.53321494,0.0251624,95.19501841],[4.53321439,0.02516068,95.19434946],[4.53321383,0.02515897,95.19368053],[4.53321328,0.02515725,95.19301162],[4.53321273,0.02515554,95.19234274],[4.53321217,0.02515382,95.19167389],[4.53321162,0.02515211,95.19100507],[4.53321107,0.02515039,95.19033629],[4.53321051,0.02514868,95.18966754],[4.53320996,0.02514696,95.18899884],[4.53320941,0.02514525,95.18833018],[4.53320885,0.02514353,95.18766156],[4.5332083,0.02514182,95.18699299],[4.53320775,0.0251401,95.18632447],[4.53320719,0.02513839,95.18565601],[4.53320664,0.02513667,95.18498761],[4.53320609,0.02513496,95.18431926],[4.53320554,0.02513324,95.18365098],[4.53320498,0.02513153,95.18298276],[4.53320443,0.02512981,95.18231461],[4.53320388,0.0251281,95.18164653],[4.53320332,0.02512638,95.18097853],[4.53320277,0.02512467,95.1803106],[4.53320224,0.02512303,95.17967114]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-5,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-5,"type":"border","predecessorId":-5}},{"geometry":{"coordinates":[[4.53321895,0.02516488,95.20572075],[4.5332184,0.02516316,95.20505532],[4.53321785,0.02516145,95.20438992],[4.5332173,0.02515973,95.20372453],[4.53321674,0.02515802,95.20305916],[4.53321619,0.0251563,95.20239381],[4.53321564,0.02515459,95.20172849],[4.53321509,0.02515287,95.2010632],[4.53321454,0.02515115,95.20039794],[4.53321399,0.02514944,95.19973272],[4.53321344,0.02514772,95.19906753],[4.53321288,0.02514601,95.19840238],[4.53321233,0.02514429,95.19773728],[4.53321178,0.02514258,95.19707222],[4.53321123,0.02514086,95.19640721],[4.53321068,0.02513915,95.19574225],[4.53321013,0.02513743,95.19507735],[4.53320958,0.02513571,95.1944125],[4.53320902,0.025134,95.19374771],[4.53320847,0.02513228,95.19308299],[4.53320792,0.02513057,95.19241833],[4.53320737,0.02512885,95.19175374],[4.53320682,0.02512714,95.19108923],[4.53320627,0.02512542,95.19042478],[4.53320572,0.0251237,95.18976042],[4.53320519,0.02512206,95.18912438]],"type":"LineString"},"type":"feature","properties":{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-4,"type":"shoulder","predecessorId":-4}},{"geometry":{"coordinates":[[4.53322009,0.02516451,95.20939433],[4.53321953,0.02516279,95.20871325],[4.53321898,0.02516108,95.2080322],[4.53321842,0.02515937,95.20735117],[4.53321786,0.02515765,95.20667016],[4.53321731,0.02515594,95.20598919],[4.53321675,0.02515422,95.20530825],[4.5332162,0.02515251,95.20462735],[4.53321564,0.02515079,95.20394649],[4.53321508,0.02514908,95.20326567],[4.53321453,0.02514737,95.2025849],[4.53321397,0.02514565,95.20190417],[4.53321342,0.02514394,95.2012235],[4.53321286,0.02514222,95.20054288],[4.5332123,0.02514051,95.19986232],[4.53321175,0.0251388,95.19918182],[4.53321119,0.02513708,95.19850138],[4.53321064,0.02513537,95.197821],[4.53321008,0.02513365,95.19714069],[4.53320953,0.02513194,95.19646046],[4.53320897,0.02513022,95.1957803],[4.53320841,0.02512851,95.19510022],[4.53320786,0.0251268,95.19442021],[4.5332073,0.02512508,95.19374029],[4.53320675,0.02512337,95.19306045],[4.53320622,0.02512173,95.19240961]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3}},{"geometry":{"coordinates":[[4.53324857,0.0251552,95.3012398],[4.53324801,0.02515349,95.30054095],[4.53324746,0.02515177,95.29984215],[4.5332469,0.02515006,95.29914338],[4.53324635,0.02514834,95.29844467],[4.53324579,0.02514663,95.297746],[4.53324524,0.02514491,95.29704739],[4.53324469,0.0251432,95.29634883],[4.53324413,0.02514148,95.29565034],[4.53324358,0.02513977,95.29495191],[4.53324302,0.02513805,95.29425355],[4.53324247,0.02513634,95.29355526],[4.53324191,0.02513462,95.29285705],[4.53324136,0.02513291,95.29215892],[4.5332408,0.02513119,95.29146087],[4.53324025,0.02512948,95.29076291],[4.53323969,0.02512776,95.29006504],[4.53323914,0.02512605,95.28936726],[4.53323858,0.02512433,95.28866959],[4.53323803,0.02512262,95.28797201],[4.53323748,0.0251209,95.28727454],[4.53323692,0.02511919,95.28657718],[4.53323637,0.02511747,95.28587993],[4.53323581,0.02511576,95.28518279],[4.53323526,0.02511404,95.28448578],[4.53323473,0.0251124,95.28381852]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2}},{"geometry":{"coordinates":[[4.53327968,0.02514503,95.401572],[4.53327913,0.02514332,95.4008558],[4.53327857,0.0251416,95.40013965],[4.53327802,0.02513989,95.39942357],[4.53327747,0.02513817,95.39870755],[4.53327692,0.02513645,95.3979916],[4.53327636,0.02513474,95.39727572],[4.53327581,0.02513302,95.39655993],[4.53327526,0.02513131,95.39584422],[4.53327471,0.02512959,95.3951286],[4.53327415,0.02512787,95.39441307],[4.5332736,0.02512616,95.39369764],[4.53327305,0.02512444,95.39298231],[4.5332725,0.02512273,95.39226709],[4.53327194,0.02512101,95.39155198],[4.53327139,0.0251193,95.39083698],[4.53327084,0.02511758,95.39012211],[4.53327028,0.02511586,95.38940736],[4.53326973,0.02511415,95.38869274],[4.53326918,0.02511243,95.38797825],[4.53326863,0.02511072,95.38726391],[4.53326808,0.025109,95.3865497],[4.53326752,0.02510728,95.38583564],[4.53326697,0.02510557,95.38512174],[4.53326642,0.02510385,95.38440799],[4.53326589,0.02510221,95.38372474]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}},{"geometry":{"coordinates":[[4.53329907,0.02509136,95.49008534],[4.53329959,0.025093,95.49078482],[4.53330014,0.02509472,95.49151556],[4.53330069,0.02509644,95.4922465],[4.53330124,0.02509815,95.49297762],[4.53330179,0.02509987,95.49370893],[4.53330234,0.02510159,95.49444042],[4.53330289,0.0251033,95.49517208],[4.53330344,0.02510502,95.49590391],[4.53330399,0.02510674,95.4966359],[4.53330454,0.02510846,95.49736805],[4.53330509,0.02511017,95.49810035],[4.53330564,0.02511189,95.49883279],[4.53330619,0.02511361,95.49956538],[4.53330674,0.02511532,95.5002981],[4.53330729,0.02511704,95.50103095],[4.53330784,0.02511876,95.50176392],[4.53330839,0.02512048,95.50249702],[4.53330894,0.02512219,95.50323022],[4.53330949,0.02512391,95.50396354],[4.53331004,0.02512563,95.50469696],[4.53331059,0.02512734,95.50543047],[4.53331114,0.02512906,95.50616408],[4.53331169,0.02513078,95.50689777],[4.53331224,0.02513249,95.50763154],[4.53331279,0.02513421,95.50836539]],"type":"LineString"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":1,"type":"shoulder","predecessorId":0}},{"geometry":{"coordinates":[[4.53330034,0.02509094,95.49418149],[4.53330087,0.02509258,95.49488189],[4.53330142,0.0250943,95.4956136],[4.53330197,0.02509602,95.49634551],[4.53330252,0.02509774,95.49707761],[4.53330307,0.02509945,95.49780989],[4.53330362,0.02510117,95.49854235],[4.53330417,0.02510289,95.49927499],[4.53330472,0.0251046,95.5000078],[4.53330527,0.02510632,95.50074077],[4.53330582,0.02510804,95.5014739],[4.53330637,0.02510976,95.50220718],[4.53330692,0.02511147,95.5029406],[4.53330747,0.02511319,95.50367417],[4.53330802,0.02511491,95.50440788],[4.53330857,0.02511662,95.50514172],[4.53330912,0.02511834,95.50587568],[4.53330967,0.02512006,95.50660976],[4.53331022,0.02512177,95.50734396],[4.53331077,0.02512349,95.50807827],[4.53331132,0.02512521,95.50881268],[4.53331187,0.02512693,95.50954719],[4.53331242,0.02512864,95.51028179],[4.53331297,0.02513036,95.51101648],[4.53331352,0.02513208,95.51175125],[4.53331407,0.02513379,95.51248609]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":2,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":2,"type":"border","predecessorId":0}},{"geometry":{"coordinates":[[4.53330163,0.02509052,95.49418149],[4.53330215,0.02509216,95.49488189],[4.5333027,0.02509388,95.4956136],[4.53330325,0.0250956,95.49634551],[4.5333038,0.02509732,95.49707761],[4.53330435,0.02509903,95.49780989],[4.5333049,0.02510075,95.49854235],[4.53330545,0.02510247,95.49927499],[4.533306,0.02510418,95.5000078],[4.53330655,0.0251059,95.50074077],[4.5333071,0.02510762,95.5014739],[4.53330765,0.02510934,95.50220718],[4.5333082,0.02511105,95.5029406],[4.53330875,0.02511277,95.50367417],[4.5333093,0.02511449,95.50440788],[4.53330985,0.0251162,95.50514172],[4.53331041,0.02511792,95.50587568],[4.53331096,0.02511964,95.50660976],[4.53331151,0.02512135,95.50734396],[4.53331206,0.02512307,95.50807827],[4.53331261,0.02512479,95.50881268],[4.53331316,0.02512651,95.50954719],[4.53331371,0.02512822,95.51028179],[4.53331426,0.02512994,95.51101648],[4.53331481,0.02513166,95.51175125],[4.53331536,0.02513337,95.51248609]],"type":"LineString"},"type":"feature","properties":{"successorId":3,"level":true,"roadId":"1000100","id":3,"type":"border","predecessorId":0}},{"geometry":{"coordinates":[[4.53331266,0.02508691,95.49418149],[4.53331319,0.02508855,95.49488189],[4.53331375,0.02509027,95.4956136],[4.5333143,0.02509198,95.49634551],[4.53331486,0.0250937,95.49707761],[4.53331542,0.02509542,95.49780989],[4.53331597,0.02509713,95.49854235],[4.53331653,0.02509885,95.49927499],[4.53331708,0.02510056,95.5000078],[4.53331764,0.02510228,95.50074077],[4.53331819,0.02510399,95.5014739],[4.53331875,0.02510571,95.50220718],[4.53331931,0.02510742,95.5029406],[4.53331986,0.02510914,95.50367417],[4.53332042,0.02511085,95.50440788],[4.53332097,0.02511257,95.50514172],[4.53332153,0.02511428,95.50587568],[4.53332208,0.025116,95.50660976],[4.53332264,0.02511771,95.50734396],[4.5333232,0.02511943,95.50807827],[4.53332375,0.02512115,95.50881268],[4.53332431,0.02512286,95.50954719],[4.53332486,0.02512458,95.51028179],[4.53332542,0.02512629,95.51101648],[4.53332598,0.02512801,95.51175125],[4.53332653,0.02512972,95.51248609]],"type":"LineString"},"type":"feature","properties":{"successorId":4,"level":true,"roadId":"1000100","id":4,"type":"border","predecessorId":0}},{"geometry":{"coordinates":[[4.53318687,0.02512805,95.32967114],[4.53318632,0.02512634,95.32899238],[4.53318576,0.02512462,95.32831371],[4.53318551,0.02512384,95.32800172]],"type":"LineString"},"type":"feature","properties":{"successorId":-7,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-7,"type":"border","predecessorId":-7}},{"geometry":{"coordinates":[[4.53320094,0.02512345,95.32967114],[4.53320038,0.02512174,95.32899238],[4.53319983,0.02512002,95.32831371],[4.53319957,0.02511924,95.32800172]],"type":"LineString"},"type":"feature","properties":{"successorId":-6,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-6,"type":"border","predecessorId":-6}},{"geometry":{"coordinates":[[4.53320224,0.02512303,95.17967114],[4.53320169,0.02512131,95.17899238],[4.53320113,0.0251196,95.17831371],[4.53320087,0.02511881,95.17800172]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-5,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-5,"type":"border","predecessorId":-5}},{"geometry":{"coordinates":[[4.53320519,0.02512206,95.18912438],[4.53320464,0.02512035,95.18845849],[4.53320409,0.02511863,95.18779268],[4.53320383,0.02511784,95.1874866]],"type":"LineString"},"type":"feature","properties":{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-4,"type":"shoulder","predecessorId":-4}},{"geometry":{"coordinates":[[4.53320622,0.02512173,95.19240961],[4.53320566,0.02512001,95.1917228],[4.5332051,0.0251183,95.19103609],[4.53320484,0.02511751,95.19072041]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3}},{"geometry":{"coordinates":[[4.53323473,0.0251124,95.28381852],[4.53323417,0.02511069,95.28312117],[4.53323362,0.02510897,95.28242395],[4.53323336,0.02510818,95.28210345]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2}},{"geometry":{"coordinates":[[4.53326589,0.02510221,95.38372474],[4.53326534,0.02510049,95.38300658],[4.53326478,0.02509878,95.3822886],[4.53326453,0.02509799,95.38195856]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}},{"geometry":{"coordinates":[[4.53329771,0.02508714,95.4882851],[4.53329796,0.02508792,95.48862148],[4.53329852,0.02508964,95.48935331],[4.53329907,0.02509136,95.49008534]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":1,"type":"shoulder","predecessorId":1}},{"geometry":{"coordinates":[[4.53329899,0.02508672,95.49237888],[4.53329924,0.02508751,95.49271571],[4.53329979,0.02508922,95.49344849],[4.53330034,0.02509094,95.49418149]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":2,"type":"border","predecessorId":2}},{"geometry":{"coordinates":[[4.53330027,0.0250863,95.49237888],[4.53330053,0.02508709,95.49271571],[4.53330108,0.0250888,95.49344849],[4.53330163,0.02509052,95.49418149]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":true,"roadId":"1000100","id":3,"type":"border","predecessorId":3}},{"geometry":{"coordinates":[[4.53331129,0.02508269,95.49237888],[4.53331155,0.02508348,95.49271571],[4.53331211,0.0250852,95.49344849],[4.53331266,0.02508691,95.49418149]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":4,"type":"none","predecessorId":4}},{"geometry":{"coordinates":[[4.53318551,0.02512384,95.32800172],[4.53318495,0.02512212,95.32732237],[4.53318439,0.02512041,95.32664311],[4.53318384,0.02511869,95.32596395],[4.53318328,0.02511698,95.3252849],[4.53318273,0.02511527,95.32460595],[4.53318217,0.02511355,95.3239271],[4.53318161,0.02511184,95.32324837],[4.53318106,0.02511012,95.32256974],[4.5331805,0.02510841,95.32189124],[4.53317995,0.0251067,95.32121285],[4.53317939,0.02510498,95.32053458],[4.53317883,0.02510327,95.31985643],[4.53317828,0.02510155,95.31917841],[4.53317772,0.02509984,95.31850051],[4.53317717,0.02509813,95.31782275],[4.53317661,0.02509641,95.31714512],[4.53317606,0.0250947,95.31646763],[4.5331755,0.02509298,95.31579027],[4.53317495,0.02509127,95.31511303],[4.53317439,0.02508956,95.31443591],[4.53317384,0.02508784,95.3137589],[4.53317328,0.02508613,95.313082],[4.53317273,0.02508441,95.3124052],[4.53317217,0.0250827,95.31172849],[4.53317162,0.02508099,95.31105187],[4.53317106,0.02507927,95.31037534],[4.53317051,0.02507756,95.30969889],[4.53316995,0.02507584,95.3090225],[4.5331694,0.02507413,95.30834619],[4.53316884,0.02507241,95.30766993],[4.53316829,0.0250707,95.30699373],[4.53316773,0.02506898,95.30631757],[4.53316718,0.02506727,95.30564146],[4.53316667,0.02506569,95.30501989]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-7,"type":"border","predecessorId":-7}},{"geometry":{"coordinates":[[4.53319957,0.02511924,95.32800172],[4.53319901,0.02511752,95.32732237],[4.53319846,0.02511581,95.32664311],[4.5331979,0.02511409,95.32596395],[4.53319735,0.02511238,95.3252849],[4.53319679,0.02511067,95.32460595],[4.53319623,0.02510895,95.3239271],[4.53319568,0.02510724,95.32324837],[4.53319512,0.02510552,95.32256974],[4.53319457,0.02510381,95.32189124],[4.53319401,0.02510209,95.32121285],[4.53319346,0.02510038,95.32053458],[4.5331929,0.02509867,95.31985643],[4.53319235,0.02509695,95.31917841],[4.53319179,0.02509524,95.31850051],[4.53319123,0.02509352,95.31782275],[4.53319068,0.02509181,95.31714512],[4.53319012,0.02509009,95.31646763],[4.53318957,0.02508838,95.31579027],[4.53318901,0.02508667,95.31511303],[4.53318846,0.02508495,95.31443591],[4.5331879,0.02508324,95.3137589],[4.53318735,0.02508152,95.313082],[4.53318679,0.02507981,95.3124052],[4.53318624,0.02507809,95.31172849],[4.53318569,0.02507638,95.31105187],[4.53318513,0.02507467,95.31037534],[4.53318458,0.02507295,95.30969889],[4.53318402,0.02507124,95.3090225],[4.53318347,0.02506952,95.30834619],[4.53318291,0.02506781,95.30766993],[4.53318236,0.02506609,95.30699373],[4.5331818,0.02506438,95.30631757],[4.53318125,0.02506266,95.30564146],[4.53318074,0.02506109,95.30501989]],"type":"LineString"},"type":"feature","properties":{"successorId":-6,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-6,"type":"border","predecessorId":-6}},{"geometry":{"coordinates":[[4.53320087,0.02511881,95.17800172],[4.53320032,0.0251171,95.17732237],[4.53319976,0.02511538,95.17664311],[4.5331992,0.02511367,95.17596395],[4.53319865,0.02511195,95.1752849],[4.53319809,0.02511024,95.17460595],[4.53319754,0.02510853,95.1739271],[4.53319698,0.02510681,95.17324837],[4.53319642,0.0251051,95.17256974],[4.53319587,0.02510338,95.17189124],[4.53319531,0.02510167,95.17121285],[4.53319476,0.02509996,95.17053458],[4.5331942,0.02509824,95.16985643],[4.53319365,0.02509653,95.16917841],[4.53319309,0.02509481,95.16850051],[4.53319253,0.0250931,95.16782275],[4.53319198,0.02509138,95.16714512],[4.53319142,0.02508967,95.16646763],[4.53319087,0.02508796,95.16579027],[4.53319031,0.02508624,95.16511303],[4.53318976,0.02508453,95.16443591],[4.5331892,0.02508281,95.1637589],[4.53318865,0.0250811,95.163082],[4.53318809,0.02507938,95.1624052],[4.53318754,0.02507767,95.16172849],[4.53318698,0.02507596,95.16105187],[4.53318643,0.02507424,95.16037534],[4.53318587,0.02507253,95.15969889],[4.53318532,0.02507081,95.1590225],[4.53318476,0.0250691,95.15834619],[4.53318421,0.02506738,95.15766993],[4.53318365,0.02506567,95.15699373],[4.5331831,0.02506395,95.15631757],[4.53318254,0.02506224,95.15564146],[4.53318203,0.02506066,95.15501989]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-5,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-5,"type":"border","predecessorId":-5}},{"geometry":{"coordinates":[[4.53320383,0.02511784,95.1874866],[4.53320328,0.02511613,95.18681832],[4.53320273,0.02511441,95.18615013],[4.53320218,0.0251127,95.18548204],[4.53320163,0.02511098,95.18481405],[4.53320107,0.02510926,95.18414616],[4.53320052,0.02510755,95.18347837],[4.53319997,0.02510583,95.18281069],[4.53319942,0.02510412,95.18214313],[4.53319887,0.0251024,95.18147568],[4.53319831,0.02510069,95.18080834],[4.53319776,0.02509897,95.18014113],[4.53319721,0.02509726,95.17947403],[4.53319666,0.02509554,95.17880706],[4.53319611,0.02509382,95.17814022],[4.53319556,0.02509211,95.17747351],[4.533195,0.02509039,95.17680693],[4.53319445,0.02508868,95.17614048],[4.5331939,0.02508696,95.17547417],[4.53319335,0.02508525,95.17480798],[4.5331928,0.02508353,95.17414191],[4.53319225,0.02508182,95.17347595],[4.5331917,0.0250801,95.17281009],[4.53319115,0.02507838,95.17214434],[4.5331906,0.02507667,95.17147868],[4.53319005,0.02507495,95.17081312],[4.53318949,0.02507324,95.17014763],[4.53318894,0.02507152,95.16948223],[4.53318839,0.0250698,95.1688169],[4.53318784,0.02506809,95.16815163],[4.53318729,0.02506637,95.16748643],[4.53318674,0.02506466,95.16682128],[4.53318619,0.02506294,95.16615618],[4.53318564,0.02506123,95.16549112],[4.53318513,0.02505965,95.16487972]],"type":"LineString"},"type":"feature","properties":{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-4,"type":"shoulder","predecessorId":-4}},{"geometry":{"coordinates":[[4.53320484,0.02511751,95.19072041],[4.53320428,0.0251158,95.19002998],[4.53320373,0.02511408,95.18933965],[4.53320317,0.02511237,95.18864944],[4.53320261,0.02511066,95.18795933],[4.53320205,0.02510895,95.18726934],[4.53320149,0.02510723,95.18657947],[4.53320093,0.02510552,95.18588971],[4.53320037,0.02510381,95.18520008],[4.53319981,0.02510209,95.18451058],[4.53319926,0.02510038,95.1838212],[4.5331987,0.02509867,95.18313195],[4.53319814,0.02509695,95.18244284],[4.53319758,0.02509524,95.18175386],[4.53319702,0.02509353,95.18106502],[4.53319647,0.02509181,95.18037632],[4.53319591,0.0250901,95.17968777],[4.53319535,0.02508838,95.17899936],[4.53319479,0.02508667,95.17831109],[4.53319423,0.02508496,95.17762296],[4.53319368,0.02508324,95.17693496],[4.53319312,0.02508153,95.17624708],[4.53319256,0.02507982,95.17555932],[4.533192,0.0250781,95.17487168],[4.53319144,0.02507639,95.17418414],[4.53319089,0.02507468,95.1734967],[4.53319033,0.02507296,95.17280935],[4.53318977,0.02507125,95.1721221],[4.53318922,0.02506954,95.17143492],[4.53318866,0.02506782,95.17074783],[4.5331881,0.02506611,95.17006081],[4.53318754,0.02506439,95.16937385],[4.53318699,0.02506268,95.16868696],[4.53318643,0.02506097,95.16800012],[4.53318592,0.02505939,95.1673687]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3}},{"geometry":{"coordinates":[[4.53323336,0.02510818,95.28210345],[4.53323281,0.02510647,95.28140251],[4.53323225,0.02510475,95.28070171],[4.5332317,0.02510304,95.28000105],[4.53323114,0.02510132,95.27930054],[4.53323059,0.02509961,95.27860019],[4.53323003,0.02509789,95.27789999],[4.53322948,0.02509618,95.27719995],[4.53322892,0.02509447,95.27650007],[4.53322837,0.02509275,95.27580036],[4.53322781,0.02509104,95.27510081],[4.53322726,0.02508932,95.27440144],[4.5332267,0.02508761,95.27370225],[4.53322615,0.02508589,95.27300324],[4.53322559,0.02508418,95.27230441],[4.53322504,0.02508246,95.27160577],[4.53322448,0.02508075,95.27090732],[4.53322393,0.02507903,95.27020906],[4.53322337,0.02507732,95.26951099],[4.53322282,0.0250756,95.26881311],[4.53322226,0.02507389,95.2681154],[4.53322171,0.02507217,95.26741787],[4.53322115,0.02507046,95.26672051],[4.5332206,0.02506874,95.26602331],[4.53322005,0.02506703,95.26532628],[4.53321949,0.02506531,95.26462939],[4.53321894,0.0250636,95.26393266],[4.53321838,0.02506188,95.26323607],[4.53321783,0.02506017,95.26253963],[4.53321727,0.02505845,95.26184331],[4.53321672,0.02505674,95.26114713],[4.53321617,0.02505502,95.26045107],[4.53321561,0.02505331,95.25975513],[4.53321506,0.02505159,95.25905931],[4.53321455,0.02505002,95.25841969]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2}},{"geometry":{"coordinates":[[4.53326453,0.02509799,95.38195856],[4.53326397,0.02509627,95.38123328],[4.53326342,0.02509456,95.38050819],[4.53326286,0.02509284,95.37978329],[4.5332623,0.02509113,95.37905858],[4.53326175,0.02508942,95.37833407],[4.53326119,0.0250877,95.37760976],[4.53326064,0.02508599,95.37688567],[4.53326008,0.02508427,95.37616178],[4.53325953,0.02508256,95.37543811],[4.53325897,0.02508084,95.37471467],[4.53325842,0.02507913,95.37399144],[4.53325786,0.02507741,95.37326845],[4.5332573,0.0250757,95.3725457],[4.53325675,0.02507398,95.37182318],[4.53325619,0.02507227,95.3711009],[4.53325564,0.02507055,95.37037887],[4.53325508,0.02506884,95.3696571],[4.53325453,0.02506712,95.36893557],[4.53325397,0.02506541,95.36821428],[4.53325342,0.02506369,95.36749323],[4.53325286,0.02506198,95.36677242],[4.53325231,0.02506026,95.36605184],[4.53325176,0.02505855,95.36533149],[4.5332512,0.02505683,95.36461135],[4.53325065,0.02505511,95.36389144],[4.53325009,0.0250534,95.36317175],[4.53324954,0.02505168,95.36245226],[4.53324898,0.02504997,95.36173298],[4.53324843,0.02504825,95.3610139],[4.53324787,0.02504654,95.36029502],[4.53324732,0.02504482,95.35957634],[4.53324677,0.02504311,95.35885784],[4.53324621,0.02504139,95.35813953],[4.5332457,0.02503982,95.3574793]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}},{"geometry":{"coordinates":[[4.53327984,0.02502864,95.46604691],[4.53328036,0.02503021,95.46675612],[4.53328093,0.02503192,95.46752778],[4.53328149,0.02503364,95.46829973],[4.53328205,0.02503535,95.46907195],[4.53328262,0.02503706,95.46984445],[4.53328318,0.02503877,95.47061725],[4.53328374,0.02504049,95.47139033],[4.53328431,0.0250422,95.4721637],[4.53328487,0.02504391,95.47293737],[4.53328544,0.02504562,95.47371134],[4.533286,0.02504734,95.47448561],[4.53328656,0.02504905,95.47526018],[4.53328713,0.02505076,95.47603506],[4.53328769,0.02505247,95.47681026],[4.53328826,0.02505419,95.47758577],[4.53328882,0.0250559,95.4783616],[4.53328939,0.02505761,95.47913775],[4.53328995,0.02505932,95.47991423],[4.53329051,0.02506103,95.48069103],[4.53329108,0.02506275,95.48146816],[4.53329164,0.02506446,95.4822456],[4.53329221,0.02506617,95.48302336],[4.53329277,0.02506788,95.48380142],[4.53329334,0.0250696,95.48457979],[4.5332939,0.02507131,95.48535845],[4.53329447,0.02507302,95.4861374],[4.53329503,0.02507473,95.48691664],[4.5332956,0.02507644,95.48769616],[4.53329616,0.02507816,95.48847596],[4.53329673,0.02507987,95.48925602],[4.53329729,0.02508158,95.49003635],[4.53329786,0.02508329,95.49081694],[4.53329842,0.02508501,95.49159779],[4.53329899,0.02508672,95.49237888]],"type":"LineString"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":1,"type":"shoulder","predecessorId":0}},{"geometry":{"coordinates":[[4.53329246,0.02502451,95.46604691],[4.53329297,0.02502608,95.46675612],[4.53329352,0.0250278,95.46752778],[4.53329408,0.02502951,95.46829973],[4.53329463,0.02503123,95.46907195],[4.53329519,0.02503295,95.46984445],[4.53329574,0.02503466,95.47061725],[4.53329629,0.02503638,95.47139033],[4.53329685,0.02503809,95.4721637],[4.5332974,0.02503981,95.47293737],[4.53329796,0.02504152,95.47371134],[4.53329851,0.02504324,95.47448561],[4.53329907,0.02504496,95.47526018],[4.53329962,0.02504667,95.47603506],[4.53330018,0.02504839,95.47681026],[4.53330073,0.0250501,95.47758577],[4.53330129,0.02505182,95.4783616],[4.53330184,0.02505353,95.47913775],[4.5333024,0.02505525,95.47991423],[4.53330296,0.02505696,95.48069103],[4.53330351,0.02505868,95.48146816],[4.53330407,0.02506039,95.4822456],[4.53330462,0.02506211,95.48302336],[4.53330518,0.02506383,95.48380142],[4.53330573,0.02506554,95.48457979],[4.53330629,0.02506726,95.48535845],[4.53330685,0.02506897,95.4861374],[4.5333074,0.02507069,95.48691664],[4.53330796,0.0250724,95.48769616],[4.53330851,0.02507412,95.48847596],[4.53330907,0.02507583,95.48925602],[4.53330963,0.02507755,95.49003635],[4.53331018,0.02507926,95.49081694],[4.53331074,0.02508098,95.49159779],[4.53331129,0.02508269,95.49237888]],"type":"LineString"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":2,"type":"none","predecessorId":0}},{"geometry":{"coordinates":[[4.53314251,0.02507361,95.30501989],[4.53314196,0.02507189,95.30434812],[4.53314141,0.02507018,95.30367503],[4.53314085,0.02506846,95.30300084],[4.5331403,0.02506675,95.30232579],[4.53313975,0.02506503,95.30165009],[4.5331392,0.02506332,95.30097399],[4.53313864,0.0250616,95.3002977],[4.53313809,0.02505989,95.29962146],[4.53313754,0.02505817,95.29894548],[4.53313698,0.02505646,95.29827],[4.53313643,0.02505474,95.29759525],[4.53313588,0.02505303,95.29692144],[4.53313532,0.02505131,95.2962488],[4.53313477,0.0250496,95.29557757],[4.53313422,0.02504788,95.29490797],[4.53313367,0.02504617,95.29424021],[4.53313313,0.02504445,95.29357454],[4.53313258,0.02504274,95.29291117],[4.53313203,0.02504102,95.29225032],[4.53313149,0.0250393,95.29159223],[4.53313095,0.02503758,95.29093694],[4.5331304,0.02503586,95.29028054],[4.53312986,0.02503415,95.2896154],[4.53312931,0.02503243,95.28893856],[4.53312876,0.02503072,95.28825195],[4.53312821,0.025029,95.2875577],[4.53312765,0.02502729,95.28685795],[4.53312709,0.02502558,95.28615482],[4.53312651,0.02502387,95.2854504],[4.53312591,0.02502217,95.28474586],[4.53312529,0.02502048,95.28404144],[4.53312467,0.02501879,95.28333733],[4.53312404,0.0250171,95.28263374],[4.53312342,0.02501541,95.28193086],[4.5331228,0.02501371,95.2812289],[4.53312221,0.02501201,95.28052761],[4.53312163,0.0250103,95.27981747],[4.53312106,0.0250086,95.27909198],[4.53312049,0.02500689,95.27835699],[4.53311993,0.02500517,95.27761886],[4.53311936,0.02500346,95.27688397],[4.5331188,0.02500175,95.27615641],[4.53311824,0.02500004,95.2754314],[4.53311767,0.02499833,95.27470543],[4.5331171,0.02499662,95.27397857],[4.53311654,0.02499491,95.27325102],[4.53311597,0.0249932,95.27252301],[4.5331154,0.02499149,95.27179473],[4.53311482,0.02498978,95.27106641],[4.53311425,0.02498808,95.27033825],[4.53311368,0.02498637,95.26961046],[4.53311311,0.02498466,95.26888326],[4.53311253,0.02498295,95.26815685],[4.53311196,0.02498124,95.26743145],[4.53311139,0.02497954,95.26670726],[4.53311082,0.02497783,95.26598449],[4.53311025,0.02497612,95.26526335],[4.53310967,0.02497441,95.26454382],[4.5331091,0.0249727,95.26382568],[4.53310853,0.02497099,95.26310869],[4.53310797,0.02496928,95.26239261],[4.5331074,0.02496758,95.26167722],[4.53310683,0.02496587,95.26096228],[4.53310626,0.02496416,95.26024755],[4.53310569,0.02496245,95.25953281],[4.53310512,0.02496074,95.25881795],[4.53310456,0.02495903,95.25810295],[4.53310399,0.02495732,95.25738783],[4.53310342,0.02495561,95.25667258],[4.53310286,0.0249539,95.25595722],[4.53310229,0.02495219,95.25524175],[4.53310172,0.02495048,95.25452616],[4.53310116,0.02494877,95.25381047],[4.53310059,0.02494706,95.25309468],[4.53310003,0.02494535,95.25237878],[4.53309946,0.02494363,95.25166275],[4.5330989,0.02494192,95.25094656],[4.53309834,0.02494021,95.25023019],[4.53309777,0.0249385,95.24951362],[4.53309721,0.02493679,95.2487968],[4.53309665,0.02493508,95.24807973],[4.53309609,0.02493337,95.24736237],[4.53309552,0.02493166,95.2466447],[4.53309496,0.02492994,95.24592668],[4.5330944,0.02492823,95.24520831],[4.53309384,0.02492652,95.24448954],[4.53309328,0.02492481,95.24377035],[4.53309272,0.0249231,95.24305071],[4.53309216,0.02492139,95.24233058],[4.5330916,0.02491967,95.24160991],[4.53309104,0.02491796,95.24088867],[4.53309048,0.02491625,95.24016682],[4.53308992,0.02491454,95.23944432],[4.53308936,0.02491282,95.23872114],[4.5330888,0.02491111,95.23799723],[4.53308825,0.0249094,95.23727256],[4.53308769,0.02490769,95.23654709],[4.53308713,0.02490597,95.23582078],[4.53308657,0.02490426,95.23509359],[4.53308601,0.02490255,95.23436548],[4.53308545,0.02490084,95.23363659],[4.5330849,0.02489912,95.23290718],[4.53308434,0.02489741,95.23217752],[4.53308378,0.0248957,95.2314479],[4.53308322,0.02489398,95.23071859],[4.53308267,0.02489227,95.22998987],[4.53308211,0.02489056,95.22926202],[4.53308155,0.02488884,95.22853531],[4.533081,0.02488713,95.22781001],[4.53308045,0.02488542,95.22708634],[4.53307989,0.0248837,95.22636417],[4.53307934,0.02488199,95.22564334],[4.53307879,0.02488027,95.22492364],[4.53307824,0.02487856,95.2242049],[4.53307769,0.02487684,95.22348694],[4.53307714,0.02487513,95.22276957],[4.53307659,0.02487341,95.22205261],[4.53307604,0.0248717,95.22133587],[4.53307549,0.02486998,95.22061917],[4.53307494,0.02486826,95.21990232],[4.53307439,0.02486655,95.21918515],[4.53307384,0.02486483,95.21846747],[4.53307329,0.02486312,95.2177491],[4.53307274,0.0248614,95.21702985],[4.53307219,0.02485969,95.21630954],[4.53307164,0.02485797,95.21558799],[4.53307108,0.02485626,95.21486501],[4.53307053,0.02485455,95.21414043],[4.53306997,0.02485283,95.21341418],[4.5330694,0.02485112,95.2126863],[4.53306884,0.02484941,95.21195683],[4.53306827,0.0248477,95.2112258],[4.53306769,0.024846,95.21049326],[4.53306712,0.02484429,95.20975926],[4.53306654,0.02484258,95.20902382],[4.53306596,0.02484088,95.20828698],[4.53306537,0.02483917,95.2075488],[4.53306479,0.02483747,95.2068093],[4.5330642,0.02483577,95.20606854],[4.53306361,0.02483406,95.20532654],[4.53306303,0.02483236,95.20458335],[4.53306244,0.02483066,95.203839],[4.53306185,0.02482895,95.20309355],[4.53306127,0.02482725,95.20234702],[4.53306068,0.02482555,95.20159946],[4.5330601,0.02482384,95.20085091],[4.53305952,0.02482214,95.2001014],[4.53305895,0.02482043,95.19935098],[4.53305837,0.02481872,95.19859969],[4.5330578,0.02481701,95.19784757],[4.53305724,0.0248153,95.1970947],[4.53305667,0.02481359,95.19634184],[4.53305611,0.02481188,95.19558944],[4.53305555,0.02481017,95.19483764],[4.53305499,0.02480846,95.19408657],[4.53305444,0.02480674,95.19333639],[4.53305388,0.02480503,95.19258724],[4.53305333,0.02480332,95.19183927],[4.53305277,0.02480161,95.19109262],[4.53305222,0.02479989,95.18971112],[4.53305167,0.02479818,95.18061959],[4.5330512,0.02479675,95.17147248]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-7,"type":"none","predecessorId":0}},{"geometry":{"coordinates":[[4.53318074,0.02506109,95.30501989],[4.53318019,0.02505937,95.30434812],[4.53317964,0.02505766,95.30367503],[4.53317909,0.02505594,95.30300084],[4.53317853,0.02505423,95.30232579],[4.53317798,0.02505251,95.30165009],[4.53317743,0.0250508,95.30097399],[4.53317687,0.02504908,95.3002977],[4.53317632,0.02504737,95.29962146],[4.53317577,0.02504565,95.29894548],[4.53317521,0.02504394,95.29827],[4.53317466,0.02504222,95.29759525],[4.53317411,0.02504051,95.29692144],[4.53317356,0.02503879,95.2962488],[4.533173,0.02503707,95.29557757],[4.53317245,0.02503536,95.29490797],[4.5331719,0.02503364,95.29424021],[4.53317135,0.02503193,95.29357454],[4.5331708,0.02503021,95.29291117],[4.53317025,0.0250285,95.29225032],[4.5331697,0.02502678,95.29159223],[4.53316916,0.02502506,95.29093694],[4.53316861,0.02502335,95.29028054],[4.53316806,0.02502163,95.2896154],[4.5331675,0.02501992,95.28893856],[4.53316695,0.0250182,95.28825195],[4.53316639,0.02501649,95.2875577],[4.53316582,0.02501478,95.28685795],[4.53316526,0.02501307,95.28615482],[4.5331647,0.02501135,95.2854504],[4.53316413,0.02500964,95.28474586],[4.53316357,0.02500793,95.28404144],[4.53316301,0.02500622,95.28333733],[4.53316244,0.02500451,95.28263374],[4.53316188,0.0250028,95.28193086],[4.53316132,0.02500108,95.2812289],[4.53316076,0.02499937,95.28052761],[4.53316019,0.02499766,95.27981747],[4.53315962,0.02499595,95.27909198],[4.53315905,0.02499424,95.27835699],[4.53315847,0.02499254,95.27761886],[4.5331579,0.02499083,95.27688397],[4.53315733,0.02498912,95.27615641],[4.53315676,0.02498741,95.2754314],[4.53315619,0.0249857,95.27470543],[4.53315562,0.02498399,95.27397857],[4.53315505,0.02498228,95.27325102],[4.53315447,0.02498057,95.27252301],[4.5331539,0.02497886,95.27179473],[4.53315333,0.02497715,95.27106641],[4.53315276,0.02497545,95.27033825],[4.53315219,0.02497374,95.26961046],[4.53315162,0.02497203,95.26888326],[4.53315105,0.02497032,95.26815685],[4.53315048,0.02496861,95.26743145],[4.53314991,0.0249669,95.26670726],[4.53314934,0.02496519,95.26598449],[4.53314877,0.02496348,95.26526335],[4.53314821,0.02496177,95.26454382],[4.53314764,0.02496006,95.26382568],[4.53314707,0.02495835,95.26310869],[4.5331465,0.02495664,95.26239261],[4.53314594,0.02495493,95.26167722],[4.53314537,0.02495322,95.26096228],[4.53314481,0.02495151,95.26024755],[4.53314424,0.0249498,95.25953281],[4.53314367,0.02494808,95.25881795],[4.53314311,0.02494637,95.25810295],[4.53314254,0.02494466,95.25738783],[4.53314198,0.02494295,95.25667258],[4.53314141,0.02494124,95.25595722],[4.53314085,0.02493953,95.25524175],[4.53314028,0.02493782,95.25452616],[4.53313972,0.02493611,95.25381047],[4.53313915,0.0249344,95.25309468],[4.53313859,0.02493269,95.25237878],[4.53313802,0.02493098,95.25166275],[4.53313746,0.02492927,95.25094656],[4.53313689,0.02492755,95.25023019],[4.53313633,0.02492584,95.24951362],[4.53313576,0.02492413,95.2487968],[4.5331352,0.02492242,95.24807973],[4.53313463,0.02492071,95.24736237],[4.53313407,0.024919,95.2466447],[4.5331335,0.02491729,95.24592668],[4.53313294,0.02491558,95.24520831],[4.53313237,0.02491387,95.24448954],[4.53313181,0.02491215,95.24377035],[4.53313124,0.02491044,95.24305071],[4.53313068,0.02490873,95.24233058],[4.53313011,0.02490702,95.24160991],[4.53312955,0.02490531,95.24088867],[4.53312898,0.0249036,95.24016682],[4.53312842,0.02490189,95.23944432],[4.53312786,0.02490018,95.23872114],[4.53312729,0.02489847,95.23799723],[4.53312673,0.02489676,95.23727256],[4.53312616,0.02489504,95.23654709],[4.5331256,0.02489333,95.23582078],[4.53312503,0.02489162,95.23509359],[4.53312447,0.02488991,95.23436548],[4.5331239,0.0248882,95.23363659],[4.53312334,0.02488649,95.23290718],[4.53312277,0.02488478,95.23217752],[4.53312221,0.02488307,95.2314479],[4.53312164,0.02488136,95.23071859],[4.53312108,0.02487965,95.22998987],[4.53312051,0.02487793,95.22926202],[4.53311995,0.02487622,95.22853531],[4.53311939,0.02487451,95.22781001],[4.53311883,0.0248728,95.22708634],[4.53311827,0.02487109,95.22636417],[4.53311771,0.02486937,95.22564334],[4.53311715,0.02486766,95.22492364],[4.53311659,0.02486595,95.2242049],[4.53311603,0.02486423,95.22348694],[4.53311547,0.02486252,95.22276957],[4.53311491,0.02486081,95.22205261],[4.53311436,0.02485909,95.22133587],[4.5331138,0.02485738,95.22061917],[4.53311324,0.02485567,95.21990232],[4.53311268,0.02485395,95.21918515],[4.53311213,0.02485224,95.21846747],[4.53311157,0.02485053,95.2177491],[4.53311101,0.02484881,95.21702985],[4.53311046,0.0248471,95.21630954],[4.5331099,0.02484539,95.21558799],[4.53310934,0.02484367,95.21486501],[4.53310879,0.02484196,95.21414043],[4.53310823,0.02484025,95.21341418],[4.53310767,0.02483853,95.2126863],[4.53310711,0.02483682,95.21195683],[4.53310655,0.02483511,95.2112258],[4.53310599,0.02483339,95.21049326],[4.53310543,0.02483168,95.20975926],[4.53310488,0.02482997,95.20902382],[4.53310432,0.02482826,95.20828698],[4.53310376,0.02482654,95.2075488],[4.5331032,0.02482483,95.2068093],[4.53310264,0.02482312,95.20606854],[4.53310208,0.02482141,95.20532654],[4.53310152,0.02481969,95.20458335],[4.53310096,0.02481798,95.203839],[4.53310039,0.02481627,95.20309355],[4.53309983,0.02481456,95.20234702],[4.53309927,0.02481284,95.20159946],[4.53309871,0.02481113,95.20085091],[4.53309815,0.02480942,95.2001014],[4.53309759,0.02480771,95.19935098],[4.53309703,0.02480599,95.19859969],[4.53309647,0.02480428,95.19784757],[4.53309591,0.02480257,95.1970947],[4.53309535,0.02480086,95.19634184],[4.53309479,0.02479915,95.19558944],[4.53309423,0.02479743,95.19483764],[4.53309367,0.02479572,95.19408657],[4.53309311,0.02479401,95.19333639],[4.53309255,0.02479229,95.19258724],[4.53309199,0.02479058,95.19183927],[4.53309144,0.02478887,95.19109262],[4.53308978,0.02478752,95.18971112],[4.53308595,0.02478689,95.18061959],[4.53308237,0.02478648,95.17147248]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-6,"type":"border","predecessorId":-6}},{"geometry":{"coordinates":[[4.53318203,0.02506066,95.15501989],[4.53318148,0.02505895,95.15434812],[4.53318093,0.02505723,95.15367503],[4.53318037,0.02505552,95.15300084],[4.53317982,0.0250538,95.15232579],[4.53317927,0.02505209,95.15165009],[4.53317871,0.02505037,95.15097399],[4.53317816,0.02504866,95.1502977],[4.5331776,0.02504695,95.14962146],[4.53317705,0.02504523,95.14894548],[4.53317649,0.02504352,95.14827],[4.53317594,0.0250418,95.14759525],[4.53317539,0.02504009,95.14692144],[4.53317483,0.02503837,95.1462488],[4.53317428,0.02503666,95.14557757],[4.53317373,0.02503494,95.14490797],[4.53317318,0.02503323,95.14424021],[4.53317263,0.02503151,95.14357454],[4.53317208,0.02502979,95.14291117],[4.53317153,0.02502808,95.14225032],[4.53317098,0.02502636,95.14159223],[4.53317043,0.02502464,95.14093694],[4.53316989,0.02502293,95.14028054],[4.53316934,0.02502121,95.1396154],[4.53316878,0.0250195,95.13893856],[4.53316823,0.02501778,95.13825195],[4.53316767,0.02501607,95.1375577],[4.53316711,0.02501436,95.13685795],[4.53316655,0.02501264,95.13615482],[4.53316598,0.02501093,95.1354504],[4.53316542,0.02500922,95.13474586],[4.53316486,0.02500751,95.13404144],[4.5331643,0.0250058,95.13333733],[4.53316374,0.02500408,95.13263374],[4.53316317,0.02500237,95.13193086],[4.53316261,0.02500066,95.1312289],[4.53316205,0.02499895,95.13052761],[4.53316149,0.02499724,95.12981747],[4.53316092,0.02499553,95.12909198],[4.53316035,0.02499382,95.12835699],[4.53315978,0.02499211,95.12761886],[4.53315921,0.0249904,95.12688397],[4.53315864,0.02498869,95.12615641],[4.53315807,0.02498698,95.1254314],[4.5331575,0.02498527,95.12470543],[4.53315693,0.02498356,95.12397857],[4.53315637,0.02498185,95.12325102],[4.5331558,0.02498014,95.12252301],[4.53315523,0.02497843,95.12179473],[4.53315466,0.02497672,95.12106641],[4.53315409,0.02497501,95.12033825],[4.53315352,0.0249733,95.11961046],[4.53315296,0.02497159,95.11888326],[4.53315239,0.02496988,95.11815685],[4.53315182,0.02496817,95.11743145],[4.53315125,0.02496646,95.11670726],[4.53315069,0.02496475,95.11598449],[4.53315012,0.02496304,95.11526335],[4.53314956,0.02496133,95.11454382],[4.53314899,0.02495961,95.11382568],[4.53314843,0.0249579,95.11310869],[4.53314786,0.02495619,95.11239261],[4.5331473,0.02495448,95.11167722],[4.53314674,0.02495277,95.11096228],[4.53314617,0.02495106,95.11024755],[4.53314561,0.02494935,95.10953281],[4.53314505,0.02494763,95.10881795],[4.53314449,0.02494592,95.10810295],[4.53314392,0.02494421,95.10738783],[4.53314336,0.0249425,95.10667258],[4.5331428,0.02494079,95.10595722],[4.53314223,0.02493908,95.10524175],[4.53314167,0.02493736,95.10452616],[4.53314111,0.02493565,95.10381047],[4.53314055,0.02493394,95.10309468],[4.53313998,0.02493223,95.10237878],[4.53313942,0.02493052,95.10166275],[4.53313886,0.0249288,95.10094656],[4.5331383,0.02492709,95.10023019],[4.53313773,0.02492538,95.09951362],[4.53313717,0.02492367,95.0987968],[4.53313661,0.02492196,95.09807973],[4.53313605,0.02492025,95.09736237],[4.53313548,0.02491853,95.0966447],[4.53313492,0.02491682,95.09592668],[4.53313436,0.02491511,95.09520831],[4.5331338,0.0249134,95.09448954],[4.53313324,0.02491169,95.09377035],[4.53313267,0.02490997,95.09305071],[4.53313211,0.02490826,95.09233058],[4.53313155,0.02490655,95.09160991],[4.53313098,0.02490484,95.09088867],[4.53313042,0.02490313,95.09016682],[4.53312986,0.02490142,95.08944432],[4.5331293,0.0248997,95.08872114],[4.53312873,0.02489799,95.08799723],[4.53312817,0.02489628,95.08727256],[4.53312761,0.02489457,95.08654709],[4.53312704,0.02489286,95.08582078],[4.53312648,0.02489115,95.08509359],[4.53312591,0.02488944,95.08436548],[4.53312535,0.02488772,95.08363659],[4.53312479,0.02488601,95.08290718],[4.53312422,0.0248843,95.08217752],[4.53312366,0.02488259,95.0814479],[4.53312309,0.02488088,95.08071859],[4.53312253,0.02487917,95.07998987],[4.53312197,0.02487746,95.07926202],[4.5331214,0.02487574,95.07853531],[4.53312084,0.02487403,95.07781001],[4.53312028,0.02487232,95.07708634],[4.53311972,0.02487061,95.07636417],[4.53311916,0.0248689,95.07564334],[4.5331186,0.02486718,95.07492364],[4.53311804,0.02486547,95.0742049],[4.53311748,0.02486376,95.07348694],[4.53311692,0.02486204,95.07276957],[4.53311636,0.02486033,95.07205261],[4.5331158,0.02485862,95.07133587],[4.53311525,0.02485691,95.07061917],[4.53311469,0.02485519,95.06990232],[4.53311413,0.02485348,95.06918515],[4.53311357,0.02485177,95.06846747],[4.53311301,0.02485005,95.0677491],[4.53311245,0.02484834,95.06702985],[4.5331119,0.02484663,95.06630954],[4.53311134,0.02484491,95.06558799],[4.53311078,0.0248432,95.06486501],[4.53311022,0.02484149,95.06414043],[4.53310966,0.02483978,95.06341418],[4.5331091,0.02483806,95.0626863],[4.53310854,0.02483635,95.06195683],[4.53310798,0.02483464,95.0612258],[4.53310741,0.02483293,95.06049326],[4.53310685,0.02483122,95.05975926],[4.53310629,0.0248295,95.05902382],[4.53310573,0.02482779,95.05828698],[4.53310516,0.02482608,95.0575488],[4.5331046,0.02482437,95.0568093],[4.53310404,0.02482266,95.05606854],[4.53310347,0.02482095,95.05532654],[4.53310291,0.02481923,95.05458335],[4.53310235,0.02481752,95.053839],[4.53310178,0.02481581,95.05309355],[4.53310122,0.0248141,95.05234702],[4.53310065,0.02481239,95.05159946],[4.53310009,0.02481068,95.05085091],[4.53309952,0.02480897,95.0501014],[4.53309896,0.02480726,95.04935098],[4.53309839,0.02480555,95.04859969],[4.53309783,0.02480384,95.04784757],[4.53309726,0.02480213,95.0470947],[4.53309669,0.02480041,95.04634184],[4.53309613,0.0247987,95.04558944],[4.53309556,0.02479699,95.04483764],[4.533095,0.02479528,95.04408657],[4.53309444,0.02479357,95.04333639],[4.53309387,0.02479186,95.04258724],[4.53309331,0.02479015,95.04183927],[4.53309275,0.02478844,95.04109262],[4.53309198,0.0247868,95.03971112],[4.53308874,0.02478597,95.03061959],[4.53308554,0.02478543,95.02147248]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-5,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-5,"type":"border","predecessorId":-5}},{"geometry":{"coordinates":[[4.53318513,0.02505965,95.16487972],[4.53318458,0.02505793,95.16421425],[4.53318403,0.02505622,95.16354462],[4.53318348,0.0250545,95.16287151],[4.53318293,0.02505279,95.16219558],[4.53318237,0.02505107,95.16151749],[4.53318182,0.02504936,95.16083791],[4.53318126,0.02504764,95.1601575],[4.53318071,0.02504593,95.15947692],[4.53318015,0.02504421,95.15879684],[4.5331796,0.0250425,95.15811791],[4.53317904,0.02504078,95.1574408],[4.53317849,0.02503907,95.15676617],[4.53317794,0.02503735,95.15609468],[4.53317739,0.02503564,95.15542698],[4.53317684,0.02503392,95.15476374],[4.53317629,0.02503221,95.15410562],[4.53317575,0.02503049,95.15345327],[4.5331752,0.02502877,95.15280734],[4.53317466,0.02502705,95.15216851],[4.53317412,0.02502533,95.15153741],[4.53317359,0.02502361,95.15091455],[4.53317305,0.02502189,95.15029643],[4.53317252,0.02502017,95.14967563],[4.53317198,0.02501845,95.14904455],[4.53317143,0.02501673,95.14839562],[4.53317088,0.02501502,95.14772124],[4.53317032,0.0250133,95.14701384],[4.53316974,0.0250116,95.14626585],[4.53316915,0.02500989,95.14547014],[4.53316855,0.0250082,95.14462971],[4.53316793,0.0250065,95.14375762],[4.53316731,0.02500481,95.14286741],[4.53316669,0.02500311,95.14197259],[4.53316607,0.02500142,95.14108665],[4.53316546,0.02499973,95.14022309],[4.53316486,0.02499803,95.13939494],[4.53316427,0.02499632,95.13860537],[4.5331637,0.02499462,95.13784784],[4.53316313,0.02499291,95.13711538],[4.53316256,0.02499119,95.13640102],[4.533162,0.02498948,95.13569781],[4.53316144,0.02498777,95.13499881],[4.53316088,0.02498606,95.13429723],[4.53316032,0.02498434,95.13358985],[4.53315976,0.02498263,95.13287699],[4.53315919,0.02498092,95.13215913],[4.53315863,0.02497921,95.13143676],[4.53315806,0.0249775,95.13071035],[4.53315749,0.02497579,95.12998038],[4.53315692,0.02497408,95.12924734],[4.53315635,0.02497237,95.12851169],[4.53315578,0.02497066,95.12777393],[4.53315521,0.02496895,95.12703452],[4.53315464,0.02496724,95.12629394],[4.53315406,0.02496554,95.12555268],[4.53315349,0.02496383,95.1248112],[4.53315292,0.02496212,95.12406998],[4.53315235,0.02496041,95.12332927],[4.53315178,0.0249587,95.1225891],[4.53315121,0.02495699,95.12184952],[4.53315064,0.02495528,95.12111055],[4.53315007,0.02495357,95.12037222],[4.5331495,0.02495186,95.11963457],[4.53314893,0.02495015,95.11889762],[4.53314836,0.02494844,95.11816142],[4.53314779,0.02494673,95.11742598],[4.53314722,0.02494502,95.11669135],[4.53314665,0.02494331,95.11595755],[4.53314608,0.0249416,95.11522462],[4.53314552,0.02493989,95.11449258],[4.53314495,0.02493818,95.11376147],[4.53314438,0.02493647,95.11303133],[4.53314382,0.02493476,95.11230217],[4.53314325,0.02493305,95.11157404],[4.53314268,0.02493134,95.11084695],[4.53314212,0.02492963,95.11012092],[4.53314155,0.02492792,95.10939594],[4.53314099,0.02492621,95.10867201],[4.53314042,0.0249245,95.10794914],[4.53313986,0.02492279,95.10722732],[4.5331393,0.02492107,95.10650657],[4.53313873,0.02491936,95.10578687],[4.53313817,0.02491765,95.10506824],[4.53313761,0.02491594,95.10435067],[4.53313705,0.02491423,95.10363416],[4.53313649,0.02491251,95.10291873],[4.53313593,0.0249108,95.10220436],[4.53313537,0.02490909,95.10149105],[4.53313481,0.02490738,95.10077878],[4.53313425,0.02490566,95.10006755],[4.53313369,0.02490395,95.09935735],[4.53313313,0.02490224,95.09864816],[4.53313257,0.02490052,95.09793998],[4.53313201,0.02489881,95.09723279],[4.53313146,0.0248971,95.09652658],[4.5331309,0.02489538,95.09582135],[4.53313034,0.02489367,95.09511707],[4.53312979,0.02489196,95.09441375],[4.53312923,0.02489024,95.09371136],[4.53312868,0.02488853,95.09300991],[4.53312812,0.02488681,95.09230937],[4.53312757,0.0248851,95.09160974],[4.53312701,0.02488338,95.09091101],[4.53312646,0.02488167,95.09021316],[4.53312591,0.02487995,95.08951619],[4.53312535,0.02487824,95.08882008],[4.5331248,0.02487652,95.08812483],[4.53312425,0.02487481,95.08743042],[4.5331237,0.02487309,95.08673684],[4.53312315,0.02487138,95.08604401],[4.53312259,0.02486966,95.08535154],[4.53312204,0.02486795,95.08465894],[4.53312149,0.02486623,95.08396574],[4.53312094,0.02486452,95.08327149],[4.53312039,0.0248628,95.0825757],[4.53311984,0.02486109,95.08187792],[4.53311928,0.02485937,95.08117765],[4.53311873,0.02485766,95.08047445],[4.53311818,0.02485594,95.07976783],[4.53311762,0.02485423,95.07905733],[4.53311706,0.02485251,95.07834247],[4.5331165,0.0248508,95.07762279],[4.53311594,0.02484909,95.07689782],[4.53311538,0.02484738,95.07616709],[4.53311482,0.02484567,95.07543012],[4.53311425,0.02484396,95.07468646],[4.53311368,0.02484225,95.07393562],[4.53311311,0.02484054,95.07317717],[4.53311254,0.02483883,95.07241124],[4.53311197,0.02483712,95.0716385],[4.53311139,0.02483541,95.07085968],[4.53311081,0.02483371,95.07007549],[4.53311023,0.024832,95.06928662],[4.53310965,0.02483029,95.06849381],[4.53310907,0.02482859,95.06769775],[4.53310849,0.02482688,95.06689915],[4.5331079,0.02482518,95.06609874],[4.53310732,0.02482347,95.0652972],[4.53310674,0.02482177,95.06449527],[4.53310616,0.02482006,95.06369364],[4.53310557,0.02481836,95.06289303],[4.53310499,0.02481665,95.06209414],[4.53310441,0.02481495,95.06129769],[4.53310383,0.02481324,95.06050439],[4.53310325,0.02481153,95.05971493],[4.53310268,0.02480983,95.05893005],[4.5331021,0.02480812,95.05815043],[4.53310153,0.02480641,95.0573768],[4.53310096,0.0248047,95.05660986],[4.53310039,0.02480299,95.05585033],[4.53309983,0.02480128,95.05509891],[4.53309926,0.02479957,95.05435597],[4.5330987,0.02479786,95.05362053],[4.53309815,0.02479614,95.05289127],[4.53309759,0.02479443,95.05216687],[4.53309703,0.02479271,95.05144603],[4.53309648,0.024791,95.05072741],[4.53309593,0.02478929,95.05000972],[4.53309538,0.02478758,95.04929163],[4.53309482,0.02478586,95.04857183],[4.53309427,0.02478415,95.04784901],[4.5330938,0.02478271,95.04724111]],"type":"LineString"},"type":"feature","properties":{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-4,"type":"shoulder","predecessorId":-4}},{"geometry":{"coordinates":[[4.53318592,0.02505939,95.1673687],[4.53318536,0.02505768,95.1666852],[4.53318481,0.02505596,95.16600155],[4.53318425,0.02505425,95.16531774],[4.53318369,0.02505254,95.16463377],[4.53318314,0.02505082,95.16394964],[4.53318258,0.02504911,95.16326535],[4.53318202,0.02504739,95.16258088],[4.53318147,0.02504568,95.16189625],[4.53318091,0.02504397,95.16121144],[4.53318036,0.02504225,95.16052645],[4.5331798,0.02504054,95.15984127],[4.53317924,0.02503882,95.15915592],[4.53317869,0.02503711,95.15847037],[4.53317813,0.02503539,95.15778463],[4.53317758,0.02503368,95.1570987],[4.53317702,0.02503197,95.15641256],[4.53317646,0.02503025,95.15572623],[4.53317591,0.02502854,95.15503969],[4.53317535,0.02502682,95.15435294],[4.53317479,0.02502511,95.15366597],[4.53317424,0.0250234,95.1529788],[4.53317368,0.02502168,95.1522914],[4.53317313,0.02501997,95.15160378],[4.53317257,0.02501826,95.15091594],[4.53317201,0.02501654,95.15022786],[4.53317146,0.02501483,95.14953956],[4.5331709,0.02501311,95.14885102],[4.53317034,0.0250114,95.14816223],[4.53316979,0.02500969,95.14747321],[4.53316923,0.02500797,95.14678394],[4.53316867,0.02500626,95.14609443],[4.53316812,0.02500454,95.14540466],[4.53316756,0.02500283,95.14471463],[4.533167,0.02500112,95.14402435],[4.53316645,0.0249994,95.1433338],[4.53316589,0.02499769,95.14264299],[4.53316533,0.02499597,95.14195191],[4.53316478,0.02499426,95.14126056],[4.53316422,0.02499255,95.14056893],[4.53316366,0.02499083,95.13987703],[4.53316311,0.02498912,95.13918484],[4.53316255,0.02498741,95.13849236],[4.53316199,0.02498569,95.1377996],[4.53316144,0.02498398,95.13710654],[4.53316088,0.02498226,95.13641319],[4.53316032,0.02498055,95.13571954],[4.53315976,0.02497884,95.13502559],[4.53315921,0.02497712,95.13433133],[4.53315865,0.02497541,95.13363677],[4.53315809,0.0249737,95.13294189],[4.53315754,0.02497198,95.1322467],[4.53315698,0.02497027,95.13155119],[4.53315642,0.02496856,95.13085535],[4.53315586,0.02496684,95.13015919],[4.53315531,0.02496513,95.1294627],[4.53315475,0.02496341,95.12876588],[4.53315419,0.0249617,95.12806873],[4.53315364,0.02495999,95.12737123],[4.53315308,0.02495827,95.1266734],[4.53315252,0.02495656,95.12597522],[4.53315196,0.02495485,95.12527669],[4.53315141,0.02495313,95.12457781],[4.53315085,0.02495142,95.12387857],[4.53315029,0.02494971,95.12317897],[4.53314973,0.02494799,95.12247902],[4.53314917,0.02494628,95.12177869],[4.53314862,0.02494457,95.121078],[4.53314806,0.02494285,95.12037694],[4.5331475,0.02494114,95.1196755],[4.53314694,0.02493943,95.11897368],[4.53314639,0.02493771,95.11827149],[4.53314583,0.024936,95.1175689],[4.53314527,0.02493429,95.11686593],[4.53314471,0.02493257,95.11616257],[4.53314415,0.02493086,95.11545881],[4.5331436,0.02492915,95.11475466],[4.53314304,0.02492743,95.11405012],[4.53314248,0.02492572,95.11334522],[4.53314192,0.02492401,95.11263994],[4.53314136,0.02492229,95.11193432],[4.5331408,0.02492058,95.11122834],[4.53314025,0.02491887,95.11052203],[4.53313969,0.02491715,95.10981538],[4.53313913,0.02491544,95.10910842],[4.53313857,0.02491373,95.10840115],[4.53313801,0.02491201,95.10769357],[4.53313745,0.0249103,95.1069857],[4.5331369,0.02490859,95.10627753],[4.53313634,0.02490687,95.10556907],[4.53313578,0.02490516,95.1048603],[4.53313522,0.02490345,95.10415122],[4.53313466,0.02490173,95.10344183],[4.5331341,0.02490002,95.10273212],[4.53313354,0.02489831,95.1020221],[4.53313299,0.02489659,95.10131175],[4.53313243,0.02489488,95.10060108],[4.53313187,0.02489317,95.09989008],[4.53313131,0.02489146,95.09917874],[4.53313075,0.02488974,95.09846707],[4.53313019,0.02488803,95.09775506],[4.53312964,0.02488632,95.0970427],[4.53312908,0.0248846,95.09633],[4.53312852,0.02488289,95.09561694],[4.53312796,0.02488118,95.09490353],[4.5331274,0.02487946,95.09418976],[4.53312684,0.02487775,95.09347563],[4.53312628,0.02487604,95.09276113],[4.53312573,0.02487432,95.09204627],[4.53312517,0.02487261,95.09133102],[4.53312461,0.0248709,95.09061541],[4.53312405,0.02486918,95.08989941],[4.53312349,0.02486747,95.08918302],[4.53312293,0.02486576,95.08846625],[4.53312237,0.02486405,95.08774909],[4.53312182,0.02486233,95.08703153],[4.53312126,0.02486062,95.08631357],[4.5331207,0.02485891,95.08559522],[4.53312014,0.02485719,95.08487645],[4.53311958,0.02485548,95.08415727],[4.53311902,0.02485377,95.08343768],[4.53311846,0.02485205,95.08271768],[4.5331179,0.02485034,95.08199725],[4.53311735,0.02484863,95.0812764],[4.53311679,0.02484691,95.08055512],[4.53311623,0.0248452,95.07983341],[4.53311567,0.02484349,95.07911126],[4.53311511,0.02484178,95.07838868],[4.53311455,0.02484006,95.07766565],[4.53311399,0.02483835,95.07694219],[4.53311343,0.02483664,95.07621831],[4.53311287,0.02483492,95.07549399],[4.53311231,0.02483321,95.07476926],[4.53311176,0.0248315,95.07404411],[4.5331112,0.02482979,95.07331856],[4.53311064,0.02482807,95.0725926],[4.53311008,0.02482636,95.07186624],[4.53310952,0.02482465,95.07113948],[4.53310896,0.02482293,95.07041233],[4.5331084,0.02482122,95.0696848],[4.53310784,0.02481951,95.06895689],[4.53310728,0.02481779,95.0682286],[4.53310672,0.02481608,95.06749994],[4.53310617,0.02481437,95.06677092],[4.53310561,0.02481266,95.06604153],[4.53310505,0.02481094,95.06531179],[4.53310449,0.02480923,95.0645817],[4.53310393,0.02480752,95.06385126],[4.53310337,0.0248058,95.06312048],[4.53310281,0.02480409,95.06238936],[4.53310225,0.02480238,95.06165792],[4.53310169,0.02480067,95.06092614],[4.53310113,0.02479895,95.06019404],[4.53310058,0.02479724,95.05946163],[4.53310002,0.02479553,95.0587289],[4.53309946,0.02479381,95.05799587],[4.5330989,0.0247921,95.05726254],[4.53309834,0.02479039,95.05652891],[4.53309778,0.02478867,95.05579501],[4.53309723,0.02478697,95.05506083],[4.53309667,0.02478525,95.05432639],[4.53309611,0.02478354,95.0535917],[4.53309564,0.02478211,95.05297697]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3}},{"geometry":{"coordinates":[[4.53321455,0.02505002,95.25841969],[4.533214,0.0250483,95.25772391],[4.53321344,0.02504659,95.25702805],[4.53321289,0.02504487,95.2563321],[4.53321234,0.02504316,95.25563606],[4.53321178,0.02504144,95.25493992],[4.53321123,0.02503973,95.25424368],[4.53321067,0.02503801,95.25354734],[4.53321012,0.02503629,95.2528509],[4.53320957,0.02503458,95.25215435],[4.53320901,0.02503286,95.2514577],[4.53320846,0.02503115,95.25076093],[4.5332079,0.02502943,95.25006405],[4.53320735,0.02502772,95.24936705],[4.5332068,0.025026,95.24866994],[4.53320624,0.02502429,95.2479727],[4.53320569,0.02502257,95.24727534],[4.53320514,0.02502086,95.24657785],[4.53320458,0.02501914,95.24588023],[4.53320403,0.02501743,95.24518249],[4.53320347,0.02501571,95.24448461],[4.53320292,0.025014,95.24378659],[4.53320236,0.02501228,95.24308843],[4.53320181,0.02501057,95.24239013],[4.53320126,0.02500885,95.24169169],[4.5332007,0.02500714,95.2409931],[4.53320015,0.02500542,95.24029436],[4.53319959,0.02500371,95.23959547],[4.53319904,0.02500199,95.23889643],[4.53319849,0.02500028,95.23819723],[4.53319793,0.02499856,95.23749787],[4.53319738,0.02499685,95.23679835],[4.53319682,0.02499513,95.23609866],[4.53319627,0.02499342,95.23539881],[4.53319571,0.0249917,95.23469879],[4.53319516,0.02498999,95.2339986],[4.5331946,0.02498827,95.23329823],[4.53319405,0.02498656,95.23259768],[4.5331935,0.02498485,95.23189696],[4.53319294,0.02498313,95.23119605],[4.53319239,0.02498142,95.23049496],[4.53319183,0.0249797,95.22979368],[4.53319128,0.02497799,95.22909222],[4.53319072,0.02497627,95.22839056],[4.53319017,0.02497456,95.2276887],[4.53318961,0.02497284,95.22698665],[4.53318906,0.02497113,95.2262844],[4.5331885,0.02496941,95.22558195],[4.53318795,0.0249677,95.2248793],[4.53318739,0.02496598,95.22417643],[4.53318684,0.02496427,95.22347336],[4.53318628,0.02496255,95.22277007],[4.53318573,0.02496084,95.22206657],[4.53318517,0.02495912,95.22136286],[4.53318462,0.02495741,95.22065892],[4.53318406,0.02495569,95.21995476],[4.53318351,0.02495398,95.21925038],[4.53318295,0.02495226,95.21854577],[4.5331824,0.02495055,95.21784092],[4.53318184,0.02494884,95.21713585],[4.53318129,0.02494712,95.21643054],[4.53318073,0.02494541,95.215725],[4.53318018,0.02494369,95.21501922],[4.53317962,0.02494198,95.21431319],[4.53317907,0.02494026,95.21360692],[4.53317851,0.02493855,95.2129004],[4.53317796,0.02493683,95.21219363],[4.5331774,0.02493512,95.21148661],[4.53317685,0.0249334,95.21077934],[4.53317629,0.02493169,95.2100718],[4.53317573,0.02492998,95.20936401],[4.53317518,0.02492826,95.20865596],[4.53317462,0.02492655,95.20794764],[4.53317407,0.02492483,95.20723905],[4.53317351,0.02492312,95.20653019],[4.53317296,0.0249214,95.20582107],[4.5331724,0.02491969,95.20511167],[4.53317184,0.02491797,95.20440201],[4.53317129,0.02491626,95.20369211],[4.53317073,0.02491455,95.20298197],[4.53317018,0.02491283,95.20227159],[4.53316962,0.02491112,95.201561],[4.53316906,0.0249094,95.2008502],[4.53316851,0.02490769,95.2001392],[4.53316795,0.02490597,95.19942801],[4.5331674,0.02490426,95.19871664],[4.53316684,0.02490255,95.1980051],[4.53316628,0.02490083,95.19729339],[4.53316573,0.02489912,95.19658153],[4.53316517,0.0248974,95.19586949],[4.53316461,0.02489569,95.19515729],[4.53316406,0.02489397,95.19444492],[4.5331635,0.02489226,95.19373237],[4.53316295,0.02489055,95.19301964],[4.53316239,0.02488883,95.19230674],[4.53316183,0.02488712,95.19159365],[4.53316128,0.0248854,95.19088037],[4.53316072,0.02488369,95.19016691],[4.53316016,0.02488197,95.18945325],[4.53315961,0.02488026,95.1887394],[4.53315905,0.02487855,95.18802536],[4.5331585,0.02487683,95.18731111],[4.53315794,0.02487512,95.18659666],[4.53315738,0.0248734,95.185882],[4.53315683,0.02487169,95.18516714],[4.53315627,0.02486997,95.18445206],[4.53315571,0.02486826,95.18373677],[4.53315516,0.02486655,95.18302126],[4.5331546,0.02486483,95.18230554],[4.53315405,0.02486312,95.18158959],[4.53315349,0.0248614,95.18087341],[4.53315293,0.02485969,95.18015701],[4.53315238,0.02485798,95.17944037],[4.53315182,0.02485626,95.1787235],[4.53315126,0.02485455,95.17800639],[4.53315071,0.02485283,95.17728905],[4.53315015,0.02485112,95.17657146],[4.53314959,0.0248494,95.17585363],[4.53314904,0.02484769,95.17513554],[4.53314848,0.02484598,95.17441721],[4.53314792,0.02484426,95.17369862],[4.53314737,0.02484255,95.17297978],[4.53314681,0.02484083,95.17226068],[4.53314626,0.02483912,95.17154131],[4.5331457,0.02483741,95.17082168],[4.53314514,0.02483569,95.17010178],[4.53314459,0.02483398,95.16938161],[4.53314403,0.02483226,95.16866117],[4.53314347,0.02483055,95.16794046],[4.53314292,0.02482884,95.16721947],[4.53314236,0.02482712,95.16649823],[4.5331418,0.02482541,95.16577673],[4.53314124,0.02482369,95.16505498],[4.53314069,0.02482198,95.16433299],[4.53314013,0.02482026,95.16361076],[4.53313957,0.02481855,95.1628883],[4.53313902,0.02481684,95.1621656],[4.53313846,0.02481512,95.16144269],[4.5331379,0.02481341,95.16071956],[4.53313735,0.02481169,95.15999623],[4.53313679,0.02480998,95.15927268],[4.53313623,0.02480827,95.15854894],[4.53313568,0.02480655,95.15782501],[4.53313512,0.02480484,95.15710089],[4.53313456,0.02480312,95.15637659],[4.53313401,0.02480141,95.15565211],[4.53313345,0.0247997,95.15492746],[4.53313289,0.02479798,95.15420265],[4.53313234,0.02479627,95.15347768],[4.53313178,0.02479455,95.15275256],[4.53313122,0.02479284,95.15202729],[4.53313067,0.02479113,95.15130188],[4.53313011,0.02478941,95.15057633],[4.53312955,0.0247877,95.14985066],[4.533129,0.02478598,95.14912486],[4.53312844,0.02478427,95.14839894],[4.53312788,0.02478256,95.14767291],[4.53312733,0.02478084,95.14694678],[4.53312677,0.02477913,95.14622055],[4.53312622,0.02477742,95.14549424],[4.53312566,0.0247757,95.14476785],[4.5331251,0.02477399,95.14404139],[4.53312464,0.02477256,95.14343368]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2}},{"geometry":{"coordinates":[[4.5332457,0.02503982,95.3574793],[4.53324515,0.0250381,95.35675467],[4.53324459,0.02503639,95.35602996],[4.53324403,0.02503467,95.35530518],[4.53324348,0.02503296,95.35458031],[4.53324292,0.02503124,95.35385538],[4.53324236,0.02502953,95.35313037],[4.53324181,0.02502781,95.35240531],[4.53324125,0.0250261,95.35168018],[4.5332407,0.02502438,95.35095499],[4.53324014,0.02502267,95.35022975],[4.53323958,0.02502095,95.34950447],[4.53323903,0.02501924,95.34877913],[4.53323847,0.02501753,95.34805376],[4.53323791,0.02501581,95.34732834],[4.53323736,0.0250141,95.34660289],[4.5332368,0.02501238,95.34587742],[4.53323624,0.02501067,95.34515191],[4.53323569,0.02500895,95.34442638],[4.53323513,0.02500724,95.34370083],[4.53323457,0.02500552,95.34297526],[4.53323402,0.02500381,95.34224969],[4.53323346,0.02500209,95.3415241],[4.5332329,0.02500038,95.34079851],[4.53323235,0.02499867,95.34007292],[4.53323179,0.02499695,95.33934733],[4.53323123,0.02499524,95.33862174],[4.53323068,0.02499352,95.33789617],[4.53323012,0.02499181,95.33717061],[4.53322956,0.02499009,95.33644506],[4.53322901,0.02498838,95.33571954],[4.53322845,0.02498666,95.33499404],[4.53322789,0.02498495,95.33426857],[4.53322734,0.02498323,95.33354313],[4.53322678,0.02498152,95.33281773],[4.53322622,0.02497981,95.33209236],[4.53322567,0.02497809,95.33136704],[4.53322511,0.02497638,95.33064176],[4.53322455,0.02497466,95.32991654],[4.533224,0.02497295,95.32919136],[4.53322344,0.02497123,95.32846625],[4.53322288,0.02496952,95.32774119],[4.53322233,0.0249678,95.3270162],[4.53322177,0.02496609,95.32629128],[4.53322121,0.02496437,95.32556643],[4.53322066,0.02496266,95.32484165],[4.5332201,0.02496095,95.32411696],[4.53321955,0.02495923,95.32339234],[4.53321899,0.02495752,95.32266782],[4.53321843,0.0249558,95.32194338],[4.53321788,0.02495409,95.32121903],[4.53321732,0.02495237,95.32049479],[4.53321676,0.02495066,95.31977064],[4.53321621,0.02494894,95.31904659],[4.53321565,0.02494723,95.31832266],[4.53321509,0.02494551,95.31759884],[4.53321454,0.0249438,95.31687513],[4.53321398,0.02494208,95.31615154],[4.53321343,0.02494037,95.31542807],[4.53321287,0.02493866,95.31470472],[4.53321231,0.02493694,95.31398151],[4.53321176,0.02493523,95.31325843],[4.5332112,0.02493351,95.31253549],[4.53321065,0.0249318,95.31181268],[4.53321009,0.02493008,95.31109002],[4.53320953,0.02492837,95.31036751],[4.53320898,0.02492665,95.30964515],[4.53320842,0.02492494,95.30892294],[4.53320787,0.02492322,95.30820089],[4.53320731,0.02492151,95.307479],[4.53320676,0.02491979,95.30675728],[4.5332062,0.02491808,95.30603572],[4.53320564,0.02491636,95.30531434],[4.53320509,0.02491465,95.30459314],[4.53320453,0.02491293,95.30387211],[4.53320398,0.02491122,95.30315127],[4.53320342,0.0249095,95.30243061],[4.53320287,0.02490779,95.30171014],[4.53320231,0.02490607,95.30098987],[4.53320176,0.02490436,95.30026979],[4.5332012,0.02490264,95.29954992],[4.53320065,0.02490093,95.29883025],[4.53320009,0.02489921,95.29811079],[4.53319954,0.0248975,95.29739153],[4.53319898,0.02489578,95.2966725],[4.53319843,0.02489407,95.29595368],[4.53319787,0.02489235,95.29523509],[4.53319732,0.02489064,95.29451672],[4.53319677,0.02488892,95.29379856],[4.53319621,0.02488721,95.29308062],[4.53319566,0.02488549,95.29236287],[4.5331951,0.02488378,95.29164531],[4.53319455,0.02488206,95.29092794],[4.53319399,0.02488035,95.29021073],[4.53319344,0.02487863,95.28949369],[4.53319289,0.02487692,95.2887768],[4.53319233,0.0248752,95.28806006],[4.53319178,0.02487348,95.28734345],[4.53319122,0.02487177,95.28662696],[4.53319067,0.02487005,95.2859106],[4.53319012,0.02486834,95.28519434],[4.53318956,0.02486662,95.28447819],[4.53318901,0.02486491,95.28376212],[4.53318845,0.02486319,95.28304613],[4.5331879,0.02486148,95.28233022],[4.53318735,0.02485976,95.28161437],[4.53318679,0.02485805,95.28089858],[4.53318624,0.02485633,95.28018283],[4.53318569,0.02485461,95.27946712],[4.53318513,0.0248529,95.27875144],[4.53318458,0.02485118,95.27803577],[4.53318403,0.02484947,95.27732012],[4.53318347,0.02484775,95.27660446],[4.53318292,0.02484604,95.2758888],[4.53318237,0.02484432,95.27517312],[4.53318181,0.02484261,95.27445742],[4.53318126,0.02484089,95.27374168],[4.5331807,0.02483917,95.2730259],[4.53318015,0.02483746,95.27231006],[4.5331796,0.02483574,95.27159417],[4.53317904,0.02483403,95.2708782],[4.53317849,0.02483231,95.27016215],[4.53317794,0.0248306,95.26944602],[4.53317738,0.02482888,95.26872979],[4.53317683,0.02482717,95.26801345],[4.53317627,0.02482545,95.267297],[4.53317572,0.02482374,95.26658042],[4.53317517,0.02482202,95.26586371],[4.53317461,0.0248203,95.26514686],[4.53317406,0.02481859,95.26442988],[4.53317351,0.02481687,95.26371275],[4.53317295,0.02481516,95.26299549],[4.5331724,0.02481344,95.26227809],[4.53317184,0.02481173,95.26156055],[4.53317129,0.02481001,95.26084287],[4.53317074,0.0248083,95.26012504],[4.53317018,0.02480658,95.25940708],[4.53316963,0.02480487,95.25868898],[4.53316907,0.02480315,95.25797073],[4.53316852,0.02480144,95.25725234],[4.53316796,0.02479972,95.25653381],[4.53316741,0.02479801,95.25581514],[4.53316686,0.02479629,95.25509632],[4.5331663,0.02479458,95.25437736],[4.53316575,0.02479286,95.25365826],[4.53316519,0.02479114,95.25293902],[4.53316464,0.02478943,95.25221963],[4.53316408,0.02478771,95.25150009],[4.53316353,0.024786,95.25078041],[4.53316297,0.02478428,95.25006058],[4.53316242,0.02478257,95.24934061],[4.53316186,0.02478085,95.2486205],[4.53316131,0.02477914,95.24790023],[4.53316075,0.02477742,95.24717982],[4.5331602,0.02477571,95.24645926],[4.53315964,0.02477399,95.24573856],[4.53315909,0.02477228,95.2450177],[4.53315853,0.02477056,95.2442967],[4.53315798,0.02476885,95.24357556],[4.53315743,0.02476714,95.24285427],[4.53315687,0.02476542,95.24213283],[4.53315632,0.02476371,95.24141125],[4.53315585,0.02476227,95.24080755]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}},{"geometry":{"coordinates":[[4.53318952,0.02475118,95.34583137],[4.53318999,0.02475262,95.34644801],[4.53319055,0.02475433,95.34718539],[4.53319111,0.02475604,95.34792296],[4.53319167,0.02475775,95.34866071],[4.53319223,0.02475947,95.34939864],[4.53319279,0.02476118,95.35013675],[4.53319335,0.02476289,95.35087502],[4.53319391,0.02476461,95.35161344],[4.53319447,0.02476632,95.35235202],[4.53319503,0.02476804,95.35309074],[4.53319559,0.02476975,95.3538296],[4.53319615,0.02477146,95.35456859],[4.53319671,0.02477318,95.35530769],[4.53319727,0.02477489,95.35604691],[4.53319783,0.0247766,95.35678623],[4.53319839,0.02477832,95.35752564],[4.53319895,0.02478003,95.35826515],[4.53319951,0.02478174,95.35900473],[4.53320007,0.02478346,95.35974439],[4.53320064,0.02478517,95.36048411],[4.5332012,0.02478689,95.36122388],[4.53320176,0.0247886,95.36196371],[4.53320232,0.02479031,95.36270357],[4.53320288,0.02479203,95.36344347],[4.53320344,0.02479374,95.3641834],[4.533204,0.02479545,95.36492333],[4.53320456,0.02479717,95.36566328],[4.53320512,0.02479888,95.36640323],[4.53320568,0.0248006,95.36714318],[4.53320624,0.02480231,95.3678831],[4.5332068,0.02480402,95.36862301],[4.53320736,0.02480574,95.36936288],[4.53320791,0.02480745,95.37010272],[4.53320847,0.02480917,95.37084251],[4.53320903,0.02481088,95.37158224],[4.53320959,0.02481259,95.37232191],[4.53321015,0.02481431,95.37306152],[4.53321071,0.02481602,95.37380106],[4.53321127,0.02481774,95.37454054],[4.53321183,0.02481945,95.37527995],[4.53321239,0.02482116,95.37601931],[4.53321295,0.02482288,95.37675859],[4.53321351,0.02482459,95.37749782],[4.53321407,0.02482631,95.37823698],[4.53321462,0.02482802,95.37897609],[4.53321518,0.02482974,95.37971513],[4.53321574,0.02483145,95.38045412],[4.5332163,0.02483316,95.38119304],[4.53321686,0.02483488,95.38193191],[4.53321742,0.02483659,95.38267071],[4.53321797,0.02483831,95.38340947],[4.53321853,0.02484002,95.38414816],[4.53321909,0.02484174,95.3848868],[4.53321965,0.02484345,95.38562538],[4.53322021,0.02484517,95.38636391],[4.53322077,0.02484688,95.38710238],[4.53322132,0.02484859,95.3878408],[4.53322188,0.02485031,95.38857916],[4.53322244,0.02485202,95.38931747],[4.533223,0.02485374,95.39005573],[4.53322355,0.02485545,95.39079394],[4.53322411,0.02485717,95.39153209],[4.53322467,0.02485888,95.3922702],[4.53322523,0.0248606,95.39300826],[4.53322578,0.02486231,95.39374626],[4.53322634,0.02486403,95.39448422],[4.5332269,0.02486574,95.39522212],[4.53322745,0.02486746,95.39595998],[4.53322801,0.02486917,95.3966978],[4.53322857,0.02487089,95.39743556],[4.53322913,0.0248726,95.39817328],[4.53322968,0.02487432,95.39891095],[4.53323024,0.02487603,95.39964858],[4.5332308,0.02487774,95.40038617],[4.53323135,0.02487946,95.4011237],[4.53323191,0.02488117,95.4018612],[4.53323246,0.02488289,95.40259865],[4.53323302,0.0248846,95.40333606],[4.53323358,0.02488632,95.40407343],[4.53323413,0.02488803,95.40481075],[4.53323469,0.02488975,95.40554804],[4.53323525,0.02489146,95.40628528],[4.5332358,0.02489318,95.40702249],[4.53323636,0.0248949,95.40775965],[4.53323691,0.02489661,95.40849678],[4.53323747,0.02489833,95.40923386],[4.53323803,0.02490004,95.40997091],[4.53323858,0.02490176,95.41070792],[4.53323914,0.02490347,95.4114449],[4.53323969,0.02490519,95.41218184],[4.53324025,0.0249069,95.41291874],[4.5332408,0.02490862,95.41365561],[4.53324136,0.02491033,95.41439244],[4.53324192,0.02491205,95.41512924],[4.53324247,0.02491376,95.41586601],[4.53324303,0.02491548,95.41660278],[4.53324358,0.02491719,95.41733955],[4.53324414,0.02491891,95.41807635],[4.53324469,0.02492062,95.41881318],[4.53324525,0.02492234,95.41955008],[4.5332458,0.02492405,95.42028704],[4.53324636,0.02492577,95.4210241],[4.53324691,0.02492749,95.42176126],[4.53324747,0.0249292,95.42249855],[4.53324802,0.02493092,95.42323598],[4.53324858,0.02493263,95.42397356],[4.53324913,0.02493435,95.42471132],[4.53324969,0.02493606,95.42544926],[4.53325024,0.02493778,95.42618742],[4.5332508,0.02493949,95.42692579],[4.53325135,0.02494121,95.42766441],[4.53325191,0.02494292,95.42840328],[4.53325247,0.02494464,95.42914242],[4.53325302,0.02494635,95.42988186],[4.53325358,0.02494807,95.4306216],[4.53325413,0.02494979,95.43136166],[4.53325469,0.0249515,95.43210207],[4.53325524,0.02495322,95.43284283],[4.5332558,0.02495493,95.43358397],[4.53325635,0.02495665,95.43432549],[4.53325691,0.02495836,95.43506743],[4.53325747,0.02496008,95.43580978],[4.53325802,0.02496179,95.43655258],[4.53325858,0.02496351,95.43729584],[4.53325913,0.02496522,95.43803957],[4.53325969,0.02496694,95.43878379],[4.53326025,0.02496865,95.43952852],[4.5332608,0.02497037,95.44027377],[4.53326136,0.02497208,95.44101957],[4.53326192,0.0249738,95.44176593],[4.53326248,0.02497551,95.44251286],[4.53326303,0.02497723,95.44326039],[4.53326359,0.02497894,95.44400853],[4.53326415,0.02498065,95.44475729],[4.5332647,0.02498237,95.4455067],[4.53326526,0.02498408,95.44625677],[4.53326582,0.0249858,95.44700752],[4.53326638,0.02498751,95.44775896],[4.53326694,0.02498923,95.44851112],[4.5332675,0.02499094,95.449264],[4.53326805,0.02499266,95.45001763],[4.53326861,0.02499437,95.45077203],[4.53326917,0.02499608,95.45152721],[4.53326973,0.0249978,95.45228318],[4.53327029,0.02499951,95.45303997],[4.53327085,0.02500123,95.45379759],[4.53327141,0.02500294,95.45455607],[4.53327197,0.02500465,95.45531541],[4.53327253,0.02500637,95.45607563],[4.53327309,0.02500808,95.45683676],[4.53327365,0.02500979,95.4575988],[4.53327422,0.02501151,95.45836178],[4.53327478,0.02501322,95.45912572],[4.53327534,0.02501493,95.45989062],[4.5332759,0.02501665,95.46065652],[4.53327646,0.02501836,95.46142342],[4.53327703,0.02502007,95.46219134],[4.53327759,0.02502179,95.4629603],[4.53327815,0.0250235,95.46373032],[4.53327872,0.02502521,95.46450142],[4.53327928,0.02502692,95.46527361],[4.53327984,0.02502864,95.46604691]],"type":"LineString"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":1,"type":"shoulder","predecessorId":1}},{"geometry":{"coordinates":[[4.53320244,0.02474693,95.34583137],[4.53320291,0.02474836,95.34644801],[4.53320347,0.02475008,95.34718539],[4.53320402,0.02475179,95.34792296],[4.53320458,0.0247535,95.34866071],[4.53320514,0.02475521,95.34939864],[4.5332057,0.02475693,95.35013675],[4.53320626,0.02475864,95.35087502],[4.53320681,0.02476036,95.35161344],[4.53320737,0.02476207,95.35235202],[4.53320793,0.02476379,95.35309074],[4.53320849,0.0247655,95.3538296],[4.53320905,0.02476722,95.35456859],[4.53320961,0.02476893,95.35530769],[4.53321017,0.02477065,95.35604691],[4.53321072,0.02477236,95.35678623],[4.53321128,0.02477407,95.35752564],[4.53321184,0.02477579,95.35826515],[4.5332124,0.0247775,95.35900473],[4.53321296,0.02477922,95.35974439],[4.53321352,0.02478093,95.36048411],[4.53321408,0.02478265,95.36122388],[4.53321464,0.02478436,95.36196371],[4.5332152,0.02478607,95.36270357],[4.53321575,0.02478779,95.36344347],[4.53321631,0.0247895,95.3641834],[4.53321687,0.02479122,95.36492333],[4.53321743,0.02479293,95.36566328],[4.53321799,0.02479465,95.36640323],[4.53321855,0.02479636,95.36714318],[4.53321911,0.02479808,95.3678831],[4.53321967,0.02479979,95.36862301],[4.53322022,0.0248015,95.36936288],[4.53322078,0.02480322,95.37010272],[4.53322134,0.02480493,95.37084251],[4.5332219,0.02480665,95.37158224],[4.53322246,0.02480836,95.37232191],[4.53322302,0.02481008,95.37306152],[4.53322358,0.02481179,95.37380106],[4.53322413,0.02481351,95.37454054],[4.53322469,0.02481522,95.37527995],[4.53322525,0.02481693,95.37601931],[4.53322581,0.02481865,95.37675859],[4.53322637,0.02482036,95.37749782],[4.53322693,0.02482208,95.37823698],[4.53322748,0.02482379,95.37897609],[4.53322804,0.02482551,95.37971513],[4.5332286,0.02482722,95.38045412],[4.53322916,0.02482894,95.38119304],[4.53322972,0.02483065,95.38193191],[4.53323027,0.02483237,95.38267071],[4.53323083,0.02483408,95.38340947],[4.53323139,0.0248358,95.38414816],[4.53323195,0.02483751,95.3848868],[4.5332325,0.02483923,95.38562538],[4.53323306,0.02484094,95.38636391],[4.53323362,0.02484265,95.38710238],[4.53323418,0.02484437,95.3878408],[4.53323473,0.02484608,95.38857916],[4.53323529,0.0248478,95.38931747],[4.53323585,0.02484951,95.39005573],[4.53323641,0.02485123,95.39079394],[4.53323696,0.02485294,95.39153209],[4.53323752,0.02485466,95.3922702],[4.53323808,0.02485637,95.39300826],[4.53323863,0.02485809,95.39374626],[4.53323919,0.0248598,95.39448422],[4.53323975,0.02486152,95.39522212],[4.5332403,0.02486323,95.39595998],[4.53324086,0.02486495,95.3966978],[4.53324142,0.02486666,95.39743556],[4.53324197,0.02486838,95.39817328],[4.53324253,0.02487009,95.39891095],[4.53324309,0.02487181,95.39964858],[4.53324364,0.02487353,95.40038617],[4.5332442,0.02487524,95.4011237],[4.53324475,0.02487696,95.4018612],[4.53324531,0.02487867,95.40259865],[4.53324587,0.02488039,95.40333606],[4.53324642,0.0248821,95.40407343],[4.53324698,0.02488382,95.40481075],[4.53324753,0.02488553,95.40554804],[4.53324809,0.02488725,95.40628528],[4.53324865,0.02488896,95.40702249],[4.5332492,0.02489068,95.40775965],[4.53324976,0.02489239,95.40849678],[4.53325031,0.02489411,95.40923386],[4.53325087,0.02489582,95.40997091],[4.53325142,0.02489754,95.41070792],[4.53325198,0.02489926,95.4114449],[4.53325253,0.02490097,95.41218184],[4.53325309,0.02490269,95.41291874],[4.53325364,0.0249044,95.41365561],[4.5332542,0.02490612,95.41439244],[4.53325475,0.02490783,95.41512924],[4.53325531,0.02490955,95.41586601],[4.53325586,0.02491127,95.41660278],[4.53325641,0.02491298,95.41733955],[4.53325697,0.0249147,95.41807635],[4.53325752,0.02491641,95.41881318],[4.53325808,0.02491813,95.41955008],[4.53325863,0.02491985,95.42028704],[4.53325919,0.02492156,95.4210241],[4.53325974,0.02492328,95.42176126],[4.53326029,0.02492499,95.42249855],[4.53326085,0.02492671,95.42323598],[4.5332614,0.02492842,95.42397356],[4.53326196,0.02493014,95.42471132],[4.53326251,0.02493186,95.42544926],[4.53326306,0.02493357,95.42618742],[4.53326362,0.02493529,95.42692579],[4.53326417,0.024937,95.42766441],[4.53326472,0.02493872,95.42840328],[4.53326528,0.02494044,95.42914242],[4.53326583,0.02494215,95.42988186],[4.53326639,0.02494387,95.4306216],[4.53326694,0.02494558,95.43136166],[4.53326749,0.0249473,95.43210207],[4.53326805,0.02494902,95.43284283],[4.5332686,0.02495073,95.43358397],[4.53326915,0.02495245,95.43432549],[4.53326971,0.02495416,95.43506743],[4.53327026,0.02495588,95.43580978],[4.53327082,0.0249576,95.43655258],[4.53327137,0.02495931,95.43729584],[4.53327192,0.02496103,95.43803957],[4.53327248,0.02496274,95.43878379],[4.53327303,0.02496446,95.43952852],[4.53327359,0.02496618,95.44027377],[4.53327414,0.02496789,95.44101957],[4.53327469,0.02496961,95.44176593],[4.53327525,0.02497132,95.44251286],[4.5332758,0.02497304,95.44326039],[4.53327636,0.02497476,95.44400853],[4.53327691,0.02497647,95.44475729],[4.53327747,0.02497819,95.4455067],[4.53327802,0.0249799,95.44625677],[4.53327858,0.02498162,95.44700752],[4.53327913,0.02498333,95.44775896],[4.53327969,0.02498505,95.44851112],[4.53328024,0.02498676,95.449264],[4.5332808,0.02498848,95.45001763],[4.53328135,0.0249902,95.45077203],[4.53328191,0.02499191,95.45152721],[4.53328246,0.02499363,95.45228318],[4.53328302,0.02499534,95.45303997],[4.53328357,0.02499706,95.45379759],[4.53328413,0.02499877,95.45455607],[4.53328468,0.02500049,95.45531541],[4.53328524,0.0250022,95.45607563],[4.53328579,0.02500392,95.45683676],[4.53328635,0.02500563,95.4575988],[4.53328691,0.02500735,95.45836178],[4.53328746,0.02500907,95.45912572],[4.53328802,0.02501078,95.45989062],[4.53328857,0.0250125,95.46065652],[4.53328913,0.02501421,95.46142342],[4.53328968,0.02501593,95.46219134],[4.53329024,0.02501764,95.4629603],[4.53329079,0.02501936,95.46373032],[4.53329135,0.02502107,95.46450142],[4.5332919,0.02502279,95.46527361],[4.53329246,0.02502451,95.46604691]],"type":"LineString"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":2,"type":"none","predecessorId":2}},{"geometry":{"coordinates":[[4.5330512,0.02479675,95.17147248],[4.53305079,0.02479546,95.1617836]],"type":"LineString"},"type":"feature","properties":{"successorId":-7,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-7,"type":"none","predecessorId":0}},{"geometry":{"coordinates":[[4.53307307,0.02478954,95.17147248],[4.5330722,0.02478841,95.1617836]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-6,"type":"border","predecessorId":0}},{"geometry":{"coordinates":[[4.53308554,0.02478543,95.02147248],[4.53308219,0.02478511,95.0117836]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-5,"type":"border","predecessorId":-5}},{"geometry":{"coordinates":[[4.5330938,0.02478271,95.04724111],[4.53309339,0.02478143,95.04669868]],"type":"LineString"},"type":"feature","properties":{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-4,"type":"shoulder","predecessorId":-4}},{"geometry":{"coordinates":[[4.53309564,0.02478211,95.05297697],[4.53309522,0.02478082,95.05242995]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3}},{"geometry":{"coordinates":[[4.53312464,0.02477256,95.14343368],[4.53312422,0.02477127,95.14288837]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2}},{"geometry":{"coordinates":[[4.53315585,0.02476227,95.24080755],[4.53315543,0.02476099,95.24026581]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}},{"geometry":{"coordinates":[[4.5331891,0.0247499,95.34527823],[4.53318952,0.02475118,95.34583137]],"type":"LineString"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":1,"type":"shoulder","predecessorId":1}},{"geometry":{"coordinates":[[4.53320202,0.02474564,95.34527823],[4.53320244,0.02474693,95.34583137]],"type":"LineString"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":2,"type":"none","predecessorId":2}},{"geometry":{"coordinates":[[4.53305079,0.02479546,95.1349302],[4.53305023,0.02479375,95.13229914],[4.53304968,0.02479203,95.12966738],[4.53304936,0.02479106,95.12816779]],"type":"LineString"},"type":"feature","properties":{"successorId":-7,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-7,"type":"none","predecessorId":-7}},{"geometry":{"coordinates":[[4.5330722,0.02478841,95.1349302],[4.53307103,0.02478689,95.13229914],[4.53306986,0.02478538,95.12966738],[4.5330692,0.02478452,95.12816779]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-6,"type":"border","predecessorId":0}},{"geometry":{"coordinates":[[4.53307359,0.02478795,94.9849302],[4.53307242,0.02478644,94.98229914],[4.53307126,0.02478492,94.97966738],[4.53307059,0.02478406,94.97816779]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-5,"type":"border","predecessorId":0}},{"geometry":{"coordinates":[[4.53309339,0.02478143,95.04669868],[4.53309283,0.02477971,95.04597569],[4.53309228,0.024778,95.04525217],[4.53309196,0.02477702,95.04483976]],"type":"LineString"},"type":"feature","properties":{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-4,"type":"shoulder","predecessorId":-4}},{"geometry":{"coordinates":[[4.53309522,0.02478082,95.05242995],[4.53309467,0.02477911,95.05170106],[4.53309411,0.02477739,95.05097167],[4.53309379,0.02477642,95.05055592]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3}},{"geometry":{"coordinates":[[4.53312422,0.02477127,95.14288837],[4.53312366,0.02476955,95.14216171],[4.53312311,0.02476784,95.14143473],[4.53312279,0.02476686,95.14102044]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2}},{"geometry":{"coordinates":[[4.53315543,0.02476099,95.24026581],[4.53315488,0.02475927,95.2395438],[4.53315432,0.02475756,95.23882166],[4.53315401,0.02475658,95.23841021]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}},{"geometry":{"coordinates":[[4.53318766,0.02474549,95.34338515],[4.53318798,0.02474647,95.34380479],[4.53318854,0.02474818,95.34454147],[4.5331891,0.0247499,95.34527823]],"type":"LineString"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":1,"type":"shoulder","predecessorId":1}},{"geometry":{"coordinates":[[4.53320059,0.02474123,95.34338515],[4.53320091,0.02474221,95.34380479],[4.53320146,0.02474393,95.34454147],[4.53320202,0.02474564,95.34527823]],"type":"LineString"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":2,"type":"none","predecessorId":2}},{"geometry":{"coordinates":[[4.53304936,0.02479106,95.16062152],[4.53304895,0.0247898,95.16899819]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-7,"type":"none","predecessorId":-7}},{"geometry":{"coordinates":[[4.5330692,0.02478452,95.16062152],[4.53306834,0.02478341,95.16899819]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-6,"type":"border","predecessorId":0}},{"geometry":{"coordinates":[[4.53308099,0.02478063,95.01062152],[4.53308344,0.02477843,95.01899819]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-5,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-5,"type":"border","predecessorId":0}},{"geometry":{"coordinates":[[4.53309196,0.02477702,95.04483976],[4.53309155,0.02477576,95.04430746]],"type":"LineString"},"type":"feature","properties":{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-4,"type":"shoulder","predecessorId":-4}},{"geometry":{"coordinates":[[4.53309379,0.02477642,95.05055592],[4.53309339,0.02477516,95.05001946]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3}},{"geometry":{"coordinates":[[4.53312279,0.02476686,95.14102044],[4.53312238,0.0247656,95.14048575]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2}},{"geometry":{"coordinates":[[4.53315401,0.02475658,95.23841021],[4.5331536,0.02475532,95.23787914]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}},{"geometry":{"coordinates":[[4.53318724,0.02474423,95.3428438],[4.53318766,0.02474549,95.34338515]],"type":"LineString"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":1,"type":"shoulder","predecessorId":1}},{"geometry":{"coordinates":[[4.53320018,0.02473997,95.3428438],[4.53320059,0.02474123,95.34338515]],"type":"LineString"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":2,"type":"none","predecessorId":2}},{"geometry":{"coordinates":[[4.53304895,0.0247898,95.16899819],[4.53304847,0.02478806,95.17958311],[4.53304784,0.02478637,95.18382727],[4.53304729,0.02478465,95.18309621],[4.53304673,0.02478294,95.18236458],[4.53304618,0.02478123,95.18163238],[4.53304562,0.02477951,95.18089962],[4.53304507,0.0247778,95.1801663],[4.53304451,0.02477609,95.17943243],[4.53304395,0.02477437,95.17869801],[4.5330434,0.02477266,95.17796306],[4.53304284,0.02477095,95.17722757],[4.53304228,0.02476923,95.17649156],[4.53304173,0.02476752,95.17575502],[4.53304117,0.02476581,95.17501796],[4.53304061,0.0247641,95.17428039],[4.53304005,0.02476238,95.17354232],[4.53303949,0.02476067,95.17280375],[4.53303894,0.02475896,95.17206468],[4.53303838,0.02475725,95.17132512],[4.53303782,0.02475553,95.17058508],[4.53303726,0.02475382,95.16984457],[4.5330367,0.02475211,95.16910358],[4.53303614,0.0247504,95.16836212],[4.53303558,0.02474868,95.1676202],[4.53303502,0.02474697,95.16687783],[4.53303446,0.02474526,95.16613501],[4.5330339,0.02474355,95.16539174],[4.53303334,0.02474184,95.16464804],[4.53303278,0.02474012,95.1639039],[4.53303222,0.02473841,95.16315933],[4.53303166,0.0247367,95.16241435],[4.5330311,0.02473499,95.16166894],[4.53303054,0.02473328,95.16092313],[4.53302998,0.02473156,95.16017691],[4.53302942,0.02472985,95.15943029],[4.53302886,0.02472814,95.15868328],[4.5330283,0.02472643,95.15793588],[4.53302773,0.02472472,95.1571881],[4.53302717,0.02472301,95.15643994],[4.53302661,0.02472129,95.15569141],[4.53302605,0.02471958,95.15494252],[4.53302549,0.02471787,95.15419326],[4.53302493,0.02471616,95.15344365],[4.53302437,0.02471445,95.15269369],[4.5330238,0.02471274,95.15194339],[4.53302324,0.02471103,95.15119275],[4.53302268,0.02470931,95.15044178],[4.53302212,0.0247076,95.14969048],[4.53302156,0.02470589,95.14893886],[4.533021,0.02470418,95.1481869],[4.53302043,0.02470247,95.14743461],[4.53301987,0.02470076,95.14668199],[4.53301931,0.02469904,95.14592902],[4.53301875,0.02469733,95.14517572],[4.53301819,0.02469562,95.14442207],[4.53301763,0.02469391,95.14366807],[4.53301706,0.0246922,95.14291372],[4.5330165,0.02469049,95.14215902],[4.53301594,0.02468878,95.14140396],[4.53301538,0.02468706,95.14064855],[4.53301482,0.02468535,95.13989277],[4.53301426,0.02468364,95.13913663],[4.53301369,0.02468193,95.13838013],[4.53301313,0.02468022,95.13762328],[4.53301257,0.02467851,95.13686607],[4.53301201,0.02467679,95.13610847],[4.53301145,0.02467508,95.1353505],[4.53301089,0.02467337,95.13459214],[4.53301033,0.02467166,95.1338334],[4.53300976,0.02466995,95.1330743],[4.5330092,0.02466824,95.13231482],[4.53300864,0.02466652,95.13155498],[4.53300808,0.02466481,95.13079479],[4.53300752,0.0246631,95.13003423],[4.53300696,0.02466139,95.12927332],[4.5330064,0.02465968,95.12851206],[4.53300584,0.02465796,95.12775046],[4.53300528,0.02465625,95.12698852],[4.53300472,0.02465454,95.12622623],[4.53300416,0.02465283,95.12546362],[4.53300359,0.02465112,95.12470067],[4.53300303,0.0246494,95.1239374],[4.53300247,0.02464769,95.1231738],[4.53300191,0.02464598,95.12240989],[4.53300135,0.02464427,95.12164566],[4.53300079,0.02464256,95.12088112],[4.53300023,0.02464084,95.12011628],[4.53299967,0.02463913,95.11935112],[4.53299911,0.02463742,95.11858567],[4.53299855,0.02463571,95.11781993],[4.53299799,0.024634,95.11705389],[4.53299743,0.02463228,95.11628757],[4.53299687,0.02463057,95.11552095],[4.53299631,0.02462886,95.11475406],[4.53299575,0.02462715,95.1139869],[4.53299519,0.02462543,95.11321945],[4.53299463,0.02462372,95.11245174],[4.53299408,0.02462201,95.11168377],[4.53299352,0.0246203,95.11091553],[4.53299296,0.02461858,95.11014704],[4.5329924,0.02461687,95.10937831],[4.53299184,0.02461516,95.10860937],[4.53299128,0.02461345,95.10784022],[4.53299072,0.02461173,95.1070709],[4.53299016,0.02461002,95.10630142],[4.5329896,0.02460831,95.10553179],[4.53298904,0.0246066,95.10476205],[4.53298848,0.02460488,95.10399221],[4.53298793,0.02460317,95.10322229],[4.53298737,0.02460146,95.10245231],[4.53298681,0.02459975,95.10168228],[4.53298625,0.02459803,95.10091224],[4.53298569,0.02459632,95.10014219],[4.53298513,0.02459461,95.09937216],[4.53298458,0.0245929,95.09860217],[4.53298402,0.02459118,95.09783221],[4.53298346,0.02458947,95.09706229],[4.5329829,0.02458776,95.0962924],[4.53298234,0.02458604,95.09552255],[4.53298179,0.02458433,95.09475272],[4.53298123,0.02458262,95.09398293],[4.53298067,0.0245809,95.09321316],[4.53298011,0.02457919,95.09244342],[4.53297956,0.02457748,95.09167371],[4.532979,0.02457577,95.09090403],[4.53297844,0.02457405,95.09013436],[4.53297788,0.02457234,95.08936472],[4.53297733,0.02457063,95.0885951],[4.53297677,0.02456891,95.08782551],[4.53297621,0.0245672,95.08705593],[4.53297566,0.02456549,95.08628636],[4.5329751,0.02456377,95.08551682],[4.53297454,0.02456206,95.08474729],[4.53297399,0.02456035,95.08397777],[4.53297343,0.02455863,95.08320827],[4.53297287,0.02455692,95.08243877],[4.53297231,0.02455521,95.08166929],[4.53297176,0.02455349,95.08089981],[4.5329712,0.02455178,95.08013034],[4.53297064,0.02455007,95.07936088],[4.53297009,0.02454835,95.07859142],[4.53296953,0.02454664,95.07782197],[4.53296897,0.02454493,95.07705251],[4.53296842,0.02454321,95.07628306],[4.53296786,0.0245415,95.07551361],[4.5329673,0.02453979,95.07474415],[4.53296675,0.02453807,95.0739747],[4.53296619,0.02453636,95.07320523],[4.53296563,0.02453465,95.07243576],[4.53296508,0.02453293,95.07166629],[4.53296452,0.02453122,95.0708968],[4.53296396,0.02452951,95.07012731],[4.5329634,0.02452779,95.0693578],[4.53296285,0.02452608,95.06858829],[4.53296229,0.02452437,95.06781882],[4.53296173,0.02452265,95.06704944],[4.53296118,0.02452094,95.06628018],[4.53296062,0.02451923,95.06551104],[4.53296006,0.02451751,95.06474201],[4.5329595,0.0245158,95.06397309],[4.53295895,0.02451409,95.06320428],[4.53295839,0.02451237,95.06243557],[4.53295783,0.02451066,95.06166697],[4.53295728,0.02450895,95.06089847],[4.53295672,0.02450723,95.06013005],[4.53295616,0.02450552,95.05936172],[4.5329556,0.02450381,95.05859348],[4.53295505,0.02450209,95.0578253],[4.53295449,0.02450038,95.0570572],[4.53295393,0.02449867,95.05628915],[4.53295337,0.02449696,95.05552117],[4.53295282,0.02449524,95.05475323],[4.53295226,0.02449353,95.05398535],[4.5329517,0.02449182,95.0532175],[4.53295114,0.0244901,95.05244969],[4.53295058,0.02448839,95.05168191],[4.53295002,0.02448668,95.05091415],[4.53294947,0.02448496,95.05014641],[4.53294891,0.02448325,95.04937869],[4.53294835,0.02448154,95.04861097],[4.53294779,0.02447983,95.04784325],[4.53294723,0.02447811,95.04707553],[4.53294667,0.0244764,95.0463078],[4.53294611,0.02447469,95.04554005],[4.53294555,0.02447298,95.04477228],[4.532945,0.02447126,95.04400448],[4.53294444,0.02446955,95.04323663],[4.53294388,0.02446784,95.0424687],[4.53294332,0.02446612,95.04170067],[4.53294276,0.02446441,95.04093254],[4.5329422,0.0244627,95.04016431],[4.53294164,0.02446099,95.03939596],[4.53294108,0.02445927,95.03862747],[4.53294052,0.02445756,95.03785884],[4.53293996,0.02445585,95.03709006],[4.5329394,0.02445414,95.0363211],[4.53293884,0.02445243,95.03555195],[4.53293828,0.02445071,95.03478261],[4.53293772,0.024449,95.03401306],[4.53293716,0.02444729,95.03324328],[4.5329366,0.02444558,95.03247327],[4.53293604,0.02444386,95.031703],[4.53293547,0.02444215,95.03093247],[4.53293491,0.02444044,95.03016167],[4.53293435,0.02443873,95.02939057],[4.53293379,0.02443702,95.02861917],[4.53293323,0.0244353,95.02784745],[4.53293267,0.02443359,95.02707541],[4.53293211,0.02443188,95.02630303],[4.53293154,0.02443017,95.02553034],[4.53293098,0.02442846,95.02475734],[4.53293042,0.02442675,95.02398405],[4.53292986,0.02442503,95.02321048],[4.53292929,0.02442332,95.02243664],[4.53292873,0.02442161,95.02166255],[4.53292817,0.0244199,95.02088823],[4.53292761,0.02441819,95.02011367],[4.53292704,0.02441648,95.0193389],[4.53292648,0.02441477,95.01856394],[4.53292592,0.02441305,95.01778878],[4.53292535,0.02441134,95.01701345],[4.53292479,0.02440963,95.01623795],[4.53292423,0.02440792,95.01546231],[4.53292366,0.02440621,95.01468653],[4.5329231,0.0244045,95.01391063],[4.53292254,0.02440279,95.01313462],[4.53292197,0.02440107,95.01235852],[4.53292141,0.02439936,95.01158233],[4.53292084,0.02439765,95.01080607],[4.53292028,0.02439594,95.01002975],[4.53291972,0.02439423,95.00925339],[4.53291915,0.02439252,95.008477],[4.53291859,0.02439081,95.00770059],[4.53291803,0.0243891,95.00692417],[4.53291746,0.02438738,95.00614776],[4.5329169,0.02438567,95.00537138],[4.53291634,0.02438396,95.00459503],[4.53291577,0.02438225,95.00381872],[4.53291521,0.02438054,95.00304249],[4.53291464,0.02437883,95.00226634],[4.53291408,0.02437712,95.0014903],[4.53291352,0.02437541,95.00071437],[4.53291295,0.02437369,94.99993857],[4.53291239,0.02437198,94.99916289],[4.53291183,0.02437027,94.99838732],[4.53291126,0.02436856,94.99761187],[4.5329107,0.02436685,94.99683653],[4.53291014,0.02436514,94.9960613],[4.53290957,0.02436343,94.99528619],[4.53290901,0.02436171,94.99451118],[4.53290845,0.02436,94.99373629],[4.53290788,0.02435829,94.9929615],[4.53290732,0.02435658,94.99218682],[4.53290676,0.02435487,94.99141224],[4.5329062,0.02435316,94.99063777],[4.53290563,0.02435145,94.9898634],[4.53290507,0.02434973,94.98908913],[4.53290451,0.02434802,94.98831496],[4.53290394,0.02434631,94.98754089],[4.53290338,0.0243446,94.98676692],[4.53290282,0.02434289,94.98599305],[4.53290226,0.02434118,94.98521926],[4.5329017,0.02433946,94.98444555],[4.53290113,0.02433775,94.98367191],[4.53290057,0.02433604,94.98289835],[4.53290001,0.02433433,94.98212487],[4.53289945,0.02433262,94.98135149],[4.53289889,0.0243309,94.98057825],[4.53289832,0.02432919,94.97980515],[4.53289776,0.02432748,94.97903224],[4.5328972,0.02432577,94.97825952],[4.53289664,0.02432406,94.97748703],[4.53289608,0.02432234,94.97671479],[4.53289552,0.02432063,94.97594281],[4.53289495,0.02431892,94.97517114],[4.53289439,0.02431721,94.97439978],[4.53289383,0.0243155,94.97362877],[4.53289327,0.02431378,94.97285812],[4.53289271,0.02431207,94.97208786],[4.53289215,0.02431036,94.97131802],[4.53289159,0.02430865,94.97054862],[4.53289103,0.02430693,94.96977967],[4.53289047,0.02430522,94.96901122],[4.53288991,0.02430351,94.96824327],[4.53288935,0.0243018,94.96747582],[4.53288879,0.02430008,94.96670889],[4.53288823,0.02429837,94.96594245],[4.53288767,0.02429666,94.96517652],[4.53288711,0.02429494,94.96441109],[4.53288655,0.02429323,94.96364616],[4.53288599,0.02429152,94.96288172],[4.53288544,0.02428981,94.96211777],[4.53288488,0.02428809,94.96135432],[4.53288432,0.02428638,94.96059136],[4.53288376,0.02428467,94.95982888],[4.5328832,0.02428295,94.95906689],[4.53288264,0.02428124,94.95830539],[4.53288209,0.02427953,94.95754436],[4.53288153,0.02427781,94.95678382],[4.53288097,0.0242761,94.95602375],[4.53288041,0.02427439,94.95526416],[4.53287985,0.02427267,94.95450504],[4.5328793,0.02427096,94.95374639],[4.53287874,0.02426925,94.95298821],[4.53287818,0.02426753,94.9522305],[4.53287762,0.02426582,94.95147325],[4.53287707,0.02426411,94.95071647],[4.53287651,0.02426239,94.94996015],[4.53287595,0.02426068,94.94920429],[4.53287539,0.02425897,94.94844888],[4.53287484,0.02425725,94.94769393],[4.53287428,0.02425554,94.94693943],[4.53287372,0.02425383,94.94618539],[4.53287317,0.02425211,94.94543179],[4.53287261,0.0242504,94.94467863],[4.53287205,0.02424868,94.94392593],[4.53287149,0.02424697,94.94317366],[4.53287094,0.02424526,94.94242184],[4.53287038,0.02424354,94.94167045],[4.53286982,0.02424183,94.9409195],[4.53286927,0.02424012,94.94016898],[4.53286871,0.0242384,94.9394189],[4.53286815,0.02423669,94.93866925],[4.5328676,0.02423497,94.93792002],[4.53286704,0.02423326,94.93717122],[4.53286648,0.02423155,94.93642284],[4.53286592,0.02422983,94.93567488],[4.53286537,0.02422812,94.93492735],[4.53286481,0.02422641,94.93418023],[4.53286425,0.02422469,94.93343352],[4.5328637,0.02422298,94.93268723],[4.53286314,0.02422127,94.93194135],[4.53286258,0.02421955,94.93119588],[4.53286202,0.02421784,94.93045082],[4.53286147,0.02421612,94.92970616],[4.53286091,0.02421441,94.9289619],[4.53286035,0.0242127,94.92821804],[4.5328598,0.02421098,94.92747459],[4.53285924,0.02420927,94.92673152],[4.53285868,0.02420756,94.92598886],[4.53285812,0.02420584,94.92026247],[4.53285757,0.02420413,94.90929662],[4.53285754,0.02420406,94.90880616]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-7,"type":"none","predecessorId":0}},{"geometry":{"coordinates":[[4.53308023,0.02477949,95.16899819],[4.53308349,0.02477652,95.17958311],[4.53308593,0.02477382,95.18382727],[4.53308539,0.0247721,95.18309621],[4.53308484,0.02477038,95.18236458],[4.5330843,0.02476867,95.18163238],[4.53308375,0.02476695,95.18089962],[4.53308321,0.02476523,95.1801663],[4.53308266,0.02476351,95.17943243],[4.53308211,0.0247618,95.17869801],[4.53308157,0.02476008,95.17796306],[4.53308102,0.02475836,95.17722757],[4.53308047,0.02475665,95.17649156],[4.53307992,0.02475493,95.17575502],[4.53307938,0.02475321,95.17501796],[4.53307883,0.0247515,95.17428039],[4.53307828,0.02474978,95.17354232],[4.53307773,0.02474807,95.17280375],[4.53307718,0.02474635,95.17206468],[4.53307663,0.02474463,95.17132512],[4.53307608,0.02474292,95.17058508],[4.53307553,0.0247412,95.16984457],[4.53307498,0.02473949,95.16910358],[4.53307443,0.02473777,95.16836212],[4.53307388,0.02473605,95.1676202],[4.53307333,0.02473434,95.16687783],[4.53307278,0.02473262,95.16613501],[4.53307223,0.02473091,95.16539174],[4.53307168,0.02472919,95.16464804],[4.53307112,0.02472748,95.1639039],[4.53307057,0.02472576,95.16315933],[4.53307002,0.02472405,95.16241435],[4.53306947,0.02472233,95.16166894],[4.53306891,0.02472062,95.16092313],[4.53306836,0.0247189,95.16017691],[4.53306781,0.02471719,95.15943029],[4.53306725,0.02471547,95.15868328],[4.5330667,0.02471376,95.15793588],[4.53306615,0.02471204,95.1571881],[4.53306559,0.02471033,95.15643994],[4.53306504,0.02470861,95.15569141],[4.53306449,0.0247069,95.15494252],[4.53306393,0.02470519,95.15419326],[4.53306338,0.02470347,95.15344365],[4.53306282,0.02470176,95.15269369],[4.53306227,0.02470004,95.15194339],[4.53306171,0.02469833,95.15119275],[4.53306116,0.02469661,95.15044178],[4.5330606,0.0246949,95.14969048],[4.53306005,0.02469319,95.14893886],[4.53305949,0.02469147,95.1481869],[4.53305894,0.02468976,95.14743461],[4.53305838,0.02468804,95.14668199],[4.53305782,0.02468633,95.14592902],[4.53305727,0.02468462,95.14517572],[4.53305671,0.0246829,95.14442207],[4.53305616,0.02468119,95.14366807],[4.5330556,0.02467947,95.14291372],[4.53305504,0.02467776,95.14215902],[4.53305449,0.02467605,95.14140396],[4.53305393,0.02467433,95.14064855],[4.53305337,0.02467262,95.13989277],[4.53305281,0.02467091,95.13913663],[4.53305226,0.02466919,95.13838013],[4.5330517,0.02466748,95.13762328],[4.53305114,0.02466577,95.13686607],[4.53305059,0.02466405,95.13610847],[4.53305003,0.02466234,95.1353505],[4.53304947,0.02466063,95.13459214],[4.53304891,0.02465891,95.1338334],[4.53304835,0.0246572,95.1330743],[4.5330478,0.02465549,95.13231482],[4.53304724,0.02465377,95.13155498],[4.53304668,0.02465206,95.13079479],[4.53304612,0.02465035,95.13003423],[4.53304556,0.02464863,95.12927332],[4.533045,0.02464692,95.12851206],[4.53304445,0.02464521,95.12775046],[4.53304389,0.02464349,95.12698852],[4.53304333,0.02464178,95.12622623],[4.53304277,0.02464007,95.12546362],[4.53304221,0.02463836,95.12470067],[4.53304165,0.02463664,95.1239374],[4.53304109,0.02463493,95.1231738],[4.53304053,0.02463322,95.12240989],[4.53303997,0.0246315,95.12164566],[4.53303942,0.02462979,95.12088112],[4.53303886,0.02462808,95.12011628],[4.5330383,0.02462637,95.11935112],[4.53303774,0.02462465,95.11858567],[4.53303718,0.02462294,95.11781993],[4.53303662,0.02462123,95.11705389],[4.53303606,0.02461951,95.11628757],[4.5330355,0.0246178,95.11552095],[4.53303494,0.02461609,95.11475406],[4.53303438,0.02461438,95.1139869],[4.53303382,0.02461266,95.11321945],[4.53303326,0.02461095,95.11245174],[4.5330327,0.02460924,95.11168377],[4.53303214,0.02460752,95.11091553],[4.53303158,0.02460581,95.11014704],[4.53303102,0.0246041,95.10937831],[4.53303046,0.02460239,95.10860937],[4.53302991,0.02460067,95.10784022],[4.53302935,0.02459896,95.1070709],[4.53302879,0.02459725,95.10630142],[4.53302823,0.02459553,95.10553179],[4.53302767,0.02459382,95.10476205],[4.53302711,0.02459211,95.10399221],[4.53302655,0.0245904,95.10322229],[4.53302599,0.02458868,95.10245231],[4.53302543,0.02458697,95.10168228],[4.53302487,0.02458526,95.10091224],[4.53302431,0.02458354,95.10014219],[4.53302375,0.02458183,95.09937216],[4.53302319,0.02458012,95.09860217],[4.53302263,0.02457841,95.09783221],[4.53302207,0.02457669,95.09706229],[4.53302151,0.02457498,95.0962924],[4.53302095,0.02457327,95.09552255],[4.5330204,0.02457155,95.09475272],[4.53301984,0.02456984,95.09398293],[4.53301928,0.02456813,95.09321316],[4.53301872,0.02456642,95.09244342],[4.53301816,0.0245647,95.09167371],[4.5330176,0.02456299,95.09090403],[4.53301704,0.02456128,95.09013436],[4.53301648,0.02455956,95.08936472],[4.53301593,0.02455785,95.0885951],[4.53301537,0.02455614,95.08782551],[4.53301481,0.02455442,95.08705593],[4.53301425,0.02455271,95.08628636],[4.53301369,0.024551,95.08551682],[4.53301313,0.02454928,95.08474729],[4.53301257,0.02454757,95.08397777],[4.53301202,0.02454586,95.08320827],[4.53301146,0.02454414,95.08243877],[4.5330109,0.02454243,95.08166929],[4.53301034,0.02454072,95.08089981],[4.53300978,0.024539,95.08013034],[4.53300923,0.02453729,95.07936088],[4.53300867,0.02453558,95.07859142],[4.53300811,0.02453386,95.07782197],[4.53300755,0.02453215,95.07705251],[4.53300699,0.02453044,95.07628306],[4.53300643,0.02452872,95.07551361],[4.53300588,0.02452701,95.07474415],[4.53300532,0.0245253,95.0739747],[4.53300476,0.02452358,95.07320523],[4.5330042,0.02452187,95.07243576],[4.53300364,0.02452016,95.07166629],[4.53300309,0.02451844,95.0708968],[4.53300253,0.02451673,95.07012731],[4.53300197,0.02451502,95.0693578],[4.53300141,0.0245133,95.06858829],[4.53300086,0.02451159,95.06781882],[4.5330003,0.02450988,95.06704944],[4.53299974,0.02450816,95.06628018],[4.53299918,0.02450645,95.06551104],[4.53299862,0.02450474,95.06474201],[4.53299807,0.02450302,95.06397309],[4.53299751,0.02450131,95.06320428],[4.53299695,0.0244996,95.06243557],[4.53299639,0.02449788,95.06166697],[4.53299584,0.02449617,95.06089847],[4.53299528,0.02449446,95.06013005],[4.53299472,0.02449274,95.05936172],[4.53299417,0.02449103,95.05859348],[4.53299361,0.02448931,95.0578253],[4.53299305,0.0244876,95.0570572],[4.53299249,0.02448589,95.05628915],[4.53299194,0.02448417,95.05552117],[4.53299138,0.02448246,95.05475323],[4.53299082,0.02448075,95.05398535],[4.53299026,0.02447903,95.0532175],[4.53298971,0.02447732,95.05244969],[4.53298915,0.0244756,95.05168191],[4.53298859,0.02447389,95.05091415],[4.53298804,0.02447218,95.05014641],[4.53298748,0.02447046,95.04937869],[4.53298692,0.02446875,95.04861097],[4.53298636,0.02446704,95.04784325],[4.53298581,0.02446532,95.04707553],[4.53298525,0.02446361,95.0463078],[4.53298469,0.0244619,95.04554005],[4.53298414,0.02446018,95.04477228],[4.53298358,0.02445847,95.04400448],[4.53298302,0.02445675,95.04323663],[4.53298246,0.02445504,95.0424687],[4.53298191,0.02445333,95.04170067],[4.53298135,0.02445161,95.04093254],[4.53298079,0.0244499,95.04016431],[4.53298023,0.02444819,95.03939596],[4.53297968,0.02444647,95.03862747],[4.53297912,0.02444476,95.03785884],[4.53297856,0.02444305,95.03709006],[4.532978,0.02444133,95.0363211],[4.53297744,0.02443962,95.03555195],[4.53297689,0.02443791,95.03478261],[4.53297633,0.02443619,95.03401306],[4.53297577,0.02443448,95.03324328],[4.53297521,0.02443277,95.03247327],[4.53297465,0.02443105,95.031703],[4.53297409,0.02442934,95.03093247],[4.53297354,0.02442763,95.03016167],[4.53297298,0.02442591,95.02939057],[4.53297242,0.0244242,95.02861917],[4.53297186,0.02442249,95.02784745],[4.5329713,0.02442077,95.02707541],[4.53297074,0.02441906,95.02630303],[4.53297018,0.02441735,95.02553034],[4.53296962,0.02441563,95.02475734],[4.53296906,0.02441392,95.02398405],[4.5329685,0.02441221,95.02321048],[4.53296794,0.0244105,95.02243664],[4.53296738,0.02440878,95.02166255],[4.53296682,0.02440707,95.02088823],[4.53296626,0.02440536,95.02011367],[4.5329657,0.02440365,95.0193389],[4.53296514,0.02440193,95.01856394],[4.53296458,0.02440022,95.01778878],[4.53296402,0.02439851,95.01701345],[4.53296346,0.0243968,95.01623795],[4.53296289,0.02439508,95.01546231],[4.53296233,0.02439337,95.01468653],[4.53296177,0.02439166,95.01391063],[4.53296121,0.02438995,95.01313462],[4.53296065,0.02438823,95.01235852],[4.53296009,0.02438652,95.01158233],[4.53295953,0.02438481,95.01080607],[4.53295896,0.0243831,95.01002975],[4.5329584,0.02438138,95.00925339],[4.53295784,0.02437967,95.008477],[4.53295728,0.02437796,95.00770059],[4.53295672,0.02437625,95.00692417],[4.53295615,0.02437454,95.00614776],[4.53295559,0.02437282,95.00537138],[4.53295503,0.02437111,95.00459503],[4.53295447,0.0243694,95.00381872],[4.5329539,0.02436769,95.00304249],[4.53295334,0.02436598,95.00226634],[4.53295278,0.02436426,95.0014903],[4.53295222,0.02436255,95.00071437],[4.53295165,0.02436084,94.99993857],[4.53295109,0.02435913,94.99916289],[4.53295053,0.02435742,94.99838732],[4.53294997,0.0243557,94.99761187],[4.5329494,0.02435399,94.99683653],[4.53294884,0.02435228,94.9960613],[4.53294828,0.02435057,94.99528619],[4.53294771,0.02434886,94.99451118],[4.53294715,0.02434714,94.99373629],[4.53294659,0.02434543,94.9929615],[4.53294602,0.02434372,94.99218682],[4.53294546,0.02434201,94.99141224],[4.5329449,0.0243403,94.99063777],[4.53294433,0.02433859,94.9898634],[4.53294377,0.02433687,94.98908913],[4.53294321,0.02433516,94.98831496],[4.53294264,0.02433345,94.98754089],[4.53294208,0.02433174,94.98676692],[4.53294152,0.02433003,94.98599305],[4.53294095,0.02432832,94.98521926],[4.53294039,0.0243266,94.98444555],[4.53293983,0.02432489,94.98367191],[4.53293926,0.02432318,94.98289835],[4.5329387,0.02432147,94.98212487],[4.53293813,0.02431976,94.98135149],[4.53293757,0.02431805,94.98057825],[4.532937,0.02431634,94.97980515],[4.53293644,0.02431462,94.97903224],[4.53293588,0.02431291,94.97825952],[4.53293531,0.0243112,94.97748703],[4.53293475,0.02430949,94.97671479],[4.53293418,0.02430778,94.97594281],[4.53293362,0.02430607,94.97517114],[4.53293305,0.02430436,94.97439978],[4.53293249,0.02430264,94.97362877],[4.53293192,0.02430093,94.97285812],[4.53293136,0.02429922,94.97208786],[4.53293079,0.02429751,94.97131802],[4.53293023,0.0242958,94.97054862],[4.53292966,0.02429409,94.96977967],[4.5329291,0.02429238,94.96901122],[4.53292854,0.02429066,94.96824327],[4.53292797,0.02428895,94.96747582],[4.53292741,0.02428724,94.96670889],[4.53292684,0.02428553,94.96594245],[4.53292628,0.02428382,94.96517652],[4.53292571,0.02428211,94.96441109],[4.53292515,0.0242804,94.96364616],[4.53292458,0.02427868,94.96288172],[4.53292402,0.02427697,94.96211777],[4.53292346,0.02427526,94.96135432],[4.53292289,0.02427355,94.96059136],[4.53292233,0.02427184,94.95982888],[4.53292176,0.02427013,94.95906689],[4.5329212,0.02426842,94.95830539],[4.53292063,0.0242667,94.95754436],[4.53292007,0.02426499,94.95678382],[4.5329195,0.02426328,94.95602375],[4.53291894,0.02426157,94.95526416],[4.53291838,0.02425986,94.95450504],[4.53291781,0.02425815,94.95374639],[4.53291725,0.02425644,94.95298821],[4.53291668,0.02425472,94.9522305],[4.53291612,0.02425301,94.95147325],[4.53291555,0.0242513,94.95071647],[4.53291499,0.02424959,94.94996015],[4.53291442,0.02424788,94.94920429],[4.53291386,0.02424617,94.94844888],[4.5329133,0.02424446,94.94769393],[4.53291273,0.02424274,94.94693943],[4.53291217,0.02424103,94.94618539],[4.5329116,0.02423932,94.94543179],[4.53291104,0.02423761,94.94467863],[4.53291047,0.0242359,94.94392593],[4.53290991,0.02423419,94.94317366],[4.53290934,0.02423248,94.94242184],[4.53290878,0.02423076,94.94167045],[4.53290821,0.02422905,94.9409195],[4.53290765,0.02422734,94.94016898],[4.53290708,0.02422563,94.9394189],[4.53290652,0.02422392,94.93866925],[4.53290595,0.02422221,94.93792002],[4.53290539,0.0242205,94.93717122],[4.53290482,0.02421879,94.93642284],[4.53290426,0.02421707,94.93567488],[4.53290369,0.02421536,94.93492735],[4.53290313,0.02421365,94.93418023],[4.53290256,0.02421194,94.93343352],[4.532902,0.02421023,94.93268723],[4.53290143,0.02420852,94.93194135],[4.53290087,0.02420681,94.93119588],[4.5329003,0.0242051,94.93045082],[4.53289974,0.02420339,94.92970616],[4.53289917,0.02420167,94.9289619],[4.5328986,0.02419996,94.92821804],[4.53289804,0.02419825,94.92747459],[4.53289747,0.02419654,94.92673152],[4.53289677,0.02419487,94.92598886],[4.53289347,0.02419408,94.92026247],[4.53288931,0.02419356,94.90929662],[4.53288906,0.02419356,94.90880616]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-6,"type":"border","predecessorId":0}},{"geometry":{"coordinates":[[4.53308344,0.02477843,95.01899819],[4.53308651,0.02477552,95.02958311],[4.53308755,0.02477328,95.03382727],[4.53308699,0.02477157,95.03309621],[4.53308644,0.02476986,95.03236458],[4.53308588,0.02476814,95.03163238],[4.53308533,0.02476643,95.03089962],[4.53308477,0.02476472,95.0301663],[4.53308421,0.024763,95.02943243],[4.53308366,0.02476129,95.02869801],[4.5330831,0.02475958,95.02796306],[4.53308254,0.02475786,95.02722757],[4.53308199,0.02475615,95.02649156],[4.53308143,0.02475443,95.02575502],[4.53308087,0.02475272,95.02501796],[4.53308032,0.02475101,95.02428039],[4.53307976,0.02474929,95.02354232],[4.5330792,0.02474758,95.02280375],[4.53307865,0.02474587,95.02206468],[4.53307809,0.02474415,95.02132512],[4.53307753,0.02474244,95.02058508],[4.53307698,0.02474073,95.01984457],[4.53307642,0.02473901,95.01910358],[4.53307586,0.0247373,95.01836212],[4.5330753,0.02473558,95.0176202],[4.53307475,0.02473387,95.01687783],[4.53307419,0.02473216,95.01613501],[4.53307363,0.02473044,95.01539174],[4.53307308,0.02472873,95.01464804],[4.53307252,0.02472702,95.0139039],[4.53307196,0.0247253,95.01315933],[4.5330714,0.02472359,95.01241435],[4.53307085,0.02472188,95.01166894],[4.53307029,0.02472016,95.01092313],[4.53306973,0.02471845,95.01017691],[4.53306918,0.02471674,95.00943029],[4.53306862,0.02471502,95.00868328],[4.53306806,0.02471331,95.00793588],[4.5330675,0.0247116,95.0071881],[4.53306695,0.02470988,95.00643994],[4.53306639,0.02470817,95.00569141],[4.53306583,0.02470646,95.00494252],[4.53306527,0.02470474,95.00419326],[4.53306472,0.02470303,95.00344365],[4.53306416,0.02470132,95.00269369],[4.5330636,0.0246996,95.00194339],[4.53306304,0.02469789,95.00119275],[4.53306249,0.02469618,95.00044178],[4.53306193,0.02469446,94.99969048],[4.53306137,0.02469275,94.99893886],[4.53306081,0.02469104,94.9981869],[4.53306026,0.02468932,94.99743461],[4.5330597,0.02468761,94.99668199],[4.53305914,0.0246859,94.99592902],[4.53305858,0.02468418,94.99517572],[4.53305803,0.02468247,94.99442207],[4.53305747,0.02468076,94.99366807],[4.53305691,0.02467904,94.99291372],[4.53305635,0.02467733,94.99215902],[4.53305579,0.02467562,94.99140396],[4.53305524,0.0246739,94.99064855],[4.53305468,0.02467219,94.98989277],[4.53305412,0.02467048,94.98913663],[4.53305356,0.02466876,94.98838013],[4.53305301,0.02466705,94.98762328],[4.53305245,0.02466534,94.98686607],[4.53305189,0.02466362,94.98610847],[4.53305133,0.02466191,94.9853505],[4.53305077,0.0246602,94.98459214],[4.53305021,0.02465848,94.9838334],[4.53304966,0.02465677,94.9830743],[4.5330491,0.02465506,94.98231482],[4.53304854,0.02465334,94.98155498],[4.53304798,0.02465163,94.98079479],[4.53304742,0.02464992,94.98003423],[4.53304687,0.0246482,94.97927332],[4.53304631,0.02464649,94.97851206],[4.53304575,0.02464478,94.97775046],[4.53304519,0.02464306,94.97698852],[4.53304463,0.02464135,94.97622623],[4.53304407,0.02463964,94.97546362],[4.53304351,0.02463792,94.97470067],[4.53304296,0.02463621,94.9739374],[4.5330424,0.0246345,94.9731738],[4.53304184,0.02463279,94.97240989],[4.53304128,0.02463107,94.97164566],[4.53304072,0.02462936,94.97088112],[4.53304016,0.02462765,94.97011628],[4.5330396,0.02462593,94.96935112],[4.53303904,0.02462422,94.96858567],[4.53303848,0.02462251,94.96781993],[4.53303793,0.02462079,94.96705389],[4.53303737,0.02461908,94.96628757],[4.53303681,0.02461737,94.96552095],[4.53303625,0.02461566,94.96475406],[4.53303569,0.02461394,94.9639869],[4.53303513,0.02461223,94.96321945],[4.53303457,0.02461052,94.96245174],[4.53303401,0.0246088,94.96168377],[4.53303345,0.02460709,94.96091553],[4.53303289,0.02460538,94.96014704],[4.53303233,0.02460367,94.95937831],[4.53303177,0.02460195,94.95860937],[4.53303122,0.02460024,94.95784022],[4.53303066,0.02459853,94.9570709],[4.5330301,0.02459681,94.95630142],[4.53302954,0.0245951,94.95553179],[4.53302898,0.02459339,94.95476205],[4.53302842,0.02459168,94.95399221],[4.53302786,0.02458996,94.95322229],[4.5330273,0.02458825,94.95245231],[4.53302674,0.02458654,94.95168228],[4.53302618,0.02458482,94.95091224],[4.53302562,0.02458311,94.95014219],[4.53302506,0.0245814,94.94937216],[4.5330245,0.02457968,94.94860217],[4.53302394,0.02457797,94.94783221],[4.53302339,0.02457626,94.94706229],[4.53302283,0.02457455,94.9462924],[4.53302227,0.02457283,94.94552255],[4.53302171,0.02457112,94.94475272],[4.53302115,0.02456941,94.94398293],[4.53302059,0.02456769,94.94321316],[4.53302003,0.02456598,94.94244342],[4.53301947,0.02456427,94.94167371],[4.53301891,0.02456255,94.94090403],[4.53301836,0.02456084,94.94013436],[4.5330178,0.02455913,94.93936472],[4.53301724,0.02455741,94.9385951],[4.53301668,0.0245557,94.93782551],[4.53301612,0.02455399,94.93705593],[4.53301556,0.02455228,94.93628636],[4.533015,0.02455056,94.93551682],[4.53301445,0.02454885,94.93474729],[4.53301389,0.02454714,94.93397777],[4.53301333,0.02454542,94.93320827],[4.53301277,0.02454371,94.93243877],[4.53301221,0.024542,94.93166929],[4.53301165,0.02454028,94.93089981],[4.5330111,0.02453857,94.93013034],[4.53301054,0.02453686,94.92936088],[4.53300998,0.02453514,94.92859142],[4.53300942,0.02453343,94.92782197],[4.53300886,0.02453172,94.92705251],[4.5330083,0.02453,94.92628306],[4.53300775,0.02452829,94.92551361],[4.53300719,0.02452658,94.92474415],[4.53300663,0.02452486,94.9239747],[4.53300607,0.02452315,94.92320523],[4.53300551,0.02452144,94.92243576],[4.53300495,0.02451972,94.92166629],[4.5330044,0.02451801,94.9208968],[4.53300384,0.0245163,94.92012731],[4.53300328,0.02451458,94.9193578],[4.53300272,0.02451287,94.91858829],[4.53300216,0.02451116,94.91781882],[4.53300161,0.02450944,94.91704944],[4.53300105,0.02450773,94.91628018],[4.53300049,0.02450602,94.91551104],[4.53299993,0.0245043,94.91474201],[4.53299937,0.02450259,94.91397309],[4.53299882,0.02450088,94.91320428],[4.53299826,0.02449916,94.91243557],[4.5329977,0.02449745,94.91166697],[4.53299714,0.02449574,94.91089847],[4.53299658,0.02449402,94.91013005],[4.53299603,0.02449231,94.90936172],[4.53299547,0.0244906,94.90859348],[4.53299491,0.02448888,94.9078253],[4.53299435,0.02448717,94.9070572],[4.53299379,0.02448546,94.90628915],[4.53299324,0.02448374,94.90552117],[4.53299268,0.02448203,94.90475323],[4.53299212,0.02448032,94.90398535],[4.53299156,0.0244786,94.9032175],[4.53299101,0.02447689,94.90244969],[4.53299045,0.02447517,94.90168191],[4.53298989,0.02447346,94.90091415],[4.53298933,0.02447175,94.90014641],[4.53298877,0.02447003,94.89937869],[4.53298822,0.02446832,94.89861097],[4.53298766,0.02446661,94.89784325],[4.5329871,0.02446489,94.89707553],[4.53298654,0.02446318,94.8963078],[4.53298598,0.02446147,94.89554005],[4.53298543,0.02445975,94.89477228],[4.53298487,0.02445804,94.89400448],[4.53298431,0.02445633,94.89323663],[4.53298375,0.02445461,94.8924687],[4.53298319,0.0244529,94.89170067],[4.53298264,0.02445119,94.89093254],[4.53298208,0.02444947,94.89016431],[4.53298152,0.02444776,94.88939596],[4.53298096,0.02444605,94.88862747],[4.5329804,0.02444433,94.88785884],[4.53297984,0.02444262,94.88709006],[4.53297928,0.02444091,94.8863211],[4.53297873,0.02443919,94.88555195],[4.53297817,0.02443748,94.88478261],[4.53297761,0.02443577,94.88401306],[4.53297705,0.02443405,94.88324328],[4.53297649,0.02443234,94.88247327],[4.53297593,0.02443063,94.881703],[4.53297537,0.02442892,94.88093247],[4.53297481,0.0244272,94.88016167],[4.53297425,0.02442549,94.87939057],[4.53297369,0.02442378,94.87861917],[4.53297313,0.02442206,94.87784745],[4.53297257,0.02442035,94.87707541],[4.53297201,0.02441864,94.87630303],[4.53297145,0.02441693,94.87553034],[4.53297089,0.02441521,94.87475734],[4.53297033,0.0244135,94.87398405],[4.53296977,0.02441179,94.87321048],[4.53296921,0.02441008,94.87243664],[4.53296865,0.02440836,94.87166255],[4.53296809,0.02440665,94.87088823],[4.53296753,0.02440494,94.87011367],[4.53296696,0.02440323,94.8693389],[4.5329664,0.02440151,94.86856394],[4.53296584,0.0243998,94.86778878],[4.53296528,0.02439809,94.86701345],[4.53296472,0.02439638,94.86623795],[4.53296416,0.02439466,94.86546231],[4.53296359,0.02439295,94.86468653],[4.53296303,0.02439124,94.86391063],[4.53296247,0.02438953,94.86313462],[4.53296191,0.02438782,94.86235852],[4.53296134,0.0243861,94.86158233],[4.53296078,0.02438439,94.86080607],[4.53296022,0.02438268,94.86002975],[4.53295966,0.02438097,94.85925339],[4.53295909,0.02437926,94.858477],[4.53295853,0.02437754,94.85770059],[4.53295797,0.02437583,94.85692417],[4.53295741,0.02437412,94.85614776],[4.53295684,0.02437241,94.85537138],[4.53295628,0.0243707,94.85459503],[4.53295572,0.02436898,94.85381872],[4.53295515,0.02436727,94.85304249],[4.53295459,0.02436556,94.85226634],[4.53295403,0.02436385,94.8514903],[4.53295346,0.02436214,94.85071437],[4.5329529,0.02436043,94.84993857],[4.53295234,0.02435871,94.84916289],[4.53295177,0.024357,94.84838732],[4.53295121,0.02435529,94.84761187],[4.53295065,0.02435358,94.84683653],[4.53295008,0.02435187,94.8460613],[4.53294952,0.02435016,94.84528619],[4.53294896,0.02434844,94.84451118],[4.53294839,0.02434673,94.84373629],[4.53294783,0.02434502,94.8429615],[4.53294727,0.02434331,94.84218682],[4.5329467,0.0243416,94.84141224],[4.53294614,0.02433989,94.84063777],[4.53294558,0.02433817,94.8398634],[4.53294501,0.02433646,94.83908913],[4.53294445,0.02433475,94.83831496],[4.53294388,0.02433304,94.83754089],[4.53294332,0.02433133,94.83676692],[4.53294276,0.02432962,94.83599305],[4.53294219,0.0243279,94.83521926],[4.53294163,0.02432619,94.83444555],[4.53294106,0.02432448,94.83367191],[4.5329405,0.02432277,94.83289835],[4.53293994,0.02432106,94.83212487],[4.53293937,0.02431935,94.83135149],[4.53293881,0.02431764,94.83057825],[4.53293824,0.02431592,94.82980515],[4.53293768,0.02431421,94.82903224],[4.53293711,0.0243125,94.82825952],[4.53293655,0.02431079,94.82748703],[4.53293598,0.02430908,94.82671479],[4.53293542,0.02430737,94.82594281],[4.53293485,0.02430566,94.82517114],[4.53293429,0.02430394,94.82439978],[4.53293373,0.02430223,94.82362877],[4.53293316,0.02430052,94.82285812],[4.5329326,0.02429881,94.82208786],[4.53293203,0.0242971,94.82131802],[4.53293147,0.02429539,94.82054862],[4.5329309,0.02429368,94.81977967],[4.53293034,0.02429196,94.81901122],[4.53292977,0.02429025,94.81824327],[4.53292921,0.02428854,94.81747582],[4.53292865,0.02428683,94.81670889],[4.53292808,0.02428512,94.81594245],[4.53292752,0.02428341,94.81517652],[4.53292695,0.0242817,94.81441109],[4.53292639,0.02427998,94.81364616],[4.53292583,0.02427827,94.81288172],[4.53292526,0.02427656,94.81211777],[4.5329247,0.02427485,94.81135432],[4.53292413,0.02427314,94.81059136],[4.53292357,0.02427143,94.80982888],[4.53292301,0.02426971,94.80906689],[4.53292244,0.024268,94.80830539],[4.53292188,0.02426629,94.80754436],[4.53292132,0.02426458,94.80678382],[4.53292075,0.02426287,94.80602375],[4.53292019,0.02426116,94.80526416],[4.53291962,0.02425944,94.80450504],[4.53291906,0.02425773,94.80374639],[4.5329185,0.02425602,94.80298821],[4.53291793,0.02425431,94.8022305],[4.53291737,0.0242526,94.80147325],[4.53291681,0.02425088,94.80071647],[4.53291624,0.02424917,94.79996015],[4.53291568,0.02424746,94.79920429],[4.53291512,0.02424575,94.79844888],[4.53291455,0.02424404,94.79769393],[4.53291399,0.02424233,94.79693943],[4.53291343,0.02424061,94.79618539],[4.53291286,0.0242389,94.79543179],[4.5329123,0.02423719,94.79467863],[4.53291174,0.02423548,94.79392593],[4.53291117,0.02423377,94.79317366],[4.53291061,0.02423205,94.79242184],[4.53291005,0.02423034,94.79167045],[4.53290948,0.02422863,94.7909195],[4.53290892,0.02422692,94.79016898],[4.53290836,0.02422521,94.7894189],[4.53290779,0.0242235,94.78866925],[4.53290723,0.02422178,94.78792002],[4.53290667,0.02422007,94.78717122],[4.5329061,0.02421836,94.78642284],[4.53290554,0.02421665,94.78567488],[4.53290498,0.02421494,94.78492735],[4.53290441,0.02421322,94.78418023],[4.53290385,0.02421151,94.78343352],[4.53290329,0.0242098,94.78268723],[4.53290272,0.02420809,94.78194135],[4.53290216,0.02420638,94.78119588],[4.53290159,0.02420467,94.78045082],[4.53290103,0.02420295,94.77970616],[4.53290047,0.02420124,94.7789619],[4.5328999,0.02419953,94.77821804],[4.53289934,0.02419782,94.77747459],[4.53289878,0.02419611,94.77673152],[4.53289821,0.02419439,94.77598886],[4.53289613,0.02419319,94.77026247],[4.53289244,0.02419252,94.75929662],[4.53289228,0.02419249,94.75880616]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-5,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-5,"type":"border","predecessorId":-5}},{"geometry":{"coordinates":[[4.53309155,0.02477576,95.04430746],[4.533091,0.02477405,95.04358273],[4.53309044,0.02477233,95.04285692],[4.53308989,0.02477062,95.04213007],[4.53308933,0.0247689,95.04140217],[4.53308878,0.02476719,95.04067326],[4.53308822,0.02476547,95.03994333],[4.53308767,0.02476376,95.03921241],[4.53308711,0.02476205,95.03848051],[4.53308656,0.02476033,95.03774763],[4.533086,0.02475862,95.03701381],[4.53308544,0.02475691,95.03627904],[4.53308489,0.02475519,95.03554334],[4.53308433,0.02475348,95.03480674],[4.53308377,0.02475176,95.03406923],[4.53308322,0.02475005,95.03333084],[4.53308266,0.02474834,95.03259157],[4.5330821,0.02474662,95.03185145],[4.53308154,0.02474491,95.03111048],[4.53308099,0.0247432,95.03036869],[4.53308043,0.02474148,95.02962607],[4.53307987,0.02473977,95.02888266],[4.53307931,0.02473806,95.02813845],[4.53307875,0.02473634,95.02739347],[4.5330782,0.02473463,95.02664773],[4.53307764,0.02473292,95.02590124],[4.53307708,0.02473121,95.02515402],[4.53307652,0.02472949,95.02440608],[4.53307596,0.02472778,95.02365743],[4.5330754,0.02472607,95.02290809],[4.53307484,0.02472435,95.02215807],[4.53307428,0.02472264,95.02140739],[4.53307372,0.02472093,95.02065605],[4.53307316,0.02471922,95.01990408],[4.5330726,0.0247175,95.01915148],[4.53307204,0.02471579,95.01839827],[4.53307148,0.02471408,95.01764447],[4.53307092,0.02471236,95.01689009],[4.53307036,0.02471065,95.01613514],[4.5330698,0.02470894,95.01537963],[4.53306924,0.02470723,95.01462358],[4.53306868,0.02470551,95.01386701],[4.53306812,0.0247038,95.01310992],[4.53306756,0.02470209,95.01235233],[4.533067,0.02470038,95.01159426],[4.53306644,0.02469866,95.01083571],[4.53306588,0.02469695,95.01007671],[4.53306532,0.02469524,95.00931727],[4.53306476,0.02469353,95.00855739],[4.5330642,0.02469181,95.00779709],[4.53306364,0.0246901,95.00703637],[4.53306308,0.02468839,95.00627524],[4.53306252,0.02468668,95.0055137],[4.53306196,0.02468497,95.00475176],[4.5330614,0.02468325,95.00398943],[4.53306084,0.02468154,95.0032267],[4.53306028,0.02467983,95.00246359],[4.53305971,0.02467812,95.00170009],[4.53305915,0.0246764,95.00093622],[4.53305859,0.02467469,95.00017199],[4.53305803,0.02467298,94.99940738],[4.53305747,0.02467127,94.99864242],[4.53305691,0.02466955,94.99787711],[4.53305635,0.02466784,94.99711146],[4.53305579,0.02466613,94.99634549],[4.53305523,0.02466442,94.99557919],[4.53305466,0.02466271,94.99481255],[4.5330541,0.02466099,94.99404558],[4.53305354,0.02465928,94.99327829],[4.53305298,0.02465757,94.99251069],[4.53305242,0.02465586,94.9917428],[4.53305186,0.02465414,94.99097463],[4.5330513,0.02465243,94.99020619],[4.53305073,0.02465072,94.98943749],[4.53305017,0.02464901,94.98866854],[4.53304961,0.0246473,94.98789936],[4.53304905,0.02464558,94.98712996],[4.53304849,0.02464387,94.98636035],[4.53304793,0.02464216,94.98559054],[4.53304737,0.02464045,94.98482054],[4.5330468,0.02463873,94.98405037],[4.53304624,0.02463702,94.98328004],[4.53304568,0.02463531,94.98250956],[4.53304512,0.0246336,94.98173895],[4.53304456,0.02463189,94.98096821],[4.533044,0.02463017,94.98019736],[4.53304344,0.02462846,94.9794264],[4.53304288,0.02462675,94.97865536],[4.53304231,0.02462504,94.97788425],[4.53304175,0.02462332,94.97711307],[4.53304119,0.02462161,94.97634184],[4.53304063,0.0246199,94.97557057],[4.53304007,0.02461819,94.97479927],[4.53303951,0.02461648,94.97402796],[4.53303895,0.02461476,94.97325665],[4.53303839,0.02461305,94.97248534],[4.53303783,0.02461134,94.97171406],[4.53303727,0.02460963,94.97094281],[4.53303671,0.02460791,94.97017161],[4.53303614,0.0246062,94.96940047],[4.53303558,0.02460449,94.9686294],[4.53303502,0.02460278,94.96785841],[4.53303446,0.02460106,94.96708752],[4.5330339,0.02459935,94.96631674],[4.53303334,0.02459764,94.96554608],[4.53303278,0.02459593,94.96477555],[4.53303222,0.02459421,94.96400517],[4.53303166,0.0245925,94.96323494],[4.5330311,0.02459079,94.96246488],[4.53303054,0.02458907,94.96169501],[4.53302998,0.02458736,94.96092533],[4.53302942,0.02458565,94.96015586],[4.53302886,0.02458394,94.9593866],[4.5330283,0.02458222,94.95861758],[4.53302775,0.02458051,94.95784881],[4.53302719,0.0245788,94.95708028],[4.53302663,0.02457708,94.95631201],[4.53302607,0.02457537,94.95554397],[4.53302551,0.02457366,94.95477617],[4.53302495,0.02457194,94.95400858],[4.53302439,0.02457023,94.95324121],[4.53302383,0.02456852,94.95247405],[4.53302328,0.02456681,94.95170708],[4.53302272,0.02456509,94.95094031],[4.53302216,0.02456338,94.95017371],[4.5330216,0.02456167,94.94940728],[4.53302104,0.02455995,94.94864101],[4.53302048,0.02455824,94.9478749],[4.53301993,0.02455653,94.94710893],[4.53301937,0.02455481,94.9463431],[4.53301881,0.0245531,94.9455774],[4.53301825,0.02455139,94.94481181],[4.5330177,0.02454967,94.94404634],[4.53301714,0.02454796,94.94328097],[4.53301658,0.02454624,94.94251569],[4.53301602,0.02454453,94.94175049],[4.53301546,0.02454282,94.94098537],[4.53301491,0.0245411,94.94022032],[4.53301435,0.02453939,94.93945533],[4.53301379,0.02453768,94.93869038],[4.53301324,0.02453596,94.93792548],[4.53301268,0.02453425,94.93716061],[4.53301212,0.02453254,94.93639576],[4.53301156,0.02453082,94.93563092],[4.53301101,0.02452911,94.9348661],[4.53301045,0.0245274,94.93410127],[4.53300989,0.02452568,94.93333642],[4.53300933,0.02452397,94.93257156],[4.53300878,0.02452225,94.93180667],[4.53300822,0.02452054,94.93104174],[4.53300766,0.02451883,94.93027676],[4.5330071,0.02451711,94.92951173],[4.53300655,0.0245154,94.92874663],[4.53300599,0.02451369,94.92798146],[4.53300543,0.02451197,94.92721621],[4.53300488,0.02451026,94.92645093],[4.53300432,0.02450855,94.92568566],[4.53300376,0.02450683,94.92492041],[4.5330032,0.02450512,94.92415518],[4.53300265,0.0245034,94.92338996],[4.53300209,0.02450169,94.92262473],[4.53300153,0.02449998,94.92185949],[4.53300097,0.02449826,94.92109422],[4.53300042,0.02449655,94.92032892],[4.53299986,0.02449484,94.91956357],[4.5329993,0.02449312,94.91879816],[4.53299874,0.02449141,94.91803268],[4.53299819,0.0244897,94.91726711],[4.53299763,0.02448798,94.91650143],[4.53299707,0.02448627,94.91573565],[4.53299651,0.02448455,94.91496973],[4.53299596,0.02448284,94.91420368],[4.5329954,0.02448113,94.91343747],[4.53299484,0.02447941,94.9126711],[4.53299428,0.0244777,94.91190454],[4.53299372,0.02447599,94.91113779],[4.53299317,0.02447427,94.91037084],[4.53299261,0.02447256,94.90960366],[4.53299205,0.02447085,94.90883626],[4.53299149,0.02446913,94.9080686],[4.53299093,0.02446742,94.90730069],[4.53299037,0.02446571,94.90653251],[4.53298981,0.02446399,94.90576403],[4.53298926,0.02446228,94.90499526],[4.5329887,0.02446057,94.90422618],[4.53298814,0.02445885,94.90345677],[4.53298758,0.02445714,94.90268702],[4.53298702,0.02445543,94.90191692],[4.53298646,0.02445372,94.90114645],[4.5329859,0.024452,94.9003756],[4.53298534,0.02445029,94.89960438],[4.53298478,0.02444858,94.8988328],[4.53298422,0.02444686,94.89806085],[4.53298366,0.02444515,94.89728854],[4.5329831,0.02444344,94.89651585],[4.53298254,0.02444173,94.89574279],[4.53298198,0.02444001,94.89496936],[4.53298142,0.0244383,94.89419555],[4.53298086,0.02443659,94.89342135],[4.5329803,0.02443488,94.89264678],[4.53297974,0.02443316,94.89187181],[4.53297917,0.02443145,94.89109647],[4.53297861,0.02442974,94.89032073],[4.53297805,0.02442803,94.88954459],[4.53297749,0.02442631,94.88876807],[4.53297693,0.0244246,94.88799114],[4.53297637,0.02442289,94.88721382],[4.5329758,0.02442118,94.88643609],[4.53297524,0.02441947,94.88565797],[4.53297468,0.02441775,94.88487944],[4.53297412,0.02441604,94.88410055],[4.53297355,0.02441433,94.88332131],[4.53297299,0.02441262,94.88254175],[4.53297243,0.02441091,94.88176189],[4.53297186,0.02440919,94.88098175],[4.5329713,0.02440748,94.88020137],[4.53297074,0.02440577,94.87942075],[4.53297017,0.02440406,94.87863994],[4.53296961,0.02440235,94.87785894],[4.53296904,0.02440064,94.87707779],[4.53296848,0.02439893,94.87629651],[4.53296792,0.02439721,94.87551512],[4.53296735,0.0243955,94.87473365],[4.53296679,0.02439379,94.87395212],[4.53296622,0.02439208,94.87317056],[4.53296566,0.02439037,94.87238898],[4.53296509,0.02438866,94.87160742],[4.53296453,0.02438695,94.8708259],[4.53296397,0.02438523,94.87004443],[4.5329634,0.02438352,94.86926305],[4.53296284,0.02438181,94.86848179],[4.53296227,0.0243801,94.86770065],[4.53296171,0.02437839,94.86691967],[4.53296114,0.02437668,94.86613888],[4.53296058,0.02437497,94.86535829],[4.53296001,0.02437325,94.86457793],[4.53295945,0.02437154,94.86379783],[4.53295888,0.02436983,94.86301801],[4.53295832,0.02436812,94.86223849],[4.53295776,0.02436641,94.8614593],[4.53295719,0.0243647,94.86068048],[4.53295663,0.02436299,94.85990205],[4.53295606,0.02436127,94.85912405],[4.5329555,0.02435956,94.85834648],[4.53295493,0.02435785,94.85756934],[4.53295437,0.02435614,94.85679266],[4.53295381,0.02435443,94.85601643],[4.53295324,0.02435272,94.85524068],[4.53295268,0.02435101,94.8544654],[4.53295212,0.02434929,94.85369062],[4.53295155,0.02434758,94.85291633],[4.53295099,0.02434587,94.85214255],[4.53295042,0.02434416,94.8513693],[4.53294986,0.02434245,94.85059657],[4.5329493,0.02434073,94.84982438],[4.53294873,0.02433902,94.84905274],[4.53294817,0.02433731,94.84828166],[4.53294761,0.0243356,94.84751115],[4.53294705,0.02433389,94.84674121],[4.53294648,0.02433218,94.84597187],[4.53294592,0.02433046,94.84520312],[4.53294536,0.02432875,94.84443499],[4.53294479,0.02432704,94.84366746],[4.53294423,0.02432533,94.84290055],[4.53294367,0.02432361,94.84213426],[4.53294311,0.0243219,94.8413686],[4.53294255,0.02432019,94.84060358],[4.53294198,0.02431848,94.83983921],[4.53294142,0.02431677,94.8390755],[4.53294086,0.02431505,94.83831247],[4.5329403,0.02431334,94.83755014],[4.53293974,0.02431163,94.83678851],[4.53293918,0.02430992,94.8360276],[4.53293861,0.0243082,94.83526742],[4.53293805,0.02430649,94.83450798],[4.53293749,0.02430478,94.8337493],[4.53293693,0.02430307,94.8329914],[4.53293637,0.02430135,94.83223428],[4.53293581,0.02429964,94.83147796],[4.53293525,0.02429793,94.83072245],[4.53293469,0.02429622,94.82996776],[4.53293413,0.0242945,94.82921391],[4.53293357,0.02429279,94.82846092],[4.53293301,0.02429108,94.82770879],[4.53293245,0.02428936,94.82695753],[4.53293189,0.02428765,94.82620714],[4.53293133,0.02428594,94.8254576],[4.53293077,0.02428422,94.8247089],[4.53293021,0.02428251,94.82396103],[4.53292966,0.0242808,94.82321397],[4.5329291,0.02427908,94.82246772],[4.53292854,0.02427737,94.82172226],[4.53292798,0.02427566,94.82097757],[4.53292742,0.02427394,94.82023365],[4.53292686,0.02427223,94.81949048],[4.53292631,0.02427052,94.81874805],[4.53292575,0.0242688,94.81800635],[4.53292519,0.02426709,94.81726536],[4.53292463,0.02426537,94.81652508],[4.53292407,0.02426366,94.81578548],[4.53292352,0.02426195,94.81504656],[4.53292296,0.02426023,94.8143083],[4.5329224,0.02425852,94.81357069],[4.53292185,0.02425681,94.81283372],[4.53292129,0.02425509,94.81209738],[4.53292073,0.02425338,94.81136164],[4.53292017,0.02425166,94.81062651],[4.53291962,0.02424995,94.80989197],[4.53291906,0.02424824,94.809158],[4.5329185,0.02424652,94.80842459],[4.53291795,0.02424481,94.80769172],[4.53291739,0.02424309,94.8069594],[4.53291683,0.02424138,94.80622759],[4.53291628,0.02423967,94.8054963],[4.53291572,0.02423795,94.80476551],[4.53291516,0.02423624,94.80403519],[4.53291461,0.02423452,94.80330535],[4.53291405,0.02423281,94.80257597],[4.53291349,0.0242311,94.80184704],[4.53291294,0.02422938,94.80111854],[4.53291238,0.02422767,94.80039045],[4.53291182,0.02422595,94.79966278],[4.53291127,0.02422424,94.7989355],[4.53291071,0.02422252,94.7982086],[4.53291015,0.02422081,94.79748207],[4.5329096,0.0242191,94.79675589],[4.53290904,0.02421738,94.79603006],[4.53290848,0.02421567,94.79530456],[4.53290793,0.02421395,94.79457938],[4.53290737,0.02421224,94.79385449],[4.53290681,0.02421053,94.79312991],[4.53290626,0.02420881,94.79240559],[4.5329057,0.0242071,94.79168155],[4.53290514,0.02420538,94.79095775],[4.53290458,0.02420367,94.7902342],[4.53290403,0.02420196,94.78951087],[4.53290347,0.02420024,94.78878776],[4.53290291,0.02419853,94.78806484],[4.53290236,0.02419681,94.78734212],[4.5329018,0.0241951,94.78661957],[4.53290124,0.02419339,94.78589718],[4.53290068,0.02419167,94.78517494],[4.53290013,0.02418996,94.78445283],[4.5329001,0.02418989,94.78442166]],"type":"LineString"},"type":"feature","properties":{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-4,"type":"shoulder","predecessorId":-4}},{"geometry":{"coordinates":[[4.53309339,0.02477516,95.05001946],[4.53309283,0.02477344,95.0492894],[4.53309227,0.02477173,95.04855887],[4.53309172,0.02477002,95.04782786],[4.53309116,0.0247683,95.04709639],[4.5330906,0.02476659,95.04636445],[4.53309005,0.02476487,95.04563205],[4.53308949,0.02476316,95.04489919],[4.53308893,0.02476145,95.04416589],[4.53308838,0.02475973,95.04343213],[4.53308782,0.02475802,95.04269794],[4.53308726,0.02475631,95.0419633],[4.53308671,0.02475459,95.04122823],[4.53308615,0.02475288,95.04049272],[4.5330856,0.02475116,95.03975679],[4.53308504,0.02474945,95.03902044],[4.53308448,0.02474774,95.03828367],[4.53308393,0.02474602,95.03754649],[4.53308337,0.02474431,95.0368089],[4.53308281,0.0247426,95.0360709],[4.53308226,0.02474088,95.0353325],[4.5330817,0.02473917,95.0345937],[4.53308114,0.02473745,95.03385451],[4.53308059,0.02473574,95.03311493],[4.53308003,0.02473403,95.03237497],[4.53307947,0.02473231,95.03163462],[4.53307892,0.0247306,95.0308939],[4.53307836,0.02472889,95.03015281],[4.5330778,0.02472717,95.02941135],[4.53307724,0.02472546,95.02866953],[4.53307669,0.02472374,95.02792735],[4.53307613,0.02472203,95.02718481],[4.53307557,0.02472032,95.02644193],[4.53307502,0.0247186,95.02569869],[4.53307446,0.02471689,95.02495512],[4.5330739,0.02471518,95.0242112],[4.53307335,0.02471346,95.02346695],[4.53307279,0.02471175,95.02272238],[4.53307223,0.02471004,95.02197747],[4.53307168,0.02470832,95.02123225],[4.53307112,0.02470661,95.02048671],[4.53307056,0.02470489,95.01974086],[4.53307001,0.02470318,95.01899469],[4.53306945,0.02470147,95.01824823],[4.53306889,0.02469975,95.01750146],[4.53306833,0.02469804,95.0167544],[4.53306778,0.02469633,95.01600704],[4.53306722,0.02469461,95.0152594],[4.53306666,0.0246929,95.01451148],[4.53306611,0.02469119,95.01376327],[4.53306555,0.02468947,95.01301477],[4.53306499,0.02468776,95.01226597],[4.53306444,0.02468604,95.01151688],[4.53306388,0.02468433,95.01076748],[4.53306332,0.02468262,95.01001778],[4.53306276,0.0246809,95.00926776],[4.53306221,0.02467919,95.00851743],[4.53306165,0.02467748,95.00776678],[4.53306109,0.02467576,95.00701581],[4.53306054,0.02467405,95.00626451],[4.53305998,0.02467234,95.00551287],[4.53305942,0.02467062,95.0047609],[4.53305886,0.02466891,95.00400859],[4.53305831,0.0246672,95.00325595],[4.53305775,0.02466548,95.00250297],[4.53305719,0.02466377,95.00174965],[4.53305664,0.02466205,95.00099596],[4.53305608,0.02466034,95.00024191],[4.53305552,0.02465863,94.99948749],[4.53305496,0.02465691,94.99873271],[4.53305441,0.0246552,94.99797758],[4.53305385,0.02465349,94.99722208],[4.53305329,0.02465177,94.99646623],[4.53305273,0.02465006,94.99571003],[4.53305217,0.02464835,94.99495347],[4.53305162,0.02464663,94.99419657],[4.53305106,0.02464492,94.99343933],[4.5330505,0.02464321,94.99268174],[4.53304994,0.02464149,94.99192381],[4.53304939,0.02463978,94.99116554],[4.53304883,0.02463807,94.99040694],[4.53304827,0.02463635,94.989648],[4.53304771,0.02463464,94.98888873],[4.53304715,0.02463293,94.98812914],[4.5330466,0.02463121,94.98736922],[4.53304604,0.0246295,94.98660897],[4.53304548,0.02462779,94.9858484],[4.53304492,0.02462607,94.98508752],[4.53304436,0.02462436,94.98432631],[4.5330438,0.02462265,94.9835648],[4.53304325,0.02462093,94.98280297],[4.53304269,0.02461922,94.98204083],[4.53304213,0.02461751,94.98127838],[4.53304157,0.02461579,94.98051563],[4.53304101,0.02461408,94.97975258],[4.53304045,0.02461237,94.97898923],[4.53303989,0.02461065,94.97822558],[4.53303933,0.02460894,94.97746163],[4.53303878,0.02460723,94.9766974],[4.53303822,0.02460552,94.97593287],[4.53303766,0.0246038,94.97516805],[4.5330371,0.02460209,94.97440295],[4.53303654,0.02460038,94.97363756],[4.53303598,0.02459866,94.9728719],[4.53303542,0.02459695,94.97210595],[4.53303486,0.02459524,94.97133973],[4.5330343,0.02459352,94.97057324],[4.53303374,0.02459181,94.96980647],[4.53303319,0.0245901,94.96903943],[4.53303263,0.02458839,94.96827213],[4.53303207,0.02458667,94.96750456],[4.53303151,0.02458496,94.96673673],[4.53303095,0.02458325,94.96596865],[4.53303039,0.02458153,94.9652003],[4.53302983,0.02457982,94.9644317],[4.53302927,0.02457811,94.96366285],[4.53302871,0.0245764,94.96289374],[4.53302815,0.02457468,94.96212439],[4.53302759,0.02457297,94.9613548],[4.53302703,0.02457126,94.96058496],[4.53302647,0.02456954,94.95981488],[4.53302591,0.02456783,94.95904456],[4.53302535,0.02456612,94.95827401],[4.53302479,0.02456441,94.95750322],[4.53302423,0.02456269,94.9567322],[4.53302367,0.02456098,94.95596095],[4.53302311,0.02455927,94.95518948],[4.53302255,0.02455756,94.95441778],[4.53302199,0.02455584,94.95364586],[4.53302143,0.02455413,94.95287372],[4.53302087,0.02455242,94.95210136],[4.53302031,0.0245507,94.95132879],[4.53301975,0.02454899,94.95055601],[4.53301919,0.02454728,94.94978301],[4.53301863,0.02454557,94.94900981],[4.53301807,0.02454385,94.94823641],[4.53301751,0.02454214,94.9474628],[4.53301695,0.02454043,94.94668899],[4.53301639,0.02453872,94.94591498],[4.53301582,0.024537,94.94514078],[4.53301526,0.02453529,94.94436638],[4.5330147,0.02453358,94.94359179],[4.53301414,0.02453187,94.94281702],[4.53301358,0.02453015,94.94204205],[4.53301302,0.02452844,94.94126691],[4.53301246,0.02452673,94.94049158],[4.5330119,0.02452502,94.93971607],[4.53301134,0.0245233,94.93894038],[4.53301078,0.02452159,94.93816453],[4.53301021,0.02451988,94.93738849],[4.53300965,0.02451817,94.93661229],[4.53300909,0.02451645,94.93583592],[4.53300853,0.02451474,94.93505939],[4.53300797,0.02451303,94.93428269],[4.53300741,0.02451132,94.93350585],[4.53300685,0.02450961,94.93272889],[4.53300629,0.02450789,94.9319519],[4.53300572,0.02450618,94.93117488],[4.53300516,0.02450447,94.93039784],[4.5330046,0.02450276,94.92962079],[4.53300404,0.02450104,94.92884373],[4.53300348,0.02449933,94.92806665],[4.53300292,0.02449762,94.92728956],[4.53300235,0.02449591,94.92651246],[4.53300179,0.02449419,94.92573535],[4.53300123,0.02449248,94.92495822],[4.53300067,0.02449077,94.92418107],[4.53300011,0.02448906,94.9234039],[4.53299955,0.02448735,94.92262672],[4.53299899,0.02448563,94.92184951],[4.53299842,0.02448392,94.92107227],[4.53299786,0.02448221,94.92029501],[4.5329973,0.0244805,94.91951772],[4.53299674,0.02447878,94.9187404],[4.53299618,0.02447707,94.91796305],[4.53299562,0.02447536,94.91718566],[4.53299505,0.02447365,94.91640824],[4.53299449,0.02447194,94.91563078],[4.53299393,0.02447022,94.91485328],[4.53299337,0.02446851,94.91407574],[4.53299281,0.0244668,94.91329815],[4.53299224,0.02446509,94.91252053],[4.53299168,0.02446337,94.91174285],[4.53299112,0.02446166,94.91096513],[4.53299056,0.02445995,94.91018735],[4.53299,0.02445824,94.90940953],[4.53298943,0.02445653,94.90863165],[4.53298887,0.02445481,94.90785371],[4.53298831,0.0244531,94.90707571],[4.53298775,0.02445139,94.90629766],[4.53298719,0.02444968,94.90551957],[4.53298662,0.02444797,94.90474146],[4.53298606,0.02444625,94.90396334],[4.5329855,0.02444454,94.90318521],[4.53298494,0.02444283,94.90240709],[4.53298437,0.02444112,94.90162899],[4.53298381,0.02443941,94.90085091],[4.53298325,0.02443769,94.90007287],[4.53298269,0.02443598,94.89929487],[4.53298213,0.02443427,94.89851692],[4.53298156,0.02443256,94.89773904],[4.532981,0.02443085,94.89696122],[4.53298044,0.02442913,94.89618349],[4.53297988,0.02442742,94.89540585],[4.53297931,0.02442571,94.8946283],[4.53297875,0.024424,94.89385087],[4.53297819,0.02442228,94.89307355],[4.53297763,0.02442057,94.89229635],[4.53297706,0.02441886,94.8915193],[4.5329765,0.02441715,94.89074239],[4.53297594,0.02441544,94.88996563],[4.53297538,0.02441372,94.88918904],[4.53297481,0.02441201,94.88841262],[4.53297425,0.0244103,94.88763638],[4.53297369,0.02440859,94.88686033],[4.53297313,0.02440688,94.88608449],[4.53297256,0.02440516,94.88530885],[4.532972,0.02440345,94.88453344],[4.53297144,0.02440174,94.88375825],[4.53297088,0.02440003,94.8829833],[4.53297031,0.02439832,94.8822086],[4.53296975,0.0243966,94.88143415],[4.53296919,0.02439489,94.88065997],[4.53296863,0.02439318,94.87988607],[4.53296807,0.02439147,94.87911245],[4.5329675,0.02438976,94.87833913],[4.53296694,0.02438804,94.87756611],[4.53296638,0.02438633,94.8767934],[4.53296582,0.02438462,94.87602101],[4.53296525,0.02438291,94.87524895],[4.53296469,0.02438119,94.87447724],[4.53296413,0.02437948,94.87370587],[4.53296357,0.02437777,94.87293487],[4.53296301,0.02437606,94.87216423],[4.53296245,0.02437435,94.87139398],[4.53296188,0.02437263,94.8706241],[4.53296132,0.02437092,94.86985463],[4.53296076,0.02436921,94.86908556],[4.5329602,0.0243675,94.86831691],[4.53295964,0.02436578,94.86754869],[4.53295908,0.02436407,94.86678092],[4.53295852,0.02436236,94.86601361],[4.53295795,0.02436065,94.86524678],[4.53295739,0.02435893,94.86448041],[4.53295683,0.02435722,94.8637145],[4.53295627,0.02435551,94.86294906],[4.53295571,0.0243538,94.86218407],[4.53295515,0.02435208,94.86141952],[4.53295459,0.02435037,94.86065542],[4.53295403,0.02434866,94.85989175],[4.53295347,0.02434694,94.85912852],[4.53295291,0.02434523,94.85836571],[4.53295235,0.02434352,94.85760333],[4.53295179,0.02434181,94.85684137],[4.53295123,0.02434009,94.85607981],[4.53295067,0.02433838,94.85531867],[4.53295011,0.02433667,94.85455792],[4.53294955,0.02433496,94.85379758],[4.53294899,0.02433324,94.85303762],[4.53294843,0.02433153,94.85227805],[4.53294787,0.02432982,94.85151887],[4.53294731,0.0243281,94.85076006],[4.53294675,0.02432639,94.85000161],[4.53294619,0.02432468,94.84924351],[4.53294563,0.02432296,94.84848576],[4.53294507,0.02432125,94.84772834],[4.53294451,0.02431954,94.84697126],[4.53294395,0.02431783,94.8462145],[4.53294339,0.02431611,94.84545807],[4.53294283,0.0243144,94.84470196],[4.53294227,0.02431269,94.84394618],[4.53294171,0.02431097,94.84319072],[4.53294115,0.02430926,94.84243558],[4.53294059,0.02430755,94.84168075],[4.53294003,0.02430584,94.84092624],[4.53293947,0.02430412,94.84017205],[4.53293891,0.02430241,94.83941817],[4.53293835,0.0243007,94.83866459],[4.53293779,0.02429898,94.83791133],[4.53293723,0.02429727,94.83715837],[4.53293667,0.02429556,94.83640571],[4.53293611,0.02429384,94.83565336],[4.53293555,0.02429213,94.83490131],[4.53293499,0.02429042,94.83414955],[4.53293443,0.02428871,94.8333981],[4.53293387,0.02428699,94.83264693],[4.53293331,0.02428528,94.83189606],[4.53293275,0.02428357,94.83114548],[4.53293219,0.02428185,94.83039519],[4.53293163,0.02428014,94.82964519],[4.53293107,0.02427843,94.82889547],[4.53293051,0.02427671,94.82814603],[4.53292995,0.024275,94.82739688],[4.53292939,0.02427329,94.826648],[4.53292883,0.02427158,94.82589941],[4.53292827,0.02426986,94.82515108],[4.53292771,0.02426815,94.82440303],[4.53292715,0.02426644,94.82365525],[4.53292659,0.02426472,94.82290774],[4.53292603,0.02426301,94.8221605],[4.53292547,0.0242613,94.82141353],[4.53292491,0.02425959,94.82066681],[4.53292435,0.02425787,94.81992036],[4.53292379,0.02425616,94.81917417],[4.53292323,0.02425445,94.81842823],[4.53292267,0.02425273,94.81768255],[4.53292211,0.02425102,94.81693713],[4.53292155,0.02424931,94.81619196],[4.53292099,0.02424759,94.81544703],[4.53292043,0.02424588,94.81470235],[4.53291987,0.02424417,94.81395792],[4.5329193,0.02424246,94.81321374],[4.53291874,0.02424074,94.81246979],[4.53291818,0.02423903,94.81172609],[4.53291762,0.02423732,94.81098262],[4.53291706,0.02423561,94.81023939],[4.5329165,0.02423389,94.80949639],[4.53291594,0.02423218,94.80875362],[4.53291538,0.02423047,94.80801109],[4.53291482,0.02422875,94.80726878],[4.53291426,0.02422704,94.8065267],[4.5329137,0.02422533,94.80578484],[4.53291314,0.02422362,94.8050432],[4.53291257,0.0242219,94.80430179],[4.53291201,0.02422019,94.80356059],[4.53291145,0.02421848,94.80281961],[4.53291089,0.02421677,94.80207884],[4.53291033,0.02421505,94.80133828],[4.53290977,0.02421334,94.80059794],[4.53290921,0.02421163,94.7998578],[4.53290864,0.02420992,94.79911787],[4.53290808,0.0242082,94.79837814],[4.53290752,0.02420649,94.79763862],[4.53290696,0.02420478,94.79689929],[4.5329064,0.02420307,94.79616016],[4.53290583,0.02420135,94.79542123],[4.53290527,0.02419964,94.7946825],[4.53290471,0.02419793,94.79394395],[4.53290415,0.02419622,94.7932056],[4.53290359,0.02419451,94.79246743],[4.53290302,0.02419279,94.79172945],[4.53290246,0.02419108,94.79099166],[4.5329019,0.02418937,94.79025405],[4.53290187,0.0241893,94.7902222]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3}},{"geometry":{"coordinates":[[4.53312238,0.0247656,95.14048575],[4.53312183,0.02476389,95.13975798],[4.53312127,0.02476218,95.13902948],[4.53312071,0.02476046,95.13830026],[4.53312016,0.02475875,95.13757034],[4.5331196,0.02475703,95.13683972],[4.53311904,0.02475532,95.13610845],[4.53311848,0.02475361,95.13537652],[4.53311793,0.02475189,95.13464396],[4.53311737,0.02475018,95.13391079],[4.53311681,0.02474846,95.13317702],[4.53311625,0.02474675,95.13244268],[4.5331157,0.02474504,95.13170778],[4.53311514,0.02474332,95.13097234],[4.53311458,0.02474161,95.13023638],[4.53311402,0.0247399,95.12949991],[4.53311346,0.02473818,95.12876296],[4.53311291,0.02473647,95.12802554],[4.53311235,0.02473475,95.12728767],[4.53311179,0.02473304,95.12654938],[4.53311123,0.02473133,95.12581067],[4.53311067,0.02472961,95.12507156],[4.53311011,0.0247279,95.12433208],[4.53310956,0.02472619,95.12359224],[4.533109,0.02472447,95.12285206],[4.53310844,0.02472276,95.12211156],[4.53310788,0.02472105,95.12137076],[4.53310732,0.02471933,95.12062967],[4.53310676,0.02471762,95.11988831],[4.5331062,0.02471591,95.11914671],[4.53310564,0.02471419,95.11840487],[4.53310508,0.02471248,95.11766283],[4.53310452,0.02471077,95.11692059],[4.53310397,0.02470905,95.11617817],[4.53310341,0.02470734,95.11543559],[4.53310285,0.02470563,95.11469288],[4.53310229,0.02470391,95.11395005],[4.53310173,0.0247022,95.11320711],[4.53310117,0.02470049,95.11246409],[4.53310061,0.02469877,95.111721],[4.53310005,0.02469706,95.11097786],[4.53309949,0.02469535,95.1102347],[4.53309894,0.02469363,95.10949152],[4.53309838,0.02469192,95.10874835],[4.53309782,0.02469021,95.10800521],[4.53309726,0.02468849,95.10726211],[4.5330967,0.02468678,95.10651907],[4.53309614,0.02468507,95.10577612],[4.53309558,0.02468335,95.10503326],[4.53309503,0.02468164,95.10429051],[4.53309447,0.02467993,95.10354788],[4.53309391,0.02467821,95.10280538],[4.53309335,0.0246765,95.10206302],[4.53309279,0.02467479,95.10132081],[4.53309224,0.02467307,95.10057876],[4.53309168,0.02467136,95.09983688],[4.53309112,0.02466964,95.09909519],[4.53309056,0.02466793,95.09835368],[4.53309001,0.02466622,95.09761237],[4.53308945,0.0246645,95.09687127],[4.53308889,0.02466279,95.09613039],[4.53308833,0.02466107,95.09538974],[4.53308778,0.02465936,95.09464933],[4.53308722,0.02465765,95.09390918],[4.53308666,0.02465593,95.09316931],[4.53308611,0.02465422,95.09242972],[4.53308555,0.0246525,95.0916904],[4.53308499,0.02465079,95.09095133],[4.53308444,0.02464908,95.09021251],[4.53308388,0.02464736,95.08947393],[4.53308332,0.02464565,95.08873556],[4.53308277,0.02464393,95.08799741],[4.53308221,0.02464222,95.08725946],[4.53308166,0.0246405,95.0865217],[4.5330811,0.02463879,95.08578412],[4.53308055,0.02463708,95.0850467],[4.53307999,0.02463536,95.08430943],[4.53307944,0.02463365,95.08357231],[4.53307888,0.02463193,95.08283532],[4.53307832,0.02463022,95.08209845],[4.53307777,0.0246285,95.08136169],[4.53307721,0.02462679,95.08062503],[4.53307666,0.02462507,95.07988845],[4.5330761,0.02462336,95.07915194],[4.53307555,0.02462164,95.0784155],[4.53307499,0.02461993,95.07767911],[4.53307444,0.02461821,95.07694276],[4.53307388,0.0246165,95.07620643],[4.53307333,0.02461479,95.07547013],[4.53307277,0.02461307,95.07473382],[4.53307222,0.02461136,95.07399751],[4.53307166,0.02460964,95.07326118],[4.53307111,0.02460793,95.07252483],[4.53307056,0.02460621,95.07178843],[4.53307,0.0246045,95.07105197],[4.53306945,0.02460278,95.07031546],[4.53306889,0.02460107,95.06957886],[4.53306834,0.02459935,95.06884218],[4.53306778,0.02459764,95.0681054],[4.53306723,0.02459592,95.06736851],[4.53306667,0.02459421,95.0666315],[4.53306612,0.02459249,95.06589435],[4.53306556,0.02459078,95.06515706],[4.53306501,0.02458906,95.0644196],[4.53306445,0.02458735,95.06368198],[4.5330639,0.02458563,95.06294418],[4.53306334,0.02458392,95.06220618],[4.53306279,0.02458221,95.06146799],[4.53306223,0.02458049,95.06072957],[4.53306168,0.02457878,95.05999093],[4.53306112,0.02457706,95.05925204],[4.53306057,0.02457535,95.05851291],[4.53306001,0.02457363,95.05777351],[4.53305945,0.02457192,95.05703384],[4.5330589,0.0245702,95.05629388],[4.53305834,0.02456849,95.05555363],[4.53305779,0.02456677,95.05481306],[4.53305723,0.02456506,95.05407217],[4.53305668,0.02456335,95.05333095],[4.53305612,0.02456163,95.05258938],[4.53305556,0.02455992,95.05184745],[4.53305501,0.0245582,95.05110516],[4.53305445,0.02455649,95.05036248],[4.5330539,0.02455477,95.04961941],[4.53305334,0.02455306,95.04887594],[4.53305278,0.02455135,95.04813205],[4.53305223,0.02454963,95.04738773],[4.53305167,0.02454792,95.04664297],[4.53305111,0.0245462,95.04589776],[4.53305055,0.02454449,95.04515208],[4.53305,0.02454278,95.04440593],[4.53304944,0.02454106,95.04365929],[4.53304888,0.02453935,95.04291215],[4.53304832,0.02453763,95.04216449],[4.53304777,0.02453592,95.04141632],[4.53304721,0.02453421,95.0406676],[4.53304665,0.02453249,95.03991834],[4.53304609,0.02453078,95.03916852],[4.53304553,0.02452907,95.03841812],[4.53304497,0.02452735,95.03766715],[4.53304441,0.02452564,95.03691557],[4.53304385,0.02452393,95.03616339],[4.5330433,0.02452221,95.03541058],[4.53304274,0.0245205,95.03465715],[4.53304218,0.02451879,95.03390306],[4.53304162,0.02451707,95.03314833],[4.53304106,0.02451536,95.03239292],[4.5330405,0.02451365,95.03163683],[4.53303993,0.02451193,95.03088005],[4.53303937,0.02451022,95.03012256],[4.53303881,0.02450851,95.02936436],[4.53303825,0.0245068,95.02860542],[4.53303769,0.02450508,95.02784575],[4.53303713,0.02450337,95.02708532],[4.53303657,0.02450166,95.02632413],[4.533036,0.02449995,95.02556222],[4.53303544,0.02449823,95.02479962],[4.53303488,0.02449652,95.02403639],[4.53303432,0.02449481,95.02327256],[4.53303375,0.0244931,95.02250818],[4.53303319,0.02449139,95.02174328],[4.53303263,0.02448967,95.02097792],[4.53303206,0.02448796,95.02021213],[4.5330315,0.02448625,95.01944595],[4.53303093,0.02448454,95.01867943],[4.53303037,0.02448283,95.01791261],[4.53302981,0.02448111,95.01714551],[4.53302924,0.0244794,95.01637819],[4.53302868,0.02447769,95.01561069],[4.53302811,0.02447598,95.01484304],[4.53302755,0.02447427,95.01407528],[4.53302699,0.02447256,95.01330746],[4.53302642,0.02447084,95.01253961],[4.53302586,0.02446913,95.01177178],[4.53302529,0.02446742,95.011004],[4.53302473,0.02446571,95.01023631],[4.53302416,0.024464,95.00946876],[4.5330236,0.02446229,95.00870138],[4.53302304,0.02446057,95.00793422],[4.53302247,0.02445886,95.00716731],[4.53302191,0.02445715,95.00640069],[4.53302134,0.02445544,95.00563442],[4.53302078,0.02445373,95.00486851],[4.53302022,0.02445202,95.00410302],[4.53301965,0.0244503,95.00333799],[4.53301909,0.02444859,95.00257346],[4.53301853,0.02444688,95.00180946],[4.53301796,0.02444517,95.00104604],[4.5330174,0.02444346,95.00028324],[4.53301684,0.02444174,94.99952109],[4.53301627,0.02444003,94.99875964],[4.53301571,0.02443832,94.99799887],[4.53301515,0.02443661,94.99723877],[4.53301459,0.02443489,94.99647934],[4.53301403,0.02443318,94.99572056],[4.53301346,0.02443147,94.99496242],[4.5330129,0.02442976,94.9942049],[4.53301234,0.02442804,94.993448],[4.53301178,0.02442633,94.9926917],[4.53301122,0.02442462,94.99193599],[4.53301066,0.0244229,94.99118085],[4.5330101,0.02442119,94.99042628],[4.53300954,0.02441948,94.98967226],[4.53300898,0.02441777,94.98891878],[4.53300842,0.02441605,94.98816583],[4.53300786,0.02441434,94.9874134],[4.5330073,0.02441263,94.98666146],[4.53300674,0.02441091,94.98591002],[4.53300618,0.0244092,94.98515906],[4.53300562,0.02440749,94.98440856],[4.53300506,0.02440577,94.98365852],[4.5330045,0.02440406,94.98290892],[4.53300394,0.02440235,94.98215974],[4.53300338,0.02440063,94.98141099],[4.53300282,0.02439892,94.98066264],[4.53300226,0.02439721,94.97991468],[4.5330017,0.02439549,94.9791671],[4.53300114,0.02439378,94.97841988],[4.53300058,0.02439207,94.97767302],[4.53300002,0.02439035,94.97692651],[4.53299947,0.02438864,94.97618032],[4.53299891,0.02438693,94.97543445],[4.53299835,0.02438521,94.97468888],[4.53299779,0.0243835,94.97394361],[4.53299723,0.02438179,94.97319862],[4.53299667,0.02438007,94.97245389],[4.53299611,0.02437836,94.97170942],[4.53299556,0.02437664,94.97096519],[4.532995,0.02437493,94.97022118],[4.53299444,0.02437322,94.9694774],[4.53299388,0.0243715,94.96873382],[4.53299332,0.02436979,94.96799043],[4.53299276,0.02436808,94.96724722],[4.53299221,0.02436636,94.96650418],[4.53299165,0.02436465,94.96576129],[4.53299109,0.02436293,94.96501854],[4.53299053,0.02436122,94.96427592],[4.53298997,0.02435951,94.96353342],[4.53298941,0.02435779,94.96279102],[4.53298886,0.02435608,94.96204871],[4.5329883,0.02435437,94.9613065],[4.53298774,0.02435265,94.96056437],[4.53298718,0.02435094,94.95982233],[4.53298662,0.02434923,94.95908036],[4.53298606,0.02434751,94.95833848],[4.53298551,0.0243458,94.95759666],[4.53298495,0.02434408,94.95685492],[4.53298439,0.02434237,94.95611324],[4.53298383,0.02434066,94.95537162],[4.53298327,0.02433894,94.95463006],[4.53298271,0.02433723,94.95388855],[4.53298215,0.02433552,94.95314709],[4.5329816,0.0243338,94.95240568],[4.53298104,0.02433209,94.95166431],[4.53298048,0.02433038,94.95092298],[4.53297992,0.02432866,94.95018169],[4.53297936,0.02432695,94.94944042],[4.5329788,0.02432523,94.94869918],[4.53297824,0.02432352,94.94795797],[4.53297768,0.02432181,94.94721678],[4.53297712,0.02432009,94.9464756],[4.53297657,0.02431838,94.94573443],[4.53297601,0.02431667,94.94499327],[4.53297545,0.02431495,94.94425209],[4.53297489,0.02431324,94.9435109],[4.53297433,0.02431153,94.94276969],[4.53297377,0.02430981,94.94202844],[4.53297321,0.0243081,94.94128717],[4.53297265,0.02430639,94.94054587],[4.53297209,0.02430467,94.93980455],[4.53297153,0.02430296,94.93906319],[4.53297097,0.02430125,94.93832181],[4.53297041,0.02429953,94.93758039],[4.53296985,0.02429782,94.93683895],[4.53296929,0.02429611,94.93609747],[4.53296873,0.02429439,94.93535597],[4.53296817,0.02429268,94.93461443],[4.53296761,0.02429097,94.93387286],[4.53296705,0.02428925,94.93313125],[4.53296649,0.02428754,94.93238961],[4.53296593,0.02428583,94.93164794],[4.53296537,0.02428412,94.93090623],[4.53296481,0.0242824,94.93016449],[4.53296425,0.02428069,94.92942271],[4.53296369,0.02427898,94.9286809],[4.53296313,0.02427726,94.92793905],[4.53296257,0.02427555,94.92719716],[4.53296201,0.02427384,94.92645524],[4.53296145,0.02427212,94.92571328],[4.53296088,0.02427041,94.92497127],[4.53296032,0.0242687,94.92422923],[4.53295976,0.02426699,94.92348715],[4.5329592,0.02426527,94.92274503],[4.53295864,0.02426356,94.92200287],[4.53295808,0.02426185,94.92126067],[4.53295752,0.02426014,94.92051842],[4.53295695,0.02425842,94.91977614],[4.53295639,0.02425671,94.91903381],[4.53295583,0.024255,94.91829144],[4.53295527,0.02425328,94.91754902],[4.53295471,0.02425157,94.91680656],[4.53295415,0.02424986,94.91606405],[4.53295358,0.02424815,94.9153215],[4.53295302,0.02424643,94.91457891],[4.53295246,0.02424472,94.91383626],[4.5329519,0.02424301,94.91309357],[4.53295133,0.0242413,94.91235084],[4.53295077,0.02423958,94.91160805],[4.53295021,0.02423787,94.91086522],[4.53294965,0.02423616,94.91012234],[4.53294908,0.02423445,94.90937941],[4.53294852,0.02423274,94.90863642],[4.53294796,0.02423102,94.90789339],[4.53294739,0.02422931,94.90715031],[4.53294683,0.0242276,94.90640718],[4.53294627,0.02422589,94.90566399],[4.5329457,0.02422417,94.90492076],[4.53294514,0.02422246,94.90417747],[4.53294458,0.02422075,94.90343412],[4.53294401,0.02421904,94.90269072],[4.53294345,0.02421733,94.90194727],[4.53294289,0.02421561,94.90120377],[4.53294232,0.0242139,94.90046021],[4.53294176,0.02421219,94.89971659],[4.53294119,0.02421048,94.89897292],[4.53294063,0.02420877,94.89822919],[4.53294006,0.02420706,94.8974854],[4.5329395,0.02420534,94.89674156],[4.53293894,0.02420363,94.89599766],[4.53293837,0.02420192,94.8952537],[4.53293781,0.02420021,94.89450968],[4.53293724,0.0241985,94.8937656],[4.53293668,0.02419679,94.89302147],[4.53293611,0.02419507,94.89227727],[4.53293555,0.02419336,94.89153301],[4.53293498,0.02419165,94.89078869],[4.53293442,0.02418994,94.89004431],[4.53293385,0.02418823,94.88929987],[4.53293328,0.02418652,94.88855537],[4.53293272,0.02418481,94.8878108],[4.53293215,0.02418309,94.88706617],[4.53293159,0.02418138,94.88632147],[4.53293102,0.02417967,94.88557672],[4.532931,0.0241796,94.88554455]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2}},{"geometry":{"coordinates":[[4.5331536,0.02475532,95.23787914],[4.53315304,0.0247536,95.23715659],[4.53315249,0.02475189,95.23643381],[4.53315193,0.02475017,95.23571081],[4.53315138,0.02474846,95.23498758],[4.53315082,0.02474674,95.23426415],[4.53315027,0.02474503,95.23354049],[4.53314971,0.02474332,95.23281663],[4.53314915,0.0247416,95.23209256],[4.5331486,0.02473989,95.23136829],[4.53314804,0.02473817,95.23064382],[4.53314749,0.02473646,95.22991915],[4.53314693,0.02473474,95.22919428],[4.53314637,0.02473303,95.22846923],[4.53314582,0.02473131,95.22774399],[4.53314526,0.0247296,95.22701857],[4.53314471,0.02472788,95.22629297],[4.53314415,0.02472617,95.22556719],[4.53314359,0.02472445,95.22484123],[4.53314304,0.02472274,95.22411511],[4.53314248,0.02472102,95.22338882],[4.53314192,0.02471931,95.22266237],[4.53314137,0.0247176,95.22193576],[4.53314081,0.02471588,95.22120899],[4.53314025,0.02471417,95.22048206],[4.5331397,0.02471245,95.21975499],[4.53313914,0.02471074,95.21902777],[4.53313858,0.02470902,95.21830041],[4.53313803,0.02470731,95.21757291],[4.53313747,0.02470559,95.21684527],[4.53313691,0.02470388,95.2161175],[4.53313636,0.02470217,95.2153896],[4.5331358,0.02470045,95.21466157],[4.53313524,0.02469874,95.21393342],[4.53313469,0.02469702,95.21320515],[4.53313413,0.02469531,95.21247676],[4.53313357,0.02469359,95.21174826],[4.53313301,0.02469188,95.21101965],[4.53313246,0.02469017,95.21029094],[4.5331319,0.02468845,95.20956212],[4.53313134,0.02468674,95.2088332],[4.53313078,0.02468502,95.20810418],[4.53313023,0.02468331,95.20737508],[4.53312967,0.02468159,95.20664588],[4.53312911,0.02467988,95.20591659],[4.53312856,0.02467817,95.20518723],[4.533128,0.02467645,95.20445778],[4.53312744,0.02467474,95.20372826],[4.53312688,0.02467302,95.20299866],[4.53312633,0.02467131,95.20226898],[4.53312577,0.02466959,95.20153923],[4.53312521,0.02466788,95.20080939],[4.53312465,0.02466617,95.20007945],[4.5331241,0.02466445,95.19934942],[4.53312354,0.02466274,95.19861929],[4.53312298,0.02466102,95.19788905],[4.53312242,0.02465931,95.1971587],[4.53312187,0.0246576,95.19642823],[4.53312131,0.02465588,95.19569764],[4.53312075,0.02465417,95.19496692],[4.53312019,0.02465245,95.19423606],[4.53311963,0.02465074,95.19350507],[4.53311908,0.02464902,95.19277394],[4.53311852,0.02464731,95.19204267],[4.53311796,0.0246456,95.19131127],[4.5331174,0.02464388,95.19057973],[4.53311684,0.02464217,95.18984806],[4.53311629,0.02464045,95.18911626],[4.53311573,0.02463874,95.18838433],[4.53311517,0.02463703,95.18765227],[4.53311461,0.02463531,95.18692009],[4.53311405,0.0246336,95.18618779],[4.53311349,0.02463188,95.18545537],[4.53311294,0.02463017,95.18472283],[4.53311238,0.02462846,95.18399017],[4.53311182,0.02462674,95.1832574],[4.53311126,0.02462503,95.18252452],[4.5331107,0.02462332,95.18179152],[4.53311014,0.0246216,95.18105842],[4.53310958,0.02461989,95.18032521],[4.53310903,0.02461817,95.17959189],[4.53310847,0.02461646,95.17885848],[4.53310791,0.02461475,95.17812496],[4.53310735,0.02461303,95.17739134],[4.53310679,0.02461132,95.17665762],[4.53310623,0.0246096,95.17592381],[4.53310567,0.02460789,95.17518991],[4.53310511,0.02460618,95.17445591],[4.53310456,0.02460446,95.17372183],[4.533104,0.02460275,95.17298766],[4.53310344,0.02460104,95.1722534],[4.53310288,0.02459932,95.17151906],[4.53310232,0.02459761,95.17078463],[4.53310176,0.0245959,95.17005013],[4.5331012,0.02459418,95.16931555],[4.53310064,0.02459247,95.1685809],[4.53310008,0.02459075,95.16784617],[4.53309952,0.02458904,95.16711137],[4.53309896,0.02458733,95.1663765],[4.5330984,0.02458561,95.16564156],[4.53309785,0.0245839,95.16490655],[4.53309729,0.02458219,95.16417148],[4.53309673,0.02458047,95.16343635],[4.53309617,0.02457876,95.16270116],[4.53309561,0.02457704,95.16196591],[4.53309505,0.02457533,95.1612306],[4.53309449,0.02457362,95.16049525],[4.53309393,0.0245719,95.15975983],[4.53309337,0.02457019,95.15902437],[4.53309281,0.02456848,95.15828886],[4.53309225,0.02456676,95.1575533],[4.53309169,0.02456505,95.1568177],[4.53309113,0.02456334,95.15608206],[4.53309057,0.02456162,95.15534637],[4.53309001,0.02455991,95.15461065],[4.53308945,0.0245582,95.15387489],[4.53308889,0.02455648,95.15313909],[4.53308833,0.02455477,95.15240327],[4.53308777,0.02455306,95.15166741],[4.53308721,0.02455134,95.15093152],[4.53308665,0.02454963,95.15019561],[4.5330861,0.02454791,95.14945967],[4.53308554,0.0245462,95.14872371],[4.53308498,0.02454449,95.14798773],[4.53308442,0.02454277,95.14725173],[4.53308386,0.02454106,95.14651571],[4.5330833,0.02453935,95.14577968],[4.53308274,0.02453763,95.14504363],[4.53308218,0.02453592,95.14430758],[4.53308162,0.02453421,95.14357151],[4.53308106,0.02453249,95.14283544],[4.5330805,0.02453078,95.14209937],[4.53307994,0.02452907,95.14136329],[4.53307938,0.02452735,95.1406272],[4.53307882,0.02452564,95.13989112],[4.53307826,0.02452393,95.13915505],[4.5330777,0.02452221,95.13841898],[4.53307714,0.0245205,95.13768291],[4.53307658,0.02451879,95.13694685],[4.53307602,0.02451707,95.13621081],[4.53307546,0.02451536,95.13547478],[4.5330749,0.02451365,95.13473876],[4.53307434,0.02451193,95.13400276],[4.53307378,0.02451022,95.13326678],[4.53307322,0.02450851,95.13253082],[4.53307266,0.02450679,95.13179488],[4.5330721,0.02450508,95.13105897],[4.53307154,0.02450337,95.13032308],[4.53307098,0.02450165,95.12958722],[4.53307042,0.02449994,95.1288514],[4.53306986,0.02449823,95.1281156],[4.5330693,0.02449651,95.12737984],[4.53306874,0.0244948,95.12664412],[4.53306818,0.02449309,95.12590844],[4.53306762,0.02449137,95.1251728],[4.53306706,0.02448966,95.1244372],[4.5330665,0.02448794,95.12370165],[4.53306594,0.02448623,95.12296614],[4.53306538,0.02448452,95.12223068],[4.53306482,0.0244828,95.12149528],[4.53306426,0.02448109,95.12075992],[4.5330637,0.02447938,95.12002462],[4.53306314,0.02447766,95.11928938],[4.53306258,0.02447595,95.1185542],[4.53306202,0.02447424,95.11781908],[4.53306146,0.02447252,95.11708401],[4.5330609,0.02447081,95.116349],[4.53306034,0.0244691,95.11561404],[4.53305978,0.02446738,95.11487914],[4.53305922,0.02446567,95.11414429],[4.53305866,0.02446396,95.11340949],[4.5330581,0.02446224,95.11267474],[4.53305754,0.02446053,95.11194005],[4.53305698,0.02445882,95.11120541],[4.53305642,0.0244571,95.11047081],[4.53305586,0.02445539,95.10973626],[4.5330553,0.02445368,95.10900176],[4.53305474,0.02445196,95.10826731],[4.53305418,0.02445025,95.1075329],[4.53305362,0.02444854,95.10679854],[4.53305306,0.02444682,95.10606422],[4.5330525,0.02444511,95.10532995],[4.53305194,0.0244434,95.10459571],[4.53305138,0.02444168,95.10386152],[4.53305082,0.02443997,95.10312737],[4.53305026,0.02443826,95.10239326],[4.5330497,0.02443654,95.10165919],[4.53304914,0.02443483,95.10092516],[4.53304858,0.02443312,95.10019116],[4.53304802,0.0244314,95.0994572],[4.53304746,0.02442969,95.09872328],[4.5330469,0.02442797,95.09798939],[4.53304634,0.02442626,95.09725554],[4.53304578,0.02442455,95.09652171],[4.53304522,0.02442283,95.09578792],[4.53304466,0.02442112,95.09505417],[4.5330441,0.02441941,95.09432044],[4.53304354,0.02441769,95.09358674],[4.53304298,0.02441598,95.09285307],[4.53304242,0.02441427,95.09211943],[4.53304186,0.02441255,95.09138581],[4.5330413,0.02441084,95.09065223],[4.53304074,0.02440913,95.08991866],[4.53304018,0.02440741,95.08918512],[4.53303962,0.0244057,95.08845161],[4.53303906,0.02440399,95.08771812],[4.5330385,0.02440227,95.08698465],[4.53303794,0.02440056,95.0862512],[4.53303738,0.02439885,95.08551777],[4.53303682,0.02439713,95.08478436],[4.53303626,0.02439542,95.08405096],[4.5330357,0.02439371,95.08331759],[4.53303514,0.02439199,95.08258423],[4.53303458,0.02439028,95.08185089],[4.53303402,0.02438857,95.08111756],[4.53303345,0.02438685,95.08038425],[4.53303289,0.02438514,95.07965095],[4.53303233,0.02438343,95.07891766],[4.53303177,0.02438171,95.07818438],[4.53303121,0.02438,95.07745112],[4.53303065,0.02437829,95.07671786],[4.53303009,0.02437657,95.07598461],[4.53302953,0.02437486,95.07525137],[4.53302897,0.02437315,95.07451813],[4.53302841,0.02437143,95.07378491],[4.53302785,0.02436972,95.07305168],[4.53302729,0.02436801,95.07231846],[4.53302673,0.02436629,95.07158525],[4.53302617,0.02436458,95.07085204],[4.53302561,0.02436287,95.07011882],[4.53302505,0.02436115,95.06938561],[4.53302449,0.02435944,95.0686524],[4.53302393,0.02435773,95.06791919],[4.53302337,0.02435601,95.06718597],[4.53302281,0.0243543,95.06645276],[4.53302224,0.02435259,95.06571953],[4.53302168,0.02435088,95.06498631],[4.53302112,0.02434916,95.06425307],[4.53302056,0.02434745,95.06351984],[4.53302,0.02434574,95.06278659],[4.53301944,0.02434402,95.06205333],[4.53301888,0.02434231,95.06132007],[4.53301832,0.0243406,95.06058679],[4.53301776,0.02433888,95.05985351],[4.5330172,0.02433717,95.05912021],[4.53301664,0.02433546,95.0583869],[4.53301608,0.02433374,95.05765358],[4.53301551,0.02433203,95.05692024],[4.53301495,0.02433032,95.05618688],[4.53301439,0.0243286,95.05545351],[4.53301383,0.02432689,95.05472012],[4.53301327,0.02432518,95.05398671],[4.53301271,0.02432347,95.05325328],[4.53301215,0.02432175,95.05251984],[4.53301159,0.02432004,95.05178637],[4.53301102,0.02431833,95.05105288],[4.53301046,0.02431661,95.05031936],[4.5330099,0.0243149,95.04958583],[4.53300934,0.02431319,95.04885226],[4.53300878,0.02431147,95.04811867],[4.53300822,0.02430976,95.04738506],[4.53300766,0.02430805,95.04665141],[4.53300709,0.02430634,95.04591773],[4.53300653,0.02430462,95.04518401],[4.53300597,0.02430291,95.04445024],[4.53300541,0.0243012,95.04371642],[4.53300485,0.02429948,95.04298254],[4.53300429,0.02429777,95.04224862],[4.53300372,0.02429606,95.04151464],[4.53300316,0.02429435,95.04078062],[4.5330026,0.02429263,95.04004656],[4.53300204,0.02429092,95.03931246],[4.53300148,0.02428921,95.03857832],[4.53300092,0.02428749,95.03784415],[4.53300035,0.02428578,95.03710994],[4.53299979,0.02428407,95.0363757],[4.53299923,0.02428236,95.03564144],[4.53299867,0.02428064,95.03490715],[4.5329981,0.02427893,95.03417283],[4.53299754,0.02427722,95.03343849],[4.53299698,0.02427551,95.03270414],[4.53299642,0.02427379,95.03196977],[4.53299586,0.02427208,95.03123538],[4.53299529,0.02427037,95.03050098],[4.53299473,0.02426865,95.02976658],[4.53299417,0.02426694,95.02903216],[4.53299361,0.02426523,95.02829775],[4.53299304,0.02426352,95.02756333],[4.53299248,0.0242618,95.02682891],[4.53299192,0.02426009,95.02609449],[4.53299136,0.02425838,95.02536008],[4.53299079,0.02425667,95.02462568],[4.53299023,0.02425495,95.02389129],[4.53298967,0.02425324,95.02315691],[4.53298911,0.02425153,95.02242254],[4.53298854,0.02424982,95.0216882],[4.53298798,0.0242481,95.02095387],[4.53298742,0.02424639,95.02021957],[4.53298685,0.02424468,95.01948529],[4.53298629,0.02424297,95.01875103],[4.53298573,0.02424125,95.01801681],[4.53298517,0.02423954,95.01728262],[4.5329846,0.02423783,95.01654846],[4.53298404,0.02423612,95.01581434],[4.53298348,0.0242344,95.01508026],[4.53298291,0.02423269,95.01434622],[4.53298235,0.02423098,95.01361223],[4.53298179,0.02422927,95.01287828],[4.53298123,0.02422755,95.01214438],[4.53298066,0.02422584,95.01141053],[4.5329801,0.02422413,95.01067674],[4.53297954,0.02422242,95.009943],[4.53297897,0.0242207,95.00920932],[4.53297841,0.02421899,95.00847571],[4.53297785,0.02421728,95.00774215],[4.53297728,0.02421557,95.00700867],[4.53297672,0.02421385,95.00627525],[4.53297616,0.02421214,95.0055419],[4.5329756,0.02421043,95.00480863],[4.53297503,0.02420872,95.00407543],[4.53297447,0.024207,95.00334231],[4.53297391,0.02420529,95.00260927],[4.53297334,0.02420358,95.00187631],[4.53297278,0.02420187,95.00114344],[4.53297222,0.02420015,95.00041066],[4.53297165,0.02419844,94.99967797],[4.53297109,0.02419673,94.99894537],[4.53297053,0.02419502,94.99821287],[4.53296996,0.0241933,94.99748046],[4.5329694,0.02419159,94.99674816],[4.53296884,0.02418988,94.99601596],[4.53296828,0.02418817,94.99528386],[4.53296771,0.02418645,94.99455187],[4.53296715,0.02418474,94.99382],[4.53296659,0.02418303,94.99308823],[4.53296602,0.02418132,94.99235658],[4.53296546,0.0241796,94.99162505],[4.5329649,0.02417789,94.99089363],[4.53296433,0.02417618,94.99016234],[4.53296377,0.02417447,94.98943118],[4.53296321,0.02417276,94.98870014],[4.53296264,0.02417104,94.98796923],[4.53296208,0.02416933,94.98723846],[4.53296206,0.02416926,94.9872069]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}},{"geometry":{"coordinates":[[4.53299569,0.02415806,95.09728159],[4.53299571,0.02415813,95.09731335],[4.53299628,0.02415984,95.09804919],[4.53299684,0.02416156,95.09878577],[4.53299741,0.02416327,95.09952303],[4.53299798,0.02416498,95.10026091],[4.53299854,0.02416669,95.10099936],[4.53299911,0.0241684,95.10173832],[4.53299968,0.02417011,95.10247774],[4.53300025,0.02417182,95.10321755],[4.53300081,0.02417354,95.1039577],[4.53300138,0.02417525,95.10469813],[4.53300195,0.02417696,95.10543879],[4.53300252,0.02417867,95.10617962],[4.53300308,0.02418038,95.10692056],[4.53300365,0.02418209,95.10766156],[4.53300422,0.0241838,95.10840257],[4.53300479,0.02418551,95.10914351],[4.53300536,0.02418722,95.10988434],[4.53300593,0.02418893,95.11062501],[4.53300649,0.02419065,95.11136545],[4.53300706,0.02419236,95.1121056],[4.53300763,0.02419407,95.11284542],[4.5330082,0.02419578,95.11358484],[4.53300876,0.02419749,95.11432381],[4.53300933,0.0241992,95.11506227],[4.5330099,0.02420091,95.11580017],[4.53301047,0.02420262,95.11653745],[4.53301103,0.02420434,95.11727405],[4.5330116,0.02420605,95.11800992],[4.53301217,0.02420776,95.118745],[4.53301273,0.02420947,95.11947923],[4.5330133,0.02421118,95.12021256],[4.53301386,0.02421289,95.12094493],[4.53301443,0.02421461,95.12167629],[4.53301499,0.02421632,95.12240658],[4.53301556,0.02421803,95.12313574],[4.53301612,0.02421974,95.12386372],[4.53301669,0.02422145,95.12459046],[4.53301725,0.02422317,95.1253159],[4.53301781,0.02422488,95.12604],[4.53301838,0.02422659,95.12676268],[4.53301894,0.02422831,95.12748391],[4.5330195,0.02423002,95.12820361],[4.53302006,0.02423173,95.12892175],[4.53302062,0.02423345,95.1296383],[4.53302119,0.02423516,95.13035332],[4.53302175,0.02423687,95.13106685],[4.53302231,0.02423859,95.13177893],[4.53302286,0.0242403,95.13248962],[4.53302342,0.02424201,95.13319894],[4.53302398,0.02424373,95.13390695],[4.53302454,0.02424544,95.13461369],[4.5330251,0.02424716,95.13531921],[4.53302566,0.02424887,95.13602355],[4.53302621,0.02425059,95.13672676],[4.53302677,0.0242523,95.13742887],[4.53302733,0.02425402,95.13812994],[4.53302788,0.02425573,95.13883001],[4.53302844,0.02425745,95.13952912],[4.53302899,0.02425916,95.14022732],[4.53302955,0.02426088,95.14092465],[4.5330301,0.02426259,95.14162115],[4.53303066,0.02426431,95.14231688],[4.53303121,0.02426602,95.14301187],[4.53303177,0.02426774,95.14370617],[4.53303232,0.02426945,95.14439983],[4.53303288,0.02427117,95.14509288],[4.53303343,0.02427289,95.14578537],[4.53303398,0.0242746,95.14647735],[4.53303454,0.02427632,95.14716886],[4.53303509,0.02427803,95.14785994],[4.53303564,0.02427975,95.14855065],[4.5330362,0.02428147,95.14924101],[4.53303675,0.02428318,95.14993108],[4.5330373,0.0242849,95.15062091],[4.53303786,0.02428661,95.15131053],[4.53303841,0.02428833,95.15199998],[4.53303896,0.02429005,95.15268933],[4.53303952,0.02429176,95.15337859],[4.53304007,0.02429348,95.15406783],[4.53304062,0.02429519,95.15475709],[4.53304117,0.02429691,95.1554464],[4.53304173,0.02429863,95.15613582],[4.53304228,0.02430034,95.15682538],[4.53304283,0.02430206,95.15751513],[4.53304339,0.02430377,95.1582051],[4.53304394,0.02430549,95.15889534],[4.53304449,0.02430721,95.15958588],[4.53304505,0.02430892,95.16027676],[4.5330456,0.02431064,95.16096802],[4.53304615,0.02431235,95.16165969],[4.53304671,0.02431407,95.16235182],[4.53304726,0.02431579,95.16304444],[4.53304782,0.0243175,95.1637376],[4.53304837,0.02431922,95.16443133],[4.53304892,0.02432093,95.16512566],[4.53304948,0.02432265,95.16582064],[4.53305003,0.02432436,95.1665163],[4.53305059,0.02432608,95.16721268],[4.53305114,0.02432779,95.16790977],[4.5330517,0.02432951,95.16860756],[4.53305226,0.02433122,95.16930605],[4.53305281,0.02433294,95.17000523],[4.53305337,0.02433465,95.17070508],[4.53305392,0.02433637,95.17140561],[4.53305448,0.02433808,95.17210679],[4.53305504,0.0243398,95.17280862],[4.53305559,0.02434151,95.1735111],[4.53305615,0.02434323,95.1742142],[4.53305671,0.02434494,95.17491793],[4.53305727,0.02434666,95.17562228],[4.53305782,0.02434837,95.17632723],[4.53305838,0.02435009,95.17703278],[4.53305894,0.0243518,95.17773892],[4.5330595,0.02435352,95.17844563],[4.53306006,0.02435523,95.17915292],[4.53306062,0.02435694,95.17986077],[4.53306117,0.02435866,95.18056917],[4.53306173,0.02436037,95.18127811],[4.53306229,0.02436209,95.18198759],[4.53306285,0.0243638,95.18269759],[4.53306341,0.02436551,95.18340812],[4.53306397,0.02436723,95.18411915],[4.53306453,0.02436894,95.18483067],[4.53306509,0.02437066,95.18554269],[4.53306565,0.02437237,95.18625519],[4.53306621,0.02437408,95.18696817],[4.53306677,0.0243758,95.1876816],[4.53306733,0.02437751,95.1883955],[4.53306789,0.02437922,95.18910983],[4.53306845,0.02438094,95.18982461],[4.53306901,0.02438265,95.19053981],[4.53306957,0.02438436,95.19125544],[4.53307013,0.02438608,95.19197147],[4.5330707,0.02438779,95.19268791],[4.53307126,0.0243895,95.19340474],[4.53307182,0.02439122,95.19412195],[4.53307238,0.02439293,95.19483954],[4.53307294,0.02439464,95.1955575],[4.5330735,0.02439636,95.19627581],[4.53307407,0.02439807,95.19699448],[4.53307463,0.02439978,95.19771348],[4.53307519,0.0244015,95.19843282],[4.53307575,0.02440321,95.19915247],[4.53307631,0.02440492,95.19987245],[4.53307688,0.02440664,95.20059273],[4.53307744,0.02440835,95.2013133],[4.533078,0.02441006,95.20203416],[4.53307856,0.02441177,95.20275531],[4.53307913,0.02441349,95.20347672],[4.53307969,0.0244152,95.20419839],[4.53308025,0.02441691,95.20492032],[4.53308081,0.02441863,95.20564248],[4.53308138,0.02442034,95.20636488],[4.53308194,0.02442205,95.20708749],[4.5330825,0.02442376,95.20781032],[4.53308306,0.02442548,95.20853334],[4.53308363,0.02442719,95.20925656],[4.53308419,0.0244289,95.20997996],[4.53308475,0.02443062,95.21070353],[4.53308532,0.02443233,95.21142726],[4.53308588,0.02443404,95.21215114],[4.53308644,0.02443575,95.21287516],[4.53308701,0.02443747,95.21359931],[4.53308757,0.02443918,95.21432359],[4.53308813,0.02444089,95.21504797],[4.5330887,0.0244426,95.21577246],[4.53308926,0.02444432,95.21649703],[4.53308982,0.02444603,95.21722169],[4.53309039,0.02444774,95.21794642],[4.53309095,0.02444946,95.21867122],[4.53309151,0.02445117,95.21939606],[4.53309208,0.02445288,95.22012095],[4.53309264,0.02445459,95.22084587],[4.5330932,0.02445631,95.22157081],[4.53309377,0.02445802,95.22229576],[4.53309433,0.02445973,95.22302072],[4.53309489,0.02446144,95.22374567],[4.53309546,0.02446316,95.2244706],[4.53309602,0.02446487,95.22519551],[4.53309658,0.02446658,95.22592038],[4.53309715,0.02446829,95.22664521],[4.53309771,0.02447001,95.22736998],[4.53309827,0.02447172,95.22809468],[4.53309884,0.02447343,95.22881933],[4.5330994,0.02447515,95.22954391],[4.53309996,0.02447686,95.23026841],[4.53310052,0.02447857,95.23099285],[4.53310109,0.02448028,95.2317172],[4.53310165,0.024482,95.23244148],[4.53310221,0.02448371,95.23316567],[4.53310278,0.02448542,95.23388978],[4.53310334,0.02448714,95.23461379],[4.5331039,0.02448885,95.23533772],[4.53310446,0.02449056,95.23606155],[4.53310503,0.02449227,95.23678528],[4.53310559,0.02449399,95.23750891],[4.53310615,0.0244957,95.23823243],[4.53310671,0.02449741,95.23895584],[4.53310728,0.02449913,95.23967915],[4.53310784,0.02450084,95.24040234],[4.5331084,0.02450255,95.24112541],[4.53310896,0.02450426,95.24184836],[4.53310952,0.02450598,95.24257119],[4.53311009,0.02450769,95.24329389],[4.53311065,0.0245094,95.24401646],[4.53311121,0.02451112,95.24473889],[4.53311177,0.02451283,95.24546119],[4.53311233,0.02451454,95.24618336],[4.5331129,0.02451626,95.24690537],[4.53311346,0.02451797,95.24762725],[4.53311402,0.02451968,95.24834897],[4.53311458,0.0245214,95.24907055],[4.53311514,0.02452311,95.24979196],[4.5331157,0.02452482,95.25051322],[4.53311626,0.02452654,95.25123432],[4.53311682,0.02452825,95.25195526],[4.53311739,0.02452996,95.25267603],[4.53311795,0.02453168,95.25339663],[4.53311851,0.02453339,95.25411705],[4.53311907,0.0245351,95.2548373],[4.53311963,0.02453682,95.25555737],[4.53312019,0.02453853,95.25627725],[4.53312075,0.02454024,95.25699696],[4.53312131,0.02454196,95.25771647],[4.53312187,0.02454367,95.25843579],[4.53312243,0.02454539,95.25915491],[4.53312299,0.0245471,95.25987384],[4.53312355,0.02454881,95.26059257],[4.53312411,0.02455053,95.26131109],[4.53312467,0.02455224,95.26202941],[4.53312523,0.02455395,95.26274752],[4.53312579,0.02455567,95.26346541],[4.53312635,0.02455738,95.26418309],[4.53312691,0.0245591,95.26490055],[4.53312747,0.02456081,95.2656178],[4.53312803,0.02456252,95.26633485],[4.53312859,0.02456424,95.2670517],[4.53312915,0.02456595,95.26776838],[4.53312971,0.02456767,95.26848488],[4.53313027,0.02456938,95.26920121],[4.53313082,0.02457109,95.26991739],[4.53313138,0.02457281,95.27063341],[4.53313194,0.02457452,95.2713493],[4.5331325,0.02457624,95.27206506],[4.53313306,0.02457795,95.2727807],[4.53313362,0.02457967,95.27349622],[4.53313418,0.02458138,95.27421164],[4.53313473,0.02458309,95.27492697],[4.53313529,0.02458481,95.27564221],[4.53313585,0.02458652,95.27635737],[4.53313641,0.02458824,95.27707247],[4.53313697,0.02458995,95.2777875],[4.53313753,0.02459167,95.27850249],[4.53313808,0.02459338,95.27921743],[4.53313864,0.0245951,95.27993234],[4.5331392,0.02459681,95.28064723],[4.53313976,0.02459852,95.2813621],[4.53314032,0.02460024,95.28207696],[4.53314087,0.02460195,95.28279183],[4.53314143,0.02460367,95.2835067],[4.53314199,0.02460538,95.2842216],[4.53314255,0.0246071,95.28493652],[4.5331431,0.02460881,95.28565148],[4.53314366,0.02461053,95.28636649],[4.53314422,0.02461224,95.28708155],[4.53314478,0.02461396,95.28779667],[4.53314533,0.02461567,95.28851187],[4.53314589,0.02461738,95.28922715],[4.53314645,0.0246191,95.28994251],[4.53314701,0.02462081,95.29065798],[4.53314756,0.02462253,95.29137355],[4.53314812,0.02462424,95.29208924],[4.53314868,0.02462596,95.29280505],[4.53314924,0.02462767,95.293521],[4.53314979,0.02462939,95.29423708],[4.53315035,0.0246311,95.29495332],[4.53315091,0.02463282,95.29566972],[4.53315147,0.02463453,95.29638628],[4.53315203,0.02463624,95.29710302],[4.53315258,0.02463796,95.29781995],[4.53315314,0.02463967,95.29853707],[4.5331537,0.02464139,95.29925439],[4.53315426,0.0246431,95.29997193],[4.53315481,0.02464482,95.30068968],[4.53315537,0.02464653,95.30140766],[4.53315593,0.02464825,95.30212588],[4.53315649,0.02464996,95.30284435],[4.53315704,0.02465168,95.30356307],[4.5331576,0.02465339,95.30428205],[4.53315816,0.0246551,95.30500131],[4.53315872,0.02465682,95.30572084],[4.53315928,0.02465853,95.30644067],[4.53315983,0.02466025,95.30716079],[4.53316039,0.02466196,95.30788122],[4.53316095,0.02466368,95.30860197],[4.53316151,0.02466539,95.30932303],[4.53316207,0.02466711,95.31004442],[4.53316263,0.02466882,95.31076613],[4.53316318,0.02467053,95.31148817],[4.53316374,0.02467225,95.31221052],[4.5331643,0.02467396,95.3129332],[4.53316486,0.02467568,95.31365621],[4.53316542,0.02467739,95.31437953],[4.53316598,0.02467911,95.31510318],[4.53316653,0.02468082,95.31582716],[4.53316709,0.02468253,95.31655145],[4.53316765,0.02468425,95.31727608],[4.53316821,0.02468596,95.31800102],[4.53316877,0.02468768,95.31872629],[4.53316933,0.02468939,95.31945189],[4.53316989,0.02469111,95.32017781],[4.53317045,0.02469282,95.32090406],[4.53317101,0.02469453,95.32163063],[4.53317157,0.02469625,95.32235753],[4.53317212,0.02469796,95.32308475],[4.53317268,0.02469968,95.3238123],[4.53317324,0.02470139,95.32454017],[4.5331738,0.0247031,95.32526838],[4.53317436,0.02470482,95.32599691],[4.53317492,0.02470653,95.32672576],[4.53317548,0.02470825,95.32745494],[4.53317604,0.02470996,95.32818445],[4.5331766,0.02471167,95.32891429],[4.53317716,0.02471339,95.32964446],[4.53317772,0.0247151,95.33037495],[4.53317828,0.02471681,95.33110577],[4.53317884,0.02471853,95.33183693],[4.5331794,0.02472024,95.33256841],[4.53317996,0.02472196,95.33330021],[4.53318052,0.02472367,95.33403235],[4.53318108,0.02472538,95.33476482],[4.53318164,0.0247271,95.33549762],[4.5331822,0.02472881,95.33623075],[4.53318276,0.02473053,95.33696421],[4.53318332,0.02473224,95.33769799],[4.53318388,0.02473395,95.33843211],[4.53318444,0.02473567,95.33916657],[4.533185,0.02473738,95.33990135],[4.53318556,0.02473909,95.34063646],[4.53318612,0.02474081,95.34137191],[4.53318668,0.02474252,95.34210769],[4.53318724,0.02474423,95.3428438]],"type":"LineString"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":1,"type":"shoulder","predecessorId":1}},{"geometry":{"coordinates":[[4.53300884,0.02415368,95.09728159],[4.53300887,0.02415375,95.09731335],[4.53300943,0.02415546,95.09804919],[4.53300999,0.02415718,95.09878577],[4.53301055,0.02415889,95.09952303],[4.53301111,0.02416061,95.10026091],[4.53301167,0.02416232,95.10099936],[4.53301224,0.02416403,95.10173832],[4.5330128,0.02416575,95.10247774],[4.53301336,0.02416746,95.10321755],[4.53301392,0.02416917,95.1039577],[4.53301448,0.02417089,95.10469813],[4.53301504,0.0241726,95.10543879],[4.5330156,0.02417431,95.10617962],[4.53301616,0.02417603,95.10692056],[4.53301672,0.02417774,95.10766156],[4.53301728,0.02417945,95.10840257],[4.53301785,0.02418117,95.10914351],[4.53301841,0.02418288,95.10988434],[4.53301897,0.02418459,95.11062501],[4.53301953,0.02418631,95.11136545],[4.53302009,0.02418802,95.1121056],[4.53302065,0.02418974,95.11284542],[4.53302121,0.02419145,95.11358484],[4.53302177,0.02419316,95.11432381],[4.53302233,0.02419488,95.11506227],[4.53302289,0.02419659,95.11580017],[4.53302345,0.0241983,95.11653745],[4.53302401,0.02420002,95.11727405],[4.53302457,0.02420173,95.11800992],[4.53302513,0.02420344,95.118745],[4.53302569,0.02420516,95.11947923],[4.53302625,0.02420687,95.12021256],[4.53302681,0.02420859,95.12094493],[4.53302737,0.0242103,95.12167629],[4.53302793,0.02421201,95.12240658],[4.53302849,0.02421373,95.12313574],[4.53302905,0.02421544,95.12386372],[4.53302961,0.02421716,95.12459046],[4.53303017,0.02421887,95.1253159],[4.53303073,0.02422058,95.12604],[4.53303129,0.0242223,95.12676268],[4.53303185,0.02422401,95.12748391],[4.53303241,0.02422572,95.12820361],[4.53303297,0.02422744,95.12892175],[4.53303353,0.02422915,95.1296383],[4.53303409,0.02423087,95.13035332],[4.53303465,0.02423258,95.13106685],[4.53303521,0.02423429,95.13177893],[4.53303577,0.02423601,95.13248962],[4.53303633,0.02423772,95.13319894],[4.53303689,0.02423944,95.13390695],[4.53303745,0.02424115,95.13461369],[4.53303801,0.02424286,95.13531921],[4.53303857,0.02424458,95.13602355],[4.53303913,0.02424629,95.13672676],[4.53303969,0.02424801,95.13742887],[4.53304025,0.02424972,95.13812994],[4.53304081,0.02425143,95.13883001],[4.53304137,0.02425315,95.13952912],[4.53304193,0.02425486,95.14022732],[4.53304249,0.02425657,95.14092465],[4.53304305,0.02425829,95.14162115],[4.53304361,0.02426,95.14231688],[4.53304417,0.02426172,95.14301187],[4.53304473,0.02426343,95.14370617],[4.53304529,0.02426514,95.14439983],[4.53304585,0.02426686,95.14509288],[4.53304641,0.02426857,95.14578537],[4.53304697,0.02427029,95.14647735],[4.53304753,0.024272,95.14716886],[4.53304809,0.02427371,95.14785994],[4.53304865,0.02427543,95.14855065],[4.53304921,0.02427714,95.14924101],[4.53304977,0.02427885,95.14993108],[4.53305033,0.02428057,95.15062091],[4.53305089,0.02428228,95.15131053],[4.53305145,0.024284,95.15199998],[4.53305201,0.02428571,95.15268933],[4.53305257,0.02428742,95.15337859],[4.53305313,0.02428914,95.15406783],[4.53305369,0.02429085,95.15475709],[4.53305425,0.02429256,95.1554464],[4.53305481,0.02429428,95.15613582],[4.53305537,0.02429599,95.15682538],[4.53305593,0.02429771,95.15751513],[4.53305649,0.02429942,95.1582051],[4.53305705,0.02430113,95.15889534],[4.53305761,0.02430285,95.15958588],[4.53305817,0.02430456,95.16027676],[4.53305873,0.02430628,95.16096802],[4.53305929,0.02430799,95.16165969],[4.53305985,0.0243097,95.16235182],[4.53306041,0.02431142,95.16304444],[4.53306097,0.02431313,95.1637376],[4.53306153,0.02431484,95.16443133],[4.53306209,0.02431656,95.16512566],[4.53306265,0.02431827,95.16582064],[4.53306321,0.02431999,95.1665163],[4.53306377,0.0243217,95.16721268],[4.53306433,0.02432341,95.16790977],[4.53306489,0.02432513,95.16860756],[4.53306545,0.02432684,95.16930605],[4.53306601,0.02432856,95.17000523],[4.53306657,0.02433027,95.17070508],[4.53306713,0.02433198,95.17140561],[4.53306769,0.0243337,95.17210679],[4.53306825,0.02433541,95.17280862],[4.53306881,0.02433713,95.1735111],[4.53306937,0.02433884,95.1742142],[4.53306993,0.02434055,95.17491793],[4.53307049,0.02434227,95.17562228],[4.53307105,0.02434398,95.17632723],[4.53307161,0.02434569,95.17703278],[4.53307217,0.02434741,95.17773892],[4.53307273,0.02434912,95.17844563],[4.53307329,0.02435084,95.17915292],[4.53307385,0.02435255,95.17986077],[4.53307441,0.02435426,95.18056917],[4.53307497,0.02435598,95.18127811],[4.53307553,0.02435769,95.18198759],[4.53307609,0.0243594,95.18269759],[4.53307665,0.02436112,95.18340812],[4.53307721,0.02436283,95.18411915],[4.53307777,0.02436455,95.18483067],[4.53307833,0.02436626,95.18554269],[4.53307889,0.02436797,95.18625519],[4.53307945,0.02436969,95.18696817],[4.53308001,0.0243714,95.1876816],[4.53308057,0.02437311,95.1883955],[4.53308113,0.02437483,95.18910983],[4.53308169,0.02437654,95.18982461],[4.53308226,0.02437826,95.19053981],[4.53308282,0.02437997,95.19125544],[4.53308338,0.02438168,95.19197147],[4.53308394,0.0243834,95.19268791],[4.5330845,0.02438511,95.19340474],[4.53308506,0.02438683,95.19412195],[4.53308562,0.02438854,95.19483954],[4.53308618,0.02439025,95.1955575],[4.53308674,0.02439197,95.19627581],[4.5330873,0.02439368,95.19699448],[4.53308786,0.02439539,95.19771348],[4.53308842,0.02439711,95.19843282],[4.53308898,0.02439882,95.19915247],[4.53308954,0.02440054,95.19987245],[4.5330901,0.02440225,95.20059273],[4.53309066,0.02440396,95.2013133],[4.53309122,0.02440568,95.20203416],[4.53309178,0.02440739,95.20275531],[4.53309234,0.02440911,95.20347672],[4.5330929,0.02441082,95.20419839],[4.53309346,0.02441253,95.20492032],[4.53309402,0.02441425,95.20564248],[4.53309458,0.02441596,95.20636488],[4.53309514,0.02441767,95.20708749],[4.5330957,0.02441939,95.20781032],[4.53309626,0.0244211,95.20853334],[4.53309682,0.02442282,95.20925656],[4.53309738,0.02442453,95.20997996],[4.53309794,0.02442624,95.21070353],[4.5330985,0.02442796,95.21142726],[4.53309906,0.02442967,95.21215114],[4.53309962,0.02443139,95.21287516],[4.53310018,0.0244331,95.21359931],[4.53310074,0.02443481,95.21432359],[4.5331013,0.02443653,95.21504797],[4.53310186,0.02443824,95.21577246],[4.53310241,0.02443996,95.21649703],[4.53310297,0.02444167,95.21722169],[4.53310353,0.02444338,95.21794642],[4.53310409,0.0244451,95.21867122],[4.53310465,0.02444681,95.21939606],[4.53310521,0.02444853,95.22012095],[4.53310577,0.02445024,95.22084587],[4.53310633,0.02445195,95.22157081],[4.53310689,0.02445367,95.22229576],[4.53310745,0.02445538,95.22302072],[4.53310801,0.0244571,95.22374567],[4.53310857,0.02445881,95.2244706],[4.53310913,0.02446053,95.22519551],[4.53310969,0.02446224,95.22592038],[4.53311025,0.02446395,95.22664521],[4.5331108,0.02446567,95.22736998],[4.53311136,0.02446738,95.22809468],[4.53311192,0.0244691,95.22881933],[4.53311248,0.02447081,95.22954391],[4.53311304,0.02447252,95.23026841],[4.5331136,0.02447424,95.23099285],[4.53311416,0.02447595,95.2317172],[4.53311472,0.02447767,95.23244148],[4.53311528,0.02447938,95.23316567],[4.53311583,0.0244811,95.23388978],[4.53311639,0.02448281,95.23461379],[4.53311695,0.02448453,95.23533772],[4.53311751,0.02448624,95.23606155],[4.53311807,0.02448795,95.23678528],[4.53311863,0.02448967,95.23750891],[4.53311919,0.02449138,95.23823243],[4.53311975,0.0244931,95.23895584],[4.5331203,0.02449481,95.23967915],[4.53312086,0.02449653,95.24040234],[4.53312142,0.02449824,95.24112541],[4.53312198,0.02449995,95.24184836],[4.53312254,0.02450167,95.24257119],[4.5331231,0.02450338,95.24329389],[4.53312365,0.0245051,95.24401646],[4.53312421,0.02450681,95.24473889],[4.53312477,0.02450853,95.24546119],[4.53312533,0.02451024,95.24618336],[4.53312589,0.02451196,95.24690537],[4.53312645,0.02451367,95.24762725],[4.53312701,0.02451538,95.24834897],[4.53312756,0.0245171,95.24907055],[4.53312812,0.02451881,95.24979196],[4.53312868,0.02452053,95.25051322],[4.53312924,0.02452224,95.25123432],[4.5331298,0.02452396,95.25195526],[4.53313036,0.02452567,95.25267603],[4.53313091,0.02452739,95.25339663],[4.53313147,0.0245291,95.25411705],[4.53313203,0.02453081,95.2548373],[4.53313259,0.02453253,95.25555737],[4.53313315,0.02453424,95.25627725],[4.53313371,0.02453596,95.25699696],[4.53313426,0.02453767,95.25771647],[4.53313482,0.02453939,95.25843579],[4.53313538,0.0245411,95.25915491],[4.53313594,0.02454282,95.25987384],[4.5331365,0.02454453,95.26059257],[4.53313706,0.02454624,95.26131109],[4.53313762,0.02454796,95.26202941],[4.53313817,0.02454967,95.26274752],[4.53313873,0.02455139,95.26346541],[4.53313929,0.0245531,95.26418309],[4.53313985,0.02455482,95.26490055],[4.53314041,0.02455653,95.2656178],[4.53314097,0.02455825,95.26633485],[4.53314152,0.02455996,95.2670517],[4.53314208,0.02456167,95.26776838],[4.53314264,0.02456339,95.26848488],[4.5331432,0.0245651,95.26920121],[4.53314376,0.02456682,95.26991739],[4.53314432,0.02456853,95.27063341],[4.53314488,0.02457025,95.2713493],[4.53314543,0.02457196,95.27206506],[4.53314599,0.02457368,95.2727807],[4.53314655,0.02457539,95.27349622],[4.53314711,0.0245771,95.27421164],[4.53314767,0.02457882,95.27492697],[4.53314823,0.02458053,95.27564221],[4.53314878,0.02458225,95.27635737],[4.53314934,0.02458396,95.27707247],[4.5331499,0.02458568,95.2777875],[4.53315046,0.02458739,95.27850249],[4.53315102,0.02458911,95.27921743],[4.53315157,0.02459082,95.27993234],[4.53315213,0.02459253,95.28064723],[4.53315269,0.02459425,95.2813621],[4.53315325,0.02459596,95.28207696],[4.53315381,0.02459768,95.28279183],[4.53315437,0.02459939,95.2835067],[4.53315492,0.02460111,95.2842216],[4.53315548,0.02460282,95.28493652],[4.53315604,0.02460454,95.28565148],[4.5331566,0.02460625,95.28636649],[4.53315716,0.02460797,95.28708155],[4.53315772,0.02460968,95.28779667],[4.53315827,0.02461139,95.28851187],[4.53315883,0.02461311,95.28922715],[4.53315939,0.02461482,95.28994251],[4.53315995,0.02461654,95.29065798],[4.53316051,0.02461825,95.29137355],[4.53316107,0.02461997,95.29208924],[4.53316163,0.02462168,95.29280505],[4.53316218,0.0246234,95.293521],[4.53316274,0.02462511,95.29423708],[4.5331633,0.02462682,95.29495332],[4.53316386,0.02462854,95.29566972],[4.53316442,0.02463025,95.29638628],[4.53316498,0.02463197,95.29710302],[4.53316553,0.02463368,95.29781995],[4.53316609,0.0246354,95.29853707],[4.53316665,0.02463711,95.29925439],[4.53316721,0.02463883,95.29997193],[4.53316777,0.02464054,95.30068968],[4.53316833,0.02464225,95.30140766],[4.53316889,0.02464397,95.30212588],[4.53316944,0.02464568,95.30284435],[4.53317,0.0246474,95.30356307],[4.53317056,0.02464911,95.30428205],[4.53317112,0.02465083,95.30500131],[4.53317168,0.02465254,95.30572084],[4.53317224,0.02465426,95.30644067],[4.5331728,0.02465597,95.30716079],[4.53317336,0.02465768,95.30788122],[4.53317391,0.0246594,95.30860197],[4.53317447,0.02466111,95.30932303],[4.53317503,0.02466283,95.31004442],[4.53317559,0.02466454,95.31076613],[4.53317615,0.02466626,95.31148817],[4.53317671,0.02466797,95.31221052],[4.53317727,0.02466968,95.3129332],[4.53317783,0.0246714,95.31365621],[4.53317839,0.02467311,95.31437953],[4.53317895,0.02467483,95.31510318],[4.5331795,0.02467654,95.31582716],[4.53318006,0.02467826,95.31655145],[4.53318062,0.02467997,95.31727608],[4.53318118,0.02468168,95.31800102],[4.53318174,0.0246834,95.31872629],[4.5331823,0.02468511,95.31945189],[4.53318286,0.02468683,95.32017781],[4.53318342,0.02468854,95.32090406],[4.53318398,0.02469026,95.32163063],[4.53318454,0.02469197,95.32235753],[4.5331851,0.02469368,95.32308475],[4.53318565,0.0246954,95.3238123],[4.53318621,0.02469711,95.32454017],[4.53318677,0.02469883,95.32526838],[4.53318733,0.02470054,95.32599691],[4.53318789,0.02470226,95.32672576],[4.53318845,0.02470397,95.32745494],[4.53318901,0.02470568,95.32818445],[4.53318957,0.0247074,95.32891429],[4.53319013,0.02470911,95.32964446],[4.53319068,0.02471083,95.33037495],[4.53319124,0.02471254,95.33110577],[4.5331918,0.02471426,95.33183693],[4.53319236,0.02471597,95.33256841],[4.53319292,0.02471768,95.33330021],[4.53319348,0.0247194,95.33403235],[4.53319404,0.02472111,95.33476482],[4.5331946,0.02472283,95.33549762],[4.53319515,0.02472454,95.33623075],[4.53319571,0.02472626,95.33696421],[4.53319627,0.02472797,95.33769799],[4.53319683,0.02472969,95.33843211],[4.53319739,0.0247314,95.33916657],[4.53319795,0.02473311,95.33990135],[4.5331985,0.02473483,95.34063646],[4.53319906,0.02473654,95.34137191],[4.53319962,0.02473826,95.34210769],[4.53320018,0.02473997,95.3428438]],"type":"LineString"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":2,"type":"none","predecessorId":2}},{"geometry":{"coordinates":[[4.53285754,0.02420406,94.90880616],[4.53285712,0.02420277,94.89852339]],"type":"LineString"},"type":"feature","properties":{"successorId":-7,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-7,"type":"none","predecessorId":0}},{"geometry":{"coordinates":[[4.53287683,0.02419763,94.90880616],[4.53287651,0.02419631,94.89852339]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-6,"type":"border","predecessorId":0}},{"geometry":{"coordinates":[[4.53289228,0.02419249,94.75880616],[4.53288888,0.0241922,94.74852339]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-5,"type":"border","predecessorId":-5}},{"geometry":{"coordinates":[[4.5329001,0.02418989,94.78442166],[4.53289968,0.0241886,94.78388007]],"type":"LineString"},"type":"feature","properties":{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-4,"type":"shoulder","predecessorId":-4}},{"geometry":{"coordinates":[[4.53290187,0.0241893,94.7902222],[4.53290145,0.02418801,94.78966895]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3}},{"geometry":{"coordinates":[[4.532931,0.0241796,94.88554455],[4.53293057,0.02417831,94.88498572]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2}},{"geometry":{"coordinates":[[4.53296206,0.02416926,94.9872069],[4.53296163,0.02416797,94.9866587]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}},{"geometry":{"coordinates":[[4.53299526,0.02415677,95.09672981],[4.53299569,0.02415806,95.09728159]],"type":"LineString"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":1,"type":"shoulder","predecessorId":1}},{"geometry":{"coordinates":[[4.53300842,0.02415239,95.09672981],[4.53300884,0.02415368,95.09728159]],"type":"LineString"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":2,"type":"none","predecessorId":2}},{"geometry":{"coordinates":[[4.53285712,0.02420277,94.86234983],[4.53285657,0.02420106,94.86209563],[4.53285601,0.02419934,94.861842],[4.5328557,0.02419841,94.8617036]],"type":"LineString"},"type":"feature","properties":{"successorId":-7,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-7,"type":"none","predecessorId":-7}},{"geometry":{"coordinates":[[4.53287651,0.02419631,94.86234983],[4.5328761,0.02419455,94.86209563],[4.53287568,0.02419279,94.861842],[4.53287546,0.02419183,94.8617036]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-6,"type":"border","predecessorId":0}},{"geometry":{"coordinates":[[4.53287783,0.02419588,94.71234983],[4.53287742,0.02419411,94.71209563],[4.532877,0.02419235,94.711842],[4.53287677,0.02419139,94.7117036]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-5,"type":"border","predecessorId":0}},{"geometry":{"coordinates":[[4.53289968,0.0241886,94.78388007],[4.53289912,0.02418689,94.78315883],[4.53289857,0.02418517,94.78243798],[4.53289826,0.02418424,94.78204412]],"type":"LineString"},"type":"feature","properties":{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-4,"type":"shoulder","predecessorId":-4}},{"geometry":{"coordinates":[[4.53290145,0.02418801,94.78966895],[4.53290089,0.0241863,94.78893181],[4.53290033,0.02418459,94.78819507],[4.53290002,0.02418365,94.7877925]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3}},{"geometry":{"coordinates":[[4.53293057,0.02417831,94.88498572],[4.53293001,0.0241766,94.88424055],[4.53292944,0.02417489,94.8834956],[4.53292913,0.02417396,94.88308847]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2}},{"geometry":{"coordinates":[[4.53296163,0.02416797,94.9866587],[4.53296107,0.02416626,94.98592821],[4.53296051,0.02416455,94.98519776],[4.5329602,0.02416361,94.98479849]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}},{"geometry":{"coordinates":[[4.53299382,0.02415242,95.0948569],[4.53299413,0.02415335,95.095259],[4.5329947,0.02415506,95.09599448],[4.53299526,0.02415677,95.09672981]],"type":"LineString"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":1,"type":"shoulder","predecessorId":1}},{"geometry":{"coordinates":[[4.53300699,0.02414803,95.0948569],[4.5330073,0.02414897,95.095259],[4.53300786,0.02415068,95.09599448],[4.53300842,0.02415239,95.09672981]],"type":"LineString"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":2,"type":"none","predecessorId":2}},{"geometry":{"coordinates":[[4.5328557,0.02419841,94.89632452],[4.53285528,0.02419712,94.90802404]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-7,"type":"none","predecessorId":-7}},{"geometry":{"coordinates":[[4.53287546,0.02419183,94.89632452],[4.53287515,0.02419051,94.90802404]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-6,"type":"border","predecessorId":0}},{"geometry":{"coordinates":[[4.53288735,0.02418787,94.74632452],[4.53289067,0.02418534,94.75802404]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-5,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-5,"type":"border","predecessorId":0}},{"geometry":{"coordinates":[[4.53289826,0.02418424,94.78204412],[4.53289784,0.02418295,94.78150391]],"type":"LineString"},"type":"feature","properties":{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-4,"type":"shoulder","predecessorId":-4}},{"geometry":{"coordinates":[[4.53290002,0.02418365,94.7877925],[4.5328996,0.02418237,94.78724011]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3}},{"geometry":{"coordinates":[[4.53292913,0.02417396,94.88308847],[4.5329287,0.02417267,94.88252949]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2}},{"geometry":{"coordinates":[[4.5329602,0.02416361,94.98479849],[4.53295978,0.02416233,94.98425062]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}},{"geometry":{"coordinates":[[4.5329934,0.02415113,95.09430511],[4.53299382,0.02415242,95.0948569]],"type":"LineString"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":1,"type":"shoulder","predecessorId":1}},{"geometry":{"coordinates":[[4.53300657,0.02414674,95.09430511],[4.53300699,0.02414803,95.0948569]],"type":"LineString"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":2,"type":"none","predecessorId":2}},{"geometry":{"coordinates":[[4.53285528,0.02419712,94.90802404],[4.53285473,0.02419541,94.91688025],[4.53285417,0.02419369,94.9204259],[4.53285361,0.02419198,94.91975703],[4.53285305,0.02419027,94.91908611],[4.53285248,0.02418856,94.91841285],[4.53285192,0.02418685,94.91773701],[4.53285135,0.02418514,94.9170583],[4.53285078,0.02418343,94.91637646],[4.53285021,0.02418172,94.91569124],[4.53284964,0.02418001,94.91500235],[4.53284907,0.0241783,94.91430953],[4.53284849,0.02417659,94.91361251],[4.53284792,0.02417488,94.91291104],[4.53284734,0.02417318,94.91220483],[4.53284677,0.02417147,94.91149363],[4.53284619,0.02416976,94.91077717],[4.53284561,0.02416806,94.91005518],[4.53284503,0.02416635,94.90932739],[4.53284445,0.02416464,94.90859354],[4.53284387,0.02416294,94.90785336],[4.53284329,0.02416123,94.90710658],[4.5328427,0.02415953,94.90635294],[4.53284212,0.02415782,94.90559218],[4.53284154,0.02415612,94.90482465],[4.53284096,0.02415441,94.90405323],[4.53284038,0.0241527,94.90328139],[4.5328398,0.024151,94.90251297],[4.53283923,0.02414929,94.90175267],[4.53283867,0.02414758,94.90100538],[4.53283811,0.02414586,94.90027577],[4.53283756,0.02414415,94.89956428],[4.53283702,0.02414243,94.89886709],[4.53283648,0.02414071,94.89818018],[4.53283595,0.02413899,94.89749954],[4.53283541,0.02413726,94.89682118],[4.53283488,0.02413554,94.89614107],[4.53283435,0.02413382,94.8954552],[4.53283382,0.0241321,94.89475973],[4.53283328,0.02413038,94.89405404],[4.53283275,0.02412866,94.89334077],[4.53283221,0.02412694,94.89262272],[4.53283168,0.02412522,94.89190265],[4.53283114,0.02412349,94.89118337],[4.53283061,0.02412177,94.89046764],[4.53283008,0.02412005,94.88975824],[4.53282955,0.02411833,94.88905796],[4.53282902,0.0241166,94.88836958],[4.5328285,0.02411488,94.88769586],[4.53282799,0.02411315,94.88703773],[4.53282747,0.02411142,94.88638867],[4.53282695,0.02410969,94.88574035],[4.53282643,0.02410797,94.88508442],[4.53282589,0.02410625,94.88441256],[4.53282535,0.02410453,94.88371643],[4.53282479,0.02410282,94.8829882],[4.53282421,0.02410111,94.88223135],[4.53282363,0.02409941,94.88146051],[4.53282304,0.0240977,94.88068988],[4.53282245,0.024096,94.87993056],[4.53282186,0.0240943,94.87918397],[4.53282127,0.02409259,94.87844905],[4.53282068,0.02409089,94.87772478],[4.53282009,0.02408919,94.87701013],[4.5328195,0.02408748,94.87630406],[4.53281892,0.02408578,94.87560553],[4.53281833,0.02408408,94.87491352],[4.53281775,0.02408237,94.87422699],[4.53281717,0.02408066,94.87354491],[4.53281659,0.02407896,94.87286625],[4.53281601,0.02407725,94.87218998],[4.53281544,0.02407554,94.87151506],[4.53281487,0.02407383,94.87084047],[4.5328143,0.02407213,94.87016518],[4.53281373,0.02407042,94.86948815],[4.53281316,0.02406871,94.86880842],[4.53281259,0.024067,94.86812573],[4.53281202,0.02406529,94.86744035],[4.53281145,0.02406358,94.86675256],[4.53281089,0.02406187,94.86606264],[4.53281032,0.02406016,94.86537087],[4.53280975,0.02405844,94.86467754],[4.53280918,0.02405673,94.86398291],[4.53280862,0.02405502,94.86328727],[4.53280805,0.02405331,94.8625909],[4.53280748,0.0240516,94.86189408],[4.53280691,0.02404989,94.86119709],[4.53280634,0.02404818,94.86050019],[4.53280578,0.02404647,94.85980369],[4.53280521,0.02404476,94.85910787],[4.53280464,0.02404305,94.85841302],[4.53280407,0.02404134,94.85771941],[4.53280351,0.02403963,94.85702731],[4.53280294,0.02403792,94.85633699],[4.53280238,0.02403621,94.8556487],[4.53280181,0.0240345,94.85496271],[4.53280125,0.02403279,94.85427902],[4.53280068,0.02403108,94.8535975],[4.53280012,0.02402936,94.85291799],[4.53279955,0.02402765,94.85224034],[4.53279899,0.02402594,94.85156443],[4.53279843,0.02402423,94.85089011],[4.53279787,0.02402252,94.85021726],[4.5327973,0.0240208,94.84954574],[4.53279674,0.02401909,94.84887544],[4.53279618,0.02401738,94.84820622],[4.53279562,0.02401567,94.84753794],[4.53279505,0.02401396,94.8468705],[4.53279449,0.02401224,94.84620374],[4.53279393,0.02401053,94.84553756],[4.53279337,0.02400882,94.84487181],[4.5327928,0.02400711,94.84420637],[4.53279224,0.0240054,94.84354111],[4.53279168,0.02400368,94.84287591],[4.53279111,0.02400197,94.84221064],[4.53279055,0.02400026,94.84154516],[4.53278998,0.02399855,94.84087935],[4.53278941,0.02399684,94.84021309],[4.53278885,0.02399513,94.83954624],[4.53278828,0.02399342,94.83887868],[4.53278771,0.02399171,94.83821029],[4.53278714,0.02399,94.83754097],[4.53278657,0.02398829,94.83687075],[4.532786,0.02398658,94.83619966],[4.53278543,0.02398487,94.83552774],[4.53278486,0.02398316,94.83485502],[4.53278429,0.02398145,94.83418156],[4.53278371,0.02397974,94.8335075],[4.53278314,0.02397803,94.83283309],[4.53278257,0.02397633,94.83215859],[4.53278199,0.02397462,94.83148426],[4.53278141,0.02397291,94.83081036],[4.53278084,0.0239712,94.83013714],[4.53278026,0.0239695,94.82946486],[4.53277968,0.02396779,94.82879378],[4.53277911,0.02396608,94.82812414],[4.53277853,0.02396437,94.82745622],[4.53277795,0.02396267,94.82679026],[4.53277737,0.02396096,94.82612652],[4.53277679,0.02395925,94.82546525],[4.53277622,0.02395755,94.82480671],[4.53277564,0.02395584,94.82415115],[4.53277506,0.02395413,94.82349883],[4.53277448,0.02395242,94.82284999],[4.53277391,0.02395072,94.8222049],[4.53277333,0.02394901,94.82156366],[4.53277276,0.0239473,94.82092599],[4.53277218,0.02394559,94.82029156],[4.5327716,0.02394389,94.81966],[4.53277103,0.02394218,94.81903095],[4.53277046,0.02394047,94.81840403],[4.53276988,0.02393876,94.81777886],[4.53276931,0.02393705,94.81715513],[4.53276874,0.02393534,94.81653247],[4.53276816,0.02393364,94.81591056],[4.53276759,0.02393193,94.81528904],[4.53276702,0.02393022,94.81466759],[4.53276645,0.02392851,94.81404587],[4.53276587,0.0239268,94.81342353],[4.5327653,0.02392509,94.81280023],[4.53276473,0.02392338,94.81217565],[4.53276416,0.02392167,94.81154944],[4.53276359,0.02391996,94.81092127],[4.53276302,0.02391825,94.81029081],[4.53276245,0.02391654,94.80965776],[4.53276189,0.02391483,94.80902239],[4.53276132,0.02391312,94.80838536],[4.53276075,0.02391141,94.8077471],[4.53276018,0.0239097,94.80710799],[4.53275962,0.02390799,94.80646844],[4.53275906,0.02390627,94.80582883],[4.53275849,0.02390456,94.80518956],[4.53275793,0.02390285,94.804551],[4.53275737,0.02390114,94.80391355],[4.53275681,0.02389942,94.80327759],[4.53275625,0.02389771,94.80264352],[4.5327557,0.023896,94.80201171],[4.53275514,0.02389428,94.80138256],[4.53275459,0.02389257,94.80075644],[4.53275403,0.02389085,94.80013372],[4.53275348,0.02388914,94.79951448],[4.53275293,0.02388742,94.79889861],[4.53275238,0.0238857,94.79828598],[4.53275182,0.02388399,94.79767646],[4.53275127,0.02388227,94.79706993],[4.53275072,0.02388056,94.79646628],[4.53275017,0.02387884,94.79586537],[4.53274962,0.02387712,94.79526709],[4.53274907,0.02387541,94.79467131],[4.53274852,0.02387369,94.79407792],[4.53274797,0.02387198,94.79348679],[4.53274741,0.02387026,94.79289779],[4.53274686,0.02386854,94.79231081],[4.53274631,0.02386683,94.79172565],[4.53274575,0.02386511,94.79114207],[4.5327452,0.0238634,94.79055984],[4.53274464,0.02386168,94.78997871],[4.53274409,0.02385997,94.78939845],[4.53274353,0.02385826,94.78881882],[4.53274297,0.02385654,94.78823958],[4.53274241,0.02385483,94.78766051],[4.53274185,0.02385311,94.7870815],[4.53274129,0.0238514,94.78650258],[4.53274073,0.02384969,94.78592381],[4.53274017,0.02384797,94.78534526],[4.53273961,0.02384626,94.78476702],[4.53273905,0.02384455,94.78418917],[4.53273849,0.02384284,94.78361177],[4.53273793,0.02384112,94.78303489],[4.53273737,0.02383941,94.78245859],[4.5327368,0.0238377,94.78188288],[4.53273624,0.02383599,94.78130781],[4.53273568,0.02383427,94.78073339],[4.53273512,0.02383256,94.78015967],[4.53273455,0.02383085,94.77958666],[4.53273399,0.02382914,94.77901441],[4.53273343,0.02382743,94.77844295],[4.53273287,0.02382571,94.7778723],[4.5327323,0.023824,94.7773025],[4.53273174,0.02382229,94.77673357],[4.53273118,0.02382058,94.77616555],[4.53273061,0.02381886,94.77559847],[4.53273005,0.02381715,94.77503235],[4.53272949,0.02381544,94.77446728],[4.53272893,0.02381373,94.77390335],[4.53272836,0.02381201,94.77334056],[4.5327278,0.0238103,94.77277894],[4.53272724,0.02380859,94.7722185],[4.53272668,0.02380688,94.77165925],[4.53272612,0.02380516,94.77110119],[4.53272555,0.02380345,94.77054435],[4.53272499,0.02380174,94.76998873],[4.53272443,0.02380003,94.76943434],[4.53272387,0.02379831,94.7688812],[4.53272331,0.0237966,94.76832931],[4.53272275,0.02379489,94.7677787],[4.53272219,0.02379317,94.76722936],[4.53272162,0.02379146,94.76668131],[4.53272106,0.02378975,94.76613457],[4.5327205,0.02378804,94.76558914],[4.53271994,0.02378632,94.76504503],[4.53271938,0.02378461,94.76450226],[4.53271882,0.0237829,94.76396084],[4.53271826,0.02378118,94.76342077],[4.5327177,0.02377947,94.76288208],[4.53271713,0.02377776,94.76234476],[4.53271657,0.02377605,94.76180884],[4.53271601,0.02377433,94.76127431],[4.53271545,0.02377262,94.76074121],[4.53271488,0.02377091,94.76020952],[4.53271432,0.0237692,94.75967927],[4.53271375,0.02376749,94.75915047],[4.53271319,0.02376578,94.75862312],[4.53271262,0.02376407,94.75809724],[4.53271205,0.02376236,94.75757284],[4.53271149,0.02376065,94.75704991],[4.53271092,0.02375894,94.75652819],[4.53271035,0.02375723,94.75600721],[4.53270978,0.02375552,94.75548661],[4.5327092,0.02375381,94.75496629],[4.53270863,0.0237521,94.75444627],[4.53270805,0.02375039,94.75392655],[4.53270748,0.02374869,94.75340715],[4.5327069,0.02374698,94.75288807],[4.53270632,0.02374527,94.75236932],[4.53270574,0.02374357,94.75185091],[4.53270516,0.02374186,94.75133284],[4.53270458,0.02374015,94.75081514],[4.532704,0.02373845,94.7502978],[4.53270342,0.02373674,94.74978083],[4.53270284,0.02373503,94.74926424],[4.53270226,0.02373332,94.74874805],[4.53270168,0.02373162,94.74823225],[4.5327011,0.02372991,94.74771687],[4.53270053,0.0237282,94.7472019],[4.53269995,0.02372649,94.74668735],[4.53269938,0.02372478,94.74617324],[4.5326988,0.02372307,94.74565958],[4.53269823,0.02372136,94.74514636],[4.53269766,0.02371965,94.74463361],[4.53269709,0.02371794,94.74412136],[4.53269653,0.02371623,94.74361001],[4.53269596,0.02371452,94.74309983],[4.5326954,0.02371281,94.74259095],[4.53269484,0.02371109,94.74208352],[4.53269428,0.02370938,94.7415777],[4.53269372,0.02370767,94.74107374],[4.53269317,0.02370596,94.74057189],[4.53269261,0.02370425,94.74007241],[4.53269206,0.02370253,94.73957555],[4.5326915,0.02370082,94.73908157],[4.53269095,0.02369911,94.73859072],[4.5326904,0.0236974,94.73810326],[4.53268985,0.02369568,94.73761943],[4.5326893,0.02369397,94.73713948],[4.53268875,0.02369226,94.73666367],[4.5326882,0.02369055,94.73619224],[4.53268766,0.02368884,94.73572544],[4.53268711,0.02368713,94.73526351],[4.53268656,0.02368542,94.7348067],[4.53268602,0.02368371,94.73435525],[4.53268547,0.023682,94.7339094],[4.53268492,0.02368029,94.73346938],[4.53268438,0.02367858,94.73303519],[4.53268383,0.02367687,94.73260605],[4.53268328,0.02367516,94.73218112],[4.53268273,0.02367345,94.73175952],[4.53268218,0.02367175,94.73134039],[4.53268163,0.02367004,94.73092289],[4.53268108,0.02366833,94.73050615],[4.53268052,0.02366663,94.73008934],[4.53267996,0.02366492,94.7296716],[4.53267941,0.02366321,94.72925212],[4.53267885,0.02366151,94.72883047],[4.53267828,0.0236598,94.72840664],[4.53267772,0.02365809,94.72798055],[4.53267716,0.02365639,94.72755203],[4.53267659,0.02365468,94.72712092],[4.53267603,0.02365297,94.72668707],[4.53267547,0.02365127,94.7262503],[4.5326749,0.02364956,94.72581047],[4.53267434,0.02364786,94.72536741],[4.53267377,0.02364615,94.7249209],[4.53267321,0.02364444,94.72447074],[4.53267265,0.02364274,94.72401673],[4.53267208,0.02364103,94.72355865],[4.53267152,0.02363932,94.72309631],[4.53267096,0.02363761,94.7226295],[4.5326704,0.0236359,94.72215802],[4.53266994,0.02363449,94.72176465]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-7,"type":"none","predecessorId":0}},{"geometry":{"coordinates":[[4.53288676,0.02418664,94.90802404],[4.53289055,0.02418348,94.91688025],[4.53289228,0.024181,94.9204259],[4.53289194,0.02417922,94.91975703],[4.5328914,0.0241775,94.91908611],[4.53289085,0.02417578,94.91841285],[4.53289031,0.02417406,94.91773701],[4.53288977,0.02417234,94.9170583],[4.53288922,0.02417062,94.91637646],[4.53288867,0.02416891,94.91569124],[4.53288813,0.02416719,94.91500235],[4.53288758,0.02416547,94.91430953],[4.53288703,0.02416376,94.91361251],[4.53288648,0.02416204,94.91291104],[4.53288592,0.02416033,94.91220483],[4.53288537,0.02415861,94.91149363],[4.53288481,0.0241569,94.91077717],[4.53288425,0.02415518,94.91005518],[4.53288369,0.02415347,94.90932739],[4.53288312,0.02415176,94.90859354],[4.53288256,0.02415005,94.90785336],[4.53288199,0.02414834,94.90710658],[4.53288142,0.02414663,94.90635294],[4.53288085,0.02414492,94.90559218],[4.53288027,0.02414321,94.90482465],[4.5328797,0.0241415,94.90405323],[4.53287912,0.0241398,94.90328139],[4.53287855,0.02413809,94.90251297],[4.53287797,0.02413638,94.90175267],[4.5328774,0.02413467,94.90100538],[4.53287684,0.02413296,94.90027577],[4.53287628,0.02413125,94.89956428],[4.53287573,0.02412953,94.89886709],[4.53287517,0.02412781,94.89818018],[4.53287462,0.0241261,94.89749954],[4.53287407,0.02412438,94.89682118],[4.53287352,0.02412267,94.89614107],[4.53287297,0.02412095,94.8954552],[4.53287242,0.02411924,94.89475973],[4.53287186,0.02411752,94.89405404],[4.53287129,0.02411581,94.89334077],[4.53287073,0.0241141,94.89262272],[4.53287017,0.02411239,94.89190265],[4.5328696,0.02411067,94.89118337],[4.53286904,0.02410896,94.89046764],[4.53286848,0.02410725,94.88975824],[4.53286792,0.02410554,94.88905796],[4.53286736,0.02410382,94.88836958],[4.53286681,0.02410211,94.88769586],[4.53286627,0.02410039,94.88703773],[4.53286572,0.02409867,94.88638867],[4.53286518,0.02409695,94.88574035],[4.53286463,0.02409524,94.88508442],[4.53286408,0.02409352,94.88441256],[4.53286352,0.02409181,94.88371643],[4.53286295,0.0240901,94.8829882],[4.53286237,0.02408839,94.88223135],[4.53286179,0.02408668,94.88146051],[4.5328612,0.02408498,94.88068988],[4.53286062,0.02408327,94.87993056],[4.53286005,0.02408157,94.87918397],[4.53285947,0.02407986,94.87844905],[4.5328589,0.02407815,94.87772478],[4.53285833,0.02407644,94.87701013],[4.53285777,0.02407473,94.87630406],[4.53285721,0.02407301,94.87560553],[4.53285664,0.0240713,94.87491352],[4.53285608,0.02406959,94.87422699],[4.53285553,0.02406787,94.87354491],[4.53285497,0.02406616,94.87286625],[4.53285441,0.02406445,94.87218998],[4.53285385,0.02406273,94.87151506],[4.53285329,0.02406102,94.87084047],[4.53285274,0.02405931,94.87016518],[4.53285218,0.02405759,94.86948815],[4.53285162,0.02405588,94.86880842],[4.53285106,0.02405417,94.86812573],[4.53285049,0.02405246,94.86744035],[4.53284993,0.02405074,94.86675256],[4.53284937,0.02404903,94.86606264],[4.5328488,0.02404732,94.86537087],[4.53284824,0.02404561,94.86467754],[4.53284767,0.0240439,94.86398291],[4.5328471,0.02404219,94.86328727],[4.53284653,0.02404048,94.8625909],[4.53284597,0.02403877,94.86189408],[4.5328454,0.02403706,94.86119709],[4.53284483,0.02403535,94.86050019],[4.53284426,0.02403364,94.85980369],[4.53284369,0.02403193,94.85910787],[4.53284312,0.02403022,94.85841302],[4.53284255,0.02402851,94.85771941],[4.53284199,0.0240268,94.85702731],[4.53284142,0.02402508,94.85633699],[4.53284085,0.02402337,94.8556487],[4.53284028,0.02402166,94.85496271],[4.53283972,0.02401995,94.85427902],[4.53283915,0.02401824,94.8535975],[4.53283858,0.02401653,94.85291799],[4.53283802,0.02401482,94.85224034],[4.53283745,0.02401311,94.85156443],[4.53283689,0.0240114,94.85089011],[4.53283632,0.02400969,94.85021726],[4.53283576,0.02400797,94.84954574],[4.53283519,0.02400626,94.84887544],[4.53283463,0.02400455,94.84820622],[4.53283406,0.02400284,94.84753794],[4.5328335,0.02400113,94.8468705],[4.53283293,0.02399942,94.84620374],[4.53283237,0.0239977,94.84553756],[4.5328318,0.02399599,94.84487181],[4.53283124,0.02399428,94.84420637],[4.53283067,0.02399257,94.84354111],[4.53283011,0.02399086,94.84287591],[4.53282954,0.02398915,94.84221064],[4.53282898,0.02398744,94.84154516],[4.53282841,0.02398572,94.84087935],[4.53282784,0.02398401,94.84021309],[4.53282728,0.0239823,94.83954624],[4.53282671,0.02398059,94.83887868],[4.53282614,0.02397888,94.83821029],[4.53282557,0.02397717,94.83754097],[4.532825,0.02397546,94.83687075],[4.53282443,0.02397375,94.83619966],[4.53282386,0.02397204,94.83552774],[4.53282329,0.02397033,94.83485502],[4.53282272,0.02396862,94.83418156],[4.53282215,0.02396691,94.8335075],[4.53282158,0.0239652,94.83283309],[4.53282101,0.02396349,94.83215859],[4.53282044,0.02396179,94.83148426],[4.53281986,0.02396008,94.83081036],[4.53281929,0.02395837,94.83013714],[4.53281872,0.02395666,94.82946486],[4.53281815,0.02395495,94.82879378],[4.53281758,0.02395324,94.82812414],[4.53281701,0.02395153,94.82745622],[4.53281643,0.02394982,94.82679026],[4.53281586,0.02394811,94.82612652],[4.53281529,0.0239464,94.82546525],[4.53281472,0.02394469,94.82480671],[4.53281416,0.02394298,94.82415115],[4.53281359,0.02394127,94.82349883],[4.53281302,0.02393956,94.82284999],[4.53281246,0.02393785,94.8222049],[4.53281189,0.02393614,94.82156366],[4.53281133,0.02393442,94.82092599],[4.53281076,0.02393271,94.82029156],[4.5328102,0.023931,94.81966],[4.53280964,0.02392929,94.81903095],[4.53280908,0.02392757,94.81840403],[4.53280852,0.02392586,94.81777886],[4.53280796,0.02392415,94.81715513],[4.53280739,0.02392244,94.81653247],[4.53280683,0.02392072,94.81591056],[4.53280627,0.02391901,94.81528904],[4.53280571,0.0239173,94.81466759],[4.53280515,0.02391558,94.81404587],[4.53280459,0.02391387,94.81342353],[4.53280403,0.02391216,94.81280023],[4.53280347,0.02391045,94.81217565],[4.5328029,0.02390873,94.81154944],[4.53280234,0.02390702,94.81092127],[4.53280177,0.02390531,94.81029081],[4.53280121,0.0239036,94.80965776],[4.53280064,0.02390189,94.80902239],[4.53280007,0.02390018,94.80838536],[4.5327995,0.02389847,94.8077471],[4.53279894,0.02389676,94.80710799],[4.53279837,0.02389505,94.80646844],[4.5327978,0.02389334,94.80582883],[4.53279723,0.02389163,94.80518956],[4.53279666,0.02388992,94.804551],[4.53279609,0.02388821,94.80391355],[4.53279552,0.0238865,94.80327759],[4.53279495,0.02388479,94.80264352],[4.53279438,0.02388308,94.80201171],[4.53279381,0.02388136,94.80138256],[4.53279325,0.02387965,94.80075644],[4.53279268,0.02387794,94.80013372],[4.53279212,0.02387623,94.79951448],[4.53279155,0.02387452,94.79889861],[4.53279099,0.02387281,94.79828598],[4.53279042,0.02387109,94.79767646],[4.53278986,0.02386938,94.79706993],[4.5327893,0.02386767,94.79646628],[4.53278874,0.02386596,94.79586537],[4.53278818,0.02386424,94.79526709],[4.53278762,0.02386253,94.79467131],[4.53278706,0.02386082,94.79407792],[4.5327865,0.0238591,94.79348679],[4.53278594,0.02385739,94.79289779],[4.53278538,0.02385568,94.79231081],[4.53278482,0.02385396,94.79172565],[4.53278427,0.02385225,94.79114207],[4.53278371,0.02385053,94.79055984],[4.53278315,0.02384882,94.78997871],[4.53278259,0.02384711,94.78939845],[4.53278203,0.02384539,94.78881882],[4.53278147,0.02384368,94.78823958],[4.53278092,0.02384197,94.78766051],[4.53278036,0.02384025,94.7870815],[4.5327798,0.02383854,94.78650258],[4.53277924,0.02383682,94.78592381],[4.53277868,0.02383511,94.78534526],[4.53277812,0.0238334,94.78476702],[4.53277756,0.02383168,94.78418917],[4.532777,0.02382997,94.78361177],[4.53277644,0.02382826,94.78303489],[4.53277588,0.02382655,94.78245859],[4.53277531,0.02382483,94.78188288],[4.53277475,0.02382312,94.78130781],[4.53277419,0.02382141,94.78073339],[4.53277363,0.02381969,94.78015967],[4.53277307,0.02381798,94.77958666],[4.53277251,0.02381627,94.77901441],[4.53277194,0.02381456,94.77844295],[4.53277138,0.02381284,94.7778723],[4.53277082,0.02381113,94.7773025],[4.53277026,0.02380942,94.77673357],[4.53276969,0.02380771,94.77616555],[4.53276913,0.02380599,94.77559847],[4.53276857,0.02380428,94.77503235],[4.532768,0.02380257,94.77446728],[4.53276744,0.02380086,94.77390335],[4.53276688,0.02379915,94.77334056],[4.53276631,0.02379743,94.77277894],[4.53276575,0.02379572,94.7722185],[4.53276519,0.02379401,94.77165925],[4.53276462,0.0237923,94.77110119],[4.53276406,0.02379058,94.77054435],[4.53276349,0.02378887,94.76998873],[4.53276293,0.02378716,94.76943434],[4.53276237,0.02378545,94.7688812],[4.5327618,0.02378374,94.76832931],[4.53276124,0.02378202,94.7677787],[4.53276067,0.02378031,94.76722936],[4.53276011,0.0237786,94.76668131],[4.53275955,0.02377689,94.76613457],[4.53275898,0.02377518,94.76558914],[4.53275842,0.02377346,94.76504503],[4.53275785,0.02377175,94.76450226],[4.53275729,0.02377004,94.76396084],[4.53275672,0.02376833,94.76342077],[4.53275616,0.02376662,94.76288208],[4.53275559,0.02376491,94.76234476],[4.53275503,0.02376319,94.76180884],[4.53275446,0.02376148,94.76127431],[4.5327539,0.02375977,94.76074121],[4.53275333,0.02375806,94.76020952],[4.53275277,0.02375635,94.75967927],[4.5327522,0.02375464,94.75915047],[4.53275164,0.02375293,94.75862312],[4.53275107,0.02375121,94.75809724],[4.53275051,0.0237495,94.75757284],[4.53274994,0.02374779,94.75704991],[4.53274938,0.02374608,94.75652819],[4.53274881,0.02374437,94.75600721],[4.53274825,0.02374266,94.75548661],[4.53274768,0.02374095,94.75496629],[4.53274712,0.02373924,94.75444627],[4.53274655,0.02373753,94.75392655],[4.53274598,0.02373581,94.75340715],[4.53274541,0.0237341,94.75288807],[4.53274485,0.02373239,94.75236932],[4.53274428,0.02373068,94.75185091],[4.53274371,0.02372897,94.75133284],[4.53274314,0.02372726,94.75081514],[4.53274257,0.02372555,94.7502978],[4.532742,0.02372384,94.74978083],[4.53274143,0.02372213,94.74926424],[4.53274086,0.02372042,94.74874805],[4.53274029,0.02371871,94.74823225],[4.53273972,0.023717,94.74771687],[4.53273915,0.02371529,94.7472019],[4.53273858,0.02371358,94.74668735],[4.532738,0.02371187,94.74617324],[4.53273743,0.02371016,94.74565958],[4.53273686,0.02370845,94.74514636],[4.53273629,0.02370674,94.74463361],[4.53273571,0.02370503,94.74412136],[4.53273514,0.02370332,94.74361001],[4.53273457,0.02370161,94.74309983],[4.532734,0.0236999,94.74259095],[4.53273342,0.0236982,94.74208352],[4.53273285,0.02369649,94.7415777],[4.53273228,0.02369478,94.74107374],[4.53273171,0.02369307,94.74057189],[4.53273113,0.02369136,94.74007241],[4.53273056,0.02368966,94.73957555],[4.53272999,0.02368795,94.73908157],[4.53272942,0.02368624,94.73859072],[4.53272885,0.02368453,94.73810326],[4.53272828,0.02368283,94.73761943],[4.53272771,0.02368112,94.73713948],[4.53272715,0.02367941,94.73666367],[4.53272658,0.0236777,94.73619224],[4.53272602,0.023676,94.73572544],[4.53272545,0.02367429,94.73526351],[4.53272489,0.02367258,94.7348067],[4.53272433,0.02367087,94.73435525],[4.53272377,0.02366917,94.7339094],[4.53272321,0.02366746,94.73346938],[4.53272265,0.02366575,94.73303519],[4.53272209,0.02366404,94.73260605],[4.53272153,0.02366234,94.73218112],[4.53272098,0.02366063,94.73175952],[4.53272042,0.02365892,94.73134039],[4.53271987,0.02365721,94.73092289],[4.53271931,0.0236555,94.73050615],[4.53271875,0.02365379,94.73008934],[4.53271819,0.02365208,94.7296716],[4.53271763,0.02365038,94.72925212],[4.53271707,0.02364867,94.72883047],[4.53271651,0.02364696,94.72840664],[4.53271594,0.02364525,94.72798055],[4.53271538,0.02364354,94.72755203],[4.53271482,0.02364184,94.72712092],[4.53271425,0.02364013,94.72668707],[4.53271368,0.02363842,94.7262503],[4.53271312,0.02363671,94.72581047],[4.53271255,0.023635,94.72536741],[4.53271198,0.0236333,94.7249209],[4.53271142,0.02363159,94.72447074],[4.53271085,0.02362988,94.72401673],[4.53271028,0.02362818,94.72355865],[4.53270971,0.02362647,94.72309631],[4.53270914,0.02362476,94.7226295],[4.53270857,0.02362305,94.72215802],[4.5327081,0.02362164,94.72176465]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-6,"type":"border","predecessorId":0}},{"geometry":{"coordinates":[[4.53289067,0.02418534,94.75802404],[4.53289304,0.02418265,94.76688025],[4.53289378,0.0241805,94.7704259],[4.53289324,0.02417878,94.76975703],[4.5328927,0.02417706,94.76908611],[4.53289215,0.02417535,94.76841285],[4.53289161,0.02417363,94.76773701],[4.53289106,0.02417191,94.7670583],[4.53289052,0.02417019,94.76637646],[4.53288997,0.02416848,94.76569124],[4.53288942,0.02416676,94.76500235],[4.53288887,0.02416504,94.76430953],[4.53288831,0.02416333,94.76361251],[4.53288776,0.02416161,94.76291104],[4.5328872,0.0241599,94.76220483],[4.53288665,0.02415819,94.76149363],[4.53288609,0.02415647,94.76077717],[4.53288553,0.02415476,94.76005518],[4.53288496,0.02415305,94.75932739],[4.5328844,0.02415134,94.75859354],[4.53288383,0.02414963,94.75785336],[4.53288326,0.02414792,94.75710658],[4.53288269,0.02414621,94.75635294],[4.53288212,0.0241445,94.75559218],[4.53288154,0.02414279,94.75482465],[4.53288096,0.02414108,94.75405323],[4.53288039,0.02413938,94.75328139],[4.53287981,0.02413767,94.75251297],[4.53287923,0.02413596,94.75175267],[4.53287866,0.02413425,94.75100538],[4.5328781,0.02413254,94.75027577],[4.53287754,0.02413083,94.74956428],[4.53287698,0.02412911,94.74886709],[4.53287643,0.0241274,94.74818018],[4.53287588,0.02412568,94.74749954],[4.53287533,0.02412396,94.74682118],[4.53287477,0.02412225,94.74614107],[4.53287422,0.02412053,94.7454552],[4.53287366,0.02411882,94.74475973],[4.53287311,0.02411711,94.74405404],[4.53287254,0.02411539,94.74334077],[4.53287198,0.02411368,94.74262272],[4.53287141,0.02411197,94.74190265],[4.53287085,0.02411026,94.74118337],[4.53287029,0.02410855,94.74046764],[4.53286972,0.02410684,94.73975824],[4.53286916,0.02410512,94.73905796],[4.53286861,0.02410341,94.73836958],[4.53286806,0.02410169,94.73769586],[4.53286751,0.02409997,94.73703773],[4.53286696,0.02409826,94.73638867],[4.53286642,0.02409654,94.73574035],[4.53286587,0.02409482,94.73508442],[4.53286532,0.02409311,94.73441256],[4.53286476,0.02409139,94.73371643],[4.53286419,0.02408968,94.7329882],[4.53286361,0.02408798,94.73223135],[4.53286303,0.02408627,94.73146051],[4.53286244,0.02408456,94.73068988],[4.53286186,0.02408286,94.72993056],[4.53286129,0.02408115,94.72918397],[4.53286071,0.02407944,94.72844905],[4.53286014,0.02407773,94.72772478],[4.53285958,0.02407602,94.72701013],[4.53285901,0.02407431,94.72630406],[4.53285845,0.0240726,94.72560553],[4.53285789,0.02407089,94.72491352],[4.53285733,0.02406917,94.72422699],[4.53285677,0.02406746,94.72354491],[4.53285621,0.02406574,94.72286625],[4.53285566,0.02406403,94.72218998],[4.5328551,0.02406232,94.72151506],[4.53285454,0.0240606,94.72084047],[4.53285399,0.02405889,94.72016518],[4.53285343,0.02405718,94.71948815],[4.53285287,0.02405546,94.71880842],[4.53285231,0.02405375,94.71812573],[4.53285175,0.02405204,94.71744035],[4.53285119,0.02405033,94.71675256],[4.53285062,0.02404861,94.71606264],[4.53285006,0.0240469,94.71537087],[4.53284949,0.02404519,94.71467754],[4.53284893,0.02404348,94.71398291],[4.53284836,0.02404177,94.71328727],[4.5328478,0.02404006,94.7125909],[4.53284723,0.02403835,94.71189408],[4.53284666,0.02403663,94.71119709],[4.5328461,0.02403492,94.71050019],[4.53284553,0.02403321,94.70980369],[4.53284496,0.0240315,94.70910787],[4.53284439,0.02402979,94.70841302],[4.53284383,0.02402808,94.70771941],[4.53284326,0.02402637,94.70702731],[4.53284269,0.02402466,94.70633699],[4.53284213,0.02402295,94.7056487],[4.53284156,0.02402124,94.70496271],[4.532841,0.02401952,94.70427902],[4.53284043,0.02401781,94.7035975],[4.53283987,0.0240161,94.70291799],[4.53283931,0.02401439,94.70224034],[4.53283874,0.02401268,94.70156443],[4.53283818,0.02401097,94.70089011],[4.53283762,0.02400925,94.70021726],[4.53283705,0.02400754,94.69954574],[4.53283649,0.02400583,94.69887544],[4.53283593,0.02400412,94.69820622],[4.53283536,0.0240024,94.69753794],[4.5328348,0.02400069,94.6968705],[4.53283424,0.02399898,94.69620374],[4.53283368,0.02399727,94.69553756],[4.53283311,0.02399556,94.69487181],[4.53283255,0.02399384,94.69420637],[4.53283199,0.02399213,94.69354111],[4.53283142,0.02399042,94.69287591],[4.53283086,0.02398871,94.69221064],[4.5328303,0.023987,94.69154516],[4.53282973,0.02398528,94.69087935],[4.53282917,0.02398357,94.69021309],[4.5328286,0.02398186,94.68954624],[4.53282804,0.02398015,94.68887868],[4.53282747,0.02397844,94.68821029],[4.5328269,0.02397673,94.68754097],[4.53282634,0.02397502,94.68687075],[4.53282577,0.02397331,94.68619966],[4.5328252,0.0239716,94.68552774],[4.53282463,0.02396989,94.68485502],[4.53282406,0.02396818,94.68418156],[4.53282349,0.02396647,94.6835075],[4.53282292,0.02396476,94.68283309],[4.53282235,0.02396305,94.68215859],[4.53282178,0.02396134,94.68148426],[4.53282121,0.02395963,94.68081036],[4.53282064,0.02395792,94.68013714],[4.53282007,0.02395621,94.67946486],[4.5328195,0.0239545,94.67879378],[4.53281893,0.02395279,94.67812414],[4.53281836,0.02395108,94.67745622],[4.53281779,0.02394937,94.67679026],[4.53281722,0.02394766,94.67612652],[4.53281665,0.02394595,94.67546525],[4.53281608,0.02394424,94.67480671],[4.53281551,0.02394253,94.67415115],[4.53281495,0.02394082,94.67349883],[4.53281438,0.02393911,94.67284999],[4.53281381,0.02393739,94.6722049],[4.53281325,0.02393568,94.67156366],[4.53281269,0.02393397,94.67092599],[4.53281212,0.02393226,94.67029156],[4.53281156,0.02393055,94.66966],[4.532811,0.02392883,94.66903095],[4.53281044,0.02392712,94.66840403],[4.53280988,0.02392541,94.66777886],[4.53280932,0.02392369,94.66715513],[4.53280875,0.02392198,94.66653247],[4.53280819,0.02392027,94.66591056],[4.53280763,0.02391856,94.66528904],[4.53280707,0.02391684,94.66466759],[4.53280651,0.02391513,94.66404587],[4.53280595,0.02391342,94.66342353],[4.53280538,0.02391171,94.66280023],[4.53280482,0.02390999,94.66217565],[4.53280426,0.02390828,94.66154944],[4.53280369,0.02390657,94.66092127],[4.53280313,0.02390486,94.66029081],[4.53280256,0.02390315,94.65965776],[4.53280199,0.02390144,94.65902239],[4.53280142,0.02389973,94.65838536],[4.53280085,0.02389802,94.6577471],[4.53280028,0.02389631,94.65710799],[4.53279971,0.0238946,94.65646844],[4.53279914,0.02389289,94.65582883],[4.53279857,0.02389118,94.65518956],[4.532798,0.02388947,94.654551],[4.53279742,0.02388776,94.65391355],[4.53279685,0.02388605,94.65327759],[4.53279628,0.02388434,94.65264352],[4.53279571,0.02388263,94.65201171],[4.53279514,0.02388092,94.65138256],[4.53279457,0.02387921,94.65075644],[4.532794,0.0238775,94.65013372],[4.53279344,0.02387579,94.64951448],[4.53279287,0.02387408,94.64889861],[4.5327923,0.02387237,94.64828598],[4.53279174,0.02387066,94.64767646],[4.53279117,0.02386894,94.64706993],[4.53279061,0.02386723,94.64646628],[4.53279004,0.02386552,94.64586537],[4.53278948,0.02386381,94.64526709],[4.53278892,0.0238621,94.64467131],[4.53278835,0.02386038,94.64407792],[4.53278779,0.02385867,94.64348679],[4.53278723,0.02385696,94.64289779],[4.53278667,0.02385525,94.64231081],[4.53278611,0.02385353,94.64172565],[4.53278555,0.02385182,94.64114207],[4.53278499,0.02385011,94.64055984],[4.53278443,0.02384839,94.63997871],[4.53278386,0.02384668,94.63939845],[4.5327833,0.02384497,94.63881882],[4.53278274,0.02384326,94.63823958],[4.53278218,0.02384154,94.63766051],[4.53278162,0.02383983,94.6370815],[4.53278106,0.02383812,94.63650258],[4.53278049,0.0238364,94.63592381],[4.53277993,0.02383469,94.63534526],[4.53277937,0.02383298,94.63476702],[4.53277881,0.02383127,94.63418917],[4.53277824,0.02382956,94.63361177],[4.53277768,0.02382784,94.63303489],[4.53277712,0.02382613,94.63245859],[4.53277655,0.02382442,94.63188288],[4.53277599,0.02382271,94.63130781],[4.53277542,0.02382099,94.63073339],[4.53277486,0.02381928,94.63015967],[4.5327743,0.02381757,94.62958666],[4.53277373,0.02381586,94.62901441],[4.53277317,0.02381415,94.62844295],[4.5327726,0.02381244,94.6278723],[4.53277204,0.02381072,94.6273025],[4.53277147,0.02380901,94.62673357],[4.53277091,0.0238073,94.62616555],[4.53277034,0.02380559,94.62559847],[4.53276978,0.02380388,94.62503235],[4.53276921,0.02380216,94.62446728],[4.53276865,0.02380045,94.62390335],[4.53276809,0.02379874,94.62334056],[4.53276752,0.02379703,94.62277894],[4.53276696,0.02379532,94.6222185],[4.53276639,0.02379361,94.62165925],[4.53276583,0.02379189,94.62110119],[4.53276526,0.02379018,94.62054435],[4.5327647,0.02378847,94.61998873],[4.53276413,0.02378676,94.61943434],[4.53276357,0.02378505,94.6188812],[4.532763,0.02378333,94.61832931],[4.53276244,0.02378162,94.6177787],[4.53276187,0.02377991,94.61722936],[4.53276131,0.0237782,94.61668131],[4.53276075,0.02377649,94.61613457],[4.53276018,0.02377478,94.61558914],[4.53275962,0.02377306,94.61504503],[4.53275905,0.02377135,94.61450226],[4.53275849,0.02376964,94.61396084],[4.53275793,0.02376793,94.61342077],[4.53275736,0.02376622,94.61288208],[4.5327568,0.0237645,94.61234476],[4.53275623,0.02376279,94.61180884],[4.53275567,0.02376108,94.61127431],[4.53275511,0.02375937,94.61074121],[4.53275454,0.02375765,94.61020952],[4.53275398,0.02375594,94.60967927],[4.53275342,0.02375423,94.60915047],[4.53275285,0.02375252,94.60862312],[4.53275229,0.02375081,94.60809724],[4.53275173,0.02374909,94.60757284],[4.53275117,0.02374738,94.60704991],[4.5327506,0.02374567,94.60652819],[4.53275004,0.02374396,94.60600721],[4.53274948,0.02374225,94.60548661],[4.53274891,0.02374054,94.60496629],[4.53274835,0.02373882,94.60444627],[4.53274779,0.02373711,94.60392655],[4.53274722,0.0237354,94.60340715],[4.53274666,0.02373369,94.60288807],[4.53274609,0.02373198,94.60236932],[4.53274553,0.02373027,94.60185091],[4.53274496,0.02372855,94.60133284],[4.53274439,0.02372684,94.60081514],[4.53274383,0.02372513,94.6002978],[4.53274326,0.02372342,94.59978083],[4.53274269,0.02372171,94.59926424],[4.53274213,0.02372,94.59874805],[4.53274156,0.02371829,94.59823225],[4.53274099,0.02371657,94.59771687],[4.53274042,0.02371486,94.5972019],[4.53273985,0.02371315,94.59668735],[4.53273929,0.02371144,94.59617324],[4.53273872,0.02370973,94.59565958],[4.53273815,0.02370802,94.59514636],[4.53273758,0.02370631,94.59463361],[4.53273701,0.0237046,94.59412136],[4.53273644,0.02370289,94.59361001],[4.53273587,0.02370118,94.59309983],[4.5327353,0.02369947,94.59259095],[4.53273473,0.02369776,94.59208352],[4.53273416,0.02369605,94.5915777],[4.53273359,0.02369434,94.59107374],[4.53273302,0.02369263,94.59057189],[4.53273246,0.02369092,94.59007241],[4.53273189,0.02368921,94.58957555],[4.53273132,0.0236875,94.58908157],[4.53273075,0.0236858,94.58859072],[4.53273019,0.02368409,94.58810326],[4.53272962,0.02368238,94.58761943],[4.53272906,0.02368067,94.58713948],[4.5327285,0.02367896,94.58666367],[4.53272793,0.02367725,94.58619224],[4.53272737,0.02367554,94.58572544],[4.53272681,0.02367383,94.58526351],[4.53272626,0.02367212,94.5848067],[4.5327257,0.02367041,94.58435525],[4.53272514,0.02366871,94.5839094],[4.53272459,0.023667,94.58346938],[4.53272404,0.02366529,94.58303519],[4.53272349,0.02366358,94.58260605],[4.53272294,0.02366186,94.58218112],[4.53272239,0.02366015,94.58175952],[4.53272184,0.02365844,94.58134039],[4.53272129,0.02365673,94.58092289],[4.53272074,0.02365502,94.58050615],[4.53272019,0.02365331,94.58008934],[4.53271964,0.0236516,94.5796716],[4.53271909,0.02364989,94.57925212],[4.53271853,0.02364818,94.57883047],[4.53271798,0.02364646,94.57840664],[4.53271742,0.02364475,94.57798055],[4.53271686,0.02364304,94.57755203],[4.53271631,0.02364133,94.57712092],[4.53271574,0.02363963,94.57668707],[4.53271518,0.02363792,94.5762503],[4.53271462,0.02363621,94.57581047],[4.53271405,0.0236345,94.57536741],[4.53271348,0.02363279,94.5749209],[4.53271292,0.02363109,94.57447074],[4.53271234,0.02362938,94.57401673],[4.53271177,0.02362767,94.57355865],[4.5327112,0.02362597,94.57309631],[4.53271062,0.02362426,94.5726295],[4.53271004,0.02362256,94.57215802],[4.53270956,0.02362115,94.57176465]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-5,"type":"border","predecessorId":-5}},{"geometry":{"coordinates":[[4.53289784,0.02418295,94.78150391],[4.53289729,0.02418123,94.78078967],[4.53289673,0.02417952,94.78006795],[4.53289617,0.02417781,94.77933915],[4.5328956,0.0241761,94.77860367],[4.53289504,0.02417439,94.77786192],[4.53289447,0.02417267,94.77711429],[4.5328939,0.02417096,94.7763612],[4.53289333,0.02416926,94.77560305],[4.53289276,0.02416755,94.77484024],[4.53289219,0.02416584,94.77407317],[4.53289161,0.02416413,94.77330225],[4.53289104,0.02416242,94.77252789],[4.53289046,0.02416071,94.77175049],[4.53288988,0.02415901,94.77097045],[4.5328893,0.0241573,94.77018818],[4.53288872,0.02415559,94.76940408],[4.53288814,0.02415389,94.76861856],[4.53288756,0.02415218,94.76783203],[4.53288698,0.02415048,94.76704488],[4.5328864,0.02414877,94.76625753],[4.53288582,0.02414706,94.76547037],[4.53288523,0.02414536,94.76468381],[4.53288465,0.02414365,94.76389826],[4.53288407,0.02414195,94.76311476],[4.53288349,0.02414024,94.76233683],[4.53288292,0.02413853,94.76156864],[4.53288234,0.02413682,94.76081435],[4.53288178,0.02413511,94.76007812],[4.53288122,0.0241334,94.7593641],[4.53288066,0.02413168,94.75867626],[4.53288012,0.02412997,94.75801432],[4.53287958,0.02412825,94.75737375],[4.53287905,0.02412652,94.7567498],[4.53287852,0.0241248,94.75613777],[4.53287799,0.02412308,94.75553292],[4.53287746,0.02412135,94.75493053],[4.53287693,0.02411963,94.75432588],[4.5328764,0.02411791,94.75371438],[4.53287587,0.02411619,94.75309472],[4.53287533,0.02411446,94.75246883],[4.53287479,0.02411274,94.75183878],[4.53287426,0.02411102,94.75120663],[4.53287372,0.0241093,94.75057444],[4.53287318,0.02410758,94.7499443],[4.53287264,0.02410586,94.74931825],[4.53287211,0.02410414,94.74869837],[4.53287158,0.02410242,94.74808672],[4.53287105,0.02410069,94.74748537],[4.53287052,0.02409897,94.74689451],[4.53287,0.02409725,94.74630691],[4.53286947,0.02409552,94.74571353],[4.53286894,0.0240938,94.74510532],[4.5328684,0.02409208,94.74447322],[4.53286785,0.02409036,94.74380821],[4.53286728,0.02408865,94.74310172],[4.53286671,0.02408694,94.74235653],[4.53286613,0.02408524,94.74158663],[4.53286554,0.02408353,94.74080649],[4.53286495,0.02408183,94.74002814],[4.53286437,0.02408012,94.73925393],[4.53286379,0.02407842,94.73848379],[4.5328632,0.02407671,94.73771762],[4.53286262,0.02407501,94.73695535],[4.53286204,0.0240733,94.73619687],[4.53286146,0.02407159,94.73544212],[4.53286088,0.02406989,94.73469101],[4.5328603,0.02406818,94.73394344],[4.53285973,0.02406647,94.73319934],[4.53285915,0.02406477,94.73245862],[4.53285858,0.02406306,94.7317212],[4.532858,0.02406135,94.73098698],[4.53285743,0.02405964,94.73025589],[4.53285685,0.02405793,94.72952784],[4.53285628,0.02405622,94.72880274],[4.53285571,0.02405452,94.72808051],[4.53285514,0.02405281,94.72736107],[4.53285457,0.0240511,94.72664432],[4.532854,0.02404939,94.72593019],[4.53285343,0.02404768,94.72521859],[4.53285286,0.02404597,94.72450943],[4.53285229,0.02404426,94.72380263],[4.53285172,0.02404255,94.72309811],[4.53285116,0.02404084,94.72239577],[4.53285059,0.02403912,94.72169554],[4.53285002,0.02403741,94.72099733],[4.53284946,0.0240357,94.72030105],[4.53284889,0.02403399,94.71960662],[4.53284833,0.02403228,94.71891397],[4.53284776,0.02403057,94.71822301],[4.5328472,0.02402886,94.71753368],[4.53284663,0.02402715,94.71684589],[4.53284607,0.02402543,94.71615953],[4.5328455,0.02402372,94.71547452],[4.53284494,0.02402201,94.71479076],[4.53284437,0.0240203,94.71410815],[4.53284381,0.02401859,94.71342659],[4.53284325,0.02401687,94.712746],[4.53284268,0.02401516,94.71206628],[4.53284212,0.02401345,94.71138733],[4.53284156,0.02401174,94.71070906],[4.53284099,0.02401003,94.71003141],[4.53284043,0.02400832,94.7093543],[4.53283986,0.0240066,94.70867764],[4.5328393,0.02400489,94.70800138],[4.53283874,0.02400318,94.70732542],[4.53283817,0.02400147,94.7066497],[4.53283761,0.02399976,94.70597415],[4.53283704,0.02399804,94.70529868],[4.53283648,0.02399633,94.70462322],[4.53283591,0.02399462,94.7039477],[4.53283535,0.02399291,94.70327204],[4.53283478,0.0239912,94.70259617],[4.53283421,0.02398949,94.70192002],[4.53283365,0.02398778,94.7012435],[4.53283308,0.02398607,94.70056655],[4.53283251,0.02398436,94.6998891],[4.53283195,0.02398264,94.69921106],[4.53283138,0.02398093,94.69853236],[4.53283081,0.02397922,94.69785294],[4.53283024,0.02397751,94.69717271],[4.53282967,0.0239758,94.69649161],[4.5328291,0.02397409,94.69580955],[4.53282853,0.02397238,94.69512648],[4.53282796,0.02397068,94.6944423],[4.53282739,0.02396897,94.69375696],[4.53282681,0.02396726,94.69307037],[4.53282624,0.02396555,94.69238259],[4.53282567,0.02396384,94.69169375],[4.53282509,0.02396213,94.691004],[4.53282452,0.02396042,94.69031349],[4.53282394,0.02395871,94.68962237],[4.53282337,0.02395701,94.68893078],[4.53282279,0.0239553,94.68823886],[4.53282221,0.02395359,94.68754678],[4.53282164,0.02395188,94.68685467],[4.53282106,0.02395018,94.68616268],[4.53282048,0.02394847,94.68547095],[4.53281991,0.02394676,94.68477963],[4.53281933,0.02394505,94.68408888],[4.53281875,0.02394335,94.68339883],[4.53281817,0.02394164,94.68270963],[4.5328176,0.02393993,94.68202142],[4.53281702,0.02393822,94.68133435],[4.53281644,0.02393652,94.68064857],[4.53281587,0.02393481,94.67996422],[4.53281529,0.0239331,94.67928145],[4.53281471,0.02393139,94.67860039],[4.53281414,0.02392969,94.6779212],[4.53281356,0.02392798,94.67724397],[4.53281298,0.02392627,94.67656882],[4.53281241,0.02392456,94.67589588],[4.53281184,0.02392285,94.67522528],[4.53281126,0.02392114,94.67455718],[4.53281069,0.02391944,94.67389171],[4.53281011,0.02391773,94.67322902],[4.53280954,0.02391602,94.67256925],[4.53280897,0.02391431,94.67191255],[4.5328084,0.0239126,94.67125905],[4.53280783,0.02391089,94.67060891],[4.53280726,0.02390918,94.66996226],[4.53280669,0.02390747,94.66931925],[4.53280612,0.02390576,94.66868001],[4.53280556,0.02390405,94.6680447],[4.53280499,0.02390234,94.66741344],[4.53280443,0.02390062,94.66678638],[4.53280386,0.02389891,94.66616362],[4.5328033,0.0238972,94.66554503],[4.53280274,0.02389549,94.66493046],[4.53280218,0.02389377,94.66431973],[4.53280162,0.02389206,94.6637127],[4.53280106,0.02389035,94.66310919],[4.5328005,0.02388863,94.66250905],[4.53279994,0.02388692,94.66191211],[4.53279939,0.0238852,94.66131821],[4.53279883,0.02388349,94.66072719],[4.53279827,0.02388178,94.66013889],[4.53279772,0.02388006,94.65955315],[4.53279717,0.02387835,94.6589698],[4.53279661,0.02387663,94.65838869],[4.53279606,0.02387491,94.65780966],[4.5327955,0.0238732,94.65723254],[4.53279495,0.02387148,94.65665718],[4.5327944,0.02386977,94.65608342],[4.53279384,0.02386805,94.6555111],[4.53279329,0.02386634,94.65494006],[4.53279274,0.02386462,94.65437013],[4.53279219,0.02386291,94.65380118],[4.53279163,0.02386119,94.65323302],[4.53279108,0.02385947,94.65266552],[4.53279053,0.02385776,94.65209851],[4.53278997,0.02385604,94.65153183],[4.53278942,0.02385433,94.65096533],[4.53278887,0.02385261,94.65039885],[4.53278831,0.0238509,94.64983224],[4.53278776,0.02384918,94.64926534],[4.5327872,0.02384747,94.64869799],[4.53278665,0.02384575,94.64813005],[4.53278609,0.02384404,94.64756136],[4.53278554,0.02384232,94.64699176],[4.53278498,0.02384061,94.6464211],[4.53278442,0.02383889,94.64584937],[4.53278386,0.02383718,94.64527669],[4.5327833,0.02383547,94.64470318],[4.53278274,0.02383375,94.64412902],[4.53278218,0.02383204,94.64355435],[4.53278162,0.02383033,94.64297934],[4.53278106,0.02382861,94.64240415],[4.5327805,0.0238269,94.64182893],[4.53277994,0.02382519,94.6412538],[4.53277938,0.02382348,94.64067887],[4.53277882,0.02382176,94.64010426],[4.53277825,0.02382005,94.63953007],[4.53277769,0.02381834,94.63895642],[4.53277713,0.02381662,94.63838342],[4.53277657,0.02381491,94.63781118],[4.532776,0.0238132,94.63723981],[4.53277544,0.02381149,94.63666942],[4.53277488,0.02380977,94.63610012],[4.53277432,0.02380806,94.63553203],[4.53277375,0.02380635,94.63496525],[4.53277319,0.02380464,94.63439989],[4.53277263,0.02380292,94.63383606],[4.53277207,0.02380121,94.63327387],[4.5327715,0.0237995,94.63271332],[4.53277094,0.02379779,94.63215431],[4.53277038,0.02379607,94.63159674],[4.53276982,0.02379436,94.6310405],[4.53276926,0.02379265,94.63048551],[4.5327687,0.02379093,94.62993164],[4.53276814,0.02378922,94.62937881],[4.53276757,0.02378751,94.62882692],[4.53276701,0.0237858,94.62827585],[4.53276645,0.02378408,94.62772552],[4.53276589,0.02378237,94.62717583],[4.53276533,0.02378066,94.62662666],[4.53276477,0.02377894,94.62607793],[4.5327642,0.02377723,94.62552954],[4.53276364,0.02377552,94.62498138],[4.53276308,0.02377381,94.62443337],[4.53276252,0.02377209,94.62388539],[4.53276195,0.02377038,94.62333736],[4.53276139,0.02376867,94.62278917],[4.53276082,0.02376696,94.62224073],[4.53276026,0.02376525,94.62169195],[4.53275969,0.02376354,94.62114272],[4.53275913,0.02376182,94.62059296],[4.53275856,0.02376011,94.62004256],[4.53275799,0.0237584,94.61949143],[4.53275743,0.02375669,94.61893948],[4.53275686,0.02375498,94.6183866],[4.53275629,0.02375327,94.61783272],[4.53275572,0.02375156,94.61727773],[4.53275515,0.02374985,94.61672155],[4.53275458,0.02374814,94.61616407],[4.532754,0.02374643,94.61560521],[4.53275343,0.02374473,94.61504488],[4.53275286,0.02374302,94.61448297],[4.53275228,0.02374131,94.61391948],[4.53275171,0.0237396,94.61335467],[4.53275113,0.02373789,94.61278891],[4.53275055,0.02373619,94.61222258],[4.53274997,0.02373448,94.61165602],[4.5327494,0.02373277,94.61108962],[4.53274882,0.02373107,94.61052372],[4.53274824,0.02372936,94.6099587],[4.53274766,0.02372765,94.6093949],[4.53274708,0.02372594,94.60883269],[4.5327465,0.02372424,94.60827243],[4.53274592,0.02372253,94.60771447],[4.53274535,0.02372082,94.60715916],[4.53274477,0.02371911,94.60660686],[4.53274419,0.0237174,94.60605792],[4.53274362,0.0237157,94.60551269],[4.53274304,0.02371399,94.60497152],[4.53274247,0.02371228,94.60443476],[4.5327419,0.02371057,94.60390274],[4.53274133,0.02370886,94.60337583],[4.53274076,0.02370715,94.60285435],[4.53274019,0.02370543,94.60233866],[4.53273962,0.02370372,94.60182908],[4.53273906,0.02370201,94.60132585],[4.5327385,0.0237003,94.60082868],[4.53273794,0.02369859,94.60033718],[4.53273738,0.02369687,94.59985097],[4.53273682,0.02369516,94.59936968],[4.53273626,0.02369345,94.59889302],[4.53273571,0.02369173,94.59842073],[4.53273515,0.02369002,94.59795253],[4.5327346,0.02368831,94.59748816],[4.53273404,0.02368659,94.59702734],[4.53273349,0.02368488,94.59656983],[4.53273294,0.02368317,94.59611535],[4.53273239,0.02368145,94.59566364],[4.53273184,0.02367974,94.59521444],[4.53273129,0.02367803,94.59476748],[4.53273074,0.02367631,94.59432252],[4.53273019,0.0236746,94.59387928],[4.53272964,0.02367289,94.59343751],[4.53272909,0.02367117,94.59299696],[4.53272854,0.02366946,94.59255737],[4.53272799,0.02366775,94.59211849],[4.53272744,0.02366604,94.59168006],[4.53272689,0.02366433,94.59124183],[4.53272634,0.02366262,94.59080355],[4.53272579,0.02366091,94.59036497],[4.53272524,0.0236592,94.58992585],[4.53272468,0.02365749,94.58948593],[4.53272413,0.02365578,94.58904498],[4.53272357,0.02365407,94.58860274],[4.53272302,0.02365236,94.58815897],[4.53272246,0.02365065,94.58771344],[4.5327219,0.02364894,94.58726591],[4.53272134,0.02364723,94.58681657],[4.53272078,0.02364552,94.58636599],[4.53272022,0.02364381,94.58591468],[4.53271966,0.02364211,94.58546306],[4.53271909,0.0236404,94.58501155],[4.53271853,0.02363869,94.58456058],[4.53271797,0.02363698,94.58411057],[4.5327174,0.02363527,94.58366193],[4.53271684,0.02363356,94.58321507],[4.53271628,0.02363185,94.58277041],[4.53271571,0.02363014,94.58232836],[4.53271515,0.02362844,94.58188932],[4.53271459,0.02362673,94.5814537],[4.53271403,0.02362502,94.58102191],[4.53271347,0.02362331,94.58059434],[4.53271291,0.02362159,94.58017139],[4.53271245,0.02362018,94.57982557]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-4,"type":"shoulder","predecessorId":-4}},{"geometry":{"coordinates":[[4.5328996,0.02418237,94.78724011],[4.53289903,0.02418065,94.78650953],[4.53289847,0.02417894,94.7857792],[4.53289791,0.02417723,94.78504912],[4.53289735,0.02417552,94.78431931],[4.53289679,0.0241738,94.78358976],[4.53289623,0.02417209,94.78286048],[4.53289567,0.02417038,94.78213148],[4.5328951,0.02416867,94.78140275],[4.53289454,0.02416695,94.78067431],[4.53289398,0.02416524,94.77994615],[4.53289342,0.02416353,94.77921829],[4.53289286,0.02416182,94.77849072],[4.5328923,0.0241601,94.77776344],[4.53289173,0.02415839,94.77703647],[4.53289117,0.02415668,94.77630981],[4.53289061,0.02415497,94.77558346],[4.53289005,0.02415325,94.77485743],[4.53288948,0.02415154,94.77413172],[4.53288892,0.02414983,94.77340633],[4.53288836,0.02414812,94.77268127],[4.5328878,0.0241464,94.77195654],[4.53288723,0.02414469,94.77123215],[4.53288667,0.02414298,94.7705081],[4.53288611,0.02414127,94.76978441],[4.53288555,0.02413956,94.76906107],[4.53288498,0.02413784,94.76833809],[4.53288442,0.02413613,94.76761548],[4.53288386,0.02413442,94.76689326],[4.5328833,0.02413271,94.76617141],[4.53288273,0.024131,94.76544996],[4.53288217,0.02412928,94.76472891],[4.53288161,0.02412757,94.76400826],[4.53288104,0.02412586,94.76328803],[4.53288048,0.02412415,94.76256822],[4.53287992,0.02412244,94.76184884],[4.53287935,0.02412072,94.76112989],[4.53287879,0.02411901,94.76041138],[4.53287823,0.0241173,94.75969332],[4.53287766,0.02411559,94.75897572],[4.5328771,0.02411388,94.75825858],[4.53287654,0.02411216,94.75754191],[4.53287597,0.02411045,94.75682571],[4.53287541,0.02410874,94.75611001],[4.53287485,0.02410703,94.75539479],[4.53287428,0.02410532,94.75468007],[4.53287372,0.0241036,94.75396586],[4.53287316,0.02410189,94.75325215],[4.53287259,0.02410018,94.75253897],[4.53287203,0.02409847,94.75182632],[4.53287147,0.02409676,94.7511142],[4.5328709,0.02409504,94.75040262],[4.53287034,0.02409333,94.74969158],[4.53286977,0.02409162,94.74898111],[4.53286921,0.02408991,94.74827119],[4.53286865,0.0240882,94.74756185],[4.53286808,0.02408648,94.74685308],[4.53286752,0.02408477,94.74614489],[4.53286696,0.02408306,94.74543729],[4.53286639,0.02408135,94.7447303],[4.53286583,0.02407964,94.7440239],[4.53286526,0.02407793,94.74331812],[4.5328647,0.02407621,94.74261296],[4.53286414,0.0240745,94.74190842],[4.53286357,0.02407279,94.74120451],[4.53286301,0.02407108,94.74050125],[4.53286245,0.02406937,94.73979863],[4.53286188,0.02406765,94.73909667],[4.53286132,0.02406594,94.73839536],[4.53286075,0.02406423,94.73769473],[4.53286019,0.02406252,94.73699477],[4.53285963,0.02406081,94.73629549],[4.53285906,0.02405909,94.7355969],[4.5328585,0.02405738,94.73489901],[4.53285794,0.02405567,94.73420182],[4.53285737,0.02405396,94.73350535],[4.53285681,0.02405225,94.73280959],[4.53285625,0.02405054,94.73211455],[4.53285568,0.02404883,94.73142024],[4.53285512,0.02404711,94.73072668],[4.53285455,0.0240454,94.73003386],[4.53285399,0.02404369,94.72934179],[4.53285343,0.02404198,94.72865048],[4.53285286,0.02404027,94.72795994],[4.5328523,0.02403855,94.72727017],[4.53285174,0.02403684,94.72658118],[4.53285117,0.02403513,94.72589298],[4.53285061,0.02403342,94.72520557],[4.53285005,0.02403171,94.72451897],[4.53284948,0.02402999,94.72383317],[4.53284892,0.02402828,94.72314819],[4.53284836,0.02402657,94.722464],[4.53284779,0.02402486,94.72178059],[4.53284723,0.02402315,94.72109795],[4.53284667,0.02402143,94.72041605],[4.5328461,0.02401972,94.71973487],[4.53284554,0.02401801,94.71905441],[4.53284498,0.0240163,94.71837464],[4.53284441,0.02401458,94.71769555],[4.53284385,0.02401287,94.71701711],[4.53284329,0.02401116,94.71633932],[4.53284272,0.02400945,94.71566219],[4.53284216,0.02400774,94.7149857],[4.5328416,0.02400602,94.71430988],[4.53284103,0.02400431,94.71363471],[4.53284047,0.0240026,94.7129602],[4.53283991,0.02400089,94.71228636],[4.53283934,0.02399918,94.71161318],[4.53283878,0.02399746,94.71094067],[4.53283822,0.02399575,94.71026882],[4.53283765,0.02399404,94.70959765],[4.53283709,0.02399233,94.70892715],[4.53283653,0.02399062,94.70825732],[4.53283596,0.0239889,94.70758817],[4.5328354,0.02398719,94.7069197],[4.53283484,0.02398548,94.70625191],[4.53283427,0.02398377,94.70558481],[4.53283371,0.02398206,94.70491839],[4.53283315,0.02398034,94.70425266],[4.53283258,0.02397863,94.70358762],[4.53283202,0.02397692,94.70292328],[4.53283145,0.02397521,94.70225962],[4.53283089,0.0239735,94.70159667],[4.53283033,0.02397178,94.70093441],[4.53282976,0.02397007,94.70027285],[4.5328292,0.02396836,94.699612],[4.53282863,0.02396665,94.69895185],[4.53282807,0.02396494,94.69829241],[4.53282751,0.02396323,94.69763368],[4.53282694,0.02396151,94.69697566],[4.53282638,0.0239598,94.69631836],[4.53282581,0.02395809,94.69566177],[4.53282525,0.02395638,94.6950059],[4.53282469,0.02395467,94.69435075],[4.53282412,0.02395295,94.69369632],[4.53282356,0.02395124,94.69304261],[4.53282299,0.02394953,94.69238964],[4.53282243,0.02394782,94.69173739],[4.53282187,0.02394611,94.69108588],[4.5328213,0.0239444,94.69043509],[4.53282074,0.02394268,94.68978505],[4.53282017,0.02394097,94.68913574],[4.53281961,0.02393926,94.68848717],[4.53281904,0.02393755,94.68783934],[4.53281848,0.02393584,94.68719226],[4.53281792,0.02393412,94.68654592],[4.53281735,0.02393241,94.68590034],[4.53281679,0.0239307,94.6852555],[4.53281622,0.02392899,94.68461141],[4.53281566,0.02392728,94.68396804],[4.53281509,0.02392557,94.68332535],[4.53281453,0.02392385,94.68268333],[4.53281396,0.02392214,94.68204199],[4.5328134,0.02392043,94.68140131],[4.53281283,0.02391872,94.68076131],[4.53281227,0.02391701,94.680122],[4.5328117,0.0239153,94.67948337],[4.53281114,0.02391358,94.67884542],[4.53281057,0.02391187,94.67820817],[4.53281001,0.02391016,94.6775716],[4.53280944,0.02390845,94.67693574],[4.53280888,0.02390674,94.67630057],[4.53280831,0.02390503,94.67566611],[4.53280775,0.02390332,94.67503236],[4.53280718,0.0239016,94.67439931],[4.53280662,0.02389989,94.67376698],[4.53280605,0.02389818,94.67313536],[4.53280549,0.02389647,94.67250447],[4.53280492,0.02389476,94.67187429],[4.53280436,0.02389305,94.67124484],[4.53280379,0.02389134,94.67061613],[4.53280322,0.02388962,94.66998814],[4.53280266,0.02388791,94.66936089],[4.53280209,0.0238862,94.66873438],[4.53280153,0.02388449,94.66810862],[4.53280096,0.02388278,94.6674836],[4.53280039,0.02388107,94.66685932],[4.53279983,0.02387936,94.66623581],[4.53279926,0.02387764,94.66561304],[4.5327987,0.02387593,94.66499104],[4.53279813,0.02387422,94.6643698],[4.53279756,0.02387251,94.66374932],[4.532797,0.0238708,94.66312962],[4.53279643,0.02386909,94.66251068],[4.53279586,0.02386738,94.66189252],[4.5327953,0.02386567,94.66127514],[4.53279473,0.02386396,94.66065855],[4.53279416,0.02386224,94.66004274],[4.5327936,0.02386053,94.65942772],[4.53279303,0.02385882,94.65881349],[4.53279246,0.02385711,94.65820005],[4.5327919,0.0238554,94.65758742],[4.53279133,0.02385369,94.65697559],[4.53279076,0.02385198,94.65636456],[4.5327902,0.02385027,94.65575435],[4.53278963,0.02384856,94.65514495],[4.53278906,0.02384684,94.65453636],[4.5327885,0.02384513,94.65392859],[4.53278793,0.02384342,94.65332164],[4.53278736,0.02384171,94.65271553],[4.53278679,0.02384,94.65211024],[4.53278623,0.02383829,94.65150578],[4.53278566,0.02383658,94.65090216],[4.53278509,0.02383487,94.6502994],[4.53278452,0.02383316,94.64969755],[4.53278396,0.02383145,94.64909665],[4.53278339,0.02382974,94.64849675],[4.53278282,0.02382803,94.64789789],[4.53278226,0.02382631,94.64730011],[4.53278169,0.0238246,94.64670342],[4.53278112,0.02382289,94.64610782],[4.53278055,0.02382118,94.64551331],[4.53277999,0.02381947,94.64491988],[4.53277942,0.02381776,94.64432754],[4.53277885,0.02381605,94.64373629],[4.53277828,0.02381434,94.64314612],[4.53277772,0.02381263,94.64255704],[4.53277715,0.02381092,94.64196904],[4.53277658,0.02380921,94.64138213],[4.53277602,0.02380749,94.6407963],[4.53277545,0.02380578,94.64021156],[4.53277488,0.02380407,94.63962789],[4.53277431,0.02380236,94.63904532],[4.53277375,0.02380065,94.63846382],[4.53277318,0.02379894,94.63788341],[4.53277261,0.02379723,94.63730409],[4.53277205,0.02379552,94.63672585],[4.53277148,0.02379381,94.6361487],[4.53277091,0.0237921,94.63557264],[4.53277034,0.02379038,94.63499767],[4.53276978,0.02378867,94.63442379],[4.53276921,0.02378696,94.633851],[4.53276864,0.02378525,94.6332793],[4.53276808,0.02378354,94.63270869],[4.53276751,0.02378183,94.63213917],[4.53276694,0.02378012,94.63157075],[4.53276638,0.02377841,94.63100343],[4.53276581,0.0237767,94.6304372],[4.53276524,0.02377498,94.62987207],[4.53276468,0.02377327,94.62930804],[4.53276411,0.02377156,94.6287451],[4.53276354,0.02376985,94.62818327],[4.53276297,0.02376814,94.62762253],[4.53276241,0.02376643,94.6270629],[4.53276184,0.02376472,94.62650437],[4.53276127,0.02376301,94.62594694],[4.53276071,0.0237613,94.62539062],[4.53276014,0.02375959,94.6248354],[4.53275957,0.02375787,94.62428129],[4.53275901,0.02375616,94.62372829],[4.53275844,0.02375445,94.62317639],[4.53275787,0.02375274,94.62262561],[4.53275731,0.02375103,94.62207593],[4.53275674,0.02374932,94.62152737],[4.53275617,0.02374761,94.62097991],[4.5327556,0.0237459,94.62043357],[4.53275504,0.02374419,94.61988835],[4.53275447,0.02374248,94.61934424],[4.5327539,0.02374077,94.61880122],[4.53275334,0.02373906,94.61825929],[4.53275277,0.02373735,94.61771842],[4.5327522,0.02373564,94.61717859],[4.53275164,0.02373392,94.6166398],[4.53275107,0.02373221,94.61610203],[4.5327505,0.0237305,94.61556527],[4.53274993,0.02372879,94.6150295],[4.53274937,0.02372708,94.61449471],[4.5327488,0.02372537,94.61396089],[4.53274823,0.02372366,94.61342802],[4.53274766,0.02372195,94.61289608],[4.5327471,0.02372024,94.61236507],[4.53274653,0.02371852,94.61183498],[4.53274596,0.02371681,94.61130578],[4.53274539,0.0237151,94.61077746],[4.53274482,0.02371339,94.61025002],[4.53274426,0.02371168,94.60972343],[4.53274369,0.02370997,94.60919769],[4.53274312,0.02370826,94.60867279],[4.53274255,0.02370655,94.6081487],[4.53274198,0.02370483,94.60762542],[4.53274141,0.02370312,94.60710293],[4.53274084,0.02370141,94.60658123],[4.53274028,0.0236997,94.60606029],[4.53273971,0.02369799,94.60554011],[4.53273914,0.02369628,94.60502068],[4.53273857,0.02369458,94.60450199],[4.532738,0.02369287,94.60398414],[4.53273743,0.02369116,94.60346723],[4.53273686,0.02368945,94.60295135],[4.53273629,0.02368774,94.60243662],[4.53273572,0.02368603,94.60192313],[4.53273515,0.02368432,94.60141098],[4.53273458,0.02368262,94.60090028],[4.53273401,0.02368091,94.60039112],[4.53273345,0.0236792,94.5998836],[4.53273288,0.02367749,94.59937783],[4.53273231,0.02367579,94.5988739],[4.53273174,0.02367408,94.59837191],[4.53273117,0.02367237,94.59787195],[4.53273061,0.02367067,94.59737414],[4.53273004,0.02366896,94.59687855],[4.53272947,0.02366726,94.5963853],[4.5327289,0.02366555,94.59589447],[4.53272834,0.02366384,94.59540616],[4.53272777,0.02366214,94.59492047],[4.53272721,0.02366043,94.59443749],[4.53272664,0.02365873,94.59395732],[4.53272608,0.02365702,94.59348004],[4.53272551,0.02365531,94.59300576],[4.53272495,0.02365361,94.59253456],[4.53272439,0.0236519,94.59206653],[4.53272382,0.02365019,94.59160178],[4.53272326,0.02364848,94.59114038],[4.5327227,0.02364678,94.59068244],[4.53272214,0.02364507,94.59022803],[4.53272158,0.02364336,94.58977716],[4.53272102,0.02364165,94.58932977],[4.53272046,0.02363994,94.58888577],[4.5327199,0.02363823,94.58844511],[4.53271935,0.02363652,94.58800769],[4.53271879,0.0236348,94.58757345],[4.53271823,0.02363309,94.58714232],[4.53271768,0.02363138,94.58671422],[4.53271712,0.02362967,94.58628908],[4.53271657,0.02362796,94.58586683],[4.53271601,0.02362625,94.58544739],[4.53271546,0.02362453,94.5850307],[4.53271491,0.02362282,94.58461668],[4.53271436,0.02362111,94.58420527],[4.5327139,0.02361969,94.58386712]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3}},{"geometry":{"coordinates":[[4.5329287,0.02417267,94.88252949],[4.53292814,0.02417096,94.88179011],[4.53292757,0.02416925,94.88105125],[4.53292701,0.02416754,94.8803129],[4.53292644,0.02416583,94.87957505],[4.53292588,0.02416411,94.87883771],[4.53292532,0.0241624,94.87810086],[4.53292475,0.02416069,94.87736451],[4.53292419,0.02415898,94.87662864],[4.53292362,0.02415727,94.87589325],[4.53292306,0.02415556,94.87515834],[4.53292249,0.02415384,94.87442389],[4.53292193,0.02415213,94.87368992],[4.53292136,0.02415042,94.8729564],[4.5329208,0.02414871,94.87222333],[4.53292024,0.024147,94.87149072],[4.53291967,0.02414528,94.87075855],[4.53291911,0.02414357,94.87002682],[4.53291854,0.02414186,94.86929552],[4.53291798,0.02414015,94.86856465],[4.53291742,0.02413844,94.8678342],[4.53291685,0.02413673,94.86710417],[4.53291629,0.02413501,94.86637456],[4.53291572,0.0241333,94.86564535],[4.53291516,0.02413159,94.86491654],[4.5329146,0.02412988,94.86418815],[4.53291403,0.02412817,94.86346015],[4.53291347,0.02412645,94.86273255],[4.5329129,0.02412474,94.86200535],[4.53291234,0.02412303,94.86127854],[4.53291178,0.02412132,94.86055212],[4.53291121,0.02411961,94.85982609],[4.53291065,0.02411789,94.85910045],[4.53291009,0.02411618,94.85837519],[4.53290952,0.02411447,94.85765032],[4.53290896,0.02411276,94.85692582],[4.53290839,0.02411105,94.8562017],[4.53290783,0.02410933,94.85547795],[4.53290727,0.02410762,94.85475458],[4.5329067,0.02410591,94.85403157],[4.53290614,0.0241042,94.85330894],[4.53290558,0.02410249,94.85258666],[4.53290501,0.02410077,94.85186475],[4.53290445,0.02409906,94.8511432],[4.53290388,0.02409735,94.85042201],[4.53290332,0.02409564,94.84970117],[4.53290276,0.02409393,94.84898068],[4.53290219,0.02409221,94.84826055],[4.53290163,0.0240905,94.84754076],[4.53290107,0.02408879,94.84682132],[4.5329005,0.02408708,94.84610221],[4.53289994,0.02408537,94.84538345],[4.53289937,0.02408365,94.84466503],[4.53289881,0.02408194,94.84394695],[4.53289825,0.02408023,94.84322919],[4.53289768,0.02407852,94.84251177],[4.53289712,0.02407681,94.84179467],[4.53289655,0.02407509,94.8410779],[4.53289599,0.02407338,94.84036146],[4.53289543,0.02407167,94.83964533],[4.53289486,0.02406996,94.83892953],[4.5328943,0.02406825,94.83821404],[4.53289373,0.02406653,94.83749886],[4.53289317,0.02406482,94.836784],[4.53289261,0.02406311,94.83606944],[4.53289204,0.0240614,94.83535519],[4.53289148,0.02405969,94.83464125],[4.53289091,0.02405797,94.8339276],[4.53289035,0.02405626,94.83321426],[4.53288979,0.02405455,94.83250121],[4.53288922,0.02405284,94.83178846],[4.53288866,0.02405113,94.831076],[4.53288809,0.02404941,94.83036383],[4.53288753,0.0240477,94.82965195],[4.53288696,0.02404599,94.82894035],[4.5328864,0.02404428,94.82822904],[4.53288584,0.02404257,94.827518],[4.53288527,0.02404086,94.82680725],[4.53288471,0.02403915,94.82609677],[4.53288414,0.02403743,94.82538656],[4.53288358,0.02403572,94.82467662],[4.53288301,0.02403401,94.82396696],[4.53288245,0.0240323,94.82325756],[4.53288188,0.02403059,94.82254842],[4.53288132,0.02402888,94.82183954],[4.53288075,0.02402716,94.82113093],[4.53288019,0.02402545,94.82042257],[4.53287962,0.02402374,94.81971446],[4.53287906,0.02402203,94.81900661],[4.53287849,0.02402032,94.81829901],[4.53287793,0.02401861,94.81759166],[4.53287736,0.02401689,94.81688455],[4.5328768,0.02401518,94.81617768],[4.53287623,0.02401347,94.81547106],[4.53287567,0.02401176,94.81476467],[4.5328751,0.02401005,94.81405853],[4.53287453,0.02400834,94.81335261],[4.53287397,0.02400663,94.81264693],[4.5328734,0.02400491,94.81194148],[4.53287284,0.0240032,94.81123625],[4.53287227,0.02400149,94.81053126],[4.5328717,0.02399978,94.80982652],[4.53287114,0.02399807,94.80912206],[4.53287057,0.02399636,94.80841787],[4.53287001,0.02399465,94.807714],[4.53286944,0.02399293,94.80701044],[4.53286887,0.02399122,94.80630723],[4.53286831,0.02398951,94.80560437],[4.53286774,0.0239878,94.80490188],[4.53286718,0.02398609,94.80419979],[4.53286661,0.02398438,94.8034981],[4.53286604,0.02398267,94.80279684],[4.53286548,0.02398096,94.80209603],[4.53286491,0.02397924,94.80139567],[4.53286434,0.02397753,94.80069579],[4.53286378,0.02397582,94.7999964],[4.53286321,0.02397411,94.79929753],[4.53286265,0.0239724,94.79859918],[4.53286208,0.02397069,94.79790138],[4.53286151,0.02396898,94.79720414],[4.53286095,0.02396727,94.79650749],[4.53286038,0.02396555,94.79581143],[4.53285981,0.02396384,94.79511598],[4.53285925,0.02396213,94.79442117],[4.53285868,0.02396042,94.793727],[4.53285812,0.02395871,94.7930335],[4.53285755,0.023957,94.79234068],[4.53285698,0.02395529,94.79164857],[4.53285642,0.02395358,94.79095716],[4.53285585,0.02395186,94.7902665],[4.53285529,0.02395015,94.78957658],[4.53285472,0.02394844,94.78888743],[4.53285416,0.02394673,94.78819906],[4.53285359,0.02394502,94.78751149],[4.53285303,0.02394331,94.78682474],[4.53285246,0.02394159,94.78613883],[4.53285189,0.02393988,94.78545377],[4.53285133,0.02393817,94.78476957],[4.53285076,0.02393646,94.78408626],[4.5328502,0.02393475,94.78340385],[4.53284964,0.02393304,94.78272236],[4.53284907,0.02393132,94.7820418],[4.53284851,0.02392961,94.7813622],[4.53284794,0.0239279,94.78068356],[4.53284738,0.02392619,94.78000591],[4.53284681,0.02392448,94.77932925],[4.53284625,0.02392276,94.77865362],[4.53284569,0.02392105,94.77797902],[4.53284512,0.02391934,94.77730546],[4.53284456,0.02391763,94.77663293],[4.532844,0.02391592,94.77596141],[4.53284343,0.0239142,94.77529088],[4.53284287,0.02391249,94.77462132],[4.53284231,0.02391078,94.7739527],[4.53284175,0.02390907,94.77328501],[4.53284118,0.02390735,94.77261822],[4.53284062,0.02390564,94.77195232],[4.53284006,0.02390393,94.77128728],[4.5328395,0.02390221,94.77062309],[4.53283893,0.0239005,94.76995972],[4.53283837,0.02389879,94.76929715],[4.53283781,0.02389708,94.76863536],[4.53283725,0.02389536,94.76797434],[4.53283669,0.02389365,94.76731405],[4.53283613,0.02389194,94.76665449],[4.53283556,0.02389023,94.76599562],[4.532835,0.02388851,94.76533744],[4.53283444,0.0238868,94.76467992],[4.53283388,0.02388509,94.76402303],[4.53283332,0.02388337,94.76336676],[4.53283276,0.02388166,94.7627111],[4.53283219,0.02387995,94.76205601],[4.53283163,0.02387824,94.76140148],[4.53283107,0.02387652,94.76074749],[4.53283051,0.02387481,94.76009401],[4.53282995,0.0238731,94.75944104],[4.53282939,0.02387138,94.75878854],[4.53282882,0.02386967,94.75813651],[4.53282826,0.02386796,94.75748491],[4.5328277,0.02386625,94.75683373],[4.53282714,0.02386453,94.75618295],[4.53282658,0.02386282,94.75553254],[4.53282602,0.02386111,94.7548825],[4.53282545,0.02385939,94.7542328],[4.53282489,0.02385768,94.75358342],[4.53282433,0.02385597,94.75293433],[4.53282377,0.02385426,94.75228553],[4.53282321,0.02385254,94.75163699],[4.53282264,0.02385083,94.7509887],[4.53282208,0.02384912,94.75034062],[4.53282152,0.02384741,94.74969275],[4.53282095,0.02384569,94.74904506],[4.53282039,0.02384398,94.74839754],[4.53281983,0.02384227,94.74775016],[4.53281927,0.02384056,94.74710291],[4.5328187,0.02383884,94.74645577],[4.53281814,0.02383713,94.74580872],[4.53281758,0.02383542,94.74516173],[4.53281701,0.02383371,94.7445148],[4.53281645,0.023832,94.7438679],[4.53281588,0.02383028,94.74322101],[4.53281532,0.02382857,94.74257411],[4.53281475,0.02382686,94.7419272],[4.53281419,0.02382515,94.74128026],[4.53281362,0.02382344,94.74063332],[4.53281306,0.02382172,94.73998641],[4.53281249,0.02382001,94.73933955],[4.53281193,0.0238183,94.73869277],[4.53281136,0.02381659,94.73804608],[4.5328108,0.02381488,94.73739951],[4.53281023,0.02381317,94.73675308],[4.53280966,0.02381146,94.73610683],[4.5328091,0.02380974,94.73546077],[4.53280853,0.02380803,94.73481492],[4.53280797,0.02380632,94.73416931],[4.5328074,0.02380461,94.73352396],[4.53280683,0.0238029,94.7328789],[4.53280627,0.02380119,94.73223415],[4.5328057,0.02379948,94.73158974],[4.53280513,0.02379777,94.73094567],[4.53280456,0.02379605,94.73030199],[4.532804,0.02379434,94.72965871],[4.53280343,0.02379263,94.72901585],[4.53280286,0.02379092,94.72837345],[4.53280229,0.02378921,94.72773151],[4.53280173,0.0237875,94.72709008],[4.53280116,0.02378579,94.72644916],[4.53280059,0.02378408,94.7258088],[4.53280002,0.02378237,94.725169],[4.53279946,0.02378066,94.7245298],[4.53279889,0.02377895,94.72389121],[4.53279832,0.02377723,94.72325327],[4.53279775,0.02377552,94.72261599],[4.53279719,0.02377381,94.7219794],[4.53279662,0.0237721,94.72134352],[4.53279605,0.02377039,94.72070838],[4.53279548,0.02376868,94.720074],[4.53279492,0.02376697,94.71944041],[4.53279435,0.02376526,94.71880761],[4.53279378,0.02376355,94.71817565],[4.53279321,0.02376184,94.71754455],[4.53279265,0.02376012,94.71691431],[4.53279208,0.02375841,94.71628498],[4.53279151,0.0237567,94.71565657],[4.53279095,0.02375499,94.7150291],[4.53279038,0.02375328,94.71440261],[4.53278981,0.02375157,94.7137771],[4.53278924,0.02374986,94.71315261],[4.53278868,0.02374815,94.71252915],[4.53278811,0.02374644,94.71190675],[4.53278755,0.02374472,94.71128543],[4.53278698,0.02374301,94.71066522],[4.53278641,0.0237413,94.71004613],[4.53278585,0.02373959,94.70942819],[4.53278528,0.02373788,94.70881142],[4.53278472,0.02373617,94.70819584],[4.53278415,0.02373446,94.70758148],[4.53278359,0.02373275,94.70696835],[4.53278302,0.02373103,94.70635646],[4.53278246,0.02372932,94.7057458],[4.53278189,0.02372761,94.70513637],[4.53278133,0.0237259,94.70452814],[4.53278076,0.02372419,94.7039211],[4.5327802,0.02372248,94.70331526],[4.53277963,0.02372076,94.70271059],[4.53277907,0.02371905,94.70210708],[4.53277851,0.02371734,94.70150473],[4.53277794,0.02371563,94.70090352],[4.53277738,0.02371391,94.70030344],[4.53277682,0.0237122,94.69970448],[4.53277625,0.02371049,94.69910664],[4.53277569,0.02370878,94.69850989],[4.53277513,0.02370706,94.69791423],[4.53277456,0.02370535,94.69731965],[4.532774,0.02370364,94.69672614],[4.53277344,0.02370192,94.69613369],[4.53277287,0.02370021,94.69554228],[4.53277231,0.0236985,94.69495191],[4.53277175,0.02369679,94.69436256],[4.53277119,0.02369507,94.69377423],[4.53277063,0.02369336,94.6931869],[4.53277006,0.02369165,94.69260056],[4.5327695,0.02368993,94.69201521],[4.53276894,0.02368822,94.69143084],[4.53276838,0.02368651,94.69084742],[4.53276782,0.0236848,94.69026496],[4.53276726,0.02368308,94.68968344],[4.5327667,0.02368137,94.68910285],[4.53276613,0.02367966,94.68852318],[4.53276557,0.02367795,94.68794443],[4.53276501,0.02367624,94.68736658],[4.53276445,0.02367452,94.68678961],[4.53276389,0.02367281,94.68621353],[4.53276333,0.0236711,94.68563832],[4.53276277,0.02366939,94.68506398],[4.53276221,0.02366768,94.68449048],[4.53276165,0.02366597,94.68391782],[4.53276109,0.02366426,94.683346],[4.53276053,0.02366255,94.682775],[4.53275997,0.02366084,94.68220481],[4.53275941,0.02365913,94.68163542],[4.53275884,0.02365742,94.68106683],[4.53275828,0.02365571,94.68049902],[4.53275772,0.023654,94.67993198],[4.53275716,0.02365229,94.67936571],[4.5327566,0.02365058,94.67880019],[4.53275604,0.02364887,94.67823542],[4.53275548,0.02364716,94.67767138],[4.53275492,0.02364545,94.67710807],[4.53275436,0.02364374,94.67654548],[4.53275379,0.02364203,94.6759836],[4.53275323,0.02364032,94.67542241],[4.53275267,0.02363861,94.67486191],[4.53275211,0.0236369,94.6743021],[4.53275155,0.02363519,94.67374295],[4.53275098,0.02363348,94.67318447],[4.53275042,0.02363177,94.67262664],[4.53274986,0.02363006,94.67206946],[4.5327493,0.02362835,94.67151291],[4.53274873,0.02362664,94.67095699],[4.53274817,0.02362493,94.67040169],[4.53274761,0.02362322,94.669847],[4.53274704,0.02362151,94.6692929],[4.53274648,0.0236198,94.66873941],[4.53274592,0.02361809,94.66818649],[4.53274535,0.02361637,94.66763415],[4.53274479,0.02361466,94.66708238],[4.53274422,0.02361295,94.66653117],[4.53274366,0.02361124,94.66598051],[4.53274319,0.02360983,94.66552576]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0},{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2}},{"geometry":{"coordinates":[[4.53295978,0.02416233,94.98425062],[4.53295922,0.02416061,94.98352591],[4.53295865,0.0241589,94.98280123],[4.53295809,0.02415719,94.9820766],[4.53295753,0.02415547,94.98135199],[4.53295697,0.02415376,94.98062742],[4.53295641,0.02415205,94.97990288],[4.53295585,0.02415034,94.97917837],[4.53295528,0.02414862,94.97845389],[4.53295472,0.02414691,94.97772943],[4.53295416,0.0241452,94.97700499],[4.5329536,0.02414348,94.97628058],[4.53295304,0.02414177,94.97555619],[4.53295248,0.02414006,94.97483182],[4.53295191,0.02413834,94.97410746],[4.53295135,0.02413663,94.97338312],[4.53295079,0.02413492,94.9726588],[4.53295023,0.02413321,94.97193448],[4.53294967,0.02413149,94.97121018],[4.5329491,0.02412978,94.97048588],[4.53294854,0.02412807,94.96976159],[4.53294798,0.02412636,94.96903731],[4.53294742,0.02412464,94.96831303],[4.53294685,0.02412293,94.96758875],[4.53294629,0.02412122,94.96686448],[4.53294573,0.0241195,94.96614021],[4.53294517,0.02411779,94.96541595],[4.53294461,0.02411608,94.9646917],[4.53294404,0.02411437,94.96396745],[4.53294348,0.02411265,94.96324322],[4.53294292,0.02411094,94.96251899],[4.53294236,0.02410923,94.96179478],[4.53294179,0.02410752,94.96107058],[4.53294123,0.0241058,94.96034639],[4.53294067,0.02410409,94.95962222],[4.53294011,0.02410238,94.95889807],[4.53293954,0.02410067,94.95817393],[4.53293898,0.02409895,94.95744982],[4.53293842,0.02409724,94.95672572],[4.53293785,0.02409553,94.95600165],[4.53293729,0.02409381,94.95527759],[4.53293673,0.0240921,94.95455356],[4.53293617,0.02409039,94.95382956],[4.5329356,0.02408868,94.95310558],[4.53293504,0.02408696,94.95238163],[4.53293448,0.02408525,94.9516577],[4.53293391,0.02408354,94.95093381],[4.53293335,0.02408183,94.95020994],[4.53293279,0.02408011,94.94948611],[4.53293222,0.0240784,94.94876231],[4.53293166,0.02407669,94.94803854],[4.5329311,0.02407498,94.94731481],[4.53293054,0.02407327,94.94659112],[4.53292997,0.02407155,94.94586746],[4.53292941,0.02406984,94.94514384],[4.53292885,0.02406813,94.94442026],[4.53292828,0.02406642,94.94369672],[4.53292772,0.0240647,94.94297322],[4.53292716,0.02406299,94.94224977],[4.53292659,0.02406128,94.94152636],[4.53292603,0.02405957,94.94080299],[4.53292546,0.02405785,94.94007968],[4.5329249,0.02405614,94.93935641],[4.53292434,0.02405443,94.93863318],[4.53292377,0.02405272,94.93791001],[4.53292321,0.024051,94.93718689],[4.53292265,0.02404929,94.93646383],[4.53292208,0.02404758,94.93574081],[4.53292152,0.02404587,94.93501786],[4.53292096,0.02404416,94.93429495],[4.53292039,0.02404244,94.93357211],[4.53291983,0.02404073,94.93284932],[4.53291926,0.02403902,94.93212659],[4.5329187,0.02403731,94.93140393],[4.53291814,0.0240356,94.93068132],[4.53291757,0.02403388,94.92995878],[4.53291701,0.02403217,94.9292363],[4.53291645,0.02403046,94.92851389],[4.53291588,0.02402875,94.92779154],[4.53291532,0.02402704,94.92706926],[4.53291475,0.02402532,94.92634705],[4.53291419,0.02402361,94.92562491],[4.53291363,0.0240219,94.92490285],[4.53291306,0.02402019,94.92418085],[4.5329125,0.02401848,94.92345893],[4.53291193,0.02401676,94.92273708],[4.53291137,0.02401505,94.92201531],[4.5329108,0.02401334,94.92129362],[4.53291024,0.02401163,94.920572],[4.53290968,0.02400991,94.91985047],[4.53290911,0.0240082,94.91912901],[4.53290855,0.02400649,94.91840764],[4.53290798,0.02400478,94.91768635],[4.53290742,0.02400307,94.91696514],[4.53290685,0.02400135,94.91624402],[4.53290629,0.02399964,94.91552299],[4.53290573,0.02399793,94.91480204],[4.53290516,0.02399622,94.91408118],[4.5329046,0.02399451,94.91336042],[4.53290403,0.02399279,94.91263974],[4.53290347,0.02399108,94.91191916],[4.5329029,0.02398937,94.91119867],[4.53290234,0.02398766,94.91047827],[4.53290177,0.02398595,94.90975798],[4.53290121,0.02398423,94.90903778],[4.53290065,0.02398252,94.90831767],[4.53290008,0.02398081,94.90759767],[4.53289952,0.0239791,94.90687777],[4.53289895,0.02397739,94.90615797],[4.53289839,0.02397567,94.90543827],[4.53289782,0.02397396,94.90471868],[4.53289726,0.02397225,94.9039992],[4.53289669,0.02397054,94.90327982],[4.53289613,0.02396883,94.90256055],[4.53289556,0.02396712,94.90184138],[4.532895,0.0239654,94.90112233],[4.53289443,0.02396369,94.90040339],[4.53289387,0.02396198,94.89968457],[4.5328933,0.02396027,94.89896585],[4.53289274,0.02395856,94.89824726],[4.53289217,0.02395684,94.89752877],[4.53289161,0.02395513,94.89681041],[4.53289104,0.02395342,94.89609216],[4.53289048,0.02395171,94.89537404],[4.53288991,0.02395,94.89465604],[4.53288935,0.02394828,94.89393815],[4.53288878,0.02394657,94.8932204],[4.53288822,0.02394486,94.89250276],[4.53288765,0.02394315,94.89178526],[4.53288709,0.02394144,94.89106787],[4.53288652,0.02393973,94.89035062],[4.53288596,0.02393801,94.8896335],[4.53288539,0.0239363,94.88891651],[4.53288483,0.02393459,94.88819965],[4.53288426,0.02393288,94.88748292],[4.5328837,0.02393117,94.88676633],[4.53288313,0.02392945,94.88604987],[4.53288257,0.02392774,94.88533355],[4.532882,0.02392603,94.88461737],[4.53288144,0.02392432,94.88390132],[4.53288087,0.02392261,94.88318542],[4.53288031,0.0239209,94.88246966],[4.53287974,0.02391918,94.88175404],[4.53287918,0.02391747,94.88103856],[4.53287861,0.02391576,94.88032323],[4.53287805,0.02391405,94.87960804],[4.53287748,0.02391234,94.87889301],[4.53287692,0.02391063,94.87817812],[4.53287635,0.02390891,94.87746338],[4.53287579,0.0239072,94.87674879],[4.53287522,0.02390549,94.87603435],[4.53287466,0.02390378,94.87532007],[4.53287409,0.02390207,94.87460594],[4.53287353,0.02390035,94.87389197],[4.53287296,0.02389864,94.87317815],[4.5328724,0.02389693,94.87246449],[4.53287183,0.02389522,94.87175099],[4.53287126,0.02389351,94.87103765],[4.5328707,0.0238918,94.87032447],[4.53287013,0.02389008,94.86961146],[4.53286957,0.02388837,94.86889861],[4.532869,0.02388666,94.86818592],[4.53286844,0.02388495,94.8674734],[4.53286787,0.02388324,94.86676105],[4.53286731,0.02388153,94.86604886],[4.53286674,0.02387981,94.86533685],[4.53286618,0.0238781,94.864625],[4.53286561,0.02387639,94.86391333],[4.53286505,0.02387468,94.86320183],[4.53286448,0.02387297,94.86249051],[4.53286391,0.02387126,94.86177936],[4.53286335,0.02386954,94.86106839],[4.53286278,0.02386783,94.86035759],[4.53286222,0.02386612,94.85964698],[4.53286165,0.02386441,94.85893654],[4.53286109,0.0238627,94.85822629],[4.53286052,0.02386098,94.85751622],[4.53285996,0.02385927,94.85680633],[4.53285939,0.02385756,94.85609663],[4.53285883,0.02385585,94.85538711],[4.53285826,0.02385414,94.85467778],[4.5328577,0.02385243,94.85396864],[4.53285713,0.02385071,94.85325969],[4.53285656,0.023849,94.85255093],[4.532856,0.02384729,94.85184236],[4.53285543,0.02384558,94.85113399],[4.53285487,0.02384387,94.8504258],[4.5328543,0.02384216,94.84971782],[4.53285374,0.02384044,94.84901003],[4.53285317,0.02383873,94.84830243],[4.53285261,0.02383702,94.84759504],[4.53285204,0.02383531,94.84688784],[4.53285148,0.0238336,94.84618085],[4.53285091,0.02383189,94.84547406],[4.53285034,0.02383017,94.84476747],[4.53284978,0.02382846,94.84406109],[4.53284921,0.02382675,94.84335491],[4.53284865,0.02382504,94.84264894],[4.53284808,0.02382333,94.84194317],[4.53284752,0.02382162,94.84123762],[4.53284695,0.0238199,94.84053227],[4.53284639,0.02381819,94.83982714],[4.53284582,0.02381648,94.83912221],[4.53284526,0.02381477,94.8384175],[4.53284469,0.02381306,94.83771301],[4.53284412,0.02381135,94.83700873],[4.53284356,0.02380963,94.83630467],[4.53284299,0.02380792,94.83560083],[4.53284243,0.02380621,94.8348972],[4.53284186,0.0238045,94.83419379],[4.5328413,0.02380279,94.83349061],[4.53284073,0.02380108,94.83278765],[4.53284017,0.02379936,94.83208491],[4.5328396,0.02379765,94.8313824],[4.53283904,0.02379594,94.83068011],[4.53283847,0.02379423,94.82997805],[4.53283791,0.02379252,94.82927621],[4.53283734,0.0237908,94.82857461],[4.53283677,0.02378909,94.82787323],[4.53283621,0.02378738,94.82717209],[4.53283564,0.02378567,94.82647117],[4.53283508,0.02378396,94.82577049],[4.53283451,0.02378225,94.82507005],[4.53283395,0.02378053,94.82436984],[4.53283338,0.02377882,94.82366987],[4.53283282,0.02377711,94.82297014],[4.53283225,0.0237754,94.82227066],[4.53283169,0.02377369,94.82157142],[4.53283112,0.02377198,94.82087242],[4.53283056,0.02377026,94.82017368],[4.53282999,0.02376855,94.81947519],[4.53282943,0.02376684,94.81877695],[4.53282886,0.02376513,94.81807897],[4.5328283,0.02376342,94.81738125],[4.53282773,0.0237617,94.81668379],[4.53282716,0.02375999,94.81598659],[4.5328266,0.02375828,94.81528966],[4.53282603,0.02375657,94.814593],[4.53282547,0.02375486,94.8138966],[4.5328249,0.02375315,94.81320048],[4.53282434,0.02375143,94.81250463],[4.53282377,0.02374972,94.81180906],[4.53282321,0.02374801,94.81111376],[4.53282264,0.0237463,94.81041875],[4.53282208,0.02374459,94.80972401],[4.53282151,0.02374287,94.80902957],[4.53282095,0.02374116,94.80833541],[4.53282038,0.02373945,94.80764153],[4.53281982,0.02373774,94.80694795],[4.53281925,0.02373603,94.80625467],[4.53281869,0.02373432,94.80556167],[4.53281812,0.0237326,94.80486898],[4.53281756,0.02373089,94.80417658],[4.53281699,0.02372918,94.80348449],[4.53281643,0.02372747,94.80279269],[4.53281587,0.02372576,94.80210121],[4.5328153,0.02372404,94.80141003],[4.53281474,0.02372233,94.80071916],[4.53281417,0.02372062,94.8000286],[4.53281361,0.02371891,94.79933836],[4.53281304,0.0237172,94.79864843],[4.53281248,0.02371548,94.79795882],[4.53281191,0.02371377,94.79726953],[4.53281135,0.02371206,94.79658056],[4.53281078,0.02371035,94.79589191],[4.53281022,0.02370864,94.79520359],[4.53280965,0.02370692,94.79451559],[4.53280909,0.02370521,94.79382793],[4.53280852,0.0237035,94.79314059],[4.53280796,0.02370179,94.79245359],[4.5328074,0.02370008,94.79176693],[4.53280683,0.02369836,94.7910806],[4.53280627,0.02369665,94.7903946],[4.5328057,0.02369494,94.78970895],[4.53280514,0.02369323,94.78902365],[4.53280457,0.02369152,94.78833868],[4.53280401,0.0236898,94.78765407],[4.53280345,0.02368809,94.7869698],[4.53280288,0.02368638,94.78628588],[4.53280232,0.02368467,94.78560231],[4.53280175,0.02368295,94.78491909],[4.53280119,0.02368124,94.78423623],[4.53280063,0.02367953,94.78355373],[4.53280006,0.02367782,94.78287159],[4.5327995,0.0236761,94.7821898],[4.53279894,0.02367439,94.78150838],[4.53279837,0.02367268,94.78082732],[4.53279781,0.02367097,94.78014663],[4.53279725,0.02366926,94.77946631],[4.53279668,0.02366754,94.77878635],[4.53279612,0.02366583,94.77810677],[4.53279556,0.02366412,94.77742755],[4.53279499,0.02366241,94.77674871],[4.53279443,0.0236607,94.77607025],[4.53279386,0.02365899,94.77539217],[4.5327933,0.02365727,94.77471446],[4.53279274,0.02365556,94.77403713],[4.53279217,0.02365385,94.77336019],[4.53279161,0.02365214,94.77268363],[4.53279105,0.02365043,94.77200745],[4.53279048,0.02364872,94.77133166],[4.53278992,0.023647,94.77065626],[4.53278936,0.02364529,94.76998125],[4.53278879,0.02364358,94.76930663],[4.53278823,0.02364187,94.76863241],[4.53278767,0.02364016,94.76795858],[4.5327871,0.02363845,94.76728514],[4.53278654,0.02363674,94.7666121],[4.53278597,0.02363503,94.76593946],[4.53278541,0.02363332,94.76526722],[4.53278485,0.0236316,94.76459538],[4.53278428,0.02362989,94.76392395],[4.53278372,0.02362818,94.76325292],[4.53278315,0.02362647,94.76258229],[4.53278259,0.02362476,94.76191207],[4.53278203,0.02362305,94.76124226],[4.53278146,0.02362134,94.76057286],[4.5327809,0.02361963,94.75990387],[4.53278033,0.02361791,94.7592353],[4.53277977,0.0236162,94.75856713],[4.5327792,0.02361449,94.75789939],[4.53277864,0.02361278,94.75723205],[4.53277808,0.02361107,94.75656514],[4.53277751,0.02360936,94.75589864],[4.53277695,0.02360765,94.75523257],[4.53277638,0.02360593,94.75456691],[4.53277582,0.02360422,94.75390168],[4.53277525,0.02360251,94.75323687],[4.53277469,0.0236008,94.75257248],[4.53277422,0.02359938,94.75202365]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}},{"geometry":{"coordinates":[[4.53280865,0.02358779,94.84800206],[4.53280912,0.02358921,94.8486664],[4.53280969,0.02359092,94.8494695],[4.53281026,0.02359263,94.8502719],[4.53281083,0.02359434,94.85107361],[4.5328114,0.02359605,94.85187464],[4.53281197,0.02359777,94.85267498],[4.53281254,0.02359948,94.85347466],[4.5328131,0.02360119,94.85427367],[4.53281367,0.0236029,94.85507201],[4.53281424,0.02360461,94.8558697],[4.53281481,0.02360633,94.85666674],[4.53281537,0.02360804,94.85746313],[4.53281594,0.02360975,94.85825888],[4.53281651,0.02361146,94.859054],[4.53281707,0.02361318,94.85984849],[4.53281764,0.02361489,94.86064236],[4.53281821,0.0236166,94.86143561],[4.53281877,0.02361831,94.86222825],[4.53281934,0.02362003,94.86302029],[4.5328199,0.02362174,94.86381173],[4.53282047,0.02362345,94.86460257],[4.53282103,0.02362517,94.86539283],[4.5328216,0.02362688,94.86618251],[4.53282216,0.02362859,94.86697162],[4.53282273,0.02363031,94.86776015],[4.53282329,0.02363202,94.86854813],[4.53282386,0.02363373,94.86933555],[4.53282442,0.02363545,94.87012242],[4.53282499,0.02363716,94.87090875],[4.53282555,0.02363887,94.87169454],[4.53282611,0.02364059,94.8724798],[4.53282668,0.0236423,94.87326454],[4.53282724,0.02364401,94.87404876],[4.5328278,0.02364573,94.87483248],[4.53282837,0.02364744,94.87561568],[4.53282893,0.02364915,94.87639839],[4.53282949,0.02365087,94.87718061],[4.53283005,0.02365258,94.87796234],[4.53283062,0.02365429,94.8787436],[4.53283118,0.02365601,94.87952438],[4.53283174,0.02365772,94.8803047],[4.5328323,0.02365943,94.88108456],[4.53283287,0.02366115,94.88186398],[4.53283343,0.02366286,94.88264294],[4.53283399,0.02366457,94.88342147],[4.53283455,0.02366629,94.88419957],[4.53283511,0.023668,94.88497725],[4.53283567,0.02366971,94.88575451],[4.53283624,0.02367143,94.88653136],[4.5328368,0.02367314,94.88730781],[4.53283736,0.02367485,94.88808386],[4.53283792,0.02367657,94.88885952],[4.53283848,0.02367828,94.88963481],[4.53283904,0.02367999,94.89040971],[4.53283961,0.02368171,94.89118425],[4.53284017,0.02368342,94.89195843],[4.53284073,0.02368513,94.89273226],[4.53284129,0.02368684,94.89350574],[4.53284185,0.02368856,94.89427888],[4.53284241,0.02369027,94.89505169],[4.53284297,0.02369198,94.89582418],[4.53284354,0.0236937,94.89659635],[4.5328441,0.02369541,94.8973682],[4.53284466,0.02369712,94.89813976],[4.53284522,0.02369884,94.89891102],[4.53284578,0.02370055,94.899682],[4.53284634,0.02370226,94.90045269],[4.53284691,0.02370397,94.90122311],[4.53284747,0.02370569,94.90199327],[4.53284803,0.0237074,94.90276316],[4.53284859,0.02370911,94.90353281],[4.53284915,0.02371083,94.90430221],[4.53284971,0.02371254,94.90507138],[4.53285028,0.02371425,94.90584032],[4.53285084,0.02371597,94.90660904],[4.5328514,0.02371768,94.90737754],[4.53285196,0.02371939,94.90814584],[4.53285252,0.02372111,94.90891394],[4.53285308,0.02372282,94.90968186],[4.53285365,0.02372453,94.91044958],[4.53285421,0.02372625,94.91121714],[4.53285477,0.02372796,94.91198453],[4.53285533,0.02372967,94.91275175],[4.53285589,0.02373138,94.91351883],[4.53285646,0.0237331,94.91428574],[4.53285702,0.02373481,94.91505249],[4.53285758,0.02373652,94.91581907],[4.53285814,0.02373824,94.91658548],[4.5328587,0.02373995,94.9173517],[4.53285927,0.02374166,94.91811773],[4.53285983,0.02374337,94.91888357],[4.53286039,0.02374509,94.91964921],[4.53286095,0.0237468,94.92041464],[4.53286152,0.02374851,94.92117985],[4.53286208,0.02375023,94.92194485],[4.53286264,0.02375194,94.92270962],[4.5328632,0.02375365,94.92347416],[4.53286377,0.02375536,94.92423846],[4.53286433,0.02375708,94.92500251],[4.53286489,0.02375879,94.92576631],[4.53286545,0.0237605,94.92652985],[4.53286602,0.02376222,94.92729313],[4.53286658,0.02376393,94.92805614],[4.53286714,0.02376564,94.92881887],[4.5328677,0.02376735,94.92958132],[4.53286826,0.02376907,94.93034347],[4.53286883,0.02377078,94.93110533],[4.53286939,0.02377249,94.93186688],[4.53286995,0.02377421,94.93262813],[4.53287051,0.02377592,94.93338905],[4.53287108,0.02377763,94.93414966],[4.53287164,0.02377934,94.93490994],[4.5328722,0.02378106,94.93566989],[4.53287276,0.02378277,94.9364295],[4.53287333,0.02378448,94.93718876],[4.53287389,0.0237862,94.93794768],[4.53287445,0.02378791,94.93870624],[4.53287501,0.02378962,94.93946445],[4.53287557,0.02379133,94.94022229],[4.53287614,0.02379305,94.94097976],[4.5328767,0.02379476,94.94173685],[4.53287726,0.02379647,94.94249356],[4.53287782,0.02379819,94.94324988],[4.53287838,0.0237999,94.94400581],[4.53287895,0.02380161,94.94476134],[4.53287951,0.02380333,94.94551646],[4.53288007,0.02380504,94.94627117],[4.53288063,0.02380675,94.94702547],[4.53288119,0.02380847,94.94777935],[4.53288175,0.02381018,94.9485328],[4.53288232,0.02381189,94.94928582],[4.53288288,0.0238136,94.95003839],[4.53288344,0.02381532,94.95079053],[4.532884,0.02381703,94.95154221],[4.53288456,0.02381874,94.95229344],[4.53288512,0.02382046,94.95304421],[4.53288568,0.02382217,94.95379452],[4.53288624,0.02382388,94.95454441],[4.53288681,0.0238256,94.95529388],[4.53288737,0.02382731,94.95604298],[4.53288793,0.02382902,94.95679172],[4.53288849,0.02383074,94.95754012],[4.53288905,0.02383245,94.95828821],[4.53288961,0.02383416,94.95903601],[4.53289017,0.02383588,94.95978355],[4.53289073,0.02383759,94.96053084],[4.53289129,0.0238393,94.96127792],[4.53289185,0.02384102,94.96202481],[4.53289241,0.02384273,94.96277152],[4.53289298,0.02384444,94.9635181],[4.53289354,0.02384616,94.96426455],[4.5328941,0.02384787,94.9650109],[4.53289466,0.02384958,94.96575718],[4.53289522,0.0238513,94.96650341],[4.53289578,0.02385301,94.96724962],[4.53289634,0.02385472,94.96799582],[4.5328969,0.02385644,94.96874205],[4.53289746,0.02385815,94.96948833],[4.53289803,0.02385986,94.97023467],[4.53289859,0.02386158,94.97098112],[4.53289915,0.02386329,94.97172768],[4.53289971,0.023865,94.97247439],[4.53290027,0.02386672,94.97322127],[4.53290084,0.02386843,94.97396835],[4.5329014,0.02387014,94.97471564],[4.53290196,0.02387185,94.97546317],[4.53290252,0.02387357,94.97621097],[4.53290309,0.02387528,94.97695906],[4.53290365,0.02387699,94.97770747],[4.53290421,0.0238787,94.97845622],[4.53290477,0.02388042,94.97920534],[4.53290534,0.02388213,94.97995484],[4.5329059,0.02388384,94.98070473],[4.53290647,0.02388555,94.981455],[4.53290703,0.02388727,94.98220566],[4.53290759,0.02388898,94.98295669],[4.53290816,0.02389069,94.9837081],[4.53290872,0.0238924,94.98445988],[4.53290929,0.02389412,94.98521203],[4.53290985,0.02389583,94.98596454],[4.53291042,0.02389754,94.98671742],[4.53291098,0.02389925,94.98747065],[4.53291155,0.02390096,94.98822424],[4.53291211,0.02390268,94.98897819],[4.53291268,0.02390439,94.98973248],[4.53291324,0.0239061,94.99048712],[4.53291381,0.02390781,94.99124211],[4.53291438,0.02390952,94.99199743],[4.53291494,0.02391123,94.99275309],[4.53291551,0.02391295,94.99350908],[4.53291608,0.02391466,94.99426541],[4.53291664,0.02391637,94.99502205],[4.53291721,0.02391808,94.99577903],[4.53291778,0.02391979,94.99653632],[4.53291834,0.0239215,94.99729393],[4.53291891,0.02392321,94.99805185],[4.53291948,0.02392492,94.99881008],[4.53292005,0.02392664,94.99956861],[4.53292061,0.02392835,95.00032745],[4.53292118,0.02393006,95.00108659],[4.53292175,0.02393177,95.00184602],[4.53292232,0.02393348,95.00260575],[4.53292289,0.02393519,95.00336576],[4.53292346,0.0239369,95.00412606],[4.53292403,0.02393861,95.00488664],[4.53292459,0.02394032,95.00564749],[4.53292516,0.02394203,95.00640862],[4.53292573,0.02394374,95.00717003],[4.5329263,0.02394545,95.00793169],[4.53292687,0.02394716,95.00869363],[4.53292744,0.02394887,95.00945582],[4.53292801,0.02395059,95.01021827],[4.53292858,0.0239523,95.01098097],[4.53292915,0.02395401,95.01174391],[4.53292972,0.02395572,95.01250711],[4.53293029,0.02395743,95.01327054],[4.53293086,0.02395914,95.01403422],[4.53293143,0.02396085,95.01479812],[4.532932,0.02396256,95.01556226],[4.53293257,0.02396427,95.01632663],[4.53293314,0.02396598,95.01709121],[4.53293371,0.02396769,95.01785602],[4.53293429,0.0239694,95.01862104],[4.53293486,0.02397111,95.01938627],[4.53293543,0.02397282,95.02015171],[4.532936,0.02397453,95.02091735],[4.53293657,0.02397624,95.0216832],[4.53293714,0.02397795,95.02244924],[4.53293771,0.02397966,95.02321547],[4.53293829,0.02398137,95.02398189],[4.53293886,0.02398308,95.0247485],[4.53293943,0.02398479,95.02551529],[4.53294,0.0239865,95.02628225],[4.53294057,0.0239882,95.02704939],[4.53294115,0.02398991,95.02781669],[4.53294172,0.02399162,95.02858416],[4.53294229,0.02399333,95.0293518],[4.53294286,0.02399504,95.03011959],[4.53294344,0.02399675,95.03088753],[4.53294401,0.02399846,95.03165563],[4.53294458,0.02400017,95.03242387],[4.53294516,0.02400188,95.03319225],[4.53294573,0.02400359,95.03396068],[4.5329463,0.0240053,95.03472872],[4.53294687,0.02400701,95.03549584],[4.53294745,0.02400872,95.03626151],[4.53294802,0.02401043,95.03702519],[4.53294859,0.02401214,95.03778637],[4.53294916,0.02401385,95.03854449],[4.53294973,0.02401556,95.03929904],[4.5329503,0.02401727,95.04004949],[4.53295086,0.02401898,95.04079529],[4.53295143,0.02402069,95.04153593],[4.53295199,0.02402241,95.04227086],[4.53295255,0.02402412,95.04299957],[4.53295311,0.02402583,95.04372199],[4.53295367,0.02402755,95.04443845],[4.53295422,0.02402926,95.04514932],[4.53295478,0.02403098,95.04585499],[4.53295533,0.02403269,95.0465558],[4.53295588,0.02403441,95.04725214],[4.53295643,0.02403613,95.04794436],[4.53295698,0.02403784,95.04863285],[4.53295753,0.02403956,95.04931797],[4.53295808,0.02404128,95.05000009],[4.53295863,0.024043,95.05067958],[4.53295917,0.02404472,95.0513568],[4.53295972,0.02404643,95.05203214],[4.53296026,0.02404815,95.05270596],[4.53296081,0.02404987,95.05337863],[4.53296135,0.02405159,95.05405052],[4.5329619,0.02405331,95.05472201],[4.53296244,0.02405503,95.05539346],[4.53296299,0.02405675,95.05606525],[4.53296353,0.02405847,95.05673774],[4.53296408,0.02406018,95.05741131],[4.53296462,0.0240619,95.05808633],[4.53296517,0.02406362,95.05876316],[4.53296572,0.02406534,95.05944189],[4.53296626,0.02406706,95.06012234],[4.53296681,0.02406877,95.06080432],[4.53296736,0.02407049,95.06148764],[4.53296791,0.02407221,95.0621721],[4.53296846,0.02407393,95.06285751],[4.53296901,0.02407564,95.06354368],[4.53296956,0.02407736,95.06423042],[4.53297011,0.02407908,95.06491753],[4.53297066,0.02408079,95.06560483],[4.53297121,0.02408251,95.06629211],[4.53297176,0.02408423,95.06697919],[4.53297231,0.02408595,95.06766588],[4.53297286,0.02408766,95.06835198],[4.53297341,0.02408938,95.0690373],[4.53297396,0.0240911,95.06972165],[4.53297451,0.02409281,95.07040483],[4.53297505,0.02409453,95.07108665],[4.5329756,0.02409625,95.07176692],[4.53297615,0.02409797,95.07244545],[4.5329767,0.02409969,95.07312204],[4.53297724,0.0241014,95.07379662],[4.53297779,0.02410312,95.0744696],[4.53297834,0.02410484,95.07514152],[4.53297888,0.02410656,95.0758129],[4.53297943,0.02410828,95.07648428],[4.53297997,0.02411,95.07715618],[4.53298052,0.02411171,95.07782915],[4.53298107,0.02411343,95.0785037],[4.53298161,0.02411515,95.07918039],[4.53298216,0.02411687,95.07985972],[4.53298271,0.02411859,95.08054225],[4.53298326,0.0241203,95.08122851],[4.53298381,0.02412202,95.08191903],[4.53298437,0.02412373,95.08261434],[4.53298492,0.02412545,95.08331498],[4.53298548,0.02412716,95.08402148],[4.53298604,0.02412888,95.08473436],[4.5329866,0.02413059,95.0854535],[4.53298716,0.02413231,95.0861782],[4.53298772,0.02413402,95.08690772],[4.53298829,0.02413573,95.08764131],[4.53298886,0.02413744,95.08837824],[4.53298942,0.02413915,95.08911777],[4.53298999,0.02414086,95.08985915],[4.53299056,0.02414257,95.09060166],[4.53299113,0.02414429,95.09134455],[4.53299169,0.024146,95.09208707],[4.53299226,0.02414771,95.0928285],[4.53299283,0.02414942,95.09356809],[4.5329934,0.02415113,95.09430511]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":1,"type":"shoulder","predecessorId":1}},{"geometry":{"coordinates":[[4.53282095,0.02358365,94.84800206],[4.53282142,0.02358507,94.8486664],[4.53282199,0.02358678,94.8494695],[4.53282255,0.0235885,94.8502719],[4.53282311,0.02359021,94.85107361],[4.53282368,0.02359192,94.85187464],[4.53282424,0.02359364,94.85267498],[4.53282481,0.02359535,94.85347466],[4.53282537,0.02359706,94.85427367],[4.53282594,0.02359878,94.85507201],[4.5328265,0.02360049,94.8558697],[4.53282707,0.0236022,94.85666674],[4.53282763,0.02360392,94.85746313],[4.5328282,0.02360563,94.85825888],[4.53282876,0.02360734,94.859054],[4.53282933,0.02360906,94.85984849],[4.53282989,0.02361077,94.86064236],[4.53283046,0.02361249,94.86143561],[4.53283102,0.0236142,94.86222825],[4.53283158,0.02361591,94.86302029],[4.53283215,0.02361763,94.86381173],[4.53283271,0.02361934,94.86460257],[4.53283328,0.02362106,94.86539283],[4.53283384,0.02362277,94.86618251],[4.53283441,0.02362449,94.86697162],[4.53283497,0.0236262,94.86776015],[4.53283553,0.02362792,94.86854813],[4.5328361,0.02362963,94.86933555],[4.53283666,0.02363135,94.87012242],[4.53283723,0.02363306,94.87090875],[4.53283779,0.02363477,94.87169454],[4.53283835,0.02363649,94.8724798],[4.53283892,0.0236382,94.87326454],[4.53283948,0.02363992,94.87404876],[4.53284004,0.02364163,94.87483248],[4.53284061,0.02364335,94.87561568],[4.53284117,0.02364506,94.87639839],[4.53284173,0.02364677,94.87718061],[4.5328423,0.02364849,94.87796234],[4.53284286,0.0236502,94.8787436],[4.53284342,0.02365191,94.87952438],[4.53284399,0.02365363,94.8803047],[4.53284455,0.02365534,94.88108456],[4.53284511,0.02365705,94.88186398],[4.53284568,0.02365877,94.88264294],[4.53284624,0.02366048,94.88342147],[4.5328468,0.02366219,94.88419957],[4.53284737,0.0236639,94.88497725],[4.53284793,0.02366562,94.88575451],[4.53284849,0.02366733,94.88653136],[4.53284906,0.02366904,94.88730781],[4.53284962,0.02367076,94.88808386],[4.53285018,0.02367247,94.88885952],[4.53285075,0.02367418,94.88963481],[4.53285131,0.02367589,94.89040971],[4.53285187,0.0236776,94.89118425],[4.53285244,0.02367932,94.89195843],[4.532853,0.02368103,94.89273226],[4.53285356,0.02368274,94.89350574],[4.53285413,0.02368445,94.89427888],[4.53285469,0.02368617,94.89505169],[4.53285526,0.02368788,94.89582418],[4.53285582,0.02368959,94.89659635],[4.53285638,0.0236913,94.8973682],[4.53285695,0.02369301,94.89813976],[4.53285751,0.02369473,94.89891102],[4.53285808,0.02369644,94.899682],[4.53285864,0.02369815,94.90045269],[4.5328592,0.02369986,94.90122311],[4.53285977,0.02370158,94.90199327],[4.53286033,0.02370329,94.90276316],[4.5328609,0.023705,94.90353281],[4.53286146,0.02370671,94.90430221],[4.53286203,0.02370842,94.90507138],[4.53286259,0.02371014,94.90584032],[4.53286316,0.02371185,94.90660904],[4.53286372,0.02371356,94.90737754],[4.53286428,0.02371527,94.90814584],[4.53286485,0.02371699,94.90891394],[4.53286541,0.0237187,94.90968186],[4.53286598,0.02372041,94.91044958],[4.53286654,0.02372212,94.91121714],[4.53286711,0.02372383,94.91198453],[4.53286767,0.02372555,94.91275175],[4.53286824,0.02372726,94.91351883],[4.5328688,0.02372897,94.91428574],[4.53286937,0.02373068,94.91505249],[4.53286993,0.02373239,94.91581907],[4.5328705,0.02373411,94.91658548],[4.53287106,0.02373582,94.9173517],[4.53287163,0.02373753,94.91811773],[4.5328722,0.02373924,94.91888357],[4.53287276,0.02374095,94.91964921],[4.53287333,0.02374267,94.92041464],[4.53287389,0.02374438,94.92117985],[4.53287446,0.02374609,94.92194485],[4.53287502,0.0237478,94.92270962],[4.53287559,0.02374951,94.92347416],[4.53287615,0.02375123,94.92423846],[4.53287672,0.02375294,94.92500251],[4.53287728,0.02375465,94.92576631],[4.53287785,0.02375636,94.92652985],[4.53287842,0.02375807,94.92729313],[4.53287898,0.02375978,94.92805614],[4.53287955,0.0237615,94.92881887],[4.53288011,0.02376321,94.92958132],[4.53288068,0.02376492,94.93034347],[4.53288124,0.02376663,94.93110533],[4.53288181,0.02376834,94.93186688],[4.53288238,0.02377005,94.93262813],[4.53288294,0.02377177,94.93338905],[4.53288351,0.02377348,94.93414966],[4.53288407,0.02377519,94.93490994],[4.53288464,0.0237769,94.93566989],[4.5328852,0.02377861,94.9364295],[4.53288577,0.02378033,94.93718876],[4.53288634,0.02378204,94.93794768],[4.5328869,0.02378375,94.93870624],[4.53288747,0.02378546,94.93946445],[4.53288803,0.02378717,94.94022229],[4.5328886,0.02378888,94.94097976],[4.53288917,0.0237906,94.94173685],[4.53288973,0.02379231,94.94249356],[4.5328903,0.02379402,94.94324988],[4.53289086,0.02379573,94.94400581],[4.53289143,0.02379744,94.94476134],[4.532892,0.02379915,94.94551646],[4.53289256,0.02380087,94.94627117],[4.53289313,0.02380258,94.94702547],[4.53289369,0.02380429,94.94777935],[4.53289426,0.023806,94.9485328],[4.53289483,0.02380771,94.94928582],[4.53289539,0.02380942,94.95003839],[4.53289596,0.02381113,94.95079053],[4.53289653,0.02381285,94.95154221],[4.53289709,0.02381456,94.95229344],[4.53289766,0.02381627,94.95304421],[4.53289822,0.02381798,94.95379452],[4.53289879,0.02381969,94.95454441],[4.53289936,0.0238214,94.95529388],[4.53289992,0.02382312,94.95604298],[4.53290049,0.02382483,94.95679172],[4.53290106,0.02382654,94.95754012],[4.53290162,0.02382825,94.95828821],[4.53290219,0.02382996,94.95903601],[4.53290275,0.02383167,94.95978355],[4.53290332,0.02383339,94.96053084],[4.53290389,0.0238351,94.96127792],[4.53290445,0.02383681,94.96202481],[4.53290502,0.02383852,94.96277152],[4.53290559,0.02384023,94.9635181],[4.53290615,0.02384194,94.96426455],[4.53290672,0.02384366,94.9650109],[4.53290728,0.02384537,94.96575718],[4.53290785,0.02384708,94.96650341],[4.53290842,0.02384879,94.96724962],[4.53290898,0.0238505,94.96799582],[4.53290955,0.02385221,94.96874205],[4.53291012,0.02385393,94.96948833],[4.53291068,0.02385564,94.97023467],[4.53291125,0.02385735,94.97098112],[4.53291181,0.02385906,94.97172768],[4.53291238,0.02386077,94.97247439],[4.53291295,0.02386248,94.97322127],[4.53291351,0.02386419,94.97396835],[4.53291408,0.02386591,94.97471564],[4.53291464,0.02386762,94.97546317],[4.53291521,0.02386933,94.97621097],[4.53291578,0.02387104,94.97695906],[4.53291634,0.02387275,94.97770747],[4.53291691,0.02387447,94.97845622],[4.53291747,0.02387618,94.97920534],[4.53291804,0.02387789,94.97995484],[4.53291861,0.0238796,94.98070473],[4.53291917,0.02388131,94.981455],[4.53291974,0.02388302,94.98220566],[4.5329203,0.02388474,94.98295669],[4.53292087,0.02388645,94.9837081],[4.53292143,0.02388816,94.98445988],[4.532922,0.02388987,94.98521203],[4.53292256,0.02389158,94.98596454],[4.53292313,0.0238933,94.98671742],[4.5329237,0.02389501,94.98747065],[4.53292426,0.02389672,94.98822424],[4.53292483,0.02389843,94.98897819],[4.53292539,0.02390014,94.98973248],[4.53292596,0.02390185,94.99048712],[4.53292652,0.02390357,94.99124211],[4.53292709,0.02390528,94.99199743],[4.53292765,0.02390699,94.99275309],[4.53292822,0.0239087,94.99350908],[4.53292878,0.02391041,94.99426541],[4.53292935,0.02391213,94.99502205],[4.53292991,0.02391384,94.99577903],[4.53293048,0.02391555,94.99653632],[4.53293104,0.02391726,94.99729393],[4.53293161,0.02391897,94.99805185],[4.53293217,0.02392069,94.99881008],[4.53293274,0.0239224,94.99956861],[4.5329333,0.02392411,95.00032745],[4.53293387,0.02392582,95.00108659],[4.53293443,0.02392754,95.00184602],[4.532935,0.02392925,95.00260575],[4.53293556,0.02393096,95.00336576],[4.53293613,0.02393267,95.00412606],[4.53293669,0.02393438,95.00488664],[4.53293726,0.0239361,95.00564749],[4.53293782,0.02393781,95.00640862],[4.53293839,0.02393952,95.00717003],[4.53293895,0.02394123,95.00793169],[4.53293952,0.02394294,95.00869363],[4.53294008,0.02394466,95.00945582],[4.53294064,0.02394637,95.01021827],[4.53294121,0.02394808,95.01098097],[4.53294177,0.02394979,95.01174391],[4.53294234,0.02395151,95.01250711],[4.5329429,0.02395322,95.01327054],[4.53294347,0.02395493,95.01403422],[4.53294403,0.02395664,95.01479812],[4.5329446,0.02395835,95.01556226],[4.53294516,0.02396007,95.01632663],[4.53294573,0.02396178,95.01709121],[4.53294629,0.02396349,95.01785602],[4.53294686,0.0239652,95.01862104],[4.53294742,0.02396692,95.01938627],[4.53294798,0.02396863,95.02015171],[4.53294855,0.02397034,95.02091735],[4.53294911,0.02397205,95.0216832],[4.53294968,0.02397376,95.02244924],[4.53295024,0.02397548,95.02321547],[4.53295081,0.02397719,95.02398189],[4.53295137,0.0239789,95.0247485],[4.53295194,0.02398061,95.02551529],[4.5329525,0.02398233,95.02628225],[4.53295306,0.02398404,95.02704939],[4.53295363,0.02398575,95.02781669],[4.53295419,0.02398746,95.02858416],[4.53295476,0.02398917,95.0293518],[4.53295532,0.02399089,95.03011959],[4.53295589,0.0239926,95.03088753],[4.53295645,0.02399431,95.03165563],[4.53295702,0.02399602,95.03242387],[4.53295758,0.02399774,95.03319225],[4.53295814,0.02399945,95.03396068],[4.53295871,0.02400116,95.03472872],[4.53295927,0.02400287,95.03549584],[4.53295984,0.02400459,95.03626151],[4.5329604,0.0240063,95.03702519],[4.53296097,0.02400801,95.03778637],[4.53296153,0.02400972,95.03854449],[4.53296209,0.02401143,95.03929904],[4.53296266,0.02401315,95.04004949],[4.53296322,0.02401486,95.04079529],[4.53296379,0.02401657,95.04153593],[4.53296435,0.02401828,95.04227086],[4.53296492,0.02402,95.04299957],[4.53296548,0.02402171,95.04372199],[4.53296604,0.02402342,95.04443845],[4.53296661,0.02402513,95.04514932],[4.53296717,0.02402684,95.04585499],[4.53296773,0.02402856,95.0465558],[4.5329683,0.02403027,95.04725214],[4.53296886,0.02403198,95.04794436],[4.53296943,0.02403369,95.04863285],[4.53296999,0.02403541,95.04931797],[4.53297056,0.02403712,95.05000009],[4.53297112,0.02403883,95.05067958],[4.53297168,0.02404054,95.0513568],[4.53297225,0.02404226,95.05203214],[4.53297281,0.02404397,95.05270596],[4.53297338,0.02404568,95.05337863],[4.53297394,0.02404739,95.05405052],[4.53297451,0.02404911,95.05472201],[4.53297507,0.02405082,95.05539346],[4.53297563,0.02405253,95.05606525],[4.5329762,0.02405424,95.05673774],[4.53297676,0.02405595,95.05741131],[4.53297733,0.02405767,95.05808633],[4.53297789,0.02405938,95.05876316],[4.53297846,0.02406109,95.05944189],[4.53297902,0.0240628,95.06012234],[4.53297959,0.02406451,95.06080432],[4.53298016,0.02406623,95.06148764],[4.53298072,0.02406794,95.0621721],[4.53298129,0.02406965,95.06285751],[4.53298186,0.02407136,95.06354368],[4.53298242,0.02407307,95.06423042],[4.53298299,0.02407478,95.06491753],[4.53298355,0.0240765,95.06560483],[4.53298412,0.02407821,95.06629211],[4.53298469,0.02407992,95.06697919],[4.53298525,0.02408163,95.06766588],[4.53298581,0.02408334,95.06835198],[4.53298638,0.02408506,95.0690373],[4.53298694,0.02408677,95.06972165],[4.5329875,0.02408848,95.07040483],[4.53298807,0.0240902,95.07108665],[4.53298863,0.02409191,95.07176692],[4.53298919,0.02409362,95.07244545],[4.53298975,0.02409534,95.07312204],[4.5329903,0.02409705,95.07379662],[4.53299086,0.02409877,95.0744696],[4.53299142,0.02410048,95.07514152],[4.53299197,0.0241022,95.0758129],[4.53299253,0.02410391,95.07648428],[4.53299308,0.02410563,95.07715618],[4.53299364,0.02410734,95.07782915],[4.53299419,0.02410906,95.0785037],[4.53299475,0.02411077,95.07918039],[4.5329953,0.02411249,95.07985972],[4.53299586,0.0241142,95.08054225],[4.53299642,0.02411592,95.08122851],[4.53299697,0.02411763,95.08191903],[4.53299753,0.02411935,95.08261434],[4.53299809,0.02412106,95.08331498],[4.53299865,0.02412278,95.08402148],[4.53299922,0.02412449,95.08473436],[4.53299978,0.0241262,95.0854535],[4.53300035,0.02412791,95.0861782],[4.53300091,0.02412963,95.08690772],[4.53300148,0.02413134,95.08764131],[4.53300205,0.02413305,95.08837824],[4.53300261,0.02413476,95.08911777],[4.53300318,0.02413647,95.08985915],[4.53300375,0.02413818,95.09060166],[4.53300431,0.02413989,95.09134455],[4.53300488,0.02414161,95.09208707],[4.53300544,0.02414332,95.0928285],[4.53300601,0.02414503,95.09356809],[4.53300657,0.02414674,95.09430511]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":2,"type":"none","predecessorId":2}},{"geometry":{"coordinates":[[4.5369552,0.0386912,97.93660679],[4.53695509,0.03869087,97.93660826],[4.53695492,0.03869033,97.93664705],[4.5369547,0.03868959,97.93671694],[4.53695441,0.03868865,97.93681166],[4.53695406,0.0386875,97.93692485],[4.53695365,0.03868616,97.93705011],[4.53695317,0.03868462,97.93718096],[4.53695263,0.03868289,97.93731087],[4.53695208,0.03868115,97.93743322],[4.53695153,0.03867942,97.93754137],[4.53695097,0.03867769,97.93763055],[4.5369504,0.03867596,97.93770354],[4.53694983,0.03867424,97.937765],[4.53694926,0.03867252,97.93781962],[4.53694868,0.0386708,97.93787211],[4.53694811,0.03866908,97.93792586],[4.53694754,0.03866736,97.93798223],[4.53694696,0.03866564,97.93804227],[4.53694639,0.03866393,97.93810702],[4.53694582,0.03866221,97.93817728],[4.53694526,0.0386605,97.93825283],[4.53694469,0.03865878,97.93833319],[4.53694413,0.03865707,97.93841788],[4.53694357,0.03865535,97.93850641],[4.53694302,0.03865364,97.9385983],[4.53694246,0.03865193,97.93869305],[4.53694191,0.03865022,97.93879017],[4.53694136,0.03864851,97.93888914],[4.53694081,0.0386468,97.93898948],[4.53694026,0.03864509,97.93909071],[4.53693971,0.03864338,97.93919267],[4.53693917,0.03864167,97.9392952],[4.53693862,0.03863996,97.93939817],[4.53693808,0.03863826,97.93950145],[4.53693754,0.03863655,97.93960489],[4.53693699,0.03863485,97.93970837],[4.53693645,0.03863315,97.93981176],[4.53693591,0.03863145,97.93991495],[4.53693537,0.03862975,97.94001788],[4.53693483,0.03862805,97.94012059],[4.53693429,0.03862635,97.9402232],[4.53693374,0.03862465,97.94032577],[4.5369332,0.03862296,97.94042841],[4.53693266,0.03862127,97.9405312],[4.53693212,0.03861957,97.94063424],[4.53693158,0.03861788,97.94073761],[4.53693104,0.03861619,97.94084142],[4.5369305,0.0386145,97.94094574],[4.53692996,0.0386128,97.94105066],[4.53692942,0.03861111,97.94115628],[4.53692888,0.03860942,97.94126267],[4.53692833,0.03860773,97.94136992],[4.53692779,0.03860604,97.94147812],[4.53692725,0.03860435,97.94158734],[4.53692671,0.03860266,97.94169769],[4.53692616,0.03860097,97.94180918],[4.53692562,0.03859928,97.94192183],[4.53692508,0.03859759,97.94203563],[4.53692453,0.03859589,97.94215057],[4.53692399,0.0385942,97.94226665],[4.53692345,0.03859251,97.94238386],[4.5369229,0.03859082,97.9425022],[4.53692236,0.03858912,97.94262167],[4.53692181,0.03858743,97.94274225],[4.53692127,0.03858574,97.94286394],[4.53692072,0.03858404,97.94298673],[4.53692018,0.03858235,97.94311063],[4.53691963,0.03858066,97.94323572],[4.53691909,0.03857896,97.94336215],[4.53691854,0.03857727,97.94349012],[4.536918,0.03857557,97.94361979],[4.53691745,0.03857387,97.94375132],[4.53691691,0.03857218,97.94388478],[4.53691636,0.03857048,97.94402023],[4.53691581,0.03856879,97.94415773],[4.53691527,0.03856709,97.94429732],[4.53691472,0.03856539,97.94443907],[4.53691418,0.03856369,97.94458304],[4.53691364,0.03856199,97.9447293],[4.53691309,0.0385603,97.94487794],[4.53691255,0.0385586,97.94502903],[4.536912,0.0385569,97.94518263],[4.53691146,0.0385552,97.94533884],[4.53691091,0.0385535,97.94549772],[4.53691037,0.03855179,97.94565935],[4.53690983,0.03855009,97.9458238],[4.53690929,0.03854839,97.94599115],[4.53690874,0.03854669,97.94616139],[4.5369082,0.03854499,97.94633421],[4.53690766,0.03854328,97.9465092],[4.53690712,0.03854158,97.94668597],[4.53690658,0.03853987,97.94686417],[4.53690604,0.03853817,97.94704372],[4.53690549,0.03853646,97.94722457],[4.53690495,0.03853476,97.94740669],[4.53690441,0.03853305,97.94759004],[4.53690387,0.03853135,97.94777458],[4.53690333,0.03852964,97.94796029],[4.53690279,0.03852793,97.94814711],[4.53690224,0.03852623,97.94833502],[4.5369017,0.03852452,97.94852398],[4.53690116,0.03852281,97.94871392],[4.53690062,0.0385211,97.94890478],[4.53690008,0.0385194,97.94909649],[4.53689954,0.03851769,97.94928901],[4.53689899,0.03851598,97.94948226],[4.53689845,0.03851427,97.94967618],[4.53689791,0.03851256,97.9498707],[4.53689737,0.03851085,97.95006576],[4.53689682,0.03850914,97.95026131],[4.53689628,0.03850743,97.95045727],[4.53689574,0.03850572,97.95065358],[4.53689519,0.03850401,97.95085017],[4.53689465,0.03850229,97.95104699],[4.53689411,0.03850059,97.95124401],[4.53689357,0.03849888,97.95144137],[4.53689302,0.03849717,97.95163913],[4.53689248,0.03849546,97.95183731],[4.53689193,0.03849375,97.95203599],[4.53689139,0.03849203,97.95223518],[4.53689085,0.03849032,97.95243496],[4.5368903,0.03848861,97.95263535],[4.53688976,0.0384869,97.95283642],[4.53688922,0.03848518,97.95303819],[4.53688867,0.03848347,97.95324072],[4.53688813,0.03848176,97.95344406],[4.53688759,0.03848005,97.95364825],[4.53688704,0.03847833,97.95385333],[4.5368865,0.03847662,97.95405936],[4.53688596,0.03847491,97.95426637],[4.53688541,0.03847319,97.95447442],[4.53688487,0.03847148,97.95468355],[4.53688433,0.03846977,97.95489381],[4.53688379,0.03846805,97.95510524],[4.53688324,0.03846634,97.95531791],[4.5368827,0.03846462,97.95553185],[4.53688216,0.03846291,97.95574712],[4.53688162,0.03846119,97.95596373],[4.53688108,0.03845948,97.95618159],[4.53688054,0.03845776,97.95640058],[4.53688,0.03845605,97.95662059],[4.53687945,0.03845433,97.95684148],[4.53687891,0.03845261,97.95706314],[4.53687837,0.0384509,97.95728545],[4.53687783,0.03844918,97.95750828],[4.53687729,0.03844747,97.95773151],[4.53687675,0.03844575,97.95795503],[4.53687621,0.03844403,97.95817875],[4.53687567,0.03844232,97.95840262],[4.53687513,0.0384406,97.9586266],[4.53687459,0.03843888,97.95885065],[4.53687405,0.03843717,97.95907471],[4.53687351,0.03843545,97.95929874],[4.53687297,0.03843373,97.9595227],[4.53687243,0.03843201,97.95974655],[4.53687189,0.0384303,97.95997024],[4.53687135,0.03842858,97.96019374],[4.5368708,0.03842686,97.96041701],[4.53687026,0.03842514,97.96064002],[4.53686972,0.03842343,97.96086272],[4.53686918,0.03842171,97.96108508],[4.53686864,0.03841999,97.96130708],[4.5368681,0.03841827,97.96152872],[4.53686755,0.03841656,97.96175001],[4.53686701,0.03841484,97.96197094],[4.53686647,0.03841312,97.96219153],[4.53686593,0.0384114,97.96241177],[4.53686538,0.03840968,97.96263166],[4.53686484,0.03840796,97.96285122],[4.5368643,0.03840625,97.96307043],[4.53686375,0.03840453,97.96328931],[4.53686321,0.03840281,97.96350786],[4.53686267,0.03840109,97.96372607],[4.53686212,0.03839937,97.96394396],[4.53686158,0.03839765,97.96416153],[4.53686104,0.03839593,97.96437877],[4.53686049,0.03839421,97.9645957],[4.53685995,0.0383925,97.96481231],[4.5368594,0.03839078,97.96502861],[4.53685886,0.03838906,97.9652446],[4.53685832,0.03838734,97.96546028],[4.53685777,0.03838562,97.96567566],[4.53685723,0.0383839,97.96589074],[4.53685668,0.03838218,97.96610553],[4.53685614,0.03838046,97.96632005],[4.53685559,0.03837874,97.9665343],[4.53685505,0.03837702,97.96674829],[4.5368545,0.0383753,97.96696205],[4.53685396,0.03837358,97.96717559],[4.53685341,0.03837186,97.96738891],[4.53685287,0.03837014,97.96760204],[4.53685232,0.03836842,97.96781498],[4.53685177,0.0383667,97.96802776],[4.53685123,0.03836498,97.96824039],[4.53685068,0.03836326,97.96845293],[4.53685014,0.03836154,97.96866542],[4.53684959,0.03835982,97.9688779],[4.53684905,0.03835809,97.96909042],[4.5368485,0.03835637,97.96930303],[4.53684795,0.03835465,97.96951578],[4.53684741,0.03835293,97.9697287],[4.53684686,0.03835121,97.96994184],[4.53684632,0.03834949,97.97015524],[4.53684577,0.03834776,97.97036896],[4.53684523,0.03834604,97.97058302],[4.53684468,0.03834431,97.97079747],[4.53684413,0.03834259,97.97101234],[4.53684359,0.03834087,97.97122767],[4.53684304,0.03833915,97.9714435],[4.5368425,0.03833742,97.97165985],[4.53684196,0.0383357,97.97187678],[4.53684141,0.03833398,97.9720943],[4.53684087,0.03833225,97.97231247],[4.53684032,0.03833053,97.97253132],[4.53683978,0.0383288,97.97275087],[4.53683924,0.03832708,97.97297118],[4.53683869,0.03832535,97.97319227],[4.53683815,0.03832363,97.97341417],[4.53683761,0.0383219,97.97363693],[4.53683706,0.03832018,97.97386059],[4.53683652,0.03831845,97.97408516],[4.53683598,0.03831673,97.9743107],[4.53683544,0.038315,97.97453723],[4.5368349,0.03831327,97.97476479],[4.53683435,0.03831155,97.97499341],[4.53683381,0.03830982,97.97522313],[4.53683327,0.03830809,97.97545398],[4.53683273,0.03830636,97.975686],[4.53683219,0.03830464,97.97591921],[4.53683165,0.03830291,97.97615365],[4.53683112,0.03830118,97.97638934],[4.53683058,0.03829945,97.97662632],[4.53683004,0.03829772,97.97686462],[4.5368295,0.03829599,97.97710427],[4.53682897,0.03829426,97.9773453],[4.53682843,0.03829253,97.97758774],[4.53682789,0.0382908,97.97783161],[4.53682736,0.03828907,97.97807696],[4.53682682,0.03828734,97.97832381],[4.53682629,0.03828561,97.97857216],[4.53682575,0.03828388,97.97882195],[4.53682522,0.03828215,97.97907308],[4.53682469,0.03828041,97.97932544],[4.53682415,0.03827868,97.97957895],[4.53682362,0.03827695,97.97983351],[4.53682309,0.03827522,97.98008902],[4.53682256,0.03827348,97.9803454],[4.53682202,0.03827175,97.98060254],[4.53682149,0.03827001,97.98086035],[4.53682096,0.03826828,97.98111874],[4.53682043,0.03826655,97.98137761],[4.5368199,0.03826481,97.98163688],[4.53681937,0.03826308,97.98189645],[4.53681884,0.03826134,97.98215623],[4.53681831,0.03825961,97.98241613],[4.53681778,0.03825787,97.98267605],[4.53681725,0.03825614,97.98293591],[4.53681672,0.0382544,97.98319561],[4.53681619,0.03825266,97.98345507],[4.53681566,0.03825093,97.9837142],[4.53681513,0.03824919,97.9839729],[4.5368146,0.03824745,97.98423109],[4.53681407,0.03824572,97.98448869],[4.53681354,0.03824398,97.98474559],[4.53681301,0.03824224,97.98500172],[4.53681248,0.03824051,97.98525699],[4.53681195,0.03823877,97.98551131],[4.53681192,0.03823866,97.98552696]],"type":"LineString"},"type":"feature","properties":{"successorId":-4,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1000400","id":-4,"type":"none","predecessorId":0}},{"geometry":{"coordinates":[[4.53699889,0.03868058,97.93660679],[4.53699858,0.0386796,97.93660826],[4.53699824,0.03867851,97.93664705],[4.53699786,0.03867732,97.93671694],[4.53699745,0.03867602,97.93681166],[4.53699701,0.03867462,97.93692485],[4.53699652,0.0386731,97.93705011],[4.53699601,0.03867148,97.93718096],[4.53699546,0.03866976,97.93731087],[4.53699491,0.03866803,97.93743322],[4.53699435,0.0386663,97.93754137],[4.53699379,0.03866458,97.93763055],[4.53699323,0.03866286,97.93770354],[4.53699266,0.03866114,97.937765],[4.53699209,0.03865942,97.93781962],[4.53699152,0.03865771,97.93787211],[4.53699096,0.03865599,97.93792586],[4.53699039,0.03865427,97.93798223],[4.53698982,0.03865256,97.93804227],[4.53698926,0.03865084,97.93810702],[4.5369887,0.03864912,97.93817728],[4.53698814,0.03864741,97.93825283],[4.53698759,0.03864569,97.93833319],[4.53698703,0.03864398,97.93841788],[4.53698648,0.03864226,97.93850641],[4.53698593,0.03864055,97.9385983],[4.53698538,0.03863883,97.93869305],[4.53698483,0.03863712,97.93879017],[4.53698428,0.0386354,97.93888914],[4.53698373,0.03863369,97.93898948],[4.53698318,0.03863197,97.93909071],[4.53698263,0.03863026,97.93919267],[4.53698209,0.03862855,97.9392952],[4.53698154,0.03862684,97.93939817],[4.53698099,0.03862513,97.93950145],[4.53698045,0.03862342,97.93960489],[4.5369799,0.03862171,97.93970837],[4.53697936,0.03862,97.93981176],[4.53697881,0.03861829,97.93991495],[4.53697826,0.03861659,97.94001788],[4.53697772,0.03861488,97.94012059],[4.53697717,0.03861317,97.9402232],[4.53697662,0.03861147,97.94032577],[4.53697608,0.03860976,97.94042841],[4.53697553,0.03860806,97.9405312],[4.53697499,0.03860636,97.94063424],[4.53697444,0.03860466,97.94073761],[4.53697389,0.03860295,97.94084142],[4.53697335,0.03860125,97.94094574],[4.53697279,0.03859954,97.94105066],[4.53697225,0.03859784,97.94115628],[4.5369717,0.03859614,97.94126267],[4.53697115,0.03859444,97.94136992],[4.5369706,0.03859273,97.94147812],[4.53697006,0.03859103,97.94158734],[4.53696951,0.03858933,97.94169769],[4.53696896,0.03858763,97.94180918],[4.53696841,0.03858593,97.94192183],[4.53696786,0.03858422,97.94203563],[4.53696732,0.03858252,97.94215057],[4.53696677,0.03858082,97.94226665],[4.53696622,0.03857912,97.94238386],[4.53696567,0.03857741,97.9425022],[4.53696512,0.03857571,97.94262167],[4.53696457,0.03857401,97.94274225],[4.53696402,0.0385723,97.94286394],[4.53696347,0.0385706,97.94298673],[4.53696292,0.0385689,97.94311063],[4.53696238,0.03856719,97.94323572],[4.53696183,0.03856549,97.94336215],[4.53696128,0.03856378,97.94349012],[4.53696073,0.03856208,97.94361979],[4.53696018,0.03856037,97.94375132],[4.53695963,0.03855867,97.94388478],[4.53695908,0.03855696,97.94402023],[4.53695853,0.03855526,97.94415773],[4.53695798,0.03855355,97.94429732],[4.53695744,0.03855185,97.94443907],[4.53695689,0.03855014,97.94458304],[4.53695634,0.03854843,97.9447293],[4.53695579,0.03854672,97.94487794],[4.53695525,0.03854502,97.94502903],[4.5369547,0.03854331,97.94518263],[4.53695415,0.0385416,97.94533884],[4.53695361,0.03853989,97.94549772],[4.53695306,0.03853819,97.94565935],[4.53695252,0.03853648,97.9458238],[4.53695197,0.03853477,97.94599115],[4.53695143,0.03853306,97.94616139],[4.53695089,0.03853135,97.94633421],[4.53695034,0.03852964,97.9465092],[4.5369498,0.03852793,97.94668597],[4.53694926,0.03852622,97.94686417],[4.53694871,0.0385245,97.94704372],[4.53694817,0.03852279,97.94722457],[4.53694763,0.03852108,97.94740669],[4.53694708,0.03851937,97.94759004],[4.53694654,0.03851766,97.94777458],[4.536946,0.03851595,97.94796029],[4.53694546,0.03851423,97.94814711],[4.53694491,0.03851252,97.94833502],[4.53694437,0.03851081,97.94852398],[4.53694383,0.0385091,97.94871392],[4.53694329,0.03850738,97.94890478],[4.53694274,0.03850567,97.94909649],[4.5369422,0.03850396,97.94928901],[4.53694166,0.03850224,97.94948226],[4.53694111,0.03850053,97.94967618],[4.53694057,0.03849881,97.9498707],[4.53694003,0.0384971,97.95006576],[4.53693949,0.03849539,97.95026131],[4.53693894,0.03849367,97.95045727],[4.5369384,0.03849196,97.95065358],[4.53693786,0.03849024,97.95085017],[4.53693731,0.03848853,97.95104699],[4.53693677,0.03848682,97.95124401],[4.53693623,0.03848511,97.95144137],[4.53693568,0.03848339,97.95163913],[4.53693514,0.03848168,97.95183731],[4.5369346,0.03847996,97.95203599],[4.53693405,0.03847825,97.95223518],[4.53693351,0.03847653,97.95243496],[4.53693297,0.03847482,97.95263535],[4.53693242,0.0384731,97.95283642],[4.53693188,0.03847138,97.95303819],[4.53693134,0.03846967,97.95324072],[4.53693079,0.03846795,97.95344406],[4.53693025,0.03846624,97.95364825],[4.53692971,0.03846452,97.95385333],[4.53692916,0.03846281,97.95405936],[4.53692862,0.03846109,97.95426637],[4.53692808,0.03845937,97.95447442],[4.53692753,0.03845766,97.95468355],[4.53692699,0.03845594,97.95489381],[4.53692645,0.03845422,97.95510524],[4.53692591,0.03845251,97.95531791],[4.53692537,0.03845079,97.95553185],[4.53692482,0.03844907,97.95574712],[4.53692428,0.03844736,97.95596373],[4.53692374,0.03844564,97.95618159],[4.5369232,0.03844392,97.95640058],[4.53692266,0.0384422,97.95662059],[4.53692212,0.03844049,97.95684148],[4.53692158,0.03843877,97.95706314],[4.53692104,0.03843705,97.95728545],[4.5369205,0.03843533,97.95750828],[4.53691996,0.03843362,97.95773151],[4.53691942,0.0384319,97.95795503],[4.53691888,0.03843018,97.95817875],[4.53691834,0.03842846,97.95840262],[4.5369178,0.03842674,97.9586266],[4.53691726,0.03842502,97.95885065],[4.53691672,0.03842331,97.95907471],[4.53691618,0.03842159,97.95929874],[4.53691564,0.03841987,97.9595227],[4.5369151,0.03841815,97.95974655],[4.53691455,0.03841643,97.95997024],[4.53691401,0.03841471,97.96019374],[4.53691347,0.038413,97.96041701],[4.53691293,0.03841128,97.96064002],[4.53691239,0.03840956,97.96086272],[4.53691185,0.03840784,97.96108508],[4.53691131,0.03840612,97.96130708],[4.53691076,0.0384044,97.96152872],[4.53691022,0.03840268,97.96175001],[4.53690968,0.03840097,97.96197094],[4.53690914,0.03839925,97.96219153],[4.53690859,0.03839753,97.96241177],[4.53690805,0.03839581,97.96263166],[4.53690751,0.03839409,97.96285122],[4.53690697,0.03839237,97.96307043],[4.53690642,0.03839065,97.96328931],[4.53690588,0.03838893,97.96350786],[4.53690534,0.03838722,97.96372607],[4.53690479,0.0383855,97.96394396],[4.53690425,0.03838378,97.96416153],[4.53690371,0.03838206,97.96437877],[4.53690316,0.03838034,97.9645957],[4.53690262,0.03837862,97.96481231],[4.53690207,0.0383769,97.96502861],[4.53690153,0.03837518,97.9652446],[4.53690098,0.03837346,97.96546028],[4.53690044,0.03837175,97.96567566],[4.5368999,0.03837003,97.96589074],[4.53689935,0.03836831,97.96610553],[4.53689881,0.03836659,97.96632005],[4.53689826,0.03836487,97.9665343],[4.53689772,0.03836315,97.96674829],[4.53689717,0.03836143,97.96696205],[4.53689663,0.03835971,97.96717559],[4.53689608,0.03835799,97.96738891],[4.53689554,0.03835627,97.96760204],[4.53689499,0.03835455,97.96781498],[4.53689445,0.03835283,97.96802776],[4.5368939,0.03835111,97.96824039],[4.53689335,0.03834939,97.96845293],[4.53689281,0.03834767,97.96866542],[4.53689226,0.03834595,97.9688779],[4.53689172,0.03834424,97.96909042],[4.53689117,0.03834252,97.96930303],[4.53689063,0.0383408,97.96951578],[4.53689008,0.03833908,97.9697287],[4.53688954,0.03833736,97.96994184],[4.53688899,0.03833564,97.97015524],[4.53688845,0.03833391,97.97036896],[4.5368879,0.03833219,97.97058302],[4.53688735,0.03833047,97.97079747],[4.53688681,0.03832875,97.97101234],[4.53688626,0.03832703,97.97122767],[4.53688572,0.03832531,97.9714435],[4.53688518,0.03832358,97.97165985],[4.53688463,0.03832186,97.97187678],[4.53688409,0.03832014,97.9720943],[4.53688354,0.03831842,97.97231247],[4.536883,0.0383167,97.97253132],[4.53688246,0.03831498,97.97275087],[4.53688191,0.03831325,97.97297118],[4.53688137,0.03831153,97.97319227],[4.53688083,0.03830981,97.97341417],[4.53688029,0.03830809,97.97363693],[4.53687974,0.03830636,97.97386059],[4.5368792,0.03830464,97.97408516],[4.53687866,0.03830292,97.9743107],[4.53687812,0.03830119,97.97453723],[4.53687758,0.03829947,97.97476479],[4.53687704,0.03829775,97.97499341],[4.5368765,0.03829602,97.97522313],[4.53687596,0.0382943,97.97545398],[4.53687542,0.03829257,97.975686],[4.53687488,0.03829085,97.97591921],[4.53687434,0.03828912,97.97615365],[4.5368738,0.0382874,97.97638934],[4.53687327,0.03828567,97.97662632],[4.53687273,0.03828395,97.97686462],[4.53687219,0.03828222,97.97710427],[4.53687166,0.0382805,97.9773453],[4.53687112,0.03827877,97.97758774],[4.53687058,0.03827704,97.97783161],[4.53687005,0.03827532,97.97807696],[4.53686952,0.03827359,97.97832381],[4.53686898,0.03827186,97.97857216],[4.53686845,0.03827013,97.97882195],[4.53686792,0.03826841,97.97907308],[4.53686738,0.03826668,97.97932544],[4.53686685,0.03826495,97.97957895],[4.53686632,0.03826322,97.97983351],[4.53686579,0.03826149,97.98008902],[4.53686526,0.03825976,97.9803454],[4.53686473,0.03825803,97.98060254],[4.5368642,0.03825631,97.98086035],[4.53686367,0.03825458,97.98111874],[4.53686314,0.03825285,97.98137761],[4.53686261,0.03825112,97.98163688],[4.53686208,0.03824939,97.98189645],[4.53686155,0.03824766,97.98215623],[4.53686102,0.03824593,97.98241613],[4.5368605,0.0382442,97.98267605],[4.53685997,0.03824247,97.98293591],[4.53685944,0.03824073,97.98319561],[4.53685891,0.038239,97.98345507],[4.53685838,0.03823727,97.9837142],[4.53685785,0.03823554,97.9839729],[4.53685733,0.03823381,97.98423109],[4.5368568,0.03823208,97.98448869],[4.53685627,0.03823035,97.98474559],[4.53685574,0.03822862,97.98500172],[4.53685521,0.03822689,97.98525699],[4.53685469,0.03822516,97.98551131],[4.53685465,0.03822505,97.98552696]],"type":"LineString"},"type":"feature","properties":{"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000400","id":-3,"type":"shoulder","predecessorId":0}},{"geometry":{"coordinates":[[4.53700232,0.03867974,97.94749415],[4.53700199,0.03867871,97.94749976],[4.53700163,0.03867759,97.94754296],[4.53700124,0.03867636,97.94761755],[4.53700081,0.03867504,97.94771723],[4.53700035,0.03867361,97.94783567],[4.53699986,0.03867209,97.94796643],[4.53699934,0.03867046,97.94810305],[4.53699878,0.03866874,97.94823898],[4.53699823,0.03866701,97.94836762],[4.53699766,0.03866529,97.94848231],[4.5369971,0.03866357,97.94857828],[4.53699653,0.03866185,97.9486583],[4.53699596,0.03866013,97.94872703],[4.53699538,0.03865842,97.94878916],[4.53699481,0.0386567,97.94884939],[4.53699424,0.03865499,97.94891111],[4.53699367,0.03865327,97.94897568],[4.5369931,0.03865156,97.94904412],[4.53699253,0.03864984,97.94911749],[4.53699197,0.03864813,97.94919659],[4.53699141,0.03864641,97.94928117],[4.53699085,0.0386447,97.94937075],[4.53699029,0.03864298,97.94946486],[4.53698973,0.03864127,97.94956299],[4.53698918,0.03863955,97.94966466],[4.53698863,0.03863784,97.94976937],[4.53698807,0.03863612,97.9498766],[4.53698752,0.03863441,97.94998585],[4.53698697,0.0386327,97.95009661],[4.53698642,0.03863099,97.95020842],[4.53698587,0.03862927,97.95032108],[4.53698532,0.03862756,97.95043446],[4.53698477,0.03862585,97.9505484],[4.53698422,0.03862414,97.95066277],[4.53698368,0.03862243,97.95077741],[4.53698313,0.03862072,97.95089219],[4.53698258,0.03861901,97.95100698],[4.53698203,0.0386173,97.95112165],[4.53698148,0.0386156,97.95123614],[4.53698094,0.03861389,97.9513505],[4.53698039,0.03861219,97.9514648],[4.53697984,0.03861048,97.95157913],[4.53697929,0.03860878,97.95169357],[4.53697874,0.03860707,97.95180821],[4.5369782,0.03860537,97.95192312],[4.53697765,0.03860367,97.95203839],[4.5369771,0.03860196,97.9521541],[4.53697655,0.03860026,97.95227034],[4.536976,0.03859855,97.95238718],[4.53697545,0.03859685,97.9525047],[4.53697491,0.03859514,97.95262297],[4.53697436,0.03859344,97.95274207],[4.53697381,0.03859174,97.95286208],[4.53697326,0.03859004,97.95298308],[4.53697271,0.03858833,97.95310513],[4.53697216,0.03858663,97.95322827],[4.53697161,0.03858493,97.95335248],[4.53697106,0.03858322,97.95347776],[4.53697052,0.03858152,97.95360409],[4.53696997,0.03857982,97.95373145],[4.53696942,0.03857811,97.95385984],[4.53696887,0.03857641,97.95398923],[4.53696832,0.03857471,97.95411961],[4.53696777,0.038573,97.95425096],[4.53696722,0.0385713,97.95438328],[4.53696667,0.03856959,97.95451653],[4.53696612,0.03856789,97.95465072],[4.53696557,0.03856618,97.95478591],[4.53696502,0.03856448,97.95492227],[4.53696447,0.03856277,97.95505995],[4.53696392,0.03856107,97.95519913],[4.53696337,0.03855936,97.95533994],[4.53696282,0.03855766,97.95548245],[4.53696228,0.03855595,97.95562672],[4.53696173,0.03855425,97.95577277],[4.53696118,0.03855254,97.95592066],[4.53696063,0.03855083,97.95607043],[4.53696008,0.03854913,97.95622215],[4.53695953,0.03854742,97.95637586],[4.53695899,0.03854571,97.95653165],[4.53695844,0.038544,97.95668957],[4.53695789,0.0385423,97.9568497],[4.53695734,0.03854059,97.95701208],[4.5369568,0.03853888,97.9571768],[4.53695625,0.03853717,97.95734391],[4.53695571,0.03853546,97.95751348],[4.53695516,0.03853375,97.95768557],[4.53695462,0.03853204,97.95786017],[4.53695407,0.03853033,97.95803694],[4.53695353,0.03852862,97.95821549],[4.53695298,0.03852691,97.9583954],[4.53695244,0.0385252,97.95857632],[4.53695189,0.03852349,97.95875814],[4.53695135,0.03852178,97.95894082],[4.53695081,0.03852006,97.9591243],[4.53695026,0.03851835,97.95930855],[4.53694972,0.03851664,97.95949352],[4.53694917,0.03851493,97.95967916],[4.53694863,0.03851322,97.95986542],[4.53694808,0.0385115,97.96005225],[4.53694754,0.03850979,97.96023961],[4.536947,0.03850808,97.96042745],[4.53694645,0.03850637,97.96061572],[4.53694591,0.03850465,97.96080437],[4.53694536,0.03850294,97.96099336],[4.53694482,0.03850123,97.96118264],[4.53694427,0.03849951,97.96137215],[4.53694373,0.0384978,97.96156185],[4.53694318,0.03849608,97.9617517],[4.53694263,0.03849437,97.96194164],[4.53694209,0.03849266,97.96213162],[4.53694154,0.03849094,97.96232159],[4.536941,0.03848923,97.96251152],[4.53694045,0.03848751,97.96270133],[4.53693991,0.03848581,97.96289104],[4.53693936,0.03848409,97.9630808],[4.53693882,0.03848238,97.96327067],[4.53693827,0.03848067,97.96346071],[4.53693772,0.03847895,97.96365098],[4.53693718,0.03847724,97.96384155],[4.53693663,0.03847552,97.96403248],[4.53693608,0.03847381,97.96422382],[4.53693554,0.03847209,97.96441564],[4.53693499,0.03847038,97.96460801],[4.53693444,0.03846866,97.96480097],[4.5369339,0.03846695,97.9649946],[4.53693335,0.03846523,97.96518895],[4.53693281,0.03846352,97.96538408],[4.53693226,0.0384618,97.96558006],[4.53693171,0.03846009,97.96577695],[4.53693117,0.03845837,97.96597481],[4.53693062,0.03845666,97.9661737],[4.53693008,0.03845494,97.96637368],[4.53692953,0.03845322,97.9665748],[4.53692899,0.03845151,97.96677714],[4.53692844,0.03844979,97.96698076],[4.5369279,0.03844808,97.9671857],[4.53692736,0.03844636,97.96739201],[4.53692681,0.03844464,97.9675996],[4.53692627,0.03844293,97.96780837],[4.53692573,0.03844121,97.9680182],[4.53692518,0.03843949,97.96822898],[4.53692464,0.03843778,97.96844061],[4.5369241,0.03843606,97.96865297],[4.53692356,0.03843434,97.96886596],[4.53692301,0.03843262,97.96907947],[4.53692247,0.03843091,97.96929339],[4.53692193,0.03842919,97.96950764],[4.53692139,0.03842747,97.96972219],[4.53692085,0.03842575,97.96993701],[4.5369203,0.03842403,97.97015206],[4.53691976,0.03842232,97.97036731],[4.53691922,0.0384206,97.97058273],[4.53691868,0.03841888,97.97079827],[4.53691814,0.03841716,97.97101392],[4.53691759,0.03841544,97.97122964],[4.53691705,0.03841373,97.97144541],[4.53691651,0.03841201,97.9716612],[4.53691597,0.03841029,97.97187698],[4.53691542,0.03840857,97.97209273],[4.53691488,0.03840685,97.97230842],[4.53691434,0.03840514,97.97252404],[4.5369138,0.03840342,97.97273961],[4.53691325,0.0384017,97.97295514],[4.53691271,0.03839998,97.97317065],[4.53691217,0.03839826,97.97338615],[4.53691163,0.03839654,97.97360164],[4.53691108,0.03839482,97.97381716],[4.53691054,0.0383931,97.9740327],[4.53691,0.03839139,97.97424828],[4.53690946,0.03838967,97.97446392],[4.53690891,0.03838795,97.97467963],[4.53690837,0.03838623,97.97489542],[4.53690783,0.03838451,97.9751113],[4.53690729,0.03838279,97.9753273],[4.53690674,0.03838107,97.97554342],[4.5369062,0.03837935,97.97575967],[4.53690566,0.03837763,97.97597608],[4.53690512,0.03837591,97.97619265],[4.53690457,0.03837419,97.97640939],[4.53690403,0.03837247,97.97662633],[4.53690349,0.03837075,97.97684346],[4.53690295,0.03836903,97.97706081],[4.5369024,0.03836731,97.9772784],[4.53690186,0.03836559,97.97749625],[4.53690132,0.03836387,97.97771438],[4.53690078,0.03836215,97.97793281],[4.53690024,0.03836043,97.97815157],[4.53689969,0.03835871,97.97837068],[4.53689915,0.03835699,97.97859017],[4.53689861,0.03835527,97.97881005],[4.53689807,0.03835355,97.97903035],[4.53689753,0.03835183,97.9792511],[4.53689699,0.03835011,97.97947231],[4.53689645,0.03834839,97.97969401],[4.53689591,0.03834667,97.97991623],[4.53689537,0.03834495,97.98013897],[4.53689482,0.03834323,97.98036228],[4.53689428,0.0383415,97.98058616],[4.53689374,0.03833978,97.98081065],[4.5368932,0.03833806,97.98103576],[4.53689267,0.03833634,97.98126151],[4.53689213,0.03833462,97.98148794],[4.53689159,0.0383329,97.98171505],[4.53689105,0.03833117,97.98194287],[4.53689051,0.03832944,97.98217141],[4.53688997,0.03832772,97.98240068],[4.53688943,0.038326,97.9826307],[4.53688889,0.03832428,97.98286149],[4.53688836,0.03832255,97.98309305],[4.53688782,0.03832083,97.9833254],[4.53688728,0.03831911,97.98355856],[4.53688674,0.03831738,97.98379254],[4.53688621,0.03831566,97.98402735],[4.53688567,0.03831393,97.98426301],[4.53688514,0.03831221,97.98449953],[4.5368846,0.03831049,97.98473693],[4.53688406,0.03830876,97.98497522],[4.53688353,0.03830704,97.98521441],[4.53688299,0.03830531,97.98545451],[4.53688246,0.03830359,97.98569555],[4.53688193,0.03830186,97.98593753],[4.53688139,0.03830013,97.98618046],[4.53688086,0.03829841,97.98642437],[4.53688033,0.03829668,97.98666926],[4.53687979,0.03829496,97.98691515],[4.53687926,0.03829323,97.98716204],[4.53687873,0.0382915,97.98740996],[4.5368782,0.03828978,97.98765891],[4.53687767,0.03828805,97.9879089],[4.53687714,0.03828632,97.98815995],[4.53687661,0.03828459,97.98841205],[4.53687608,0.03828287,97.98866523],[4.53687555,0.03828114,97.98891949],[4.53687502,0.03827941,97.98917484],[4.53687449,0.03827768,97.9894313],[4.53687396,0.03827595,97.98968887],[4.53687343,0.03827423,97.98994756],[4.53687291,0.0382725,97.99020738],[4.53687238,0.03827077,97.99046833],[4.53687185,0.03826904,97.9907303],[4.53687133,0.03826731,97.99099318],[4.5368708,0.03826558,97.99125685],[4.53687028,0.03826385,97.99152121],[4.53686975,0.03826212,97.99178613],[4.53686923,0.03826039,97.9920515],[4.5368687,0.03825866,97.9923172],[4.53686818,0.03825693,97.99258313],[4.53686765,0.0382552,97.99284918],[4.53686713,0.03825347,97.99311522],[4.53686661,0.03825173,97.99338114],[4.53686608,0.03825,97.99364685],[4.53686556,0.03824827,97.99391222],[4.53686504,0.03824654,97.99417714],[4.53686451,0.03824481,97.99444151],[4.53686399,0.03824308,97.99470521],[4.53686346,0.03824135,97.99496814],[4.53686294,0.03823961,97.99523019],[4.53686242,0.03823788,97.99549125],[4.53686189,0.03823615,97.99575122],[4.53686137,0.03823442,97.99600998],[4.53686084,0.03823269,97.99626743],[4.53686032,0.03823096,97.99652346],[4.53685979,0.03822922,97.99677798],[4.53685927,0.03822749,97.99703087],[4.53685874,0.03822576,97.99728203],[4.53685822,0.03822403,97.99753136],[4.53685819,0.03822392,97.99754667]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000400","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":0}},{"geometry":{"coordinates":[[4.53703355,0.03867215,98.04662279],[4.53703307,0.03867066,98.04679708],[4.53703259,0.03866914,98.0470265],[4.53703209,0.03866759,98.04730318],[4.53703159,0.03866601,98.04761919],[4.53703107,0.03866439,98.04796646],[4.53703054,0.03866274,98.04833689],[4.53703001,0.03866105,98.04872226],[4.53702946,0.03865933,98.04911427],[4.53702891,0.03865761,98.04950457],[4.53702837,0.03865589,98.04988471],[4.53702782,0.03865417,98.05024811],[4.53702726,0.03865245,98.05059574],[4.53702671,0.03865073,98.05093041],[4.53702615,0.03864901,98.05125496],[4.53702559,0.0386473,98.05157228],[4.53702503,0.03864558,98.05188498],[4.53702447,0.03864386,98.0521947],[4.53702391,0.03864215,98.05250279],[4.53702336,0.03864043,98.05281064],[4.5370228,0.03863872,98.05311938],[4.53702224,0.038637,98.0534291],[4.53702169,0.03863528,98.05373968],[4.53702114,0.03863357,98.05405096],[4.53702059,0.03863185,98.0543628],[4.53702004,0.03863013,98.05467506],[4.53701949,0.03862842,98.0549876],[4.53701894,0.0386267,98.05530025],[4.5370184,0.03862498,98.05561286],[4.53701785,0.03862327,98.0559253],[4.5370173,0.03862155,98.05623739],[4.53701676,0.03861983,98.05654899],[4.53701622,0.03861812,98.05685993],[4.53701567,0.0386164,98.05717006],[4.53701513,0.03861468,98.05747921],[4.53701459,0.03861297,98.05778722],[4.53701404,0.03861125,98.05809393],[4.5370135,0.03860954,98.0583992],[4.53701296,0.03860782,98.05870288],[4.53701242,0.03860611,98.05900489],[4.53701188,0.03860439,98.05930525],[4.53701133,0.03860268,98.05960404],[4.53701079,0.03860096,98.0599013],[4.53701025,0.03859925,98.06019711],[4.53700971,0.03859753,98.06049152],[4.53700917,0.03859582,98.0607846],[4.53700862,0.03859411,98.06107642],[4.53700808,0.03859239,98.06136703],[4.53700754,0.03859068,98.06165649],[4.537007,0.03858895,98.06194488],[4.53700645,0.03858724,98.06223225],[4.53700591,0.03858553,98.06251867],[4.53700537,0.03858381,98.06280419],[4.53700483,0.0385821,98.06308889],[4.53700428,0.03858038,98.06337282],[4.53700374,0.03857867,98.06365605],[4.5370032,0.03857696,98.06393859],[4.53700266,0.03857524,98.06422041],[4.53700212,0.03857353,98.0645015],[4.53700157,0.03857181,98.06478181],[4.53700103,0.0385701,98.06506133],[4.53700049,0.03856838,98.06534002],[4.53699995,0.03856667,98.06561785],[4.53699941,0.03856495,98.0658948],[4.53699886,0.03856324,98.06617083],[4.53699832,0.03856153,98.06644592],[4.53699778,0.03855981,98.06672002],[4.53699724,0.0385581,98.06699312],[4.53699669,0.03855638,98.06726517],[4.53699615,0.03855467,98.06753616],[4.53699561,0.03855295,98.06780604],[4.53699506,0.03855124,98.06807478],[4.53699452,0.03854952,98.06834233],[4.53699398,0.03854781,98.06860857],[4.53699344,0.03854609,98.06887332],[4.53699289,0.03854438,98.06913645],[4.53699235,0.03854266,98.0693978],[4.5369918,0.03854095,98.06965722],[4.53699126,0.03853923,98.06991455],[4.53699072,0.03853752,98.07016967],[4.53699017,0.0385358,98.07042244],[4.53698962,0.03853409,98.07067273],[4.53698908,0.03853237,98.07092039],[4.53698853,0.03853066,98.07116529],[4.53698798,0.03852894,98.0714073],[4.53698744,0.03852723,98.07164627],[4.53698689,0.03852551,98.07188208],[4.53698634,0.0385238,98.07211457],[4.53698579,0.03852209,98.07234361],[4.53698524,0.03852037,98.07256907],[4.53698469,0.03851866,98.07279081],[4.53698414,0.03851694,98.07300868],[4.53698358,0.03851523,98.07322261],[4.53698303,0.03851352,98.07343277],[4.53698247,0.0385118,98.07363938],[4.53698192,0.03851009,98.07384267],[4.53698136,0.03850838,98.07404287],[4.53698081,0.03850667,98.07424021],[4.53698025,0.03850495,98.07443492],[4.5369797,0.03850324,98.07462722],[4.53697914,0.03850153,98.07481736],[4.53697858,0.03849982,98.07500555],[4.53697802,0.0384981,98.07519204],[4.53697747,0.03849639,98.07537704],[4.53697691,0.03849468,98.0755608],[4.53697635,0.03849297,98.07574355],[4.53697579,0.03849125,98.07592551],[4.53697523,0.03848954,98.07610692],[4.53697468,0.03848783,98.07628801],[4.53697412,0.03848611,98.07646902],[4.53697356,0.0384844,98.07665017],[4.53697301,0.03848269,98.07683171],[4.53697245,0.03848097,98.07701385],[4.5369719,0.03847926,98.07719684],[4.53697134,0.03847754,98.0773809],[4.53697079,0.03847584,98.07756626],[4.53697024,0.03847412,98.07775298],[4.53696968,0.03847241,98.07794101],[4.53696913,0.0384707,98.07813027],[4.53696858,0.03846898,98.07832069],[4.53696803,0.03846726,98.0785122],[4.53696748,0.03846555,98.07870472],[4.53696693,0.03846383,98.07889817],[4.53696638,0.03846212,98.07909249],[4.53696583,0.0384604,98.0792876],[4.53696529,0.03845868,98.07948342],[4.53696474,0.03845697,98.07967989],[4.53696419,0.03845525,98.07987692],[4.53696364,0.03845353,98.08007444],[4.5369631,0.03845182,98.08027238],[4.53696255,0.0384501,98.08047066],[4.53696201,0.03844838,98.0806692],[4.53696146,0.03844667,98.08086794],[4.53696092,0.03844495,98.08106679],[4.53696037,0.03844323,98.08126568],[4.53695983,0.03844151,98.08146453],[4.53695929,0.03843979,98.08166326],[4.53695874,0.03843808,98.08186181],[4.5369582,0.03843636,98.08206009],[4.53695766,0.03843464,98.08225804],[4.53695711,0.03843292,98.08245556],[4.53695657,0.0384312,98.08265259],[4.53695603,0.03842949,98.08284905],[4.53695548,0.03842777,98.08304487],[4.53695494,0.03842605,98.08323997],[4.5369544,0.03842433,98.08343426],[4.53695386,0.03842261,98.08362769],[4.53695331,0.03842089,98.08382016],[4.53695277,0.03841917,98.08401165],[4.53695223,0.03841745,98.08420215],[4.53695169,0.03841574,98.08439166],[4.53695115,0.03841402,98.08458018],[4.5369506,0.0384123,98.08476771],[4.53695006,0.03841058,98.08495425],[4.53694952,0.03840886,98.08513979],[4.53694898,0.03840714,98.08532435],[4.53694844,0.03840542,98.08550792],[4.53694789,0.0384037,98.08569052],[4.53694735,0.03840198,98.08587215],[4.53694681,0.03840027,98.08605281],[4.53694627,0.03839855,98.08623252],[4.53694573,0.03839683,98.08641128],[4.53694518,0.03839511,98.08658909],[4.53694464,0.03839339,98.08676596],[4.5369441,0.03839167,98.08694191],[4.53694356,0.03838995,98.08711693],[4.53694302,0.03838823,98.08729103],[4.53694248,0.03838651,98.08746421],[4.53694193,0.03838479,98.0876365],[4.53694139,0.03838307,98.08780788],[4.53694085,0.03838135,98.08797836],[4.53694031,0.03837963,98.08814797],[4.53693977,0.03837792,98.08831669],[4.53693923,0.0383762,98.08848453],[4.53693869,0.03837448,98.08865151],[4.53693814,0.03837276,98.08881763],[4.5369376,0.03837104,98.08898289],[4.53693706,0.03836932,98.0891473],[4.53693652,0.0383676,98.08931087],[4.53693598,0.03836588,98.08947361],[4.53693544,0.03836416,98.08963552],[4.5369349,0.03836244,98.0897966],[4.53693436,0.03836072,98.08995686],[4.53693382,0.038359,98.09011632],[4.53693327,0.03835728,98.09027498],[4.53693273,0.03835556,98.09043285],[4.53693219,0.03835384,98.09058997],[4.53693165,0.03835212,98.09074633],[4.53693111,0.0383504,98.09090196],[4.53693057,0.03834868,98.09105688],[4.53693003,0.03834696,98.0912111],[4.53692949,0.03834524,98.09136464],[4.53692895,0.03834352,98.09151751],[4.53692841,0.0383418,98.09166973],[4.53692787,0.03834008,98.09182132],[4.53692733,0.03833836,98.0919723],[4.53692679,0.03833664,98.09212268],[4.53692625,0.03833492,98.09227247],[4.53692571,0.03833319,98.0924217],[4.53692517,0.03833147,98.09257038],[4.53692463,0.03832975,98.09271853],[4.53692409,0.03832803,98.09286616],[4.53692356,0.03832631,98.09301329],[4.53692302,0.03832459,98.09315994],[4.53692248,0.03832287,98.09330612],[4.53692194,0.03832115,98.09345184],[4.5369214,0.03831942,98.0935971],[4.53692086,0.0383177,98.09374193],[4.53692032,0.03831598,98.09388633],[4.53691978,0.03831426,98.0940303],[4.53691925,0.03831254,98.09417386],[4.53691871,0.03831081,98.09431702],[4.53691817,0.03830909,98.09445978],[4.53691763,0.03830737,98.09460215],[4.5369171,0.03830565,98.09474414],[4.53691656,0.03830393,98.09488576],[4.53691602,0.0383022,98.09502702],[4.53691548,0.03830048,98.09516793],[4.53691495,0.03829876,98.09530849],[4.53691441,0.03829704,98.09544872],[4.53691388,0.03829531,98.09558863],[4.53691334,0.03829359,98.09572822],[4.5369128,0.03829187,98.0958675],[4.53691227,0.03829015,98.09600648],[4.53691173,0.03828842,98.09614518],[4.5369112,0.0382867,98.09628359],[4.53691066,0.03828498,98.09642173],[4.53691013,0.03828326,98.09655961],[4.53690959,0.03828153,98.09669723],[4.53690906,0.03827981,98.09683461],[4.53690852,0.03827809,98.09697173],[4.53690799,0.03827636,98.09710862],[4.53690745,0.03827464,98.09724528],[4.53690692,0.03827291,98.09738172],[4.53690639,0.03827119,98.09751793],[4.53690585,0.03826947,98.09765393],[4.53690532,0.03826774,98.09778973],[4.53690479,0.03826602,98.09792533],[4.53690425,0.0382643,98.09806074],[4.53690372,0.03826257,98.09819596],[4.53690319,0.03826085,98.098331],[4.53690266,0.03825912,98.09846587],[4.53690213,0.0382574,98.09860057],[4.53690159,0.03825567,98.09873511],[4.53690106,0.03825395,98.0988695],[4.53690053,0.03825222,98.09900375],[4.5369,0.0382505,98.09913785],[4.53689947,0.03824877,98.09927182],[4.53689894,0.03824705,98.09940566],[4.53689841,0.03824532,98.09953939],[4.53689788,0.0382436,98.099673],[4.53689735,0.03824187,98.0998065],[4.53689682,0.03824015,98.09993991],[4.53689629,0.03823842,98.10007323],[4.53689576,0.0382367,98.10020645],[4.53689523,0.03823497,98.1003396],[4.5368947,0.03823324,98.10047268],[4.53689417,0.03823152,98.1006057],[4.53689365,0.03822979,98.10073865],[4.53689312,0.03822807,98.10087156],[4.53689259,0.03822634,98.10100442],[4.53689206,0.03822461,98.10113724],[4.53689154,0.03822289,98.10127004],[4.53689101,0.03822116,98.10140281],[4.53689048,0.03821943,98.10153557],[4.53688996,0.03821771,98.10166832],[4.53688943,0.03821598,98.10180107],[4.5368889,0.03821425,98.10193382],[4.53688887,0.03821415,98.10194201]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"broken","height":0.0},{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000400","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":0}},{"geometry":{"coordinates":[[4.53692693,0.03820202,98.23141893],[4.53692699,0.03820212,98.23151466],[4.53692797,0.03820369,98.23306897],[4.53692895,0.03820527,98.23462606],[4.53692993,0.03820685,98.23618588],[4.5369309,0.03820843,98.2377484],[4.53693188,0.03821,98.23931359],[4.53693286,0.03821158,98.24088142],[4.53693384,0.03821315,98.24245185],[4.53693482,0.03821473,98.24402485],[4.5369358,0.03821631,98.24560037],[4.53693678,0.03821788,98.24717839],[4.53693776,0.03821946,98.24875887],[4.53693874,0.03822103,98.25034176],[4.53693972,0.03822261,98.25192704],[4.5369407,0.03822419,98.25351467],[4.53694169,0.03822576,98.25510459],[4.53694267,0.03822734,98.25669679],[4.53694365,0.03822891,98.25829121],[4.53694463,0.03823049,98.25988782],[4.53694532,0.03823216,98.26046842],[4.53694579,0.03823389,98.26030925],[4.53694627,0.03823563,98.26014775],[4.53694674,0.03823737,98.25998393],[4.53694722,0.03823911,98.25981778],[4.53694769,0.03824084,98.25964933],[4.53694817,0.03824258,98.25947858],[4.53694864,0.03824432,98.25930553],[4.53694912,0.03824606,98.2591302],[4.53694959,0.0382478,98.2589526],[4.53695007,0.03824953,98.25877273],[4.53695054,0.03825127,98.25859062],[4.53695102,0.03825301,98.25840625],[4.53695149,0.03825475,98.25821966],[4.53695197,0.03825649,98.25803084],[4.53695244,0.03825823,98.2578398],[4.53695292,0.03825996,98.25764657],[4.53695339,0.0382617,98.25745115],[4.53695387,0.03826344,98.25725354],[4.53695434,0.03826518,98.25705377],[4.53695482,0.03826692,98.25685185],[4.53695529,0.03826866,98.25664778],[4.53695577,0.0382704,98.25644158],[4.53695624,0.03827214,98.25623325],[4.53695672,0.03827388,98.25602282],[4.53695719,0.03827561,98.2558103],[4.53695767,0.03827735,98.25559568],[4.53695814,0.03827909,98.25537898],[4.53695862,0.03828083,98.25516022],[4.53695909,0.03828257,98.2549394],[4.53695957,0.03828431,98.25471653],[4.53696004,0.03828605,98.25449163],[4.53696052,0.03828779,98.25426471],[4.536961,0.03828953,98.25403578],[4.53696147,0.03829127,98.25380484],[4.53696195,0.03829301,98.25357192],[4.53696242,0.03829475,98.25333703],[4.5369629,0.03829649,98.25310017],[4.53696338,0.03829822,98.25286136],[4.53696385,0.03829996,98.25262061],[4.53696433,0.0383017,98.25237793],[4.53696481,0.03830344,98.25213335],[4.53696528,0.03830518,98.25188686],[4.53696576,0.03830693,98.25163849],[4.53696624,0.03830867,98.25138825],[4.53696672,0.03831041,98.25113615],[4.53696719,0.03831215,98.2508822],[4.53696767,0.03831388,98.25062642],[4.53696815,0.03831562,98.25036883],[4.53696863,0.03831736,98.25010943],[4.5369691,0.0383191,98.24984825],[4.53696958,0.03832084,98.24958529],[4.53697006,0.03832258,98.24932057],[4.53697054,0.03832432,98.2490541],[4.53697102,0.03832606,98.24878591],[4.5369715,0.0383278,98.248516],[4.53697198,0.03832954,98.24824439],[4.53697246,0.03833127,98.2479711],[4.53697294,0.03833301,98.24769614],[4.53697342,0.03833475,98.24741953],[4.5369739,0.03833649,98.24714127],[4.53697438,0.03833823,98.24686134],[4.53697486,0.03833997,98.24657969],[4.53697534,0.03834171,98.24629628],[4.53697582,0.03834345,98.24601107],[4.5369763,0.03834518,98.24572401],[4.53697679,0.03834692,98.24543507],[4.53697727,0.03834866,98.2451442],[4.53697775,0.0383504,98.24485137],[4.53697823,0.03835214,98.24455655],[4.53697872,0.03835388,98.24425971],[4.5369792,0.03835562,98.24396081],[4.53697968,0.03835735,98.24365982],[4.53698016,0.03835909,98.24335671],[4.53698065,0.03836083,98.24305144],[4.53698113,0.03836257,98.24274399],[4.53698161,0.03836431,98.24243432],[4.5369821,0.03836605,98.2421224],[4.53698258,0.03836778,98.24180819],[4.53698307,0.03836952,98.24149166],[4.53698355,0.03837126,98.24117279],[4.53698403,0.038373,98.24085154],[4.53698452,0.03837474,98.24052787],[4.536985,0.03837648,98.24020175],[4.53698549,0.03837822,98.23987315],[4.53698597,0.03837995,98.23954205],[4.53698646,0.03838169,98.23920839],[4.53698694,0.03838343,98.23887217],[4.53698742,0.03838517,98.23853333],[4.53698791,0.03838691,98.23819186],[4.53698839,0.03838865,98.23784771],[4.53698888,0.03839038,98.23750085],[4.53698936,0.03839212,98.23715126],[4.53698985,0.03839386,98.2367989],[4.53699033,0.0383956,98.23644374],[4.53699082,0.03839734,98.23608575],[4.5369913,0.03839908,98.23572489],[4.53699179,0.03840082,98.23536115],[4.53699227,0.03840256,98.23499449],[4.53699276,0.03840429,98.2346249],[4.53699324,0.03840603,98.23425234],[4.53699373,0.03840777,98.2338768],[4.53699421,0.03840951,98.23349825],[4.53699469,0.03841125,98.23311666],[4.53699518,0.03841299,98.23273202],[4.53699566,0.03841473,98.23234429],[4.53699615,0.03841647,98.23195349],[4.53699663,0.03841821,98.23155963],[4.53699712,0.03841995,98.23116271],[4.5369976,0.03842168,98.23076276],[4.53699808,0.03842342,98.23035978],[4.53699857,0.03842516,98.22995378],[4.53699905,0.0384269,98.22954479],[4.53699954,0.03842864,98.2291328],[4.53700002,0.03843038,98.22871784],[4.53700051,0.03843212,98.22829991],[4.53700099,0.03843386,98.22787902],[4.53700147,0.0384356,98.2274552],[4.53700196,0.03843734,98.22702846],[4.53700244,0.03843908,98.22659879],[4.53700293,0.03844082,98.22616623],[4.53700341,0.03844256,98.22573078],[4.53700389,0.0384443,98.22529245],[4.53700438,0.03844604,98.22485126],[4.53700486,0.03844778,98.22440722],[4.53700535,0.03844952,98.22396034],[4.53700583,0.03845126,98.22351064],[4.53700632,0.03845299,98.22305813],[4.5370068,0.03845473,98.22260282],[4.53700729,0.03845647,98.22214472],[4.53700777,0.03845821,98.22168386],[4.53700826,0.03845995,98.22122023],[4.53700874,0.03846169,98.22075386],[4.53700923,0.03846343,98.22028475],[4.53700971,0.03846516,98.21981293],[4.53701019,0.0384669,98.2193384],[4.53701068,0.03846864,98.21886117],[4.53701116,0.03847038,98.21838127],[4.53701165,0.03847212,98.21789869],[4.53701213,0.03847386,98.21741344],[4.53701262,0.0384756,98.21692554],[4.53701311,0.03847734,98.21643499],[4.53701359,0.03847908,98.2159418],[4.53701408,0.03848082,98.21544597],[4.53701456,0.03848256,98.21494751],[4.53701505,0.0384843,98.21444644],[4.53701554,0.03848604,98.21394275],[4.53701602,0.03848778,98.21343646],[4.53701651,0.03848953,98.21292757],[4.537017,0.03849127,98.21241609],[4.53701748,0.03849301,98.21190203],[4.53701797,0.03849475,98.21138539],[4.53701846,0.03849649,98.21086618],[4.53701894,0.03849823,98.21034442],[4.53701943,0.03849997,98.20982009],[4.53701992,0.03850171,98.20929322],[4.5370204,0.03850345,98.20876381],[4.53702089,0.03850519,98.20823187],[4.53702138,0.03850693,98.20769739],[4.53702187,0.03850867,98.2071604],[4.53702235,0.03851041,98.20662089],[4.53702284,0.03851215,98.20607888],[4.53702333,0.03851389,98.20553436],[4.53702382,0.03851563,98.20498734],[4.5370243,0.03851737,98.20443784],[4.53702479,0.03851911,98.20388585],[4.53702528,0.03852085,98.20333138],[4.53702577,0.03852259,98.20277444],[4.53702626,0.03852433,98.20221504],[4.53702675,0.03852607,98.20165317],[4.53702723,0.03852781,98.20108885],[4.53702772,0.03852956,98.20052207],[4.53702821,0.0385313,98.19995285],[4.5370287,0.03853304,98.19938119],[4.53702919,0.03853478,98.19880713],[4.53702968,0.03853652,98.19823069],[4.53703017,0.03853826,98.19765188],[4.53703065,0.03854,98.19707074],[4.53703114,0.03854174,98.19648729],[4.53703163,0.03854348,98.19590156],[4.53703212,0.03854522,98.19531355],[4.53703261,0.03854696,98.19472331],[4.5370331,0.0385487,98.19413085],[4.53703359,0.03855044,98.19353616],[4.53703408,0.03855218,98.1929392],[4.53703457,0.03855392,98.19233993],[4.53703506,0.03855566,98.1917383],[4.53703555,0.0385574,98.19113428],[4.53703604,0.03855914,98.19052781],[4.53703653,0.03856089,98.18991886],[4.53703702,0.03856263,98.18930738],[4.53703751,0.03856437,98.18869333],[4.537038,0.03856611,98.18807666],[4.53703849,0.03856785,98.18745733],[4.53703898,0.03856959,98.1868353],[4.53703947,0.03857133,98.18621048],[4.53703996,0.03857307,98.18558273],[4.53704045,0.03857481,98.18495193],[4.53704094,0.03857655,98.18431795],[4.53704143,0.03857829,98.18368064],[4.53704193,0.03858005,98.18303989],[4.53704242,0.03858179,98.18239556],[4.53704291,0.03858353,98.18174752],[4.53704339,0.03858527,98.18109564],[4.53704388,0.03858701,98.18043979],[4.53704437,0.03858875,98.17977984],[4.53704486,0.03859049,98.17911567],[4.53704534,0.03859223,98.17844715],[4.53704583,0.03859397,98.17777416],[4.53704632,0.03859571,98.17709656],[4.5370468,0.03859744,98.17641423],[4.53704729,0.03859918,98.17572708],[4.53704777,0.03860092,98.17503514],[4.53704825,0.03860266,98.17433849],[4.53704874,0.0386044,98.17363719],[4.53704922,0.03860614,98.17293131],[4.53704971,0.03860788,98.17222092],[4.53705019,0.03860962,98.17150609],[4.53705067,0.03861136,98.17078688],[4.53705115,0.0386131,98.17006337],[4.53705164,0.03861483,98.16933561],[4.53705212,0.03861657,98.16860369],[4.5370526,0.03861831,98.16786765],[4.53705309,0.03862005,98.16712757],[4.53705357,0.03862179,98.1663835],[4.53705405,0.03862352,98.16563552],[4.53705454,0.03862526,98.16488369],[4.53705502,0.038627,98.16412807],[4.5370555,0.03862873,98.16336873],[4.53705599,0.03863047,98.16260585],[4.53705647,0.03863221,98.16183935],[4.53705696,0.03863394,98.16106815],[4.53705744,0.03863568,98.16029092],[4.53705793,0.03863741,98.15950633],[4.53705841,0.03863915,98.15871307],[4.53705889,0.03864089,98.15790981],[4.53705937,0.03864262,98.15709529],[4.53705985,0.03864436,98.1562682],[4.53706032,0.0386461,98.15542729],[4.5370608,0.03864784,98.15457313],[4.53706127,0.03864958,98.15371381],[4.53706175,0.03865132,98.15285929],[4.53706224,0.03865309,98.15201942],[4.53706274,0.03865489,98.15120397],[4.53706326,0.03865672,98.1504226],[4.53706379,0.03865859,98.1496849],[4.53706432,0.03866049,98.14900031],[4.53706487,0.03866242,98.14837822],[4.53706542,0.03866439,98.14782787]],"type":"LineString"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000400","rules":[{"value":"barred"}],"id":1,"type":"restricted","predecessorId":0}},{"geometry":{"coordinates":[[4.53681192,0.03823866,97.98552696],[4.53681139,0.03823693,97.98577991],[4.53681086,0.03823519,97.98603293],[4.53681074,0.03823478,97.98609238]],"type":"LineString"},"type":"feature","properties":{"successorId":-4,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1000400","id":-4,"type":"none","predecessorId":-4}},{"geometry":{"coordinates":[[4.53685465,0.03822505,97.98552696],[4.53685412,0.03822332,97.98577991],[4.5368536,0.03822159,97.98603293],[4.53685347,0.03822118,97.98609238]],"type":"LineString"},"type":"feature","properties":{"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000400","id":-3,"type":"shoulder","predecessorId":-3}},{"geometry":{"coordinates":[[4.53685819,0.03822392,97.99754667],[4.53685766,0.03822219,97.99779422],[4.53685713,0.03822046,97.9980418],[4.53685701,0.03822005,97.99809997]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000400","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-2}},{"geometry":{"coordinates":[[4.53688887,0.03821415,98.10194201],[4.53688835,0.03821242,98.10207618],[4.53688782,0.03821069,98.10221013],[4.5368877,0.03821029,98.10224157]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000400","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-1}},{"geometry":{"coordinates":[[4.53692102,0.03819968,98.21531247],[4.53692142,0.0382,98.2162665],[4.53692314,0.03820134,98.22033236],[4.53692693,0.03820202,98.23141893]],"type":"LineString"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000400","rules":[{"value":"barred"}],"id":1,"type":"restricted","predecessorId":1}},{"geometry":{"coordinates":[[4.5369259,0.03819812,98.21531247],[4.53692601,0.03819853,98.2162665],[4.53692648,0.03820028,98.22033236],[4.53692694,0.03820202,98.23141893]],"type":"LineString"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1000400","id":2,"type":"none","predecessorId":0}},{"geometry":{"coordinates":[[4.53681074,0.03823478,97.98609238],[4.53681021,0.03823304,97.98634425],[4.53680967,0.03823131,97.98659557],[4.53680914,0.03822957,97.98684633],[4.53680861,0.03822783,97.98709655],[4.53680808,0.03822609,97.98734623],[4.53680755,0.03822435,97.98759537],[4.53680702,0.03822262,97.98784398],[4.53680649,0.03822088,97.98809205],[4.53680596,0.03821914,97.98833959],[4.53680543,0.0382174,97.98858661],[4.5368049,0.03821566,97.98883311],[4.53680437,0.03821392,97.98907909],[4.53680384,0.03821218,97.98932456],[4.53680331,0.03821044,97.98956952],[4.53680278,0.0382087,97.98981397],[4.53680225,0.03820696,97.99005791],[4.53680172,0.03820522,97.99030136],[4.53680119,0.03820348,97.99054431],[4.53680066,0.03820174,97.99078677],[4.53680013,0.0382,97.99102875],[4.5367996,0.03819826,97.99127024],[4.53679907,0.03819652,97.99151124],[4.53679853,0.03819478,97.99175177],[4.536798,0.03819304,97.99199183],[4.53679747,0.0381913,97.99223142],[4.53679694,0.03818955,97.99247054],[4.53679641,0.03818781,97.9927092],[4.53679588,0.03818607,97.99294741],[4.53679535,0.03818433,97.99318516],[4.53679482,0.03818259,97.99342249],[4.53679429,0.03818084,97.99365952],[4.53679376,0.0381791,97.99389634],[4.53679323,0.03817736,97.99413306],[4.53679271,0.03817562,97.99436977],[4.53679218,0.03817387,97.99460657],[4.53679165,0.03817213,97.99484356],[4.53679112,0.03817038,97.99508083],[4.53679059,0.03816864,97.99531849],[4.53679006,0.0381669,97.99555663],[4.53678953,0.03816515,97.99579534],[4.53678901,0.03816341,97.99603472],[4.53678848,0.03816166,97.99627488],[4.53678795,0.03815992,97.99651589],[4.53678743,0.03815817,97.99675786],[4.5367869,0.03815642,97.99700088],[4.53678638,0.03815468,97.99724505],[4.53678586,0.03815293,97.99749041],[4.53678533,0.03815118,97.99773703],[4.53678481,0.03814944,97.99798497],[4.53678429,0.03814769,97.99823428],[4.53678377,0.03814594,97.99848502],[4.53678325,0.0381442,97.99873725],[4.53678273,0.03814246,97.99899101],[4.53678221,0.03814071,97.99924636],[4.53678169,0.03813896,97.99950337],[4.53678118,0.03813721,97.99976208],[4.53678066,0.03813546,98.00002254],[4.53678014,0.03813371,98.00028482],[4.53677963,0.03813196,98.00054897],[4.53677911,0.03813021,98.00081504],[4.5367786,0.03812846,98.00108307],[4.53677809,0.03812671,98.00135305],[4.53677758,0.03812496,98.00162488],[4.53677707,0.03812321,98.00189843],[4.53677656,0.03812146,98.00217362],[4.53677605,0.0381197,98.00245033],[4.53677554,0.03811795,98.00272845],[4.53677503,0.0381162,98.0030079],[4.53677453,0.03811445,98.00328855],[4.53677402,0.0381127,98.00357031],[4.53677352,0.03811094,98.00385308],[4.53677301,0.03810919,98.00413675],[4.53677251,0.03810744,98.00442122],[4.536772,0.03810568,98.00470639],[4.5367715,0.03810393,98.00499216],[4.536771,0.03810218,98.00527843],[4.53677049,0.03810042,98.0055651],[4.53676999,0.03809867,98.00585207],[4.53676949,0.03809692,98.00613924],[4.53676899,0.03809516,98.00642652],[4.53676849,0.03809341,98.0067138],[4.53676799,0.03809166,98.00700099],[4.53676749,0.0380899,98.00728799],[4.53676699,0.03808815,98.00757471],[4.53676648,0.0380864,98.00786105],[4.53676598,0.03808464,98.00814691],[4.53676548,0.03808289,98.00843219],[4.53676498,0.03808113,98.00871681],[4.53676448,0.03807938,98.00900067],[4.53676398,0.03807763,98.00928368],[4.53676348,0.03807587,98.00956574],[4.53676298,0.03807412,98.00984675],[4.53676248,0.03807237,98.01012664],[4.53676198,0.03807061,98.01040529],[4.53676148,0.03806886,98.01068263],[4.53676098,0.0380671,98.01095856],[4.53676048,0.03806535,98.01123299],[4.53675998,0.0380636,98.01150582],[4.53675948,0.03806184,98.01177698],[4.53675897,0.03806009,98.01204639],[4.53675847,0.03805834,98.0123141],[4.53675797,0.03805659,98.01258019],[4.53675746,0.03805483,98.01284473],[4.53675696,0.03805308,98.01310779],[4.53675646,0.03805133,98.01336945],[4.53675595,0.03804958,98.01362978],[4.53675545,0.03804782,98.01388885],[4.53675494,0.03804607,98.01414673],[4.53675444,0.03804432,98.01440351],[4.53675393,0.03804257,98.01465929],[4.53675343,0.03804081,98.0149142],[4.53675293,0.03803906,98.01516834],[4.53675242,0.03803731,98.01542185],[4.53675192,0.03803556,98.01567484],[4.53675141,0.03803381,98.01592742],[4.53675091,0.03803205,98.01617972],[4.5367504,0.0380303,98.01643184],[4.5367499,0.03802855,98.0166839],[4.53674939,0.0380268,98.01693602],[4.53674889,0.03802505,98.01718832],[4.53674839,0.03802329,98.0174409],[4.53674788,0.03802154,98.01769387],[4.53674738,0.03801979,98.01794737],[4.53674688,0.03801804,98.01820149],[4.53674637,0.03801628,98.01845635],[4.53674587,0.03801453,98.01871208],[4.53674537,0.03801278,98.01896884],[4.53674487,0.03801102,98.01922668],[4.53674437,0.03800927,98.01948563],[4.53674387,0.03800752,98.01974568],[4.53674337,0.03800576,98.02000683],[4.53674287,0.03800401,98.02026907],[4.53674238,0.03800226,98.02053241],[4.53674188,0.0380005,98.02079686],[4.53674138,0.03799875,98.0210624],[4.53674089,0.03799699,98.02132904],[4.53674039,0.03799524,98.02159677],[4.53673989,0.03799348,98.02186561],[4.5367394,0.03799173,98.02213555],[4.53673891,0.03798997,98.02240659],[4.53673841,0.03798822,98.02267872],[4.53673792,0.03798646,98.02295196],[4.53673743,0.03798471,98.0232263],[4.53673693,0.03798295,98.02350174],[4.53673644,0.0379812,98.02377828],[4.53673595,0.03797944,98.02405592],[4.53673546,0.03797768,98.02433466],[4.53673497,0.03797593,98.02461451],[4.53673448,0.03797417,98.02489547],[4.53673399,0.03797242,98.02517752],[4.53673351,0.03797066,98.02546069],[4.53673302,0.0379689,98.02574496],[4.53673253,0.03796715,98.02603034],[4.53673204,0.03796539,98.02631684],[4.53673156,0.03796363,98.02660446],[4.53673107,0.03796187,98.02689319],[4.53673059,0.03796012,98.02718295],[4.5367301,0.03795836,98.02747365],[4.53672962,0.0379566,98.0277652],[4.53672914,0.03795484,98.0280575],[4.53672865,0.03795309,98.02835046],[4.53672817,0.03795133,98.02864399],[4.53672769,0.03794957,98.028938],[4.5367272,0.03794781,98.02923238],[4.53672672,0.03794605,98.02952706],[4.53672624,0.0379443,98.02982195],[4.53672576,0.03794254,98.030117],[4.53672528,0.03794078,98.03041216],[4.53672479,0.03793902,98.03070741],[4.53672431,0.03793726,98.03100271],[4.53672383,0.0379355,98.031298],[4.53672335,0.03793375,98.03159327],[4.53672287,0.03793199,98.03188846],[4.53672239,0.03793023,98.03218351],[4.5367219,0.03792847,98.03247838],[4.53672142,0.03792671,98.03277297],[4.53672094,0.03792495,98.03306723],[4.53672046,0.0379232,98.03336107],[4.53671998,0.03792144,98.03365446],[4.5367195,0.03791968,98.03394735],[4.53671902,0.03791792,98.03423975],[4.53671853,0.03791616,98.03453164],[4.53671805,0.0379144,98.03482302],[4.53671757,0.03791265,98.03511387],[4.53671709,0.03791089,98.03540418],[4.5367166,0.03790913,98.03569395],[4.53671612,0.03790737,98.03598316],[4.53671564,0.03790561,98.0362718],[4.53671516,0.03790386,98.03655986],[4.53671467,0.0379021,98.03684733],[4.53671419,0.03790034,98.03713421],[4.53671371,0.03789858,98.03742047],[4.53671322,0.03789683,98.03770612],[4.53671274,0.03789507,98.03799113],[4.53671226,0.03789331,98.0382755],[4.53671177,0.03789155,98.03855922],[4.53671129,0.0378898,98.03884227],[4.5367108,0.03788804,98.03912465],[4.53671033,0.03788632,98.03940635],[4.53670985,0.03788457,98.03968734],[4.53670936,0.03788281,98.03996763],[4.53670888,0.03788106,98.04024719],[4.53670839,0.0378793,98.040526],[4.5367079,0.03787754,98.04080402],[4.53670742,0.03787579,98.04108123],[4.53670693,0.03787403,98.04135759],[4.53670645,0.03787228,98.04163308],[4.53670596,0.03787052,98.04190773],[4.53670547,0.03786877,98.04218188],[4.53670498,0.03786701,98.0424559],[4.5367045,0.03786526,98.04273021],[4.53670401,0.03786351,98.04300519],[4.53670352,0.03786175,98.04328124],[4.53670304,0.03786,98.04355876],[4.53670255,0.03785824,98.04383817],[4.53670207,0.03785649,98.04411986],[4.53670158,0.03785473,98.04440425],[4.5367011,0.03785298,98.04469175],[4.53670062,0.03785122,98.04498276],[4.53670014,0.03784947,98.04527769],[4.53669966,0.03784771,98.04557695],[4.53669919,0.03784596,98.04588094],[4.53669871,0.0378442,98.04619008],[4.53669824,0.03784244,98.04650466],[4.53669777,0.03784069,98.04682455],[4.5366973,0.03783893,98.0471495],[4.53669683,0.03783717,98.04747927],[4.53669636,0.03783541,98.04781361],[4.5366959,0.03783366,98.04815228],[4.53669543,0.0378319,98.04849503],[4.53669497,0.03783014,98.04884162],[4.53669451,0.03782838,98.0491918],[4.53669405,0.03782662,98.04954533],[4.53669359,0.03782486,98.04990196],[4.53669313,0.0378231,98.05026144],[4.53669268,0.03782134,98.05062354],[4.53669222,0.03781958,98.050988],[4.53669176,0.03781782,98.05135459],[4.53669131,0.03781606,98.05172305],[4.53669085,0.0378143,98.05209313],[4.5366904,0.03781254,98.05246461],[4.53668994,0.03781078,98.05283722],[4.53668949,0.03780902,98.05321072],[4.53668903,0.03780727,98.05358486],[4.53668858,0.03780551,98.05395942],[4.53668813,0.03780375,98.05433417],[4.53668767,0.03780199,98.05470888],[4.53668722,0.03780023,98.05508335],[4.53668676,0.03779847,98.05545735],[4.53668631,0.03779671,98.05583068],[4.53668585,0.03779495,98.05620312],[4.53668539,0.0377932,98.05657451],[4.53668494,0.03779144,98.05694494],[4.53668448,0.03778968,98.05731453],[4.53668402,0.03778792,98.05768343],[4.53668356,0.03778617,98.05805178],[4.5366831,0.03778441,98.0584197],[4.53668265,0.03778265,98.05878734],[4.53668219,0.0377809,98.05915484],[4.53668173,0.03777914,98.05952233],[4.53668127,0.03777739,98.05988995],[4.53668081,0.03777563,98.06025784],[4.53668035,0.03777387,98.06062614],[4.53667989,0.03777212,98.06099498],[4.53667943,0.03777036,98.0613645],[4.53667897,0.03776861,98.06173485],[4.53667851,0.03776685,98.06210615],[4.53667805,0.0377651,98.06247855],[4.53667759,0.03776334,98.06285219],[4.53667713,0.03776159,98.0632272],[4.53667667,0.03775983,98.06360372],[4.53667621,0.03775808,98.0639819],[4.53667575,0.03775632,98.06436188],[4.5366753,0.03775457,98.06474376],[4.53667484,0.03775281,98.06512756],[4.53667438,0.03775106,98.06551329],[4.53667393,0.0377493,98.06590091],[4.53667347,0.03774755,98.06629043],[4.53667301,0.03774579,98.06668181],[4.53667256,0.03774404,98.06707504],[4.5366721,0.03774228,98.06747009],[4.53667165,0.03774053,98.06786695],[4.53667119,0.03773877,98.0682656],[4.53667074,0.03773702,98.068666],[4.53667028,0.03773526,98.06906815],[4.53666983,0.03773351,98.06947202],[4.53666938,0.03773175,98.06987759],[4.53666892,0.03773,98.07028483],[4.53666847,0.03772824,98.07069374],[4.53666802,0.03772649,98.07110428],[4.53666757,0.03772474,98.07151644],[4.53666711,0.03772298,98.0719302],[4.53666666,0.03772123,98.07234553],[4.53666621,0.03771947,98.07276241],[4.53666576,0.03771772,98.07318082],[4.53666531,0.03771596,98.07360074],[4.53666486,0.03771421,98.07402215],[4.5366644,0.03771246,98.07444503],[4.53666395,0.0377107,98.07486935],[4.5366635,0.03770895,98.0752951],[4.53666305,0.03770719,98.07572225],[4.5366626,0.03770544,98.07615076],[4.53666215,0.03770369,98.0765806],[4.5366617,0.03770193,98.07701174],[4.53666125,0.03770018,98.07744414],[4.5366608,0.03769843,98.07787778],[4.53666035,0.03769667,98.07831262],[4.5366599,0.03769492,98.07874862],[4.53665945,0.03769317,98.07918576],[4.536659,0.03769142,98.07962399],[4.53665855,0.03768966,98.08006329],[4.5366581,0.03768791,98.08050363],[4.53665764,0.03768616,98.08094496],[4.53665719,0.03768441,98.08138726],[4.53665674,0.03768265,98.0818305],[4.53665629,0.0376809,98.08227466],[4.53665584,0.03767915,98.0827197],[4.53665539,0.0376774,98.08316562],[4.53665494,0.03767565,98.08361237],[4.53665449,0.0376739,98.08405994],[4.53665403,0.03767215,98.0845083],[4.53665358,0.03767039,98.08495742],[4.53665313,0.03766864,98.08540729],[4.53665268,0.03766689,98.08585787],[4.53665222,0.03766514,98.08630914],[4.53665177,0.03766339,98.08676107],[4.53665132,0.03766164,98.08721364],[4.53665086,0.03765989,98.08766683],[4.53665041,0.03765814,98.0881206],[4.53664996,0.03765639,98.08857494],[4.5366495,0.03765464,98.08902981],[4.53664905,0.03765289,98.08948519],[4.53664859,0.03765115,98.08994106],[4.53664814,0.0376494,98.09039739],[4.53664768,0.03764765,98.09085416],[4.53664722,0.0376459,98.09131133],[4.53664677,0.03764415,98.09176888],[4.53664631,0.0376424,98.09222679],[4.53664585,0.03764066,98.09268503],[4.5366454,0.03763891,98.09314358],[4.53664494,0.03763716,98.0936024],[4.53664448,0.03763542,98.09406148],[4.53664402,0.03763367,98.09452078],[4.53664356,0.03763192,98.09498029],[4.5366431,0.03763018,98.09543997],[4.53664264,0.03762843,98.09589979],[4.53664218,0.03762668,98.09635974],[4.53664172,0.03762494,98.09681979],[4.53664125,0.03762319,98.0972799],[4.53664079,0.03762145,98.09774007],[4.53664033,0.0376197,98.09820032],[4.53663987,0.03761796,98.09866078],[4.5366394,0.03761622,98.09912155],[4.53663894,0.03761447,98.09958276],[4.53663847,0.03761273,98.10004453],[4.53663801,0.03761098,98.10050695],[4.53663754,0.03760924,98.10097014],[4.53663707,0.0376075,98.10143423],[4.53663661,0.03760575,98.10189931],[4.53663614,0.03760401,98.1023655],[4.53663567,0.03760226,98.10283291],[4.53663521,0.03760052,98.10330166],[4.53663474,0.03759878,98.10377187],[4.53663427,0.03759703,98.10424363],[4.5366338,0.03759529,98.10471707],[4.53663334,0.03759355,98.1051923],[4.53663287,0.0375918,98.10566944],[4.5366324,0.03759006,98.10614859],[4.53663194,0.03758832,98.10662988],[4.53663147,0.03758657,98.10711341],[4.536631,0.03758483,98.10759931],[4.53663054,0.03758309,98.10808768],[4.53663007,0.03758134,98.10857864],[4.5366296,0.0375796,98.10907231],[4.53662914,0.03757785,98.1095688],[4.53662867,0.03757611,98.11006822],[4.53662821,0.03757437,98.1105707],[4.53662774,0.03757262,98.11107634],[4.53662728,0.03757088,98.11158527],[4.53662681,0.03756913,98.1120976],[4.53662635,0.03756739,98.11261344],[4.53662589,0.03756565,98.11313292],[4.53662543,0.0375639,98.11365614],[4.53662496,0.03756216,98.11418322],[4.5366245,0.03756041,98.11471429],[4.53662404,0.03755867,98.11524945],[4.53662358,0.03755692,98.11578884],[4.53662313,0.03755517,98.11633249],[4.53662267,0.03755343,98.11688022],[4.53662221,0.03755168,98.11743177],[4.53662175,0.03754994,98.11798686],[4.5366213,0.03754819,98.11854524],[4.53662084,0.03754644,98.11910665],[4.53662039,0.0375447,98.11967082],[4.53661993,0.03754295,98.12023749],[4.53661947,0.0375412,98.12080639],[4.53661902,0.03753946,98.12137727],[4.53661856,0.03753771,98.12194986],[4.53661811,0.03753597,98.12252388],[4.53661765,0.03753422,98.12309909],[4.53661719,0.03753247,98.12367522],[4.53661674,0.03753073,98.12425199],[4.53661628,0.03752898,98.12482915],[4.53661582,0.03752724,98.12540643],[4.53661536,0.03752549,98.12598371],[4.5366149,0.03752375,98.12656147],[4.53661444,0.037522,98.12714036],[4.53661398,0.03752026,98.127721],[4.53661352,0.03751851,98.12830402],[4.53661306,0.03751676,98.12889006],[4.5366126,0.03751502,98.12947976],[4.53661214,0.03751327,98.13007375],[4.53661169,0.03751153,98.13067266],[4.53661123,0.03750978,98.13127714],[4.53661077,0.03750804,98.13188782],[4.53661032,0.03750629,98.13250533],[4.53660987,0.03750454,98.13313031],[4.53660942,0.03750279,98.13376341],[4.53660897,0.03750105,98.13440498],[4.53660852,0.0374993,98.13505436],[4.53660808,0.03749755,98.13571059],[4.53660764,0.0374958,98.13637276],[4.53660719,0.03749405,98.1370399],[4.53660675,0.0374923,98.13771109],[4.53660631,0.03749055,98.13838539],[4.53660587,0.0374888,98.13906184],[4.53660543,0.03748705,98.13973953],[4.53660499,0.0374853,98.14041751],[4.53660454,0.03748355,98.14109484],[4.5366041,0.0374818,98.14177058],[4.53660365,0.03748005,98.14244383],[4.5366032,0.03747831,98.14311467],[4.53660275,0.03747656,98.14378411],[4.5366023,0.03747481,98.14445321],[4.53660185,0.03747306,98.14512305],[4.5366014,0.03747132,98.14579467],[4.53660095,0.03746957,98.14646915],[4.5366005,0.03746782,98.14714756],[4.53660005,0.03746607,98.14783094],[4.5365996,0.03746433,98.14852038],[4.53659915,0.03746258,98.14921693],[4.53659871,0.03746083,98.14992166],[4.53659827,0.03745908,98.15063562],[4.53659783,0.03745733,98.1513599],[4.53659739,0.03745558,98.15209553],[4.53659696,0.03745383,98.1528436],[4.53659653,0.03745207,98.15360516],[4.5365961,0.03745032,98.15438127],[4.53659568,0.03744856,98.15517293],[4.53659526,0.03744681,98.15597968],[4.53659485,0.03744505,98.15679962],[4.53659444,0.03744329,98.15763076],[4.53659403,0.03744154,98.15847114],[4.53659362,0.03743978,98.15931876],[4.53659322,0.03743802,98.16017166],[4.53659281,0.03743626,98.16102785],[4.5365924,0.0374345,98.16188536],[4.536592,0.03743274,98.16274222],[4.53659159,0.03743098,98.16359645],[4.53659118,0.03742923,98.16444608],[4.53659076,0.03742747,98.16528913],[4.53659034,0.03742571,98.16612364],[4.53658992,0.03742396,98.16694764],[4.5365895,0.03742221,98.16775969],[4.53658906,0.03742045,98.16856045],[4.53658863,0.0374187,98.16935107],[4.53658819,0.03741695,98.17013271],[4.53658774,0.0374152,98.17090652],[4.5365873,0.03741346,98.17167367],[4.53658685,0.03741171,98.1724353],[4.5365864,0.03740996,98.17319257],[4.53658594,0.03740822,98.17394634],[4.53658549,0.03740647,98.17469721],[4.53658503,0.03740472,98.17544578],[4.53658457,0.03740298,98.17619265],[4.53658411,0.03740123,98.1769384],[4.53658365,0.03739949,98.17768365],[4.53658319,0.03739774,98.17842897],[4.53658273,0.037396,98.17917497],[4.53658226,0.03739426,98.17992223],[4.5365818,0.03739251,98.18067134],[4.53658134,0.03739077,98.18142291],[4.53658087,0.03738902,98.18217752],[4.53658041,0.03738728,98.18293575],[4.53657995,0.03738553,98.18369821],[4.53657948,0.03738379,98.18446536],[4.53657902,0.03738204,98.18523726],[4.53657856,0.0373803,98.1860139],[4.5365781,0.03737855,98.18679522],[4.53657764,0.03737681,98.1875812],[4.53657718,0.03737506,98.18837182],[4.53657673,0.03737332,98.18916702],[4.53657627,0.03737157,98.18996679],[4.53657581,0.03736983,98.1907711],[4.53657536,0.03736808,98.19157989],[4.5365749,0.03736633,98.19239316],[4.53657444,0.03736459,98.19321086],[4.53657399,0.03736284,98.19403296],[4.53657354,0.0373611,98.19485942],[4.53657308,0.03735935,98.19569023],[4.53657263,0.0373576,98.19652533],[4.53657218,0.03735585,98.19736471],[4.53657172,0.03735411,98.19820832],[4.53657127,0.03735236,98.19905612],[4.53657082,0.03735061,98.19990791],[4.53657037,0.03734887,98.20076351],[4.53656992,0.03734712,98.2016227],[4.53656947,0.03734537,98.20248529],[4.53656902,0.03734362,98.20335108],[4.53656857,0.03734188,98.20421986],[4.53656811,0.03734013,98.20509143],[4.53656766,0.03733838,98.2059656],[4.53656721,0.03733663,98.20684216],[4.53656676,0.03733489,98.20772093],[4.53656631,0.03733314,98.20860169],[4.53656586,0.03733139,98.20948426],[4.5365654,0.03732964,98.21036843],[4.53656495,0.0373279,98.21125401],[4.5365645,0.03732615,98.21214081],[4.53656404,0.0373244,98.21302863],[4.53656359,0.03732266,98.21391728],[4.53656313,0.03732091,98.21480657],[4.53656268,0.03731916,98.2156963],[4.53656222,0.03731742,98.21658629],[4.53656176,0.03731567,98.21747634],[4.5365613,0.03731393,98.21836631],[4.53656084,0.03731218,98.21925626],[4.53656038,0.03731044,98.22014628],[4.53655991,0.03730869,98.22103647],[4.53655945,0.03730695,98.22192694],[4.53655898,0.0373052,98.22281778],[4.53655852,0.03730346,98.22370908],[4.53655805,0.03730172,98.22460095],[4.53655758,0.03729997,98.22549348],[4.53655711,0.03729823,98.22638678],[4.53655664,0.03729649,98.22728094],[4.53655617,0.03729474,98.22817606],[4.5365557,0.037293,98.22907224],[4.53655523,0.03729126,98.22996957],[4.53655476,0.03728952,98.23086816],[4.53655429,0.03728777,98.2317681],[4.53655381,0.03728603,98.23266949],[4.53655334,0.03728429,98.23357242],[4.53655286,0.03728255,98.234477],[4.53655239,0.03728081,98.23538332],[4.53655191,0.03727907,98.23629147],[4.53655143,0.03727732,98.23720156],[4.53655096,0.03727558,98.23811368],[4.53655048,0.03727384,98.23902792],[4.53655,0.0372721,98.23994439],[4.53654952,0.03727036,98.24086318],[4.53654904,0.03726862,98.24178438],[4.53654856,0.03726688,98.24270809],[4.53654809,0.03726514,98.2436344],[4.53654761,0.0372634,98.24456342],[4.53654713,0.03726166,98.24549522],[4.53654664,0.03725992,98.24642992],[4.53654616,0.03725818,98.24736759],[4.53654568,0.03725644,98.24830834],[4.5365452,0.0372547,98.24925226],[4.53654472,0.03725296,98.25019944],[4.53654424,0.03725122,98.25114997],[4.53654376,0.03724948,98.25210395],[4.53654328,0.03724774,98.25306146],[4.5365428,0.037246,98.2540226],[4.53654232,0.03724426,98.25498746],[4.53654184,0.03724252,98.25595613],[4.53654135,0.03724078,98.2569287],[4.53654087,0.03723904,98.25790526],[4.53654039,0.0372373,98.2588859],[4.53654006,0.03723607,98.2595775]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1000400","id":-4,"type":"none","predecessorId":-4}},{"geometry":{"coordinates":[[4.53685347,0.03822118,97.98609238],[4.53685294,0.03821945,97.98634425],[4.53685241,0.03821772,97.98659557],[4.53685189,0.03821598,97.98684633],[4.53685136,0.03821425,97.98709655],[4.53685083,0.03821252,97.98734623],[4.5368503,0.03821079,97.98759537],[4.53684977,0.03820906,97.98784398],[4.53684924,0.03820732,97.98809205],[4.53684871,0.03820559,97.98833959],[4.53684819,0.03820386,97.98858661],[4.53684766,0.03820213,97.98883311],[4.53684713,0.03820039,97.98907909],[4.5368466,0.03819866,97.98932456],[4.53684607,0.03819693,97.98956952],[4.53684554,0.0381952,97.98981397],[4.53684501,0.03819346,97.99005791],[4.53684449,0.03819173,97.99030136],[4.53684396,0.03819,97.99054431],[4.53684343,0.03818826,97.99078677],[4.5368429,0.03818653,97.99102875],[4.53684237,0.0381848,97.99127024],[4.53684185,0.03818306,97.99151124],[4.53684132,0.03818133,97.99175177],[4.53684079,0.0381796,97.99199183],[4.53684026,0.03817786,97.99223142],[4.53683973,0.03817613,97.99247054],[4.53683921,0.03817439,97.9927092],[4.53683868,0.03817266,97.99294741],[4.53683815,0.03817093,97.99318516],[4.53683762,0.03816919,97.99342249],[4.5368371,0.03816746,97.99365952],[4.53683657,0.03816572,97.99389634],[4.53683604,0.03816399,97.99413306],[4.53683551,0.03816225,97.99436977],[4.53683499,0.03816052,97.99460657],[4.53683446,0.03815878,97.99484356],[4.53683393,0.03815705,97.99508083],[4.53683341,0.03815531,97.99531849],[4.53683288,0.03815358,97.99555663],[4.53683236,0.03815184,97.99579534],[4.53683183,0.0381501,97.99603472],[4.53683131,0.03814837,97.99627488],[4.53683079,0.03814663,97.99651589],[4.53683026,0.03814489,97.99675786],[4.53682974,0.03814316,97.99700088],[4.53682922,0.03814142,97.99724505],[4.5368287,0.03813968,97.99749041],[4.53682818,0.03813794,97.99773703],[4.53682766,0.0381362,97.99798497],[4.53682714,0.03813447,97.99823428],[4.53682662,0.03813273,97.99848502],[4.53682611,0.038131,97.99873725],[4.53682559,0.03812926,97.99899101],[4.53682507,0.03812752,97.99924636],[4.53682456,0.03812578,97.99950337],[4.53682404,0.03812404,97.99976208],[4.53682353,0.0381223,98.00002254],[4.53682302,0.03812056,98.00028482],[4.5368225,0.03811882,98.00054897],[4.53682199,0.03811708,98.00081504],[4.53682148,0.03811534,98.00108307],[4.53682097,0.0381136,98.00135305],[4.53682046,0.03811186,98.00162488],[4.53681996,0.03811011,98.00189843],[4.53681945,0.03810837,98.00217362],[4.53681894,0.03810663,98.00245033],[4.53681844,0.03810489,98.00272845],[4.53681793,0.03810314,98.0030079],[4.53681743,0.0381014,98.00328855],[4.53681693,0.03809966,98.00357031],[4.53681642,0.03809792,98.00385308],[4.53681592,0.03809617,98.00413675],[4.53681542,0.03809443,98.00442122],[4.53681492,0.03809268,98.00470639],[4.53681442,0.03809094,98.00499216],[4.53681392,0.0380892,98.00527843],[4.53681342,0.03808745,98.0055651],[4.53681292,0.03808571,98.00585207],[4.53681242,0.03808396,98.00613924],[4.53681192,0.03808222,98.00642652],[4.53681142,0.03808048,98.0067138],[4.53681093,0.03807873,98.00700099],[4.53681043,0.03807699,98.00728799],[4.53680993,0.03807524,98.00757471],[4.53680943,0.0380735,98.00786105],[4.53680893,0.03807175,98.00814691],[4.53680844,0.03807001,98.00843219],[4.53680794,0.03806826,98.00871681],[4.53680744,0.03806652,98.00900067],[4.53680694,0.03806477,98.00928368],[4.53680645,0.03806303,98.00956574],[4.53680595,0.03806128,98.00984675],[4.53680545,0.03805954,98.01012664],[4.53680495,0.0380578,98.01040529],[4.53680445,0.03805605,98.01068263],[4.53680396,0.03805431,98.01095856],[4.53680346,0.03805256,98.01123299],[4.53680296,0.03805082,98.01150582],[4.53680246,0.03804907,98.01177698],[4.53680196,0.03804733,98.01204639],[4.53680146,0.03804559,98.0123141],[4.53680096,0.03804384,98.01258019],[4.53680046,0.0380421,98.01284473],[4.53679996,0.03804036,98.01310779],[4.53679946,0.03803861,98.01336945],[4.53679896,0.03803687,98.01362978],[4.53679845,0.03803513,98.01388885],[4.53679795,0.03803338,98.01414673],[4.53679745,0.03803164,98.01440351],[4.53679695,0.0380299,98.01465929],[4.53679645,0.03802815,98.0149142],[4.53679594,0.03802641,98.01516834],[4.53679544,0.03802467,98.01542185],[4.53679494,0.03802292,98.01567484],[4.53679444,0.03802118,98.01592742],[4.53679393,0.03801944,98.01617972],[4.53679343,0.03801769,98.01643184],[4.53679293,0.03801595,98.0166839],[4.53679243,0.03801421,98.01693602],[4.53679193,0.03801246,98.01718832],[4.53679143,0.03801072,98.0174409],[4.53679093,0.03800898,98.01769387],[4.53679043,0.03800723,98.01794737],[4.53678993,0.03800549,98.01820149],[4.53678943,0.03800375,98.01845635],[4.53678893,0.038002,98.01871208],[4.53678843,0.03800026,98.01896884],[4.53678793,0.03799851,98.01922668],[4.53678743,0.03799677,98.01948563],[4.53678694,0.03799503,98.01974568],[4.53678644,0.03799328,98.02000683],[4.53678594,0.03799154,98.02026907],[4.53678545,0.03798979,98.02053241],[4.53678495,0.03798805,98.02079686],[4.53678446,0.0379863,98.0210624],[4.53678397,0.03798455,98.02132904],[4.53678347,0.03798281,98.02159677],[4.53678298,0.03798106,98.02186561],[4.53678249,0.03797932,98.02213555],[4.536782,0.03797757,98.02240659],[4.5367815,0.03797582,98.02267872],[4.53678101,0.03797408,98.02295196],[4.53678052,0.03797233,98.0232263],[4.53678003,0.03797058,98.02350174],[4.53677955,0.03796884,98.02377828],[4.53677906,0.03796709,98.02405592],[4.53677857,0.03796534,98.02433466],[4.53677808,0.0379636,98.02461451],[4.5367776,0.03796185,98.02489547],[4.53677711,0.0379601,98.02517752],[4.53677662,0.03795835,98.02546069],[4.53677614,0.03795661,98.02574496],[4.53677565,0.03795486,98.02603034],[4.53677517,0.03795311,98.02631684],[4.53677469,0.03795136,98.02660446],[4.5367742,0.03794961,98.02689319],[4.53677372,0.03794786,98.02718295],[4.53677324,0.03794611,98.02747365],[4.53677276,0.03794437,98.0277652],[4.53677228,0.03794262,98.0280575],[4.53677179,0.03794087,98.02835046],[4.53677131,0.03793912,98.02864399],[4.53677083,0.03793737,98.028938],[4.53677035,0.03793562,98.02923238],[4.53676987,0.03793387,98.02952706],[4.53676939,0.03793212,98.02982195],[4.53676891,0.03793037,98.030117],[4.53676843,0.03792862,98.03041216],[4.53676796,0.03792687,98.03070741],[4.53676748,0.03792512,98.03100271],[4.536767,0.03792337,98.031298],[4.53676652,0.03792162,98.03159327],[4.53676604,0.03791987,98.03188846],[4.53676556,0.03791812,98.03218351],[4.53676508,0.03791637,98.03247838],[4.5367646,0.03791462,98.03277297],[4.53676412,0.03791288,98.03306723],[4.53676364,0.03791113,98.03336107],[4.53676316,0.03790938,98.03365446],[4.53676269,0.03790763,98.03394735],[4.53676221,0.03790588,98.03423975],[4.53676173,0.03790413,98.03453164],[4.53676125,0.03790238,98.03482302],[4.53676077,0.03790063,98.03511387],[4.53676029,0.03789888,98.03540418],[4.53675981,0.03789713,98.03569395],[4.53675933,0.03789538,98.03598316],[4.53675885,0.03789363,98.0362718],[4.53675837,0.03789188,98.03655986],[4.53675789,0.03789013,98.03684733],[4.5367574,0.03788838,98.03713421],[4.53675692,0.03788663,98.03742047],[4.53675644,0.03788488,98.03770612],[4.53675596,0.03788314,98.03799113],[4.53675548,0.03788139,98.0382755],[4.536755,0.03787964,98.03855922],[4.53675452,0.03787789,98.03884227],[4.53675403,0.03787614,98.03912465],[4.53675356,0.03787443,98.03940635],[4.53675308,0.03787269,98.03968734],[4.5367526,0.03787094,98.03996763],[4.53675212,0.03786919,98.04024719],[4.53675163,0.03786744,98.040526],[4.53675115,0.0378657,98.04080402],[4.53675066,0.03786395,98.04108123],[4.53675018,0.0378622,98.04135759],[4.5367497,0.03786046,98.04163308],[4.53674921,0.03785871,98.04190773],[4.53674873,0.03785696,98.04218188],[4.53674824,0.03785522,98.0424559],[4.53674776,0.03785347,98.04273021],[4.53674727,0.03785172,98.04300519],[4.53674679,0.03784998,98.04328124],[4.5367463,0.03784823,98.04355876],[4.53674582,0.03784648,98.04383817],[4.53674534,0.03784474,98.04411986],[4.53674486,0.03784299,98.04440425],[4.53674438,0.03784124,98.04469175],[4.5367439,0.03783949,98.04498276],[4.53674342,0.03783775,98.04527769],[4.53674294,0.037836,98.04557695],[4.53674247,0.03783425,98.04588094],[4.536742,0.0378325,98.04619008],[4.53674152,0.03783075,98.04650466],[4.53674105,0.037829,98.04682455],[4.53674059,0.03782725,98.0471495],[4.53674012,0.0378255,98.04747927],[4.53673966,0.03782375,98.04781361],[4.53673919,0.037822,98.04815228],[4.53673873,0.03782025,98.04849503],[4.53673827,0.0378185,98.04884162],[4.53673781,0.03781674,98.0491918],[4.53673735,0.03781499,98.04954533],[4.5367369,0.03781324,98.04990196],[4.53673644,0.03781149,98.05026144],[4.53673598,0.03780973,98.05062354],[4.53673553,0.03780798,98.050988],[4.53673507,0.03780623,98.05135459],[4.53673462,0.03780447,98.05172305],[4.53673417,0.03780272,98.05209313],[4.53673371,0.03780097,98.05246461],[4.53673326,0.03779921,98.05283722],[4.53673281,0.03779746,98.05321072],[4.53673236,0.03779571,98.05358486],[4.5367319,0.03779395,98.05395942],[4.53673145,0.0377922,98.05433417],[4.536731,0.03779045,98.05470888],[4.53673055,0.0377887,98.05508335],[4.53673009,0.03778694,98.05545735],[4.53672964,0.03778519,98.05583068],[4.53672918,0.03778344,98.05620312],[4.53672873,0.03778169,98.05657451],[4.53672827,0.03777993,98.05694494],[4.53672782,0.03777818,98.05731453],[4.53672736,0.03777643,98.05768343],[4.5367269,0.03777468,98.05805178],[4.53672645,0.03777293,98.0584197],[4.53672599,0.03777118,98.05878734],[4.53672553,0.03776943,98.05915484],[4.53672507,0.03776768,98.05952233],[4.53672462,0.03776593,98.05988995],[4.53672416,0.03776418,98.06025784],[4.5367237,0.03776243,98.06062614],[4.53672324,0.03776068,98.06099498],[4.53672278,0.03775892,98.0613645],[4.53672232,0.03775717,98.06173485],[4.53672187,0.03775542,98.06210615],[4.53672141,0.03775367,98.06247855],[4.53672095,0.03775192,98.06285219],[4.53672049,0.03775017,98.0632272],[4.53672003,0.03774842,98.06360372],[4.53671958,0.03774667,98.0639819],[4.53671912,0.03774492,98.06436188],[4.53671866,0.03774317,98.06474376],[4.53671821,0.03774142,98.06512756],[4.53671775,0.03773967,98.06551329],[4.5367173,0.03773792,98.06590091],[4.53671684,0.03773617,98.06629043],[4.53671639,0.03773442,98.06668181],[4.53671593,0.03773267,98.06707504],[4.53671548,0.03773092,98.06747009],[4.53671502,0.03772917,98.06786695],[4.53671457,0.03772742,98.0682656],[4.53671412,0.03772567,98.068666],[4.53671366,0.03772392,98.06906815],[4.53671321,0.03772217,98.06947202],[4.53671276,0.03772042,98.06987759],[4.53671231,0.03771867,98.07028483],[4.53671186,0.03771692,98.07069374],[4.5367114,0.03771517,98.07110428],[4.53671095,0.03771341,98.07151644],[4.5367105,0.03771166,98.0719302],[4.53671005,0.03770991,98.07234553],[4.5367096,0.03770816,98.07276241],[4.53670915,0.03770641,98.07318082],[4.5367087,0.03770466,98.07360074],[4.53670825,0.03770291,98.07402215],[4.5367078,0.03770116,98.07444503],[4.53670735,0.03769941,98.07486935],[4.5367069,0.03769766,98.0752951],[4.53670645,0.03769591,98.07572225],[4.536706,0.03769416,98.07615076],[4.53670555,0.03769241,98.0765806],[4.5367051,0.03769066,98.07701174],[4.53670465,0.03768891,98.07744414],[4.5367042,0.03768716,98.07787778],[4.53670375,0.03768541,98.07831262],[4.5367033,0.03768366,98.07874862],[4.53670285,0.03768191,98.07918576],[4.5367024,0.03768016,98.07962399],[4.53670195,0.03767841,98.08006329],[4.5367015,0.03767666,98.08050363],[4.53670105,0.03767491,98.08094496],[4.5367006,0.03767316,98.08138726],[4.53670015,0.03767141,98.0818305],[4.5366997,0.03766966,98.08227466],[4.53669925,0.03766791,98.0827197],[4.5366988,0.03766616,98.08316562],[4.53669835,0.03766442,98.08361237],[4.5366979,0.03766267,98.08405994],[4.53669744,0.03766092,98.0845083],[4.53669699,0.03765917,98.08495742],[4.53669654,0.03765742,98.08540729],[4.53669609,0.03765567,98.08585787],[4.53669564,0.03765392,98.08630914],[4.53669518,0.03765218,98.08676107],[4.53669473,0.03765043,98.08721364],[4.53669428,0.03764868,98.08766683],[4.53669383,0.03764693,98.0881206],[4.53669337,0.03764518,98.08857494],[4.53669292,0.03764344,98.08902981],[4.53669246,0.03764169,98.08948519],[4.53669201,0.03763994,98.08994106],[4.53669155,0.0376382,98.09039739],[4.5366911,0.03763645,98.09085416],[4.53669064,0.0376347,98.09131133],[4.53669019,0.03763296,98.09176888],[4.53668973,0.03763121,98.09222679],[4.53668927,0.03762946,98.09268503],[4.53668882,0.03762772,98.09314358],[4.53668836,0.03762597,98.0936024],[4.5366879,0.03762423,98.09406148],[4.53668744,0.03762248,98.09452078],[4.53668698,0.03762074,98.09498029],[4.53668652,0.03761899,98.09543997],[4.53668606,0.03761725,98.09589979],[4.5366856,0.0376155,98.09635974],[4.53668514,0.03761376,98.09681979],[4.53668468,0.03761201,98.0972799],[4.53668422,0.03761027,98.09774007],[4.53668375,0.03760852,98.09820032],[4.53668329,0.03760678,98.09866078],[4.53668282,0.03760504,98.09912155],[4.53668236,0.03760329,98.09958276],[4.5366819,0.03760155,98.10004453],[4.53668143,0.03759981,98.10050695],[4.53668096,0.03759806,98.10097014],[4.5366805,0.03759632,98.10143423],[4.53668003,0.03759458,98.10189931],[4.53667957,0.03759284,98.1023655],[4.5366791,0.03759109,98.10283291],[4.53667863,0.03758935,98.10330166],[4.53667817,0.03758761,98.10377187],[4.5366777,0.03758586,98.10424363],[4.53667723,0.03758412,98.10471707],[4.53667676,0.03758238,98.1051923],[4.5366763,0.03758064,98.10566944],[4.53667583,0.03757889,98.10614859],[4.53667536,0.03757715,98.10662988],[4.5366749,0.03757541,98.10711341],[4.53667443,0.03757366,98.10759931],[4.53667396,0.03757192,98.10808768],[4.5366735,0.03757018,98.10857864],[4.53667303,0.03756844,98.10907231],[4.53667257,0.03756669,98.1095688],[4.5366721,0.03756495,98.11006822],[4.53667164,0.03756321,98.1105707],[4.53667117,0.03756146,98.11107634],[4.53667071,0.03755972,98.11158527],[4.53667024,0.03755798,98.1120976],[4.53666978,0.03755623,98.11261344],[4.53666932,0.03755449,98.11313292],[4.53666886,0.03755274,98.11365614],[4.5366684,0.037551,98.11418322],[4.53666794,0.03754926,98.11471429],[4.53666748,0.03754751,98.11524945],[4.53666702,0.03754577,98.11578884],[4.53666656,0.03754402,98.11633249],[4.5366661,0.03754228,98.11688022],[4.53666564,0.03754053,98.11743177],[4.53666519,0.03753879,98.11798686],[4.53666473,0.03753704,98.11854524],[4.53666427,0.03753529,98.11910665],[4.53666382,0.03753355,98.11967082],[4.53666336,0.0375318,98.12023749],[4.53666291,0.03753006,98.12080639],[4.53666245,0.03752831,98.12137727],[4.536662,0.03752657,98.12194986],[4.53666154,0.03752482,98.12252388],[4.53666109,0.03752308,98.12309909],[4.53666063,0.03752133,98.12367522],[4.53666017,0.03751959,98.12425199],[4.53665971,0.03751784,98.12482915],[4.53665926,0.0375161,98.12540643],[4.5366588,0.03751435,98.12598371],[4.53665834,0.03751261,98.12656147],[4.53665788,0.03751086,98.12714036],[4.53665742,0.03750912,98.127721],[4.53665696,0.03750737,98.12830402],[4.5366565,0.03750563,98.12889006],[4.53665604,0.03750388,98.12947976],[4.53665558,0.03750214,98.13007375],[4.53665512,0.03750039,98.13067266],[4.53665467,0.03749865,98.13127714],[4.53665421,0.0374969,98.13188782],[4.53665376,0.03749516,98.13250533],[4.53665331,0.03749341,98.13313031],[4.53665286,0.03749166,98.13376341],[4.53665241,0.03748992,98.13440498],[4.53665196,0.03748817,98.13505436],[4.53665152,0.03748642,98.13571059],[4.53665108,0.03748467,98.13637276],[4.53665063,0.03748292,98.1370399],[4.53665019,0.03748117,98.13771109],[4.53664975,0.03747942,98.13838539],[4.53664931,0.03747767,98.13906184],[4.53664887,0.03747592,98.13973953],[4.53664843,0.03747418,98.14041751],[4.53664798,0.03747243,98.14109484],[4.53664754,0.03747068,98.14177058],[4.53664709,0.03746893,98.14244383],[4.53664664,0.03746718,98.14311467],[4.53664619,0.03746544,98.14378411],[4.53664574,0.03746369,98.14445321],[4.53664529,0.03746194,98.14512305],[4.53664484,0.0374602,98.14579467],[4.53664439,0.03745845,98.14646915],[4.53664394,0.0374567,98.14714756],[4.53664349,0.03745496,98.14783094],[4.53664304,0.03745321,98.14852038],[4.5366426,0.03745146,98.14921693],[4.53664215,0.03744971,98.14992166],[4.53664171,0.03744796,98.15063562],[4.53664127,0.03744621,98.1513599],[4.53664083,0.03744446,98.15209553],[4.5366404,0.03744271,98.1528436],[4.53663997,0.03744096,98.15360516],[4.53663954,0.03743921,98.15438127],[4.53663912,0.03743745,98.15517293],[4.53663871,0.0374357,98.15597968],[4.53663829,0.03743394,98.15679962],[4.53663788,0.03743218,98.15763076],[4.53663747,0.03743043,98.15847114],[4.53663707,0.03742867,98.15931876],[4.53663666,0.03742691,98.16017166],[4.53663626,0.03742515,98.16102785],[4.53663585,0.03742339,98.16188536],[4.53663544,0.03742164,98.16274222],[4.53663503,0.03741988,98.16359645],[4.53663462,0.03741812,98.16444608],[4.53663421,0.03741637,98.16528913],[4.53663379,0.03741461,98.16612364],[4.53663337,0.03741286,98.16694764],[4.53663294,0.0374111,98.16775969],[4.53663251,0.03740935,98.16856045],[4.53663207,0.0374076,98.16935107],[4.53663163,0.03740585,98.17013271],[4.53663119,0.0374041,98.17090652],[4.53663074,0.03740236,98.17167367],[4.5366303,0.03740061,98.1724353],[4.53662984,0.03739886,98.17319257],[4.53662939,0.03739712,98.17394634],[4.53662894,0.03739537,98.17469721],[4.53662848,0.03739363,98.17544578],[4.53662802,0.03739188,98.17619265],[4.53662756,0.03739014,98.1769384],[4.5366271,0.03738839,98.17768365],[4.53662664,0.03738665,98.17842897],[4.53662617,0.03738491,98.17917497],[4.53662571,0.03738316,98.17992223],[4.53662525,0.03738142,98.18067134],[4.53662478,0.03737967,98.18142291],[4.53662432,0.03737793,98.18217752],[4.53662386,0.03737619,98.18293575],[4.5366234,0.03737444,98.18369821],[4.53662293,0.0373727,98.18446536],[4.53662247,0.03737095,98.18523726],[4.53662201,0.03736921,98.1860139],[4.53662155,0.03736747,98.18679522],[4.53662109,0.03736572,98.1875812],[4.53662064,0.03736398,98.18837182],[4.53662018,0.03736223,98.18916702],[4.53661972,0.03736049,98.18996679],[4.53661926,0.03735874,98.1907711],[4.53661881,0.037357,98.19157989],[4.53661835,0.03735525,98.19239316],[4.5366179,0.0373535,98.19321086],[4.53661744,0.03735176,98.19403296],[4.53661699,0.03735001,98.19485942],[4.53661653,0.03734827,98.19569023],[4.53661608,0.03734652,98.19652533],[4.53661563,0.03734477,98.19736471],[4.53661518,0.03734303,98.19820832],[4.53661472,0.03734128,98.19905612],[4.53661427,0.03733954,98.19990791],[4.53661382,0.03733779,98.20076351],[4.53661337,0.03733604,98.2016227],[4.53661292,0.03733429,98.20248529],[4.53661247,0.03733255,98.20335108],[4.53661202,0.0373308,98.20421986],[4.53661157,0.03732905,98.20509143],[4.53661112,0.03732731,98.2059656],[4.53661067,0.03732556,98.20684216],[4.53661022,0.03732381,98.20772093],[4.53660976,0.03732207,98.20860169],[4.53660931,0.03732032,98.20948426],[4.53660886,0.03731857,98.21036843],[4.53660841,0.03731683,98.21125401],[4.53660795,0.03731508,98.21214081],[4.5366075,0.03731334,98.21302863],[4.53660704,0.03731159,98.21391728],[4.53660659,0.03730984,98.21480657],[4.53660613,0.0373081,98.2156963],[4.53660567,0.03730635,98.21658629],[4.53660522,0.03730461,98.21747634],[4.53660476,0.03730286,98.21836631],[4.53660429,0.03730112,98.21925626],[4.53660383,0.03729938,98.22014628],[4.53660337,0.03729763,98.22103647],[4.53660291,0.03729589,98.22192694],[4.53660244,0.03729414,98.22281778],[4.53660198,0.0372924,98.22370908],[4.53660151,0.03729066,98.22460095],[4.53660104,0.03728892,98.22549348],[4.53660057,0.03728717,98.22638678],[4.5366001,0.03728543,98.22728094],[4.53659963,0.03728369,98.22817606],[4.53659916,0.03728195,98.22907224],[4.53659869,0.03728021,98.22996957],[4.53659822,0.03727846,98.23086816],[4.53659775,0.03727672,98.2317681],[4.53659727,0.03727498,98.23266949],[4.5365968,0.03727324,98.23357242],[4.53659632,0.0372715,98.234477],[4.53659585,0.03726976,98.23538332],[4.53659537,0.03726802,98.23629147],[4.53659489,0.03726628,98.23720156],[4.53659442,0.03726454,98.23811368],[4.53659394,0.0372628,98.23902792],[4.53659346,0.03726106,98.23994439],[4.53659298,0.03725932,98.24086318],[4.53659251,0.03725758,98.24178438],[4.53659203,0.03725584,98.24270809],[4.53659155,0.0372541,98.2436344],[4.53659107,0.03725236,98.24456342],[4.53659059,0.03725062,98.24549522],[4.53659011,0.03724888,98.24642992],[4.53658963,0.03724714,98.24736759],[4.53658915,0.0372454,98.24830834],[4.53658867,0.03724366,98.24925226],[4.53658819,0.03724192,98.25019944],[4.5365877,0.03724018,98.25114997],[4.53658722,0.03723844,98.25210395],[4.53658674,0.0372367,98.25306146],[4.53658626,0.03723496,98.2540226],[4.53658578,0.03723322,98.25498746],[4.5365853,0.03723148,98.25595613],[4.53658482,0.03722975,98.2569287],[4.53658434,0.03722801,98.25790526],[4.53658386,0.03722627,98.2588859],[4.53658352,0.03722504,98.2595775]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000400","id":-3,"type":"shoulder","predecessorId":-3}},{"geometry":{"coordinates":[[4.53685701,0.03822005,97.99809997],[4.53685648,0.03821832,97.99834652],[4.53685596,0.03821659,97.99859252],[4.53685543,0.03821486,97.99883797],[4.5368549,0.03821313,97.99908283],[4.53685438,0.03821139,97.99932711],[4.53685385,0.03820966,97.99957079],[4.53685333,0.03820793,97.99981385],[4.5368528,0.0382062,98.00005628],[4.53685227,0.03820446,98.00029808],[4.53685175,0.03820273,98.00053922],[4.53685122,0.038201,98.00077969],[4.5368507,0.03819927,98.00101948],[4.53685017,0.03819753,98.00125858],[4.53684964,0.0381958,98.00149698],[4.53684912,0.03819407,98.00173466],[4.53684859,0.03819233,98.00197162],[4.53684806,0.0381906,98.00220783],[4.53684754,0.03818887,98.00244329],[4.53684701,0.03818714,98.00267799],[4.53684649,0.0381854,98.00291191],[4.53684596,0.03818367,98.00314504],[4.53684543,0.03818194,98.00337737],[4.53684491,0.0381802,98.00360889],[4.53684438,0.03817847,98.0038396],[4.53684385,0.03817674,98.00406946],[4.53684333,0.038175,98.00429848],[4.5368428,0.03817327,98.00452665],[4.53684227,0.03817153,98.00475395],[4.53684175,0.0381698,98.00498037],[4.53684122,0.03816807,98.00520593],[4.53684069,0.03816633,98.00543074],[4.53684017,0.0381646,98.00565487],[4.53683964,0.03816286,98.00587842],[4.53683911,0.03816113,98.00610146],[4.53683859,0.0381594,98.00632409],[4.53683806,0.03815766,98.00654637],[4.53683753,0.03815593,98.00676841],[4.53683701,0.03815419,98.00699027],[4.53683648,0.03815246,98.00721204],[4.53683595,0.03815072,98.0074338],[4.53683543,0.03814899,98.00765565],[4.5368349,0.03814725,98.00787765],[4.53683438,0.03814552,98.00809989],[4.53683385,0.03814378,98.00832245],[4.53683333,0.03814204,98.00854541],[4.53683281,0.03814031,98.00876885],[4.53683228,0.03813857,98.00899286],[4.53683176,0.03813684,98.00921751],[4.53683124,0.0381351,98.00944288],[4.53683071,0.03813336,98.00966905],[4.53683019,0.03813162,98.00989609],[4.53682968,0.0381299,98.0101241],[4.53682916,0.03812816,98.01035314],[4.53682864,0.03812643,98.01058329],[4.53682812,0.03812469,98.01081463],[4.5368276,0.03812295,98.01104724],[4.53682708,0.03812121,98.0112812],[4.53682656,0.03811947,98.01151657],[4.53682605,0.03811774,98.01175344],[4.53682553,0.038116,98.01199188],[4.53682502,0.03811426,98.01223196],[4.5368245,0.03811252,98.01247368],[4.53682399,0.03811078,98.01271696],[4.53682348,0.03810904,98.01296171],[4.53682297,0.0381073,98.01320784],[4.53682245,0.03810556,98.01345528],[4.53682194,0.03810382,98.01370394],[4.53682143,0.03810208,98.01395374],[4.53682092,0.03810034,98.01420459],[4.53682042,0.0380986,98.01445641],[4.53681991,0.03809686,98.01470912],[4.5368194,0.03809512,98.01496263],[4.53681889,0.03809338,98.01521688],[4.53681839,0.03809163,98.01547177],[4.53681788,0.03808989,98.01572722],[4.53681737,0.03808815,98.01598316],[4.53681687,0.03808641,98.01623951],[4.53681636,0.03808467,98.01649618],[4.53681586,0.03808293,98.01675311],[4.53681535,0.03808118,98.0170102],[4.53681485,0.03807944,98.01726738],[4.53681435,0.0380777,98.01752458],[4.53681384,0.03807596,98.01778171],[4.53681334,0.03807422,98.01803871],[4.53681284,0.03807247,98.01829548],[4.53681233,0.03807073,98.01855197],[4.53681183,0.03806899,98.01880808],[4.53681133,0.03806725,98.01906375],[4.53681082,0.03806551,98.0193189],[4.53681032,0.03806376,98.01957345],[4.53680982,0.03806202,98.01982734],[4.53680931,0.03806028,98.02008048],[4.53680881,0.03805854,98.02033281],[4.53680831,0.03805679,98.02058424],[4.5368078,0.03805505,98.02083471],[4.5368073,0.03805331,98.02108414],[4.5368068,0.03805157,98.02133246],[4.53680629,0.03804983,98.0215796],[4.53680579,0.03804809,98.02182548],[4.53680528,0.03804634,98.02207007],[4.53680478,0.0380446,98.02231342],[4.53680427,0.03804286,98.02255562],[4.53680377,0.03804112,98.02279678],[4.53680327,0.03803938,98.02303698],[4.53680276,0.03803764,98.02327631],[4.53680225,0.03803589,98.02351486],[4.53680175,0.03803415,98.02375273],[4.53680124,0.03803241,98.02399],[4.53680074,0.03803067,98.02422676],[4.53680023,0.03802893,98.0244631],[4.53679973,0.03802719,98.02469913],[4.53679922,0.03802545,98.02493493],[4.53679872,0.0380237,98.0251706],[4.53679821,0.03802196,98.02540622],[4.53679771,0.03802022,98.02564189],[4.5367972,0.03801848,98.02587769],[4.5367967,0.03801674,98.02611373],[4.5367962,0.038015,98.02635009],[4.53679569,0.03801325,98.02658686],[4.53679519,0.03801151,98.02682413],[4.53679469,0.03800977,98.027062],[4.53679418,0.03800803,98.02730054],[4.53679368,0.03800628,98.02753985],[4.53679318,0.03800454,98.02778002],[4.53679268,0.0380028,98.02802114],[4.53679218,0.03800106,98.02826331],[4.53679168,0.03799931,98.02850666],[4.53679118,0.03799757,98.02875124],[4.53679068,0.03799583,98.02899703],[4.53679018,0.03799408,98.029244],[4.53678968,0.03799234,98.02949214],[4.53678918,0.0379906,98.02974141],[4.53678869,0.03798885,98.0299918],[4.53678819,0.03798711,98.03024328],[4.53678769,0.03798537,98.03049583],[4.5367872,0.03798362,98.03074942],[4.5367867,0.03798188,98.03100403],[4.53678621,0.03798013,98.03125964],[4.53678571,0.03797839,98.03151623],[4.53678522,0.03797664,98.03177376],[4.53678473,0.0379749,98.03203223],[4.53678423,0.03797315,98.0322916],[4.53678374,0.03797141,98.03255186],[4.53678325,0.03796966,98.03281297],[4.53678276,0.03796792,98.03307493],[4.53678227,0.03796617,98.0333377],[4.53678178,0.03796443,98.03360126],[4.53678129,0.03796268,98.0338656],[4.5367808,0.03796093,98.03413068],[4.53678031,0.03795919,98.0343965],[4.53677982,0.03795744,98.03466302],[4.53677933,0.0379557,98.03493022],[4.53677884,0.03795395,98.03519808],[4.53677835,0.0379522,98.0354666],[4.53677786,0.03795046,98.03573573],[4.53677737,0.03794871,98.03600548],[4.53677689,0.03794696,98.03627581],[4.5367764,0.03794522,98.03654671],[4.53677591,0.03794347,98.03681816],[4.53677543,0.03794172,98.03709014],[4.53677494,0.03793998,98.03736262],[4.53677445,0.03793823,98.0376356],[4.53677397,0.03793648,98.03790906],[4.53677348,0.03793474,98.03818296],[4.536773,0.03793299,98.0384573],[4.53677251,0.03793124,98.03873207],[4.53677203,0.03792949,98.03900728],[4.53677154,0.03792775,98.03928298],[4.53677106,0.037926,98.03955919],[4.53677057,0.03792425,98.03983595],[4.53677009,0.0379225,98.0401133],[4.5367696,0.03792076,98.04039126],[4.53676912,0.03791901,98.04066988],[4.53676864,0.03791726,98.04094916],[4.53676816,0.03791551,98.04122911],[4.53676767,0.03791377,98.04150973],[4.53676719,0.03791202,98.04179103],[4.53676671,0.03791027,98.04207301],[4.53676623,0.03790852,98.04235566],[4.53676574,0.03790677,98.042639],[4.53676526,0.03790502,98.04292303],[4.53676478,0.03790328,98.04320773],[4.5367643,0.03790153,98.04349313],[4.53676382,0.03789978,98.04377922],[4.53676334,0.03789803,98.044066],[4.53676286,0.03789628,98.04435348],[4.53676238,0.03789453,98.04464166],[4.5367619,0.03789278,98.04493054],[4.53676142,0.03789103,98.04522012],[4.53676094,0.03788929,98.0455104],[4.53676046,0.03788754,98.04580139],[4.53675999,0.03788579,98.04609309],[4.53675951,0.03788404,98.0463855],[4.53675903,0.03788229,98.04667863],[4.53675855,0.03788054,98.04697247],[4.53675808,0.03787879,98.04726702],[4.5367576,0.03787704,98.0475623],[4.53675712,0.03787529,98.0478583],[4.53675666,0.03787358,98.04815502],[4.53675618,0.03787183,98.04845247],[4.53675571,0.03787009,98.04875065],[4.53675523,0.03786834,98.04904955],[4.53675475,0.03786659,98.04934916],[4.53675428,0.03786484,98.04964947],[4.5367538,0.03786309,98.04995044],[4.53675333,0.03786134,98.05025208],[4.53675286,0.03785959,98.05055436],[4.53675238,0.03785784,98.05085726],[4.53675191,0.03785609,98.05116078],[4.53675143,0.03785435,98.05146488],[4.53675096,0.0378526,98.05176957],[4.53675049,0.03785085,98.05207482],[4.53675001,0.0378491,98.05238061],[4.53674954,0.03784735,98.05268694],[4.53674906,0.0378456,98.05299381],[4.53674859,0.03784385,98.05330122],[4.53674812,0.0378421,98.05360915],[4.53674765,0.03784036,98.05391762],[4.53674717,0.03783861,98.0542266],[4.5367467,0.03783686,98.05453611],[4.53674623,0.03783511,98.05484613],[4.53674575,0.03783336,98.05515666],[4.53674528,0.03783161,98.0554677],[4.53674481,0.03782986,98.05577925],[4.53674434,0.03782812,98.0560913],[4.53674387,0.03782637,98.05640385],[4.53674339,0.03782462,98.05671689],[4.53674292,0.03782287,98.05703042],[4.53674245,0.03782112,98.05734443],[4.53674198,0.03781937,98.05765893],[4.53674151,0.03781763,98.05797391],[4.53674103,0.03781588,98.05828936],[4.53674056,0.03781413,98.05860529],[4.53674009,0.03781238,98.05892168],[4.53673962,0.03781063,98.05923853],[4.53673915,0.03780889,98.05955584],[4.53673867,0.03780714,98.05987361],[4.5367382,0.03780539,98.06019182],[4.53673773,0.03780364,98.06051049],[4.53673726,0.03780189,98.06082959],[4.53673679,0.03780015,98.06114914],[4.53673632,0.0377984,98.06146911],[4.53673584,0.03779665,98.06178952],[4.53673537,0.0377949,98.06211036],[4.5367349,0.03779316,98.06243164],[4.53673443,0.03779141,98.06275336],[4.53673396,0.03778966,98.06307556],[4.53673348,0.03778791,98.06339827],[4.53673301,0.03778617,98.06372151],[4.53673254,0.03778442,98.06404532],[4.53673207,0.03778267,98.06436972],[4.5367316,0.03778093,98.06469474],[4.53673112,0.03777918,98.06502042],[4.53673065,0.03777743,98.06534677],[4.53673018,0.03777568,98.06567383],[4.53672971,0.03777394,98.06600163],[4.53672924,0.03777219,98.0663302],[4.53672877,0.03777044,98.06665957],[4.53672829,0.0377687,98.06698976],[4.53672782,0.03776695,98.0673208],[4.53672735,0.0377652,98.06765273],[4.53672688,0.03776346,98.06798557],[4.53672641,0.03776171,98.06831935],[4.53672594,0.03775996,98.06865411],[4.53672547,0.03775822,98.06898986],[4.536725,0.03775647,98.06932665],[4.53672452,0.03775472,98.06966449],[4.53672405,0.03775298,98.07000343],[4.53672358,0.03775123,98.07034348],[4.53672311,0.03774948,98.07068468],[4.53672264,0.03774774,98.07102705],[4.53672217,0.03774599,98.07137064],[4.5367217,0.03774424,98.07171546],[4.53672123,0.0377425,98.07206154],[4.53672076,0.03774075,98.07240892],[4.53672029,0.03773901,98.07275763],[4.53671982,0.03773726,98.07310769],[4.53671935,0.03773551,98.07345912],[4.53671889,0.03773377,98.07381194],[4.53671842,0.03773202,98.07416616],[4.53671795,0.03773027,98.07452181],[4.53671748,0.03772853,98.0748789],[4.53671701,0.03772678,98.07523745],[4.53671654,0.03772503,98.07559747],[4.53671608,0.03772329,98.07595899],[4.53671561,0.03772154,98.07632202],[4.53671514,0.0377198,98.07668657],[4.53671467,0.03771805,98.07705267],[4.53671421,0.0377163,98.07742033],[4.53671374,0.03771456,98.07778957],[4.53671327,0.03771281,98.07816041],[4.53671281,0.03771106,98.07853286],[4.53671234,0.03770932,98.07890695],[4.53671187,0.03770757,98.07928268],[4.53671141,0.03770582,98.07966008],[4.53671094,0.03770408,98.08003917],[4.53671048,0.03770233,98.08041996],[4.53671001,0.03770059,98.08080247],[4.53670955,0.03769884,98.08118672],[4.53670908,0.03769709,98.08157273],[4.53670862,0.03769535,98.0819605],[4.53670815,0.0376936,98.08235005],[4.53670769,0.03769185,98.08274138],[4.53670723,0.03769011,98.0831345],[4.53670676,0.03768836,98.08352942],[4.5367063,0.03768661,98.08392613],[4.53670584,0.03768487,98.08432466],[4.53670537,0.03768312,98.084725],[4.53670491,0.03768138,98.08512716],[4.53670445,0.03767963,98.08553114],[4.53670399,0.03767788,98.08593697],[4.53670352,0.03767614,98.08634463],[4.53670306,0.03767439,98.08675415],[4.5367026,0.03767264,98.08716552],[4.53670214,0.0376709,98.08757875],[4.53670168,0.03766915,98.08799384],[4.53670122,0.0376674,98.08841082],[4.53670076,0.03766566,98.08882968],[4.53670029,0.03766391,98.08925042],[4.53669983,0.03766217,98.08967306],[4.53669937,0.03766042,98.09009761],[4.53669891,0.03765867,98.09052406],[4.53669845,0.03765693,98.09095243],[4.53669799,0.03765518,98.09138272],[4.53669753,0.03765343,98.09181495],[4.53669708,0.03765169,98.09224911],[4.53669662,0.03764994,98.09268521],[4.53669616,0.0376482,98.09312326],[4.5366957,0.03764645,98.09356328],[4.53669524,0.0376447,98.09400525],[4.53669478,0.03764296,98.0944492],[4.53669432,0.03764121,98.09489513],[4.53669387,0.03763946,98.09534304],[4.53669341,0.03763772,98.09579295],[4.53669295,0.03763597,98.09624485],[4.53669249,0.03763423,98.09669877],[4.53669203,0.03763248,98.09715469],[4.53669158,0.03763073,98.09761264],[4.53669112,0.03762899,98.09807261],[4.53669066,0.03762724,98.09853461],[4.53669021,0.0376255,98.09899866],[4.53668975,0.03762375,98.09946476],[4.53668929,0.037622,98.09993291],[4.53668884,0.03762026,98.10040313],[4.53668838,0.03761851,98.10087542],[4.53668792,0.03761677,98.10134978],[4.53668747,0.03761502,98.10182622],[4.53668701,0.03761327,98.10230476],[4.53668656,0.03761153,98.1027854],[4.5366861,0.03760978,98.10326814],[4.53668565,0.03760804,98.10375299],[4.53668519,0.03760629,98.10423996],[4.53668474,0.03760455,98.10472906],[4.53668428,0.0376028,98.1052203],[4.53668383,0.03760105,98.10571367],[4.53668337,0.03759931,98.10620918],[4.53668292,0.03759756,98.10670684],[4.53668246,0.03759582,98.10720665],[4.53668201,0.03759407,98.10770861],[4.53668155,0.03759232,98.10821272],[4.5366811,0.03759058,98.108719],[4.53668065,0.03758883,98.10922743],[4.53668019,0.03758709,98.10973802],[4.53667974,0.03758534,98.11025078],[4.53667928,0.03758359,98.1107657],[4.53667883,0.03758185,98.1112828],[4.53667838,0.0375801,98.11180208],[4.53667792,0.03757835,98.11232353],[4.53667747,0.03757661,98.11284716],[4.53667702,0.03757486,98.11337297],[4.53667656,0.03757312,98.11390097],[4.53667611,0.03757137,98.11443115],[4.53667566,0.03756962,98.11496353],[4.53667521,0.03756788,98.11549811],[4.53667475,0.03756613,98.11603488],[4.5366743,0.03756438,98.11657385],[4.53667385,0.03756264,98.11711502],[4.5366734,0.03756089,98.1176584],[4.53667294,0.03755915,98.11820399],[4.53667249,0.0375574,98.11875179],[4.53667204,0.03755565,98.1193018],[4.53667159,0.03755391,98.11985404],[4.53667113,0.03755216,98.12040849],[4.53667068,0.03755041,98.12096516],[4.53667023,0.03754867,98.12152406],[4.53666978,0.03754692,98.1220852],[4.53666933,0.03754517,98.12264857],[4.53666888,0.03754343,98.12321418],[4.53666842,0.03754168,98.12378204],[4.53666797,0.03753993,98.12435215],[4.53666752,0.03753819,98.12492451],[4.53666707,0.03753644,98.12549914],[4.53666662,0.03753469,98.12607604],[4.53666617,0.03753295,98.12665521],[4.53666572,0.0375312,98.12723666],[4.53666527,0.03752945,98.12782039],[4.53666482,0.03752771,98.12840641],[4.53666436,0.03752596,98.12899473],[4.53666391,0.03752421,98.12958534],[4.53666346,0.03752247,98.13017826],[4.53666301,0.03752072,98.13077349],[4.53666256,0.03751897,98.13137103],[4.53666211,0.03751723,98.13197089],[4.53666166,0.03751548,98.13257308],[4.53666121,0.03751373,98.1331776],[4.53666076,0.03751198,98.13378445],[4.53666031,0.03751024,98.13439365],[4.53665986,0.03750849,98.13500519],[4.53665941,0.03750674,98.13561908],[4.53665896,0.037505,98.13623533],[4.53665851,0.03750325,98.13685394],[4.53665806,0.0375015,98.13747492],[4.53665761,0.03749976,98.13809827],[4.53665716,0.03749801,98.138724],[4.53665671,0.03749626,98.13935211],[4.53665626,0.03749451,98.13998261],[4.53665581,0.03749277,98.1406155],[4.53665536,0.03749102,98.1412508],[4.53665491,0.03748927,98.14188849],[4.53665446,0.03748753,98.1425286],[4.53665401,0.03748578,98.14317112],[4.53665357,0.03748403,98.14381606],[4.53665312,0.03748229,98.14446342],[4.53665267,0.03748054,98.14511321],[4.53665222,0.03747879,98.14576544],[4.53665177,0.03747704,98.14642012],[4.53665132,0.0374753,98.14707725],[4.53665087,0.03747355,98.14773684],[4.53665042,0.0374718,98.1483989],[4.53664997,0.03747005,98.14906344],[4.53664953,0.03746831,98.14973047],[4.53664908,0.03746656,98.1504],[4.53664863,0.03746481,98.15107204],[4.53664818,0.03746307,98.15174659],[4.53664773,0.03746132,98.15242367],[4.53664728,0.03745957,98.15310328],[4.53664684,0.03745782,98.15378544],[4.53664639,0.03745608,98.15447015],[4.53664594,0.03745433,98.15515742],[4.53664549,0.03745258,98.15584726],[4.53664504,0.03745083,98.15653968],[4.5366446,0.03744909,98.15723469],[4.53664415,0.03744734,98.1579323],[4.5366437,0.03744559,98.15863251],[4.53664325,0.03744384,98.15933534],[4.5366428,0.0374421,98.16004079],[4.53664236,0.03744035,98.16074887],[4.53664191,0.0374386,98.1614596],[4.53664146,0.03743685,98.16217298],[4.53664102,0.03743511,98.16288902],[4.53664057,0.03743336,98.16360772],[4.53664012,0.03743161,98.16432906],[4.53663967,0.03742986,98.16505303],[4.53663923,0.03742812,98.16577962],[4.53663878,0.03742637,98.16650882],[4.53663833,0.03742462,98.16724061],[4.53663789,0.03742287,98.16797497],[4.53663744,0.03742113,98.16871191],[4.53663699,0.03741938,98.16945139],[4.53663655,0.03741763,98.17019341],[4.5366361,0.03741588,98.17093796],[4.53663565,0.03741414,98.17168502],[4.53663521,0.03741239,98.17243457],[4.53663476,0.03741064,98.17318662],[4.53663431,0.03740889,98.17394113],[4.53663387,0.03740714,98.17469812],[4.53663342,0.0374054,98.17545756],[4.53663297,0.03740365,98.17621945],[4.53663252,0.0374019,98.17698377],[4.53663208,0.03740015,98.17775054],[4.53663163,0.03739841,98.17851972],[4.53663118,0.03739666,98.1792913],[4.53663074,0.03739491,98.18006525],[4.53663029,0.03739316,98.18084155],[4.53662984,0.03739142,98.18162016],[4.53662939,0.03738967,98.18240107],[4.53662895,0.03738792,98.18318424],[4.5366285,0.03738617,98.18396966],[4.53662805,0.03738443,98.18475728],[4.5366276,0.03738268,98.1855471],[4.53662715,0.03738093,98.18633908],[4.53662671,0.03737918,98.1871332],[4.53662626,0.03737744,98.18792943],[4.53662581,0.03737569,98.18872774],[4.53662536,0.03737394,98.18952811],[4.53662491,0.03737219,98.19033052],[4.53662446,0.03737045,98.19113496],[4.53662401,0.0373687,98.19194141],[4.53662356,0.03736695,98.19274988],[4.53662311,0.03736521,98.19356037],[4.53662266,0.03736346,98.19437288],[4.53662221,0.03736171,98.19518741],[4.53662176,0.03735997,98.19600396],[4.53662131,0.03735822,98.19682252],[4.53662086,0.03735647,98.1976431],[4.53662041,0.03735473,98.19846569],[4.53661995,0.03735298,98.1992903],[4.5366195,0.03735123,98.20011692],[4.53661905,0.03734949,98.20094556],[4.5366186,0.03734774,98.20177622],[4.53661814,0.03734599,98.20260889],[4.53661769,0.03734425,98.20344357],[4.53661724,0.0373425,98.20428027],[4.53661678,0.03734076,98.20511898],[4.53661633,0.03733901,98.20595971],[4.53661588,0.03733726,98.20680245],[4.53661542,0.03733552,98.20764722],[4.53661497,0.03733377,98.20849399],[4.53661451,0.03733203,98.20934279],[4.53661406,0.03733028,98.2101936],[4.5366136,0.03732854,98.21104644],[4.53661315,0.03732679,98.21190129],[4.53661269,0.03732505,98.21275817],[4.53661223,0.0373233,98.21361707],[4.53661178,0.03732155,98.21447799],[4.53661132,0.03731981,98.21534094],[4.53661086,0.03731806,98.21620592],[4.5366104,0.03731632,98.21707292],[4.53660995,0.03731457,98.21794195],[4.53660949,0.03731283,98.21881302],[4.53660903,0.03731108,98.21968612],[4.53660857,0.03730934,98.22056126],[4.53660811,0.03730759,98.22143843],[4.53660765,0.03730585,98.22231765],[4.53660719,0.03730411,98.22319891],[4.53660673,0.03730236,98.22408222],[4.53660627,0.03730062,98.22496757],[4.53660581,0.03729887,98.22585497],[4.53660535,0.03729713,98.22674443],[4.53660488,0.03729538,98.22763595],[4.53660442,0.03729364,98.22852953],[4.53660396,0.0372919,98.22942517],[4.5366035,0.03729015,98.23032288],[4.53660303,0.03728841,98.23122266],[4.53660257,0.03728667,98.23212451],[4.53660211,0.03728492,98.23302844],[4.53660164,0.03728318,98.23393446],[4.53660118,0.03728143,98.23484256],[4.53660071,0.03727969,98.23575275],[4.53660025,0.03727795,98.23666504],[4.53659978,0.0372762,98.23757943],[4.53659932,0.03727446,98.23849593],[4.53659885,0.03727272,98.23941453],[4.53659838,0.03727098,98.24033525],[4.53659791,0.03726923,98.24125809],[4.53659745,0.03726749,98.24218306],[4.53659698,0.03726575,98.24311015],[4.53659651,0.03726401,98.24403939],[4.53659604,0.03726226,98.24497076],[4.53659557,0.03726052,98.24590429],[4.5365951,0.03725878,98.24683997],[4.53659463,0.03725704,98.24777781],[4.53659416,0.03725529,98.24871783],[4.53659369,0.03725355,98.24966001],[4.53659322,0.03725181,98.25060438],[4.53659275,0.03725007,98.25155094],[4.53659228,0.03724833,98.2524997],[4.5365918,0.03724659,98.25345065],[4.53659133,0.03724485,98.25440383],[4.53659086,0.0372431,98.25535922],[4.53659038,0.03724136,98.25631683],[4.53658991,0.03723962,98.25727669],[4.53658943,0.03723788,98.25823879],[4.53658896,0.03723614,98.25920314],[4.53658848,0.0372344,98.26016975],[4.53658801,0.03723266,98.26113864],[4.53658753,0.03723092,98.26210981],[4.53658705,0.03722918,98.26308326],[4.53658657,0.03722744,98.26405902],[4.5365861,0.0372257,98.26503708],[4.53658576,0.03722448,98.26572577]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000400","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-2}},{"geometry":{"coordinates":[[4.5368877,0.03821029,98.10224157],[4.53688717,0.03820856,98.1023772],[4.53688665,0.03820683,98.10251329],[4.53688613,0.0382051,98.10264976],[4.5368856,0.03820337,98.10278652],[4.53688508,0.03820165,98.10292348],[4.53688456,0.03819992,98.10306055],[4.53688404,0.03819819,98.10319765],[4.53688351,0.03819646,98.1033347],[4.53688299,0.03819473,98.1034716],[4.53688247,0.038193,98.10360828],[4.53688195,0.03819127,98.10374464],[4.53688143,0.03818954,98.10388061],[4.53688091,0.03818782,98.1040161],[4.53688039,0.03818609,98.10415103],[4.53687986,0.03818436,98.10428531],[4.53687934,0.03818263,98.10441886],[4.53687882,0.0381809,98.10455161],[4.5368783,0.03817917,98.10468347],[4.53687778,0.03817744,98.10481435],[4.53687726,0.03817571,98.10494418],[4.53687674,0.03817398,98.10507289],[4.53687622,0.03817225,98.10520038],[4.5368757,0.03817052,98.10532658],[4.53687517,0.03816879,98.10545142],[4.53687465,0.03816707,98.10557481],[4.53687413,0.03816534,98.10569667],[4.53687361,0.03816361,98.10581694],[4.53687309,0.03816188,98.10593552],[4.53687256,0.03816015,98.10605235],[4.53687204,0.03815842,98.10616739],[4.53687152,0.03815669,98.10628071],[4.53687099,0.03815496,98.10639243],[4.53687047,0.03815324,98.10650266],[4.53686994,0.03815151,98.10661153],[4.53686942,0.03814978,98.10671914],[4.53686889,0.03814805,98.10682561],[4.53686837,0.03814632,98.10693105],[4.53686784,0.03814459,98.10703557],[4.53686732,0.03814286,98.1071393],[4.5368668,0.03814114,98.10724233],[4.53686627,0.03813941,98.10734478],[4.53686575,0.03813768,98.10744676],[4.53686522,0.03813595,98.1075484],[4.5368647,0.03813422,98.10764978],[4.53686417,0.03813249,98.10775104],[4.53686365,0.03813076,98.10785226],[4.53686312,0.03812903,98.10795358],[4.5368626,0.0381273,98.10805509],[4.53686208,0.03812557,98.1081569],[4.53686155,0.03812385,98.10825912],[4.53686103,0.03812212,98.10836187],[4.53686051,0.0381204,98.10846523],[4.53685999,0.03811867,98.10856934],[4.53685947,0.03811694,98.10867428],[4.53685895,0.03811521,98.10878016],[4.53685843,0.03811348,98.1088871],[4.53685791,0.03811175,98.10899519],[4.53685739,0.03811002,98.10910455],[4.53685687,0.03810829,98.10921526],[4.53685635,0.03810656,98.10932745],[4.53685584,0.03810483,98.10944121],[4.53685532,0.0381031,98.10955655],[4.5368548,0.03810137,98.10967344],[4.53685429,0.03809964,98.1097918],[4.53685377,0.0380979,98.10991159],[4.53685326,0.03809617,98.11003274],[4.53685274,0.03809444,98.11015521],[4.53685223,0.03809271,98.11027893],[4.53685172,0.03809098,98.11040385],[4.53685121,0.03808924,98.11052992],[4.53685069,0.03808751,98.11065708],[4.53685018,0.03808578,98.11078527],[4.53684967,0.03808405,98.11091444],[4.53684916,0.03808231,98.11104454],[4.53684865,0.03808058,98.11117551],[4.53684814,0.03807885,98.11130731],[4.53684763,0.03807711,98.11143987],[4.53684712,0.03807538,98.11157314],[4.53684662,0.03807365,98.11170708],[4.53684611,0.03807191,98.11184163],[4.5368456,0.03807018,98.11197673],[4.53684509,0.03806845,98.11211235],[4.53684458,0.03806671,98.11224842],[4.53684408,0.03806498,98.11238489],[4.53684357,0.03806324,98.11252172],[4.53684306,0.03806151,98.11265885],[4.53684256,0.03805978,98.11279623],[4.53684205,0.03805804,98.11293381],[4.53684154,0.03805631,98.11307155],[4.53684103,0.03805457,98.1132094],[4.53684053,0.03805284,98.11334729],[4.53684002,0.03805111,98.1134852],[4.53683952,0.03804937,98.11362306],[4.53683901,0.03804764,98.11376083],[4.5368385,0.0380459,98.11389846],[4.536838,0.03804417,98.1140359],[4.53683749,0.03804244,98.11417311],[4.53683698,0.0380407,98.11431004],[4.53683647,0.03803897,98.11444663],[4.53683597,0.03803723,98.11458288],[4.53683546,0.0380355,98.11471886],[4.53683495,0.03803377,98.1148547],[4.53683445,0.03803203,98.11499052],[4.53683394,0.0380303,98.11512642],[4.53683343,0.03802857,98.11526253],[4.53683292,0.03802683,98.11539895],[4.53683242,0.0380251,98.11553581],[4.53683191,0.03802336,98.11567322],[4.5368314,0.03802163,98.11581129],[4.5368309,0.0380199,98.11595014],[4.53683039,0.03801816,98.11608989],[4.53682988,0.03801643,98.11623065],[4.53682938,0.03801469,98.11637254],[4.53682887,0.03801296,98.11651568],[4.53682837,0.03801122,98.11666017],[4.53682786,0.03800949,98.11680615],[4.53682736,0.03800775,98.11695372],[4.53682685,0.03800602,98.11710299],[4.53682635,0.03800428,98.11725409],[4.53682585,0.03800255,98.11740712],[4.53682534,0.03800081,98.11756219],[4.53682484,0.03799908,98.11771943],[4.53682434,0.03799734,98.11787894],[4.53682384,0.03799561,98.11804083],[4.53682334,0.03799387,98.11820523],[4.53682284,0.03799213,98.11837223],[4.53682235,0.0379904,98.11854194],[4.53682185,0.03798866,98.11871442],[4.53682135,0.03798692,98.1188896],[4.53682086,0.03798519,98.11906747],[4.53682036,0.03798345,98.11924797],[4.53681987,0.03798171,98.11943106],[4.53681937,0.03797997,98.11961672],[4.53681888,0.03797823,98.11980489],[4.53681839,0.0379765,98.11999555],[4.5368179,0.03797476,98.12018864],[4.53681741,0.03797302,98.12038414],[4.53681691,0.03797128,98.12058201],[4.53681643,0.03796954,98.1207822],[4.53681594,0.0379678,98.12098468],[4.53681545,0.03796606,98.12118942],[4.53681496,0.03796432,98.12139636],[4.53681447,0.03796258,98.12160549],[4.53681399,0.03796084,98.12181676],[4.5368135,0.0379591,98.12203013],[4.53681301,0.03795736,98.12224556],[4.53681253,0.03795562,98.12246303],[4.53681204,0.03795388,98.12268249],[4.53681156,0.03795214,98.12290391],[4.53681107,0.0379504,98.12312724],[4.53681059,0.03794866,98.12335247],[4.53681011,0.03794692,98.12357954],[4.53680963,0.03794518,98.12380841],[4.53680914,0.03794344,98.12403903],[4.53680866,0.03794169,98.12427135],[4.53680818,0.03793995,98.12450534],[4.5368077,0.03793821,98.12474093],[4.53680722,0.03793647,98.12497809],[4.53680673,0.03793473,98.12521676],[4.53680625,0.03793299,98.12545691],[4.53680577,0.03793124,98.12569848],[4.53680529,0.0379295,98.12594143],[4.53680481,0.03792776,98.12618571],[4.53680433,0.03792602,98.12643128],[4.53680385,0.03792428,98.12667808],[4.53680337,0.03792253,98.12692609],[4.5368029,0.03792079,98.12717529],[4.53680242,0.03791905,98.1274257],[4.53680194,0.03791731,98.12767732],[4.53680146,0.03791557,98.12793017],[4.53680098,0.03791382,98.12818423],[4.5368005,0.03791208,98.12843953],[4.53680002,0.03791034,98.12869606],[4.53679954,0.0379086,98.12895384],[4.53679907,0.03790685,98.12921287],[4.53679859,0.03790511,98.12947315],[4.53679811,0.03790337,98.1297347],[4.53679763,0.03790163,98.12999751],[4.53679716,0.03789988,98.1302616],[4.53679668,0.03789814,98.13052697],[4.5367962,0.0378964,98.13079362],[4.53679573,0.03789465,98.13106156],[4.53679525,0.03789291,98.13133081],[4.53679477,0.03789117,98.13160135],[4.5367943,0.03788942,98.13187321],[4.53679382,0.03788768,98.13214638],[4.53679335,0.03788594,98.13242087],[4.53679287,0.03788419,98.13269669],[4.53679239,0.03788245,98.13297384],[4.53679192,0.03788071,98.13325232],[4.53679144,0.03787896,98.13353215],[4.53679097,0.03787722,98.13381333],[4.53679049,0.03787548,98.13409587],[4.53679002,0.03787373,98.13437976],[4.53678955,0.03787199,98.13466502],[4.53678907,0.03787025,98.13495165],[4.5367886,0.0378685,98.13523966],[4.53678812,0.03786676,98.13552905],[4.53678766,0.03786506,98.13581983],[4.53678719,0.03786331,98.136112],[4.53678672,0.03786157,98.13640557],[4.53678625,0.03785983,98.13670053],[4.53678577,0.03785808,98.13699688],[4.5367853,0.03785634,98.1372946],[4.53678483,0.0378546,98.13759368],[4.53678436,0.03785285,98.13789411],[4.53678389,0.03785111,98.13819587],[4.53678342,0.03784937,98.13849894],[4.53678295,0.03784762,98.13880332],[4.53678247,0.03784588,98.139109],[4.536782,0.03784414,98.13941595],[4.53678153,0.03784239,98.13972418],[4.53678106,0.03784065,98.14003365],[4.53678059,0.0378389,98.14034438],[4.53678012,0.03783716,98.14065636],[4.53677965,0.03783542,98.1409696],[4.53677918,0.03783367,98.14128409],[4.53677871,0.03783193,98.14159983],[4.53677824,0.03783019,98.14191682],[4.53677777,0.03782844,98.14223506],[4.5367773,0.0378267,98.14255455],[4.53677683,0.03782496,98.1428753],[4.53677637,0.03782321,98.14319729],[4.5367759,0.03782147,98.14352053],[4.53677543,0.03781972,98.14384503],[4.53677496,0.03781798,98.14417077],[4.53677449,0.03781624,98.14449776],[4.53677402,0.03781449,98.144826],[4.53677355,0.03781275,98.14515548],[4.53677308,0.037811,98.14548621],[4.53677262,0.03780926,98.14581819],[4.53677215,0.03780752,98.14615142],[4.53677168,0.03780577,98.14648589],[4.53677121,0.03780403,98.1468216],[4.53677074,0.03780228,98.14715856],[4.53677028,0.03780054,98.14749676],[4.53676981,0.0377988,98.1478362],[4.53676934,0.03779705,98.14817689],[4.53676887,0.03779531,98.14851882],[4.53676841,0.03779357,98.14886199],[4.53676794,0.03779182,98.14920639],[4.53676747,0.03779008,98.14955204],[4.536767,0.03778833,98.14989893],[4.53676654,0.03778659,98.15024706],[4.53676607,0.03778485,98.15059644],[4.5367656,0.0377831,98.15094708],[4.53676514,0.03778136,98.15129901],[4.53676467,0.03777961,98.15165224],[4.5367642,0.03777787,98.15200678],[4.53676374,0.03777613,98.15236264],[4.53676327,0.03777438,98.15271985],[4.5367628,0.03777264,98.15307841],[4.53676234,0.03777089,98.15343834],[4.53676187,0.03776915,98.15379966],[4.53676141,0.0377674,98.15416238],[4.53676094,0.03776566,98.15452651],[4.53676047,0.03776392,98.15489208],[4.53676001,0.03776217,98.15525909],[4.53675954,0.03776043,98.15562756],[4.53675908,0.03775868,98.1559975],[4.53675861,0.03775694,98.15636894],[4.53675815,0.0377552,98.15674188],[4.53675768,0.03775345,98.15711634],[4.53675722,0.03775171,98.15749233],[4.53675675,0.03774996,98.15786988],[4.53675629,0.03774822,98.15824899],[4.53675582,0.03774647,98.15862968],[4.53675536,0.03774473,98.15901197],[4.5367549,0.03774299,98.15939586],[4.53675443,0.03774124,98.15978138],[4.53675397,0.0377395,98.16016855],[4.53675351,0.03773775,98.16055737],[4.53675304,0.03773601,98.16094786],[4.53675258,0.03773426,98.16134003],[4.53675212,0.03773252,98.16173391],[4.53675165,0.03773077,98.16212951],[4.53675119,0.03772903,98.16252683],[4.53675073,0.03772728,98.16292589],[4.53675027,0.03772554,98.16332669],[4.53674981,0.03772379,98.16372923],[4.53674934,0.03772205,98.16413351],[4.53674888,0.0377203,98.16453953],[4.53674842,0.03771856,98.16494731],[4.53674796,0.03771682,98.16535684],[4.5367475,0.03771507,98.16576812],[4.53674704,0.03771333,98.16618115],[4.53674658,0.03771158,98.16659595],[4.53674612,0.03770984,98.16701251],[4.53674566,0.03770809,98.16743084],[4.5367452,0.03770635,98.16785093],[4.53674474,0.0377046,98.1682728],[4.53674428,0.03770285,98.16869644],[4.53674382,0.03770111,98.16912186],[4.53674336,0.03769936,98.16954905],[4.5367429,0.03769762,98.16997803],[4.53674244,0.03769587,98.1704088],[4.53674198,0.03769413,98.17084135],[4.53674152,0.03769238,98.1712757],[4.53674106,0.03769064,98.17171184],[4.5367406,0.03768889,98.17214978],[4.53674015,0.03768715,98.17258951],[4.53673969,0.0376854,98.17303106],[4.53673923,0.03768366,98.17347441],[4.53673877,0.03768191,98.17391956],[4.53673832,0.03768017,98.17436654],[4.53673786,0.03767842,98.17481532],[4.5367374,0.03767667,98.17526593],[4.53673694,0.03767493,98.17571836],[4.53673649,0.03767318,98.17617261],[4.53673603,0.03767144,98.17662869],[4.53673557,0.03766969,98.1770866],[4.53673512,0.03766795,98.17754635],[4.53673466,0.0376662,98.17800793],[4.53673421,0.03766446,98.17847136],[4.53673375,0.03766271,98.17893663],[4.53673329,0.03766096,98.17940375],[4.53673284,0.03765922,98.17987271],[4.53673238,0.03765747,98.18034353],[4.53673193,0.03765573,98.18081621],[4.53673147,0.03765398,98.18129075],[4.53673102,0.03765223,98.18176715],[4.53673056,0.03765049,98.18224541],[4.53673011,0.03764874,98.18272555],[4.53672965,0.037647,98.18320756],[4.5367292,0.03764525,98.18369144],[4.53672874,0.03764351,98.18417721],[4.53672829,0.03764176,98.18466486],[4.53672784,0.03764001,98.18515439],[4.53672738,0.03763827,98.18564581],[4.53672693,0.03763652,98.18613913],[4.53672648,0.03763478,98.18663434],[4.53672602,0.03763303,98.18713146],[4.53672557,0.03763128,98.18763047],[4.53672512,0.03762954,98.1881314],[4.53672466,0.03762779,98.18863423],[4.53672421,0.03762605,98.18913897],[4.53672376,0.0376243,98.18964564],[4.5367233,0.03762255,98.19015422],[4.53672285,0.03762081,98.19066472],[4.5367224,0.03761906,98.19117716],[4.53672195,0.03761731,98.19169152],[4.5367215,0.03761557,98.19220782],[4.53672104,0.03761382,98.19272605],[4.53672059,0.03761208,98.19324623],[4.53672014,0.03761033,98.19376835],[4.53671969,0.03760858,98.19429242],[4.53671924,0.03760684,98.19481844],[4.53671879,0.03760509,98.19534641],[4.53671834,0.03760334,98.19587635],[4.53671788,0.0376016,98.19640824],[4.53671743,0.03759985,98.1969421],[4.53671698,0.03759811,98.19747793],[4.53671653,0.03759636,98.19801574],[4.53671608,0.03759461,98.19855552],[4.53671563,0.03759287,98.19909728],[4.53671518,0.03759112,98.19964101],[4.53671473,0.03758937,98.20018672],[4.53671428,0.03758763,98.20073441],[4.53671383,0.03758588,98.20128408],[4.53671338,0.03758413,98.20183572],[4.53671293,0.03758239,98.20238934],[4.53671248,0.03758064,98.20294493],[4.53671203,0.0375789,98.20350249],[4.53671158,0.03757715,98.20406202],[4.53671113,0.0375754,98.20462353],[4.53671068,0.03757366,98.20518701],[4.53671023,0.03757191,98.20575246],[4.53670979,0.03757016,98.20631988],[4.53670934,0.03756842,98.20688927],[4.53670889,0.03756667,98.20746062],[4.53670844,0.03756492,98.20803395],[4.53670799,0.03756317,98.20860924],[4.53670754,0.03756143,98.2091865],[4.53670709,0.03755968,98.20976572],[4.53670665,0.03755793,98.21034691],[4.5367062,0.03755619,98.21093007],[4.53670575,0.03755444,98.21151518],[4.5367053,0.03755269,98.21210227],[4.53670485,0.03755095,98.21269131],[4.53670441,0.0375492,98.21328231],[4.53670396,0.03754745,98.21387528],[4.53670351,0.0375457,98.21447021],[4.53670306,0.03754396,98.21506709],[4.53670262,0.03754221,98.21566594],[4.53670217,0.03754046,98.21626674],[4.53670172,0.03753872,98.21686951],[4.53670127,0.03753697,98.21747423],[4.53670083,0.03753522,98.21808092],[4.53670038,0.03753347,98.21868958],[4.53669993,0.03753173,98.2193002],[4.53669949,0.03752998,98.21991278],[4.53669904,0.03752823,98.22052734],[4.53669859,0.03752649,98.22114387],[4.53669815,0.03752474,98.22176237],[4.5366977,0.03752299,98.22238285],[4.53669726,0.03752124,98.2230053],[4.53669681,0.0375195,98.22362974],[4.53669636,0.03751775,98.22425615],[4.53669592,0.037516,98.22488454],[4.53669547,0.03751425,98.22551491],[4.53669503,0.03751251,98.22614727],[4.53669458,0.03751076,98.22678162],[4.53669414,0.03750901,98.22741795],[4.53669369,0.03750726,98.22805628],[4.53669325,0.03750551,98.22869659],[4.5366928,0.03750377,98.2293389],[4.53669236,0.03750202,98.2299832],[4.53669191,0.03750027,98.23062949],[4.53669147,0.03749852,98.23127778],[4.53669102,0.03749678,98.23192808],[4.53669058,0.03749503,98.23258037],[4.53669013,0.03749328,98.23323466],[4.53668969,0.03749153,98.23389096],[4.53668925,0.03748978,98.23454926],[4.5366888,0.03748804,98.23520957],[4.53668836,0.03748629,98.23587189],[4.53668791,0.03748454,98.23653622],[4.53668747,0.03748279,98.23720256],[4.53668703,0.03748104,98.23787091],[4.53668658,0.0374793,98.23854128],[4.53668614,0.03747755,98.23921366],[4.5366857,0.0374758,98.23988806],[4.53668525,0.03747405,98.24056448],[4.53668481,0.0374723,98.24124292],[4.53668437,0.03747056,98.24192338],[4.53668393,0.03746881,98.24260587],[4.53668348,0.03746706,98.24329038],[4.53668304,0.03746531,98.24397691],[4.5366826,0.03746356,98.24466548],[4.53668216,0.03746181,98.24535607],[4.53668171,0.03746007,98.24604869],[4.53668127,0.03745832,98.24674335],[4.53668083,0.03745657,98.24744004],[4.53668039,0.03745482,98.24813877],[4.53667995,0.03745307,98.24883953],[4.5366795,0.03745132,98.24954232],[4.53667906,0.03744957,98.25024716],[4.53667862,0.03744783,98.25095404],[4.53667818,0.03744608,98.25166296],[4.53667774,0.03744433,98.25237392],[4.5366773,0.03744258,98.25308693],[4.53667686,0.03744083,98.25380199],[4.53667642,0.03743908,98.25451909],[4.53667598,0.03743733,98.25523824],[4.53667554,0.03743559,98.25595943],[4.5366751,0.03743384,98.25668268],[4.53667466,0.03743209,98.25740799],[4.53667422,0.03743034,98.25813534],[4.53667378,0.03742859,98.25886475],[4.53667334,0.03742684,98.25959622],[4.5366729,0.03742509,98.26032973],[4.53667246,0.03742334,98.26106526],[4.53667202,0.03742159,98.2618028],[4.53667158,0.03741984,98.26254232],[4.53667114,0.0374181,98.26328381],[4.5366707,0.03741635,98.26402723],[4.53667026,0.0374146,98.26477257],[4.53666982,0.03741285,98.26551981],[4.53666938,0.0374111,98.26626893],[4.53666894,0.03740935,98.2670199],[4.5366685,0.0374076,98.26777271],[4.53666806,0.03740585,98.26852733],[4.53666762,0.0374041,98.26928375],[4.53666719,0.03740235,98.27004193],[4.53666675,0.0374006,98.27080187],[4.53666631,0.03739885,98.27156354],[4.53666587,0.03739711,98.27232693],[4.53666543,0.03739536,98.27309202],[4.53666499,0.03739361,98.2738588],[4.53666455,0.03739186,98.27462725],[4.53666411,0.03739011,98.27539735],[4.53666368,0.03738836,98.2761691],[4.53666324,0.03738661,98.27694246],[4.5366628,0.03738486,98.27771742],[4.53666236,0.03738311,98.27849398],[4.53666192,0.03738136,98.27927211],[4.53666148,0.03737961,98.2800518],[4.53666104,0.03737786,98.28083302],[4.5366606,0.03737612,98.28161577],[4.53666016,0.03737437,98.28240003],[4.53665972,0.03737262,98.28318578],[4.53665928,0.03737087,98.28397301],[4.53665884,0.03736912,98.2847617],[4.5366584,0.03736737,98.28555183],[4.53665796,0.03736562,98.28634339],[4.53665752,0.03736387,98.28713637],[4.53665708,0.03736212,98.28793075],[4.53665664,0.03736037,98.28872656],[4.5366562,0.03735862,98.28952379],[4.53665576,0.03735687,98.29032245],[4.53665532,0.03735513,98.29112256],[4.53665488,0.03735338,98.29192412],[4.53665444,0.03735163,98.29272715],[4.536654,0.03734988,98.29353164],[4.53665356,0.03734813,98.29433761],[4.53665312,0.03734638,98.29514506],[4.53665268,0.03734463,98.29595401],[4.53665224,0.03734288,98.29676446],[4.5366518,0.03734113,98.29757643],[4.53665136,0.03733939,98.29838992],[4.53665092,0.03733764,98.29920493],[4.53665048,0.03733589,98.30002148],[4.53665004,0.03733414,98.30083958],[4.53664959,0.03733239,98.30165924],[4.53664915,0.03733064,98.30248045],[4.53664871,0.03732889,98.30330324],[4.53664827,0.03732715,98.30412761],[4.53664783,0.0373254,98.30495357],[4.53664739,0.03732365,98.30578113],[4.53664695,0.0373219,98.30661029],[4.53664651,0.03732015,98.30744106],[4.53664606,0.0373184,98.30827346],[4.53664562,0.03731665,98.30910749],[4.53664518,0.0373149,98.30994316],[4.53664474,0.03731316,98.31078048],[4.5366443,0.03731141,98.31161946],[4.53664386,0.03730966,98.3124601],[4.53664342,0.03730791,98.31330242],[4.53664297,0.03730616,98.31414642],[4.53664253,0.03730441,98.31499211],[4.53664209,0.03730266,98.31583949],[4.53664165,0.03730092,98.31668859],[4.53664121,0.03729917,98.3175394],[4.53664077,0.03729742,98.31839194],[4.53664032,0.03729567,98.31924621],[4.53663988,0.03729392,98.32010222],[4.53663944,0.03729217,98.32095998],[4.536639,0.03729042,98.3218195],[4.53663856,0.03728868,98.32268078],[4.53663812,0.03728693,98.32354384],[4.53663768,0.03728518,98.32440868],[4.53663723,0.03728343,98.32527531],[4.53663679,0.03728168,98.32614374],[4.53663635,0.03727993,98.32701397],[4.53663591,0.03727818,98.32788602],[4.53663547,0.03727643,98.3287599],[4.53663503,0.03727469,98.3296356],[4.53663459,0.03727294,98.33051315],[4.53663415,0.03727119,98.33139254],[4.5366337,0.03726944,98.33227379],[4.53663326,0.03726769,98.33315689],[4.53663282,0.03726594,98.33404187],[4.53663238,0.03726419,98.33492873],[4.53663194,0.03726244,98.33581748],[4.5366315,0.0372607,98.33670812],[4.53663106,0.03725895,98.33760066],[4.53663062,0.0372572,98.33849511],[4.53663018,0.03725545,98.33939148],[4.53662974,0.0372537,98.34028977],[4.5366293,0.03725195,98.34119],[4.53662886,0.0372502,98.34209216],[4.53662842,0.03724845,98.34299627],[4.53662798,0.0372467,98.34390234],[4.53662754,0.03724495,98.34481037],[4.5366271,0.03724321,98.34572037],[4.53662666,0.03724146,98.34663234],[4.53662622,0.03723971,98.3475463],[4.53662578,0.03723796,98.34846225],[4.53662534,0.03723621,98.3493802],[4.5366249,0.03723446,98.35030016],[4.53662446,0.03723271,98.35122212],[4.53662402,0.03723096,98.35214611],[4.53662358,0.03722921,98.35307212],[4.53662314,0.03722746,98.35400016],[4.5366227,0.03722571,98.35493024],[4.53662226,0.03722396,98.35586237],[4.53662183,0.03722222,98.35679655],[4.53662139,0.03722047,98.35773279],[4.53662095,0.03721872,98.3586711],[4.53662051,0.03721697,98.35961148],[4.5366202,0.03721574,98.36027354]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000400","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-1}},{"geometry":{"coordinates":[[4.5366562,0.0372066,98.4590996],[4.53665651,0.03720783,98.45853248],[4.53665694,0.03720958,98.45772515],[4.53665737,0.03721134,98.45691751],[4.5366578,0.03721309,98.45610958],[4.53665823,0.03721484,98.45530139],[4.53665866,0.03721659,98.45449294],[4.53665909,0.03721834,98.45368427],[4.53665952,0.03722009,98.45287538],[4.53665995,0.03722184,98.45206631],[4.53666038,0.03722359,98.45125707],[4.53666081,0.03722534,98.45044769],[4.53666124,0.03722709,98.44963817],[4.53666167,0.03722884,98.44882855],[4.5366621,0.0372306,98.44801885],[4.53666253,0.03723235,98.44720908],[4.53666296,0.0372341,98.44639927],[4.53666338,0.03723585,98.44558944],[4.53666381,0.0372376,98.4447796],[4.53666424,0.03723935,98.44396979],[4.53666467,0.0372411,98.44316002],[4.5366651,0.03724285,98.44235032],[4.53666553,0.0372446,98.4415407],[4.53666596,0.03724635,98.44073118],[4.53666639,0.03724811,98.4399218],[4.53666682,0.03724986,98.43911257],[4.53666725,0.03725161,98.43830351],[4.53666768,0.03725336,98.43749464],[4.53666811,0.03725511,98.43668599],[4.53666854,0.03725686,98.43587758],[4.53666896,0.03725861,98.43506943],[4.53666939,0.03726036,98.43426156],[4.53666982,0.03726211,98.433454],[4.53667025,0.03726386,98.43264677],[4.53667068,0.03726562,98.43183988],[4.53667111,0.03726737,98.43103337],[4.53667154,0.03726912,98.43022726],[4.53667197,0.03727087,98.42942156],[4.5366724,0.03727262,98.4286163],[4.53667283,0.03727437,98.4278115],[4.53667326,0.03727612,98.42700719],[4.53667369,0.03727787,98.42620339],[4.53667412,0.03727962,98.42540012],[4.53667455,0.03728138,98.4245974],[4.53667498,0.03728313,98.42379526],[4.53667541,0.03728488,98.42299372],[4.53667584,0.03728663,98.4221928],[4.53667627,0.03728838,98.42139253],[4.5366767,0.03729013,98.42059293],[4.53667713,0.03729188,98.41979401],[4.53667756,0.03729363,98.41899581],[4.53667799,0.03729538,98.41819835],[4.53667842,0.03729713,98.41740165],[4.53667885,0.03729888,98.41660573],[4.53667929,0.03730063,98.41581061],[4.53667972,0.03730238,98.41501633],[4.53668015,0.03730413,98.4142229],[4.53668058,0.03730589,98.41343034],[4.53668101,0.03730764,98.41263869],[4.53668144,0.03730939,98.41184795],[4.53668188,0.03731114,98.41105816],[4.53668231,0.03731289,98.41026934],[4.53668274,0.03731464,98.40948151],[4.53668317,0.03731639,98.40869469],[4.53668361,0.03731814,98.40790891],[4.53668404,0.03731989,98.4071242],[4.53668447,0.03732164,98.40634056],[4.53668491,0.03732339,98.40555804],[4.53668534,0.03732514,98.40477664],[4.53668577,0.03732689,98.4039964],[4.53668621,0.03732864,98.40321733],[4.53668664,0.03733039,98.40243947],[4.53668708,0.03733214,98.40166282],[4.53668751,0.03733389,98.40088743],[4.53668795,0.03733564,98.4001133],[4.53668838,0.03733739,98.39934046],[4.53668882,0.03733914,98.39856894],[4.53668925,0.03734089,98.39779876],[4.53668969,0.03734264,98.39702994],[4.53669012,0.03734438,98.3962625],[4.53669056,0.03734613,98.39549647],[4.536691,0.03734788,98.39473186],[4.53669144,0.03734963,98.39396863],[4.53669187,0.03735138,98.39320674],[4.53669231,0.03735313,98.39244614],[4.53669275,0.03735488,98.39168678],[4.53669319,0.03735663,98.39092861],[4.53669362,0.03735838,98.39017159],[4.53669406,0.03736013,98.38941567],[4.5366945,0.03736188,98.3886608],[4.53669494,0.03736362,98.38790692],[4.53669538,0.03736538,98.38715401],[4.53669582,0.03736712,98.386402],[4.53669626,0.03736887,98.38565084],[4.53669669,0.03737062,98.38490049],[4.53669713,0.03737237,98.38415091],[4.53669757,0.03737412,98.38340203],[4.53669801,0.03737587,98.38265382],[4.53669845,0.03737762,98.38190623],[4.53669889,0.03737937,98.38115919],[4.53669933,0.03738111,98.38041268],[4.53669976,0.03738286,98.37966663],[4.5367002,0.03738461,98.37892101],[4.53670064,0.03738636,98.37817575],[4.53670108,0.03738811,98.37743081],[4.53670152,0.03738986,98.37668615],[4.53670195,0.03739161,98.37594171],[4.53670239,0.03739336,98.37519749],[4.53670283,0.03739511,98.37445354],[4.53670327,0.03739685,98.37370988],[4.5367037,0.0373986,98.37296658],[4.53670414,0.03740035,98.37222367],[4.53670458,0.0374021,98.3714812],[4.53670501,0.03740385,98.37073922],[4.53670545,0.0374056,98.36999777],[4.53670589,0.03740735,98.3692569],[4.53670632,0.0374091,98.36851665],[4.53670676,0.03741085,98.36777708],[4.5367072,0.0374126,98.36703821],[4.53670763,0.03741435,98.36630011],[4.53670807,0.0374161,98.36556281],[4.5367085,0.03741785,98.36482637],[4.53670894,0.0374196,98.36409083],[4.53670938,0.03742134,98.36335623],[4.53670981,0.03742309,98.36262262],[4.53671025,0.03742484,98.36189005],[4.53671068,0.03742659,98.36115856],[4.53671112,0.03742834,98.36042819],[4.53671156,0.03743009,98.35969901],[4.53671199,0.03743184,98.35897104],[4.53671243,0.03743359,98.35824434],[4.53671287,0.03743534,98.35751895],[4.5367133,0.03743709,98.35679491],[4.53671374,0.03743884,98.35607228],[4.53671418,0.03744059,98.3553511],[4.53671462,0.03744234,98.35463142],[4.53671505,0.03744408,98.35391328],[4.53671549,0.03744583,98.35319672],[4.53671593,0.03744758,98.35248179],[4.53671637,0.03744933,98.35176855],[4.53671681,0.03745108,98.35105702],[4.53671724,0.03745283,98.35034727],[4.53671768,0.03745458,98.34963933],[4.53671812,0.03745633,98.34893325],[4.53671856,0.03745807,98.34822908],[4.536719,0.03745982,98.34752686],[4.53671944,0.03746157,98.34682663],[4.53671988,0.03746332,98.34612845],[4.53672032,0.03746507,98.34543236],[4.53672077,0.03746682,98.34473839],[4.53672121,0.03746856,98.34404661],[4.53672165,0.03747031,98.34335705],[4.53672209,0.03747206,98.34266976],[4.53672253,0.03747381,98.34198477],[4.53672298,0.03747555,98.34130215],[4.53672342,0.0374773,98.34062193],[4.53672386,0.03747905,98.33994416],[4.53672431,0.0374808,98.33926888],[4.53672475,0.03748254,98.33859614],[4.5367252,0.03748429,98.33792598],[4.53672565,0.03748604,98.33725842],[4.53672609,0.03748778,98.33659335],[4.53672654,0.03748953,98.33593066],[4.53672699,0.03749128,98.33527022],[4.53672743,0.03749302,98.33461189],[4.53672788,0.03749477,98.33395555],[4.53672833,0.03749652,98.33330107],[4.53672878,0.03749826,98.33264833],[4.53672923,0.03750001,98.33199719],[4.53672968,0.03750176,98.33134754],[4.53673012,0.0375035,98.33069924],[4.53673057,0.03750525,98.33005216],[4.53673102,0.03750699,98.32940619],[4.53673147,0.03750874,98.32876119],[4.53673192,0.03751049,98.32811703],[4.53673237,0.03751223,98.3274736],[4.53673282,0.03751398,98.32683076],[4.53673326,0.03751572,98.32618839],[4.53673371,0.03751747,98.32554637],[4.53673416,0.03751922,98.32490456],[4.5367346,0.03752096,98.32426284],[4.53673505,0.03752271,98.32362109],[4.5367355,0.03752446,98.32297919],[4.53673594,0.03752621,98.322337],[4.53673639,0.03752795,98.3216944],[4.53673683,0.0375297,98.32105127],[4.53673727,0.03753145,98.32040748],[4.53673772,0.03753319,98.31976291],[4.53673816,0.03753494,98.31911744],[4.5367386,0.03753669,98.31847094],[4.53673904,0.03753844,98.31782329],[4.53673948,0.03754019,98.31717436],[4.53673992,0.03754194,98.31652404],[4.53674036,0.03754369,98.31587219],[4.53674079,0.03754543,98.3152187],[4.53674123,0.03754718,98.31456344],[4.53674166,0.03754893,98.3139063],[4.5367421,0.03755068,98.31324715],[4.53674253,0.03755243,98.31258587],[4.53674296,0.03755418,98.31192253],[4.53674339,0.03755594,98.31125736],[4.53674382,0.03755769,98.31059062],[4.53674425,0.03755944,98.30992253],[4.53674468,0.03756119,98.30925336],[4.5367451,0.03756294,98.30858334],[4.53674553,0.03756469,98.30791271],[4.53674595,0.03756645,98.30724172],[4.53674638,0.0375682,98.30657062],[4.5367468,0.03756995,98.30589964],[4.53674723,0.0375717,98.30522902],[4.53674765,0.03757346,98.30455901],[4.53674807,0.03757521,98.30388986],[4.5367485,0.03757696,98.30322179],[4.53674892,0.03757871,98.30255506],[4.53674934,0.03758047,98.3018899],[4.53674976,0.03758222,98.30122655],[4.53675019,0.03758397,98.30056525],[4.53675061,0.03758572,98.29990624],[4.53675104,0.03758748,98.29924977],[4.53675146,0.03758923,98.29859606],[4.53675189,0.03759098,98.29794535],[4.53675231,0.03759273,98.29729787],[4.53675274,0.03759449,98.29665386],[4.53675316,0.03759624,98.29601355],[4.53675359,0.03759799,98.29537718],[4.53675402,0.03759974,98.29474496],[4.53675445,0.03760149,98.29411715],[4.53675488,0.03760324,98.29349396],[4.53675531,0.03760499,98.29287562],[4.53675574,0.03760674,98.29226238],[4.53675618,0.03760849,98.29165445],[4.53675661,0.03761024,98.29105207],[4.53675705,0.03761199,98.29045547],[4.53675749,0.03761374,98.28986488],[4.53675793,0.03761549,98.28928052],[4.53675837,0.03761723,98.2887026],[4.53675882,0.03761898,98.2881309],[4.53675926,0.03762073,98.28756476],[4.53675971,0.03762247,98.2870035],[4.53676015,0.03762422,98.28644643],[4.5367606,0.03762597,98.28589288],[4.53676105,0.03762771,98.28534217],[4.5367615,0.03762946,98.28479363],[4.53676195,0.0376312,98.28424659],[4.5367624,0.03763295,98.28370072],[4.53676284,0.0376347,98.28315602],[4.53676329,0.03763644,98.28261249],[4.53676374,0.03763819,98.28207016],[4.53676419,0.03763993,98.28152902],[4.53676463,0.03764168,98.28098908],[4.53676508,0.03764342,98.28045037],[4.53676553,0.03764517,98.27991289],[4.53676598,0.03764692,98.27937665],[4.53676642,0.03764866,98.27884165],[4.53676687,0.03765041,98.27830792],[4.53676732,0.03765215,98.27777546],[4.53676777,0.0376539,98.27724428],[4.53676821,0.03765565,98.27671439],[4.53676866,0.03765739,98.2761858],[4.53676911,0.03765914,98.27565853],[4.53676955,0.03766088,98.27513258],[4.53677,0.03766263,98.27460796],[4.53677045,0.03766437,98.27408469],[4.53677089,0.03766612,98.27356277],[4.53677134,0.03766787,98.27304222],[4.53677179,0.03766961,98.27252304],[4.53677223,0.03767136,98.27200524],[4.53677268,0.0376731,98.27148884],[4.53677312,0.03767485,98.27097385],[4.53677357,0.03767659,98.27046027],[4.53677402,0.03767834,98.26994812],[4.53677446,0.03768009,98.26943741],[4.53677491,0.03768183,98.26892814],[4.53677536,0.03768358,98.26842033],[4.5367758,0.03768532,98.26791398],[4.53677625,0.03768707,98.26740912],[4.53677669,0.03768881,98.26690574],[4.53677714,0.03769056,98.26640386],[4.53677759,0.03769231,98.26590349],[4.53677803,0.03769405,98.26540463],[4.53677848,0.0376958,98.26490731],[4.53677892,0.03769754,98.26441152],[4.53677937,0.03769929,98.26391728],[4.53677982,0.03770103,98.2634246],[4.53678026,0.03770278,98.26293349],[4.53678071,0.03770452,98.26244396],[4.53678115,0.03770627,98.26195602],[4.5367816,0.03770801,98.26146967],[4.53678205,0.03770976,98.26098497],[4.53678249,0.0377115,98.26050199],[4.53678294,0.03771325,98.2600208],[4.53678338,0.037715,98.25954148],[4.53678383,0.03771674,98.2590641],[4.53678428,0.03771849,98.25858874],[4.53678472,0.03772023,98.25811547],[4.53678517,0.03772198,98.25764436],[4.53678562,0.03772372,98.2571755],[4.53678607,0.03772547,98.25670896],[4.53678651,0.03772721,98.2562448],[4.53678696,0.03772895,98.25578311],[4.53678741,0.0377307,98.25532396],[4.53678786,0.03773244,98.25486742],[4.53678831,0.03773419,98.25441357],[4.53678876,0.03773593,98.25396249],[4.53678921,0.03773768,98.25351423],[4.53678966,0.03773942,98.25306889],[4.53679011,0.03774116,98.25262647],[4.53679056,0.03774291,98.25218695],[4.53679101,0.03774465,98.2517503],[4.53679147,0.03774639,98.25131647],[4.53679192,0.03774814,98.25088545],[4.53679237,0.03774988,98.25045719],[4.53679283,0.03775162,98.25003167],[4.53679328,0.03775336,98.24960885],[4.53679373,0.03775511,98.2491887],[4.53679419,0.03775685,98.24877118],[4.53679464,0.03775859,98.24835627],[4.5367951,0.03776033,98.24794393],[4.53679556,0.03776208,98.24753413],[4.53679601,0.03776382,98.24712684],[4.53679647,0.03776556,98.24672203],[4.53679693,0.0377673,98.24631966],[4.53679738,0.03776904,98.2459197],[4.53679784,0.03777078,98.24552212],[4.5367983,0.03777253,98.24512688],[4.53679876,0.03777427,98.24473397],[4.53679921,0.03777601,98.24434333],[4.53679967,0.03777775,98.24395495],[4.53680013,0.03777949,98.24356879],[4.53680059,0.03778123,98.24318482],[4.53680105,0.03778297,98.24280302],[4.53680151,0.03778471,98.24242337],[4.53680197,0.03778645,98.24204587],[4.53680243,0.03778819,98.24167049],[4.53680289,0.03778994,98.24129722],[4.53680335,0.03779168,98.24092603],[4.53680381,0.03779342,98.24055693],[4.53680427,0.03779516,98.24018988],[4.53680473,0.0377969,98.23982487],[4.53680519,0.03779864,98.23946189],[4.53680565,0.03780038,98.23910092],[4.53680611,0.03780212,98.23874195],[4.53680658,0.03780386,98.23838495],[4.53680704,0.0378056,98.23802991],[4.5368075,0.03780734,98.23767682],[4.53680796,0.03780908,98.23732565],[4.53680842,0.03781082,98.2369764],[4.53680888,0.03781256,98.23662905],[4.53680935,0.0378143,98.23628357],[4.53680981,0.03781604,98.23593996],[4.53681027,0.03781778,98.2355982],[4.53681073,0.03781952,98.23525826],[4.53681119,0.03782126,98.23492015],[4.53681166,0.037823,98.23458383],[4.53681212,0.03782473,98.23424929],[4.53681258,0.03782647,98.23391652],[4.53681304,0.03782821,98.23358549],[4.53681351,0.03782995,98.2332562],[4.53681397,0.03783169,98.23292863],[4.53681443,0.03783343,98.23260276],[4.5368149,0.03783517,98.23227857],[4.53681536,0.03783691,98.23195604],[4.53681582,0.03783865,98.23163517],[4.53681628,0.03784039,98.23131593],[4.53681675,0.03784213,98.2309983],[4.53681721,0.03784387,98.23068228],[4.53681767,0.03784561,98.23036783],[4.53681814,0.03784735,98.23005495],[4.5368186,0.03784908,98.22974359],[4.53681906,0.03785082,98.2294337],[4.53681952,0.03785256,98.22912523],[4.53681999,0.0378543,98.22881814],[4.53682045,0.03785604,98.22851237],[4.5368209,0.03785774,98.22820785],[4.53682136,0.03785948,98.22790451],[4.53682182,0.03786122,98.22760229],[4.53682229,0.03786296,98.22730113],[4.53682275,0.0378647,98.22700095],[4.53682321,0.03786644,98.22670169],[4.53682367,0.03786818,98.22640329],[4.53682413,0.03786992,98.22610567],[4.53682459,0.03787166,98.22580878],[4.53682505,0.0378734,98.22551253],[4.53682551,0.03787514,98.22521687],[4.53682597,0.03787688,98.22492173],[4.53682643,0.03787862,98.22462704],[4.53682689,0.03788036,98.22433273],[4.53682735,0.0378821,98.22403873],[4.53682781,0.03788384,98.22374499],[4.53682827,0.03788559,98.22345141],[4.53682872,0.03788733,98.22315799],[4.53682918,0.03788907,98.22286561],[4.53682964,0.03789081,98.22257609],[4.5368301,0.03789255,98.2222913],[4.53683056,0.03789429,98.22201311],[4.53683102,0.03789603,98.22174338],[4.53683148,0.03789777,98.22148399],[4.53683195,0.03789951,98.22123681],[4.53683243,0.03790125,98.22100367],[4.53683291,0.03790298,98.22078485],[4.53683339,0.03790472,98.22057912],[4.53683387,0.03790645,98.22038517],[4.53683436,0.03790818,98.2202017],[4.53683485,0.03790991,98.22002741],[4.53683535,0.03791165,98.21986097],[4.53683584,0.03791338,98.21970108],[4.53683634,0.03791511,98.21954643],[4.53683683,0.03791684,98.21939569],[4.53683733,0.03791857,98.21924756],[4.53683783,0.0379203,98.2191007],[4.53683832,0.03792203,98.21895383],[4.53683882,0.03792376,98.21880637],[4.53683932,0.03792549,98.21865845],[4.53683981,0.03792722,98.21851027],[4.5368403,0.03792895,98.21836198],[4.5368408,0.03793068,98.21821377],[4.53684129,0.03793241,98.21806581],[4.53684178,0.03793414,98.21791828],[4.53684227,0.03793587,98.21777135],[4.53684276,0.03793761,98.2176252],[4.53684325,0.03793934,98.21748001],[4.53684374,0.03794107,98.21733596],[4.53684423,0.0379428,98.21719319],[4.53684472,0.03794453,98.21705187],[4.53684521,0.03794627,98.21691215],[4.5368457,0.037948,98.21677417],[4.53684619,0.03794973,98.2166381],[4.53684668,0.03795146,98.21650407],[4.53684717,0.03795319,98.21637225],[4.53684766,0.03795492,98.21624275],[4.53684816,0.03795666,98.21611554],[4.53684865,0.03795839,98.21599053],[4.53684914,0.03796012,98.21586765],[4.53684963,0.03796185,98.21574683],[4.53685012,0.03796358,98.21562798],[4.53685061,0.03796531,98.21551104],[4.5368511,0.03796704,98.21539592],[4.5368516,0.03796877,98.21528254],[4.53685209,0.03797051,98.21517083],[4.53685258,0.03797224,98.21506072],[4.53685307,0.03797397,98.21495211],[4.53685356,0.0379757,98.21484495],[4.53685406,0.03797743,98.21473913],[4.53685455,0.03797916,98.2146346],[4.53685504,0.03798089,98.21453126],[4.53685553,0.03798262,98.21442904],[4.53685602,0.03798435,98.21432786],[4.53685652,0.03798608,98.21422764],[4.53685701,0.03798782,98.21412831],[4.5368575,0.03798955,98.21402977],[4.53685799,0.03799128,98.21393195],[4.53685848,0.03799301,98.21383477],[4.53685897,0.03799474,98.21373815],[4.53685946,0.03799647,98.21364201],[4.53685995,0.0379982,98.21354626],[4.53686045,0.03799994,98.21345082],[4.53686094,0.03800167,98.21335562],[4.53686143,0.0380034,98.21326056],[4.53686191,0.03800513,98.21316558],[4.5368624,0.03800686,98.21307057],[4.53686289,0.03800859,98.21297547],[4.53686338,0.03801033,98.21288019],[4.53686387,0.03801206,98.21278483],[4.53686436,0.03801379,98.21268967],[4.53686485,0.03801552,98.21259499],[4.53686533,0.03801725,98.21250108],[4.53686582,0.03801899,98.21240824],[4.53686631,0.03802072,98.21231674],[4.5368668,0.03802245,98.2122269],[4.53686729,0.03802418,98.21213899],[4.53686778,0.03802591,98.21205332],[4.53686827,0.03802765,98.21197019],[4.53686876,0.03802938,98.21188989],[4.53686925,0.03803111,98.21181272],[4.53686974,0.03803284,98.21173899],[4.53687024,0.03803457,98.211669],[4.53687073,0.0380363,98.21160305],[4.53687123,0.03803803,98.21154144],[4.53687172,0.03803976,98.21148449],[4.53687222,0.03804149,98.21143251],[4.53687272,0.03804322,98.21138579],[4.53687323,0.03804494,98.21134465],[4.53687373,0.03804667,98.21130902],[4.53687424,0.0380484,98.21127849],[4.53687474,0.03805012,98.21125265],[4.53687525,0.03805185,98.21123106],[4.53687576,0.03805358,98.21121329],[4.53687627,0.0380553,98.21119892],[4.53687678,0.03805703,98.2111875],[4.53687729,0.03805875,98.21117861],[4.53687781,0.03806048,98.21117181],[4.53687832,0.0380622,98.21116666],[4.53687883,0.03806393,98.21116271],[4.53687934,0.03806565,98.21115953],[4.53687986,0.03806737,98.21115668],[4.53688037,0.0380691,98.2111537],[4.53688088,0.03807082,98.21115015],[4.5368814,0.03807255,98.21114558],[4.53688191,0.03807427,98.21113954],[4.53688242,0.038076,98.21113158],[4.53688293,0.03807772,98.21112123],[4.53688344,0.03807945,98.21110804],[4.53688395,0.03808117,98.21109156],[4.53688446,0.0380829,98.21107134],[4.53688496,0.03808463,98.21104756],[4.53688547,0.03808635,98.21102101],[4.53688597,0.03808808,98.2109925],[4.53688648,0.03808981,98.21096286],[4.53688698,0.03809154,98.21093291],[4.53688749,0.03809326,98.21090348],[4.53688799,0.03809499,98.21087541],[4.5368885,0.03809672,98.21084954],[4.53688901,0.03809844,98.2108267],[4.53688952,0.03810017,98.21080775],[4.53689003,0.03810189,98.21079353],[4.53689054,0.03810362,98.2107849],[4.53689105,0.03810534,98.21078271],[4.53689157,0.03810707,98.21078783],[4.53689209,0.03810879,98.21080112],[4.53689261,0.03811051,98.21082346],[4.53689313,0.03811222,98.21085568],[4.53689366,0.03811394,98.21089791],[4.53689419,0.03811566,98.21094955],[4.53689473,0.03811738,98.21100995],[4.53689526,0.03811909,98.21107849],[4.5368958,0.03812081,98.21115452],[4.53689635,0.03812253,98.21123739],[4.53689689,0.03812424,98.21132647],[4.53689744,0.03812596,98.21142108],[4.53689798,0.03812767,98.2115206],[4.53689853,0.03812938,98.21162435],[4.53689908,0.0381311,98.21173168],[4.53689963,0.03813281,98.21184192],[4.53690019,0.03813452,98.21195441],[4.53690074,0.03813624,98.21206849],[4.53690129,0.03813795,98.21218347],[4.53690184,0.03813966,98.21229869],[4.5369024,0.03814138,98.21241347],[4.53690295,0.03814309,98.21252713],[4.5369035,0.0381448,98.21263898],[4.53690405,0.03814652,98.21274846],[4.53690461,0.03814823,98.21285553],[4.53690516,0.03814994,98.21296025],[4.53690571,0.03815166,98.21306269],[4.53690626,0.03815337,98.21316293],[4.53690681,0.03815508,98.21326103],[4.53690736,0.0381568,98.21335708],[4.5369079,0.03815851,98.21345114],[4.53690845,0.03816023,98.21354328],[4.536909,0.03816194,98.2136336],[4.53690955,0.03816366,98.21372215],[4.53691009,0.03816537,98.21380901],[4.53691064,0.03816709,98.21389426],[4.53691119,0.0381688,98.21397798],[4.53691173,0.03817052,98.21406025],[4.53691228,0.03817223,98.21414113],[4.53691283,0.03817395,98.21422071],[4.53691337,0.03817566,98.21429907],[4.53691392,0.03817738,98.21437628],[4.53691446,0.03817909,98.21445243],[4.53691501,0.03818081,98.21452759],[4.53691555,0.03818252,98.21460184],[4.5369161,0.03818424,98.21467527],[4.53691665,0.03818596,98.21474795],[4.53691719,0.03818767,98.21481997],[4.53691774,0.03818939,98.21489141],[4.53691828,0.0381911,98.21496235],[4.53691883,0.03819282,98.21503287],[4.53691938,0.03819453,98.21510306],[4.53691992,0.03819625,98.215173],[4.53692047,0.03819796,98.21524278],[4.53692102,0.03819968,98.21531247]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000400","id":1,"type":"shoulder","predecessorId":1}},{"geometry":{"coordinates":[[4.53667014,0.03720307,98.4590996],[4.53667044,0.0372043,98.45853248],[4.53667087,0.03720605,98.45772515],[4.5366713,0.0372078,98.45691751],[4.53667173,0.03720955,98.45610958],[4.53667216,0.0372113,98.45530139],[4.53667258,0.03721305,98.45449294],[4.53667301,0.0372148,98.45368427],[4.53667344,0.03721656,98.45287538],[4.53667387,0.03721831,98.45206631],[4.53667429,0.03722006,98.45125707],[4.53667472,0.03722181,98.45044769],[4.53667515,0.03722356,98.44963817],[4.53667557,0.03722531,98.44882855],[4.536676,0.03722706,98.44801885],[4.53667643,0.03722882,98.44720908],[4.53667685,0.03723057,98.44639927],[4.53667728,0.03723232,98.44558944],[4.53667771,0.03723407,98.4447796],[4.53667813,0.03723582,98.44396979],[4.53667856,0.03723757,98.44316002],[4.53667898,0.03723933,98.44235032],[4.53667941,0.03724108,98.4415407],[4.53667983,0.03724283,98.44073118],[4.53668026,0.03724458,98.4399218],[4.53668069,0.03724633,98.43911257],[4.53668111,0.03724808,98.43830351],[4.53668154,0.03724983,98.43749464],[4.53668196,0.03725159,98.43668599],[4.53668239,0.03725334,98.43587758],[4.53668282,0.03725509,98.43506943],[4.53668324,0.03725684,98.43426156],[4.53668367,0.03725859,98.433454],[4.53668409,0.03726034,98.43264677],[4.53668452,0.0372621,98.43183988],[4.53668495,0.03726385,98.43103337],[4.53668538,0.0372656,98.43022726],[4.5366858,0.03726735,98.42942156],[4.53668623,0.0372691,98.4286163],[4.53668666,0.03727085,98.4278115],[4.53668709,0.0372726,98.42700719],[4.53668752,0.03727435,98.42620339],[4.53668794,0.03727611,98.42540012],[4.53668837,0.03727786,98.4245974],[4.5366888,0.03727961,98.42379526],[4.53668923,0.03728136,98.42299372],[4.53668966,0.03728311,98.4221928],[4.53669009,0.03728486,98.42139253],[4.53669053,0.03728661,98.42059293],[4.53669096,0.03728836,98.41979401],[4.53669139,0.03729011,98.41899581],[4.53669182,0.03729186,98.41819835],[4.53669226,0.03729361,98.41740165],[4.53669269,0.03729536,98.41660573],[4.53669312,0.03729711,98.41581061],[4.53669356,0.03729886,98.41501633],[4.53669399,0.03730061,98.4142229],[4.53669443,0.03730236,98.41343034],[4.53669487,0.03730411,98.41263869],[4.5366953,0.03730585,98.41184795],[4.53669574,0.0373076,98.41105816],[4.53669618,0.03730935,98.41026934],[4.53669662,0.0373111,98.40948151],[4.53669706,0.03731285,98.40869469],[4.5366975,0.0373146,98.40790891],[4.53669794,0.03731634,98.4071242],[4.53669838,0.03731809,98.40634056],[4.53669882,0.03731984,98.40555804],[4.53669926,0.03732159,98.40477664],[4.53669971,0.03732334,98.4039964],[4.53670015,0.03732508,98.40321733],[4.5367006,0.03732683,98.40243947],[4.53670104,0.03732858,98.40166282],[4.53670149,0.03733032,98.40088743],[4.53670193,0.03733207,98.4001133],[4.53670238,0.03733382,98.39934046],[4.53670283,0.03733556,98.39856894],[4.53670328,0.03733731,98.39779876],[4.53670373,0.03733905,98.39702994],[4.53670417,0.0373408,98.3962625],[4.53670462,0.03734255,98.39549647],[4.53670508,0.03734429,98.39473186],[4.53670553,0.03734604,98.39396863],[4.53670598,0.03734778,98.39320674],[4.53670643,0.03734953,98.39244614],[4.53670688,0.03735127,98.39168678],[4.53670734,0.03735302,98.39092861],[4.53670779,0.03735476,98.39017159],[4.53670824,0.03735651,98.38941567],[4.5367087,0.03735825,98.3886608],[4.53670915,0.03736,98.38790692],[4.53670961,0.03736174,98.38715401],[4.53671006,0.03736349,98.386402],[4.53671052,0.03736523,98.38565084],[4.53671097,0.03736698,98.38490049],[4.53671143,0.03736872,98.38415091],[4.53671188,0.03737046,98.38340203],[4.53671234,0.03737221,98.38265382],[4.53671279,0.03737395,98.38190623],[4.53671325,0.0373757,98.38115919],[4.53671371,0.03737744,98.38041268],[4.53671416,0.03737919,98.37966663],[4.53671462,0.03738093,98.37892101],[4.53671507,0.03738267,98.37817575],[4.53671553,0.03738442,98.37743081],[4.53671598,0.03738616,98.37668615],[4.53671644,0.03738791,98.37594171],[4.53671689,0.03738965,98.37519749],[4.53671735,0.03739139,98.37445354],[4.5367178,0.03739314,98.37370988],[4.53671826,0.03739488,98.37296658],[4.53671871,0.03739663,98.37222367],[4.53671917,0.03739837,98.3714812],[4.53671962,0.03740012,98.37073922],[4.53672008,0.03740186,98.36999777],[4.53672053,0.03740361,98.3692569],[4.53672098,0.03740535,98.36851665],[4.53672144,0.0374071,98.36777708],[4.53672189,0.03740884,98.36703821],[4.53672235,0.03741058,98.36630011],[4.5367228,0.03741233,98.36556281],[4.53672325,0.03741407,98.36482637],[4.53672371,0.03741582,98.36409083],[4.53672416,0.03741756,98.36335623],[4.53672461,0.03741931,98.36262262],[4.53672506,0.03742105,98.36189005],[4.53672552,0.0374228,98.36115856],[4.53672597,0.03742454,98.36042819],[4.53672642,0.03742629,98.35969901],[4.53672688,0.03742803,98.35897104],[4.53672733,0.03742978,98.35824434],[4.53672778,0.03743152,98.35751895],[4.53672823,0.03743327,98.35679491],[4.53672869,0.03743501,98.35607228],[4.53672914,0.03743676,98.3553511],[4.53672959,0.0374385,98.35463142],[4.53673005,0.03744025,98.35391328],[4.5367305,0.03744199,98.35319672],[4.53673095,0.03744374,98.35248179],[4.53673141,0.03744548,98.35176855],[4.53673186,0.03744723,98.35105702],[4.53673231,0.03744897,98.35034727],[4.53673277,0.03745072,98.34963933],[4.53673322,0.03745246,98.34893325],[4.53673367,0.0374542,98.34822908],[4.53673413,0.03745595,98.34752686],[4.53673458,0.03745769,98.34682663],[4.53673504,0.03745944,98.34612845],[4.53673549,0.03746118,98.34543236],[4.53673595,0.03746293,98.34473839],[4.5367364,0.03746467,98.34404661],[4.53673686,0.03746641,98.34335705],[4.53673731,0.03746816,98.34266976],[4.53673777,0.0374699,98.34198477],[4.53673822,0.03747165,98.34130215],[4.53673868,0.03747339,98.34062193],[4.53673914,0.03747514,98.33994416],[4.53673959,0.03747688,98.33926888],[4.53674005,0.03747862,98.33859614],[4.53674051,0.03748037,98.33792598],[4.53674097,0.03748211,98.33725842],[4.53674142,0.03748385,98.33659335],[4.53674188,0.0374856,98.33593066],[4.53674234,0.03748734,98.33527022],[4.5367428,0.03748908,98.33461189],[4.53674326,0.03749083,98.33395555],[4.53674372,0.03749257,98.33330107],[4.53674418,0.03749431,98.33264833],[4.53674464,0.03749606,98.33199719],[4.5367451,0.0374978,98.33134754],[4.53674556,0.03749954,98.33069924],[4.53674601,0.03750129,98.33005216],[4.53674647,0.03750303,98.32940619],[4.53674693,0.03750477,98.32876119],[4.53674739,0.03750652,98.32811703],[4.53674785,0.03750826,98.3274736],[4.53674831,0.03751,98.32683076],[4.53674877,0.03751175,98.32618839],[4.53674922,0.03751349,98.32554637],[4.53674968,0.03751523,98.32490456],[4.53675014,0.03751698,98.32426284],[4.5367506,0.03751872,98.32362109],[4.53675105,0.03752046,98.32297919],[4.53675151,0.03752221,98.322337],[4.53675196,0.03752395,98.3216944],[4.53675242,0.0375257,98.32105127],[4.53675287,0.03752744,98.32040748],[4.53675333,0.03752919,98.31976291],[4.53675378,0.03753093,98.31911744],[4.53675423,0.03753268,98.31847094],[4.53675468,0.03753442,98.31782329],[4.53675514,0.03753617,98.31717436],[4.53675559,0.03753791,98.31652404],[4.53675604,0.03753966,98.31587219],[4.53675649,0.0375414,98.3152187],[4.53675694,0.03754315,98.31456344],[4.53675738,0.03754489,98.3139063],[4.53675783,0.03754664,98.31324715],[4.53675828,0.03754839,98.31258587],[4.53675873,0.03755013,98.31192253],[4.53675917,0.03755188,98.31125736],[4.53675962,0.03755362,98.31059062],[4.53676007,0.03755537,98.30992253],[4.53676051,0.03755712,98.30925336],[4.53676096,0.03755886,98.30858334],[4.53676141,0.03756061,98.30791271],[4.53676185,0.03756236,98.30724172],[4.5367623,0.0375641,98.30657062],[4.53676275,0.03756585,98.30589964],[4.5367632,0.03756759,98.30522902],[4.53676364,0.03756934,98.30455901],[4.53676409,0.03757109,98.30388986],[4.53676454,0.03757283,98.30322179],[4.53676499,0.03757458,98.30255506],[4.53676544,0.03757632,98.3018899],[4.53676589,0.03757807,98.30122655],[4.53676635,0.03757981,98.30056525],[4.5367668,0.03758156,98.29990624],[4.53676725,0.0375833,98.29924977],[4.53676771,0.03758505,98.29859606],[4.53676816,0.03758679,98.29794535],[4.53676862,0.03758853,98.29729787],[4.53676908,0.03759028,98.29665386],[4.53676954,0.03759202,98.29601355],[4.53677,0.03759376,98.29537718],[4.53677046,0.03759551,98.29474496],[4.53677092,0.03759725,98.29411715],[4.53677139,0.03759899,98.29349396],[4.53677185,0.03760073,98.29287562],[4.53677231,0.03760247,98.29226238],[4.53677278,0.03760421,98.29165445],[4.53677324,0.03760596,98.29105207],[4.5367737,0.0376077,98.29045547],[4.53677416,0.03760944,98.28986488],[4.53677461,0.03761118,98.28928052],[4.53677507,0.03761293,98.2887026],[4.53677552,0.03761467,98.2881309],[4.53677596,0.03761642,98.28756476],[4.53677641,0.03761817,98.2870035],[4.53677685,0.03761991,98.28644643],[4.53677729,0.03762166,98.28589288],[4.53677774,0.03762341,98.28534217],[4.53677818,0.03762515,98.28479363],[4.53677862,0.0376269,98.28424659],[4.53677906,0.03762865,98.28370072],[4.5367795,0.03763039,98.28315602],[4.53677994,0.03763214,98.28261249],[4.53678038,0.03763389,98.28207016],[4.53678082,0.03763563,98.28152902],[4.53678126,0.03763738,98.28098908],[4.53678171,0.03763913,98.28045037],[4.53678215,0.03764087,98.27991289],[4.53678259,0.03764262,98.27937665],[4.53678303,0.03764436,98.27884165],[4.53678348,0.03764611,98.27830792],[4.53678392,0.03764785,98.27777546],[4.53678436,0.0376496,98.27724428],[4.53678481,0.03765135,98.27671439],[4.53678525,0.03765309,98.2761858],[4.53678569,0.03765484,98.27565853],[4.53678614,0.03765658,98.27513258],[4.53678658,0.03765833,98.27460796],[4.53678702,0.03766007,98.27408469],[4.53678746,0.03766182,98.27356277],[4.53678791,0.03766357,98.27304222],[4.53678835,0.03766531,98.27252304],[4.53678879,0.03766706,98.27200524],[4.53678923,0.0376688,98.27148884],[4.53678968,0.03767055,98.27097385],[4.53679012,0.03767229,98.27046027],[4.53679056,0.03767404,98.26994812],[4.536791,0.03767578,98.26943741],[4.53679144,0.03767753,98.26892814],[4.53679188,0.03767928,98.26842033],[4.53679232,0.03768102,98.26791398],[4.53679276,0.03768277,98.26740912],[4.53679321,0.03768451,98.26690574],[4.53679365,0.03768626,98.26640386],[4.53679409,0.037688,98.26590349],[4.53679453,0.03768975,98.26540463],[4.53679497,0.03769149,98.26490731],[4.53679541,0.03769324,98.26441152],[4.53679585,0.03769498,98.26391728],[4.53679629,0.03769673,98.2634246],[4.53679673,0.03769847,98.26293349],[4.53679717,0.03770022,98.26244396],[4.53679761,0.03770196,98.26195602],[4.53679805,0.03770371,98.26146967],[4.53679849,0.03770546,98.26098497],[4.53679893,0.0377072,98.26050199],[4.53679937,0.03770894,98.2600208],[4.53679982,0.03771069,98.25954148],[4.53680026,0.03771243,98.2590641],[4.5368007,0.03771418,98.25858874],[4.53680114,0.03771592,98.25811547],[4.53680158,0.03771767,98.25764436],[4.53680202,0.03771941,98.2571755],[4.53680246,0.03772116,98.25670896],[4.5368029,0.0377229,98.2562448],[4.53680335,0.03772465,98.25578311],[4.53680379,0.03772639,98.25532396],[4.53680423,0.03772813,98.25486742],[4.53680467,0.03772988,98.25441357],[4.53680511,0.03773162,98.25396249],[4.53680556,0.03773337,98.25351423],[4.536806,0.03773511,98.25306889],[4.53680644,0.03773685,98.25262647],[4.53680689,0.0377386,98.25218695],[4.53680733,0.03774034,98.2517503],[4.53680777,0.03774208,98.25131647],[4.53680822,0.03774383,98.25088545],[4.53680866,0.03774557,98.25045719],[4.5368091,0.03774731,98.25003167],[4.53680955,0.03774906,98.24960885],[4.53680999,0.0377508,98.2491887],[4.53681043,0.03775254,98.24877118],[4.53681088,0.03775429,98.24835627],[4.53681132,0.03775603,98.24794393],[4.53681176,0.03775777,98.24753413],[4.53681221,0.03775952,98.24712684],[4.53681265,0.03776126,98.24672203],[4.53681309,0.037763,98.24631966],[4.53681354,0.03776475,98.2459197],[4.53681398,0.03776649,98.24552212],[4.53681443,0.03776823,98.24512688],[4.53681487,0.03776997,98.24473397],[4.53681531,0.03777172,98.24434333],[4.53681576,0.03777346,98.24395495],[4.5368162,0.0377752,98.24356879],[4.53681664,0.03777694,98.24318482],[4.53681709,0.03777869,98.24280302],[4.53681753,0.03778043,98.24242337],[4.53681797,0.03778217,98.24204587],[4.53681842,0.03778391,98.24167049],[4.53681886,0.03778566,98.24129722],[4.5368193,0.0377874,98.24092603],[4.53681974,0.03778914,98.24055693],[4.53682019,0.03779088,98.24018988],[4.53682063,0.03779263,98.23982487],[4.53682107,0.03779437,98.23946189],[4.53682152,0.03779611,98.23910092],[4.53682196,0.03779785,98.23874195],[4.5368224,0.0377996,98.23838495],[4.53682284,0.03780134,98.23802991],[4.53682329,0.03780308,98.23767682],[4.53682373,0.03780482,98.23732565],[4.53682417,0.03780657,98.2369764],[4.53682461,0.03780831,98.23662905],[4.53682505,0.03781005,98.23628357],[4.5368255,0.03781179,98.23593996],[4.53682594,0.03781354,98.2355982],[4.53682638,0.03781528,98.23525826],[4.53682682,0.03781702,98.23492015],[4.53682726,0.03781876,98.23458383],[4.5368277,0.0378205,98.23424929],[4.53682815,0.03782225,98.23391652],[4.53682859,0.03782399,98.23358549],[4.53682903,0.03782573,98.2332562],[4.53682947,0.03782747,98.23292863],[4.53682991,0.03782922,98.23260276],[4.53683035,0.03783096,98.23227857],[4.53683079,0.0378327,98.23195604],[4.53683124,0.03783444,98.23163517],[4.53683168,0.03783618,98.23131593],[4.53683212,0.03783793,98.2309983],[4.53683256,0.03783967,98.23068228],[4.536833,0.03784141,98.23036783],[4.53683344,0.03784315,98.23005495],[4.53683388,0.03784489,98.22974359],[4.53683432,0.03784664,98.2294337],[4.53683476,0.03784838,98.22912523],[4.53683521,0.03785012,98.22881814],[4.53683565,0.03785186,98.22851237],[4.53683608,0.03785356,98.22820785],[4.53683652,0.0378553,98.22790451],[4.53683696,0.03785704,98.22760229],[4.5368374,0.03785879,98.22730113],[4.53683784,0.03786053,98.22700095],[4.53683828,0.03786227,98.22670169],[4.53683872,0.03786402,98.22640329],[4.53683917,0.03786576,98.22610567],[4.53683961,0.0378675,98.22580878],[4.53684005,0.03786924,98.22551253],[4.53684049,0.03787099,98.22521687],[4.53684093,0.03787273,98.22492173],[4.53684137,0.03787447,98.22462704],[4.5368418,0.03787622,98.22433273],[4.53684224,0.03787796,98.22403873],[4.53684268,0.03787971,98.22374499],[4.53684311,0.03788145,98.22345141],[4.53684355,0.03788319,98.22315799],[4.53684398,0.03788494,98.22286561],[4.53684442,0.03788668,98.22257609],[4.53684485,0.03788843,98.2222913],[4.53684528,0.03789017,98.22201311],[4.53684572,0.03789192,98.22174338],[4.53684616,0.03789366,98.22148399],[4.5368466,0.0378954,98.22123681],[4.53684705,0.03789714,98.22100367],[4.5368475,0.03789888,98.22078485],[4.53684795,0.03790062,98.22057912],[4.5368484,0.03790236,98.22038517],[4.53684886,0.0379041,98.2202017],[4.53684932,0.03790584,98.22002741],[4.53684977,0.03790758,98.21986097],[4.53685023,0.03790932,98.21970108],[4.53685069,0.03791105,98.21954643],[4.53685115,0.03791279,98.21939569],[4.53685161,0.03791453,98.21924756],[4.53685207,0.03791627,98.2191007],[4.53685252,0.037918,98.21895383],[4.53685298,0.03791974,98.21880637],[4.53685343,0.03792148,98.21865845],[4.53685388,0.03792322,98.21851027],[4.53685433,0.03792496,98.21836198],[4.53685478,0.0379267,98.21821377],[4.53685523,0.03792844,98.21806581],[4.53685568,0.03793019,98.21791828],[4.53685612,0.03793193,98.21777135],[4.53685657,0.03793367,98.2176252],[4.53685701,0.03793541,98.21748001],[4.53685746,0.03793715,98.21733596],[4.5368579,0.0379389,98.21719319],[4.53685834,0.03794064,98.21705187],[4.53685878,0.03794238,98.21691215],[4.53685923,0.03794412,98.21677417],[4.53685967,0.03794586,98.2166381],[4.53686011,0.03794761,98.21650407],[4.53686055,0.03794935,98.21637225],[4.536861,0.03795109,98.21624275],[4.53686144,0.03795283,98.21611554],[4.53686188,0.03795458,98.21599053],[4.53686232,0.03795632,98.21586765],[4.53686277,0.03795806,98.21574683],[4.53686321,0.0379598,98.21562798],[4.53686366,0.03796155,98.21551104],[4.5368641,0.03796329,98.21539592],[4.53686454,0.03796503,98.21528254],[4.53686499,0.03796677,98.21517083],[4.53686544,0.03796851,98.21506072],[4.53686588,0.03797025,98.21495211],[4.53686633,0.037972,98.21484495],[4.53686678,0.03797374,98.21473913],[4.53686722,0.03797548,98.2146346],[4.53686767,0.03797722,98.21453126],[4.53686812,0.03797896,98.21442904],[4.53686857,0.0379807,98.21432786],[4.53686902,0.03798244,98.21422764],[4.53686947,0.03798418,98.21412831],[4.53686991,0.03798592,98.21402977],[4.53687036,0.03798766,98.21393195],[4.53687081,0.0379894,98.21383477],[4.53687126,0.03799115,98.21373815],[4.53687171,0.03799289,98.21364201],[4.53687216,0.03799463,98.21354626],[4.53687261,0.03799637,98.21345082],[4.53687306,0.03799811,98.21335562],[4.53687351,0.03799985,98.21326056],[4.53687396,0.03800159,98.21316558],[4.53687441,0.03800333,98.21307057],[4.53687486,0.03800507,98.21297547],[4.5368753,0.03800681,98.21288019],[4.53687575,0.03800855,98.21278483],[4.5368762,0.0380103,98.21268967],[4.53687665,0.03801204,98.21259499],[4.53687709,0.03801378,98.21250108],[4.53687754,0.03801552,98.21240824],[4.53687799,0.03801726,98.21231674],[4.53687844,0.038019,98.2122269],[4.53687888,0.03802074,98.21213899],[4.53687933,0.03802249,98.21205332],[4.53687978,0.03802423,98.21197019],[4.53688023,0.03802597,98.21188989],[4.53688068,0.03802771,98.21181272],[4.53688113,0.03802945,98.21173899],[4.53688158,0.03803119,98.211669],[4.53688203,0.03803293,98.21160305],[4.53688248,0.03803467,98.21154144],[4.53688294,0.03803641,98.21148449],[4.53688339,0.03803815,98.21143251],[4.53688385,0.03803989,98.21138579],[4.5368843,0.03804163,98.21134465],[4.53688476,0.03804337,98.21130902],[4.53688522,0.03804511,98.21127849],[4.53688568,0.03804684,98.21125265],[4.53688614,0.03804858,98.21123106],[4.5368866,0.03805032,98.21121329],[4.53688706,0.03805206,98.21119892],[4.53688753,0.03805379,98.2111875],[4.53688799,0.03805553,98.21117861],[4.53688845,0.03805727,98.21117181],[4.53688892,0.03805901,98.21116666],[4.53688938,0.03806074,98.21116271],[4.53688984,0.03806248,98.21115953],[4.53689031,0.03806422,98.21115668],[4.53689077,0.03806595,98.2111537],[4.53689123,0.03806769,98.21115015],[4.5368917,0.03806943,98.21114558],[4.53689216,0.03807117,98.21113954],[4.53689262,0.0380729,98.21113158],[4.53689308,0.03807464,98.21112123],[4.53689354,0.03807638,98.21110804],[4.53689401,0.03807812,98.21109156],[4.53689447,0.03807986,98.21107134],[4.53689493,0.03808159,98.21104756],[4.53689538,0.03808333,98.21102101],[4.53689584,0.03808507,98.2109925],[4.5368963,0.03808681,98.21096286],[4.53689676,0.03808855,98.21093291],[4.53689722,0.03809029,98.21090348],[4.53689768,0.03809203,98.21087541],[4.53689814,0.03809376,98.21084954],[4.5368986,0.0380955,98.2108267],[4.53689906,0.03809724,98.21080775],[4.53689952,0.03809898,98.21079353],[4.53689998,0.03810072,98.2107849],[4.53690044,0.03810246,98.21078271],[4.5369009,0.0381042,98.21078783],[4.53690136,0.03810593,98.21080112],[4.53690183,0.03810767,98.21082346],[4.53690229,0.0381094,98.21085568],[4.53690275,0.03811113,98.21089791],[4.53690322,0.03811287,98.21094955],[4.53690368,0.03811461,98.21100995],[4.53690415,0.03811635,98.21107849],[4.53690461,0.03811808,98.21115452],[4.53690507,0.03811982,98.21123739],[4.53690554,0.03812156,98.21132647],[4.536906,0.0381233,98.21142108],[4.53690646,0.03812504,98.2115206],[4.53690693,0.03812678,98.21162435],[4.53690739,0.03812852,98.21173168],[4.53690785,0.03813026,98.21184192],[4.53690831,0.03813199,98.21195441],[4.53690878,0.03813373,98.21206849],[4.53690924,0.03813547,98.21218347],[4.5369097,0.03813721,98.21229869],[4.53691017,0.03813895,98.21241347],[4.53691063,0.03814069,98.21252713],[4.53691109,0.03814243,98.21263898],[4.53691155,0.03814417,98.21274846],[4.53691202,0.03814591,98.21285553],[4.53691248,0.03814765,98.21296025],[4.53691294,0.03814939,98.21306269],[4.53691341,0.03815113,98.21316293],[4.53691387,0.03815287,98.21326103],[4.53691433,0.03815461,98.21335708],[4.53691479,0.03815635,98.21345114],[4.53691526,0.03815809,98.21354328],[4.53691572,0.03815983,98.2136336],[4.53691618,0.03816157,98.21372215],[4.53691665,0.03816331,98.21380901],[4.53691711,0.03816505,98.21389426],[4.53691757,0.03816679,98.21397798],[4.53691803,0.03816853,98.21406025],[4.5369185,0.03817027,98.21414113],[4.53691896,0.03817201,98.21422071],[4.53691942,0.03817375,98.21429907],[4.53691989,0.03817549,98.21437628],[4.53692035,0.03817723,98.21445243],[4.53692081,0.03817897,98.21452759],[4.53692128,0.03818071,98.21460184],[4.53692174,0.03818245,98.21467527],[4.5369222,0.0381842,98.21474795],[4.53692266,0.03818594,98.21481997],[4.53692313,0.03818768,98.21489141],[4.53692359,0.03818942,98.21496235],[4.53692405,0.03819116,98.21503287],[4.53692452,0.0381929,98.21510306],[4.53692498,0.03819464,98.215173],[4.53692544,0.03819638,98.21524278],[4.5369259,0.03819812,98.21531247]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1000400","id":2,"type":"none","predecessorId":2}},{"geometry":{"coordinates":[[4.5341558,0.02832429,96.56789043],[4.53415534,0.02832256,96.56735559],[4.53415488,0.02832083,96.56680275],[4.53415441,0.0283191,96.56623297],[4.53415395,0.02831737,96.5656473],[4.53415348,0.02831564,96.56504681],[4.53415301,0.02831391,96.56443255],[4.53415255,0.02831217,96.56380558],[4.53415208,0.02831044,96.56316695],[4.53415161,0.0283087,96.56251772],[4.53415114,0.02830696,96.56185896],[4.53415068,0.02830523,96.56119172],[4.53415021,0.02830349,96.56051706],[4.53414974,0.02830175,96.55983603],[4.53414927,0.02830001,96.5591497],[4.5341488,0.02829827,96.55845911],[4.53414833,0.02829653,96.55776534],[4.53414786,0.02829479,96.55706944],[4.53414739,0.02829305,96.55637245],[4.53414692,0.02829131,96.55567544],[4.53414645,0.02828957,96.55497939],[4.53414598,0.02828783,96.55428527],[4.53414551,0.02828609,96.55359407],[4.53414504,0.02828435,96.55290676],[4.53414457,0.02828261,96.55222433],[4.5341441,0.02828087,96.55154775],[4.53414363,0.02827913,96.55087801],[4.53414316,0.02827738,96.55021607],[4.53414269,0.02827564,96.54956292],[4.53414222,0.0282739,96.54891954],[4.53414174,0.02827215,96.54828691],[4.53414127,0.02827041,96.547666],[4.5341408,0.02826867,96.5470578],[4.53414033,0.02826692,96.54646328],[4.53413986,0.02826518,96.54588342],[4.53413939,0.02826343,96.54531921],[4.53413895,0.02826181,96.54481181]],"type":"LineString"},"type":"feature","properties":{"successorId":-5,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"3000480","id":-3,"type":"none","predecessorId":-3}},{"geometry":{"coordinates":[[4.53419866,0.02831106,96.56789043],[4.5341982,0.02830933,96.56735559],[4.53419773,0.02830759,96.56680275],[4.53419726,0.02830585,96.56623297],[4.53419679,0.02830411,96.5656473],[4.53419633,0.02830237,96.56504681],[4.53419586,0.02830063,96.56443255],[4.53419539,0.0282989,96.56380558],[4.53419492,0.02829716,96.56316695],[4.53419445,0.02829542,96.56251772],[4.53419398,0.02829368,96.56185896],[4.53419351,0.02829193,96.56119172],[4.53419304,0.02829019,96.56051706],[4.53419257,0.02828845,96.55983603],[4.5341921,0.02828671,96.5591497],[4.53419163,0.02828497,96.55845911],[4.53419116,0.02828323,96.55776534],[4.53419069,0.02828149,96.55706944],[4.53419022,0.02827975,96.55637245],[4.53418975,0.02827801,96.55567544],[4.53418928,0.02827627,96.55497939],[4.53418881,0.02827452,96.55428527],[4.53418834,0.02827278,96.55359407],[4.53418787,0.02827104,96.55290676],[4.5341874,0.0282693,96.55222433],[4.53418693,0.02826756,96.55154775],[4.53418646,0.02826582,96.55087801],[4.53418599,0.02826408,96.55021607],[4.53418552,0.02826233,96.54956292],[4.53418505,0.02826059,96.54891954],[4.53418458,0.02825885,96.54828691],[4.53418411,0.02825711,96.547666],[4.53418364,0.02825536,96.5470578],[4.53418317,0.02825362,96.54646328],[4.5341827,0.02825188,96.54588342],[4.53418223,0.02825013,96.54531921],[4.53418179,0.02824852,96.54481181]],"type":"LineString"},"type":"feature","properties":{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"3000480","id":-2,"type":"shoulder","predecessorId":-2}},{"geometry":{"coordinates":[[4.53420297,0.02830973,96.58221732],[4.5342025,0.028308,96.58163253],[4.53420203,0.02830626,96.58102982],[4.53420156,0.02830452,96.58041024],[4.53420109,0.02830278,96.57977485],[4.53420061,0.02830105,96.57912471],[4.53420014,0.02829931,96.57846087],[4.53419967,0.02829757,96.57778439],[4.53419919,0.02829583,96.57709634],[4.53419872,0.02829409,96.57639776],[4.53419825,0.02829235,96.57568971],[4.53419777,0.02829061,96.57497326],[4.5341973,0.02828887,96.57424947],[4.53419682,0.02828713,96.57351938],[4.53419635,0.02828539,96.57278406],[4.53419587,0.02828366,96.57204456],[4.5341954,0.02828192,96.57130195],[4.53419492,0.02828018,96.57055728],[4.53419445,0.02827844,96.5698116],[4.53419397,0.0282767,96.56906597],[4.5341935,0.02827496,96.56832137],[4.53419302,0.02827322,96.56757878],[4.53419255,0.02827148,96.56683919],[4.53419207,0.02826974,96.56610356],[4.5341916,0.028268,96.56537288],[4.53419112,0.02826626,96.56464812],[4.53419065,0.02826452,96.56393027],[4.53419017,0.02826278,96.56322031],[4.5341897,0.02826103,96.5625192],[4.53418922,0.02825929,96.56182794],[4.53418875,0.02825755,96.5611475],[4.53418827,0.02825581,96.56047886],[4.5341878,0.02825407,96.559823],[4.53418732,0.02825233,96.55918089],[4.53418685,0.02825059,96.55855353],[4.53418637,0.02824885,96.55794187],[4.53418593,0.02824724,96.55739064]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"3000480","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"entry","predecessorId":-1}},{"geometry":{"coordinates":[[4.53706545,0.03866439,98.15405543],[4.53706496,0.03866265,98.15443558],[4.53706447,0.03866092,98.1548162],[4.53706398,0.03865918,98.15519727],[4.53706349,0.03865744,98.15557875],[4.537063,0.03865571,98.15596062],[4.53706251,0.03865397,98.15634286],[4.53706203,0.03865223,98.15672544],[4.53706154,0.03865049,98.15710833],[4.53706105,0.03864876,98.15749151],[4.53706056,0.03864702,98.15787495],[4.53706008,0.03864528,98.15825862],[4.53705959,0.03864355,98.15864251],[4.5370591,0.03864181,98.15902659],[4.53705862,0.03864007,98.15941083],[4.53705813,0.03863833,98.15979521],[4.53705765,0.0386366,98.16017971],[4.53705716,0.03863486,98.16056429],[4.53705668,0.03863312,98.16094894],[4.53705619,0.03863138,98.16133364],[4.53705571,0.03862965,98.16171835],[4.53705522,0.03862791,98.16210306],[4.53705474,0.03862617,98.16248774],[4.53705425,0.03862443,98.16287237],[4.53705377,0.0386227,98.16325692],[4.53705328,0.03862096,98.16364138],[4.5370528,0.03861922,98.16402572],[4.53705232,0.03861748,98.16440992],[4.53705183,0.03861574,98.16479395],[4.53705135,0.03861401,98.1651778],[4.53705086,0.03861227,98.16556144],[4.53705038,0.03861053,98.16594485],[4.5370499,0.03860879,98.166328],[4.53704941,0.03860706,98.16671089],[4.53704893,0.03860532,98.16709347],[4.53704845,0.03860358,98.16747574],[4.53704796,0.03860184,98.16785767],[4.53704748,0.0386001,98.16823924],[4.537047,0.03859837,98.16862042],[4.53704651,0.03859663,98.16900121],[4.53704603,0.03859489,98.16938157],[4.53704555,0.03859315,98.16976148],[4.53704506,0.03859141,98.17014093],[4.53704458,0.03858968,98.1705199],[4.5370441,0.03858794,98.17089835],[4.53704361,0.0385862,98.17127628],[4.53704313,0.03858446,98.17165366],[4.53704265,0.03858272,98.17203047],[4.53704216,0.03858099,98.1724067],[4.53704168,0.03857925,98.17278231],[4.53704119,0.03857751,98.17315729],[4.53704071,0.03857577,98.17353162],[4.53704023,0.03857404,98.17390528],[4.53703974,0.0385723,98.17427826],[4.53703926,0.03857056,98.17465052],[4.53703877,0.03856882,98.17502205],[4.53703829,0.03856708,98.17539283],[4.53703781,0.03856535,98.17576284],[4.53703732,0.03856361,98.17613206],[4.53703684,0.03856187,98.17650048],[4.53703635,0.03856013,98.17686806],[4.53703587,0.0385584,98.17723479],[4.53703538,0.03855666,98.1776007],[4.53703489,0.03855492,98.17796584],[4.53703441,0.03855318,98.17833022],[4.53703392,0.03855145,98.17869387],[4.53703344,0.03854971,98.1790568],[4.53703295,0.03854797,98.17941904],[4.53703247,0.03854624,98.1797806],[4.53703198,0.0385445,98.18014149],[4.53703149,0.03854276,98.18050174],[4.53703101,0.03854102,98.18086137],[4.53703052,0.03853929,98.18122039],[4.53703003,0.03853755,98.18157882],[4.53702955,0.03853581,98.18193668],[4.53702906,0.03853408,98.18229398],[4.53702857,0.03853234,98.18265076],[4.53702809,0.0385306,98.18300701],[4.5370276,0.03852886,98.18336277],[4.53702711,0.03852713,98.18371804],[4.53702662,0.03852539,98.18407286],[4.53702614,0.03852365,98.18442723],[4.53702565,0.03852192,98.18478118],[4.53702516,0.03852018,98.18513472],[4.53702468,0.03851844,98.18548788],[4.53702419,0.03851671,98.18584066],[4.5370237,0.03851497,98.1861931],[4.53702321,0.03851323,98.1865452],[4.53702273,0.0385115,98.18689699],[4.53702224,0.03850976,98.18724849],[4.53702175,0.03850802,98.18759972],[4.53702126,0.03850629,98.18795069],[4.53702078,0.03850455,98.18830142],[4.53702029,0.03850281,98.18865193],[4.5370198,0.03850107,98.18900225],[4.53701931,0.03849934,98.18935238],[4.53701883,0.0384976,98.18970236],[4.53701834,0.03849586,98.1900522],[4.53701785,0.03849413,98.19040191],[4.53701737,0.03849239,98.19075153],[4.53701688,0.03849065,98.19110106],[4.53701639,0.03848892,98.19145053],[4.5370159,0.03848718,98.19179996],[4.53701542,0.03848544,98.19214936],[4.53701493,0.03848371,98.19249877],[4.53701444,0.03848197,98.19284819],[4.53701396,0.03848023,98.19319764],[4.53701347,0.03847849,98.19354716],[4.53701298,0.03847676,98.19389675],[4.5370125,0.03847502,98.19424644],[4.53701201,0.03847328,98.19459625],[4.53701152,0.03847155,98.1949462],[4.53701104,0.03846981,98.19529631],[4.53701055,0.03846807,98.19564659],[4.53701007,0.03846633,98.19599708],[4.53700958,0.0384646,98.19634779],[4.53700909,0.03846286,98.19669874],[4.53700861,0.03846112,98.19704996],[4.53700812,0.03845939,98.19740146],[4.53700764,0.03845765,98.19775326],[4.53700715,0.03845591,98.19810538],[4.53700667,0.03845417,98.19845779],[4.53700618,0.03845244,98.19881045],[4.5370057,0.0384507,98.1991633],[4.53700521,0.03844896,98.19951632],[4.53700473,0.03844722,98.19986947],[4.53700424,0.03844549,98.20022269],[4.53700376,0.03844375,98.20057596],[4.53700327,0.03844201,98.20092922],[4.53700279,0.03844027,98.20128244],[4.53700231,0.03843854,98.20163557],[4.53700182,0.0384368,98.2019886],[4.53700134,0.03843506,98.20234153],[4.53700085,0.03843332,98.2026944],[4.53700037,0.03843159,98.20304721],[4.53699988,0.03842985,98.20339999],[4.5369994,0.03842811,98.20375274],[4.53699891,0.03842637,98.20410549],[4.53699843,0.03842464,98.20445825],[4.53699794,0.0384229,98.20481104],[4.53699746,0.03842116,98.20516387],[4.53699697,0.03841942,98.20551677],[4.53699649,0.03841769,98.20586975],[4.536996,0.03841595,98.20622284],[4.53699552,0.03841421,98.20657606],[4.53699503,0.03841247,98.20692943],[4.53699455,0.03841074,98.20728297],[4.53699407,0.038409,98.20763671],[4.53699358,0.03840726,98.20799068],[4.5369931,0.03840552,98.20834489],[4.53699261,0.03840379,98.20869936],[4.53699213,0.03840205,98.20905413],[4.53699164,0.03840031,98.20940921],[4.53699116,0.03839857,98.20976463],[4.53699067,0.03839684,98.21012041],[4.53699019,0.0383951,98.21047657],[4.53698971,0.03839336,98.21083314],[4.53698922,0.03839162,98.21119014],[4.53698874,0.03838989,98.2115476],[4.53698826,0.03838815,98.21190554],[4.53698777,0.03838641,98.21226398],[4.53698729,0.03838467,98.21262295],[4.5369868,0.03838293,98.21298247],[4.53698632,0.0383812,98.21334256],[4.53698584,0.03837946,98.21370326],[4.53698536,0.03837772,98.21406458],[4.53698487,0.03837598,98.21442656],[4.53698439,0.03837425,98.2147892],[4.53698391,0.03837251,98.21515255],[4.53698342,0.03837077,98.21551662],[4.53698294,0.03836903,98.21588144],[4.53698246,0.03836729,98.21624703],[4.53698198,0.03836556,98.21661343],[4.5369815,0.03836382,98.21698064],[4.53698102,0.03836208,98.21734871],[4.53698053,0.03836034,98.21771765],[4.53698005,0.0383586,98.2180875],[4.53697957,0.03835686,98.21845827],[4.53697909,0.03835513,98.21882999],[4.53697861,0.03835339,98.21920269],[4.53697813,0.03835165,98.21957639],[4.53697765,0.03834991,98.21995113],[4.53697717,0.03834817,98.22032696],[4.53697669,0.03834643,98.2207039],[4.53697621,0.03834469,98.22108195],[4.53697573,0.03834296,98.22146109],[4.53697525,0.03834122,98.22184133],[4.53697477,0.03833948,98.22222265],[4.53697429,0.03833774,98.22260505],[4.53697382,0.038336,98.22298852],[4.53697334,0.03833426,98.22337305],[4.53697286,0.03833252,98.22375864],[4.53697238,0.03833078,98.22414527],[4.5369719,0.03832904,98.22453294],[4.53697143,0.03832731,98.22492165],[4.53697095,0.03832557,98.22531139],[4.53697047,0.03832383,98.22570214],[4.53696999,0.03832209,98.22609391],[4.53696952,0.03832035,98.22648668],[4.53696904,0.03831861,98.22688045],[4.53696856,0.03831687,98.22727522],[4.53696809,0.03831513,98.22767096],[4.53696761,0.03831339,98.22806768],[4.53696714,0.03831165,98.22846537],[4.53696666,0.03830991,98.22886403],[4.53696618,0.03830817,98.22926364],[4.53696571,0.03830643,98.22966419],[4.53696523,0.03830469,98.23006569],[4.53696476,0.03830295,98.23046812],[4.53696428,0.03830121,98.23087148],[4.5369638,0.03829947,98.23127576],[4.53696333,0.03829774,98.23168095],[4.53696285,0.038296,98.23208704],[4.53696238,0.03829426,98.23249404],[4.5369619,0.03829252,98.23290192],[4.53696143,0.03829078,98.23331069],[4.53696095,0.03828904,98.23372033],[4.53696048,0.0382873,98.23413085],[4.53696,0.03828556,98.23454222],[4.53695952,0.03828382,98.23495445],[4.53695905,0.03828208,98.23536753],[4.53695857,0.03828034,98.23578145],[4.5369581,0.0382786,98.2361962],[4.53695762,0.03827686,98.23661177],[4.53695715,0.03827512,98.23702817],[4.53695667,0.03827338,98.23744538],[4.5369562,0.03827164,98.23786339],[4.53695572,0.0382699,98.2382822],[4.53695525,0.03826816,98.2387018],[4.53695477,0.03826642,98.23912218],[4.5369543,0.03826468,98.23954333],[4.53695382,0.03826294,98.23996526],[4.53695334,0.0382612,98.24038795],[4.53695287,0.03825946,98.24081139],[4.53695239,0.03825772,98.24123557],[4.53695192,0.03825599,98.2416605],[4.53695144,0.03825425,98.24208615],[4.53695096,0.03825251,98.24251254],[4.53695049,0.03825077,98.24293964],[4.53695001,0.03824903,98.24336745],[4.53694953,0.03824729,98.24379596],[4.53694906,0.03824555,98.24422517],[4.53694858,0.03824381,98.24465506],[4.5369481,0.03824207,98.24508561],[4.53694763,0.03824033,98.2455168],[4.53694715,0.03823859,98.24594863],[4.53694667,0.03823685,98.24638108],[4.53694619,0.03823511,98.24681412],[4.53694572,0.03823337,98.24724774],[4.53694524,0.03823164,98.24768193],[4.53694439,0.03822999,98.246982],[4.53694338,0.03822838,98.24582159],[4.53694238,0.03822677,98.24466079],[4.53694138,0.03822516,98.24349962],[4.53694038,0.03822355,98.24233811],[4.53693937,0.03822194,98.24117629],[4.53693837,0.03822033,98.2400142],[4.53693737,0.03821872,98.23885187],[4.53693636,0.03821711,98.23768932],[4.53693536,0.0382155,98.23652659],[4.53693436,0.03821389,98.23536371],[4.53693336,0.03821228,98.23420073],[4.53693235,0.03821067,98.23303766],[4.53693135,0.03820906,98.23187454],[4.53693035,0.03820744,98.23071142],[4.53692935,0.03820583,98.22954832],[4.53692834,0.03820422,98.22838528],[4.53692734,0.03820261,98.22722234],[4.53692697,0.03820201,98.22678856]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","rules":[{"value":"barred"}],"id":-3,"type":"restricted","predecessorId":0}},{"geometry":{"coordinates":[[4.53706545,0.03866439,98.15405543],[4.53706502,0.03866264,98.15462517],[4.5370646,0.03866088,98.15519553],[4.53706418,0.03865913,98.15576649],[4.53706375,0.03865738,98.156338],[4.53706333,0.03865563,98.15691001],[4.53706291,0.03865387,98.1574825],[4.53706249,0.03865212,98.15805543],[4.53706207,0.03865037,98.15862874],[4.53706165,0.03864861,98.15920241],[4.53706123,0.03864686,98.15977639],[4.53706081,0.03864511,98.16035065],[4.53706039,0.03864335,98.16092515],[4.53705997,0.0386416,98.16149984],[4.53705955,0.03863985,98.1620747],[4.53705913,0.03863809,98.16264968],[4.53705871,0.03863634,98.16322475],[4.53705829,0.03863458,98.16379987],[4.53705788,0.03863283,98.164375],[4.53705746,0.03863108,98.16495011],[4.53705704,0.03862932,98.16552516],[4.53705662,0.03862757,98.16610011],[4.53705621,0.03862581,98.16667492],[4.53705579,0.03862406,98.16724957],[4.53705537,0.03862231,98.167824],[4.53705496,0.03862055,98.1683982],[4.53705454,0.0386188,98.16897212],[4.53705413,0.03861704,98.16954572],[4.53705371,0.03861529,98.17011898],[4.53705329,0.03861353,98.17069185],[4.53705288,0.03861178,98.1712643],[4.53705246,0.03861002,98.1718363],[4.53705205,0.03860827,98.1724078],[4.53705163,0.03860652,98.17297879],[4.53705121,0.03860476,98.17354921],[4.5370508,0.03860301,98.17411903],[4.53705038,0.03860125,98.17468823],[4.53704997,0.0385995,98.17525676],[4.53704955,0.03859774,98.1758246],[4.53704913,0.03859599,98.1763917],[4.53704872,0.03859424,98.17695803],[4.5370483,0.03859248,98.17752356],[4.53704788,0.03859073,98.17808825],[4.53704747,0.03858897,98.17865208],[4.53704705,0.03858722,98.17921499],[4.53704663,0.03858546,98.17977697],[4.53704622,0.03858371,98.18033798],[4.5370458,0.03858196,98.18089797],[4.53704538,0.0385802,98.18145693],[4.53704496,0.03857845,98.1820148],[4.53704455,0.0385767,98.18257157],[4.53704413,0.03857494,98.18312719],[4.53704371,0.03857319,98.18368163],[4.53704329,0.03857143,98.18423486],[4.53704287,0.03856968,98.18478685],[4.53704245,0.03856793,98.18533755],[4.53704203,0.03856617,98.18588693],[4.53704161,0.03856442,98.18643496],[4.53704119,0.03856267,98.18698161],[4.53704077,0.03856091,98.18752685],[4.53704035,0.03855916,98.18807062],[4.53703993,0.03855741,98.18861291],[4.5370395,0.03855566,98.18915373],[4.53703908,0.0385539,98.1896931],[4.53703866,0.03855215,98.19023109],[4.53703823,0.0385504,98.19076773],[4.53703781,0.03854864,98.19130308],[4.53703739,0.03854689,98.19183718],[4.53703696,0.03854514,98.19237007],[4.53703654,0.03854339,98.1929018],[4.53703611,0.03854164,98.19343242],[4.53703569,0.03853988,98.19396196],[4.53703526,0.03853813,98.19449049],[4.53703483,0.03853638,98.19501804],[4.53703441,0.03853463,98.19554466],[4.53703398,0.03853288,98.19607039],[4.53703355,0.03853112,98.19659529],[4.53703313,0.03852937,98.19711938],[4.5370327,0.03852762,98.19764273],[4.53703227,0.03852587,98.19816538],[4.53703185,0.03852412,98.19868736],[4.53703142,0.03852237,98.19920873],[4.53703099,0.03852062,98.19972953],[4.53703056,0.03851886,98.20024981],[4.53703013,0.03851711,98.20076961],[4.53702971,0.03851536,98.20128898],[4.53702928,0.03851361,98.20180796],[4.53702885,0.03851186,98.2023266],[4.53702842,0.03851011,98.20284494],[4.53702799,0.03850836,98.20336303],[4.53702756,0.03850661,98.20388092],[4.53702713,0.03850485,98.20439864],[4.53702671,0.0385031,98.20491624],[4.53702628,0.03850135,98.20543378],[4.53702585,0.0384996,98.20595129],[4.53702542,0.03849785,98.20646882],[4.53702499,0.0384961,98.20698642],[4.53702456,0.03849435,98.20750413],[4.53702413,0.0384926,98.20802199],[4.53702371,0.03849084,98.20854006],[4.53702328,0.03848909,98.20905838],[4.53702285,0.03848734,98.20957699],[4.53702242,0.03848559,98.21009594],[4.53702199,0.03848384,98.21061527],[4.53702156,0.03848209,98.21113503],[4.53702114,0.03848034,98.21165528],[4.53702071,0.03847858,98.21217604],[4.53702028,0.03847683,98.21269737],[4.53701985,0.03847508,98.21321932],[4.53701943,0.03847333,98.21374193],[4.537019,0.03847158,98.21426525],[4.53701857,0.03846983,98.21478932],[4.53701815,0.03846807,98.21531419],[4.53701772,0.03846632,98.2158399],[4.5370173,0.03846457,98.21636651],[4.53701687,0.03846282,98.21689406],[4.53701645,0.03846107,98.21742259],[4.53701602,0.03845931,98.21795216],[4.5370156,0.03845756,98.21848281],[4.53701517,0.03845581,98.21901458],[4.53701475,0.03845406,98.21954752],[4.53701433,0.0384523,98.22008162],[4.5370139,0.03845055,98.22061686],[4.53701348,0.0384488,98.22115323],[4.53701306,0.03844705,98.22169072],[4.53701264,0.03844529,98.2222293],[4.53701221,0.03844354,98.22276897],[4.53701179,0.03844179,98.22330971],[4.53701137,0.03844003,98.2238515],[4.53701095,0.03843828,98.22439432],[4.53701053,0.03843653,98.22493816],[4.53701011,0.03843478,98.22548299],[4.53700969,0.03843302,98.22602879],[4.53700927,0.03843127,98.22657554],[4.53700885,0.03842951,98.22712322],[4.53700843,0.03842776,98.22767181],[4.53700801,0.03842601,98.22822128],[4.53700759,0.03842425,98.22877162],[4.53700717,0.0384225,98.22932281],[4.53700675,0.03842075,98.22987482],[4.53700633,0.03841899,98.23042763],[4.53700592,0.03841724,98.23098122],[4.5370055,0.03841549,98.23153558],[4.53700508,0.03841373,98.23209069],[4.53700466,0.03841198,98.23264654],[4.53700424,0.03841022,98.2332031],[4.53700383,0.03840847,98.23376037],[4.53700341,0.03840672,98.23431832],[4.53700299,0.03840496,98.23487694],[4.53700257,0.03840321,98.23543622],[4.53700216,0.03840146,98.23599614],[4.53700174,0.0383997,98.23655668],[4.53700132,0.03839795,98.23711783],[4.5370009,0.03839619,98.23767956],[4.53700049,0.03839444,98.23824187],[4.53700007,0.03839269,98.23880474],[4.53699965,0.03839093,98.23936816],[4.53699923,0.03838918,98.23993209],[4.53699882,0.03838742,98.24049654],[4.5369984,0.03838567,98.24106148],[4.53699798,0.03838392,98.24162689],[4.53699757,0.03838216,98.24219276],[4.53699715,0.03838041,98.24275908],[4.53699673,0.03837865,98.24332582],[4.53699631,0.0383769,98.24389297],[4.5369959,0.03837515,98.24446051],[4.53699548,0.03837339,98.24502843],[4.53699506,0.03837164,98.24559671],[4.53699464,0.03836988,98.24616532],[4.53699423,0.03836813,98.24673427],[4.53699381,0.03836638,98.24730351],[4.53699339,0.03836462,98.24787305],[4.53699297,0.03836287,98.24844286],[4.53699255,0.03836111,98.24901293],[4.53699213,0.03835936,98.24958323],[4.53699172,0.03835761,98.25015375],[4.5369913,0.03835585,98.25072447],[4.53699088,0.0383541,98.25129538],[4.53699046,0.03835235,98.25186646],[4.53699004,0.03835059,98.25243768],[4.53698962,0.03834884,98.25300904],[4.5369892,0.03834709,98.25358052],[4.53698878,0.03834533,98.25415212],[4.53698836,0.03834358,98.25472389],[4.53698794,0.03834183,98.25529582],[4.53698752,0.03834007,98.25586794],[4.5369871,0.03833832,98.25644027],[4.53698668,0.03833657,98.25701284],[4.53698626,0.03833481,98.25758565],[4.53698584,0.03833306,98.25815874],[4.53698542,0.03833131,98.25873211],[4.536985,0.03832955,98.25930579],[4.53698457,0.0383278,98.2598798],[4.53698415,0.03832605,98.26045416],[4.53698373,0.0383243,98.26102888],[4.53698331,0.03832254,98.26160399],[4.53698289,0.03832079,98.26217951],[4.53698246,0.03831904,98.26275546],[4.53698204,0.03831728,98.26333185],[4.53698162,0.03831553,98.26390871],[4.5369812,0.03831378,98.26448606],[4.53698077,0.03831203,98.26506391],[4.53698035,0.03831027,98.26564229],[4.53697993,0.03830852,98.26622121],[4.5369795,0.03830677,98.26680071],[4.53697908,0.03830502,98.26738078],[4.53697866,0.03830326,98.26796147],[4.53697824,0.03830151,98.26854278],[4.53697781,0.03829976,98.26912474],[4.53697739,0.03829801,98.26970736],[4.53697696,0.03829625,98.27029067],[4.53697654,0.0382945,98.27087469],[4.53697612,0.03829275,98.27145944],[4.53697569,0.038291,98.27204493],[4.53697527,0.03828924,98.27263119],[4.53697485,0.03828749,98.27321824],[4.53697442,0.03828574,98.2738061],[4.536974,0.03828399,98.27439479],[4.53697357,0.03828224,98.27498433],[4.53697315,0.03828048,98.27557473],[4.53697273,0.03827873,98.27616603],[4.5369723,0.03827698,98.27675824],[4.53697188,0.03827523,98.27735138],[4.53697145,0.03827347,98.27794547],[4.53697103,0.03827172,98.27854054],[4.5369706,0.03826997,98.2791366],[4.53697018,0.03826822,98.27973367],[4.53696976,0.03826646,98.28033178],[4.53696933,0.03826471,98.28093094],[4.53696891,0.03826296,98.28153118],[4.53696848,0.03826121,98.28213252],[4.53696806,0.03825946,98.28273497],[4.53696763,0.0382577,98.28333857],[4.53696721,0.03825595,98.28394332],[4.53696679,0.0382542,98.28454925],[4.53696636,0.03825245,98.28515639],[4.53696594,0.03825069,98.28576475],[4.53696551,0.03824894,98.28637435],[4.53696509,0.03824719,98.28698522],[4.53696467,0.03824544,98.28759737],[4.53696424,0.03824369,98.28821083],[4.53696382,0.03824193,98.28882562],[4.53696339,0.03824018,98.28944175],[4.53696297,0.03823843,98.29005923],[4.53696255,0.03823668,98.29067807],[4.53696212,0.03823492,98.29129829],[4.5369617,0.03823317,98.2919199],[4.53696127,0.03823142,98.29254291],[4.53696085,0.03822967,98.29316734],[4.53696043,0.03822791,98.29379319],[4.53696,0.03822616,98.29442048],[4.53695958,0.03822441,98.29504921],[4.53695916,0.03822266,98.29567941],[4.53695873,0.0382209,98.29631109],[4.53695831,0.03821915,98.29694425],[4.53695789,0.0382174,98.29757891],[4.53695746,0.03821565,98.29821508],[4.53695704,0.03821389,98.29885277],[4.53695662,0.03821214,98.299492],[4.5369562,0.03821039,98.30013278],[4.53695577,0.03820864,98.30077511],[4.53695535,0.03820688,98.30141902],[4.53695493,0.03820513,98.30206451],[4.53695451,0.03820338,98.3027116],[4.53695408,0.03820163,98.3033603],[4.53695366,0.03819987,98.30401062],[4.53695324,0.03819812,98.30466257],[4.53695282,0.03819637,98.30531617],[4.53695266,0.03819571,98.3055604]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":0}},{"geometry":{"coordinates":[[4.53709748,0.0386566,98.24683369],[4.53709706,0.03865484,98.24731992],[4.53709664,0.03865309,98.24780668],[4.53709621,0.03865134,98.24829399],[4.53709579,0.03864958,98.24878183],[4.53709537,0.03864783,98.24927021],[4.53709495,0.03864608,98.24975913],[4.53709452,0.03864433,98.25024861],[4.5370941,0.03864257,98.25073863],[4.53709368,0.03864082,98.2512292],[4.53709325,0.03863907,98.25172033],[4.53709283,0.03863732,98.25221202],[4.53709241,0.03863556,98.25270426],[4.53709198,0.03863381,98.25319706],[4.53709156,0.03863206,98.25369043],[4.53709114,0.0386303,98.25418437],[4.53709071,0.03862855,98.25467887],[4.53709029,0.0386268,98.25517394],[4.53708987,0.03862505,98.25566959],[4.53708944,0.03862329,98.25616581],[4.53708902,0.03862154,98.25666262],[4.5370886,0.03861979,98.25716],[4.53708817,0.03861803,98.25765796],[4.53708775,0.03861628,98.25815651],[4.53708733,0.03861453,98.25865565],[4.5370869,0.03861278,98.25915538],[4.53708648,0.03861102,98.2596557],[4.53708606,0.03860927,98.26015662],[4.53708563,0.03860752,98.26065813],[4.53708521,0.03860576,98.26116025],[4.53708479,0.03860401,98.26166296],[4.53708436,0.03860226,98.26216628],[4.53708394,0.03860051,98.26267021],[4.53708352,0.03859875,98.26317475],[4.53708309,0.038597,98.2636799],[4.53708267,0.03859525,98.26418566],[4.53708225,0.0385935,98.26469204],[4.53708182,0.03859174,98.26519904],[4.5370814,0.03858999,98.26570666],[4.53708098,0.03858824,98.2662149],[4.53708055,0.03858648,98.26672377],[4.53708013,0.03858473,98.26723327],[4.53707971,0.03858298,98.2677434],[4.53707928,0.03858123,98.26825417],[4.53707886,0.03857947,98.26876556],[4.53707844,0.03857772,98.2692776],[4.53707801,0.03857597,98.26979028],[4.53707759,0.03857422,98.2703036],[4.53707717,0.03857246,98.27081757],[4.53707674,0.03857071,98.27133218],[4.53707632,0.03856896,98.27184745],[4.5370759,0.0385672,98.27236337],[4.53707547,0.03856545,98.27287994],[4.53707505,0.0385637,98.27339717],[4.53707463,0.03856195,98.27391506],[4.5370742,0.03856019,98.27443362],[4.53707378,0.03855844,98.27495284],[4.53707335,0.03855669,98.27547272],[4.53707293,0.03855494,98.27599328],[4.53707251,0.03855318,98.2765145],[4.53707208,0.03855143,98.27703641],[4.53707166,0.03854968,98.27755899],[4.53707124,0.03854792,98.27808225],[4.53707081,0.03854617,98.27860619],[4.53707039,0.03854442,98.27913081],[4.53706997,0.03854267,98.27965612],[4.53706954,0.03854091,98.28018213],[4.53706912,0.03853916,98.28070882],[4.5370687,0.03853741,98.28123621],[4.53706827,0.03853566,98.28176429],[4.53706785,0.0385339,98.28229308],[4.53706743,0.03853215,98.28282256],[4.537067,0.0385304,98.28335275],[4.53706658,0.03852864,98.28388365],[4.53706616,0.03852689,98.28441526],[4.53706573,0.03852514,98.28494757],[4.53706531,0.03852339,98.2854806],[4.53706488,0.03852163,98.28601435],[4.53706446,0.03851988,98.28654882],[4.53706404,0.03851813,98.28708401],[4.53706361,0.03851638,98.28761992],[4.53706319,0.03851462,98.28815656],[4.53706277,0.03851287,98.28869393],[4.53706234,0.03851112,98.28923204],[4.53706192,0.03850936,98.28977087],[4.5370615,0.03850761,98.29031044],[4.53706107,0.03850586,98.29085076],[4.53706065,0.03850411,98.29139181],[4.53706023,0.03850235,98.29193361],[4.5370598,0.0385006,98.29247615],[4.53705938,0.03849885,98.29301945],[4.53705896,0.0384971,98.2935635],[4.53705853,0.03849534,98.2941083],[4.53705811,0.03849359,98.29465386],[4.53705769,0.03849184,98.29520018],[4.53705726,0.03849008,98.29574726],[4.53705684,0.03848833,98.29629511],[4.53705642,0.03848658,98.29684372],[4.53705599,0.03848483,98.29739311],[4.53705557,0.03848307,98.29794327],[4.53705515,0.03848132,98.2984942],[4.53705472,0.03847957,98.29904591],[4.5370543,0.03847781,98.2995984],[4.53705388,0.03847606,98.30015168],[4.53705345,0.03847431,98.30070574],[4.53705303,0.03847256,98.30126059],[4.53705261,0.0384708,98.30181623],[4.53705218,0.03846905,98.30237267],[4.53705176,0.0384673,98.3029299],[4.53705134,0.03846555,98.30348793],[4.53705091,0.03846379,98.30404677],[4.53705049,0.03846204,98.3046064],[4.53705007,0.03846029,98.30516685],[4.53704965,0.03845853,98.30572811],[4.53704922,0.03845678,98.30629017],[4.5370488,0.03845503,98.30685306],[4.53704838,0.03845328,98.30741676],[4.53704795,0.03845152,98.30798128],[4.53704753,0.03844977,98.30854663],[4.53704711,0.03844802,98.3091128],[4.53704668,0.03844626,98.3096798],[4.53704626,0.03844451,98.31024763],[4.53704584,0.03844276,98.3108163],[4.53704541,0.03844101,98.3113858],[4.53704499,0.03843925,98.31195614],[4.53704457,0.0384375,98.31252733],[4.53704415,0.03843575,98.31309936],[4.53704372,0.03843399,98.31367224],[4.5370433,0.03843224,98.31424597],[4.53704288,0.03843049,98.31482054],[4.53704246,0.03842874,98.31539596],[4.53704203,0.03842698,98.31597223],[4.53704161,0.03842523,98.31654933],[4.53704119,0.03842348,98.31712727],[4.53704076,0.03842172,98.31770603],[4.53704034,0.03841997,98.31828563],[4.53703992,0.03841822,98.31886606],[4.5370395,0.03841647,98.3194473],[4.53703907,0.03841471,98.32002937],[4.53703865,0.03841296,98.32061225],[4.53703823,0.03841121,98.32119595],[4.53703781,0.03840945,98.32178046],[4.53703738,0.0384077,98.32236578],[4.53703696,0.03840595,98.32295191],[4.53703654,0.03840419,98.32353886],[4.53703611,0.03840244,98.32412664],[4.53703569,0.03840069,98.32471523],[4.53703527,0.03839894,98.32530465],[4.53703485,0.03839718,98.3258949],[4.53703442,0.03839543,98.32648597],[4.537034,0.03839368,98.32707788],[4.53703358,0.03839192,98.32767063],[4.53703316,0.03839017,98.32826421],[4.53703273,0.03838842,98.32885862],[4.53703231,0.03838667,98.32945388],[4.53703189,0.03838491,98.33004999],[4.53703146,0.03838316,98.33064694],[4.53703104,0.03838141,98.33124474],[4.53703062,0.03837965,98.33184339],[4.5370302,0.0383779,98.3324429],[4.53702977,0.03837615,98.33304326],[4.53702935,0.0383744,98.33364448],[4.53702893,0.03837264,98.33424656],[4.53702851,0.03837089,98.33484951],[4.53702808,0.03836914,98.33545332],[4.53702766,0.03836738,98.336058],[4.53702724,0.03836563,98.33666355],[4.53702681,0.03836388,98.33726997],[4.53702639,0.03836213,98.33787727],[4.53702597,0.03836037,98.33848545],[4.53702555,0.03835862,98.33909451],[4.53702512,0.03835687,98.33970446],[4.5370247,0.03835511,98.34031529],[4.53702428,0.03835336,98.340927],[4.53702386,0.03835161,98.34153961],[4.53702343,0.03834985,98.34215312],[4.53702301,0.0383481,98.34276751],[4.53702259,0.03834635,98.34338281],[4.53702217,0.0383446,98.34399901],[4.53702174,0.03834284,98.34461611],[4.53702132,0.03834109,98.34523411],[4.5370209,0.03833934,98.34585303],[4.53702047,0.03833758,98.34647285],[4.53702005,0.03833583,98.34709359],[4.53701963,0.03833408,98.34771524],[4.53701921,0.03833233,98.34833782],[4.53701878,0.03833057,98.34896131],[4.53701836,0.03832882,98.34958572],[4.53701794,0.03832707,98.35021107],[4.53701752,0.03832531,98.35083734],[4.53701709,0.03832356,98.35146454],[4.53701667,0.03832181,98.35209267],[4.53701625,0.03832005,98.35272174],[4.53701583,0.0383183,98.35335175],[4.5370154,0.03831655,98.3539827],[4.53701498,0.0383148,98.3546146],[4.53701456,0.03831304,98.35524743],[4.53701414,0.03831129,98.35588122],[4.53701371,0.03830954,98.35651596],[4.53701329,0.03830778,98.35715165],[4.53701287,0.03830603,98.3577883],[4.53701245,0.03830428,98.35842591],[4.53701202,0.03830253,98.35906448],[4.5370116,0.03830077,98.35970401],[4.53701118,0.03829902,98.36034451],[4.53701076,0.03829727,98.36098597],[4.53701033,0.03829551,98.36162841],[4.53700991,0.03829376,98.36227182],[4.53700949,0.03829201,98.36291621],[4.53700907,0.03829025,98.36356158],[4.53700865,0.0382885,98.36420793],[4.53700822,0.03828675,98.36485526],[4.5370078,0.038285,98.36550358],[4.53700738,0.03828324,98.36615289],[4.53700696,0.03828149,98.36680319],[4.53700653,0.03827974,98.36745448],[4.53700611,0.03827798,98.36810677],[4.53700569,0.03827623,98.36876007],[4.53700527,0.03827448,98.36941436],[4.53700484,0.03827272,98.37006965],[4.53700442,0.03827097,98.37072596],[4.537004,0.03826922,98.37138327],[4.53700358,0.03826747,98.3720416],[4.53700316,0.03826571,98.37270094],[4.53700273,0.03826396,98.3733613],[4.53700231,0.03826221,98.37402267],[4.53700189,0.03826045,98.37468507],[4.53700147,0.0382587,98.3753485],[4.53700105,0.03825695,98.37601295],[4.53700062,0.03825519,98.37667843],[4.5370002,0.03825344,98.37734494],[4.53699978,0.03825169,98.37801249],[4.53699936,0.03824993,98.37868108],[4.53699894,0.03824818,98.37935071],[4.53699851,0.03824643,98.38002138],[4.53699809,0.03824468,98.38069309],[4.53699767,0.03824292,98.38136586],[4.53699725,0.03824117,98.38203967],[4.53699683,0.03823942,98.38271454],[4.5369964,0.03823766,98.38339046],[4.53699598,0.03823591,98.38406744],[4.53699556,0.03823416,98.38474548],[4.53699514,0.0382324,98.38542458],[4.53699472,0.03823065,98.38610472],[4.53699429,0.0382289,98.3867859],[4.53699387,0.03822714,98.38746812],[4.53699345,0.03822539,98.38815136],[4.53699303,0.03822364,98.38883563],[4.53699261,0.03822189,98.38952091],[4.53699219,0.03822013,98.3902072],[4.53699176,0.03821838,98.39089449],[4.53699134,0.03821663,98.39158278],[4.53699092,0.03821487,98.39227205],[4.5369905,0.03821312,98.39296231],[4.53699008,0.03821137,98.39365354],[4.53698965,0.03820961,98.39434574],[4.53698923,0.03820786,98.3950389],[4.53698881,0.03820611,98.39573302],[4.53698839,0.03820435,98.39642808],[4.53698797,0.0382026,98.39712409],[4.53698754,0.03820085,98.39782102],[4.53698712,0.0381991,98.39851889],[4.5369867,0.03819734,98.39921767],[4.53698628,0.03819559,98.39991737],[4.53698586,0.03819384,98.40061798],[4.53698543,0.03819208,98.40131948],[4.53698501,0.03819033,98.40202188],[4.53698459,0.03818858,98.40272516],[4.53698443,0.03818792,98.40298773]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":0}},{"geometry":{"coordinates":[[4.53701917,0.0381794,98.50952094],[4.53701934,0.03818006,98.50925029],[4.53701977,0.03818181,98.50852539],[4.5370202,0.03818356,98.50780143],[4.53702064,0.03818531,98.50707838],[4.53702107,0.03818706,98.50635623],[4.5370215,0.03818881,98.50563496],[4.53702194,0.03819056,98.50491456],[4.53702237,0.03819231,98.50419501],[4.5370228,0.03819406,98.50347628],[4.53702324,0.03819581,98.50275836],[4.53702367,0.03819756,98.50204124],[4.5370241,0.03819931,98.5013249],[4.53702454,0.03820106,98.50060932],[4.53702497,0.03820281,98.49989448],[4.53702541,0.03820456,98.49918036],[4.53702584,0.03820632,98.49846695],[4.53702627,0.03820807,98.49775423],[4.53702671,0.03820982,98.49704219],[4.53702714,0.03821157,98.4963308],[4.53702758,0.03821332,98.49562005],[4.53702801,0.03821507,98.49490993],[4.53702844,0.03821682,98.49420041],[4.53702888,0.03821857,98.49349148],[4.53702931,0.03822032,98.49278312],[4.53702974,0.03822207,98.49207532],[4.53703018,0.03822382,98.49136805],[4.53703061,0.03822557,98.49066131],[4.53703104,0.03822732,98.48995508],[4.53703148,0.03822907,98.48924933],[4.53703191,0.03823082,98.48854405],[4.53703234,0.03823257,98.48783921],[4.53703278,0.03823432,98.48713478],[4.53703321,0.03823607,98.48643074],[4.53703364,0.03823783,98.48572707],[4.53703407,0.03823958,98.48502373],[4.53703451,0.03824133,98.48432071],[4.53703494,0.03824308,98.48361798],[4.53703537,0.03824483,98.48291551],[4.5370358,0.03824658,98.48221328],[4.53703623,0.03824833,98.48151127],[4.53703667,0.03825008,98.48080945],[4.5370371,0.03825183,98.4801078],[4.53703753,0.03825358,98.47940629],[4.53703796,0.03825534,98.4787049],[4.53703839,0.03825709,98.47800361],[4.53703882,0.03825884,98.47730238],[4.53703925,0.03826059,98.4766012],[4.53703968,0.03826234,98.47590005],[4.53704011,0.03826409,98.47519889],[4.53704054,0.03826584,98.47449771],[4.53704096,0.0382676,98.47379648],[4.53704139,0.03826935,98.47309518],[4.53704182,0.0382711,98.47239379],[4.53704225,0.03827285,98.47169228],[4.53704268,0.0382746,98.47099062],[4.5370431,0.03827636,98.47028881],[4.53704353,0.03827811,98.4695868],[4.53704396,0.03827986,98.46888459],[4.53704438,0.03828161,98.46818214],[4.53704481,0.03828337,98.46747944],[4.53704523,0.03828512,98.46677645],[4.53704566,0.03828687,98.4660732],[4.53704608,0.03828862,98.46536972],[4.5370465,0.03829038,98.46466604],[4.53704693,0.03829213,98.4639622],[4.53704735,0.03829388,98.46325824],[4.53704777,0.03829564,98.46255419],[4.53704819,0.03829739,98.4618501],[4.53704862,0.03829914,98.461146],[4.53704904,0.0383009,98.46044193],[4.53704946,0.03830265,98.45973792],[4.53704988,0.0383044,98.45903401],[4.5370503,0.03830616,98.45833024],[4.53705072,0.03830791,98.45762665],[4.53705114,0.03830966,98.45692327],[4.53705156,0.03831142,98.45622014],[4.53705198,0.03831317,98.45551729],[4.5370524,0.03831493,98.45481476],[4.53705282,0.03831668,98.4541126],[4.53705324,0.03831844,98.45341082],[4.53705366,0.03832019,98.45270948],[4.53705407,0.03832194,98.4520086],[4.53705449,0.0383237,98.45130823],[4.53705491,0.03832545,98.45060839],[4.53705533,0.03832721,98.44990913],[4.53705574,0.03832896,98.44921047],[4.53705616,0.03833072,98.44851247],[4.53705658,0.03833247,98.44781514],[4.537057,0.03833422,98.44711853],[4.53705741,0.03833598,98.44642268],[4.53705783,0.03833773,98.44572761],[4.53705825,0.03833949,98.44503336],[4.53705866,0.03834124,98.44433997],[4.53705908,0.038343,98.44364748],[4.5370595,0.03834475,98.44295591],[4.53705991,0.03834651,98.44226531],[4.53706033,0.03834826,98.4415757],[4.53706074,0.03835002,98.44088713],[4.53706116,0.03835177,98.44019962],[4.53706158,0.03835353,98.43951322],[4.53706199,0.03835528,98.43882795],[4.53706241,0.03835704,98.43814386],[4.53706282,0.03835879,98.43746097],[4.53706324,0.03836055,98.43677932],[4.53706366,0.0383623,98.43609895],[4.53706407,0.03836406,98.43541988],[4.53706449,0.03836581,98.43474216],[4.5370649,0.03836757,98.43406581],[4.53706532,0.03836932,98.43339088],[4.53706574,0.03837107,98.43271739],[4.53706615,0.03837283,98.43204538],[4.53706657,0.03837458,98.43137488],[4.53706699,0.03837634,98.43070592],[4.5370674,0.03837809,98.43003855],[4.53706782,0.03837985,98.42937279],[4.53706824,0.0383816,98.42870868],[4.53706865,0.03838336,98.42804625],[4.53706907,0.03838511,98.42738554],[4.53706949,0.03838687,98.42672657],[4.53706991,0.03838862,98.42606938],[4.53707032,0.03839038,98.42541401],[4.53707074,0.03839213,98.42476048],[4.53707116,0.03839388,98.42410884],[4.53707158,0.03839564,98.42345911],[4.537072,0.03839739,98.42281133],[4.53707242,0.03839915,98.42216553],[4.53707283,0.0384009,98.42152174],[4.53707325,0.03840265,98.42088],[4.53707367,0.03840441,98.42024034],[4.53707409,0.03840616,98.41960279],[4.53707451,0.03840792,98.41896741],[4.53707493,0.03840967,98.41833421],[4.53707535,0.03841142,98.41770318],[4.53707577,0.03841318,98.4170743],[4.5370762,0.03841493,98.41644756],[4.53707662,0.03841668,98.41582293],[4.53707704,0.03841844,98.41520038],[4.53707746,0.03842019,98.41457991],[4.53707788,0.03842194,98.41396148],[4.53707831,0.0384237,98.41334508],[4.53707873,0.03842545,98.41273069],[4.53707915,0.0384272,98.41211828],[4.53707957,0.03842896,98.41150784],[4.53708,0.03843071,98.41089934],[4.53708042,0.03843246,98.41029276],[4.53708084,0.03843422,98.40968809],[4.53708127,0.03843597,98.40908531],[4.53708169,0.03843772,98.40848438],[4.53708212,0.03843947,98.4078853],[4.53708254,0.03844123,98.40728804],[4.53708296,0.03844298,98.40669258],[4.53708339,0.03844473,98.40609891],[4.53708381,0.03844649,98.405507],[4.53708424,0.03844824,98.40491683],[4.53708466,0.03844999,98.40432838],[4.53708509,0.03845174,98.40374164],[4.53708551,0.0384535,98.40315658],[4.53708594,0.03845525,98.40257318],[4.53708636,0.038457,98.40199143],[4.53708679,0.03845875,98.4014113],[4.53708721,0.03846051,98.40083277],[4.53708764,0.03846226,98.40025583],[4.53708806,0.03846401,98.39968045],[4.53708849,0.03846576,98.39910662],[4.53708891,0.03846752,98.39853431],[4.53708934,0.03846927,98.39796351],[4.53708976,0.03847102,98.3973942],[4.53709019,0.03847277,98.39682635],[4.53709061,0.03847453,98.39625995],[4.53709104,0.03847628,98.39569498],[4.53709146,0.03847803,98.39513142],[4.53709189,0.03847979,98.39456925],[4.53709231,0.03848154,98.39400845],[4.53709274,0.03848329,98.393449],[4.53709316,0.03848504,98.39289088],[4.53709358,0.0384868,98.39233408],[4.53709401,0.03848855,98.39177856],[4.53709443,0.0384903,98.39122432],[4.53709486,0.03849205,98.39067134],[4.53709528,0.03849381,98.39011959],[4.53709571,0.03849556,98.38956905],[4.53709613,0.03849731,98.38901972],[4.53709655,0.03849907,98.38847155],[4.53709698,0.03850082,98.38792455],[4.5370974,0.03850257,98.38737868],[4.53709782,0.03850433,98.38683394],[4.53709825,0.03850608,98.38629029],[4.53709867,0.03850783,98.38574772],[4.53709909,0.03850958,98.38520622],[4.53709951,0.03851134,98.38466575],[4.53709993,0.03851309,98.38412631],[4.53710036,0.03851484,98.38358786],[4.53710078,0.0385166,98.3830504],[4.5371012,0.03851835,98.38251391],[4.53710162,0.03852011,98.38197835],[4.53710204,0.03852186,98.38144372],[4.53710246,0.03852361,98.38090999],[4.53710288,0.03852537,98.38037715],[4.5371033,0.03852712,98.37984517],[4.53710372,0.03852887,98.37931403],[4.53710414,0.03853063,98.37878372],[4.53710456,0.03853238,98.37825421],[4.53710498,0.03853414,98.37772548],[4.5371054,0.03853589,98.37719752],[4.53710581,0.03853765,98.3766703],[4.53710623,0.0385394,98.37614384],[4.53710665,0.03854115,98.37561818],[4.53710706,0.03854291,98.37509335],[4.53710748,0.03854466,98.37456939],[4.5371079,0.03854642,98.37404636],[4.53710831,0.03854817,98.37352429],[4.53710873,0.03854993,98.37300323],[4.53710914,0.03855168,98.37248321],[4.53710956,0.03855344,98.37196427],[4.53710997,0.03855519,98.37144647],[4.53711039,0.03855695,98.37092983],[4.5371108,0.0385587,98.37041441],[4.53711122,0.03856046,98.36990023],[4.53711163,0.03856221,98.36938735],[4.53711205,0.03856397,98.36887581],[4.53711246,0.03856572,98.36836564],[4.53711287,0.03856748,98.36785689],[4.53711329,0.03856923,98.3673496],[4.5371137,0.03857099,98.36684382],[4.53711411,0.03857275,98.36633957],[4.53711453,0.0385745,98.36583691],[4.53711494,0.03857626,98.36533587],[4.53711535,0.03857801,98.3648365],[4.53711576,0.03857977,98.36433885],[4.53711618,0.03858152,98.36384294],[4.53711659,0.03858328,98.36334882],[4.537117,0.03858503,98.36285654],[4.53711742,0.03858679,98.36236614],[4.53711783,0.03858855,98.36187765],[4.53711824,0.0385903,98.36139113],[4.53711866,0.03859206,98.3609066],[4.53711907,0.03859381,98.36042412],[4.53711948,0.03859557,98.35994373],[4.53711989,0.03859732,98.35946547],[4.53712031,0.03859908,98.35898938],[4.53712072,0.03860083,98.35851551],[4.53712114,0.03860259,98.35804389],[4.53712155,0.03860434,98.35757457],[4.53712196,0.0386061,98.35710759],[4.53712238,0.03860785,98.356643],[4.53712279,0.03860961,98.35618084],[4.53712321,0.03861137,98.35572115],[4.53712362,0.03861312,98.35526397],[4.53712403,0.03861488,98.35480935],[4.53712445,0.03861663,98.35435734],[4.53712486,0.03861839,98.35390797],[4.53712528,0.03862014,98.3534613],[4.5371257,0.0386219,98.35301736],[4.53712611,0.03862365,98.35257619],[4.53712653,0.0386254,98.35213785],[4.53712695,0.03862716,98.35170238],[4.53712736,0.03862891,98.35126982],[4.53712778,0.03863067,98.35084022],[4.5371282,0.03863242,98.35041363],[4.53712862,0.03863418,98.34999008],[4.53712903,0.03863593,98.34956963],[4.53712945,0.03863769,98.34915231],[4.53712987,0.03863944,98.34873819],[4.53713029,0.03864119,98.3483273],[4.53713071,0.03864295,98.34791968],[4.53713113,0.0386447,98.3475154],[4.53713155,0.03864645,98.34711448],[4.53713197,0.03864821,98.34671699]],"type":"LineString"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":1,"type":"shoulder","predecessorId":0}},{"geometry":{"coordinates":[[4.53703275,0.03817608,98.50952094],[4.53703291,0.03817673,98.50925029],[4.53703333,0.03817848,98.50852539],[4.53703376,0.03818024,98.50780143],[4.53703418,0.03818199,98.50707838],[4.53703461,0.03818374,98.50635623],[4.53703504,0.03818549,98.50563496],[4.53703546,0.03818725,98.50491456],[4.53703589,0.038189,98.50419501],[4.53703631,0.03819075,98.50347628],[4.53703674,0.0381925,98.50275836],[4.53703717,0.03819425,98.50204124],[4.53703759,0.03819601,98.5013249],[4.53703802,0.03819776,98.50060932],[4.53703845,0.03819951,98.49989448],[4.53703887,0.03820126,98.49918036],[4.5370393,0.03820302,98.49846695],[4.53703972,0.03820477,98.49775423],[4.53704015,0.03820652,98.49704219],[4.53704058,0.03820827,98.4963308],[4.537041,0.03821003,98.49562005],[4.53704143,0.03821178,98.49490993],[4.53704185,0.03821353,98.49420041],[4.53704228,0.03821528,98.49349148],[4.53704271,0.03821704,98.49278312],[4.53704313,0.03821879,98.49207532],[4.53704356,0.03822054,98.49136805],[4.53704399,0.03822229,98.49066131],[4.53704441,0.03822405,98.48995508],[4.53704484,0.0382258,98.48924933],[4.53704527,0.03822755,98.48854405],[4.53704569,0.0382293,98.48783921],[4.53704612,0.03823106,98.48713478],[4.53704654,0.03823281,98.48643074],[4.53704697,0.03823456,98.48572707],[4.5370474,0.03823631,98.48502373],[4.53704782,0.03823807,98.48432071],[4.53704825,0.03823982,98.48361798],[4.53704868,0.03824157,98.48291551],[4.5370491,0.03824332,98.48221328],[4.53704953,0.03824508,98.48151127],[4.53704996,0.03824683,98.48080945],[4.53705038,0.03824858,98.4801078],[4.53705081,0.03825033,98.47940629],[4.53705123,0.03825209,98.4787049],[4.53705166,0.03825384,98.47800361],[4.53705209,0.03825559,98.47730238],[4.53705251,0.03825734,98.4766012],[4.53705294,0.03825909,98.47590005],[4.53705337,0.03826085,98.47519889],[4.53705379,0.0382626,98.47449771],[4.53705422,0.03826435,98.47379648],[4.53705464,0.0382661,98.47309518],[4.53705507,0.03826786,98.47239379],[4.53705549,0.03826961,98.47169228],[4.53705592,0.03827136,98.47099062],[4.53705635,0.03827311,98.47028881],[4.53705677,0.03827487,98.4695868],[4.5370572,0.03827662,98.46888459],[4.53705762,0.03827837,98.46818214],[4.53705805,0.03828013,98.46747944],[4.53705847,0.03828188,98.46677645],[4.5370589,0.03828363,98.4660732],[4.53705933,0.03828538,98.46536972],[4.53705975,0.03828714,98.46466604],[4.53706018,0.03828889,98.4639622],[4.5370606,0.03829064,98.46325824],[4.53706103,0.03829239,98.46255419],[4.53706145,0.03829415,98.4618501],[4.53706188,0.0382959,98.461146],[4.5370623,0.03829765,98.46044193],[4.53706273,0.0382994,98.45973792],[4.53706315,0.03830116,98.45903401],[4.53706358,0.03830291,98.45833024],[4.537064,0.03830466,98.45762665],[4.53706443,0.03830641,98.45692327],[4.53706486,0.03830817,98.45622014],[4.53706528,0.03830992,98.45551729],[4.53706571,0.03831167,98.45481476],[4.53706613,0.03831343,98.4541126],[4.53706656,0.03831518,98.45341082],[4.53706698,0.03831693,98.45270948],[4.53706741,0.03831868,98.4520086],[4.53706783,0.03832044,98.45130823],[4.53706826,0.03832219,98.45060839],[4.53706869,0.03832394,98.44990913],[4.53706911,0.03832569,98.44921047],[4.53706954,0.03832745,98.44851247],[4.53706996,0.0383292,98.44781514],[4.53707039,0.03833095,98.44711853],[4.53707081,0.0383327,98.44642268],[4.53707124,0.03833446,98.44572761],[4.53707167,0.03833621,98.44503336],[4.53707209,0.03833796,98.44433997],[4.53707252,0.03833971,98.44364748],[4.53707294,0.03834147,98.44295591],[4.53707337,0.03834322,98.44226531],[4.5370738,0.03834497,98.4415757],[4.53707422,0.03834672,98.44088713],[4.53707465,0.03834848,98.44019962],[4.53707507,0.03835023,98.43951322],[4.5370755,0.03835198,98.43882795],[4.53707592,0.03835373,98.43814386],[4.53707635,0.03835549,98.43746097],[4.53707678,0.03835724,98.43677932],[4.5370772,0.03835899,98.43609895],[4.53707763,0.03836074,98.43541988],[4.53707805,0.0383625,98.43474216],[4.53707848,0.03836425,98.43406581],[4.53707891,0.038366,98.43339088],[4.53707933,0.03836775,98.43271739],[4.53707976,0.03836951,98.43204538],[4.53708018,0.03837126,98.43137488],[4.53708061,0.03837301,98.43070592],[4.53708103,0.03837476,98.43003855],[4.53708146,0.03837652,98.42937279],[4.53708189,0.03837827,98.42870868],[4.53708231,0.03838002,98.42804625],[4.53708274,0.03838177,98.42738554],[4.53708316,0.03838353,98.42672657],[4.53708359,0.03838528,98.42606938],[4.53708402,0.03838703,98.42541401],[4.53708444,0.03838878,98.42476048],[4.53708487,0.03839054,98.42410884],[4.53708529,0.03839229,98.42345911],[4.53708572,0.03839404,98.42281133],[4.53708614,0.03839579,98.42216553],[4.53708657,0.03839755,98.42152174],[4.537087,0.0383993,98.42088],[4.53708742,0.03840105,98.42024034],[4.53708785,0.0384028,98.41960279],[4.53708827,0.03840456,98.41896741],[4.5370887,0.03840631,98.41833421],[4.53708913,0.03840806,98.41770318],[4.53708955,0.03840981,98.4170743],[4.53708998,0.03841157,98.41644756],[4.5370904,0.03841332,98.41582293],[4.53709083,0.03841507,98.41520038],[4.53709126,0.03841682,98.41457991],[4.53709168,0.03841858,98.41396148],[4.53709211,0.03842033,98.41334508],[4.53709253,0.03842208,98.41273069],[4.53709296,0.03842383,98.41211828],[4.53709338,0.03842559,98.41150784],[4.53709381,0.03842734,98.41089934],[4.53709424,0.03842909,98.41029276],[4.53709466,0.03843084,98.40968809],[4.53709509,0.0384326,98.40908531],[4.53709551,0.03843435,98.40848438],[4.53709594,0.0384361,98.4078853],[4.53709637,0.03843785,98.40728804],[4.53709679,0.03843961,98.40669258],[4.53709722,0.03844136,98.40609891],[4.53709764,0.03844311,98.405507],[4.53709807,0.03844486,98.40491683],[4.53709849,0.03844662,98.40432838],[4.53709892,0.03844837,98.40374164],[4.53709935,0.03845012,98.40315658],[4.53709977,0.03845187,98.40257318],[4.5371002,0.03845363,98.40199143],[4.53710062,0.03845538,98.4014113],[4.53710105,0.03845713,98.40083277],[4.53710147,0.03845888,98.40025583],[4.5371019,0.03846064,98.39968045],[4.53710233,0.03846239,98.39910662],[4.53710275,0.03846414,98.39853431],[4.53710318,0.03846589,98.39796351],[4.5371036,0.03846765,98.3973942],[4.53710403,0.0384694,98.39682635],[4.53710445,0.03847115,98.39625995],[4.53710488,0.0384729,98.39569498],[4.5371053,0.03847466,98.39513142],[4.53710573,0.03847641,98.39456925],[4.53710615,0.03847816,98.39400845],[4.53710658,0.03847992,98.393449],[4.537107,0.03848167,98.39289088],[4.53710743,0.03848342,98.39233408],[4.53710785,0.03848517,98.39177856],[4.53710828,0.03848693,98.39122432],[4.5371087,0.03848868,98.39067134],[4.53710913,0.03849043,98.39011959],[4.53710955,0.03849218,98.38956905],[4.53710998,0.03849394,98.38901972],[4.5371104,0.03849569,98.38847155],[4.53711083,0.03849744,98.38792455],[4.53711125,0.0384992,98.38737868],[4.53711168,0.03850095,98.38683394],[4.5371121,0.0385027,98.38629029],[4.53711252,0.03850445,98.38574772],[4.53711295,0.03850621,98.38520622],[4.53711337,0.03850796,98.38466575],[4.5371138,0.03850971,98.38412631],[4.53711422,0.03851147,98.38358786],[4.53711465,0.03851322,98.3830504],[4.53711507,0.03851497,98.38251391],[4.53711549,0.03851672,98.38197835],[4.53711592,0.03851848,98.38144372],[4.53711634,0.03852023,98.38090999],[4.53711676,0.03852198,98.38037715],[4.53711719,0.03852374,98.37984517],[4.53711761,0.03852549,98.37931403],[4.53711804,0.03852724,98.37878372],[4.53711846,0.038529,98.37825421],[4.53711888,0.03853075,98.37772548],[4.5371193,0.0385325,98.37719752],[4.53711973,0.03853426,98.3766703],[4.53712015,0.03853601,98.37614384],[4.53712057,0.03853776,98.37561818],[4.537121,0.03853951,98.37509335],[4.53712142,0.03854127,98.37456939],[4.53712184,0.03854302,98.37404636],[4.53712227,0.03854477,98.37352429],[4.53712269,0.03854653,98.37300323],[4.53712311,0.03854828,98.37248321],[4.53712353,0.03855003,98.37196427],[4.53712396,0.03855179,98.37144647],[4.53712438,0.03855354,98.37092983],[4.5371248,0.03855529,98.37041441],[4.53712522,0.03855705,98.36990023],[4.53712565,0.0385588,98.36938735],[4.53712607,0.03856055,98.36887581],[4.53712649,0.03856231,98.36836564],[4.53712691,0.03856406,98.36785689],[4.53712734,0.03856581,98.3673496],[4.53712776,0.03856757,98.36684382],[4.53712818,0.03856932,98.36633957],[4.5371286,0.03857107,98.36583691],[4.53712903,0.03857283,98.36533587],[4.53712945,0.03857458,98.3648365],[4.53712987,0.03857633,98.36433885],[4.53713029,0.03857809,98.36384294],[4.53713072,0.03857984,98.36334882],[4.53713114,0.03858159,98.36285654],[4.53713156,0.03858335,98.36236614],[4.53713199,0.0385851,98.36187765],[4.53713241,0.03858685,98.36139113],[4.53713283,0.03858861,98.3609066],[4.53713325,0.03859036,98.36042412],[4.53713368,0.03859211,98.35994373],[4.5371341,0.03859387,98.35946547],[4.53713452,0.03859562,98.35898938],[4.53713495,0.03859737,98.35851551],[4.53713537,0.03859912,98.35804389],[4.53713579,0.03860088,98.35757457],[4.53713622,0.03860263,98.35710759],[4.53713664,0.03860438,98.356643],[4.53713706,0.03860614,98.35618084],[4.53713749,0.03860789,98.35572115],[4.53713791,0.03860964,98.35526397],[4.53713834,0.0386114,98.35480935],[4.53713876,0.03861315,98.35435734],[4.53713918,0.0386149,98.35390797],[4.53713961,0.03861665,98.3534613],[4.53714003,0.03861841,98.35301736],[4.53714046,0.03862016,98.35257619],[4.53714088,0.03862191,98.35213785],[4.53714131,0.03862367,98.35170238],[4.53714173,0.03862542,98.35126982],[4.53714216,0.03862717,98.35084022],[4.53714258,0.03862892,98.35041363],[4.53714301,0.03863068,98.34999008],[4.53714343,0.03863243,98.34956963],[4.53714386,0.03863418,98.34915231],[4.53714429,0.03863593,98.34873819],[4.53714471,0.03863769,98.3483273],[4.53714514,0.03863944,98.34791968],[4.53714556,0.03864119,98.3475154],[4.53714599,0.03864294,98.34711448],[4.53714642,0.03864469,98.34671699]],"type":"LineString"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":2,"type":"none","predecessorId":0}},{"geometry":{"coordinates":[[4.53692694,0.03820202,98.23403648],[4.53692648,0.03820028,98.24270479],[4.53692606,0.03819871,98.24653286]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-4,"type":"none","predecessorId":0}},{"geometry":{"coordinates":[[4.53692933,0.03820143,98.23403648],[4.53693153,0.03819904,98.24270479],[4.53693222,0.0381972,98.24653286]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","rules":[{"value":"barred"}],"id":-3,"type":"restricted","predecessorId":0}},{"geometry":{"coordinates":[[4.53695266,0.03819571,98.3055604],[4.53695224,0.03819396,98.30621585],[4.53695186,0.03819239,98.30680636]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2}},{"geometry":{"coordinates":[[4.53698443,0.03818792,98.40298773],[4.53698401,0.03818617,98.40369225],[4.53698363,0.03818459,98.40432656]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}},{"geometry":{"coordinates":[[4.53701835,0.03817608,98.51090017],[4.53701874,0.03817765,98.51024693],[4.53701917,0.0381794,98.50952094]],"type":"LineString"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":1,"type":"shoulder","predecessorId":1}},{"geometry":{"coordinates":[[4.53703194,0.03817275,98.51090017],[4.53703232,0.03817432,98.51024693],[4.53703275,0.03817608,98.50952094]],"type":"LineString"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":2,"type":"none","predecessorId":2}},{"geometry":{"coordinates":[[4.53692606,0.03819871,98.39653286],[4.5369256,0.03819697,98.39712081],[4.53692514,0.03819523,98.39771174],[4.53692468,0.03819348,98.39830563],[4.53692421,0.03819174,98.39890247],[4.53692375,0.03819,98.39950225],[4.53692329,0.03818825,98.40010496],[4.53692283,0.03818651,98.40071059],[4.53692237,0.03818477,98.40131912],[4.5369219,0.03818303,98.40193054],[4.53692144,0.03818128,98.40254485],[4.53692098,0.03817954,98.40316202],[4.53692052,0.0381778,98.40378204],[4.53692006,0.03817605,98.40440488],[4.5369196,0.03817431,98.4050305],[4.53691914,0.03817257,98.40565888],[4.53691868,0.03817083,98.40628999],[4.53691822,0.03816908,98.40692381],[4.53691776,0.03816734,98.4075603],[4.53691729,0.0381656,98.40819943],[4.53691683,0.03816385,98.40884117],[4.53691637,0.03816211,98.4094855],[4.53691591,0.03816037,98.41013239],[4.53691545,0.03815862,98.41078181],[4.53691499,0.03815688,98.41143372],[4.53691453,0.03815514,98.4120881],[4.53691407,0.03815339,98.41274492],[4.53691361,0.03815165,98.41340415],[4.53691315,0.03814991,98.41406576],[4.53691269,0.03814817,98.41472972],[4.53691223,0.03814642,98.415396],[4.53691177,0.03814468,98.41606458],[4.53691131,0.03814294,98.41673541],[4.53691085,0.03814119,98.41740848],[4.53691038,0.03813945,98.41808374],[4.53690992,0.03813771,98.41876118],[4.53690946,0.03813596,98.41944076],[4.536909,0.03813422,98.42012246],[4.53690854,0.03813248,98.42080623],[4.53690808,0.03813074,98.42149206],[4.53690762,0.03812899,98.42217991],[4.53690715,0.03812725,98.42286975],[4.53690669,0.03812551,98.42356155],[4.53690623,0.03812377,98.42425528],[4.53690577,0.03812202,98.42495091],[4.53690531,0.03812028,98.42564841],[4.53690484,0.03811854,98.42634775],[4.53690438,0.0381168,98.4270489],[4.53690392,0.03811505,98.42775183],[4.53690345,0.03811331,98.4284565],[4.53690299,0.03811157,98.4291629],[4.53690253,0.03810983,98.42987098],[4.53690206,0.03810808,98.43058071],[4.5369016,0.03810634,98.43129208],[4.53690113,0.0381046,98.43200503],[4.53690067,0.03810286,98.43271956],[4.5369002,0.03810112,98.43343563],[4.53689974,0.03809937,98.43415324],[4.53689927,0.03809763,98.43487235],[4.53689881,0.03809589,98.43559295],[4.53689834,0.03809415,98.43631502],[4.53689787,0.03809241,98.43703854],[4.53689741,0.03809067,98.4377635],[4.53689694,0.03808892,98.43848986],[4.53689647,0.03808718,98.43921762],[4.53689601,0.03808544,98.43994675],[4.53689554,0.0380837,98.44067724],[4.53689507,0.03808196,98.44140906],[4.53689461,0.03808022,98.44214219],[4.53689414,0.03807848,98.44287662],[4.53689367,0.03807673,98.44361232],[4.5368932,0.03807499,98.44434928],[4.53689274,0.03807325,98.44508748],[4.53689227,0.03807151,98.44582689],[4.5368918,0.03806977,98.44656748],[4.53689134,0.03806803,98.44730924],[4.53689087,0.03806629,98.44805212],[4.53689041,0.03806454,98.44879612],[4.53688994,0.0380628,98.44954123],[4.53688947,0.03806106,98.45028748],[4.53688901,0.03805932,98.45103485],[4.53688854,0.03805758,98.45178338],[4.53688808,0.03805583,98.45253307],[4.53688762,0.03805409,98.45328392],[4.53688715,0.03805235,98.45403596],[4.53688669,0.03805061,98.45478918],[4.53688623,0.03804887,98.45554361],[4.53688577,0.03804712,98.45629925],[4.5368853,0.03804538,98.45705611],[4.53688484,0.03804364,98.4578142],[4.53688438,0.03804189,98.45857354],[4.53688392,0.03804015,98.45933414],[4.53688347,0.03803841,98.460096],[4.53688301,0.03803666,98.46085914],[4.53688255,0.03803492,98.46162356],[4.53688209,0.03803318,98.46238928],[4.53688164,0.03803143,98.46315632],[4.53688118,0.03802969,98.46392467],[4.53688073,0.03802794,98.46469435],[4.53688028,0.0380262,98.46546538],[4.53687982,0.03802445,98.46623775],[4.53687937,0.03802271,98.4670115],[4.53687892,0.03802096,98.46778661],[4.53687847,0.03801922,98.46856311],[4.53687802,0.03801747,98.46934101],[4.53687757,0.03801573,98.47012031],[4.53687712,0.03801398,98.47090103],[4.53687667,0.03801224,98.47168318],[4.53687622,0.03801049,98.47246677],[4.53687577,0.03800874,98.47325181],[4.53687533,0.038007,98.47403831],[4.53687488,0.03800525,98.47482628],[4.53687443,0.03800351,98.47561574],[4.53687398,0.03800176,98.47640669],[4.53687354,0.03800001,98.47719915],[4.53687309,0.03799827,98.47799312],[4.53687264,0.03799652,98.47878862],[4.5368722,0.03799477,98.47958565],[4.53687175,0.03799303,98.48038424],[4.53687131,0.03799128,98.48118438],[4.53687086,0.03798953,98.48198609],[4.53687041,0.03798779,98.48278939],[4.53686997,0.03798604,98.48359428],[4.53686952,0.03798429,98.48440077],[4.53686908,0.03798255,98.48520887],[4.53686863,0.0379808,98.4860186],[4.53686818,0.03797906,98.48682997],[4.53686774,0.03797731,98.48764298],[4.53686729,0.03797556,98.48845765],[4.53686684,0.03797382,98.48927397],[4.5368664,0.03797207,98.49009192],[4.53686595,0.03797032,98.49091149],[4.5368655,0.03796858,98.49173265],[4.53686505,0.03796683,98.49255538],[4.53686461,0.03796509,98.49337967],[4.53686416,0.03796334,98.49420549],[4.53686371,0.03796159,98.49503283],[4.53686326,0.03795985,98.49586166],[4.53686282,0.0379581,98.49669197],[4.53686237,0.03795635,98.49752373],[4.53686192,0.03795461,98.49835692],[4.53686147,0.03795286,98.49919153],[4.53686103,0.03795112,98.50002751],[4.53686058,0.03794937,98.50086483],[4.53686013,0.03794763,98.50170348],[4.53685968,0.03794588,98.50254341],[4.53685923,0.03794413,98.50338459],[4.53685878,0.03794239,98.504227],[4.53685833,0.03794064,98.50507061],[4.53685789,0.0379389,98.50591538],[4.53685744,0.03793715,98.50676129],[4.53685699,0.0379354,98.50760832],[4.53685654,0.03793366,98.50845645],[4.53685609,0.03793191,98.50930565],[4.53685564,0.03793017,98.5101559],[4.53685519,0.03792842,98.51100719],[4.53685474,0.03792668,98.51185948],[4.5368543,0.03792493,98.51271276],[4.53685385,0.03792318,98.51356701],[4.5368534,0.03792144,98.5144222],[4.53685295,0.03791969,98.51527832],[4.5368525,0.03791795,98.51613534],[4.53685205,0.0379162,98.51699324],[4.5368516,0.03791446,98.517852],[4.53685116,0.03791271,98.51871159],[4.53685071,0.03791096,98.519572],[4.53685026,0.03790922,98.52043321],[4.53684981,0.03790747,98.52129518],[4.53684937,0.03790573,98.52215791],[4.53684892,0.03790398,98.52302137],[4.53684847,0.03790223,98.52388554],[4.53684802,0.03790049,98.52475039],[4.53684758,0.03789874,98.52561591],[4.53684713,0.03789699,98.52648207],[4.53684669,0.03789525,98.52734886],[4.53684624,0.0378935,98.52821625],[4.53684579,0.03789175,98.52908422],[4.53684535,0.03789001,98.52995278],[4.5368449,0.03788826,98.53082193],[4.53684446,0.03788652,98.53169169],[4.53684401,0.03788477,98.53256206],[4.53684357,0.03788302,98.53343306],[4.53684312,0.03788128,98.53430468],[4.53684268,0.03787953,98.53517695],[4.53684223,0.03787778,98.53604986],[4.53684179,0.03787603,98.53692342],[4.53684135,0.03787429,98.53779765],[4.5368409,0.03787254,98.53867256],[4.53684046,0.03787079,98.53954814],[4.53684001,0.03786905,98.54042441],[4.53683957,0.0378673,98.54130138],[4.53683913,0.03786555,98.54217905],[4.53683868,0.03786381,98.54305744],[4.53683824,0.03786206,98.54393655],[4.5368378,0.03786031,98.54481639],[4.53683736,0.03785856,98.54569697],[4.53683691,0.03785682,98.5465783],[4.53683647,0.03785507,98.54746039],[4.53683603,0.03785332,98.54834323],[4.53683559,0.03785158,98.54922686],[4.53683514,0.03784983,98.55011126],[4.5368347,0.03784808,98.55099645],[4.53683426,0.03784633,98.55188244],[4.53683382,0.03784459,98.55276923],[4.53683337,0.03784284,98.55365684],[4.53683293,0.03784109,98.55454528],[4.53683249,0.03783934,98.55543454],[4.53683205,0.0378376,98.55632464],[4.53683161,0.03783585,98.55721559],[4.53683116,0.0378341,98.5581074],[4.53683072,0.03783235,98.55900007],[4.53683028,0.03783061,98.55989361],[4.53682984,0.03782886,98.56078803],[4.53682939,0.03782711,98.56168334],[4.53682895,0.03782537,98.56257955],[4.53682851,0.03782362,98.56347667],[4.53682807,0.03782187,98.56437469],[4.53682763,0.03782012,98.56527364],[4.53682718,0.03781838,98.56617352],[4.53682674,0.03781663,98.56707434],[4.5368263,0.03781488,98.5679761],[4.53682585,0.03781313,98.56887882],[4.53682541,0.03781139,98.56978251],[4.53682497,0.03780964,98.57068717],[4.53682453,0.03780789,98.57159282],[4.53682408,0.03780615,98.57249948],[4.53682364,0.0378044,98.57340716],[4.5368232,0.03780265,98.57431587],[4.53682275,0.03780091,98.57522562],[4.53682231,0.03779916,98.57613644],[4.53682187,0.03779741,98.57704832],[4.53682142,0.03779566,98.57796128],[4.53682098,0.03779392,98.57887535],[4.53682054,0.03779217,98.57979052],[4.53682009,0.03779042,98.58070681],[4.53681965,0.03778868,98.5816242],[4.5368192,0.03778693,98.58254268],[4.53681876,0.03778518,98.58346225],[4.53681832,0.03778344,98.58438289],[4.53681787,0.03778169,98.5853046],[4.53681743,0.03777994,98.58622737],[4.53681698,0.0377782,98.58715119],[4.53681654,0.03777645,98.58807604],[4.5368161,0.0377747,98.58900193],[4.53681565,0.03777296,98.58992884],[4.53681521,0.03777121,98.59085677],[4.53681476,0.03776946,98.5917857],[4.53681432,0.03776772,98.59271563],[4.53681387,0.03776597,98.59364658],[4.53681343,0.03776422,98.59457854],[4.53681299,0.03776247,98.5955115],[4.53681254,0.03776073,98.59644545],[4.5368121,0.03775898,98.59738037],[4.53681165,0.03775723,98.59831626],[4.53681121,0.03775549,98.59925311],[4.53681077,0.03775374,98.60019091],[4.53681032,0.03775199,98.60112963],[4.53680988,0.03775025,98.60206928],[4.53680943,0.0377485,98.60300984],[4.53680899,0.03774675,98.6039513],[4.53680855,0.03774501,98.60489365],[4.5368081,0.03774326,98.60583688],[4.53680766,0.03774151,98.60678097],[4.53680721,0.03773977,98.60772592],[4.53680677,0.03773802,98.60867171],[4.53680633,0.03773627,98.60961834],[4.53680588,0.03773453,98.61056579],[4.53680544,0.03773278,98.61151404],[4.53680499,0.03773103,98.6124631],[4.53680455,0.03772929,98.61341295],[4.53680411,0.03772754,98.61436358],[4.53680366,0.03772579,98.61531497],[4.53680322,0.03772404,98.61626712],[4.53680278,0.0377223,98.61722002],[4.53680233,0.03772055,98.61817364],[4.53680189,0.0377188,98.61912799],[4.53680145,0.03771706,98.62008305],[4.53680101,0.03771531,98.62103882],[4.53680056,0.03771356,98.62199527],[4.53680012,0.03771182,98.6229524],[4.53679968,0.03771007,98.62391019],[4.53679923,0.03770832,98.62486865],[4.53679879,0.03770657,98.62582775],[4.53679835,0.03770483,98.62678748],[4.53679791,0.03770308,98.62774784],[4.53679746,0.03770133,98.6287088],[4.53679702,0.03769959,98.62967038],[4.53679658,0.03769784,98.63063254],[4.53679614,0.03769609,98.63159528],[4.5367957,0.03769434,98.63255859],[4.53679526,0.0376926,98.63352246],[4.53679481,0.03769085,98.63448687],[4.53679437,0.0376891,98.63545182],[4.53679393,0.03768735,98.63641729],[4.53679349,0.03768561,98.63738328],[4.53679305,0.03768386,98.63834978],[4.53679261,0.03768211,98.63931676],[4.53679217,0.03768036,98.64028423],[4.53679173,0.03767862,98.64125216],[4.53679128,0.03767687,98.64222056],[4.53679084,0.03767512,98.6431894],[4.5367904,0.03767337,98.64415869],[4.53678996,0.03767163,98.6451284],[4.53678952,0.03766988,98.64609852],[4.53678908,0.03766813,98.64706906],[4.53678864,0.03766638,98.64803998],[4.5367882,0.03766464,98.64901129],[4.53678776,0.03766289,98.64998298],[4.53678732,0.03766114,98.65095502],[4.53678687,0.03765939,98.65192742],[4.53678643,0.03765765,98.65290016],[4.53678599,0.0376559,98.65387323],[4.53678555,0.03765415,98.65484661],[4.53678511,0.03765241,98.65582031],[4.53678467,0.03765066,98.6567943],[4.53678422,0.03764891,98.65776858],[4.53678378,0.03764716,98.65874314],[4.53678334,0.03764542,98.65971796],[4.53678289,0.03764367,98.66069304],[4.53678245,0.03764192,98.66166836],[4.53678201,0.03764018,98.66264391],[4.53678156,0.03763843,98.66361969],[4.53678112,0.03763668,98.66459568],[4.53678068,0.03763494,98.66557187],[4.53678023,0.03763319,98.66654825],[4.53677979,0.03763144,98.66752482],[4.53677934,0.0376297,98.66850155],[4.53677889,0.03762795,98.66947844],[4.53677845,0.0376262,98.67045548],[4.536778,0.03762446,98.67143266],[4.53677755,0.03762271,98.67240999],[4.53677711,0.03762097,98.67338748],[4.53677666,0.03761922,98.67436512],[4.53677621,0.03761747,98.67534291],[4.53677576,0.03761573,98.67632087],[4.53677531,0.03761398,98.677299],[4.53677486,0.03761224,98.67827729],[4.53677442,0.03761049,98.67925576],[4.53677397,0.03760875,98.68023441],[4.53677352,0.037607,98.68121324],[4.53677307,0.03760526,98.68219228],[4.53677261,0.03760351,98.68317151],[4.53677216,0.03760177,98.68415095],[4.53677171,0.03760002,98.68513061],[4.53677126,0.03759828,98.68611049],[4.53677081,0.03759653,98.6870906],[4.53677036,0.03759479,98.68807095],[4.53676991,0.03759304,98.68905154],[4.53676945,0.0375913,98.69003238],[4.536769,0.03758955,98.69101348],[4.53676855,0.03758781,98.69199484],[4.5367681,0.03758606,98.69297648],[4.53676765,0.03758432,98.69395839],[4.53676719,0.03758258,98.69494059],[4.53676674,0.03758083,98.69592308],[4.53676629,0.03757909,98.69690587],[4.53676583,0.03757734,98.69788897],[4.53676538,0.0375756,98.69887237],[4.53676493,0.03757385,98.6998561],[4.53676448,0.03757211,98.70084015],[4.53676402,0.03757036,98.70182452],[4.53676357,0.03756862,98.70280921],[4.53676312,0.03756688,98.70379422],[4.53676266,0.03756513,98.70477955],[4.53676221,0.03756339,98.7057652],[4.53676175,0.03756164,98.70675116],[4.5367613,0.0375599,98.70773744],[4.53676085,0.03755815,98.70872404],[4.53676039,0.03755641,98.70971095],[4.53675994,0.03755467,98.71069817],[4.53675949,0.03755292,98.7116857],[4.53675903,0.03755118,98.71267354],[4.53675858,0.03754943,98.7136617],[4.53675812,0.03754769,98.71465016],[4.53675767,0.03754595,98.71563893],[4.53675722,0.0375442,98.71662801],[4.53675676,0.03754246,98.71761739],[4.53675631,0.03754071,98.71860708],[4.53675585,0.03753897,98.71959707],[4.5367554,0.03753722,98.72058737],[4.53675494,0.03753548,98.72157797],[4.53675449,0.03753374,98.72256887],[4.53675404,0.03753199,98.72356007],[4.53675358,0.03753025,98.72455156],[4.53675313,0.0375285,98.72554336],[4.53675267,0.03752676,98.72653545],[4.53675222,0.03752502,98.72752784],[4.53675176,0.03752327,98.72852053],[4.53675131,0.03752153,98.72951351],[4.53675085,0.03751978,98.73050678],[4.5367504,0.03751804,98.73150035],[4.53674994,0.0375163,98.7324942],[4.53674949,0.03751455,98.73348835],[4.53674904,0.03751281,98.73448278],[4.53674858,0.03751106,98.7354775],[4.53674813,0.03750932,98.73647251],[4.53674767,0.03750758,98.73746781],[4.53674722,0.03750583,98.73846339],[4.53674676,0.03750409,98.73945925],[4.53674631,0.03750235,98.7404554],[4.53674585,0.0375006,98.74145183],[4.5367454,0.03749886,98.74244854],[4.53674494,0.03749711,98.74344553],[4.53674449,0.03749537,98.7444428],[4.53674403,0.03749363,98.74544034],[4.53674358,0.03749188,98.74643817],[4.53674312,0.03749014,98.74743626],[4.53674267,0.03748839,98.74843464],[4.53674221,0.03748665,98.74943328],[4.53674176,0.03748491,98.7504322],[4.5367413,0.03748316,98.75143139],[4.53674085,0.03748142,98.75243085],[4.5367404,0.03747967,98.75343058],[4.53673994,0.03747793,98.75443058],[4.53673949,0.03747619,98.75543084],[4.53673903,0.03747444,98.75643137],[4.53673858,0.0374727,98.75743217],[4.53673812,0.03747095,98.75843323],[4.53673767,0.03746921,98.75943455],[4.53673722,0.03746747,98.76043614],[4.53673676,0.03746572,98.761438],[4.53673631,0.03746398,98.76244015],[4.53673585,0.03746223,98.7634426],[4.5367354,0.03746049,98.76444537],[4.53673495,0.03745875,98.76544848],[4.53673449,0.037457,98.76645193],[4.53673404,0.03745526,98.76745574],[4.53673358,0.03745351,98.76845991],[4.53673313,0.03745177,98.76946444],[4.53673268,0.03745003,98.77046935],[4.53673222,0.03744828,98.77147462],[4.53673177,0.03744654,98.77248028],[4.53673131,0.03744479,98.77348632],[4.53673086,0.03744305,98.77449275],[4.53673041,0.0374413,98.77549957],[4.53672995,0.03743956,98.77650679],[4.5367295,0.03743782,98.7775144],[4.53672905,0.03743607,98.7785224],[4.5367286,0.03743433,98.77953077],[4.53672814,0.03743259,98.7805395],[4.53672769,0.03743084,98.78154855],[4.53672724,0.0374291,98.78255793],[4.53672678,0.03742735,98.7835676],[4.53672633,0.03742561,98.78457756],[4.53672588,0.03742387,98.78558778],[4.53672542,0.03742212,98.78659826],[4.53672497,0.03742038,98.78760897],[4.53672452,0.03741863,98.78861989],[4.53672406,0.03741689,98.78963103],[4.53672361,0.03741514,98.79064237],[4.53672316,0.0374134,98.79165391],[4.53672271,0.03741166,98.79266564],[4.53672225,0.03740991,98.79367755],[4.5367218,0.03740817,98.79468965],[4.53672135,0.03740642,98.79570191],[4.53672089,0.03740468,98.79671435],[4.53672044,0.03740293,98.79772695],[4.53671999,0.03740119,98.7987397],[4.53671953,0.03739945,98.79975259],[4.53671908,0.0373977,98.80076564],[4.53671863,0.03739596,98.80177881],[4.53671817,0.03739421,98.80279212],[4.53671772,0.03739247,98.80380555],[4.53671727,0.03739073,98.8048191],[4.53671681,0.03738898,98.80583276],[4.53671636,0.03738724,98.80684653],[4.5367159,0.03738549,98.8078604],[4.53671545,0.03738375,98.80887435],[4.536715,0.03738201,98.8098884],[4.53671454,0.03738026,98.81090251],[4.53671409,0.03737852,98.81191667],[4.53671363,0.03737677,98.81293088],[4.53671318,0.03737503,98.8139451],[4.53671273,0.03737329,98.81495932],[4.53671227,0.03737154,98.81597354],[4.53671182,0.0373698,98.81698772],[4.53671136,0.03736805,98.81800187],[4.53671091,0.03736631,98.81901595],[4.53671045,0.03736457,98.82002996],[4.53671,0.03736282,98.82104388],[4.53670954,0.03736108,98.82205769],[4.53670908,0.03735934,98.82307138],[4.53670863,0.03735759,98.82408493],[4.53670817,0.03735585,98.82509833],[4.53670772,0.03735411,98.82611155],[4.53670726,0.03735236,98.82712459],[4.5367068,0.03735062,98.82813743],[4.53670635,0.03734888,98.82915005],[4.53670589,0.03734713,98.83016244],[4.53670543,0.03734539,98.83117457],[4.53670498,0.03734365,98.83218645],[4.53670452,0.0373419,98.83319804],[4.53670406,0.03734016,98.83420934],[4.53670361,0.03733842,98.83522032],[4.53670315,0.03733667,98.83623099],[4.5367027,0.03733493,98.83724134],[4.53670224,0.03733318,98.83825137],[4.53670179,0.03733144,98.83926109],[4.53670134,0.03732969,98.84027051],[4.53670089,0.03732795,98.84127961],[4.53670044,0.0373262,98.8422884],[4.53669999,0.03732446,98.8432969],[4.53669955,0.03732271,98.84430508],[4.5366991,0.03732097,98.84531297],[4.53669866,0.03731922,98.84632056],[4.53669822,0.03731747,98.84732785],[4.53669778,0.03731572,98.84833485],[4.53669734,0.03731398,98.84934155],[4.53669691,0.03731223,98.85034796],[4.53669647,0.03731048,98.85135409],[4.53669604,0.03730873,98.85235992],[4.53669561,0.03730698,98.85336547],[4.53669517,0.03730523,98.85437074],[4.53669474,0.03730348,98.85537572],[4.53669431,0.03730173,98.85638043],[4.53669389,0.03729998,98.85738485],[4.53669346,0.03729823,98.858389],[4.53669303,0.03729648,98.85939288],[4.5366926,0.03729473,98.86039648],[4.53669218,0.03729298,98.86139982],[4.53669175,0.03729123,98.86240288],[4.53669132,0.03728948,98.86340568],[4.5366909,0.03728772,98.86440821],[4.53669047,0.03728597,98.86541048],[4.53669005,0.03728422,98.86641249],[4.53668962,0.03728247,98.86741424],[4.5366892,0.03728072,98.86841574],[4.53668877,0.03727897,98.86941698],[4.53668835,0.03727722,98.87041798],[4.53668792,0.03727547,98.87141873],[4.53668749,0.03727372,98.87241923],[4.53668707,0.03727196,98.8734195],[4.53668664,0.03727021,98.87441953],[4.53668621,0.03726846,98.87541932],[4.53668578,0.03726671,98.87641889],[4.53668536,0.03726496,98.87741822],[4.53668493,0.03726321,98.87841733],[4.5366845,0.03726146,98.87941622],[4.53668407,0.03725971,98.88041488],[4.53668364,0.03725796,98.88141333],[4.53668321,0.03725621,98.88241157],[4.53668278,0.03725446,98.88340959],[4.53668235,0.03725271,98.8844074],[4.53668192,0.03725096,98.88540501],[4.53668149,0.03724921,98.88640242],[4.53668106,0.03724746,98.88739962],[4.53668062,0.03724571,98.88839663],[4.53668019,0.03724396,98.88939345],[4.53667976,0.03724221,98.89039007],[4.53667933,0.03724046,98.8913865],[4.5366789,0.03723871,98.89238275],[4.53667846,0.03723696,98.89337883],[4.53667803,0.03723521,98.89437476],[4.5366776,0.03723347,98.89537057],[4.53667717,0.03723172,98.89636628],[4.53667674,0.03722997,98.89736193],[4.5366763,0.03722822,98.89835753],[4.53667587,0.03722647,98.8993531],[4.53667544,0.03722472,98.90034868],[4.53667501,0.03722297,98.90134426],[4.53667458,0.03722122,98.90233986],[4.53667414,0.03721947,98.90333545],[4.53667371,0.03721772,98.90433101],[4.53667328,0.03721597,98.90532654],[4.53667285,0.03721422,98.90632202],[4.53667242,0.03721247,98.90731743],[4.53667199,0.03721072,98.90831277],[4.53667156,0.03720897,98.909308],[4.53667113,0.03720722,98.91030313],[4.5366707,0.03720547,98.91129814],[4.53667027,0.03720372,98.912293],[4.53666984,0.03720197,98.91328772],[4.53666941,0.03720022,98.91428227],[4.53666898,0.03719847,98.91527663],[4.53666855,0.03719672,98.91627081],[4.53666812,0.03719497,98.91726477],[4.53666769,0.03719322,98.91825851],[4.53666726,0.03719147,98.91925201],[4.53666683,0.03718972,98.92024525],[4.5366664,0.03718797,98.92123823],[4.53666597,0.03718622,98.92223093],[4.53666554,0.03718447,98.92322333],[4.53666511,0.03718272,98.92421543],[4.53666469,0.03718097,98.92520719],[4.53666426,0.03717922,98.92619862],[4.53666383,0.03717747,98.9271897],[4.5366634,0.03717572,98.92818041],[4.53666297,0.03717397,98.92917074],[4.53666254,0.03717222,98.93016067],[4.53666211,0.03717047,98.93115019],[4.53666168,0.03716872,98.93213929],[4.53666125,0.03716697,98.93312795],[4.53666083,0.03716521,98.93411616],[4.5366604,0.03716346,98.9351039],[4.53665997,0.03716171,98.93609116],[4.53665954,0.03715996,98.93707793],[4.53665911,0.03715821,98.93806419],[4.53665868,0.03715646,98.93904992],[4.53665825,0.03715471,98.94003511],[4.53665782,0.03715296,98.94101976],[4.53665739,0.03715121,98.94200383],[4.53665696,0.03714946,98.94298733],[4.53665653,0.03714771,98.94397024],[4.53665611,0.03714596,98.94495261],[4.53665568,0.03714421,98.94593447],[4.53665525,0.03714246,98.94691587],[4.53665482,0.03714071,98.94789686],[4.53665439,0.03713896,98.94887748],[4.53665396,0.03713721,98.94985776],[4.53665353,0.03713546,98.95083773],[4.5366531,0.03713371,98.95181737],[4.53665267,0.03713196,98.9527967],[4.53665224,0.03713021,98.9537757],[4.5366518,0.03712846,98.95475438],[4.53665137,0.03712671,98.95573275],[4.53665094,0.03712496,98.9567108],[4.53665051,0.03712321,98.95768853],[4.53665008,0.03712146,98.95866595],[4.53664965,0.03711971,98.95964305],[4.53664922,0.03711796,98.96061984],[4.53664879,0.03711621,98.96159631],[4.53664836,0.03711446,98.96257247],[4.53664793,0.03711271,98.96354832],[4.53664749,0.03711096,98.96452387],[4.53664706,0.03710921,98.9654991],[4.53664663,0.03710746,98.96647402],[4.5366462,0.03710571,98.96744863],[4.53664577,0.03710397,98.96842294],[4.53664533,0.03710222,98.96939694],[4.5366449,0.03710047,98.97037064],[4.53664447,0.03709872,98.97134403],[4.53664404,0.03709697,98.97231712],[4.5366436,0.03709522,98.97328991],[4.53664317,0.03709347,98.97426239],[4.53664274,0.03709172,98.97523457],[4.5366423,0.03708997,98.97620645],[4.53664187,0.03708822,98.97717804],[4.53664143,0.03708647,98.97814932],[4.536641,0.03708472,98.97912031],[4.53664057,0.03708298,98.980091],[4.53664013,0.03708123,98.9810614],[4.5366397,0.03707948,98.9820315],[4.53663926,0.03707773,98.9830013],[4.53663883,0.03707598,98.98397082],[4.53663839,0.03707423,98.98494004],[4.53663795,0.03707248,98.98590897],[4.53663752,0.03707073,98.98687762],[4.53663708,0.03706899,98.98784598],[4.53663665,0.03706724,98.98881405],[4.53663621,0.03706549,98.98978184],[4.53663577,0.03706374,98.99074935],[4.53663534,0.03706199,98.99171657],[4.5366349,0.03706024,98.99268352],[4.53663446,0.0370585,98.99365019],[4.53663403,0.03705675,98.99461659],[4.53663359,0.037055,98.99558271],[4.53663315,0.03705325,98.99654855],[4.53663271,0.0370515,98.99751413],[4.53663228,0.03704975,98.99847943],[4.53663184,0.03704801,98.99944447],[4.5366314,0.03704626,99.00040923],[4.53663096,0.03704451,99.00137368],[4.53663052,0.03704276,99.00233777],[4.53663009,0.03704101,99.00330146],[4.53662965,0.03703927,99.00426471],[4.53662921,0.03703752,99.00522746],[4.53662877,0.03703577,99.00618968],[4.53662833,0.03703402,99.00715131],[4.53662789,0.03703227,99.00811232],[4.53662745,0.03703053,99.00907267],[4.53662701,0.03702878,99.01003235],[4.53662657,0.03702703,99.01099136],[4.53662613,0.03702528,99.01194971],[4.53662569,0.03702354,99.01290739],[4.53662525,0.03702179,99.01386443],[4.53662481,0.03702004,99.0148208],[4.53662437,0.03701829,99.01577654],[4.53662393,0.03701655,99.01673162],[4.53662349,0.0370148,99.01768607],[4.53662305,0.03701305,99.01863989],[4.53662261,0.03701131,99.01959307],[4.53662217,0.03700956,99.02054563],[4.53662173,0.03700781,99.02149757],[4.53662129,0.03700606,99.02244888],[4.53662084,0.03700432,99.02339959],[4.5366204,0.03700257,99.02434968],[4.53661996,0.03700082,99.02529917],[4.53661952,0.03699907,99.02624805],[4.53661908,0.03699733,99.02719634],[4.53661864,0.03699558,99.02814404],[4.53661819,0.03699383,99.02909115],[4.53661775,0.03699209,99.03003767],[4.53661731,0.03699034,99.03098362],[4.53661687,0.03698859,99.03192898],[4.53661643,0.03698685,99.03287378],[4.53661598,0.0369851,99.033818],[4.53661554,0.03698335,99.03476167],[4.5366151,0.0369816,99.03570477],[4.53661466,0.03697986,99.03664731],[4.53661422,0.03697811,99.03758927],[4.53661377,0.03697636,99.03853067],[4.53661333,0.03697462,99.0394715],[4.53661289,0.03697287,99.04041176],[4.53661245,0.03697112,99.04135144],[4.53661201,0.03696938,99.04229054],[4.53661156,0.03696763,99.04322906],[4.53661112,0.03696588,99.044167],[4.53661068,0.03696413,99.04510435],[4.53661024,0.03696239,99.04604112],[4.5366098,0.03696064,99.0469773],[4.53660935,0.03695889,99.04791289],[4.53660891,0.03695715,99.04884788],[4.53660847,0.0369554,99.04978228],[4.53660803,0.03695365,99.05071609],[4.53660759,0.0369519,99.05164929],[4.53660715,0.03695016,99.05258189],[4.53660671,0.03694841,99.05351389],[4.53660626,0.03694666,99.05444527],[4.53660582,0.03694492,99.05537606],[4.53660538,0.03694317,99.05630623],[4.53660494,0.03694142,99.05723579],[4.5366045,0.03693967,99.05816473],[4.53660406,0.03693793,99.05909305],[4.53660362,0.03693618,99.06002076],[4.53660318,0.03693443,99.06094784],[4.53660274,0.03693268,99.06187431],[4.5366023,0.03693094,99.06280014],[4.53660186,0.03692919,99.06372535],[4.53660142,0.03692744,99.06464992],[4.53660098,0.03692569,99.06557387],[4.53660054,0.03692395,99.06649718],[4.5366001,0.0369222,99.06741985],[4.53659966,0.03692045,99.06834188],[4.53659922,0.0369187,99.06926328],[4.53659878,0.03691696,99.07018403],[4.53659834,0.03691521,99.07110413],[4.5365979,0.03691346,99.07202359],[4.53659746,0.03691171,99.07294239],[4.53659702,0.03690996,99.07386055],[4.53659658,0.03690822,99.07477805],[4.53659615,0.03690647,99.07569489],[4.53659571,0.03690472,99.07661107],[4.53659527,0.03690297,99.0775266],[4.53659483,0.03690123,99.07844146],[4.53659439,0.03689948,99.07935566],[4.53659396,0.03689773,99.08026918],[4.53659352,0.03689598,99.08118204],[4.53659308,0.03689423,99.08209423],[4.53659264,0.03689248,99.08300574],[4.53659221,0.03689074,99.08391653],[4.53659177,0.03688899,99.08482656],[4.53659133,0.03688724,99.08573579],[4.53659089,0.03688549,99.08664418],[4.53659046,0.03688374,99.08755168],[4.53659002,0.03688199,99.08845825],[4.53658958,0.03688025,99.08936385],[4.53658915,0.0368785,99.09026843],[4.53658871,0.03687675,99.09117196],[4.53658827,0.036875,99.09207439],[4.53658784,0.03687325,99.09297568],[4.5365874,0.0368715,99.09387584],[4.53658696,0.03686976,99.09477486],[4.53658652,0.03686801,99.09567276],[4.53658609,0.03686626,99.09656954],[4.53658565,0.03686451,99.09746521],[4.53658521,0.03686276,99.09835977],[4.53658478,0.03686102,99.09925324],[4.53658434,0.03685927,99.1001456],[4.5365839,0.03685752,99.10103688],[4.53658346,0.03685577,99.10192708],[4.53658303,0.03685402,99.1028162],[4.53658259,0.03685227,99.10370425],[4.53658215,0.03685053,99.10459124],[4.53658172,0.03684878,99.10547718],[4.53658128,0.03684703,99.10636207],[4.53658084,0.03684528,99.10724592],[4.5365804,0.03684353,99.10812875],[4.53657997,0.03684178,99.10901056],[4.53657953,0.03684004,99.10989137],[4.53657909,0.03683829,99.11077117],[4.53657866,0.03683654,99.11164999],[4.53657822,0.03683479,99.11252783],[4.53657778,0.03683304,99.11340469],[4.53657735,0.03683129,99.1142806],[4.53657691,0.03682955,99.11515555],[4.53657647,0.0368278,99.11602956],[4.53657604,0.03682605,99.11690264],[4.5365756,0.0368243,99.1177748],[4.53657516,0.03682255,99.11864606],[4.53657473,0.0368208,99.11951645],[4.53657429,0.03681906,99.12038599],[4.53657385,0.03681731,99.1212547],[4.53657342,0.03681556,99.1221226],[4.53657298,0.03681381,99.12298972],[4.53657254,0.03681206,99.12385607],[4.53657211,0.03681031,99.12472167],[4.53657167,0.03680856,99.12558656],[4.53657124,0.03680682,99.12645075],[4.5365708,0.03680507,99.12731426],[4.53657037,0.03680332,99.12817712],[4.53656993,0.03680157,99.12903935],[4.5365695,0.03679982,99.12990097],[4.53656906,0.03679807,99.13076199],[4.53656863,0.03679632,99.13162241],[4.53656819,0.03679457,99.1324822],[4.53656776,0.03679282,99.13334135],[4.53656732,0.03679108,99.13419983],[4.53656689,0.03678933,99.13505763],[4.53656646,0.03678758,99.13591472],[4.53656602,0.03678583,99.1367711],[4.53656559,0.03678408,99.13762673],[4.53656516,0.03678233,99.1384816],[4.53656472,0.03678058,99.13933568],[4.53656429,0.03677883,99.14018897],[4.53656386,0.03677708,99.14104145],[4.53656342,0.03677533,99.14189311],[4.53656299,0.03677358,99.14274398],[4.53656256,0.03677183,99.14359407],[4.53656212,0.03677008,99.14444338],[4.53656169,0.03676833,99.14529194],[4.53656126,0.03676659,99.14613975],[4.53656083,0.03676484,99.14698682],[4.53656039,0.03676309,99.14783317],[4.53655996,0.03676134,99.14867881],[4.53655953,0.03675959,99.14952375],[4.5365591,0.03675784,99.15036798],[4.53655867,0.03675609,99.15121149],[4.53655823,0.03675434,99.15205427],[4.5365578,0.03675259,99.1528963],[4.53655737,0.03675084,99.15373757],[4.53655694,0.03674909,99.15457807],[4.53655651,0.03674734,99.15541778],[4.53655608,0.03674559,99.15625668],[4.53655564,0.03674384,99.15709478],[4.53655521,0.03674209,99.15793204],[4.53655478,0.03674034,99.15876846],[4.53655435,0.03673859,99.15960403],[4.53655392,0.03673684,99.16043872],[4.53655349,0.03673509,99.16127254],[4.53655306,0.03673334,99.16210547],[4.53655263,0.03673159,99.1629375],[4.53655219,0.03672984,99.16376863],[4.53655176,0.03672809,99.16459883],[4.53655133,0.03672634,99.16542811],[4.5365509,0.03672459,99.16625646],[4.53655047,0.03672284,99.16708385],[4.53655004,0.03672109,99.16791029],[4.53654961,0.03671934,99.16873577],[4.53654917,0.03671759,99.16956027],[4.53654874,0.03671584,99.17038379],[4.53654831,0.03671409,99.17120631],[4.53654788,0.03671234,99.17202783],[4.53654745,0.03671059,99.17284833],[4.53654701,0.03670884,99.17366781],[4.53654658,0.0367071,99.17448626],[4.53654615,0.03670535,99.17530366],[4.53654572,0.0367036,99.17612002],[4.53654529,0.03670185,99.17693531],[4.53654485,0.0367001,99.17774952],[4.53654442,0.03669835,99.17856266],[4.53654399,0.0366966,99.1793747],[4.53654356,0.03669485,99.18018564],[4.53654312,0.0366931,99.18099547],[4.53654269,0.03669135,99.18180418],[4.53654226,0.0366896,99.18261176],[4.53654182,0.03668785,99.18341819],[4.53654139,0.0366861,99.18422348],[4.53654096,0.03668435,99.1850276],[4.53654052,0.0366826,99.18583055],[4.53654009,0.03668085,99.18663232],[4.53653965,0.03667911,99.1874329],[4.53653922,0.03667736,99.18823226],[4.53653879,0.03667561,99.18903042],[4.53653835,0.03667386,99.18982734],[4.53653792,0.03667211,99.19062303],[4.53653748,0.03667036,99.19141746],[4.53653705,0.03666861,99.19221063],[4.53653661,0.03666686,99.19300253],[4.53653618,0.03666511,99.19379314],[4.53653574,0.03666337,99.19458246],[4.53653531,0.03666162,99.19537048],[4.53653487,0.03665987,99.19615723],[4.53653443,0.03665812,99.19694272],[4.536534,0.03665637,99.19772699],[4.53653356,0.03665462,99.19851005],[4.53653313,0.03665287,99.19929194],[4.53653269,0.03665112,99.20007266],[4.53653225,0.03664938,99.20085226],[4.53653182,0.03664763,99.20163075],[4.53653138,0.03664588,99.20240818],[4.53653094,0.03664413,99.20318456],[4.53653051,0.03664238,99.20395994],[4.53653007,0.03664063,99.20473435],[4.53652963,0.03663889,99.20550782],[4.53652919,0.03663714,99.20628038],[4.53652876,0.03663539,99.20705206],[4.53652832,0.03663364,99.20782288],[4.53652788,0.03663189,99.20859286],[4.53652745,0.03663014,99.209362],[4.53652701,0.0366284,99.21013032],[4.53652657,0.03662665,99.21089784],[4.53652613,0.0366249,99.21166458],[4.5365257,0.03662315,99.21243055],[4.53652526,0.0366214,99.21319578],[4.53652482,0.03661965,99.2139603],[4.53652439,0.03661791,99.21472411],[4.53652395,0.03661616,99.21548726],[4.53652351,0.03661441,99.21624974],[4.53652308,0.03661266,99.21701155],[4.53652264,0.03661091,99.21777269],[4.5365222,0.03660916,99.21853316],[4.53652177,0.03660742,99.21929295],[4.53652133,0.03660567,99.22005206],[4.53652089,0.03660392,99.22081048],[4.53652046,0.03660217,99.22156822],[4.53652002,0.03660042,99.22232527],[4.53651958,0.03659867,99.22308162],[4.53651915,0.03659692,99.22383727],[4.53651871,0.03659518,99.22459222],[4.53651827,0.03659343,99.22534647],[4.53651784,0.03659168,99.2261],[4.5365174,0.03658993,99.22685283],[4.53651696,0.03658818,99.22760494],[4.53651653,0.03658643,99.22835632],[4.53651609,0.03658468,99.22910699],[4.53651566,0.03658294,99.22985692],[4.53651522,0.03658119,99.23060613],[4.53651478,0.03657944,99.2313546],[4.53651435,0.03657769,99.23210233],[4.53651391,0.03657594,99.23284932],[4.53651347,0.03657419,99.23359557],[4.53651304,0.03657244,99.23434106],[4.5365126,0.0365707,99.2350858],[4.53651217,0.03656895,99.23582979],[4.53651173,0.0365672,99.23657301],[4.53651129,0.03656545,99.23731547],[4.53651086,0.0365637,99.23805715],[4.53651042,0.03656195,99.23879807],[4.53650998,0.0365602,99.2395382],[4.53650955,0.03655846,99.24027756],[4.53650911,0.03655671,99.24101613],[4.53650868,0.03655496,99.24175391],[4.53650824,0.03655321,99.2424909],[4.5365078,0.03655146,99.24322709],[4.53650737,0.03654971,99.24396248],[4.53650693,0.03654796,99.24469706],[4.53650649,0.03654622,99.24543084],[4.53650606,0.03654447,99.2461638],[4.53650562,0.03654272,99.24689594],[4.53650519,0.03654097,99.24762726],[4.53650475,0.03653922,99.24835775],[4.53650431,0.03653747,99.24908741],[4.53650388,0.03653573,99.24981624],[4.53650344,0.03653398,99.25054423],[4.536503,0.03653223,99.25127137],[4.53650257,0.03653048,99.25199767],[4.53650213,0.03652873,99.25272311],[4.53650169,0.03652698,99.25344769],[4.53650126,0.03652523,99.25417142],[4.53650082,0.03652349,99.25489427],[4.53650038,0.03652174,99.25561626],[4.53649995,0.03651999,99.25633737],[4.53649951,0.03651824,99.2570576],[4.53649907,0.03651649,99.25777695],[4.53649864,0.03651474,99.2584954],[4.5364982,0.036513,99.25921297],[4.53649776,0.03651125,99.25992963],[4.53649732,0.0365095,99.2606454],[4.53649689,0.03650775,99.26136025],[4.53649645,0.036506,99.26207419],[4.53649601,0.03650425,99.26278722],[4.53649557,0.03650251,99.26349932],[4.53649514,0.03650076,99.26421049],[4.53649495,0.03650002,99.26451101]],"type":"LineString"},"type":"feature","properties":{"successorId":-6,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":-6,"type":"none","predecessorId":0}},{"geometry":{"coordinates":[[4.53693089,0.03819753,98.39653286],[4.53693045,0.03819578,98.39712081],[4.53693002,0.03819403,98.39771174],[4.53692958,0.03819228,98.39830563],[4.53692915,0.03819053,98.39890247],[4.53692871,0.03818878,98.39950225],[4.53692828,0.03818703,98.40010496],[4.53692785,0.03818528,98.40071059],[4.53692741,0.03818353,98.40131912],[4.53692698,0.03818178,98.40193054],[4.53692655,0.03818003,98.40254485],[4.53692611,0.03817828,98.40316202],[4.53692568,0.03817653,98.40378204],[4.53692525,0.03817478,98.40440488],[4.53692482,0.03817303,98.4050305],[4.53692438,0.03817128,98.40565888],[4.53692395,0.03816953,98.40628999],[4.53692352,0.03816778,98.40692381],[4.53692309,0.03816603,98.4075603],[4.53692266,0.03816428,98.40819943],[4.53692223,0.03816253,98.40884117],[4.5369218,0.03816078,98.4094855],[4.53692137,0.03815903,98.41013239],[4.53692094,0.03815728,98.41078181],[4.53692051,0.03815553,98.41143372],[4.53692008,0.03815378,98.4120881],[4.53691965,0.03815203,98.41274492],[4.53691922,0.03815028,98.41340415],[4.53691879,0.03814852,98.41406576],[4.53691836,0.03814677,98.41472972],[4.53691793,0.03814502,98.415396],[4.5369175,0.03814327,98.41606458],[4.53691707,0.03814152,98.41673541],[4.53691664,0.03813977,98.41740848],[4.53691622,0.03813802,98.41808374],[4.53691579,0.03813627,98.41876118],[4.53691536,0.03813452,98.41944076],[4.53691493,0.03813277,98.42012246],[4.53691451,0.03813101,98.42080623],[4.53691408,0.03812926,98.42149206],[4.53691365,0.03812751,98.42217991],[4.53691322,0.03812576,98.42286975],[4.5369128,0.03812401,98.42356155],[4.53691237,0.03812226,98.42425528],[4.53691194,0.03812051,98.42495091],[4.53691152,0.03811875,98.42564841],[4.53691109,0.038117,98.42634775],[4.53691066,0.03811525,98.4270489],[4.53691024,0.0381135,98.42775183],[4.53690981,0.03811175,98.4284565],[4.53690939,0.03811,98.4291629],[4.53690896,0.03810825,98.42987098],[4.53690854,0.03810649,98.43058071],[4.53690811,0.03810474,98.43129208],[4.53690768,0.03810299,98.43200503],[4.53690726,0.03810124,98.43271956],[4.53690683,0.03809949,98.43343563],[4.53690641,0.03809774,98.43415324],[4.53690598,0.03809598,98.43487235],[4.53690556,0.03809423,98.43559295],[4.53690513,0.03809248,98.43631502],[4.53690471,0.03809073,98.43703854],[4.53690428,0.03808898,98.4377635],[4.53690386,0.03808722,98.43848986],[4.53690343,0.03808547,98.43921762],[4.53690301,0.03808372,98.43994675],[4.53690259,0.03808197,98.44067724],[4.53690216,0.03808022,98.44140906],[4.53690174,0.03807846,98.44214219],[4.53690131,0.03807671,98.44287662],[4.53690089,0.03807496,98.44361232],[4.53690046,0.03807321,98.44434928],[4.53690004,0.03807146,98.44508748],[4.53689962,0.0380697,98.44582689],[4.53689919,0.03806795,98.44656748],[4.53689877,0.0380662,98.44730924],[4.53689835,0.03806445,98.44805212],[4.53689792,0.0380627,98.44879612],[4.5368975,0.03806094,98.44954123],[4.53689708,0.03805919,98.45028748],[4.53689665,0.03805744,98.45103485],[4.53689623,0.03805569,98.45178338],[4.53689581,0.03805393,98.45253307],[4.53689538,0.03805218,98.45328392],[4.53689496,0.03805043,98.45403596],[4.53689454,0.03804868,98.45478918],[4.53689411,0.03804693,98.45554361],[4.53689369,0.03804517,98.45629925],[4.53689327,0.03804342,98.45705611],[4.53689285,0.03804167,98.4578142],[4.53689242,0.03803992,98.45857354],[4.536892,0.03803816,98.45933414],[4.53689158,0.03803641,98.460096],[4.53689115,0.03803466,98.46085914],[4.53689073,0.03803291,98.46162356],[4.53689031,0.03803115,98.46238928],[4.53688989,0.0380294,98.46315632],[4.53688946,0.03802765,98.46392467],[4.53688904,0.0380259,98.46469435],[4.53688862,0.03802415,98.46546538],[4.5368882,0.03802239,98.46623775],[4.53688777,0.03802064,98.4670115],[4.53688735,0.03801889,98.46778661],[4.53688693,0.03801714,98.46856311],[4.5368865,0.03801538,98.46934101],[4.53688608,0.03801363,98.47012031],[4.53688566,0.03801188,98.47090103],[4.53688524,0.03801013,98.47168318],[4.53688481,0.03800837,98.47246677],[4.53688439,0.03800662,98.47325181],[4.53688397,0.03800487,98.47403831],[4.53688355,0.03800312,98.47482628],[4.53688312,0.03800136,98.47561574],[4.5368827,0.03799961,98.47640669],[4.53688228,0.03799786,98.47719915],[4.53688186,0.03799611,98.47799312],[4.53688143,0.03799436,98.47878862],[4.53688101,0.0379926,98.47958565],[4.53688059,0.03799085,98.48038424],[4.53688017,0.0379891,98.48118438],[4.53687974,0.03798735,98.48198609],[4.53687932,0.03798559,98.48278939],[4.5368789,0.03798384,98.48359428],[4.53687847,0.03798209,98.48440077],[4.53687805,0.03798034,98.48520887],[4.53687763,0.03797858,98.4860186],[4.53687721,0.03797683,98.48682997],[4.53687678,0.03797508,98.48764298],[4.53687636,0.03797333,98.48845765],[4.53687594,0.03797158,98.48927397],[4.53687551,0.03796982,98.49009192],[4.53687509,0.03796807,98.49091149],[4.53687467,0.03796632,98.49173265],[4.53687424,0.03796457,98.49255538],[4.53687382,0.03796281,98.49337967],[4.5368734,0.03796106,98.49420549],[4.53687297,0.03795931,98.49503283],[4.53687255,0.03795756,98.49586166],[4.53687213,0.03795581,98.49669197],[4.5368717,0.03795405,98.49752373],[4.53687128,0.0379523,98.49835692],[4.53687085,0.03795055,98.49919153],[4.53687043,0.0379488,98.50002751],[4.53687001,0.03794705,98.50086483],[4.53686958,0.03794529,98.50170348],[4.53686916,0.03794354,98.50254341],[4.53686873,0.03794179,98.50338459],[4.5368683,0.03794004,98.504227],[4.53686788,0.03793829,98.50507061],[4.53686745,0.03793654,98.50591538],[4.53686703,0.03793478,98.50676129],[4.5368666,0.03793303,98.50760832],[4.53686618,0.03793128,98.50845645],[4.53686575,0.03792953,98.50930565],[4.53686532,0.03792778,98.5101559],[4.5368649,0.03792603,98.51100719],[4.53686447,0.03792428,98.51185948],[4.53686404,0.03792253,98.51271276],[4.53686362,0.03792077,98.51356701],[4.53686319,0.03791902,98.5144222],[4.53686276,0.03791727,98.51527832],[4.53686233,0.03791552,98.51613534],[4.53686191,0.03791377,98.51699324],[4.53686148,0.03791202,98.517852],[4.53686105,0.03791027,98.51871159],[4.53686062,0.03790852,98.519572],[4.5368602,0.03790676,98.52043321],[4.53685977,0.03790501,98.52129518],[4.53685934,0.03790326,98.52215791],[4.53685891,0.03790151,98.52302137],[4.53685849,0.03789976,98.52388554],[4.53685806,0.03789801,98.52475039],[4.53685763,0.03789626,98.52561591],[4.5368572,0.03789451,98.52648207],[4.53685678,0.03789276,98.52734886],[4.53685635,0.03789101,98.52821625],[4.53685592,0.03788925,98.52908422],[4.53685549,0.0378875,98.52995278],[4.53685506,0.03788575,98.53082193],[4.53685464,0.037884,98.53169169],[4.53685421,0.03788225,98.53256206],[4.53685378,0.0378805,98.53343306],[4.53685335,0.03787875,98.53430468],[4.53685293,0.037877,98.53517695],[4.5368525,0.03787525,98.53604986],[4.53685207,0.03787349,98.53692342],[4.53685164,0.03787174,98.53779765],[4.53685122,0.03786999,98.53867256],[4.53685079,0.03786824,98.53954814],[4.53685036,0.03786649,98.54042441],[4.53684993,0.03786474,98.54130138],[4.53684951,0.03786299,98.54217905],[4.53684908,0.03786124,98.54305744],[4.53684865,0.03785949,98.54393655],[4.53684822,0.03785773,98.54481639],[4.5368478,0.03785598,98.54569697],[4.53684737,0.03785423,98.5465783],[4.53684694,0.03785248,98.54746039],[4.53684651,0.03785073,98.54834323],[4.53684609,0.03784898,98.54922686],[4.53684566,0.03784723,98.55011126],[4.53684523,0.03784548,98.55099645],[4.5368448,0.03784373,98.55188244],[4.53684438,0.03784198,98.55276923],[4.53684395,0.03784022,98.55365684],[4.53684352,0.03783847,98.55454528],[4.53684309,0.03783672,98.55543454],[4.53684266,0.03783497,98.55632464],[4.53684224,0.03783322,98.55721559],[4.53684181,0.03783147,98.5581074],[4.53684138,0.03782972,98.55900007],[4.53684095,0.03782797,98.55989361],[4.53684052,0.03782622,98.56078803],[4.53684009,0.03782447,98.56168334],[4.53683967,0.03782272,98.56257955],[4.53683924,0.03782096,98.56347667],[4.53683881,0.03781921,98.56437469],[4.53683838,0.03781746,98.56527364],[4.53683795,0.03781571,98.56617352],[4.53683752,0.03781396,98.56707434],[4.53683709,0.03781221,98.5679761],[4.53683666,0.03781046,98.56887882],[4.53683623,0.03780871,98.56978251],[4.53683581,0.03780696,98.57068717],[4.53683538,0.03780521,98.57159282],[4.53683495,0.03780346,98.57249948],[4.53683452,0.03780171,98.57340716],[4.53683409,0.03779996,98.57431587],[4.53683366,0.03779821,98.57522562],[4.53683323,0.03779646,98.57613644],[4.5368328,0.03779471,98.57704832],[4.53683237,0.03779295,98.57796128],[4.53683194,0.0377912,98.57887535],[4.53683151,0.03778945,98.57979052],[4.53683108,0.0377877,98.58070681],[4.53683065,0.03778595,98.5816242],[4.53683022,0.0377842,98.58254268],[4.53682979,0.03778245,98.58346225],[4.53682936,0.0377807,98.58438289],[4.53682893,0.03777895,98.5853046],[4.5368285,0.0377772,98.58622737],[4.53682807,0.03777545,98.58715119],[4.53682764,0.0377737,98.58807604],[4.53682721,0.03777195,98.58900193],[4.53682678,0.0377702,98.58992884],[4.53682635,0.03776845,98.59085677],[4.53682592,0.0377667,98.5917857],[4.53682549,0.03776495,98.59271563],[4.53682506,0.0377632,98.59364658],[4.53682463,0.03776145,98.59457854],[4.5368242,0.0377597,98.5955115],[4.53682377,0.03775795,98.59644545],[4.53682334,0.0377562,98.59738037],[4.53682291,0.03775445,98.59831626],[4.53682248,0.0377527,98.59925311],[4.53682205,0.03775095,98.60019091],[4.53682162,0.03774919,98.60112963],[4.53682119,0.03774744,98.60206928],[4.53682075,0.03774569,98.60300984],[4.53682032,0.03774394,98.6039513],[4.53681989,0.03774219,98.60489365],[4.53681946,0.03774044,98.60583688],[4.53681903,0.03773869,98.60678097],[4.5368186,0.03773694,98.60772592],[4.53681817,0.03773519,98.60867171],[4.53681774,0.03773344,98.60961834],[4.53681731,0.03773169,98.61056579],[4.53681688,0.03772994,98.61151404],[4.53681645,0.03772819,98.6124631],[4.53681602,0.03772644,98.61341295],[4.53681559,0.03772469,98.61436358],[4.53681517,0.03772294,98.61531497],[4.53681474,0.03772119,98.61626712],[4.53681431,0.03771944,98.61722002],[4.53681388,0.03771769,98.61817364],[4.53681345,0.03771594,98.61912799],[4.53681302,0.03771419,98.62008305],[4.53681259,0.03771244,98.62103882],[4.53681216,0.03771069,98.62199527],[4.53681173,0.03770894,98.6229524],[4.5368113,0.03770718,98.62391019],[4.53681087,0.03770543,98.62486865],[4.53681044,0.03770368,98.62582775],[4.53681001,0.03770193,98.62678748],[4.53680958,0.03770018,98.62774784],[4.53680915,0.03769843,98.6287088],[4.53680872,0.03769668,98.62967038],[4.53680829,0.03769493,98.63063254],[4.53680786,0.03769318,98.63159528],[4.53680743,0.03769143,98.63255859],[4.536807,0.03768968,98.63352246],[4.53680657,0.03768793,98.63448687],[4.53680614,0.03768618,98.63545182],[4.53680571,0.03768443,98.63641729],[4.53680528,0.03768268,98.63738328],[4.53680485,0.03768093,98.63834978],[4.53680442,0.03767918,98.63931676],[4.53680399,0.03767743,98.64028423],[4.53680356,0.03767568,98.64125216],[4.53680314,0.03767393,98.64222056],[4.53680271,0.03767217,98.6431894],[4.53680228,0.03767042,98.64415869],[4.53680185,0.03766867,98.6451284],[4.53680142,0.03766692,98.64609852],[4.53680099,0.03766517,98.64706906],[4.53680056,0.03766342,98.64803998],[4.53680013,0.03766167,98.64901129],[4.5367997,0.03765992,98.64998298],[4.53679927,0.03765817,98.65095502],[4.53679884,0.03765642,98.65192742],[4.53679841,0.03765467,98.65290016],[4.53679799,0.03765292,98.65387323],[4.53679756,0.03765117,98.65484661],[4.53679713,0.03764942,98.65582031],[4.5367967,0.03764767,98.6567943],[4.53679627,0.03764592,98.65776858],[4.53679584,0.03764417,98.65874314],[4.53679541,0.03764241,98.65971796],[4.53679498,0.03764066,98.66069304],[4.53679455,0.03763891,98.66166836],[4.53679413,0.03763716,98.66264391],[4.5367937,0.03763541,98.66361969],[4.53679327,0.03763366,98.66459568],[4.53679284,0.03763191,98.66557187],[4.53679241,0.03763016,98.66654825],[4.53679198,0.03762841,98.66752482],[4.53679155,0.03762666,98.66850155],[4.53679112,0.03762491,98.66947844],[4.53679069,0.03762316,98.67045548],[4.53679026,0.03762141,98.67143266],[4.53678984,0.03761966,98.67240999],[4.53678941,0.03761791,98.67338748],[4.53678898,0.03761616,98.67436512],[4.53678855,0.0376144,98.67534291],[4.53678812,0.03761265,98.67632087],[4.53678769,0.0376109,98.677299],[4.53678726,0.03760915,98.67827729],[4.53678683,0.0376074,98.67925576],[4.5367864,0.03760565,98.68023441],[4.53678597,0.0376039,98.68121324],[4.53678554,0.03760215,98.68219228],[4.53678511,0.0376004,98.68317151],[4.53678468,0.03759865,98.68415095],[4.53678425,0.0375969,98.68513061],[4.53678382,0.03759515,98.68611049],[4.53678339,0.0375934,98.6870906],[4.53678297,0.03759165,98.68807095],[4.53678254,0.0375899,98.68905154],[4.53678211,0.03758815,98.69003238],[4.53678168,0.0375864,98.69101348],[4.53678125,0.03758465,98.69199484],[4.53678082,0.0375829,98.69297648],[4.53678039,0.03758115,98.69395839],[4.53677996,0.0375794,98.69494059],[4.53677953,0.03757765,98.69592308],[4.5367791,0.0375759,98.69690587],[4.53677867,0.03757414,98.69788897],[4.53677824,0.03757239,98.69887237],[4.53677781,0.03757064,98.6998561],[4.53677738,0.03756889,98.70084015],[4.53677695,0.03756714,98.70182452],[4.53677652,0.03756539,98.70280921],[4.53677609,0.03756364,98.70379422],[4.53677566,0.03756189,98.70477955],[4.53677523,0.03756014,98.7057652],[4.5367748,0.03755839,98.70675116],[4.53677437,0.03755664,98.70773744],[4.53677394,0.03755489,98.70872404],[4.53677351,0.03755314,98.70971095],[4.53677308,0.03755139,98.71069817],[4.53677265,0.03754964,98.7116857],[4.53677222,0.03754789,98.71267354],[4.53677179,0.03754614,98.7136617],[4.53677136,0.03754439,98.71465016],[4.53677093,0.03754264,98.71563893],[4.5367705,0.03754089,98.71662801],[4.53677007,0.03753914,98.71761739],[4.53676964,0.03753739,98.71860708],[4.53676921,0.03753564,98.71959707],[4.53676878,0.03753389,98.72058737],[4.53676835,0.03753214,98.72157797],[4.53676792,0.03753039,98.72256887],[4.53676749,0.03752864,98.72356007],[4.53676706,0.03752689,98.72455156],[4.53676663,0.03752514,98.72554336],[4.5367662,0.03752339,98.72653545],[4.53676576,0.03752164,98.72752784],[4.53676533,0.03751989,98.72852053],[4.5367649,0.03751814,98.72951351],[4.53676447,0.03751639,98.73050678],[4.53676404,0.03751464,98.73150035],[4.53676361,0.03751289,98.7324942],[4.53676318,0.03751114,98.73348835],[4.53676275,0.03750939,98.73448278],[4.53676232,0.03750764,98.7354775],[4.53676189,0.03750589,98.73647251],[4.53676146,0.03750414,98.73746781],[4.53676102,0.03750239,98.73846339],[4.53676059,0.03750064,98.73945925],[4.53676016,0.03749889,98.7404554],[4.53675973,0.03749714,98.74145183],[4.5367593,0.03749539,98.74244854],[4.53675887,0.03749364,98.74344553],[4.53675844,0.03749189,98.7444428],[4.536758,0.03749014,98.74544034],[4.53675757,0.03748839,98.74643817],[4.53675714,0.03748664,98.74743626],[4.53675671,0.03748489,98.74843464],[4.53675628,0.03748314,98.74943328],[4.53675584,0.03748139,98.7504322],[4.53675541,0.03747964,98.75143139],[4.53675498,0.03747789,98.75243085],[4.53675455,0.03747614,98.75343058],[4.53675412,0.03747439,98.75443058],[4.53675369,0.03747264,98.75543084],[4.53675325,0.03747089,98.75643137],[4.53675282,0.03746914,98.75743217],[4.53675239,0.03746739,98.75843323],[4.53675196,0.03746564,98.75943455],[4.53675153,0.03746389,98.76043614],[4.53675109,0.03746214,98.761438],[4.53675066,0.03746039,98.76244015],[4.53675023,0.03745864,98.7634426],[4.5367498,0.03745689,98.76444537],[4.53674936,0.03745514,98.76544848],[4.53674893,0.03745339,98.76645193],[4.5367485,0.03745164,98.76745574],[4.53674807,0.03744989,98.76845991],[4.53674764,0.03744814,98.76946444],[4.5367472,0.03744639,98.77046935],[4.53674677,0.03744464,98.77147462],[4.53674634,0.03744289,98.77248028],[4.53674591,0.03744114,98.77348632],[4.53674548,0.03743939,98.77449275],[4.53674505,0.03743764,98.77549957],[4.53674461,0.03743589,98.77650679],[4.53674418,0.03743414,98.7775144],[4.53674375,0.03743239,98.7785224],[4.53674332,0.03743065,98.77953077],[4.53674289,0.0374289,98.7805395],[4.53674246,0.03742715,98.78154855],[4.53674203,0.0374254,98.78255793],[4.5367416,0.03742365,98.7835676],[4.53674116,0.0374219,98.78457756],[4.53674073,0.03742015,98.78558778],[4.5367403,0.0374184,98.78659826],[4.53673987,0.03741665,98.78760897],[4.53673944,0.0374149,98.78861989],[4.53673901,0.03741315,98.78963103],[4.53673858,0.0374114,98.79064237],[4.53673815,0.03740965,98.79165391],[4.53673772,0.0374079,98.79266564],[4.53673728,0.03740615,98.79367755],[4.53673685,0.0374044,98.79468965],[4.53673642,0.03740265,98.79570191],[4.53673599,0.0374009,98.79671435],[4.53673556,0.03739915,98.79772695],[4.53673513,0.0373974,98.7987397],[4.5367347,0.03739565,98.79975259],[4.53673427,0.0373939,98.80076564],[4.53673384,0.03739215,98.80177881],[4.53673341,0.0373904,98.80279212],[4.53673298,0.03738865,98.80380555],[4.53673255,0.0373869,98.8048191],[4.53673211,0.03738515,98.80583276],[4.53673168,0.0373834,98.80684653],[4.53673125,0.03738165,98.8078604],[4.53673082,0.0373799,98.80887435],[4.53673039,0.03737815,98.8098884],[4.53672996,0.0373764,98.81090251],[4.53672953,0.03737465,98.81191667],[4.5367291,0.0373729,98.81293088],[4.53672867,0.03737115,98.8139451],[4.53672824,0.0373694,98.81495932],[4.53672781,0.03736765,98.81597354],[4.53672738,0.0373659,98.81698772],[4.53672695,0.03736415,98.81800187],[4.53672652,0.03736239,98.81901595],[4.53672609,0.03736064,98.82002996],[4.53672565,0.03735889,98.82104388],[4.53672522,0.03735714,98.82205769],[4.53672479,0.03735539,98.82307138],[4.53672436,0.03735364,98.82408493],[4.53672393,0.03735189,98.82509833],[4.5367235,0.03735014,98.82611155],[4.53672307,0.03734839,98.82712459],[4.53672264,0.03734664,98.82813743],[4.53672221,0.03734489,98.82915005],[4.53672177,0.03734315,98.83016244],[4.53672134,0.0373414,98.83117457],[4.53672091,0.03733965,98.83218645],[4.53672048,0.0373379,98.83319804],[4.53672005,0.03733615,98.83420934],[4.53671962,0.0373344,98.83522032],[4.53671918,0.03733265,98.83623099],[4.53671875,0.0373309,98.83724134],[4.53671832,0.03732915,98.83825137],[4.53671789,0.0373274,98.83926109],[4.53671746,0.03732565,98.84027051],[4.53671702,0.0373239,98.84127961],[4.53671659,0.03732215,98.8422884],[4.53671616,0.0373204,98.8432969],[4.53671573,0.03731865,98.84430508],[4.53671529,0.0373169,98.84531297],[4.53671486,0.03731515,98.84632056],[4.53671443,0.0373134,98.84732785],[4.536714,0.03731165,98.84833485],[4.53671356,0.0373099,98.84934155],[4.53671313,0.03730815,98.85034796],[4.5367127,0.0373064,98.85135409],[4.53671226,0.03730465,98.85235992],[4.53671183,0.0373029,98.85336547],[4.5367114,0.03730115,98.85437074],[4.53671096,0.0372994,98.85537572],[4.53671053,0.03729765,98.85638043],[4.5367101,0.03729591,98.85738485],[4.53670966,0.03729416,98.858389],[4.53670923,0.03729241,98.85939288],[4.5367088,0.03729066,98.86039648],[4.53670836,0.03728891,98.86139982],[4.53670793,0.03728716,98.86240288],[4.5367075,0.03728541,98.86340568],[4.53670706,0.03728366,98.86440821],[4.53670663,0.03728191,98.86541048],[4.53670619,0.03728016,98.86641249],[4.53670576,0.03727841,98.86741424],[4.53670533,0.03727666,98.86841574],[4.53670489,0.03727491,98.86941698],[4.53670446,0.03727316,98.87041798],[4.53670403,0.03727141,98.87141873],[4.53670359,0.03726967,98.87241923],[4.53670316,0.03726792,98.8734195],[4.53670272,0.03726617,98.87441953],[4.53670229,0.03726442,98.87541932],[4.53670186,0.03726267,98.87641889],[4.53670142,0.03726092,98.87741822],[4.53670099,0.03725917,98.87841733],[4.53670055,0.03725742,98.87941622],[4.53670012,0.03725567,98.88041488],[4.53669969,0.03725392,98.88141333],[4.53669925,0.03725217,98.88241157],[4.53669882,0.03725042,98.88340959],[4.53669838,0.03724867,98.8844074],[4.53669795,0.03724693,98.88540501],[4.53669751,0.03724518,98.88640242],[4.53669708,0.03724343,98.88739962],[4.53669665,0.03724168,98.88839663],[4.53669621,0.03723993,98.88939345],[4.53669578,0.03723818,98.89039007],[4.53669534,0.03723643,98.8913865],[4.53669491,0.03723468,98.89238275],[4.53669448,0.03723293,98.89337883],[4.53669404,0.03723118,98.89437476],[4.53669361,0.03722943,98.89537057],[4.53669317,0.03722768,98.89636628],[4.53669274,0.03722593,98.89736193],[4.53669231,0.03722418,98.89835753],[4.53669187,0.03722244,98.8993531],[4.53669144,0.03722069,98.90034868],[4.53669101,0.03721894,98.90134426],[4.53669057,0.03721719,98.90233986],[4.53669014,0.03721544,98.90333545],[4.53668971,0.03721369,98.90433101],[4.53668927,0.03721194,98.90532654],[4.53668884,0.03721019,98.90632202],[4.53668841,0.03720844,98.90731743],[4.53668797,0.03720669,98.90831277],[4.53668754,0.03720494,98.909308],[4.53668711,0.03720319,98.91030313],[4.53668667,0.03720144,98.91129814],[4.53668624,0.03719969,98.912293],[4.53668581,0.03719794,98.91328772],[4.53668537,0.03719619,98.91428227],[4.53668494,0.03719444,98.91527663],[4.53668451,0.03719269,98.91627081],[4.53668408,0.03719095,98.91726477],[4.53668364,0.0371892,98.91825851],[4.53668321,0.03718745,98.91925201],[4.53668278,0.0371857,98.92024525],[4.53668234,0.03718395,98.92123823],[4.53668191,0.0371822,98.92223093],[4.53668148,0.03718045,98.92322333],[4.53668104,0.0371787,98.92421543],[4.53668061,0.03717695,98.92520719],[4.53668018,0.0371752,98.92619862],[4.53667975,0.03717345,98.9271897],[4.53667931,0.0371717,98.92818041],[4.53667888,0.03716995,98.92917074],[4.53667845,0.0371682,98.93016067],[4.53667801,0.03716645,98.93115019],[4.53667758,0.0371647,98.93213929],[4.53667715,0.03716295,98.93312795],[4.53667671,0.0371612,98.93411616],[4.53667628,0.03715945,98.9351039],[4.53667585,0.03715771,98.93609116],[4.53667541,0.03715596,98.93707793],[4.53667498,0.03715421,98.93806419],[4.53667455,0.03715246,98.93904992],[4.53667411,0.03715071,98.94003511],[4.53667368,0.03714896,98.94101976],[4.53667324,0.03714721,98.94200383],[4.53667281,0.03714546,98.94298733],[4.53667238,0.03714371,98.94397024],[4.53667194,0.03714196,98.94495261],[4.53667151,0.03714021,98.94593447],[4.53667107,0.03713846,98.94691587],[4.53667064,0.03713671,98.94789686],[4.5366702,0.03713497,98.94887748],[4.53666977,0.03713322,98.94985776],[4.53666933,0.03713147,98.95083773],[4.5366689,0.03712972,98.95181737],[4.53666846,0.03712797,98.9527967],[4.53666803,0.03712622,98.9537757],[4.53666759,0.03712447,98.95475438],[4.53666716,0.03712272,98.95573275],[4.53666673,0.03712097,98.9567108],[4.53666629,0.03711922,98.95768853],[4.53666586,0.03711747,98.95866595],[4.53666542,0.03711573,98.95964305],[4.53666499,0.03711398,98.96061984],[4.53666455,0.03711223,98.96159631],[4.53666412,0.03711048,98.96257247],[4.53666368,0.03710873,98.96354832],[4.53666325,0.03710698,98.96452387],[4.53666281,0.03710523,98.9654991],[4.53666238,0.03710348,98.96647402],[4.53666194,0.03710173,98.96744863],[4.53666151,0.03709998,98.96842294],[4.53666107,0.03709823,98.96939694],[4.53666064,0.03709649,98.97037064],[4.53666021,0.03709474,98.97134403],[4.53665977,0.03709299,98.97231712],[4.53665934,0.03709124,98.97328991],[4.5366589,0.03708949,98.97426239],[4.53665847,0.03708774,98.97523457],[4.53665803,0.03708599,98.97620645],[4.5366576,0.03708424,98.97717804],[4.53665716,0.03708249,98.97814932],[4.53665673,0.03708074,98.97912031],[4.53665629,0.03707899,98.980091],[4.53665586,0.03707724,98.9810614],[4.53665542,0.0370755,98.9820315],[4.53665499,0.03707375,98.9830013],[4.53665456,0.037072,98.98397082],[4.53665412,0.03707025,98.98494004],[4.53665369,0.0370685,98.98590897],[4.53665325,0.03706675,98.98687762],[4.53665282,0.037065,98.98784598],[4.53665238,0.03706325,98.98881405],[4.53665195,0.0370615,98.98978184],[4.53665151,0.03705975,98.99074935],[4.53665108,0.037058,98.99171657],[4.53665065,0.03705625,98.99268352],[4.53665021,0.03705451,98.99365019],[4.53664978,0.03705276,98.99461659],[4.53664934,0.03705101,98.99558271],[4.53664891,0.03704926,98.99654855],[4.53664847,0.03704751,98.99751413],[4.53664804,0.03704576,98.99847943],[4.53664761,0.03704401,98.99944447],[4.53664717,0.03704226,99.00040923],[4.53664674,0.03704051,99.00137368],[4.5366463,0.03703876,99.00233777],[4.53664587,0.03703701,99.00330146],[4.53664544,0.03703526,99.00426471],[4.536645,0.03703351,99.00522746],[4.53664457,0.03703177,99.00618968],[4.53664413,0.03703002,99.00715131],[4.5366437,0.03702827,99.00811232],[4.53664326,0.03702652,99.00907267],[4.53664283,0.03702477,99.01003235],[4.53664239,0.03702302,99.01099136],[4.53664196,0.03702127,99.01194971],[4.53664152,0.03701952,99.01290739],[4.53664109,0.03701777,99.01386443],[4.53664065,0.03701602,99.0148208],[4.53664022,0.03701427,99.01577654],[4.53663978,0.03701253,99.01673162],[4.53663935,0.03701078,99.01768607],[4.53663891,0.03700903,99.01863989],[4.53663848,0.03700728,99.01959307],[4.53663804,0.03700553,99.02054563],[4.53663761,0.03700378,99.02149757],[4.53663717,0.03700203,99.02244888],[4.53663674,0.03700028,99.02339959],[4.5366363,0.03699853,99.02434968],[4.53663586,0.03699679,99.02529917],[4.53663543,0.03699504,99.02624805],[4.53663499,0.03699329,99.02719634],[4.53663456,0.03699154,99.02814404],[4.53663412,0.03698979,99.02909115],[4.53663368,0.03698804,99.03003767],[4.53663325,0.03698629,99.03098362],[4.53663281,0.03698454,99.03192898],[4.53663238,0.0369828,99.03287378],[4.53663194,0.03698105,99.033818],[4.5366315,0.0369793,99.03476167],[4.53663107,0.03697755,99.03570477],[4.53663063,0.0369758,99.03664731],[4.53663019,0.03697405,99.03758927],[4.53662976,0.0369723,99.03853067],[4.53662932,0.03697055,99.0394715],[4.53662889,0.03696881,99.04041176],[4.53662845,0.03696706,99.04135144],[4.53662801,0.03696531,99.04229054],[4.53662758,0.03696356,99.04322906],[4.53662714,0.03696181,99.044167],[4.5366267,0.03696006,99.04510435],[4.53662627,0.03695831,99.04604112],[4.53662583,0.03695657,99.0469773],[4.53662539,0.03695482,99.04791289],[4.53662496,0.03695307,99.04884788],[4.53662452,0.03695132,99.04978228],[4.53662408,0.03694957,99.05071609],[4.53662365,0.03694782,99.05164929],[4.53662321,0.03694607,99.05258189],[4.53662277,0.03694433,99.05351389],[4.53662234,0.03694258,99.05444527],[4.5366219,0.03694083,99.05537606],[4.53662146,0.03693908,99.05630623],[4.53662103,0.03693733,99.05723579],[4.53662059,0.03693558,99.05816473],[4.53662015,0.03693383,99.05909305],[4.53661972,0.03693209,99.06002076],[4.53661928,0.03693034,99.06094784],[4.53661884,0.03692859,99.06187431],[4.53661841,0.03692684,99.06280014],[4.53661797,0.03692509,99.06372535],[4.53661753,0.03692334,99.06464992],[4.5366171,0.03692159,99.06557387],[4.53661666,0.03691985,99.06649718],[4.53661622,0.0369181,99.06741985],[4.53661578,0.03691635,99.06834188],[4.53661535,0.0369146,99.06926328],[4.53661491,0.03691285,99.07018403],[4.53661447,0.0369111,99.07110413],[4.53661404,0.03690935,99.07202359],[4.5366136,0.03690761,99.07294239],[4.53661316,0.03690586,99.07386055],[4.53661273,0.03690411,99.07477805],[4.53661229,0.03690236,99.07569489],[4.53661185,0.03690061,99.07661107],[4.53661141,0.03689886,99.0775266],[4.53661098,0.03689711,99.07844146],[4.53661054,0.03689537,99.07935566],[4.5366101,0.03689362,99.08026918],[4.53660967,0.03689187,99.08118204],[4.53660923,0.03689012,99.08209423],[4.53660879,0.03688837,99.08300574],[4.53660836,0.03688662,99.08391653],[4.53660792,0.03688487,99.08482656],[4.53660748,0.03688313,99.08573579],[4.53660704,0.03688138,99.08664418],[4.53660661,0.03687963,99.08755168],[4.53660617,0.03687788,99.08845825],[4.53660573,0.03687613,99.08936385],[4.53660529,0.03687438,99.09026843],[4.53660486,0.03687264,99.09117196],[4.53660442,0.03687089,99.09207439],[4.53660398,0.03686914,99.09297568],[4.53660354,0.03686739,99.09387584],[4.5366031,0.03686564,99.09477486],[4.53660267,0.03686389,99.09567276],[4.53660223,0.03686215,99.09656954],[4.53660179,0.0368604,99.09746521],[4.53660135,0.03685865,99.09835977],[4.53660091,0.0368569,99.09925324],[4.53660047,0.03685515,99.1001456],[4.53660003,0.03685341,99.10103688],[4.53659959,0.03685166,99.10192708],[4.53659915,0.03684991,99.1028162],[4.53659871,0.03684816,99.10370425],[4.53659827,0.03684641,99.10459124],[4.53659783,0.03684467,99.10547718],[4.53659739,0.03684292,99.10636207],[4.53659695,0.03684117,99.10724592],[4.53659651,0.03683942,99.10812875],[4.53659607,0.03683768,99.10901056],[4.53659563,0.03683593,99.10989137],[4.53659519,0.03683418,99.11077117],[4.53659475,0.03683243,99.11164999],[4.53659431,0.03683069,99.11252783],[4.53659387,0.03682894,99.11340469],[4.53659343,0.03682719,99.1142806],[4.53659299,0.03682544,99.11515555],[4.53659255,0.03682369,99.11602956],[4.53659211,0.03682195,99.11690264],[4.53659167,0.0368202,99.1177748],[4.53659123,0.03681845,99.11864606],[4.53659079,0.0368167,99.11951645],[4.53659035,0.03681496,99.12038599],[4.5365899,0.03681321,99.1212547],[4.53658946,0.03681146,99.1221226],[4.53658902,0.03680971,99.12298972],[4.53658858,0.03680797,99.12385607],[4.53658814,0.03680622,99.12472167],[4.5365877,0.03680447,99.12558656],[4.53658726,0.03680272,99.12645075],[4.53658682,0.03680098,99.12731426],[4.53658638,0.03679923,99.12817712],[4.53658594,0.03679748,99.12903935],[4.5365855,0.03679573,99.12990097],[4.53658506,0.03679399,99.13076199],[4.53658462,0.03679224,99.13162241],[4.53658418,0.03679049,99.1324822],[4.53658374,0.03678874,99.13334135],[4.5365833,0.03678699,99.13419983],[4.53658286,0.03678525,99.13505763],[4.53658242,0.0367835,99.13591472],[4.53658198,0.03678175,99.1367711],[4.53658154,0.03678,99.13762673],[4.5365811,0.03677826,99.1384816],[4.53658066,0.03677651,99.13933568],[4.53658022,0.03677476,99.14018897],[4.53657978,0.03677301,99.14104145],[4.53657934,0.03677126,99.14189311],[4.5365789,0.03676952,99.14274398],[4.53657846,0.03676777,99.14359407],[4.53657802,0.03676602,99.14444338],[4.53657758,0.03676427,99.14529194],[4.53657714,0.03676252,99.14613975],[4.5365767,0.03676078,99.14698682],[4.53657626,0.03675903,99.14783317],[4.53657582,0.03675728,99.14867881],[4.53657538,0.03675553,99.14952375],[4.53657494,0.03675378,99.15036798],[4.5365745,0.03675204,99.15121149],[4.53657407,0.03675029,99.15205427],[4.53657363,0.03674854,99.1528963],[4.53657319,0.03674679,99.15373757],[4.53657275,0.03674505,99.15457807],[4.53657231,0.0367433,99.15541778],[4.53657187,0.03674155,99.15625668],[4.53657143,0.0367398,99.15709478],[4.53657099,0.03673805,99.15793204],[4.53657055,0.03673631,99.15876846],[4.53657011,0.03673456,99.15960403],[4.53656967,0.03673281,99.16043872],[4.53656923,0.03673106,99.16127254],[4.53656879,0.03672931,99.16210547],[4.53656835,0.03672757,99.1629375],[4.53656791,0.03672582,99.16376863],[4.53656747,0.03672407,99.16459883],[4.53656704,0.03672232,99.16542811],[4.5365666,0.03672057,99.16625646],[4.53656616,0.03671883,99.16708385],[4.53656572,0.03671708,99.16791029],[4.53656528,0.03671533,99.16873577],[4.53656484,0.03671358,99.16956027],[4.53656439,0.03671184,99.17038379],[4.53656395,0.03671009,99.17120631],[4.53656351,0.03670834,99.17202783],[4.53656307,0.03670659,99.17284833],[4.53656263,0.03670484,99.17366781],[4.53656219,0.0367031,99.17448626],[4.53656175,0.03670135,99.17530366],[4.53656131,0.0366996,99.17612002],[4.53656087,0.03669785,99.17693531],[4.53656043,0.03669611,99.17774952],[4.53655999,0.03669436,99.17856266],[4.53655954,0.03669261,99.1793747],[4.5365591,0.03669086,99.18018564],[4.53655866,0.03668912,99.18099547],[4.53655822,0.03668737,99.18180418],[4.53655778,0.03668562,99.18261176],[4.53655733,0.03668388,99.18341819],[4.53655689,0.03668213,99.18422348],[4.53655645,0.03668038,99.1850276],[4.53655601,0.03667863,99.18583055],[4.53655556,0.03667689,99.18663232],[4.53655512,0.03667514,99.1874329],[4.53655468,0.03667339,99.18823226],[4.53655423,0.03667165,99.18903042],[4.53655379,0.0366699,99.18982734],[4.53655335,0.03666815,99.19062303],[4.5365529,0.03666641,99.19141746],[4.53655246,0.03666466,99.19221063],[4.53655201,0.03666291,99.19300253],[4.53655157,0.03666117,99.19379314],[4.53655113,0.03665942,99.19458246],[4.53655068,0.03665767,99.19537048],[4.53655024,0.03665593,99.19615723],[4.53654979,0.03665418,99.19694272],[4.53654935,0.03665243,99.19772699],[4.5365489,0.03665069,99.19851005],[4.53654845,0.03664894,99.19929194],[4.53654801,0.03664719,99.20007266],[4.53654756,0.03664545,99.20085226],[4.53654712,0.0366437,99.20163075],[4.53654667,0.03664196,99.20240818],[4.53654623,0.03664021,99.20318456],[4.53654578,0.03663846,99.20395994],[4.53654533,0.03663672,99.20473435],[4.53654489,0.03663497,99.20550782],[4.53654444,0.03663322,99.20628038],[4.536544,0.03663148,99.20705206],[4.53654355,0.03662973,99.20782288],[4.5365431,0.03662798,99.20859286],[4.53654266,0.03662624,99.209362],[4.53654221,0.03662449,99.21013032],[4.53654177,0.03662275,99.21089784],[4.53654132,0.036621,99.21166458],[4.53654087,0.03661925,99.21243055],[4.53654043,0.03661751,99.21319578],[4.53653998,0.03661576,99.2139603],[4.53653954,0.03661401,99.21472411],[4.53653909,0.03661227,99.21548726],[4.53653865,0.03661052,99.21624974],[4.5365382,0.03660878,99.21701155],[4.53653776,0.03660703,99.21777269],[4.53653731,0.03660528,99.21853316],[4.53653686,0.03660354,99.21929295],[4.53653642,0.03660179,99.22005206],[4.53653597,0.03660004,99.22081048],[4.53653553,0.0365983,99.22156822],[4.53653508,0.03659655,99.22232527],[4.53653464,0.0365948,99.22308162],[4.53653419,0.03659306,99.22383727],[4.53653375,0.03659131,99.22459222],[4.5365333,0.03658956,99.22534647],[4.53653286,0.03658782,99.2261],[4.53653242,0.03658607,99.22685283],[4.53653197,0.03658432,99.22760494],[4.53653153,0.03658258,99.22835632],[4.53653108,0.03658083,99.22910699],[4.53653064,0.03657908,99.22985692],[4.53653019,0.03657734,99.23060613],[4.53652975,0.03657559,99.2313546],[4.5365293,0.03657384,99.23210233],[4.53652886,0.0365721,99.23284932],[4.53652841,0.03657035,99.23359557],[4.53652797,0.0365686,99.23434106],[4.53652753,0.03656686,99.2350858],[4.53652708,0.03656511,99.23582979],[4.53652664,0.03656336,99.23657301],[4.53652619,0.03656162,99.23731547],[4.53652575,0.03655987,99.23805715],[4.5365253,0.03655812,99.23879807],[4.53652486,0.03655638,99.2395382],[4.53652442,0.03655463,99.24027756],[4.53652397,0.03655288,99.24101613],[4.53652353,0.03655114,99.24175391],[4.53652308,0.03654939,99.2424909],[4.53652264,0.03654764,99.24322709],[4.53652219,0.0365459,99.24396248],[4.53652175,0.03654415,99.24469706],[4.53652131,0.0365424,99.24543084],[4.53652086,0.03654066,99.2461638],[4.53652042,0.03653891,99.24689594],[4.53651997,0.03653716,99.24762726],[4.53651953,0.03653542,99.24835775],[4.53651908,0.03653367,99.24908741],[4.53651864,0.03653192,99.24981624],[4.53651819,0.03653018,99.25054423],[4.53651775,0.03652843,99.25127137],[4.53651731,0.03652668,99.25199767],[4.53651686,0.03652494,99.25272311],[4.53651642,0.03652319,99.25344769],[4.53651597,0.03652144,99.25417142],[4.53651553,0.0365197,99.25489427],[4.53651508,0.03651795,99.25561626],[4.53651464,0.0365162,99.25633737],[4.53651419,0.03651446,99.2570576],[4.53651375,0.03651271,99.25777695],[4.5365133,0.03651096,99.2584954],[4.53651286,0.03650922,99.25921297],[4.53651241,0.03650747,99.25992963],[4.53651197,0.03650572,99.2606454],[4.53651152,0.03650398,99.26136025],[4.53651108,0.03650223,99.26207419],[4.53651063,0.03650049,99.26278722],[4.53651019,0.03649874,99.26349932],[4.53650974,0.03649699,99.26421049],[4.53650955,0.03649625,99.26451101]],"type":"LineString"},"type":"feature","properties":{"successorId":-5,"level":true,"heights":[{"outer":0.15,"inner":0.025}],"roadId":"1004600","id":-5,"type":"border","predecessorId":0}},{"geometry":{"coordinates":[[4.53693222,0.0381972,98.24653286],[4.53693178,0.03819545,98.24712081],[4.53693135,0.0381937,98.24771174],[4.53693091,0.03819195,98.24830563],[4.53693048,0.0381902,98.24890247],[4.53693005,0.03818845,98.24950225],[4.53692961,0.0381867,98.25010496],[4.53692918,0.03818495,98.25071059],[4.53692875,0.0381832,98.25131912],[4.53692832,0.03818145,98.25193054],[4.53692788,0.0381797,98.25254485],[4.53692745,0.03817795,98.25316202],[4.53692702,0.0381762,98.25378204],[4.53692659,0.03817445,98.25440488],[4.53692616,0.0381727,98.2550305],[4.53692573,0.03817095,98.25565888],[4.5369253,0.0381692,98.25628999],[4.53692487,0.03816745,98.25692381],[4.53692444,0.0381657,98.2575603],[4.53692401,0.03816395,98.25819943],[4.53692359,0.0381622,98.25884117],[4.53692316,0.03816045,98.2594855],[4.53692273,0.03815869,98.26013239],[4.5369223,0.03815694,98.26078181],[4.53692188,0.03815519,98.26143372],[4.53692145,0.03815344,98.2620881],[4.53692102,0.03815169,98.26274492],[4.53692059,0.03814994,98.26340415],[4.53692017,0.03814819,98.26406576],[4.53691974,0.03814643,98.26472972],[4.53691932,0.03814468,98.265396],[4.53691889,0.03814293,98.26606458],[4.53691846,0.03814118,98.26673541],[4.53691804,0.03813943,98.26740848],[4.53691761,0.03813768,98.26808374],[4.53691719,0.03813592,98.26876118],[4.53691676,0.03813417,98.26944076],[4.53691634,0.03813242,98.27012246],[4.53691591,0.03813067,98.27080623],[4.53691549,0.03812892,98.27149206],[4.53691506,0.03812716,98.27217991],[4.53691464,0.03812541,98.27286975],[4.53691422,0.03812366,98.27356155],[4.53691379,0.03812191,98.27425528],[4.53691337,0.03812016,98.27495091],[4.53691294,0.0381184,98.27564841],[4.53691252,0.03811665,98.27634775],[4.5369121,0.0381149,98.2770489],[4.53691167,0.03811315,98.27775183],[4.53691125,0.0381114,98.2784565],[4.53691082,0.03810964,98.2791629],[4.5369104,0.03810789,98.27987098],[4.53690998,0.03810614,98.28058071],[4.53690955,0.03810439,98.28129208],[4.53690913,0.03810264,98.28200503],[4.5369087,0.03810088,98.28271956],[4.53690828,0.03809913,98.28343563],[4.53690786,0.03809738,98.28415324],[4.53690743,0.03809563,98.28487235],[4.53690701,0.03809388,98.28559295],[4.53690659,0.03809212,98.28631502],[4.53690616,0.03809037,98.28703854],[4.53690574,0.03808862,98.2877635],[4.53690531,0.03808687,98.28848986],[4.53690489,0.03808511,98.28921762],[4.53690446,0.03808336,98.28994675],[4.53690404,0.03808161,98.29067724],[4.53690362,0.03807986,98.29140906],[4.53690319,0.03807811,98.29214219],[4.53690277,0.03807635,98.29287662],[4.53690234,0.0380746,98.29361232],[4.53690192,0.03807285,98.29434928],[4.53690149,0.0380711,98.29508748],[4.53690107,0.03806935,98.29582689],[4.53690064,0.0380676,98.29656748],[4.53690022,0.03806584,98.29730924],[4.53689979,0.03806409,98.29805212],[4.53689937,0.03806234,98.29879612],[4.53689894,0.03806059,98.29954123],[4.53689852,0.03805884,98.30028748],[4.53689809,0.03805708,98.30103485],[4.53689767,0.03805533,98.30178338],[4.53689724,0.03805358,98.30253307],[4.53689681,0.03805183,98.30328392],[4.53689639,0.03805008,98.30403596],[4.53689596,0.03804833,98.30478918],[4.53689554,0.03804658,98.30554361],[4.53689511,0.03804482,98.30629925],[4.53689468,0.03804307,98.30705611],[4.53689426,0.03804132,98.3078142],[4.53689383,0.03803957,98.30857354],[4.5368934,0.03803782,98.30933414],[4.53689298,0.03803607,98.310096],[4.53689255,0.03803432,98.31085914],[4.53689212,0.03803256,98.31162356],[4.5368917,0.03803081,98.31238928],[4.53689127,0.03802906,98.31315632],[4.53689084,0.03802731,98.31392467],[4.53689042,0.03802556,98.31469435],[4.53688999,0.03802381,98.31546538],[4.53688956,0.03802206,98.31623775],[4.53688914,0.0380203,98.3170115],[4.53688871,0.03801855,98.31778661],[4.53688828,0.0380168,98.31856311],[4.53688785,0.03801505,98.31934101],[4.53688743,0.0380133,98.32012031],[4.536887,0.03801155,98.32090103],[4.53688657,0.0380098,98.32168318],[4.53688615,0.03800805,98.32246677],[4.53688572,0.03800629,98.32325181],[4.53688529,0.03800454,98.32403831],[4.53688487,0.03800279,98.32482628],[4.53688444,0.03800104,98.32561574],[4.53688401,0.03799929,98.32640669],[4.53688359,0.03799754,98.32719915],[4.53688316,0.03799579,98.32799312],[4.53688273,0.03799403,98.32878862],[4.53688231,0.03799228,98.32958565],[4.53688188,0.03799053,98.33038424],[4.53688145,0.03798878,98.33118438],[4.53688103,0.03798703,98.33198609],[4.5368806,0.03798528,98.33278939],[4.53688018,0.03798353,98.33359428],[4.53687975,0.03798177,98.33440077],[4.53687932,0.03798002,98.33520887],[4.5368789,0.03797827,98.3360186],[4.53687847,0.03797652,98.33682997],[4.53687805,0.03797477,98.33764298],[4.53687762,0.03797302,98.33845765],[4.5368772,0.03797127,98.33927397],[4.53687677,0.03796951,98.34009192],[4.53687635,0.03796776,98.34091149],[4.53687592,0.03796601,98.34173265],[4.53687549,0.03796426,98.34255538],[4.53687507,0.03796251,98.34337967],[4.53687465,0.03796075,98.34420549],[4.53687422,0.037959,98.34503283],[4.5368738,0.03795725,98.34586166],[4.53687337,0.0379555,98.34669197],[4.53687295,0.03795375,98.34752373],[4.53687252,0.037952,98.34835692],[4.5368721,0.03795024,98.34919153],[4.53687167,0.03794849,98.35002751],[4.53687125,0.03794674,98.35086483],[4.53687082,0.03794499,98.35170348],[4.5368704,0.03794324,98.35254341],[4.53686998,0.03794148,98.35338459],[4.53686955,0.03793973,98.354227],[4.53686913,0.03793798,98.35507061],[4.5368687,0.03793623,98.35591538],[4.53686828,0.03793448,98.35676129],[4.53686785,0.03793272,98.35760832],[4.53686743,0.03793097,98.35845645],[4.53686701,0.03792922,98.35930565],[4.53686658,0.03792747,98.3601559],[4.53686616,0.03792572,98.36100719],[4.53686573,0.03792396,98.36185948],[4.53686531,0.03792221,98.36271276],[4.53686488,0.03792046,98.36356701],[4.53686446,0.03791871,98.3644222],[4.53686403,0.03791696,98.36527832],[4.53686361,0.03791521,98.36613534],[4.53686318,0.03791345,98.36699324],[4.53686276,0.0379117,98.367852],[4.53686233,0.03790995,98.36871159],[4.53686191,0.0379082,98.369572],[4.53686148,0.03790645,98.37043321],[4.53686106,0.0379047,98.37129518],[4.53686063,0.03790294,98.37215791],[4.53686021,0.03790119,98.37302137],[4.53685978,0.03789944,98.37388554],[4.53685935,0.03789769,98.37475039],[4.53685893,0.03789594,98.37561591],[4.5368585,0.03789419,98.37648207],[4.53685807,0.03789244,98.37734886],[4.53685765,0.03789068,98.37821625],[4.53685722,0.03788893,98.37908422],[4.53685679,0.03788718,98.37995278],[4.53685637,0.03788543,98.38082193],[4.53685594,0.03788368,98.38169169],[4.53685551,0.03788193,98.38256206],[4.53685509,0.03788018,98.38343306],[4.53685466,0.03787843,98.38430468],[4.53685423,0.03787667,98.38517695],[4.5368538,0.03787492,98.38604986],[4.53685337,0.03787317,98.38692342],[4.53685295,0.03787142,98.38779765],[4.53685252,0.03786967,98.38867256],[4.53685209,0.03786792,98.38954814],[4.53685166,0.03786617,98.39042441],[4.53685123,0.03786442,98.39130138],[4.5368508,0.03786267,98.39217905],[4.53685037,0.03786092,98.39305744],[4.53684994,0.03785917,98.39393655],[4.53684952,0.03785742,98.39481639],[4.53684909,0.03785566,98.39569697],[4.53684866,0.03785391,98.3965783],[4.53684823,0.03785216,98.39746039],[4.5368478,0.03785041,98.39834323],[4.53684737,0.03784866,98.39922686],[4.53684694,0.03784691,98.40011126],[4.53684651,0.03784516,98.40099645],[4.53684608,0.03784341,98.40188244],[4.53684565,0.03784166,98.40276923],[4.53684522,0.03783991,98.40365684],[4.53684479,0.03783816,98.40454528],[4.53684436,0.03783641,98.40543454],[4.53684393,0.03783466,98.40632464],[4.5368435,0.03783291,98.40721559],[4.53684307,0.03783116,98.4081074],[4.53684264,0.03782941,98.40900007],[4.53684221,0.03782766,98.40989361],[4.53684178,0.03782591,98.41078803],[4.53684135,0.03782416,98.41168334],[4.53684092,0.0378224,98.41257955],[4.53684049,0.03782065,98.41347667],[4.53684006,0.0378189,98.41437469],[4.53683963,0.03781715,98.41527364],[4.5368392,0.0378154,98.41617352],[4.53683877,0.03781365,98.41707434],[4.53683834,0.0378119,98.4179761],[4.53683791,0.03781015,98.41887882],[4.53683748,0.0378084,98.41978251],[4.53683705,0.03780665,98.42068717],[4.53683662,0.0378049,98.42159282],[4.53683619,0.03780315,98.42249948],[4.53683576,0.0378014,98.42340716],[4.53683533,0.03779965,98.42431587],[4.5368349,0.0377979,98.42522562],[4.53683447,0.03779615,98.42613644],[4.53683404,0.0377944,98.42704832],[4.53683361,0.03779265,98.42796128],[4.53683318,0.0377909,98.42887535],[4.53683275,0.03778915,98.42979052],[4.53683232,0.0377874,98.43070681],[4.53683189,0.03778564,98.4316242],[4.53683146,0.03778389,98.43254268],[4.53683103,0.03778214,98.43346225],[4.53683061,0.03778039,98.43438289],[4.53683018,0.03777864,98.4353046],[4.53682975,0.03777689,98.43622737],[4.53682932,0.03777514,98.43715119],[4.53682889,0.03777339,98.43807604],[4.53682846,0.03777164,98.43900193],[4.53682803,0.03776989,98.43992884],[4.5368276,0.03776814,98.44085677],[4.53682717,0.03776639,98.4417857],[4.53682675,0.03776464,98.44271563],[4.53682632,0.03776289,98.44364658],[4.53682589,0.03776113,98.44457854],[4.53682546,0.03775938,98.4455115],[4.53682503,0.03775763,98.44644545],[4.5368246,0.03775588,98.44738037],[4.53682418,0.03775413,98.44831626],[4.53682375,0.03775238,98.44925311],[4.53682332,0.03775063,98.45019091],[4.53682289,0.03774888,98.45112963],[4.53682246,0.03774713,98.45206928],[4.53682204,0.03774538,98.45300984],[4.53682161,0.03774363,98.4539513],[4.53682118,0.03774187,98.45489365],[4.53682075,0.03774012,98.45583688],[4.53682033,0.03773837,98.45678097],[4.5368199,0.03773662,98.45772592],[4.53681947,0.03773487,98.45867171],[4.53681904,0.03773312,98.45961834],[4.53681862,0.03773137,98.46056579],[4.53681819,0.03772962,98.46151404],[4.53681776,0.03772787,98.4624631],[4.53681733,0.03772612,98.46341295],[4.53681691,0.03772436,98.46436358],[4.53681648,0.03772261,98.46531497],[4.53681605,0.03772086,98.46626712],[4.53681562,0.03771911,98.46722002],[4.5368152,0.03771736,98.46817364],[4.53681477,0.03771561,98.46912799],[4.53681434,0.03771386,98.47008305],[4.53681391,0.03771211,98.47103882],[4.53681349,0.03771036,98.47199527],[4.53681306,0.0377086,98.4729524],[4.53681263,0.03770685,98.47391019],[4.5368122,0.0377051,98.47486865],[4.53681178,0.03770335,98.47582775],[4.53681135,0.0377016,98.47678748],[4.53681092,0.03769985,98.47774784],[4.53681049,0.0376981,98.4787088],[4.53681007,0.03769635,98.47967038],[4.53680964,0.0376946,98.48063254],[4.53680921,0.03769285,98.48159528],[4.53680879,0.03769109,98.48255859],[4.53680836,0.03768934,98.48352246],[4.53680793,0.03768759,98.48448687],[4.5368075,0.03768584,98.48545182],[4.53680708,0.03768409,98.48641729],[4.53680665,0.03768234,98.48738328],[4.53680622,0.03768059,98.48834978],[4.53680579,0.03767884,98.48931676],[4.53680536,0.03767709,98.49028423],[4.53680494,0.03767534,98.49125216],[4.53680451,0.03767358,98.49222056],[4.53680408,0.03767183,98.4931894],[4.53680365,0.03767008,98.49415869],[4.53680323,0.03766833,98.4951284],[4.5368028,0.03766658,98.49609852],[4.53680237,0.03766483,98.49706906],[4.53680194,0.03766308,98.49803998],[4.53680151,0.03766133,98.49901129],[4.53680109,0.03765958,98.49998298],[4.53680066,0.03765783,98.50095502],[4.53680023,0.03765608,98.50192742],[4.5367998,0.03765432,98.50290016],[4.53679937,0.03765257,98.50387323],[4.53679894,0.03765082,98.50484661],[4.53679852,0.03764907,98.50582031],[4.53679809,0.03764732,98.5067943],[4.53679766,0.03764557,98.50776858],[4.53679723,0.03764382,98.50874314],[4.5367968,0.03764207,98.50971796],[4.53679637,0.03764032,98.51069304],[4.53679594,0.03763857,98.51166836],[4.53679551,0.03763682,98.51264391],[4.53679509,0.03763507,98.51361969],[4.53679466,0.03763332,98.51459568],[4.53679423,0.03763157,98.51557187],[4.5367938,0.03762982,98.51654825],[4.53679337,0.03762806,98.51752482],[4.53679294,0.03762631,98.51850155],[4.53679251,0.03762456,98.51947844],[4.53679208,0.03762281,98.52045548],[4.53679165,0.03762106,98.52143266],[4.53679122,0.03761931,98.52240999],[4.53679079,0.03761756,98.52338748],[4.53679036,0.03761581,98.52436512],[4.53678993,0.03761406,98.52534291],[4.5367895,0.03761231,98.52632087],[4.53678907,0.03761056,98.527299],[4.53678864,0.03760881,98.52827729],[4.53678821,0.03760706,98.52925576],[4.53678777,0.03760531,98.53023441],[4.53678734,0.03760356,98.53121324],[4.53678691,0.03760181,98.53219228],[4.53678648,0.03760006,98.53317151],[4.53678605,0.03759831,98.53415095],[4.53678562,0.03759656,98.53513061],[4.53678519,0.03759481,98.53611049],[4.53678476,0.03759306,98.5370906],[4.53678433,0.03759131,98.53807095],[4.53678389,0.03758956,98.53905154],[4.53678346,0.03758781,98.54003238],[4.53678303,0.03758606,98.54101348],[4.5367826,0.03758431,98.54199484],[4.53678217,0.03758256,98.54297648],[4.53678174,0.03758081,98.54395839],[4.53678131,0.03757906,98.54494059],[4.53678087,0.03757731,98.54592308],[4.53678044,0.03757556,98.54690587],[4.53678001,0.03757381,98.54788897],[4.53677958,0.03757206,98.54887237],[4.53677915,0.03757031,98.5498561],[4.53677872,0.03756856,98.55084015],[4.53677828,0.03756681,98.55182452],[4.53677785,0.03756506,98.55280921],[4.53677742,0.03756331,98.55379422],[4.53677699,0.03756156,98.55477955],[4.53677656,0.03755981,98.5557652],[4.53677612,0.03755806,98.55675116],[4.53677569,0.03755631,98.55773744],[4.53677526,0.03755456,98.55872404],[4.53677483,0.03755281,98.55971095],[4.5367744,0.03755106,98.56069817],[4.53677397,0.03754931,98.5616857],[4.53677353,0.03754756,98.56267354],[4.5367731,0.03754581,98.5636617],[4.53677267,0.03754406,98.56465016],[4.53677224,0.03754231,98.56563893],[4.53677181,0.03754056,98.56662801],[4.53677137,0.03753881,98.56761739],[4.53677094,0.03753706,98.56860708],[4.53677051,0.03753531,98.56959707],[4.53677008,0.03753356,98.57058737],[4.53676965,0.03753181,98.57157797],[4.53676921,0.03753006,98.57256887],[4.53676878,0.03752831,98.57356007],[4.53676835,0.03752656,98.57455156],[4.53676792,0.03752481,98.57554336],[4.53676749,0.03752306,98.57653545],[4.53676705,0.03752131,98.57752784],[4.53676662,0.03751956,98.57852053],[4.53676619,0.03751781,98.57951351],[4.53676576,0.03751606,98.58050678],[4.53676533,0.03751431,98.58150035],[4.5367649,0.03751256,98.5824942],[4.53676446,0.03751082,98.58348835],[4.53676403,0.03750907,98.58448278],[4.5367636,0.03750732,98.5854775],[4.53676317,0.03750557,98.58647251],[4.53676274,0.03750382,98.58746781],[4.5367623,0.03750207,98.58846339],[4.53676187,0.03750032,98.58945925],[4.53676144,0.03749857,98.5904554],[4.53676101,0.03749682,98.59145183],[4.53676058,0.03749507,98.59244854],[4.53676014,0.03749332,98.59344553],[4.53675971,0.03749157,98.5944428],[4.53675928,0.03748982,98.59544034],[4.53675885,0.03748807,98.59643817],[4.53675842,0.03748632,98.59743626],[4.53675799,0.03748457,98.59843464],[4.53675755,0.03748282,98.59943328],[4.53675712,0.03748107,98.6004322],[4.53675669,0.03747932,98.60143139],[4.53675626,0.03747757,98.60243085],[4.53675583,0.03747582,98.60343058],[4.53675539,0.03747407,98.60443058],[4.53675496,0.03747232,98.60543084],[4.53675453,0.03747057,98.60643137],[4.5367541,0.03746882,98.60743217],[4.53675367,0.03746707,98.60843323],[4.53675324,0.03746532,98.60943455],[4.5367528,0.03746357,98.61043614],[4.53675237,0.03746182,98.611438],[4.53675194,0.03746007,98.61244015],[4.53675151,0.03745832,98.6134426],[4.53675108,0.03745657,98.61444537],[4.53675065,0.03745482,98.61544848],[4.53675022,0.03745307,98.61645193],[4.53674978,0.03745132,98.61745574],[4.53674935,0.03744957,98.61845991],[4.53674892,0.03744782,98.61946444],[4.53674849,0.03744607,98.62046935],[4.53674806,0.03744432,98.62147462],[4.53674763,0.03744257,98.62248028],[4.5367472,0.03744082,98.62348632],[4.53674677,0.03743907,98.62449275],[4.53674634,0.03743732,98.62549957],[4.53674591,0.03743557,98.62650679],[4.53674547,0.03743382,98.6275144],[4.53674504,0.03743207,98.6285224],[4.53674461,0.03743032,98.62953077],[4.53674418,0.03742857,98.6305395],[4.53674375,0.03742682,98.63154855],[4.53674332,0.03742507,98.63255793],[4.53674289,0.03742332,98.6335676],[4.53674246,0.03742157,98.63457756],[4.53674203,0.03741982,98.63558778],[4.5367416,0.03741807,98.63659826],[4.53674117,0.03741632,98.63760897],[4.53674074,0.03741457,98.63861989],[4.53674031,0.03741282,98.63963103],[4.53673988,0.03741107,98.64064237],[4.53673945,0.03740932,98.64165391],[4.53673902,0.03740757,98.64266564],[4.53673859,0.03740582,98.64367755],[4.53673816,0.03740407,98.64468965],[4.53673773,0.03740232,98.64570191],[4.5367373,0.03740057,98.64671435],[4.53673687,0.03739882,98.64772695],[4.53673644,0.03739707,98.6487397],[4.53673601,0.03739532,98.64975259],[4.53673558,0.03739357,98.65076564],[4.53673515,0.03739182,98.65177881],[4.53673473,0.03739007,98.65279212],[4.5367343,0.03738832,98.65380555],[4.53673387,0.03738657,98.6548191],[4.53673344,0.03738481,98.65583276],[4.53673301,0.03738306,98.65684653],[4.53673258,0.03738131,98.6578604],[4.53673215,0.03737956,98.65887435],[4.53673172,0.03737781,98.6598884],[4.53673129,0.03737606,98.66090251],[4.53673086,0.03737431,98.66191667],[4.53673043,0.03737256,98.66293088],[4.53673,0.03737081,98.6639451],[4.53672957,0.03736906,98.66495932],[4.53672914,0.03736731,98.66597354],[4.53672871,0.03736556,98.66698772],[4.53672828,0.03736381,98.66800187],[4.53672785,0.03736206,98.66901595],[4.53672742,0.03736031,98.67002996],[4.53672699,0.03735856,98.67104388],[4.53672656,0.03735681,98.67205769],[4.53672613,0.03735506,98.67307138],[4.5367257,0.03735331,98.67408493],[4.53672527,0.03735156,98.67509833],[4.53672484,0.03734981,98.67611155],[4.53672441,0.03734806,98.67712459],[4.53672398,0.03734631,98.67813743],[4.53672355,0.03734456,98.67915005],[4.53672312,0.03734281,98.68016244],[4.53672269,0.03734106,98.68117457],[4.53672226,0.03733931,98.68218645],[4.53672183,0.03733756,98.68319804],[4.5367214,0.03733581,98.68420934],[4.53672097,0.03733406,98.68522032],[4.53672053,0.03733231,98.68623099],[4.5367201,0.03733056,98.68724134],[4.53671967,0.03732881,98.68825137],[4.53671924,0.03732706,98.68926109],[4.53671881,0.03732531,98.69027051],[4.53671838,0.03732356,98.69127961],[4.53671795,0.03732181,98.6922884],[4.53671751,0.03732006,98.6932969],[4.53671708,0.03731831,98.69430508],[4.53671665,0.03731656,98.69531297],[4.53671622,0.03731481,98.69632056],[4.53671579,0.03731306,98.69732785],[4.53671535,0.03731131,98.69833485],[4.53671492,0.03730956,98.69934155],[4.53671449,0.03730781,98.70034796],[4.53671406,0.03730606,98.70135409],[4.53671362,0.03730431,98.70235992],[4.53671319,0.03730256,98.70336547],[4.53671276,0.03730081,98.70437074],[4.53671232,0.03729906,98.70537572],[4.53671189,0.03729731,98.70638043],[4.53671146,0.03729556,98.70738485],[4.53671103,0.03729381,98.708389],[4.53671059,0.03729206,98.70939288],[4.53671016,0.03729031,98.71039648],[4.53670973,0.03728857,98.71139982],[4.53670929,0.03728682,98.71240288],[4.53670886,0.03728507,98.71340568],[4.53670843,0.03728332,98.71440821],[4.53670799,0.03728157,98.71541048],[4.53670756,0.03727982,98.71641249],[4.53670712,0.03727807,98.71741424],[4.53670669,0.03727632,98.71841574],[4.53670626,0.03727457,98.71941698],[4.53670582,0.03727282,98.72041798],[4.53670539,0.03727107,98.72141873],[4.53670496,0.03726932,98.72241923],[4.53670452,0.03726757,98.7234195],[4.53670409,0.03726582,98.72441953],[4.53670365,0.03726407,98.72541932],[4.53670322,0.03726233,98.72641889],[4.53670278,0.03726058,98.72741822],[4.53670235,0.03725883,98.72841733],[4.53670192,0.03725708,98.72941622],[4.53670148,0.03725533,98.73041488],[4.53670105,0.03725358,98.73141333],[4.53670061,0.03725183,98.73241157],[4.53670018,0.03725008,98.73340959],[4.53669974,0.03724833,98.7344074],[4.53669931,0.03724658,98.73540501],[4.53669888,0.03724483,98.73640242],[4.53669844,0.03724308,98.73739962],[4.53669801,0.03724134,98.73839663],[4.53669757,0.03723959,98.73939345],[4.53669714,0.03723784,98.74039007],[4.5366967,0.03723609,98.7413865],[4.53669627,0.03723434,98.74238275],[4.53669583,0.03723259,98.74337883],[4.5366954,0.03723084,98.74437476],[4.53669496,0.03722909,98.74537057],[4.53669453,0.03722734,98.74636628],[4.5366941,0.03722559,98.74736193],[4.53669366,0.03722384,98.74835753],[4.53669323,0.03722209,98.7493531],[4.53669279,0.03722035,98.75034868],[4.53669236,0.0372186,98.75134426],[4.53669192,0.03721685,98.75233986],[4.53669149,0.0372151,98.75333545],[4.53669106,0.03721335,98.75433101],[4.53669062,0.0372116,98.75532654],[4.53669019,0.03720985,98.75632202],[4.53668975,0.0372081,98.75731743],[4.53668932,0.03720635,98.75831277],[4.53668889,0.0372046,98.759308],[4.53668845,0.03720285,98.76030313],[4.53668802,0.0372011,98.76129814],[4.53668758,0.03719935,98.762293],[4.53668715,0.0371976,98.76328772],[4.53668672,0.03719586,98.76428227],[4.53668628,0.03719411,98.76527663],[4.53668585,0.03719236,98.76627081],[4.53668542,0.03719061,98.76726477],[4.53668498,0.03718886,98.76825851],[4.53668455,0.03718711,98.76925201],[4.53668411,0.03718536,98.77024525],[4.53668368,0.03718361,98.77123823],[4.53668325,0.03718186,98.77223093],[4.53668281,0.03718011,98.77322333],[4.53668238,0.03717836,98.77421543],[4.53668195,0.03717661,98.77520719],[4.53668151,0.03717486,98.77619862],[4.53668108,0.03717311,98.7771897],[4.53668064,0.03717136,98.77818041],[4.53668021,0.03716962,98.77917074],[4.53667978,0.03716787,98.78016067],[4.53667934,0.03716612,98.78115019],[4.53667891,0.03716437,98.78213929],[4.53667847,0.03716262,98.78312795],[4.53667804,0.03716087,98.78411616],[4.5366776,0.03715912,98.7851039],[4.53667717,0.03715737,98.78609116],[4.53667674,0.03715562,98.78707793],[4.5366763,0.03715387,98.78806419],[4.53667587,0.03715212,98.78904992],[4.53667543,0.03715037,98.79003511],[4.536675,0.03714863,98.79101976],[4.53667456,0.03714688,98.79200383],[4.53667413,0.03714513,98.79298733],[4.53667369,0.03714338,98.79397024],[4.53667326,0.03714163,98.79495261],[4.53667282,0.03713988,98.79593447],[4.53667238,0.03713813,98.79691587],[4.53667195,0.03713638,98.79789686],[4.53667151,0.03713463,98.79887748],[4.53667108,0.03713288,98.79985776],[4.53667064,0.03713114,98.80083773],[4.53667021,0.03712939,98.80181737],[4.53666977,0.03712764,98.8027967],[4.53666934,0.03712589,98.8037757],[4.5366689,0.03712414,98.80475438],[4.53666847,0.03712239,98.80573275],[4.53666803,0.03712064,98.8067108],[4.53666759,0.03711889,98.80768853],[4.53666716,0.03711714,98.80866595],[4.53666672,0.0371154,98.80964305],[4.53666629,0.03711365,98.81061984],[4.53666585,0.0371119,98.81159631],[4.53666542,0.03711015,98.81257247],[4.53666498,0.0371084,98.81354832],[4.53666455,0.03710665,98.81452387],[4.53666411,0.0371049,98.8154991],[4.53666368,0.03710315,98.81647402],[4.53666324,0.0371014,98.81744863],[4.53666281,0.03709966,98.81842294],[4.53666237,0.03709791,98.81939694],[4.53666194,0.03709616,98.82037064],[4.5366615,0.03709441,98.82134403],[4.53666106,0.03709266,98.82231712],[4.53666063,0.03709091,98.82328991],[4.53666019,0.03708916,98.82426239],[4.53665976,0.03708741,98.82523457],[4.53665932,0.03708566,98.82620645],[4.53665889,0.03708391,98.82717804],[4.53665845,0.03708217,98.82814932],[4.53665802,0.03708042,98.82912031],[4.53665758,0.03707867,98.830091],[4.53665715,0.03707692,98.8310614],[4.53665671,0.03707517,98.8320315],[4.53665628,0.03707342,98.8330013],[4.53665584,0.03707167,98.83397082],[4.53665541,0.03706992,98.83494004],[4.53665498,0.03706817,98.83590897],[4.53665454,0.03706642,98.83687762],[4.53665411,0.03706467,98.83784598],[4.53665367,0.03706293,98.83881405],[4.53665324,0.03706118,98.83978184],[4.5366528,0.03705943,98.84074935],[4.53665237,0.03705768,98.84171657],[4.53665193,0.03705593,98.84268352],[4.5366515,0.03705418,98.84365019],[4.53665106,0.03705243,98.84461659],[4.53665063,0.03705068,98.84558271],[4.5366502,0.03704893,98.84654855],[4.53664976,0.03704718,98.84751413],[4.53664933,0.03704543,98.84847943],[4.53664889,0.03704368,98.84944447],[4.53664846,0.03704193,98.85040923],[4.53664803,0.03704019,98.85137368],[4.53664759,0.03703844,98.85233777],[4.53664716,0.03703669,98.85330146],[4.53664672,0.03703494,98.85426471],[4.53664629,0.03703319,98.85522746],[4.53664586,0.03703144,98.85618968],[4.53664542,0.03702969,98.85715131],[4.53664499,0.03702794,98.85811232],[4.53664455,0.03702619,98.85907267],[4.53664412,0.03702444,98.86003235],[4.53664369,0.03702269,98.86099136],[4.53664325,0.03702094,98.86194971],[4.53664282,0.03701919,98.86290739],[4.53664238,0.03701744,98.86386443],[4.53664195,0.0370157,98.8648208],[4.53664151,0.03701395,98.86577654],[4.53664108,0.0370122,98.86673162],[4.53664064,0.03701045,98.86768607],[4.53664021,0.0370087,98.86863989],[4.53663978,0.03700695,98.86959307],[4.53663934,0.0370052,98.87054563],[4.53663891,0.03700345,98.87149757],[4.53663847,0.0370017,98.87244888],[4.53663804,0.03699995,98.87339959],[4.5366376,0.0369982,98.87434968],[4.53663717,0.03699646,98.87529917],[4.53663673,0.03699471,98.87624805],[4.5366363,0.03699296,98.87719634],[4.53663586,0.03699121,98.87814404],[4.53663543,0.03698946,98.87909115],[4.53663499,0.03698771,98.88003767],[4.53663455,0.03698596,98.88098362],[4.53663412,0.03698421,98.88192898],[4.53663368,0.03698246,98.88287378],[4.53663325,0.03698071,98.883818],[4.53663281,0.03697897,98.88476167],[4.53663238,0.03697722,98.88570477],[4.53663194,0.03697547,98.88664731],[4.53663151,0.03697372,98.88758927],[4.53663107,0.03697197,98.88853067],[4.53663064,0.03697022,98.8894715],[4.5366302,0.03696847,98.89041176],[4.53662977,0.03696672,98.89135144],[4.53662933,0.03696497,98.89229054],[4.53662889,0.03696323,98.89322906],[4.53662846,0.03696148,98.894167],[4.53662802,0.03695973,98.89510435],[4.53662759,0.03695798,98.89604112],[4.53662715,0.03695623,98.8969773],[4.53662672,0.03695448,98.89791289],[4.53662628,0.03695273,98.89884788],[4.53662585,0.03695098,98.89978228],[4.53662541,0.03694923,98.90071609],[4.53662497,0.03694749,98.90164929],[4.53662454,0.03694574,98.90258189],[4.5366241,0.03694399,98.90351389],[4.53662367,0.03694224,98.90444527],[4.53662323,0.03694049,98.90537606],[4.5366228,0.03693874,98.90630623],[4.53662236,0.03693699,98.90723579],[4.53662192,0.03693524,98.90816473],[4.53662149,0.03693349,98.90909305],[4.53662105,0.03693175,98.91002076],[4.53662062,0.03693,98.91094784],[4.53662018,0.03692825,98.91187431],[4.53661975,0.0369265,98.91280014],[4.53661931,0.03692475,98.91372535],[4.53661887,0.036923,98.91464992],[4.53661844,0.03692125,98.91557387],[4.536618,0.0369195,98.91649718],[4.53661757,0.03691775,98.91741985],[4.53661713,0.03691601,98.91834188],[4.53661669,0.03691426,98.91926328],[4.53661626,0.03691251,98.92018403],[4.53661582,0.03691076,98.92110413],[4.53661539,0.03690901,98.92202359],[4.53661495,0.03690726,98.92294239],[4.53661451,0.03690551,98.92386055],[4.53661408,0.03690376,98.92477805],[4.53661364,0.03690202,98.92569489],[4.53661321,0.03690027,98.92661107],[4.53661277,0.03689852,98.9275266],[4.53661233,0.03689677,98.92844146],[4.5366119,0.03689502,98.92935566],[4.53661146,0.03689327,98.93026918],[4.53661103,0.03689152,98.93118204],[4.53661059,0.03688977,98.93209423],[4.53661015,0.03688803,98.93300574],[4.53660972,0.03688628,98.93391653],[4.53660928,0.03688453,98.93482656],[4.53660884,0.03688278,98.93573579],[4.53660841,0.03688103,98.93664418],[4.53660797,0.03687928,98.93755168],[4.53660753,0.03687753,98.93845825],[4.5366071,0.03687578,98.93936385],[4.53660666,0.03687404,98.94026843],[4.53660622,0.03687229,98.94117196],[4.53660579,0.03687054,98.94207439],[4.53660535,0.03686879,98.94297568],[4.53660491,0.03686704,98.94387584],[4.53660447,0.03686529,98.94477486],[4.53660404,0.03686355,98.94567276],[4.5366036,0.0368618,98.94656954],[4.53660316,0.03686005,98.94746521],[4.53660272,0.0368583,98.94835977],[4.53660228,0.03685655,98.94925324],[4.53660184,0.0368548,98.9501456],[4.5366014,0.03685306,98.95103688],[4.53660097,0.03685131,98.95192708],[4.53660053,0.03684956,98.9528162],[4.53660009,0.03684781,98.95370425],[4.53659965,0.03684606,98.95459124],[4.53659921,0.03684432,98.95547718],[4.53659877,0.03684257,98.95636207],[4.53659833,0.03684082,98.95724592],[4.53659789,0.03683907,98.95812875],[4.53659745,0.03683733,98.95901056],[4.53659701,0.03683558,98.95989137],[4.53659657,0.03683383,98.96077117],[4.53659613,0.03683208,98.96164999],[4.53659569,0.03683033,98.96252783],[4.53659525,0.03682859,98.96340469],[4.53659481,0.03682684,98.9642806],[4.53659436,0.03682509,98.96515555],[4.53659392,0.03682334,98.96602956],[4.53659348,0.0368216,98.96690264],[4.53659304,0.03681985,98.9677748],[4.5365926,0.0368181,98.96864606],[4.53659216,0.03681635,98.96951645],[4.53659172,0.03681461,98.97038599],[4.53659128,0.03681286,98.9712547],[4.53659084,0.03681111,98.9721226],[4.53659039,0.03680936,98.97298972],[4.53658995,0.03680762,98.97385607],[4.53658951,0.03680587,98.97472167],[4.53658907,0.03680412,98.97558656],[4.53658863,0.03680237,98.97645075],[4.53658819,0.03680063,98.97731426],[4.53658775,0.03679888,98.97817712],[4.53658731,0.03679713,98.97903935],[4.53658686,0.03679538,98.97990097],[4.53658642,0.03679364,98.98076199],[4.53658598,0.03679189,98.98162241],[4.53658554,0.03679014,98.9824822],[4.5365851,0.03678839,98.98334135],[4.53658466,0.03678665,98.98419983],[4.53658422,0.0367849,98.98505763],[4.53658378,0.03678315,98.98591472],[4.53658334,0.0367814,98.9867711],[4.5365829,0.03677966,98.98762673],[4.53658245,0.03677791,98.9884816],[4.53658201,0.03677616,98.98933568],[4.53658157,0.03677441,98.99018897],[4.53658113,0.03677267,98.99104145],[4.53658069,0.03677092,98.99189311],[4.53658025,0.03676917,98.99274398],[4.53657981,0.03676742,98.99359407],[4.53657937,0.03676568,98.99444338],[4.53657893,0.03676393,98.99529194],[4.53657849,0.03676218,98.99613975],[4.53657804,0.03676043,98.99698682],[4.5365776,0.03675869,98.99783317],[4.53657716,0.03675694,98.99867881],[4.53657672,0.03675519,98.99952375],[4.53657628,0.03675344,99.00036798],[4.53657584,0.0367517,99.00121149],[4.5365754,0.03674995,99.00205427],[4.53657496,0.0367482,99.0028963],[4.53657452,0.03674645,99.00373757],[4.53657408,0.03674471,99.00457807],[4.53657364,0.03674296,99.00541778],[4.53657319,0.03674121,99.00625668],[4.53657275,0.03673946,99.00709478],[4.53657231,0.03673771,99.00793204],[4.53657187,0.03673597,99.00876846],[4.53657143,0.03673422,99.00960403],[4.53657099,0.03673247,99.01043872],[4.53657055,0.03673072,99.01127254],[4.53657011,0.03672898,99.01210547],[4.53656967,0.03672723,99.0129375],[4.53656923,0.03672548,99.01376863],[4.53656879,0.03672373,99.01459883],[4.53656834,0.03672199,99.01542811],[4.5365679,0.03672024,99.01625646],[4.53656746,0.03671849,99.01708385],[4.53656702,0.03671674,99.01791029],[4.53656658,0.036715,99.01873577],[4.53656614,0.03671325,99.01956027],[4.5365657,0.0367115,99.02038379],[4.53656526,0.03670975,99.02120631],[4.53656481,0.03670801,99.02202783],[4.53656437,0.03670626,99.02284833],[4.53656393,0.03670451,99.02366781],[4.53656349,0.03670276,99.02448626],[4.53656305,0.03670102,99.02530366],[4.53656261,0.03669927,99.02612002],[4.53656216,0.03669752,99.02693531],[4.53656172,0.03669578,99.02774952],[4.53656128,0.03669403,99.02856266],[4.53656084,0.03669228,99.0293747],[4.5365604,0.03669053,99.03018564],[4.53655995,0.03668879,99.03099547],[4.53655951,0.03668704,99.03180418],[4.53655907,0.03668529,99.03261176],[4.53655863,0.03668354,99.03341819],[4.53655818,0.0366818,99.03422348],[4.53655774,0.03668005,99.0350276],[4.5365573,0.0366783,99.03583055],[4.53655685,0.03667656,99.03663232],[4.53655641,0.03667481,99.0374329],[4.53655597,0.03667306,99.03823226],[4.53655553,0.03667132,99.03903042],[4.53655508,0.03666957,99.03982734],[4.53655464,0.03666782,99.04062303],[4.53655419,0.03666607,99.04141746],[4.53655375,0.03666433,99.04221063],[4.53655331,0.03666258,99.04300253],[4.53655286,0.03666083,99.04379314],[4.53655242,0.03665909,99.04458246],[4.53655197,0.03665734,99.04537048],[4.53655153,0.03665559,99.04615723],[4.53655109,0.03665385,99.04694272],[4.53655064,0.0366521,99.04772699],[4.5365502,0.03665035,99.04851005],[4.53654975,0.03664861,99.04929194],[4.53654931,0.03664686,99.05007266],[4.53654886,0.03664511,99.05085226],[4.53654842,0.03664337,99.05163075],[4.53654797,0.03664162,99.05240818],[4.53654753,0.03663988,99.05318456],[4.53654708,0.03663813,99.05395994],[4.53654663,0.03663638,99.05473435],[4.53654619,0.03663464,99.05550782],[4.53654574,0.03663289,99.05628038],[4.5365453,0.03663114,99.05705206],[4.53654485,0.0366294,99.05782288],[4.53654441,0.03662765,99.05859286],[4.53654396,0.0366259,99.059362],[4.53654352,0.03662416,99.06013032],[4.53654307,0.03662241,99.06089784],[4.53654263,0.03662066,99.06166458],[4.53654218,0.03661892,99.06243055],[4.53654174,0.03661717,99.06319578],[4.53654129,0.03661542,99.0639603],[4.53654085,0.03661368,99.06472411],[4.53654041,0.03661193,99.06548726],[4.53653996,0.03661018,99.06624974],[4.53653952,0.03660844,99.06701155],[4.53653907,0.03660669,99.06777269],[4.53653863,0.03660494,99.06853316],[4.53653818,0.0366032,99.06929295],[4.53653774,0.03660145,99.07005206],[4.5365373,0.0365997,99.07081048],[4.53653685,0.03659796,99.07156822],[4.53653641,0.03659621,99.07232527],[4.53653596,0.03659446,99.07308162],[4.53653552,0.03659272,99.07383727],[4.53653508,0.03659097,99.07459222],[4.53653463,0.03658922,99.07534647],[4.53653419,0.03658748,99.0761],[4.53653374,0.03658573,99.07685283],[4.5365333,0.03658398,99.07760494],[4.53653286,0.03658224,99.07835632],[4.53653241,0.03658049,99.07910699],[4.53653197,0.03657874,99.07985692],[4.53653153,0.03657699,99.08060613],[4.53653108,0.03657525,99.0813546],[4.53653064,0.0365735,99.08210233],[4.5365302,0.03657175,99.08284932],[4.53652975,0.03657001,99.08359557],[4.53652931,0.03656826,99.08434106],[4.53652887,0.03656651,99.0850858],[4.53652842,0.03656477,99.08582979],[4.53652798,0.03656302,99.08657301],[4.53652754,0.03656127,99.08731547],[4.53652709,0.03655953,99.08805715],[4.53652665,0.03655778,99.08879807],[4.5365262,0.03655603,99.0895382],[4.53652576,0.03655428,99.09027756],[4.53652532,0.03655254,99.09101613],[4.53652487,0.03655079,99.09175391],[4.53652443,0.03654904,99.0924909],[4.53652399,0.0365473,99.09322709],[4.53652354,0.03654555,99.09396248],[4.5365231,0.0365438,99.09469706],[4.53652266,0.03654206,99.09543084],[4.53652221,0.03654031,99.0961638],[4.53652177,0.03653856,99.09689594],[4.53652132,0.03653682,99.09762726],[4.53652088,0.03653507,99.09835775],[4.53652044,0.03653332,99.09908741],[4.53651999,0.03653158,99.09981624],[4.53651955,0.03652983,99.10054423],[4.5365191,0.03652808,99.10127137],[4.53651866,0.03652633,99.10199767],[4.53651822,0.03652459,99.10272311],[4.53651777,0.03652284,99.10344769],[4.53651733,0.03652109,99.10417142],[4.53651688,0.03651935,99.10489427],[4.53651644,0.0365176,99.10561626],[4.53651599,0.03651585,99.10633737],[4.53651555,0.03651411,99.1070576],[4.5365151,0.03651236,99.10777695],[4.53651466,0.03651061,99.1084954],[4.53651421,0.03650887,99.10921297],[4.53651377,0.03650712,99.10992963],[4.53651332,0.03650538,99.1106454],[4.53651288,0.03650363,99.11136025],[4.53651243,0.03650188,99.11207419],[4.53651199,0.03650014,99.11278722],[4.53651154,0.03649839,99.11349932],[4.5365111,0.03649664,99.11421049],[4.53651091,0.0364959,99.11451101]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-4,"type":"border","predecessorId":0}},{"geometry":{"coordinates":[[4.53693526,0.03819645,98.25588093],[4.53693483,0.0381947,98.25647354],[4.53693439,0.03819296,98.25706909],[4.53693396,0.03819121,98.25766756],[4.53693353,0.03818946,98.25826895],[4.53693309,0.03818771,98.25887324],[4.53693266,0.03818596,98.25948042],[4.53693223,0.03818421,98.26009047],[4.53693179,0.03818246,98.26070339],[4.53693136,0.03818071,98.26131917],[4.53693093,0.03817896,98.26193778],[4.5369305,0.03817721,98.26255922],[4.53693007,0.03817546,98.26318347],[4.53692964,0.0381737,98.26381049],[4.53692921,0.03817195,98.26444025],[4.53692878,0.0381702,98.26507273],[4.53692835,0.03816845,98.26570791],[4.53692792,0.0381667,98.26634574],[4.53692749,0.03816495,98.2669862],[4.53692706,0.0381632,98.26762927],[4.53692663,0.03816145,98.26827491],[4.5369262,0.0381597,98.26892309],[4.53692578,0.03815795,98.26957379],[4.53692535,0.0381562,98.27022698],[4.53692492,0.03815444,98.27088263],[4.53692449,0.03815269,98.2715407],[4.53692407,0.03815094,98.27220117],[4.53692364,0.03814919,98.27286402],[4.53692321,0.03814744,98.2735292],[4.53692279,0.03814569,98.27419669],[4.53692236,0.03814394,98.27486647],[4.53692194,0.03814218,98.27553849],[4.53692151,0.03814043,98.27621274],[4.53692108,0.03813868,98.27688918],[4.53692066,0.03813693,98.27756779],[4.53692023,0.03813518,98.27824852],[4.53691981,0.03813342,98.27893136],[4.53691938,0.03813167,98.27961627],[4.53691896,0.03812992,98.28030323],[4.53691853,0.03812817,98.2809922],[4.53691811,0.03812642,98.28168315],[4.53691769,0.03812466,98.28237605],[4.53691726,0.03812291,98.28307088],[4.53691684,0.03812116,98.2837676],[4.53691641,0.03811941,98.28446618],[4.53691599,0.03811766,98.2851666],[4.53691556,0.0381159,98.28586881],[4.53691514,0.03811415,98.2865728],[4.53691472,0.0381124,98.28727853],[4.53691429,0.03811065,98.28798597],[4.53691387,0.0381089,98.28869509],[4.53691344,0.03810714,98.28940586],[4.53691302,0.03810539,98.29011825],[4.5369126,0.03810364,98.29083223],[4.53691217,0.03810189,98.29154776],[4.53691175,0.03810014,98.29226483],[4.53691133,0.03809838,98.29298341],[4.5369109,0.03809663,98.29370348],[4.53691048,0.03809488,98.29442503],[4.53691005,0.03809313,98.29514803],[4.53690963,0.03809137,98.29587246],[4.53690921,0.03808962,98.29659831],[4.53690878,0.03808787,98.29732555],[4.53690836,0.03808612,98.29805417],[4.53690793,0.03808437,98.29878415],[4.53690751,0.03808261,98.29951546],[4.53690709,0.03808086,98.3002481],[4.53690666,0.03807911,98.30098203],[4.53690624,0.03807736,98.30171724],[4.53690581,0.03807561,98.30245371],[4.53690539,0.03807385,98.30319143],[4.53690496,0.0380721,98.30393036],[4.53690454,0.03807035,98.3046705],[4.53690411,0.0380686,98.30541181],[4.53690369,0.03806685,98.30615428],[4.53690326,0.03806509,98.30689787],[4.53690284,0.03806334,98.30764256],[4.53690241,0.03806159,98.30838832],[4.53690199,0.03805984,98.30913517],[4.53690156,0.03805809,98.30988312],[4.53690114,0.03805634,98.31063216],[4.53690071,0.03805458,98.31138233],[4.53690029,0.03805283,98.31213361],[4.53689986,0.03805108,98.31288604],[4.53689943,0.03804933,98.31363961],[4.53689901,0.03804758,98.31439433],[4.53689858,0.03804583,98.31515023],[4.53689815,0.03804407,98.31590731],[4.53689773,0.03804232,98.31666557],[4.5368973,0.03804057,98.31742504],[4.53689688,0.03803882,98.31818572],[4.53689645,0.03803707,98.31894762],[4.53689602,0.03803532,98.31971076],[4.5368956,0.03803357,98.32047514],[4.53689517,0.03803181,98.32124078],[4.53689474,0.03803006,98.32200768],[4.53689432,0.03802831,98.32277586],[4.53689389,0.03802656,98.32354533],[4.53689346,0.03802481,98.3243161],[4.53689303,0.03802306,98.32508818],[4.53689261,0.03802131,98.32586159],[4.53689218,0.03801956,98.32663632],[4.53689175,0.0380178,98.3274124],[4.53689133,0.03801605,98.32818983],[4.5368909,0.0380143,98.32896863],[4.53689047,0.03801255,98.3297488],[4.53689005,0.0380108,98.33053036],[4.53688962,0.03800905,98.33131332],[4.53688919,0.0380073,98.33209769],[4.53688877,0.03800554,98.33288348],[4.53688834,0.03800379,98.33367071],[4.53688791,0.03800204,98.33445937],[4.53688748,0.03800029,98.33524949],[4.53688706,0.03799854,98.33604107],[4.53688663,0.03799679,98.33683413],[4.5368862,0.03799504,98.33762867],[4.53688578,0.03799328,98.33842472],[4.53688535,0.03799153,98.33922227],[4.53688493,0.03798978,98.34002134],[4.5368845,0.03798803,98.34082194],[4.53688407,0.03798628,98.34162408],[4.53688365,0.03798453,98.34242778],[4.53688322,0.03798278,98.34323304],[4.53688279,0.03798102,98.34403987],[4.53688237,0.03797927,98.3448483],[4.53688194,0.03797752,98.34565831],[4.53688152,0.03797577,98.34646994],[4.53688109,0.03797402,98.34728318],[4.53688067,0.03797227,98.34809806],[4.53688024,0.03797051,98.34891455],[4.53687981,0.03796876,98.34973266],[4.53687939,0.03796701,98.35055235],[4.53687896,0.03796526,98.3513736],[4.53687854,0.03796351,98.35219641],[4.53687811,0.03796176,98.35302074],[4.53687769,0.03796,98.35384657],[4.53687727,0.03795825,98.3546739],[4.53687684,0.0379565,98.35550269],[4.53687642,0.03795475,98.35633294],[4.53687599,0.037953,98.35716461],[4.53687557,0.03795124,98.35799769],[4.53687514,0.03794949,98.35883215],[4.53687472,0.03794774,98.35966796],[4.53687429,0.03794599,98.36050509],[4.53687387,0.03794424,98.36134351],[4.53687345,0.03794248,98.3621832],[4.53687302,0.03794073,98.36302411],[4.5368726,0.03793898,98.36386623],[4.53687217,0.03793723,98.36470951],[4.53687175,0.03793548,98.36555394],[4.53687132,0.03793372,98.36639948],[4.5368709,0.03793197,98.36724611],[4.53687047,0.03793022,98.36809382],[4.53687005,0.03792847,98.36894257],[4.53686963,0.03792672,98.36979236],[4.5368692,0.03792497,98.37064315],[4.53686878,0.03792321,98.37149492],[4.53686835,0.03792146,98.37234766],[4.53686793,0.03791971,98.37320134],[4.5368675,0.03791796,98.37405595],[4.53686708,0.03791621,98.37491145],[4.53686665,0.03791445,98.37576783],[4.53686623,0.0379127,98.37662507],[4.5368658,0.03791095,98.37748315],[4.53686538,0.0379092,98.37834203],[4.53686495,0.03790745,98.37920172],[4.53686453,0.0379057,98.38006217],[4.5368641,0.03790394,98.38092337],[4.53686368,0.03790219,98.3817853],[4.53686325,0.03790044,98.38264794],[4.53686282,0.03789869,98.38351126],[4.5368624,0.03789694,98.38437525],[4.53686197,0.03789519,98.38523988],[4.53686155,0.03789343,98.38610513],[4.53686112,0.03789168,98.38697098],[4.53686069,0.03788993,98.38783742],[4.53686027,0.03788818,98.38870441],[4.53685984,0.03788643,98.38957197],[4.53685941,0.03788468,98.39044011],[4.53685898,0.03788293,98.39130883],[4.53685856,0.03788118,98.39217814],[4.53685813,0.03787942,98.39304806],[4.5368577,0.03787767,98.39391858],[4.53685727,0.03787592,98.39478972],[4.53685685,0.03787417,98.39566148],[4.53685642,0.03787242,98.39653388],[4.53685599,0.03787067,98.39740693],[4.53685556,0.03786892,98.39828062],[4.53685513,0.03786717,98.39915498],[4.5368547,0.03786542,98.40003],[4.53685428,0.03786367,98.4009057],[4.53685385,0.03786192,98.40178209],[4.53685342,0.03786016,98.40265917],[4.53685299,0.03785841,98.40353696],[4.53685256,0.03785666,98.40441545],[4.53685213,0.03785491,98.40529467],[4.5368517,0.03785316,98.40617461],[4.53685127,0.03785141,98.40705529],[4.53685084,0.03784966,98.40793672],[4.53685041,0.03784791,98.4088189],[4.53684998,0.03784616,98.40970184],[4.53684955,0.03784441,98.41058556],[4.53684912,0.03784266,98.41147005],[4.53684869,0.03784091,98.41235533],[4.53684826,0.03783916,98.4132414],[4.53684783,0.03783741,98.41412828],[4.53684741,0.03783566,98.41501598],[4.53684698,0.03783391,98.41590449],[4.53684655,0.03783215,98.41679383],[4.53684612,0.0378304,98.41768402],[4.53684569,0.03782865,98.41857505],[4.53684526,0.0378269,98.41946693],[4.53684482,0.03782515,98.42035968],[4.53684439,0.0378234,98.42125329],[4.53684396,0.03782165,98.42214779],[4.53684353,0.0378199,98.42304318],[4.5368431,0.03781815,98.42393946],[4.53684267,0.0378164,98.42483665],[4.53684224,0.03781465,98.42573476],[4.53684181,0.0378129,98.42663378],[4.53684138,0.03781115,98.42753374],[4.53684095,0.0378094,98.42843463],[4.53684052,0.03780765,98.42933647],[4.53684009,0.0378059,98.43023927],[4.53683966,0.03780415,98.43114306],[4.53683923,0.0378024,98.43204782],[4.5368388,0.03780065,98.4329536],[4.53683837,0.0377989,98.43386039],[4.53683794,0.03779715,98.4347682],[4.53683751,0.03779539,98.43567706],[4.53683708,0.03779364,98.43658698],[4.53683665,0.03779189,98.43749797],[4.53683623,0.03779014,98.43841003],[4.5368358,0.03778839,98.4393232],[4.53683537,0.03778664,98.44023746],[4.53683494,0.03778489,98.4411528],[4.53683451,0.03778314,98.44206923],[4.53683408,0.03778139,98.44298673],[4.53683365,0.03777964,98.44390529],[4.53683322,0.03777789,98.44482491],[4.53683279,0.03777614,98.44574557],[4.53683236,0.03777439,98.44666726],[4.53683193,0.03777264,98.44758998],[4.5368315,0.03777089,98.44851372],[4.53683108,0.03776913,98.44943846],[4.53683065,0.03776738,98.45036421],[4.53683022,0.03776563,98.45129094],[4.53682979,0.03776388,98.45221868],[4.53682936,0.03776213,98.45314741],[4.53682893,0.03776038,98.45407714],[4.5368285,0.03775863,98.45500785],[4.53682808,0.03775688,98.45593955],[4.53682765,0.03775513,98.45687221],[4.53682722,0.03775338,98.45780582],[4.53682679,0.03775163,98.45874037],[4.53682636,0.03774987,98.45967586],[4.53682594,0.03774812,98.46061227],[4.53682551,0.03774637,98.4615496],[4.53682508,0.03774462,98.46248782],[4.53682465,0.03774287,98.46342693],[4.53682422,0.03774112,98.46436691],[4.5368238,0.03773937,98.46530777],[4.53682337,0.03773762,98.46624947],[4.53682294,0.03773587,98.46719203],[4.53682251,0.03773412,98.46813541],[4.53682209,0.03773236,98.46907962],[4.53682166,0.03773061,98.47002464],[4.53682123,0.03772886,98.47097047],[4.5368208,0.03772711,98.47191708],[4.53682038,0.03772536,98.47286447],[4.53681995,0.03772361,98.47381262],[4.53681952,0.03772186,98.47476154],[4.53681909,0.03772011,98.4757112],[4.53681867,0.03771836,98.47666159],[4.53681824,0.0377166,98.47761271],[4.53681781,0.03771485,98.47856454],[4.53681738,0.0377131,98.47951707],[4.53681696,0.03771135,98.4804703],[4.53681653,0.0377096,98.4814242],[4.5368161,0.03770785,98.48237877],[4.53681568,0.0377061,98.48333401],[4.53681525,0.03770435,98.48428989],[4.53681482,0.0377026,98.4852464],[4.53681439,0.03770084,98.48620355],[4.53681397,0.03769909,98.4871613],[4.53681354,0.03769734,98.48811967],[4.53681311,0.03769559,98.48907862],[4.53681268,0.03769384,98.49003816],[4.53681226,0.03769209,98.49099827],[4.53681183,0.03769034,98.49195894],[4.5368114,0.03768859,98.49292016],[4.53681097,0.03768684,98.49388192],[4.53681055,0.03768509,98.4948442],[4.53681012,0.03768333,98.49580701],[4.53680969,0.03768158,98.49677032],[4.53680926,0.03767983,98.49773413],[4.53680884,0.03767808,98.49869842],[4.53680841,0.03767633,98.49966319],[4.53680798,0.03767458,98.50062842],[4.53680755,0.03767283,98.50159411],[4.53680713,0.03767108,98.50256023],[4.5368067,0.03766933,98.50352679],[4.53680627,0.03766758,98.50449377],[4.53680584,0.03766582,98.50546116],[4.53680541,0.03766407,98.50642895],[4.53680499,0.03766232,98.50739713],[4.53680456,0.03766057,98.50836568],[4.53680413,0.03765882,98.50933461],[4.5368037,0.03765707,98.51030389],[4.53680327,0.03765532,98.51127351],[4.53680284,0.03765357,98.51224347],[4.53680242,0.03765182,98.51321376],[4.53680199,0.03765007,98.51418436],[4.53680156,0.03764832,98.51515526],[4.53680113,0.03764656,98.51612646],[4.5368007,0.03764481,98.51709794],[4.53680027,0.03764306,98.51806969],[4.53679984,0.03764131,98.5190417],[4.53679942,0.03763956,98.52001397],[4.53679899,0.03763781,98.52098647],[4.53679856,0.03763606,98.5219592],[4.53679813,0.03763431,98.52293215],[4.5367977,0.03763256,98.52390531],[4.53679727,0.03763081,98.52487867],[4.53679684,0.03762906,98.52585221],[4.53679641,0.03762731,98.52682593],[4.53679598,0.03762556,98.52779982],[4.53679555,0.03762381,98.52877386],[4.53679512,0.03762206,98.52974805],[4.53679469,0.03762031,98.53072238],[4.53679426,0.03761856,98.53169686],[4.53679383,0.03761681,98.53267148],[4.5367934,0.03761505,98.53364626],[4.53679297,0.0376133,98.53462119],[4.53679254,0.03761155,98.53559628],[4.53679211,0.0376098,98.53657154],[4.53679168,0.03760805,98.53754696],[4.53679125,0.0376063,98.53852256],[4.53679082,0.03760455,98.53949833],[4.53679039,0.0376028,98.54047429],[4.53678996,0.03760105,98.54145045],[4.53678952,0.0375993,98.5424268],[4.53678909,0.03759755,98.54340336],[4.53678866,0.0375958,98.54438014],[4.53678823,0.03759405,98.54535713],[4.5367878,0.0375923,98.54633436],[4.53678737,0.03759055,98.54731182],[4.53678694,0.0375888,98.54828952],[4.53678651,0.03758705,98.54926747],[4.53678607,0.0375853,98.55024568],[4.53678564,0.03758355,98.55122415],[4.53678521,0.0375818,98.5522029],[4.53678478,0.03758005,98.55318191],[4.53678435,0.0375783,98.55416122],[4.53678392,0.03757655,98.55514081],[4.53678349,0.0375748,98.5561207],[4.53678305,0.03757305,98.5571009],[4.53678262,0.0375713,98.55808141],[4.53678219,0.03756955,98.55906224],[4.53678176,0.0375678,98.56004339],[4.53678133,0.03756605,98.56102486],[4.53678089,0.0375643,98.56200665],[4.53678046,0.03756255,98.56298876],[4.53678003,0.0375608,98.56397119],[4.5367796,0.03755905,98.56495393],[4.53677917,0.0375573,98.56593699],[4.53677874,0.03755555,98.56692037],[4.5367783,0.0375538,98.56790406],[4.53677787,0.03755205,98.56888807],[4.53677744,0.0375503,98.56987238],[4.53677701,0.03754855,98.57085701],[4.53677658,0.0375468,98.57184195],[4.53677614,0.03754505,98.57282721],[4.53677571,0.0375433,98.57381276],[4.53677528,0.03754155,98.57479863],[4.53677485,0.0375398,98.57578481],[4.53677442,0.03753805,98.57677129],[4.53677398,0.0375363,98.57775808],[4.53677355,0.03753455,98.57874517],[4.53677312,0.0375328,98.57973256],[4.53677269,0.03753105,98.58072026],[4.53677226,0.0375293,98.58170826],[4.53677183,0.03752755,98.58269656],[4.53677139,0.0375258,98.58368516],[4.53677096,0.03752405,98.58467406],[4.53677053,0.0375223,98.58566326],[4.5367701,0.03752055,98.58665275],[4.53676967,0.0375188,98.58764254],[4.53676923,0.03751706,98.58863262],[4.5367688,0.03751531,98.589623],[4.53676837,0.03751356,98.59061368],[4.53676794,0.03751181,98.59160464],[4.53676751,0.03751006,98.59259589],[4.53676707,0.03750831,98.59358744],[4.53676664,0.03750656,98.59457928],[4.53676621,0.03750481,98.5955714],[4.53676578,0.03750306,98.59656381],[4.53676535,0.03750131,98.59755651],[4.53676491,0.03749956,98.59854949],[4.53676448,0.03749781,98.59954276],[4.53676405,0.03749606,98.60053631],[4.53676362,0.03749431,98.60153014],[4.53676319,0.03749256,98.60252426],[4.53676275,0.03749081,98.60351865],[4.53676232,0.03748906,98.60451332],[4.53676189,0.03748731,98.60550828],[4.53676146,0.03748556,98.60650351],[4.53676103,0.03748381,98.60749902],[4.5367606,0.03748206,98.6084948],[4.53676016,0.03748031,98.60949086],[4.53675973,0.03747856,98.61048719],[4.5367593,0.03747681,98.61148379],[4.53675887,0.03747506,98.61248066],[4.53675844,0.03747331,98.61347781],[4.53675801,0.03747156,98.61447523],[4.53675757,0.03746981,98.61547291],[4.53675714,0.03746806,98.61647086],[4.53675671,0.03746631,98.61746908],[4.53675628,0.03746456,98.61846756],[4.53675585,0.03746281,98.61946631],[4.53675542,0.03746106,98.62046533],[4.53675498,0.03745931,98.62146465],[4.53675455,0.03745756,98.62246427],[4.53675412,0.03745581,98.62346422],[4.53675369,0.03745406,98.6244645],[4.53675326,0.03745231,98.62546514],[4.53675283,0.03745056,98.62646613],[4.5367524,0.03744881,98.62746749],[4.53675196,0.03744706,98.62846921],[4.53675153,0.03744531,98.62947131],[4.5367511,0.03744356,98.63047378],[4.53675067,0.03744181,98.63147663],[4.53675024,0.03744006,98.63247988],[4.53674981,0.03743831,98.63348351],[4.53674938,0.03743656,98.63448754],[4.53674895,0.03743481,98.63549197],[4.53674852,0.03743306,98.63649681],[4.53674809,0.03743131,98.63750203],[4.53674766,0.03742956,98.63850762],[4.53674723,0.03742781,98.63951357],[4.5367468,0.03742606,98.64051986],[4.53674637,0.03742431,98.64152647],[4.53674594,0.03742256,98.64253338],[4.53674551,0.03742081,98.64354059],[4.53674508,0.03741906,98.64454806],[4.53674465,0.03741731,98.64555578],[4.53674421,0.03741556,98.64656375],[4.53674378,0.03741381,98.64757194],[4.53674335,0.03741206,98.64858034],[4.53674292,0.03741031,98.64958895],[4.5367425,0.03740856,98.65059776],[4.53674207,0.03740681,98.65160677],[4.53674164,0.03740506,98.65261596],[4.53674121,0.03740331,98.65362534],[4.53674078,0.03740156,98.6546349],[4.53674035,0.03739981,98.65564463],[4.53673992,0.03739806,98.65665453],[4.53673949,0.03739631,98.65766459],[4.53673906,0.03739455,98.6586748],[4.53673863,0.0373928,98.65968515],[4.5367382,0.03739105,98.66069565],[4.53673777,0.0373893,98.66170628],[4.53673734,0.03738755,98.66271705],[4.53673691,0.0373858,98.66372793],[4.53673648,0.03738405,98.66473893],[4.53673605,0.0373823,98.66575004],[4.53673562,0.03738055,98.66676126],[4.53673519,0.0373788,98.66777258],[4.53673476,0.03737705,98.66878398],[4.53673433,0.0373753,98.66979546],[4.5367339,0.03737355,98.670807],[4.53673347,0.0373718,98.67181858],[4.53673304,0.03737005,98.67283018],[4.53673261,0.0373683,98.6738418],[4.53673218,0.03736655,98.67485341],[4.53673175,0.0373648,98.675865],[4.53673132,0.03736305,98.67687655],[4.53673089,0.0373613,98.67788805],[4.53673046,0.03735955,98.67889947],[4.53673003,0.0373578,98.67991082],[4.5367296,0.03735605,98.68092206],[4.53672917,0.0373543,98.68193318],[4.53672874,0.03735255,98.68294418],[4.53672831,0.0373508,98.68395502],[4.53672788,0.03734905,98.6849657],[4.53672745,0.03734729,98.6859762],[4.53672702,0.03734554,98.68698651],[4.53672659,0.03734379,98.68799661],[4.53672616,0.03734204,98.68900647],[4.53672573,0.03734029,98.6900161],[4.5367253,0.03733854,98.69102547],[4.53672487,0.03733679,98.69203456],[4.53672444,0.03733504,98.69304336],[4.53672401,0.03733329,98.69405186],[4.53672358,0.03733154,98.69506005],[4.53672314,0.03732979,98.69606793],[4.53672271,0.03732804,98.6970755],[4.53672228,0.03732629,98.69808276],[4.53672185,0.03732454,98.69908972],[4.53672142,0.03732279,98.70009638],[4.53672099,0.03732104,98.70110274],[4.53672056,0.03731929,98.7021088],[4.53672012,0.03731754,98.70311457],[4.53671969,0.03731579,98.70412004],[4.53671926,0.03731404,98.70512522],[4.53671883,0.03731229,98.70613012],[4.53671839,0.03731055,98.70713472],[4.53671796,0.0373088,98.70813904],[4.53671753,0.03730705,98.70914307],[4.5367171,0.0373053,98.71014682],[4.53671666,0.03730355,98.7111503],[4.53671623,0.0373018,98.71215349],[4.5367158,0.03730005,98.71315641],[4.53671537,0.0372983,98.71415906],[4.53671493,0.03729655,98.71516143],[4.5367145,0.0372948,98.71616354],[4.53671407,0.03729305,98.71716537],[4.53671363,0.0372913,98.71816694],[4.5367132,0.03728955,98.71916825],[4.53671277,0.0372878,98.72016929],[4.53671233,0.03728605,98.72117007],[4.5367119,0.0372843,98.7221706],[4.53671147,0.03728255,98.72317086],[4.53671103,0.0372808,98.72417088],[4.5367106,0.03727905,98.72517064],[4.53671017,0.0372773,98.72617015],[4.53670973,0.03727555,98.72716941],[4.5367093,0.03727381,98.72816844],[4.53670886,0.03727206,98.72916722],[4.53670843,0.03727031,98.73016576],[4.536708,0.03726856,98.73116407],[4.53670756,0.03726681,98.73216215],[4.53670713,0.03726506,98.73316],[4.53670669,0.03726331,98.73415763],[4.53670626,0.03726156,98.73515503],[4.53670583,0.03725981,98.73615221],[4.53670539,0.03725806,98.73714918],[4.53670496,0.03725631,98.73814593],[4.53670452,0.03725456,98.73914248],[4.53670409,0.03725281,98.74013881],[4.53670365,0.03725106,98.74113494],[4.53670322,0.03724932,98.74213087],[4.53670279,0.03724757,98.7431266],[4.53670235,0.03724582,98.74412213],[4.53670192,0.03724407,98.74511747],[4.53670148,0.03724232,98.74611261],[4.53670105,0.03724057,98.74710758],[4.53670061,0.03723882,98.74810235],[4.53670018,0.03723707,98.74909695],[4.53669974,0.03723532,98.75009136],[4.53669931,0.03723357,98.7510856],[4.53669887,0.03723182,98.75207968],[4.53669844,0.03723007,98.75307362],[4.53669801,0.03722833,98.75406745],[4.53669757,0.03722658,98.7550612],[4.53669714,0.03722483,98.75605489],[4.5366967,0.03722308,98.75704854],[4.53669627,0.03722133,98.75804217],[4.53669583,0.03721958,98.75903582],[4.5366954,0.03721783,98.76002949],[4.53669496,0.03721608,98.76102318],[4.53669453,0.03721433,98.76201688],[4.5366941,0.03721258,98.76301056],[4.53669366,0.03721083,98.76400421],[4.53669323,0.03720908,98.76499783],[4.53669279,0.03720733,98.76599138],[4.53669236,0.03720558,98.76698487],[4.53669193,0.03720384,98.76797828],[4.53669149,0.03720209,98.76897159],[4.53669106,0.03720034,98.76996478],[4.53669062,0.03719859,98.77095785],[4.53669019,0.03719684,98.77195078],[4.53668976,0.03719509,98.77294355],[4.53668932,0.03719334,98.77393616],[4.53668889,0.03719159,98.77492857],[4.53668846,0.03718984,98.77592079],[4.53668802,0.03718809,98.7769128],[4.53668759,0.03718634,98.77790458],[4.53668715,0.03718459,98.77889612],[4.53668672,0.03718284,98.7798874],[4.53668629,0.03718109,98.78087842],[4.53668585,0.03717934,98.78186914],[4.53668542,0.03717759,98.78285958],[4.53668499,0.03717585,98.78384969],[4.53668455,0.0371741,98.78483949],[4.53668412,0.03717235,98.78582894],[4.53668368,0.0371706,98.78681803],[4.53668325,0.03716885,98.78780676],[4.53668282,0.0371671,98.7887951],[4.53668238,0.03716535,98.78978304],[4.53668195,0.0371636,98.79077058],[4.53668151,0.03716185,98.79175768],[4.53668108,0.0371601,98.79274435],[4.53668064,0.03715835,98.79373056],[4.53668021,0.0371566,98.7947163],[4.53667978,0.03715485,98.79570156],[4.53667934,0.0371531,98.79668633],[4.53667891,0.03715136,98.79767058],[4.53667847,0.03714961,98.79865431],[4.53667804,0.03714786,98.7996375],[4.5366776,0.03714611,98.80062013],[4.53667717,0.03714436,98.8016022],[4.53667673,0.03714261,98.8025837],[4.5366763,0.03714086,98.80356466],[4.53667586,0.03713911,98.80454513],[4.53667543,0.03713736,98.80552515],[4.53667499,0.03713561,98.80650477],[4.53667455,0.03713387,98.80748404],[4.53667412,0.03713212,98.80846299],[4.53667368,0.03713037,98.80944163],[4.53667325,0.03712862,98.81041996],[4.53667281,0.03712687,98.81139799],[4.53667238,0.03712512,98.81237571],[4.53667194,0.03712337,98.81335312],[4.53667151,0.03712162,98.81433022],[4.53667107,0.03711987,98.81530703],[4.53667064,0.03711812,98.81628353],[4.5366702,0.03711638,98.81725973],[4.53666976,0.03711463,98.81823562],[4.53666933,0.03711288,98.81921122],[4.53666889,0.03711113,98.82018652],[4.53666846,0.03710938,98.82116152],[4.53666802,0.03710763,98.82213622],[4.53666759,0.03710588,98.82311063],[4.53666715,0.03710413,98.82408474],[4.53666672,0.03710238,98.82505855],[4.53666628,0.03710064,98.82603208],[4.53666585,0.03709889,98.82700531],[4.53666541,0.03709714,98.82797824],[4.53666498,0.03709539,98.82895089],[4.53666454,0.03709364,98.82992325],[4.53666411,0.03709189,98.83089531],[4.53666367,0.03709014,98.83186709],[4.53666323,0.03708839,98.83283858],[4.5366628,0.03708664,98.83380979],[4.53666236,0.03708489,98.83478071],[4.53666193,0.03708314,98.83575134],[4.53666149,0.0370814,98.83672169],[4.53666106,0.03707965,98.83769176],[4.53666062,0.0370779,98.83866155],[4.53666019,0.03707615,98.83963105],[4.53665975,0.0370744,98.84060028],[4.53665932,0.03707265,98.84156923],[4.53665888,0.0370709,98.8425379],[4.53665845,0.03706915,98.84350629],[4.53665802,0.0370674,98.84447441],[4.53665758,0.03706565,98.84544226],[4.53665715,0.0370639,98.84640983],[4.53665671,0.03706216,98.84737714],[4.53665628,0.03706041,98.84834417],[4.53665584,0.03705866,98.84931094],[4.53665541,0.03705691,98.85027745],[4.53665497,0.03705516,98.85124369],[4.53665454,0.03705341,98.85220967],[4.5366541,0.03705166,98.85317539],[4.53665367,0.03704991,98.85414085],[4.53665324,0.03704816,98.85510605],[4.5366528,0.03704641,98.856071],[4.53665237,0.03704466,98.8570357],[4.53665193,0.03704291,98.85800014],[4.5366515,0.03704116,98.85896432],[4.53665107,0.03703942,98.8599282],[4.53665063,0.03703767,98.86089175],[4.5366502,0.03703592,98.86185491],[4.53664976,0.03703417,98.86281764],[4.53664933,0.03703242,98.86377989],[4.5366489,0.03703067,98.86474163],[4.53664846,0.03702892,98.8657028],[4.53664803,0.03702717,98.86666336],[4.53664759,0.03702542,98.86762327],[4.53664716,0.03702367,98.86858253],[4.53664673,0.03702192,98.86954114],[4.53664629,0.03702017,98.87049911],[4.53664586,0.03701842,98.87145643],[4.53664542,0.03701667,98.87241311],[4.53664499,0.03701492,98.87336915],[4.53664455,0.03701318,98.87432457],[4.53664412,0.03701143,98.87527936],[4.53664368,0.03700968,98.87623353],[4.53664325,0.03700793,98.87718708],[4.53664282,0.03700618,98.87814001],[4.53664238,0.03700443,98.87909234],[4.53664195,0.03700268,98.88004406],[4.53664151,0.03700093,98.88099518],[4.53664108,0.03699918,98.88194571],[4.53664064,0.03699743,98.88289564],[4.53664021,0.03699568,98.88384498],[4.53663977,0.03699394,98.88479374],[4.53663934,0.03699219,98.88574192],[4.5366389,0.03699044,98.88668953],[4.53663846,0.03698869,98.88763656],[4.53663803,0.03698694,98.88858303],[4.53663759,0.03698519,98.88952893],[4.53663716,0.03698344,98.89047428],[4.53663672,0.03698169,98.89141907],[4.53663629,0.03697994,98.89236331],[4.53663585,0.03697819,98.89330701],[4.53663542,0.03697644,98.89425016],[4.53663498,0.0369747,98.89519277],[4.53663455,0.03697295,98.89613483],[4.53663411,0.0369712,98.89707633],[4.53663368,0.03696945,98.89801728],[4.53663324,0.0369677,98.89895768],[4.53663281,0.03696595,98.89989752],[4.53663237,0.0369642,98.9008368],[4.53663193,0.03696245,98.90177552],[4.5366315,0.0369607,98.90271368],[4.53663106,0.03695896,98.90365127],[4.53663063,0.03695721,98.90458829],[4.53663019,0.03695546,98.90552474],[4.53662976,0.03695371,98.90646062],[4.53662932,0.03695196,98.90739592],[4.53662889,0.03695021,98.90833065],[4.53662845,0.03694846,98.9092648],[4.53662801,0.03694671,98.91019837],[4.53662758,0.03694496,98.91113136],[4.53662714,0.03694321,98.91206376],[4.53662671,0.03694147,98.91299557],[4.53662627,0.03693972,98.91392679],[4.53662584,0.03693797,98.91485743],[4.5366254,0.03693622,98.91578747],[4.53662496,0.03693447,98.91671691],[4.53662453,0.03693272,98.91764576],[4.53662409,0.03693097,98.918574],[4.53662366,0.03692922,98.91950165],[4.53662322,0.03692747,98.92042869],[4.53662279,0.03692573,98.92135512],[4.53662235,0.03692398,98.92228095],[4.53662191,0.03692223,98.92320616],[4.53662148,0.03692048,98.92413076],[4.53662104,0.03691873,98.92505475],[4.53662061,0.03691698,98.92597812],[4.53662017,0.03691523,98.92690087],[4.53661973,0.03691348,98.927823],[4.5366193,0.03691173,98.92874451],[4.53661886,0.03690999,98.92966539],[4.53661843,0.03690824,98.93058565],[4.53661799,0.03690649,98.93150527],[4.53661755,0.03690474,98.93242426],[4.53661712,0.03690299,98.93334262],[4.53661668,0.03690124,98.93426035],[4.53661625,0.03689949,98.93517743],[4.53661581,0.03689774,98.93609388],[4.53661537,0.036896,98.93700968],[4.53661494,0.03689425,98.93792484],[4.5366145,0.0368925,98.93883935],[4.53661406,0.03689075,98.93975321],[4.53661363,0.036889,98.94066642],[4.53661319,0.03688725,98.94157897],[4.53661276,0.0368855,98.94249083],[4.53661232,0.03688375,98.94340195],[4.53661188,0.03688201,98.94431229],[4.53661145,0.03688026,98.9452218],[4.53661101,0.03687851,98.94613046],[4.53661057,0.03687676,98.9470382],[4.53661014,0.03687501,98.94794499],[4.5366097,0.03687326,98.94885079],[4.53660926,0.03687151,98.94975555],[4.53660883,0.03686976,98.95065923],[4.53660839,0.03686802,98.9515618],[4.53660795,0.03686627,98.95246326],[4.53660751,0.03686452,98.95336361],[4.53660707,0.03686277,98.95426285],[4.53660664,0.03686102,98.95516099],[4.5366062,0.03685927,98.95605805],[4.53660576,0.03685753,98.95695402],[4.53660532,0.03685578,98.95784891],[4.53660488,0.03685403,98.95874273],[4.53660444,0.03685228,98.95963549],[4.536604,0.03685053,98.96052718],[4.53660357,0.03684879,98.96141782],[4.53660313,0.03684704,98.96230741],[4.53660269,0.03684529,98.96319596],[4.53660225,0.03684354,98.96408348],[4.53660181,0.03684179,98.96496998],[4.53660137,0.03684005,98.96585546],[4.53660093,0.0368383,98.96673994],[4.53660049,0.03683655,98.96762343],[4.53660005,0.0368348,98.96850593],[4.53659961,0.03683305,98.96938745],[4.53659917,0.03683131,98.97026801],[4.53659873,0.03682956,98.97114761],[4.53659829,0.03682781,98.97202627],[4.53659784,0.03682606,98.97290398],[4.5365974,0.03682432,98.97378077],[4.53659696,0.03682257,98.97465664],[4.53659652,0.03682082,98.97553159],[4.53659608,0.03681907,98.97640566],[4.53659564,0.03681733,98.97727885],[4.5365952,0.03681558,98.97815118],[4.53659476,0.03681383,98.97902269],[4.53659432,0.03681208,98.9798934],[4.53659387,0.03681034,98.98076332],[4.53659343,0.03680859,98.98163247],[4.53659299,0.03680684,98.98250089],[4.53659255,0.03680509,98.98336858],[4.53659211,0.03680335,98.98423558],[4.53659167,0.0368016,98.98510191],[4.53659123,0.03679985,98.98596758],[4.53659079,0.0367981,98.98683262],[4.53659034,0.03679636,98.98769705],[4.5365899,0.03679461,98.9885609],[4.53658946,0.03679286,98.98942418],[4.53658902,0.03679111,98.99028688],[4.53658858,0.03678937,98.99114897],[4.53658814,0.03678762,98.99201044],[4.5365877,0.03678587,98.99287127],[4.53658726,0.03678412,98.99373145],[4.53658682,0.03678238,98.99459094],[4.53658637,0.03678063,98.99544973],[4.53658593,0.03677888,98.99630781],[4.53658549,0.03677713,98.99716515],[4.53658505,0.03677538,98.99802173],[4.53658461,0.03677364,98.99887754],[4.53658417,0.03677189,98.99973256],[4.53658373,0.03677014,99.00058679],[4.53658329,0.03676839,99.00144026],[4.53658285,0.03676665,99.00229296],[4.53658241,0.0367649,99.00314492],[4.53658196,0.03676315,99.00399615],[4.53658152,0.0367614,99.00484665],[4.53658108,0.03675966,99.00569644],[4.53658064,0.03675791,99.00654553],[4.5365802,0.03675616,99.00739394],[4.53657976,0.03675441,99.00824167],[4.53657932,0.03675267,99.00908872],[4.53657888,0.03675092,99.00993507],[4.53657844,0.03674917,99.01078072],[4.536578,0.03674742,99.01162564],[4.53657756,0.03674568,99.01246983],[4.53657711,0.03674393,99.01331327],[4.53657667,0.03674218,99.01415595],[4.53657623,0.03674043,99.01499785],[4.53657579,0.03673869,99.01583897],[4.53657535,0.03673694,99.01667928],[4.53657491,0.03673519,99.01751877],[4.53657447,0.03673344,99.01835743],[4.53657403,0.03673169,99.01919526],[4.53657359,0.03672995,99.02003222],[4.53657315,0.0367282,99.02086833],[4.53657271,0.03672645,99.02170356],[4.53657226,0.0367247,99.02253791],[4.53657182,0.03672296,99.02337137],[4.53657138,0.03672121,99.02420393],[4.53657094,0.03671946,99.02503558],[4.5365705,0.03671771,99.02586631],[4.53657006,0.03671597,99.02669611],[4.53656962,0.03671422,99.02752497],[4.53656918,0.03671247,99.02835288],[4.53656874,0.03671072,99.02917983],[4.53656829,0.03670898,99.03000582],[4.53656785,0.03670723,99.03083083],[4.53656741,0.03670548,99.03165485],[4.53656697,0.03670373,99.03247787],[4.53656653,0.03670199,99.03329989],[4.53656609,0.03670024,99.03412089],[4.53656564,0.03669849,99.03494087],[4.5365652,0.03669674,99.03575981],[4.53656476,0.036695,99.0365777],[4.53656432,0.03669325,99.03739454],[4.53656388,0.0366915,99.03821032],[4.53656343,0.03668976,99.03902502],[4.53656299,0.03668801,99.03983864],[4.53656255,0.03668626,99.04065116],[4.53656211,0.03668451,99.04146258],[4.53656166,0.03668277,99.04227288],[4.53656122,0.03668102,99.04308206],[4.53656078,0.03667927,99.04389011],[4.53656034,0.03667752,99.04469701],[4.53655989,0.03667578,99.04550275],[4.53655945,0.03667403,99.04630733],[4.53655901,0.03667228,99.04711074],[4.53655856,0.03667054,99.04791295],[4.53655812,0.03666879,99.04871396],[4.53655768,0.03666704,99.04951376],[4.53655723,0.0366653,99.05031234],[4.53655679,0.03666355,99.05110969],[4.53655634,0.0366618,99.05190579],[4.5365559,0.03666006,99.05270063],[4.53655546,0.03665831,99.0534942],[4.53655501,0.03665656,99.05428651],[4.53655457,0.03665482,99.05507757],[4.53655412,0.03665307,99.0558674],[4.53655368,0.03665132,99.05665604],[4.53655323,0.03664958,99.0574435],[4.53655279,0.03664783,99.05822981],[4.53655234,0.03664608,99.05901499],[4.5365519,0.03664434,99.05979907],[4.53655145,0.03664259,99.06058207],[4.53655101,0.03664084,99.06136404],[4.53655056,0.0366391,99.062145],[4.53655012,0.03663735,99.06292498],[4.53654967,0.0366356,99.06370401],[4.53654923,0.03663386,99.06448214],[4.53654878,0.03663211,99.06525938],[4.53654834,0.03663036,99.06603578],[4.53654789,0.03662862,99.06681134],[4.53654745,0.03662687,99.06758608],[4.536547,0.03662512,99.06836003],[4.53654656,0.03662338,99.06913318],[4.53654611,0.03662163,99.06990556],[4.53654567,0.03661988,99.07067719],[4.53654522,0.03661814,99.07144808],[4.53654478,0.03661639,99.07221826],[4.53654433,0.03661464,99.07298774],[4.53654389,0.0366129,99.07375656],[4.53654344,0.03661115,99.07452474],[4.536543,0.0366094,99.07529228],[4.53654255,0.03660766,99.07605917],[4.53654211,0.03660591,99.07682543],[4.53654166,0.03660416,99.07759103],[4.53654122,0.03660242,99.07835599],[4.53654078,0.03660067,99.07912029],[4.53654033,0.03659892,99.07988393],[4.53653989,0.03659718,99.08064691],[4.53653944,0.03659543,99.08140923],[4.536539,0.03659368,99.08217087],[4.53653856,0.03659194,99.08293184],[4.53653811,0.03659019,99.08369213],[4.53653767,0.03658844,99.08445175],[4.53653723,0.0365867,99.08521067],[4.53653678,0.03658495,99.08596891],[4.53653634,0.0365832,99.08672645],[4.53653589,0.03658145,99.0874833],[4.53653545,0.03657971,99.08823944],[4.53653501,0.03657796,99.08899488],[4.53653456,0.03657621,99.08974962],[4.53653412,0.03657447,99.09050364],[4.53653368,0.03657272,99.09125694],[4.53653323,0.03657097,99.09200952],[4.53653279,0.03656923,99.09276137],[4.53653235,0.03656748,99.0935125],[4.5365319,0.03656573,99.09426289],[4.53653146,0.03656398,99.09501255],[4.53653102,0.03656224,99.09576146],[4.53653057,0.03656049,99.09650963],[4.53653013,0.03655874,99.09725705],[4.53652969,0.036557,99.09800371],[4.53652924,0.03655525,99.09874962],[4.5365288,0.0365535,99.09949476],[4.53652835,0.03655176,99.10023913],[4.53652791,0.03655001,99.10098274],[4.53652747,0.03654826,99.10172557],[4.53652702,0.03654652,99.10246761],[4.53652658,0.03654477,99.10320888],[4.53652614,0.03654302,99.10394935],[4.53652569,0.03654127,99.10468903],[4.53652525,0.03653953,99.10542791],[4.53652481,0.03653778,99.10616599],[4.53652436,0.03653603,99.10690327],[4.53652392,0.03653429,99.10763973],[4.53652347,0.03653254,99.10837537],[4.53652303,0.03653079,99.1091102],[4.53652259,0.03652905,99.1098442],[4.53652214,0.0365273,99.11057737],[4.5365217,0.03652555,99.1113097],[4.53652125,0.03652381,99.1120412],[4.53652081,0.03652206,99.11277185],[4.53652036,0.03652031,99.11350165],[4.53651992,0.03651857,99.1142306],[4.53651947,0.03651682,99.11495869],[4.53651903,0.03651507,99.11568591],[4.53651859,0.03651333,99.11641227],[4.53651814,0.03651158,99.11713776],[4.5365177,0.03650983,99.11786237],[4.53651725,0.03650809,99.11858609],[4.53651681,0.03650634,99.11930893],[4.53651636,0.03650459,99.12003087],[4.53651591,0.03650285,99.12075192],[4.53651547,0.0365011,99.12147206],[4.53651502,0.03649935,99.1221913],[4.53651458,0.03649761,99.12290962],[4.53651413,0.03649586,99.12362702],[4.53651394,0.03649512,99.12393018]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-3,"type":"stop","predecessorId":0}},{"geometry":{"coordinates":[[4.53695186,0.03819239,98.30680636],[4.53695143,0.03819063,98.30746427],[4.53695101,0.03818888,98.30812368],[4.53695059,0.03818713,98.30878458],[4.53695017,0.03818537,98.309447],[4.53694974,0.03818362,98.31011092],[4.53694932,0.03818187,98.31077635],[4.5369489,0.03818012,98.31144331],[4.53694848,0.03817836,98.31211179],[4.53694806,0.03817661,98.31278179],[4.53694763,0.03817486,98.31345333],[4.53694721,0.03817311,98.3141264],[4.53694679,0.03817135,98.314801],[4.53694637,0.0381696,98.31547713],[4.53694594,0.03816785,98.31615477],[4.53694552,0.03816609,98.31683393],[4.5369451,0.03816434,98.31751458],[4.53694468,0.03816259,98.31819674],[4.53694426,0.03816084,98.31888037],[4.53694383,0.03815908,98.31956549],[4.53694341,0.03815733,98.32025208],[4.53694299,0.03815558,98.32094014],[4.53694257,0.03815383,98.32162966],[4.53694215,0.03815207,98.32232062],[4.53694172,0.03815032,98.32301303],[4.5369413,0.03814857,98.32370688],[4.53694088,0.03814682,98.32440215],[4.53694046,0.03814506,98.32509884],[4.53694003,0.03814331,98.32579695],[4.53693961,0.03814156,98.32649647],[4.53693919,0.0381398,98.32719738],[4.53693877,0.03813805,98.32789969],[4.53693834,0.0381363,98.32860338],[4.53693792,0.03813455,98.32930845],[4.5369375,0.03813279,98.33001488],[4.53693708,0.03813104,98.33072268],[4.53693666,0.03812929,98.33143183],[4.53693623,0.03812754,98.33214233],[4.53693581,0.03812578,98.33285417],[4.53693539,0.03812403,98.33356734],[4.53693497,0.03812228,98.33428184],[4.53693454,0.03812052,98.33499765],[4.53693412,0.03811877,98.33571477],[4.5369337,0.03811702,98.3364332],[4.53693327,0.03811527,98.33715292],[4.53693285,0.03811351,98.33787392],[4.53693243,0.03811176,98.33859621],[4.53693201,0.03811001,98.33931977],[4.53693158,0.03810826,98.34004459],[4.53693116,0.0381065,98.34077067],[4.53693074,0.03810475,98.341498],[4.53693032,0.038103,98.34222658],[4.53692989,0.03810125,98.34295639],[4.53692947,0.03809949,98.34368742],[4.53692905,0.03809774,98.34441968],[4.53692862,0.03809599,98.34515315],[4.5369282,0.03809424,98.34588784],[4.53692778,0.03809248,98.34662375],[4.53692735,0.03809073,98.3473609],[4.53692693,0.03808898,98.34809927],[4.53692651,0.03808723,98.34883888],[4.53692608,0.03808547,98.34957972],[4.53692566,0.03808372,98.35032181],[4.53692524,0.03808197,98.35106515],[4.53692481,0.03808022,98.35180973],[4.53692439,0.03807846,98.35255558],[4.53692397,0.03807671,98.35330268],[4.53692354,0.03807496,98.35405104],[4.53692312,0.03807321,98.35480067],[4.5369227,0.03807146,98.35555157],[4.53692227,0.0380697,98.35630374],[4.53692185,0.03806795,98.3570572],[4.53692143,0.0380662,98.35781193],[4.536921,0.03806445,98.35856795],[4.53692058,0.03806269,98.35932525],[4.53692015,0.03806094,98.36008382],[4.53691973,0.03805919,98.36084367],[4.53691931,0.03805744,98.36160479],[4.53691888,0.03805568,98.36236717],[4.53691846,0.03805393,98.36313082],[4.53691804,0.03805218,98.36389573],[4.53691761,0.03805043,98.36466189],[4.53691719,0.03804867,98.36542931],[4.53691677,0.03804692,98.36619797],[4.53691634,0.03804517,98.36696789],[4.53691592,0.03804342,98.36773904],[4.5369155,0.03804167,98.36851144],[4.53691507,0.03803991,98.36928508],[4.53691465,0.03803816,98.37005994],[4.53691422,0.03803641,98.37083604],[4.5369138,0.03803466,98.37161337],[4.53691338,0.0380329,98.37239192],[4.53691295,0.03803115,98.37317169],[4.53691253,0.0380294,98.37395267],[4.53691211,0.03802765,98.37473487],[4.53691168,0.03802589,98.37551828],[4.53691126,0.03802414,98.3763029],[4.53691083,0.03802239,98.37708872],[4.53691041,0.03802064,98.37787574],[4.53690999,0.03801889,98.37866396],[4.53690956,0.03801713,98.37945338],[4.53690914,0.03801538,98.38024398],[4.53690872,0.03801363,98.38103577],[4.53690829,0.03801188,98.38182875],[4.53690787,0.03801012,98.3826229],[4.53690745,0.03800837,98.38341824],[4.53690702,0.03800662,98.38421475],[4.5369066,0.03800487,98.38501242],[4.53690617,0.03800311,98.38581127],[4.53690575,0.03800136,98.38661128],[4.53690533,0.03799961,98.38741245],[4.5369049,0.03799786,98.38821478],[4.53690448,0.03799611,98.38901827],[4.53690406,0.03799435,98.3898229],[4.53690363,0.0379926,98.39062868],[4.53690321,0.03799085,98.39143561],[4.53690278,0.0379891,98.39224368],[4.53690236,0.03798734,98.39305288],[4.53690194,0.03798559,98.39386322],[4.53690151,0.03798384,98.39467469],[4.53690109,0.03798209,98.39548729],[4.53690067,0.03798033,98.39630102],[4.53690024,0.03797858,98.39711586],[4.53689982,0.03797683,98.39793183],[4.53689939,0.03797508,98.3987489],[4.53689897,0.03797333,98.39956709],[4.53689855,0.03797157,98.40038639],[4.53689812,0.03796982,98.40120679],[4.5368977,0.03796807,98.4020283],[4.53689727,0.03796632,98.4028509],[4.53689685,0.03796456,98.40367459],[4.53689643,0.03796281,98.40449938],[4.536896,0.03796106,98.40532526],[4.53689558,0.03795931,98.40615222],[4.53689516,0.03795756,98.40698026],[4.53689473,0.0379558,98.40780938],[4.53689431,0.03795405,98.40863958],[4.53689388,0.0379523,98.40947084],[4.53689346,0.03795055,98.41030318],[4.53689304,0.03794879,98.41113658],[4.53689261,0.03794704,98.41197104],[4.53689219,0.03794529,98.41280655],[4.53689176,0.03794354,98.4136431],[4.53689134,0.03794179,98.41448067],[4.53689092,0.03794003,98.41531925],[4.53689049,0.03793828,98.41615883],[4.53689007,0.03793653,98.41699938],[4.53688964,0.03793478,98.41784091],[4.53688922,0.03793302,98.41868339],[4.5368888,0.03793127,98.41952681],[4.53688837,0.03792952,98.42037116],[4.53688795,0.03792777,98.42121644],[4.53688752,0.03792602,98.42206263],[4.5368871,0.03792426,98.42290975],[4.53688668,0.03792251,98.42375777],[4.53688625,0.03792076,98.4246067],[4.53688583,0.03791901,98.42545653],[4.5368854,0.03791725,98.42630726],[4.53688498,0.0379155,98.42715887],[4.53688455,0.03791375,98.42801137],[4.53688413,0.037912,98.42886475],[4.53688371,0.03791025,98.42971901],[4.53688328,0.03790849,98.43057413],[4.53688286,0.03790674,98.43143012],[4.53688243,0.03790499,98.43228697],[4.53688201,0.03790324,98.43314468],[4.53688158,0.03790149,98.43400323],[4.53688116,0.03789973,98.43486263],[4.53688073,0.03789798,98.43572287],[4.53688031,0.03789623,98.43658394],[4.53687988,0.03789448,98.43744584],[4.53687946,0.03789273,98.43830857],[4.53687903,0.03789097,98.43917212],[4.53687861,0.03788922,98.44003648],[4.53687818,0.03788747,98.44090164],[4.53687776,0.03788572,98.44176762],[4.53687733,0.03788397,98.44263439],[4.53687691,0.03788221,98.44350195],[4.53687648,0.03788046,98.44437031],[4.53687606,0.03787871,98.44523945],[4.53687563,0.03787696,98.44610936],[4.53687521,0.03787521,98.44698006],[4.53687478,0.03787346,98.44785151],[4.53687435,0.0378717,98.44872374],[4.53687393,0.03786995,98.44959672],[4.5368735,0.0378682,98.45047046],[4.53687308,0.03786645,98.45134494],[4.53687265,0.0378647,98.45222017],[4.53687223,0.03786294,98.45309613],[4.5368718,0.03786119,98.45397283],[4.53687137,0.03785944,98.45485026],[4.53687095,0.03785769,98.45572841],[4.53687052,0.03785594,98.45660728],[4.5368701,0.03785419,98.45748687],[4.53686967,0.03785243,98.45836716],[4.53686924,0.03785068,98.45924815],[4.53686882,0.03784893,98.46012985],[4.53686839,0.03784718,98.46101223],[4.53686796,0.03784543,98.46189531],[4.53686754,0.03784368,98.46277907],[4.53686711,0.03784192,98.4636635],[4.53686669,0.03784017,98.46454862],[4.53686626,0.03783842,98.46543439],[4.53686583,0.03783667,98.46632084],[4.53686541,0.03783492,98.46720794],[4.53686498,0.03783317,98.46809569],[4.53686455,0.03783142,98.4689841],[4.53686412,0.03782966,98.46987314],[4.5368637,0.03782791,98.47076283],[4.53686327,0.03782616,98.47165315],[4.53686284,0.03782441,98.4725441],[4.53686242,0.03782266,98.47343567],[4.53686199,0.03782091,98.47432786],[4.53686156,0.03781916,98.47522066],[4.53686113,0.0378174,98.47611407],[4.53686071,0.03781565,98.47700809],[4.53686028,0.0378139,98.47790271],[4.53685985,0.03781215,98.47879791],[4.53685942,0.0378104,98.47969371],[4.536859,0.03780865,98.4805901],[4.53685857,0.0378069,98.48148706],[4.53685814,0.03780515,98.48238459],[4.53685771,0.03780339,98.4832827],[4.53685728,0.03780164,98.48418138],[4.53685686,0.03779989,98.48508063],[4.53685643,0.03779814,98.48598046],[4.536856,0.03779639,98.48688086],[4.53685557,0.03779464,98.48778183],[4.53685514,0.03779289,98.48868337],[4.53685471,0.03779114,98.48958548],[4.53685429,0.03778939,98.49048817],[4.53685386,0.03778763,98.49139144],[4.53685343,0.03778588,98.49229527],[4.536853,0.03778413,98.49319968],[4.53685257,0.03778238,98.49410467],[4.53685214,0.03778063,98.49501023],[4.53685171,0.03777888,98.49591636],[4.53685128,0.03777713,98.49682307],[4.53685085,0.03777538,98.49773035],[4.53685043,0.03777363,98.49863821],[4.53685,0.03777188,98.49954664],[4.53684957,0.03777013,98.50045565],[4.53684914,0.03776837,98.50136523],[4.53684871,0.03776662,98.50227539],[4.53684828,0.03776487,98.50318612],[4.53684785,0.03776312,98.50409743],[4.53684742,0.03776137,98.50500932],[4.53684699,0.03775962,98.5059218],[4.53684656,0.03775787,98.50683488],[4.53684613,0.03775612,98.50774857],[4.5368457,0.03775437,98.50866287],[4.53684527,0.03775262,98.50957778],[4.53684484,0.03775087,98.51049329],[4.53684441,0.03774912,98.5114094],[4.53684398,0.03774736,98.51232612],[4.53684355,0.03774561,98.51324343],[4.53684312,0.03774386,98.51416135],[4.53684269,0.03774211,98.51507985],[4.53684226,0.03774036,98.51599896],[4.53684183,0.03773861,98.51691865],[4.5368414,0.03773686,98.51783893],[4.53684098,0.03773511,98.5187598],[4.53684055,0.03773336,98.51968126],[4.53684012,0.03773161,98.52060329],[4.53683969,0.03772986,98.52152591],[4.53683926,0.03772811,98.52244911],[4.53683883,0.03772636,98.52337288],[4.5368384,0.03772461,98.52429724],[4.53683797,0.03772286,98.52522216],[4.53683753,0.0377211,98.52614765],[4.5368371,0.03771935,98.52707372],[4.53683667,0.0377176,98.52800035],[4.53683624,0.03771585,98.52892754],[4.53683581,0.0377141,98.5298553],[4.53683538,0.03771235,98.53078362],[4.53683495,0.0377106,98.53171249],[4.53683452,0.03770885,98.53264193],[4.53683409,0.0377071,98.53357192],[4.53683366,0.03770535,98.53450246],[4.53683323,0.0377036,98.53543355],[4.5368328,0.03770185,98.53636519],[4.53683237,0.0377001,98.53729737],[4.53683194,0.03769835,98.53823011],[4.53683151,0.0376966,98.53916338],[4.53683108,0.03769485,98.54009719],[4.53683065,0.0376931,98.54103154],[4.53683022,0.03769134,98.54196643],[4.53682979,0.03768959,98.54290185],[4.53682936,0.03768784,98.5438378],[4.53682893,0.03768609,98.54477429],[4.5368285,0.03768434,98.5457113],[4.53682807,0.03768259,98.54664883],[4.53682764,0.03768084,98.5475869],[4.53682721,0.03767909,98.54852548],[4.53682678,0.03767734,98.54946458],[4.53682635,0.03767559,98.5504042],[4.53682591,0.03767384,98.55134433],[4.53682548,0.03767209,98.55228498],[4.53682505,0.03767034,98.55322614],[4.53682462,0.03766859,98.5541678],[4.53682419,0.03766684,98.55510998],[4.53682376,0.03766509,98.55605266],[4.53682333,0.03766334,98.55699584],[4.5368229,0.03766159,98.55793952],[4.53682247,0.03765984,98.5588837],[4.53682204,0.03765809,98.55982838],[4.53682161,0.03765633,98.56077355],[4.53682118,0.03765458,98.56171922],[4.53682075,0.03765283,98.56266537],[4.53682032,0.03765108,98.56361201],[4.53681989,0.03764933,98.56455914],[4.53681945,0.03764758,98.56550675],[4.53681902,0.03764583,98.56645485],[4.53681859,0.03764408,98.56740342],[4.53681816,0.03764233,98.56835247],[4.53681773,0.03764058,98.569302],[4.5368173,0.03763883,98.570252],[4.53681687,0.03763708,98.57120247],[4.53681644,0.03763533,98.57215341],[4.53681601,0.03763358,98.57310481],[4.53681558,0.03763183,98.57405668],[4.53681515,0.03763008,98.57500902],[4.53681472,0.03762833,98.57596181],[4.53681428,0.03762658,98.57691506],[4.53681385,0.03762483,98.57786877],[4.53681342,0.03762308,98.57882293],[4.53681299,0.03762133,98.57977755],[4.53681256,0.03761958,98.58073261],[4.53681213,0.03761782,98.58168812],[4.5368117,0.03761607,98.58264408],[4.53681127,0.03761432,98.58360048],[4.53681084,0.03761257,98.58455732],[4.53681041,0.03761082,98.5855146],[4.53680998,0.03760907,98.58647232],[4.53680955,0.03760732,98.58743047],[4.53680912,0.03760557,98.58838905],[4.53680868,0.03760382,98.58934807],[4.53680825,0.03760207,98.59030751],[4.53680782,0.03760032,98.59126739],[4.53680739,0.03759857,98.59222771],[4.53680696,0.03759682,98.59318845],[4.53680653,0.03759507,98.59414963],[4.5368061,0.03759332,98.59511125],[4.53680567,0.03759157,98.5960733],[4.53680524,0.03758982,98.5970358],[4.53680481,0.03758807,98.59799873],[4.53680438,0.03758632,98.5989621],[4.53680395,0.03758457,98.59992592],[4.53680352,0.03758282,98.60089017],[4.53680309,0.03758107,98.60185487],[4.53680265,0.03757932,98.60282002],[4.53680222,0.03757756,98.60378561],[4.53680179,0.03757581,98.60475165],[4.53680136,0.03757406,98.60571813],[4.53680093,0.03757231,98.60668507],[4.5368005,0.03757056,98.60765245],[4.53680007,0.03756881,98.60862029],[4.53679964,0.03756706,98.60958857],[4.53679921,0.03756531,98.61055731],[4.53679878,0.03756356,98.6115265],[4.53679835,0.03756181,98.61249614],[4.53679792,0.03756006,98.61346621],[4.53679749,0.03755831,98.61443671],[4.53679706,0.03755656,98.61540763],[4.53679663,0.03755481,98.61637897],[4.5367962,0.03755306,98.61735072],[4.53679577,0.03755131,98.61832287],[4.53679534,0.03754956,98.61929542],[4.53679491,0.03754781,98.62026836],[4.53679448,0.03754606,98.62124168],[4.53679405,0.0375443,98.62221538],[4.53679362,0.03754255,98.62318945],[4.53679319,0.0375408,98.62416388],[4.53679276,0.03753905,98.62513867],[4.53679233,0.0375373,98.62611381],[4.5367919,0.03753555,98.62708929],[4.53679147,0.0375338,98.6280651],[4.53679104,0.03753205,98.62904125],[4.53679061,0.0375303,98.63001772],[4.53679018,0.03752855,98.63099451],[4.53678975,0.0375268,98.6319716],[4.53678932,0.03752505,98.632949],[4.53678889,0.0375233,98.6339267],[4.53678846,0.03752155,98.63490468],[4.53678803,0.0375198,98.63588295],[4.5367876,0.03751805,98.6368615],[4.53678717,0.0375163,98.63784031],[4.53678674,0.03751455,98.63881939],[4.53678631,0.03751279,98.63979873],[4.53678588,0.03751104,98.64077832],[4.53678544,0.03750929,98.64175815],[4.53678501,0.03750754,98.64273822],[4.53678458,0.03750579,98.64371852],[4.53678415,0.03750404,98.64469904],[4.53678372,0.03750229,98.64567978],[4.53678329,0.03750054,98.64666073],[4.53678286,0.03749879,98.64764189],[4.53678243,0.03749704,98.64862324],[4.536782,0.03749529,98.64960479],[4.53678157,0.03749354,98.65058652],[4.53678114,0.03749179,98.65156843],[4.53678071,0.03749004,98.65255051],[4.53678028,0.03748829,98.65353276],[4.53677985,0.03748654,98.65451516],[4.53677942,0.03748479,98.65549772],[4.53677899,0.03748304,98.65648042],[4.53677856,0.03748129,98.65746327],[4.53677813,0.03747953,98.65844624],[4.5367777,0.03747778,98.65942934],[4.53677727,0.03747603,98.66041257],[4.53677684,0.03747428,98.6613959],[4.5367764,0.03747253,98.66237935],[4.53677597,0.03747078,98.66336289],[4.53677554,0.03746903,98.66434653],[4.53677511,0.03746728,98.66533025],[4.53677468,0.03746553,98.66631406],[4.53677425,0.03746378,98.66729794],[4.53677382,0.03746203,98.66828189],[4.53677339,0.03746028,98.6692659],[4.53677296,0.03745853,98.67024997],[4.53677253,0.03745678,98.6712341],[4.53677209,0.03745503,98.67221831],[4.53677166,0.03745328,98.67320259],[4.53677123,0.03745153,98.67418697],[4.5367708,0.03744978,98.67517145],[4.53677037,0.03744803,98.67615604],[4.53676994,0.03744628,98.67714075],[4.5367695,0.03744453,98.67812559],[4.53676907,0.03744278,98.67911058],[4.53676864,0.03744103,98.68009572],[4.53676821,0.03743928,98.68108102],[4.53676778,0.03743753,98.68206649],[4.53676735,0.03743578,98.68305214],[4.53676692,0.03743403,98.68403799],[4.53676648,0.03743228,98.68502403],[4.53676605,0.03743053,98.68601029],[4.53676562,0.03742878,98.68699676],[4.53676519,0.03742703,98.68798344],[4.53676476,0.03742528,98.68897032],[4.53676433,0.03742353,98.68995739],[4.53676389,0.03742178,98.69094463],[4.53676346,0.03742003,98.69193203],[4.53676303,0.03741828,98.69291958],[4.5367626,0.03741653,98.69390727],[4.53676217,0.03741478,98.69489508],[4.53676174,0.03741303,98.69588301],[4.53676131,0.03741128,98.69687104],[4.53676087,0.03740953,98.69785917],[4.53676044,0.03740778,98.69884738],[4.53676001,0.03740603,98.69983568],[4.53675958,0.03740428,98.70082407],[4.53675915,0.03740253,98.70181255],[4.53675871,0.03740078,98.70280111],[4.53675828,0.03739903,98.70378976],[4.53675785,0.03739728,98.70477848],[4.53675742,0.03739553,98.70576729],[4.53675699,0.03739378,98.70675619],[4.53675656,0.03739203,98.70774516],[4.53675612,0.03739028,98.7087342],[4.53675569,0.03738853,98.70972333],[4.53675526,0.03738678,98.71071253],[4.53675483,0.03738503,98.71170181],[4.5367544,0.03738328,98.71269116],[4.53675396,0.03738153,98.71368058],[4.53675353,0.03737978,98.71467008],[4.5367531,0.03737803,98.71565964],[4.53675267,0.03737628,98.71664927],[4.53675224,0.03737453,98.71763897],[4.5367518,0.03737278,98.71862874],[4.53675137,0.03737103,98.71961855],[4.53675094,0.03736928,98.72060841],[4.53675051,0.03736753,98.7215983],[4.53675008,0.03736578,98.72258821],[4.53674964,0.03736403,98.72357813],[4.53674921,0.03736228,98.72456804],[4.53674878,0.03736053,98.72555794],[4.53674835,0.03735878,98.72654782],[4.53674791,0.03735703,98.72753766],[4.53674748,0.03735528,98.72852745],[4.53674705,0.03735353,98.72951719],[4.53674662,0.03735178,98.73050686],[4.53674618,0.03735003,98.73149644],[4.53674575,0.03734828,98.73248594],[4.53674532,0.03734653,98.73347533],[4.53674489,0.03734478,98.73446461],[4.53674445,0.03734303,98.73545377],[4.53674402,0.03734128,98.7364428],[4.53674359,0.03733953,98.73743167],[4.53674316,0.03733778,98.73842039],[4.53674272,0.03733603,98.73940895],[4.53674229,0.03733428,98.74039732],[4.53674186,0.03733253,98.74138551],[4.53674142,0.03733078,98.7423735],[4.53674099,0.03732903,98.74336127],[4.53674056,0.03732728,98.74434883],[4.53674012,0.03732553,98.74533619],[4.53673969,0.03732378,98.74632335],[4.53673925,0.03732203,98.74731031],[4.53673882,0.03732028,98.74829709],[4.53673839,0.03731853,98.74928369],[4.53673795,0.03731678,98.75027011],[4.53673752,0.03731503,98.75125637],[4.53673709,0.03731328,98.75224247],[4.53673665,0.03731153,98.75322842],[4.53673622,0.03730978,98.75421423],[4.53673578,0.03730804,98.75519989],[4.53673535,0.03730629,98.75618542],[4.53673491,0.03730454,98.75717083],[4.53673448,0.03730279,98.75815611],[4.53673404,0.03730104,98.75914129],[4.53673361,0.03729929,98.76012636],[4.53673318,0.03729754,98.76111133],[4.53673274,0.03729579,98.7620962],[4.53673231,0.03729404,98.763081],[4.53673187,0.03729229,98.76406571],[4.53673144,0.03729054,98.76505035],[4.536731,0.03728879,98.76603492],[4.53673057,0.03728704,98.76701943],[4.53673013,0.03728529,98.76800389],[4.5367297,0.03728354,98.7689883],[4.53672926,0.03728179,98.76997268],[4.53672883,0.03728004,98.77095702],[4.53672839,0.0372783,98.77194133],[4.53672796,0.03727655,98.77292562],[4.53672752,0.0372748,98.7739099],[4.53672709,0.03727305,98.77489417],[4.53672666,0.0372713,98.77587844],[4.53672622,0.03726955,98.77686273],[4.53672579,0.0372678,98.77784703],[4.53672535,0.03726605,98.77883135],[4.53672492,0.0372643,98.77981571],[4.53672448,0.03726255,98.78080011],[4.53672405,0.0372608,98.78178455],[4.53672361,0.03725905,98.78276905],[4.53672318,0.0372573,98.78375361],[4.53672274,0.03725555,98.78473824],[4.53672231,0.0372538,98.78572295],[4.53672188,0.03725205,98.78670774],[4.53672144,0.0372503,98.78769262],[4.53672101,0.03724856,98.7886776],[4.53672057,0.03724681,98.78966269],[4.53672014,0.03724506,98.7906479],[4.5367197,0.03724331,98.79163323],[4.53671927,0.03724156,98.79261868],[4.53671884,0.03723981,98.79360428],[4.5367184,0.03723806,98.79459002],[4.53671797,0.03723631,98.7955759],[4.53671754,0.03723456,98.79656195],[4.5367171,0.03723281,98.79754817],[4.53671667,0.03723106,98.79853456],[4.53671623,0.03722931,98.79952113],[4.5367158,0.03722756,98.80050789],[4.53671537,0.03722581,98.80149484],[4.53671493,0.03722406,98.802482],[4.5367145,0.03722231,98.80346937],[4.53671407,0.03722056,98.80445696],[4.53671364,0.03721881,98.80544477],[4.5367132,0.03721706,98.80643281],[4.53671277,0.03721531,98.80742109],[4.53671234,0.03721356,98.80840959],[4.53671191,0.03721181,98.8093983],[4.53671147,0.03721006,98.81038718],[4.53671104,0.03720831,98.8113762],[4.53671061,0.03720656,98.81236533],[4.53671018,0.03720481,98.81335454],[4.53670975,0.03720306,98.81434379],[4.53670931,0.03720131,98.81533304],[4.53670888,0.03719956,98.81632228],[4.53670845,0.03719781,98.81731146],[4.53670802,0.03719606,98.81830056],[4.53670759,0.03719431,98.81928953],[4.53670716,0.03719256,98.82027836],[4.53670672,0.03719081,98.821267],[4.53670629,0.03718906,98.82225543],[4.53670586,0.03718731,98.82324361],[4.53670543,0.03718556,98.82423151],[4.536705,0.03718381,98.8252191],[4.53670456,0.03718206,98.82620634],[4.53670413,0.03718031,98.82719321],[4.5367037,0.03717856,98.82817967],[4.53670327,0.03717681,98.8291657],[4.53670283,0.03717506,98.83015125],[4.5367024,0.03717331,98.83113629],[4.53670197,0.03717156,98.83212081],[4.53670154,0.03716981,98.83310475],[4.5367011,0.03716806,98.83408809],[4.53670067,0.03716631,98.83507081],[4.53670024,0.03716456,98.83605286],[4.5366998,0.03716281,98.83703421],[4.53669937,0.03716106,98.83801484],[4.53669894,0.03715931,98.83899471],[4.5366985,0.03715756,98.83997379],[4.53669807,0.03715581,98.84095205],[4.53669763,0.03715406,98.84192946],[4.5366972,0.03715231,98.84290597],[4.53669676,0.03715056,98.84388158],[4.53669633,0.03714882,98.84485623],[4.53669589,0.03714707,98.8458299],[4.53669546,0.03714532,98.84680256],[4.53669502,0.03714357,98.84777418],[4.53669458,0.03714182,98.84874472],[4.53669415,0.03714007,98.84971415],[4.53669371,0.03713832,98.85068245],[4.53669327,0.03713657,98.85164965],[4.53669284,0.03713482,98.85261576],[4.5366924,0.03713308,98.85358081],[4.53669196,0.03713133,98.85454484],[4.53669152,0.03712958,98.85550786],[4.53669108,0.03712783,98.85646991],[4.53669064,0.03712608,98.85743102],[4.5366902,0.03712433,98.85839121],[4.53668976,0.03712259,98.85935051],[4.53668932,0.03712084,98.86030895],[4.53668888,0.03711909,98.86126655],[4.53668844,0.03711734,98.86222335],[4.536688,0.03711559,98.86317936],[4.53668756,0.03711385,98.86413463],[4.53668712,0.0371121,98.86508916],[4.53668668,0.03711035,98.866043],[4.53668624,0.0371086,98.86699617],[4.5366858,0.03710685,98.86794869],[4.53668536,0.03710511,98.8689006],[4.53668492,0.03710336,98.86985192],[4.53668447,0.03710161,98.87080268],[4.53668403,0.03709986,98.87175291],[4.53668359,0.03709812,98.87270263],[4.53668315,0.03709637,98.87365187],[4.53668271,0.03709462,98.87460065],[4.53668226,0.03709287,98.87554901],[4.53668182,0.03709113,98.87649698],[4.53668138,0.03708938,98.87744457],[4.53668094,0.03708763,98.87839182],[4.5366805,0.03708588,98.87933875],[4.53668005,0.03708414,98.8802854],[4.53667961,0.03708239,98.88123178],[4.53667917,0.03708064,98.88217792],[4.53667873,0.03707889,98.88312386],[4.53667829,0.03707715,98.88406961],[4.53667784,0.0370754,98.88501522],[4.5366774,0.03707365,98.88596069],[4.53667696,0.0370719,98.88690607],[4.53667652,0.03707016,98.88785137],[4.53667608,0.03706841,98.88879663],[4.53667564,0.03706666,98.88974186],[4.53667519,0.03706491,98.89068711],[4.53667475,0.03706316,98.8916324],[4.53667431,0.03706142,98.89257775],[4.53667387,0.03705967,98.89352319],[4.53667343,0.03705792,98.89446875],[4.53667299,0.03705617,98.89541446],[4.53667255,0.03705443,98.89636035],[4.53667211,0.03705268,98.89730643],[4.53667167,0.03705093,98.89825275],[4.53667123,0.03704918,98.89919933],[4.53667079,0.03704743,98.90014619],[4.53667035,0.03704569,98.90109336],[4.53666991,0.03704394,98.90204088],[4.53666947,0.03704219,98.90298876],[4.53666903,0.03704044,98.90393704],[4.53666859,0.03703869,98.90488574],[4.53666816,0.03703694,98.90583488],[4.53666772,0.03703519,98.90678446],[4.53666728,0.03703345,98.90773445],[4.53666684,0.0370317,98.90868483],[4.5366664,0.03702995,98.90963559],[4.53666597,0.0370282,98.91058671],[4.53666553,0.03702645,98.91153816],[4.53666509,0.0370247,98.91248994],[4.53666466,0.03702295,98.91344201],[4.53666422,0.0370212,98.91439437],[4.53666379,0.03701945,98.91534699],[4.53666335,0.03701771,98.91629985],[4.53666292,0.03701596,98.91725295],[4.53666248,0.03701421,98.91820625],[4.53666205,0.03701246,98.91915976],[4.53666161,0.03701071,98.92011344],[4.53666118,0.03700896,98.92106729],[4.53666074,0.03700721,98.92202129],[4.53666031,0.03700546,98.92297542],[4.53665987,0.03700371,98.92392968],[4.53665944,0.03700196,98.92488403],[4.53665901,0.03700021,98.92583848],[4.53665857,0.03699846,98.92679299],[4.53665814,0.03699671,98.92774757],[4.53665771,0.03699496,98.92870218],[4.53665727,0.03699321,98.92965682],[4.53665684,0.03699146,98.93061146],[4.53665641,0.03698971,98.93156611],[4.53665597,0.03698796,98.93252073],[4.53665554,0.03698621,98.93347531],[4.53665511,0.03698446,98.93442984],[4.53665468,0.03698271,98.9353843],[4.53665425,0.03698096,98.93633868],[4.53665381,0.03697921,98.93729296],[4.53665338,0.03697746,98.93824713],[4.53665295,0.03697571,98.93920116],[4.53665252,0.03697396,98.94015505],[4.53665209,0.03697221,98.94110877],[4.53665165,0.03697046,98.94206231],[4.53665122,0.03696871,98.94301564],[4.53665079,0.03696696,98.94396874],[4.53665036,0.03696521,98.94492159],[4.53664993,0.03696346,98.94587416],[4.5366495,0.03696171,98.94682644],[4.53664907,0.03695996,98.9477784],[4.53664863,0.03695821,98.94873002],[4.5366482,0.03695646,98.94968128],[4.53664777,0.03695471,98.95063215],[4.53664734,0.03695296,98.95158262],[4.53664691,0.03695121,98.95253267],[4.53664648,0.03694946,98.95348226],[4.53664605,0.03694771,98.95443138],[4.53664561,0.03694596,98.95538002],[4.53664518,0.03694421,98.95632813],[4.53664475,0.03694246,98.95727571],[4.53664432,0.03694071,98.95822274],[4.53664389,0.03693896,98.95916918],[4.53664346,0.03693721,98.96011502],[4.53664303,0.03693546,98.96106023],[4.53664259,0.03693371,98.96200481],[4.53664216,0.03693196,98.96294871],[4.53664173,0.03693021,98.96389192],[4.5366413,0.03692846,98.96483442],[4.53664087,0.03692671,98.96577619],[4.53664043,0.03692496,98.9667172],[4.53664,0.03692321,98.96765744],[4.53663957,0.03692146,98.96859687],[4.53663914,0.03691971,98.96953549],[4.5366387,0.03691796,98.97047326],[4.53663827,0.03691621,98.97141017],[4.53663784,0.03691446,98.97234618],[4.5366374,0.03691271,98.97328129],[4.53663697,0.03691096,98.97421547],[4.53663654,0.03690921,98.9751487],[4.5366361,0.03690746,98.97608095],[4.53663567,0.03690571,98.9770122],[4.53663524,0.03690396,98.97794243],[4.5366348,0.03690221,98.97887162],[4.53663437,0.03690046,98.97979975],[4.53663393,0.03689871,98.98072679],[4.5366335,0.03689696,98.98165272],[4.53663306,0.03689521,98.98257753],[4.53663263,0.03689346,98.98350118],[4.53663219,0.03689171,98.98442365],[4.53663175,0.03688996,98.98534493],[4.53663132,0.03688822,98.986265],[4.53663088,0.03688647,98.98718382],[4.53663045,0.03688472,98.98810137],[4.53663001,0.03688297,98.98901764],[4.53662957,0.03688122,98.98993261],[4.53662913,0.03687947,98.99084624],[4.5366287,0.03687772,98.99175852],[4.53662826,0.03687597,98.99266943],[4.53662782,0.03687423,98.99357894],[4.53662738,0.03687248,98.99448703],[4.53662694,0.03687073,98.99539368],[4.5366265,0.03686898,98.99629886],[4.53662606,0.03686723,98.99720255],[4.53662562,0.03686549,98.99810474],[4.53662518,0.03686374,98.9990054],[4.53662474,0.03686199,98.99990456],[4.5366243,0.03686024,99.00080224],[4.53662386,0.03685849,99.00169846],[4.53662341,0.03685675,99.00259326],[4.53662297,0.036855,99.00348666],[4.53662253,0.03685325,99.00437868],[4.53662209,0.0368515,99.00526936],[4.53662164,0.03684976,99.00615871],[4.5366212,0.03684801,99.00704677],[4.53662076,0.03684626,99.00793356],[4.53662031,0.03684452,99.00881911],[4.53661987,0.03684277,99.00970344],[4.53661942,0.03684102,99.01058659],[4.53661898,0.03683927,99.01146857],[4.53661853,0.03683753,99.01234943],[4.53661809,0.03683578,99.01322918],[4.53661764,0.03683403,99.01410787],[4.5366172,0.03683229,99.01498551],[4.53661675,0.03683054,99.01586215],[4.53661631,0.03682879,99.0167378],[4.53661586,0.03682705,99.0176125],[4.53661541,0.0368253,99.01848628],[4.53661497,0.03682355,99.01935917],[4.53661452,0.03682181,99.0202312],[4.53661408,0.03682006,99.02110239],[4.53661363,0.03681832,99.02197278],[4.53661318,0.03681657,99.0228424],[4.53661274,0.03681482,99.02371128],[4.53661229,0.03681308,99.02457947],[4.53661184,0.03681133,99.02544701],[4.5366114,0.03680958,99.02631394],[4.53661095,0.03680784,99.0271803],[4.5366105,0.03680609,99.02804613],[4.53661006,0.03680434,99.02891149],[4.53660961,0.0368026,99.0297764],[4.53660916,0.03680085,99.03064092],[4.53660872,0.03679911,99.03150509],[4.53660827,0.03679736,99.03236894],[4.53660782,0.03679561,99.03323253],[4.53660738,0.03679387,99.03409589],[4.53660693,0.03679212,99.03495907],[4.53660649,0.03679037,99.03582212],[4.53660604,0.03678863,99.03668506],[4.53660559,0.03678688,99.0375479],[4.53660515,0.03678513,99.03841065],[4.5366047,0.03678339,99.03927331],[4.53660426,0.03678164,99.04013589],[4.53660381,0.03677989,99.04099837],[4.53660337,0.03677815,99.04186077],[4.53660293,0.0367764,99.04272309],[4.53660248,0.03677465,99.04358532],[4.53660204,0.0367729,99.04444747],[4.53660159,0.03677116,99.04530954],[4.53660115,0.03676941,99.04617154],[4.53660071,0.03676766,99.04703346],[4.53660026,0.03676592,99.04789531],[4.53659982,0.03676417,99.04875708],[4.53659938,0.03676242,99.04961879],[4.53659893,0.03676067,99.05048042],[4.53659849,0.03675893,99.05134199],[4.53659805,0.03675718,99.0522035],[4.53659761,0.03675543,99.05306494],[4.53659717,0.03675368,99.05392633],[4.53659672,0.03675194,99.05478765],[4.53659628,0.03675019,99.05564892],[4.53659584,0.03674844,99.05651011],[4.5365954,0.03674669,99.0573712],[4.53659496,0.03674495,99.05823217],[4.53659452,0.0367432,99.05909299],[4.53659408,0.03674145,99.05995365],[4.53659364,0.0367397,99.0608141],[4.5365932,0.03673795,99.06167435],[4.53659276,0.03673621,99.06253435],[4.53659232,0.03673446,99.06339408],[4.53659188,0.03673271,99.06425353],[4.53659144,0.03673096,99.06511266],[4.536591,0.03672921,99.06597146],[4.53659056,0.03672747,99.06682989],[4.53659012,0.03672572,99.06768794],[4.53658968,0.03672397,99.0685456],[4.53658924,0.03672222,99.06940283],[4.5365888,0.03672047,99.07025962],[4.53658836,0.03671872,99.07111595],[4.53658792,0.03671698,99.0719718],[4.53658748,0.03671523,99.07282714],[4.53658704,0.03671348,99.07368197],[4.5365866,0.03671173,99.07453625],[4.53658616,0.03670998,99.07538998],[4.53658572,0.03670823,99.07624312],[4.53658528,0.03670649,99.07709566],[4.53658485,0.03670474,99.07794758],[4.53658441,0.03670299,99.07879886],[4.53658397,0.03670124,99.07964948],[4.53658353,0.03669949,99.08049941],[4.53658309,0.03669774,99.08134864],[4.53658265,0.036696,99.08219715],[4.53658221,0.03669425,99.08304492],[4.53658177,0.0366925,99.08389192],[4.53658133,0.03669075,99.08473814],[4.53658089,0.036689,99.08558355],[4.53658045,0.03668725,99.08642814],[4.53658001,0.03668551,99.08727188],[4.53657958,0.03668376,99.08811476],[4.53657914,0.03668201,99.08895675],[4.5365787,0.03668026,99.08979783],[4.53657826,0.03667851,99.09063798],[4.53657782,0.03667677,99.09147719],[4.53657738,0.03667502,99.09231543],[4.53657694,0.03667327,99.09315268],[4.5365765,0.03667152,99.09398891],[4.53657606,0.03666977,99.09482411],[4.53657562,0.03666802,99.09565825],[4.53657518,0.03666628,99.09649132],[4.53657474,0.03666453,99.09732328],[4.5365743,0.03666278,99.09815412],[4.53657385,0.03666103,99.09898382],[4.53657341,0.03665929,99.09981234],[4.53657297,0.03665754,99.10063968],[4.53657253,0.03665579,99.1014658],[4.53657209,0.03665404,99.10229069],[4.53657165,0.03665229,99.10311433],[4.53657121,0.03665055,99.10393674],[4.53657076,0.0366488,99.10475792],[4.53657032,0.03664705,99.10557789],[4.53656988,0.0366453,99.10639666],[4.53656944,0.03664356,99.10721425],[4.53656899,0.03664181,99.10803066],[4.53656855,0.03664006,99.10884592],[4.53656811,0.03663831,99.10966003],[4.53656766,0.03663657,99.11047303],[4.53656722,0.03663482,99.11128492],[4.53656678,0.03663307,99.11209574],[4.53656633,0.03663133,99.1129055],[4.53656589,0.03662958,99.11371422],[4.53656545,0.03662783,99.11452193],[4.536565,0.03662608,99.11532864],[4.53656456,0.03662434,99.11613438],[4.53656412,0.03662259,99.11693916],[4.53656367,0.03662084,99.11774302],[4.53656323,0.0366191,99.11854596],[4.53656278,0.03661735,99.11934801],[4.53656234,0.0366156,99.1201492],[4.5365619,0.03661386,99.12094955],[4.53656145,0.03661211,99.12174908],[4.53656101,0.03661036,99.12254783],[4.53656056,0.03660861,99.12334581],[4.53656012,0.03660687,99.12414306],[4.53655967,0.03660512,99.1249396],[4.53655923,0.03660337,99.12573541],[4.53655879,0.03660163,99.1265305],[4.53655834,0.03659988,99.12732488],[4.5365579,0.03659813,99.12811854],[4.53655745,0.03659638,99.12891149],[4.53655701,0.03659464,99.12970372],[4.53655657,0.03659289,99.13049524],[4.53655612,0.03659114,99.13128604],[4.53655568,0.0365894,99.13207613],[4.53655523,0.03658765,99.13286551],[4.53655479,0.0365859,99.13365418],[4.53655434,0.03658416,99.13444214],[4.5365539,0.03658241,99.13522939],[4.53655346,0.03658066,99.13601593],[4.53655301,0.03657891,99.13680177],[4.53655257,0.03657717,99.1375869],[4.53655212,0.03657542,99.13837132],[4.53655168,0.03657367,99.13915504],[4.53655123,0.03657193,99.13993805],[4.53655079,0.03657018,99.14072036],[4.53655035,0.03656843,99.14150196],[4.5365499,0.03656669,99.14228287],[4.53654946,0.03656494,99.14306307],[4.53654901,0.03656319,99.14384257],[4.53654857,0.03656144,99.14462137],[4.53654812,0.0365597,99.14539947],[4.53654768,0.03655795,99.14617687],[4.53654724,0.0365562,99.14695358],[4.53654679,0.03655446,99.14772958],[4.53654635,0.03655271,99.14850489],[4.5365459,0.03655096,99.14927951],[4.53654546,0.03654922,99.15005343],[4.53654501,0.03654747,99.15082665],[4.53654457,0.03654572,99.15159918],[4.53654412,0.03654398,99.15237102],[4.53654368,0.03654223,99.15314216],[4.53654323,0.03654048,99.15391261],[4.53654279,0.03653873,99.15468237],[4.53654234,0.03653699,99.15545144],[4.5365419,0.03653524,99.15621982],[4.53654145,0.03653349,99.15698751],[4.53654101,0.03653175,99.15775451],[4.53654056,0.03653,99.15852083],[4.53654012,0.03652825,99.15928645],[4.53653967,0.03652651,99.16005139],[4.53653923,0.03652476,99.16081564],[4.53653878,0.03652301,99.1615792],[4.53653834,0.03652127,99.16234208],[4.53653789,0.03651952,99.16310427],[4.53653745,0.03651777,99.16386578],[4.536537,0.03651603,99.1646266],[4.53653656,0.03651428,99.16538674],[4.53653611,0.03651253,99.1661462],[4.53653567,0.03651079,99.16690497],[4.53653522,0.03650904,99.16766306],[4.53653478,0.03650729,99.16842048],[4.53653433,0.03650555,99.1691772],[4.53653389,0.0365038,99.16993325],[4.53653344,0.03650205,99.17068862],[4.53653299,0.03650031,99.17144331],[4.53653255,0.03649856,99.17219732],[4.5365321,0.03649681,99.17295065],[4.53653166,0.03649507,99.1737033],[4.53653121,0.03649332,99.17445528],[4.53653077,0.03649157,99.17520657],[4.53653058,0.03649083,99.17552414]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2}},{"geometry":{"coordinates":[[4.53698363,0.03818459,98.40432656],[4.53698321,0.03818284,98.40503315],[4.53698278,0.03818109,98.40574104],[4.53698236,0.03817934,98.40645023],[4.53698194,0.03817758,98.40716071],[4.53698152,0.03817583,98.40787246],[4.5369811,0.03817408,98.40858549],[4.53698067,0.03817232,98.40929979],[4.53698025,0.03817057,98.41001535],[4.53697983,0.03816882,98.41073217],[4.53697941,0.03816706,98.41145023],[4.53697899,0.03816531,98.41216953],[4.53697857,0.03816356,98.41289006],[4.53697814,0.0381618,98.41361182],[4.53697772,0.03816005,98.41433478],[4.5369773,0.0381583,98.41505894],[4.53697688,0.03815655,98.41578428],[4.53697646,0.03815479,98.4165108],[4.53697604,0.03815304,98.41723849],[4.53697561,0.03815129,98.41796734],[4.53697519,0.03814953,98.41869732],[4.53697477,0.03814778,98.41942844],[4.53697435,0.03814603,98.42016068],[4.53697393,0.03814427,98.42089404],[4.53697351,0.03814252,98.42162849],[4.53697309,0.03814077,98.42236403],[4.53697267,0.03813901,98.42310065],[4.53697224,0.03813726,98.42383833],[4.53697182,0.03813551,98.42457707],[4.5369714,0.03813375,98.42531686],[4.53697098,0.038132,98.42605768],[4.53697056,0.03813025,98.42679952],[4.53697014,0.03812849,98.42754238],[4.53696972,0.03812674,98.42828623],[4.53696929,0.03812499,98.42903108],[4.53696887,0.03812323,98.4297769],[4.53696845,0.03812148,98.43052369],[4.53696803,0.03811973,98.43127143],[4.53696761,0.03811797,98.43202012],[4.53696719,0.03811622,98.43276975],[4.53696677,0.03811447,98.43352029],[4.53696635,0.03811271,98.43427175],[4.53696592,0.03811096,98.43502411],[4.5369655,0.03810921,98.43577735],[4.53696508,0.03810746,98.43653148],[4.53696466,0.0381057,98.43728647],[4.53696424,0.03810395,98.43804231],[4.53696382,0.0381022,98.438799],[4.53696339,0.03810044,98.43955652],[4.53696297,0.03809869,98.44031486],[4.53696255,0.03809694,98.44107401],[4.53696213,0.03809518,98.44183396],[4.53696171,0.03809343,98.4425947],[4.53696128,0.03809168,98.44335622],[4.53696086,0.03808992,98.4441185],[4.53696044,0.03808817,98.44488153],[4.53696002,0.03808642,98.44564532],[4.5369596,0.03808467,98.44640987],[4.53695917,0.03808291,98.44717518],[4.53695875,0.03808116,98.44794124],[4.53695833,0.03807941,98.44870806],[4.5369579,0.03807765,98.44947564],[4.53695748,0.0380759,98.45024398],[4.53695706,0.03807415,98.45101307],[4.53695664,0.0380724,98.45178292],[4.53695621,0.03807064,98.45255353],[4.53695579,0.03806889,98.45332489],[4.53695537,0.03806714,98.45409701],[4.53695494,0.03806538,98.45486989],[4.53695452,0.03806363,98.45564353],[4.5369541,0.03806188,98.45641793],[4.53695368,0.03806013,98.45719309],[4.53695325,0.03805837,98.457969],[4.53695283,0.03805662,98.45874567],[4.5369524,0.03805487,98.45952311],[4.53695198,0.03805311,98.4603013],[4.53695156,0.03805136,98.46108025],[4.53695113,0.03804961,98.46185996],[4.53695071,0.03804786,98.46264043],[4.53695029,0.0380461,98.46342166],[4.53694986,0.03804435,98.46420365],[4.53694944,0.0380426,98.4649864],[4.53694902,0.03804085,98.46576991],[4.53694859,0.03803909,98.46655419],[4.53694817,0.03803734,98.46733922],[4.53694774,0.03803559,98.46812501],[4.53694732,0.03803384,98.46891157],[4.5369469,0.03803208,98.46969889],[4.53694647,0.03803033,98.47048697],[4.53694605,0.03802858,98.47127581],[4.53694562,0.03802683,98.47206542],[4.5369452,0.03802507,98.47285578],[4.53694477,0.03802332,98.47364691],[4.53694435,0.03802157,98.47443881],[4.53694393,0.03801982,98.47523147],[4.5369435,0.03801806,98.47602489],[4.53694308,0.03801631,98.47681907],[4.53694265,0.03801456,98.47761402],[4.53694223,0.03801281,98.47840974],[4.5369418,0.03801105,98.47920622],[4.53694138,0.0380093,98.48000346],[4.53694095,0.03800755,98.48080147],[4.53694053,0.0380058,98.48160025],[4.5369401,0.03800404,98.48239979],[4.53693968,0.03800229,98.48320009],[4.53693925,0.03800054,98.48400117],[4.53693883,0.03799879,98.48480301],[4.5369384,0.03799704,98.48560562],[4.53693798,0.03799528,98.48640899],[4.53693755,0.03799353,98.48721314],[4.53693713,0.03799178,98.48801805],[4.5369367,0.03799003,98.48882373],[4.53693628,0.03798827,98.48963018],[4.53693585,0.03798652,98.4904374],[4.53693543,0.03798477,98.49124538],[4.536935,0.03798302,98.49205414],[4.53693458,0.03798126,98.49286367],[4.53693415,0.03797951,98.49367396],[4.53693373,0.03797776,98.49448503],[4.5369333,0.03797601,98.49529687],[4.53693288,0.03797426,98.49610948],[4.53693245,0.0379725,98.49692286],[4.53693203,0.03797075,98.49773701],[4.5369316,0.037969,98.49855193],[4.53693118,0.03796725,98.49936763],[4.53693075,0.03796549,98.5001841],[4.53693032,0.03796374,98.50100134],[4.5369299,0.03796199,98.50181936],[4.53692947,0.03796024,98.50263815],[4.53692905,0.03795849,98.50345771],[4.53692862,0.03795673,98.50427805],[4.5369282,0.03795498,98.50509916],[4.53692777,0.03795323,98.50592105],[4.53692735,0.03795148,98.50674371],[4.53692692,0.03794972,98.50756715],[4.5369265,0.03794797,98.50839136],[4.53692607,0.03794622,98.50921635],[4.53692564,0.03794447,98.51004212],[4.53692522,0.03794272,98.51086866],[4.53692479,0.03794096,98.51169598],[4.53692437,0.03793921,98.51252408],[4.53692394,0.03793746,98.51335295],[4.53692352,0.03793571,98.51418257],[4.53692309,0.03793396,98.51501295],[4.53692267,0.0379322,98.51584406],[4.53692224,0.03793045,98.51667591],[4.53692181,0.0379287,98.51750847],[4.53692139,0.03792695,98.51834174],[4.53692096,0.03792519,98.51917572],[4.53692054,0.03792344,98.52001038],[4.53692011,0.03792169,98.52084572],[4.53691969,0.03791994,98.52168175],[4.53691926,0.03791819,98.52251845],[4.53691883,0.03791643,98.52335584],[4.53691841,0.03791468,98.5241939],[4.53691798,0.03791293,98.52503264],[4.53691756,0.03791118,98.52587205],[4.53691713,0.03790943,98.52671213],[4.5369167,0.03790767,98.52755289],[4.53691628,0.03790592,98.52839431],[4.53691585,0.03790417,98.52923641],[4.53691543,0.03790242,98.53007917],[4.536915,0.03790067,98.5309226],[4.53691457,0.03789891,98.53176669],[4.53691415,0.03789716,98.53261144],[4.53691372,0.03789541,98.53345685],[4.53691329,0.03789366,98.53430292],[4.53691287,0.03789191,98.53514966],[4.53691244,0.03789015,98.53599704],[4.53691202,0.0378884,98.53684509],[4.53691159,0.03788665,98.53769378],[4.53691116,0.0378849,98.53854313],[4.53691074,0.03788315,98.53939313],[4.53691031,0.03788139,98.54024378],[4.53690988,0.03787964,98.54109508],[4.53690946,0.03787789,98.54194702],[4.53690903,0.03787614,98.54279961],[4.5369086,0.03787439,98.54365284],[4.53690818,0.03787263,98.54450671],[4.53690775,0.03787088,98.54536123],[4.53690732,0.03786913,98.54621638],[4.5369069,0.03786738,98.54707217],[4.53690647,0.03786563,98.54792859],[4.53690604,0.03786388,98.54878566],[4.53690562,0.03786212,98.54964335],[4.53690519,0.03786037,98.55050168],[4.53690476,0.03785862,98.55136063],[4.53690434,0.03785687,98.55222022],[4.53690391,0.03785512,98.55308043],[4.53690348,0.03785336,98.55394127],[4.53690306,0.03785161,98.55480273],[4.53690263,0.03784986,98.55566482],[4.5369022,0.03784811,98.55652752],[4.53690178,0.03784636,98.55739085],[4.53690135,0.0378446,98.55825479],[4.53690092,0.03784285,98.55911936],[4.53690049,0.0378411,98.55998453],[4.53690007,0.03783935,98.56085033],[4.53689964,0.0378376,98.56171673],[4.53689921,0.03783585,98.56258375],[4.53689879,0.03783409,98.56345137],[4.53689836,0.03783234,98.56431961],[4.53689793,0.03783059,98.56518845],[4.5368975,0.03782884,98.5660579],[4.53689708,0.03782709,98.56692795],[4.53689665,0.03782534,98.5677986],[4.53689622,0.03782358,98.56866985],[4.5368958,0.03782183,98.5695417],[4.53689537,0.03782008,98.57041416],[4.53689494,0.03781833,98.5712872],[4.53689451,0.03781658,98.57216085],[4.53689409,0.03781482,98.57303508],[4.53689366,0.03781307,98.57390991],[4.53689323,0.03781132,98.57478533],[4.5368928,0.03780957,98.57566134],[4.53689238,0.03780782,98.57653793],[4.53689195,0.03780607,98.57741512],[4.53689152,0.03780431,98.57829288],[4.53689109,0.03780256,98.57917123],[4.53689067,0.03780081,98.58005017],[4.53689024,0.03779906,98.58092968],[4.53688981,0.03779731,98.58180977],[4.53688938,0.03779556,98.58269044],[4.53688896,0.0377938,98.58357168],[4.53688853,0.03779205,98.5844535],[4.5368881,0.0377903,98.5853359],[4.53688767,0.03778855,98.58621886],[4.53688725,0.0377868,98.58710239],[4.53688682,0.03778505,98.5879865],[4.53688639,0.03778329,98.58887116],[4.53688596,0.03778154,98.5897564],[4.53688554,0.03777979,98.5906422],[4.53688511,0.03777804,98.59152856],[4.53688468,0.03777629,98.59241548],[4.53688425,0.03777454,98.59330297],[4.53688382,0.03777279,98.59419101],[4.5368834,0.03777103,98.59507961],[4.53688297,0.03776928,98.59596876],[4.53688254,0.03776753,98.59685847],[4.53688211,0.03776578,98.59774872],[4.53688169,0.03776403,98.59863953],[4.53688126,0.03776228,98.59953089],[4.53688083,0.03776052,98.6004228],[4.5368804,0.03775877,98.60131525],[4.53687997,0.03775702,98.60220825],[4.53687955,0.03775527,98.60310179],[4.53687912,0.03775352,98.60399588],[4.53687869,0.03775177,98.60489052],[4.53687826,0.03775001,98.60578573],[4.53687783,0.03774826,98.6066815],[4.53687741,0.03774651,98.60757784],[4.53687698,0.03774476,98.60847475],[4.53687655,0.03774301,98.60937222],[4.53687612,0.03774126,98.61027025],[4.5368757,0.03773951,98.61116883],[4.53687527,0.03773775,98.61206797],[4.53687484,0.037736,98.61296765],[4.53687441,0.03773425,98.61386787],[4.53687398,0.0377325,98.61476864],[4.53687356,0.03773075,98.61566994],[4.53687313,0.037729,98.61657177],[4.5368727,0.03772724,98.61747413],[4.53687227,0.03772549,98.61837702],[4.53687184,0.03772374,98.61928043],[4.53687142,0.03772199,98.62018435],[4.53687099,0.03772024,98.62108879],[4.53687056,0.03771849,98.62199375],[4.53687013,0.03771674,98.6228992],[4.5368697,0.03771498,98.62380517],[4.53686928,0.03771323,98.62471163],[4.53686885,0.03771148,98.62561859],[4.53686842,0.03770973,98.62652604],[4.53686799,0.03770798,98.62743398],[4.53686756,0.03770623,98.62834241],[4.53686713,0.03770447,98.62925132],[4.53686671,0.03770272,98.6301607],[4.53686628,0.03770097,98.63107056],[4.53686585,0.03769922,98.6319809],[4.53686542,0.03769747,98.6328917],[4.53686499,0.03769572,98.63380296],[4.53686457,0.03769397,98.63471469],[4.53686414,0.03769221,98.63562687],[4.53686371,0.03769046,98.6365395],[4.53686328,0.03768871,98.63745258],[4.53686285,0.03768696,98.63836611],[4.53686242,0.03768521,98.63928009],[4.536862,0.03768346,98.6401945],[4.53686157,0.03768171,98.64110934],[4.53686114,0.03767995,98.64202462],[4.53686071,0.0376782,98.64294033],[4.53686028,0.03767645,98.64385645],[4.53685985,0.0376747,98.64477301],[4.53685943,0.03767295,98.64568997],[4.536859,0.0376712,98.64660736],[4.53685857,0.03766945,98.64752515],[4.53685814,0.03766769,98.64844335],[4.53685771,0.03766594,98.64936195],[4.53685728,0.03766419,98.65028095],[4.53685685,0.03766244,98.65120034],[4.53685643,0.03766069,98.65212013],[4.536856,0.03765894,98.65304031],[4.53685557,0.03765719,98.65396087],[4.53685514,0.03765543,98.65488182],[4.53685471,0.03765368,98.65580314],[4.53685428,0.03765193,98.65672484],[4.53685385,0.03765018,98.6576469],[4.53685342,0.03764843,98.65856934],[4.536853,0.03764668,98.65949214],[4.53685257,0.03764493,98.6604153],[4.53685214,0.03764317,98.66133881],[4.53685171,0.03764142,98.66226268],[4.53685128,0.03763967,98.6631869],[4.53685085,0.03763792,98.66411146],[4.53685042,0.03763617,98.66503637],[4.53684999,0.03763442,98.66596162],[4.53684956,0.03763267,98.6668872],[4.53684913,0.03763092,98.66781311],[4.53684871,0.03762916,98.66873936],[4.53684828,0.03762741,98.66966592],[4.53684785,0.03762566,98.67059281],[4.53684742,0.03762391,98.67152002],[4.53684699,0.03762216,98.67244754],[4.53684656,0.03762041,98.67337537],[4.53684613,0.03761866,98.67430351],[4.5368457,0.03761691,98.67523195],[4.53684527,0.03761515,98.67616069],[4.53684484,0.0376134,98.67708973],[4.53684441,0.03761165,98.67801907],[4.53684398,0.0376099,98.67894869],[4.53684355,0.03760815,98.6798786],[4.53684312,0.0376064,98.68080879],[4.53684269,0.03760465,98.68173926],[4.53684226,0.0376029,98.68267001],[4.53684183,0.03760115,98.68360102],[4.5368414,0.03759939,98.68453231],[4.53684097,0.03759764,98.68546386],[4.53684054,0.03759589,98.68639568],[4.53684011,0.03759414,98.68732775],[4.53683968,0.03759239,98.68826009],[4.53683925,0.03759064,98.68919269],[4.53683882,0.03758889,98.69012554],[4.53683839,0.03758714,98.69105866],[4.53683796,0.03758539,98.69199203],[4.53683753,0.03758364,98.69292566],[4.5368371,0.03758188,98.69385954],[4.53683667,0.03758013,98.69479368],[4.53683624,0.03757838,98.69572807],[4.53683581,0.03757663,98.69666272],[4.53683538,0.03757488,98.69759761],[4.53683495,0.03757313,98.69853276],[4.53683452,0.03757138,98.69946816],[4.53683409,0.03756963,98.7004038],[4.53683366,0.03756788,98.7013397],[4.53683323,0.03756613,98.70227584],[4.5368328,0.03756438,98.70321222],[4.53683237,0.03756262,98.70414886],[4.53683194,0.03756087,98.70508573],[4.53683151,0.03755912,98.70602285],[4.53683107,0.03755737,98.70696022],[4.53683064,0.03755562,98.70789782],[4.53683021,0.03755387,98.70883566],[4.53682978,0.03755212,98.70977375],[4.53682935,0.03755037,98.71071207],[4.53682892,0.03754862,98.71165063],[4.53682849,0.03754687,98.71258943],[4.53682806,0.03754512,98.71352846],[4.53682763,0.03754337,98.71446773],[4.5368272,0.03754161,98.71540723],[4.53682676,0.03753986,98.71634696],[4.53682633,0.03753811,98.71728693],[4.5368259,0.03753636,98.71822713],[4.53682547,0.03753461,98.71916755],[4.53682504,0.03753286,98.72010821],[4.53682461,0.03753111,98.72104909],[4.53682418,0.03752936,98.72199021],[4.53682374,0.03752761,98.72293155],[4.53682331,0.03752586,98.72387311],[4.53682288,0.03752411,98.7248149],[4.53682245,0.03752236,98.72575691],[4.53682202,0.03752061,98.72669914],[4.53682159,0.03751886,98.7276416],[4.53682116,0.03751711,98.72858428],[4.53682072,0.03751535,98.72952717],[4.53682029,0.0375136,98.73047029],[4.53681986,0.03751185,98.73141362],[4.53681943,0.0375101,98.73235717],[4.536819,0.03750835,98.73330093],[4.53681856,0.0375066,98.73424491],[4.53681813,0.03750485,98.73518911],[4.5368177,0.0375031,98.73613351],[4.53681727,0.03750135,98.73707813],[4.53681684,0.0374996,98.73802296],[4.5368164,0.03749785,98.738968],[4.53681597,0.0374961,98.73991325],[4.53681554,0.03749435,98.7408587],[4.53681511,0.0374926,98.74180437],[4.53681468,0.03749085,98.74275024],[4.53681424,0.0374891,98.74369631],[4.53681381,0.03748735,98.74464259],[4.53681338,0.0374856,98.74558907],[4.53681295,0.03748385,98.74653575],[4.53681252,0.03748209,98.74748264],[4.53681208,0.03748034,98.74842972],[4.53681165,0.03747859,98.74937701],[4.53681122,0.03747684,98.75032449],[4.53681079,0.03747509,98.75127217],[4.53681035,0.03747334,98.75222005],[4.53680992,0.03747159,98.75316812],[4.53680949,0.03746984,98.75411638],[4.53680906,0.03746809,98.75506484],[4.53680862,0.03746634,98.75601349],[4.53680819,0.03746459,98.75696233],[4.53680776,0.03746284,98.75791137],[4.53680733,0.03746109,98.75886059],[4.53680689,0.03745934,98.75981],[4.53680646,0.03745759,98.76075959],[4.53680603,0.03745584,98.76170938],[4.5368056,0.03745409,98.76265935],[4.53680516,0.03745234,98.7636095],[4.53680473,0.03745059,98.76455984],[4.5368043,0.03744884,98.76551037],[4.53680386,0.03744709,98.76646111],[4.53680343,0.03744534,98.76741208],[4.536803,0.03744359,98.76836329],[4.53680257,0.03744184,98.76931476],[4.53680213,0.03744009,98.7702665],[4.5368017,0.03743833,98.77121853],[4.53680127,0.03743658,98.77217086],[4.53680084,0.03743483,98.7731235],[4.5368004,0.03743308,98.77407648],[4.53679997,0.03743133,98.77502981],[4.53679954,0.03742958,98.77598351],[4.53679911,0.03742783,98.77693758],[4.53679867,0.03742608,98.77789205],[4.53679824,0.03742433,98.77884693],[4.53679781,0.03742258,98.77980223],[4.53679738,0.03742083,98.78075796],[4.53679694,0.03741908,98.78171414],[4.53679651,0.03741733,98.78267073],[4.53679608,0.03741558,98.78362775],[4.53679565,0.03741383,98.78458518],[4.53679522,0.03741208,98.78554302],[4.53679478,0.03741033,98.78650126],[4.53679435,0.03740858,98.78745989],[4.53679392,0.03740683,98.78841891],[4.53679349,0.03740508,98.78937832],[4.53679306,0.03740333,98.79033809],[4.53679263,0.03740158,98.79129824],[4.53679219,0.03739983,98.79225874],[4.53679176,0.03739808,98.7932196],[4.53679133,0.03739633,98.79418081],[4.5367909,0.03739458,98.79514237],[4.53679047,0.03739283,98.79610425],[4.53679004,0.03739107,98.79706647],[4.53678961,0.03738932,98.79802901],[4.53678918,0.03738757,98.79899187],[4.53678874,0.03738582,98.79995503],[4.53678831,0.03738407,98.8009185],[4.53678788,0.03738232,98.80188227],[4.53678745,0.03738057,98.80284632],[4.53678702,0.03737882,98.80381066],[4.53678659,0.03737707,98.80477528],[4.53678616,0.03737532,98.80574017],[4.53678573,0.03737357,98.80670533],[4.5367853,0.03737182,98.80767074],[4.53678487,0.03737007,98.80863641],[4.53678444,0.03736831,98.80960232],[4.536784,0.03736656,98.81056847],[4.53678357,0.03736481,98.81153485],[4.53678314,0.03736306,98.81250144],[4.53678271,0.03736131,98.81346824],[4.53678228,0.03735956,98.81443521],[4.53678185,0.03735781,98.81540235],[4.53678142,0.03735606,98.81636964],[4.53678099,0.03735431,98.81733706],[4.53678056,0.03735256,98.8183046],[4.53678013,0.03735081,98.81927224],[4.5367797,0.03734906,98.82023996],[4.53677927,0.0373473,98.82120775],[4.53677884,0.03734555,98.82217559],[4.53677841,0.0373438,98.82314347],[4.53677797,0.03734205,98.82411137],[4.53677754,0.0373403,98.82507927],[4.53677711,0.03733855,98.82604716],[4.53677668,0.0373368,98.82701502],[4.53677625,0.03733505,98.82798283],[4.53677582,0.0373333,98.82895059],[4.53677539,0.03733155,98.82991827],[4.53677496,0.0373298,98.83088585],[4.53677453,0.03732805,98.83185333],[4.53677409,0.0373263,98.83282069],[4.53677366,0.03732455,98.8337879],[4.53677323,0.03732279,98.83475496],[4.5367728,0.03732104,98.83572184],[4.53677237,0.03731929,98.83668855],[4.53677194,0.03731754,98.83765507],[4.5367715,0.03731579,98.83862143],[4.53677107,0.03731404,98.83958761],[4.53677064,0.03731229,98.84055361],[4.53677021,0.03731054,98.84151945],[4.53676977,0.03730879,98.84248512],[4.53676934,0.03730704,98.84345062],[4.53676891,0.03730529,98.84441595],[4.53676848,0.03730354,98.84538112],[4.53676804,0.03730179,98.84634614],[4.53676761,0.03730004,98.84731099],[4.53676718,0.03729829,98.84827568],[4.53676674,0.03729654,98.84924021],[4.53676631,0.03729479,98.85020459],[4.53676588,0.03729304,98.85116882],[4.53676544,0.03729129,98.8521329],[4.53676501,0.03728954,98.85309682],[4.53676458,0.03728779,98.8540606],[4.53676414,0.03728604,98.85502423],[4.53676371,0.03728429,98.85598772],[4.53676328,0.03728254,98.85695106],[4.53676284,0.03728079,98.85791426],[4.53676241,0.03727904,98.85887733],[4.53676198,0.03727729,98.85984025],[4.53676154,0.03727554,98.86080304],[4.53676111,0.03727379,98.86176569],[4.53676067,0.03727204,98.86272822],[4.53676024,0.03727029,98.8636906],[4.5367598,0.03726854,98.86465286],[4.53675937,0.03726679,98.865615],[4.53675894,0.03726504,98.866577],[4.5367585,0.03726329,98.86753888],[4.53675807,0.03726154,98.86850064],[4.53675763,0.03725979,98.86946228],[4.5367572,0.03725804,98.87042379],[4.53675676,0.03725629,98.87138519],[4.53675633,0.03725454,98.87234647],[4.53675589,0.03725279,98.87330764],[4.53675546,0.03725104,98.87426869],[4.53675502,0.03724929,98.87522963],[4.53675459,0.03724754,98.87619046],[4.53675415,0.03724579,98.87715118],[4.53675372,0.03724404,98.8781118],[4.53675328,0.03724229,98.8790723],[4.53675285,0.03724054,98.88003271],[4.53675241,0.03723879,98.88099301],[4.53675198,0.03723704,98.88195322],[4.53675154,0.03723529,98.88291332],[4.53675111,0.03723354,98.88387332],[4.53675067,0.03723179,98.88483323],[4.53675024,0.03723004,98.88579305],[4.5367498,0.03722829,98.88675277],[4.53674936,0.03722654,98.8877124],[4.53674893,0.03722479,98.88867194],[4.53674849,0.03722304,98.88963139],[4.53674806,0.03722129,98.89059076],[4.53674762,0.03721954,98.89155004],[4.53674719,0.0372178,98.89250924],[4.53674675,0.03721605,98.89346835],[4.53674631,0.0372143,98.89442739],[4.53674588,0.03721255,98.89538634],[4.53674544,0.0372108,98.89634522],[4.53674501,0.03720905,98.89730401],[4.53674457,0.0372073,98.89826273],[4.53674413,0.03720555,98.89922136],[4.5367437,0.0372038,98.9001799],[4.53674326,0.03720205,98.90113837],[4.53674283,0.0372003,98.90209674],[4.53674239,0.03719855,98.90305502],[4.53674195,0.0371968,98.90401322],[4.53674152,0.03719505,98.90497132],[4.53674108,0.0371933,98.90592933],[4.53674065,0.03719155,98.90688724],[4.53674021,0.0371898,98.90784506],[4.53673977,0.03718805,98.90880278],[4.53673934,0.0371863,98.9097604],[4.5367389,0.03718456,98.91071793],[4.53673846,0.03718281,98.91167535],[4.53673803,0.03718106,98.91263267],[4.53673759,0.03717931,98.91358988],[4.53673716,0.03717756,98.91454699],[4.53673672,0.03717581,98.91550399],[4.53673628,0.03717406,98.91646088],[4.53673585,0.03717231,98.91741767],[4.53673541,0.03717056,98.91837434],[4.53673497,0.03716881,98.91933089],[4.53673454,0.03716706,98.92028734],[4.5367341,0.03716531,98.92124367],[4.53673366,0.03716356,98.92219988],[4.53673323,0.03716181,98.92315597],[4.53673279,0.03716006,98.92411194],[4.53673235,0.03715831,98.9250678],[4.53673192,0.03715657,98.92602352],[4.53673148,0.03715482,98.92697913],[4.53673104,0.03715307,98.92793461],[4.53673061,0.03715132,98.92888996],[4.53673017,0.03714957,98.92984519],[4.53672973,0.03714782,98.93080028],[4.53672929,0.03714607,98.93175524],[4.53672886,0.03714432,98.93271007],[4.53672842,0.03714257,98.93366477],[4.53672798,0.03714082,98.93461933],[4.53672755,0.03713907,98.93557375],[4.53672711,0.03713732,98.93652804],[4.53672667,0.03713557,98.93748218],[4.53672624,0.03713382,98.93843619],[4.5367258,0.03713208,98.93939005],[4.53672536,0.03713033,98.94034377],[4.53672492,0.03712858,98.94129734],[4.53672449,0.03712683,98.94225076],[4.53672405,0.03712508,98.94320404],[4.53672361,0.03712333,98.94415717],[4.53672318,0.03712158,98.94511014],[4.53672274,0.03711983,98.94606297],[4.5367223,0.03711808,98.94701564],[4.53672186,0.03711633,98.94796815],[4.53672143,0.03711458,98.94892051],[4.53672099,0.03711283,98.9498727],[4.53672055,0.03711109,98.95082474],[4.53672011,0.03710934,98.95177662],[4.53671968,0.03710759,98.95272834],[4.53671924,0.03710584,98.95367989],[4.5367188,0.03710409,98.95463127],[4.53671836,0.03710234,98.95558249],[4.53671793,0.03710059,98.95653354],[4.53671749,0.03709884,98.95748442],[4.53671705,0.03709709,98.95843513],[4.53671661,0.03709534,98.95938567],[4.53671618,0.03709359,98.96033603],[4.53671574,0.03709184,98.96128622],[4.5367153,0.0370901,98.96223623],[4.53671486,0.03708835,98.96318606],[4.53671442,0.0370866,98.96413571],[4.53671399,0.03708485,98.96508518],[4.53671355,0.0370831,98.96603447],[4.53671311,0.03708135,98.96698358],[4.53671267,0.0370796,98.9679325],[4.53671224,0.03707785,98.96888123],[4.5367118,0.0370761,98.96982977],[4.53671136,0.03707435,98.97077813],[4.53671092,0.03707261,98.97172629],[4.53671048,0.03707086,98.97267426],[4.53671005,0.03706911,98.97362203],[4.53670961,0.03706736,98.97456961],[4.53670917,0.03706561,98.975517],[4.53670873,0.03706386,98.97646418],[4.53670829,0.03706211,98.97741117],[4.53670786,0.03706036,98.97835795],[4.53670742,0.03705861,98.97930453],[4.53670698,0.03705686,98.98025091],[4.53670654,0.03705512,98.98119709],[4.5367061,0.03705337,98.98214306],[4.53670567,0.03705162,98.98308883],[4.53670523,0.03704987,98.98403439],[4.53670479,0.03704812,98.98497974],[4.53670435,0.03704637,98.98592489],[4.53670391,0.03704462,98.98686982],[4.53670348,0.03704287,98.98781455],[4.53670304,0.03704112,98.98875907],[4.5367026,0.03703937,98.98970338],[4.53670216,0.03703763,98.99064748],[4.53670172,0.03703588,98.99159136],[4.53670128,0.03703413,98.99253503],[4.53670085,0.03703238,98.99347849],[4.53670041,0.03703063,98.99442173],[4.53669997,0.03702888,98.99536475],[4.53669953,0.03702713,98.99630756],[4.53669909,0.03702538,98.99725015],[4.53669865,0.03702363,98.99819253],[4.53669822,0.03702189,98.99913468],[4.53669778,0.03702014,99.00007662],[4.53669734,0.03701839,99.00101833],[4.5366969,0.03701664,99.00195982],[4.53669646,0.03701489,99.00290109],[4.53669602,0.03701314,99.00384214],[4.53669558,0.03701139,99.00478297],[4.53669515,0.03700964,99.00572356],[4.53669471,0.03700789,99.00666394],[4.53669427,0.03700615,99.0076041],[4.53669383,0.0370044,99.00854403],[4.53669339,0.03700265,99.00948375],[4.53669295,0.0370009,99.01042326],[4.53669251,0.03699915,99.01136255],[4.53669208,0.0369974,99.01230163],[4.53669164,0.03699565,99.01324051],[4.5366912,0.0369939,99.01417918],[4.53669076,0.03699215,99.01511764],[4.53669032,0.03699041,99.0160559],[4.53668988,0.03698866,99.01699397],[4.53668944,0.03698691,99.01793183],[4.53668901,0.03698516,99.0188695],[4.53668857,0.03698341,99.01980698],[4.53668813,0.03698166,99.02074427],[4.53668769,0.03697991,99.02168137],[4.53668725,0.03697816,99.02261828],[4.53668681,0.03697642,99.02355501],[4.53668637,0.03697467,99.02449155],[4.53668594,0.03697292,99.02542792],[4.5366855,0.03697117,99.02636411],[4.53668506,0.03696942,99.02730012],[4.53668462,0.03696767,99.02823596],[4.53668418,0.03696592,99.02917162],[4.53668374,0.03696417,99.03010712],[4.5366833,0.03696242,99.03104243],[4.53668287,0.03696068,99.03197757],[4.53668243,0.03695893,99.03291252],[4.53668199,0.03695718,99.03384728],[4.53668155,0.03695543,99.03478185],[4.53668111,0.03695368,99.03571622],[4.53668067,0.03695193,99.03665039],[4.53668023,0.03695018,99.03758435],[4.5366798,0.03694843,99.0385181],[4.53667936,0.03694668,99.03945164],[4.53667892,0.03694494,99.04038496],[4.53667848,0.03694319,99.04131806],[4.53667804,0.03694144,99.04225093],[4.5366776,0.03693969,99.04318356],[4.53667717,0.03693794,99.04411597],[4.53667673,0.03693619,99.04504813],[4.53667629,0.03693444,99.04598005],[4.53667585,0.03693269,99.04691172],[4.53667541,0.03693094,99.04784313],[4.53667497,0.0369292,99.04877429],[4.53667453,0.03692745,99.04970519],[4.5366741,0.0369257,99.05063583],[4.53667366,0.03692395,99.0515662],[4.53667322,0.0369222,99.05249629],[4.53667278,0.03692045,99.0534261],[4.53667234,0.0369187,99.05435564],[4.5366719,0.03691695,99.05528488],[4.53667147,0.0369152,99.05621384],[4.53667103,0.03691346,99.0571425],[4.53667059,0.03691171,99.05807087],[4.53667015,0.03690996,99.05899893],[4.53666971,0.03690821,99.05992668],[4.53666927,0.03690646,99.06085413],[4.53666883,0.03690471,99.06178125],[4.53666839,0.03690296,99.06270806],[4.53666796,0.03690121,99.06363455],[4.53666752,0.03689946,99.0645607],[4.53666708,0.03689772,99.06548653],[4.53666664,0.03689597,99.06641201],[4.5366662,0.03689422,99.06733716],[4.53666576,0.03689247,99.06826196],[4.53666532,0.03689072,99.06918641],[4.53666488,0.03688897,99.07011051],[4.53666444,0.03688722,99.07103425],[4.53666401,0.03688547,99.07195763],[4.53666357,0.03688373,99.07288065],[4.53666313,0.03688198,99.07380329],[4.53666269,0.03688023,99.07472556],[4.53666225,0.03687848,99.07564745],[4.53666181,0.03687673,99.07656895],[4.53666137,0.03687498,99.07749007],[4.53666093,0.03687323,99.0784108],[4.53666049,0.03687148,99.07933114],[4.53666005,0.03686974,99.08025107],[4.53665961,0.03686799,99.0811706],[4.53665917,0.03686624,99.08208972],[4.53665873,0.03686449,99.08300842],[4.53665829,0.03686274,99.08392672],[4.53665785,0.03686099,99.08484458],[4.53665742,0.03685924,99.08576203],[4.53665698,0.0368575,99.08667904],[4.53665654,0.03685575,99.08759562],[4.5366561,0.036854,99.08851177],[4.53665566,0.03685225,99.08942746],[4.53665522,0.0368505,99.09034272],[4.53665478,0.03684875,99.09125752],[4.53665434,0.036847,99.09217187],[4.5366539,0.03684526,99.09308575],[4.53665346,0.03684351,99.09399918],[4.53665302,0.03684176,99.09491213],[4.53665258,0.03684001,99.09582461],[4.53665213,0.03683826,99.09673662],[4.53665169,0.03683651,99.09764814],[4.53665125,0.03683477,99.09855918],[4.53665081,0.03683302,99.09946973],[4.53665037,0.03683127,99.10037979],[4.53664993,0.03682952,99.10128936],[4.53664949,0.03682777,99.10219844],[4.53664905,0.03682602,99.10310702],[4.53664861,0.03682428,99.10401511],[4.53664817,0.03682253,99.10492271],[4.53664773,0.03682078,99.1058298],[4.53664729,0.03681903,99.1067364],[4.53664684,0.03681728,99.1076425],[4.5366464,0.03681553,99.1085481],[4.53664596,0.03681379,99.1094532],[4.53664552,0.03681204,99.11035779],[4.53664508,0.03681029,99.11126188],[4.53664464,0.03680854,99.11216547],[4.5366442,0.03680679,99.11306856],[4.53664375,0.03680505,99.11397116],[4.53664331,0.0368033,99.11487328],[4.53664287,0.03680155,99.11577493],[4.53664243,0.0367998,99.11667614],[4.53664199,0.03679805,99.11757689],[4.53664155,0.03679631,99.11847722],[4.5366411,0.03679456,99.11937713],[4.53664066,0.03679281,99.12027663],[4.53664022,0.03679106,99.12117573],[4.53663978,0.03678931,99.12207445],[4.53663934,0.03678757,99.12297279],[4.53663889,0.03678582,99.12387077],[4.53663845,0.03678407,99.12476839],[4.53663801,0.03678232,99.12566568],[4.53663757,0.03678057,99.12656264],[4.53663713,0.03677883,99.12745929],[4.53663668,0.03677708,99.12835563],[4.53663624,0.03677533,99.12925167],[4.5366358,0.03677358,99.13014744],[4.53663536,0.03677183,99.13104293],[4.53663492,0.03677009,99.13193816],[4.53663447,0.03676834,99.13283315],[4.53663403,0.03676659,99.1337279],[4.53663359,0.03676484,99.13462243],[4.53663315,0.03676309,99.13551675],[4.53663271,0.03676135,99.13641087],[4.53663227,0.0367596,99.1373048],[4.53663182,0.03675785,99.13819855],[4.53663138,0.0367561,99.13909213],[4.53663094,0.03675435,99.13998557],[4.5366305,0.0367526,99.14087886],[4.53663006,0.03675086,99.14177202],[4.53662962,0.03674911,99.14266507],[4.53662918,0.03674736,99.14355801],[4.53662873,0.03674561,99.14445085],[4.53662829,0.03674386,99.14534361],[4.53662785,0.03674212,99.14623631],[4.53662741,0.03674037,99.14712892],[4.53662697,0.03673862,99.14802144],[4.53662653,0.03673687,99.14891385],[4.53662609,0.03673512,99.14980615],[4.53662565,0.03673337,99.15069831],[4.53662521,0.03673162,99.15159033],[4.53662477,0.03672988,99.15248219],[4.53662433,0.03672813,99.15337387],[4.53662389,0.03672638,99.15426536],[4.53662345,0.03672463,99.15515665],[4.53662301,0.03672288,99.15604773],[4.53662257,0.03672113,99.15693858],[4.53662213,0.03671939,99.15782918],[4.53662169,0.03671764,99.15871952],[4.53662125,0.03671589,99.1596096],[4.53662081,0.03671414,99.16049939],[4.53662037,0.03671239,99.16138888],[4.53661993,0.03671064,99.16227805],[4.53661949,0.03670889,99.1631669],[4.53661905,0.03670715,99.16405541],[4.53661861,0.0367054,99.16494356],[4.53661817,0.03670365,99.16583135],[4.53661773,0.0367019,99.16671875],[4.53661729,0.03670015,99.16760575],[4.53661685,0.0366984,99.16849235],[4.53661641,0.03669665,99.16937851],[4.53661597,0.03669491,99.17026424],[4.53661553,0.03669316,99.17114951],[4.53661509,0.03669141,99.17203432],[4.53661465,0.03668966,99.17291865],[4.53661421,0.03668791,99.17380247],[4.53661377,0.03668616,99.17468579],[4.53661333,0.03668441,99.17556859],[4.53661289,0.03668267,99.17645084],[4.53661245,0.03668092,99.17733254],[4.53661201,0.03667917,99.17821368],[4.53661157,0.03667742,99.17909423],[4.53661113,0.03667567,99.17997419],[4.53661069,0.03667392,99.18085353],[4.53661025,0.03667217,99.18173226],[4.53660981,0.03667043,99.18261034],[4.53660937,0.03666868,99.18348777],[4.53660893,0.03666693,99.18436453],[4.53660849,0.03666518,99.1852406],[4.53660805,0.03666343,99.18611598],[4.53660761,0.03666168,99.18699064],[4.53660717,0.03665994,99.18786457],[4.53660672,0.03665819,99.18873776],[4.53660628,0.03665644,99.18961018],[4.53660584,0.03665469,99.19048182],[4.5366054,0.03665294,99.19135267],[4.53660496,0.0366512,99.19222271],[4.53660452,0.03664945,99.19309192],[4.53660407,0.0366477,99.19396029],[4.53660363,0.03664595,99.19482781],[4.53660319,0.0366442,99.19569445],[4.53660275,0.03664246,99.19656025],[4.5366023,0.03664071,99.19742523],[4.53660186,0.03663896,99.19828939],[4.53660142,0.03663721,99.19915277],[4.53660098,0.03663546,99.20001537],[4.53660053,0.03663372,99.20087722],[4.53660009,0.03663197,99.20173834],[4.53659965,0.03663022,99.20259874],[4.5365992,0.03662847,99.20345845],[4.53659876,0.03662673,99.20431749],[4.53659832,0.03662498,99.20517586],[4.53659787,0.03662323,99.2060336],[4.53659743,0.03662148,99.20689072],[4.53659698,0.03661974,99.20774724],[4.53659654,0.03661799,99.20860319],[4.5365961,0.03661624,99.20945857],[4.53659565,0.03661449,99.21031341],[4.53659521,0.03661275,99.21116772],[4.53659477,0.036611,99.21202154],[4.53659432,0.03660925,99.21287487],[4.53659388,0.0366075,99.21372775],[4.53659343,0.03660576,99.21458018],[4.53659299,0.03660401,99.21543219],[4.53659255,0.03660226,99.2162838],[4.5365921,0.03660051,99.21713503],[4.53659166,0.03659877,99.21798591],[4.53659121,0.03659702,99.21883644],[4.53659077,0.03659527,99.21968662],[4.53659033,0.03659352,99.22053645],[4.53658988,0.03659178,99.22138591],[4.53658944,0.03659003,99.22223501],[4.536589,0.03658828,99.22308374],[4.53658855,0.03658653,99.2239321],[4.53658811,0.03658478,99.22478008],[4.53658767,0.03658304,99.22562768],[4.53658722,0.03658129,99.2264749],[4.53658678,0.03657954,99.22732172],[4.53658633,0.03657779,99.22816815],[4.53658589,0.03657605,99.22901417],[4.53658545,0.0365743,99.22985979],[4.536585,0.03657255,99.23070501],[4.53658456,0.0365708,99.23154981],[4.53658412,0.03656906,99.23239419],[4.53658367,0.03656731,99.23323815],[4.53658323,0.03656556,99.23408168],[4.53658279,0.03656381,99.23492478],[4.53658234,0.03656207,99.23576745],[4.5365819,0.03656032,99.23660967],[4.53658146,0.03655857,99.23745145],[4.53658101,0.03655682,99.23829278],[4.53658057,0.03655508,99.23913365],[4.53658013,0.03655333,99.23997407],[4.53657968,0.03655158,99.24081402],[4.53657924,0.03654983,99.2416535],[4.53657879,0.03654808,99.24249251],[4.53657835,0.03654634,99.24333104],[4.53657791,0.03654459,99.24416909],[4.53657746,0.03654284,99.24500665],[4.53657702,0.03654109,99.24584372],[4.53657658,0.03653935,99.24668029],[4.53657613,0.0365376,99.24751637],[4.53657569,0.03653585,99.24835193],[4.53657524,0.0365341,99.24918698],[4.5365748,0.03653236,99.25002152],[4.53657436,0.03653061,99.25085554],[4.53657391,0.03652886,99.25168903],[4.53657347,0.03652711,99.25252199],[4.53657303,0.03652537,99.25335442],[4.53657258,0.03652362,99.25418631],[4.53657214,0.03652187,99.25501765],[4.53657169,0.03652012,99.25584844],[4.53657125,0.03651838,99.25667868],[4.5365708,0.03651663,99.25750836],[4.53657036,0.03651488,99.25833747],[4.53656992,0.03651313,99.25916601],[4.53656947,0.03651139,99.25999398],[4.53656903,0.03650964,99.26082137],[4.53656858,0.03650789,99.26164818],[4.53656814,0.03650614,99.26247439],[4.53656769,0.0365044,99.26330001],[4.53656725,0.03650265,99.26412504],[4.5365668,0.0365009,99.26494945],[4.53656636,0.03649916,99.26577326],[4.53656591,0.03649741,99.26659645],[4.53656547,0.03649566,99.26741903],[4.53656502,0.03649391,99.26824098],[4.53656458,0.03649217,99.26906229],[4.53656413,0.03649042,99.26988298],[4.53656369,0.03648867,99.27070302],[4.53656324,0.03648692,99.27152242],[4.5365628,0.03648518,99.27234116],[4.53656235,0.03648343,99.27315925],[4.53656216,0.03648269,99.27350507]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}},{"geometry":{"coordinates":[[4.53659681,0.03647376,99.38096137],[4.53659699,0.0364745,99.38057892],[4.53659743,0.03647625,99.37967457],[4.53659788,0.036478,99.37877006],[4.53659832,0.03647975,99.3778654],[4.53659876,0.0364815,99.37696059],[4.5365992,0.03648324,99.37605563],[4.53659964,0.03648499,99.37515054],[4.53660008,0.03648674,99.37424533],[4.53660052,0.03648849,99.37334],[4.53660096,0.03649024,99.37243456],[4.5366014,0.03649199,99.37152902],[4.53660184,0.03649374,99.37062338],[4.53660228,0.03649549,99.36971765],[4.53660273,0.03649723,99.36881184],[4.53660317,0.03649898,99.36790596],[4.53660361,0.03650073,99.36700001],[4.53660405,0.03650248,99.366094],[4.53660449,0.03650423,99.36518795],[4.53660493,0.03650598,99.36428184],[4.53660538,0.03650773,99.36337571],[4.53660582,0.03650947,99.36246954],[4.53660626,0.03651122,99.36156335],[4.5366067,0.03651297,99.36065714],[4.53660714,0.03651472,99.35975093],[4.53660758,0.03651647,99.35884472],[4.53660803,0.03651822,99.35793851],[4.53660847,0.03651997,99.35703232],[4.53660891,0.03652171,99.35612615],[4.53660935,0.03652346,99.35522001],[4.5366098,0.03652521,99.35431391],[4.53661024,0.03652696,99.35340785],[4.53661068,0.03652871,99.35250184],[4.53661112,0.03653046,99.35159588],[4.53661157,0.0365322,99.35068999],[4.53661201,0.03653395,99.34978418],[4.53661245,0.0365357,99.34887844],[4.53661289,0.03653745,99.34797279],[4.53661334,0.0365392,99.34706723],[4.53661378,0.03654095,99.34616178],[4.53661422,0.03654269,99.34525643],[4.53661467,0.03654444,99.34435119],[4.53661511,0.03654619,99.34344608],[4.53661556,0.03654794,99.34254109],[4.536616,0.03654969,99.34163625],[4.53661644,0.03655143,99.34073154],[4.53661689,0.03655318,99.33982699],[4.53661733,0.03655493,99.33892259],[4.53661778,0.03655668,99.33801836],[4.53661822,0.03655843,99.3371143],[4.53661866,0.03656017,99.33621042],[4.53661911,0.03656192,99.33530672],[4.53661955,0.03656367,99.33440322],[4.53662,0.03656542,99.33349991],[4.53662044,0.03656717,99.33259681],[4.53662089,0.03656891,99.33169393],[4.53662133,0.03657066,99.33079127],[4.53662178,0.03657241,99.32988883],[4.53662222,0.03657416,99.32898663],[4.53662267,0.0365759,99.32808467],[4.53662312,0.03657765,99.32718296],[4.53662356,0.0365794,99.3262815],[4.53662401,0.03658115,99.32538031],[4.53662445,0.03658289,99.32447939],[4.5366249,0.03658464,99.32357874],[4.53662535,0.03658639,99.32267838],[4.53662579,0.03658814,99.32177831],[4.53662624,0.03658988,99.32087854],[4.53662669,0.03659163,99.31997907],[4.53662713,0.03659338,99.31907992],[4.53662758,0.03659512,99.31818108],[4.53662803,0.03659687,99.31728257],[4.53662848,0.03659862,99.31638439],[4.53662892,0.03660037,99.31548653],[4.53662937,0.03660211,99.31458896],[4.53662982,0.03660386,99.31369165],[4.53663027,0.03660561,99.31279457],[4.53663072,0.03660735,99.31189768],[4.53663116,0.0366091,99.31100096],[4.53663161,0.03661085,99.31010436],[4.53663206,0.03661259,99.30920787],[4.53663251,0.03661434,99.30831145],[4.53663296,0.03661609,99.30741506],[4.53663341,0.03661783,99.30651867],[4.53663385,0.03661958,99.30562226],[4.5366343,0.03662133,99.30472579],[4.53663475,0.03662307,99.30382924],[4.5366352,0.03662482,99.30293256],[4.53663565,0.03662657,99.30203572],[4.5366361,0.03662832,99.30113871],[4.53663655,0.03663006,99.30024148],[4.53663699,0.03663181,99.299344],[4.53663744,0.03663356,99.29844625],[4.53663789,0.0366353,99.29754819],[4.53663834,0.03663705,99.29664979],[4.53663879,0.0366388,99.29575102],[4.53663924,0.03664054,99.29485188],[4.53663968,0.03664229,99.29395237],[4.53664013,0.03664404,99.29305249],[4.53664058,0.03664578,99.29215225],[4.53664103,0.03664753,99.29125165],[4.53664148,0.03664928,99.29035069],[4.53664192,0.03665103,99.28944939],[4.53664237,0.03665277,99.28854774],[4.53664282,0.03665452,99.28764574],[4.53664327,0.03665627,99.28674341],[4.53664371,0.03665801,99.28584074],[4.53664416,0.03665976,99.28493775],[4.53664461,0.03666151,99.28403442],[4.53664505,0.03666326,99.28313078],[4.5366455,0.036665,99.28222682],[4.53664595,0.03666675,99.28132254],[4.5366464,0.0366685,99.28041795],[4.53664684,0.03667024,99.27951305],[4.53664729,0.03667199,99.27860786],[4.53664774,0.03667374,99.27770236],[4.53664818,0.03667549,99.27679657],[4.53664863,0.03667723,99.27589049],[4.53664907,0.03667898,99.27498412],[4.53664952,0.03668073,99.27407747],[4.53664997,0.03668248,99.27317054],[4.53665041,0.03668422,99.27226334],[4.53665086,0.03668597,99.27135586],[4.53665131,0.03668772,99.27044812],[4.53665175,0.03668947,99.26954012],[4.5366522,0.03669121,99.26863185],[4.53665264,0.03669296,99.26772333],[4.53665309,0.03669471,99.26681456],[4.53665354,0.03669646,99.26590554],[4.53665398,0.0366982,99.26499627],[4.53665443,0.03669995,99.26408676],[4.53665487,0.0367017,99.26317702],[4.53665532,0.03670345,99.26226705],[4.53665576,0.03670519,99.26135684],[4.53665621,0.03670694,99.26044642],[4.53665666,0.03670869,99.25953577],[4.5366571,0.03671044,99.2586249],[4.53665755,0.03671218,99.25771382],[4.53665799,0.03671393,99.25680253],[4.53665844,0.03671568,99.25589103],[4.53665888,0.03671743,99.25497933],[4.53665933,0.03671917,99.25406743],[4.53665977,0.03672092,99.25315534],[4.53666022,0.03672267,99.25224306],[4.53666066,0.03672442,99.25133058],[4.53666111,0.03672616,99.25041793],[4.53666155,0.03672791,99.24950509],[4.536662,0.03672966,99.24859208],[4.53666244,0.03673141,99.2476789],[4.53666289,0.03673316,99.24676555],[4.53666333,0.0367349,99.24585203],[4.53666378,0.03673665,99.24493835],[4.53666422,0.0367384,99.24402447],[4.53666467,0.03674015,99.24311039],[4.53666511,0.03674189,99.24219607],[4.53666556,0.03674364,99.24128149],[4.536666,0.03674539,99.24036664],[4.53666645,0.03674714,99.2394515],[4.53666689,0.03674889,99.23853603],[4.53666734,0.03675063,99.23762022],[4.53666778,0.03675238,99.23670405],[4.53666822,0.03675413,99.23578749],[4.53666867,0.03675588,99.23487052],[4.53666911,0.03675763,99.23395313],[4.53666956,0.03675937,99.23303528],[4.53667,0.03676112,99.23211697],[4.53667044,0.03676287,99.23119816],[4.53667089,0.03676462,99.23027884],[4.53667133,0.03676637,99.22935898],[4.53667177,0.03676811,99.22843856],[4.53667222,0.03676986,99.22751756],[4.53667266,0.03677161,99.22659596],[4.5366731,0.03677336,99.22567374],[4.53667354,0.03677511,99.22475087],[4.53667398,0.03677686,99.22382734],[4.53667443,0.0367786,99.22290312],[4.53667487,0.03678035,99.22197819],[4.53667531,0.0367821,99.22105253],[4.53667575,0.03678385,99.22012613],[4.53667619,0.0367856,99.21919894],[4.53667663,0.03678735,99.21827097],[4.53667707,0.0367891,99.21734218],[4.53667751,0.03679085,99.21641255],[4.53667795,0.0367926,99.21548206],[4.53667839,0.03679434,99.2145507],[4.53667883,0.03679609,99.21361843],[4.53667927,0.03679784,99.21268524],[4.53667971,0.03679959,99.21175111],[4.53668015,0.03680134,99.21081602],[4.53668058,0.03680309,99.20987998],[4.53668102,0.03680484,99.20894302],[4.53668146,0.03680659,99.20800516],[4.5366819,0.03680834,99.20706642],[4.53668233,0.03681009,99.20612683],[4.53668277,0.03681184,99.20518639],[4.5366832,0.03681359,99.20424513],[4.53668364,0.03681534,99.20330308],[4.53668408,0.03681709,99.20236025],[4.53668451,0.03681884,99.20141667],[4.53668495,0.03682059,99.20047236],[4.53668538,0.03682234,99.19952733],[4.53668582,0.03682409,99.19858161],[4.53668625,0.03682584,99.19763522],[4.53668668,0.03682759,99.19668817],[4.53668712,0.03682934,99.19574051],[4.53668755,0.03683109,99.19479223],[4.53668799,0.03683284,99.19384338],[4.53668842,0.03683459,99.19289397],[4.53668885,0.03683635,99.19194403],[4.53668929,0.0368381,99.19099358],[4.53668972,0.03683985,99.19004265],[4.53669015,0.0368416,99.18909126],[4.53669058,0.03684335,99.18813943],[4.53669102,0.0368451,99.18718719],[4.53669145,0.03684685,99.18623456],[4.53669188,0.0368486,99.18528156],[4.53669231,0.03685035,99.18432822],[4.53669274,0.0368521,99.18337456],[4.53669318,0.03685385,99.18242061],[4.53669361,0.03685561,99.18146639],[4.53669404,0.03685736,99.18051192],[4.53669447,0.03685911,99.17955723],[4.5366949,0.03686086,99.17860234],[4.53669533,0.03686261,99.17764727],[4.53669577,0.03686436,99.17669205],[4.5366962,0.03686611,99.1757367],[4.53669663,0.03686786,99.17478124],[4.53669706,0.03686962,99.1738257],[4.53669749,0.03687137,99.1728701],[4.53669792,0.03687312,99.17191447],[4.53669836,0.03687487,99.17095883],[4.53669879,0.03687662,99.1700032],[4.53669922,0.03687837,99.1690476],[4.53669965,0.03688012,99.16809206],[4.53670008,0.03688187,99.16713661],[4.53670051,0.03688362,99.16618126],[4.53670094,0.03688538,99.16522604],[4.53670138,0.03688713,99.16427097],[4.53670181,0.03688888,99.16331608],[4.53670224,0.03689063,99.16236139],[4.53670267,0.03689238,99.16140692],[4.5367031,0.03689413,99.1604527],[4.53670354,0.03689588,99.15949875],[4.53670397,0.03689763,99.1585451],[4.5367044,0.03689938,99.15759175],[4.53670483,0.03690113,99.15663875],[4.53670527,0.03690289,99.15568608],[4.5367057,0.03690464,99.15473375],[4.53670613,0.03690639,99.15378174],[4.53670656,0.03690814,99.15283005],[4.536707,0.03690989,99.15187869],[4.53670743,0.03691164,99.15092764],[4.53670786,0.03691339,99.14997691],[4.5367083,0.03691514,99.14902648],[4.53670873,0.03691689,99.14807635],[4.53670916,0.03691864,99.14712653],[4.5367096,0.03692039,99.146177],[4.53671003,0.03692214,99.14522776],[4.53671047,0.03692389,99.14427881],[4.5367109,0.03692564,99.14333015],[4.53671133,0.03692739,99.14238176],[4.53671177,0.03692915,99.14143365],[4.5367122,0.0369309,99.14048581],[4.53671264,0.03693265,99.13953824],[4.53671307,0.0369344,99.13859094],[4.53671351,0.03693615,99.13764389],[4.53671394,0.0369379,99.1366971],[4.53671438,0.03693965,99.13575056],[4.53671481,0.0369414,99.13480427],[4.53671525,0.03694315,99.13385822],[4.53671568,0.0369449,99.13291241],[4.53671612,0.03694665,99.13196684],[4.53671655,0.0369484,99.1310215],[4.53671699,0.03695015,99.13007639],[4.53671742,0.0369519,99.1291315],[4.53671786,0.03695365,99.12818683],[4.53671829,0.0369554,99.12724238],[4.53671873,0.03695715,99.12629814],[4.53671917,0.0369589,99.12535411],[4.5367196,0.03696065,99.12441029],[4.53672004,0.0369624,99.12346666],[4.53672047,0.03696415,99.12252324],[4.53672091,0.0369659,99.12158],[4.53672135,0.03696765,99.12063696],[4.53672178,0.0369694,99.1196941],[4.53672222,0.03697115,99.11875142],[4.53672265,0.0369729,99.11780892],[4.53672309,0.03697465,99.11686659],[4.53672353,0.0369764,99.11592443],[4.53672396,0.03697815,99.11498244],[4.5367244,0.0369799,99.11404061],[4.53672484,0.03698165,99.11309893],[4.53672527,0.0369834,99.11215741],[4.53672571,0.03698515,99.11121604],[4.53672615,0.0369869,99.11027482],[4.53672658,0.03698865,99.10933374],[4.53672702,0.0369904,99.1083928],[4.53672746,0.03699215,99.10745199],[4.5367279,0.0369939,99.10651132],[4.53672833,0.03699565,99.10557077],[4.53672877,0.0369974,99.10463034],[4.53672921,0.03699915,99.10369004],[4.53672964,0.0370009,99.10274985],[4.53673008,0.03700264,99.10180977],[4.53673052,0.03700439,99.1008698],[4.53673096,0.03700614,99.09992994],[4.53673139,0.03700789,99.09899018],[4.53673183,0.03700964,99.09805053],[4.53673227,0.03701139,99.09711099],[4.53673271,0.03701314,99.09617155],[4.53673314,0.03701489,99.09523221],[4.53673358,0.03701664,99.09429297],[4.53673402,0.03701839,99.09335384],[4.53673446,0.03702014,99.09241481],[4.53673489,0.03702189,99.09147587],[4.53673533,0.03702364,99.09053704],[4.53673577,0.03702539,99.0895983],[4.53673621,0.03702714,99.08865966],[4.53673664,0.03702889,99.08772112],[4.53673708,0.03703064,99.08678267],[4.53673752,0.03703239,99.08584432],[4.53673796,0.03703414,99.08490605],[4.53673839,0.03703589,99.08396789],[4.53673883,0.03703764,99.08302981],[4.53673927,0.03703939,99.08209182],[4.53673971,0.03704114,99.08115393],[4.53674015,0.03704289,99.08021612],[4.53674058,0.03704464,99.0792784],[4.53674102,0.03704638,99.07834076],[4.53674146,0.03704813,99.07740321],[4.5367419,0.03704988,99.07646575],[4.53674234,0.03705163,99.07552837],[4.53674277,0.03705338,99.07459108],[4.53674321,0.03705513,99.07365386],[4.53674365,0.03705688,99.07271673],[4.53674409,0.03705863,99.07177968],[4.53674453,0.03706038,99.07084271],[4.53674496,0.03706213,99.06990582],[4.5367454,0.03706388,99.06896901],[4.53674584,0.03706563,99.06803228],[4.53674628,0.03706738,99.06709564],[4.53674672,0.03706913,99.06615907],[4.53674716,0.03707088,99.06522258],[4.53674759,0.03707263,99.06428617],[4.53674803,0.03707438,99.06334984],[4.53674847,0.03707613,99.06241358],[4.53674891,0.03707787,99.06147741],[4.53674935,0.03707962,99.06054131],[4.53674979,0.03708137,99.05960529],[4.53675022,0.03708312,99.05866935],[4.53675066,0.03708487,99.05773348],[4.5367511,0.03708662,99.05679769],[4.53675154,0.03708837,99.05586198],[4.53675198,0.03709012,99.05492635],[4.53675242,0.03709187,99.05399079],[4.53675285,0.03709362,99.0530553],[4.53675329,0.03709537,99.05211989],[4.53675373,0.03709712,99.05118456],[4.53675417,0.03709887,99.0502493],[4.53675461,0.03710062,99.04931411],[4.53675505,0.03710237,99.048379],[4.53675548,0.03710412,99.04744396],[4.53675592,0.03710587,99.046509],[4.53675636,0.03710761,99.0455741],[4.5367568,0.03710936,99.04463929],[4.53675724,0.03711111,99.04370454],[4.53675768,0.03711286,99.04276987],[4.53675811,0.03711461,99.04183526],[4.53675855,0.03711636,99.04090073],[4.53675899,0.03711811,99.03996627],[4.53675943,0.03711986,99.03903189],[4.53675987,0.03712161,99.03809757],[4.53676031,0.03712336,99.03716332],[4.53676075,0.03712511,99.03622915],[4.53676118,0.03712686,99.03529504],[4.53676162,0.03712861,99.034361],[4.53676206,0.03713036,99.03342703],[4.5367625,0.03713211,99.03249314],[4.53676294,0.03713386,99.03155931],[4.53676338,0.0371356,99.03062554],[4.53676381,0.03713735,99.02969185],[4.53676425,0.0371391,99.02875822],[4.53676469,0.03714085,99.02782467],[4.53676513,0.0371426,99.02689117],[4.53676557,0.03714435,99.02595775],[4.53676601,0.0371461,99.02502439],[4.53676645,0.03714785,99.0240911],[4.53676688,0.0371496,99.02315787],[4.53676732,0.03715135,99.02222471],[4.53676776,0.0371531,99.02129162],[4.5367682,0.03715485,99.02035859],[4.53676864,0.0371566,99.01942562],[4.53676908,0.03715835,99.01849272],[4.53676951,0.0371601,99.01755988],[4.53676995,0.03716185,99.01662711],[4.53677039,0.03716359,99.01569439],[4.53677083,0.03716534,99.01476173],[4.53677127,0.03716709,99.01382912],[4.53677171,0.03716884,99.01289654],[4.53677214,0.03717059,99.01196401],[4.53677258,0.03717234,99.01103151],[4.53677302,0.03717409,99.01009903],[4.53677346,0.03717584,99.00916658],[4.5367739,0.03717759,99.00823414],[4.53677433,0.03717934,99.00730171],[4.53677477,0.03718109,99.00636929],[4.53677521,0.03718284,99.00543686],[4.53677565,0.03718459,99.00450444],[4.53677609,0.03718634,99.003572],[4.53677652,0.03718809,99.00263955],[4.53677696,0.03718984,99.00170707],[4.5367774,0.03719159,99.00077457],[4.53677784,0.03719334,98.99984204],[4.53677828,0.03719509,98.99890947],[4.53677871,0.03719684,98.99797685],[4.53677915,0.03719858,98.99704419],[4.53677959,0.03720033,98.99611148],[4.53678003,0.03720208,98.99517871],[4.53678046,0.03720383,98.99424587],[4.5367809,0.03720558,98.99331296],[4.53678134,0.03720733,98.99237998],[4.53678177,0.03720908,98.99144692],[4.53678221,0.03721083,98.99051377],[4.53678265,0.03721258,98.98958053],[4.53678309,0.03721433,98.9886472],[4.53678352,0.03721608,98.98771376],[4.53678396,0.03721783,98.98678021],[4.5367844,0.03721958,98.98584655],[4.53678483,0.03722133,98.98491278],[4.53678527,0.03722308,98.98397888],[4.5367857,0.03722483,98.98304484],[4.53678614,0.03722658,98.98211068],[4.53678658,0.03722833,98.98117637],[4.53678701,0.03723008,98.98024192],[4.53678745,0.03723183,98.97930732],[4.53678789,0.03723358,98.97837255],[4.53678832,0.03723533,98.97743763],[4.53678876,0.03723708,98.97650254],[4.53678919,0.03723883,98.97556727],[4.53678963,0.03724058,98.97463183],[4.53679006,0.03724233,98.9736962],[4.5367905,0.03724408,98.97276038],[4.53679093,0.03724583,98.97182436],[4.53679137,0.03724758,98.97088815],[4.5367918,0.03724933,98.96995172],[4.53679224,0.03725108,98.96901509],[4.53679267,0.03725283,98.96807823],[4.53679311,0.03725458,98.96714115],[4.53679354,0.03725633,98.96620384],[4.53679398,0.03725808,98.9652663],[4.53679441,0.03725983,98.96432851],[4.53679484,0.03726159,98.96339048],[4.53679528,0.03726334,98.9624522],[4.53679571,0.03726509,98.96151365],[4.53679614,0.03726684,98.96057485],[4.53679658,0.03726859,98.95963577],[4.53679701,0.03727034,98.95869642],[4.53679744,0.03727209,98.95775679],[4.53679788,0.03727384,98.95681689],[4.53679831,0.03727559,98.95587672],[4.53679874,0.03727734,98.9549363],[4.53679917,0.03727909,98.95399565],[4.53679961,0.03728084,98.95305478],[4.53680004,0.03728259,98.9521137],[4.53680047,0.03728435,98.95117243],[4.5368009,0.0372861,98.95023099],[4.53680133,0.03728785,98.94928938],[4.53680177,0.0372896,98.94834762],[4.5368022,0.03729135,98.94740572],[4.53680263,0.0372931,98.9464637],[4.53680306,0.03729485,98.94552158],[4.53680349,0.0372966,98.94457936],[4.53680392,0.03729835,98.94363707],[4.53680435,0.03730011,98.94269471],[4.53680478,0.03730186,98.9417523],[4.53680522,0.03730361,98.94080986],[4.53680565,0.03730536,98.93986739],[4.53680608,0.03730711,98.93892492],[4.53680651,0.03730886,98.93798246],[4.53680694,0.03731061,98.93704001],[4.53680737,0.03731237,98.93609761],[4.5368078,0.03731412,98.93515525],[4.53680823,0.03731587,98.93421296],[4.53680866,0.03731762,98.93327074],[4.53680909,0.03731937,98.93232862],[4.53680952,0.03732112,98.93138661],[4.53680995,0.03732287,98.93044472],[4.53681038,0.03732462,98.92950297],[4.53681081,0.03732638,98.92856137],[4.53681124,0.03732813,98.92761994],[4.53681167,0.03732988,98.92667868],[4.5368121,0.03733163,98.92573762],[4.53681253,0.03733338,98.92479677],[4.53681296,0.03733513,98.92385614],[4.53681339,0.03733688,98.92291576],[4.53681382,0.03733864,98.92197562],[4.53681426,0.03734039,98.92103575],[4.53681469,0.03734214,98.92009617],[4.53681512,0.03734389,98.91915688],[4.53681555,0.03734564,98.9182179],[4.53681598,0.03734739,98.91727925],[4.53681641,0.03734914,98.91634094],[4.53681684,0.0373509,98.91540299],[4.53681727,0.03735265,98.91446541],[4.5368177,0.0373544,98.91352821],[4.53681813,0.03735615,98.91259141],[4.53681856,0.0373579,98.91165503],[4.53681899,0.03735965,98.91071907],[4.53681942,0.0373614,98.90978355],[4.53681985,0.03736315,98.90884848],[4.53682029,0.03736491,98.90791385],[4.53682072,0.03736666,98.90697967],[4.53682115,0.03736841,98.90604595],[4.53682158,0.03737016,98.90511268],[4.53682201,0.03737191,98.90417989],[4.53682244,0.03737366,98.90324757],[4.53682287,0.03737541,98.90231572],[4.53682331,0.03737716,98.90138435],[4.53682374,0.03737892,98.90045347],[4.53682417,0.03738067,98.89952308],[4.5368246,0.03738242,98.89859318],[4.53682503,0.03738417,98.89766378],[4.53682547,0.03738592,98.89673489],[4.5368259,0.03738767,98.89580651],[4.53682633,0.03738942,98.89487865],[4.53682676,0.03739117,98.8939513],[4.53682719,0.03739292,98.89302448],[4.53682763,0.03739467,98.89209819],[4.53682806,0.03739642,98.89117244],[4.53682849,0.03739818,98.89024722],[4.53682893,0.03739993,98.88932255],[4.53682936,0.03740168,98.88839843],[4.53682979,0.03740343,98.88747486],[4.53683022,0.03740518,98.88655185],[4.53683066,0.03740693,98.88562941],[4.53683109,0.03740868,98.88470754],[4.53683152,0.03741043,98.88378622],[4.53683196,0.03741218,98.88286545],[4.53683239,0.03741393,98.88194519],[4.53683283,0.03741568,98.88102542],[4.53683326,0.03741743,98.88010613],[4.53683369,0.03741918,98.87918728],[4.53683413,0.03742093,98.87826886],[4.53683456,0.03742268,98.87735084],[4.53683499,0.03742443,98.8764332],[4.53683543,0.03742618,98.87551592],[4.53683586,0.03742793,98.87459898],[4.5368363,0.03742968,98.87368234],[4.53683673,0.03743143,98.872766],[4.53683717,0.03743318,98.87184992],[4.5368376,0.03743493,98.87093409],[4.53683803,0.03743668,98.87001848],[4.53683847,0.03743844,98.86910306],[4.5368389,0.03744019,98.86818782],[4.53683934,0.03744194,98.86727273],[4.53683977,0.03744369,98.86635777],[4.5368402,0.03744544,98.86544293],[4.53684064,0.03744719,98.86452818],[4.53684107,0.03744894,98.86361353],[4.5368415,0.03745069,98.86269897],[4.53684194,0.03745244,98.8617845],[4.53684237,0.03745419,98.8608701],[4.5368428,0.03745594,98.85995577],[4.53684324,0.03745769,98.85904151],[4.53684367,0.03745944,98.8581273],[4.5368441,0.03746119,98.85721314],[4.53684454,0.03746294,98.85629903],[4.53684497,0.03746469,98.85538495],[4.5368454,0.03746645,98.8544709],[4.53684584,0.0374682,98.85355688],[4.53684627,0.03746995,98.85264288],[4.5368467,0.0374717,98.85172888],[4.53684713,0.03747345,98.85081489],[4.53684757,0.0374752,98.84990089],[4.536848,0.03747695,98.84898689],[4.53684843,0.0374787,98.84807287],[4.53684886,0.03748045,98.84715882],[4.5368493,0.0374822,98.84624475],[4.53684973,0.03748395,98.84533063],[4.53685016,0.03748571,98.84441648],[4.53685059,0.03748746,98.84350227],[4.53685102,0.03748921,98.84258801],[4.53685145,0.03749096,98.84167368],[4.53685188,0.03749271,98.84075928],[4.53685232,0.03749446,98.83984481],[4.53685275,0.03749621,98.83893024],[4.53685318,0.03749796,98.83801559],[4.53685361,0.03749972,98.83710084],[4.53685404,0.03750147,98.83618599],[4.53685447,0.03750322,98.83527102],[4.5368549,0.03750497,98.83435593],[4.53685533,0.03750672,98.83344072],[4.53685576,0.03750847,98.83252537],[4.53685619,0.03751022,98.83160989],[4.53685662,0.03751198,98.83069426],[4.53685705,0.03751373,98.82977847],[4.53685748,0.03751548,98.82886253],[4.53685791,0.03751723,98.82794642],[4.53685834,0.03751898,98.82703013],[4.53685877,0.03752073,98.82611366],[4.53685919,0.03752249,98.82519701],[4.53685962,0.03752424,98.82428015],[4.53686005,0.03752599,98.8233631],[4.53686048,0.03752774,98.82244584],[4.53686091,0.03752949,98.82152836],[4.53686133,0.03753125,98.82061065],[4.53686176,0.037533,98.81969272],[4.53686219,0.03753475,98.81877455],[4.53686262,0.0375365,98.81785614],[4.53686304,0.03753825,98.8169375],[4.53686347,0.03754001,98.81601866],[4.5368639,0.03754176,98.81509963],[4.53686432,0.03754351,98.81418043],[4.53686475,0.03754526,98.81326108],[4.53686518,0.03754702,98.8123416],[4.5368656,0.03754877,98.811422],[4.53686603,0.03755052,98.81050232],[4.53686645,0.03755227,98.80958256],[4.53686688,0.03755403,98.80866274],[4.53686731,0.03755578,98.80774289],[4.53686773,0.03755753,98.80682303],[4.53686816,0.03755928,98.80590316],[4.53686858,0.03756104,98.80498332],[4.53686901,0.03756279,98.80406352],[4.53686943,0.03756454,98.80314378],[4.53686986,0.0375663,98.80222412],[4.53687028,0.03756805,98.80130456],[4.53687071,0.0375698,98.80038512],[4.53687113,0.03757155,98.79946581],[4.53687155,0.03757331,98.79854666],[4.53687198,0.03757506,98.79762769],[4.5368724,0.03757681,98.79670891],[4.53687283,0.03757857,98.79579035],[4.53687325,0.03758032,98.79487202],[4.53687368,0.03758207,98.79395395],[4.5368741,0.03758382,98.79303615],[4.53687453,0.03758558,98.79211864],[4.53687495,0.03758733,98.79120145],[4.53687537,0.03758908,98.79028459],[4.5368758,0.03759084,98.78936806],[4.53687622,0.03759259,98.78845189],[4.53687665,0.03759434,98.78753606],[4.53687707,0.03759609,98.78662059],[4.5368775,0.03759785,98.78570548],[4.53687792,0.0375996,98.78479075],[4.53687834,0.03760135,98.78387638],[4.53687877,0.03760311,98.78296239],[4.53687919,0.03760486,98.78204879],[4.53687962,0.03760661,98.78113558],[4.53688004,0.03760836,98.78022277],[4.53688047,0.03761012,98.77931035],[4.53688089,0.03761187,98.77839834],[4.53688131,0.03761362,98.77748675],[4.53688174,0.03761538,98.77657557],[4.53688216,0.03761713,98.77566482],[4.53688259,0.03761888,98.77475449],[4.53688301,0.03762063,98.7738446],[4.53688344,0.03762239,98.77293515],[4.53688386,0.03762414,98.77202615],[4.53688429,0.03762589,98.77111759],[4.53688471,0.03762765,98.7702095],[4.53688513,0.0376294,98.76930187],[4.53688556,0.03763115,98.7683947],[4.53688598,0.0376329,98.76748801],[4.53688641,0.03763466,98.7665818],[4.53688683,0.03763641,98.76567607],[4.53688726,0.03763816,98.76477083],[4.53688768,0.03763992,98.76386609],[4.53688811,0.03764167,98.76296186],[4.53688853,0.03764342,98.76205812],[4.53688896,0.03764517,98.76115491],[4.53688938,0.03764693,98.76025221],[4.53688981,0.03764868,98.75935004],[4.53689023,0.03765043,98.75844839],[4.53689066,0.03765219,98.75754729],[4.53689108,0.03765394,98.75664672],[4.53689151,0.03765569,98.75574671],[4.53689193,0.03765744,98.75484724],[4.53689236,0.0376592,98.75394834],[4.53689278,0.03766095,98.75305],[4.53689321,0.0376627,98.75215223],[4.53689363,0.03766445,98.75125503],[4.53689406,0.03766621,98.75035842],[4.53689448,0.03766796,98.74946239],[4.53689491,0.03766971,98.74856696],[4.53689533,0.03767146,98.74767213],[4.53689576,0.03767322,98.7467779],[4.53689619,0.03767497,98.74588428],[4.53689661,0.03767672,98.74499128],[4.53689704,0.03767847,98.7440989],[4.53689746,0.03768023,98.74320715],[4.53689789,0.03768198,98.74231603],[4.53689832,0.03768373,98.74142555],[4.53689874,0.03768548,98.74053572],[4.53689917,0.03768724,98.73964653],[4.5368996,0.03768899,98.73875801],[4.53690002,0.03769074,98.73787014],[4.53690045,0.03769249,98.73698295],[4.53690087,0.03769425,98.73609643],[4.5369013,0.037696,98.73521058],[4.53690173,0.03769775,98.73432543],[4.53690215,0.0376995,98.73344096],[4.53690258,0.03770125,98.73255719],[4.53690301,0.03770301,98.73167413],[4.53690344,0.03770476,98.73079177],[4.53690386,0.03770651,98.72991013],[4.53690429,0.03770826,98.72902921],[4.53690472,0.03771002,98.72814902],[4.53690515,0.03771177,98.72726956],[4.53690557,0.03771352,98.72639083],[4.536906,0.03771527,98.72551285],[4.53690643,0.03771702,98.72463562],[4.53690686,0.03771878,98.72375915],[4.53690729,0.03772053,98.72288343],[4.53690771,0.03772228,98.72200848],[4.53690814,0.03772403,98.72113431],[4.53690857,0.03772578,98.72026092],[4.536909,0.03772753,98.71938831],[4.53690943,0.03772929,98.71851649],[4.53690986,0.03773104,98.71764546],[4.53691028,0.03773279,98.71677524],[4.53691071,0.03773454,98.71590582],[4.53691114,0.03773629,98.71503717],[4.53691157,0.03773805,98.71416929],[4.536912,0.0377398,98.71330215],[4.53691243,0.03774155,98.71243574],[4.53691286,0.0377433,98.71157005],[4.53691329,0.03774505,98.71070505],[4.53691372,0.0377468,98.70984073],[4.53691415,0.03774855,98.70897707],[4.53691458,0.03775031,98.70811406],[4.53691501,0.03775206,98.70725169],[4.53691544,0.03775381,98.70638997],[4.53691587,0.03775556,98.70552888],[4.5369163,0.03775731,98.70466841],[4.53691673,0.03775906,98.70380857],[4.53691716,0.03776082,98.70294934],[4.53691759,0.03776257,98.70209072],[4.53691802,0.03776432,98.70123269],[4.53691845,0.03776607,98.70037527],[4.53691888,0.03776782,98.69951843],[4.53691931,0.03776957,98.69866217],[4.53691974,0.03777132,98.69780649],[4.53692017,0.03777307,98.69695137],[4.5369206,0.03777483,98.69609682],[4.53692103,0.03777658,98.69524283],[4.53692146,0.03777833,98.69438938],[4.53692189,0.03778008,98.69353648],[4.53692232,0.03778183,98.69268412],[4.53692275,0.03778358,98.69183228],[4.53692319,0.03778533,98.69098097],[4.53692362,0.03778709,98.69013018],[4.53692405,0.03778884,98.6892799],[4.53692448,0.03779059,98.68843012],[4.53692491,0.03779234,98.68758084],[4.53692534,0.03779409,98.68673205],[4.53692577,0.03779584,98.68588375],[4.5369262,0.03779759,98.68503593],[4.53692663,0.03779934,98.68418857],[4.53692706,0.0378011,98.68334169],[4.53692749,0.03780285,98.68249526],[4.53692792,0.0378046,98.68164928],[4.53692835,0.03780635,98.68080375],[4.53692879,0.0378081,98.67995866],[4.53692922,0.03780985,98.679114],[4.53692965,0.0378116,98.67826977],[4.53693008,0.03781335,98.67742595],[4.53693051,0.03781511,98.67658255],[4.53693094,0.03781686,98.67573956],[4.53693137,0.03781861,98.67489696],[4.5369318,0.03782036,98.67405476],[4.53693223,0.03782211,98.67321294],[4.53693266,0.03782386,98.67237151],[4.53693309,0.03782561,98.67153045],[4.53693352,0.03782736,98.67068975],[4.53693395,0.03782912,98.66984942],[4.53693438,0.03783087,98.66900943],[4.53693481,0.03783262,98.6681698],[4.53693524,0.03783437,98.6673305],[4.53693567,0.03783612,98.66649154],[4.5369361,0.03783787,98.66565291],[4.53693653,0.03783962,98.66481459],[4.53693697,0.03784138,98.66397659],[4.5369374,0.03784313,98.66313889],[4.53693783,0.03784488,98.6623015],[4.53693826,0.03784663,98.6614644],[4.53693869,0.03784838,98.66062759],[4.53693912,0.03785013,98.65979105],[4.53693955,0.03785188,98.65895479],[4.53693997,0.03785364,98.6581188],[4.5369404,0.03785539,98.65728307],[4.53694083,0.03785714,98.65644759],[4.53694126,0.03785889,98.65561235],[4.53694169,0.03786064,98.65477736],[4.53694212,0.03786239,98.6539426],[4.53694255,0.03786414,98.65310807],[4.53694298,0.0378659,98.65227376],[4.53694341,0.03786765,98.65143966],[4.53694384,0.0378694,98.65060577],[4.53694427,0.03787115,98.64977208],[4.5369447,0.0378729,98.64893858],[4.53694513,0.03787466,98.64810527],[4.53694555,0.03787641,98.64727214],[4.53694598,0.03787816,98.64643918],[4.53694641,0.03787991,98.64560639],[4.53694684,0.03788166,98.64477376],[4.53694727,0.03788341,98.64394129],[4.5369477,0.03788517,98.64310896],[4.53694812,0.03788692,98.64227677],[4.53694855,0.03788867,98.64144471],[4.53694898,0.03789042,98.64061278],[4.53694941,0.03789217,98.63978099],[4.53694984,0.03789393,98.63894935],[4.53695026,0.03789568,98.63811787],[4.53695069,0.03789743,98.63728656],[4.53695112,0.03789918,98.63645544],[4.53695154,0.03790093,98.63562451],[4.53695197,0.03790269,98.63479378],[4.5369524,0.03790444,98.63396327],[4.53695283,0.03790619,98.63313298],[4.53695325,0.03790794,98.63230294],[4.53695368,0.0379097,98.63147314],[4.53695411,0.03791145,98.63064361],[4.53695453,0.0379132,98.62981435],[4.53695496,0.03791495,98.62898537],[4.53695539,0.0379167,98.62815669],[4.53695581,0.03791846,98.62732831],[4.53695624,0.03792021,98.62650025],[4.53695666,0.03792196,98.62567252],[4.53695709,0.03792371,98.62484513],[4.53695752,0.03792547,98.62401809],[4.53695794,0.03792722,98.62319141],[4.53695837,0.03792897,98.62236511],[4.5369588,0.03793072,98.62153919],[4.53695922,0.03793248,98.62071367],[4.53695965,0.03793423,98.61988855],[4.53696007,0.03793598,98.61906384],[4.5369605,0.03793773,98.61823953],[4.53696093,0.03793949,98.61741564],[4.53696135,0.03794124,98.61659215],[4.53696178,0.03794299,98.61576907],[4.5369622,0.03794474,98.6149464],[4.53696263,0.0379465,98.61412414],[4.53696306,0.03794825,98.61330229],[4.53696348,0.03795,98.61248086],[4.53696391,0.03795175,98.61165984],[4.53696433,0.03795351,98.61083923],[4.53696476,0.03795526,98.61001904],[4.53696518,0.03795701,98.60919927],[4.53696561,0.03795876,98.60837991],[4.53696603,0.03796052,98.60756097],[4.53696646,0.03796227,98.60674245],[4.53696689,0.03796402,98.60592435],[4.53696731,0.03796577,98.60510667],[4.53696774,0.03796753,98.60428941],[4.53696816,0.03796928,98.60347258],[4.53696859,0.03797103,98.60265616],[4.53696901,0.03797278,98.60184017],[4.53696944,0.03797454,98.60102461],[4.53696986,0.03797629,98.60020947],[4.53697029,0.03797804,98.59939476],[4.53697071,0.03797979,98.59858047],[4.53697114,0.03798155,98.59776662],[4.53697156,0.0379833,98.59695319],[4.53697199,0.03798505,98.59614019],[4.53697241,0.0379868,98.59532762],[4.53697284,0.03798856,98.59451549],[4.53697326,0.03799031,98.59370379],[4.53697369,0.03799206,98.59289252],[4.53697411,0.03799381,98.59208168],[4.53697454,0.03799557,98.59127128],[4.53697496,0.03799732,98.59046132],[4.53697539,0.03799907,98.58965179],[4.53697581,0.03800083,98.5888427],[4.53697624,0.03800258,98.58803405],[4.53697666,0.03800433,98.58722584],[4.53697709,0.03800608,98.58641808],[4.53697751,0.03800784,98.58561075],[4.53697794,0.03800959,98.58480386],[4.53697836,0.03801134,98.58399742],[4.53697879,0.03801309,98.58319142],[4.53697921,0.03801485,98.58238587],[4.53697964,0.0380166,98.58158076],[4.53698006,0.03801835,98.5807761],[4.53698049,0.03802011,98.57997188],[4.53698091,0.03802186,98.57916812],[4.53698133,0.03802361,98.5783648],[4.53698176,0.03802536,98.57756194],[4.53698218,0.03802712,98.57675952],[4.53698261,0.03802887,98.57595756],[4.53698303,0.03803062,98.57515605],[4.53698346,0.03803237,98.574355],[4.53698388,0.03803413,98.57355439],[4.5369843,0.03803588,98.57275425],[4.53698473,0.03803763,98.57195456],[4.53698515,0.03803939,98.57115533],[4.53698558,0.03804114,98.57035656],[4.536986,0.03804289,98.56955824],[4.53698643,0.03804464,98.56876039],[4.53698685,0.0380464,98.567963],[4.53698727,0.03804815,98.56716607],[4.5369877,0.0380499,98.5663696],[4.53698812,0.03805166,98.56557359],[4.53698855,0.03805341,98.56477805],[4.53698897,0.03805516,98.56398298],[4.53698939,0.03805692,98.56318837],[4.53698982,0.03805867,98.56239423],[4.53699024,0.03806042,98.56160056],[4.53699067,0.03806217,98.56080736],[4.53699109,0.03806393,98.56001463],[4.53699151,0.03806568,98.55922237],[4.53699194,0.03806743,98.55843058],[4.53699236,0.03806919,98.55763926],[4.53699278,0.03807094,98.55684842],[4.53699321,0.03807269,98.55605805],[4.53699363,0.03807444,98.55526815],[4.53699405,0.0380762,98.55447874],[4.53699448,0.03807795,98.5536898],[4.5369949,0.0380797,98.55290134],[4.53699533,0.03808146,98.55211336],[4.53699575,0.03808321,98.55132586],[4.53699617,0.03808496,98.55053885],[4.5369966,0.03808672,98.54975235],[4.53699702,0.03808847,98.5489664],[4.53699744,0.03809022,98.54818101],[4.53699787,0.03809197,98.54739621],[4.53699829,0.03809373,98.54661202],[4.53699871,0.03809548,98.54582848],[4.53699914,0.03809723,98.54504559],[4.53699956,0.03809899,98.5442634],[4.53699998,0.03810074,98.54348192],[4.53700041,0.03810249,98.54270118],[4.53700083,0.03810425,98.5419212],[4.53700125,0.038106,98.54114202],[4.53700168,0.03810775,98.54036364],[4.5370021,0.0381095,98.5395861],[4.53700253,0.03811126,98.53880943],[4.53700295,0.03811301,98.53803364],[4.53700338,0.03811476,98.53725876],[4.5370038,0.03811652,98.53648482],[4.53700422,0.03811827,98.53571184],[4.53700465,0.03812002,98.53493985],[4.53700507,0.03812177,98.53416886],[4.5370055,0.03812353,98.53339891],[4.53700592,0.03812528,98.53263002],[4.53700635,0.03812703,98.5318622],[4.53700677,0.03812878,98.5310955],[4.5370072,0.03813054,98.53032992],[4.53700763,0.03813229,98.5295655],[4.53700805,0.03813404,98.52880225],[4.53700848,0.03813579,98.52804021],[4.5370089,0.03813755,98.5272794],[4.53700933,0.0381393,98.52651983],[4.53700976,0.03814105,98.52576154],[4.53701018,0.0381428,98.52500455],[4.53701061,0.03814455,98.52424888],[4.53701104,0.03814631,98.52349455],[4.53701147,0.03814806,98.52274159],[4.53701189,0.03814981,98.52199003],[4.53701232,0.03815156,98.52123988],[4.53701275,0.03815331,98.52049116],[4.53701318,0.03815507,98.51974391],[4.53701361,0.03815682,98.51899815],[4.53701404,0.03815857,98.51825389],[4.53701447,0.03816032,98.51751117],[4.5370149,0.03816207,98.51677001],[4.53701533,0.03816382,98.51603043],[4.53701576,0.03816557,98.51529247],[4.53701619,0.03816733,98.51455615],[4.53701662,0.03816908,98.51382151],[4.53701705,0.03817083,98.51308856],[4.53701749,0.03817258,98.51235733],[4.53701792,0.03817433,98.51162786],[4.53701835,0.03817608,98.51090017]],"type":"LineString"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":1,"type":"shoulder","predecessorId":1}},{"geometry":{"coordinates":[[4.53660912,0.03647059,99.38096137],[4.53660931,0.03647132,99.38057892],[4.53660976,0.03647307,99.37967457],[4.53661021,0.03647482,99.37877006],[4.53661065,0.03647657,99.3778654],[4.5366111,0.03647831,99.37696059],[4.53661154,0.03648006,99.37605563],[4.53661199,0.03648181,99.37515054],[4.53661244,0.03648356,99.37424533],[4.53661288,0.0364853,99.37334],[4.53661333,0.03648705,99.37243456],[4.53661378,0.0364888,99.37152902],[4.53661422,0.03649055,99.37062338],[4.53661467,0.03649229,99.36971765],[4.53661512,0.03649404,99.36881184],[4.53661556,0.03649579,99.36790596],[4.53661601,0.03649754,99.36700001],[4.53661646,0.03649928,99.366094],[4.53661691,0.03650103,99.36518795],[4.53661735,0.03650278,99.36428184],[4.5366178,0.03650453,99.36337571],[4.53661825,0.03650627,99.36246954],[4.53661869,0.03650802,99.36156335],[4.53661914,0.03650977,99.36065714],[4.53661959,0.03651152,99.35975093],[4.53662003,0.03651326,99.35884472],[4.53662048,0.03651501,99.35793851],[4.53662093,0.03651676,99.35703232],[4.53662138,0.03651851,99.35612615],[4.53662182,0.03652025,99.35522001],[4.53662227,0.036522,99.35431391],[4.53662272,0.03652375,99.35340785],[4.53662316,0.0365255,99.35250184],[4.53662361,0.03652724,99.35159588],[4.53662406,0.03652899,99.35068999],[4.53662451,0.03653074,99.34978418],[4.53662495,0.03653248,99.34887844],[4.5366254,0.03653423,99.34797279],[4.53662585,0.03653598,99.34706723],[4.53662629,0.03653773,99.34616178],[4.53662674,0.03653947,99.34525643],[4.53662719,0.03654122,99.34435119],[4.53662764,0.03654297,99.34344608],[4.53662808,0.03654472,99.34254109],[4.53662853,0.03654646,99.34163625],[4.53662898,0.03654821,99.34073154],[4.53662943,0.03654996,99.33982699],[4.53662987,0.03655171,99.33892259],[4.53663032,0.03655345,99.33801836],[4.53663077,0.0365552,99.3371143],[4.53663121,0.03655695,99.33621042],[4.53663166,0.03655869,99.33530672],[4.53663211,0.03656044,99.33440322],[4.53663256,0.03656219,99.33349991],[4.536633,0.03656394,99.33259681],[4.53663345,0.03656568,99.33169393],[4.5366339,0.03656743,99.33079127],[4.53663434,0.03656918,99.32988883],[4.53663479,0.03657093,99.32898663],[4.53663524,0.03657267,99.32808467],[4.53663569,0.03657442,99.32718296],[4.53663613,0.03657617,99.3262815],[4.53663658,0.03657792,99.32538031],[4.53663703,0.03657966,99.32447939],[4.53663747,0.03658141,99.32357874],[4.53663792,0.03658316,99.32267838],[4.53663837,0.0365849,99.32177831],[4.53663882,0.03658665,99.32087854],[4.53663926,0.0365884,99.31997907],[4.53663971,0.03659015,99.31907992],[4.53664016,0.03659189,99.31818108],[4.5366406,0.03659364,99.31728257],[4.53664105,0.03659539,99.31638439],[4.5366415,0.03659714,99.31548653],[4.53664195,0.03659888,99.31458896],[4.53664239,0.03660063,99.31369165],[4.53664284,0.03660238,99.31279457],[4.53664329,0.03660413,99.31189768],[4.53664373,0.03660587,99.31100096],[4.53664418,0.03660762,99.31010436],[4.53664463,0.03660937,99.30920787],[4.53664507,0.03661112,99.30831145],[4.53664552,0.03661286,99.30741506],[4.53664597,0.03661461,99.30651867],[4.53664642,0.03661636,99.30562226],[4.53664686,0.03661811,99.30472579],[4.53664731,0.03661985,99.30382924],[4.53664775,0.0366216,99.30293256],[4.5366482,0.03662335,99.30203572],[4.53664865,0.0366251,99.30113871],[4.53664909,0.03662684,99.30024148],[4.53664954,0.03662859,99.299344],[4.53664998,0.03663034,99.29844625],[4.53665043,0.03663209,99.29754819],[4.53665088,0.03663383,99.29664979],[4.53665132,0.03663558,99.29575102],[4.53665177,0.03663733,99.29485188],[4.53665221,0.03663908,99.29395237],[4.53665265,0.03664083,99.29305249],[4.5366531,0.03664257,99.29215225],[4.53665354,0.03664432,99.29125165],[4.53665399,0.03664607,99.29035069],[4.53665443,0.03664782,99.28944939],[4.53665487,0.03664957,99.28854774],[4.53665532,0.03665132,99.28764574],[4.53665576,0.03665306,99.28674341],[4.5366562,0.03665481,99.28584074],[4.53665665,0.03665656,99.28493775],[4.53665709,0.03665831,99.28403442],[4.53665753,0.03666006,99.28313078],[4.53665797,0.03666181,99.28222682],[4.53665841,0.03666355,99.28132254],[4.53665886,0.0366653,99.28041795],[4.5366593,0.03666705,99.27951305],[4.53665974,0.0366688,99.27860786],[4.53666018,0.03667055,99.27770236],[4.53666062,0.0366723,99.27679657],[4.53666106,0.03667405,99.27589049],[4.5366615,0.0366758,99.27498412],[4.53666195,0.03667755,99.27407747],[4.53666239,0.03667929,99.27317054],[4.53666283,0.03668104,99.27226334],[4.53666327,0.03668279,99.27135586],[4.53666371,0.03668454,99.27044812],[4.53666415,0.03668629,99.26954012],[4.53666459,0.03668804,99.26863185],[4.53666503,0.03668979,99.26772333],[4.53666547,0.03669154,99.26681456],[4.53666591,0.03669329,99.26590554],[4.53666634,0.03669504,99.26499627],[4.53666678,0.03669679,99.26408676],[4.53666722,0.03669854,99.26317702],[4.53666766,0.03670029,99.26226705],[4.5366681,0.03670204,99.26135684],[4.53666854,0.03670378,99.26044642],[4.53666898,0.03670553,99.25953577],[4.53666942,0.03670728,99.2586249],[4.53666986,0.03670903,99.25771382],[4.53667029,0.03671078,99.25680253],[4.53667073,0.03671253,99.25589103],[4.53667117,0.03671428,99.25497933],[4.53667161,0.03671603,99.25406743],[4.53667205,0.03671778,99.25315534],[4.53667249,0.03671953,99.25224306],[4.53667292,0.03672128,99.25133058],[4.53667336,0.03672303,99.25041793],[4.5366738,0.03672478,99.24950509],[4.53667424,0.03672653,99.24859208],[4.53667468,0.03672828,99.2476789],[4.53667511,0.03673003,99.24676555],[4.53667555,0.03673178,99.24585203],[4.53667599,0.03673353,99.24493835],[4.53667643,0.03673528,99.24402447],[4.53667687,0.03673703,99.24311039],[4.53667731,0.03673878,99.24219607],[4.53667774,0.03674053,99.24128149],[4.53667818,0.03674228,99.24036664],[4.53667862,0.03674403,99.2394515],[4.53667906,0.03674578,99.23853603],[4.5366795,0.03674752,99.23762022],[4.53667994,0.03674927,99.23670405],[4.53668038,0.03675102,99.23578749],[4.53668081,0.03675277,99.23487052],[4.53668125,0.03675452,99.23395313],[4.53668169,0.03675627,99.23303528],[4.53668213,0.03675802,99.23211697],[4.53668257,0.03675977,99.23119816],[4.53668301,0.03676152,99.23027884],[4.53668345,0.03676327,99.22935898],[4.53668388,0.03676502,99.22843856],[4.53668432,0.03676677,99.22751756],[4.53668476,0.03676852,99.22659596],[4.5366852,0.03677027,99.22567374],[4.53668564,0.03677202,99.22475087],[4.53668608,0.03677377,99.22382734],[4.53668652,0.03677552,99.22290312],[4.53668695,0.03677727,99.22197819],[4.53668739,0.03677902,99.22105253],[4.53668783,0.03678077,99.22012613],[4.53668827,0.03678252,99.21919894],[4.53668871,0.03678426,99.21827097],[4.53668915,0.03678601,99.21734218],[4.53668959,0.03678776,99.21641255],[4.53669003,0.03678951,99.21548206],[4.53669046,0.03679126,99.2145507],[4.5366909,0.03679301,99.21361843],[4.53669134,0.03679476,99.21268524],[4.53669178,0.03679651,99.21175111],[4.53669222,0.03679826,99.21081602],[4.53669266,0.03680001,99.20987998],[4.53669309,0.03680176,99.20894302],[4.53669353,0.03680351,99.20800516],[4.53669397,0.03680526,99.20706642],[4.53669441,0.03680701,99.20612683],[4.53669485,0.03680876,99.20518639],[4.53669529,0.03681051,99.20424513],[4.53669573,0.03681226,99.20330308],[4.53669617,0.03681401,99.20236025],[4.5366966,0.03681576,99.20141667],[4.53669704,0.03681751,99.20047236],[4.53669748,0.03681926,99.19952733],[4.53669792,0.036821,99.19858161],[4.53669836,0.03682275,99.19763522],[4.5366988,0.0368245,99.19668817],[4.53669924,0.03682625,99.19574051],[4.53669968,0.036828,99.19479223],[4.53670012,0.03682975,99.19384338],[4.53670056,0.0368315,99.19289397],[4.536701,0.03683325,99.19194403],[4.53670144,0.036835,99.19099358],[4.53670188,0.03683675,99.19004265],[4.53670232,0.0368385,99.18909126],[4.53670275,0.03684025,99.18813943],[4.53670319,0.036842,99.18718719],[4.53670363,0.03684375,99.18623456],[4.53670407,0.03684549,99.18528156],[4.53670451,0.03684724,99.18432822],[4.53670495,0.03684899,99.18337456],[4.53670539,0.03685074,99.18242061],[4.53670583,0.03685249,99.18146639],[4.53670627,0.03685424,99.18051192],[4.53670671,0.03685599,99.17955723],[4.53670716,0.03685774,99.17860234],[4.5367076,0.03685949,99.17764727],[4.53670804,0.03686124,99.17669205],[4.53670848,0.03686299,99.1757367],[4.53670892,0.03686473,99.17478124],[4.53670936,0.03686648,99.1738257],[4.5367098,0.03686823,99.1728701],[4.53671024,0.03686998,99.17191447],[4.53671068,0.03687173,99.17095883],[4.53671112,0.03687348,99.1700032],[4.53671156,0.03687523,99.1690476],[4.536712,0.03687698,99.16809206],[4.53671244,0.03687873,99.16713661],[4.53671289,0.03688048,99.16618126],[4.53671333,0.03688222,99.16522604],[4.53671377,0.03688397,99.16427097],[4.53671421,0.03688572,99.16331608],[4.53671465,0.03688747,99.16236139],[4.53671509,0.03688922,99.16140692],[4.53671553,0.03689097,99.1604527],[4.53671598,0.03689272,99.15949875],[4.53671642,0.03689447,99.1585451],[4.53671686,0.03689621,99.15759175],[4.5367173,0.03689796,99.15663875],[4.53671774,0.03689971,99.15568608],[4.53671819,0.03690146,99.15473375],[4.53671863,0.03690321,99.15378174],[4.53671907,0.03690496,99.15283005],[4.53671951,0.03690671,99.15187869],[4.53671995,0.03690845,99.15092764],[4.5367204,0.0369102,99.14997691],[4.53672084,0.03691195,99.14902648],[4.53672128,0.0369137,99.14807635],[4.53672172,0.03691545,99.14712653],[4.53672217,0.0369172,99.146177],[4.53672261,0.03691895,99.14522776],[4.53672305,0.03692069,99.14427881],[4.53672349,0.03692244,99.14333015],[4.53672394,0.03692419,99.14238176],[4.53672438,0.03692594,99.14143365],[4.53672482,0.03692769,99.14048581],[4.53672526,0.03692944,99.13953824],[4.53672571,0.03693119,99.13859094],[4.53672615,0.03693293,99.13764389],[4.53672659,0.03693468,99.1366971],[4.53672703,0.03693643,99.13575056],[4.53672748,0.03693818,99.13480427],[4.53672792,0.03693993,99.13385822],[4.53672836,0.03694168,99.13291241],[4.5367288,0.03694343,99.13196684],[4.53672925,0.03694517,99.1310215],[4.53672969,0.03694692,99.13007639],[4.53673013,0.03694867,99.1291315],[4.53673057,0.03695042,99.12818683],[4.53673102,0.03695217,99.12724238],[4.53673146,0.03695392,99.12629814],[4.5367319,0.03695567,99.12535411],[4.53673234,0.03695741,99.12441029],[4.53673278,0.03695916,99.12346666],[4.53673323,0.03696091,99.12252324],[4.53673367,0.03696266,99.12158],[4.53673411,0.03696441,99.12063696],[4.53673455,0.03696616,99.1196941],[4.53673499,0.03696791,99.11875142],[4.53673544,0.03696965,99.11780892],[4.53673588,0.0369714,99.11686659],[4.53673632,0.03697315,99.11592443],[4.53673676,0.0369749,99.11498244],[4.5367372,0.03697665,99.11404061],[4.53673764,0.0369784,99.11309893],[4.53673808,0.03698015,99.11215741],[4.53673853,0.0369819,99.11121604],[4.53673897,0.03698365,99.11027482],[4.53673941,0.03698539,99.10933374],[4.53673985,0.03698714,99.1083928],[4.53674029,0.03698889,99.10745199],[4.53674073,0.03699064,99.10651132],[4.53674117,0.03699239,99.10557077],[4.53674161,0.03699414,99.10463034],[4.53674205,0.03699589,99.10369004],[4.53674249,0.03699764,99.10274985],[4.53674293,0.03699939,99.10180977],[4.53674337,0.03700114,99.1008698],[4.53674381,0.03700288,99.09992994],[4.53674425,0.03700463,99.09899018],[4.53674469,0.03700638,99.09805053],[4.53674513,0.03700813,99.09711099],[4.53674557,0.03700988,99.09617155],[4.53674601,0.03701163,99.09523221],[4.53674645,0.03701338,99.09429297],[4.53674689,0.03701513,99.09335384],[4.53674732,0.03701688,99.09241481],[4.53674776,0.03701863,99.09147587],[4.5367482,0.03702038,99.09053704],[4.53674864,0.03702213,99.0895983],[4.53674908,0.03702388,99.08865966],[4.53674952,0.03702563,99.08772112],[4.53674995,0.03702738,99.08678267],[4.53675039,0.03702913,99.08584432],[4.53675083,0.03703088,99.08490605],[4.53675126,0.03703263,99.08396789],[4.5367517,0.03703438,99.08302981],[4.53675214,0.03703613,99.08209182],[4.53675258,0.03703788,99.08115393],[4.53675301,0.03703963,99.08021612],[4.53675345,0.03704138,99.0792784],[4.53675388,0.03704313,99.07834076],[4.53675432,0.03704488,99.07740321],[4.53675476,0.03704663,99.07646575],[4.53675519,0.03704838,99.07552837],[4.53675563,0.03705013,99.07459108],[4.53675606,0.03705188,99.07365386],[4.5367565,0.03705363,99.07271673],[4.53675693,0.03705538,99.07177968],[4.53675737,0.03705713,99.07084271],[4.5367578,0.03705888,99.06990582],[4.53675824,0.03706063,99.06896901],[4.53675867,0.03706238,99.06803228],[4.53675911,0.03706413,99.06709564],[4.53675954,0.03706588,99.06615907],[4.53675998,0.03706763,99.06522258],[4.53676041,0.03706938,99.06428617],[4.53676084,0.03707113,99.06334984],[4.53676128,0.03707289,99.06241358],[4.53676171,0.03707464,99.06147741],[4.53676215,0.03707639,99.06054131],[4.53676258,0.03707814,99.05960529],[4.53676301,0.03707989,99.05866935],[4.53676345,0.03708164,99.05773348],[4.53676388,0.03708339,99.05679769],[4.53676431,0.03708514,99.05586198],[4.53676475,0.03708689,99.05492635],[4.53676518,0.03708864,99.05399079],[4.53676561,0.03709039,99.0530553],[4.53676604,0.03709214,99.05211989],[4.53676648,0.0370939,99.05118456],[4.53676691,0.03709565,99.0502493],[4.53676734,0.0370974,99.04931411],[4.53676778,0.03709915,99.048379],[4.53676821,0.0371009,99.04744396],[4.53676864,0.03710265,99.046509],[4.53676907,0.0371044,99.0455741],[4.53676951,0.03710615,99.04463929],[4.53676994,0.0371079,99.04370454],[4.53677037,0.03710966,99.04276987],[4.5367708,0.03711141,99.04183526],[4.53677123,0.03711316,99.04090073],[4.53677167,0.03711491,99.03996627],[4.5367721,0.03711666,99.03903189],[4.53677253,0.03711841,99.03809757],[4.53677296,0.03712016,99.03716332],[4.5367734,0.03712191,99.03622915],[4.53677383,0.03712366,99.03529504],[4.53677426,0.03712542,99.034361],[4.53677469,0.03712717,99.03342703],[4.53677512,0.03712892,99.03249314],[4.53677556,0.03713067,99.03155931],[4.53677599,0.03713242,99.03062554],[4.53677642,0.03713417,99.02969185],[4.53677685,0.03713592,99.02875822],[4.53677728,0.03713767,99.02782467],[4.53677772,0.03713942,99.02689117],[4.53677815,0.03714118,99.02595775],[4.53677858,0.03714293,99.02502439],[4.53677901,0.03714468,99.0240911],[4.53677944,0.03714643,99.02315787],[4.53677988,0.03714818,99.02222471],[4.53678031,0.03714993,99.02129162],[4.53678074,0.03715168,99.02035859],[4.53678117,0.03715343,99.01942562],[4.53678161,0.03715519,99.01849272],[4.53678204,0.03715694,99.01755988],[4.53678247,0.03715869,99.01662711],[4.5367829,0.03716044,99.01569439],[4.53678334,0.03716219,99.01476173],[4.53678377,0.03716394,99.01382912],[4.5367842,0.03716569,99.01289654],[4.53678463,0.03716744,99.01196401],[4.53678507,0.03716919,99.01103151],[4.5367855,0.03717094,99.01009903],[4.53678593,0.0371727,99.00916658],[4.53678636,0.03717445,99.00823414],[4.5367868,0.0371762,99.00730171],[4.53678723,0.03717795,99.00636929],[4.53678766,0.0371797,99.00543686],[4.5367881,0.03718145,99.00450444],[4.53678853,0.0371832,99.003572],[4.53678896,0.03718495,99.00263955],[4.53678939,0.0371867,99.00170707],[4.53678983,0.03718845,99.00077457],[4.53679026,0.0371902,98.99984204],[4.53679069,0.03719196,98.99890947],[4.53679113,0.03719371,98.99797685],[4.53679156,0.03719546,98.99704419],[4.536792,0.03719721,98.99611148],[4.53679243,0.03719896,98.99517871],[4.53679286,0.03720071,98.99424587],[4.5367933,0.03720246,98.99331296],[4.53679373,0.03720421,98.99237998],[4.53679416,0.03720596,98.99144692],[4.5367946,0.03720771,98.99051377],[4.53679503,0.03720946,98.98958053],[4.53679547,0.03721121,98.9886472],[4.5367959,0.03721296,98.98771376],[4.53679634,0.03721471,98.98678021],[4.53679677,0.03721647,98.98584655],[4.53679721,0.03721822,98.98491278],[4.53679764,0.03721997,98.98397888],[4.53679807,0.03722172,98.98304484],[4.53679851,0.03722347,98.98211068],[4.53679894,0.03722522,98.98117637],[4.53679938,0.03722697,98.98024192],[4.53679981,0.03722872,98.97930732],[4.53680025,0.03723047,98.97837255],[4.53680068,0.03723222,98.97743763],[4.53680112,0.03723397,98.97650254],[4.53680155,0.03723572,98.97556727],[4.53680199,0.03723747,98.97463183],[4.53680243,0.03723922,98.9736962],[4.53680286,0.03724097,98.97276038],[4.5368033,0.03724272,98.97182436],[4.53680373,0.03724447,98.97088815],[4.53680417,0.03724622,98.96995172],[4.5368046,0.03724797,98.96901509],[4.53680504,0.03724972,98.96807823],[4.53680547,0.03725147,98.96714115],[4.53680591,0.03725322,98.96620384],[4.53680634,0.03725497,98.9652663],[4.53680678,0.03725672,98.96432851],[4.53680721,0.03725847,98.96339048],[4.53680765,0.03726023,98.9624522],[4.53680808,0.03726198,98.96151365],[4.53680852,0.03726373,98.96057485],[4.53680895,0.03726548,98.95963577],[4.53680939,0.03726723,98.95869642],[4.53680982,0.03726898,98.95775679],[4.53681026,0.03727073,98.95681689],[4.53681069,0.03727248,98.95587672],[4.53681113,0.03727423,98.9549363],[4.53681156,0.03727598,98.95399565],[4.536812,0.03727773,98.95305478],[4.53681243,0.03727948,98.9521137],[4.53681287,0.03728123,98.95117243],[4.5368133,0.03728298,98.95023099],[4.53681373,0.03728473,98.94928938],[4.53681417,0.03728648,98.94834762],[4.5368146,0.03728823,98.94740572],[4.53681504,0.03728998,98.9464637],[4.53681547,0.03729173,98.94552158],[4.53681591,0.03729349,98.94457936],[4.53681634,0.03729524,98.94363707],[4.53681677,0.03729699,98.94269471],[4.53681721,0.03729874,98.9417523],[4.53681764,0.03730049,98.94080986],[4.53681808,0.03730224,98.93986739],[4.53681851,0.03730399,98.93892492],[4.53681894,0.03730574,98.93798246],[4.53681938,0.03730749,98.93704001],[4.53681981,0.03730924,98.93609761],[4.53682025,0.03731099,98.93515525],[4.53682068,0.03731274,98.93421296],[4.53682111,0.03731449,98.93327074],[4.53682155,0.03731624,98.93232862],[4.53682198,0.03731799,98.93138661],[4.53682242,0.03731975,98.93044472],[4.53682285,0.0373215,98.92950297],[4.53682328,0.03732325,98.92856137],[4.53682372,0.037325,98.92761994],[4.53682415,0.03732675,98.92667868],[4.53682458,0.0373285,98.92573762],[4.53682502,0.03733025,98.92479677],[4.53682545,0.037332,98.92385614],[4.53682589,0.03733375,98.92291576],[4.53682632,0.0373355,98.92197562],[4.53682675,0.03733725,98.92103575],[4.53682719,0.037339,98.92009617],[4.53682762,0.03734075,98.91915688],[4.53682805,0.03734251,98.9182179],[4.53682849,0.03734426,98.91727925],[4.53682892,0.03734601,98.91634094],[4.53682936,0.03734776,98.91540299],[4.53682979,0.03734951,98.91446541],[4.53683022,0.03735126,98.91352821],[4.53683066,0.03735301,98.91259141],[4.53683109,0.03735476,98.91165503],[4.53683152,0.03735651,98.91071907],[4.53683196,0.03735826,98.90978355],[4.53683239,0.03736001,98.90884848],[4.53683283,0.03736176,98.90791385],[4.53683326,0.03736351,98.90697967],[4.53683369,0.03736526,98.90604595],[4.53683413,0.03736701,98.90511268],[4.53683456,0.03736877,98.90417989],[4.536835,0.03737052,98.90324757],[4.53683543,0.03737227,98.90231572],[4.53683586,0.03737402,98.90138435],[4.5368363,0.03737577,98.90045347],[4.53683673,0.03737752,98.89952308],[4.53683717,0.03737927,98.89859318],[4.5368376,0.03738102,98.89766378],[4.53683803,0.03738277,98.89673489],[4.53683847,0.03738452,98.89580651],[4.5368389,0.03738627,98.89487865],[4.53683934,0.03738802,98.8939513],[4.53683977,0.03738977,98.89302448],[4.53684021,0.03739152,98.89209819],[4.53684064,0.03739328,98.89117244],[4.53684107,0.03739503,98.89024722],[4.53684151,0.03739678,98.88932255],[4.53684194,0.03739853,98.88839843],[4.53684237,0.03740028,98.88747486],[4.53684281,0.03740203,98.88655185],[4.53684324,0.03740378,98.88562941],[4.53684368,0.03740553,98.88470754],[4.53684411,0.03740728,98.88378622],[4.53684454,0.03740903,98.88286545],[4.53684498,0.03741078,98.88194519],[4.53684541,0.03741253,98.88102542],[4.53684585,0.03741428,98.88010613],[4.53684628,0.03741603,98.87918728],[4.53684671,0.03741778,98.87826886],[4.53684715,0.03741953,98.87735084],[4.53684758,0.03742128,98.8764332],[4.53684801,0.03742303,98.87551592],[4.53684845,0.03742478,98.87459898],[4.53684888,0.03742654,98.87368234],[4.53684932,0.03742829,98.872766],[4.53684975,0.03743004,98.87184992],[4.53685018,0.03743179,98.87093409],[4.53685062,0.03743354,98.87001848],[4.53685105,0.03743529,98.86910306],[4.53685148,0.03743704,98.86818782],[4.53685192,0.03743879,98.86727273],[4.53685235,0.03744054,98.86635777],[4.53685278,0.03744229,98.86544293],[4.53685321,0.03744404,98.86452818],[4.53685365,0.03744579,98.86361353],[4.53685408,0.03744755,98.86269897],[4.53685451,0.0374493,98.8617845],[4.53685495,0.03745105,98.8608701],[4.53685538,0.0374528,98.85995577],[4.53685581,0.03745455,98.85904151],[4.53685624,0.0374563,98.8581273],[4.53685668,0.03745805,98.85721314],[4.53685711,0.0374598,98.85629903],[4.53685754,0.03746155,98.85538495],[4.53685797,0.03746331,98.8544709],[4.5368584,0.03746506,98.85355688],[4.53685884,0.03746681,98.85264288],[4.53685927,0.03746856,98.85172888],[4.5368597,0.03747031,98.85081489],[4.53686013,0.03747206,98.84990089],[4.53686056,0.03747381,98.84898689],[4.53686099,0.03747556,98.84807287],[4.53686143,0.03747732,98.84715882],[4.53686186,0.03747907,98.84624475],[4.53686229,0.03748082,98.84533063],[4.53686272,0.03748257,98.84441648],[4.53686315,0.03748432,98.84350227],[4.53686358,0.03748607,98.84258801],[4.53686401,0.03748782,98.84167368],[4.53686445,0.03748958,98.84075928],[4.53686488,0.03749133,98.83984481],[4.53686531,0.03749308,98.83893024],[4.53686574,0.03749483,98.83801559],[4.53686617,0.03749658,98.83710084],[4.5368666,0.03749833,98.83618599],[4.53686703,0.03750008,98.83527102],[4.53686746,0.03750183,98.83435593],[4.53686789,0.03750359,98.83344072],[4.53686833,0.03750534,98.83252537],[4.53686876,0.03750709,98.83160989],[4.53686919,0.03750884,98.83069426],[4.53686962,0.03751059,98.82977847],[4.53687005,0.03751234,98.82886253],[4.53687048,0.0375141,98.82794642],[4.53687091,0.03751585,98.82703013],[4.53687134,0.0375176,98.82611366],[4.53687177,0.03751935,98.82519701],[4.5368722,0.0375211,98.82428015],[4.53687263,0.03752285,98.8233631],[4.53687306,0.0375246,98.82244584],[4.53687349,0.03752636,98.82152836],[4.53687392,0.03752811,98.82061065],[4.53687435,0.03752986,98.81969272],[4.53687478,0.03753161,98.81877455],[4.53687521,0.03753336,98.81785614],[4.53687565,0.03753511,98.8169375],[4.53687608,0.03753687,98.81601866],[4.53687651,0.03753862,98.81509963],[4.53687694,0.03754037,98.81418043],[4.53687737,0.03754212,98.81326108],[4.5368778,0.03754387,98.8123416],[4.53687823,0.03754562,98.811422],[4.53687866,0.03754737,98.81050232],[4.53687909,0.03754913,98.80958256],[4.53687952,0.03755088,98.80866274],[4.53687995,0.03755263,98.80774289],[4.53688038,0.03755438,98.80682303],[4.53688081,0.03755613,98.80590316],[4.53688124,0.03755788,98.80498332],[4.53688167,0.03755964,98.80406352],[4.5368821,0.03756139,98.80314378],[4.53688253,0.03756314,98.80222412],[4.53688296,0.03756489,98.80130456],[4.53688339,0.03756664,98.80038512],[4.53688382,0.03756839,98.79946581],[4.53688426,0.03757014,98.79854666],[4.53688469,0.0375719,98.79762769],[4.53688512,0.03757365,98.79670891],[4.53688555,0.0375754,98.79579035],[4.53688598,0.03757715,98.79487202],[4.53688641,0.0375789,98.79395395],[4.53688684,0.03758065,98.79303615],[4.53688727,0.0375824,98.79211864],[4.5368877,0.03758416,98.79120145],[4.53688813,0.03758591,98.79028459],[4.53688857,0.03758766,98.78936806],[4.536889,0.03758941,98.78845189],[4.53688943,0.03759116,98.78753606],[4.53688986,0.03759291,98.78662059],[4.53689029,0.03759466,98.78570548],[4.53689072,0.03759641,98.78479075],[4.53689116,0.03759817,98.78387638],[4.53689159,0.03759992,98.78296239],[4.53689202,0.03760167,98.78204879],[4.53689245,0.03760342,98.78113558],[4.53689288,0.03760517,98.78022277],[4.53689331,0.03760692,98.77931035],[4.53689375,0.03760867,98.77839834],[4.53689418,0.03761042,98.77748675],[4.53689461,0.03761218,98.77657557],[4.53689504,0.03761393,98.77566482],[4.53689547,0.03761568,98.77475449],[4.53689591,0.03761743,98.7738446],[4.53689634,0.03761918,98.77293515],[4.53689677,0.03762093,98.77202615],[4.5368972,0.03762268,98.77111759],[4.53689763,0.03762443,98.7702095],[4.53689807,0.03762618,98.76930187],[4.5368985,0.03762794,98.7683947],[4.53689893,0.03762969,98.76748801],[4.53689936,0.03763144,98.7665818],[4.53689979,0.03763319,98.76567607],[4.53690023,0.03763494,98.76477083],[4.53690066,0.03763669,98.76386609],[4.53690109,0.03763844,98.76296186],[4.53690152,0.03764019,98.76205812],[4.53690195,0.03764194,98.76115491],[4.53690239,0.0376437,98.76025221],[4.53690282,0.03764545,98.75935004],[4.53690325,0.0376472,98.75844839],[4.53690368,0.03764895,98.75754729],[4.53690412,0.0376507,98.75664672],[4.53690455,0.03765245,98.75574671],[4.53690498,0.0376542,98.75484724],[4.53690541,0.03765595,98.75394834],[4.53690584,0.03765771,98.75305],[4.53690628,0.03765946,98.75215223],[4.53690671,0.03766121,98.75125503],[4.53690714,0.03766296,98.75035842],[4.53690757,0.03766471,98.74946239],[4.536908,0.03766646,98.74856696],[4.53690844,0.03766821,98.74767213],[4.53690887,0.03766996,98.7467779],[4.5369093,0.03767171,98.74588428],[4.53690973,0.03767347,98.74499128],[4.53691016,0.03767522,98.7440989],[4.53691059,0.03767697,98.74320715],[4.53691103,0.03767872,98.74231603],[4.53691146,0.03768047,98.74142555],[4.53691189,0.03768222,98.74053572],[4.53691232,0.03768397,98.73964653],[4.53691275,0.03768572,98.73875801],[4.53691319,0.03768747,98.73787014],[4.53691362,0.03768923,98.73698295],[4.53691405,0.03769098,98.73609643],[4.53691448,0.03769273,98.73521058],[4.53691491,0.03769448,98.73432543],[4.53691534,0.03769623,98.73344096],[4.53691578,0.03769798,98.73255719],[4.53691621,0.03769973,98.73167413],[4.53691664,0.03770148,98.73079177],[4.53691707,0.03770324,98.72991013],[4.5369175,0.03770499,98.72902921],[4.53691793,0.03770674,98.72814902],[4.53691836,0.03770849,98.72726956],[4.5369188,0.03771024,98.72639083],[4.53691923,0.03771199,98.72551285],[4.53691966,0.03771374,98.72463562],[4.53692009,0.03771549,98.72375915],[4.53692052,0.03771725,98.72288343],[4.53692095,0.037719,98.72200848],[4.53692138,0.03772075,98.72113431],[4.53692181,0.0377225,98.72026092],[4.53692225,0.03772425,98.71938831],[4.53692268,0.037726,98.71851649],[4.53692311,0.03772775,98.71764546],[4.53692354,0.03772951,98.71677524],[4.53692397,0.03773126,98.71590582],[4.5369244,0.03773301,98.71503717],[4.53692483,0.03773476,98.71416929],[4.53692526,0.03773651,98.71330215],[4.53692569,0.03773826,98.71243574],[4.53692612,0.03774001,98.71157005],[4.53692655,0.03774177,98.71070505],[4.53692698,0.03774352,98.70984073],[4.53692741,0.03774527,98.70897707],[4.53692784,0.03774702,98.70811406],[4.53692827,0.03774877,98.70725169],[4.5369287,0.03775052,98.70638997],[4.53692913,0.03775228,98.70552888],[4.53692956,0.03775403,98.70466841],[4.53692999,0.03775578,98.70380857],[4.53693042,0.03775753,98.70294934],[4.53693085,0.03775928,98.70209072],[4.53693128,0.03776103,98.70123269],[4.53693171,0.03776279,98.70037527],[4.53693214,0.03776454,98.69951843],[4.53693257,0.03776629,98.69866217],[4.536933,0.03776804,98.69780649],[4.53693343,0.03776979,98.69695137],[4.53693386,0.03777154,98.69609682],[4.53693429,0.0377733,98.69524283],[4.53693472,0.03777505,98.69438938],[4.53693515,0.0377768,98.69353648],[4.53693558,0.03777855,98.69268412],[4.536936,0.0377803,98.69183228],[4.53693643,0.03778206,98.69098097],[4.53693686,0.03778381,98.69013018],[4.53693729,0.03778556,98.6892799],[4.53693772,0.03778731,98.68843012],[4.53693815,0.03778906,98.68758084],[4.53693858,0.03779081,98.68673205],[4.53693901,0.03779257,98.68588375],[4.53693943,0.03779432,98.68503593],[4.53693986,0.03779607,98.68418857],[4.53694029,0.03779782,98.68334169],[4.53694072,0.03779957,98.68249526],[4.53694115,0.03780133,98.68164928],[4.53694158,0.03780308,98.68080375],[4.536942,0.03780483,98.67995866],[4.53694243,0.03780658,98.679114],[4.53694286,0.03780833,98.67826977],[4.53694329,0.03781009,98.67742595],[4.53694372,0.03781184,98.67658255],[4.53694415,0.03781359,98.67573956],[4.53694457,0.03781534,98.67489696],[4.536945,0.0378171,98.67405476],[4.53694543,0.03781885,98.67321294],[4.53694586,0.0378206,98.67237151],[4.53694629,0.03782235,98.67153045],[4.53694671,0.0378241,98.67068975],[4.53694714,0.03782586,98.66984942],[4.53694757,0.03782761,98.66900943],[4.536948,0.03782936,98.6681698],[4.53694843,0.03783111,98.6673305],[4.53694885,0.03783286,98.66649154],[4.53694928,0.03783462,98.66565291],[4.53694971,0.03783637,98.66481459],[4.53695014,0.03783812,98.66397659],[4.53695057,0.03783987,98.66313889],[4.53695099,0.03784162,98.6623015],[4.53695142,0.03784338,98.6614644],[4.53695185,0.03784513,98.66062759],[4.53695228,0.03784688,98.65979105],[4.53695271,0.03784863,98.65895479],[4.53695313,0.03785038,98.6581188],[4.53695356,0.03785214,98.65728307],[4.53695399,0.03785389,98.65644759],[4.53695442,0.03785564,98.65561235],[4.53695485,0.03785739,98.65477736],[4.53695528,0.03785914,98.6539426],[4.5369557,0.0378609,98.65310807],[4.53695613,0.03786265,98.65227376],[4.53695656,0.0378644,98.65143966],[4.53695699,0.03786615,98.65060577],[4.53695742,0.0378679,98.64977208],[4.53695785,0.03786966,98.64893858],[4.53695827,0.03787141,98.64810527],[4.5369587,0.03787316,98.64727214],[4.53695913,0.03787491,98.64643918],[4.53695956,0.03787666,98.64560639],[4.53695999,0.03787842,98.64477376],[4.53696042,0.03788017,98.64394129],[4.53696085,0.03788192,98.64310896],[4.53696127,0.03788367,98.64227677],[4.5369617,0.03788542,98.64144471],[4.53696213,0.03788718,98.64061278],[4.53696256,0.03788893,98.63978099],[4.53696299,0.03789068,98.63894935],[4.53696342,0.03789243,98.63811787],[4.53696385,0.03789418,98.63728656],[4.53696427,0.03789594,98.63645544],[4.5369647,0.03789769,98.63562451],[4.53696513,0.03789944,98.63479378],[4.53696556,0.03790119,98.63396327],[4.53696599,0.03790294,98.63313298],[4.53696642,0.03790469,98.63230294],[4.53696685,0.03790645,98.63147314],[4.53696728,0.0379082,98.63064361],[4.53696771,0.03790995,98.62981435],[4.53696813,0.0379117,98.62898537],[4.53696856,0.03791345,98.62815669],[4.53696899,0.03791521,98.62732831],[4.53696942,0.03791696,98.62650025],[4.53696985,0.03791871,98.62567252],[4.53697028,0.03792046,98.62484513],[4.53697071,0.03792221,98.62401809],[4.53697114,0.03792396,98.62319141],[4.53697157,0.03792572,98.62236511],[4.536972,0.03792747,98.62153919],[4.53697243,0.03792922,98.62071367],[4.53697286,0.03793097,98.61988855],[4.53697329,0.03793272,98.61906384],[4.53697372,0.03793447,98.61823953],[4.53697415,0.03793623,98.61741564],[4.53697458,0.03793798,98.61659215],[4.536975,0.03793973,98.61576907],[4.53697543,0.03794148,98.6149464],[4.53697586,0.03794323,98.61412414],[4.53697629,0.03794498,98.61330229],[4.53697672,0.03794674,98.61248086],[4.53697715,0.03794849,98.61165984],[4.53697758,0.03795024,98.61083923],[4.53697801,0.03795199,98.61001904],[4.53697844,0.03795374,98.60919927],[4.53697887,0.03795549,98.60837991],[4.5369793,0.03795725,98.60756097],[4.53697973,0.037959,98.60674245],[4.53698016,0.03796075,98.60592435],[4.53698059,0.0379625,98.60510667],[4.53698102,0.03796425,98.60428941],[4.53698146,0.037966,98.60347258],[4.53698189,0.03796775,98.60265616],[4.53698232,0.03796951,98.60184017],[4.53698275,0.03797126,98.60102461],[4.53698318,0.03797301,98.60020947],[4.53698361,0.03797476,98.59939476],[4.53698404,0.03797651,98.59858047],[4.53698447,0.03797826,98.59776662],[4.5369849,0.03798002,98.59695319],[4.53698533,0.03798177,98.59614019],[4.53698576,0.03798352,98.59532762],[4.53698619,0.03798527,98.59451549],[4.53698662,0.03798702,98.59370379],[4.53698705,0.03798877,98.59289252],[4.53698748,0.03799052,98.59208168],[4.53698791,0.03799228,98.59127128],[4.53698834,0.03799403,98.59046132],[4.53698877,0.03799578,98.58965179],[4.5369892,0.03799753,98.5888427],[4.53698963,0.03799928,98.58803405],[4.53699006,0.03800103,98.58722584],[4.53699049,0.03800278,98.58641808],[4.53699092,0.03800454,98.58561075],[4.53699135,0.03800629,98.58480386],[4.53699178,0.03800804,98.58399742],[4.53699221,0.03800979,98.58319142],[4.53699264,0.03801154,98.58238587],[4.53699307,0.03801329,98.58158076],[4.5369935,0.03801505,98.5807761],[4.53699393,0.0380168,98.57997188],[4.53699436,0.03801855,98.57916812],[4.53699479,0.0380203,98.5783648],[4.53699522,0.03802205,98.57756194],[4.53699565,0.0380238,98.57675952],[4.53699608,0.03802555,98.57595756],[4.53699651,0.03802731,98.57515605],[4.53699694,0.03802906,98.574355],[4.53699737,0.03803081,98.57355439],[4.5369978,0.03803256,98.57275425],[4.53699823,0.03803431,98.57195456],[4.53699866,0.03803606,98.57115533],[4.53699909,0.03803782,98.57035656],[4.53699952,0.03803957,98.56955824],[4.53699995,0.03804132,98.56876039],[4.53700038,0.03804307,98.567963],[4.53700081,0.03804482,98.56716607],[4.53700124,0.03804657,98.5663696],[4.53700167,0.03804833,98.56557359],[4.5370021,0.03805008,98.56477805],[4.53700253,0.03805183,98.56398298],[4.53700296,0.03805358,98.56318837],[4.53700338,0.03805533,98.56239423],[4.53700381,0.03805708,98.56160056],[4.53700424,0.03805884,98.56080736],[4.53700467,0.03806059,98.56001463],[4.5370051,0.03806234,98.55922237],[4.53700553,0.03806409,98.55843058],[4.53700596,0.03806584,98.55763926],[4.53700638,0.0380676,98.55684842],[4.53700681,0.03806935,98.55605805],[4.53700724,0.0380711,98.55526815],[4.53700767,0.03807285,98.55447874],[4.5370081,0.0380746,98.5536898],[4.53700852,0.03807636,98.55290134],[4.53700895,0.03807811,98.55211336],[4.53700938,0.03807986,98.55132586],[4.53700981,0.03808161,98.55053885],[4.53701023,0.03808337,98.54975235],[4.53701066,0.03808512,98.5489664],[4.53701109,0.03808687,98.54818101],[4.53701151,0.03808862,98.54739621],[4.53701194,0.03809037,98.54661202],[4.53701237,0.03809213,98.54582848],[4.53701279,0.03809388,98.54504559],[4.53701322,0.03809563,98.5442634],[4.53701364,0.03809738,98.54348192],[4.53701407,0.03809914,98.54270118],[4.5370145,0.03810089,98.5419212],[4.53701492,0.03810264,98.54114202],[4.53701535,0.03810439,98.54036364],[4.53701577,0.03810615,98.5395861],[4.5370162,0.0381079,98.53880943],[4.53701663,0.03810965,98.53803364],[4.53701705,0.03811141,98.53725876],[4.53701748,0.03811316,98.53648482],[4.5370179,0.03811491,98.53571184],[4.53701833,0.03811666,98.53493985],[4.53701875,0.03811842,98.53416886],[4.53701918,0.03812017,98.53339891],[4.5370196,0.03812192,98.53263002],[4.53702003,0.03812367,98.5318622],[4.53702045,0.03812543,98.5310955],[4.53702088,0.03812718,98.53032992],[4.5370213,0.03812893,98.5295655],[4.53702173,0.03813068,98.52880225],[4.53702215,0.03813244,98.52804021],[4.53702258,0.03813419,98.5272794],[4.537023,0.03813594,98.52651983],[4.53702343,0.0381377,98.52576154],[4.53702385,0.03813945,98.52500455],[4.53702428,0.0381412,98.52424888],[4.5370247,0.03814295,98.52349455],[4.53702513,0.03814471,98.52274159],[4.53702555,0.03814646,98.52199003],[4.53702598,0.03814821,98.52123988],[4.53702641,0.03814996,98.52049116],[4.53702683,0.03815172,98.51974391],[4.53702726,0.03815347,98.51899815],[4.53702768,0.03815522,98.51825389],[4.53702811,0.03815698,98.51751117],[4.53702853,0.03815873,98.51677001],[4.53702896,0.03816048,98.51603043],[4.53702938,0.03816223,98.51529247],[4.53702981,0.03816399,98.51455615],[4.53703023,0.03816574,98.51382151],[4.53703066,0.03816749,98.51308856],[4.53703109,0.03816924,98.51235733],[4.53703151,0.038171,98.51162786],[4.53703194,0.03817275,98.51090017]],"type":"LineString"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":2,"type":"none","predecessorId":2}},{"geometry":{"coordinates":[[4.53649495,0.03650002,99.26451101],[4.53649451,0.03649827,99.26522096],[4.53649408,0.03649652,99.2659302],[4.53649364,0.03649477,99.26663877],[4.5364932,0.03649302,99.26734672],[4.53649276,0.03649128,99.26805408],[4.53649233,0.03648953,99.26876088],[4.53649189,0.03648778,99.26946717],[4.53649145,0.03648603,99.27017298],[4.53649101,0.03648428,99.27087836],[4.53649058,0.03648253,99.27158333],[4.53649014,0.03648079,99.27228795],[4.5364897,0.03647904,99.27299224],[4.53648927,0.03647729,99.27369623],[4.53648883,0.03647554,99.27439993],[4.53648839,0.03647379,99.27510335],[4.53648796,0.03647204,99.27580648],[4.53648752,0.0364703,99.27650932],[4.53648708,0.03646855,99.27721188],[4.53648664,0.0364668,99.27791416],[4.53648621,0.03646505,99.27861616],[4.53648577,0.0364633,99.27931789],[4.53648533,0.03646155,99.28001933],[4.5364849,0.03645981,99.28072051],[4.53648446,0.03645807,99.28142141],[4.53648403,0.03645632,99.28212204],[4.53648359,0.03645457,99.2828224],[4.53648315,0.03645282,99.28352249],[4.53648272,0.03645107,99.28422231],[4.53648228,0.03644932,99.28492188],[4.53648184,0.03644758,99.28562118],[4.53648141,0.03644583,99.28632021],[4.53648097,0.03644408,99.28701899],[4.53648053,0.03644233,99.28771752],[4.53648009,0.03644058,99.28841578],[4.53647966,0.03643883,99.28911379],[4.53647922,0.03643709,99.28981155],[4.53647878,0.03643534,99.29050906],[4.53647834,0.03643359,99.29120632],[4.53647791,0.03643184,99.29190332],[4.53647747,0.03643009,99.29260009],[4.53647703,0.03642835,99.2932966],[4.53647659,0.0364266,99.29399288],[4.53647615,0.03642485,99.29468891],[4.53647571,0.0364231,99.2953847],[4.53647528,0.03642135,99.29608025],[4.53647484,0.03641961,99.29677557],[4.5364744,0.03641786,99.29747065],[4.53647396,0.03641611,99.29816549],[4.53647352,0.03641436,99.2988601],[4.53647308,0.03641261,99.29955448],[4.53647264,0.03641087,99.30024863],[4.5364722,0.03640912,99.30094254],[4.53647176,0.03640737,99.30163624],[4.53647132,0.03640562,99.3023297],[4.53647088,0.03640388,99.30302294],[4.53647043,0.03640213,99.30371596],[4.53646999,0.03640038,99.30440875],[4.53646955,0.03639864,99.30510132],[4.53646911,0.03639689,99.30579368],[4.53646867,0.03639514,99.30648581],[4.53646822,0.03639339,99.30717773],[4.53646778,0.03639165,99.30786943],[4.53646734,0.0363899,99.30856092],[4.53646689,0.03638815,99.30925219],[4.53646645,0.03638641,99.30994326],[4.53646601,0.03638466,99.31063411],[4.53646556,0.03638291,99.31132475],[4.53646512,0.03638117,99.31201519],[4.53646467,0.03637942,99.31270541],[4.53646423,0.03637768,99.31339543],[4.53646378,0.03637593,99.31408525],[4.53646334,0.03637418,99.31477486],[4.53646289,0.03637244,99.31546423],[4.53646244,0.03637069,99.31615333],[4.536462,0.03636895,99.31684217],[4.53646155,0.0363672,99.31753075],[4.5364611,0.03636545,99.31821906],[4.53646066,0.03636371,99.31890711],[4.53646021,0.03636196,99.31959491],[4.53645976,0.03636022,99.32028245],[4.53645931,0.03635847,99.32096972],[4.53645887,0.03635673,99.32165675],[4.53645842,0.03635498,99.32234352],[4.53645797,0.03635323,99.32303004],[4.53645752,0.03635149,99.32371631],[4.53645707,0.03634974,99.32440233],[4.53645662,0.036348,99.3250881],[4.53645618,0.03634625,99.32577363],[4.53645573,0.03634451,99.32645891],[4.53645528,0.03634276,99.32714394],[4.53645483,0.03634102,99.32782874],[4.53645438,0.03633927,99.32851329],[4.53645393,0.03633753,99.32919761],[4.53645348,0.03633578,99.32988168],[4.53645303,0.03633404,99.33056552],[4.53645258,0.03633229,99.33124913],[4.53645213,0.03633055,99.3319325],[4.53645168,0.0363288,99.33261563],[4.53645123,0.03632706,99.33329854],[4.53645078,0.03632531,99.33398121],[4.53645033,0.03632357,99.33466366],[4.53644988,0.03632182,99.33534587],[4.53644943,0.03632008,99.33602787],[4.53644898,0.03631833,99.33670963],[4.53644853,0.03631659,99.33739117],[4.53644808,0.03631484,99.3380725],[4.53644763,0.0363131,99.33875361],[4.53644718,0.03631135,99.33943453],[4.53644673,0.03630961,99.34011526],[4.53644628,0.03630786,99.34079581],[4.53644583,0.03630612,99.34147618],[4.53644538,0.03630437,99.3421564],[4.53644493,0.03630263,99.34283647],[4.53644448,0.03630088,99.3435164],[4.53644403,0.03629914,99.34419619],[4.53644358,0.03629739,99.34487587],[4.53644312,0.03629565,99.34555543],[4.53644267,0.0362939,99.3462349],[4.53644222,0.03629216,99.34691427],[4.53644177,0.03629041,99.34759356],[4.53644132,0.03628867,99.34827278],[4.53644087,0.03628692,99.34895194],[4.53644042,0.03628518,99.34963104],[4.53643997,0.03628343,99.3503101],[4.53643953,0.03628168,99.35098911],[4.53643908,0.03627994,99.35166809],[4.53643863,0.03627819,99.35234704],[4.53643818,0.03627645,99.35302596],[4.53643773,0.0362747,99.35370487],[4.53643728,0.03627296,99.35438377],[4.53643683,0.03627121,99.35506266],[4.53643638,0.03626947,99.35574155],[4.53643593,0.03626772,99.35642044],[4.53643548,0.03626598,99.35709935],[4.53643503,0.03626423,99.35777828],[4.53643458,0.03626249,99.35845723],[4.53643414,0.03626074,99.35913621],[4.53643369,0.036259,99.35981522],[4.53643324,0.03625725,99.36049428],[4.53643279,0.0362555,99.36117339],[4.53643234,0.03625376,99.36185255],[4.53643189,0.03625201,99.36253177],[4.53643144,0.03625027,99.36321106],[4.536431,0.03624852,99.36389042],[4.53643055,0.03624678,99.36456986],[4.5364301,0.03624503,99.36524939],[4.53642965,0.03624329,99.36592902],[4.5364292,0.03624154,99.36660878],[4.53642875,0.0362398,99.36728871],[4.53642831,0.03623805,99.36796883],[4.53642786,0.0362363,99.36864918],[4.53642741,0.03623456,99.36932979],[4.53642696,0.03623281,99.37001066],[4.53642651,0.03623107,99.37069181],[4.53642606,0.03622932,99.37137324],[4.53642562,0.03622758,99.37205494],[4.53642517,0.03622583,99.37273693],[4.53642472,0.03622408,99.3734192],[4.53642427,0.03622234,99.37410176],[4.53642383,0.03622059,99.37478462],[4.53642338,0.03621885,99.37546777],[4.53642293,0.0362171,99.37615122],[4.53642248,0.03621536,99.37683497],[4.53642203,0.03621361,99.37751902],[4.53642159,0.03621186,99.37820339],[4.53642114,0.03621012,99.37888807],[4.53642069,0.03620837,99.37957306],[4.53642024,0.03620663,99.38025837],[4.53641979,0.03620488,99.38094401],[4.53641935,0.03620314,99.38162996],[4.5364189,0.03620139,99.38231625],[4.53641845,0.03619965,99.38300287],[4.536418,0.0361979,99.38368982],[4.53641756,0.03619615,99.38437711],[4.53641711,0.03619441,99.38506474],[4.53641666,0.03619266,99.38575271],[4.53641621,0.03619092,99.38644103],[4.53641576,0.03618917,99.38712971],[4.53641532,0.03618743,99.38781873],[4.53641487,0.03618568,99.38850812],[4.53641442,0.03618393,99.38919786],[4.53641397,0.03618219,99.38988797],[4.53641352,0.03618044,99.39057844],[4.53641308,0.0361787,99.39126928],[4.53641263,0.03617695,99.3919605],[4.53641218,0.03617521,99.39265209],[4.53641173,0.03617346,99.39334406],[4.53641128,0.03617171,99.39403641],[4.53641083,0.03616997,99.39472915],[4.53641039,0.03616822,99.39542228],[4.53640994,0.03616648,99.3961158],[4.53640949,0.03616473,99.39680972],[4.53640904,0.03616299,99.39750403],[4.53640859,0.03616124,99.39819874],[4.53640814,0.0361595,99.39889386],[4.53640769,0.03615775,99.39958939],[4.53640725,0.03615601,99.40028533],[4.5364068,0.03615426,99.40098168],[4.53640635,0.03615251,99.40167845],[4.5364059,0.03615077,99.40237564],[4.53640545,0.03614902,99.40307326],[4.536405,0.03614728,99.4037713],[4.53640455,0.03614553,99.40446977],[4.5364041,0.03614379,99.40516868],[4.53640365,0.03614204,99.40586802],[4.5364032,0.0361403,99.4065678],[4.53640276,0.03613855,99.40726802],[4.53640231,0.03613681,99.40796868],[4.53640186,0.03613506,99.40866978],[4.53640141,0.03613331,99.40937132],[4.53640096,0.03613157,99.4100733],[4.53640051,0.03612982,99.41077574],[4.53640006,0.03612808,99.41147865],[4.53639961,0.03612633,99.41218205],[4.53639916,0.03612459,99.41288597],[4.53639871,0.03612284,99.41359042],[4.53639826,0.0361211,99.41429541],[4.53639781,0.03611935,99.41500096],[4.53639736,0.03611761,99.41570707],[4.53639691,0.03611586,99.41641375],[4.53639646,0.03611412,99.41712102],[4.53639601,0.03611237,99.41782888],[4.53639556,0.03611063,99.41853734],[4.53639511,0.03610888,99.41924641],[4.53639466,0.03610714,99.41995609],[4.53639421,0.03610539,99.42066641],[4.53639376,0.03610365,99.42137736],[4.53639331,0.0361019,99.42208897],[4.53639286,0.03610016,99.42280123],[4.53639241,0.03609841,99.42351415],[4.53639196,0.03609667,99.42422775],[4.53639151,0.03609492,99.42494203],[4.53639106,0.03609317,99.42565701],[4.53639061,0.03609143,99.42637269],[4.53639016,0.03608968,99.42708908],[4.53638971,0.03608794,99.4278062],[4.53638926,0.03608619,99.42852404],[4.53638881,0.03608445,99.42924263],[4.53638836,0.0360827,99.42996196],[4.53638791,0.03608096,99.43068206],[4.53638746,0.03607921,99.43140292],[4.53638701,0.03607747,99.43212456],[4.53638656,0.03607572,99.43284698],[4.53638611,0.03607398,99.4335702],[4.53638566,0.03607223,99.43429423],[4.53638521,0.03607049,99.43501907],[4.53638476,0.03606874,99.43574473],[4.53638431,0.036067,99.43647123],[4.53638386,0.03606525,99.43719857],[4.53638341,0.03606351,99.43792676],[4.53638296,0.03606176,99.43865581],[4.53638251,0.03606002,99.43938574],[4.53638206,0.03605827,99.44011654],[4.53638161,0.03605653,99.44084823],[4.53638116,0.03605478,99.44158081],[4.5363807,0.03605304,99.44231431],[4.53638025,0.03605129,99.44304872],[4.5363798,0.03604955,99.44378405],[4.53637935,0.0360478,99.44452033],[4.5363789,0.03604606,99.44525754],[4.53637845,0.03604431,99.44599571],[4.536378,0.03604257,99.44673484],[4.53637755,0.03604082,99.44747493],[4.5363771,0.03603908,99.448216],[4.53637665,0.03603733,99.44895805],[4.5363762,0.03603559,99.44970108],[4.53637575,0.03603384,99.4504451],[4.5363753,0.03603209,99.45119012],[4.53637485,0.03603035,99.45193613],[4.5363744,0.0360286,99.45268315],[4.53637395,0.03602686,99.45343119],[4.5363735,0.03602511,99.45418024],[4.53637305,0.03602337,99.45493031],[4.5363726,0.03602162,99.45568141],[4.53637215,0.03601988,99.45643355],[4.5363717,0.03601813,99.45718672],[4.53637125,0.03601639,99.45794094],[4.5363708,0.03601464,99.45869621],[4.53637035,0.0360129,99.45945254],[4.5363699,0.03601115,99.46020992],[4.53636945,0.03600941,99.46096837],[4.536369,0.03600766,99.4617279],[4.53636855,0.03600592,99.4624885],[4.5363681,0.03600417,99.46325019],[4.53636766,0.03600243,99.46401296],[4.53636721,0.03600068,99.46477683],[4.53636676,0.03599893,99.46554179],[4.53636631,0.03599719,99.46630786],[4.53636586,0.03599544,99.46707505],[4.53636541,0.0359937,99.46784334],[4.53636496,0.03599195,99.46861276],[4.53636451,0.03599021,99.46938329],[4.53636406,0.03598846,99.47015494],[4.53636361,0.03598672,99.47092772],[4.53636316,0.03598497,99.47170162],[4.53636271,0.03598323,99.47247664],[4.53636226,0.03598148,99.4732528],[4.53636181,0.03597974,99.47403008],[4.53636136,0.03597799,99.47480849],[4.53636091,0.03597625,99.47558804],[4.53636046,0.0359745,99.47636872],[4.53636001,0.03597275,99.47715054],[4.53635956,0.03597101,99.4779335],[4.53635911,0.03596926,99.47871759],[4.53635866,0.03596752,99.47950283],[4.53635821,0.03596577,99.48028921],[4.53635776,0.03596403,99.48107672],[4.53635731,0.03596228,99.48186536],[4.53635686,0.03596054,99.4826551],[4.53635641,0.03595879,99.48344591],[4.53635596,0.03595705,99.48423778],[4.53635552,0.0359553,99.48503068],[4.53635507,0.03595356,99.48582459],[4.53635462,0.03595181,99.4866195],[4.53635417,0.03595006,99.48741538],[4.53635372,0.03594832,99.48821221],[4.53635327,0.03594657,99.48900997],[4.53635282,0.03594483,99.48980863],[4.53635237,0.03594308,99.49060819],[4.53635192,0.03594134,99.49140861],[4.53635147,0.03593959,99.49220987],[4.53635102,0.03593785,99.49301195],[4.53635057,0.0359361,99.49381484],[4.53635012,0.03593436,99.49461851],[4.53634967,0.03593261,99.49542294],[4.53634922,0.03593087,99.49622811],[4.53634877,0.03592912,99.497034],[4.53634831,0.03592738,99.49784059],[4.53634786,0.03592563,99.49864785],[4.53634741,0.03592389,99.49945577],[4.53634696,0.03592214,99.50026432],[4.53634651,0.0359204,99.50107348],[4.53634606,0.03591865,99.50188323],[4.53634561,0.03591691,99.50269355],[4.53634516,0.03591516,99.50350442],[4.53634471,0.03591342,99.5043158],[4.53634426,0.03591167,99.5051277],[4.53634381,0.03590993,99.50594007],[4.53634336,0.03590818,99.50675292],[4.53634291,0.03590644,99.50756621],[4.53634246,0.03590469,99.50837994],[4.536342,0.03590295,99.50919408],[4.53634155,0.0359012,99.51000863],[4.5363411,0.03589946,99.51082355],[4.53634065,0.03589771,99.51163883],[4.5363402,0.03589597,99.51245445],[4.53633975,0.03589422,99.5132704],[4.5363393,0.03589248,99.51408667],[4.53633884,0.03589073,99.51490322],[4.53633839,0.03588899,99.51572004],[4.53633794,0.03588724,99.51653712],[4.53633749,0.0358855,99.51735444],[4.53633704,0.03588375,99.51817198],[4.53633659,0.03588201,99.51898971],[4.53633613,0.03588026,99.51980764],[4.53633568,0.03587852,99.52062573],[4.53633523,0.03587677,99.52144397],[4.53633478,0.03587503,99.52226234],[4.53633432,0.03587328,99.52308082],[4.53633387,0.03587154,99.5238994],[4.53633342,0.03586979,99.52471806],[4.53633297,0.03586805,99.52553678],[4.53633252,0.0358663,99.52635554],[4.53633206,0.03586456,99.52717433],[4.53633161,0.03586281,99.52799312],[4.53633116,0.03586107,99.52881191],[4.53633071,0.03585933,99.52963066],[4.53633025,0.03585758,99.53044937],[4.5363298,0.03585584,99.53126802],[4.53632935,0.03585409,99.53208659],[4.5363289,0.03585235,99.53290505],[4.53632844,0.0358506,99.5337234],[4.53632799,0.03584886,99.53454162],[4.53632754,0.03584711,99.53535969],[4.53632708,0.03584537,99.53617758],[4.53632663,0.03584362,99.53699529],[4.53632618,0.03584188,99.53781279],[4.53632573,0.03584013,99.53863008],[4.53632527,0.03583839,99.53944712],[4.53632482,0.03583665,99.5402639],[4.53632437,0.0358349,99.54108041],[4.53632391,0.03583316,99.54189662],[4.53632346,0.03583141,99.54271253],[4.53632301,0.03582967,99.54352811],[4.53632256,0.03582792,99.54434334],[4.5363221,0.03582618,99.54515822],[4.53632165,0.03582443,99.54597272],[4.5363212,0.03582269,99.54678683],[4.53632074,0.03582094,99.54760053],[4.53632029,0.0358192,99.5484138],[4.53631984,0.03581746,99.54922663],[4.53631938,0.03581571,99.55003899],[4.53631893,0.03581397,99.55085089],[4.53631848,0.03581222,99.55166229],[4.53631802,0.03581048,99.55247317],[4.53631757,0.03580873,99.55328354],[4.53631712,0.03580699,99.55409336],[4.53631667,0.03580524,99.55490262],[4.53631621,0.0358035,99.5557113],[4.53631576,0.03580175,99.55651939],[4.53631531,0.03580001,99.55732687],[4.53631485,0.03579827,99.55813372],[4.5363144,0.03579652,99.55893994],[4.53631395,0.03579478,99.55974549],[4.53631349,0.03579303,99.56055036],[4.53631304,0.03579129,99.56135454],[4.53631259,0.03578954,99.56215801],[4.53631213,0.0357878,99.56296075],[4.53631168,0.03578605,99.56376275],[4.53631123,0.03578431,99.56456399],[4.53631077,0.03578256,99.56536446],[4.53631032,0.03578082,99.56616412],[4.53630987,0.03577908,99.56696298],[4.53630942,0.03577733,99.56776101],[4.53630896,0.03577559,99.5685582],[4.53630851,0.03577384,99.56935453],[4.53630806,0.0357721,99.57014998],[4.5363076,0.03577035,99.57094453],[4.53630715,0.03576861,99.57173818],[4.5363067,0.03576686,99.5725309],[4.53630625,0.03576512,99.57332267],[4.53630579,0.03576337,99.57411348],[4.53630534,0.03576163,99.57490332],[4.53630489,0.03575988,99.57569216],[4.53630443,0.03575814,99.57647998],[4.53630398,0.0357564,99.57726678],[4.53630353,0.03575465,99.57805254],[4.53630308,0.03575291,99.57883723],[4.53630262,0.03575116,99.57962085],[4.53630217,0.03574942,99.58040337],[4.53630172,0.03574767,99.58118478],[4.53630127,0.03574593,99.58196506],[4.53630081,0.03574418,99.5827442],[4.53630036,0.03574244,99.58352217],[4.53629991,0.03574069,99.58429896],[4.53629946,0.03573895,99.58507456],[4.536299,0.0357372,99.58584895],[4.53629855,0.03573546,99.5866221],[4.5362981,0.03573371,99.58739402],[4.53629765,0.03573197,99.58816466],[4.53629719,0.03573022,99.58893403],[4.53629674,0.03572848,99.5897021],[4.53629629,0.03572673,99.59046886],[4.53629584,0.03572499,99.59123429],[4.53629538,0.03572325,99.59199836],[4.53629493,0.0357215,99.59276106],[4.53629448,0.03571976,99.59352236],[4.53629403,0.03571801,99.59428223],[4.53629357,0.03571627,99.59504065],[4.53629312,0.03571452,99.59579761],[4.53629267,0.03571278,99.59655307],[4.53629222,0.03571103,99.59730701],[4.53629176,0.03570929,99.59805942],[4.53629131,0.03570754,99.59881026],[4.53629086,0.0357058,99.59955951],[4.53629041,0.03570405,99.60030715],[4.53628996,0.03570231,99.60105316],[4.5362895,0.03570057,99.60179751],[4.53628905,0.03569882,99.60254018],[4.5362886,0.03569708,99.60328115],[4.53628815,0.03569533,99.60402039],[4.53628769,0.03569359,99.60475788],[4.53628724,0.03569184,99.6054936],[4.53628679,0.0356901,99.60622752],[4.53628633,0.03568835,99.60695963],[4.53628588,0.03568661,99.60768989],[4.53628543,0.03568486,99.60841829],[4.53628498,0.03568312,99.60914479],[4.53628452,0.03568137,99.60986939],[4.53628407,0.03567963,99.61059206],[4.53628362,0.03567788,99.61131276],[4.53628316,0.03567614,99.61203149],[4.53628271,0.0356744,99.61274821],[4.53628226,0.03567265,99.61346291],[4.5362818,0.03567091,99.61417556],[4.53628135,0.03566916,99.61488615],[4.5362809,0.03566742,99.61559466],[4.53628044,0.03566567,99.61630108],[4.53627999,0.03566393,99.61700542],[4.53627954,0.03566218,99.61770765],[4.53627908,0.03566044,99.61840778],[4.53627863,0.0356587,99.61910579],[4.53627818,0.03565695,99.61980167],[4.53627772,0.03565521,99.62049542],[4.53627727,0.03565346,99.62118703],[4.53627681,0.03565172,99.62187648],[4.53627636,0.03564997,99.62256377],[4.53627591,0.03564823,99.62324889],[4.53627545,0.03564649,99.62393183],[4.536275,0.03564474,99.62461259],[4.53627454,0.035643,99.62529114],[4.53627409,0.03564125,99.62596749],[4.53627364,0.03563951,99.62664163],[4.53627318,0.03563776,99.62731354],[4.53627273,0.03563602,99.62798322],[4.53627227,0.03563428,99.62865065],[4.53627182,0.03563253,99.62931584],[4.53627136,0.03563079,99.62997876],[4.53627091,0.03562904,99.63063941],[4.53627045,0.0356273,99.63129779],[4.53627,0.03562556,99.63195388],[4.53626955,0.03562381,99.63260767],[4.53626909,0.03562207,99.63325915],[4.53626864,0.03562032,99.63390832],[4.53626818,0.03561858,99.63455516],[4.53626773,0.03561683,99.63519967],[4.53626727,0.03561509,99.63584183],[4.53626682,0.03561335,99.63648165],[4.53626636,0.0356116,99.6371191],[4.53626591,0.03560986,99.63775417],[4.53626545,0.03560811,99.63838687],[4.536265,0.03560637,99.63901717],[4.53626454,0.03560463,99.63964508],[4.53626409,0.03560288,99.64027057],[4.53626364,0.03560114,99.64089365],[4.53626318,0.03559939,99.64151429],[4.53626273,0.03559765,99.64213249],[4.53626227,0.03559591,99.64274825],[4.53626182,0.03559416,99.64336154],[4.53626136,0.03559242,99.64397236],[4.53626091,0.03559067,99.64458071],[4.53626045,0.03558893,99.64518656],[4.53626,0.03558719,99.64578992],[4.53625954,0.03558544,99.6463908],[4.53625909,0.0355837,99.6469892],[4.53625863,0.03558195,99.64758516],[4.53625818,0.03558021,99.64817869],[4.53625773,0.03557846,99.64876982],[4.53625727,0.03557672,99.64935855],[4.53625682,0.03557498,99.64994492],[4.53625636,0.03557323,99.65052894],[4.53625591,0.03557149,99.65111063],[4.53625545,0.03556974,99.65169001],[4.536255,0.035568,99.6522671],[4.53625455,0.03556626,99.65284193],[4.53625409,0.03556451,99.6534145],[4.53625364,0.03556277,99.65398484],[4.53625318,0.03556102,99.65455297],[4.53625273,0.03555928,99.65511891],[4.53625228,0.03555753,99.65568267],[4.53625182,0.03555579,99.65624424],[4.53625137,0.03555405,99.65680362],[4.53625092,0.0355523,99.65736081],[4.53625046,0.03555056,99.65791581],[4.53625001,0.03554881,99.6584686],[4.53624955,0.03554707,99.65901919],[4.5362491,0.03554532,99.65956757],[4.53624865,0.03554358,99.66011374],[4.53624819,0.03554184,99.66065769],[4.53624774,0.03554009,99.66119943],[4.53624729,0.03553835,99.66173893],[4.53624683,0.0355366,99.66227621],[4.53624638,0.03553486,99.66281126],[4.53624593,0.03553311,99.66334407],[4.53624547,0.03553137,99.66387464],[4.53624502,0.03552962,99.66440297],[4.53624457,0.03552788,99.66492905],[4.53624411,0.03552614,99.66545288],[4.53624366,0.03552439,99.66597445],[4.53624321,0.03552265,99.66649376],[4.53624275,0.0355209,99.66701082],[4.5362423,0.03551916,99.6675256],[4.53624185,0.03551741,99.66803812],[4.53624139,0.03551567,99.66854836],[4.53624094,0.03551393,99.66905632],[4.53624049,0.03551218,99.669562],[4.53624003,0.03551044,99.6700654],[4.53623958,0.03550869,99.67056651],[4.53623913,0.03550695,99.67106532],[4.53623867,0.0355052,99.67156184],[4.53623822,0.03550346,99.67205606],[4.53623776,0.03550172,99.67254797],[4.53623731,0.03549997,99.67303758],[4.53623686,0.03549823,99.67352488],[4.5362364,0.03549648,99.67400986],[4.53623595,0.03549474,99.67449253],[4.53623549,0.035493,99.67497287],[4.53623504,0.03549125,99.67545088],[4.53623458,0.03548951,99.67592657],[4.53623413,0.03548776,99.67639992],[4.53623367,0.03548602,99.67687094],[4.53623322,0.03548428,99.67733962],[4.53623276,0.03548253,99.67780595],[4.53623231,0.03548079,99.67826993],[4.53623185,0.03547904,99.67873156],[4.5362314,0.0354773,99.67919084],[4.53623094,0.03547556,99.67964776],[4.53623048,0.03547381,99.68010231],[4.53623003,0.03547207,99.6805545],[4.53622957,0.03547033,99.68100432],[4.53622911,0.03546858,99.68145176],[4.53622866,0.03546684,99.68189682],[4.5362282,0.0354651,99.68233951],[4.53622774,0.03546335,99.6827798],[4.53622729,0.03546161,99.68321771],[4.53622683,0.03545987,99.68365322],[4.53622637,0.03545812,99.68408634],[4.53622591,0.03545638,99.68451705],[4.53622545,0.03545464,99.68494536],[4.536225,0.03545289,99.68537126],[4.53622454,0.03545115,99.68579476],[4.53622408,0.03544941,99.68621587],[4.53622362,0.03544767,99.68663461],[4.53622316,0.03544592,99.687051],[4.5362227,0.03544418,99.68746505],[4.53622224,0.03544244,99.68787679],[4.53622178,0.03544069,99.68828622],[4.53622132,0.03543895,99.68869336],[4.53622086,0.03543721,99.68909823],[4.5362204,0.03543547,99.68950085],[4.53621994,0.03543372,99.68990123],[4.53621948,0.03543198,99.6902994],[4.53621902,0.03543024,99.69069535],[4.53621856,0.0354285,99.69108912],[4.5362181,0.03542676,99.69148073],[4.53621764,0.03542501,99.69187017],[4.53621718,0.03542327,99.69225748],[4.53621672,0.03542153,99.69264267],[4.53621625,0.03541979,99.69302576],[4.53621579,0.03541804,99.69340675],[4.53621533,0.0354163,99.69378569],[4.53621487,0.03541456,99.69416258],[4.53621441,0.03541282,99.69453744],[4.53621395,0.03541108,99.69491029],[4.53621348,0.03540933,99.69528116],[4.53621302,0.03540759,99.69565005],[4.53621256,0.03540585,99.69601698],[4.5362121,0.03540411,99.69638198],[4.53621164,0.03540237,99.69674504],[4.53621117,0.03540062,99.69710619],[4.53621071,0.03539888,99.69746545],[4.53621025,0.03539714,99.69782282],[4.53620979,0.0353954,99.69817833],[4.53620932,0.03539366,99.69853199],[4.53620886,0.03539192,99.69888381],[4.5362084,0.03539017,99.69923381],[4.53620794,0.03538843,99.69958201],[4.53620747,0.03538669,99.69992843],[4.53620701,0.03538495,99.70027306],[4.53620655,0.03538321,99.70061594],[4.53620608,0.03538146,99.70095708],[4.53620562,0.03537972,99.70129649],[4.53620516,0.03537798,99.70163419],[4.5362047,0.03537624,99.7019702],[4.53620423,0.0353745,99.70230452],[4.53620377,0.03537276,99.70263718],[4.53620331,0.03537101,99.70296819],[4.53620284,0.03536927,99.70329757],[4.53620238,0.03536753,99.70362533],[4.53620192,0.03536579,99.70395149],[4.53620146,0.03536405,99.70427606],[4.53620099,0.03536231,99.70459906],[4.53620053,0.03536056,99.70492051],[4.53620007,0.03535882,99.70524041],[4.5361996,0.03535708,99.7055588],[4.53619914,0.03535534,99.70587567],[4.53619868,0.0353536,99.70619105],[4.53619822,0.03535185,99.70650496],[4.53619775,0.03535011,99.70681741],[4.53619729,0.03534837,99.70712841],[4.53619683,0.03534663,99.70743798],[4.53619637,0.03534489,99.70774614],[4.53619591,0.03534315,99.7080529],[4.53619544,0.0353414,99.70835828],[4.53619498,0.03533966,99.70866229],[4.53619452,0.03533792,99.70896496],[4.53619406,0.03533618,99.70926629],[4.5361936,0.03533444,99.7095663],[4.53619313,0.03533269,99.70986501],[4.53619267,0.03533095,99.71016244],[4.53619221,0.03532921,99.71045859],[4.53619175,0.03532747,99.71075349],[4.53619129,0.03532573,99.71104716],[4.53619083,0.03532398,99.7113396],[4.53619037,0.03532224,99.71163084],[4.53618991,0.0353205,99.71192087],[4.53618944,0.03531876,99.7122097],[4.53618898,0.03531701,99.71249733],[4.53618852,0.03531527,99.71278376],[4.53618806,0.03531353,99.71306899],[4.5361876,0.03531179,99.71335303],[4.53618714,0.03531004,99.71363587],[4.53618668,0.0353083,99.71391753],[4.53618622,0.03530656,99.71419799],[4.53618576,0.03530482,99.71447727],[4.5361853,0.03530307,99.71475536],[4.53618484,0.03530133,99.71503226],[4.53618439,0.03529959,99.71530798],[4.53618393,0.03529785,99.71558252],[4.53618347,0.0352961,99.71585588],[4.53618301,0.03529436,99.71612806],[4.53618255,0.03529262,99.71639906],[4.53618209,0.03529088,99.71666889],[4.53618163,0.03528913,99.71693754],[4.53618117,0.03528739,99.71720502],[4.53618071,0.03528565,99.71747133],[4.53618025,0.03528391,99.71773648],[4.5361798,0.03528216,99.71800045],[4.53617934,0.03528042,99.71826326],[4.53617888,0.03527868,99.7185249],[4.53617842,0.03527693,99.71878539],[4.53617796,0.03527519,99.71904471],[4.5361775,0.03527345,99.71930286],[4.53617705,0.03527171,99.71955987],[4.53617659,0.03526996,99.71981571],[4.53617613,0.03526822,99.7200704],[4.53617567,0.03526648,99.72032393],[4.53617521,0.03526473,99.72057631],[4.53617476,0.03526299,99.72082754],[4.5361743,0.03526125,99.72107762],[4.53617384,0.0352595,99.72132655],[4.53617338,0.03525776,99.72157434],[4.53617293,0.03525602,99.72182099],[4.53617247,0.03525428,99.72206649],[4.53617201,0.03525253,99.72231086],[4.53617155,0.03525079,99.7225541],[4.5361711,0.03524905,99.72279622],[4.53617064,0.0352473,99.72303721],[4.53617018,0.03524556,99.72327708],[4.53616973,0.03524382,99.72351584],[4.53616927,0.03524207,99.72375348],[4.53616881,0.03524033,99.72399002],[4.53616835,0.03523859,99.72422544],[4.5361679,0.03523684,99.72445976],[4.53616744,0.0352351,99.72469298],[4.53616698,0.03523336,99.7249251],[4.53616653,0.03523161,99.72515612],[4.53616607,0.03522987,99.72538605],[4.53616561,0.03522813,99.72561489],[4.53616516,0.03522638,99.72584264],[4.5361647,0.03522464,99.72606931],[4.53616424,0.0352229,99.7262949],[4.53616379,0.03522115,99.7265194],[4.53616333,0.03521941,99.72674283],[4.53616287,0.03521767,99.72696519],[4.53616242,0.03521592,99.72718647],[4.53616196,0.03521418,99.72740669],[4.5361615,0.03521244,99.72762584],[4.53616105,0.0352107,99.72784392],[4.53616059,0.03520895,99.72806095],[4.53616013,0.03520721,99.72827692],[4.53615968,0.03520547,99.72849183],[4.53615922,0.03520372,99.7287057],[4.53615876,0.03520198,99.72891851],[4.53615831,0.03520024,99.72913027],[4.53615785,0.03519849,99.729341],[4.53615739,0.03519675,99.72955068],[4.53615694,0.03519501,99.72975932],[4.53615648,0.03519326,99.72996692],[4.53615602,0.03519152,99.73017349],[4.53615557,0.03518978,99.73037903],[4.53615511,0.03518803,99.73058354],[4.53615466,0.03518629,99.73078702],[4.5361542,0.03518455,99.73098948],[4.53615374,0.0351828,99.73119092],[4.53615329,0.03518106,99.73139134],[4.53615283,0.03517932,99.73159074],[4.53615237,0.03517757,99.73178913],[4.53615192,0.03517583,99.73198651],[4.53615146,0.03517409,99.73218287],[4.536151,0.03517234,99.73237823],[4.53615055,0.0351706,99.73257259],[4.53615009,0.03516886,99.73276595],[4.53614963,0.03516711,99.7329583],[4.53614918,0.03516537,99.73314966],[4.53614872,0.03516363,99.73334002],[4.53614826,0.03516188,99.73352939],[4.53614781,0.03516014,99.7337178],[4.53614735,0.0351584,99.73390526],[4.53614689,0.03515665,99.73409181],[4.53614644,0.03515491,99.73427745],[4.53614598,0.03515317,99.73446223],[4.53614552,0.03515142,99.73464616],[4.53614507,0.03514968,99.73482928],[4.53614461,0.03514794,99.73501159],[4.53614415,0.03514619,99.73519314],[4.53614369,0.03514445,99.73537393],[4.53614324,0.03514271,99.73555401],[4.53614278,0.03514097,99.73573339],[4.53614232,0.03513922,99.7359121],[4.53614187,0.03513748,99.73609016],[4.53614141,0.03513574,99.7362676],[4.53614095,0.03513399,99.73644444],[4.53614049,0.03513225,99.73662071],[4.53614004,0.03513051,99.73679643],[4.53613958,0.03512876,99.73697163],[4.53613912,0.03512702,99.73714634],[4.53613866,0.03512528,99.73732057],[4.53613821,0.03512354,99.73749436],[4.53613775,0.03512179,99.73766773],[4.53613729,0.03512005,99.7378407],[4.53613683,0.03511831,99.73801331],[4.53613638,0.03511656,99.73818557],[4.53613592,0.03511482,99.73835751],[4.53613546,0.03511308,99.73852916],[4.536135,0.03511134,99.73870054],[4.53613455,0.03510959,99.73887168],[4.53613409,0.03510785,99.7390426],[4.53613363,0.03510611,99.73921334],[4.53613317,0.03510436,99.7393839],[4.53613271,0.03510262,99.73955434],[4.53613226,0.03510088,99.73972465],[4.5361318,0.03509913,99.73989489],[4.53613134,0.03509739,99.74006506],[4.53613088,0.03509565,99.74023519],[4.53613043,0.03509391,99.74040532],[4.53612997,0.03509216,99.74057546],[4.53612951,0.03509042,99.74074565],[4.53612905,0.03508868,99.7409159],[4.53612859,0.03508693,99.74108621],[4.53612814,0.03508519,99.74125657],[4.53612768,0.03508345,99.74142698],[4.53612722,0.03508171,99.74159742],[4.53612676,0.03507996,99.74176788],[4.53612631,0.03507822,99.74193836],[4.53612585,0.03507648,99.74210884],[4.53612539,0.03507473,99.74227933],[4.53612493,0.03507299,99.7424498],[4.53612447,0.03507125,99.74262024],[4.53612402,0.03506951,99.74279066],[4.53612356,0.03506776,99.74296104],[4.5361231,0.03506602,99.74313137],[4.53612264,0.03506428,99.74330164],[4.53612218,0.03506254,99.74347184],[4.53612172,0.03506079,99.74364196],[4.53612127,0.03505905,99.743812],[4.53612081,0.03505731,99.74398194],[4.53612035,0.03505556,99.74415177],[4.53611989,0.03505382,99.74432148],[4.53611943,0.03505208,99.74449107],[4.53611898,0.03505034,99.74466052],[4.53611852,0.03504859,99.74482983],[4.53611806,0.03504685,99.74499898],[4.5361176,0.03504511,99.74516796],[4.53611714,0.03504337,99.74533677],[4.53611668,0.03504162,99.74550539],[4.53611623,0.03503988,99.74567382],[4.53611577,0.03503814,99.74584204],[4.53611531,0.03503639,99.74601005],[4.53611485,0.03503465,99.74617783],[4.53611439,0.03503291,99.74634537],[4.53611393,0.03503117,99.74651266],[4.53611347,0.03502942,99.7466797],[4.53611301,0.03502768,99.74684648],[4.53611256,0.03502594,99.74701299],[4.5361121,0.0350242,99.74717922],[4.53611164,0.03502245,99.74734516],[4.53611118,0.03502071,99.74751082],[4.53611072,0.03501897,99.74767616],[4.53611026,0.03501723,99.7478412],[4.5361098,0.03501549,99.74800592],[4.53610934,0.03501375,99.74817031],[4.53610888,0.035012,99.74833435],[4.53610843,0.03501026,99.74849804],[4.53610797,0.03500852,99.74866137],[4.53610751,0.03500678,99.74882436],[4.53610705,0.03500503,99.74898701],[4.53610659,0.03500329,99.74914934],[4.53610613,0.03500155,99.74931136],[4.53610567,0.03499981,99.74947308],[4.53610521,0.03499806,99.74963452],[4.53610475,0.03499632,99.74979567],[4.53610429,0.03499458,99.74995657],[4.53610383,0.03499284,99.75011721],[4.53610337,0.03499109,99.7502776],[4.53610291,0.03498935,99.75043777],[4.53610245,0.03498761,99.75059772],[4.53610199,0.03498587,99.75075746],[4.53610154,0.03498412,99.75091701],[4.53610108,0.03498238,99.75107637],[4.53610062,0.03498064,99.75123555],[4.53610016,0.0349789,99.75139458],[4.5360997,0.03497715,99.75155344],[4.53609924,0.03497541,99.75171217],[4.53609878,0.03497367,99.75187076],[4.53609832,0.03497193,99.75202923],[4.53609786,0.03497018,99.75218758],[4.5360974,0.03496844,99.75234583],[4.53609694,0.0349667,99.75250399],[4.53609649,0.03496496,99.75266206],[4.53609603,0.03496321,99.75282007],[4.53609557,0.03496147,99.75297801],[4.53609511,0.03495973,99.75313589],[4.53609465,0.03495799,99.75329374],[4.53609419,0.03495624,99.75345156],[4.53609373,0.0349545,99.75360935],[4.53609327,0.03495276,99.75376713],[4.53609281,0.03495102,99.75392491],[4.53609235,0.03494927,99.7540827],[4.5360919,0.03494753,99.75424051],[4.53609144,0.03494579,99.75439835],[4.53609098,0.03494405,99.75455623],[4.53609052,0.0349423,99.75471417],[4.53609006,0.03494056,99.75487216],[4.5360896,0.03493882,99.75503022],[4.53608914,0.03493707,99.75518837],[4.53608869,0.03493533,99.7553466],[4.53608823,0.03493359,99.75550494],[4.53608777,0.03493185,99.75566339],[4.53608731,0.0349301,99.75582197],[4.53608685,0.03492836,99.75598068],[4.53608639,0.03492662,99.75613953],[4.53608593,0.03492488,99.75629853],[4.53608548,0.03492313,99.7564577],[4.53608502,0.03492139,99.75661705],[4.53608456,0.03491965,99.75677658],[4.5360841,0.0349179,99.7569363],[4.53608364,0.03491616,99.75709623],[4.53608318,0.03491442,99.75725638],[4.53608272,0.03491268,99.75741676],[4.53608227,0.03491093,99.75757737],[4.53608181,0.03490919,99.75773823],[4.53608135,0.03490745,99.75789935],[4.53608089,0.03490571,99.75806074],[4.53608043,0.03490396,99.7582224],[4.53607997,0.03490222,99.75838436],[4.53607952,0.03490048,99.75854661],[4.53607906,0.03489873,99.75870918],[4.5360786,0.03489699,99.75887207],[4.53607814,0.03489525,99.75903528],[4.53607768,0.03489351,99.75919885],[4.53607723,0.03489176,99.75936276],[4.53607677,0.03489002,99.75952703],[4.53607631,0.03488828,99.75969168],[4.53607585,0.03488653,99.75985672],[4.53607539,0.03488479,99.76002215],[4.53607493,0.03488305,99.76018798],[4.53607448,0.03488131,99.76035423],[4.53607402,0.03487956,99.7605209],[4.53607356,0.03487782,99.76068801],[4.5360731,0.03487608,99.76085557],[4.53607264,0.03487433,99.76102359],[4.53607219,0.03487259,99.76119207],[4.53607173,0.03487085,99.76136103],[4.53607127,0.0348691,99.76153049],[4.53607081,0.03486736,99.76170044],[4.53607035,0.03486562,99.7618709],[4.5360699,0.03486388,99.76204189],[4.53606944,0.03486213,99.7622134],[4.53606898,0.03486039,99.76238546],[4.53606852,0.03485865,99.76255807],[4.53606807,0.0348569,99.76273124],[4.53606761,0.03485516,99.76290499],[4.53606715,0.03485342,99.76307932],[4.53606669,0.03485167,99.76325425],[4.53606623,0.03484993,99.76342978],[4.53606578,0.03484819,99.76360593],[4.53606532,0.03484645,99.76378271],[4.53606486,0.0348447,99.76396012],[4.5360644,0.03484296,99.76413818],[4.53606395,0.03484122,99.7643169],[4.53606349,0.03483947,99.76449629],[4.53606303,0.03483773,99.76467636],[4.53606257,0.03483599,99.76485712],[4.53606212,0.03483424,99.76503858],[4.53606166,0.0348325,99.76522075],[4.5360612,0.03483076,99.76540364],[4.53606074,0.03482901,99.76558727],[4.53606028,0.03482727,99.76577164],[4.53605983,0.03482553,99.76595676],[4.53605937,0.03482379,99.76614265],[4.53605891,0.03482204,99.76632931],[4.53605845,0.0348203,99.76651676],[4.536058,0.03481856,99.76670501],[4.53605754,0.03481681,99.76689406],[4.53605708,0.03481507,99.76708393],[4.53605662,0.03481333,99.76727461],[4.53605617,0.03481158,99.76746609],[4.53605571,0.03480984,99.76765837],[4.53605525,0.0348081,99.76785144],[4.53605479,0.03480635,99.7680453],[4.53605434,0.03480461,99.76823993],[4.53605388,0.03480287,99.76843534],[4.53605342,0.03480112,99.76863151],[4.53605296,0.03479938,99.76882843],[4.53605251,0.03479764,99.76902612],[4.53605205,0.03479589,99.76922454],[4.53605159,0.03479415,99.7694237],[4.53605113,0.03479241,99.7696236],[4.53605068,0.03479067,99.76982422],[4.53605022,0.03478892,99.77002556],[4.53604976,0.03478718,99.77022761],[4.5360493,0.03478544,99.77043036],[4.53604884,0.03478369,99.77063382],[4.53604839,0.03478195,99.77083796],[4.53604793,0.03478021,99.7710428],[4.53604747,0.03477846,99.77124833],[4.53604701,0.03477672,99.77145455],[4.53604656,0.03477498,99.77166146],[4.5360461,0.03477323,99.77186907],[4.53604564,0.03477149,99.77207736],[4.53604518,0.03476975,99.77228635],[4.53604472,0.034768,99.77249603],[4.53604427,0.03476626,99.7727064],[4.53604381,0.03476452,99.77291746],[4.53604335,0.03476277,99.77312922],[4.53604289,0.03476103,99.77334166],[4.53604244,0.03475929,99.7735548],[4.53604198,0.03475755,99.77376863],[4.53604152,0.0347558,99.77398315],[4.53604106,0.03475406,99.77419836],[4.5360406,0.03475232,99.77441426],[4.53604015,0.03475057,99.77463086],[4.53603969,0.03474883,99.77484814],[4.53603923,0.03474709,99.77506612],[4.53603877,0.03474534,99.77528479],[4.53603831,0.0347436,99.77550415],[4.53603786,0.03474186,99.7757242],[4.5360374,0.03474011,99.77594494],[4.53603694,0.03473837,99.77616637],[4.53603648,0.03473663,99.77638849],[4.53603602,0.03473488,99.7766113],[4.53603557,0.03473314,99.7768348],[4.53603511,0.0347314,99.77705899],[4.53603465,0.03472965,99.77728387],[4.53603419,0.03472791,99.77750944],[4.53603373,0.03472617,99.7777357],[4.53603328,0.03472443,99.77796265],[4.53603282,0.03472268,99.77819028],[4.53603236,0.03472094,99.7784186],[4.5360319,0.0347192,99.77864762],[4.53603144,0.03471745,99.77887731],[4.53603099,0.03471571,99.7791077],[4.53603053,0.03471397,99.77933877],[4.53603007,0.03471222,99.77957053],[4.53602961,0.03471048,99.77980298],[4.53602916,0.03470874,99.78003611],[4.5360287,0.03470699,99.78026993],[4.53602824,0.03470525,99.78050443],[4.53602778,0.03470351,99.78073961],[4.53602733,0.03470176,99.78097548],[4.53602687,0.03470002,99.78121203],[4.53602641,0.03469828,99.78144927],[4.53602595,0.03469653,99.78168719],[4.5360255,0.03469479,99.78192579],[4.53602504,0.03469305,99.78216507],[4.53602458,0.0346913,99.78240503],[4.53602413,0.03468956,99.78264567],[4.53602367,0.03468782,99.78288699],[4.53602321,0.03468607,99.78312899],[4.53602276,0.03468433,99.78337167],[4.5360223,0.03468258,99.78361502],[4.53602184,0.03468084,99.78385906],[4.53602139,0.0346791,99.78410376],[4.53602093,0.03467735,99.78434915],[4.53602047,0.03467561,99.78459521],[4.53602002,0.03467387,99.78484194],[4.53601956,0.03467212,99.78508934],[4.53601911,0.03467038,99.78533742],[4.53601865,0.03466863,99.78558617],[4.53601819,0.03466689,99.78583559],[4.53601774,0.03466515,99.78608567],[4.53601728,0.0346634,99.7863364],[4.53601683,0.03466166,99.78658777],[4.53601637,0.03465991,99.78683977],[4.53601592,0.03465817,99.78709237],[4.53601546,0.03465643,99.78734557],[4.53601501,0.03465468,99.78759936],[4.53601455,0.03465294,99.78785372],[4.5360141,0.03465119,99.78810864],[4.53601364,0.03464945,99.7883641],[4.53601319,0.03464771,99.78862009],[4.53601274,0.03464596,99.78887661],[4.53601228,0.03464422,99.78913363],[4.53601183,0.03464247,99.78939114],[4.53601137,0.03464073,99.78964913],[4.53601092,0.03463898,99.78990759],[4.53601046,0.03463724,99.79016651],[4.53601001,0.0346355,99.79042586],[4.53600955,0.03463375,99.79068564],[4.5360091,0.03463201,99.79094584],[4.53600864,0.03463026,99.79120644],[4.53600819,0.03462852,99.79146742],[4.53600773,0.03462677,99.79172878],[4.53600728,0.03462503,99.79199051],[4.53600683,0.03462329,99.79225258],[4.53600637,0.03462154,99.79251499],[4.53600592,0.0346198,99.7927777],[4.53600546,0.03461805,99.79304069],[4.53600501,0.03461631,99.79330395],[4.53600455,0.03461457,99.79356746],[4.53600409,0.03461282,99.79383119],[4.53600364,0.03461108,99.79409513],[4.53600318,0.03460933,99.79435925],[4.53600273,0.03460759,99.79462353],[4.53600227,0.03460585,99.79488795],[4.53600181,0.0346041,99.7951525],[4.53600136,0.03460236,99.79541715],[4.5360009,0.03460062,99.79568188],[4.53600044,0.03459887,99.79594667],[4.53599999,0.03459713,99.7962115],[4.53599953,0.03459538,99.79647635],[4.53599907,0.03459364,99.79674121],[4.53599862,0.0345919,99.79700604],[4.53599816,0.03459015,99.79727084],[4.5359977,0.03458841,99.79753558],[4.53599724,0.03458667,99.79780024],[4.53599678,0.03458492,99.79806479],[4.53599632,0.03458318,99.79832923],[4.53599586,0.03458144,99.79859353],[4.5359954,0.0345797,99.79885768],[4.53599494,0.03457795,99.79912164],[4.53599448,0.03457621,99.79938541],[4.53599402,0.03457447,99.79964895],[4.53599356,0.03457272,99.79991226],[4.5359931,0.03457098,99.80017532],[4.53599264,0.03456924,99.8004381],[4.53599217,0.0345675,99.80070058],[4.53599171,0.03456576,99.80096274],[4.53599125,0.03456401,99.80122457],[4.53599079,0.03456227,99.80148605],[4.53599032,0.03456053,99.80174715],[4.53598986,0.03455879,99.80200786],[4.53598939,0.03455705,99.80226816],[4.53598893,0.0345553,99.80252803],[4.53598847,0.03455356,99.80278744],[4.535988,0.03455182,99.80304639],[4.53598753,0.03455008,99.80330485],[4.53598707,0.03454834,99.8035628],[4.5359866,0.0345466,99.80382023],[4.53598614,0.03454486,99.80407711],[4.53598567,0.03454311,99.80433343],[4.5359852,0.03454137,99.80458916],[4.53598474,0.03453963,99.80484429],[4.53598427,0.03453789,99.80509881],[4.5359838,0.03453615,99.8053527],[4.53598333,0.03453441,99.80560595],[4.53598287,0.03453267,99.80585856],[4.5359824,0.03453093,99.80611052],[4.53598193,0.03452919,99.80636182],[4.53598146,0.03452745,99.80661247],[4.53598099,0.03452571,99.80686246],[4.53598052,0.03452397,99.80711177],[4.53598005,0.03452223,99.80736042],[4.53597958,0.03452049,99.80760839],[4.53597911,0.03451875,99.80785568],[4.53597864,0.03451701,99.80810229],[4.53597817,0.03451527,99.8083482],[4.5359777,0.03451353,99.80859343],[4.53597723,0.03451179,99.80883795],[4.53597676,0.03451005,99.80908177],[4.53597629,0.03450831,99.80932488],[4.53597582,0.03450657,99.80956728],[4.53597535,0.03450483,99.80980896],[4.53597488,0.03450309,99.81004992],[4.53597441,0.03450135,99.81029015],[4.53597394,0.03449961,99.81052965],[4.53597346,0.03449787,99.81076843],[4.53597299,0.03449613,99.81100648],[4.53597252,0.03449439,99.81124381],[4.53597205,0.03449265,99.81148041],[4.53597158,0.03449091,99.81171628],[4.53597111,0.03448917,99.81195143],[4.53597063,0.03448743,99.81218586],[4.53597016,0.03448569,99.81241957],[4.53596969,0.03448395,99.81265256],[4.53596922,0.03448221,99.81288482],[4.53596875,0.03448047,99.81311637],[4.53596828,0.03447873,99.81334719],[4.5359678,0.03447699,99.8135773],[4.53596733,0.03447525,99.81380669],[4.53596686,0.03447351,99.81403536],[4.53596639,0.03447177,99.81426332],[4.53596592,0.03447003,99.81449055],[4.53596545,0.03446829,99.81471708],[4.53596498,0.03446655,99.81494288],[4.53596451,0.03446481,99.81516798],[4.53596403,0.03446307,99.81539236],[4.53596356,0.03446133,99.81561602],[4.53596309,0.03445959,99.81583897],[4.53596262,0.03445785,99.81606121],[4.53596215,0.03445611,99.81628274],[4.53596168,0.03445437,99.81650355],[4.53596121,0.03445263,99.81672366],[4.53596074,0.03445089,99.81694305],[4.53596027,0.03444915,99.81716173],[4.5359598,0.03444741,99.8173797],[4.53595933,0.03444567,99.81759696],[4.53595886,0.03444392,99.81781351],[4.5359584,0.03444218,99.81802935],[4.53595793,0.03444044,99.81824449],[4.53595746,0.0344387,99.81845891],[4.53595699,0.03443696,99.81867262],[4.53595652,0.03443522,99.81888563],[4.53595605,0.03443348,99.81909793],[4.53595558,0.03443174,99.81930952],[4.53595512,0.03443,99.8195204],[4.53595465,0.03442826,99.81973057],[4.53595418,0.03442652,99.81994003],[4.53595371,0.03442478,99.82014879],[4.53595324,0.03442304,99.82035684],[4.53595277,0.0344213,99.82056418],[4.53595231,0.03441955,99.82077081],[4.53595184,0.03441781,99.82097674],[4.53595137,0.03441607,99.82118196],[4.5359509,0.03441433,99.82138647],[4.53595043,0.03441259,99.82159027],[4.53594997,0.03441085,99.82179336],[4.5359495,0.03440911,99.82199575],[4.53594903,0.03440737,99.82219743],[4.53594856,0.03440563,99.8223984],[4.53594809,0.03440389,99.82259867],[4.53594762,0.03440215,99.82279823],[4.53594715,0.03440041,99.82299709],[4.53594669,0.03439866,99.82319524],[4.53594622,0.03439692,99.82339268],[4.53594575,0.03439518,99.82358942],[4.53594528,0.03439344,99.82378546],[4.53594481,0.0343917,99.82398079],[4.53594434,0.03438996,99.82417542],[4.53594387,0.03438822,99.82436935],[4.5359434,0.03438648,99.82456257],[4.53594293,0.03438474,99.8247551],[4.53594246,0.034383,99.82494691],[4.53594199,0.03438126,99.82513803],[4.53594152,0.03437952,99.82532844],[4.53594105,0.03437778,99.82551815],[4.53594058,0.03437604,99.82570716],[4.53594011,0.0343743,99.82589547],[4.53593964,0.03437256,99.82608307],[4.53593916,0.03437082,99.82626997],[4.53593869,0.03436908,99.82645617],[4.53593822,0.03436734,99.82664167],[4.53593775,0.0343656,99.82682647],[4.53593728,0.03436386,99.82701056],[4.5359368,0.03436212,99.82719395],[4.53593633,0.03436038,99.82737664],[4.53593586,0.03435864,99.82755863],[4.53593539,0.0343569,99.82773991],[4.53593491,0.03435516,99.82792049],[4.53593444,0.03435342,99.82810037],[4.53593397,0.03435168,99.82827954],[4.5359335,0.03434994,99.82845801],[4.53593302,0.0343482,99.82863577],[4.53593255,0.03434646,99.82881282],[4.53593207,0.03434472,99.82898914],[4.5359316,0.03434298,99.82916473],[4.53593113,0.03434124,99.82933959],[4.53593065,0.0343395,99.8295137],[4.53593018,0.03433777,99.82968705],[4.5359297,0.03433603,99.82985965],[4.53592923,0.03433429,99.83003147],[4.53592875,0.03433255,99.83020252],[4.53592828,0.03433081,99.83037278],[4.5359278,0.03432907,99.83054226],[4.53592733,0.03432733,99.83071093],[4.53592685,0.03432559,99.8308788],[4.53592638,0.03432385,99.83104585],[4.5359259,0.03432211,99.83121208],[4.53592543,0.03432037,99.83137748],[4.53592495,0.03431864,99.83154204],[4.53592448,0.0343169,99.83170576],[4.535924,0.03431516,99.83186863],[4.53592352,0.03431342,99.83203064],[4.53592305,0.03431168,99.83219177],[4.53592257,0.03430994,99.83235204],[4.53592209,0.0343082,99.83251142],[4.53592162,0.03430647,99.83266991],[4.53592114,0.03430473,99.8328275],[4.53592066,0.03430299,99.83298419],[4.53592018,0.03430125,99.83313997],[4.53591971,0.03429951,99.83329482],[4.53591923,0.03429777,99.83344875],[4.53591875,0.03429603,99.83360174],[4.53591827,0.0342943,99.83375379],[4.5359178,0.03429256,99.83390489],[4.53591732,0.03429082,99.83405503],[4.53591684,0.03428908,99.83420421],[4.53591636,0.03428734,99.83435241],[4.53591588,0.0342856,99.83449963],[4.53591541,0.03428387,99.83464586],[4.53591493,0.03428213,99.8347911],[4.53591445,0.03428039,99.83493534],[4.53591397,0.03427865,99.83507856],[4.53591349,0.03427691,99.83522077],[4.53591301,0.03427518,99.83536195],[4.53591254,0.03427344,99.8355021],[4.53591206,0.0342717,99.83564121],[4.53591158,0.03426996,99.83577927],[4.5359111,0.03426822,99.83591628],[4.53591062,0.03426649,99.83605223],[4.53591014,0.03426475,99.8361871],[4.53590966,0.03426301,99.8363209],[4.53590918,0.03426127,99.83645361],[4.5359087,0.03425953,99.83658523],[4.53590822,0.0342578,99.83671575],[4.53590774,0.03425606,99.83684516],[4.53590727,0.03425432,99.83697345],[4.53590679,0.03425258,99.83710063],[4.53590631,0.03425084,99.83722668],[4.53590583,0.03424911,99.83735158],[4.53590535,0.03424737,99.83747535],[4.53590487,0.03424563,99.83759796],[4.53590439,0.03424389,99.83771941],[4.53590391,0.03424216,99.8378397],[4.53590343,0.03424042,99.83795881],[4.53590295,0.03423868,99.83807674],[4.53590247,0.03423694,99.83819349],[4.53590199,0.03423521,99.83830903],[4.53590151,0.03423347,99.83842338],[4.53590103,0.03423173,99.83853651],[4.53590055,0.03422999,99.83864842],[4.53590007,0.03422826,99.83875911],[4.53589959,0.03422652,99.83886856],[4.53589911,0.03422478,99.83897678],[4.53589863,0.03422304,99.83908374],[4.53589815,0.0342213,99.83918945],[4.53589767,0.03421957,99.8392939],[4.53589719,0.03421783,99.83939708],[4.53589671,0.03421609,99.83949898],[4.53589623,0.03421435,99.83959958],[4.53589575,0.03421262,99.83969888],[4.53589527,0.03421088,99.83979685],[4.53589479,0.03420914,99.83989349],[4.53589431,0.0342074,99.83998877],[4.53589383,0.03420567,99.84008268],[4.53589335,0.03420393,99.84017522],[4.53589286,0.03420219,99.84026635],[4.53589238,0.03420045,99.84035607],[4.5358919,0.03419872,99.84044437],[4.53589142,0.03419698,99.84053122],[4.53589094,0.03419524,99.84061662],[4.53589046,0.03419351,99.84070055],[4.53588998,0.03419177,99.84078299],[4.5358895,0.03419003,99.84086394],[4.53588902,0.03418829,99.84094337],[4.53588854,0.03418656,99.84102127],[4.53588806,0.03418482,99.84109762],[4.53588758,0.03418308,99.84117242],[4.5358871,0.03418134,99.84124565],[4.53588662,0.03417961,99.84131729],[4.53588613,0.03417787,99.84138733],[4.53588565,0.03417613,99.84145576],[4.53588517,0.0341744,99.84152255],[4.53588469,0.03417266,99.8415877],[4.53588421,0.03417092,99.84165119],[4.53588396,0.03417002,99.84168354]],"type":"LineString"},"type":"feature","properties":{"successorId":-6,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":-6,"type":"none","predecessorId":-6}},{"geometry":{"coordinates":[[4.53650955,0.03649625,99.26451101],[4.53650911,0.03649451,99.26522096],[4.53650866,0.03649276,99.2659302],[4.53650822,0.03649101,99.26663877],[4.53650777,0.03648927,99.26734672],[4.53650732,0.03648752,99.26805408],[4.53650688,0.03648578,99.26876088],[4.53650643,0.03648403,99.26946717],[4.53650599,0.03648228,99.27017298],[4.53650554,0.03648054,99.27087836],[4.53650509,0.03647879,99.27158333],[4.53650465,0.03647704,99.27228795],[4.5365042,0.0364753,99.27299224],[4.53650375,0.03647355,99.27369623],[4.53650331,0.03647181,99.27439993],[4.53650286,0.03647006,99.27510335],[4.53650242,0.03646831,99.27580648],[4.53650197,0.03646657,99.27650932],[4.53650152,0.03646482,99.27721188],[4.53650108,0.03646308,99.27791416],[4.53650063,0.03646133,99.27861616],[4.53650018,0.03645958,99.27931789],[4.53649974,0.03645784,99.28001933],[4.53649929,0.0364561,99.28072051],[4.53649885,0.03645435,99.28142141],[4.5364984,0.03645261,99.28212204],[4.53649795,0.03645086,99.2828224],[4.53649751,0.03644912,99.28352249],[4.53649706,0.03644737,99.28422231],[4.53649662,0.03644562,99.28492188],[4.53649617,0.03644388,99.28562118],[4.53649572,0.03644213,99.28632021],[4.53649528,0.03644038,99.28701899],[4.53649483,0.03643864,99.28771752],[4.53649438,0.03643689,99.28841578],[4.53649394,0.03643515,99.28911379],[4.53649349,0.0364334,99.28981155],[4.53649305,0.03643165,99.29050906],[4.5364926,0.03642991,99.29120632],[4.53649215,0.03642816,99.29190332],[4.53649171,0.03642641,99.29260009],[4.53649126,0.03642467,99.2932966],[4.53649082,0.03642292,99.29399288],[4.53649037,0.03642118,99.29468891],[4.53648992,0.03641943,99.2953847],[4.53648948,0.03641768,99.29608025],[4.53648903,0.03641594,99.29677557],[4.53648859,0.03641419,99.29747065],[4.53648814,0.03641244,99.29816549],[4.53648769,0.0364107,99.2988601],[4.53648725,0.03640895,99.29955448],[4.5364868,0.03640721,99.30024863],[4.53648636,0.03640546,99.30094254],[4.53648591,0.03640371,99.30163624],[4.53648546,0.03640197,99.3023297],[4.53648502,0.03640022,99.30302294],[4.53648457,0.03639847,99.30371596],[4.53648413,0.03639673,99.30440875],[4.53648368,0.03639498,99.30510132],[4.53648324,0.03639324,99.30579368],[4.53648279,0.03639149,99.30648581],[4.53648235,0.03638974,99.30717773],[4.5364819,0.036388,99.30786943],[4.53648145,0.03638625,99.30856092],[4.53648101,0.0363845,99.30925219],[4.53648056,0.03638276,99.30994326],[4.53648012,0.03638101,99.31063411],[4.53647967,0.03637926,99.31132475],[4.53647923,0.03637752,99.31201519],[4.53647878,0.03637577,99.31270541],[4.53647834,0.03637402,99.31339543],[4.53647789,0.03637228,99.31408525],[4.53647745,0.03637053,99.31477486],[4.536477,0.03636879,99.31546423],[4.53647656,0.03636704,99.31615333],[4.53647611,0.03636529,99.31684217],[4.53647567,0.03636355,99.31753075],[4.53647522,0.0363618,99.31821906],[4.53647478,0.03636005,99.31890711],[4.53647433,0.03635831,99.31959491],[4.53647389,0.03635656,99.32028245],[4.53647344,0.03635481,99.32096972],[4.536473,0.03635307,99.32165675],[4.53647255,0.03635132,99.32234352],[4.53647211,0.03634957,99.32303004],[4.53647166,0.03634783,99.32371631],[4.53647122,0.03634608,99.32440233],[4.53647077,0.03634433,99.3250881],[4.53647033,0.03634259,99.32577363],[4.53646988,0.03634084,99.32645891],[4.53646944,0.03633909,99.32714394],[4.53646899,0.03633735,99.32782874],[4.53646855,0.0363356,99.32851329],[4.53646811,0.03633385,99.32919761],[4.53646766,0.03633211,99.32988168],[4.53646722,0.03633036,99.33056552],[4.53646677,0.03632861,99.33124913],[4.53646633,0.03632687,99.3319325],[4.53646588,0.03632512,99.33261563],[4.53646544,0.03632337,99.33329854],[4.53646499,0.03632163,99.33398121],[4.53646455,0.03631988,99.33466366],[4.5364641,0.03631813,99.33534587],[4.53646366,0.03631639,99.33602787],[4.53646321,0.03631464,99.33670963],[4.53646277,0.0363129,99.33739117],[4.53646232,0.03631115,99.3380725],[4.53646188,0.0363094,99.33875361],[4.53646143,0.03630766,99.33943453],[4.53646099,0.03630591,99.34011526],[4.53646054,0.03630416,99.34079581],[4.53646009,0.03630242,99.34147618],[4.53645965,0.03630067,99.3421564],[4.5364592,0.03629892,99.34283647],[4.53645876,0.03629718,99.3435164],[4.53645831,0.03629543,99.34419619],[4.53645787,0.03629368,99.34487587],[4.53645742,0.03629194,99.34555543],[4.53645698,0.03629019,99.3462349],[4.53645653,0.03628844,99.34691427],[4.53645609,0.0362867,99.34759356],[4.53645564,0.03628495,99.34827278],[4.53645519,0.03628321,99.34895194],[4.53645475,0.03628146,99.34963104],[4.5364543,0.03627971,99.3503101],[4.53645386,0.03627797,99.35098911],[4.53645341,0.03627622,99.35166809],[4.53645296,0.03627447,99.35234704],[4.53645252,0.03627273,99.35302596],[4.53645207,0.03627098,99.35370487],[4.53645163,0.03626924,99.35438377],[4.53645118,0.03626749,99.35506266],[4.53645073,0.03626574,99.35574155],[4.53645029,0.036264,99.35642044],[4.53644984,0.03626225,99.35709935],[4.53644939,0.0362605,99.35777828],[4.53644895,0.03625876,99.35845723],[4.5364485,0.03625701,99.35913621],[4.53644805,0.03625527,99.35981522],[4.53644761,0.03625352,99.36049428],[4.53644716,0.03625177,99.36117339],[4.53644671,0.03625003,99.36185255],[4.53644627,0.03624828,99.36253177],[4.53644582,0.03624654,99.36321106],[4.53644537,0.03624479,99.36389042],[4.53644493,0.03624304,99.36456986],[4.53644448,0.0362413,99.36524939],[4.53644403,0.03623955,99.36592902],[4.53644358,0.03623781,99.36660878],[4.53644314,0.03623606,99.36728871],[4.53644269,0.03623431,99.36796883],[4.53644224,0.03623257,99.36864918],[4.53644179,0.03623082,99.36932979],[4.53644135,0.03622908,99.37001066],[4.5364409,0.03622733,99.37069181],[4.53644045,0.03622558,99.37137324],[4.53644,0.03622384,99.37205494],[4.53643956,0.03622209,99.37273693],[4.53643911,0.03622035,99.3734192],[4.53643866,0.0362186,99.37410176],[4.53643821,0.03621685,99.37478462],[4.53643777,0.03621511,99.37546777],[4.53643732,0.03621336,99.37615122],[4.53643687,0.03621162,99.37683497],[4.53643642,0.03620987,99.37751902],[4.53643597,0.03620812,99.37820339],[4.53643553,0.03620638,99.37888807],[4.53643508,0.03620463,99.37957306],[4.53643463,0.03620289,99.38025837],[4.53643418,0.03620114,99.38094401],[4.53643373,0.0361994,99.38162996],[4.53643328,0.03619765,99.38231625],[4.53643284,0.0361959,99.38300287],[4.53643239,0.03619416,99.38368982],[4.53643194,0.03619241,99.38437711],[4.53643149,0.03619067,99.38506474],[4.53643104,0.03618892,99.38575271],[4.53643059,0.03618718,99.38644103],[4.53643014,0.03618543,99.38712971],[4.53642969,0.03618369,99.38781873],[4.53642924,0.03618194,99.38850812],[4.5364288,0.03618019,99.38919786],[4.53642835,0.03617845,99.38988797],[4.5364279,0.0361767,99.39057844],[4.53642745,0.03617496,99.39126928],[4.536427,0.03617321,99.3919605],[4.53642655,0.03617147,99.39265209],[4.5364261,0.03616972,99.39334406],[4.53642565,0.03616798,99.39403641],[4.5364252,0.03616623,99.39472915],[4.53642475,0.03616449,99.39542228],[4.5364243,0.03616274,99.3961158],[4.53642385,0.03616099,99.39680972],[4.5364234,0.03615925,99.39750403],[4.53642295,0.0361575,99.39819874],[4.5364225,0.03615576,99.39889386],[4.53642205,0.03615401,99.39958939],[4.5364216,0.03615227,99.40028533],[4.53642115,0.03615052,99.40098168],[4.5364207,0.03614878,99.40167845],[4.53642025,0.03614703,99.40237564],[4.5364198,0.03614529,99.40307326],[4.53641935,0.03614354,99.4037713],[4.5364189,0.0361418,99.40446977],[4.53641845,0.03614005,99.40516868],[4.536418,0.03613831,99.40586802],[4.53641755,0.03613656,99.4065678],[4.5364171,0.03613482,99.40726802],[4.53641665,0.03613307,99.40796868],[4.5364162,0.03613133,99.40866978],[4.53641574,0.03612958,99.40937132],[4.53641529,0.03612784,99.4100733],[4.53641484,0.03612609,99.41077574],[4.53641439,0.03612435,99.41147865],[4.53641394,0.0361226,99.41218205],[4.53641349,0.03612086,99.41288597],[4.53641304,0.03611911,99.41359042],[4.53641259,0.03611737,99.41429541],[4.53641214,0.03611562,99.41500096],[4.53641168,0.03611388,99.41570707],[4.53641123,0.03611213,99.41641375],[4.53641078,0.03611039,99.41712102],[4.53641033,0.03610864,99.41782888],[4.53640988,0.0361069,99.41853734],[4.53640943,0.03610515,99.41924641],[4.53640897,0.03610341,99.41995609],[4.53640852,0.03610166,99.42066641],[4.53640807,0.03609992,99.42137736],[4.53640762,0.03609817,99.42208897],[4.53640717,0.03609643,99.42280123],[4.53640672,0.03609468,99.42351415],[4.53640626,0.03609294,99.42422775],[4.53640581,0.03609119,99.42494203],[4.53640536,0.03608945,99.42565701],[4.53640491,0.0360877,99.42637269],[4.53640446,0.03608596,99.42708908],[4.53640401,0.03608421,99.4278062],[4.53640355,0.03608247,99.42852404],[4.5364031,0.03608072,99.42924263],[4.53640265,0.03607898,99.42996196],[4.5364022,0.03607723,99.43068206],[4.53640175,0.03607549,99.43140292],[4.53640129,0.03607374,99.43212456],[4.53640084,0.036072,99.43284698],[4.53640039,0.03607025,99.4335702],[4.53639994,0.03606851,99.43429423],[4.53639949,0.03606676,99.43501907],[4.53639903,0.03606502,99.43574473],[4.53639858,0.03606327,99.43647123],[4.53639813,0.03606153,99.43719857],[4.53639768,0.03605978,99.43792676],[4.53639723,0.03605804,99.43865581],[4.53639678,0.03605629,99.43938574],[4.53639632,0.03605455,99.44011654],[4.53639587,0.0360528,99.44084823],[4.53639542,0.03605106,99.44158081],[4.53639497,0.03604931,99.44231431],[4.53639452,0.03604757,99.44304872],[4.53639407,0.03604582,99.44378405],[4.53639361,0.03604408,99.44452033],[4.53639316,0.03604233,99.44525754],[4.53639271,0.03604059,99.44599571],[4.53639226,0.03603884,99.44673484],[4.53639181,0.0360371,99.44747493],[4.53639136,0.03603535,99.448216],[4.5363909,0.03603361,99.44895805],[4.53639045,0.03603186,99.44970108],[4.53639,0.03603012,99.4504451],[4.53638955,0.03602837,99.45119012],[4.5363891,0.03602663,99.45193613],[4.53638865,0.03602488,99.45268315],[4.5363882,0.03602314,99.45343119],[4.53638775,0.03602139,99.45418024],[4.53638729,0.03601965,99.45493031],[4.53638684,0.0360179,99.45568141],[4.53638639,0.03601616,99.45643355],[4.53638594,0.03601441,99.45718672],[4.53638549,0.03601267,99.45794094],[4.53638504,0.03601092,99.45869621],[4.53638459,0.03600918,99.45945254],[4.53638414,0.03600743,99.46020992],[4.53638369,0.03600569,99.46096837],[4.53638324,0.03600394,99.4617279],[4.53638279,0.0360022,99.4624885],[4.53638233,0.03600045,99.46325019],[4.53638188,0.03599871,99.46401296],[4.53638143,0.03599696,99.46477683],[4.53638098,0.03599522,99.46554179],[4.53638053,0.03599347,99.46630786],[4.53638008,0.03599173,99.46707505],[4.53637963,0.03598998,99.46784334],[4.53637918,0.03598824,99.46861276],[4.53637873,0.03598649,99.46938329],[4.53637828,0.03598474,99.47015494],[4.53637783,0.035983,99.47092772],[4.53637738,0.03598125,99.47170162],[4.53637693,0.03597951,99.47247664],[4.53637648,0.03597776,99.4732528],[4.53637603,0.03597602,99.47403008],[4.53637558,0.03597427,99.47480849],[4.53637513,0.03597253,99.47558804],[4.53637468,0.03597078,99.47636872],[4.53637423,0.03596904,99.47715054],[4.53637378,0.03596729,99.4779335],[4.53637333,0.03596555,99.47871759],[4.53637288,0.0359638,99.47950283],[4.53637243,0.03596205,99.48028921],[4.53637198,0.03596031,99.48107672],[4.53637153,0.03595856,99.48186536],[4.53637108,0.03595682,99.4826551],[4.53637063,0.03595507,99.48344591],[4.53637018,0.03595333,99.48423778],[4.53636973,0.03595158,99.48503068],[4.53636928,0.03594984,99.48582459],[4.53636883,0.03594809,99.4866195],[4.53636838,0.03594635,99.48741538],[4.53636793,0.0359446,99.48821221],[4.53636748,0.03594285,99.48900997],[4.53636703,0.03594111,99.48980863],[4.53636658,0.03593936,99.49060819],[4.53636613,0.03593762,99.49140861],[4.53636568,0.03593587,99.49220987],[4.53636523,0.03593413,99.49301195],[4.53636478,0.03593238,99.49381484],[4.53636433,0.03593064,99.49461851],[4.53636388,0.03592889,99.49542294],[4.53636343,0.03592715,99.49622811],[4.53636298,0.0359254,99.497034],[4.53636253,0.03592365,99.49784059],[4.53636208,0.03592191,99.49864785],[4.53636163,0.03592016,99.49945577],[4.53636118,0.03591842,99.50026432],[4.53636073,0.03591667,99.50107348],[4.53636028,0.03591493,99.50188323],[4.53635983,0.03591318,99.50269355],[4.53635938,0.03591144,99.50350442],[4.53635893,0.03590969,99.5043158],[4.53635848,0.03590795,99.5051277],[4.53635804,0.0359062,99.50594007],[4.53635759,0.03590445,99.50675292],[4.53635714,0.03590271,99.50756621],[4.53635669,0.03590096,99.50837994],[4.53635624,0.03589922,99.50919408],[4.53635579,0.03589747,99.51000863],[4.53635534,0.03589573,99.51082355],[4.53635488,0.03589398,99.51163883],[4.53635443,0.03589224,99.51245445],[4.53635398,0.03589049,99.5132704],[4.53635353,0.03588875,99.51408667],[4.53635308,0.035887,99.51490322],[4.53635263,0.03588525,99.51572004],[4.53635218,0.03588351,99.51653712],[4.53635173,0.03588176,99.51735444],[4.53635128,0.03588002,99.51817198],[4.53635083,0.03587827,99.51898971],[4.53635038,0.03587653,99.51980764],[4.53634993,0.03587478,99.52062573],[4.53634948,0.03587304,99.52144397],[4.53634903,0.03587129,99.52226234],[4.53634858,0.03586955,99.52308082],[4.53634813,0.0358678,99.5238994],[4.53634768,0.03586606,99.52471806],[4.53634723,0.03586431,99.52553678],[4.53634678,0.03586256,99.52635554],[4.53634633,0.03586082,99.52717433],[4.53634588,0.03585907,99.52799312],[4.53634543,0.03585733,99.52881191],[4.53634498,0.03585558,99.52963066],[4.53634453,0.03585384,99.53044937],[4.53634408,0.03585209,99.53126802],[4.53634363,0.03585035,99.53208659],[4.53634317,0.0358486,99.53290505],[4.53634272,0.03584686,99.5337234],[4.53634227,0.03584511,99.53454162],[4.53634182,0.03584337,99.53535969],[4.53634137,0.03584162,99.53617758],[4.53634092,0.03583988,99.53699529],[4.53634047,0.03583813,99.53781279],[4.53634002,0.03583639,99.53863008],[4.53633957,0.03583464,99.53944712],[4.53633912,0.0358329,99.5402639],[4.53633867,0.03583115,99.54108041],[4.53633821,0.03582941,99.54189662],[4.53633776,0.03582766,99.54271253],[4.53633731,0.03582591,99.54352811],[4.53633686,0.03582417,99.54434334],[4.53633641,0.03582242,99.54515822],[4.53633596,0.03582068,99.54597272],[4.53633551,0.03581893,99.54678683],[4.53633506,0.03581719,99.54760053],[4.5363346,0.03581544,99.5484138],[4.53633415,0.0358137,99.54922663],[4.5363337,0.03581195,99.55003899],[4.53633325,0.03581021,99.55085089],[4.5363328,0.03580846,99.55166229],[4.53633235,0.03580672,99.55247317],[4.5363319,0.03580497,99.55328354],[4.53633144,0.03580323,99.55409336],[4.53633099,0.03580148,99.55490262],[4.53633054,0.03579974,99.5557113],[4.53633009,0.03579799,99.55651939],[4.53632964,0.03579625,99.55732687],[4.53632918,0.0357945,99.55813372],[4.53632873,0.03579276,99.55893994],[4.53632828,0.03579101,99.55974549],[4.53632783,0.03578927,99.56055036],[4.53632738,0.03578752,99.56135454],[4.53632693,0.03578578,99.56215801],[4.53632647,0.03578403,99.56296075],[4.53632602,0.03578229,99.56376275],[4.53632557,0.03578054,99.56456399],[4.53632512,0.0357788,99.56536446],[4.53632467,0.03577705,99.56616412],[4.53632421,0.03577531,99.56696298],[4.53632376,0.03577356,99.56776101],[4.53632331,0.03577182,99.5685582],[4.53632286,0.03577007,99.56935453],[4.5363224,0.03576833,99.57014998],[4.53632195,0.03576658,99.57094453],[4.5363215,0.03576484,99.57173818],[4.53632105,0.03576309,99.5725309],[4.53632059,0.03576135,99.57332267],[4.53632014,0.0357596,99.57411348],[4.53631969,0.03575786,99.57490332],[4.53631924,0.03575611,99.57569216],[4.53631878,0.03575437,99.57647998],[4.53631833,0.03575262,99.57726678],[4.53631788,0.03575088,99.57805254],[4.53631743,0.03574914,99.57883723],[4.53631697,0.03574739,99.57962085],[4.53631652,0.03574565,99.58040337],[4.53631607,0.0357439,99.58118478],[4.53631562,0.03574216,99.58196506],[4.53631516,0.03574041,99.5827442],[4.53631471,0.03573867,99.58352217],[4.53631426,0.03573692,99.58429896],[4.53631381,0.03573518,99.58507456],[4.53631335,0.03573343,99.58584895],[4.5363129,0.03573169,99.5866221],[4.53631245,0.03572994,99.58739402],[4.53631199,0.0357282,99.58816466],[4.53631154,0.03572645,99.58893403],[4.53631109,0.03572471,99.5897021],[4.53631063,0.03572296,99.59046886],[4.53631018,0.03572122,99.59123429],[4.53630973,0.03571947,99.59199836],[4.53630928,0.03571773,99.59276106],[4.53630882,0.03571598,99.59352236],[4.53630837,0.03571424,99.59428223],[4.53630792,0.0357125,99.59504065],[4.53630746,0.03571075,99.59579761],[4.53630701,0.03570901,99.59655307],[4.53630656,0.03570726,99.59730701],[4.5363061,0.03570552,99.59805942],[4.53630565,0.03570377,99.59881026],[4.5363052,0.03570203,99.59955951],[4.53630474,0.03570028,99.60030715],[4.53630429,0.03569854,99.60105316],[4.53630384,0.03569679,99.60179751],[4.53630338,0.03569505,99.60254018],[4.53630293,0.03569331,99.60328115],[4.53630248,0.03569156,99.60402039],[4.53630202,0.03568982,99.60475788],[4.53630157,0.03568807,99.6054936],[4.53630111,0.03568633,99.60622752],[4.53630066,0.03568458,99.60695963],[4.53630021,0.03568284,99.60768989],[4.53629975,0.03568109,99.60841829],[4.5362993,0.03567935,99.60914479],[4.53629884,0.03567761,99.60986939],[4.53629839,0.03567586,99.61059206],[4.53629794,0.03567412,99.61131276],[4.53629748,0.03567237,99.61203149],[4.53629703,0.03567063,99.61274821],[4.53629657,0.03566888,99.61346291],[4.53629612,0.03566714,99.61417556],[4.53629566,0.0356654,99.61488615],[4.53629521,0.03566365,99.61559466],[4.53629475,0.03566191,99.61630108],[4.5362943,0.03566016,99.61700542],[4.53629384,0.03565842,99.61770765],[4.53629339,0.03565667,99.61840778],[4.53629293,0.03565493,99.61910579],[4.53629248,0.03565319,99.61980167],[4.53629202,0.03565144,99.62049542],[4.53629157,0.0356497,99.62118703],[4.53629111,0.03564795,99.62187648],[4.53629066,0.03564621,99.62256377],[4.5362902,0.03564447,99.62324889],[4.53628975,0.03564272,99.62393183],[4.53628929,0.03564098,99.62461259],[4.53628884,0.03563923,99.62529114],[4.53628838,0.03563749,99.62596749],[4.53628792,0.03563575,99.62664163],[4.53628747,0.035634,99.62731354],[4.53628701,0.03563226,99.62798322],[4.53628656,0.03563051,99.62865065],[4.5362861,0.03562877,99.62931584],[4.53628565,0.03562703,99.62997876],[4.53628519,0.03562528,99.63063941],[4.53628473,0.03562354,99.63129779],[4.53628428,0.03562179,99.63195388],[4.53628382,0.03562005,99.63260767],[4.53628337,0.03561831,99.63325915],[4.53628291,0.03561656,99.63390832],[4.53628246,0.03561482,99.63455516],[4.536282,0.03561307,99.63519967],[4.53628154,0.03561133,99.63584183],[4.53628109,0.03560959,99.63648165],[4.53628063,0.03560784,99.6371191],[4.53628018,0.0356061,99.63775417],[4.53627972,0.03560435,99.63838687],[4.53627926,0.03560261,99.63901717],[4.53627881,0.03560087,99.63964508],[4.53627835,0.03559912,99.64027057],[4.5362779,0.03559738,99.64089365],[4.53627744,0.03559563,99.64151429],[4.53627699,0.03559389,99.64213249],[4.53627653,0.03559215,99.64274825],[4.53627607,0.0355904,99.64336154],[4.53627562,0.03558866,99.64397236],[4.53627516,0.03558691,99.64458071],[4.53627471,0.03558517,99.64518656],[4.53627425,0.03558343,99.64578992],[4.5362738,0.03558168,99.6463908],[4.53627334,0.03557994,99.6469892],[4.53627289,0.03557819,99.64758516],[4.53627243,0.03557645,99.64817869],[4.53627198,0.03557471,99.64876982],[4.53627152,0.03557296,99.64935855],[4.53627107,0.03557122,99.64994492],[4.53627061,0.03556947,99.65052894],[4.53627016,0.03556773,99.65111063],[4.5362697,0.03556599,99.65169001],[4.53626925,0.03556424,99.6522671],[4.53626879,0.0355625,99.65284193],[4.53626834,0.03556075,99.6534145],[4.53626788,0.03555901,99.65398484],[4.53626743,0.03555726,99.65455297],[4.53626697,0.03555552,99.65511891],[4.53626652,0.03555378,99.65568267],[4.53626607,0.03555203,99.65624424],[4.53626561,0.03555029,99.65680362],[4.53626516,0.03554854,99.65736081],[4.53626471,0.0355468,99.65791581],[4.53626425,0.03554505,99.6584686],[4.5362638,0.03554331,99.65901919],[4.53626335,0.03554157,99.65956757],[4.53626289,0.03553982,99.66011374],[4.53626244,0.03553808,99.66065769],[4.53626199,0.03553633,99.66119943],[4.53626153,0.03553459,99.66173893],[4.53626108,0.03553284,99.66227621],[4.53626063,0.0355311,99.66281126],[4.53626017,0.03552935,99.66334407],[4.53625972,0.03552761,99.66387464],[4.53625927,0.03552586,99.66440297],[4.53625882,0.03552412,99.66492905],[4.53625836,0.03552237,99.66545288],[4.53625791,0.03552063,99.66597445],[4.53625746,0.03551888,99.66649376],[4.536257,0.03551714,99.66701082],[4.53625655,0.0355154,99.6675256],[4.5362561,0.03551365,99.66803812],[4.53625565,0.03551191,99.66854836],[4.53625519,0.03551016,99.66905632],[4.53625474,0.03550842,99.669562],[4.53625429,0.03550667,99.6700654],[4.53625384,0.03550493,99.67056651],[4.53625338,0.03550318,99.67106532],[4.53625293,0.03550144,99.67156184],[4.53625248,0.03549969,99.67205606],[4.53625203,0.03549795,99.67254797],[4.53625157,0.0354962,99.67303758],[4.53625112,0.03549446,99.67352488],[4.53625067,0.03549271,99.67400986],[4.53625022,0.03549097,99.67449253],[4.53624976,0.03548922,99.67497287],[4.53624931,0.03548748,99.67545088],[4.53624886,0.03548574,99.67592657],[4.53624841,0.03548399,99.67639992],[4.53624795,0.03548225,99.67687094],[4.5362475,0.0354805,99.67733962],[4.53624705,0.03547876,99.67780595],[4.53624659,0.03547701,99.67826993],[4.53624614,0.03547527,99.67873156],[4.53624569,0.03547352,99.67919084],[4.53624523,0.03547178,99.67964776],[4.53624478,0.03547003,99.68010231],[4.53624433,0.03546829,99.6805545],[4.53624387,0.03546655,99.68100432],[4.53624342,0.0354648,99.68145176],[4.53624296,0.03546306,99.68189682],[4.53624251,0.03546131,99.68233951],[4.53624206,0.03545957,99.6827798],[4.5362416,0.03545782,99.68321771],[4.53624115,0.03545608,99.68365322],[4.53624069,0.03545434,99.68408634],[4.53624024,0.03545259,99.68451705],[4.53623978,0.03545085,99.68494536],[4.53623933,0.0354491,99.68537126],[4.53623887,0.03544736,99.68579476],[4.53623842,0.03544562,99.68621587],[4.53623796,0.03544387,99.68663461],[4.53623751,0.03544213,99.687051],[4.53623705,0.03544038,99.68746505],[4.5362366,0.03543864,99.68787679],[4.53623614,0.0354369,99.68828622],[4.53623568,0.03543515,99.68869336],[4.53623523,0.03543341,99.68909823],[4.53623477,0.03543167,99.68950085],[4.53623431,0.03542992,99.68990123],[4.53623386,0.03542818,99.6902994],[4.5362334,0.03542643,99.69069535],[4.53623294,0.03542469,99.69108912],[4.53623249,0.03542295,99.69148073],[4.53623203,0.0354212,99.69187017],[4.53623157,0.03541946,99.69225748],[4.53623112,0.03541772,99.69264267],[4.53623066,0.03541597,99.69302576],[4.5362302,0.03541423,99.69340675],[4.53622974,0.03541249,99.69378569],[4.53622929,0.03541074,99.69416258],[4.53622883,0.035409,99.69453744],[4.53622837,0.03540726,99.69491029],[4.53622791,0.03540551,99.69528116],[4.53622745,0.03540377,99.69565005],[4.536227,0.03540203,99.69601698],[4.53622654,0.03540028,99.69638198],[4.53622608,0.03539854,99.69674504],[4.53622562,0.0353968,99.69710619],[4.53622516,0.03539505,99.69746545],[4.5362247,0.03539331,99.69782282],[4.53622425,0.03539157,99.69817833],[4.53622379,0.03538983,99.69853199],[4.53622333,0.03538808,99.69888381],[4.53622287,0.03538634,99.69923381],[4.53622241,0.0353846,99.69958201],[4.53622195,0.03538285,99.69992843],[4.53622149,0.03538111,99.70027306],[4.53622103,0.03537937,99.70061594],[4.53622058,0.03537762,99.70095708],[4.53622012,0.03537588,99.70129649],[4.53621966,0.03537414,99.70163419],[4.5362192,0.0353724,99.7019702],[4.53621874,0.03537065,99.70230452],[4.53621828,0.03536891,99.70263718],[4.53621782,0.03536717,99.70296819],[4.53621736,0.03536542,99.70329757],[4.5362169,0.03536368,99.70362533],[4.53621644,0.03536194,99.70395149],[4.53621598,0.0353602,99.70427606],[4.53621552,0.03535845,99.70459906],[4.53621507,0.03535671,99.70492051],[4.53621461,0.03535497,99.70524041],[4.53621415,0.03535322,99.7055588],[4.53621369,0.03535148,99.70587567],[4.53621323,0.03534974,99.70619105],[4.53621277,0.035348,99.70650496],[4.53621231,0.03534625,99.70681741],[4.53621185,0.03534451,99.70712841],[4.53621139,0.03534277,99.70743798],[4.53621093,0.03534103,99.70774614],[4.53621047,0.03533928,99.7080529],[4.53621001,0.03533754,99.70835828],[4.53620955,0.0353358,99.70866229],[4.53620909,0.03533405,99.70896496],[4.53620863,0.03533231,99.70926629],[4.53620817,0.03533057,99.7095663],[4.53620771,0.03532883,99.70986501],[4.53620726,0.03532708,99.71016244],[4.5362068,0.03532534,99.71045859],[4.53620634,0.0353236,99.71075349],[4.53620588,0.03532185,99.71104716],[4.53620542,0.03532011,99.7113396],[4.53620496,0.03531837,99.71163084],[4.5362045,0.03531663,99.71192087],[4.53620404,0.03531488,99.7122097],[4.53620358,0.03531314,99.71249733],[4.53620312,0.0353114,99.71278376],[4.53620266,0.03530965,99.71306899],[4.53620221,0.03530791,99.71335303],[4.53620175,0.03530617,99.71363587],[4.53620129,0.03530442,99.71391753],[4.53620083,0.03530268,99.71419799],[4.53620037,0.03530094,99.71447727],[4.53619991,0.0352992,99.71475536],[4.53619945,0.03529745,99.71503226],[4.536199,0.03529571,99.71530798],[4.53619854,0.03529397,99.71558252],[4.53619808,0.03529222,99.71585588],[4.53619762,0.03529048,99.71612806],[4.53619716,0.03528874,99.71639906],[4.5361967,0.03528699,99.71666889],[4.53619625,0.03528525,99.71693754],[4.53619579,0.03528351,99.71720502],[4.53619533,0.03528177,99.71747133],[4.53619487,0.03528002,99.71773648],[4.53619441,0.03527828,99.71800045],[4.53619396,0.03527654,99.71826326],[4.5361935,0.03527479,99.7185249],[4.53619304,0.03527305,99.71878539],[4.53619258,0.03527131,99.71904471],[4.53619212,0.03526956,99.71930286],[4.53619167,0.03526782,99.71955987],[4.53619121,0.03526608,99.71981571],[4.53619075,0.03526433,99.7200704],[4.53619029,0.03526259,99.72032393],[4.53618984,0.03526085,99.72057631],[4.53618938,0.0352591,99.72082754],[4.53618892,0.03525736,99.72107762],[4.53618846,0.03525562,99.72132655],[4.536188,0.03525387,99.72157434],[4.53618755,0.03525213,99.72182099],[4.53618709,0.03525039,99.72206649],[4.53618663,0.03524864,99.72231086],[4.53618617,0.0352469,99.7225541],[4.53618572,0.03524516,99.72279622],[4.53618526,0.03524342,99.72303721],[4.5361848,0.03524167,99.72327708],[4.53618434,0.03523993,99.72351584],[4.53618389,0.03523819,99.72375348],[4.53618343,0.03523644,99.72399002],[4.53618297,0.0352347,99.72422544],[4.53618251,0.03523296,99.72445976],[4.53618206,0.03523121,99.72469298],[4.5361816,0.03522947,99.7249251],[4.53618114,0.03522773,99.72515612],[4.53618068,0.03522598,99.72538605],[4.53618023,0.03522424,99.72561489],[4.53617977,0.0352225,99.72584264],[4.53617931,0.03522075,99.72606931],[4.53617885,0.03521901,99.7262949],[4.5361784,0.03521727,99.7265194],[4.53617794,0.03521552,99.72674283],[4.53617748,0.03521378,99.72696519],[4.53617702,0.03521204,99.72718647],[4.53617657,0.03521029,99.72740669],[4.53617611,0.03520855,99.72762584],[4.53617565,0.03520681,99.72784392],[4.5361752,0.03520506,99.72806095],[4.53617474,0.03520332,99.72827692],[4.53617428,0.03520158,99.72849183],[4.53617382,0.03519983,99.7287057],[4.53617337,0.03519809,99.72891851],[4.53617291,0.03519635,99.72913027],[4.53617245,0.0351946,99.729341],[4.53617199,0.03519286,99.72955068],[4.53617154,0.03519112,99.72975932],[4.53617108,0.03518937,99.72996692],[4.53617062,0.03518763,99.73017349],[4.53617017,0.03518589,99.73037903],[4.53616971,0.03518414,99.73058354],[4.53616925,0.0351824,99.73078702],[4.53616879,0.03518066,99.73098948],[4.53616834,0.03517891,99.73119092],[4.53616788,0.03517717,99.73139134],[4.53616742,0.03517543,99.73159074],[4.53616697,0.03517368,99.73178913],[4.53616651,0.03517194,99.73198651],[4.53616605,0.0351702,99.73218287],[4.53616559,0.03516845,99.73237823],[4.53616514,0.03516671,99.73257259],[4.53616468,0.03516497,99.73276595],[4.53616422,0.03516322,99.7329583],[4.53616376,0.03516148,99.73314966],[4.53616331,0.03515974,99.73334002],[4.53616285,0.03515799,99.73352939],[4.53616239,0.03515625,99.7337178],[4.53616194,0.03515451,99.73390526],[4.53616148,0.03515276,99.73409181],[4.53616102,0.03515102,99.73427745],[4.53616056,0.03514928,99.73446223],[4.53616011,0.03514754,99.73464616],[4.53615965,0.03514579,99.73482928],[4.53615919,0.03514405,99.73501159],[4.53615873,0.03514231,99.73519314],[4.53615827,0.03514056,99.73537393],[4.53615782,0.03513882,99.73555401],[4.53615736,0.03513708,99.73573339],[4.5361569,0.03513533,99.7359121],[4.53615644,0.03513359,99.73609016],[4.53615599,0.03513185,99.7362676],[4.53615553,0.0351301,99.73644444],[4.53615507,0.03512836,99.73662071],[4.53615461,0.03512662,99.73679643],[4.53615415,0.03512488,99.73697163],[4.5361537,0.03512313,99.73714634],[4.53615324,0.03512139,99.73732057],[4.53615278,0.03511965,99.73749436],[4.53615232,0.0351179,99.73766773],[4.53615186,0.03511616,99.7378407],[4.5361514,0.03511442,99.73801331],[4.53615095,0.03511267,99.73818557],[4.53615049,0.03511093,99.73835751],[4.53615003,0.03510919,99.73852916],[4.53614957,0.03510744,99.73870054],[4.53614911,0.0351057,99.73887168],[4.53614866,0.03510396,99.7390426],[4.5361482,0.03510222,99.73921334],[4.53614774,0.03510047,99.7393839],[4.53614728,0.03509873,99.73955434],[4.53614682,0.03509699,99.73972465],[4.53614636,0.03509524,99.73989489],[4.53614591,0.0350935,99.74006506],[4.53614545,0.03509176,99.74023519],[4.53614499,0.03509002,99.74040532],[4.53614453,0.03508827,99.74057546],[4.53614407,0.03508653,99.74074565],[4.53614361,0.03508479,99.7409159],[4.53614316,0.03508304,99.74108621],[4.5361427,0.0350813,99.74125657],[4.53614224,0.03507956,99.74142698],[4.53614178,0.03507782,99.74159742],[4.53614132,0.03507607,99.74176788],[4.53614086,0.03507433,99.74193836],[4.5361404,0.03507259,99.74210884],[4.53613995,0.03507084,99.74227933],[4.53613949,0.0350691,99.7424498],[4.53613903,0.03506736,99.74262024],[4.53613857,0.03506562,99.74279066],[4.53613811,0.03506387,99.74296104],[4.53613765,0.03506213,99.74313137],[4.53613719,0.03506039,99.74330164],[4.53613673,0.03505864,99.74347184],[4.53613628,0.0350569,99.74364196],[4.53613582,0.03505516,99.743812],[4.53613536,0.03505342,99.74398194],[4.5361349,0.03505167,99.74415177],[4.53613444,0.03504993,99.74432148],[4.53613398,0.03504819,99.74449107],[4.53613352,0.03504644,99.74466052],[4.53613306,0.0350447,99.74482983],[4.5361326,0.03504296,99.74499898],[4.53613214,0.03504122,99.74516796],[4.53613169,0.03503947,99.74533677],[4.53613123,0.03503773,99.74550539],[4.53613077,0.03503599,99.74567382],[4.53613031,0.03503425,99.74584204],[4.53612985,0.0350325,99.74601005],[4.53612939,0.03503076,99.74617783],[4.53612893,0.03502902,99.74634537],[4.53612847,0.03502728,99.74651266],[4.53612801,0.03502553,99.7466797],[4.53612755,0.03502379,99.74684648],[4.53612709,0.03502205,99.74701299],[4.53612663,0.03502031,99.74717922],[4.53612617,0.03501856,99.74734516],[4.53612571,0.03501682,99.74751082],[4.53612525,0.03501508,99.74767616],[4.53612479,0.03501334,99.7478412],[4.53612433,0.0350116,99.74800592],[4.53612387,0.03500985,99.74817031],[4.53612341,0.03500811,99.74833435],[4.53612295,0.03500637,99.74849804],[4.53612249,0.03500463,99.74866137],[4.53612203,0.03500288,99.74882436],[4.53612157,0.03500114,99.74898701],[4.53612111,0.0349994,99.74914934],[4.53612065,0.03499766,99.74931136],[4.53612019,0.03499592,99.74947308],[4.53611973,0.03499417,99.74963452],[4.53611927,0.03499243,99.74979567],[4.53611881,0.03499069,99.74995657],[4.53611835,0.03498895,99.75011721],[4.53611788,0.0349872,99.7502776],[4.53611742,0.03498546,99.75043777],[4.53611696,0.03498372,99.75059772],[4.5361165,0.03498198,99.75075746],[4.53611604,0.03498023,99.75091701],[4.53611558,0.03497849,99.75107637],[4.53611512,0.03497675,99.75123555],[4.53611466,0.03497501,99.75139458],[4.5361142,0.03497327,99.75155344],[4.53611374,0.03497152,99.75171217],[4.53611328,0.03496978,99.75187076],[4.53611282,0.03496804,99.75202923],[4.53611236,0.0349663,99.75218758],[4.5361119,0.03496455,99.75234583],[4.53611144,0.03496281,99.75250399],[4.53611097,0.03496107,99.75266206],[4.53611051,0.03495933,99.75282007],[4.53611005,0.03495758,99.75297801],[4.53610959,0.03495584,99.75313589],[4.53610913,0.0349541,99.75329374],[4.53610867,0.03495236,99.75345156],[4.53610821,0.03495062,99.75360935],[4.53610775,0.03494887,99.75376713],[4.53610729,0.03494713,99.75392491],[4.53610683,0.03494539,99.7540827],[4.53610637,0.03494365,99.75424051],[4.53610591,0.0349419,99.75439835],[4.53610545,0.03494016,99.75455623],[4.53610499,0.03493842,99.75471417],[4.53610452,0.03493668,99.75487216],[4.53610406,0.03493493,99.75503022],[4.5361036,0.03493319,99.75518837],[4.53610314,0.03493145,99.7553466],[4.53610268,0.03492971,99.75550494],[4.53610222,0.03492797,99.75566339],[4.53610176,0.03492622,99.75582197],[4.5361013,0.03492448,99.75598068],[4.53610084,0.03492274,99.75613953],[4.53610038,0.034921,99.75629853],[4.53609992,0.03491925,99.7564577],[4.53609946,0.03491751,99.75661705],[4.53609899,0.03491577,99.75677658],[4.53609853,0.03491403,99.7569363],[4.53609807,0.03491228,99.75709623],[4.53609761,0.03491054,99.75725638],[4.53609715,0.0349088,99.75741676],[4.53609669,0.03490706,99.75757737],[4.53609623,0.03490532,99.75773823],[4.53609577,0.03490357,99.75789935],[4.53609531,0.03490183,99.75806074],[4.53609485,0.03490009,99.7582224],[4.53609439,0.03489835,99.75838436],[4.53609392,0.0348966,99.75854661],[4.53609346,0.03489486,99.75870918],[4.536093,0.03489312,99.75887207],[4.53609254,0.03489138,99.75903528],[4.53609208,0.03488964,99.75919885],[4.53609162,0.03488789,99.75936276],[4.53609116,0.03488615,99.75952703],[4.5360907,0.03488441,99.75969168],[4.53609024,0.03488267,99.75985672],[4.53608977,0.03488092,99.76002215],[4.53608931,0.03487918,99.76018798],[4.53608885,0.03487744,99.76035423],[4.53608839,0.0348757,99.7605209],[4.53608793,0.03487395,99.76068801],[4.53608747,0.03487221,99.76085557],[4.53608701,0.03487047,99.76102359],[4.53608655,0.03486873,99.76119207],[4.53608608,0.03486699,99.76136103],[4.53608562,0.03486524,99.76153049],[4.53608516,0.0348635,99.76170044],[4.5360847,0.03486176,99.7618709],[4.53608424,0.03486002,99.76204189],[4.53608378,0.03485827,99.7622134],[4.53608332,0.03485653,99.76238546],[4.53608285,0.03485479,99.76255807],[4.53608239,0.03485305,99.76273124],[4.53608193,0.03485131,99.76290499],[4.53608147,0.03484956,99.76307932],[4.53608101,0.03484782,99.76325425],[4.53608055,0.03484608,99.76342978],[4.53608008,0.03484434,99.76360593],[4.53607962,0.03484259,99.76378271],[4.53607916,0.03484085,99.76396012],[4.5360787,0.03483911,99.76413818],[4.53607824,0.03483737,99.7643169],[4.53607778,0.03483563,99.76449629],[4.53607731,0.03483388,99.76467636],[4.53607685,0.03483214,99.76485712],[4.53607639,0.0348304,99.76503858],[4.53607593,0.03482866,99.76522075],[4.53607547,0.03482692,99.76540364],[4.536075,0.03482517,99.76558727],[4.53607454,0.03482343,99.76577164],[4.53607408,0.03482169,99.76595676],[4.53607362,0.03481995,99.76614265],[4.53607316,0.03481821,99.76632931],[4.53607269,0.03481646,99.76651676],[4.53607223,0.03481472,99.76670501],[4.53607177,0.03481298,99.76689406],[4.53607131,0.03481124,99.76708393],[4.53607084,0.03480949,99.76727461],[4.53607038,0.03480775,99.76746609],[4.53606992,0.03480601,99.76765837],[4.53606946,0.03480427,99.76785144],[4.53606899,0.03480253,99.7680453],[4.53606853,0.03480078,99.76823993],[4.53606807,0.03479904,99.76843534],[4.53606761,0.0347973,99.76863151],[4.53606714,0.03479556,99.76882843],[4.53606668,0.03479382,99.76902612],[4.53606622,0.03479207,99.76922454],[4.53606576,0.03479033,99.7694237],[4.53606529,0.03478859,99.7696236],[4.53606483,0.03478685,99.76982422],[4.53606437,0.03478511,99.77002556],[4.5360639,0.03478337,99.77022761],[4.53606344,0.03478162,99.77043036],[4.53606298,0.03477988,99.77063382],[4.53606252,0.03477814,99.77083796],[4.53606205,0.0347764,99.7710428],[4.53606159,0.03477466,99.77124833],[4.53606113,0.03477291,99.77145455],[4.53606066,0.03477117,99.77166146],[4.5360602,0.03476943,99.77186907],[4.53605973,0.03476769,99.77207736],[4.53605927,0.03476595,99.77228635],[4.53605881,0.03476421,99.77249603],[4.53605834,0.03476246,99.7727064],[4.53605788,0.03476072,99.77291746],[4.53605742,0.03475898,99.77312922],[4.53605695,0.03475724,99.77334166],[4.53605649,0.0347555,99.7735548],[4.53605602,0.03475376,99.77376863],[4.53605556,0.03475201,99.77398315],[4.5360551,0.03475027,99.77419836],[4.53605463,0.03474853,99.77441426],[4.53605417,0.03474679,99.77463086],[4.5360537,0.03474505,99.77484814],[4.53605324,0.03474331,99.77506612],[4.53605278,0.03474156,99.77528479],[4.53605231,0.03473982,99.77550415],[4.53605185,0.03473808,99.7757242],[4.53605138,0.03473634,99.77594494],[4.53605092,0.0347346,99.77616637],[4.53605045,0.03473286,99.77638849],[4.53604999,0.03473111,99.7766113],[4.53604952,0.03472937,99.7768348],[4.53604906,0.03472763,99.77705899],[4.53604859,0.03472589,99.77728387],[4.53604813,0.03472415,99.77750944],[4.53604767,0.03472241,99.7777357],[4.5360472,0.03472067,99.77796265],[4.53604674,0.03471892,99.77819028],[4.53604627,0.03471718,99.7784186],[4.53604581,0.03471544,99.77864762],[4.53604534,0.0347137,99.77887731],[4.53604488,0.03471196,99.7791077],[4.53604441,0.03471022,99.77933877],[4.53604395,0.03470848,99.77957053],[4.53604348,0.03470673,99.77980298],[4.53604302,0.03470499,99.78003611],[4.53604255,0.03470325,99.78026993],[4.53604209,0.03470151,99.78050443],[4.53604162,0.03469977,99.78073961],[4.53604116,0.03469803,99.78097548],[4.53604069,0.03469628,99.78121203],[4.53604023,0.03469454,99.78144927],[4.53603976,0.0346928,99.78168719],[4.5360393,0.03469106,99.78192579],[4.53603884,0.03468932,99.78216507],[4.53603837,0.03468758,99.78240503],[4.53603791,0.03468584,99.78264567],[4.53603744,0.03468409,99.78288699],[4.53603698,0.03468235,99.78312899],[4.53603651,0.03468061,99.78337167],[4.53603605,0.03467887,99.78361502],[4.53603558,0.03467713,99.78385906],[4.53603512,0.03467539,99.78410376],[4.53603466,0.03467364,99.78434915],[4.53603419,0.0346719,99.78459521],[4.53603373,0.03467016,99.78484194],[4.53603326,0.03466842,99.78508934],[4.5360328,0.03466668,99.78533742],[4.53603234,0.03466493,99.78558617],[4.53603187,0.03466319,99.78583559],[4.53603141,0.03466145,99.78608567],[4.53603094,0.03465971,99.7863364],[4.53603048,0.03465797,99.78658777],[4.53603002,0.03465623,99.78683977],[4.53602955,0.03465448,99.78709237],[4.53602909,0.03465274,99.78734557],[4.53602863,0.034651,99.78759936],[4.53602817,0.03464926,99.78785372],[4.5360277,0.03464752,99.78810864],[4.53602724,0.03464577,99.7883641],[4.53602678,0.03464403,99.78862009],[4.53602631,0.03464229,99.78887661],[4.53602585,0.03464055,99.78913363],[4.53602539,0.03463881,99.78939114],[4.53602493,0.03463706,99.78964913],[4.53602446,0.03463532,99.78990759],[4.536024,0.03463358,99.79016651],[4.53602354,0.03463184,99.79042586],[4.53602308,0.03463009,99.79068564],[4.53602261,0.03462835,99.79094584],[4.53602215,0.03462661,99.79120644],[4.53602169,0.03462487,99.79146742],[4.53602123,0.03462312,99.79172878],[4.53602076,0.03462138,99.79199051],[4.5360203,0.03461964,99.79225258],[4.53601984,0.0346179,99.79251499],[4.53601938,0.03461616,99.7927777],[4.53601892,0.03461441,99.79304069],[4.53601846,0.03461267,99.79330395],[4.53601799,0.03461093,99.79356746],[4.53601753,0.03460919,99.79383119],[4.53601707,0.03460744,99.79409513],[4.53601661,0.0346057,99.79435925],[4.53601615,0.03460396,99.79462353],[4.53601569,0.03460222,99.79488795],[4.53601522,0.03460047,99.7951525],[4.53601476,0.03459873,99.79541715],[4.5360143,0.03459699,99.79568188],[4.53601384,0.03459525,99.79594667],[4.53601338,0.0345935,99.7962115],[4.53601292,0.03459176,99.79647635],[4.53601246,0.03459002,99.79674121],[4.53601199,0.03458828,99.79700604],[4.53601153,0.03458653,99.79727084],[4.53601107,0.03458479,99.79753558],[4.53601061,0.03458305,99.79780024],[4.53601015,0.03458131,99.79806479],[4.53600969,0.03457956,99.79832923],[4.53600923,0.03457782,99.79859353],[4.53600876,0.03457608,99.79885768],[4.5360083,0.03457434,99.79912164],[4.53600784,0.03457259,99.79938541],[4.53600738,0.03457085,99.79964895],[4.53600692,0.03456911,99.79991226],[4.53600646,0.03456736,99.80017532],[4.536006,0.03456562,99.8004381],[4.53600553,0.03456388,99.80070058],[4.53600507,0.03456214,99.80096274],[4.53600461,0.03456039,99.80122457],[4.53600415,0.03455865,99.80148605],[4.53600369,0.03455691,99.80174715],[4.53600322,0.03455517,99.80200786],[4.53600276,0.03455343,99.80226816],[4.5360023,0.03455168,99.80252803],[4.53600184,0.03454994,99.80278744],[4.53600138,0.0345482,99.80304639],[4.53600091,0.03454646,99.80330485],[4.53600045,0.03454471,99.8035628],[4.53599999,0.03454297,99.80382023],[4.53599953,0.03454123,99.80407711],[4.53599906,0.03453949,99.80433343],[4.5359986,0.03453774,99.80458916],[4.53599814,0.034536,99.80484429],[4.53599768,0.03453426,99.80509881],[4.53599721,0.03453252,99.8053527],[4.53599675,0.03453078,99.80560595],[4.53599629,0.03452903,99.80585856],[4.53599582,0.03452729,99.80611052],[4.53599536,0.03452555,99.80636182],[4.5359949,0.03452381,99.80661247],[4.53599443,0.03452206,99.80686246],[4.53599397,0.03452032,99.80711177],[4.53599351,0.03451858,99.80736042],[4.53599304,0.03451684,99.80760839],[4.53599258,0.0345151,99.80785568],[4.53599211,0.03451335,99.80810229],[4.53599165,0.03451161,99.8083482],[4.53599119,0.03450987,99.80859343],[4.53599072,0.03450813,99.80883795],[4.53599026,0.03450639,99.80908177],[4.53598979,0.03450465,99.80932488],[4.53598933,0.0345029,99.80956728],[4.53598886,0.03450116,99.80980896],[4.5359884,0.03449942,99.81004992],[4.53598794,0.03449768,99.81029015],[4.53598747,0.03449594,99.81052965],[4.53598701,0.03449419,99.81076843],[4.53598654,0.03449245,99.81100648],[4.53598608,0.03449071,99.81124381],[4.53598561,0.03448897,99.81148041],[4.53598515,0.03448723,99.81171628],[4.53598468,0.03448549,99.81195143],[4.53598422,0.03448374,99.81218586],[4.53598375,0.034482,99.81241957],[4.53598329,0.03448026,99.81265256],[4.53598282,0.03447852,99.81288482],[4.53598236,0.03447678,99.81311637],[4.53598189,0.03447504,99.81334719],[4.53598143,0.03447329,99.8135773],[4.53598096,0.03447155,99.81380669],[4.5359805,0.03446981,99.81403536],[4.53598003,0.03446807,99.81426332],[4.53597956,0.03446633,99.81449055],[4.5359791,0.03446459,99.81471708],[4.53597863,0.03446284,99.81494288],[4.53597817,0.0344611,99.81516798],[4.5359777,0.03445936,99.81539236],[4.53597724,0.03445762,99.81561602],[4.53597677,0.03445588,99.81583897],[4.53597631,0.03445414,99.81606121],[4.53597584,0.03445239,99.81628274],[4.53597538,0.03445065,99.81650355],[4.53597491,0.03444891,99.81672366],[4.53597445,0.03444717,99.81694305],[4.53597398,0.03444543,99.81716173],[4.53597352,0.03444369,99.8173797],[4.53597305,0.03444194,99.81759696],[4.53597258,0.0344402,99.81781351],[4.53597212,0.03443846,99.81802935],[4.53597165,0.03443672,99.81824449],[4.53597119,0.03443498,99.81845891],[4.53597072,0.03443324,99.81867262],[4.53597026,0.03443149,99.81888563],[4.53596979,0.03442975,99.81909793],[4.53596933,0.03442801,99.81930952],[4.53596886,0.03442627,99.8195204],[4.53596839,0.03442453,99.81973057],[4.53596793,0.03442279,99.81994003],[4.53596746,0.03442105,99.82014879],[4.535967,0.0344193,99.82035684],[4.53596653,0.03441756,99.82056418],[4.53596606,0.03441582,99.82077081],[4.5359656,0.03441408,99.82097674],[4.53596513,0.03441234,99.82118196],[4.53596467,0.0344106,99.82138647],[4.5359642,0.03440886,99.82159027],[4.53596373,0.03440711,99.82179336],[4.53596327,0.03440537,99.82199575],[4.5359628,0.03440363,99.82219743],[4.53596233,0.03440189,99.8223984],[4.53596186,0.03440015,99.82259867],[4.5359614,0.03439841,99.82279823],[4.53596093,0.03439667,99.82299709],[4.53596046,0.03439493,99.82319524],[4.53595999,0.03439318,99.82339268],[4.53595953,0.03439144,99.82358942],[4.53595906,0.0343897,99.82378546],[4.53595859,0.03438796,99.82398079],[4.53595812,0.03438622,99.82417542],[4.53595765,0.03438448,99.82436935],[4.53595718,0.03438274,99.82456257],[4.53595672,0.034381,99.8247551],[4.53595625,0.03437926,99.82494691],[4.53595578,0.03437752,99.82513803],[4.53595531,0.03437578,99.82532844],[4.53595484,0.03437404,99.82551815],[4.53595437,0.03437229,99.82570716],[4.5359539,0.03437055,99.82589547],[4.53595343,0.03436881,99.82608307],[4.53595296,0.03436707,99.82626997],[4.53595249,0.03436533,99.82645617],[4.53595202,0.03436359,99.82664167],[4.53595155,0.03436185,99.82682647],[4.53595108,0.03436011,99.82701056],[4.53595061,0.03435837,99.82719395],[4.53595014,0.03435663,99.82737664],[4.53594967,0.03435489,99.82755863],[4.5359492,0.03435315,99.82773991],[4.53594873,0.03435141,99.82792049],[4.53594826,0.03434967,99.82810037],[4.53594779,0.03434793,99.82827954],[4.53594731,0.03434619,99.82845801],[4.53594684,0.03434445,99.82863577],[4.53594637,0.03434271,99.82881282],[4.5359459,0.03434097,99.82898914],[4.53594543,0.03433923,99.82916473],[4.53594496,0.03433749,99.82933959],[4.53594449,0.03433575,99.8295137],[4.53594402,0.03433401,99.82968705],[4.53594355,0.03433227,99.82985965],[4.53594308,0.03433053,99.83003147],[4.53594261,0.03432879,99.83020252],[4.53594214,0.03432705,99.83037278],[4.53594167,0.03432531,99.83054226],[4.53594119,0.03432356,99.83071093],[4.53594072,0.03432182,99.8308788],[4.53594025,0.03432008,99.83104585],[4.53593978,0.03431834,99.83121208],[4.53593931,0.0343166,99.83137748],[4.53593884,0.03431486,99.83154204],[4.53593837,0.03431312,99.83170576],[4.5359379,0.03431138,99.83186863],[4.53593743,0.03430964,99.83203064],[4.53593696,0.0343079,99.83219177],[4.53593649,0.03430616,99.83235204],[4.53593602,0.03430442,99.83251142],[4.53593555,0.03430268,99.83266991],[4.53593508,0.03430094,99.8328275],[4.53593461,0.0342992,99.83298419],[4.53593414,0.03429746,99.83313997],[4.53593367,0.03429572,99.83329482],[4.5359332,0.03429398,99.83344875],[4.53593273,0.03429224,99.83360174],[4.53593226,0.0342905,99.83375379],[4.53593179,0.03428875,99.83390489],[4.53593133,0.03428701,99.83405503],[4.53593086,0.03428527,99.83420421],[4.53593039,0.03428353,99.83435241],[4.53592992,0.03428179,99.83449963],[4.53592945,0.03428005,99.83464586],[4.53592898,0.03427831,99.8347911],[4.53592851,0.03427657,99.83493534],[4.53592804,0.03427483,99.83507856],[4.53592757,0.03427309,99.83522077],[4.53592711,0.03427135,99.83536195],[4.53592664,0.03426961,99.8355021],[4.53592617,0.03426786,99.83564121],[4.5359257,0.03426612,99.83577927],[4.53592523,0.03426438,99.83591628],[4.53592476,0.03426264,99.83605223],[4.53592429,0.0342609,99.8361871],[4.53592383,0.03425916,99.8363209],[4.53592336,0.03425742,99.83645361],[4.53592289,0.03425568,99.83658523],[4.53592242,0.03425394,99.83671575],[4.53592195,0.0342522,99.83684516],[4.53592148,0.03425046,99.83697345],[4.53592101,0.03424872,99.83710063],[4.53592055,0.03424697,99.83722668],[4.53592008,0.03424523,99.83735158],[4.53591961,0.03424349,99.83747535],[4.53591914,0.03424175,99.83759796],[4.53591867,0.03424001,99.83771941],[4.5359182,0.03423827,99.8378397],[4.53591774,0.03423653,99.83795881],[4.53591727,0.03423479,99.83807674],[4.5359168,0.03423305,99.83819349],[4.53591633,0.03423131,99.83830903],[4.53591586,0.03422957,99.83842338],[4.53591539,0.03422783,99.83853651],[4.53591492,0.03422608,99.83864842],[4.53591445,0.03422434,99.83875911],[4.53591399,0.0342226,99.83886856],[4.53591352,0.03422086,99.83897678],[4.53591305,0.03421912,99.83908374],[4.53591258,0.03421738,99.83918945],[4.53591211,0.03421564,99.8392939],[4.53591164,0.0342139,99.83939708],[4.53591117,0.03421216,99.83949898],[4.5359107,0.03421042,99.83959958],[4.53591023,0.03420868,99.83969888],[4.53590976,0.03420694,99.83979685],[4.53590929,0.0342052,99.83989349],[4.53590882,0.03420346,99.83998877],[4.53590835,0.03420172,99.84008268],[4.53590788,0.03419998,99.84017522],[4.53590741,0.03419824,99.84026635],[4.53590694,0.0341965,99.84035607],[4.53590647,0.03419475,99.84044437],[4.535906,0.03419301,99.84053122],[4.53590553,0.03419127,99.84061662],[4.53590506,0.03418953,99.84070055],[4.53590459,0.03418779,99.84078299],[4.53590412,0.03418605,99.84086394],[4.53590365,0.03418431,99.84094337],[4.53590318,0.03418257,99.84102127],[4.53590271,0.03418083,99.84109762],[4.53590224,0.03417909,99.84117242],[4.53590176,0.03417735,99.84124565],[4.53590129,0.03417561,99.84131729],[4.53590082,0.03417387,99.84138733],[4.53590035,0.03417214,99.84145576],[4.53589987,0.0341704,99.84152255],[4.5358994,0.03416866,99.8415877],[4.53589893,0.03416692,99.84165119],[4.53589868,0.03416601,99.84168354]],"type":"LineString"},"type":"feature","properties":{"successorId":-5,"level":true,"heights":[{"outer":0.15,"inner":0.025}],"roadId":"1004600","id":-5,"type":"border","predecessorId":-5}},{"geometry":{"coordinates":[[4.53651091,0.0364959,99.11451101],[4.53651046,0.03649416,99.11522096],[4.53651001,0.03649241,99.1159302],[4.53650957,0.03649067,99.11663877],[4.53650912,0.03648892,99.11734672],[4.53650868,0.03648717,99.11805408],[4.53650823,0.03648543,99.11876088],[4.53650778,0.03648368,99.11946717],[4.53650734,0.03648193,99.12017298],[4.53650689,0.03648019,99.12087836],[4.53650645,0.03647844,99.12158333],[4.536506,0.0364767,99.12228795],[4.53650555,0.03647495,99.12299224],[4.53650511,0.0364732,99.12369623],[4.53650466,0.03647146,99.12439993],[4.53650422,0.03646971,99.12510335],[4.53650377,0.03646796,99.12580648],[4.53650332,0.03646622,99.12650932],[4.53650288,0.03646447,99.12721188],[4.53650243,0.03646273,99.12791416],[4.53650199,0.03646098,99.12861616],[4.53650154,0.03645923,99.12931789],[4.5365011,0.03645749,99.13001933],[4.53650065,0.03645575,99.13072051],[4.53650021,0.036454,99.13142141],[4.53649976,0.03645226,99.13212204],[4.53649932,0.03645051,99.1328224],[4.53649887,0.03644876,99.13352249],[4.53649843,0.03644702,99.13422231],[4.53649798,0.03644527,99.13492188],[4.53649754,0.03644352,99.13562118],[4.53649709,0.03644178,99.13632021],[4.53649665,0.03644003,99.13701899],[4.5364962,0.03643828,99.13771752],[4.53649576,0.03643654,99.13841578],[4.53649531,0.03643479,99.13911379],[4.53649487,0.03643304,99.13981155],[4.53649442,0.0364313,99.14050906],[4.53649398,0.03642955,99.14120632],[4.53649353,0.0364278,99.14190332],[4.53649309,0.03642606,99.14260009],[4.53649264,0.03642431,99.1432966],[4.5364922,0.03642257,99.14399288],[4.53649175,0.03642082,99.14468891],[4.53649131,0.03641907,99.1453847],[4.53649086,0.03641733,99.14608025],[4.53649042,0.03641558,99.14677557],[4.53648997,0.03641383,99.14747065],[4.53648953,0.03641209,99.14816549],[4.53648909,0.03641034,99.1488601],[4.53648864,0.03640859,99.14955448],[4.5364882,0.03640685,99.15024863],[4.53648775,0.0364051,99.15094254],[4.53648731,0.03640335,99.15163624],[4.53648686,0.03640161,99.1523297],[4.53648642,0.03639986,99.15302294],[4.53648597,0.03639811,99.15371596],[4.53648553,0.03639637,99.15440875],[4.53648508,0.03639462,99.15510132],[4.53648464,0.03639287,99.15579368],[4.5364842,0.03639113,99.15648581],[4.53648375,0.03638938,99.15717773],[4.53648331,0.03638763,99.15786943],[4.53648286,0.03638589,99.15856092],[4.53648242,0.03638414,99.15925219],[4.53648197,0.03638239,99.15994326],[4.53648153,0.03638065,99.16063411],[4.53648108,0.0363789,99.16132475],[4.53648064,0.03637715,99.16201519],[4.53648019,0.03637541,99.16270541],[4.53647975,0.03637366,99.16339543],[4.5364793,0.03637191,99.16408525],[4.53647886,0.03637017,99.16477486],[4.53647841,0.03636842,99.16546423],[4.53647797,0.03636667,99.16615333],[4.53647753,0.03636493,99.16684217],[4.53647708,0.03636318,99.16753075],[4.53647664,0.03636143,99.16821906],[4.53647619,0.03635969,99.16890711],[4.53647575,0.03635794,99.16959491],[4.5364753,0.03635619,99.17028245],[4.53647486,0.03635445,99.17096972],[4.53647441,0.0363527,99.17165675],[4.53647397,0.03635095,99.17234352],[4.53647352,0.03634921,99.17303004],[4.53647307,0.03634746,99.17371631],[4.53647263,0.03634571,99.17440233],[4.53647218,0.03634397,99.1750881],[4.53647174,0.03634222,99.17577363],[4.53647129,0.03634048,99.17645891],[4.53647085,0.03633873,99.17714394],[4.5364704,0.03633698,99.17782874],[4.53646996,0.03633524,99.17851329],[4.53646951,0.03633349,99.17919761],[4.53646906,0.03633174,99.17988168],[4.53646862,0.03633,99.18056552],[4.53646817,0.03632825,99.18124913],[4.53646773,0.0363265,99.1819325],[4.53646728,0.03632476,99.18261563],[4.53646683,0.03632301,99.18329854],[4.53646639,0.03632127,99.18398121],[4.53646594,0.03631952,99.18466366],[4.5364655,0.03631777,99.18534587],[4.53646505,0.03631603,99.18602787],[4.5364646,0.03631428,99.18670963],[4.53646416,0.03631254,99.18739117],[4.53646371,0.03631079,99.1880725],[4.53646326,0.03630904,99.18875361],[4.53646282,0.0363073,99.18943453],[4.53646237,0.03630555,99.19011526],[4.53646192,0.0363038,99.19079581],[4.53646147,0.03630206,99.19147618],[4.53646103,0.03630031,99.1921564],[4.53646058,0.03629857,99.19283647],[4.53646013,0.03629682,99.1935164],[4.53645969,0.03629507,99.19419619],[4.53645924,0.03629333,99.19487587],[4.53645879,0.03629158,99.19555543],[4.53645834,0.03628984,99.1962349],[4.5364579,0.03628809,99.19691427],[4.53645745,0.03628634,99.19759356],[4.536457,0.0362846,99.19827278],[4.53645655,0.03628285,99.19895194],[4.53645611,0.03628111,99.19963104],[4.53645566,0.03627936,99.2003101],[4.53645521,0.03627762,99.20098911],[4.53645476,0.03627587,99.20166809],[4.53645431,0.03627412,99.20234704],[4.53645387,0.03627238,99.20302596],[4.53645342,0.03627063,99.20370487],[4.53645297,0.03626889,99.20438377],[4.53645252,0.03626714,99.20506266],[4.53645207,0.0362654,99.20574155],[4.53645162,0.03626365,99.20642044],[4.53645118,0.0362619,99.20709935],[4.53645073,0.03626016,99.20777828],[4.53645028,0.03625841,99.20845723],[4.53644983,0.03625667,99.20913621],[4.53644938,0.03625492,99.20981522],[4.53644893,0.03625318,99.21049428],[4.53644849,0.03625143,99.21117339],[4.53644804,0.03624968,99.21185255],[4.53644759,0.03624794,99.21253177],[4.53644714,0.03624619,99.21321106],[4.53644669,0.03624445,99.21389042],[4.53644624,0.0362427,99.21456986],[4.53644579,0.03624096,99.21524939],[4.53644534,0.03623921,99.21592902],[4.53644489,0.03623746,99.21660878],[4.53644445,0.03623572,99.21728871],[4.536444,0.03623397,99.21796883],[4.53644355,0.03623223,99.21864918],[4.5364431,0.03623048,99.21932979],[4.53644265,0.03622874,99.22001066],[4.5364422,0.03622699,99.22069181],[4.53644175,0.03622525,99.22137324],[4.5364413,0.0362235,99.22205494],[4.53644085,0.03622175,99.22273693],[4.5364404,0.03622001,99.2234192],[4.53643996,0.03621826,99.22410176],[4.53643951,0.03621652,99.22478462],[4.53643906,0.03621477,99.22546777],[4.53643861,0.03621303,99.22615122],[4.53643816,0.03621128,99.22683497],[4.53643771,0.03620954,99.22751902],[4.53643726,0.03620779,99.22820339],[4.53643681,0.03620604,99.22888807],[4.53643636,0.0362043,99.22957306],[4.53643591,0.03620255,99.23025837],[4.53643546,0.03620081,99.23094401],[4.53643501,0.03619906,99.23162996],[4.53643457,0.03619732,99.23231625],[4.53643412,0.03619557,99.23300287],[4.53643367,0.03619383,99.23368982],[4.53643322,0.03619208,99.23437711],[4.53643277,0.03619034,99.23506474],[4.53643232,0.03618859,99.23575271],[4.53643187,0.03618684,99.23644103],[4.53643142,0.0361851,99.23712971],[4.53643097,0.03618335,99.23781873],[4.53643052,0.03618161,99.23850812],[4.53643007,0.03617986,99.23919786],[4.53642962,0.03617812,99.23988797],[4.53642917,0.03617637,99.24057844],[4.53642872,0.03617463,99.24126928],[4.53642827,0.03617288,99.2419605],[4.53642782,0.03617114,99.24265209],[4.53642737,0.03616939,99.24334406],[4.53642692,0.03616764,99.24403641],[4.53642647,0.0361659,99.24472915],[4.53642603,0.03616415,99.24542228],[4.53642558,0.03616241,99.2461158],[4.53642513,0.03616066,99.24680972],[4.53642468,0.03615892,99.24750403],[4.53642423,0.03615717,99.24819874],[4.53642378,0.03615543,99.24889386],[4.53642333,0.03615368,99.24958939],[4.53642288,0.03615194,99.25028533],[4.53642243,0.03615019,99.25098168],[4.53642198,0.03614845,99.25167845],[4.53642153,0.0361467,99.25237564],[4.53642108,0.03614495,99.25307326],[4.53642063,0.03614321,99.2537713],[4.53642018,0.03614146,99.25446977],[4.53641973,0.03613972,99.25516868],[4.53641928,0.03613797,99.25586802],[4.53641883,0.03613623,99.2565678],[4.53641838,0.03613448,99.25726802],[4.53641792,0.03613274,99.25796868],[4.53641747,0.03613099,99.25866978],[4.53641702,0.03612925,99.25937132],[4.53641657,0.0361275,99.2600733],[4.53641612,0.03612576,99.26077574],[4.53641567,0.03612401,99.26147865],[4.53641522,0.03612227,99.26218205],[4.53641477,0.03612052,99.26288597],[4.53641432,0.03611878,99.26359042],[4.53641387,0.03611703,99.26429541],[4.53641342,0.03611529,99.26500096],[4.53641297,0.03611354,99.26570707],[4.53641252,0.0361118,99.26641375],[4.53641207,0.03611005,99.26712102],[4.53641162,0.0361083,99.26782888],[4.53641117,0.03610656,99.26853734],[4.53641071,0.03610481,99.26924641],[4.53641026,0.03610307,99.26995609],[4.53640981,0.03610132,99.27066641],[4.53640936,0.03609958,99.27137736],[4.53640891,0.03609783,99.27208897],[4.53640846,0.03609609,99.27280123],[4.53640801,0.03609434,99.27351415],[4.53640756,0.0360926,99.27422775],[4.53640711,0.03609085,99.27494203],[4.53640666,0.03608911,99.27565701],[4.53640621,0.03608736,99.27637269],[4.53640575,0.03608562,99.27708908],[4.5364053,0.03608387,99.2778062],[4.53640485,0.03608213,99.27852404],[4.5364044,0.03608038,99.27924263],[4.53640395,0.03607864,99.27996196],[4.5364035,0.03607689,99.28068206],[4.53640305,0.03607515,99.28140292],[4.5364026,0.0360734,99.28212456],[4.53640215,0.03607166,99.28284698],[4.5364017,0.03606991,99.2835702],[4.53640124,0.03606817,99.28429423],[4.53640079,0.03606642,99.28501907],[4.53640034,0.03606468,99.28574473],[4.53639989,0.03606293,99.28647123],[4.53639944,0.03606119,99.28719857],[4.53639899,0.03605944,99.28792676],[4.53639854,0.0360577,99.28865581],[4.53639809,0.03605595,99.28938574],[4.53639764,0.03605421,99.29011654],[4.53639719,0.03605246,99.29084823],[4.53639674,0.03605072,99.29158081],[4.53639628,0.03604897,99.29231431],[4.53639583,0.03604723,99.29304872],[4.53639538,0.03604548,99.29378405],[4.53639493,0.03604374,99.29452033],[4.53639448,0.03604199,99.29525754],[4.53639403,0.03604024,99.29599571],[4.53639358,0.0360385,99.29673484],[4.53639313,0.03603675,99.29747493],[4.53639268,0.03603501,99.298216],[4.53639223,0.03603326,99.29895805],[4.53639178,0.03603152,99.29970108],[4.53639133,0.03602977,99.3004451],[4.53639088,0.03602803,99.30119012],[4.53639042,0.03602628,99.30193613],[4.53638997,0.03602454,99.30268315],[4.53638952,0.03602279,99.30343119],[4.53638907,0.03602105,99.30418024],[4.53638862,0.0360193,99.30493031],[4.53638817,0.03601756,99.30568141],[4.53638772,0.03601581,99.30643355],[4.53638727,0.03601407,99.30718672],[4.53638682,0.03601232,99.30794094],[4.53638637,0.03601058,99.30869621],[4.53638592,0.03600883,99.30945254],[4.53638547,0.03600708,99.31020992],[4.53638502,0.03600534,99.31096837],[4.53638457,0.03600359,99.3117279],[4.53638412,0.03600185,99.3124885],[4.53638367,0.0360001,99.31325019],[4.53638322,0.03599836,99.31401296],[4.53638277,0.03599661,99.31477683],[4.53638232,0.03599487,99.31554179],[4.53638187,0.03599312,99.31630786],[4.53638142,0.03599138,99.31707505],[4.53638097,0.03598963,99.31784334],[4.53638052,0.03598789,99.31861276],[4.53638007,0.03598614,99.31938329],[4.53637962,0.0359844,99.32015494],[4.53637917,0.03598265,99.32092772],[4.53637872,0.0359809,99.32170162],[4.53637827,0.03597916,99.32247664],[4.53637782,0.03597741,99.3232528],[4.53637737,0.03597567,99.32403008],[4.53637692,0.03597392,99.32480849],[4.53637647,0.03597218,99.32558804],[4.53637602,0.03597043,99.32636872],[4.53637557,0.03596869,99.32715054],[4.53637512,0.03596694,99.3279335],[4.53637467,0.0359652,99.32871759],[4.53637422,0.03596345,99.32950283],[4.53637377,0.0359617,99.33028921],[4.53637332,0.03595996,99.33107672],[4.53637287,0.03595821,99.33186536],[4.53637242,0.03595647,99.3326551],[4.53637197,0.03595472,99.33344591],[4.53637152,0.03595298,99.33423778],[4.53637107,0.03595123,99.33503068],[4.53637062,0.03594949,99.33582459],[4.53637017,0.03594774,99.3366195],[4.53636972,0.035946,99.33741538],[4.53636927,0.03594425,99.33821221],[4.53636882,0.0359425,99.33900997],[4.53636837,0.03594076,99.33980863],[4.53636792,0.03593901,99.34060819],[4.53636747,0.03593727,99.34140861],[4.53636702,0.03593552,99.34220987],[4.53636657,0.03593378,99.34301195],[4.53636612,0.03593203,99.34381484],[4.53636567,0.03593029,99.34461851],[4.53636522,0.03592854,99.34542294],[4.53636477,0.0359268,99.34622811],[4.53636432,0.03592505,99.347034],[4.53636387,0.0359233,99.34784059],[4.53636342,0.03592156,99.34864785],[4.53636297,0.03591981,99.34945577],[4.53636252,0.03591807,99.35026432],[4.53636207,0.03591632,99.35107348],[4.53636162,0.03591458,99.35188323],[4.53636117,0.03591283,99.35269355],[4.53636072,0.03591109,99.35350442],[4.53636027,0.03590934,99.3543158],[4.53635982,0.0359076,99.3551277],[4.53635937,0.03590585,99.35594007],[4.53635892,0.0359041,99.35675292],[4.53635847,0.03590236,99.35756621],[4.53635802,0.03590061,99.35837994],[4.53635757,0.03589887,99.35919408],[4.53635712,0.03589712,99.36000863],[4.53635667,0.03589538,99.36082355],[4.53635622,0.03589363,99.36163883],[4.53635577,0.03589189,99.36245445],[4.53635532,0.03589014,99.3632704],[4.53635487,0.0358884,99.36408667],[4.53635442,0.03588665,99.36490322],[4.53635397,0.03588491,99.36572004],[4.53635352,0.03588316,99.36653712],[4.53635306,0.03588142,99.36735444],[4.53635261,0.03587967,99.36817198],[4.53635216,0.03587792,99.36898971],[4.53635171,0.03587618,99.36980764],[4.53635126,0.03587443,99.37062573],[4.53635081,0.03587269,99.37144397],[4.53635036,0.03587094,99.37226234],[4.53634991,0.0358692,99.37308082],[4.53634946,0.03586745,99.3738994],[4.53634901,0.03586571,99.37471806],[4.53634856,0.03586396,99.37553678],[4.53634811,0.03586222,99.37635554],[4.53634766,0.03586047,99.37717433],[4.5363472,0.03585873,99.37799312],[4.53634675,0.03585698,99.37881191],[4.5363463,0.03585524,99.37963066],[4.53634585,0.03585349,99.38044937],[4.5363454,0.03585175,99.38126802],[4.53634495,0.03585,99.38208659],[4.5363445,0.03584826,99.38290505],[4.53634405,0.03584651,99.3837234],[4.5363436,0.03584477,99.38454162],[4.53634314,0.03584302,99.38535969],[4.53634269,0.03584127,99.38617758],[4.53634224,0.03583953,99.38699529],[4.53634179,0.03583778,99.38781279],[4.53634134,0.03583604,99.38863008],[4.53634089,0.03583429,99.38944712],[4.53634044,0.03583255,99.3902639],[4.53633999,0.0358308,99.39108041],[4.53633953,0.03582906,99.39189662],[4.53633908,0.03582731,99.39271253],[4.53633863,0.03582557,99.39352811],[4.53633818,0.03582382,99.39434334],[4.53633773,0.03582208,99.39515822],[4.53633728,0.03582033,99.39597272],[4.53633682,0.03581859,99.39678683],[4.53633637,0.03581684,99.39760053],[4.53633592,0.0358151,99.3984138],[4.53633547,0.03581335,99.39922663],[4.53633502,0.03581161,99.40003899],[4.53633457,0.03580986,99.40085089],[4.53633411,0.03580812,99.40166229],[4.53633366,0.03580637,99.40247317],[4.53633321,0.03580463,99.40328354],[4.53633276,0.03580288,99.40409336],[4.53633231,0.03580114,99.40490262],[4.53633185,0.03579939,99.4057113],[4.5363314,0.03579765,99.40651939],[4.53633095,0.0357959,99.40732687],[4.5363305,0.03579416,99.40813372],[4.53633005,0.03579241,99.40893994],[4.53632959,0.03579067,99.40974549],[4.53632914,0.03578892,99.41055036],[4.53632869,0.03578718,99.41135454],[4.53632824,0.03578543,99.41215801],[4.53632779,0.03578369,99.41296075],[4.53632733,0.03578194,99.41376275],[4.53632688,0.0357802,99.41456399],[4.53632643,0.03577845,99.41536446],[4.53632598,0.03577671,99.41616412],[4.53632552,0.03577496,99.41696298],[4.53632507,0.03577322,99.41776101],[4.53632462,0.03577147,99.4185582],[4.53632417,0.03576973,99.41935453],[4.53632372,0.03576798,99.42014998],[4.53632326,0.03576624,99.42094453],[4.53632281,0.03576449,99.42173818],[4.53632236,0.03576275,99.4225309],[4.53632191,0.035761,99.42332267],[4.53632145,0.03575926,99.42411348],[4.536321,0.03575752,99.42490332],[4.53632055,0.03575577,99.42569216],[4.5363201,0.03575403,99.42647998],[4.53631964,0.03575228,99.42726678],[4.53631919,0.03575054,99.42805254],[4.53631874,0.03574879,99.42883723],[4.53631829,0.03574705,99.42962085],[4.53631783,0.0357453,99.43040337],[4.53631738,0.03574356,99.43118478],[4.53631693,0.03574181,99.43196506],[4.53631647,0.03574007,99.4327442],[4.53631602,0.03573832,99.43352217],[4.53631557,0.03573658,99.43429896],[4.53631512,0.03573483,99.43507456],[4.53631466,0.03573309,99.43584895],[4.53631421,0.03573134,99.4366221],[4.53631376,0.0357296,99.43739402],[4.5363133,0.03572785,99.43816466],[4.53631285,0.03572611,99.43893403],[4.5363124,0.03572436,99.4397021],[4.53631195,0.03572262,99.44046886],[4.53631149,0.03572087,99.44123429],[4.53631104,0.03571913,99.44199836],[4.53631059,0.03571738,99.44276106],[4.53631013,0.03571564,99.44352236],[4.53630968,0.0357139,99.44428223],[4.53630923,0.03571215,99.44504065],[4.53630878,0.03571041,99.44579761],[4.53630832,0.03570866,99.44655307],[4.53630787,0.03570692,99.44730701],[4.53630742,0.03570517,99.44805942],[4.53630696,0.03570343,99.44881026],[4.53630651,0.03570168,99.44955951],[4.53630606,0.03569994,99.45030715],[4.5363056,0.03569819,99.45105316],[4.53630515,0.03569645,99.45179751],[4.5363047,0.0356947,99.45254018],[4.53630424,0.03569296,99.45328115],[4.53630379,0.03569122,99.45402039],[4.53630334,0.03568947,99.45475788],[4.53630288,0.03568773,99.4554936],[4.53630243,0.03568598,99.45622752],[4.53630197,0.03568424,99.45695963],[4.53630152,0.03568249,99.45768989],[4.53630107,0.03568075,99.45841829],[4.53630061,0.035679,99.45914479],[4.53630016,0.03567726,99.45986939],[4.53629971,0.03567552,99.46059206],[4.53629925,0.03567377,99.46131276],[4.5362988,0.03567203,99.46203149],[4.53629834,0.03567028,99.46274821],[4.53629789,0.03566854,99.46346291],[4.53629743,0.03566679,99.46417556],[4.53629698,0.03566505,99.46488615],[4.53629652,0.0356633,99.46559466],[4.53629607,0.03566156,99.46630108],[4.53629562,0.03565982,99.46700542],[4.53629516,0.03565807,99.46770765],[4.53629471,0.03565633,99.46840778],[4.53629425,0.03565458,99.46910579],[4.5362938,0.03565284,99.46980167],[4.53629334,0.0356511,99.47049542],[4.53629289,0.03564935,99.47118703],[4.53629243,0.03564761,99.47187648],[4.53629197,0.03564586,99.47256377],[4.53629152,0.03564412,99.47324889],[4.53629106,0.03564237,99.47393183],[4.53629061,0.03564063,99.47461259],[4.53629015,0.03563889,99.47529114],[4.5362897,0.03563714,99.47596749],[4.53628924,0.0356354,99.47664163],[4.53628879,0.03563365,99.47731354],[4.53628833,0.03563191,99.47798322],[4.53628788,0.03563017,99.47865065],[4.53628742,0.03562842,99.47931584],[4.53628696,0.03562668,99.47997876],[4.53628651,0.03562493,99.48063941],[4.53628605,0.03562319,99.48129779],[4.5362856,0.03562145,99.48195388],[4.53628514,0.0356197,99.48260767],[4.53628469,0.03561796,99.48325915],[4.53628423,0.03561621,99.48390832],[4.53628377,0.03561447,99.48455516],[4.53628332,0.03561273,99.48519967],[4.53628286,0.03561098,99.48584183],[4.53628241,0.03560924,99.48648165],[4.53628195,0.03560749,99.4871191],[4.5362815,0.03560575,99.48775417],[4.53628104,0.03560401,99.48838687],[4.53628058,0.03560226,99.48901717],[4.53628013,0.03560052,99.48964508],[4.53627967,0.03559877,99.49027057],[4.53627922,0.03559703,99.49089365],[4.53627876,0.03559529,99.49151429],[4.53627831,0.03559354,99.49213249],[4.53627785,0.0355918,99.49274825],[4.53627739,0.03559006,99.49336154],[4.53627694,0.03558831,99.49397236],[4.53627648,0.03558657,99.49458071],[4.53627603,0.03558482,99.49518656],[4.53627557,0.03558308,99.49578992],[4.53627512,0.03558134,99.4963908],[4.53627466,0.03557959,99.4969892],[4.53627421,0.03557785,99.49758516],[4.53627375,0.0355761,99.49817869],[4.5362733,0.03557436,99.49876982],[4.53627284,0.03557261,99.49935855],[4.53627239,0.03557087,99.49994492],[4.53627193,0.03556913,99.50052894],[4.53627147,0.03556738,99.50111063],[4.53627102,0.03556564,99.50169001],[4.53627057,0.03556389,99.5022671],[4.53627011,0.03556215,99.50284193],[4.53626966,0.03556041,99.5034145],[4.5362692,0.03555866,99.50398484],[4.53626875,0.03555692,99.50455297],[4.53626829,0.03555517,99.50511891],[4.53626784,0.03555343,99.50568267],[4.53626738,0.03555168,99.50624424],[4.53626693,0.03554994,99.50680362],[4.53626648,0.0355482,99.50736081],[4.53626602,0.03554645,99.50791581],[4.53626557,0.03554471,99.5084686],[4.53626511,0.03554296,99.50901919],[4.53626466,0.03554122,99.50956757],[4.53626421,0.03553947,99.51011374],[4.53626375,0.03553773,99.51065769],[4.5362633,0.03553598,99.51119943],[4.53626285,0.03553424,99.51173893],[4.53626239,0.0355325,99.51227621],[4.53626194,0.03553075,99.51281126],[4.53626149,0.03552901,99.51334407],[4.53626103,0.03552726,99.51387464],[4.53626058,0.03552552,99.51440297],[4.53626013,0.03552377,99.51492905],[4.53625967,0.03552203,99.51545288],[4.53625922,0.03552028,99.51597445],[4.53625877,0.03551854,99.51649376],[4.53625831,0.03551679,99.51701082],[4.53625786,0.03551505,99.5175256],[4.53625741,0.03551331,99.51803812],[4.53625695,0.03551156,99.51854836],[4.5362565,0.03550982,99.51905632],[4.53625605,0.03550807,99.519562],[4.5362556,0.03550633,99.5200654],[4.53625514,0.03550458,99.52056651],[4.53625469,0.03550284,99.52106532],[4.53625424,0.03550109,99.52156184],[4.53625378,0.03549935,99.52205606],[4.53625333,0.0354976,99.52254797],[4.53625288,0.03549586,99.52303758],[4.53625242,0.03549411,99.52352488],[4.53625197,0.03549237,99.52400986],[4.53625152,0.03549063,99.52449253],[4.53625106,0.03548888,99.52497287],[4.53625061,0.03548714,99.52545088],[4.53625016,0.03548539,99.52592657],[4.5362497,0.03548365,99.52639992],[4.53624925,0.0354819,99.52687094],[4.5362488,0.03548016,99.52733962],[4.53624834,0.03547841,99.52780595],[4.53624789,0.03547667,99.52826993],[4.53624743,0.03547493,99.52873156],[4.53624698,0.03547318,99.52919084],[4.53624653,0.03547144,99.52964776],[4.53624607,0.03546969,99.53010231],[4.53624562,0.03546795,99.5305545],[4.53624516,0.0354662,99.53100432],[4.53624471,0.03546446,99.53145176],[4.53624425,0.03546272,99.53189682],[4.5362438,0.03546097,99.53233951],[4.53624335,0.03545923,99.5327798],[4.53624289,0.03545748,99.53321771],[4.53624244,0.03545574,99.53365322],[4.53624198,0.035454,99.53408634],[4.53624153,0.03545225,99.53451705],[4.53624107,0.03545051,99.53494536],[4.53624061,0.03544876,99.53537126],[4.53624016,0.03544702,99.53579476],[4.5362397,0.03544528,99.53621587],[4.53623925,0.03544353,99.53663461],[4.53623879,0.03544179,99.537051],[4.53623833,0.03544004,99.53746505],[4.53623788,0.0354383,99.53787679],[4.53623742,0.03543656,99.53828622],[4.53623696,0.03543481,99.53869336],[4.53623651,0.03543307,99.53909823],[4.53623605,0.03543133,99.53950085],[4.53623559,0.03542958,99.53990123],[4.53623514,0.03542784,99.5402994],[4.53623468,0.0354261,99.54069535],[4.53623422,0.03542435,99.54108912],[4.53623376,0.03542261,99.54148073],[4.53623331,0.03542087,99.54187017],[4.53623285,0.03541912,99.54225748],[4.53623239,0.03541738,99.54264267],[4.53623193,0.03541564,99.54302576],[4.53623148,0.03541389,99.54340675],[4.53623102,0.03541215,99.54378569],[4.53623056,0.03541041,99.54416258],[4.5362301,0.03540866,99.54453744],[4.53622964,0.03540692,99.54491029],[4.53622919,0.03540518,99.54528116],[4.53622873,0.03540343,99.54565005],[4.53622827,0.03540169,99.54601698],[4.53622781,0.03539995,99.54638198],[4.53622735,0.0353982,99.54674504],[4.53622689,0.03539646,99.54710619],[4.53622644,0.03539472,99.54746545],[4.53622598,0.03539297,99.54782282],[4.53622552,0.03539123,99.54817833],[4.53622506,0.03538949,99.54853199],[4.5362246,0.03538775,99.54888381],[4.53622414,0.035386,99.54923381],[4.53622368,0.03538426,99.54958201],[4.53622323,0.03538252,99.54992843],[4.53622277,0.03538077,99.55027306],[4.53622231,0.03537903,99.55061594],[4.53622185,0.03537729,99.55095708],[4.53622139,0.03537554,99.55129649],[4.53622093,0.0353738,99.55163419],[4.53622047,0.03537206,99.5519702],[4.53622001,0.03537032,99.55230452],[4.53621956,0.03536857,99.55263718],[4.5362191,0.03536683,99.55296819],[4.53621864,0.03536509,99.55329757],[4.53621818,0.03536334,99.55362533],[4.53621772,0.0353616,99.55395149],[4.53621726,0.03535986,99.55427606],[4.5362168,0.03535811,99.55459906],[4.53621634,0.03535637,99.55492051],[4.53621588,0.03535463,99.55524041],[4.53621543,0.03535289,99.5555588],[4.53621497,0.03535114,99.55587567],[4.53621451,0.0353494,99.55619105],[4.53621405,0.03534766,99.55650496],[4.53621359,0.03534591,99.55681741],[4.53621313,0.03534417,99.55712841],[4.53621267,0.03534243,99.55743798],[4.53621222,0.03534068,99.55774614],[4.53621176,0.03533894,99.5580529],[4.5362113,0.0353372,99.55835828],[4.53621084,0.03533545,99.55866229],[4.53621038,0.03533371,99.55896496],[4.53620992,0.03533197,99.55926629],[4.53620947,0.03533023,99.5595663],[4.53620901,0.03532848,99.55986501],[4.53620855,0.03532674,99.56016244],[4.53620809,0.035325,99.56045859],[4.53620763,0.03532325,99.56075349],[4.53620718,0.03532151,99.56104716],[4.53620672,0.03531977,99.5613396],[4.53620626,0.03531802,99.56163084],[4.5362058,0.03531628,99.56192087],[4.53620534,0.03531454,99.5622097],[4.53620489,0.03531279,99.56249733],[4.53620443,0.03531105,99.56278376],[4.53620397,0.03530931,99.56306899],[4.53620351,0.03530756,99.56335303],[4.53620306,0.03530582,99.56363587],[4.5362026,0.03530408,99.56391753],[4.53620214,0.03530233,99.56419799],[4.53620169,0.03530059,99.56447727],[4.53620123,0.03529885,99.56475536],[4.53620077,0.0352971,99.56503226],[4.53620031,0.03529536,99.56530798],[4.53619986,0.03529362,99.56558252],[4.5361994,0.03529187,99.56585588],[4.53619894,0.03529013,99.56612806],[4.53619849,0.03528839,99.56639906],[4.53619803,0.03528664,99.56666889],[4.53619757,0.0352849,99.56693754],[4.53619712,0.03528316,99.56720502],[4.53619666,0.03528141,99.56747133],[4.5361962,0.03527967,99.56773648],[4.53619575,0.03527792,99.56800045],[4.53619529,0.03527618,99.56826326],[4.53619483,0.03527444,99.5685249],[4.53619438,0.03527269,99.56878539],[4.53619392,0.03527095,99.56904471],[4.53619346,0.03526921,99.56930286],[4.53619301,0.03526746,99.56955987],[4.53619255,0.03526572,99.56981571],[4.53619209,0.03526398,99.5700704],[4.53619164,0.03526223,99.57032393],[4.53619118,0.03526049,99.57057631],[4.53619072,0.03525875,99.57082754],[4.53619027,0.035257,99.57107762],[4.53618981,0.03525526,99.57132655],[4.53618935,0.03525352,99.57157434],[4.5361889,0.03525177,99.57182099],[4.53618844,0.03525003,99.57206649],[4.53618799,0.03524828,99.57231086],[4.53618753,0.03524654,99.5725541],[4.53618707,0.0352448,99.57279622],[4.53618662,0.03524305,99.57303721],[4.53618616,0.03524131,99.57327708],[4.5361857,0.03523957,99.57351584],[4.53618525,0.03523782,99.57375348],[4.53618479,0.03523608,99.57399002],[4.53618433,0.03523434,99.57422544],[4.53618388,0.03523259,99.57445976],[4.53618342,0.03523085,99.57469298],[4.53618296,0.03522911,99.5749251],[4.5361825,0.03522736,99.57515612],[4.53618205,0.03522562,99.57538605],[4.53618159,0.03522388,99.57561489],[4.53618113,0.03522213,99.57584264],[4.53618068,0.03522039,99.57606931],[4.53618022,0.03521865,99.5762949],[4.53617976,0.0352169,99.5765194],[4.53617931,0.03521516,99.57674283],[4.53617885,0.03521342,99.57696519],[4.53617839,0.03521167,99.57718647],[4.53617793,0.03520993,99.57740669],[4.53617748,0.03520819,99.57762584],[4.53617702,0.03520644,99.57784392],[4.53617656,0.0352047,99.57806095],[4.53617611,0.03520296,99.57827692],[4.53617565,0.03520121,99.57849183],[4.53617519,0.03519947,99.5787057],[4.53617473,0.03519773,99.57891851],[4.53617428,0.03519598,99.57913027],[4.53617382,0.03519424,99.579341],[4.53617336,0.0351925,99.57955068],[4.5361729,0.03519075,99.57975932],[4.53617244,0.03518901,99.57996692],[4.53617199,0.03518727,99.58017349],[4.53617153,0.03518552,99.58037903],[4.53617107,0.03518378,99.58058354],[4.53617061,0.03518204,99.58078702],[4.53617015,0.0351803,99.58098948],[4.5361697,0.03517855,99.58119092],[4.53616924,0.03517681,99.58139134],[4.53616878,0.03517507,99.58159074],[4.53616832,0.03517332,99.58178913],[4.53616786,0.03517158,99.58198651],[4.5361674,0.03516984,99.58218287],[4.53616694,0.03516809,99.58237823],[4.53616648,0.03516635,99.58257259],[4.53616603,0.03516461,99.58276595],[4.53616557,0.03516287,99.5829583],[4.53616511,0.03516112,99.58314966],[4.53616465,0.03515938,99.58334002],[4.53616419,0.03515764,99.58352939],[4.53616373,0.03515589,99.5837178],[4.53616327,0.03515415,99.58390526],[4.53616281,0.03515241,99.58409181],[4.53616235,0.03515067,99.58427745],[4.53616189,0.03514892,99.58446223],[4.53616143,0.03514718,99.58464616],[4.53616097,0.03514544,99.58482928],[4.53616051,0.0351437,99.58501159],[4.53616005,0.03514195,99.58519314],[4.53615959,0.03514021,99.58537393],[4.53615913,0.03513847,99.58555401],[4.53615867,0.03513673,99.58573339],[4.53615821,0.03513498,99.5859121],[4.53615775,0.03513324,99.58609016],[4.53615729,0.0351315,99.5862676],[4.53615683,0.03512976,99.58644444],[4.53615637,0.03512801,99.58662071],[4.53615591,0.03512627,99.58679643],[4.53615545,0.03512453,99.58697163],[4.53615499,0.03512279,99.58714634],[4.53615453,0.03512104,99.58732057],[4.53615407,0.0351193,99.58749436],[4.53615361,0.03511756,99.58766773],[4.53615315,0.03511582,99.5878407],[4.53615269,0.03511407,99.58801331],[4.53615223,0.03511233,99.58818557],[4.53615177,0.03511059,99.58835751],[4.53615131,0.03510885,99.58852916],[4.53615085,0.0351071,99.58870054],[4.53615039,0.03510536,99.58887168],[4.53614993,0.03510362,99.5890426],[4.53614947,0.03510188,99.58921334],[4.53614901,0.03510013,99.5893839],[4.53614855,0.03509839,99.58955434],[4.53614809,0.03509665,99.58972465],[4.53614764,0.0350949,99.58989489],[4.53614718,0.03509316,99.59006506],[4.53614672,0.03509142,99.59023519],[4.53614626,0.03508968,99.59040532],[4.5361458,0.03508793,99.59057546],[4.53614534,0.03508619,99.59074565],[4.53614488,0.03508445,99.5909159],[4.53614443,0.0350827,99.59108621],[4.53614397,0.03508096,99.59125657],[4.53614351,0.03507922,99.59142698],[4.53614305,0.03507748,99.59159742],[4.53614259,0.03507573,99.59176788],[4.53614214,0.03507399,99.59193836],[4.53614168,0.03507225,99.59210884],[4.53614122,0.0350705,99.59227933],[4.53614076,0.03506876,99.5924498],[4.53614031,0.03506702,99.59262024],[4.53613985,0.03506527,99.59279066],[4.53613939,0.03506353,99.59296104],[4.53613893,0.03506179,99.59313137],[4.53613848,0.03506004,99.59330164],[4.53613802,0.0350583,99.59347184],[4.53613756,0.03505656,99.59364196],[4.53613711,0.03505481,99.593812],[4.53613665,0.03505307,99.59398194],[4.53613619,0.03505133,99.59415177],[4.53613574,0.03504958,99.59432148],[4.53613528,0.03504784,99.59449107],[4.53613482,0.0350461,99.59466052],[4.53613437,0.03504435,99.59482983],[4.53613391,0.03504261,99.59499898],[4.53613345,0.03504087,99.59516796],[4.536133,0.03503912,99.59533677],[4.53613254,0.03503738,99.59550539],[4.53613208,0.03503564,99.59567382],[4.53613163,0.03503389,99.59584204],[4.53613117,0.03503215,99.59601005],[4.53613071,0.03503041,99.59617783],[4.53613025,0.03502866,99.59634537],[4.5361298,0.03502692,99.59651266],[4.53612934,0.03502518,99.5966797],[4.53612888,0.03502343,99.59684648],[4.53612843,0.03502169,99.59701299],[4.53612797,0.03501995,99.59717922],[4.53612751,0.0350182,99.59734516],[4.53612705,0.03501646,99.59751082],[4.5361266,0.03501472,99.59767616],[4.53612614,0.03501298,99.5978412],[4.53612568,0.03501123,99.59800592],[4.53612522,0.03500949,99.59817031],[4.53612477,0.03500775,99.59833435],[4.53612431,0.03500601,99.59849804],[4.53612385,0.03500426,99.59866137],[4.53612339,0.03500252,99.59882436],[4.53612293,0.03500078,99.59898701],[4.53612248,0.03499903,99.59914934],[4.53612202,0.03499729,99.59931136],[4.53612156,0.03499555,99.59947308],[4.5361211,0.03499381,99.59963452],[4.53612064,0.03499206,99.59979567],[4.53612018,0.03499032,99.59995657],[4.53611972,0.03498858,99.60011721],[4.53611926,0.03498683,99.6002776],[4.53611881,0.03498509,99.60043777],[4.53611835,0.03498335,99.60059772],[4.53611789,0.03498161,99.60075746],[4.53611743,0.03497986,99.60091701],[4.53611697,0.03497812,99.60107637],[4.53611651,0.03497638,99.60123555],[4.53611605,0.03497464,99.60139458],[4.53611559,0.03497289,99.60155344],[4.53611513,0.03497115,99.60171217],[4.53611467,0.03496941,99.60187076],[4.53611421,0.03496767,99.60202923],[4.53611375,0.03496592,99.60218758],[4.53611329,0.03496418,99.60234583],[4.53611283,0.03496244,99.60250399],[4.53611237,0.0349607,99.60266206],[4.53611191,0.03495895,99.60282007],[4.53611145,0.03495721,99.60297801],[4.53611099,0.03495547,99.60313589],[4.53611052,0.03495373,99.60329374],[4.53611006,0.03495198,99.60345156],[4.5361096,0.03495024,99.60360935],[4.53610914,0.0349485,99.60376713],[4.53610868,0.03494676,99.60392491],[4.53610822,0.03494502,99.6040827],[4.53610776,0.03494327,99.60424051],[4.5361073,0.03494153,99.60439835],[4.53610684,0.03493979,99.60455623],[4.53610637,0.03493805,99.60471417],[4.53610591,0.0349363,99.60487216],[4.53610545,0.03493456,99.60503022],[4.53610499,0.03493282,99.60518837],[4.53610453,0.03493108,99.6053466],[4.53610407,0.03492934,99.60550494],[4.5361036,0.03492759,99.60566339],[4.53610314,0.03492585,99.60582197],[4.53610268,0.03492411,99.60598068],[4.53610222,0.03492237,99.60613953],[4.53610176,0.03492063,99.60629853],[4.53610129,0.03491888,99.6064577],[4.53610083,0.03491714,99.60661705],[4.53610037,0.0349154,99.60677658],[4.53609991,0.03491366,99.6069363],[4.53609945,0.03491192,99.60709623],[4.53609898,0.03491017,99.60725638],[4.53609852,0.03490843,99.60741676],[4.53609806,0.03490669,99.60757737],[4.5360976,0.03490495,99.60773823],[4.53609713,0.03490321,99.60789935],[4.53609667,0.03490146,99.60806074],[4.53609621,0.03489972,99.6082224],[4.53609574,0.03489798,99.60838436],[4.53609528,0.03489624,99.60854661],[4.53609482,0.0348945,99.60870918],[4.53609436,0.03489276,99.60887207],[4.53609389,0.03489101,99.60903528],[4.53609343,0.03488927,99.60919885],[4.53609297,0.03488753,99.60936276],[4.5360925,0.03488579,99.60952703],[4.53609204,0.03488405,99.60969168],[4.53609158,0.03488231,99.60985672],[4.53609111,0.03488056,99.61002215],[4.53609065,0.03487882,99.61018798],[4.53609019,0.03487708,99.61035423],[4.53608972,0.03487534,99.6105209],[4.53608926,0.0348736,99.61068801],[4.5360888,0.03487186,99.61085557],[4.53608833,0.03487011,99.61102359],[4.53608787,0.03486837,99.61119207],[4.53608741,0.03486663,99.61136103],[4.53608694,0.03486489,99.61153049],[4.53608648,0.03486315,99.61170044],[4.53608601,0.03486141,99.6118709],[4.53608555,0.03485966,99.61204189],[4.53608509,0.03485792,99.6122134],[4.53608462,0.03485618,99.61238546],[4.53608416,0.03485444,99.61255807],[4.5360837,0.0348527,99.61273124],[4.53608323,0.03485096,99.61290499],[4.53608277,0.03484921,99.61307932],[4.5360823,0.03484747,99.61325425],[4.53608184,0.03484573,99.61342978],[4.53608138,0.03484399,99.61360593],[4.53608091,0.03484225,99.61378271],[4.53608045,0.03484051,99.61396012],[4.53607998,0.03483876,99.61413818],[4.53607952,0.03483702,99.6143169],[4.53607906,0.03483528,99.61449629],[4.53607859,0.03483354,99.61467636],[4.53607813,0.0348318,99.61485712],[4.53607766,0.03483006,99.61503858],[4.5360772,0.03482832,99.61522075],[4.53607673,0.03482657,99.61540364],[4.53607627,0.03482483,99.61558727],[4.53607581,0.03482309,99.61577164],[4.53607534,0.03482135,99.61595676],[4.53607488,0.03481961,99.61614265],[4.53607441,0.03481787,99.61632931],[4.53607395,0.03481612,99.61651676],[4.53607348,0.03481438,99.61670501],[4.53607302,0.03481264,99.61689406],[4.53607256,0.0348109,99.61708393],[4.53607209,0.03480916,99.61727461],[4.53607163,0.03480742,99.61746609],[4.53607116,0.03480568,99.61765837],[4.5360707,0.03480393,99.61785144],[4.53607023,0.03480219,99.6180453],[4.53606977,0.03480045,99.61823993],[4.53606931,0.03479871,99.61843534],[4.53606884,0.03479697,99.61863151],[4.53606838,0.03479523,99.61882843],[4.53606791,0.03479349,99.61902612],[4.53606745,0.03479174,99.61922454],[4.53606698,0.03479,99.6194237],[4.53606652,0.03478826,99.6196236],[4.53606606,0.03478652,99.61982422],[4.53606559,0.03478478,99.62002556],[4.53606513,0.03478304,99.62022761],[4.53606466,0.03478129,99.62043036],[4.5360642,0.03477955,99.62063382],[4.53606373,0.03477781,99.62083796],[4.53606327,0.03477607,99.6210428],[4.5360628,0.03477433,99.62124833],[4.53606234,0.03477259,99.62145455],[4.53606188,0.03477085,99.62166146],[4.53606141,0.0347691,99.62186907],[4.53606095,0.03476736,99.62207736],[4.53606048,0.03476562,99.62228635],[4.53606002,0.03476388,99.62249603],[4.53605955,0.03476214,99.6227064],[4.53605909,0.0347604,99.62291746],[4.53605862,0.03475865,99.62312922],[4.53605816,0.03475691,99.62334166],[4.53605769,0.03475517,99.6235548],[4.53605723,0.03475343,99.62376863],[4.53605677,0.03475169,99.62398315],[4.5360563,0.03474995,99.62419836],[4.53605584,0.03474821,99.62441426],[4.53605537,0.03474646,99.62463086],[4.53605491,0.03474472,99.62484814],[4.53605444,0.03474298,99.62506612],[4.53605398,0.03474124,99.62528479],[4.53605352,0.0347395,99.62550415],[4.53605305,0.03473776,99.6257242],[4.53605259,0.03473601,99.62594494],[4.53605212,0.03473427,99.62616637],[4.53605166,0.03473253,99.62638849],[4.5360512,0.03473079,99.6266113],[4.53605073,0.03472905,99.6268348],[4.53605027,0.03472731,99.62705899],[4.5360498,0.03472556,99.62728387],[4.53604934,0.03472382,99.62750944],[4.53604888,0.03472208,99.6277357],[4.53604841,0.03472034,99.62796265],[4.53604795,0.0347186,99.62819028],[4.53604748,0.03471686,99.6284186],[4.53604702,0.03471511,99.62864762],[4.53604656,0.03471337,99.62887731],[4.53604609,0.03471163,99.6291077],[4.53604563,0.03470989,99.62933877],[4.53604517,0.03470815,99.62957053],[4.5360447,0.0347064,99.62980298],[4.53604424,0.03470466,99.63003611],[4.53604378,0.03470292,99.63026993],[4.53604331,0.03470118,99.63050443],[4.53604285,0.03469944,99.63073961],[4.53604239,0.03469769,99.63097548],[4.53604192,0.03469595,99.63121203],[4.53604146,0.03469421,99.63144927],[4.536041,0.03469247,99.63168719],[4.53604054,0.03469073,99.63192579],[4.53604007,0.03468898,99.63216507],[4.53603961,0.03468724,99.63240503],[4.53603915,0.0346855,99.63264567],[4.53603869,0.03468376,99.63288699],[4.53603822,0.03468202,99.63312899],[4.53603776,0.03468027,99.63337167],[4.5360373,0.03467853,99.63361502],[4.53603684,0.03467679,99.63385906],[4.53603638,0.03467505,99.63410376],[4.53603591,0.0346733,99.63434915],[4.53603545,0.03467156,99.63459521],[4.53603499,0.03466982,99.63484194],[4.53603453,0.03466808,99.63508934],[4.53603407,0.03466633,99.63533742],[4.53603361,0.03466459,99.63558617],[4.53603315,0.03466285,99.63583559],[4.53603268,0.03466111,99.63608567],[4.53603222,0.03465936,99.6363364],[4.53603176,0.03465762,99.63658777],[4.5360313,0.03465588,99.63683977],[4.53603084,0.03465414,99.63709237],[4.53603038,0.03465239,99.63734557],[4.53602992,0.03465065,99.63759936],[4.53602946,0.03464891,99.63785372],[4.536029,0.03464716,99.63810864],[4.53602854,0.03464542,99.6383641],[4.53602808,0.03464368,99.63862009],[4.53602762,0.03464194,99.63887661],[4.53602716,0.03464019,99.63913363],[4.5360267,0.03463845,99.63939114],[4.53602624,0.03463671,99.63964913],[4.53602578,0.03463496,99.63990759],[4.53602532,0.03463322,99.64016651],[4.53602486,0.03463148,99.64042586],[4.5360244,0.03462974,99.64068564],[4.53602394,0.03462799,99.64094584],[4.53602348,0.03462625,99.64120644],[4.53602302,0.03462451,99.64146742],[4.53602257,0.03462276,99.64172878],[4.53602211,0.03462102,99.64199051],[4.53602165,0.03461928,99.64225258],[4.53602119,0.03461753,99.64251499],[4.53602073,0.03461579,99.6427777],[4.53602027,0.03461405,99.64304069],[4.53601981,0.0346123,99.64330395],[4.53601935,0.03461056,99.64356746],[4.53601889,0.03460882,99.64383119],[4.53601844,0.03460707,99.64409513],[4.53601798,0.03460533,99.64435925],[4.53601752,0.03460359,99.64462353],[4.53601706,0.03460184,99.64488795],[4.5360166,0.0346001,99.6451525],[4.53601614,0.03459836,99.64541715],[4.53601568,0.03459661,99.64568188],[4.53601522,0.03459487,99.64594667],[4.53601477,0.03459313,99.6462115],[4.53601431,0.03459138,99.64647635],[4.53601385,0.03458964,99.64674121],[4.53601339,0.0345879,99.64700604],[4.53601293,0.03458615,99.64727084],[4.53601247,0.03458441,99.64753558],[4.53601201,0.03458267,99.64780024],[4.53601156,0.03458092,99.64806479],[4.5360111,0.03457918,99.64832923],[4.53601064,0.03457744,99.64859353],[4.53601018,0.03457569,99.64885768],[4.53600972,0.03457395,99.64912164],[4.53600926,0.03457221,99.64938541],[4.5360088,0.03457047,99.64964895],[4.53600834,0.03456872,99.64991226],[4.53600788,0.03456698,99.65017532],[4.53600742,0.03456524,99.6504381],[4.53600696,0.03456349,99.65070058],[4.53600651,0.03456175,99.65096274],[4.53600605,0.03456001,99.65122457],[4.53600559,0.03455826,99.65148605],[4.53600513,0.03455652,99.65174715],[4.53600467,0.03455478,99.65200786],[4.53600421,0.03455303,99.65226816],[4.53600375,0.03455129,99.65252803],[4.53600329,0.03454955,99.65278744],[4.53600283,0.03454781,99.65304639],[4.53600237,0.03454606,99.65330485],[4.5360019,0.03454432,99.6535628],[4.53600144,0.03454258,99.65382023],[4.53600098,0.03454083,99.65407711],[4.53600052,0.03453909,99.65433343],[4.53600006,0.03453735,99.65458916],[4.5359996,0.03453561,99.65484429],[4.53599914,0.03453386,99.65509881],[4.53599868,0.03453212,99.6553527],[4.53599822,0.03453038,99.65560595],[4.53599775,0.03452864,99.65585856],[4.53599729,0.03452689,99.65611052],[4.53599683,0.03452515,99.65636182],[4.53599637,0.03452341,99.65661247],[4.5359959,0.03452167,99.65686246],[4.53599544,0.03451992,99.65711177],[4.53599498,0.03451818,99.65736042],[4.53599452,0.03451644,99.65760839],[4.53599405,0.0345147,99.65785568],[4.53599359,0.03451295,99.65810229],[4.53599313,0.03451121,99.6583482],[4.53599266,0.03450947,99.65859343],[4.5359922,0.03450773,99.65883795],[4.53599174,0.03450599,99.65908177],[4.53599127,0.03450424,99.65932488],[4.53599081,0.0345025,99.65956728],[4.53599034,0.03450076,99.65980896],[4.53598988,0.03449902,99.66004992],[4.53598941,0.03449728,99.66029015],[4.53598895,0.03449554,99.66052965],[4.53598848,0.03449379,99.66076843],[4.53598802,0.03449205,99.66100648],[4.53598755,0.03449031,99.66124381],[4.53598709,0.03448857,99.66148041],[4.53598662,0.03448683,99.66171628],[4.53598616,0.03448509,99.66195143],[4.53598569,0.03448334,99.66218586],[4.53598523,0.0344816,99.66241957],[4.53598476,0.03447986,99.66265256],[4.53598429,0.03447812,99.66288482],[4.53598383,0.03447638,99.66311637],[4.53598336,0.03447464,99.66334719],[4.53598289,0.0344729,99.6635773],[4.53598243,0.03447115,99.66380669],[4.53598196,0.03446941,99.66403536],[4.53598149,0.03446767,99.66426332],[4.53598103,0.03446593,99.66449055],[4.53598056,0.03446419,99.66471708],[4.53598009,0.03446245,99.66494288],[4.53597962,0.03446071,99.66516798],[4.53597916,0.03445897,99.66539236],[4.53597869,0.03445723,99.66561602],[4.53597822,0.03445548,99.66583897],[4.53597775,0.03445374,99.66606121],[4.53597729,0.034452,99.66628274],[4.53597682,0.03445026,99.66650355],[4.53597635,0.03444852,99.66672366],[4.53597588,0.03444678,99.66694305],[4.53597541,0.03444504,99.66716173],[4.53597494,0.0344433,99.6673797],[4.53597448,0.03444156,99.66759696],[4.53597401,0.03443982,99.66781351],[4.53597354,0.03443808,99.66802935],[4.53597307,0.03443634,99.66824449],[4.5359726,0.03443459,99.66845891],[4.53597213,0.03443285,99.66867262],[4.53597166,0.03443111,99.66888563],[4.53597119,0.03442937,99.66909793],[4.53597072,0.03442763,99.66930952],[4.53597025,0.03442589,99.6695204],[4.53596978,0.03442415,99.66973057],[4.53596931,0.03442241,99.66994003],[4.53596885,0.03442067,99.67014879],[4.53596838,0.03441893,99.67035684],[4.53596791,0.03441719,99.67056418],[4.53596744,0.03441545,99.67077081],[4.53596697,0.03441371,99.67097674],[4.5359665,0.03441197,99.67118196],[4.53596603,0.03441023,99.67138647],[4.53596556,0.03440849,99.67159027],[4.53596509,0.03440675,99.67179336],[4.53596462,0.03440501,99.67199575],[4.53596415,0.03440327,99.67219743],[4.53596368,0.03440153,99.6723984],[4.53596321,0.03439978,99.67259867],[4.53596274,0.03439804,99.67279823],[4.53596226,0.0343963,99.67299709],[4.53596179,0.03439456,99.67319524],[4.53596132,0.03439282,99.67339268],[4.53596085,0.03439108,99.67358942],[4.53596038,0.03438934,99.67378546],[4.53595991,0.0343876,99.67398079],[4.53595944,0.03438586,99.67417542],[4.53595897,0.03438412,99.67436935],[4.5359585,0.03438238,99.67456257],[4.53595803,0.03438064,99.6747551],[4.53595756,0.0343789,99.67494691],[4.53595709,0.03437716,99.67513803],[4.53595662,0.03437542,99.67532844],[4.53595615,0.03437368,99.67551815],[4.53595568,0.03437194,99.67570716],[4.53595521,0.0343702,99.67589547],[4.53595473,0.03436846,99.67608307],[4.53595426,0.03436672,99.67626997],[4.53595379,0.03436498,99.67645617],[4.53595332,0.03436324,99.67664167],[4.53595285,0.0343615,99.67682647],[4.53595238,0.03435976,99.67701056],[4.53595191,0.03435802,99.67719395],[4.53595144,0.03435628,99.67737664],[4.53595097,0.03435454,99.67755863],[4.5359505,0.0343528,99.67773991],[4.53595003,0.03435106,99.67792049],[4.53594956,0.03434932,99.67810037],[4.53594909,0.03434758,99.67827954],[4.53594861,0.03434584,99.67845801],[4.53594814,0.0343441,99.67863577],[4.53594767,0.03434236,99.67881282],[4.5359472,0.03434061,99.67898914],[4.53594673,0.03433887,99.67916473],[4.53594626,0.03433713,99.67933959],[4.53594579,0.03433539,99.6795137],[4.53594532,0.03433365,99.67968705],[4.53594485,0.03433191,99.67985965],[4.53594438,0.03433017,99.68003147],[4.53594391,0.03432843,99.68020252],[4.53594344,0.03432669,99.68037278],[4.53594297,0.03432495,99.68054226],[4.5359425,0.03432321,99.68071093],[4.53594203,0.03432147,99.6808788],[4.53594155,0.03431973,99.68104585],[4.53594108,0.03431799,99.68121208],[4.53594061,0.03431625,99.68137748],[4.53594014,0.03431451,99.68154204],[4.53593967,0.03431277,99.68170576],[4.5359392,0.03431103,99.68186863],[4.53593873,0.03430929,99.68203064],[4.53593826,0.03430755,99.68219177],[4.53593779,0.03430581,99.68235204],[4.53593732,0.03430407,99.68251142],[4.53593685,0.03430233,99.68266991],[4.53593638,0.03430059,99.6828275],[4.53593591,0.03429885,99.68298419],[4.53593544,0.03429711,99.68313997],[4.53593497,0.03429536,99.68329482],[4.5359345,0.03429362,99.68344875],[4.53593403,0.03429188,99.68360174],[4.53593356,0.03429014,99.68375379],[4.53593309,0.0342884,99.68390489],[4.53593262,0.03428666,99.68405503],[4.53593215,0.03428492,99.68420421],[4.53593168,0.03428318,99.68435241],[4.5359312,0.03428144,99.68449963],[4.53593073,0.0342797,99.68464586],[4.53593026,0.03427796,99.6847911],[4.53592979,0.03427622,99.68493534],[4.53592932,0.03427448,99.68507856],[4.53592885,0.03427274,99.68522077],[4.53592838,0.034271,99.68536195],[4.53592791,0.03426926,99.6855021],[4.53592744,0.03426752,99.68564121],[4.53592697,0.03426578,99.68577927],[4.5359265,0.03426404,99.68591628],[4.53592603,0.0342623,99.68605223],[4.53592556,0.03426056,99.6861871],[4.53592509,0.03425882,99.6863209],[4.53592462,0.03425708,99.68645361],[4.53592415,0.03425534,99.68658523],[4.53592368,0.0342536,99.68671575],[4.53592321,0.03425186,99.68684516],[4.53592274,0.03425012,99.68697345],[4.53592227,0.03424838,99.68710063],[4.53592179,0.03424664,99.68722668],[4.53592132,0.03424489,99.68735158],[4.53592085,0.03424315,99.68747535],[4.53592038,0.03424141,99.68759796],[4.53591991,0.03423967,99.68771941],[4.53591944,0.03423793,99.6878397],[4.53591897,0.03423619,99.68795881],[4.5359185,0.03423445,99.68807674],[4.53591803,0.03423271,99.68819349],[4.53591756,0.03423097,99.68830903],[4.53591709,0.03422923,99.68842338],[4.53591662,0.03422749,99.68853651],[4.53591615,0.03422575,99.68864842],[4.53591568,0.03422401,99.68875911],[4.5359152,0.03422227,99.68886856],[4.53591473,0.03422053,99.68897678],[4.53591426,0.03421879,99.68908374],[4.53591379,0.03421705,99.68918945],[4.53591332,0.03421531,99.6892939],[4.53591285,0.03421357,99.68939708],[4.53591238,0.03421183,99.68949898],[4.53591191,0.03421009,99.68959958],[4.53591144,0.03420835,99.68969888],[4.53591097,0.03420661,99.68979685],[4.53591049,0.03420487,99.68989349],[4.53591002,0.03420313,99.68998877],[4.53590955,0.03420139,99.69008268],[4.53590908,0.03419965,99.69017522],[4.53590861,0.03419791,99.69026635],[4.53590814,0.03419617,99.69035607],[4.53590767,0.03419443,99.69044437],[4.53590719,0.03419269,99.69053122],[4.53590672,0.03419095,99.69061662],[4.53590625,0.03418921,99.69070055],[4.53590578,0.03418747,99.69078299],[4.53590531,0.03418573,99.69086394],[4.53590484,0.03418399,99.69094337],[4.53590436,0.03418225,99.69102127],[4.53590389,0.03418051,99.69109762],[4.53590342,0.03417877,99.69117242],[4.53590295,0.03417703,99.69124565],[4.53590247,0.03417529,99.69131729],[4.535902,0.03417355,99.69138733],[4.53590153,0.03417181,99.69145576],[4.53590106,0.03417007,99.69152255],[4.53590058,0.03416833,99.6915877],[4.53590011,0.03416659,99.69165119],[4.53589987,0.03416569,99.69168354]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-4,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-4,"type":"border","predecessorId":0}},{"geometry":{"coordinates":[[4.53651524,0.03649479,99.12796696],[4.5365148,0.03649304,99.12868582],[4.53651435,0.03649129,99.12940399],[4.53651391,0.03648955,99.1301215],[4.53651346,0.0364878,99.1308384],[4.53651301,0.03648605,99.13155472],[4.53651257,0.03648431,99.13227049],[4.53651212,0.03648256,99.13298576],[4.53651168,0.03648082,99.13370056],[4.53651123,0.03647907,99.13441493],[4.53651078,0.03647732,99.13512891],[4.53651034,0.03647558,99.13584254],[4.53650989,0.03647383,99.13655585],[4.53650945,0.03647208,99.13726887],[4.536509,0.03647034,99.13798161],[4.53650855,0.03646859,99.13869406],[4.53650811,0.03646685,99.13940624],[4.53650766,0.0364651,99.14011813],[4.53650722,0.03646335,99.14082975],[4.53650677,0.03646161,99.14154109],[4.53650633,0.03645986,99.14225216],[4.53650588,0.03645811,99.14296295],[4.53650543,0.03645637,99.14367347],[4.53650499,0.03645463,99.14438372],[4.53650455,0.03645288,99.14509369],[4.5365041,0.03645114,99.1458034],[4.53650366,0.03644939,99.14651284],[4.53650321,0.03644764,99.14722202],[4.53650276,0.0364459,99.14793093],[4.53650232,0.03644415,99.14863958],[4.53650187,0.0364424,99.14934796],[4.53650143,0.03644066,99.15005608],[4.53650098,0.03643891,99.15076395],[4.53650054,0.03643716,99.15147155],[4.53650009,0.03643542,99.1521789],[4.53649965,0.03643367,99.15288599],[4.5364992,0.03643192,99.15359282],[4.53649876,0.03643018,99.1542994],[4.53649831,0.03642843,99.15500573],[4.53649787,0.03642668,99.1557118],[4.53649743,0.03642494,99.15641763],[4.53649698,0.03642319,99.1571232],[4.53649654,0.03642144,99.15782853],[4.53649609,0.0364197,99.15853361],[4.53649565,0.03641795,99.15923844],[4.5364952,0.0364162,99.15994303],[4.53649476,0.03641446,99.16064738],[4.53649431,0.03641271,99.16135148],[4.53649387,0.03641096,99.16205534],[4.53649342,0.03640922,99.16275895],[4.53649298,0.03640747,99.16346233],[4.53649253,0.03640572,99.16416547],[4.53649209,0.03640398,99.16486837],[4.53649164,0.03640223,99.16557103],[4.5364912,0.03640048,99.16627346],[4.53649076,0.03639874,99.16697565],[4.53649031,0.03639699,99.16767761],[4.53648987,0.03639524,99.16837934],[4.53648942,0.0363935,99.16908083],[4.53648898,0.03639175,99.16978209],[4.53648853,0.03639,99.17048312],[4.53648809,0.03638826,99.17118392],[4.53648764,0.03638651,99.17188449],[4.5364872,0.03638476,99.17258484],[4.53648675,0.03638302,99.17328495],[4.53648631,0.03638127,99.17398484],[4.53648586,0.03637952,99.17468451],[4.53648542,0.03637778,99.17538395],[4.53648498,0.03637603,99.17608317],[4.53648453,0.03637428,99.17678216],[4.53648409,0.03637254,99.17748093],[4.53648364,0.03637079,99.17817948],[4.5364832,0.03636904,99.1788778],[4.53648275,0.0363673,99.17957587],[4.53648231,0.03636555,99.18027366],[4.53648186,0.0363638,99.18097116],[4.53648142,0.03636206,99.18166838],[4.53648097,0.03636031,99.18236531],[4.53648053,0.03635856,99.18306197],[4.53648008,0.03635682,99.18375835],[4.53647964,0.03635507,99.18445445],[4.53647919,0.03635332,99.18515027],[4.53647875,0.03635158,99.18584582],[4.5364783,0.03634983,99.18654109],[4.53647786,0.03634809,99.18723609],[4.53647741,0.03634634,99.18793081],[4.53647697,0.03634459,99.18862526],[4.53647652,0.03634285,99.18931944],[4.53647607,0.0363411,99.19001335],[4.53647563,0.03633935,99.19070699],[4.53647518,0.03633761,99.19140037],[4.53647474,0.03633586,99.19209347],[4.53647429,0.03633411,99.19278631],[4.53647385,0.03633237,99.19347889],[4.5364734,0.03633062,99.1941712],[4.53647295,0.03632887,99.19486324],[4.53647251,0.03632713,99.19555503],[4.53647206,0.03632538,99.19624655],[4.53647162,0.03632363,99.19693781],[4.53647117,0.03632189,99.19762881],[4.53647072,0.03632014,99.19831955],[4.53647028,0.0363184,99.19901004],[4.53646983,0.03631665,99.19970026],[4.53646939,0.0363149,99.20039023],[4.53646894,0.03631316,99.20107995],[4.53646849,0.03631141,99.20176941],[4.53646805,0.03630966,99.20245862],[4.5364676,0.03630792,99.20314759],[4.53646715,0.03630617,99.20383633],[4.5364667,0.03630443,99.20452485],[4.53646626,0.03630268,99.20521315],[4.53646581,0.03630093,99.20590126],[4.53646536,0.03629919,99.20658916],[4.53646492,0.03629744,99.20727689],[4.53646447,0.0362957,99.20796444],[4.53646402,0.03629395,99.20865182],[4.53646357,0.0362922,99.20933905],[4.53646313,0.03629046,99.21002613],[4.53646268,0.03628871,99.21071308],[4.53646223,0.03628697,99.21139989],[4.53646178,0.03628522,99.21208659],[4.53646134,0.03628347,99.21277318],[4.53646089,0.03628173,99.21345967],[4.53646044,0.03627998,99.21414607],[4.53645999,0.03627824,99.21483238],[4.53645955,0.03627649,99.21551861],[4.5364591,0.03627474,99.21620477],[4.53645865,0.036273,99.21689085],[4.5364582,0.03627125,99.21757687],[4.53645775,0.03626951,99.21826284],[4.53645731,0.03626776,99.21894875],[4.53645686,0.03626602,99.21963461],[4.53645641,0.03626427,99.22032043],[4.53645596,0.03626252,99.22100622],[4.53645551,0.03626078,99.22169197],[4.53645506,0.03625903,99.2223777],[4.53645462,0.03625729,99.22306341],[4.53645417,0.03625554,99.22374911],[4.53645372,0.0362538,99.2244348],[4.53645327,0.03625205,99.22512049],[4.53645282,0.0362503,99.22580618],[4.53645237,0.03624856,99.22649187],[4.53645192,0.03624681,99.22717759],[4.53645148,0.03624507,99.22786332],[4.53645103,0.03624332,99.22854908],[4.53645058,0.03624158,99.22923487],[4.53645013,0.03623983,99.2299207],[4.53644968,0.03623808,99.23060658],[4.53644923,0.03623634,99.23129255],[4.53644878,0.03623459,99.23197863],[4.53644833,0.03623285,99.23266487],[4.53644788,0.0362311,99.23335127],[4.53644743,0.03622936,99.23403789],[4.53644699,0.03622761,99.23472472],[4.53644654,0.03622586,99.23541178],[4.53644609,0.03622412,99.23609906],[4.53644564,0.03622237,99.23678657],[4.53644519,0.03622063,99.23747431],[4.53644474,0.03621888,99.23816228],[4.53644429,0.03621714,99.23885049],[4.53644384,0.03621539,99.23953894],[4.53644339,0.03621365,99.24022762],[4.53644294,0.0362119,99.24091656],[4.53644249,0.03621015,99.24160574],[4.53644205,0.03620841,99.24229517],[4.5364416,0.03620666,99.24298486],[4.53644115,0.03620492,99.2436748],[4.5364407,0.03620317,99.244365],[4.53644025,0.03620143,99.24505547],[4.5364398,0.03619968,99.24574619],[4.53643935,0.03619794,99.24643719],[4.5364389,0.03619619,99.24712845],[4.53643845,0.03619444,99.24781999],[4.536438,0.0361927,99.2485118],[4.53643755,0.03619095,99.2492039],[4.5364371,0.03618921,99.24989627],[4.53643665,0.03618746,99.25058893],[4.5364362,0.03618572,99.25128187],[4.53643576,0.03618397,99.25197511],[4.53643531,0.03618223,99.25266864],[4.53643486,0.03618048,99.25336246],[4.53643441,0.03617873,99.25405658],[4.53643396,0.03617699,99.254751],[4.53643351,0.03617524,99.25544573],[4.53643306,0.0361735,99.25614076],[4.53643261,0.03617175,99.2568361],[4.53643216,0.03617001,99.25753175],[4.53643171,0.03616826,99.25822772],[4.53643126,0.03616652,99.25892401],[4.53643081,0.03616477,99.25962061],[4.53643036,0.03616303,99.26031754],[4.53642991,0.03616128,99.26101479],[4.53642946,0.03615953,99.26171238],[4.53642901,0.03615779,99.26241029],[4.53642856,0.03615604,99.26310854],[4.53642811,0.0361543,99.26380713],[4.53642766,0.03615255,99.26450605],[4.53642721,0.03615081,99.26520532],[4.53642676,0.03614906,99.26590494],[4.53642631,0.03614732,99.2666049],[4.53642586,0.03614557,99.26730521],[4.53642541,0.03614383,99.26800588],[4.53642496,0.03614208,99.2687069],[4.53642451,0.03614034,99.26940828],[4.53642406,0.03613859,99.27011002],[4.53642361,0.03613684,99.27081213],[4.53642316,0.0361351,99.27151461],[4.53642271,0.03613335,99.27221745],[4.53642226,0.03613161,99.27292065],[4.53642181,0.03612986,99.27362423],[4.53642136,0.03612812,99.27432817],[4.53642091,0.03612637,99.27503248],[4.53642046,0.03612463,99.27573717],[4.53642001,0.03612288,99.27644226],[4.53641956,0.03612114,99.27714776],[4.53641911,0.03611939,99.2778537],[4.53641866,0.03611765,99.2785601],[4.5364182,0.0361159,99.27926697],[4.53641775,0.03611416,99.27997431],[4.5364173,0.03611241,99.28068214],[4.53641685,0.03611067,99.28139046],[4.5364164,0.03610892,99.28209929],[4.53641595,0.03610718,99.28280863],[4.5364155,0.03610543,99.28351849],[4.53641505,0.03610368,99.28422888],[4.5364146,0.03610194,99.28493981],[4.53641415,0.03610019,99.28565129],[4.5364137,0.03609845,99.28636333],[4.53641325,0.0360967,99.28707593],[4.53641279,0.03609496,99.28778911],[4.53641234,0.03609321,99.28850287],[4.53641189,0.03609147,99.28921722],[4.53641144,0.03608972,99.28993217],[4.53641099,0.03608798,99.29064774],[4.53641054,0.03608623,99.29136392],[4.53641009,0.03608449,99.29208074],[4.53640964,0.03608274,99.29279818],[4.53640919,0.036081,99.29351628],[4.53640874,0.03607925,99.29423503],[4.53640828,0.03607751,99.29495444],[4.53640783,0.03607576,99.29567453],[4.53640738,0.03607402,99.2963953],[4.53640693,0.03607227,99.29711675],[4.53640648,0.03607053,99.29783891],[4.53640603,0.03606878,99.29856177],[4.53640558,0.03606704,99.29928535],[4.53640513,0.03606529,99.30000966],[4.53640468,0.03606355,99.3007347],[4.53640423,0.0360618,99.30146049],[4.53640378,0.03606006,99.30218703],[4.53640332,0.03605831,99.30291432],[4.53640287,0.03605657,99.30364239],[4.53640242,0.03605482,99.30437124],[4.53640197,0.03605307,99.30510088],[4.53640152,0.03605133,99.30583131],[4.53640107,0.03604958,99.30656254],[4.53640062,0.03604784,99.30729459],[4.53640017,0.03604609,99.30802747],[4.53639972,0.03604435,99.30876117],[4.53639927,0.0360426,99.30949572],[4.53639882,0.03604086,99.31023112],[4.53639836,0.03603911,99.31096737],[4.53639791,0.03603737,99.31170449],[4.53639746,0.03603562,99.31244248],[4.53639701,0.03603388,99.31318135],[4.53639656,0.03603213,99.3139211],[4.53639611,0.03603039,99.31466174],[4.53639566,0.03602864,99.31540327],[4.53639521,0.0360269,99.31614569],[4.53639476,0.03602515,99.31688902],[4.53639431,0.03602341,99.31763326],[4.53639386,0.03602166,99.31837841],[4.53639341,0.03601992,99.31912447],[4.53639296,0.03601817,99.31987146],[4.53639251,0.03601642,99.32061938],[4.53639206,0.03601468,99.32136823],[4.53639161,0.03601293,99.32211802],[4.53639116,0.03601119,99.32286875],[4.5363907,0.03600944,99.32362043],[4.53639025,0.0360077,99.32437306],[4.5363898,0.03600595,99.32512665],[4.53638935,0.03600421,99.32588121],[4.5363889,0.03600246,99.32663673],[4.53638845,0.03600072,99.32739323],[4.536388,0.03599897,99.3281507],[4.53638755,0.03599723,99.32890916],[4.5363871,0.03599548,99.32966861],[4.53638665,0.03599373,99.33042905],[4.5363862,0.03599199,99.33119049],[4.53638575,0.03599024,99.33195294],[4.5363853,0.0359885,99.33271639],[4.53638485,0.03598675,99.33348085],[4.5363844,0.03598501,99.33424633],[4.53638395,0.03598326,99.33501281],[4.5363835,0.03598152,99.33578032],[4.53638305,0.03597977,99.33654883],[4.5363826,0.03597803,99.33731836],[4.53638215,0.03597628,99.33808892],[4.5363817,0.03597453,99.33886049],[4.53638125,0.03597279,99.33963308],[4.5363808,0.03597104,99.34040669],[4.53638035,0.0359693,99.34118132],[4.5363799,0.03596755,99.34195698],[4.53637945,0.03596581,99.34273367],[4.536379,0.03596406,99.34351138],[4.53637855,0.03596232,99.34429012],[4.5363781,0.03596057,99.34506989],[4.53637765,0.03595883,99.34585069],[4.5363772,0.03595708,99.34663249],[4.53637675,0.03595533,99.34741528],[4.5363763,0.03595359,99.34819904],[4.53637585,0.03595184,99.34898374],[4.5363754,0.0359501,99.34976937],[4.53637495,0.03594835,99.35055591],[4.5363745,0.03594661,99.35134333],[4.53637405,0.03594486,99.35213162],[4.5363736,0.03594312,99.35292075],[4.53637315,0.03594137,99.35371071],[4.5363727,0.03593962,99.35450148],[4.53637225,0.03593788,99.35529303],[4.5363718,0.03593613,99.35608535],[4.53637135,0.03593439,99.35687841],[4.5363709,0.03593264,99.3576722],[4.53637045,0.0359309,99.3584667],[4.53637,0.03592915,99.35926188],[4.53636955,0.03592741,99.36005773],[4.5363691,0.03592566,99.36085423],[4.53636865,0.03592392,99.36165135],[4.5363682,0.03592217,99.36244908],[4.53636775,0.03592042,99.36324739],[4.5363673,0.03591868,99.36404627],[4.53636685,0.03591693,99.3648457],[4.5363664,0.03591519,99.36564565],[4.53636595,0.03591344,99.3664461],[4.5363655,0.0359117,99.36724704],[4.53636505,0.03590995,99.36804844],[4.5363646,0.03590821,99.36885028],[4.53636415,0.03590646,99.36965254],[4.5363637,0.03590472,99.37045521],[4.53636325,0.03590297,99.37125827],[4.5363628,0.03590122,99.3720617],[4.53636235,0.03589948,99.37286548],[4.5363619,0.03589773,99.37366961],[4.53636145,0.03589599,99.37447405],[4.536361,0.03589424,99.3752788],[4.53636055,0.0358925,99.37608385],[4.5363601,0.03589075,99.37688916],[4.53635965,0.03588901,99.37769473],[4.5363592,0.03588726,99.37850053],[4.53635875,0.03588552,99.37930656],[4.5363583,0.03588377,99.3801128],[4.53635785,0.03588202,99.38091922],[4.5363574,0.03588028,99.38172582],[4.53635695,0.03587853,99.38253257],[4.5363565,0.03587679,99.38333946],[4.53635605,0.03587504,99.38414648],[4.5363556,0.0358733,99.3849536],[4.53635514,0.03587155,99.3857608],[4.53635469,0.03586981,99.38656809],[4.53635424,0.03586806,99.38737542],[4.53635379,0.03586632,99.3881828],[4.53635334,0.03586457,99.3889902],[4.53635289,0.03586283,99.3897976],[4.53635244,0.03586108,99.39060499],[4.53635199,0.03585934,99.39141236],[4.53635154,0.03585759,99.39221968],[4.53635109,0.03585585,99.39302694],[4.53635064,0.0358541,99.39383413],[4.53635018,0.03585235,99.39464122],[4.53634973,0.03585061,99.3954482],[4.53634928,0.03584886,99.39625505],[4.53634883,0.03584712,99.39706176],[4.53634838,0.03584537,99.39786831],[4.53634793,0.03584363,99.39867468],[4.53634748,0.03584188,99.39948086],[4.53634703,0.03584014,99.40028683],[4.53634658,0.03583839,99.40109257],[4.53634612,0.03583665,99.40189807],[4.53634567,0.0358349,99.4027033],[4.53634522,0.03583316,99.40350827],[4.53634477,0.03583141,99.40431293],[4.53634432,0.03582967,99.40511729],[4.53634387,0.03582792,99.40592133],[4.53634342,0.03582618,99.40672502],[4.53634296,0.03582443,99.40752835],[4.53634251,0.03582269,99.40833131],[4.53634206,0.03582094,99.40913389],[4.53634161,0.0358192,99.40993606],[4.53634116,0.03581745,99.4107378],[4.53634071,0.03581571,99.41153912],[4.53634025,0.03581396,99.41233998],[4.5363398,0.03581222,99.41314038],[4.53633935,0.03581047,99.41394029],[4.5363389,0.03580873,99.41473971],[4.53633845,0.03580698,99.41553861],[4.536338,0.03580524,99.41633698],[4.53633754,0.03580349,99.41713481],[4.53633709,0.03580175,99.41793208],[4.53633664,0.0358,99.41872877],[4.53633619,0.03579826,99.41952487],[4.53633574,0.03579651,99.42032037],[4.53633528,0.03579477,99.42111524],[4.53633483,0.03579302,99.42190947],[4.53633438,0.03579128,99.42270305],[4.53633393,0.03578953,99.42349596],[4.53633348,0.03578779,99.42428819],[4.53633302,0.03578604,99.42507971],[4.53633257,0.0357843,99.42587052],[4.53633212,0.03578255,99.42666059],[4.53633167,0.03578081,99.42744992],[4.53633121,0.03577906,99.42823848],[4.53633076,0.03577732,99.42902627],[4.53633031,0.03577557,99.42981326],[4.53632986,0.03577383,99.43059943],[4.53632941,0.03577208,99.43138479],[4.53632895,0.03577034,99.4321693],[4.5363285,0.03576859,99.43295295],[4.53632805,0.03576685,99.43373574],[4.5363276,0.0357651,99.43451763],[4.53632714,0.03576336,99.43529862],[4.53632669,0.03576161,99.43607868],[4.53632624,0.03575987,99.43685782],[4.53632579,0.03575812,99.437636],[4.53632533,0.03575638,99.43841321],[4.53632488,0.03575463,99.43918944],[4.53632443,0.03575289,99.43996468],[4.53632398,0.03575114,99.4407389],[4.53632352,0.0357494,99.44151209],[4.53632307,0.03574765,99.44228423],[4.53632262,0.03574591,99.44305531],[4.53632217,0.03574416,99.44382532],[4.53632171,0.03574242,99.44459423],[4.53632126,0.03574067,99.44536204],[4.53632081,0.03573893,99.44612872],[4.53632035,0.03573718,99.44689426],[4.5363199,0.03573544,99.44765865],[4.53631945,0.03573369,99.44842186],[4.536319,0.03573195,99.44918389],[4.53631854,0.0357302,99.44994472],[4.53631809,0.03572846,99.45070433],[4.53631764,0.03572671,99.4514627],[4.53631718,0.03572497,99.45221983],[4.53631673,0.03572322,99.45297569],[4.53631628,0.03572148,99.45373026],[4.53631583,0.03571973,99.45448354],[4.53631537,0.03571799,99.45523551],[4.53631492,0.03571625,99.45598612],[4.53631447,0.0357145,99.45673538],[4.53631401,0.03571276,99.45748325],[4.53631356,0.03571101,99.45822971],[4.53631311,0.03570927,99.45897474],[4.53631266,0.03570752,99.45971832],[4.5363122,0.03570578,99.46046042],[4.53631175,0.03570403,99.46120102],[4.5363113,0.03570229,99.4619401],[4.53631084,0.03570054,99.46267764],[4.53631039,0.0356988,99.46341362],[4.53630994,0.03569705,99.46414801],[4.53630948,0.03569531,99.46488079],[4.53630903,0.03569357,99.46561194],[4.53630858,0.03569182,99.46634144],[4.53630812,0.03569008,99.46706926],[4.53630767,0.03568833,99.46779539],[4.53630721,0.03568659,99.4685198],[4.53630676,0.03568484,99.46924246],[4.53630631,0.0356831,99.46996337],[4.53630585,0.03568135,99.47068248],[4.5363054,0.03567961,99.47139979],[4.53630495,0.03567786,99.47211527],[4.53630449,0.03567612,99.4728289],[4.53630404,0.03567438,99.47354066],[4.53630358,0.03567263,99.47425052],[4.53630313,0.03567089,99.47495847],[4.53630268,0.03566914,99.47566447],[4.53630222,0.0356674,99.47636852],[4.53630177,0.03566565,99.47707058],[4.53630131,0.03566391,99.47777065],[4.53630086,0.03566216,99.47846871],[4.5363004,0.03566042,99.47916476],[4.53629995,0.03565868,99.47985878],[4.53629949,0.03565693,99.48055078],[4.53629904,0.03565519,99.48124074],[4.53629858,0.03565344,99.48192866],[4.53629813,0.0356517,99.48261453],[4.53629767,0.03564995,99.48329834],[4.53629722,0.03564821,99.48398008],[4.53629676,0.03564647,99.48465975],[4.53629631,0.03564472,99.48533734],[4.53629585,0.03564298,99.48601283],[4.5362954,0.03564123,99.48668623],[4.53629494,0.03563949,99.48735752],[4.53629449,0.03563775,99.4880267],[4.53629403,0.035636,99.48869376],[4.53629358,0.03563426,99.48935869],[4.53629312,0.03563251,99.49002148],[4.53629266,0.03563077,99.49068213],[4.53629221,0.03562903,99.49134062],[4.53629175,0.03562728,99.49199695],[4.5362913,0.03562554,99.49265111],[4.53629084,0.03562379,99.4933031],[4.53629039,0.03562205,99.4939529],[4.53628993,0.03562031,99.4946005],[4.53628947,0.03561856,99.49524591],[4.53628902,0.03561682,99.4958891],[4.53628856,0.03561507,99.49653007],[4.53628811,0.03561333,99.49716882],[4.53628765,0.03561159,99.49780534],[4.5362872,0.03560984,99.49843961],[4.53628674,0.0356081,99.49907163],[4.53628628,0.03560635,99.49970139],[4.53628583,0.03560461,99.50032888],[4.53628537,0.03560287,99.5009541],[4.53628492,0.03560112,99.50157703],[4.53628446,0.03559938,99.50219766],[4.53628401,0.03559763,99.502816],[4.53628355,0.03559589,99.50343202],[4.53628309,0.03559415,99.50404573],[4.53628264,0.0355924,99.5046571],[4.53628218,0.03559066,99.50526614],[4.53628173,0.03558891,99.50587283],[4.53628127,0.03558717,99.50647717],[4.53628082,0.03558543,99.50707914],[4.53628036,0.03558368,99.50767874],[4.5362799,0.03558194,99.50827596],[4.53627945,0.03558019,99.50887082],[4.53627899,0.03557845,99.50946332],[4.53627854,0.0355767,99.5100535],[4.53627808,0.03557496,99.51064136],[4.53627763,0.03557322,99.51122693],[4.53627717,0.03557147,99.51181023],[4.53627672,0.03556973,99.51239128],[4.53627626,0.03556798,99.51297009],[4.53627581,0.03556624,99.51354669],[4.53627535,0.0355645,99.51412109],[4.5362749,0.03556275,99.51469331],[4.53627444,0.03556101,99.51526338],[4.53627399,0.03555926,99.51583131],[4.53627353,0.03555752,99.51639712],[4.53627308,0.03555577,99.51696084],[4.53627262,0.03555403,99.51752247],[4.53627217,0.03555229,99.51808203],[4.53627172,0.03555054,99.51863951],[4.53627126,0.0355488,99.51919491],[4.53627081,0.03554705,99.51974823],[4.53627035,0.03554531,99.52029947],[4.5362699,0.03554356,99.52084861],[4.53626945,0.03554182,99.52139565],[4.53626899,0.03554007,99.52194059],[4.53626854,0.03553833,99.52248342],[4.53626809,0.03553659,99.52302415],[4.53626763,0.03553484,99.52356276],[4.53626718,0.0355331,99.52409925],[4.53626672,0.03553135,99.52463362],[4.53626627,0.03552961,99.52516585],[4.53626582,0.03552786,99.52569596],[4.53626536,0.03552612,99.52622393],[4.53626491,0.03552437,99.52674976],[4.53626446,0.03552263,99.52727344],[4.53626401,0.03552088,99.52779497],[4.53626355,0.03551914,99.52831435],[4.5362631,0.0355174,99.52883157],[4.53626265,0.03551565,99.52934663],[4.53626219,0.03551391,99.52985952],[4.53626174,0.03551216,99.53037024],[4.53626129,0.03551042,99.53087878],[4.53626083,0.03550867,99.53138515],[4.53626038,0.03550693,99.53188933],[4.53625993,0.03550518,99.53239132],[4.53625947,0.03550344,99.53289113],[4.53625902,0.03550169,99.53338873],[4.53625857,0.03549995,99.53388414],[4.53625812,0.0354982,99.53437734],[4.53625766,0.03549646,99.53486833],[4.53625721,0.03549471,99.53535711],[4.53625676,0.03549297,99.53584367],[4.5362563,0.03549123,99.53632801],[4.53625585,0.03548948,99.53681013],[4.5362554,0.03548774,99.53729002],[4.53625494,0.03548599,99.53776767],[4.53625449,0.03548425,99.53824308],[4.53625404,0.0354825,99.53871626],[4.53625358,0.03548076,99.53918718],[4.53625313,0.03547901,99.53965586],[4.53625267,0.03547727,99.54012228],[4.53625222,0.03547553,99.54058645],[4.53625177,0.03547378,99.54104835],[4.53625131,0.03547204,99.54150798],[4.53625086,0.03547029,99.54196534],[4.5362504,0.03546855,99.54242043],[4.53624995,0.0354668,99.54287323],[4.5362495,0.03546506,99.54332375],[4.53624904,0.03546331,99.54377199],[4.53624859,0.03546157,99.54421793],[4.53624813,0.03545983,99.54466157],[4.53624768,0.03545808,99.54510291],[4.53624722,0.03545634,99.54554195],[4.53624677,0.03545459,99.54597867],[4.53624631,0.03545285,99.54641308],[4.53624586,0.03545111,99.54684518],[4.5362454,0.03544936,99.54727495],[4.53624495,0.03544762,99.54770239],[4.53624449,0.03544587,99.54812751],[4.53624403,0.03544413,99.54855032],[4.53624358,0.03544239,99.54897085],[4.53624312,0.03544064,99.5493891],[4.53624267,0.0354389,99.5498051],[4.53624221,0.03543716,99.55021885],[4.53624175,0.03543541,99.55063038],[4.5362413,0.03543367,99.5510397],[4.53624084,0.03543192,99.55144683],[4.53624038,0.03543018,99.55185178],[4.53623993,0.03542844,99.55225457],[4.53623947,0.03542669,99.55265521],[4.53623901,0.03542495,99.55305373],[4.53623855,0.03542321,99.55345014],[4.5362381,0.03542146,99.55384445],[4.53623764,0.03541972,99.55423668],[4.53623718,0.03541798,99.55462684],[4.53623672,0.03541623,99.55501496],[4.53623627,0.03541449,99.55540105],[4.53623581,0.03541275,99.55578512],[4.53623535,0.035411,99.5561672],[4.53623489,0.03540926,99.5565473],[4.53623443,0.03540752,99.55692545],[4.53623398,0.03540577,99.55730166],[4.53623352,0.03540403,99.55767595],[4.53623306,0.03540229,99.55804834],[4.5362326,0.03540054,99.55841884],[4.53623214,0.0353988,99.55878747],[4.53623168,0.03539706,99.55915423],[4.53623123,0.03539531,99.55951915],[4.53623077,0.03539357,99.55988224],[4.53623031,0.03539183,99.56024351],[4.53622985,0.03539008,99.56060299],[4.53622939,0.03538834,99.56096068],[4.53622893,0.0353866,99.5613166],[4.53622847,0.03538486,99.56167076],[4.53622802,0.03538311,99.56202319],[4.53622756,0.03538137,99.56237389],[4.5362271,0.03537963,99.56272288],[4.53622664,0.03537788,99.56307017],[4.53622618,0.03537614,99.56341579],[4.53622572,0.0353744,99.56375974],[4.53622526,0.03537265,99.56410204],[4.5362248,0.03537091,99.5644427],[4.53622434,0.03536917,99.56478174],[4.53622389,0.03536742,99.56511918],[4.53622343,0.03536568,99.56545503],[4.53622297,0.03536394,99.56578931],[4.53622251,0.0353622,99.56612202],[4.53622205,0.03536045,99.56645319],[4.53622159,0.03535871,99.56678284],[4.53622113,0.03535697,99.56711097],[4.53622067,0.03535522,99.56743759],[4.53622022,0.03535348,99.56776274],[4.53621976,0.03535174,99.56808642],[4.5362193,0.03534999,99.56840864],[4.53621884,0.03534825,99.56872943],[4.53621838,0.03534651,99.56904879],[4.53621792,0.03534476,99.56936675],[4.53621746,0.03534302,99.56968331],[4.536217,0.03534128,99.5699985],[4.53621655,0.03533954,99.57031233],[4.53621609,0.03533779,99.57062481],[4.53621563,0.03533605,99.57093596],[4.53621517,0.03533431,99.5712458],[4.53621471,0.03533256,99.57155433],[4.53621425,0.03533082,99.57186159],[4.5362138,0.03532908,99.57216757],[4.53621334,0.03532733,99.5724723],[4.53621288,0.03532559,99.57277579],[4.53621242,0.03532385,99.57307807],[4.53621196,0.0353221,99.57337913],[4.53621151,0.03532036,99.573679],[4.53621105,0.03531862,99.5739777],[4.53621059,0.03531687,99.57427524],[4.53621013,0.03531513,99.57457162],[4.53620967,0.03531339,99.57486684],[4.53620922,0.03531164,99.5751609],[4.53620876,0.0353099,99.57545381],[4.5362083,0.03530816,99.57574557],[4.53620784,0.03530641,99.57603617],[4.53620739,0.03530467,99.57632563],[4.53620693,0.03530293,99.57661393],[4.53620647,0.03530118,99.57690109],[4.53620602,0.03529944,99.5771871],[4.53620556,0.0352977,99.57747196],[4.5362051,0.03529595,99.57775568],[4.53620464,0.03529421,99.57803825],[4.53620419,0.03529247,99.57831968],[4.53620373,0.03529072,99.57859997],[4.53620327,0.03528898,99.57887912],[4.53620282,0.03528724,99.57915713],[4.53620236,0.03528549,99.579434],[4.5362019,0.03528375,99.57970974],[4.53620145,0.03528201,99.57998433],[4.53620099,0.03528026,99.5802578],[4.53620053,0.03527852,99.58053013],[4.53620008,0.03527677,99.58080133],[4.53619962,0.03527503,99.58107139],[4.53619916,0.03527329,99.58134033],[4.53619871,0.03527154,99.58160813],[4.53619825,0.0352698,99.58187481],[4.53619779,0.03526806,99.58214036],[4.53619734,0.03526631,99.58240479],[4.53619688,0.03526457,99.58266808],[4.53619642,0.03526283,99.58293026],[4.53619597,0.03526108,99.5831913],[4.53619551,0.03525934,99.58345123],[4.53619505,0.0352576,99.58371004],[4.5361946,0.03525585,99.58396772],[4.53619414,0.03525411,99.58422428],[4.53619368,0.03525236,99.58447973],[4.53619323,0.03525062,99.58473406],[4.53619277,0.03524888,99.58498728],[4.53619231,0.03524713,99.5852394],[4.53619186,0.03524539,99.58549041],[4.5361914,0.03524365,99.58574031],[4.53619094,0.0352419,99.58598913],[4.53619049,0.03524016,99.58623684],[4.53619003,0.03523842,99.58648347],[4.53618957,0.03523667,99.58672901],[4.53618912,0.03523493,99.58697345],[4.53618866,0.03523319,99.58721682],[4.5361882,0.03523144,99.5874591],[4.53618775,0.0352297,99.5877003],[4.53618729,0.03522795,99.58794042],[4.53618683,0.03522621,99.58817947],[4.53618638,0.03522447,99.58841745],[4.53618592,0.03522272,99.58865435],[4.53618546,0.03522098,99.58889019],[4.53618501,0.03521924,99.58912496],[4.53618455,0.03521749,99.58935867],[4.53618409,0.03521575,99.58959132],[4.53618364,0.03521401,99.58982291],[4.53618318,0.03521226,99.59005344],[4.53618272,0.03521052,99.59028291],[4.53618226,0.03520878,99.59051134],[4.53618181,0.03520703,99.59073871],[4.53618135,0.03520529,99.59096504],[4.53618089,0.03520355,99.59119032],[4.53618043,0.0352018,99.59141456],[4.53617998,0.03520006,99.59163776],[4.53617952,0.03519832,99.59185992],[4.53617906,0.03519657,99.59208104],[4.5361786,0.03519483,99.59230113],[4.53617815,0.03519309,99.59252018],[4.53617769,0.03519134,99.59273821],[4.53617723,0.0351896,99.5929552],[4.53617677,0.03518786,99.59317117],[4.53617632,0.03518611,99.59338612],[4.53617586,0.03518437,99.59360005],[4.5361754,0.03518263,99.59381295],[4.53617494,0.03518088,99.59402484],[4.53617448,0.03517914,99.59423571],[4.53617402,0.0351774,99.59444557],[4.53617357,0.03517566,99.59465441],[4.53617311,0.03517391,99.59486225],[4.53617265,0.03517217,99.59506907],[4.53617219,0.03517043,99.5952749],[4.53617173,0.03516868,99.59547971],[4.53617127,0.03516694,99.59568353],[4.53617081,0.0351652,99.59588635],[4.53617035,0.03516345,99.59608816],[4.5361699,0.03516171,99.59628899],[4.53616944,0.03515997,99.59648881],[4.53616898,0.03515823,99.59668765],[4.53616852,0.03515648,99.59688549],[4.53616806,0.03515474,99.59708238],[4.5361676,0.035153,99.59727831],[4.53616714,0.03515126,99.59747333],[4.53616668,0.03514951,99.59766746],[4.53616622,0.03514777,99.59786071],[4.53616576,0.03514603,99.59805312],[4.5361653,0.03514428,99.59824471],[4.53616484,0.03514254,99.59843549],[4.53616438,0.0351408,99.59862551],[4.53616392,0.03513906,99.59881477],[4.53616346,0.03513731,99.59900331],[4.536163,0.03513557,99.59919115],[4.53616254,0.03513383,99.59937831],[4.53616208,0.03513209,99.59956482],[4.53616162,0.03513034,99.5997507],[4.53616116,0.0351286,99.59993599],[4.5361607,0.03512686,99.60012069],[4.53616024,0.03512512,99.60030484],[4.53615978,0.03512337,99.60048846],[4.53615932,0.03512163,99.60067157],[4.53615886,0.03511989,99.60085421],[4.5361584,0.03511815,99.6010364],[4.53615794,0.0351164,99.60121815],[4.53615748,0.03511466,99.6013995],[4.53615702,0.03511292,99.60158047],[4.53615656,0.03511118,99.60176109],[4.5361561,0.03510943,99.60194137],[4.53615564,0.03510769,99.60212135],[4.53615518,0.03510595,99.60230106],[4.53615472,0.0351042,99.60248051],[4.53615426,0.03510246,99.60265973],[4.5361538,0.03510072,99.60283874],[4.53615334,0.03509898,99.60301758],[4.53615288,0.03509723,99.60319627],[4.53615242,0.03509549,99.60337482],[4.53615196,0.03509375,99.60355328],[4.5361515,0.03509201,99.60373166],[4.53615105,0.03509026,99.60390999],[4.53615059,0.03508852,99.60408829],[4.53615013,0.03508678,99.60426659],[4.53614967,0.03508503,99.60444492],[4.53614921,0.03508329,99.60462329],[4.53614875,0.03508155,99.60480171],[4.5361483,0.0350798,99.60498015],[4.53614784,0.03507806,99.60515863],[4.53614738,0.03507632,99.60533711],[4.53614692,0.03507458,99.6055156],[4.53614646,0.03507283,99.60569408],[4.53614601,0.03507109,99.60587255],[4.53614555,0.03506935,99.60605099],[4.53614509,0.0350676,99.6062294],[4.53614463,0.03506586,99.60640776],[4.53614418,0.03506412,99.60658607],[4.53614372,0.03506237,99.60676432],[4.53614326,0.03506063,99.60694249],[4.53614281,0.03505889,99.60712058],[4.53614235,0.03505714,99.60729857],[4.53614189,0.0350554,99.60747646],[4.53614143,0.03505366,99.60765424],[4.53614098,0.03505191,99.60783189],[4.53614052,0.03505017,99.60800941],[4.53614006,0.03504843,99.60818678],[4.53613961,0.03504668,99.608364],[4.53613915,0.03504494,99.60854106],[4.53613869,0.0350432,99.60871794],[4.53613824,0.03504145,99.60889463],[4.53613778,0.03503971,99.60907113],[4.53613732,0.03503797,99.60924742],[4.53613687,0.03503622,99.6094235],[4.53613641,0.03503448,99.60959935],[4.53613595,0.03503273,99.60977496],[4.5361355,0.03503099,99.60995032],[4.53613504,0.03502925,99.61012542],[4.53613458,0.0350275,99.61030026],[4.53613413,0.03502576,99.61047481],[4.53613367,0.03502402,99.61064907],[4.53613321,0.03502227,99.61082304],[4.53613275,0.03502053,99.6109967],[4.5361323,0.03501879,99.61117004],[4.53613184,0.03501704,99.61134307],[4.53613138,0.0350153,99.61151576],[4.53613092,0.03501356,99.61168811],[4.53613047,0.03501182,99.61186012],[4.53613001,0.03501008,99.61203177],[4.53612955,0.03500833,99.61220305],[4.53612909,0.03500659,99.61237394],[4.53612864,0.03500485,99.61254444],[4.53612818,0.0350031,99.61271455],[4.53612772,0.03500136,99.61288426],[4.53612726,0.03499962,99.61305361],[4.5361268,0.03499787,99.61322259],[4.53612634,0.03499613,99.61339122],[4.53612589,0.03499439,99.6135595],[4.53612543,0.03499265,99.61372746],[4.53612497,0.0349909,99.6138951],[4.53612451,0.03498916,99.61406242],[4.53612405,0.03498742,99.61422945],[4.53612359,0.03498567,99.6143962],[4.53612313,0.03498393,99.61456267],[4.53612267,0.03498219,99.61472887],[4.53612221,0.03498045,99.61489482],[4.53612175,0.0349787,99.61506052],[4.53612129,0.03497696,99.615226],[4.53612084,0.03497522,99.61539125],[4.53612038,0.03497348,99.61555629],[4.53611992,0.03497173,99.61572113],[4.53611946,0.03496999,99.61588577],[4.536119,0.03496825,99.61605024],[4.53611854,0.03496651,99.61621452],[4.53611808,0.03496476,99.61637865],[4.53611762,0.03496302,99.61654262],[4.53611715,0.03496128,99.61670644],[4.53611669,0.03495954,99.61687013],[4.53611623,0.03495779,99.6170337],[4.53611577,0.03495605,99.61719715],[4.53611531,0.03495431,99.61736049],[4.53611485,0.03495257,99.61752374],[4.53611439,0.03495082,99.6176869],[4.53611393,0.03494908,99.61784999],[4.53611347,0.03494734,99.61801301],[4.53611301,0.0349456,99.61817598],[4.53611255,0.03494385,99.61833889],[4.53611209,0.03494211,99.61850177],[4.53611162,0.03494037,99.61866462],[4.53611116,0.03493863,99.61882746],[4.5361107,0.03493689,99.61899029],[4.53611024,0.03493514,99.61915311],[4.53610978,0.0349334,99.61931596],[4.53610932,0.03493166,99.61947882],[4.53610885,0.03492992,99.61964171],[4.53610839,0.03492817,99.61980465],[4.53610793,0.03492643,99.61996764],[4.53610747,0.03492469,99.62013069],[4.53610701,0.03492295,99.62029381],[4.53610655,0.03492121,99.62045701],[4.53610608,0.03491946,99.6206203],[4.53610562,0.03491772,99.6207837],[4.53610516,0.03491598,99.6209472],[4.5361047,0.03491424,99.62111083],[4.53610423,0.0349125,99.62127459],[4.53610377,0.03491075,99.62143848],[4.53610331,0.03490901,99.62160253],[4.53610285,0.03490727,99.62176674],[4.53610238,0.03490553,99.62193112],[4.53610192,0.03490379,99.62209568],[4.53610146,0.03490204,99.62226043],[4.536101,0.0349003,99.62242538],[4.53610053,0.03489856,99.62259054],[4.53610007,0.03489682,99.62275592],[4.53609961,0.03489508,99.62292153],[4.53609914,0.03489333,99.62308738],[4.53609868,0.03489159,99.62325348],[4.53609822,0.03488985,99.62341985],[4.53609776,0.03488811,99.62358648],[4.53609729,0.03488637,99.62375339],[4.53609683,0.03488463,99.62392059],[4.53609637,0.03488288,99.6240881],[4.5360959,0.03488114,99.62425591],[4.53609544,0.0348794,99.62442405],[4.53609498,0.03487766,99.62459251],[4.53609451,0.03487592,99.62476132],[4.53609405,0.03487418,99.62493048],[4.53609359,0.03487243,99.6251],[4.53609312,0.03487069,99.62526988],[4.53609266,0.03486895,99.62544015],[4.53609219,0.03486721,99.62561081],[4.53609173,0.03486547,99.62578187],[4.53609127,0.03486372,99.62595335],[4.5360908,0.03486198,99.62612524],[4.53609034,0.03486024,99.62629757],[4.53608988,0.0348585,99.62647033],[4.53608941,0.03485676,99.62664355],[4.53608895,0.03485502,99.62681723],[4.53608848,0.03485327,99.62699138],[4.53608802,0.03485153,99.62716601],[4.53608756,0.03484979,99.62734114],[4.53608709,0.03484805,99.62751676],[4.53608663,0.03484631,99.6276929],[4.53608617,0.03484457,99.62786956],[4.5360857,0.03484283,99.62804675],[4.53608524,0.03484108,99.62822449],[4.53608477,0.03483934,99.62840278],[4.53608431,0.0348376,99.62858163],[4.53608384,0.03483586,99.62876105],[4.53608338,0.03483412,99.62894106],[4.53608292,0.03483238,99.62912165],[4.53608245,0.03483063,99.62930286],[4.53608199,0.03482889,99.62948467],[4.53608152,0.03482715,99.62966711],[4.53608106,0.03482541,99.62985018],[4.5360806,0.03482367,99.6300339],[4.53608013,0.03482193,99.63021826],[4.53607967,0.03482018,99.6304033],[4.5360792,0.03481844,99.630589],[4.53607874,0.0348167,99.63077539],[4.53607827,0.03481496,99.63096248],[4.53607781,0.03481322,99.63115027],[4.53607735,0.03481148,99.63133877],[4.53607688,0.03480974,99.631528],[4.53607642,0.03480799,99.63171794],[4.53607595,0.03480625,99.6319086],[4.53607549,0.03480451,99.63209996],[4.53607502,0.03480277,99.63229202],[4.53607456,0.03480103,99.63248477],[4.5360741,0.03479929,99.63267822],[4.53607363,0.03479754,99.63287234],[4.53607317,0.0347958,99.63306714],[4.5360727,0.03479406,99.63326261],[4.53607224,0.03479232,99.63345874],[4.53607177,0.03479058,99.63365553],[4.53607131,0.03478884,99.63385297],[4.53607084,0.03478709,99.63405105],[4.53607038,0.03478535,99.63424977],[4.53606992,0.03478361,99.63444912],[4.53606945,0.03478187,99.6346491],[4.53606899,0.03478013,99.6348497],[4.53606852,0.03477839,99.63505091],[4.53606806,0.03477665,99.63525272],[4.53606759,0.0347749,99.63545514],[4.53606713,0.03477316,99.63565817],[4.53606666,0.03477142,99.63586181],[4.5360662,0.03476968,99.63606606],[4.53606574,0.03476794,99.63627091],[4.53606527,0.0347662,99.63647637],[4.53606481,0.03476445,99.63668244],[4.53606434,0.03476271,99.63688913],[4.53606388,0.03476097,99.63709642],[4.53606341,0.03475923,99.63730432],[4.53606295,0.03475749,99.63751283],[4.53606248,0.03475575,99.63772195],[4.53606202,0.034754,99.63793169],[4.53606156,0.03475226,99.63814204],[4.53606109,0.03475052,99.638353],[4.53606063,0.03474878,99.63856457],[4.53606016,0.03474704,99.63877676],[4.5360597,0.0347453,99.63898955],[4.53605923,0.03474356,99.63920297],[4.53605877,0.03474181,99.63941699],[4.53605831,0.03474007,99.63963163],[4.53605784,0.03473833,99.63984689],[4.53605738,0.03473659,99.64006276],[4.53605691,0.03473485,99.64027924],[4.53605645,0.03473311,99.64049634],[4.53605598,0.03473136,99.64071406],[4.53605552,0.03472962,99.64093239],[4.53605506,0.03472788,99.64115134],[4.53605459,0.03472614,99.6413709],[4.53605413,0.0347244,99.64159108],[4.53605366,0.03472265,99.64181188],[4.5360532,0.03472091,99.64203329],[4.53605274,0.03471917,99.64225532],[4.53605227,0.03471743,99.64247797],[4.53605181,0.03471569,99.64270123],[4.53605135,0.03471395,99.64292511],[4.53605088,0.0347122,99.64314961],[4.53605042,0.03471046,99.64337472],[4.53604996,0.03470872,99.64360045],[4.53604949,0.03470698,99.6438268],[4.53604903,0.03470524,99.64405377],[4.53604857,0.03470349,99.64428135],[4.5360481,0.03470175,99.64450956],[4.53604764,0.03470001,99.64473837],[4.53604718,0.03469827,99.64496781],[4.53604671,0.03469653,99.64519786],[4.53604625,0.03469478,99.64542853],[4.53604579,0.03469304,99.64565982],[4.53604532,0.0346913,99.64589172],[4.53604486,0.03468956,99.64612424],[4.5360444,0.03468782,99.64635738],[4.53604394,0.03468607,99.64659113],[4.53604347,0.03468433,99.6468255],[4.53604301,0.03468259,99.64706048],[4.53604255,0.03468085,99.64729609],[4.53604209,0.0346791,99.6475323],[4.53604162,0.03467736,99.64776913],[4.53604116,0.03467562,99.64800658],[4.5360407,0.03467388,99.64824464],[4.53604024,0.03467213,99.64848331],[4.53603978,0.03467039,99.6487226],[4.53603932,0.03466865,99.6489625],[4.53603885,0.03466691,99.64920302],[4.53603839,0.03466516,99.64944415],[4.53603793,0.03466342,99.64968589],[4.53603747,0.03466168,99.64992824],[4.53603701,0.03465994,99.6501712],[4.53603655,0.03465819,99.65041474],[4.53603609,0.03465645,99.65065887],[4.53603563,0.03465471,99.65090357],[4.53603517,0.03465297,99.65114882],[4.53603471,0.03465122,99.65139461],[4.53603425,0.03464948,99.65164093],[4.53603379,0.03464774,99.65188777],[4.53603332,0.034646,99.65213511],[4.53603286,0.03464425,99.65238294],[4.5360324,0.03464251,99.65263125],[4.53603194,0.03464077,99.65288002],[4.53603148,0.03463902,99.65312925],[4.53603102,0.03463728,99.65337891],[4.53603057,0.03463554,99.653629],[4.53603011,0.03463379,99.65387951],[4.53602965,0.03463205,99.65413042],[4.53602919,0.03463031,99.65438172],[4.53602873,0.03462857,99.6546334],[4.53602827,0.03462682,99.65488544],[4.53602781,0.03462508,99.65513783],[4.53602735,0.03462334,99.65539056],[4.53602689,0.03462159,99.65564361],[4.53602643,0.03461985,99.65589698],[4.53602597,0.03461811,99.65615065],[4.53602551,0.03461636,99.6564046],[4.53602505,0.03461462,99.65665881],[4.53602459,0.03461288,99.65691326],[4.53602414,0.03461113,99.65716793],[4.53602368,0.03460939,99.65742279],[4.53602322,0.03460765,99.65767783],[4.53602276,0.0346059,99.65793304],[4.5360223,0.03460416,99.65818837],[4.53602184,0.03460242,99.65844383],[4.53602138,0.03460067,99.65869939],[4.53602093,0.03459893,99.65895502],[4.53602047,0.03459719,99.65921071],[4.53602001,0.03459544,99.65946644],[4.53601955,0.0345937,99.65972219],[4.53601909,0.03459196,99.65997794],[4.53601863,0.03459021,99.66023366],[4.53601817,0.03458847,99.66048935],[4.53601771,0.03458673,99.66074497],[4.53601726,0.03458498,99.66100051],[4.5360168,0.03458324,99.66125596],[4.53601634,0.0345815,99.66151128],[4.53601588,0.03457975,99.66176647],[4.53601542,0.03457801,99.66202149],[4.53601496,0.03457627,99.66227634],[4.5360145,0.03457452,99.662531],[4.53601404,0.03457278,99.66278543],[4.53601358,0.03457104,99.66303963],[4.53601313,0.03456929,99.66329357],[4.53601267,0.03456755,99.66354724],[4.53601221,0.03456581,99.66380062],[4.53601175,0.03456406,99.66405368],[4.53601129,0.03456232,99.66430642],[4.53601083,0.03456058,99.6645588],[4.53601037,0.03455884,99.66481081],[4.53600991,0.03455709,99.66506243],[4.53600945,0.03455535,99.66531364],[4.53600899,0.03455361,99.66556443],[4.53600853,0.03455186,99.66581477],[4.53600807,0.03455012,99.66606465],[4.53600761,0.03454838,99.66631405],[4.53600715,0.03454663,99.66656294],[4.53600669,0.03454489,99.66681132],[4.53600623,0.03454315,99.66705915],[4.53600577,0.03454141,99.66730643],[4.53600531,0.03453966,99.66755313],[4.53600485,0.03453792,99.66779924],[4.53600439,0.03453618,99.66804474],[4.53600392,0.03453443,99.6682896],[4.53600346,0.03453269,99.66853382],[4.536003,0.03453095,99.66877739],[4.53600254,0.03452921,99.66902028],[4.53600208,0.03452746,99.66926251],[4.53600162,0.03452572,99.66950406],[4.53600115,0.03452398,99.66974493],[4.53600069,0.03452224,99.66998512],[4.53600023,0.03452049,99.67022461],[4.53599977,0.03451875,99.67046342],[4.5359993,0.03451701,99.67070153],[4.53599884,0.03451527,99.67093893],[4.53599838,0.03451352,99.67117564],[4.53599791,0.03451178,99.67141163],[4.53599745,0.03451004,99.67164691],[4.53599699,0.0345083,99.67188147],[4.53599652,0.03450656,99.67211531],[4.53599606,0.03450481,99.67234842],[4.5359956,0.03450307,99.6725808],[4.53599513,0.03450133,99.67281245],[4.53599467,0.03449959,99.67304336],[4.5359942,0.03449785,99.67327353],[4.53599374,0.0344961,99.67350295],[4.53599327,0.03449436,99.67373162],[4.53599281,0.03449262,99.67395955],[4.53599234,0.03449088,99.67418673],[4.53599188,0.03448914,99.67441316],[4.53599141,0.0344874,99.67463885],[4.53599095,0.03448565,99.6748638],[4.53599048,0.03448391,99.67508801],[4.53599002,0.03448217,99.67531148],[4.53598955,0.03448043,99.67553421],[4.53598908,0.03447869,99.6757562],[4.53598862,0.03447695,99.67597745],[4.53598815,0.03447521,99.67619797],[4.53598768,0.03447346,99.67641775],[4.53598722,0.03447172,99.6766368],[4.53598675,0.03446998,99.67685512],[4.53598628,0.03446824,99.6770727],[4.53598582,0.0344665,99.67728956],[4.53598535,0.03446476,99.67750569],[4.53598488,0.03446302,99.67772108],[4.53598442,0.03446128,99.67793575],[4.53598395,0.03445954,99.67814969],[4.53598348,0.03445779,99.67836291],[4.53598301,0.03445605,99.6785754],[4.53598255,0.03445431,99.67878717],[4.53598208,0.03445257,99.67899821],[4.53598161,0.03445083,99.67920854],[4.53598114,0.03444909,99.67941814],[4.53598067,0.03444735,99.67962702],[4.5359802,0.03444561,99.67983518],[4.53597974,0.03444387,99.68004262],[4.53597927,0.03444213,99.68024934],[4.5359788,0.03444038,99.68045534],[4.53597833,0.03443864,99.68066063],[4.53597786,0.0344369,99.6808652],[4.53597739,0.03443516,99.68106905],[4.53597692,0.03443342,99.68127219],[4.53597645,0.03443168,99.68147462],[4.53597599,0.03442994,99.68167633],[4.53597552,0.0344282,99.68187733],[4.53597505,0.03442646,99.68207761],[4.53597458,0.03442472,99.68227718],[4.53597411,0.03442298,99.68247604],[4.53597364,0.03442124,99.68267419],[4.53597317,0.0344195,99.68287163],[4.5359727,0.03441776,99.68306836],[4.53597223,0.03441602,99.68326438],[4.53597176,0.03441428,99.68345969],[4.53597129,0.03441253,99.68365429],[4.53597082,0.03441079,99.68384818],[4.53597035,0.03440905,99.68404137],[4.53596988,0.03440731,99.68423384],[4.53596941,0.03440557,99.68442561],[4.53596894,0.03440383,99.68461667],[4.53596847,0.03440209,99.68480703],[4.535968,0.03440035,99.68499668],[4.53596753,0.03439861,99.68518563],[4.53596706,0.03439687,99.68537387],[4.53596659,0.03439513,99.68556141],[4.53596612,0.03439339,99.68574825],[4.53596565,0.03439165,99.68593438],[4.53596518,0.03438991,99.68611982],[4.53596471,0.03438817,99.68630456],[4.53596424,0.03438643,99.6864886],[4.53596377,0.03438469,99.68667194],[4.5359633,0.03438295,99.68685458],[4.53596282,0.03438121,99.68703652],[4.53596235,0.03437947,99.68721777],[4.53596188,0.03437773,99.68739832],[4.53596141,0.03437599,99.68757818],[4.53596094,0.03437425,99.68775734],[4.53596047,0.03437251,99.68793581],[4.53596,0.03437077,99.68811359],[4.53595953,0.03436903,99.68829067],[4.53595906,0.03436729,99.68846706],[4.53595859,0.03436555,99.68864275],[4.53595812,0.0343638,99.68881775],[4.53595765,0.03436206,99.68899207],[4.53595718,0.03436032,99.68916569],[4.5359567,0.03435858,99.68933862],[4.53595623,0.03435684,99.68951086],[4.53595576,0.0343551,99.6896824],[4.53595529,0.03435336,99.68985326],[4.53595482,0.03435162,99.69002343],[4.53595435,0.03434988,99.69019291],[4.53595388,0.03434814,99.6903617],[4.53595341,0.0343464,99.6905298],[4.53595294,0.03434466,99.6906972],[4.53595247,0.03434292,99.69086392],[4.535952,0.03434118,99.69102994],[4.53595153,0.03433944,99.69119525],[4.53595106,0.0343377,99.69135984],[4.53595058,0.03433596,99.69152371],[4.53595011,0.03433422,99.69168686],[4.53594964,0.03433248,99.69184927],[4.53594917,0.03433074,99.69201093],[4.5359487,0.034329,99.69217184],[4.53594823,0.03432726,99.692332],[4.53594776,0.03432552,99.69249139],[4.53594729,0.03432378,99.69265001],[4.53594682,0.03432204,99.69280784],[4.53594635,0.0343203,99.6929649],[4.53594588,0.03431856,99.69312115],[4.53594541,0.03431682,99.69327661],[4.53594494,0.03431508,99.69343126],[4.53594447,0.03431333,99.69358509],[4.535944,0.03431159,99.6937381],[4.53594353,0.03430985,99.69389028],[4.53594306,0.03430811,99.69404162],[4.53594259,0.03430637,99.69419212],[4.53594211,0.03430463,99.69434177],[4.53594164,0.03430289,99.69449055],[4.53594117,0.03430115,99.69463848],[4.5359407,0.03429941,99.69478553],[4.53594023,0.03429767,99.6949317],[4.53593976,0.03429593,99.69507698],[4.53593929,0.03429419,99.69522137],[4.53593882,0.03429245,99.69536486],[4.53593835,0.03429071,99.69550744],[4.53593788,0.03428897,99.6956491],[4.53593741,0.03428723,99.69578984],[4.53593694,0.03428549,99.69592965],[4.53593647,0.03428375,99.69606853],[4.535936,0.03428201,99.69620646],[4.53593553,0.03428027,99.69634343],[4.53593506,0.03427853,99.69647946],[4.53593459,0.03427679,99.69661451],[4.53593412,0.03427505,99.69674859],[4.53593365,0.03427331,99.6968817],[4.53593318,0.03427157,99.69701382],[4.53593271,0.03426982,99.69714494],[4.53593224,0.03426808,99.69727506],[4.53593176,0.03426634,99.69740418],[4.53593129,0.0342646,99.69753228],[4.53593082,0.03426286,99.69765936],[4.53593035,0.03426112,99.69778541],[4.53592988,0.03425938,99.69791042],[4.53592941,0.03425764,99.69803439],[4.53592894,0.0342559,99.69815731],[4.53592847,0.03425416,99.69827918],[4.535928,0.03425242,99.69839998],[4.53592753,0.03425068,99.69851971],[4.53592706,0.03424894,99.69863836],[4.53592659,0.0342472,99.69875592],[4.53592612,0.03424546,99.69887239],[4.53592565,0.03424372,99.69898777],[4.53592518,0.03424198,99.69910204],[4.53592471,0.03424024,99.69921519],[4.53592424,0.0342385,99.69932723],[4.53592377,0.03423676,99.69943813],[4.53592329,0.03423502,99.69954791],[4.53592282,0.03423328,99.69965654],[4.53592235,0.03423154,99.69976402],[4.53592188,0.0342298,99.69987035],[4.53592141,0.03422806,99.69997552],[4.53592094,0.03422632,99.70007951],[4.53592047,0.03422458,99.70018233],[4.53592,0.03422284,99.70028397],[4.53591953,0.0342211,99.70038442],[4.53591906,0.03421936,99.70048367],[4.53591859,0.03421762,99.70058171],[4.53591812,0.03421588,99.70067855],[4.53591764,0.03421414,99.70077417],[4.53591717,0.0342124,99.70086856],[4.5359167,0.03421066,99.70096171],[4.53591623,0.03420892,99.70105362],[4.53591576,0.03420718,99.70114427],[4.53591529,0.03420544,99.70123364],[4.53591482,0.0342037,99.70132172],[4.53591435,0.03420195,99.7014085],[4.53591388,0.03420021,99.70149395],[4.5359134,0.03419847,99.70157807],[4.53591293,0.03419673,99.70166084],[4.53591246,0.03419499,99.70174225],[4.53591199,0.03419325,99.70182228],[4.53591152,0.03419151,99.70190092],[4.53591105,0.03418977,99.70197815],[4.53591057,0.03418803,99.70205397],[4.5359101,0.0341863,99.70212835],[4.53590963,0.03418456,99.70220128],[4.53590916,0.03418282,99.70227275],[4.53590869,0.03418108,99.70234274],[4.53590822,0.03417934,99.70241124],[4.53590774,0.0341776,99.70247824],[4.53590727,0.03417586,99.70254372],[4.5359068,0.03417412,99.70260767],[4.53590633,0.03417238,99.70267007],[4.53590585,0.03417064,99.70273091],[4.53590538,0.0341689,99.70279017],[4.53590491,0.03416716,99.70284784],[4.53590443,0.03416542,99.70290391],[4.53590419,0.03416451,99.70293243]],"type":"LineString"},"type":"feature","properties":{"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-3,"type":"stop","predecessorId":0}},{"geometry":{"coordinates":[[4.53653058,0.03649083,99.17552414],[4.53653013,0.03648909,99.17627435],[4.53652968,0.03648734,99.17702368],[4.53652924,0.03648559,99.17777216],[4.53652879,0.03648385,99.17851984],[4.53652834,0.0364821,99.17926676],[4.5365279,0.03648036,99.18001295],[4.53652745,0.03647861,99.18075846],[4.536527,0.03647686,99.18150333],[4.53652656,0.03647512,99.1822476],[4.53652611,0.03647337,99.18299131],[4.53652566,0.03647162,99.18373449],[4.53652522,0.03646988,99.1844772],[4.53652477,0.03646813,99.18521945],[4.53652432,0.03646638,99.18596127],[4.53652388,0.03646464,99.18670265],[4.53652343,0.03646289,99.18744359],[4.53652298,0.03646115,99.18818411],[4.53652254,0.0364594,99.1889242],[4.53652209,0.03645765,99.18966387],[4.53652164,0.03645591,99.19040312],[4.5365212,0.03645416,99.19114197],[4.53652075,0.03645241,99.1918804],[4.5365203,0.03645068,99.19261844],[4.53651986,0.03644893,99.19335607],[4.53651941,0.03644718,99.19409331],[4.53651896,0.03644544,99.19483016],[4.53651852,0.03644369,99.19556663],[4.53651807,0.03644195,99.19630271],[4.53651762,0.0364402,99.19703842],[4.53651718,0.03643845,99.19777375],[4.53651673,0.03643671,99.19850871],[4.53651628,0.03643496,99.19924331],[4.53651584,0.03643321,99.19997755],[4.53651539,0.03643147,99.20071144],[4.53651494,0.03642972,99.20144497],[4.5365145,0.03642797,99.20217816],[4.53651405,0.03642623,99.202911],[4.5365136,0.03642448,99.20364351],[4.53651316,0.03642274,99.20437568],[4.53651271,0.03642099,99.20510752],[4.53651226,0.03641924,99.20583904],[4.53651182,0.0364175,99.20657023],[4.53651137,0.03641575,99.20730111],[4.53651092,0.036414,99.20803168],[4.53651048,0.03641226,99.20876194],[4.53651003,0.03641051,99.20949189],[4.53650958,0.03640876,99.21022155],[4.53650914,0.03640702,99.21095091],[4.53650869,0.03640527,99.21167998],[4.53650824,0.03640353,99.21240877],[4.5365078,0.03640178,99.21313727],[4.53650735,0.03640003,99.2138655],[4.5365069,0.03639829,99.21459345],[4.53650646,0.03639654,99.21532113],[4.53650601,0.03639479,99.21604855],[4.53650556,0.03639305,99.21677571],[4.53650512,0.0363913,99.21750261],[4.53650467,0.03638955,99.21822927],[4.53650422,0.03638781,99.21895567],[4.53650378,0.03638606,99.21968183],[4.53650333,0.03638432,99.22040776],[4.53650288,0.03638257,99.22113345],[4.53650244,0.03638082,99.22185891],[4.53650199,0.03637908,99.22258415],[4.53650154,0.03637733,99.22330916],[4.5365011,0.03637558,99.22403396],[4.53650065,0.03637384,99.22475855],[4.5365002,0.03637209,99.22548292],[4.53649976,0.03637034,99.2262071],[4.53649931,0.0363686,99.22693108],[4.53649887,0.03636685,99.22765486],[4.53649842,0.03636511,99.22837845],[4.53649797,0.03636336,99.22910181],[4.53649753,0.03636161,99.22982493],[4.53649708,0.03635987,99.23054781],[4.53649663,0.03635812,99.23127045],[4.53649619,0.03635637,99.23199286],[4.53649574,0.03635463,99.23271504],[4.53649529,0.03635288,99.233437],[4.53649485,0.03635113,99.23415874],[4.5364944,0.03634939,99.23488027],[4.53649395,0.03634764,99.23560158],[4.53649351,0.03634589,99.2363227],[4.53649306,0.03634415,99.23704361],[4.53649261,0.0363424,99.23776433],[4.53649217,0.03634066,99.23848486],[4.53649172,0.03633891,99.23920521],[4.53649128,0.03633716,99.23992537],[4.53649083,0.03633542,99.24064536],[4.53649038,0.03633367,99.24136518],[4.53648994,0.03633192,99.24208483],[4.53648949,0.03633018,99.24280433],[4.53648904,0.03632843,99.24352366],[4.5364886,0.03632668,99.24424285],[4.53648815,0.03632494,99.24496189],[4.5364877,0.03632319,99.24568078],[4.53648726,0.03632144,99.24639954],[4.53648681,0.0363197,99.24711817],[4.53648636,0.03631795,99.24783667],[4.53648592,0.03631621,99.24855505],[4.53648547,0.03631446,99.24927331],[4.53648502,0.03631271,99.24999145],[4.53648458,0.03631097,99.25070949],[4.53648413,0.03630922,99.25142743],[4.53648369,0.03630747,99.25214526],[4.53648324,0.03630573,99.25286301],[4.53648279,0.03630398,99.25358066],[4.53648235,0.03630223,99.25429823],[4.5364819,0.03630049,99.25501572],[4.53648145,0.03629874,99.25573314],[4.53648101,0.03629699,99.25645048],[4.53648056,0.03629525,99.25716776],[4.53648011,0.0362935,99.25788498],[4.53647967,0.03629176,99.25860215],[4.53647922,0.03629001,99.25931927],[4.53647877,0.03628826,99.26003634],[4.53647833,0.03628652,99.26075336],[4.53647788,0.03628477,99.26147036],[4.53647744,0.03628302,99.26218732],[4.53647699,0.03628128,99.26290426],[4.53647654,0.03627953,99.26362117],[4.5364761,0.03627778,99.26433807],[4.53647565,0.03627604,99.26505495],[4.5364752,0.03627429,99.26577182],[4.53647476,0.03627254,99.26648868],[4.53647431,0.0362708,99.26720553],[4.53647386,0.03626905,99.26792236],[4.53647342,0.0362673,99.26863919],[4.53647297,0.03626556,99.26935601],[4.53647253,0.03626381,99.27007282],[4.53647208,0.03626207,99.27078963],[4.53647163,0.03626032,99.27150643],[4.53647119,0.03625857,99.27222322],[4.53647074,0.03625683,99.27294001],[4.53647029,0.03625508,99.27365679],[4.53646985,0.03625333,99.27437358],[4.5364694,0.03625159,99.27509036],[4.53646895,0.03624984,99.27580714],[4.53646851,0.03624809,99.27652392],[4.53646806,0.03624635,99.2772407],[4.53646762,0.0362446,99.27795748],[4.53646717,0.03624285,99.27867426],[4.53646672,0.03624111,99.27939104],[4.53646628,0.03623936,99.28010783],[4.53646583,0.03623761,99.28082463],[4.53646538,0.03623587,99.28154143],[4.53646494,0.03623412,99.28225824],[4.53646449,0.03623237,99.2829751],[4.53646404,0.03623063,99.28369204],[4.5364636,0.03622888,99.28440906],[4.53646315,0.03622714,99.28512621],[4.53646271,0.03622539,99.2858435],[4.53646226,0.03622364,99.28656094],[4.53646181,0.0362219,99.28727853],[4.53646137,0.03622015,99.28799628],[4.53646092,0.0362184,99.28871416],[4.53646047,0.03621666,99.2894322],[4.53646003,0.03621491,99.29015037],[4.53645958,0.03621316,99.29086868],[4.53645914,0.03621142,99.29158713],[4.53645869,0.03620967,99.29230572],[4.53645824,0.03620792,99.29302444],[4.5364578,0.03620618,99.29374329],[4.53645735,0.03620443,99.29446227],[4.53645691,0.03620268,99.29518138],[4.53645646,0.03620094,99.29590061],[4.53645601,0.03619919,99.29661996],[4.53645557,0.03619744,99.29733943],[4.53645512,0.0361957,99.29805902],[4.53645467,0.03619395,99.29877873],[4.53645423,0.0361922,99.29949854],[4.53645378,0.03619046,99.30021847],[4.53645334,0.03618871,99.30093851],[4.53645289,0.03618696,99.30165865],[4.53645244,0.03618522,99.3023789],[4.536452,0.03618347,99.30309924],[4.53645155,0.03618173,99.30381969],[4.53645111,0.03617998,99.30454023],[4.53645066,0.03617823,99.30526087],[4.53645021,0.03617649,99.30598159],[4.53644977,0.03617474,99.30670241],[4.53644932,0.03617299,99.30742332],[4.53644887,0.03617125,99.30814431],[4.53644843,0.0361695,99.30886538],[4.53644798,0.03616775,99.30958653],[4.53644754,0.03616601,99.31030776],[4.53644709,0.03616426,99.31102906],[4.53644664,0.03616251,99.31175043],[4.5364462,0.03616077,99.31247188],[4.53644575,0.03615902,99.31319339],[4.5364453,0.03615727,99.31391497],[4.53644486,0.03615553,99.31463661],[4.53644441,0.03615378,99.31535831],[4.53644396,0.03615203,99.31608007],[4.53644352,0.03615029,99.31680188],[4.53644307,0.03614854,99.31752375],[4.53644262,0.0361468,99.31824567],[4.53644218,0.03614505,99.31896763],[4.53644173,0.0361433,99.31968964],[4.53644128,0.03614156,99.32041169],[4.53644083,0.03613981,99.32113379],[4.53644039,0.03613806,99.32185592],[4.53643994,0.03613632,99.32257808],[4.53643949,0.03613457,99.32330028],[4.53643905,0.03613282,99.32402251],[4.5364386,0.03613108,99.32474477],[4.53643815,0.03612933,99.32546705],[4.5364377,0.03612759,99.32618936],[4.53643726,0.03612584,99.32691169],[4.53643681,0.03612409,99.32763403],[4.53643636,0.03612235,99.32835639],[4.53643591,0.0361206,99.32907878],[4.53643547,0.03611886,99.3298012],[4.53643502,0.03611711,99.33052369],[4.53643457,0.03611536,99.33124625],[4.53643412,0.03611362,99.33196889],[4.53643367,0.03611187,99.33269164],[4.53643322,0.03611012,99.33341449],[4.53643278,0.03610838,99.33413746],[4.53643233,0.03610663,99.33486054],[4.53643188,0.03610489,99.33558375],[4.53643143,0.03610314,99.33630709],[4.53643098,0.03610139,99.33703057],[4.53643054,0.03609965,99.33775418],[4.53643009,0.0360979,99.33847795],[4.53642964,0.03609616,99.33920188],[4.53642919,0.03609441,99.33992596],[4.53642874,0.03609266,99.34065021],[4.53642829,0.03609092,99.34137464],[4.53642784,0.03608917,99.34209924],[4.53642739,0.03608743,99.34282404],[4.53642695,0.03608568,99.34354902],[4.5364265,0.03608393,99.3442742],[4.53642605,0.03608219,99.34499959],[4.5364256,0.03608044,99.34572519],[4.53642515,0.0360787,99.346451],[4.5364247,0.03607695,99.34717704],[4.53642425,0.03607521,99.34790331],[4.5364238,0.03607346,99.34862981],[4.53642335,0.03607171,99.34935656],[4.5364229,0.03606997,99.35008355],[4.53642246,0.03606822,99.3508108],[4.53642201,0.03606648,99.35153831],[4.53642156,0.03606473,99.35226608],[4.53642111,0.03606298,99.35299413],[4.53642066,0.03606124,99.35372246],[4.53642021,0.03605949,99.35445107],[4.53641976,0.03605775,99.35517997],[4.53641931,0.036056,99.35590918],[4.53641886,0.03605426,99.35663868],[4.53641841,0.03605251,99.3573685],[4.53641796,0.03605076,99.35809863],[4.53641751,0.03604902,99.35882908],[4.53641706,0.03604727,99.35955987],[4.53641661,0.03604553,99.36029098],[4.53641616,0.03604378,99.36102244],[4.53641571,0.03604204,99.36175425],[4.53641526,0.03604029,99.36248641],[4.53641482,0.03603854,99.36321893],[4.53641437,0.0360368,99.36395182],[4.53641392,0.03603505,99.36468508],[4.53641347,0.03603331,99.36541871],[4.53641302,0.03603156,99.36615273],[4.53641257,0.03602982,99.36688713],[4.53641212,0.03602807,99.36762191],[4.53641167,0.03602632,99.36835709],[4.53641122,0.03602458,99.36909265],[4.53641077,0.03602283,99.36982861],[4.53641032,0.03602109,99.37056496],[4.53640987,0.03601934,99.37130171],[4.53640942,0.0360176,99.37203887],[4.53640897,0.03601585,99.37277642],[4.53640852,0.03601411,99.37351439],[4.53640807,0.03601236,99.37425276],[4.53640762,0.03601061,99.37499154],[4.53640717,0.03600887,99.37573074],[4.53640672,0.03600712,99.37647036],[4.53640627,0.03600538,99.37721039],[4.53640582,0.03600363,99.37795085],[4.53640537,0.03600189,99.37869173],[4.53640492,0.03600014,99.37943303],[4.53640447,0.0359984,99.38017477],[4.53640402,0.03599665,99.38091694],[4.53640357,0.0359949,99.38165955],[4.53640312,0.03599316,99.38240259],[4.53640267,0.03599141,99.38314607],[4.53640222,0.03598967,99.38389],[4.53640177,0.03598792,99.38463437],[4.53640132,0.03598618,99.38537919],[4.53640086,0.03598443,99.38612446],[4.53640041,0.03598269,99.38687018],[4.53639996,0.03598094,99.38761636],[4.53639951,0.03597919,99.388363],[4.53639906,0.03597745,99.3891101],[4.53639861,0.0359757,99.38985767],[4.53639816,0.03597396,99.3906057],[4.53639771,0.03597221,99.3913542],[4.53639726,0.03597047,99.39210317],[4.53639681,0.03596872,99.39285262],[4.53639636,0.03596698,99.39360254],[4.53639591,0.03596523,99.39435295],[4.53639546,0.03596348,99.39510383],[4.53639501,0.03596174,99.39585521],[4.53639456,0.03595999,99.39660707],[4.53639411,0.03595825,99.39735942],[4.53639365,0.0359565,99.39811226],[4.5363932,0.03595476,99.3988656],[4.53639275,0.03595301,99.39961941],[4.5363923,0.03595127,99.40037369],[4.53639185,0.03594952,99.40112843],[4.5363914,0.03594778,99.4018836],[4.53639095,0.03594603,99.4026392],[4.5363905,0.03594429,99.40339522],[4.53639005,0.03594254,99.40415163],[4.5363896,0.03594079,99.40490843],[4.53638914,0.03593905,99.4056656],[4.53638869,0.0359373,99.40642313],[4.53638824,0.03593556,99.407181],[4.53638779,0.03593381,99.40793921],[4.53638734,0.03593207,99.40869774],[4.53638689,0.03593032,99.40945657],[4.53638644,0.03592858,99.4102157],[4.53638599,0.03592683,99.4109751],[4.53638553,0.03592509,99.41173477],[4.53638508,0.03592334,99.4124947],[4.53638463,0.0359216,99.41325486],[4.53638418,0.03591985,99.41401525],[4.53638373,0.03591811,99.41477585],[4.53638328,0.03591636,99.41553665],[4.53638282,0.03591462,99.41629763],[4.53638237,0.03591287,99.41705879],[4.53638192,0.03591113,99.41782011],[4.53638147,0.03590938,99.41858157],[4.53638102,0.03590764,99.41934316],[4.53638057,0.03590589,99.42010486],[4.53638011,0.03590414,99.42086667],[4.53637966,0.0359024,99.42162856],[4.53637921,0.03590065,99.42239053],[4.53637876,0.03589891,99.42315257],[4.53637831,0.03589716,99.42391466],[4.53637785,0.03589542,99.42467681],[4.5363774,0.03589367,99.42543899],[4.53637695,0.03589193,99.4262012],[4.5363765,0.03589018,99.42696342],[4.53637604,0.03588844,99.42772566],[4.53637559,0.03588669,99.42848789],[4.53637514,0.03588495,99.42925011],[4.53637469,0.0358832,99.4300123],[4.53637423,0.03588146,99.43077447],[4.53637378,0.03587971,99.43153659],[4.53637333,0.03587797,99.43229865],[4.53637288,0.03587622,99.43306065],[4.53637242,0.03587448,99.43382258],[4.53637197,0.03587273,99.43458442],[4.53637152,0.03587099,99.43534617],[4.53637107,0.03586924,99.43610782],[4.53637061,0.0358675,99.43686935],[4.53637016,0.03586575,99.43763075],[4.53636971,0.03586401,99.43839202],[4.53636926,0.03586226,99.43915315],[4.5363688,0.03586052,99.43991412],[4.53636835,0.03585877,99.44067492],[4.5363679,0.03585703,99.44143555],[4.53636744,0.03585528,99.44219599],[4.53636699,0.03585354,99.44295623],[4.53636654,0.03585179,99.44371627],[4.53636609,0.03585005,99.44447609],[4.53636563,0.0358483,99.44523568],[4.53636518,0.03584656,99.44599503],[4.53636473,0.03584481,99.44675414],[4.53636427,0.03584307,99.44751299],[4.53636382,0.03584133,99.44827156],[4.53636337,0.03583958,99.44902986],[4.53636292,0.03583784,99.44978787],[4.53636246,0.03583609,99.45054558],[4.53636201,0.03583435,99.45130298],[4.53636156,0.0358326,99.45206006],[4.5363611,0.03583086,99.45281681],[4.53636065,0.03582911,99.45357322],[4.5363602,0.03582737,99.45432927],[4.53635974,0.03582562,99.45508496],[4.53635929,0.03582388,99.45584028],[4.53635884,0.03582213,99.45659522],[4.53635838,0.03582039,99.45734977],[4.53635793,0.03581864,99.45810392],[4.53635748,0.0358169,99.45885765],[4.53635702,0.03581515,99.45961097],[4.53635657,0.03581341,99.46036385],[4.53635612,0.03581166,99.4611163],[4.53635567,0.03580992,99.4618683],[4.53635521,0.03580817,99.46261984],[4.53635476,0.03580643,99.46337091],[4.53635431,0.03580468,99.46412151],[4.53635385,0.03580294,99.46487162],[4.5363534,0.03580119,99.46562123],[4.53635295,0.03579945,99.46637034],[4.53635249,0.0357977,99.46711893],[4.53635204,0.03579596,99.467867],[4.53635159,0.03579421,99.46861453],[4.53635113,0.03579247,99.46936152],[4.53635068,0.03579072,99.47010795],[4.53635023,0.03578898,99.47085382],[4.53634977,0.03578723,99.47159912],[4.53634932,0.03578549,99.47234383],[4.53634887,0.03578374,99.47308795],[4.53634841,0.035782,99.47383147],[4.53634796,0.03578026,99.47457437],[4.53634751,0.03577851,99.47531666],[4.53634706,0.03577677,99.47605831],[4.5363466,0.03577502,99.47679932],[4.53634615,0.03577328,99.47753968],[4.5363457,0.03577153,99.47827937],[4.53634524,0.03576979,99.4790184],[4.53634479,0.03576804,99.47975675],[4.53634434,0.0357663,99.4804944],[4.53634388,0.03576455,99.48123135],[4.53634343,0.03576281,99.4819676],[4.53634298,0.03576106,99.48270312],[4.53634253,0.03575932,99.48343791],[4.53634207,0.03575757,99.48417197],[4.53634162,0.03575583,99.48490527],[4.53634117,0.03575408,99.48563781],[4.53634071,0.03575234,99.48636959],[4.53634026,0.03575059,99.48710058],[4.53633981,0.03574885,99.48783078],[4.53633936,0.0357471,99.48856019],[4.5363389,0.03574536,99.48928878],[4.53633845,0.03574361,99.49001656],[4.536338,0.03574187,99.4907435],[4.53633755,0.03574012,99.49146961],[4.53633709,0.03573838,99.49219486],[4.53633664,0.03573663,99.49291926],[4.53633619,0.03573489,99.49364279],[4.53633574,0.03573314,99.49436543],[4.53633528,0.0357314,99.49508719],[4.53633483,0.03572965,99.49580805],[4.53633438,0.03572791,99.49652799],[4.53633393,0.03572616,99.49724702],[4.53633347,0.03572442,99.49796512],[4.53633302,0.03572267,99.49868227],[4.53633257,0.03572092,99.49939848],[4.53633212,0.03571918,99.50011373],[4.53633167,0.03571743,99.500828],[4.53633121,0.03571569,99.50154129],[4.53633076,0.03571394,99.50225359],[4.53633031,0.0357122,99.50296487],[4.53632986,0.03571045,99.50367512],[4.53632941,0.03570871,99.50438433],[4.53632896,0.03570696,99.50509246],[4.5363285,0.03570522,99.50579952],[4.53632805,0.03570347,99.50650548],[4.5363276,0.03570173,99.50721032],[4.53632715,0.03569998,99.50791404],[4.5363267,0.03569824,99.5086166],[4.53632625,0.03569649,99.509318],[4.5363258,0.03569475,99.51001822],[4.53632534,0.035693,99.51071724],[4.53632489,0.03569126,99.51141505],[4.53632444,0.03568951,99.51211163],[4.53632399,0.03568777,99.51280695],[4.53632354,0.03568602,99.51350102],[4.53632309,0.03568428,99.5141938],[4.53632264,0.03568253,99.51488529],[4.53632219,0.03568078,99.51557546],[4.53632173,0.03567904,99.5162643],[4.53632128,0.03567729,99.5169518],[4.53632083,0.03567555,99.51763793],[4.53632038,0.0356738,99.51832269],[4.53631993,0.03567206,99.51900605],[4.53631948,0.03567031,99.51968799],[4.53631903,0.03566857,99.52036851],[4.53631858,0.03566682,99.52104759],[4.53631813,0.03566508,99.5217252],[4.53631767,0.03566333,99.52240133],[4.53631722,0.03566158,99.52307597],[4.53631677,0.03565984,99.52374911],[4.53631632,0.03565809,99.52442071],[4.53631587,0.03565635,99.52509078],[4.53631542,0.0356546,99.52575929],[4.53631497,0.03565286,99.52642623],[4.53631452,0.03565111,99.52709158],[4.53631407,0.03564937,99.52775534],[4.53631362,0.03564762,99.52841748],[4.53631316,0.03564588,99.52907799],[4.53631271,0.03564413,99.52973685],[4.53631226,0.03564239,99.53039406],[4.53631181,0.03564064,99.53104959],[4.53631136,0.03563889,99.53170343],[4.53631091,0.03563715,99.53235557],[4.53631046,0.0356354,99.53300598],[4.53631001,0.03563366,99.53365467],[4.53630956,0.03563191,99.5343016],[4.53630911,0.03563017,99.53494677],[4.53630865,0.03562842,99.53559016],[4.5363082,0.03562668,99.53623176],[4.53630775,0.03562493,99.53687155],[4.5363073,0.03562319,99.53750952],[4.53630685,0.03562144,99.53814565],[4.5363064,0.03561969,99.53877993],[4.53630595,0.03561795,99.53941234],[4.5363055,0.0356162,99.54004287],[4.53630505,0.03561446,99.54067151],[4.53630459,0.03561271,99.54129823],[4.53630414,0.03561097,99.54192303],[4.53630369,0.03560922,99.54254589],[4.53630324,0.03560748,99.54316679],[4.53630279,0.03560573,99.54378572],[4.53630234,0.03560399,99.54440267],[4.53630189,0.03560224,99.54501762],[4.53630144,0.0356005,99.54563056],[4.53630098,0.03559875,99.54624147],[4.53630053,0.03559701,99.54685034],[4.53630008,0.03559526,99.54745715],[4.53629963,0.03559352,99.54806188],[4.53629918,0.03559177,99.54866453],[4.53629873,0.03559002,99.54926508],[4.53629827,0.03558828,99.54986351],[4.53629782,0.03558653,99.5504598],[4.53629737,0.03558479,99.55105395],[4.53629692,0.03558304,99.55164594],[4.53629647,0.0355813,99.55223575],[4.53629602,0.03557955,99.55282337],[4.53629556,0.03557781,99.55340879],[4.53629511,0.03557606,99.553992],[4.53629466,0.03557432,99.55457301],[4.53629421,0.03557257,99.55515184],[4.53629376,0.03557083,99.55572848],[4.5362933,0.03556908,99.55630296],[4.53629285,0.03556734,99.55687526],[4.5362924,0.03556559,99.55744541],[4.53629195,0.03556385,99.55801341],[4.53629149,0.0355621,99.55857926],[4.53629104,0.03556036,99.55914298],[4.53629059,0.03555861,99.55970458],[4.53629014,0.03555687,99.56026405],[4.53628968,0.03555512,99.56082141],[4.53628923,0.03555338,99.56137666],[4.53628878,0.03555163,99.56192982],[4.53628833,0.03554989,99.56248088],[4.53628787,0.03554814,99.56302987],[4.53628742,0.0355464,99.56357678],[4.53628697,0.03554465,99.56412162],[4.53628652,0.03554291,99.5646644],[4.53628606,0.03554116,99.56520513],[4.53628561,0.03553942,99.56574381],[4.53628516,0.03553767,99.56628045],[4.5362847,0.03553593,99.56681505],[4.53628425,0.03553418,99.56734763],[4.5362838,0.03553244,99.56787818],[4.53628334,0.03553069,99.56840671],[4.53628289,0.03552895,99.56893324],[4.53628244,0.0355272,99.56945776],[4.53628198,0.03552546,99.56998028],[4.53628153,0.03552372,99.57050081],[4.53628108,0.03552197,99.57101935],[4.53628062,0.03552023,99.57153592],[4.53628017,0.03551848,99.57205051],[4.53627972,0.03551674,99.57256314],[4.53627926,0.03551499,99.5730738],[4.53627881,0.03551325,99.57358251],[4.53627836,0.0355115,99.57408927],[4.5362779,0.03550976,99.57459409],[4.53627745,0.03550801,99.57509698],[4.536277,0.03550627,99.57559793],[4.53627654,0.03550452,99.57609696],[4.53627609,0.03550278,99.57659407],[4.53627564,0.03550103,99.57708928],[4.53627518,0.03549929,99.57758257],[4.53627473,0.03549754,99.57807397],[4.53627427,0.0354958,99.57856348],[4.53627382,0.03549406,99.5790511],[4.53627337,0.03549231,99.57953684],[4.53627291,0.03549057,99.5800207],[4.53627246,0.03548882,99.5805027],[4.536272,0.03548708,99.58098284],[4.53627155,0.03548533,99.58146112],[4.5362711,0.03548359,99.58193755],[4.53627064,0.03548184,99.58241213],[4.53627019,0.0354801,99.58288488],[4.53626973,0.03547835,99.5833558],[4.53626928,0.03547661,99.58382489],[4.53626883,0.03547487,99.58429217],[4.53626837,0.03547312,99.58475763],[4.53626792,0.03547138,99.58522129],[4.53626746,0.03546963,99.58568314],[4.53626701,0.03546789,99.5861432],[4.53626655,0.03546614,99.58660148],[4.5362661,0.0354644,99.58705797],[4.53626565,0.03546265,99.58751268],[4.53626519,0.03546091,99.58796563],[4.53626474,0.03545917,99.58841681],[4.53626428,0.03545742,99.58886624],[4.53626383,0.03545568,99.58931391],[4.53626337,0.03545393,99.58975984],[4.53626292,0.03545219,99.59020402],[4.53626246,0.03545044,99.59064648],[4.53626201,0.0354487,99.59108721],[4.53626155,0.03544695,99.59152622],[4.5362611,0.03544521,99.59196351],[4.53626065,0.03544347,99.5923991],[4.53626019,0.03544172,99.59283298],[4.53625974,0.03543998,99.59326516],[4.53625928,0.03543823,99.59369566],[4.53625883,0.03543649,99.59412447],[4.53625837,0.03543474,99.59455161],[4.53625792,0.035433,99.59497707],[4.53625746,0.03543126,99.59540086],[4.53625701,0.03542951,99.595823],[4.53625655,0.03542777,99.59624348],[4.5362561,0.03542602,99.59666232],[4.53625564,0.03542428,99.59707951],[4.53625519,0.03542253,99.59749507],[4.53625473,0.03542079,99.597909],[4.53625428,0.03541905,99.59832131],[4.53625382,0.0354173,99.598732],[4.53625337,0.03541556,99.59914108],[4.53625291,0.03541381,99.59954855],[4.53625245,0.03541207,99.59995443],[4.536252,0.03541032,99.60035871],[4.53625154,0.03540858,99.60076141],[4.53625109,0.03540684,99.60116253],[4.53625063,0.03540509,99.60156209],[4.53625018,0.03540335,99.60196009],[4.53624972,0.0354016,99.60235654],[4.53624927,0.03539986,99.60275146],[4.53624881,0.03539812,99.60314484],[4.53624836,0.03539637,99.60353668],[4.5362479,0.03539463,99.603927],[4.53624745,0.03539288,99.60431581],[4.53624699,0.03539114,99.60470309],[4.53624653,0.03538939,99.60508886],[4.53624608,0.03538765,99.60547313],[4.53624562,0.03538591,99.6058559],[4.53624517,0.03538416,99.60623716],[4.53624471,0.03538242,99.60661694],[4.53624426,0.03538067,99.60699523],[4.5362438,0.03537893,99.60737204],[4.53624335,0.03537719,99.60774737],[4.53624289,0.03537544,99.60812122],[4.53624243,0.0353737,99.60849361],[4.53624198,0.03537195,99.60886454],[4.53624152,0.03537021,99.609234],[4.53624107,0.03536847,99.60960202],[4.53624061,0.03536672,99.60996858],[4.53624016,0.03536498,99.61033371],[4.5362397,0.03536323,99.61069739],[4.53623924,0.03536149,99.61105964],[4.53623879,0.03535975,99.61142046],[4.53623833,0.035358,99.61177985],[4.53623788,0.03535626,99.61213783],[4.53623742,0.03535451,99.61249439],[4.53623696,0.03535277,99.61284954],[4.53623651,0.03535103,99.61320328],[4.53623605,0.03534928,99.61355563],[4.5362356,0.03534754,99.61390658],[4.53623514,0.03534579,99.61425613],[4.53623468,0.03534405,99.6146043],[4.53623423,0.03534231,99.6149511],[4.53623377,0.03534056,99.61529651],[4.53623332,0.03533882,99.61564055],[4.53623286,0.03533707,99.61598323],[4.5362324,0.03533533,99.61632454],[4.53623195,0.03533359,99.61666449],[4.53623149,0.03533184,99.6170031],[4.53623103,0.0353301,99.61734035],[4.53623058,0.03532835,99.61767626],[4.53623012,0.03532661,99.61801083],[4.53622966,0.03532487,99.61834407],[4.53622921,0.03532312,99.61867598],[4.53622875,0.03532138,99.61900657],[4.53622829,0.03531964,99.61933584],[4.53622784,0.03531789,99.61966379],[4.53622738,0.03531615,99.61999044],[4.53622693,0.0353144,99.62031577],[4.53622647,0.03531266,99.62063981],[4.53622601,0.03531092,99.62096255],[4.53622555,0.03530917,99.62128401],[4.5362251,0.03530743,99.62160417],[4.53622464,0.03530569,99.62192306],[4.53622418,0.03530394,99.62224067],[4.53622373,0.0353022,99.622557],[4.53622327,0.03530045,99.62287207],[4.53622281,0.03529871,99.62318588],[4.53622236,0.03529697,99.62349843],[4.5362219,0.03529522,99.62380973],[4.53622144,0.03529348,99.62411978],[4.53622099,0.03529174,99.62442858],[4.53622053,0.03528999,99.62473615],[4.53622007,0.03528825,99.62504248],[4.53621961,0.0352865,99.62534759],[4.53621916,0.03528476,99.62565147],[4.5362187,0.03528302,99.62595413],[4.53621824,0.03528127,99.62625557],[4.53621779,0.03527953,99.62655581],[4.53621733,0.03527779,99.62685484],[4.53621687,0.03527604,99.62715266],[4.53621641,0.0352743,99.6274493],[4.53621596,0.03527256,99.62774474],[4.5362155,0.03527081,99.62803899],[4.53621504,0.03526907,99.62833206],[4.53621458,0.03526733,99.62862396],[4.53621413,0.03526558,99.62891468],[4.53621367,0.03526384,99.62920424],[4.53621321,0.03526209,99.62949263],[4.53621275,0.03526035,99.62977986],[4.53621229,0.03525861,99.63006594],[4.53621184,0.03525686,99.63035087],[4.53621138,0.03525512,99.63063465],[4.53621092,0.03525338,99.6309173],[4.53621046,0.03525163,99.63119881],[4.53621,0.03524989,99.63147919],[4.53620955,0.03524815,99.63175845],[4.53620909,0.0352464,99.63203658],[4.53620863,0.03524466,99.63231361],[4.53620817,0.03524292,99.63258954],[4.53620771,0.03524117,99.63286437],[4.53620726,0.03523943,99.63313812],[4.5362068,0.03523769,99.63341078],[4.53620634,0.03523594,99.63368237],[4.53620588,0.0352342,99.63395289],[4.53620542,0.03523246,99.63422235],[4.53620496,0.03523071,99.63449076],[4.53620451,0.03522897,99.63475812],[4.53620405,0.03522723,99.63502443],[4.53620359,0.03522548,99.63528971],[4.53620313,0.03522374,99.63555396],[4.53620267,0.035222,99.63581719],[4.53620221,0.03522025,99.6360794],[4.53620175,0.03521851,99.6363406],[4.53620129,0.03521677,99.6366008],[4.53620084,0.03521502,99.63685999],[4.53620038,0.03521328,99.6371182],[4.53619992,0.03521154,99.63737543],[4.53619946,0.0352098,99.63763167],[4.536199,0.03520805,99.63788695],[4.53619854,0.03520631,99.63814126],[4.53619808,0.03520457,99.63839461],[4.53619762,0.03520282,99.63864701],[4.53619716,0.03520108,99.63889846],[4.53619671,0.03519934,99.63914897],[4.53619625,0.03519759,99.63939855],[4.53619579,0.03519585,99.6396472],[4.53619533,0.03519411,99.63989494],[4.53619487,0.03519236,99.64014176],[4.53619441,0.03519062,99.64038767],[4.53619395,0.03518888,99.64063268],[4.53619349,0.03518714,99.6408768],[4.53619303,0.03518539,99.64112002],[4.53619257,0.03518365,99.64136237],[4.53619211,0.03518191,99.64160384],[4.53619165,0.03518016,99.64184445],[4.53619119,0.03517842,99.64208419],[4.53619074,0.03517668,99.64232307],[4.53619028,0.03517493,99.64256111],[4.53618982,0.03517319,99.64279831],[4.53618936,0.03517145,99.64303466],[4.5361889,0.03516971,99.64327019],[4.53618844,0.03516796,99.6435049],[4.53618798,0.03516622,99.64373879],[4.53618752,0.03516448,99.64397186],[4.53618706,0.03516273,99.64420414],[4.5361866,0.03516099,99.64443561],[4.53618614,0.03515925,99.6446663],[4.53618568,0.0351575,99.6448962],[4.53618522,0.03515576,99.64512533],[4.53618476,0.03515402,99.64535368],[4.5361843,0.03515228,99.64558127],[4.53618384,0.03515053,99.6458081],[4.53618338,0.03514879,99.64603418],[4.53618292,0.03514705,99.64625951],[4.53618246,0.0351453,99.64648411],[4.536182,0.03514356,99.64670797],[4.53618154,0.03514182,99.6469311],[4.53618108,0.03514008,99.64715352],[4.53618062,0.03513833,99.64737523],[4.53618016,0.03513659,99.64759623],[4.5361797,0.03513485,99.64781653],[4.53617924,0.0351331,99.64803613],[4.53617878,0.03513136,99.64825506],[4.53617832,0.03512962,99.6484733],[4.53617786,0.03512788,99.64869086],[4.5361774,0.03512613,99.64890776],[4.53617694,0.03512439,99.64912401],[4.53617648,0.03512265,99.64933959],[4.53617602,0.0351209,99.64955453],[4.53617556,0.03511916,99.64976883],[4.5361751,0.03511742,99.6499825],[4.53617464,0.03511568,99.65019554],[4.53617418,0.03511393,99.65040796],[4.53617372,0.03511219,99.65061976],[4.53617326,0.03511045,99.65083096],[4.5361728,0.03510871,99.65104155],[4.53617234,0.03510696,99.65125156],[4.53617188,0.03510522,99.65146097],[4.53617142,0.03510348,99.6516698],[4.53617096,0.03510173,99.65187806],[4.5361705,0.03509999,99.65208575],[4.53617004,0.03509825,99.65229288],[4.53616958,0.03509651,99.65249945],[4.53616912,0.03509476,99.65270548],[4.53616866,0.03509302,99.65291096],[4.5361682,0.03509128,99.65311591],[4.53616773,0.03508954,99.65332033],[4.53616727,0.03508779,99.65352423],[4.53616681,0.03508605,99.65372762],[4.53616635,0.03508431,99.65393049],[4.53616589,0.03508257,99.65413287],[4.53616543,0.03508082,99.65433475],[4.53616497,0.03507908,99.65453614],[4.53616451,0.03507734,99.65473705],[4.53616405,0.03507559,99.65493748],[4.53616359,0.03507385,99.65513745],[4.53616313,0.03507211,99.65533695],[4.53616267,0.03507037,99.655536],[4.53616221,0.03506862,99.6557346],[4.53616175,0.03506688,99.65593275],[4.53616129,0.03506514,99.65613048],[4.53616083,0.0350634,99.65632777],[4.53616037,0.03506165,99.65652464],[4.53615991,0.03505991,99.6567211],[4.53615944,0.03505817,99.65691714],[4.53615898,0.03505643,99.65711279],[4.53615852,0.03505468,99.65730804],[4.53615806,0.03505294,99.6575029],[4.5361576,0.0350512,99.65769738],[4.53615714,0.03504945,99.65789148],[4.53615668,0.03504771,99.65808522],[4.53615622,0.03504597,99.65827859],[4.53615576,0.03504423,99.65847161],[4.5361553,0.03504248,99.65866428],[4.53615484,0.03504074,99.65885661],[4.53615438,0.035039,99.6590486],[4.53615392,0.03503726,99.65924026],[4.53615346,0.03503551,99.6594316],[4.536153,0.03503377,99.65962263],[4.53615253,0.03503203,99.65981335],[4.53615207,0.03503029,99.66000377],[4.53615161,0.03502854,99.66019389],[4.53615115,0.0350268,99.66038372],[4.53615069,0.03502506,99.66057327],[4.53615023,0.03502332,99.66076255],[4.53614977,0.03502157,99.66095156],[4.53614931,0.03501983,99.6611403],[4.53614885,0.03501809,99.6613288],[4.53614839,0.03501635,99.66151706],[4.53614793,0.0350146,99.66170508],[4.53614747,0.03501286,99.66189289],[4.53614701,0.03501112,99.66208048],[4.53614655,0.03500938,99.66226787],[4.53614609,0.03500764,99.66245506],[4.53614562,0.03500589,99.66264206],[4.53614516,0.03500415,99.66282889],[4.5361447,0.03500241,99.66301553],[4.53614424,0.03500067,99.663202],[4.53614378,0.03499892,99.66338831],[4.53614332,0.03499718,99.66357446],[4.53614286,0.03499544,99.66376045],[4.5361424,0.0349937,99.6639463],[4.53614194,0.03499195,99.664132],[4.53614148,0.03499021,99.66431756],[4.53614102,0.03498847,99.664503],[4.53614056,0.03498672,99.6646883],[4.5361401,0.03498498,99.66487349],[4.53613964,0.03498324,99.66505856],[4.53613918,0.0349815,99.66524352],[4.53613872,0.03497975,99.66542837],[4.53613825,0.03497801,99.66561313],[4.53613779,0.03497627,99.6657978],[4.53613733,0.03497453,99.66598237],[4.53613687,0.03497278,99.66616687],[4.53613641,0.03497104,99.66635129],[4.53613595,0.0349693,99.66653564],[4.53613549,0.03496756,99.66671991],[4.53613503,0.03496581,99.66690413],[4.53613457,0.03496407,99.66708828],[4.53613411,0.03496233,99.66727238],[4.53613365,0.03496059,99.66745642],[4.53613319,0.03495884,99.66764042],[4.53613273,0.0349571,99.66782437],[4.53613227,0.03495536,99.66800828],[4.53613181,0.03495361,99.66819215],[4.53613135,0.03495187,99.668376],[4.53613089,0.03495013,99.66855982],[4.53613043,0.03494839,99.66874361],[4.53612997,0.03494664,99.66892739],[4.5361295,0.0349449,99.66911115],[4.53612904,0.03494316,99.6692949],[4.53612858,0.03494142,99.66947864],[4.53612812,0.03493967,99.66966238],[4.53612766,0.03493793,99.66984612],[4.5361272,0.03493619,99.67002987],[4.53612674,0.03493445,99.67021362],[4.53612628,0.0349327,99.67039739],[4.53612582,0.03493096,99.67058118],[4.53612536,0.03492922,99.67076499],[4.5361249,0.03492747,99.67094883],[4.53612444,0.03492573,99.67113269],[4.53612398,0.03492399,99.67131659],[4.53612352,0.03492225,99.67150053],[4.53612306,0.0349205,99.67168451],[4.5361226,0.03491876,99.67186854],[4.53612214,0.03491702,99.67205262],[4.53612168,0.03491528,99.67223675],[4.53612122,0.03491353,99.67242094],[4.53612075,0.03491179,99.67260519],[4.53612029,0.03491005,99.67278951],[4.53611983,0.0349083,99.6729739],[4.53611937,0.03490656,99.67315836],[4.53611891,0.03490482,99.67334291],[4.53611845,0.03490308,99.67352753],[4.53611799,0.03490133,99.67371224],[4.53611753,0.03489959,99.67389705],[4.53611707,0.03489785,99.67408194],[4.53611661,0.03489611,99.67426694],[4.53611615,0.03489436,99.67445204],[4.53611569,0.03489262,99.67463725],[4.53611523,0.03489088,99.67482256],[4.53611477,0.03488914,99.67500799],[4.53611431,0.03488739,99.67519354],[4.53611385,0.03488565,99.67537922],[4.53611338,0.03488391,99.67556502],[4.53611292,0.03488216,99.67575095],[4.53611246,0.03488042,99.67593701],[4.536112,0.03487868,99.67612321],[4.53611154,0.03487694,99.67630956],[4.53611108,0.03487519,99.67649605],[4.53611062,0.03487345,99.6766827],[4.53611016,0.03487171,99.67686949],[4.5361097,0.03486997,99.67705645],[4.53610924,0.03486822,99.67724357],[4.53610878,0.03486648,99.67743085],[4.53610832,0.03486474,99.67761831],[4.53610785,0.034863,99.67780594],[4.53610739,0.03486125,99.67799375],[4.53610693,0.03485951,99.67818174],[4.53610647,0.03485777,99.67836992],[4.53610601,0.03485603,99.67855828],[4.53610555,0.03485428,99.67874685],[4.53610509,0.03485254,99.67893561],[4.53610463,0.0348508,99.67912457],[4.53610417,0.03484905,99.67931373],[4.53610371,0.03484731,99.67950311],[4.53610324,0.03484557,99.6796927],[4.53610278,0.03484383,99.67988251],[4.53610232,0.03484208,99.68007254],[4.53610186,0.03484034,99.6802628],[4.5361014,0.0348386,99.68045329],[4.53610094,0.03483686,99.68064401],[4.53610048,0.03483511,99.68083497],[4.53610002,0.03483337,99.68102617],[4.53609955,0.03483163,99.68121761],[4.53609909,0.03482989,99.68140931],[4.53609863,0.03482814,99.68160125],[4.53609817,0.0348264,99.68179346],[4.53609771,0.03482466,99.68198592],[4.53609725,0.03482292,99.68217866],[4.53609679,0.03482117,99.68237166],[4.53609632,0.03481943,99.68256493],[4.53609586,0.03481769,99.68275848],[4.5360954,0.03481595,99.68295231],[4.53609494,0.0348142,99.68314643],[4.53609448,0.03481246,99.68334083],[4.53609402,0.03481072,99.68353553],[4.53609356,0.03480898,99.68373052],[4.53609309,0.03480723,99.68392582],[4.53609263,0.03480549,99.68412142],[4.53609217,0.03480375,99.68431731],[4.53609171,0.03480201,99.68451349],[4.53609125,0.03480026,99.68470995],[4.53609078,0.03479852,99.68490667],[4.53609032,0.03479678,99.68510366],[4.53608986,0.03479504,99.6853009],[4.5360894,0.03479329,99.68549838],[4.53608894,0.03479155,99.68569609],[4.53608847,0.03478981,99.68589402],[4.53608801,0.03478807,99.68609217],[4.53608755,0.03478633,99.68629052],[4.53608709,0.03478458,99.68648907],[4.53608663,0.03478284,99.68668781],[4.53608616,0.0347811,99.68688672],[4.5360857,0.03477936,99.6870858],[4.53608524,0.03477761,99.68728504],[4.53608478,0.03477587,99.68748443],[4.53608431,0.03477413,99.68768396],[4.53608385,0.03477239,99.68788363],[4.53608339,0.03477064,99.68808342],[4.53608293,0.0347689,99.68828335],[4.53608246,0.03476716,99.6884834],[4.536082,0.03476542,99.68868358],[4.53608154,0.03476368,99.68888388],[4.53608107,0.03476193,99.6890843],[4.53608061,0.03476019,99.68928485],[4.53608015,0.03475845,99.68948551],[4.53607969,0.03475671,99.6896863],[4.53607922,0.03475497,99.6898872],[4.53607876,0.03475322,99.69008822],[4.5360783,0.03475148,99.69028935],[4.53607783,0.03474974,99.69049059],[4.53607737,0.034748,99.69069194],[4.53607691,0.03474625,99.69089341],[4.53607644,0.03474451,99.69109498],[4.53607598,0.03474277,99.69129666],[4.53607551,0.03474103,99.69149844],[4.53607505,0.03473929,99.69170033],[4.53607459,0.03473754,99.69190232],[4.53607412,0.0347358,99.69210441],[4.53607366,0.03473406,99.6923066],[4.5360732,0.03473232,99.69250889],[4.53607273,0.03473058,99.69271127],[4.53607227,0.03472883,99.69291375],[4.53607181,0.03472709,99.69311632],[4.53607134,0.03472535,99.69331898],[4.53607088,0.03472361,99.69352174],[4.53607041,0.03472187,99.69372458],[4.53606995,0.03472013,99.69392751],[4.53606949,0.03471838,99.69413053],[4.53606902,0.03471664,99.69433363],[4.53606856,0.0347149,99.69453681],[4.53606809,0.03471316,99.69474007],[4.53606763,0.03471142,99.69494342],[4.53606716,0.03470967,99.69514684],[4.5360667,0.03470793,99.69535034],[4.53606624,0.03470619,99.69555392],[4.53606577,0.03470445,99.69575757],[4.53606531,0.03470271,99.69596129],[4.53606484,0.03470096,99.69616508],[4.53606438,0.03469922,99.69636894],[4.53606391,0.03469748,99.69657287],[4.53606345,0.03469574,99.69677687],[4.53606299,0.034694,99.69698093],[4.53606252,0.03469226,99.69718506],[4.53606206,0.03469051,99.69738924],[4.53606159,0.03468877,99.69759349],[4.53606113,0.03468703,99.6977978],[4.53606066,0.03468529,99.69800216],[4.5360602,0.03468355,99.69820658],[4.53605973,0.0346818,99.69841105],[4.53605927,0.03468006,99.69861558],[4.53605881,0.03467832,99.69882015],[4.53605834,0.03467658,99.69902478],[4.53605788,0.03467484,99.69922946],[4.53605741,0.0346731,99.69943418],[4.53605695,0.03467135,99.69963894],[4.53605648,0.03466961,99.69984375],[4.53605602,0.03466787,99.7000486],[4.53605555,0.03466613,99.70025349],[4.53605509,0.03466439,99.70045842],[4.53605462,0.03466265,99.70066338],[4.53605416,0.0346609,99.70086838],[4.53605369,0.03465916,99.70107342],[4.53605323,0.03465742,99.70127849],[4.53605276,0.03465568,99.70148358],[4.5360523,0.03465394,99.70168871],[4.53605183,0.03465219,99.70189386],[4.53605137,0.03465045,99.70209904],[4.53605091,0.03464871,99.70230424],[4.53605044,0.03464697,99.70250947],[4.53604998,0.03464523,99.70271471],[4.53604951,0.03464349,99.70291998],[4.53604905,0.03464174,99.70312526],[4.53604858,0.03464,99.70333056],[4.53604812,0.03463826,99.70353587],[4.53604765,0.03463652,99.70374119],[4.53604719,0.03463478,99.70394652],[4.53604672,0.03463304,99.70415187],[4.53604626,0.03463129,99.70435722],[4.53604579,0.03462955,99.70456257],[4.53604533,0.03462781,99.70476793],[4.53604486,0.03462607,99.70497329],[4.5360444,0.03462433,99.70517865],[4.53604393,0.03462258,99.70538401],[4.53604347,0.03462084,99.70558937],[4.536043,0.0346191,99.70579472],[4.53604254,0.03461736,99.70600006],[4.53604208,0.03461562,99.7062054],[4.53604161,0.03461388,99.70641072],[4.53604115,0.03461213,99.70661603],[4.53604068,0.03461039,99.7068213],[4.53604022,0.03460865,99.70702653],[4.53603975,0.03460691,99.70723172],[4.53603929,0.03460517,99.70743684],[4.53603882,0.03460342,99.7076419],[4.53603836,0.03460168,99.70784687],[4.53603789,0.03459994,99.70805176],[4.53603743,0.0345982,99.70825655],[4.53603696,0.03459646,99.70846124],[4.5360365,0.03459472,99.7086658],[4.53603604,0.03459297,99.70887025],[4.53603557,0.03459123,99.70907455],[4.53603511,0.03458949,99.70927871],[4.53603464,0.03458775,99.70948272],[4.53603418,0.03458601,99.70968657],[4.53603371,0.03458426,99.70989024],[4.53603325,0.03458252,99.71009373],[4.53603278,0.03458078,99.71029703],[4.53603232,0.03457904,99.71050013],[4.53603185,0.0345773,99.71070302],[4.53603139,0.03457556,99.7109057],[4.53603092,0.03457381,99.71110814],[4.53603046,0.03457207,99.71131035],[4.53602999,0.03457033,99.7115123],[4.53602953,0.03456859,99.71171401],[4.53602906,0.03456685,99.71191545],[4.5360286,0.0345651,99.71211661],[4.53602813,0.03456336,99.71231749],[4.53602767,0.03456162,99.71251808],[4.5360272,0.03455988,99.71271837],[4.53602674,0.03455814,99.71291834],[4.53602627,0.0345564,99.713118],[4.53602581,0.03455465,99.71331733],[4.53602534,0.03455291,99.71351632],[4.53602488,0.03455117,99.71371496],[4.53602441,0.03454943,99.71391325],[4.53602395,0.03454769,99.71411117],[4.53602348,0.03454595,99.71430872],[4.53602302,0.0345442,99.71450589],[4.53602255,0.03454246,99.71470266],[4.53602209,0.03454072,99.71489903],[4.53602162,0.03453898,99.715095],[4.53602115,0.03453724,99.71529054],[4.53602069,0.0345355,99.71548566],[4.53602022,0.03453375,99.71568034],[4.53601976,0.03453201,99.71587458],[4.53601929,0.03453027,99.71606836],[4.53601882,0.03452853,99.71626169],[4.53601836,0.03452679,99.71645455],[4.53601789,0.03452505,99.71664695],[4.53601743,0.0345233,99.71683887],[4.53601696,0.03452156,99.71703032],[4.53601649,0.03451982,99.71722129],[4.53601603,0.03451808,99.71741177],[4.53601556,0.03451634,99.71760177],[4.53601509,0.0345146,99.71779127],[4.53601463,0.03451286,99.71798027],[4.53601416,0.03451112,99.71816877],[4.53601369,0.03450937,99.71835676],[4.53601323,0.03450763,99.71854424],[4.53601276,0.03450589,99.7187312],[4.53601229,0.03450415,99.71891764],[4.53601183,0.03450241,99.71910356],[4.53601136,0.03450067,99.71928894],[4.53601089,0.03449893,99.71947379],[4.53601042,0.03449718,99.71965811],[4.53600996,0.03449544,99.71984187],[4.53600949,0.0344937,99.72002509],[4.53600902,0.03449196,99.72020776],[4.53600856,0.03449022,99.72038988],[4.53600809,0.03448848,99.72057144],[4.53600762,0.03448674,99.72075244],[4.53600715,0.034485,99.7209329],[4.53600668,0.03448326,99.7211128],[4.53600622,0.03448151,99.72129216],[4.53600575,0.03447977,99.72147097],[4.53600528,0.03447803,99.72164922],[4.53600481,0.03447629,99.72182694],[4.53600434,0.03447455,99.7220041],[4.53600388,0.03447281,99.72218072],[4.53600341,0.03447107,99.72235679],[4.53600294,0.03446933,99.72253232],[4.53600247,0.03446759,99.7227073],[4.536002,0.03446585,99.72288175],[4.53600154,0.0344641,99.72305565],[4.53600107,0.03446236,99.72322901],[4.5360006,0.03446062,99.72340182],[4.53600013,0.03445888,99.7235741],[4.53599966,0.03445714,99.72374584],[4.53599919,0.0344554,99.72391704],[4.53599872,0.03445366,99.7240877],[4.53599826,0.03445192,99.72425782],[4.53599779,0.03445018,99.72442741],[4.53599732,0.03444844,99.72459646],[4.53599685,0.0344467,99.72476497],[4.53599638,0.03444496,99.72493295],[4.53599591,0.03444321,99.72510039],[4.53599544,0.03444147,99.7252673],[4.53599497,0.03443973,99.72543368],[4.5359945,0.03443799,99.72559952],[4.53599404,0.03443625,99.72576483],[4.53599357,0.03443451,99.72592961],[4.5359931,0.03443277,99.72609385],[4.53599263,0.03443103,99.72625756],[4.53599216,0.03442929,99.72642074],[4.53599169,0.03442755,99.72658339],[4.53599122,0.03442581,99.72674551],[4.53599075,0.03442407,99.7269071],[4.53599028,0.03442233,99.72706816],[4.53598981,0.03442058,99.72722869],[4.53598935,0.03441884,99.7273887],[4.53598888,0.0344171,99.72754817],[4.53598841,0.03441536,99.72770711],[4.53598794,0.03441362,99.72786553],[4.53598747,0.03441188,99.72802341],[4.535987,0.03441014,99.72818077],[4.53598653,0.0344084,99.7283376],[4.53598606,0.03440666,99.7284939],[4.53598559,0.03440492,99.72864968],[4.53598512,0.03440318,99.72880493],[4.53598465,0.03440144,99.72895965],[4.53598418,0.0343997,99.72911384],[4.53598372,0.03439795,99.72926751],[4.53598325,0.03439621,99.72942065],[4.53598278,0.03439447,99.72957326],[4.53598231,0.03439273,99.72972535],[4.53598184,0.03439099,99.72987691],[4.53598137,0.03438925,99.73002794],[4.5359809,0.03438751,99.73017845],[4.53598043,0.03438577,99.73032843],[4.53597996,0.03438403,99.73047788],[4.53597949,0.03438229,99.7306268],[4.53597903,0.03438055,99.7307752],[4.53597856,0.03437881,99.73092307],[4.53597809,0.03437706,99.73107042],[4.53597762,0.03437532,99.73121724],[4.53597715,0.03437358,99.73136353],[4.53597668,0.03437184,99.73150929],[4.53597621,0.0343701,99.73165453],[4.53597574,0.03436836,99.73179923],[4.53597528,0.03436662,99.73194341],[4.53597481,0.03436488,99.73208706],[4.53597434,0.03436314,99.73223019],[4.53597387,0.0343614,99.73237278],[4.5359734,0.03435966,99.73251485],[4.53597293,0.03435791,99.73265638],[4.53597246,0.03435617,99.73279739],[4.535972,0.03435443,99.73293787],[4.53597153,0.03435269,99.73307782],[4.53597106,0.03435095,99.73321723],[4.53597059,0.03434921,99.73335612],[4.53597012,0.03434747,99.73349448],[4.53596965,0.03434573,99.7336323],[4.53596919,0.03434399,99.73376959],[4.53596872,0.03434224,99.73390635],[4.53596825,0.0343405,99.73404258],[4.53596778,0.03433876,99.73417827],[4.53596732,0.03433702,99.73431342],[4.53596685,0.03433528,99.73444801],[4.53596638,0.03433354,99.73458205],[4.53596591,0.0343318,99.73471552],[4.53596544,0.03433006,99.73484841],[4.53596498,0.03432831,99.73498071],[4.53596451,0.03432657,99.73511243],[4.53596404,0.03432483,99.73524355],[4.53596357,0.03432309,99.73537406],[4.53596311,0.03432135,99.73550396],[4.53596264,0.03431961,99.73563324],[4.53596217,0.03431787,99.73576188],[4.53596171,0.03431613,99.73588989],[4.53596124,0.03431438,99.73601726],[4.53596077,0.03431264,99.73614397],[4.5359603,0.0343109,99.73627003],[4.53595984,0.03430916,99.73639541],[4.53595937,0.03430742,99.73652013],[4.5359589,0.03430568,99.73664415],[4.53595844,0.03430394,99.73676749],[4.53595797,0.03430219,99.73689013],[4.5359575,0.03430045,99.73701207],[4.53595704,0.03429871,99.73713329],[4.53595657,0.03429697,99.7372538],[4.5359561,0.03429523,99.73737357],[4.53595564,0.03429349,99.73749261],[4.53595517,0.03429175,99.73761091],[4.5359547,0.03429,99.73772846],[4.53595424,0.03428826,99.73784525],[4.53595377,0.03428652,99.73796127],[4.5359533,0.03428478,99.73807653],[4.53595284,0.03428304,99.738191],[4.53595237,0.0342813,99.73830469],[4.5359519,0.03427955,99.73841758],[4.53595144,0.03427781,99.73852967],[4.53595097,0.03427607,99.73864095],[4.5359505,0.03427433,99.73875142],[4.53595004,0.03427259,99.73886106],[4.53594957,0.03427085,99.73896987],[4.5359491,0.03426911,99.73907784],[4.53594864,0.03426736,99.73918496],[4.53594817,0.03426562,99.73929124],[4.5359477,0.03426388,99.73939665],[4.53594724,0.03426214,99.73950119],[4.53594677,0.0342604,99.73960486],[4.53594631,0.03425866,99.73970765],[4.53594584,0.03425691,99.73980955],[4.53594537,0.03425517,99.73991055],[4.53594491,0.03425343,99.74001065],[4.53594444,0.03425169,99.74010984],[4.53594397,0.03424995,99.74020811],[4.53594351,0.03424821,99.74030545],[4.53594304,0.03424647,99.74040187],[4.53594257,0.03424472,99.74049734],[4.53594211,0.03424298,99.74059186],[4.53594164,0.03424124,99.74068544],[4.53594118,0.0342395,99.74077805],[4.53594071,0.03423776,99.74086969],[4.53594024,0.03423602,99.74096036],[4.53593978,0.03423427,99.74105005],[4.53593931,0.03423253,99.74113874],[4.53593884,0.03423079,99.74122645],[4.53593838,0.03422905,99.74131314],[4.53593791,0.03422731,99.74139883],[4.53593744,0.03422557,99.7414835],[4.53593698,0.03422383,99.74156715],[4.53593651,0.03422208,99.74164976],[4.53593604,0.03422034,99.74173134],[4.53593558,0.0342186,99.74181187],[4.53593511,0.03421686,99.74189134],[4.53593464,0.03421512,99.74196976],[4.53593418,0.03421338,99.74204712],[4.53593371,0.03421164,99.74212339],[4.53593325,0.03420989,99.74219859],[4.53593278,0.03420815,99.74227271],[4.53593231,0.03420641,99.74234572],[4.53593184,0.03420467,99.74241763],[4.53593138,0.03420293,99.74248841],[4.53593091,0.03420119,99.74255805],[4.53593044,0.03419945,99.74262654],[4.53592998,0.0341977,99.74269386],[4.53592951,0.03419596,99.74276],[4.53592904,0.03419422,99.74282494],[4.53592858,0.03419248,99.74288868],[4.53592811,0.03419074,99.74295118],[4.53592764,0.034189,99.74301246],[4.53592717,0.03418726,99.74307247],[4.53592671,0.03418552,99.74313122],[4.53592624,0.03418377,99.74318869],[4.53592577,0.03418203,99.74324487],[4.5359253,0.03418029,99.74329973],[4.53592484,0.03417855,99.74335328],[4.53592437,0.03417681,99.74340548],[4.5359239,0.03417507,99.74345634],[4.53592343,0.03417333,99.74350582],[4.53592296,0.03417159,99.74355393],[4.5359225,0.03416985,99.74360065],[4.53592203,0.03416811,99.74364596],[4.53592156,0.03416636,99.74368985],[4.53592109,0.03416462,99.74373231],[4.53592062,0.03416288,99.74377331],[4.53592015,0.03416114,99.74381286],[4.53591991,0.03416024,99.74383283]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2}},{"geometry":{"coordinates":[[4.53656216,0.03648269,99.27350507],[4.53656172,0.03648094,99.2743222],[4.53656127,0.0364792,99.27513863],[4.53656083,0.03647745,99.27595441],[4.53656038,0.0364757,99.27676957],[4.53655994,0.03647396,99.27758415],[4.53655949,0.03647221,99.27839818],[4.53655904,0.03647046,99.27921169],[4.5365586,0.03646871,99.28002473],[4.53655815,0.03646697,99.28083733],[4.53655771,0.03646522,99.28164952],[4.53655726,0.03646347,99.28246134],[4.53655681,0.03646173,99.28327283],[4.53655637,0.03645998,99.28408401],[4.53655592,0.03645823,99.28489488],[4.53655548,0.03645649,99.28570545],[4.53655503,0.03645474,99.28651571],[4.53655458,0.03645299,99.28732566],[4.53655414,0.03645124,99.2881353],[4.53655369,0.0364495,99.28894463],[4.53655325,0.03644775,99.28975365],[4.5365528,0.036446,99.29056236],[4.53655236,0.03644426,99.29137076],[4.53655191,0.03644252,99.29217885],[4.53655147,0.03644077,99.29298662],[4.53655102,0.03643902,99.29379408],[4.53655058,0.03643728,99.29460123],[4.53655013,0.03643553,99.29540806],[4.53654968,0.03643378,99.29621457],[4.53654924,0.03643204,99.29702077],[4.53654879,0.03643029,99.29782665],[4.53654835,0.03642854,99.29863221],[4.5365479,0.0364268,99.29943745],[4.53654746,0.03642505,99.30024237],[4.53654701,0.0364233,99.30104697],[4.53654657,0.03642155,99.30185125],[4.53654612,0.03641981,99.30265521],[4.53654567,0.03641806,99.30345885],[4.53654523,0.03641631,99.30426216],[4.53654478,0.03641457,99.30506515],[4.53654434,0.03641282,99.30586781],[4.53654389,0.03641107,99.30667014],[4.53654345,0.03640932,99.30747215],[4.536543,0.03640758,99.30827383],[4.53654256,0.03640583,99.30907519],[4.53654211,0.03640408,99.30987621],[4.53654167,0.03640234,99.3106769],[4.53654122,0.03640059,99.31147727],[4.53654078,0.03639884,99.3122773],[4.53654033,0.03639709,99.313077],[4.53653989,0.03639535,99.31387636],[4.53653944,0.0363936,99.31467539],[4.536539,0.03639185,99.31547409],[4.53653855,0.03639011,99.31627245],[4.5365381,0.03638836,99.31707047],[4.53653766,0.03638661,99.31786816],[4.53653721,0.03638486,99.3186655],[4.53653677,0.03638312,99.31946251],[4.53653632,0.03638137,99.32025918],[4.53653588,0.03637962,99.3210555],[4.53653543,0.03637788,99.32185149],[4.53653499,0.03637613,99.32264713],[4.53653454,0.03637438,99.32344243],[4.5365341,0.03637263,99.32423738],[4.53653365,0.03637089,99.32503199],[4.53653321,0.03636914,99.32582625],[4.53653276,0.03636739,99.32662016],[4.53653232,0.03636565,99.32741372],[4.53653187,0.0363639,99.32820694],[4.53653143,0.03636215,99.32899981],[4.53653098,0.0363604,99.32979232],[4.53653054,0.03635866,99.33058448],[4.53653009,0.03635691,99.33137629],[4.53652965,0.03635516,99.3321677],[4.5365292,0.03635341,99.3329587],[4.53652876,0.03635167,99.33374927],[4.53652831,0.03634992,99.33453942],[4.53652787,0.03634817,99.33532916],[4.53652742,0.03634643,99.33611846],[4.53652698,0.03634468,99.33690735],[4.53652653,0.03634293,99.33769581],[4.53652609,0.03634118,99.33848385],[4.53652564,0.03633944,99.33927146],[4.53652519,0.03633769,99.34005865],[4.53652475,0.03633594,99.34084541],[4.5365243,0.0363342,99.34163174],[4.53652386,0.03633245,99.34241765],[4.53652341,0.0363307,99.34320312],[4.53652297,0.03632895,99.34398817],[4.53652252,0.03632721,99.34477279],[4.53652208,0.03632546,99.34555698],[4.53652163,0.03632371,99.34634074],[4.53652118,0.03632197,99.34712406],[4.53652074,0.03632022,99.34790696],[4.53652029,0.03631847,99.34868942],[4.53651985,0.03631673,99.34947145],[4.5365194,0.03631498,99.35025305],[4.53651896,0.03631323,99.35103421],[4.53651851,0.03631148,99.35181493],[4.53651806,0.03630974,99.35259522],[4.53651762,0.03630799,99.35337507],[4.53651717,0.03630624,99.35415449],[4.53651673,0.0363045,99.35493347],[4.53651628,0.03630275,99.35571201],[4.53651584,0.036301,99.35649011],[4.53651539,0.03629926,99.35726777],[4.53651494,0.03629751,99.35804499],[4.5365145,0.03629576,99.35882176],[4.53651405,0.03629401,99.3595981],[4.53651361,0.03629227,99.36037399],[4.53651316,0.03629052,99.36114945],[4.53651271,0.03628877,99.36192445],[4.53651227,0.03628703,99.36269901],[4.53651182,0.03628528,99.36347313],[4.53651137,0.03628353,99.3642468],[4.53651093,0.03628179,99.36502003],[4.53651048,0.03628004,99.3657928],[4.53651003,0.03627829,99.36656513],[4.53650959,0.03627655,99.36733701],[4.53650914,0.0362748,99.36810844],[4.5365087,0.03627305,99.36887942],[4.53650825,0.03627131,99.36964995],[4.5365078,0.03626956,99.37042003],[4.53650736,0.03626781,99.37118965],[4.53650691,0.03626606,99.37195882],[4.53650646,0.03626432,99.37272754],[4.53650602,0.03626257,99.37349581],[4.53650557,0.03626082,99.37426361],[4.53650512,0.03625908,99.37503097],[4.53650467,0.03625733,99.37579786],[4.53650423,0.03625558,99.3765643],[4.53650378,0.03625384,99.37733028],[4.53650333,0.03625209,99.3780958],[4.53650289,0.03625034,99.37886087],[4.53650244,0.0362486,99.37962547],[4.53650199,0.03624685,99.38038961],[4.53650155,0.0362451,99.38115329],[4.5365011,0.03624336,99.38191651],[4.53650065,0.03624161,99.38267926],[4.5365002,0.03623986,99.38344155],[4.53649976,0.03623812,99.38420338],[4.53649931,0.03623637,99.38496474],[4.53649886,0.03623462,99.38572563],[4.53649841,0.03623288,99.38648606],[4.53649797,0.03623113,99.38724602],[4.53649752,0.03622938,99.38800551],[4.53649707,0.03622764,99.38876453],[4.53649662,0.03622589,99.3895231],[4.53649618,0.03622415,99.39028123],[4.53649573,0.0362224,99.39103895],[4.53649528,0.03622065,99.39179629],[4.53649483,0.03621891,99.39255327],[4.53649439,0.03621716,99.39330991],[4.53649394,0.03621541,99.39406622],[4.53649349,0.03621367,99.39482219],[4.53649304,0.03621192,99.39557783],[4.53649259,0.03621017,99.39633312],[4.53649215,0.03620843,99.39708806],[4.5364917,0.03620668,99.39784266],[4.53649125,0.03620493,99.3985969],[4.5364908,0.03620319,99.39935079],[4.53649035,0.03620144,99.40010432],[4.53648991,0.03619969,99.40085748],[4.53648946,0.03619795,99.40161028],[4.53648901,0.0361962,99.4023627],[4.53648856,0.03619445,99.40311475],[4.53648812,0.03619271,99.40386643],[4.53648767,0.03619096,99.40461772],[4.53648722,0.03618922,99.40536862],[4.53648677,0.03618747,99.40611914],[4.53648632,0.03618572,99.40686926],[4.53648587,0.03618398,99.40761899],[4.53648543,0.03618223,99.40836832],[4.53648498,0.03618048,99.40911724],[4.53648453,0.03617874,99.40986576],[4.53648408,0.03617699,99.41061386],[4.53648363,0.03617524,99.41136156],[4.53648319,0.0361735,99.41210883],[4.53648274,0.03617175,99.41285568],[4.53648229,0.03617,99.4136021],[4.53648184,0.03616826,99.4143481],[4.53648139,0.03616651,99.41509366],[4.53648094,0.03616477,99.41583879],[4.53648049,0.03616302,99.41658347],[4.53648005,0.03616127,99.41732771],[4.5364796,0.03615953,99.41807151],[4.53647915,0.03615778,99.41881485],[4.5364787,0.03615603,99.41955774],[4.53647825,0.03615429,99.42030017],[4.5364778,0.03615254,99.42104213],[4.53647735,0.0361508,99.42178363],[4.5364769,0.03614905,99.42252466],[4.53647646,0.0361473,99.42326521],[4.53647601,0.03614556,99.42400529],[4.53647556,0.03614381,99.42474489],[4.53647511,0.03614206,99.425484],[4.53647466,0.03614032,99.42622262],[4.53647421,0.03613857,99.42696076],[4.53647376,0.03613683,99.42769839],[4.53647331,0.03613508,99.42843553],[4.53647286,0.03613333,99.42917216],[4.53647241,0.03613159,99.42990828],[4.53647196,0.03612984,99.4306439],[4.53647151,0.0361281,99.431379],[4.53647106,0.03612635,99.43211358],[4.53647061,0.0361246,99.43284764],[4.53647016,0.03612286,99.43358117],[4.53646971,0.03612111,99.43431417],[4.53646926,0.03611937,99.43504664],[4.53646881,0.03611762,99.43577858],[4.53646836,0.03611587,99.43650997],[4.53646791,0.03611413,99.43724082],[4.53646746,0.03611238,99.43797114],[4.53646701,0.03611064,99.43870094],[4.53646656,0.03610889,99.43943022],[4.53646611,0.03610714,99.44015902],[4.53646566,0.0361054,99.44088735],[4.53646521,0.03610365,99.4416152],[4.53646476,0.03610191,99.44234259],[4.53646431,0.03610016,99.44306953],[4.53646386,0.03609842,99.44379602],[4.53646341,0.03609667,99.44452205],[4.53646296,0.03609492,99.44524765],[4.53646251,0.03609318,99.44597281],[4.53646205,0.03609143,99.44669754],[4.5364616,0.03608969,99.44742184],[4.53646115,0.03608794,99.44814572],[4.5364607,0.0360862,99.44886918],[4.53646025,0.03608445,99.44959223],[4.5364598,0.0360827,99.45031488],[4.53645935,0.03608096,99.45103712],[4.5364589,0.03607921,99.45175896],[4.53645845,0.03607747,99.45248042],[4.53645799,0.03607572,99.45320148],[4.53645754,0.03607398,99.45392217],[4.53645709,0.03607223,99.45464247],[4.53645664,0.03607049,99.45536241],[4.53645619,0.03606874,99.45608198],[4.53645574,0.03606699,99.45680119],[4.53645528,0.03606525,99.45752004],[4.53645483,0.0360635,99.45823854],[4.53645438,0.03606176,99.45895669],[4.53645393,0.03606001,99.4596745],[4.53645348,0.03605827,99.46039198],[4.53645303,0.03605652,99.46110912],[4.53645258,0.03605478,99.46182594],[4.53645212,0.03605303,99.46254244],[4.53645167,0.03605128,99.46325862],[4.53645122,0.03604954,99.46397449],[4.53645077,0.03604779,99.46469005],[4.53645032,0.03604605,99.46540531],[4.53644986,0.0360443,99.46612028],[4.53644941,0.03604256,99.46683496],[4.53644896,0.03604081,99.46754935],[4.53644851,0.03603907,99.46826345],[4.53644806,0.03603732,99.46897729],[4.53644761,0.03603558,99.46969085],[4.53644715,0.03603383,99.47040415],[4.5364467,0.03603208,99.47111718],[4.53644625,0.03603034,99.47182996],[4.5364458,0.03602859,99.47254249],[4.53644535,0.03602685,99.47325477],[4.53644489,0.0360251,99.47396682],[4.53644444,0.03602336,99.47467862],[4.53644399,0.03602161,99.47539018],[4.53644354,0.03601987,99.47610151],[4.53644309,0.03601812,99.4768126],[4.53644264,0.03601638,99.47752346],[4.53644218,0.03601463,99.47823408],[4.53644173,0.03601288,99.47894448],[4.53644128,0.03601114,99.47965464],[4.53644083,0.03600939,99.48036457],[4.53644038,0.03600765,99.48107428],[4.53643992,0.0360059,99.48178376],[4.53643947,0.03600416,99.48249301],[4.53643902,0.03600241,99.48320205],[4.53643857,0.03600067,99.48391086],[4.53643812,0.03599892,99.48461945],[4.53643767,0.03599717,99.48532782],[4.53643721,0.03599543,99.48603597],[4.53643676,0.03599368,99.48674391],[4.53643631,0.03599194,99.48745163],[4.53643586,0.03599019,99.48815914],[4.53643541,0.03598845,99.48886643],[4.53643496,0.0359867,99.48957352],[4.5364345,0.03598496,99.49028039],[4.53643405,0.03598321,99.49098706],[4.5364336,0.03598147,99.49169352],[4.53643315,0.03597972,99.49239977],[4.5364327,0.03597797,99.49310582],[4.53643224,0.03597623,99.49381167],[4.53643179,0.03597448,99.49451731],[4.53643134,0.03597274,99.49522275],[4.53643089,0.03597099,99.495928],[4.53643044,0.03596925,99.49663304],[4.53642999,0.0359675,99.49733789],[4.53642953,0.03596576,99.49804255],[4.53642908,0.03596401,99.49874701],[4.53642863,0.03596226,99.49945128],[4.53642818,0.03596052,99.50015535],[4.53642773,0.03595877,99.50085924],[4.53642728,0.03595703,99.50156294],[4.53642682,0.03595528,99.50226645],[4.53642637,0.03595354,99.50296977],[4.53642592,0.03595179,99.50367291],[4.53642547,0.03595005,99.50437586],[4.53642502,0.0359483,99.50507863],[4.53642457,0.03594655,99.50578122],[4.53642412,0.03594481,99.50648362],[4.53642366,0.03594306,99.50718584],[4.53642321,0.03594132,99.50788785],[4.53642276,0.03593957,99.50858967],[4.53642231,0.03593783,99.50929129],[4.53642186,0.03593608,99.50999269],[4.53642141,0.03593434,99.51069389],[4.53642095,0.03593259,99.51139487],[4.5364205,0.03593084,99.51209563],[4.53642005,0.0359291,99.51279617],[4.5364196,0.03592735,99.51349647],[4.53641915,0.03592561,99.51419655],[4.5364187,0.03592386,99.51489639],[4.53641825,0.03592212,99.51559599],[4.53641779,0.03592037,99.51629534],[4.53641734,0.03591863,99.51699445],[4.53641689,0.03591688,99.5176933],[4.53641644,0.03591513,99.51839189],[4.53641599,0.03591339,99.51909022],[4.53641554,0.03591164,99.51978829],[4.53641509,0.0359099,99.52048608],[4.53641464,0.03590815,99.5211836],[4.53641418,0.03590641,99.52188084],[4.53641373,0.03590466,99.5225778],[4.53641328,0.03590291,99.52327447],[4.53641283,0.03590117,99.52397084],[4.53641238,0.03589942,99.52466692],[4.53641193,0.03589768,99.52536269],[4.53641148,0.03589593,99.52605814],[4.53641103,0.03589419,99.52675328],[4.53641057,0.03589244,99.52744809],[4.53641012,0.03589069,99.52814258],[4.53640967,0.03588895,99.52883672],[4.53640922,0.0358872,99.52953052],[4.53640877,0.03588546,99.53022398],[4.53640832,0.03588371,99.53091707],[4.53640787,0.03588197,99.53160981],[4.53640742,0.03588022,99.53230218],[4.53640697,0.03587848,99.53299417],[4.53640651,0.03587673,99.53368578],[4.53640606,0.03587498,99.53437701],[4.53640561,0.03587324,99.53506785],[4.53640516,0.03587149,99.53575829],[4.53640471,0.03586975,99.53644832],[4.53640426,0.035868,99.53713794],[4.53640381,0.03586626,99.53782715],[4.53640336,0.03586451,99.53851593],[4.53640291,0.03586276,99.53920428],[4.53640246,0.03586102,99.5398922],[4.53640201,0.03585927,99.54057968],[4.53640155,0.03585753,99.54126671],[4.5364011,0.03585578,99.54195328],[4.53640065,0.03585403,99.5426394],[4.5364002,0.03585229,99.54332505],[4.53639975,0.03585054,99.54401023],[4.5363993,0.0358488,99.54469493],[4.53639885,0.03584705,99.54537915],[4.5363984,0.03584531,99.54606288],[4.53639795,0.03584356,99.54674611],[4.5363975,0.03584181,99.54742883],[4.53639705,0.03584007,99.54811105],[4.53639659,0.03583832,99.54879276],[4.53639614,0.03583658,99.54947394],[4.53639569,0.03583483,99.5501546],[4.53639524,0.03583309,99.55083473],[4.53639479,0.03583134,99.55151431],[4.53639434,0.03582959,99.55219336],[4.53639389,0.03582785,99.55287185],[4.53639344,0.0358261,99.55354978],[4.53639299,0.03582436,99.55422715],[4.53639254,0.03582261,99.55490395],[4.53639209,0.03582087,99.55558018],[4.53639163,0.03581912,99.55625582],[4.53639118,0.03581737,99.55693088],[4.53639073,0.03581563,99.55760534],[4.53639028,0.03581388,99.55827921],[4.53638983,0.03581214,99.55895247],[4.53638938,0.03581039,99.55962512],[4.53638893,0.03580865,99.56029716],[4.53638848,0.0358069,99.56096859],[4.53638803,0.03580515,99.56163938],[4.53638758,0.03580341,99.56230955],[4.53638713,0.03580166,99.56297909],[4.53638668,0.03579992,99.56364798],[4.53638622,0.03579817,99.56431624],[4.53638577,0.03579643,99.56498384],[4.53638532,0.03579468,99.56565079],[4.53638487,0.03579293,99.56631708],[4.53638442,0.03579119,99.56698271],[4.53638397,0.03578944,99.56764766],[4.53638352,0.0357877,99.56831195],[4.53638307,0.03578595,99.56897555],[4.53638262,0.0357842,99.56963847],[4.53638217,0.03578246,99.5703007],[4.53638172,0.03578071,99.57096224],[4.53638126,0.03577897,99.57162308],[4.53638081,0.03577722,99.57228321],[4.53638036,0.03577548,99.57294263],[4.53637991,0.03577373,99.57360134],[4.53637946,0.03577198,99.57425933],[4.53637901,0.03577024,99.5749166],[4.53637856,0.03576849,99.57557314],[4.53637811,0.03576675,99.57622894],[4.53637766,0.035765,99.576884],[4.53637721,0.03576326,99.57753832],[4.53637676,0.03576151,99.57819189],[4.5363763,0.03575976,99.5788447],[4.53637585,0.03575802,99.57949676],[4.5363754,0.03575627,99.58014805],[4.53637495,0.03575453,99.58079857],[4.5363745,0.03575278,99.58144831],[4.53637405,0.03575104,99.58209728],[4.5363736,0.03574929,99.58274546],[4.53637315,0.03574754,99.58339286],[4.5363727,0.0357458,99.58403946],[4.53637225,0.03574405,99.58468525],[4.5363718,0.03574231,99.58533025],[4.53637134,0.03574056,99.58597443],[4.53637089,0.03573882,99.5866178],[4.53637044,0.03573707,99.58726036],[4.53636999,0.03573532,99.58790208],[4.53636954,0.03573358,99.58854298],[4.53636909,0.03573183,99.58918304],[4.53636864,0.03573009,99.58982227],[4.53636819,0.03572834,99.59046065],[4.53636774,0.0357266,99.59109818],[4.53636729,0.03572485,99.59173485],[4.53636684,0.0357231,99.59237067],[4.53636638,0.03572136,99.59300562],[4.53636593,0.03571961,99.59363971],[4.53636548,0.03571787,99.59427292],[4.53636503,0.03571612,99.59490525],[4.53636458,0.03571437,99.5955367],[4.53636413,0.03571263,99.59616725],[4.53636368,0.03571088,99.59679692],[4.53636323,0.03570914,99.59742568],[4.53636278,0.03570739,99.59805355],[4.53636233,0.03570565,99.5986805],[4.53636187,0.0357039,99.59930654],[4.53636142,0.03570215,99.59993166],[4.53636097,0.03570041,99.60055586],[4.53636052,0.03569866,99.60117912],[4.53636007,0.03569692,99.60180146],[4.53635962,0.03569517,99.60242286],[4.53635917,0.03569343,99.60304331],[4.53635872,0.03569168,99.60366282],[4.53635827,0.03568994,99.60428137],[4.53635782,0.03568819,99.60489897],[4.53635736,0.03568644,99.6055156],[4.53635691,0.0356847,99.60613127],[4.53635646,0.03568295,99.60674596],[4.53635601,0.03568121,99.60735967],[4.53635556,0.03567946,99.60797241],[4.53635511,0.03567772,99.60858415],[4.53635466,0.03567597,99.60919491],[4.53635421,0.03567422,99.60980466],[4.53635376,0.03567248,99.61041342],[4.53635331,0.03567073,99.61102116],[4.53635285,0.03566899,99.6116279],[4.5363524,0.03566724,99.61223362],[4.53635195,0.0356655,99.61283832],[4.5363515,0.03566375,99.61344199],[4.53635105,0.035662,99.61404463],[4.5363506,0.03566026,99.61464624],[4.53635015,0.03565851,99.6152468],[4.5363497,0.03565677,99.61584632],[4.53634925,0.03565502,99.61644479],[4.53634879,0.03565328,99.6170422],[4.53634834,0.03565153,99.61763855],[4.53634789,0.03564978,99.61823384],[4.53634744,0.03564804,99.61882806],[4.53634699,0.03564629,99.61942121],[4.53634654,0.03564455,99.62001329],[4.53634609,0.0356428,99.62060428],[4.53634564,0.03564106,99.6211942],[4.53634519,0.03563931,99.62178303],[4.53634473,0.03563756,99.62237076],[4.53634428,0.03563582,99.62295741],[4.53634383,0.03563407,99.62354296],[4.53634338,0.03563233,99.62412741],[4.53634293,0.03563058,99.62471076],[4.53634248,0.03562884,99.625293],[4.53634203,0.03562709,99.62587412],[4.53634158,0.03562535,99.62645414],[4.53634113,0.0356236,99.62703303],[4.53634067,0.03562185,99.62761081],[4.53634022,0.03562011,99.62818746],[4.53633977,0.03561836,99.62876298],[4.53633932,0.03561662,99.62933737],[4.53633887,0.03561487,99.62991063],[4.53633842,0.03561313,99.63048274],[4.53633797,0.03561138,99.63105371],[4.53633752,0.03560963,99.63162354],[4.53633706,0.03560789,99.63219222],[4.53633661,0.03560614,99.63275974],[4.53633616,0.0356044,99.63332611],[4.53633571,0.03560265,99.63389131],[4.53633526,0.03560091,99.63445536],[4.53633481,0.03559916,99.63501823],[4.53633436,0.03559741,99.63557994],[4.53633391,0.03559567,99.63614047],[4.53633345,0.03559392,99.63669983],[4.536333,0.03559218,99.637258],[4.53633255,0.03559043,99.63781499],[4.5363321,0.03558869,99.63837079],[4.53633165,0.03558694,99.63892539],[4.5363312,0.0355852,99.6394788],[4.53633075,0.03558345,99.64003102],[4.5363303,0.0355817,99.64058202],[4.53632984,0.03557996,99.64113182],[4.53632939,0.03557821,99.64168041],[4.53632894,0.03557647,99.64222778],[4.53632849,0.03557472,99.64277394],[4.53632804,0.03557298,99.64331887],[4.53632759,0.03557123,99.64386258],[4.53632714,0.03556948,99.64440505],[4.53632668,0.03556774,99.6449463],[4.53632623,0.03556599,99.64548632],[4.53632578,0.03556425,99.64602511],[4.53632533,0.0355625,99.64656267],[4.53632488,0.03556076,99.64709902],[4.53632443,0.03555901,99.64763414],[4.53632398,0.03555727,99.64816804],[4.53632352,0.03555552,99.64870073],[4.53632307,0.03555377,99.6492322],[4.53632262,0.03555203,99.64976245],[4.53632217,0.03555028,99.6502915],[4.53632172,0.03554854,99.65081933],[4.53632127,0.03554679,99.65134595],[4.53632082,0.03554505,99.65187137],[4.53632036,0.0355433,99.65239558],[4.53631991,0.03554156,99.65291859],[4.53631946,0.03553981,99.6534404],[4.53631901,0.03553806,99.65396101],[4.53631856,0.03553632,99.65448042],[4.53631811,0.03553457,99.65499863],[4.53631765,0.03553283,99.65551564],[4.5363172,0.03553108,99.65603146],[4.53631675,0.03552934,99.65654609],[4.5363163,0.03552759,99.65705952],[4.53631585,0.03552585,99.65757175],[4.5363154,0.0355241,99.65808279],[4.53631494,0.03552235,99.65859264],[4.53631449,0.03552061,99.6591013],[4.53631404,0.03551886,99.65960876],[4.53631359,0.03551712,99.66011504],[4.53631314,0.03551537,99.66062012],[4.53631268,0.03551363,99.66112401],[4.53631223,0.03551188,99.66162671],[4.53631178,0.03551014,99.66212822],[4.53631133,0.03550839,99.66262854],[4.53631088,0.03550664,99.66312768],[4.53631043,0.0355049,99.66362562],[4.53630997,0.03550315,99.66412238],[4.53630952,0.03550141,99.66461795],[4.53630907,0.03549966,99.66511234],[4.53630862,0.03549792,99.66560554],[4.53630816,0.03549617,99.66609755],[4.53630771,0.03549443,99.66658838],[4.53630726,0.03549268,99.66707803],[4.53630681,0.03549094,99.66756649],[4.53630636,0.03548919,99.66805377],[4.5363059,0.03548745,99.66853987],[4.53630545,0.0354857,99.66902479],[4.536305,0.03548395,99.66950852],[4.53630455,0.03548221,99.66999107],[4.53630409,0.03548046,99.67047244],[4.53630364,0.03547872,99.67095264],[4.53630319,0.03547697,99.67143165],[4.53630274,0.03547523,99.67190948],[4.53630228,0.03547348,99.67238614],[4.53630183,0.03547174,99.67286162],[4.53630138,0.03546999,99.67333592],[4.53630093,0.03546825,99.67380904],[4.53630047,0.0354665,99.67428098],[4.53630002,0.03546476,99.67475175],[4.53629957,0.03546301,99.67522135],[4.53629912,0.03546127,99.67568977],[4.53629866,0.03545952,99.67615701],[4.53629821,0.03545778,99.67662309],[4.53629776,0.03545603,99.67708798],[4.5362973,0.03545429,99.67755171],[4.53629685,0.03545254,99.67801426],[4.5362964,0.03545079,99.67847564],[4.53629595,0.03544905,99.67893584],[4.53629549,0.0354473,99.67939488],[4.53629504,0.03544556,99.67985274],[4.53629459,0.03544381,99.68030944],[4.53629413,0.03544207,99.68076496],[4.53629368,0.03544032,99.68121932],[4.53629323,0.03543858,99.6816725],[4.53629277,0.03543683,99.68212452],[4.53629232,0.03543509,99.68257537],[4.53629187,0.03543334,99.68302505],[4.53629141,0.0354316,99.68347356],[4.53629096,0.03542985,99.6839209],[4.53629051,0.03542811,99.68436708],[4.53629005,0.03542636,99.68481209],[4.5362896,0.03542462,99.68525594],[4.53628914,0.03542287,99.68569862],[4.53628869,0.03542113,99.68614013],[4.53628824,0.03541938,99.68658048],[4.53628778,0.03541764,99.68701967],[4.53628733,0.03541589,99.68745769],[4.53628687,0.03541415,99.68789454],[4.53628642,0.0354124,99.68833024],[4.53628597,0.03541066,99.68876477],[4.53628551,0.03540891,99.68919813],[4.53628506,0.03540717,99.68963034],[4.5362846,0.03540542,99.69006138],[4.53628415,0.03540368,99.69049126],[4.53628369,0.03540194,99.69091998],[4.53628324,0.03540019,99.69134754],[4.53628279,0.03539845,99.69177394],[4.53628233,0.0353967,99.69219919],[4.53628188,0.03539496,99.69262329],[4.53628142,0.03539321,99.69304625],[4.53628097,0.03539147,99.69346806],[4.53628051,0.03538972,99.69388874],[4.53628006,0.03538798,99.69430828],[4.5362796,0.03538623,99.69472668],[4.53627915,0.03538449,99.69514396],[4.53627869,0.03538274,99.69556012],[4.53627824,0.035381,99.69597515],[4.53627778,0.03537925,99.69638906],[4.53627733,0.03537751,99.69680186],[4.53627687,0.03537577,99.69721355],[4.53627641,0.03537402,99.69762413],[4.53627596,0.03537228,99.6980336],[4.5362755,0.03537053,99.69844198],[4.53627505,0.03536879,99.69884925],[4.53627459,0.03536704,99.69925543],[4.53627414,0.0353653,99.69966052],[4.53627368,0.03536355,99.70006452],[4.53627323,0.03536181,99.70046744],[4.53627277,0.03536007,99.70086928],[4.53627231,0.03535832,99.70127003],[4.53627186,0.03535658,99.70166972],[4.5362714,0.03535483,99.70206833],[4.53627095,0.03535309,99.70246587],[4.53627049,0.03535134,99.70286236],[4.53627003,0.0353496,99.70325778],[4.53626958,0.03534785,99.70365214],[4.53626912,0.03534611,99.70404545],[4.53626866,0.03534437,99.7044377],[4.53626821,0.03534262,99.70482891],[4.53626775,0.03534088,99.70521908],[4.5362673,0.03533913,99.70560821],[4.53626684,0.03533739,99.7059963],[4.53626638,0.03533564,99.70638335],[4.53626593,0.0353339,99.70676938],[4.53626547,0.03533216,99.70715437],[4.53626501,0.03533041,99.70753835],[4.53626456,0.03532867,99.7079213],[4.5362641,0.03532692,99.70830324],[4.53626364,0.03532518,99.70868416],[4.53626319,0.03532344,99.70906407],[4.53626273,0.03532169,99.70944298],[4.53626227,0.03531995,99.70982088],[4.53626182,0.0353182,99.71019779],[4.53626136,0.03531646,99.71057369],[4.5362609,0.03531471,99.71094861],[4.53626045,0.03531297,99.71132253],[4.53625999,0.03531123,99.71169547],[4.53625953,0.03530948,99.71206742],[4.53625907,0.03530774,99.7124384],[4.53625862,0.03530599,99.7128084],[4.53625816,0.03530425,99.71317742],[4.5362577,0.03530251,99.71354548],[4.53625725,0.03530076,99.71391257],[4.53625679,0.03529902,99.7142787],[4.53625633,0.03529727,99.71464387],[4.53625587,0.03529553,99.71500808],[4.53625542,0.03529379,99.71537135],[4.53625496,0.03529204,99.71573366],[4.5362545,0.0352903,99.71609503],[4.53625404,0.03528855,99.71645545],[4.53625359,0.03528681,99.71681494],[4.53625313,0.03528507,99.71717349],[4.53625267,0.03528332,99.71753111],[4.53625221,0.03528158,99.71788781],[4.53625176,0.03527983,99.71824357],[4.5362513,0.03527809,99.71859842],[4.53625084,0.03527635,99.71895235],[4.53625038,0.0352746,99.71930536],[4.53624993,0.03527286,99.71965747],[4.53624947,0.03527111,99.72000866],[4.53624901,0.03526937,99.72035895],[4.53624855,0.03526763,99.72070835],[4.53624809,0.03526588,99.72105684],[4.53624764,0.03526414,99.72140444],[4.53624718,0.0352624,99.72175115],[4.53624672,0.03526065,99.72209698],[4.53624626,0.03525891,99.72244192],[4.5362458,0.03525716,99.72278598],[4.53624535,0.03525542,99.72312916],[4.53624489,0.03525368,99.72347148],[4.53624443,0.03525193,99.72381292],[4.53624397,0.03525019,99.7241535],[4.53624351,0.03524844,99.72449321],[4.53624306,0.0352467,99.72483207],[4.5362426,0.03524496,99.72517007],[4.53624214,0.03524321,99.72550722],[4.53624168,0.03524147,99.72584352],[4.53624122,0.03523973,99.72617898],[4.53624077,0.03523798,99.72651361],[4.53624031,0.03523624,99.7268474],[4.53623985,0.03523449,99.72718037],[4.53623939,0.03523275,99.72751252],[4.53623893,0.03523101,99.72784385],[4.53623848,0.03522926,99.72817437],[4.53623802,0.03522752,99.72850408],[4.53623756,0.03522578,99.72883298],[4.5362371,0.03522403,99.72916108],[4.53623664,0.03522229,99.72948837],[4.53623618,0.03522054,99.72981486],[4.53623573,0.0352188,99.73014056],[4.53623527,0.03521706,99.73046545],[4.53623481,0.03521531,99.73078955],[4.53623435,0.03521357,99.73111286],[4.53623389,0.03521183,99.73143537],[4.53623343,0.03521008,99.7317571],[4.53623298,0.03520834,99.73207803],[4.53623252,0.03520659,99.73239819],[4.53623206,0.03520485,99.73271756],[4.5362316,0.03520311,99.73303615],[4.53623114,0.03520136,99.73335396],[4.53623068,0.03519962,99.733671],[4.53623023,0.03519788,99.73398726],[4.53622977,0.03519613,99.73430275],[4.53622931,0.03519439,99.73461747],[4.53622885,0.03519264,99.73493142],[4.53622839,0.0351909,99.73524461],[4.53622793,0.03518916,99.73555703],[4.53622748,0.03518741,99.73586869],[4.53622702,0.03518567,99.73617959],[4.53622656,0.03518393,99.73648974],[4.5362261,0.03518218,99.73679913],[4.53622564,0.03518044,99.73710776],[4.53622518,0.03517869,99.73741565],[4.53622472,0.03517695,99.73772278],[4.53622427,0.03517521,99.73802917],[4.53622381,0.03517346,99.73833482],[4.53622335,0.03517172,99.73863972],[4.53622289,0.03516998,99.73894389],[4.53622243,0.03516823,99.73924731],[4.53622197,0.03516649,99.73955],[4.53622151,0.03516475,99.73985195],[4.53622106,0.035163,99.74015318],[4.5362206,0.03516126,99.74045367],[4.53622014,0.03515951,99.74075344],[4.53621968,0.03515777,99.74105248],[4.53621922,0.03515603,99.7413508],[4.53621876,0.03515428,99.74164839],[4.5362183,0.03515254,99.74194527],[4.53621785,0.0351508,99.74224143],[4.53621739,0.03514905,99.74253688],[4.53621693,0.03514731,99.74283161],[4.53621647,0.03514557,99.74312564],[4.53621601,0.03514382,99.74341895],[4.53621555,0.03514208,99.74371156],[4.53621509,0.03514033,99.74400346],[4.53621463,0.03513859,99.74429467],[4.53621418,0.03513685,99.74458517],[4.53621372,0.0351351,99.74487497],[4.53621326,0.03513336,99.74516408],[4.5362128,0.03513162,99.7454525],[4.53621234,0.03512987,99.74574023],[4.53621188,0.03512813,99.74602726],[4.53621142,0.03512639,99.74631361],[4.53621096,0.03512464,99.74659927],[4.53621051,0.0351229,99.74688426],[4.53621005,0.03512116,99.74716856],[4.53620959,0.03511941,99.74745218],[4.53620913,0.03511767,99.74773513],[4.53620867,0.03511592,99.7480174],[4.53620821,0.03511418,99.748299],[4.53620775,0.03511244,99.74857993],[4.53620729,0.03511069,99.74886019],[4.53620683,0.03510895,99.74913978],[4.53620637,0.03510721,99.74941872],[4.53620592,0.03510546,99.74969699],[4.53620546,0.03510372,99.7499746],[4.536205,0.03510198,99.75025155],[4.53620454,0.03510023,99.75052785],[4.53620408,0.03509849,99.7508035],[4.53620362,0.03509675,99.7510785],[4.53620316,0.035095,99.75135284],[4.5362027,0.03509326,99.75162654],[4.53620224,0.03509151,99.7518996],[4.53620178,0.03508977,99.75217202],[4.53620133,0.03508803,99.75244379],[4.53620087,0.03508628,99.75271492],[4.53620041,0.03508454,99.75298542],[4.53619995,0.0350828,99.75325529],[4.53619949,0.03508105,99.75352453],[4.53619903,0.03507931,99.75379313],[4.53619857,0.03507757,99.75406111],[4.53619811,0.03507582,99.75432846],[4.53619765,0.03507408,99.75459519],[4.53619719,0.03507234,99.7548613],[4.53619673,0.03507059,99.75512679],[4.53619627,0.03506885,99.75539166],[4.53619581,0.03506711,99.75565592],[4.53619536,0.03506536,99.75591956],[4.5361949,0.03506362,99.7561826],[4.53619444,0.03506188,99.75644503],[4.53619398,0.03506013,99.75670685],[4.53619352,0.03505839,99.75696806],[4.53619306,0.03505665,99.75722868],[4.5361926,0.0350549,99.75748869],[4.53619214,0.03505316,99.75774811],[4.53619168,0.03505141,99.75800693],[4.53619122,0.03504967,99.75826516],[4.53619076,0.03504793,99.7585228],[4.5361903,0.03504618,99.75877985],[4.53618984,0.03504444,99.75903631],[4.53618938,0.0350427,99.75929219],[4.53618892,0.03504095,99.75954748],[4.53618847,0.03503921,99.75980219],[4.53618801,0.03503747,99.76005633],[4.53618755,0.03503572,99.76030988],[4.53618709,0.03503398,99.76056287],[4.53618663,0.03503224,99.76081528],[4.53618617,0.03503049,99.76106712],[4.53618571,0.03502875,99.76131839],[4.53618525,0.03502701,99.7615691],[4.53618479,0.03502526,99.76181924],[4.53618433,0.03502352,99.76206882],[4.53618387,0.03502178,99.76231785],[4.53618341,0.03502003,99.76256631],[4.53618295,0.03501829,99.76281422],[4.53618249,0.03501655,99.76306157],[4.53618203,0.0350148,99.76330838],[4.53618157,0.03501306,99.76355464],[4.53618111,0.03501132,99.76380035],[4.53618065,0.03500957,99.76404552],[4.53618019,0.03500783,99.76429015],[4.53617973,0.03500609,99.76453426],[4.53617927,0.03500434,99.76477783],[4.53617881,0.0350026,99.76502089],[4.53617835,0.03500086,99.76526343],[4.5361779,0.03499912,99.76550546],[4.53617744,0.03499737,99.76574698],[4.53617698,0.03499563,99.76598799],[4.53617652,0.03499389,99.76622849],[4.53617606,0.03499214,99.76646848],[4.5361756,0.0349904,99.76670797],[4.53617514,0.03498866,99.76694695],[4.53617468,0.03498691,99.76718543],[4.53617422,0.03498517,99.7674234],[4.53617376,0.03498343,99.76766088],[4.5361733,0.03498168,99.76789785],[4.53617284,0.03497994,99.76813432],[4.53617238,0.0349782,99.76837029],[4.53617192,0.03497645,99.76860576],[4.53617146,0.03497471,99.76884073],[4.536171,0.03497297,99.76907521],[4.53617054,0.03497122,99.76930919],[4.53617008,0.03496948,99.76954268],[4.53616962,0.03496774,99.76977568],[4.53616916,0.03496599,99.77000818],[4.5361687,0.03496425,99.77024019],[4.53616824,0.03496251,99.77047171],[4.53616778,0.03496076,99.77070274],[4.53616732,0.03495902,99.77093328],[4.53616686,0.03495728,99.77116334],[4.5361664,0.03495553,99.7713929],[4.53616594,0.03495379,99.77162198],[4.53616548,0.03495205,99.77185058],[4.53616502,0.0349503,99.77207869],[4.53616456,0.03494856,99.77230632],[4.5361641,0.03494682,99.77253347],[4.53616364,0.03494507,99.77276014],[4.53616318,0.03494333,99.77298632],[4.53616272,0.03494159,99.77321203],[4.53616226,0.03493984,99.77343726],[4.5361618,0.0349381,99.77366201],[4.53616134,0.03493636,99.77388628],[4.53616088,0.03493462,99.77411008],[4.53616042,0.03493287,99.7743334],[4.53615996,0.03493113,99.77455625],[4.5361595,0.03492939,99.77477863],[4.53615904,0.03492764,99.77500053],[4.53615858,0.0349259,99.77522197],[4.53615812,0.03492416,99.77544293],[4.53615766,0.03492241,99.77566343],[4.5361572,0.03492067,99.77588345],[4.53615674,0.03491893,99.77610301],[4.53615628,0.03491718,99.7763221],[4.53615582,0.03491544,99.77654073],[4.53615536,0.0349137,99.77675889],[4.53615489,0.03491195,99.77697658],[4.53615443,0.03491021,99.77719382],[4.53615397,0.03490847,99.77741059],[4.53615351,0.03490672,99.7776269],[4.53615305,0.03490498,99.77784275],[4.53615259,0.03490324,99.77805814],[4.53615213,0.03490149,99.77827307],[4.53615167,0.03489975,99.77848754],[4.53615121,0.03489801,99.77870156],[4.53615075,0.03489627,99.77891512],[4.53615029,0.03489452,99.77912822],[4.53614983,0.03489278,99.77934087],[4.53614937,0.03489104,99.77955307],[4.53614891,0.03488929,99.77976481],[4.53614845,0.03488755,99.7799761],[4.53614799,0.03488581,99.78018695],[4.53614753,0.03488406,99.78039734],[4.53614706,0.03488232,99.78060728],[4.5361466,0.03488058,99.78081677],[4.53614614,0.03487883,99.78102582],[4.53614568,0.03487709,99.78123441],[4.53614522,0.03487535,99.78144257],[4.53614476,0.03487361,99.78165028],[4.5361443,0.03487186,99.78185754],[4.53614384,0.03487012,99.78206436],[4.53614338,0.03486838,99.78227074],[4.53614292,0.03486663,99.78247667],[4.53614245,0.03486489,99.78268217],[4.53614199,0.03486315,99.78288722],[4.53614153,0.0348614,99.78309184],[4.53614107,0.03485966,99.78329602],[4.53614061,0.03485792,99.78349976],[4.53614015,0.03485618,99.78370306],[4.53613969,0.03485443,99.78390593],[4.53613923,0.03485269,99.78410836],[4.53613877,0.03485095,99.78431036],[4.5361383,0.0348492,99.78451192],[4.53613784,0.03484746,99.78471306],[4.53613738,0.03484572,99.78491376],[4.53613692,0.03484398,99.78511403],[4.53613646,0.03484223,99.78531387],[4.536136,0.03484049,99.78551328],[4.53613554,0.03483875,99.78571227],[4.53613507,0.034837,99.78591082],[4.53613461,0.03483526,99.78610895],[4.53613415,0.03483352,99.78630665],[4.53613369,0.03483178,99.78650393],[4.53613323,0.03483003,99.78670079],[4.53613277,0.03482829,99.78689722],[4.5361323,0.03482655,99.78709323],[4.53613184,0.0348248,99.78728882],[4.53613138,0.03482306,99.78748398],[4.53613092,0.03482132,99.78767873],[4.53613046,0.03481958,99.78787306],[4.53612999,0.03481783,99.78806697],[4.53612953,0.03481609,99.78826046],[4.53612907,0.03481435,99.78845354],[4.53612861,0.0348126,99.7886462],[4.53612815,0.03481086,99.78883845],[4.53612768,0.03480912,99.78903028],[4.53612722,0.03480738,99.7892217],[4.53612676,0.03480563,99.78941271],[4.5361263,0.03480389,99.7896033],[4.53612583,0.03480215,99.78979349],[4.53612537,0.03480041,99.78998327],[4.53612491,0.03479866,99.79017264],[4.53612445,0.03479692,99.79036159],[4.53612399,0.03479518,99.79055014],[4.53612352,0.03479344,99.79073827],[4.53612306,0.03479169,99.79092598],[4.5361226,0.03478995,99.79111326],[4.53612214,0.03478821,99.79130011],[4.53612167,0.03478646,99.79148651],[4.53612121,0.03478472,99.79167247],[4.53612075,0.03478298,99.79185798],[4.53612028,0.03478124,99.79204303],[4.53611982,0.03477949,99.79222761],[4.53611936,0.03477775,99.79241173],[4.5361189,0.03477601,99.79259537],[4.53611843,0.03477427,99.79277854],[4.53611797,0.03477252,99.79296121],[4.53611751,0.03477078,99.7931434],[4.53611704,0.03476904,99.79332509],[4.53611658,0.0347673,99.79350627],[4.53611612,0.03476555,99.79368695],[4.53611565,0.03476381,99.79386711],[4.53611519,0.03476207,99.79404676],[4.53611473,0.03476033,99.7942259],[4.53611426,0.03475859,99.79440453],[4.5361138,0.03475684,99.79458265],[4.53611333,0.0347551,99.79476027],[4.53611287,0.03475336,99.79493739],[4.53611241,0.03475162,99.795114],[4.53611194,0.03474987,99.79529011],[4.53611148,0.03474813,99.79546573],[4.53611102,0.03474639,99.79564085],[4.53611055,0.03474465,99.79581548],[4.53611009,0.0347429,99.79598962],[4.53610962,0.03474116,99.79616326],[4.53610916,0.03473942,99.79633642],[4.53610869,0.03473768,99.7965091],[4.53610823,0.03473594,99.79668129],[4.53610777,0.03473419,99.79685299],[4.5361073,0.03473245,99.79702422],[4.53610684,0.03473071,99.79719497],[4.53610637,0.03472897,99.79736524],[4.53610591,0.03472723,99.79753504],[4.53610544,0.03472548,99.79770437],[4.53610498,0.03472374,99.79787322],[4.53610451,0.034722,99.79804161],[4.53610405,0.03472026,99.79820953],[4.53610358,0.03471852,99.79837699],[4.53610312,0.03471677,99.79854398],[4.53610266,0.03471503,99.79871051],[4.53610219,0.03471329,99.79887658],[4.53610173,0.03471155,99.7990422],[4.53610126,0.03470981,99.79920736],[4.5361008,0.03470806,99.79937207],[4.53610033,0.03470632,99.79953633],[4.53609987,0.03470458,99.79970013],[4.5360994,0.03470284,99.79986349],[4.53609894,0.0347011,99.80002641],[4.53609847,0.03469935,99.80018888],[4.536098,0.03469761,99.80035091],[4.53609754,0.03469587,99.8005125],[4.53609707,0.03469413,99.80067365],[4.53609661,0.03469239,99.80083436],[4.53609614,0.03469064,99.80099464],[4.53609568,0.0346889,99.80115449],[4.53609521,0.03468716,99.80131391],[4.53609475,0.03468542,99.8014729],[4.53609428,0.03468368,99.80163146],[4.53609382,0.03468193,99.8017896],[4.53609335,0.03468019,99.80194731],[4.53609289,0.03467845,99.8021046],[4.53609242,0.03467671,99.80226148],[4.53609196,0.03467497,99.80241793],[4.53609149,0.03467323,99.80257397],[4.53609102,0.03467148,99.8027296],[4.53609056,0.03466974,99.80288481],[4.53609009,0.034668,99.80303962],[4.53608963,0.03466626,99.80319401],[4.53608916,0.03466452,99.803348],[4.5360887,0.03466277,99.80350159],[4.53608823,0.03466103,99.80365477],[4.53608777,0.03465929,99.80380755],[4.5360873,0.03465755,99.80395993],[4.53608683,0.03465581,99.80411192],[4.53608637,0.03465406,99.8042635],[4.5360859,0.03465232,99.8044147],[4.53608544,0.03465058,99.8045655],[4.53608497,0.03464884,99.80471591],[4.53608451,0.0346471,99.80486593],[4.53608404,0.03464536,99.80501557],[4.53608357,0.03464361,99.80516481],[4.53608311,0.03464187,99.80531368],[4.53608264,0.03464013,99.80546216],[4.53608218,0.03463839,99.80561027],[4.53608171,0.03463665,99.80575799],[4.53608125,0.0346349,99.80590534],[4.53608078,0.03463316,99.80605231],[4.53608031,0.03463142,99.80619891],[4.53607985,0.03462968,99.80634514],[4.53607938,0.03462794,99.806491],[4.53607892,0.0346262,99.80663649],[4.53607845,0.03462445,99.80678161],[4.53607799,0.03462271,99.80692637],[4.53607752,0.03462097,99.80707076],[4.53607706,0.03461923,99.80721479],[4.53607659,0.03461749,99.80735847],[4.53607612,0.03461574,99.80750178],[4.53607566,0.034614,99.80764473],[4.53607519,0.03461226,99.80778733],[4.53607473,0.03461052,99.80792958],[4.53607426,0.03460878,99.80807147],[4.5360738,0.03460704,99.80821302],[4.53607333,0.03460529,99.80835421],[4.53607287,0.03460355,99.80849505],[4.5360724,0.03460181,99.80863552],[4.53607193,0.03460007,99.80877563],[4.53607147,0.03459833,99.80891535],[4.536071,0.03459658,99.8090547],[4.53607054,0.03459484,99.80919366],[4.53607007,0.0345931,99.80933222],[4.53606961,0.03459136,99.80947038],[4.53606914,0.03458962,99.80960813],[4.53606868,0.03458787,99.80974547],[4.53606821,0.03458613,99.80988239],[4.53606775,0.03458439,99.81001887],[4.53606728,0.03458265,99.81015493],[4.53606682,0.03458091,99.81029054],[4.53606635,0.03457917,99.8104257],[4.53606588,0.03457742,99.81056041],[4.53606542,0.03457568,99.81069466],[4.53606495,0.03457394,99.81082845],[4.53606449,0.0345722,99.81096176],[4.53606402,0.03457046,99.81109459],[4.53606356,0.03456871,99.81122693],[4.53606309,0.03456697,99.81135878],[4.53606263,0.03456523,99.81149014],[4.53606216,0.03456349,99.81162099],[4.5360617,0.03456175,99.81175132],[4.53606123,0.03456,99.81188114],[4.53606076,0.03455826,99.81201044],[4.5360603,0.03455652,99.8121392],[4.53605983,0.03455478,99.81226743],[4.53605937,0.03455304,99.81239512],[4.5360589,0.0345513,99.81252226],[4.53605844,0.03454955,99.81264884],[4.53605797,0.03454781,99.81277486],[4.5360575,0.03454607,99.81290031],[4.53605704,0.03454433,99.81302519],[4.53605657,0.03454259,99.8131495],[4.53605611,0.03454084,99.81327321],[4.53605564,0.0345391,99.81339633],[4.53605517,0.03453736,99.81351886],[4.53605471,0.03453562,99.81364078],[4.53605424,0.03453388,99.81376209],[4.53605378,0.03453214,99.81388278],[4.53605331,0.03453039,99.81400285],[4.53605284,0.03452865,99.8141223],[4.53605238,0.03452691,99.81424111],[4.53605191,0.03452517,99.81435928],[4.53605144,0.03452343,99.8144768],[4.53605098,0.03452169,99.81459367],[4.53605051,0.03451994,99.81470989],[4.53605004,0.0345182,99.81482545],[4.53604958,0.03451646,99.81494036],[4.53604911,0.03451472,99.81505461],[4.53604864,0.03451298,99.8151682],[4.53604818,0.03451124,99.81528113],[4.53604771,0.0345095,99.8153934],[4.53604724,0.03450775,99.815505],[4.53604678,0.03450601,99.81561593],[4.53604631,0.03450427,99.8157262],[4.53604584,0.03450253,99.8158358],[4.53604537,0.03450079,99.81594473],[4.53604491,0.03449905,99.81605298],[4.53604444,0.0344973,99.81616056],[4.53604397,0.03449556,99.81626746],[4.5360435,0.03449382,99.81637369],[4.53604304,0.03449208,99.81647924],[4.53604257,0.03449034,99.8165841],[4.5360421,0.0344886,99.81668829],[4.53604163,0.03448686,99.81679179],[4.53604117,0.03448512,99.8168946],[4.5360407,0.03448337,99.81699673],[4.53604023,0.03448163,99.81709817],[4.53603976,0.03447989,99.81719893],[4.53603929,0.03447815,99.81729901],[4.53603883,0.03447641,99.81739841],[4.53603836,0.03447467,99.81749715],[4.53603789,0.03447293,99.81759521],[4.53603742,0.03447119,99.81769262],[4.53603695,0.03446945,99.81778936],[4.53603648,0.0344677,99.81788545],[4.53603602,0.03446596,99.81798088],[4.53603555,0.03446422,99.81807567],[4.53603508,0.03446248,99.81816981],[4.53603461,0.03446074,99.81826331],[4.53603414,0.034459,99.81835617],[4.53603367,0.03445726,99.8184484],[4.5360332,0.03445552,99.81854],[4.53603273,0.03445378,99.81863097],[4.53603227,0.03445203,99.81872131],[4.5360318,0.03445029,99.81881104],[4.53603133,0.03444855,99.81890015],[4.53603086,0.03444681,99.81898864],[4.53603039,0.03444507,99.81907653],[4.53602992,0.03444333,99.81916381],[4.53602945,0.03444159,99.81925049],[4.53602898,0.03443985,99.81933657],[4.53602851,0.03443811,99.81942205],[4.53602804,0.03443637,99.81950694],[4.53602758,0.03443463,99.81959125],[4.53602711,0.03443288,99.81967496],[4.53602664,0.03443114,99.8197581],[4.53602617,0.0344294,99.81984065],[4.5360257,0.03442766,99.81992263],[4.53602523,0.03442592,99.82000404],[4.53602476,0.03442418,99.82008488],[4.53602429,0.03442244,99.82016516],[4.53602382,0.0344207,99.82024487],[4.53602335,0.03441896,99.82032402],[4.53602288,0.03441722,99.82040262],[4.53602241,0.03441548,99.82048066],[4.53602194,0.03441373,99.82055816],[4.53602147,0.03441199,99.82063511],[4.536021,0.03441025,99.82071151],[4.53602054,0.03440851,99.82078738],[4.53602007,0.03440677,99.82086271],[4.5360196,0.03440503,99.82093751],[4.53601913,0.03440329,99.82101177],[4.53601866,0.03440155,99.82108551],[4.53601819,0.03439981,99.82115873],[4.53601772,0.03439807,99.82123142],[4.53601725,0.03439633,99.8213036],[4.53601678,0.03439459,99.82137526],[4.53601631,0.03439284,99.82144641],[4.53601584,0.0343911,99.82151705],[4.53601537,0.03438936,99.82158718],[4.5360149,0.03438762,99.82165681],[4.53601443,0.03438588,99.82172594],[4.53601396,0.03438414,99.82179457],[4.5360135,0.0343824,99.82186271],[4.53601303,0.03438066,99.82193036],[4.53601256,0.03437892,99.82199752],[4.53601209,0.03437718,99.82206419],[4.53601162,0.03437544,99.82213038],[4.53601115,0.03437369,99.82219609],[4.53601068,0.03437195,99.82226132],[4.53601021,0.03437021,99.82232608],[4.53600974,0.03436847,99.82239037],[4.53600927,0.03436673,99.82245419],[4.5360088,0.03436499,99.82251754],[4.53600834,0.03436325,99.82258043],[4.53600787,0.03436151,99.82264286],[4.5360074,0.03435977,99.82270483],[4.53600693,0.03435803,99.82276634],[4.53600646,0.03435628,99.82282741],[4.53600599,0.03435454,99.82288802],[4.53600552,0.0343528,99.82294819],[4.53600505,0.03435106,99.82300791],[4.53600459,0.03434932,99.82306719],[4.53600412,0.03434758,99.82312603],[4.53600365,0.03434584,99.82318443],[4.53600318,0.0343441,99.8232424],[4.53600271,0.03434236,99.82329994],[4.53600224,0.03434061,99.82335705],[4.53600177,0.03433887,99.82341373],[4.53600131,0.03433713,99.82346999],[4.53600084,0.03433539,99.82352583],[4.53600037,0.03433365,99.82358124],[4.5359999,0.03433191,99.82363625],[4.53599943,0.03433017,99.82369083],[4.53599897,0.03432843,99.82374499],[4.5359985,0.03432668,99.82379872],[4.53599803,0.03432494,99.82385203],[4.53599756,0.0343232,99.82390489],[4.53599709,0.03432146,99.82395731],[4.53599663,0.03431972,99.82400928],[4.53599616,0.03431798,99.82406081],[4.53599569,0.03431624,99.82411187],[4.53599522,0.03431449,99.82416248],[4.53599476,0.03431275,99.82421262],[4.53599429,0.03431101,99.82426228],[4.53599382,0.03430927,99.82431148],[4.53599336,0.03430753,99.82436019],[4.53599289,0.03430579,99.82440841],[4.53599242,0.03430405,99.82445615],[4.53599195,0.0343023,99.82450339],[4.53599149,0.03430056,99.82455013],[4.53599102,0.03429882,99.82459637],[4.53599055,0.03429708,99.8246421],[4.53599009,0.03429534,99.82468732],[4.53598962,0.0342936,99.82473201],[4.53598915,0.03429186,99.82477619],[4.53598869,0.03429011,99.82481984],[4.53598822,0.03428837,99.82486295],[4.53598775,0.03428663,99.82490553],[4.53598728,0.03428489,99.82494757],[4.53598682,0.03428315,99.82498906],[4.53598635,0.03428141,99.82503],[4.53598588,0.03427966,99.82507039],[4.53598542,0.03427792,99.82511022],[4.53598495,0.03427618,99.82514948],[4.53598449,0.03427444,99.82518818],[4.53598402,0.0342727,99.8252263],[4.53598355,0.03427096,99.82526384],[4.53598309,0.03426921,99.82530081],[4.53598262,0.03426747,99.82533719],[4.53598215,0.03426573,99.82537297],[4.53598169,0.03426399,99.82540816],[4.53598122,0.03426225,99.82544276],[4.53598075,0.03426051,99.82547674],[4.53598029,0.03425876,99.82551012],[4.53597982,0.03425702,99.82554289],[4.53597935,0.03425528,99.82557504],[4.53597889,0.03425354,99.82560657],[4.53597842,0.0342518,99.82563747],[4.53597796,0.03425006,99.82566774],[4.53597749,0.03424831,99.82569738],[4.53597702,0.03424657,99.82572638],[4.53597656,0.03424483,99.82575473],[4.53597609,0.03424309,99.82578244],[4.53597562,0.03424135,99.82580949],[4.53597516,0.03423961,99.82583589],[4.53597469,0.03423786,99.82586163],[4.53597422,0.03423612,99.82588671],[4.53597376,0.03423438,99.82591112],[4.53597329,0.03423264,99.82593485],[4.53597283,0.0342309,99.82595791],[4.53597236,0.03422915,99.82598028],[4.53597189,0.03422741,99.82600197],[4.53597143,0.03422567,99.82602297],[4.53597096,0.03422393,99.82604328],[4.53597049,0.03422219,99.82606288],[4.53597003,0.03422045,99.82608179],[4.53596956,0.0342187,99.82609999],[4.5359691,0.03421696,99.82611748],[4.53596863,0.03421522,99.82613425],[4.53596816,0.03421348,99.8261503],[4.5359677,0.03421174,99.82616564],[4.53596723,0.03421,99.82618024],[4.53596676,0.03420825,99.82619412],[4.5359663,0.03420651,99.82620725],[4.53596583,0.03420477,99.82621965],[4.53596536,0.03420303,99.82623131],[4.5359649,0.03420129,99.82624222],[4.53596443,0.03419955,99.82625238],[4.53596396,0.0341978,99.82626178],[4.5359635,0.03419606,99.82627041],[4.53596303,0.03419432,99.82627826],[4.53596256,0.03419258,99.82628532],[4.5359621,0.03419084,99.82629158],[4.53596163,0.0341891,99.82629702],[4.53596116,0.03418736,99.82630164],[4.5359607,0.03418561,99.82630542],[4.53596023,0.03418387,99.82630836],[4.53595976,0.03418213,99.82631043],[4.53595929,0.03418039,99.82631163],[4.53595883,0.03417865,99.82631195],[4.53595836,0.03417691,99.82631138],[4.53595789,0.03417517,99.8263099],[4.53595743,0.03417342,99.82630751],[4.53595696,0.03417168,99.82630419],[4.53595649,0.03416994,99.82629993],[4.53595602,0.0341682,99.82629473],[4.53595555,0.03416646,99.82628856],[4.53595509,0.03416472,99.82628142],[4.53595462,0.03416298,99.8262733],[4.53595415,0.03416123,99.82626419],[4.53595368,0.03415949,99.82625407],[4.53595321,0.03415775,99.82624294],[4.53595275,0.03415601,99.82623078],[4.53595228,0.03415427,99.82621758],[4.53595181,0.03415253,99.82620334],[4.53595156,0.03415162,99.82619552]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}},{"geometry":{"coordinates":[[4.53598617,0.03414221,99.91624483],[4.53598642,0.03414311,99.91629442],[4.5359869,0.03414485,99.91639067],[4.53598738,0.03414659,99.91648792],[4.53598786,0.03414833,99.91658605],[4.53598833,0.03415007,99.91668492],[4.53598881,0.03415181,99.91678439],[4.53598929,0.03415354,99.91688433],[4.53598977,0.03415528,99.91698459],[4.53599025,0.03415702,99.91708504],[4.53599073,0.03415876,99.91718554],[4.53599121,0.0341605,99.91728596],[4.53599169,0.03416223,99.91738615],[4.53599217,0.03416397,99.91748598],[4.53599265,0.03416571,99.9175853],[4.53599313,0.03416745,99.91768398],[4.53599361,0.03416919,99.91778187],[4.53599409,0.03417093,99.91787884],[4.53599457,0.03417267,99.91797474],[4.53599505,0.0341744,99.91806943],[4.53599552,0.03417614,99.91816277],[4.535996,0.03417788,99.91825462],[4.53599648,0.03417962,99.91834484],[4.53599696,0.03418136,99.91843327],[4.53599743,0.0341831,99.91851978],[4.53599791,0.03418484,99.91860422],[4.53599838,0.03418658,99.91868646],[4.53599885,0.03418832,99.91876633],[4.53599933,0.03419006,99.9188437],[4.5359998,0.0341918,99.91891842],[4.53600027,0.03419354,99.91899034],[4.53600074,0.03419528,99.9190593],[4.53600121,0.03419702,99.91912515],[4.53600168,0.03419876,99.91918773],[4.53600214,0.0342005,99.9192469],[4.53600261,0.03420225,99.91930263],[4.53600307,0.03420399,99.91935506],[4.53600354,0.03420573,99.91940432],[4.536004,0.03420747,99.91945055],[4.53600446,0.03420922,99.91949388],[4.53600492,0.03421096,99.91953445],[4.53600538,0.03421271,99.91957238],[4.53600584,0.03421445,99.91960782],[4.5360063,0.03421619,99.9196409],[4.53600675,0.03421794,99.91967177],[4.53600721,0.03421968,99.91970054],[4.53600767,0.03422143,99.91972737],[4.53600812,0.03422317,99.91975239],[4.53600858,0.03422492,99.91977574],[4.53600903,0.03422666,99.91979756],[4.53600949,0.03422841,99.91981799],[4.53600994,0.03423015,99.91983716],[4.5360104,0.0342319,99.91985523],[4.53601085,0.03423364,99.91987231],[4.5360113,0.03423539,99.91988857],[4.53601176,0.03423713,99.91990414],[4.53601221,0.03423888,99.91991916],[4.53601266,0.03424062,99.91993378],[4.53601312,0.03424237,99.91994813],[4.53601357,0.03424411,99.91996237],[4.53601402,0.03424586,99.91997663],[4.53601448,0.0342476,99.919991],[4.53601493,0.03424935,99.92000549],[4.53601539,0.0342511,99.92002012],[4.53601584,0.03425284,99.92003491],[4.5360163,0.03425459,99.92004988],[4.53601675,0.03425633,99.92006504],[4.53601721,0.03425807,99.92008042],[4.53601766,0.03425982,99.92009602],[4.53601812,0.03426156,99.92011187],[4.53601857,0.03426331,99.92012799],[4.53601903,0.03426505,99.92014439],[4.53601949,0.0342668,99.92016108],[4.53601994,0.03426854,99.9201781],[4.5360204,0.03427029,99.92019545],[4.53602086,0.03427203,99.92021316],[4.53602132,0.03427378,99.92023124],[4.53602177,0.03427552,99.92024972],[4.53602223,0.03427726,99.9202686],[4.53602269,0.03427901,99.92028791],[4.53602315,0.03428075,99.92030767],[4.53602361,0.03428249,99.92032789],[4.53602407,0.03428424,99.9203486],[4.53602453,0.03428598,99.92036981],[4.53602499,0.03428773,99.92039155],[4.53602545,0.03428947,99.92041382],[4.53602591,0.03429121,99.92043666],[4.53602637,0.03429296,99.92046007],[4.53602684,0.0342947,99.92048408],[4.5360273,0.03429644,99.92050871],[4.53602776,0.03429818,99.92053398],[4.53602822,0.03429993,99.9205599],[4.53602869,0.03430167,99.9205865],[4.53602915,0.03430341,99.9206138],[4.53602962,0.03430515,99.92064181],[4.53603008,0.0343069,99.92067055],[4.53603055,0.03430864,99.92070005],[4.53603101,0.03431038,99.92073031],[4.53603148,0.03431212,99.92076131],[4.53603195,0.03431386,99.92079299],[4.53603241,0.03431561,99.92082531],[4.53603288,0.03431735,99.92085822],[4.53603335,0.03431909,99.92089169],[4.53603382,0.03432083,99.92092565],[4.53603428,0.03432257,99.92096008],[4.53603475,0.03432431,99.92099492],[4.53603522,0.03432605,99.92103012],[4.53603569,0.03432779,99.92106564],[4.53603616,0.03432954,99.92110143],[4.53603663,0.03433128,99.92113746],[4.5360371,0.03433302,99.92117366],[4.53603757,0.03433476,99.92120999],[4.53603804,0.0343365,99.92124641],[4.53603851,0.03433824,99.92128287],[4.53603898,0.03433998,99.92131931],[4.53603945,0.03434172,99.92135571],[4.53603992,0.03434346,99.92139199],[4.5360404,0.0343452,99.92142813],[4.53604087,0.03434694,99.92146406],[4.53604134,0.03434868,99.92149974],[4.53604181,0.03435042,99.92153513],[4.53604228,0.03435216,99.92157017],[4.53604275,0.0343539,99.92160482],[4.53604322,0.03435564,99.92163902],[4.5360437,0.03435739,99.92167273],[4.53604417,0.03435913,99.9217059],[4.53604464,0.03436087,99.92173847],[4.53604511,0.03436261,99.92177041],[4.53604558,0.03436435,99.92180165],[4.53604605,0.03436609,99.92183215],[4.53604652,0.03436783,99.92186186],[4.536047,0.03436957,99.92189073],[4.53604747,0.03437131,99.92191871],[4.53604794,0.03437305,99.92194574],[4.53604841,0.03437479,99.92197181],[4.53604888,0.03437653,99.9219969],[4.53604935,0.03437827,99.92202101],[4.53604982,0.03438001,99.92204415],[4.53605029,0.03438175,99.9220663],[4.53605076,0.0343835,99.92208747],[4.53605123,0.03438524,99.92210765],[4.5360517,0.03438698,99.92212684],[4.53605217,0.03438872,99.92214504],[4.53605264,0.03439046,99.92216223],[4.53605311,0.0343922,99.92217843],[4.53605358,0.03439394,99.92219363],[4.53605404,0.03439568,99.92220782],[4.53605451,0.03439742,99.922221],[4.53605498,0.03439917,99.92223316],[4.53605545,0.03440091,99.92224431],[4.53605592,0.03440265,99.92225445],[4.53605639,0.03440439,99.92226356],[4.53605685,0.03440613,99.92227165],[4.53605732,0.03440787,99.92227871],[4.53605779,0.03440961,99.92228474],[4.53605826,0.03441136,99.92228974],[4.53605872,0.0344131,99.9222937],[4.53605919,0.03441484,99.92229662],[4.53605966,0.03441658,99.9222985],[4.53606013,0.03441832,99.92229934],[4.53606059,0.03442006,99.92229913],[4.53606106,0.03442181,99.92229786],[4.53606152,0.03442355,99.92229554],[4.53606199,0.03442529,99.92229217],[4.53606246,0.03442703,99.92228773],[4.53606292,0.03442877,99.92228224],[4.53606339,0.03443052,99.92227567],[4.53606385,0.03443226,99.92226804],[4.53606432,0.034434,99.92225933],[4.53606478,0.03443574,99.92224955],[4.53606525,0.03443748,99.9222387],[4.53606571,0.03443923,99.92222676],[4.53606618,0.03444097,99.92221374],[4.53606664,0.03444271,99.92219964],[4.53606711,0.03444445,99.92218446],[4.53606757,0.0344462,99.92216821],[4.53606804,0.03444794,99.92215087],[4.5360685,0.03444968,99.92213246],[4.53606897,0.03445142,99.92211297],[4.53606943,0.03445317,99.92209241],[4.53606989,0.03445491,99.92207076],[4.53607036,0.03445665,99.92204805],[4.53607082,0.03445839,99.92202425],[4.53607128,0.03446014,99.92199939],[4.53607175,0.03446188,99.92197345],[4.53607221,0.03446362,99.92194643],[4.53607267,0.03446537,99.92191835],[4.53607313,0.03446711,99.92188919],[4.5360736,0.03446885,99.92185896],[4.53607406,0.03447059,99.92182766],[4.53607452,0.03447234,99.9217953],[4.53607498,0.03447408,99.92176186],[4.53607545,0.03447582,99.92172735],[4.53607591,0.03447757,99.92169178],[4.53607637,0.03447931,99.92165515],[4.53607683,0.03448105,99.92161744],[4.53607729,0.0344828,99.92157868],[4.53607775,0.03448454,99.92153885],[4.53607822,0.03448628,99.92149795],[4.53607868,0.03448803,99.921456],[4.53607914,0.03448977,99.92141298],[4.5360796,0.03449151,99.9213689],[4.53608006,0.03449326,99.92132377],[4.53608052,0.034495,99.92127758],[4.53608098,0.03449674,99.92123033],[4.53608144,0.03449849,99.92118202],[4.5360819,0.03450023,99.92113266],[4.53608236,0.03450197,99.92108224],[4.53608282,0.03450372,99.92103077],[4.53608328,0.03450546,99.92097825],[4.53608374,0.0345072,99.92092468],[4.5360842,0.03450895,99.92087006],[4.53608466,0.03451069,99.92081439],[4.53608512,0.03451244,99.92075767],[4.53608558,0.03451418,99.92069991],[4.53608604,0.03451592,99.9206411],[4.5360865,0.03451767,99.92058125],[4.53608696,0.03451941,99.92052037],[4.53608742,0.03452115,99.92045846],[4.53608788,0.0345229,99.92039552],[4.53608834,0.03452464,99.92033157],[4.53608879,0.03452639,99.9202666],[4.53608925,0.03452813,99.92020063],[4.53608971,0.03452987,99.92013365],[4.53609017,0.03453162,99.92006568],[4.53609063,0.03453336,99.9199967],[4.53609109,0.03453511,99.91992671],[4.53609155,0.03453685,99.91985571],[4.536092,0.03453859,99.91978368],[4.53609246,0.03454034,99.91971061],[4.53609292,0.03454208,99.91963651],[4.53609338,0.03454383,99.91956136],[4.53609384,0.03454557,99.91948515],[4.53609429,0.03454732,99.91940788],[4.53609475,0.03454906,99.91932954],[4.53609521,0.0345508,99.91925012],[4.53609567,0.03455255,99.91916962],[4.53609613,0.03455429,99.91908803],[4.53609658,0.03455604,99.91900533],[4.53609704,0.03455778,99.91892153],[4.5360975,0.03455953,99.91883661],[4.53609795,0.03456127,99.91875057],[4.53609841,0.03456301,99.91866339],[4.53609887,0.03456476,99.91857508],[4.53609932,0.0345665,99.91848563],[4.53609978,0.03456825,99.91839502],[4.53610024,0.03456999,99.91830325],[4.53610069,0.03457174,99.91821032],[4.53610115,0.03457348,99.9181162],[4.53610161,0.03457523,99.91802091],[4.53610206,0.03457697,99.91792442],[4.53610252,0.03457872,99.91782673],[4.53610297,0.03458046,99.91772784],[4.53610343,0.03458221,99.91762774],[4.53610388,0.03458395,99.91752641],[4.53610434,0.0345857,99.91742386],[4.5361048,0.03458744,99.91732006],[4.53610525,0.03458919,99.91721503],[4.53610571,0.03459093,99.91710874],[4.53610616,0.03459268,99.91700119],[4.53610661,0.03459442,99.91689238],[4.53610707,0.03459617,99.91678229],[4.53610752,0.03459791,99.91667092],[4.53610798,0.03459966,99.91655827],[4.53610843,0.0346014,99.91644431],[4.53610889,0.03460315,99.91632907],[4.53610934,0.03460489,99.91621263],[4.53610979,0.03460664,99.9160951],[4.53611025,0.03460838,99.91597659],[4.5361107,0.03461013,99.91585722],[4.53611116,0.03461187,99.91573708],[4.53611161,0.03461362,99.91561629],[4.53611206,0.03461536,99.91549496],[4.53611252,0.03461711,99.9153732],[4.53611297,0.03461885,99.91525111],[4.53611343,0.0346206,99.91512882],[4.53611388,0.03462234,99.91500642],[4.53611434,0.03462409,99.91488404],[4.53611479,0.03462583,99.91476178],[4.53611525,0.03462758,99.91463976],[4.5361157,0.03462932,99.91451808],[4.53611616,0.03463107,99.91439685],[4.53611661,0.03463281,99.9142762],[4.53611707,0.03463456,99.91415623],[4.53611753,0.0346363,99.91403706],[4.53611799,0.03463805,99.91391879],[4.53611845,0.03463979,99.91380154],[4.53611891,0.03464153,99.91368543],[4.53611937,0.03464328,99.91357056],[4.53611983,0.03464502,99.91345706],[4.53612029,0.03464676,99.91334503],[4.53612075,0.03464851,99.91323458],[4.53612121,0.03465025,99.91312584],[4.53612168,0.03465199,99.91301887],[4.53612214,0.03465374,99.91291356],[4.53612261,0.03465548,99.91280975],[4.53612307,0.03465722,99.91270729],[4.53612354,0.03465896,99.91260603],[4.53612401,0.0346607,99.9125058],[4.53612448,0.03466244,99.91240644],[4.53612494,0.03466419,99.91230781],[4.53612541,0.03466593,99.91220973],[4.53612588,0.03466767,99.91211206],[4.53612635,0.03466941,99.91201463],[4.53612682,0.03467115,99.91191729],[4.53612729,0.03467289,99.91181987],[4.53612776,0.03467463,99.91172221],[4.53612823,0.03467637,99.91162417],[4.5361287,0.03467811,99.91152565],[4.53612917,0.03467986,99.91142662],[4.53612964,0.0346816,99.91132707],[4.53613011,0.03468334,99.91122697],[4.53613058,0.03468508,99.91112632],[4.53613105,0.03468682,99.91102508],[4.53613152,0.03468856,99.91092325],[4.536132,0.0346903,99.91082079],[4.53613247,0.03469204,99.9107177],[4.53613294,0.03469378,99.91061395],[4.53613341,0.03469552,99.91050952],[4.53613388,0.03469726,99.91040439],[4.53613435,0.034699,99.91029855],[4.53613482,0.03470074,99.91019197],[4.53613529,0.03470249,99.91008463],[4.53613576,0.03470423,99.90997652],[4.53613624,0.03470597,99.90986761],[4.53613671,0.03470771,99.90975789],[4.53613718,0.03470945,99.90964733],[4.53613765,0.03471119,99.90953592],[4.53613812,0.03471293,99.90942363],[4.53613859,0.03471467,99.90931045],[4.53613906,0.03471641,99.90919635],[4.53613954,0.03471815,99.90908132],[4.53614001,0.03471989,99.90896533],[4.53614048,0.03472163,99.90884837],[4.53614095,0.03472337,99.90873041],[4.53614142,0.03472511,99.90861144],[4.53614189,0.03472685,99.90849144],[4.53614236,0.03472859,99.90837038],[4.53614284,0.03473034,99.90824824],[4.53614331,0.03473208,99.90812502],[4.53614378,0.03473382,99.90800067],[4.53614425,0.03473556,99.90787519],[4.53614472,0.0347373,99.90774856],[4.53614519,0.03473904,99.90762075],[4.53614566,0.03474078,99.90749175],[4.53614613,0.03474252,99.90736153],[4.5361466,0.03474426,99.90723007],[4.53614707,0.034746,99.90709736],[4.53614754,0.03474774,99.90696338],[4.53614801,0.03474948,99.90682809],[4.53614848,0.03475122,99.90669149],[4.53614895,0.03475297,99.90655356],[4.53614942,0.03475471,99.90641426],[4.53614989,0.03475645,99.90627359],[4.53615036,0.03475819,99.90613153],[4.53615083,0.03475993,99.90598804],[4.5361513,0.03476167,99.90584312],[4.53615177,0.03476341,99.90569674],[4.53615224,0.03476515,99.90554888],[4.53615271,0.03476689,99.90539952],[4.53615318,0.03476864,99.90524865],[4.53615365,0.03477038,99.90509623],[4.53615412,0.03477212,99.90494226],[4.53615458,0.03477386,99.90478671],[4.53615505,0.0347756,99.90462956],[4.53615552,0.03477734,99.90447083],[4.53615599,0.03477908,99.90431051],[4.53615646,0.03478083,99.90414863],[4.53615692,0.03478257,99.90398518],[4.53615739,0.03478431,99.90382019],[4.53615786,0.03478605,99.90365366],[4.53615833,0.03478779,99.90348561],[4.53615879,0.03478954,99.90331603],[4.53615926,0.03479128,99.90314494],[4.53615973,0.03479302,99.90297235],[4.53616019,0.03479476,99.90279828],[4.53616066,0.0347965,99.90262272],[4.53616112,0.03479825,99.90244569],[4.53616159,0.03479999,99.90226721],[4.53616206,0.03480173,99.90208727],[4.53616252,0.03480347,99.9019059],[4.53616299,0.03480521,99.9017231],[4.53616345,0.03480696,99.90153889],[4.53616392,0.0348087,99.90135327],[4.53616438,0.03481044,99.90116625],[4.53616485,0.03481218,99.90097785],[4.53616531,0.03481393,99.90078808],[4.53616578,0.03481567,99.90059694],[4.53616624,0.03481741,99.90040445],[4.53616671,0.03481915,99.90021062],[4.53616717,0.0348209,99.90001546],[4.53616764,0.03482264,99.89981898],[4.5361681,0.03482438,99.89962119],[4.53616856,0.03482612,99.8994221],[4.53616903,0.03482787,99.89922173],[4.53616949,0.03482961,99.89902007],[4.53616996,0.03483135,99.89881715],[4.53617042,0.03483309,99.89861298],[4.53617088,0.03483484,99.89840755],[4.53617135,0.03483658,99.8982009],[4.53617181,0.03483832,99.89799302],[4.53617227,0.03484006,99.89778393],[4.53617274,0.03484181,99.89757364],[4.5361732,0.03484355,99.89736216],[4.53617366,0.03484529,99.89714949],[4.53617413,0.03484704,99.89693566],[4.53617459,0.03484878,99.89672067],[4.53617505,0.03485052,99.89650453],[4.53617552,0.03485226,99.89628726],[4.53617598,0.03485401,99.89606886],[4.53617644,0.03485575,99.89584934],[4.53617691,0.03485749,99.89562872],[4.53617737,0.03485924,99.895407],[4.53617783,0.03486098,99.89518421],[4.53617829,0.03486272,99.89496034],[4.53617876,0.03486447,99.8947354],[4.53617922,0.03486621,99.89450942],[4.53617968,0.03486795,99.8942824],[4.53618014,0.03486969,99.89405435],[4.53618061,0.03487144,99.89382528],[4.53618107,0.03487318,99.8935952],[4.53618153,0.03487492,99.89336412],[4.53618199,0.03487667,99.89313206],[4.53618246,0.03487841,99.892899],[4.53618292,0.03488015,99.89266496],[4.53618338,0.0348819,99.89242994],[4.53618384,0.03488364,99.89219393],[4.53618431,0.03488538,99.89195693],[4.53618477,0.03488713,99.89171896],[4.53618523,0.03488887,99.89148002],[4.53618569,0.03489061,99.89124009],[4.53618616,0.03489235,99.89099919],[4.53618662,0.0348941,99.89075732],[4.53618708,0.03489584,99.89051448],[4.53618754,0.03489758,99.89027068],[4.536188,0.03489933,99.8900259],[4.53618847,0.03490107,99.88978017],[4.53618893,0.03490281,99.88953346],[4.53618939,0.03490456,99.8892858],[4.53618985,0.0349063,99.88903718],[4.53619031,0.03490804,99.88878761],[4.53619078,0.03490979,99.88853708],[4.53619124,0.03491153,99.88828559],[4.5361917,0.03491327,99.88803316],[4.53619216,0.03491502,99.88777977],[4.53619262,0.03491676,99.88752544],[4.53619309,0.0349185,99.88727016],[4.53619355,0.03492025,99.88701394],[4.53619401,0.03492199,99.88675678],[4.53619447,0.03492373,99.88649867],[4.53619493,0.03492548,99.88623963],[4.5361954,0.03492722,99.88597966],[4.53619586,0.03492896,99.88571875],[4.53619632,0.03493071,99.8854569],[4.53619678,0.03493245,99.88519413],[4.53619724,0.03493419,99.88493043],[4.53619771,0.03493594,99.8846658],[4.53619817,0.03493768,99.88440024],[4.53619863,0.03493942,99.88413377],[4.53619909,0.03494117,99.88386637],[4.53619955,0.03494291,99.88359805],[4.53620001,0.03494465,99.88332882],[4.53620047,0.0349464,99.88305867],[4.53620094,0.03494814,99.8827876],[4.5362014,0.03494988,99.88251563],[4.53620186,0.03495163,99.88224275],[4.53620232,0.03495337,99.88196895],[4.53620278,0.03495511,99.88169426],[4.53620324,0.03495686,99.88141865],[4.53620371,0.0349586,99.88114215],[4.53620417,0.03496034,99.88086474],[4.53620463,0.03496209,99.88058644],[4.53620509,0.03496383,99.88030724],[4.53620555,0.03496557,99.88002715],[4.53620601,0.03496732,99.87974616],[4.53620647,0.03496906,99.87946428],[4.53620693,0.0349708,99.87918151],[4.5362074,0.03497255,99.87889786],[4.53620786,0.03497429,99.87861332],[4.53620832,0.03497603,99.87832789],[4.53620878,0.03497778,99.87804159],[4.53620924,0.03497952,99.87775441],[4.5362097,0.03498126,99.87746634],[4.53621016,0.03498301,99.8771774],[4.53621062,0.03498475,99.87688759],[4.53621108,0.03498649,99.87659691],[4.53621155,0.03498824,99.87630535],[4.53621201,0.03498998,99.87601293],[4.53621247,0.03499172,99.87571964],[4.53621293,0.03499346,99.87542548],[4.53621339,0.03499521,99.87513047],[4.53621385,0.03499695,99.87483459],[4.53621431,0.03499869,99.87453785],[4.53621477,0.03500044,99.87424026],[4.53621523,0.03500218,99.87394181],[4.53621569,0.03500393,99.8736425],[4.53621615,0.03500567,99.87334235],[4.53621661,0.03500741,99.87304134],[4.53621708,0.03500916,99.8727395],[4.53621754,0.0350109,99.87243681],[4.536218,0.03501264,99.87213328],[4.53621846,0.03501439,99.87182893],[4.53621892,0.03501613,99.87152375],[4.53621938,0.03501787,99.87121775],[4.53621984,0.03501962,99.87091093],[4.5362203,0.03502136,99.8706033],[4.53622076,0.03502311,99.87029486],[4.53622122,0.03502485,99.86998561],[4.53622168,0.03502659,99.86967557],[4.53622214,0.03502834,99.86936472],[4.5362226,0.03503008,99.86905308],[4.53622306,0.03503182,99.86874065],[4.53622352,0.03503357,99.86842743],[4.53622399,0.03503531,99.86811343],[4.53622445,0.03503705,99.86779864],[4.53622491,0.0350388,99.86748307],[4.53622537,0.03504054,99.86716672],[4.53622583,0.03504229,99.8668496],[4.53622629,0.03504403,99.8665317],[4.53622675,0.03504577,99.86621304],[4.53622721,0.03504752,99.86589361],[4.53622767,0.03504926,99.86557342],[4.53622813,0.035051,99.86525246],[4.53622859,0.03505275,99.86493075],[4.53622905,0.03505449,99.86460828],[4.53622951,0.03505623,99.86428507],[4.53622997,0.03505798,99.8639611],[4.53623043,0.03505972,99.86363638],[4.53623089,0.03506147,99.86331093],[4.53623135,0.03506321,99.86298473],[4.53623181,0.03506495,99.86265779],[4.53623227,0.0350667,99.86233012],[4.53623273,0.03506844,99.86200172],[4.53623319,0.03507018,99.86167259],[4.53623366,0.03507193,99.86134273],[4.53623412,0.03507367,99.86101215],[4.53623458,0.03507541,99.86068084],[4.53623504,0.03507716,99.86034882],[4.5362355,0.0350789,99.86001608],[4.53623596,0.03508065,99.85968264],[4.53623642,0.03508239,99.85934848],[4.53623688,0.03508413,99.85901361],[4.53623734,0.03508588,99.85867804],[4.5362378,0.03508762,99.85834177],[4.53623826,0.03508936,99.8580048],[4.53623872,0.03509111,99.85766714],[4.53623918,0.03509285,99.85732878],[4.53623964,0.03509459,99.85698973],[4.5362401,0.03509634,99.85665],[4.53624056,0.03509808,99.85630958],[4.53624102,0.03509983,99.85596848],[4.53624148,0.03510157,99.8556267],[4.53624194,0.03510331,99.85528424],[4.5362424,0.03510506,99.85494111],[4.53624286,0.0351068,99.85459731],[4.53624332,0.03510854,99.85425285],[4.53624379,0.03511029,99.85390771],[4.53624425,0.03511203,99.85356192],[4.53624471,0.03511377,99.85321546],[4.53624517,0.03511552,99.85286835],[4.53624563,0.03511726,99.85252058],[4.53624609,0.03511901,99.85217217],[4.53624655,0.03512075,99.8518231],[4.53624701,0.03512249,99.85147339],[4.53624747,0.03512424,99.85112303],[4.53624793,0.03512598,99.85077204],[4.53624839,0.03512772,99.8504204],[4.53624885,0.03512947,99.85006813],[4.53624931,0.03513121,99.84971523],[4.53624977,0.03513295,99.8493617],[4.53625023,0.0351347,99.84900754],[4.53625069,0.03513644,99.84865276],[4.53625115,0.03513819,99.84829736],[4.53625162,0.03513993,99.84794134],[4.53625208,0.03514167,99.8475847],[4.53625254,0.03514342,99.84722745],[4.536253,0.03514516,99.84686959],[4.53625346,0.0351469,99.84651112],[4.53625392,0.03514865,99.84615205],[4.53625438,0.03515039,99.84579237],[4.53625484,0.03515213,99.8454321],[4.5362553,0.03515388,99.84507122],[4.53625576,0.03515562,99.84470976],[4.53625622,0.03515736,99.8443477],[4.53625668,0.03515911,99.84398505],[4.53625714,0.03516085,99.84362182],[4.53625761,0.0351626,99.843258],[4.53625807,0.03516434,99.8428936],[4.53625853,0.03516608,99.84252862],[4.53625899,0.03516783,99.84216305],[4.53625945,0.03516957,99.8417969],[4.53625991,0.03517131,99.84143016],[4.53626037,0.03517306,99.84106283],[4.53626083,0.0351748,99.8406949],[4.53626129,0.03517654,99.84032638],[4.53626175,0.03517829,99.83995727],[4.53626222,0.03518003,99.83958755],[4.53626268,0.03518177,99.83921724],[4.53626314,0.03518352,99.83884632],[4.5362636,0.03518526,99.8384748],[4.53626406,0.035187,99.83810267],[4.53626452,0.03518875,99.83772994],[4.53626498,0.03519049,99.83735659],[4.53626544,0.03519223,99.83698264],[4.5362659,0.03519398,99.83660807],[4.53626637,0.03519572,99.83623288],[4.53626683,0.03519746,99.83585708],[4.53626729,0.03519921,99.83548066],[4.53626775,0.03520095,99.83510362],[4.53626821,0.0352027,99.83472596],[4.53626867,0.03520444,99.83434767],[4.53626913,0.03520618,99.83396876],[4.53626959,0.03520793,99.83358921],[4.53627005,0.03520967,99.83320904],[4.53627052,0.03521141,99.83282824],[4.53627098,0.03521316,99.83244681],[4.53627144,0.0352149,99.83206474],[4.5362719,0.03521664,99.83168204],[4.53627236,0.03521839,99.83129869],[4.53627282,0.03522013,99.83091471],[4.53627328,0.03522187,99.83053009],[4.53627374,0.03522362,99.83014482],[4.5362742,0.03522536,99.82975891],[4.53627466,0.0352271,99.82937235],[4.53627512,0.03522885,99.82898513],[4.53627559,0.03523059,99.82859726],[4.53627605,0.03523233,99.82820872],[4.53627651,0.03523408,99.82781951],[4.53627697,0.03523582,99.82742963],[4.53627743,0.03523756,99.82703906],[4.53627789,0.03523931,99.82664781],[4.53627835,0.03524105,99.82625587],[4.53627881,0.0352428,99.82586323],[4.53627927,0.03524454,99.82546989],[4.53627973,0.03524628,99.82507585],[4.53628019,0.03524803,99.82468109],[4.53628065,0.03524977,99.82428562],[4.53628111,0.03525151,99.82388943],[4.53628157,0.03525326,99.82349251],[4.53628203,0.035255,99.82309486],[4.53628249,0.03525674,99.82269647],[4.53628295,0.03525849,99.82229734],[4.53628341,0.03526023,99.82189747],[4.53628387,0.03526198,99.82149684],[4.53628433,0.03526372,99.82109546],[4.53628479,0.03526546,99.82069331],[4.53628525,0.03526721,99.8202904],[4.53628571,0.03526895,99.81988672],[4.53628617,0.03527069,99.81948227],[4.53628663,0.03527244,99.81907703],[4.53628709,0.03527418,99.81867101],[4.53628755,0.03527593,99.8182642],[4.53628801,0.03527767,99.81785659],[4.53628847,0.03527941,99.81744818],[4.53628893,0.03528116,99.81703897],[4.53628939,0.0352829,99.81662894],[4.53628985,0.03528465,99.81621811],[4.53629031,0.03528639,99.81580645],[4.53629076,0.03528813,99.81539397],[4.53629122,0.03528988,99.81498066],[4.53629168,0.03529162,99.81456652],[4.53629214,0.03529337,99.81415154],[4.5362926,0.03529511,99.81373571],[4.53629306,0.03529686,99.81331904],[4.53629351,0.0352986,99.81290152],[4.53629397,0.03530034,99.81248314],[4.53629443,0.03530209,99.81206389],[4.53629489,0.03530383,99.81164378],[4.53629534,0.03530558,99.8112228],[4.5362958,0.03530732,99.81080095],[4.53629626,0.03530907,99.81037821],[4.53629672,0.03531081,99.80995459],[4.53629717,0.03531256,99.80953008],[4.53629763,0.0353143,99.80910467],[4.53629809,0.03531604,99.80867837],[4.53629854,0.03531779,99.80825116],[4.536299,0.03531953,99.80782307],[4.53629946,0.03532128,99.8073941],[4.53629991,0.03532302,99.80696426],[4.53630037,0.03532477,99.80653356],[4.53630082,0.03532651,99.806102],[4.53630128,0.03532826,99.8056696],[4.53630174,0.03533,99.80523636],[4.53630219,0.03533175,99.80480229],[4.53630265,0.03533349,99.8043674],[4.5363031,0.03533524,99.8039317],[4.53630356,0.03533698,99.80349519],[4.53630401,0.03533873,99.80305789],[4.53630447,0.03534047,99.80261981],[4.53630492,0.03534222,99.80218095],[4.53630538,0.03534396,99.80174131],[4.53630583,0.03534571,99.80130092],[4.53630629,0.03534745,99.80085977],[4.53630674,0.0353492,99.80041788],[4.53630719,0.03535094,99.79997526],[4.53630765,0.03535269,99.7995319],[4.5363081,0.03535443,99.79908783],[4.53630856,0.03535618,99.79864304],[4.53630901,0.03535792,99.79819755],[4.53630946,0.03535967,99.79775137],[4.53630992,0.03536142,99.7973045],[4.53631037,0.03536316,99.79685695],[4.53631083,0.03536491,99.79640873],[4.53631128,0.03536665,99.79595985],[4.53631173,0.0353684,99.79551031],[4.53631219,0.03537014,99.79506013],[4.53631264,0.03537189,99.79460931],[4.53631309,0.03537363,99.79415786],[4.53631355,0.03537538,99.79370579],[4.536314,0.03537712,99.79325311],[4.53631445,0.03537887,99.79279982],[4.5363149,0.03538062,99.79234593],[4.53631536,0.03538236,99.79189146],[4.53631581,0.03538411,99.7914364],[4.53631626,0.03538585,99.79098077],[4.53631672,0.0353876,99.79052457],[4.53631717,0.03538934,99.79006782],[4.53631762,0.03539109,99.78961051],[4.53631807,0.03539284,99.78915267],[4.53631853,0.03539458,99.78869429],[4.53631898,0.03539633,99.78823539],[4.53631943,0.03539807,99.78777597],[4.53631988,0.03539982,99.78731606],[4.53632034,0.03540156,99.78685565],[4.53632079,0.03540331,99.78639476],[4.53632124,0.03540506,99.7859334],[4.53632169,0.0354068,99.78547158],[4.53632215,0.03540855,99.78500932],[4.5363226,0.03541029,99.78454662],[4.53632305,0.03541204,99.78408349],[4.5363235,0.03541378,99.78361995],[4.53632395,0.03541553,99.78315601],[4.53632441,0.03541728,99.78269167],[4.53632486,0.03541902,99.78222695],[4.53632531,0.03542077,99.78176187],[4.53632576,0.03542251,99.78129642],[4.53632622,0.03542426,99.78083062],[4.53632667,0.035426,99.78036449],[4.53632712,0.03542775,99.77989803],[4.53632757,0.0354295,99.77943125],[4.53632803,0.03543124,99.77896417],[4.53632848,0.03543299,99.7784968],[4.53632893,0.03543473,99.77802914],[4.53632938,0.03543648,99.77756121],[4.53632984,0.03543822,99.77709302],[4.53633029,0.03543997,99.77662458],[4.53633074,0.03544172,99.7761559],[4.53633119,0.03544346,99.77568699],[4.53633165,0.03544521,99.77521786],[4.5363321,0.03544695,99.77474853],[4.53633255,0.0354487,99.77427901],[4.536333,0.03545044,99.7738093],[4.53633346,0.03545219,99.77333941],[4.53633391,0.03545393,99.77286936],[4.53633436,0.03545568,99.77239917],[4.53633482,0.03545743,99.77192883],[4.53633527,0.03545917,99.77145836],[4.53633572,0.03546092,99.77098777],[4.53633618,0.03546266,99.77051708],[4.53633663,0.03546441,99.77004629],[4.53633708,0.03546615,99.76957541],[4.53633754,0.0354679,99.76910444],[4.53633799,0.03546964,99.7686334],[4.53633845,0.03547139,99.76816227],[4.5363389,0.03547313,99.76769108],[4.53633935,0.03547488,99.76721981],[4.53633981,0.03547662,99.76674848],[4.53634026,0.03547837,99.76627708],[4.53634072,0.03548012,99.76580563],[4.53634117,0.03548186,99.76533412],[4.53634163,0.03548361,99.76486257],[4.53634208,0.03548535,99.76439096],[4.53634253,0.0354871,99.76391931],[4.53634299,0.03548884,99.76344763],[4.53634344,0.03549059,99.76297591],[4.5363439,0.03549233,99.76250416],[4.53634435,0.03549408,99.76203238],[4.53634481,0.03549582,99.76156058],[4.53634527,0.03549757,99.76108876],[4.53634572,0.03549931,99.76061692],[4.53634618,0.03550106,99.76014508],[4.53634663,0.0355028,99.75967323],[4.53634709,0.03550455,99.75920138],[4.53634754,0.03550629,99.75872953],[4.536348,0.03550803,99.75825768],[4.53634846,0.03550978,99.75778585],[4.53634891,0.03551152,99.75731402],[4.53634937,0.03551327,99.75684222],[4.53634983,0.03551501,99.75637044],[4.53635028,0.03551676,99.75589869],[4.53635074,0.0355185,99.75542697],[4.5363512,0.03552025,99.75495529],[4.53635165,0.03552199,99.75448364],[4.53635211,0.03552374,99.75401204],[4.53635257,0.03552548,99.75354049],[4.53635302,0.03552722,99.75306899],[4.53635348,0.03552897,99.75259755],[4.53635394,0.03553071,99.75212612],[4.5363544,0.03553246,99.75165467],[4.53635485,0.0355342,99.75118317],[4.53635531,0.03553595,99.75071157],[4.53635577,0.03553769,99.75023984],[4.53635623,0.03553944,99.74976794],[4.53635669,0.03554118,99.74929583],[4.53635714,0.03554292,99.74882348],[4.5363576,0.03554467,99.74835083],[4.53635806,0.03554641,99.74787787],[4.53635852,0.03554816,99.74740454],[4.53635897,0.0355499,99.7469308],[4.53635943,0.03555164,99.74645663],[4.53635989,0.03555339,99.74598198],[4.53636035,0.03555513,99.74550682],[4.5363608,0.03555688,99.74503109],[4.53636126,0.03555862,99.74455477],[4.53636172,0.03556037,99.74407782],[4.53636218,0.03556211,99.74360019],[4.53636263,0.03556386,99.74312185],[4.53636309,0.0355656,99.74264275],[4.53636355,0.03556735,99.74216284],[4.536364,0.03556909,99.74168208],[4.53636446,0.03557083,99.74120041],[4.53636491,0.03557258,99.7407178],[4.53636537,0.03557432,99.74023419],[4.53636582,0.03557607,99.73974955],[4.53636628,0.03557781,99.73926381],[4.53636673,0.03557956,99.73877695],[4.53636719,0.0355813,99.7382889],[4.53636764,0.03558305,99.73779962],[4.5363681,0.03558479,99.73730906],[4.53636855,0.03558654,99.73681717],[4.536369,0.03558829,99.73632392],[4.53636946,0.03559003,99.73582924],[4.53636991,0.03559178,99.73533309],[4.53637036,0.03559352,99.73483542],[4.53637081,0.03559527,99.73433619],[4.53637126,0.03559701,99.73383535],[4.53637171,0.03559876,99.73333293],[4.53637216,0.03560051,99.73282897],[4.53637261,0.03560225,99.7323235],[4.53637306,0.035604,99.73181656],[4.53637351,0.03560575,99.73130818],[4.53637396,0.03560749,99.73079841],[4.53637441,0.03560924,99.73028727],[4.53637486,0.03561099,99.72977481],[4.5363753,0.03561273,99.72926105],[4.53637575,0.03561448,99.72874605],[4.5363762,0.03561623,99.72822984],[4.53637665,0.03561797,99.72771244],[4.53637709,0.03561972,99.72719391],[4.53637754,0.03562147,99.72667428],[4.53637799,0.03562322,99.72615358],[4.53637843,0.03562496,99.72563185],[4.53637888,0.03562671,99.72510913],[4.53637932,0.03562846,99.72458546],[4.53637977,0.03563021,99.72406088],[4.53638022,0.03563195,99.72353542],[4.53638066,0.0356337,99.72300913],[4.53638111,0.03563545,99.72248204],[4.53638155,0.0356372,99.72195418],[4.536382,0.03563894,99.72142561],[4.53638244,0.03564069,99.72089635],[4.53638289,0.03564244,99.72036645],[4.53638333,0.03564419,99.71983594],[4.53638378,0.03564593,99.71930487],[4.53638422,0.03564768,99.71877328],[4.53638467,0.03564943,99.7182412],[4.53638511,0.03565118,99.71770868],[4.53638556,0.03565292,99.71717575],[4.536386,0.03565467,99.71664247],[4.53638645,0.03565642,99.71610887],[4.53638689,0.03565817,99.71557498],[4.53638734,0.03565991,99.71504082],[4.53638779,0.03566166,99.71450637],[4.53638823,0.03566341,99.71397165],[4.53638868,0.03566516,99.71343665],[4.53638912,0.0356669,99.71290136],[4.53638957,0.03566865,99.71236579],[4.53639001,0.0356704,99.71182994],[4.53639046,0.03567215,99.7112938],[4.53639091,0.03567389,99.71075737],[4.53639135,0.03567564,99.71022066],[4.5363918,0.03567739,99.70968366],[4.53639225,0.03567913,99.70914638],[4.53639269,0.03568088,99.7086088],[4.53639314,0.03568263,99.70807094],[4.53639359,0.03568438,99.70753278],[4.53639403,0.03568612,99.70699434],[4.53639448,0.03568787,99.7064556],[4.53639493,0.03568962,99.70591657],[4.53639538,0.03569136,99.70537725],[4.53639582,0.03569311,99.70483763],[4.53639627,0.03569486,99.70429772],[4.53639672,0.0356966,99.70375751],[4.53639717,0.03569835,99.70321701],[4.53639762,0.0357001,99.70267622],[4.53639806,0.03570184,99.70213512],[4.53639851,0.03570359,99.70159373],[4.53639896,0.03570534,99.70105204],[4.53639941,0.03570708,99.70051006],[4.53639986,0.03570883,99.69996777],[4.53640031,0.03571058,99.69942519],[4.53640075,0.03571232,99.69888231],[4.5364012,0.03571407,99.69833913],[4.53640165,0.03571582,99.69779564],[4.5364021,0.03571756,99.69725186],[4.53640255,0.03571931,99.69670778],[4.536403,0.03572106,99.69616339],[4.53640345,0.0357228,99.69561871],[4.5364039,0.03572455,99.69507372],[4.53640435,0.0357263,99.69452843],[4.5364048,0.03572804,99.69398284],[4.53640525,0.03572979,99.69343695],[4.5364057,0.03573154,99.69289075],[4.53640615,0.03573328,99.69234425],[4.5364066,0.03573503,99.69179745],[4.53640705,0.03573677,99.69125034],[4.5364075,0.03573852,99.69070293],[4.53640795,0.03574027,99.69015522],[4.5364084,0.03574201,99.6896072],[4.53640885,0.03574376,99.68905888],[4.5364093,0.0357455,99.68851026],[4.53640976,0.03574725,99.68796133],[4.53641021,0.035749,99.6874121],[4.53641066,0.03575074,99.68686256],[4.53641111,0.03575249,99.68631272],[4.53641156,0.03575423,99.68576257],[4.53641201,0.03575598,99.68521212],[4.53641247,0.03575773,99.68466136],[4.53641292,0.03575947,99.6841103],[4.53641337,0.03576122,99.68355893],[4.53641382,0.03576296,99.68300726],[4.53641428,0.03576471,99.68245529],[4.53641473,0.03576645,99.681903],[4.53641518,0.0357682,99.68135042],[4.53641564,0.03576994,99.68079753],[4.53641609,0.03577169,99.68024432],[4.53641654,0.03577344,99.6796908],[4.536417,0.03577518,99.67913693],[4.53641745,0.03577693,99.67858272],[4.5364179,0.03577867,99.67802814],[4.53641836,0.03578042,99.67747319],[4.53641881,0.03578216,99.67691785],[4.53641927,0.03578391,99.67636211],[4.53641972,0.03578565,99.67580595],[4.53642017,0.0357874,99.67524937],[4.53642063,0.03578914,99.67469234],[4.53642108,0.03579089,99.67413486],[4.53642154,0.03579263,99.67357692],[4.53642199,0.03579438,99.67301849],[4.53642245,0.03579612,99.67245957],[4.5364229,0.03579787,99.67190014],[4.53642336,0.03579961,99.6713402],[4.53642381,0.03580136,99.67077971],[4.53642427,0.0358031,99.67021869],[4.53642472,0.03580485,99.6696571],[4.53642518,0.03580659,99.66909493],[4.53642564,0.03580834,99.66853218],[4.53642609,0.03581008,99.66796882],[4.53642655,0.03581183,99.66740485],[4.536427,0.03581357,99.66684025],[4.53642746,0.03581532,99.66627501],[4.53642791,0.03581706,99.66570911],[4.53642837,0.03581881,99.66514254],[4.53642883,0.03582055,99.66457528],[4.53642928,0.0358223,99.66400733],[4.53642974,0.03582404,99.66343866],[4.53643019,0.03582579,99.66286927],[4.53643065,0.03582753,99.66229913],[4.53643111,0.03582927,99.66172824],[4.53643156,0.03583102,99.66115658],[4.53643202,0.03583276,99.66058414],[4.53643247,0.03583451,99.6600109],[4.53643293,0.03583625,99.65943685],[4.53643339,0.035838,99.65886197],[4.53643384,0.03583974,99.65828625],[4.5364343,0.03584149,99.65770968],[4.53643476,0.03584323,99.65713223],[4.53643521,0.03584498,99.6565539],[4.53643567,0.03584672,99.65597468],[4.53643612,0.03584847,99.65539454],[4.53643658,0.03585021,99.65481347],[4.53643704,0.03585196,99.65423145],[4.53643749,0.0358537,99.65364848],[4.53643795,0.03585544,99.65306454],[4.53643841,0.03585719,99.65247961],[4.53643886,0.03585893,99.65189368],[4.53643932,0.03586068,99.65130674],[4.53643977,0.03586242,99.65071876],[4.53644023,0.03586417,99.65012973],[4.53644069,0.03586591,99.64953965],[4.53644114,0.03586766,99.64894848],[4.5364416,0.0358694,99.64835623],[4.53644206,0.03587115,99.64776287],[4.53644251,0.03587289,99.64716838],[4.53644297,0.03587464,99.64657276],[4.53644342,0.03587638,99.64597599],[4.53644388,0.03587813,99.64537805],[4.53644433,0.03587987,99.64477893],[4.53644479,0.03588162,99.64417861],[4.53644525,0.03588336,99.64357707],[4.5364457,0.03588511,99.64297431],[4.53644616,0.03588685,99.64237031],[4.53644661,0.0358886,99.64176504],[4.53644707,0.03589034,99.6411585],[4.53644752,0.03589209,99.64055068],[4.53644798,0.03589383,99.63994158],[4.53644843,0.03589558,99.63933121],[4.53644889,0.03589732,99.63871955],[4.53644934,0.03589907,99.63810662],[4.5364498,0.03590081,99.63749241],[4.53645025,0.03590256,99.63687693],[4.53645071,0.0359043,99.63626017],[4.53645116,0.03590605,99.63564214],[4.53645162,0.03590779,99.63502283],[4.53645207,0.03590954,99.63440224],[4.53645252,0.03591128,99.63378038],[4.53645298,0.03591303,99.63315724],[4.53645343,0.03591477,99.63253282],[4.53645389,0.03591652,99.63190713],[4.53645434,0.03591826,99.63128017],[4.5364548,0.03592001,99.63065192],[4.53645525,0.03592175,99.63002241],[4.5364557,0.0359235,99.62939161],[4.53645616,0.03592524,99.62875954],[4.53645661,0.03592699,99.6281262],[4.53645706,0.03592873,99.62749158],[4.53645752,0.03593048,99.62685568],[4.53645797,0.03593222,99.62621851],[4.53645843,0.03593397,99.62558007],[4.53645888,0.03593572,99.62494035],[4.53645933,0.03593746,99.62429935],[4.53645979,0.03593921,99.62365709],[4.53646024,0.03594095,99.62301354],[4.53646069,0.0359427,99.62236873],[4.53646115,0.03594444,99.62172266],[4.5364616,0.03594619,99.62107534],[4.53646205,0.03594793,99.62042676],[4.53646251,0.03594968,99.61977695],[4.53646296,0.03595142,99.6191259],[4.53646341,0.03595317,99.61847362],[4.53646387,0.03595492,99.61782012],[4.53646432,0.03595666,99.61716541],[4.53646477,0.03595841,99.61650949],[4.53646523,0.03596015,99.61585237],[4.53646568,0.0359619,99.61519406],[4.53646613,0.03596364,99.61453456],[4.53646658,0.03596539,99.61387388],[4.53646704,0.03596713,99.61321202],[4.53646749,0.03596888,99.61254901],[4.53646794,0.03597063,99.61188483],[4.5364684,0.03597237,99.6112195],[4.53646885,0.03597412,99.61055303],[4.5364693,0.03597586,99.60988541],[4.53646976,0.03597761,99.60921667],[4.53647021,0.03597935,99.6085468],[4.53647066,0.0359811,99.60787582],[4.53647111,0.03598284,99.60720372],[4.53647157,0.03598459,99.60653053],[4.53647202,0.03598634,99.60585623],[4.53647247,0.03598808,99.60518085],[4.53647292,0.03598983,99.60450438],[4.53647338,0.03599157,99.60382684],[4.53647383,0.03599332,99.60314823],[4.53647428,0.03599506,99.60246856],[4.53647474,0.03599681,99.60178783],[4.53647519,0.03599856,99.60110606],[4.53647564,0.0360003,99.60042324],[4.53647609,0.03600205,99.5997394],[4.53647655,0.03600379,99.59905452],[4.536477,0.03600554,99.59836863],[4.53647745,0.03600728,99.59768172],[4.53647791,0.03600903,99.59699381],[4.53647836,0.03601077,99.5963049],[4.53647881,0.03601252,99.595615],[4.53647926,0.03601427,99.59492412],[4.53647972,0.03601601,99.59423226],[4.53648017,0.03601776,99.59353942],[4.53648062,0.0360195,99.59284563],[4.53648107,0.03602125,99.59215087],[4.53648153,0.03602299,99.59145516],[4.53648198,0.03602474,99.5907585],[4.53648243,0.03602649,99.59006088],[4.53648289,0.03602823,99.58936232],[4.53648334,0.03602998,99.58866282],[4.53648379,0.03603172,99.58796238],[4.53648424,0.03603347,99.58726101],[4.5364847,0.03603521,99.5865587],[4.53648515,0.03603696,99.58585546],[4.5364856,0.0360387,99.5851513],[4.53648606,0.03604045,99.58444621],[4.53648651,0.0360422,99.58374021],[4.53648696,0.03604394,99.58303329],[4.53648742,0.03604569,99.58232546],[4.53648787,0.03604743,99.58161672],[4.53648832,0.03604918,99.58090708],[4.53648878,0.03605092,99.58019652],[4.53648923,0.03605267,99.57948505],[4.53648968,0.03605441,99.57877262],[4.53649013,0.03605616,99.57805923],[4.53649059,0.03605791,99.57734484],[4.53649104,0.03605965,99.57662944],[4.53649149,0.0360614,99.575913],[4.53649195,0.03606314,99.5751955],[4.5364924,0.03606489,99.57447692],[4.53649285,0.03606663,99.57375724],[4.53649331,0.03606838,99.57303642],[4.53649376,0.03607012,99.57231446],[4.53649421,0.03607187,99.57159132],[4.53649466,0.03607362,99.57086698],[4.53649512,0.03607536,99.57014143],[4.53649557,0.03607711,99.56941464],[4.53649602,0.03607885,99.56868658],[4.53649647,0.0360806,99.56795724],[4.53649693,0.03608234,99.56722659],[4.53649738,0.03608409,99.56649461],[4.53649783,0.03608584,99.56576128],[4.53649828,0.03608758,99.56502657],[4.53649873,0.03608933,99.56429047],[4.53649918,0.03609107,99.56355294],[4.53649964,0.03609282,99.56281397],[4.53650009,0.03609457,99.56207354],[4.53650054,0.03609631,99.56133162],[4.53650099,0.03609806,99.56058819],[4.53650144,0.0360998,99.55984323],[4.53650189,0.03610155,99.55909672],[4.53650234,0.0361033,99.55834863],[4.53650279,0.03610504,99.55759895],[4.53650324,0.03610679,99.55684764],[4.53650369,0.03610854,99.5560947],[4.53650414,0.03611028,99.55534012],[4.53650459,0.03611203,99.55458389],[4.53650504,0.03611378,99.55382602],[4.53650549,0.03611552,99.5530665],[4.53650593,0.03611727,99.55230532],[4.53650638,0.03611902,99.55154249],[4.53650683,0.03612076,99.55077799],[4.53650728,0.03612251,99.55001183],[4.53650773,0.03612426,99.549244],[4.53650817,0.036126,99.54847451],[4.53650862,0.03612775,99.54770338],[4.53650907,0.0361295,99.54693063],[4.53650951,0.03613124,99.54615629],[4.53650996,0.03613299,99.54538037],[4.53651041,0.03613474,99.54460289],[4.53651085,0.03613649,99.54382388],[4.5365113,0.03613823,99.54304335],[4.53651174,0.03613998,99.54226133],[4.53651219,0.03614173,99.54147784],[4.53651264,0.03614348,99.5406929],[4.53651308,0.03614522,99.53990652],[4.53651353,0.03614697,99.53911874],[4.53651397,0.03614872,99.53832957],[4.53651441,0.03615047,99.53753903],[4.53651486,0.03615222,99.53674714],[4.5365153,0.03615396,99.53595392],[4.53651575,0.03615571,99.5351594],[4.53651619,0.03615746,99.53436359],[4.53651663,0.03615921,99.53356652],[4.53651708,0.03616096,99.53276821],[4.53651752,0.0361627,99.53196867],[4.53651797,0.03616445,99.53116794],[4.53651841,0.0361662,99.53036602],[4.53651885,0.03616795,99.52956294],[4.53651929,0.0361697,99.52875872],[4.53651974,0.03617144,99.52795338],[4.53652018,0.03617319,99.52714694],[4.53652062,0.03617494,99.52633942],[4.53652107,0.03617669,99.52553085],[4.53652151,0.03617844,99.52472124],[4.53652195,0.03618019,99.52391061],[4.53652239,0.03618193,99.52309899],[4.53652284,0.03618368,99.5222864],[4.53652328,0.03618543,99.52147285],[4.53652372,0.03618718,99.52065836],[4.53652416,0.03618893,99.51984296],[4.5365246,0.03619068,99.51902667],[4.53652505,0.03619242,99.51820951],[4.53652549,0.03619417,99.51739149],[4.53652593,0.03619592,99.51657264],[4.53652637,0.03619767,99.51575298],[4.53652681,0.03619942,99.51493253],[4.53652726,0.03620117,99.51411131],[4.5365277,0.03620291,99.51328934],[4.53652814,0.03620466,99.51246664],[4.53652858,0.03620641,99.51164322],[4.53652902,0.03620816,99.51081912],[4.53652947,0.03620991,99.50999435],[4.53652991,0.03621166,99.50916891],[4.53653035,0.03621341,99.50834281],[4.53653079,0.03621515,99.50751604],[4.53653123,0.0362169,99.50668858],[4.53653168,0.03621865,99.50586044],[4.53653212,0.0362204,99.5050316],[4.53653256,0.03622215,99.50420205],[4.536533,0.0362239,99.5033718],[4.53653344,0.03622564,99.50254082],[4.53653389,0.03622739,99.50170912],[4.53653433,0.03622914,99.50087668],[4.53653477,0.03623089,99.5000435],[4.53653521,0.03623264,99.49920957],[4.53653565,0.03623439,99.49837491],[4.5365361,0.03623614,99.49753952],[4.53653654,0.03623788,99.49670344],[4.53653698,0.03623963,99.49586666],[4.53653742,0.03624138,99.4950292],[4.53653786,0.03624313,99.49419108],[4.5365383,0.03624488,99.49335231],[4.53653875,0.03624663,99.49251291],[4.53653919,0.03624837,99.49167289],[4.53653963,0.03625012,99.49083226],[4.53654007,0.03625187,99.48999104],[4.53654051,0.03625362,99.48914925],[4.53654095,0.03625537,99.48830689],[4.5365414,0.03625712,99.48746399],[4.53654184,0.03625887,99.48662055],[4.53654228,0.03626061,99.4857766],[4.53654272,0.03626236,99.48493214],[4.53654316,0.03626411,99.48408719],[4.53654361,0.03626586,99.48324176],[4.53654405,0.03626761,99.48239587],[4.53654449,0.03626936,99.48154953],[4.53654493,0.0362711,99.48070275],[4.53654537,0.03627285,99.47985556],[4.53654582,0.0362746,99.47900795],[4.53654626,0.03627635,99.47815996],[4.5365467,0.0362781,99.47731159],[4.53654714,0.03627985,99.47646285],[4.53654759,0.0362816,99.47561376],[4.53654803,0.03628334,99.47476433],[4.53654847,0.03628509,99.47391458],[4.53654891,0.03628684,99.47306453],[4.53654936,0.03628859,99.47221417],[4.5365498,0.03629034,99.47136353],[4.53655024,0.03629208,99.47051263],[4.53655069,0.03629383,99.46966147],[4.53655113,0.03629558,99.46881007],[4.53655157,0.03629733,99.46795844],[4.53655202,0.03629908,99.4671066],[4.53655246,0.03630083,99.46625455],[4.5365529,0.03630257,99.46540232],[4.53655335,0.03630432,99.46454992],[4.53655379,0.03630607,99.46369735],[4.53655423,0.03630782,99.46284464],[4.53655468,0.03630957,99.4619918],[4.53655512,0.03631131,99.46113883],[4.53655557,0.03631306,99.46028576],[4.53655601,0.03631481,99.4594326],[4.53655646,0.03631656,99.45857935],[4.5365569,0.0363183,99.45772604],[4.53655735,0.03632005,99.45687267],[4.53655779,0.0363218,99.45601926],[4.53655824,0.03632355,99.45516583],[4.53655868,0.03632529,99.45431238],[4.53655913,0.03632704,99.45345893],[4.53655957,0.03632879,99.45260549],[4.53656002,0.03633054,99.45175208],[4.53656046,0.03633228,99.45089871],[4.53656091,0.03633403,99.4500454],[4.53656136,0.03633578,99.44919217],[4.5365618,0.03633753,99.44833902],[4.53656225,0.03633927,99.44748597],[4.5365627,0.03634102,99.44663305],[4.53656314,0.03634277,99.44578025],[4.53656359,0.03634451,99.4449276],[4.53656404,0.03634626,99.44407511],[4.53656449,0.03634801,99.4432228],[4.53656494,0.03634976,99.44237071],[4.53656538,0.0363515,99.44151889],[4.53656583,0.03635325,99.4406674],[4.53656628,0.036355,99.43981627],[4.53656673,0.03635674,99.43896557],[4.53656718,0.03635849,99.43811535],[4.53656763,0.03636024,99.43726565],[4.53656808,0.03636198,99.43641652],[4.53656853,0.03636373,99.43556802],[4.53656898,0.03636547,99.4347202],[4.53656943,0.03636722,99.4338731],[4.53656988,0.03636897,99.43302677],[4.53657033,0.03637071,99.43218127],[4.53657079,0.03637246,99.43133665],[4.53657124,0.0363742,99.43049295],[4.53657169,0.03637595,99.42965022],[4.53657215,0.0363777,99.42880842],[4.5365726,0.03637944,99.42796743],[4.53657305,0.03638119,99.42712713],[4.53657351,0.03638293,99.42628739],[4.53657396,0.03638468,99.42544808],[4.53657442,0.03638642,99.42460909],[4.53657487,0.03638817,99.42377029],[4.53657533,0.03638991,99.42293155],[4.53657579,0.03639166,99.42209276],[4.53657624,0.0363934,99.42125379],[4.5365767,0.03639515,99.42041452],[4.53657715,0.03639689,99.41957483],[4.53657761,0.03639864,99.41873459],[4.53657806,0.03640038,99.41789368],[4.53657852,0.03640213,99.41705199],[4.53657898,0.03640387,99.41620939],[4.53657943,0.03640562,99.41536577],[4.53657989,0.03640736,99.41452099],[4.53658034,0.03640911,99.41367495],[4.5365808,0.03641085,99.41282753],[4.53658125,0.0364126,99.41197859],[4.5365817,0.03641434,99.41112804],[4.53658216,0.03641609,99.41027574],[4.53658261,0.03641783,99.40942158],[4.53658306,0.03641958,99.40856545],[4.53658351,0.03642132,99.40770722],[4.53658397,0.03642307,99.40684678],[4.53658442,0.03642482,99.40598401],[4.53658487,0.03642656,99.40511879],[4.53658532,0.03642831,99.40425102],[4.53658577,0.03643006,99.40338056],[4.53658621,0.0364318,99.40250732],[4.53658666,0.03643355,99.40163117],[4.5365871,0.03643529,99.400752],[4.53658755,0.03643704,99.39986975],[4.53658799,0.03643878,99.39898456],[4.53658844,0.03644053,99.39809664],[4.53658888,0.03644228,99.39720619],[4.53658932,0.03644403,99.39631341],[4.53658977,0.03644578,99.3954185],[4.53659021,0.03644753,99.39452166],[4.53659065,0.03644927,99.39362308],[4.53659109,0.03645102,99.39272297],[4.53659153,0.03645277,99.39182153],[4.53659197,0.03645452,99.39091895],[4.53659241,0.03645627,99.39001539],[4.53659285,0.03645802,99.38911102],[4.53659329,0.03645977,99.388206],[4.53659373,0.03646152,99.38730049],[4.53659417,0.03646327,99.38639464],[4.53659461,0.03646502,99.38548862],[4.53659505,0.03646676,99.38458258],[4.53659549,0.03646851,99.38367668],[4.53659593,0.03647026,99.38277107],[4.53659637,0.03647201,99.38186592],[4.53659681,0.03647376,99.38096137]],"type":"LineString"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":1,"type":"shoulder","predecessorId":1}},{"geometry":{"coordinates":[[4.53599897,0.03413873,99.91624483],[4.53599921,0.03413963,99.91629442],[4.53599968,0.03414137,99.91639067],[4.53600014,0.03414312,99.91648792],[4.53600061,0.03414486,99.91658605],[4.53600108,0.0341466,99.91668492],[4.53600154,0.03414834,99.91678439],[4.53600201,0.03415008,99.91688433],[4.53600247,0.03415183,99.91698459],[4.53600294,0.03415357,99.91708504],[4.53600341,0.03415531,99.91718554],[4.53600387,0.03415705,99.91728596],[4.53600434,0.03415879,99.91738615],[4.53600481,0.03416054,99.91748598],[4.53600528,0.03416228,99.9175853],[4.53600574,0.03416402,99.91768398],[4.53600621,0.03416576,99.91778187],[4.53600668,0.0341675,99.91787884],[4.53600714,0.03416925,99.91797474],[4.53600761,0.03417099,99.91806943],[4.53600808,0.03417273,99.91816277],[4.53600854,0.03417447,99.91825462],[4.53600901,0.03417621,99.91834484],[4.53600948,0.03417795,99.91843327],[4.53600994,0.0341797,99.91851978],[4.53601041,0.03418144,99.91860422],[4.53601087,0.03418318,99.91868646],[4.53601134,0.03418492,99.91876633],[4.53601181,0.03418667,99.9188437],[4.53601227,0.03418841,99.91891842],[4.53601274,0.03419015,99.91899034],[4.5360132,0.03419189,99.9190593],[4.53601366,0.03419364,99.91912515],[4.53601413,0.03419538,99.91918773],[4.53601459,0.03419712,99.9192469],[4.53601505,0.03419886,99.91930263],[4.53601552,0.03420061,99.91935506],[4.53601598,0.03420235,99.91940432],[4.53601644,0.03420409,99.91945055],[4.5360169,0.03420584,99.91949388],[4.53601736,0.03420758,99.91953445],[4.53601782,0.03420932,99.91957238],[4.53601829,0.03421107,99.91960782],[4.53601875,0.03421281,99.9196409],[4.53601921,0.03421455,99.91967177],[4.53601967,0.03421629,99.91970054],[4.53602013,0.03421804,99.91972737],[4.5360206,0.03421978,99.91975239],[4.53602106,0.03422152,99.91977574],[4.53602152,0.03422327,99.91979756],[4.53602198,0.03422501,99.91981799],[4.53602245,0.03422675,99.91983716],[4.53602291,0.0342285,99.91985523],[4.53602337,0.03423024,99.91987231],[4.53602384,0.03423198,99.91988857],[4.5360243,0.03423372,99.91990414],[4.53602476,0.03423547,99.91991916],[4.53602523,0.03423721,99.91993378],[4.53602569,0.03423895,99.91994813],[4.53602615,0.03424069,99.91996237],[4.53602662,0.03424244,99.91997663],[4.53602708,0.03424418,99.919991],[4.53602755,0.03424592,99.92000549],[4.53602801,0.03424766,99.92002012],[4.53602848,0.03424941,99.92003491],[4.53602894,0.03425115,99.92004988],[4.53602941,0.03425289,99.92006504],[4.53602987,0.03425463,99.92008042],[4.53603034,0.03425638,99.92009602],[4.5360308,0.03425812,99.92011187],[4.53603127,0.03425986,99.92012799],[4.53603174,0.0342616,99.92014439],[4.5360322,0.03426334,99.92016108],[4.53603267,0.03426509,99.9201781],[4.53603313,0.03426683,99.92019545],[4.5360336,0.03426857,99.92021316],[4.53603407,0.03427031,99.92023124],[4.53603453,0.03427205,99.92024972],[4.536035,0.0342738,99.9202686],[4.53603546,0.03427554,99.92028791],[4.53603593,0.03427728,99.92030767],[4.5360364,0.03427902,99.92032789],[4.53603686,0.03428076,99.9203486],[4.53603733,0.0342825,99.92036981],[4.5360378,0.03428425,99.92039155],[4.53603826,0.03428599,99.92041382],[4.53603873,0.03428773,99.92043666],[4.5360392,0.03428947,99.92046007],[4.53603967,0.03429121,99.92048408],[4.53604013,0.03429295,99.92050871],[4.5360406,0.0342947,99.92053398],[4.53604107,0.03429644,99.9205599],[4.53604154,0.03429818,99.9205865],[4.536042,0.03429992,99.9206138],[4.53604247,0.03430166,99.92064181],[4.53604294,0.0343034,99.92067055],[4.53604341,0.03430515,99.92070005],[4.53604387,0.03430689,99.92073031],[4.53604434,0.03430863,99.92076131],[4.53604481,0.03431037,99.92079299],[4.53604528,0.03431211,99.92082531],[4.53604575,0.03431385,99.92085822],[4.53604621,0.03431559,99.92089169],[4.53604668,0.03431734,99.92092565],[4.53604715,0.03431908,99.92096008],[4.53604762,0.03432082,99.92099492],[4.53604809,0.03432256,99.92103012],[4.53604856,0.0343243,99.92106564],[4.53604903,0.03432604,99.92110143],[4.5360495,0.03432778,99.92113746],[4.53604996,0.03432952,99.92117366],[4.53605043,0.03433127,99.92120999],[4.5360509,0.03433301,99.92124641],[4.53605137,0.03433475,99.92128287],[4.53605184,0.03433649,99.92131931],[4.53605231,0.03433823,99.92135571],[4.53605278,0.03433997,99.92139199],[4.53605325,0.03434171,99.92142813],[4.53605372,0.03434345,99.92146406],[4.53605419,0.03434519,99.92149974],[4.53605466,0.03434694,99.92153513],[4.53605513,0.03434868,99.92157017],[4.5360556,0.03435042,99.92160482],[4.53605607,0.03435216,99.92163902],[4.53605654,0.0343539,99.92167273],[4.53605701,0.03435564,99.9217059],[4.53605748,0.03435738,99.92173847],[4.53605795,0.03435912,99.92177041],[4.53605842,0.03436086,99.92180165],[4.53605889,0.0343626,99.92183215],[4.53605936,0.03436434,99.92186186],[4.53605983,0.03436609,99.92189073],[4.5360603,0.03436783,99.92191871],[4.53606077,0.03436957,99.92194574],[4.53606124,0.03437131,99.92197181],[4.53606171,0.03437305,99.9219969],[4.53606218,0.03437479,99.92202101],[4.53606265,0.03437653,99.92204415],[4.53606312,0.03437827,99.9220663],[4.53606359,0.03438001,99.92208747],[4.53606406,0.03438175,99.92210765],[4.53606453,0.03438349,99.92212684],[4.536065,0.03438524,99.92214504],[4.53606547,0.03438698,99.92216223],[4.53606594,0.03438872,99.92217843],[4.53606642,0.03439046,99.92219363],[4.53606689,0.0343922,99.92220782],[4.53606736,0.03439394,99.922221],[4.53606783,0.03439568,99.92223316],[4.5360683,0.03439742,99.92224431],[4.53606877,0.03439916,99.92225445],[4.53606924,0.0344009,99.92226356],[4.53606971,0.03440264,99.92227165],[4.53607018,0.03440438,99.92227871],[4.53607066,0.03440612,99.92228474],[4.53607113,0.03440786,99.92228974],[4.5360716,0.0344096,99.9222937],[4.53607207,0.03441134,99.92229662],[4.53607254,0.03441309,99.9222985],[4.53607301,0.03441483,99.92229934],[4.53607348,0.03441657,99.92229913],[4.53607395,0.03441831,99.92229786],[4.53607442,0.03442005,99.92229554],[4.53607489,0.03442179,99.92229217],[4.53607536,0.03442353,99.92228773],[4.53607584,0.03442527,99.92228224],[4.53607631,0.03442701,99.92227567],[4.53607678,0.03442875,99.92226804],[4.53607725,0.03443049,99.92225933],[4.53607772,0.03443223,99.92224955],[4.53607819,0.03443398,99.9222387],[4.53607865,0.03443572,99.92222676],[4.53607912,0.03443746,99.92221374],[4.53607959,0.0344392,99.92219964],[4.53608006,0.03444094,99.92218446],[4.53608053,0.03444268,99.92216821],[4.536081,0.03444442,99.92215087],[4.53608147,0.03444616,99.92213246],[4.53608194,0.03444791,99.92211297],[4.5360824,0.03444965,99.92209241],[4.53608287,0.03445139,99.92207076],[4.53608334,0.03445313,99.92204805],[4.53608381,0.03445487,99.92202425],[4.53608427,0.03445661,99.92199939],[4.53608474,0.03445836,99.92197345],[4.53608521,0.0344601,99.92194643],[4.53608567,0.03446184,99.92191835],[4.53608614,0.03446358,99.92188919],[4.5360866,0.03446532,99.92185896],[4.53608707,0.03446707,99.92182766],[4.53608754,0.03446881,99.9217953],[4.536088,0.03447055,99.92176186],[4.53608846,0.03447229,99.92172735],[4.53608893,0.03447404,99.92169178],[4.53608939,0.03447578,99.92165515],[4.53608986,0.03447752,99.92161744],[4.53609032,0.03447926,99.92157868],[4.53609078,0.03448101,99.92153885],[4.53609125,0.03448275,99.92149795],[4.53609171,0.03448449,99.921456],[4.53609217,0.03448624,99.92141298],[4.53609263,0.03448798,99.9213689],[4.53609309,0.03448972,99.92132377],[4.53609356,0.03449147,99.92127758],[4.53609402,0.03449321,99.92123033],[4.53609448,0.03449495,99.92118202],[4.53609494,0.0344967,99.92113266],[4.5360954,0.03449844,99.92108224],[4.53609586,0.03450018,99.92103077],[4.53609632,0.03450193,99.92097825],[4.53609679,0.03450367,99.92092468],[4.53609725,0.03450541,99.92087006],[4.53609771,0.03450716,99.92081439],[4.53609817,0.0345089,99.92075767],[4.53609863,0.03451064,99.92069991],[4.53609909,0.03451239,99.9206411],[4.53609955,0.03451413,99.92058125],[4.53610001,0.03451588,99.92052037],[4.53610047,0.03451762,99.92045846],[4.53610093,0.03451936,99.92039552],[4.53610139,0.03452111,99.92033157],[4.53610185,0.03452285,99.9202666],[4.53610231,0.03452459,99.92020063],[4.53610277,0.03452634,99.92013365],[4.53610323,0.03452808,99.92006568],[4.53610369,0.03452982,99.9199967],[4.53610415,0.03453157,99.91992671],[4.53610461,0.03453331,99.91985571],[4.53610507,0.03453506,99.91978368],[4.53610553,0.0345368,99.91971061],[4.53610599,0.03453854,99.91963651],[4.53610645,0.03454029,99.91956136],[4.53610691,0.03454203,99.91948515],[4.53610737,0.03454377,99.91940788],[4.53610783,0.03454552,99.91932954],[4.5361083,0.03454726,99.91925012],[4.53610876,0.034549,99.91916962],[4.53610922,0.03455075,99.91908803],[4.53610968,0.03455249,99.91900533],[4.53611014,0.03455423,99.91892153],[4.5361106,0.03455598,99.91883661],[4.53611106,0.03455772,99.91875057],[4.53611152,0.03455946,99.91866339],[4.53611199,0.03456121,99.91857508],[4.53611245,0.03456295,99.91848563],[4.53611291,0.03456469,99.91839502],[4.53611337,0.03456644,99.91830325],[4.53611383,0.03456818,99.91821032],[4.5361143,0.03456992,99.9181162],[4.53611476,0.03457167,99.91802091],[4.53611522,0.03457341,99.91792442],[4.53611569,0.03457515,99.91782673],[4.53611615,0.0345769,99.91772784],[4.53611661,0.03457864,99.91762774],[4.53611707,0.03458038,99.91752641],[4.53611754,0.03458212,99.91742386],[4.536118,0.03458387,99.91732006],[4.53611846,0.03458561,99.91721503],[4.53611893,0.03458735,99.91710874],[4.53611939,0.0345891,99.91700119],[4.53611985,0.03459084,99.91689238],[4.53612032,0.03459258,99.91678229],[4.53612078,0.03459432,99.91667092],[4.53612124,0.03459607,99.91655827],[4.5361217,0.03459781,99.91644431],[4.53612217,0.03459955,99.91632907],[4.53612263,0.0346013,99.91621263],[4.53612309,0.03460304,99.9160951],[4.53612355,0.03460478,99.91597659],[4.53612401,0.03460653,99.91585722],[4.53612448,0.03460827,99.91573708],[4.53612494,0.03461001,99.91561629],[4.5361254,0.03461176,99.91549496],[4.53612586,0.0346135,99.9153732],[4.53612632,0.03461524,99.91525111],[4.53612678,0.03461699,99.91512882],[4.53612725,0.03461873,99.91500642],[4.53612771,0.03462047,99.91488404],[4.53612817,0.03462222,99.91476178],[4.53612863,0.03462396,99.91463976],[4.53612909,0.0346257,99.91451808],[4.53612955,0.03462745,99.91439685],[4.53613001,0.03462919,99.9142762],[4.53613048,0.03463093,99.91415623],[4.53613094,0.03463268,99.91403706],[4.5361314,0.03463442,99.91391879],[4.53613186,0.03463616,99.91380154],[4.53613232,0.03463791,99.91368543],[4.53613279,0.03463965,99.91357056],[4.53613325,0.03464139,99.91345706],[4.53613371,0.03464314,99.91334503],[4.53613418,0.03464488,99.91323458],[4.53613464,0.03464662,99.91312584],[4.5361351,0.03464836,99.91301887],[4.53613557,0.03465011,99.91291356],[4.53613603,0.03465185,99.91280975],[4.53613649,0.03465359,99.91270729],[4.53613696,0.03465534,99.91260603],[4.53613742,0.03465708,99.9125058],[4.53613789,0.03465882,99.91240644],[4.53613835,0.03466056,99.91230781],[4.53613881,0.03466231,99.91220973],[4.53613928,0.03466405,99.91211206],[4.53613974,0.03466579,99.91201463],[4.5361402,0.03466754,99.91191729],[4.53614067,0.03466928,99.91181987],[4.53614113,0.03467102,99.91172221],[4.53614159,0.03467276,99.91162417],[4.53614206,0.03467451,99.91152565],[4.53614252,0.03467625,99.91142662],[4.53614298,0.03467799,99.91132707],[4.53614344,0.03467974,99.91122697],[4.53614391,0.03468148,99.91112632],[4.53614437,0.03468322,99.91102508],[4.53614483,0.03468497,99.91092325],[4.53614529,0.03468671,99.91082079],[4.53614576,0.03468845,99.9107177],[4.53614622,0.0346902,99.91061395],[4.53614668,0.03469194,99.91050952],[4.53614714,0.03469368,99.91040439],[4.53614761,0.03469543,99.91029855],[4.53614807,0.03469717,99.91019197],[4.53614853,0.03469891,99.91008463],[4.536149,0.03470065,99.90997652],[4.53614946,0.0347024,99.90986761],[4.53614992,0.03470414,99.90975789],[4.53615038,0.03470588,99.90964733],[4.53615085,0.03470763,99.90953592],[4.53615131,0.03470937,99.90942363],[4.53615178,0.03471111,99.90931045],[4.53615224,0.03471285,99.90919635],[4.5361527,0.0347146,99.90908132],[4.53615317,0.03471634,99.90896533],[4.53615363,0.03471808,99.90884837],[4.53615409,0.03471983,99.90873041],[4.53615456,0.03472157,99.90861144],[4.53615502,0.03472331,99.90849144],[4.53615549,0.03472505,99.90837038],[4.53615595,0.0347268,99.90824824],[4.53615642,0.03472854,99.90812502],[4.53615688,0.03473028,99.90800067],[4.53615734,0.03473202,99.90787519],[4.53615781,0.03473377,99.90774856],[4.53615827,0.03473551,99.90762075],[4.53615874,0.03473725,99.90749175],[4.5361592,0.034739,99.90736153],[4.53615967,0.03474074,99.90723007],[4.53616013,0.03474248,99.90709736],[4.53616059,0.03474422,99.90696338],[4.53616106,0.03474597,99.90682809],[4.53616152,0.03474771,99.90669149],[4.53616199,0.03474945,99.90655356],[4.53616245,0.03475119,99.90641426],[4.53616292,0.03475294,99.90627359],[4.53616338,0.03475468,99.90613153],[4.53616384,0.03475642,99.90598804],[4.53616431,0.03475817,99.90584312],[4.53616477,0.03475991,99.90569674],[4.53616524,0.03476165,99.90554888],[4.5361657,0.03476339,99.90539952],[4.53616616,0.03476514,99.90524865],[4.53616663,0.03476688,99.90509623],[4.53616709,0.03476862,99.90494226],[4.53616755,0.03477036,99.90478671],[4.53616802,0.03477211,99.90462956],[4.53616848,0.03477385,99.90447083],[4.53616894,0.03477559,99.90431051],[4.53616941,0.03477734,99.90414863],[4.53616987,0.03477908,99.90398518],[4.53617033,0.03478082,99.90382019],[4.5361708,0.03478257,99.90365366],[4.53617126,0.03478431,99.90348561],[4.53617172,0.03478605,99.90331603],[4.53617219,0.03478779,99.90314494],[4.53617265,0.03478954,99.90297235],[4.53617311,0.03479128,99.90279828],[4.53617357,0.03479302,99.90262272],[4.53617404,0.03479477,99.90244569],[4.5361745,0.03479651,99.90226721],[4.53617496,0.03479825,99.90208727],[4.53617542,0.0348,99.9019059],[4.53617589,0.03480174,99.9017231],[4.53617635,0.03480348,99.90153889],[4.53617681,0.03480523,99.90135327],[4.53617727,0.03480697,99.90116625],[4.53617774,0.03480871,99.90097785],[4.5361782,0.03481046,99.90078808],[4.53617866,0.0348122,99.90059694],[4.53617912,0.03481394,99.90040445],[4.53617958,0.03481569,99.90021062],[4.53618005,0.03481743,99.90001546],[4.53618051,0.03481917,99.89981898],[4.53618097,0.03482092,99.89962119],[4.53618143,0.03482266,99.8994221],[4.53618189,0.0348244,99.89922173],[4.53618236,0.03482615,99.89902007],[4.53618282,0.03482789,99.89881715],[4.53618328,0.03482963,99.89861298],[4.53618374,0.03483138,99.89840755],[4.5361842,0.03483312,99.8982009],[4.53618466,0.03483486,99.89799302],[4.53618513,0.03483661,99.89778393],[4.53618559,0.03483835,99.89757364],[4.53618605,0.03484009,99.89736216],[4.53618651,0.03484184,99.89714949],[4.53618697,0.03484358,99.89693566],[4.53618743,0.03484532,99.89672067],[4.5361879,0.03484707,99.89650453],[4.53618836,0.03484881,99.89628726],[4.53618882,0.03485056,99.89606886],[4.53618928,0.0348523,99.89584934],[4.53618974,0.03485404,99.89562872],[4.5361902,0.03485579,99.895407],[4.53619066,0.03485753,99.89518421],[4.53619113,0.03485927,99.89496034],[4.53619159,0.03486102,99.8947354],[4.53619205,0.03486276,99.89450942],[4.53619251,0.0348645,99.8942824],[4.53619297,0.03486625,99.89405435],[4.53619343,0.03486799,99.89382528],[4.53619389,0.03486973,99.8935952],[4.53619435,0.03487148,99.89336412],[4.53619482,0.03487322,99.89313206],[4.53619528,0.03487496,99.892899],[4.53619574,0.03487671,99.89266496],[4.5361962,0.03487845,99.89242994],[4.53619666,0.0348802,99.89219393],[4.53619712,0.03488194,99.89195693],[4.53619758,0.03488368,99.89171896],[4.53619804,0.03488543,99.89148002],[4.53619851,0.03488717,99.89124009],[4.53619897,0.03488891,99.89099919],[4.53619943,0.03489066,99.89075732],[4.53619989,0.0348924,99.89051448],[4.53620035,0.03489414,99.89027068],[4.53620081,0.03489589,99.8900259],[4.53620127,0.03489763,99.88978017],[4.53620173,0.03489937,99.88953346],[4.5362022,0.03490112,99.8892858],[4.53620266,0.03490286,99.88903718],[4.53620312,0.03490461,99.88878761],[4.53620358,0.03490635,99.88853708],[4.53620404,0.03490809,99.88828559],[4.5362045,0.03490984,99.88803316],[4.53620496,0.03491158,99.88777977],[4.53620542,0.03491332,99.88752544],[4.53620588,0.03491507,99.88727016],[4.53620634,0.03491681,99.88701394],[4.5362068,0.03491856,99.88675678],[4.53620726,0.0349203,99.88649867],[4.53620773,0.03492204,99.88623963],[4.53620819,0.03492379,99.88597966],[4.53620865,0.03492553,99.88571875],[4.53620911,0.03492727,99.8854569],[4.53620957,0.03492902,99.88519413],[4.53621003,0.03493076,99.88493043],[4.53621049,0.03493251,99.8846658],[4.53621095,0.03493425,99.88440024],[4.53621141,0.03493599,99.88413377],[4.53621187,0.03493774,99.88386637],[4.53621233,0.03493948,99.88359805],[4.53621279,0.03494122,99.88332882],[4.53621325,0.03494297,99.88305867],[4.53621371,0.03494471,99.8827876],[4.53621417,0.03494646,99.88251563],[4.53621463,0.0349482,99.88224275],[4.53621509,0.03494994,99.88196895],[4.53621555,0.03495169,99.88169426],[4.53621601,0.03495343,99.88141865],[4.53621647,0.03495518,99.88114215],[4.53621693,0.03495692,99.88086474],[4.53621739,0.03495866,99.88058644],[4.53621785,0.03496041,99.88030724],[4.53621831,0.03496215,99.88002715],[4.53621877,0.0349639,99.87974616],[4.53621923,0.03496564,99.87946428],[4.53621969,0.03496739,99.87918151],[4.53622014,0.03496913,99.87889786],[4.5362206,0.03497087,99.87861332],[4.53622106,0.03497262,99.87832789],[4.53622152,0.03497436,99.87804159],[4.53622198,0.03497611,99.87775441],[4.53622244,0.03497785,99.87746634],[4.5362229,0.03497959,99.8771774],[4.53622336,0.03498134,99.87688759],[4.53622382,0.03498308,99.87659691],[4.53622428,0.03498483,99.87630535],[4.53622474,0.03498657,99.87601293],[4.53622519,0.03498831,99.87571964],[4.53622565,0.03499006,99.87542548],[4.53622611,0.0349918,99.87513047],[4.53622657,0.03499355,99.87483459],[4.53622703,0.03499529,99.87453785],[4.53622749,0.03499703,99.87424026],[4.53622795,0.03499878,99.87394181],[4.5362284,0.03500052,99.8736425],[4.53622886,0.03500227,99.87334235],[4.53622932,0.03500401,99.87304134],[4.53622978,0.03500576,99.8727395],[4.53623024,0.0350075,99.87243681],[4.5362307,0.03500924,99.87213328],[4.53623115,0.03501099,99.87182893],[4.53623161,0.03501273,99.87152375],[4.53623207,0.03501448,99.87121775],[4.53623253,0.03501622,99.87091093],[4.53623299,0.03501797,99.8706033],[4.53623345,0.03501971,99.87029486],[4.5362339,0.03502146,99.86998561],[4.53623436,0.0350232,99.86967557],[4.53623482,0.03502494,99.86936472],[4.53623528,0.03502669,99.86905308],[4.53623574,0.03502843,99.86874065],[4.53623619,0.03503018,99.86842743],[4.53623665,0.03503192,99.86811343],[4.53623711,0.03503367,99.86779864],[4.53623757,0.03503541,99.86748307],[4.53623803,0.03503716,99.86716672],[4.53623848,0.0350389,99.8668496],[4.53623894,0.03504065,99.8665317],[4.5362394,0.03504239,99.86621304],[4.53623986,0.03504413,99.86589361],[4.53624032,0.03504588,99.86557342],[4.53624077,0.03504762,99.86525246],[4.53624123,0.03504937,99.86493075],[4.53624169,0.03505111,99.86460828],[4.53624215,0.03505286,99.86428507],[4.53624261,0.0350546,99.8639611],[4.53624306,0.03505635,99.86363638],[4.53624352,0.03505809,99.86331093],[4.53624398,0.03505984,99.86298473],[4.53624444,0.03506158,99.86265779],[4.5362449,0.03506332,99.86233012],[4.53624535,0.03506507,99.86200172],[4.53624581,0.03506681,99.86167259],[4.53624627,0.03506856,99.86134273],[4.53624673,0.0350703,99.86101215],[4.53624718,0.03507205,99.86068084],[4.53624764,0.03507379,99.86034882],[4.5362481,0.03507554,99.86001608],[4.53624856,0.03507728,99.85968264],[4.53624902,0.03507903,99.85934848],[4.53624947,0.03508077,99.85901361],[4.53624993,0.03508251,99.85867804],[4.53625039,0.03508426,99.85834177],[4.53625085,0.035086,99.8580048],[4.53625131,0.03508775,99.85766714],[4.53625176,0.03508949,99.85732878],[4.53625222,0.03509124,99.85698973],[4.53625268,0.03509298,99.85665],[4.53625314,0.03509473,99.85630958],[4.53625359,0.03509647,99.85596848],[4.53625405,0.03509821,99.8556267],[4.53625451,0.03509996,99.85528424],[4.53625497,0.0351017,99.85494111],[4.53625543,0.03510345,99.85459731],[4.53625588,0.03510519,99.85425285],[4.53625634,0.03510694,99.85390771],[4.5362568,0.03510868,99.85356192],[4.53625726,0.03511043,99.85321546],[4.53625772,0.03511217,99.85286835],[4.53625817,0.03511392,99.85252058],[4.53625863,0.03511566,99.85217217],[4.53625909,0.0351174,99.8518231],[4.53625955,0.03511915,99.85147339],[4.53626001,0.03512089,99.85112303],[4.53626046,0.03512264,99.85077204],[4.53626092,0.03512438,99.8504204],[4.53626138,0.03512613,99.85006813],[4.53626184,0.03512787,99.84971523],[4.5362623,0.03512962,99.8493617],[4.53626275,0.03513136,99.84900754],[4.53626321,0.0351331,99.84865276],[4.53626367,0.03513485,99.84829736],[4.53626413,0.03513659,99.84794134],[4.53626459,0.03513834,99.8475847],[4.53626505,0.03514008,99.84722745],[4.5362655,0.03514183,99.84686959],[4.53626596,0.03514357,99.84651112],[4.53626642,0.03514532,99.84615205],[4.53626688,0.03514706,99.84579237],[4.53626734,0.0351488,99.8454321],[4.5362678,0.03515055,99.84507122],[4.53626825,0.03515229,99.84470976],[4.53626871,0.03515404,99.8443477],[4.53626917,0.03515578,99.84398505],[4.53626963,0.03515753,99.84362182],[4.53627009,0.03515927,99.843258],[4.53627055,0.03516101,99.8428936],[4.536271,0.03516276,99.84252862],[4.53627146,0.0351645,99.84216305],[4.53627192,0.03516625,99.8417969],[4.53627238,0.03516799,99.84143016],[4.53627284,0.03516974,99.84106283],[4.5362733,0.03517148,99.8406949],[4.53627376,0.03517322,99.84032638],[4.53627421,0.03517497,99.83995727],[4.53627467,0.03517671,99.83958755],[4.53627513,0.03517846,99.83921724],[4.53627559,0.0351802,99.83884632],[4.53627605,0.03518195,99.8384748],[4.53627651,0.03518369,99.83810267],[4.53627697,0.03518543,99.83772994],[4.53627743,0.03518718,99.83735659],[4.53627788,0.03518892,99.83698264],[4.53627834,0.03519067,99.83660807],[4.5362788,0.03519241,99.83623288],[4.53627926,0.03519416,99.83585708],[4.53627972,0.0351959,99.83548066],[4.53628018,0.03519764,99.83510362],[4.53628064,0.03519939,99.83472596],[4.5362811,0.03520113,99.83434767],[4.53628155,0.03520288,99.83396876],[4.53628201,0.03520462,99.83358921],[4.53628247,0.03520637,99.83320904],[4.53628293,0.03520811,99.83282824],[4.53628339,0.03520985,99.83244681],[4.53628385,0.0352116,99.83206474],[4.53628431,0.03521334,99.83168204],[4.53628476,0.03521509,99.83129869],[4.53628522,0.03521683,99.83091471],[4.53628568,0.03521858,99.83053009],[4.53628614,0.03522032,99.83014482],[4.5362866,0.03522206,99.82975891],[4.53628706,0.03522381,99.82937235],[4.53628752,0.03522555,99.82898513],[4.53628798,0.0352273,99.82859726],[4.53628843,0.03522904,99.82820872],[4.53628889,0.03523079,99.82781951],[4.53628935,0.03523253,99.82742963],[4.53628981,0.03523427,99.82703906],[4.53629027,0.03523602,99.82664781],[4.53629073,0.03523776,99.82625587],[4.53629118,0.03523951,99.82586323],[4.53629164,0.03524125,99.82546989],[4.5362921,0.035243,99.82507585],[4.53629256,0.03524474,99.82468109],[4.53629302,0.03524648,99.82428562],[4.53629348,0.03524823,99.82388943],[4.53629393,0.03524997,99.82349251],[4.53629439,0.03525172,99.82309486],[4.53629485,0.03525346,99.82269647],[4.53629531,0.03525521,99.82229734],[4.53629577,0.03525695,99.82189747],[4.53629622,0.0352587,99.82149684],[4.53629668,0.03526044,99.82109546],[4.53629714,0.03526218,99.82069331],[4.5362976,0.03526393,99.8202904],[4.53629805,0.03526567,99.81988672],[4.53629851,0.03526742,99.81948227],[4.53629897,0.03526916,99.81907703],[4.53629943,0.03527091,99.81867101],[4.53629988,0.03527265,99.8182642],[4.53630034,0.0352744,99.81785659],[4.5363008,0.03527614,99.81744818],[4.53630125,0.03527789,99.81703897],[4.53630171,0.03527963,99.81662894],[4.53630217,0.03528138,99.81621811],[4.53630262,0.03528312,99.81580645],[4.53630308,0.03528487,99.81539397],[4.53630354,0.03528661,99.81498066],[4.53630399,0.03528836,99.81456652],[4.53630445,0.0352901,99.81415154],[4.53630491,0.03529184,99.81373571],[4.53630536,0.03529359,99.81331904],[4.53630582,0.03529533,99.81290152],[4.53630628,0.03529708,99.81248314],[4.53630673,0.03529882,99.81206389],[4.53630719,0.03530057,99.81164378],[4.53630764,0.03530231,99.8112228],[4.5363081,0.03530406,99.81080095],[4.53630856,0.0353058,99.81037821],[4.53630901,0.03530755,99.80995459],[4.53630947,0.03530929,99.80953008],[4.53630992,0.03531104,99.80910467],[4.53631038,0.03531278,99.80867837],[4.53631084,0.03531453,99.80825116],[4.53631129,0.03531627,99.80782307],[4.53631175,0.03531802,99.8073941],[4.5363122,0.03531976,99.80696426],[4.53631266,0.03532151,99.80653356],[4.53631311,0.03532325,99.806102],[4.53631357,0.035325,99.8056696],[4.53631402,0.03532674,99.80523636],[4.53631448,0.03532849,99.80480229],[4.53631494,0.03533023,99.8043674],[4.53631539,0.03533198,99.8039317],[4.53631585,0.03533372,99.80349519],[4.5363163,0.03533547,99.80305789],[4.53631676,0.03533721,99.80261981],[4.53631721,0.03533896,99.80218095],[4.53631767,0.0353407,99.80174131],[4.53631813,0.03534245,99.80130092],[4.53631858,0.03534419,99.80085977],[4.53631904,0.03534594,99.80041788],[4.5363195,0.03534768,99.79997526],[4.53631995,0.03534943,99.7995319],[4.53632041,0.03535117,99.79908783],[4.53632086,0.03535292,99.79864304],[4.53632132,0.03535466,99.79819755],[4.53632178,0.03535641,99.79775137],[4.53632223,0.03535815,99.7973045],[4.53632269,0.0353599,99.79685695],[4.53632315,0.03536164,99.79640873],[4.53632361,0.03536339,99.79595985],[4.53632406,0.03536513,99.79551031],[4.53632452,0.03536688,99.79506013],[4.53632498,0.03536862,99.79460931],[4.53632543,0.03537036,99.79415786],[4.53632589,0.03537211,99.79370579],[4.53632635,0.03537385,99.79325311],[4.53632681,0.0353756,99.79279982],[4.53632726,0.03537734,99.79234593],[4.53632772,0.03537909,99.79189146],[4.53632818,0.03538083,99.7914364],[4.53632864,0.03538258,99.79098077],[4.5363291,0.03538432,99.79052457],[4.53632955,0.03538607,99.79006782],[4.53633001,0.03538781,99.78961051],[4.53633047,0.03538955,99.78915267],[4.53633093,0.0353913,99.78869429],[4.53633138,0.03539304,99.78823539],[4.53633184,0.03539479,99.78777597],[4.5363323,0.03539653,99.78731606],[4.53633276,0.03539828,99.78685565],[4.53633322,0.03540002,99.78639476],[4.53633367,0.03540177,99.7859334],[4.53633413,0.03540351,99.78547158],[4.53633459,0.03540525,99.78500932],[4.53633505,0.035407,99.78454662],[4.53633551,0.03540874,99.78408349],[4.53633596,0.03541049,99.78361995],[4.53633642,0.03541223,99.78315601],[4.53633688,0.03541398,99.78269167],[4.53633734,0.03541572,99.78222695],[4.5363378,0.03541746,99.78176187],[4.53633825,0.03541921,99.78129642],[4.53633871,0.03542095,99.78083062],[4.53633917,0.0354227,99.78036449],[4.53633963,0.03542444,99.77989803],[4.53634009,0.03542619,99.77943125],[4.53634054,0.03542793,99.77896417],[4.536341,0.03542968,99.7784968],[4.53634146,0.03543142,99.77802914],[4.53634192,0.03543316,99.77756121],[4.53634238,0.03543491,99.77709302],[4.53634283,0.03543665,99.77662458],[4.53634329,0.0354384,99.7761559],[4.53634375,0.03544014,99.77568699],[4.53634421,0.03544189,99.77521786],[4.53634466,0.03544363,99.77474853],[4.53634512,0.03544538,99.77427901],[4.53634558,0.03544712,99.7738093],[4.53634604,0.03544886,99.77333941],[4.53634649,0.03545061,99.77286936],[4.53634695,0.03545235,99.77239917],[4.53634741,0.0354541,99.77192883],[4.53634787,0.03545584,99.77145836],[4.53634832,0.03545759,99.77098777],[4.53634878,0.03545933,99.77051708],[4.53634924,0.03546108,99.77004629],[4.5363497,0.03546282,99.76957541],[4.53635015,0.03546457,99.76910444],[4.53635061,0.03546631,99.7686334],[4.53635107,0.03546805,99.76816227],[4.53635152,0.0354698,99.76769108],[4.53635198,0.03547154,99.76721981],[4.53635244,0.03547329,99.76674848],[4.53635289,0.03547503,99.76627708],[4.53635335,0.03547678,99.76580563],[4.53635381,0.03547852,99.76533412],[4.53635426,0.03548027,99.76486257],[4.53635472,0.03548201,99.76439096],[4.53635517,0.03548376,99.76391931],[4.53635563,0.0354855,99.76344763],[4.53635609,0.03548725,99.76297591],[4.53635654,0.03548899,99.76250416],[4.536357,0.03549074,99.76203238],[4.53635745,0.03549248,99.76156058],[4.53635791,0.03549423,99.76108876],[4.53635836,0.03549597,99.76061692],[4.53635882,0.03549772,99.76014508],[4.53635927,0.03549946,99.75967323],[4.53635973,0.03550121,99.75920138],[4.53636018,0.03550295,99.75872953],[4.53636064,0.0355047,99.75825768],[4.53636109,0.03550644,99.75778585],[4.53636155,0.03550819,99.75731402],[4.536362,0.03550993,99.75684222],[4.53636246,0.03551168,99.75637044],[4.53636291,0.03551342,99.75589869],[4.53636337,0.03551517,99.75542697],[4.53636382,0.03551692,99.75495529],[4.53636428,0.03551866,99.75448364],[4.53636473,0.03552041,99.75401204],[4.53636519,0.03552215,99.75354049],[4.53636564,0.0355239,99.75306899],[4.5363661,0.03552564,99.75259755],[4.53636655,0.03552739,99.75212612],[4.536367,0.03552913,99.75165467],[4.53636746,0.03553088,99.75118317],[4.53636791,0.03553262,99.75071157],[4.53636837,0.03553437,99.75023984],[4.53636882,0.03553611,99.74976794],[4.53636928,0.03553786,99.74929583],[4.53636973,0.0355396,99.74882348],[4.53637019,0.03554135,99.74835083],[4.53637064,0.03554309,99.74787787],[4.5363711,0.03554484,99.74740454],[4.53637155,0.03554658,99.7469308],[4.53637201,0.03554833,99.74645663],[4.53637246,0.03555007,99.74598198],[4.53637291,0.03555182,99.74550682],[4.53637337,0.03555357,99.74503109],[4.53637382,0.03555531,99.74455477],[4.53637428,0.03555706,99.74407782],[4.53637473,0.0355588,99.74360019],[4.53637518,0.03556055,99.74312185],[4.53637564,0.03556229,99.74264275],[4.53637609,0.03556404,99.74216284],[4.53637654,0.03556578,99.74168208],[4.536377,0.03556753,99.74120041],[4.53637745,0.03556927,99.7407178],[4.5363779,0.03557102,99.74023419],[4.53637836,0.03557277,99.73974955],[4.53637881,0.03557451,99.73926381],[4.53637926,0.03557626,99.73877695],[4.53637971,0.035578,99.7382889],[4.53638016,0.03557975,99.73779962],[4.53638061,0.0355815,99.73730906],[4.53638107,0.03558324,99.73681717],[4.53638152,0.03558499,99.73632392],[4.53638197,0.03558673,99.73582924],[4.53638242,0.03558848,99.73533309],[4.53638287,0.03559023,99.73483542],[4.53638332,0.03559197,99.73433619],[4.53638377,0.03559372,99.73383535],[4.53638422,0.03559547,99.73333293],[4.53638467,0.03559721,99.73282897],[4.53638512,0.03559896,99.7323235],[4.53638556,0.03560071,99.73181656],[4.53638601,0.03560245,99.73130818],[4.53638646,0.0356042,99.73079841],[4.53638691,0.03560595,99.73028727],[4.53638736,0.03560769,99.72977481],[4.53638781,0.03560944,99.72926105],[4.53638825,0.03561119,99.72874605],[4.5363887,0.03561294,99.72822984],[4.53638915,0.03561468,99.72771244],[4.5363896,0.03561643,99.72719391],[4.53639004,0.03561818,99.72667428],[4.53639049,0.03561992,99.72615358],[4.53639094,0.03562167,99.72563185],[4.53639139,0.03562342,99.72510913],[4.53639183,0.03562517,99.72458546],[4.53639228,0.03562691,99.72406088],[4.53639273,0.03562866,99.72353542],[4.53639318,0.03563041,99.72300913],[4.53639362,0.03563215,99.72248204],[4.53639407,0.0356339,99.72195418],[4.53639452,0.03563565,99.72142561],[4.53639497,0.03563739,99.72089635],[4.53639541,0.03563914,99.72036645],[4.53639586,0.03564089,99.71983594],[4.53639631,0.03564264,99.71930487],[4.53639676,0.03564438,99.71877328],[4.53639721,0.03564613,99.7182412],[4.53639765,0.03564788,99.71770868],[4.5363981,0.03564962,99.71717575],[4.53639855,0.03565137,99.71664247],[4.536399,0.03565312,99.71610887],[4.53639945,0.03565486,99.71557498],[4.5363999,0.03565661,99.71504082],[4.53640035,0.03565836,99.71450637],[4.5364008,0.0356601,99.71397165],[4.53640125,0.03566185,99.71343665],[4.5364017,0.0356636,99.71290136],[4.53640215,0.03566534,99.71236579],[4.5364026,0.03566709,99.71182994],[4.53640305,0.03566884,99.7112938],[4.5364035,0.03567058,99.71075737],[4.53640395,0.03567233,99.71022066],[4.5364044,0.03567407,99.70968366],[4.53640485,0.03567582,99.70914638],[4.5364053,0.03567757,99.7086088],[4.53640575,0.03567931,99.70807094],[4.5364062,0.03568106,99.70753278],[4.53640665,0.03568281,99.70699434],[4.5364071,0.03568455,99.7064556],[4.53640755,0.0356863,99.70591657],[4.536408,0.03568804,99.70537725],[4.53640846,0.03568979,99.70483763],[4.53640891,0.03569153,99.70429772],[4.53640936,0.03569328,99.70375751],[4.53640981,0.03569503,99.70321701],[4.53641026,0.03569677,99.70267622],[4.53641071,0.03569852,99.70213512],[4.53641117,0.03570026,99.70159373],[4.53641162,0.03570201,99.70105204],[4.53641207,0.03570376,99.70051006],[4.53641252,0.0357055,99.69996777],[4.53641298,0.03570725,99.69942519],[4.53641343,0.03570899,99.69888231],[4.53641388,0.03571074,99.69833913],[4.53641433,0.03571249,99.69779564],[4.53641479,0.03571423,99.69725186],[4.53641524,0.03571598,99.69670778],[4.53641569,0.03571772,99.69616339],[4.53641614,0.03571947,99.69561871],[4.5364166,0.03572121,99.69507372],[4.53641705,0.03572296,99.69452843],[4.5364175,0.03572471,99.69398284],[4.53641795,0.03572645,99.69343695],[4.53641841,0.0357282,99.69289075],[4.53641886,0.03572994,99.69234425],[4.53641931,0.03573169,99.69179745],[4.53641977,0.03573343,99.69125034],[4.53642022,0.03573518,99.69070293],[4.53642067,0.03573692,99.69015522],[4.53642112,0.03573867,99.6896072],[4.53642158,0.03574042,99.68905888],[4.53642203,0.03574216,99.68851026],[4.53642248,0.03574391,99.68796133],[4.53642294,0.03574565,99.6874121],[4.53642339,0.0357474,99.68686256],[4.53642384,0.03574914,99.68631272],[4.5364243,0.03575089,99.68576257],[4.53642475,0.03575264,99.68521212],[4.5364252,0.03575438,99.68466136],[4.53642565,0.03575613,99.6841103],[4.53642611,0.03575787,99.68355893],[4.53642656,0.03575962,99.68300726],[4.53642701,0.03576136,99.68245529],[4.53642747,0.03576311,99.681903],[4.53642792,0.03576486,99.68135042],[4.53642837,0.0357666,99.68079753],[4.53642882,0.03576835,99.68024432],[4.53642928,0.03577009,99.6796908],[4.53642973,0.03577184,99.67913693],[4.53643018,0.03577358,99.67858272],[4.53643064,0.03577533,99.67802814],[4.53643109,0.03577708,99.67747319],[4.53643154,0.03577882,99.67691785],[4.53643199,0.03578057,99.67636211],[4.53643245,0.03578231,99.67580595],[4.5364329,0.03578406,99.67524937],[4.53643335,0.0357858,99.67469234],[4.53643381,0.03578755,99.67413486],[4.53643426,0.0357893,99.67357692],[4.53643471,0.03579104,99.67301849],[4.53643516,0.03579279,99.67245957],[4.53643562,0.03579453,99.67190014],[4.53643607,0.03579628,99.6713402],[4.53643652,0.03579802,99.67077971],[4.53643698,0.03579977,99.67021869],[4.53643743,0.03580151,99.6696571],[4.53643788,0.03580326,99.66909493],[4.53643833,0.03580501,99.66853218],[4.53643879,0.03580675,99.66796882],[4.53643924,0.0358085,99.66740485],[4.53643969,0.03581024,99.66684025],[4.53644014,0.03581199,99.66627501],[4.5364406,0.03581374,99.66570911],[4.53644105,0.03581548,99.66514254],[4.5364415,0.03581723,99.66457528],[4.53644196,0.03581897,99.66400733],[4.53644241,0.03582072,99.66343866],[4.53644286,0.03582246,99.66286927],[4.53644331,0.03582421,99.66229913],[4.53644377,0.03582596,99.66172824],[4.53644422,0.0358277,99.66115658],[4.53644467,0.03582945,99.66058414],[4.53644512,0.03583119,99.6600109],[4.53644557,0.03583294,99.65943685],[4.53644603,0.03583468,99.65886197],[4.53644648,0.03583643,99.65828625],[4.53644693,0.03583818,99.65770968],[4.53644738,0.03583992,99.65713223],[4.53644784,0.03584167,99.6565539],[4.53644829,0.03584341,99.65597468],[4.53644874,0.03584516,99.65539454],[4.53644919,0.03584691,99.65481347],[4.53644964,0.03584865,99.65423145],[4.53645009,0.0358504,99.65364848],[4.53645055,0.03585214,99.65306454],[4.536451,0.03585389,99.65247961],[4.53645145,0.03585564,99.65189368],[4.5364519,0.03585738,99.65130674],[4.53645235,0.03585913,99.65071876],[4.5364528,0.03586087,99.65012973],[4.53645326,0.03586262,99.64953965],[4.53645371,0.03586437,99.64894848],[4.53645416,0.03586611,99.64835623],[4.53645461,0.03586786,99.64776287],[4.53645506,0.0358696,99.64716838],[4.53645551,0.03587135,99.64657276],[4.53645596,0.0358731,99.64597599],[4.53645641,0.03587484,99.64537805],[4.53645686,0.03587659,99.64477893],[4.53645731,0.03587834,99.64417861],[4.53645777,0.03588008,99.64357707],[4.53645822,0.03588183,99.64297431],[4.53645867,0.03588357,99.64237031],[4.53645912,0.03588532,99.64176504],[4.53645957,0.03588707,99.6411585],[4.53646002,0.03588881,99.64055068],[4.53646047,0.03589056,99.63994158],[4.53646092,0.03589231,99.63933121],[4.53646137,0.03589405,99.63871955],[4.53646182,0.0358958,99.63810662],[4.53646227,0.03589755,99.63749241],[4.53646272,0.03589929,99.63687693],[4.53646317,0.03590104,99.63626017],[4.53646362,0.03590279,99.63564214],[4.53646407,0.03590453,99.63502283],[4.53646452,0.03590628,99.63440224],[4.53646497,0.03590803,99.63378038],[4.53646542,0.03590977,99.63315724],[4.53646586,0.03591152,99.63253282],[4.53646631,0.03591327,99.63190713],[4.53646676,0.03591501,99.63128017],[4.53646721,0.03591676,99.63065192],[4.53646766,0.0359185,99.63002241],[4.53646811,0.03592025,99.62939161],[4.53646856,0.035922,99.62875954],[4.53646901,0.03592374,99.6281262],[4.53646946,0.03592549,99.62749158],[4.53646991,0.03592724,99.62685568],[4.53647036,0.03592898,99.62621851],[4.53647081,0.03593073,99.62558007],[4.53647126,0.03593248,99.62494035],[4.53647171,0.03593422,99.62429935],[4.53647216,0.03593597,99.62365709],[4.5364726,0.03593772,99.62301354],[4.53647305,0.03593946,99.62236873],[4.5364735,0.03594121,99.62172266],[4.53647395,0.03594296,99.62107534],[4.5364744,0.0359447,99.62042676],[4.53647485,0.03594645,99.61977695],[4.5364753,0.0359482,99.6191259],[4.53647575,0.03594994,99.61847362],[4.5364762,0.03595169,99.61782012],[4.53647665,0.03595344,99.61716541],[4.5364771,0.03595519,99.61650949],[4.53647755,0.03595693,99.61585237],[4.53647799,0.03595868,99.61519406],[4.53647844,0.03596043,99.61453456],[4.53647889,0.03596217,99.61387388],[4.53647934,0.03596392,99.61321202],[4.53647979,0.03596567,99.61254901],[4.53648024,0.03596741,99.61188483],[4.53648069,0.03596916,99.6112195],[4.53648114,0.03597091,99.61055303],[4.53648159,0.03597265,99.60988541],[4.53648204,0.0359744,99.60921667],[4.53648249,0.03597614,99.6085468],[4.53648294,0.03597789,99.60787582],[4.53648339,0.03597964,99.60720372],[4.53648384,0.03598138,99.60653053],[4.53648428,0.03598313,99.60585623],[4.53648473,0.03598488,99.60518085],[4.53648518,0.03598662,99.60450438],[4.53648563,0.03598837,99.60382684],[4.53648608,0.03599012,99.60314823],[4.53648653,0.03599186,99.60246856],[4.53648698,0.03599361,99.60178783],[4.53648743,0.03599536,99.60110606],[4.53648788,0.0359971,99.60042324],[4.53648833,0.03599885,99.5997394],[4.53648878,0.0360006,99.59905452],[4.53648923,0.03600234,99.59836863],[4.53648968,0.03600409,99.59768172],[4.53649013,0.03600584,99.59699381],[4.53649058,0.03600758,99.5963049],[4.53649103,0.03600933,99.595615],[4.53649148,0.03601108,99.59492412],[4.53649193,0.03601282,99.59423226],[4.53649238,0.03601457,99.59353942],[4.53649283,0.03601632,99.59284563],[4.53649328,0.03601806,99.59215087],[4.53649373,0.03601981,99.59145516],[4.53649418,0.03602155,99.5907585],[4.53649463,0.0360233,99.59006088],[4.53649508,0.03602505,99.58936232],[4.53649553,0.03602679,99.58866282],[4.53649598,0.03602854,99.58796238],[4.53649644,0.03603029,99.58726101],[4.53649689,0.03603203,99.5865587],[4.53649734,0.03603378,99.58585546],[4.53649779,0.03603552,99.5851513],[4.53649824,0.03603727,99.58444621],[4.53649869,0.03603902,99.58374021],[4.53649914,0.03604076,99.58303329],[4.53649959,0.03604251,99.58232546],[4.53650004,0.03604426,99.58161672],[4.53650049,0.036046,99.58090708],[4.53650095,0.03604775,99.58019652],[4.5365014,0.03604949,99.57948505],[4.53650185,0.03605124,99.57877262],[4.5365023,0.03605299,99.57805923],[4.53650275,0.03605473,99.57734484],[4.5365032,0.03605648,99.57662944],[4.53650365,0.03605823,99.575913],[4.53650411,0.03605997,99.5751955],[4.53650456,0.03606172,99.57447692],[4.53650501,0.03606346,99.57375724],[4.53650546,0.03606521,99.57303642],[4.53650591,0.03606696,99.57231446],[4.53650636,0.0360687,99.57159132],[4.53650681,0.03607045,99.57086698],[4.53650727,0.03607219,99.57014143],[4.53650772,0.03607394,99.56941464],[4.53650817,0.03607569,99.56868658],[4.53650862,0.03607743,99.56795724],[4.53650907,0.03607918,99.56722659],[4.53650952,0.03608092,99.56649461],[4.53650997,0.03608267,99.56576128],[4.53651042,0.03608442,99.56502657],[4.53651087,0.03608616,99.56429047],[4.53651132,0.03608791,99.56355294],[4.53651177,0.03608966,99.56281397],[4.53651223,0.0360914,99.56207354],[4.53651268,0.03609315,99.56133162],[4.53651313,0.0360949,99.56058819],[4.53651358,0.03609664,99.55984323],[4.53651403,0.03609839,99.55909672],[4.53651448,0.03610014,99.55834863],[4.53651493,0.03610188,99.55759895],[4.53651537,0.03610363,99.55684764],[4.53651582,0.03610538,99.5560947],[4.53651627,0.03610712,99.55534012],[4.53651672,0.03610887,99.55458389],[4.53651717,0.03611062,99.55382602],[4.53651762,0.03611236,99.5530665],[4.53651807,0.03611411,99.55230532],[4.53651852,0.03611586,99.55154249],[4.53651896,0.0361176,99.55077799],[4.53651941,0.03611935,99.55001183],[4.53651986,0.0361211,99.549244],[4.53652031,0.03612284,99.54847451],[4.53652076,0.03612459,99.54770338],[4.5365212,0.03612634,99.54693063],[4.53652165,0.03612809,99.54615629],[4.5365221,0.03612983,99.54538037],[4.53652254,0.03613158,99.54460289],[4.53652299,0.03613333,99.54382388],[4.53652344,0.03613507,99.54304335],[4.53652388,0.03613682,99.54226133],[4.53652433,0.03613857,99.54147784],[4.53652478,0.03614032,99.5406929],[4.53652522,0.03614206,99.53990652],[4.53652567,0.03614381,99.53911874],[4.53652612,0.03614556,99.53832957],[4.53652656,0.03614731,99.53753903],[4.53652701,0.03614905,99.53674714],[4.53652745,0.0361508,99.53595392],[4.5365279,0.03615255,99.5351594],[4.53652835,0.0361543,99.53436359],[4.53652879,0.03615604,99.53356652],[4.53652924,0.03615779,99.53276821],[4.53652968,0.03615954,99.53196867],[4.53653013,0.03616129,99.53116794],[4.53653058,0.03616304,99.53036602],[4.53653102,0.03616478,99.52956294],[4.53653147,0.03616653,99.52875872],[4.53653191,0.03616828,99.52795338],[4.53653236,0.03617003,99.52714694],[4.5365328,0.03617177,99.52633942],[4.53653325,0.03617352,99.52553085],[4.5365337,0.03617527,99.52472124],[4.53653414,0.03617702,99.52391061],[4.53653459,0.03617876,99.52309899],[4.53653503,0.03618051,99.5222864],[4.53653548,0.03618226,99.52147285],[4.53653593,0.03618401,99.52065836],[4.53653637,0.03618575,99.51984296],[4.53653682,0.0361875,99.51902667],[4.53653727,0.03618925,99.51820951],[4.53653771,0.036191,99.51739149],[4.53653816,0.03619274,99.51657264],[4.53653861,0.03619449,99.51575298],[4.53653905,0.03619624,99.51493253],[4.5365395,0.03619799,99.51411131],[4.53653995,0.03619973,99.51328934],[4.53654039,0.03620148,99.51246664],[4.53654084,0.03620323,99.51164322],[4.53654129,0.03620497,99.51081912],[4.53654174,0.03620672,99.50999435],[4.53654218,0.03620847,99.50916891],[4.53654263,0.03621022,99.50834281],[4.53654308,0.03621196,99.50751604],[4.53654353,0.03621371,99.50668858],[4.53654398,0.03621546,99.50586044],[4.53654443,0.0362172,99.5050316],[4.53654487,0.03621895,99.50420205],[4.53654532,0.0362207,99.5033718],[4.53654577,0.03622244,99.50254082],[4.53654622,0.03622419,99.50170912],[4.53654667,0.03622594,99.50087668],[4.53654712,0.03622768,99.5000435],[4.53654757,0.03622943,99.49920957],[4.53654802,0.03623118,99.49837491],[4.53654847,0.03623292,99.49753952],[4.53654891,0.03623467,99.49670344],[4.53654936,0.03623642,99.49586666],[4.53654981,0.03623816,99.4950292],[4.53655026,0.03623991,99.49419108],[4.53655071,0.03624166,99.49335231],[4.53655116,0.0362434,99.49251291],[4.53655161,0.03624515,99.49167289],[4.53655206,0.0362469,99.49083226],[4.53655251,0.03624864,99.48999104],[4.53655296,0.03625039,99.48914925],[4.53655341,0.03625214,99.48830689],[4.53655386,0.03625389,99.48746399],[4.5365543,0.03625563,99.48662055],[4.53655475,0.03625738,99.4857766],[4.5365552,0.03625913,99.48493214],[4.53655565,0.03626087,99.48408719],[4.5365561,0.03626262,99.48324176],[4.53655655,0.03626437,99.48239587],[4.536557,0.03626611,99.48154953],[4.53655745,0.03626786,99.48070275],[4.5365579,0.03626961,99.47985556],[4.53655835,0.03627135,99.47900795],[4.5365588,0.0362731,99.47815996],[4.53655924,0.03627485,99.47731159],[4.53655969,0.03627659,99.47646285],[4.53656014,0.03627834,99.47561376],[4.53656059,0.03628009,99.47476433],[4.53656104,0.03628183,99.47391458],[4.53656149,0.03628358,99.47306453],[4.53656194,0.03628533,99.47221417],[4.53656239,0.03628707,99.47136353],[4.53656283,0.03628882,99.47051263],[4.53656328,0.03629057,99.46966147],[4.53656373,0.03629232,99.46881007],[4.53656418,0.03629406,99.46795844],[4.53656463,0.03629581,99.4671066],[4.53656507,0.03629756,99.46625455],[4.53656552,0.0362993,99.46540232],[4.53656597,0.03630105,99.46454992],[4.53656642,0.0363028,99.46369735],[4.53656687,0.03630454,99.46284464],[4.53656731,0.03630629,99.4619918],[4.53656776,0.03630804,99.46113883],[4.53656821,0.03630979,99.46028576],[4.53656866,0.03631153,99.4594326],[4.5365691,0.03631328,99.45857935],[4.53656955,0.03631503,99.45772604],[4.53657,0.03631678,99.45687267],[4.53657044,0.03631852,99.45601926],[4.53657089,0.03632027,99.45516583],[4.53657134,0.03632202,99.45431238],[4.53657178,0.03632377,99.45345893],[4.53657223,0.03632551,99.45260549],[4.53657267,0.03632726,99.45175208],[4.53657312,0.03632901,99.45089871],[4.53657357,0.03633076,99.4500454],[4.53657401,0.0363325,99.44919217],[4.53657446,0.03633425,99.44833902],[4.5365749,0.036336,99.44748597],[4.53657535,0.03633775,99.44663305],[4.53657579,0.03633949,99.44578025],[4.53657624,0.03634124,99.4449276],[4.53657668,0.03634299,99.44407511],[4.53657713,0.03634474,99.4432228],[4.53657757,0.03634649,99.44237071],[4.53657802,0.03634823,99.44151889],[4.53657846,0.03634998,99.4406674],[4.5365789,0.03635173,99.43981627],[4.53657935,0.03635348,99.43896557],[4.53657979,0.03635523,99.43811535],[4.53658024,0.03635697,99.43726565],[4.53658068,0.03635872,99.43641652],[4.53658112,0.03636047,99.43556802],[4.53658157,0.03636222,99.4347202],[4.53658201,0.03636397,99.4338731],[4.53658245,0.03636572,99.43302677],[4.5365829,0.03636746,99.43218127],[4.53658334,0.03636921,99.43133665],[4.53658378,0.03637096,99.43049295],[4.53658423,0.03637271,99.42965022],[4.53658467,0.03637446,99.42880842],[4.53658511,0.03637621,99.42796743],[4.53658556,0.03637795,99.42712713],[4.536586,0.0363797,99.42628739],[4.53658645,0.03638145,99.42544808],[4.53658689,0.0363832,99.42460909],[4.53658733,0.03638495,99.42377029],[4.53658778,0.03638669,99.42293155],[4.53658822,0.03638844,99.42209276],[4.53658866,0.03639019,99.42125379],[4.53658911,0.03639194,99.42041452],[4.53658955,0.03639369,99.41957483],[4.53658999,0.03639544,99.41873459],[4.53659044,0.03639718,99.41789368],[4.53659088,0.03639893,99.41705199],[4.53659133,0.03640068,99.41620939],[4.53659177,0.03640243,99.41536577],[4.53659221,0.03640418,99.41452099],[4.53659266,0.03640592,99.41367495],[4.5365931,0.03640767,99.41282753],[4.53659355,0.03640942,99.41197859],[4.53659399,0.03641117,99.41112804],[4.53659443,0.03641292,99.41027574],[4.53659488,0.03641466,99.40942158],[4.53659532,0.03641641,99.40856545],[4.53659577,0.03641816,99.40770722],[4.53659621,0.03641991,99.40684678],[4.53659666,0.03642166,99.40598401],[4.5365971,0.0364234,99.40511879],[4.53659754,0.03642515,99.40425102],[4.53659799,0.0364269,99.40338056],[4.53659843,0.03642865,99.40250732],[4.53659888,0.0364304,99.40163117],[4.53659932,0.03643213,99.400752],[4.53659977,0.03643388,99.39986975],[4.53660021,0.03643563,99.39898456],[4.53660066,0.03643738,99.39809664],[4.5366011,0.03643913,99.39720619],[4.53660155,0.03644087,99.39631341],[4.53660199,0.03644262,99.3954185],[4.53660244,0.03644437,99.39452166],[4.53660288,0.03644612,99.39362308],[4.53660333,0.03644787,99.39272297],[4.53660377,0.03644961,99.39182153],[4.53660422,0.03645136,99.39091895],[4.53660466,0.03645311,99.39001539],[4.53660511,0.03645486,99.38911102],[4.53660556,0.0364566,99.388206],[4.536606,0.03645835,99.38730049],[4.53660645,0.0364601,99.38639464],[4.53660689,0.03646185,99.38548862],[4.53660734,0.0364636,99.38458258],[4.53660779,0.03646534,99.38367668],[4.53660823,0.03646709,99.38277107],[4.53660868,0.03646884,99.38186592],[4.53660912,0.03647059,99.38096137]],"type":"LineString"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":2,"type":"none","predecessorId":2}},{"geometry":{"coordinates":[[4.53588396,0.03417002,99.84168354],[4.53588348,0.03416828,99.84174466],[4.53588318,0.03416719,99.84178233]],"type":"LineString"},"type":"feature","properties":{"successorId":-6,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":-6,"type":"none","predecessorId":-6}},{"geometry":{"coordinates":[[4.53589868,0.03416601,99.84168354],[4.53589821,0.03416427,99.84174466],[4.53589791,0.03416318,99.84178233]],"type":"LineString"},"type":"feature","properties":{"successorId":-5,"level":true,"heights":[{"outer":0.15,"inner":0.025}],"roadId":"1004600","id":-5,"type":"border","predecessorId":-5}},{"geometry":{"coordinates":[[4.53589987,0.03416569,99.69168354],[4.53589939,0.03416395,99.69174466],[4.5358991,0.03416286,99.69178233]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-4,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-4,"type":"border","predecessorId":-4}},{"geometry":{"coordinates":[[4.53590419,0.03416451,99.70293243],[4.53590372,0.03416277,99.70298622],[4.53590342,0.03416168,99.70301931]],"type":"LineString"},"type":"feature","properties":{"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-3,"type":"stop","predecessorId":-3}},{"geometry":{"coordinates":[[4.53591991,0.03416024,99.74383283],[4.53591944,0.0341585,99.74387051],[4.53591915,0.0341574,99.74389358]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2}},{"geometry":{"coordinates":[[4.53595156,0.03415162,99.82619552],[4.5359511,0.03414988,99.82617982],[4.5359508,0.03414879,99.8261696]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}},{"geometry":{"coordinates":[[4.5359854,0.03413938,99.91608983],[4.5359857,0.03414047,99.91614968],[4.53598617,0.03414221,99.91624483]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":1,"type":"shoulder","predecessorId":1}},{"geometry":{"coordinates":[[4.53599821,0.03413589,99.94938569],[4.5359985,0.03413699,99.94943885],[4.53599896,0.03413873,99.94952346]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":false,"roadId":"1004600","id":2,"type":"border","predecessorId":2}},{"geometry":{"coordinates":[[4.53588318,0.03416719,99.84178233],[4.5358827,0.03416545,99.84184138],[4.53588221,0.03416372,99.84189904],[4.53588173,0.03416198,99.8419553],[4.53588125,0.03416024,99.84201013],[4.53588091,0.03415899,99.8420486]],"type":"LineString"},"type":"feature","properties":{"successorId":-6,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":-6,"type":"none","predecessorId":-6}},{"geometry":{"coordinates":[[4.53589791,0.03416318,99.84178233],[4.53589744,0.03416144,99.84184138],[4.53589697,0.0341597,99.84189904],[4.53589649,0.03415796,99.8419553],[4.53589602,0.03415622,99.84201013],[4.53589568,0.03415498,99.8420486]],"type":"LineString"},"type":"feature","properties":{"successorId":-5,"level":true,"heights":[{"outer":0.15,"inner":0.025}],"roadId":"1004600","id":-5,"type":"border","predecessorId":-5}},{"geometry":{"coordinates":[[4.5358991,0.03416286,99.69178233],[4.53589862,0.03416112,99.69184138],[4.53589815,0.03415938,99.69189904],[4.53589768,0.03415764,99.6919553],[4.5358972,0.0341559,99.69201013],[4.53589686,0.03415465,99.6920486]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-4,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-4,"type":"border","predecessorId":-4}},{"geometry":{"coordinates":[[4.53590342,0.03416168,99.70301931],[4.53590295,0.03415994,99.70307112],[4.53590247,0.0341582,99.7031216],[4.535902,0.03415646,99.70317072],[4.53590153,0.03415472,99.70321849],[4.53590119,0.03415348,99.70325192]],"type":"LineString"},"type":"feature","properties":{"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-3,"type":"stop","predecessorId":-3}},{"geometry":{"coordinates":[[4.53591915,0.0341574,99.74389358],[4.53591868,0.03415566,99.74393027],[4.53591821,0.03415392,99.74396583],[4.53591774,0.03415218,99.74400023],[4.53591727,0.03415044,99.74403346],[4.53591693,0.03414919,99.74405659]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2}},{"geometry":{"coordinates":[[4.5359508,0.03414879,99.8261696],[4.53595033,0.03414705,99.8261527],[4.53594986,0.03414531,99.82613508],[4.53594939,0.03414357,99.82611673],[4.53594892,0.03414183,99.82609766],[4.53594859,0.03414058,99.82608351]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}},{"geometry":{"coordinates":[[4.53598161,0.03413159,99.91164578],[4.53598195,0.03413284,99.91170682],[4.53598242,0.03413458,99.91179165],[4.53598289,0.03413632,99.91187621],[4.53598337,0.03413806,99.91196049],[4.53598384,0.0341398,99.91204452]],"type":"LineString"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":1,"type":"shoulder","predecessorId":0}},{"geometry":{"coordinates":[[4.53598316,0.03413117,99.91567898],[4.5359835,0.03413242,99.91574184],[4.53598398,0.03413416,99.91582921],[4.53598445,0.0341359,99.91591633],[4.53598492,0.03413764,99.91600321],[4.5359854,0.03413938,99.91608983]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":2,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":2,"type":"border","predecessorId":0}},{"geometry":{"coordinates":[[4.53598444,0.03413082,100.06567898],[4.53598479,0.03413207,99.91574184],[4.53598527,0.03413381,99.91582921],[4.53598574,0.03413555,99.91591633],[4.53598622,0.03413728,99.91600321],[4.5359867,0.03413902,99.91608983]],"type":"LineString"},"type":"feature","properties":{"successorId":3,"level":true,"heights":[{"outer":0.0,"inner":0.0},{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":3,"type":"border","predecessorId":0}},{"geometry":{"coordinates":[[4.53599602,0.03412767,100.06567898],[4.53599636,0.03412892,100.06574184],[4.53599682,0.03413066,100.06582921],[4.53599729,0.0341324,100.06591633],[4.53599775,0.03413415,100.06600321],[4.53599822,0.03413589,100.06608983]],"type":"LineString"},"type":"feature","properties":{"successorId":4,"level":true,"heights":[{"outer":0.15,"inner":0.15},{"outer":0.15,"inner":0.025}],"roadId":"1004600","id":4,"type":"border","predecessorId":0}},{"geometry":{"coordinates":[[4.53588091,0.03415899,99.8420486],[4.53588043,0.03415726,99.84209702],[4.53587995,0.03415552,99.842144],[4.53587947,0.03415378,99.84218952],[4.53587898,0.03415205,99.84223357],[4.5358785,0.03415031,99.84227614],[4.53587802,0.03414857,99.84231722],[4.53587754,0.03414683,99.8423568],[4.53587706,0.0341451,99.84239487],[4.53587658,0.03414336,99.84243141],[4.5358761,0.03414162,99.84246641],[4.53587562,0.03413988,99.84249986],[4.53587514,0.03413815,99.84253176],[4.53587466,0.03413641,99.84256208],[4.53587418,0.03413467,99.84259081],[4.5358737,0.03413294,99.84261795],[4.53587321,0.0341312,99.84264349],[4.53587294,0.03413022,99.84265719]],"type":"LineString"},"type":"feature","properties":{"successorId":-6,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":-6,"type":"none","predecessorId":-6}},{"geometry":{"coordinates":[[4.53589568,0.03415498,99.8420486],[4.53589521,0.03415324,99.84209702],[4.53589473,0.0341515,99.842144],[4.53589426,0.03414976,99.84218952],[4.53589379,0.03414802,99.84223357],[4.53589331,0.03414628,99.84227614],[4.53589284,0.03414454,99.84231722],[4.53589237,0.0341428,99.8423568],[4.53589189,0.03414106,99.84239487],[4.53589142,0.03413932,99.84243141],[4.53589094,0.03413758,99.84246641],[4.53589047,0.03413584,99.84249986],[4.53589,0.0341341,99.84253176],[4.53588952,0.03413236,99.84256208],[4.53588905,0.03413062,99.84259081],[4.53588858,0.03412889,99.84261795],[4.5358881,0.03412715,99.84264349],[4.53588784,0.03412616,99.84265719]],"type":"LineString"},"type":"feature","properties":{"successorId":-5,"level":true,"heights":[{"outer":0.15,"inner":0.025}],"roadId":"1004600","id":-5,"type":"border","predecessorId":-5}},{"geometry":{"coordinates":[[4.53589686,0.03415465,99.6920486],[4.53589639,0.03415291,99.69209702],[4.53589591,0.03415117,99.692144],[4.53589544,0.03414944,99.69218952],[4.53589497,0.0341477,99.69223357],[4.53589449,0.03414596,99.69227614],[4.53589402,0.03414422,99.69231722],[4.53589354,0.03414248,99.6923568],[4.53589307,0.03414074,99.69239487],[4.53589259,0.034139,99.69243141],[4.53589212,0.03413726,99.69246641],[4.53589164,0.03413552,99.69249986],[4.53589117,0.03413378,99.69253176],[4.53589069,0.03413205,99.69256208],[4.53589022,0.03413031,99.69259081],[4.53588974,0.03412857,99.69261795],[4.53588927,0.03412683,99.69264349],[4.535889,0.03412585,99.69265719]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-4,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-4,"type":"border","predecessorId":-4}},{"geometry":{"coordinates":[[4.53590119,0.03415348,99.70325192],[4.53590071,0.03415174,99.70329338],[4.53590024,0.03415,99.70333345],[4.53589976,0.03414826,99.70337213],[4.53589929,0.03414652,99.7034094],[4.53589881,0.03414478,99.70344525],[4.53589834,0.03414304,99.70347967],[4.53589786,0.0341413,99.70351264],[4.53589739,0.03413956,99.70354417],[4.53589692,0.03413782,99.70357423],[4.53589644,0.03413609,99.70360282],[4.53589597,0.03413435,99.70362992],[4.53589549,0.03413261,99.70365553],[4.53589502,0.03413087,99.70367962],[4.53589454,0.03412913,99.7037022],[4.53589407,0.03412739,99.70372324],[4.53589359,0.03412565,99.70374275],[4.53589332,0.03412467,99.70375308]],"type":"LineString"},"type":"feature","properties":{"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-3,"type":"stop","predecessorId":-3}},{"geometry":{"coordinates":[[4.53591693,0.03414919,99.74405659],[4.53591647,0.03414745,99.74409211],[4.535916,0.03414571,99.74412644],[4.53591553,0.03414397,99.74415956],[4.53591507,0.03414223,99.74419148],[4.5359146,0.03414049,99.74422217],[4.53591413,0.03413874,99.74425163],[4.53591366,0.034137,99.74427985],[4.5359132,0.03413526,99.74430682],[4.53591273,0.03413352,99.74433254],[4.53591226,0.03413178,99.74435698],[4.53591179,0.03413004,99.74438015],[4.53591133,0.0341283,99.74440203],[4.53591086,0.03412656,99.74442261],[4.53591039,0.03412481,99.74444189],[4.53590992,0.03412307,99.74445986],[4.53590946,0.03412133,99.7444765],[4.53590919,0.03412035,99.7444853]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2}},{"geometry":{"coordinates":[[4.53594859,0.03414058,99.82608351],[4.53594812,0.03413884,99.82606423],[4.53594765,0.0341371,99.8260442],[4.53594718,0.03413535,99.82602342],[4.53594671,0.03413361,99.82600186],[4.53594625,0.03413187,99.82597953],[4.53594578,0.03413013,99.82595643],[4.53594531,0.03412839,99.82593254],[4.53594484,0.03412665,99.82590785],[4.53594437,0.03412491,99.82588237],[4.5359439,0.03412317,99.82585608],[4.53594343,0.03412143,99.82582898],[4.53594296,0.03411969,99.82580106],[4.53594249,0.03411794,99.82577232],[4.53594203,0.0341162,99.82574274],[4.53594156,0.03411446,99.82571233],[4.53594109,0.03411272,99.82568107],[4.53594082,0.03411174,99.82566304]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}},{"geometry":{"coordinates":[[4.53597377,0.03410277,99.91022174],[4.53597404,0.03410375,99.91027174],[4.53597451,0.03410549,99.91036001],[4.53597498,0.03410723,99.91044795],[4.53597546,0.03410897,99.91053556],[4.53597593,0.03411071,99.91062283],[4.5359764,0.03411245,99.91070978],[4.53597688,0.03411419,99.91079641],[4.53597735,0.03411593,99.91088272],[4.53597782,0.03411767,99.91096872],[4.5359783,0.03411941,99.9110544],[4.53597877,0.03412115,99.91113978],[4.53597924,0.03412289,99.91122485],[4.53597972,0.03412463,99.91130962],[4.53598019,0.03412637,99.9113941],[4.53598066,0.03412811,99.91147828],[4.53598113,0.03412985,99.91156217],[4.53598161,0.03413159,99.91164578]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":1,"type":"shoulder","predecessorId":1}},{"geometry":{"coordinates":[[4.53597533,0.03410235,99.91421625],[4.53597559,0.03410333,99.91426746],[4.53597607,0.03410507,99.91435791],[4.53597654,0.03410681,99.91444804],[4.53597701,0.03410855,99.91453786],[4.53597749,0.03411029,99.91462738],[4.53597796,0.03411203,99.9147166],[4.53597843,0.03411377,99.91480551],[4.53597891,0.03411551,99.91489413],[4.53597938,0.03411725,99.91498246],[4.53597985,0.03411899,99.9150705],[4.53598033,0.03412073,99.91515826],[4.5359808,0.03412247,99.91524573],[4.53598127,0.03412421,99.91533292],[4.53598174,0.03412595,99.91541984],[4.53598222,0.03412769,99.91550649],[4.53598269,0.03412943,99.91559287],[4.53598316,0.03413117,99.91567898]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":2,"type":"border","predecessorId":2}},{"geometry":{"coordinates":[[4.53597659,0.034102,100.06421625],[4.53597686,0.03410298,100.06426746],[4.53597733,0.03410472,100.06435791],[4.53597781,0.03410646,100.06444804],[4.53597828,0.0341082,100.06453786],[4.53597876,0.03410994,100.06462738],[4.53597923,0.03411168,100.0647166],[4.5359797,0.03411342,100.06480551],[4.53598018,0.03411516,100.06489413],[4.53598065,0.0341169,100.06498246],[4.53598113,0.03411864,100.0650705],[4.5359816,0.03412038,100.06515826],[4.53598207,0.03412212,100.06524573],[4.53598255,0.03412386,100.06533292],[4.53598302,0.0341256,100.06541984],[4.5359835,0.03412734,100.06550649],[4.53598397,0.03412908,100.06559287],[4.53598444,0.03413082,100.06567898]],"type":"LineString"},"type":"feature","properties":{"successorId":2,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":3,"type":"border","predecessorId":3}},{"geometry":{"coordinates":[[4.53598833,0.03409881,100.06421625],[4.53598859,0.03409979,100.06426746],[4.53598906,0.03410153,100.06435791],[4.53598952,0.03410327,100.06444804],[4.53598999,0.03410502,100.06453786],[4.53599045,0.03410676,100.06462738],[4.53599092,0.0341085,100.0647166],[4.53599138,0.03411024,100.06480551],[4.53599185,0.03411199,100.06489413],[4.53599231,0.03411373,100.06498246],[4.53599277,0.03411547,100.0650705],[4.53599324,0.03411721,100.06515826],[4.5359937,0.03411896,100.06524573],[4.53599417,0.0341207,100.06533292],[4.53599463,0.03412244,100.06541984],[4.5359951,0.03412418,100.06550649],[4.53599556,0.03412593,100.06559287],[4.53599602,0.03412767,100.06567898]],"type":"LineString"},"type":"feature","properties":{"successorId":3,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":4,"type":"border","predecessorId":4}},{"geometry":{"coordinates":[[4.53587294,0.03413022,99.84265719],[4.53587246,0.03412848,99.84268195],[4.53587198,0.03412674,99.84270508],[4.5358715,0.03412501,99.84272655],[4.53587102,0.03412327,99.84274636],[4.53587081,0.03412249,99.84275471]],"type":"LineString"},"type":"feature","properties":{"successorId":-6,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":-6,"type":"none","predecessorId":-6}},{"geometry":{"coordinates":[[4.53588784,0.03412616,99.84265719],[4.53588736,0.03412442,99.84268195],[4.53588689,0.03412269,99.84270508],[4.53588642,0.03412095,99.84272655],[4.53588594,0.03411921,99.84274636],[4.53588573,0.03411843,99.84275471]],"type":"LineString"},"type":"feature","properties":{"successorId":-5,"level":true,"heights":[{"outer":0.15,"inner":0.025}],"roadId":"1004600","id":-5,"type":"border","predecessorId":-5}},{"geometry":{"coordinates":[[4.535889,0.03412585,99.69265719],[4.53588852,0.03412411,99.69268195],[4.53588805,0.03412237,99.69270508],[4.53588758,0.03412063,99.69272655],[4.5358871,0.03411889,99.69274636],[4.53588689,0.03411811,99.69275471]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-4,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-4,"type":"border","predecessorId":-4}},{"geometry":{"coordinates":[[4.53589332,0.03412467,99.70375308],[4.53589285,0.03412293,99.7037719],[4.53589237,0.03412119,99.70378916],[4.5358919,0.03411945,99.70380483],[4.53589142,0.03411771,99.70381892],[4.53589121,0.03411693,99.70382472]],"type":"LineString"},"type":"feature","properties":{"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-3,"type":"stop","predecessorId":-3}},{"geometry":{"coordinates":[[4.53590919,0.03412035,99.7444853],[4.53590873,0.03411861,99.74450526],[4.53590826,0.03411687,99.74452385],[4.5359078,0.03411512,99.74454109],[4.53590733,0.03411338,99.74455695],[4.53590712,0.0341126,99.74456363]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2}},{"geometry":{"coordinates":[[4.53594082,0.03411174,99.82566304],[4.53594035,0.03411,99.82563265],[4.53593989,0.03410826,99.82560139],[4.53593942,0.03410652,99.82556926],[4.53593895,0.03410477,99.82553626],[4.53593874,0.03410399,99.82552116]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}},{"geometry":{"coordinates":[[4.53597322,0.0340946,99.91382116],[4.53597344,0.03409538,99.91386132],[4.53597391,0.03409712,99.91395055],[4.53597438,0.03409887,99.91403944],[4.53597485,0.03410061,99.91412801],[4.53597533,0.03410235,99.91421625]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":1,"type":"shoulder","predecessorId":0}},{"geometry":{"coordinates":[[4.5359745,0.03409426,100.06382116],[4.53597471,0.03409504,100.06386132],[4.53597518,0.03409678,100.06395055],[4.53597565,0.03409852,100.06403944],[4.53597612,0.03410026,100.06412801],[4.53597659,0.034102,100.06421625]],"type":"LineString"},"type":"feature","properties":{"successorId":2,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":2,"type":"border","predecessorId":3}},{"geometry":{"coordinates":[[4.53598626,0.03409105,100.06382116],[4.53598647,0.03409184,100.06386132],[4.53598694,0.03409358,100.06395055],[4.5359874,0.03409532,100.06403944],[4.53598787,0.03409706,100.06412801],[4.53598833,0.03409881,100.06421625]],"type":"LineString"},"type":"feature","properties":{"successorId":3,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":3,"type":"border","predecessorId":4}},{"geometry":{"coordinates":[[4.53587081,0.03412249,99.84275471],[4.53587033,0.03412075,99.84277488],[4.53586985,0.03411901,99.84279337],[4.53586937,0.03411728,99.8428102],[4.53586889,0.03411554,99.84282535],[4.53586841,0.0341138,99.84283882],[4.53586793,0.03411206,99.84285062],[4.53586745,0.03411033,99.84286074],[4.53586697,0.03410859,99.84286918],[4.53586649,0.03410685,99.84287593],[4.53586601,0.03410511,99.842881],[4.53586553,0.03410338,99.84288438],[4.53586505,0.03410164,99.84288608],[4.53586457,0.0340999,99.84288607],[4.53586409,0.03409816,99.84288438],[4.53586361,0.03409643,99.84288099],[4.53586313,0.03409469,99.8428759],[4.53586265,0.03409295,99.84286913],[4.53586265,0.03409294,99.84286909]],"type":"LineString"},"type":"feature","properties":{"successorId":-6,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":-6,"type":"border","predecessorId":-6}},{"geometry":{"coordinates":[[4.53588573,0.03411843,99.84275471],[4.53588526,0.03411669,99.84277488],[4.53588478,0.03411495,99.84279337],[4.53588431,0.03411321,99.8428102],[4.53588384,0.03411147,99.84282535],[4.53588336,0.03410973,99.84283882],[4.53588289,0.03410799,99.84285062],[4.53588242,0.03410625,99.84286074],[4.53588194,0.03410451,99.84286918],[4.53588147,0.03410277,99.84287593],[4.535881,0.03410103,99.842881],[4.53588052,0.03409929,99.84288438],[4.53588005,0.03409755,99.84288608],[4.53587958,0.03409581,99.84288607],[4.5358791,0.03409408,99.84288438],[4.53587863,0.03409234,99.84288099],[4.53587815,0.0340906,99.8428759],[4.53587768,0.03408886,99.84286913],[4.53587768,0.03408885,99.84286909]],"type":"LineString"},"type":"feature","properties":{"successorId":-5,"level":true,"heights":[{"outer":0.15,"inner":0.025}],"roadId":"1004600","id":-5,"type":"border","predecessorId":-5}},{"geometry":{"coordinates":[[4.53588689,0.03411811,99.69275471],[4.53588641,0.03411637,99.69277488],[4.53588594,0.03411463,99.69279337],[4.53588547,0.03411289,99.6928102],[4.53588499,0.03411115,99.69282535],[4.53588452,0.03410941,99.69283882],[4.53588405,0.03410768,99.69285062],[4.53588357,0.03410594,99.69286074],[4.5358831,0.0341042,99.69286918],[4.53588262,0.03410246,99.69287593],[4.53588215,0.03410072,99.692881],[4.53588167,0.03409898,99.69288438],[4.5358812,0.03409724,99.69288608],[4.53588073,0.0340955,99.69288607],[4.53588025,0.03409376,99.69288438],[4.53587978,0.03409202,99.69288099],[4.5358793,0.03409028,99.6928759],[4.53587883,0.03408855,99.69286913],[4.53587882,0.03408854,99.69286909]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-4,"type":"border","predecessorId":-4}},{"geometry":{"coordinates":[[4.53589121,0.03411693,99.70382472],[4.53589074,0.03411519,99.70383924],[4.53589026,0.03411345,99.70385217],[4.53588979,0.03411172,99.70386349],[4.53588932,0.03410998,99.7038732],[4.53588884,0.03410824,99.70388131],[4.53588837,0.0341065,99.7038878],[4.53588789,0.03410476,99.70389268],[4.53588742,0.03410302,99.70389594],[4.53588695,0.03410128,99.70389759],[4.53588647,0.03409954,99.70389761],[4.535886,0.0340978,99.70389601],[4.53588552,0.03409606,99.70389278],[4.53588505,0.03409432,99.70388793],[4.53588457,0.03409259,99.70388144],[4.5358841,0.03409085,99.70387333],[4.53588362,0.03408911,99.70386358],[4.53588315,0.03408737,99.70385221],[4.53588315,0.03408736,99.70385215]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-3,"type":"stop","predecessorId":-3}},{"geometry":{"coordinates":[[4.53590712,0.0341126,99.74456363],[4.53590666,0.03411086,99.74458324],[4.53590619,0.03410912,99.74460147],[4.53590573,0.03410737,99.74461831],[4.53590527,0.03410563,99.74463376],[4.5359048,0.03410389,99.74464782],[4.53590434,0.03410215,99.74466048],[4.53590388,0.03410041,99.74467175],[4.53590341,0.03409866,99.74468162],[4.53590295,0.03409692,99.74469009],[4.53590248,0.03409518,99.74469715],[4.53590202,0.03409344,99.74470281],[4.53590155,0.0340917,99.74470705],[4.53590109,0.03408995,99.74470988],[4.53590063,0.03408821,99.7447113],[4.53590016,0.03408647,99.7447113],[4.5358997,0.03408473,99.74470988],[4.53589923,0.03408299,99.74470706],[4.53589923,0.03408298,99.74470704]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2}},{"geometry":{"coordinates":[[4.53593874,0.03410399,99.82552116],[4.53593827,0.03410225,99.82548928],[4.5359378,0.03410051,99.82545652],[4.53593734,0.03409877,99.82542286],[4.53593687,0.03409703,99.82538831],[4.5359364,0.03409529,99.82535285],[4.53593593,0.03409355,99.82531649],[4.53593546,0.0340918,99.82527922],[4.535935,0.03409006,99.82524104],[4.53593453,0.03408832,99.82520194],[4.53593406,0.03408658,99.82516191],[4.53593359,0.03408484,99.82512096],[4.53593312,0.0340831,99.82507908],[4.53593265,0.03408136,99.82503627],[4.53593219,0.03407962,99.82499251],[4.53593172,0.03407788,99.82494782],[4.53593125,0.03407613,99.82490218],[4.53593078,0.03407439,99.8248556],[4.53593078,0.03407438,99.82485534]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}},{"geometry":{"coordinates":[[4.53596524,0.03406499,99.91241982],[4.53596525,0.034065,99.91242029],[4.53596572,0.03406675,99.91250599],[4.53596619,0.03406849,99.91259127],[4.53596666,0.03407023,99.91267611],[4.53596713,0.03407197,99.91276052],[4.53596759,0.03407371,99.9128445],[4.53596806,0.03407545,99.91292806],[4.53596853,0.03407719,99.91301121],[4.535969,0.03407893,99.91309395],[4.53596947,0.03408067,99.91317629],[4.53596994,0.03408241,99.91325823],[4.53597041,0.03408416,99.91333977],[4.53597088,0.0340859,99.91342094],[4.53597135,0.03408764,99.91350172],[4.53597182,0.03408938,99.91358213],[4.53597229,0.03409112,99.91366216],[4.53597275,0.03409286,99.91374184],[4.53597322,0.0340946,99.91382116]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":1,"type":"shoulder","predecessorId":1}},{"geometry":{"coordinates":[[4.53596655,0.03406464,100.06241982],[4.53596655,0.03406465,100.06242029],[4.53596702,0.03406639,100.06250599],[4.53596749,0.03406813,100.06259127],[4.53596796,0.03406987,100.06267611],[4.53596842,0.03407161,100.06276052],[4.53596889,0.03407336,100.0628445],[4.53596936,0.0340751,100.06292806],[4.53596983,0.03407684,100.06301121],[4.53597029,0.03407858,100.06309395],[4.53597076,0.03408032,100.06317629],[4.53597123,0.03408206,100.06325823],[4.5359717,0.03408381,100.06333977],[4.53597216,0.03408555,100.06342094],[4.53597263,0.03408729,100.06350172],[4.5359731,0.03408903,100.06358213],[4.53597356,0.03409077,100.06366216],[4.53597403,0.03409251,100.06374184],[4.5359745,0.03409426,100.06382116]],"type":"LineString"},"type":"feature","properties":{"successorId":2,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":2,"type":"border","predecessorId":2}},{"geometry":{"coordinates":[[4.53597835,0.03406142,100.06241982],[4.53597835,0.03406143,100.06242029],[4.53597882,0.03406318,100.06250599],[4.53597928,0.03406492,100.06259127],[4.53597975,0.03406666,100.06267611],[4.53598022,0.0340684,100.06276052],[4.53598068,0.03407014,100.0628445],[4.53598115,0.03407189,100.06292806],[4.53598161,0.03407363,100.06301121],[4.53598208,0.03407537,100.06309395],[4.53598254,0.03407711,100.06317629],[4.53598301,0.03407886,100.06325823],[4.53598347,0.0340806,100.06333977],[4.53598394,0.03408234,100.06342094],[4.5359844,0.03408408,100.06350172],[4.53598487,0.03408583,100.06358213],[4.53598533,0.03408757,100.06366216],[4.5359858,0.03408931,100.06374184],[4.53598626,0.03409105,100.06382116]],"type":"LineString"},"type":"feature","properties":{"successorId":3,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":3,"type":"border","predecessorId":3}},{"geometry":{"coordinates":[[4.53586265,0.03409294,99.84286909],[4.53586218,0.0340912,99.84286315],[4.5358617,0.03408946,99.84285553],[4.53586123,0.03408772,99.84284625],[4.53586076,0.03408598,99.84283531],[4.53586029,0.03408425,99.84282271],[4.53585997,0.03408307,99.84281324]],"type":"LineString"},"type":"feature","properties":{"successorId":-6,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":-6,"type":"border","predecessorId":-6}},{"geometry":{"coordinates":[[4.53587768,0.03408885,99.84286909],[4.5358772,0.03408711,99.84286315],[4.53587673,0.03408537,99.84285553],[4.53587626,0.03408363,99.84284625],[4.53587578,0.03408189,99.84283531],[4.53587531,0.03408015,99.84282271],[4.53587499,0.03407897,99.84281324]],"type":"LineString"},"type":"feature","properties":{"successorId":-5,"level":true,"heights":[{"outer":0.15,"inner":0.025}],"roadId":"1004600","id":-5,"type":"border","predecessorId":-5}},{"geometry":{"coordinates":[[4.53587882,0.03408854,99.69286909],[4.53587835,0.0340868,99.69286315],[4.53587788,0.03408506,99.69285553],[4.5358774,0.03408332,99.69284625],[4.53587693,0.03408158,99.69283531],[4.53587645,0.03407984,99.69282271],[4.53587613,0.03407866,99.69281324]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-4,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-4,"type":"border","predecessorId":0}},{"geometry":{"coordinates":[[4.53588185,0.03408771,99.70055723],[4.53588138,0.03408597,99.70054811],[4.5358809,0.03408423,99.70053737],[4.53588043,0.03408249,99.700525],[4.53587995,0.03408076,99.70051102],[4.53587948,0.03407902,99.70049542],[4.53587916,0.03407784,99.70048394]],"type":"LineString"},"type":"feature","properties":{"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-3,"type":"stop","predecessorId":0}},{"geometry":{"coordinates":[[4.53589923,0.03408298,99.74470704],[4.53589877,0.03408124,99.74470862],[4.5358983,0.03407949,99.74470881],[4.53589784,0.03407775,99.7447076],[4.53589738,0.03407601,99.74470501],[4.53589691,0.03407427,99.74470103],[4.5358966,0.03407308,99.74469755]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2}},{"geometry":{"coordinates":[[4.53593078,0.03407438,99.82485534],[4.53593031,0.03407264,99.82481011],[4.53592984,0.0340709,99.82476395],[4.53592937,0.03406916,99.82471686],[4.5359289,0.03406742,99.82466885],[4.53592844,0.03406568,99.82461993],[4.53592812,0.0340645,99.82458625]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}},{"geometry":{"coordinates":[[4.53596259,0.0340551,99.9119719],[4.53596291,0.03405629,99.9120261],[4.53596338,0.03405803,99.91210569],[4.53596384,0.03405977,99.91218486],[4.53596431,0.03406151,99.9122636],[4.53596478,0.03406325,99.91234193],[4.53596524,0.03406499,99.91241982]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":1,"type":"shoulder","predecessorId":1}},{"geometry":{"coordinates":[[4.5359639,0.03405475,100.0619719],[4.53596422,0.03405593,100.0620261],[4.53596468,0.03405767,100.06210569],[4.53596515,0.03405941,100.06218486],[4.53596562,0.03406115,100.0622636],[4.53596608,0.0340629,100.06234193],[4.53596655,0.03406464,100.06241982]],"type":"LineString"},"type":"feature","properties":{"successorId":2,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":2,"type":"border","predecessorId":2}},{"geometry":{"coordinates":[[4.5359757,0.03405153,100.0619719],[4.53597602,0.03405271,100.0620261],[4.53597648,0.03405446,100.06210569],[4.53597695,0.0340562,100.06218486],[4.53597742,0.03405794,100.0622636],[4.53597788,0.03405968,100.06234193],[4.53597835,0.03406142,100.06241982]],"type":"LineString"},"type":"feature","properties":{"successorId":3,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":3,"type":"border","predecessorId":3}},{"geometry":{"coordinates":[[4.53585997,0.03408307,99.84281324],[4.5358595,0.03408132,99.84279893],[4.53585903,0.03407958,99.84278397],[4.53585857,0.03407784,99.84276834],[4.5358581,0.0340761,99.84275201],[4.53585763,0.03407436,99.84273497],[4.53585716,0.03407262,99.84271721],[4.53585669,0.03407088,99.84269869],[4.53585622,0.03406914,99.84267941],[4.53585575,0.0340674,99.84265934],[4.53585528,0.03406566,99.84263847],[4.53585481,0.03406392,99.84261678],[4.53585434,0.03406218,99.84259424],[4.53585387,0.03406044,99.84257085],[4.5358534,0.0340587,99.84254658],[4.53585293,0.03405696,99.84252142],[4.53585246,0.03405522,99.84249535],[4.53585199,0.03405348,99.84246834],[4.53585152,0.03405174,99.84244038],[4.53585105,0.03405,99.84241146],[4.53585058,0.03404826,99.84238156],[4.53585011,0.03404652,99.84235065],[4.53584964,0.03404478,99.84231872],[4.53584917,0.03404304,99.84228575],[4.5358487,0.0340413,99.84225173],[4.53584823,0.03403956,99.84221663],[4.53584776,0.03403782,99.84218045],[4.53584729,0.03403608,99.84214315],[4.53584681,0.03403434,99.84210472],[4.53584634,0.0340326,99.84206516],[4.53584587,0.03403086,99.84202443],[4.5358454,0.03402912,99.84198252],[4.53584493,0.03402739,99.84193941],[4.53584446,0.03402565,99.84189509],[4.53584399,0.03402391,99.84184954],[4.53584352,0.03402217,99.84180274],[4.53584305,0.03402043,99.84175467],[4.53584258,0.03401869,99.84170532],[4.53584211,0.03401695,99.84165466],[4.53584164,0.03401521,99.84160269],[4.53584117,0.03401347,99.84154938],[4.5358407,0.03401173,99.84149471],[4.53584022,0.03400999,99.84143868],[4.53583975,0.03400825,99.84138125],[4.53583928,0.03400651,99.84132242],[4.53583881,0.03400477,99.84126217],[4.53583835,0.03400303,99.84120048],[4.53583788,0.03400129,99.84113733],[4.53583741,0.03399955,99.8410727],[4.53583694,0.03399781,99.84100658],[4.53583647,0.03399607,99.84093895],[4.535836,0.03399433,99.8408698],[4.53583553,0.03399259,99.8407991],[4.53583506,0.03399085,99.84072684],[4.53583459,0.03398911,99.840653],[4.53583412,0.03398737,99.84057756],[4.53583365,0.03398563,99.84050054],[4.53583318,0.03398389,99.84042193],[4.53583271,0.03398215,99.84034176],[4.53583224,0.03398041,99.84026006],[4.53583177,0.03397867,99.84017683],[4.5358313,0.03397693,99.8400921],[4.53583083,0.03397519,99.84000588],[4.53583037,0.03397345,99.83991819],[4.5358299,0.03397171,99.83982906],[4.53582943,0.03396997,99.83973849],[4.53582896,0.03396823,99.83964651],[4.53582849,0.03396649,99.83955313],[4.53582802,0.03396475,99.83945838],[4.53582755,0.03396301,99.83936227],[4.53582708,0.03396127,99.83926482],[4.53582661,0.03395953,99.83916604],[4.53582614,0.03395779,99.83906596],[4.53582567,0.03395605,99.8389646],[4.53582521,0.03395431,99.83886196],[4.53582474,0.03395257,99.83875808],[4.53582427,0.03395083,99.83865296],[4.5358238,0.03394909,99.83854663],[4.53582333,0.03394735,99.83843911],[4.53582286,0.03394561,99.8383304],[4.53582239,0.03394387,99.83822054],[4.53582192,0.03394213,99.83810954],[4.53582146,0.03394038,99.83799741],[4.53582099,0.03393864,99.83788418],[4.53582052,0.0339369,99.83776986],[4.53582005,0.03393516,99.83765447],[4.53581958,0.03393342,99.83753804],[4.53581912,0.03393168,99.83742057],[4.53581865,0.03392994,99.83730208],[4.53581818,0.0339282,99.8371826],[4.53581771,0.03392646,99.83706214],[4.53581724,0.03392472,99.83694072],[4.53581678,0.03392298,99.83681836],[4.53581631,0.03392124,99.83669508],[4.53581584,0.0339195,99.83657089],[4.53581537,0.03391776,99.8364458],[4.53581491,0.03391602,99.83631983],[4.53581444,0.03391428,99.83619299],[4.53581397,0.03391254,99.83606529],[4.53581351,0.0339108,99.83593673],[4.53581304,0.03390906,99.83580734],[4.53581257,0.03390732,99.83567712],[4.5358121,0.03390558,99.83554609],[4.53581164,0.03390384,99.83541425],[4.53581117,0.0339021,99.83528161],[4.5358107,0.03390035,99.8351482],[4.53581024,0.03389861,99.83501401],[4.53580977,0.03389687,99.83487907],[4.53580931,0.03389513,99.83474338],[4.53580884,0.03389339,99.83460696],[4.53580837,0.03389165,99.83446981],[4.53580791,0.03388991,99.83433194],[4.53580744,0.03388817,99.83419338],[4.53580697,0.03388643,99.83405413],[4.53580651,0.03388469,99.8339142],[4.53580604,0.03388295,99.8337736],[4.53580558,0.03388121,99.83363235],[4.53580511,0.03387947,99.83349045],[4.53580464,0.03387773,99.83334793],[4.53580418,0.03387598,99.83320478],[4.53580371,0.03387424,99.83306103],[4.53580325,0.0338725,99.83291666],[4.53580278,0.03387076,99.83277166],[4.53580231,0.03386902,99.83262602],[4.53580185,0.03386728,99.83247972],[4.53580138,0.03386554,99.83233274],[4.53580092,0.0338638,99.83218506],[4.53580045,0.03386206,99.83203666],[4.53579999,0.03386032,99.83188754],[4.53579952,0.03385858,99.83173766],[4.53579905,0.03385684,99.83158702],[4.53579859,0.0338551,99.8314356],[4.53579812,0.03385335,99.83128337],[4.53579765,0.03385161,99.83113033],[4.53579719,0.03384987,99.83097645],[4.53579672,0.03384813,99.83082171],[4.53579625,0.03384639,99.83066611],[4.53579579,0.03384465,99.83050962],[4.53579532,0.03384291,99.83035223],[4.53579485,0.03384117,99.83019391],[4.53579439,0.03383943,99.83003465],[4.53579392,0.03383769,99.82987444],[4.53579345,0.03383595,99.82971325],[4.53579298,0.03383421,99.82955109],[4.53579251,0.03383247,99.82938793],[4.53579205,0.03383073,99.82922377],[4.53579158,0.03382899,99.8290586],[4.53579111,0.03382725,99.82889241],[4.53579064,0.03382551,99.82872519],[4.53579017,0.03382377,99.82855693],[4.5357897,0.03382203,99.82838761],[4.53578923,0.03382029,99.82821723],[4.53578876,0.03381855,99.82804578],[4.53578829,0.03381681,99.82787325],[4.53578782,0.03381507,99.82769963],[4.53578735,0.03381333,99.8275249],[4.53578688,0.03381159,99.82734906],[4.53578641,0.03380985,99.8271721],[4.53578594,0.03380811,99.826994],[4.53578547,0.03380637,99.82681476],[4.535785,0.03380463,99.82663437],[4.53578453,0.0338029,99.82645281],[4.53578406,0.03380116,99.82627008],[4.53578359,0.03379942,99.82608616],[4.53578312,0.03379768,99.82590105],[4.53578265,0.03379594,99.82571473],[4.53578218,0.0337942,99.82552719],[4.53578171,0.03379246,99.82533842],[4.53578123,0.03379072,99.82514842],[4.53578076,0.03378898,99.82495718],[4.53578029,0.03378724,99.82476468],[4.53577982,0.0337855,99.82457092],[4.53577935,0.03378376,99.82437591],[4.53577888,0.03378203,99.82417962],[4.5357784,0.03378029,99.82398206],[4.53577793,0.03377855,99.82378324],[4.53577746,0.03377681,99.82358317],[4.53577699,0.03377507,99.82338185],[4.53577652,0.03377333,99.8231793],[4.53577604,0.03377159,99.82297553],[4.53577557,0.03376985,99.82277055],[4.5357751,0.03376811,99.82256437],[4.53577463,0.03376638,99.822357],[4.53577416,0.03376464,99.82214846],[4.53577368,0.0337629,99.82193875],[4.53577321,0.03376116,99.82172788],[4.53577274,0.03375942,99.82151587],[4.53577227,0.03375768,99.82130273],[4.53577179,0.03375594,99.82108847],[4.53577132,0.0337542,99.82087309],[4.53577085,0.03375246,99.82065661],[4.53577038,0.03375073,99.82043905],[4.5357699,0.03374899,99.8202204],[4.53576943,0.03374725,99.82000069],[4.53576896,0.03374551,99.81977992],[4.53576848,0.03374377,99.81955811],[4.53576801,0.03374203,99.81933526],[4.53576754,0.03374029,99.81911139],[4.53576707,0.03373856,99.81888651],[4.53576659,0.03373682,99.81866062],[4.53576612,0.03373508,99.81843375],[4.53576565,0.03373334,99.8182059],[4.53576517,0.0337316,99.81797707],[4.5357647,0.03372986,99.81774729],[4.53576422,0.03372813,99.81751657],[4.53576375,0.03372639,99.81728491],[4.53576328,0.03372465,99.81705233],[4.5357628,0.03372291,99.81681883],[4.53576233,0.03372117,99.81658443],[4.53576185,0.03371943,99.81634915],[4.53576138,0.0337177,99.81611298],[4.5357609,0.03371596,99.81587595],[4.53576043,0.03371422,99.81563806],[4.53575996,0.03371248,99.81539932],[4.53575948,0.03371074,99.81515975],[4.53575901,0.03370901,99.81491936],[4.53575853,0.03370727,99.81467815],[4.53575805,0.03370553,99.81443615],[4.53575758,0.03370379,99.81419336],[4.5357571,0.03370205,99.81394978],[4.53575663,0.03370032,99.81370544],[4.53575615,0.03369858,99.81346035],[4.53575568,0.03369684,99.81321451],[4.5357552,0.0336951,99.81296794],[4.53575472,0.03369337,99.81272065],[4.53575425,0.03369163,99.81247265],[4.53575377,0.03368989,99.81222395],[4.53575329,0.03368815,99.81197456],[4.53575282,0.03368642,99.8117245],[4.53575234,0.03368468,99.81147377],[4.53575186,0.03368294,99.81122239],[4.53575138,0.0336812,99.81097037],[4.53575091,0.03367947,99.81071772],[4.53575043,0.03367773,99.81046445],[4.53574995,0.03367599,99.81021057],[4.53574947,0.03367426,99.8099561],[4.53574899,0.03367252,99.80970105],[4.53574852,0.03367078,99.80944542],[4.53574804,0.03366904,99.80918923],[4.53574756,0.03366731,99.80893249],[4.53574708,0.03366557,99.80867522],[4.53574661,0.03366383,99.80841742],[4.53574613,0.03366209,99.8081591],[4.53574565,0.03366036,99.80790028],[4.53574518,0.03365862,99.80764097],[4.5357447,0.03365688,99.80738119],[4.53574422,0.03365514,99.80712093],[4.53574375,0.03365341,99.80686022],[4.53574327,0.03365167,99.80659906],[4.5357428,0.03364993,99.80633747],[4.53574233,0.03364819,99.80607546],[4.53574185,0.03364645,99.80581305],[4.53574138,0.03364472,99.80555023],[4.53574091,0.03364298,99.80528703],[4.53574044,0.03364124,99.80502346],[4.53573997,0.0336395,99.80475952],[4.5357395,0.03363776,99.80449524],[4.53573903,0.03363602,99.80423061],[4.53573856,0.03363428,99.80396565],[4.53573809,0.03363254,99.80370037],[4.53573762,0.0336308,99.80343479],[4.53573716,0.03362906,99.80316891],[4.53573669,0.03362732,99.80290274],[4.53573623,0.03362558,99.8026363],[4.53573576,0.03362384,99.80236959],[4.5357353,0.0336221,99.80210262],[4.53573483,0.03362036,99.80183542],[4.53573437,0.03361862,99.80156798],[4.5357339,0.03361688,99.80130032],[4.53573344,0.03361514,99.80103245],[4.53573298,0.0336134,99.80076438],[4.53573251,0.03361166,99.80049612],[4.53573205,0.03360992,99.80022768],[4.53573159,0.03360817,99.79995908],[4.53573112,0.03360643,99.79969032],[4.53573066,0.03360469,99.79942142],[4.5357302,0.03360295,99.79915238],[4.53572974,0.03360121,99.79888322],[4.53572927,0.03359947,99.79861395],[4.53572881,0.03359773,99.79834457],[4.53572835,0.03359599,99.79807511],[4.53572789,0.03359424,99.79780557],[4.53572742,0.0335925,99.79753596],[4.53572696,0.03359076,99.7972663],[4.5357265,0.03358902,99.79699659],[4.53572603,0.03358728,99.79672685],[4.5357259,0.03358677,99.79664749]],"type":"LineString"},"type":"feature","properties":{"successorId":-6,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":-6,"type":"border","predecessorId":-6}},{"geometry":{"coordinates":[[4.53587499,0.03407897,99.84281324],[4.53587451,0.03407723,99.84279893],[4.53587404,0.0340755,99.84278397],[4.53587356,0.03407376,99.84276834],[4.53587309,0.03407202,99.84275201],[4.53587261,0.03407028,99.84273497],[4.53587214,0.03406854,99.84271721],[4.53587166,0.0340668,99.84269869],[4.53587119,0.03406506,99.84267941],[4.53587071,0.03406332,99.84265934],[4.53587024,0.03406159,99.84263847],[4.53586976,0.03405985,99.84261678],[4.53586929,0.03405811,99.84259424],[4.53586881,0.03405637,99.84257085],[4.53586834,0.03405463,99.84254658],[4.53586786,0.03405289,99.84252142],[4.53586738,0.03405115,99.84249535],[4.53586691,0.03404942,99.84246834],[4.53586643,0.03404768,99.84244038],[4.53586596,0.03404594,99.84241146],[4.53586548,0.0340442,99.84238156],[4.535865,0.03404246,99.84235065],[4.53586453,0.03404072,99.84231872],[4.53586405,0.03403898,99.84228575],[4.53586358,0.03403725,99.84225173],[4.5358631,0.03403551,99.84221663],[4.53586262,0.03403377,99.84218045],[4.53586215,0.03403203,99.84214315],[4.53586167,0.03403029,99.84210472],[4.5358612,0.03402855,99.84206516],[4.53586072,0.03402681,99.84202443],[4.53586025,0.03402508,99.84198252],[4.53585977,0.03402334,99.84193941],[4.53585929,0.0340216,99.84189509],[4.53585882,0.03401986,99.84184954],[4.53585834,0.03401812,99.84180274],[4.53585787,0.03401638,99.84175467],[4.53585739,0.03401464,99.84170532],[4.53585692,0.03401291,99.84165466],[4.53585644,0.03401117,99.84160269],[4.53585597,0.03400943,99.84154938],[4.5358555,0.03400769,99.84149471],[4.53585502,0.03400595,99.84143868],[4.53585455,0.03400421,99.84138125],[4.53585407,0.03400247,99.84132242],[4.5358536,0.03400073,99.84126217],[4.53585313,0.03399899,99.84120048],[4.53585265,0.03399725,99.84113733],[4.53585218,0.03399552,99.8410727],[4.53585171,0.03399378,99.84100658],[4.53585123,0.03399204,99.84093895],[4.53585076,0.0339903,99.8408698],[4.53585029,0.03398856,99.8407991],[4.53584981,0.03398682,99.84072684],[4.53584934,0.03398508,99.840653],[4.53584887,0.03398334,99.84057756],[4.5358484,0.0339816,99.84050054],[4.53584792,0.03397986,99.84042193],[4.53584745,0.03397812,99.84034176],[4.53584698,0.03397638,99.84026006],[4.53584651,0.03397464,99.84017683],[4.53584603,0.0339729,99.8400921],[4.53584556,0.03397117,99.84000588],[4.53584509,0.03396943,99.83991819],[4.53584462,0.03396769,99.83982906],[4.53584415,0.03396595,99.83973849],[4.53584367,0.03396421,99.83964651],[4.5358432,0.03396247,99.83955313],[4.53584273,0.03396073,99.83945838],[4.53584226,0.03395899,99.83936227],[4.53584179,0.03395725,99.83926482],[4.53584131,0.03395551,99.83916604],[4.53584084,0.03395377,99.83906596],[4.53584037,0.03395203,99.8389646],[4.5358399,0.03395029,99.83886196],[4.53583943,0.03394855,99.83875808],[4.53583896,0.03394681,99.83865296],[4.53583849,0.03394507,99.83854663],[4.53583802,0.03394333,99.83843911],[4.53583755,0.03394159,99.8383304],[4.53583708,0.03393985,99.83822054],[4.5358366,0.03393811,99.83810954],[4.53583613,0.03393637,99.83799741],[4.53583566,0.03393463,99.83788418],[4.53583519,0.03393289,99.83776986],[4.53583472,0.03393115,99.83765447],[4.53583425,0.03392941,99.83753804],[4.53583378,0.03392767,99.83742057],[4.53583331,0.03392593,99.83730208],[4.53583285,0.03392419,99.8371826],[4.53583238,0.03392245,99.83706214],[4.53583191,0.03392071,99.83694072],[4.53583144,0.03391897,99.83681836],[4.53583097,0.03391723,99.83669508],[4.5358305,0.03391549,99.83657089],[4.53583003,0.03391375,99.8364458],[4.53582956,0.03391201,99.83631983],[4.5358291,0.03391027,99.83619299],[4.53582863,0.03390853,99.83606529],[4.53582816,0.03390679,99.83593673],[4.53582769,0.03390505,99.83580734],[4.53582722,0.03390331,99.83567712],[4.53582676,0.03390157,99.83554609],[4.53582629,0.03389983,99.83541425],[4.53582582,0.03389809,99.83528161],[4.53582536,0.03389635,99.8351482],[4.53582489,0.03389461,99.83501401],[4.53582442,0.03389286,99.83487907],[4.53582396,0.03389112,99.83474338],[4.53582349,0.03388938,99.83460696],[4.53582302,0.03388764,99.83446981],[4.53582256,0.0338859,99.83433194],[4.53582209,0.03388416,99.83419338],[4.53582163,0.03388242,99.83405413],[4.53582116,0.03388068,99.8339142],[4.5358207,0.03387894,99.8337736],[4.53582023,0.03387719,99.83363235],[4.53581977,0.03387545,99.83349045],[4.53581931,0.03387371,99.83334793],[4.53581884,0.03387197,99.83320478],[4.53581838,0.03387023,99.83306103],[4.53581791,0.03386849,99.83291666],[4.53581745,0.03386675,99.83277166],[4.53581699,0.033865,99.83262602],[4.53581652,0.03386326,99.83247972],[4.53581606,0.03386152,99.83233274],[4.5358156,0.03385978,99.83218506],[4.53581514,0.03385804,99.83203666],[4.53581467,0.03385629,99.83188754],[4.53581421,0.03385455,99.83173766],[4.53581375,0.03385281,99.83158702],[4.53581329,0.03385107,99.8314356],[4.53581282,0.03384933,99.83128337],[4.53581236,0.03384758,99.83113033],[4.5358119,0.03384584,99.83097645],[4.53581144,0.0338441,99.83082171],[4.53581098,0.03384236,99.83066611],[4.53581052,0.03384062,99.83050962],[4.53581005,0.03383887,99.83035223],[4.53580959,0.03383713,99.83019391],[4.53580913,0.03383539,99.83003465],[4.53580867,0.03383365,99.82987444],[4.53580821,0.03383191,99.82971325],[4.53580775,0.03383016,99.82955109],[4.53580728,0.03382842,99.82938793],[4.53580682,0.03382668,99.82922377],[4.53580636,0.03382494,99.8290586],[4.5358059,0.03382319,99.82889241],[4.53580544,0.03382145,99.82872519],[4.53580498,0.03381971,99.82855693],[4.53580451,0.03381797,99.82838761],[4.53580405,0.03381623,99.82821723],[4.53580359,0.03381448,99.82804578],[4.53580313,0.03381274,99.82787325],[4.53580267,0.033811,99.82769963],[4.5358022,0.03380926,99.8275249],[4.53580174,0.03380752,99.82734906],[4.53580128,0.03380578,99.8271721],[4.53580082,0.03380403,99.826994],[4.53580035,0.03380229,99.82681476],[4.53579989,0.03380055,99.82663437],[4.53579943,0.03379881,99.82645281],[4.53579897,0.03379707,99.82627008],[4.5357985,0.03379532,99.82608616],[4.53579804,0.03379358,99.82590105],[4.53579758,0.03379184,99.82571473],[4.53579711,0.0337901,99.82552719],[4.53579665,0.03378836,99.82533842],[4.53579619,0.03378662,99.82514842],[4.53579572,0.03378488,99.82495718],[4.53579526,0.03378313,99.82476468],[4.53579479,0.03378139,99.82457092],[4.53579433,0.03377965,99.82437591],[4.53579386,0.03377791,99.82417962],[4.5357934,0.03377617,99.82398206],[4.53579293,0.03377443,99.82378324],[4.53579247,0.03377269,99.82358317],[4.535792,0.03377095,99.82338185],[4.53579154,0.03376921,99.8231793],[4.53579107,0.03376746,99.82297553],[4.5357906,0.03376572,99.82277055],[4.53579014,0.03376398,99.82256437],[4.53578967,0.03376224,99.822357],[4.5357892,0.0337605,99.82214846],[4.53578874,0.03375876,99.82193875],[4.53578827,0.03375702,99.82172788],[4.5357878,0.03375528,99.82151587],[4.53578734,0.03375354,99.82130273],[4.53578687,0.0337518,99.82108847],[4.5357864,0.03375006,99.82087309],[4.53578593,0.03374832,99.82065661],[4.53578546,0.03374658,99.82043905],[4.535785,0.03374484,99.8202204],[4.53578453,0.0337431,99.82000069],[4.53578406,0.03374136,99.81977992],[4.53578359,0.03373962,99.81955811],[4.53578312,0.03373788,99.81933526],[4.53578265,0.03373614,99.81911139],[4.53578218,0.0337344,99.81888651],[4.53578171,0.03373266,99.81866062],[4.53578124,0.03373092,99.81843375],[4.53578077,0.03372918,99.8182059],[4.5357803,0.03372744,99.81797707],[4.53577983,0.0337257,99.81774729],[4.53577936,0.03372396,99.81751657],[4.53577889,0.03372222,99.81728491],[4.53577842,0.03372048,99.81705233],[4.53577795,0.03371874,99.81681883],[4.53577748,0.033717,99.81658443],[4.53577701,0.03371526,99.81634915],[4.53577654,0.03371352,99.81611298],[4.53577607,0.03371179,99.81587595],[4.53577559,0.03371005,99.81563806],[4.53577512,0.03370831,99.81539932],[4.53577465,0.03370657,99.81515975],[4.53577418,0.03370483,99.81491936],[4.53577371,0.03370309,99.81467815],[4.53577323,0.03370135,99.81443615],[4.53577276,0.03369961,99.81419336],[4.53577229,0.03369787,99.81394978],[4.53577182,0.03369613,99.81370544],[4.53577134,0.0336944,99.81346035],[4.53577087,0.03369266,99.81321451],[4.5357704,0.03369092,99.81296794],[4.53576993,0.03368918,99.81272065],[4.53576945,0.03368744,99.81247265],[4.53576898,0.0336857,99.81222395],[4.53576851,0.03368396,99.81197456],[4.53576803,0.03368222,99.8117245],[4.53576756,0.03368049,99.81147377],[4.53576709,0.03367875,99.81122239],[4.53576661,0.03367701,99.81097037],[4.53576614,0.03367527,99.81071772],[4.53576566,0.03367353,99.81046445],[4.53576519,0.03367179,99.81021057],[4.53576472,0.03367005,99.8099561],[4.53576424,0.03366832,99.80970105],[4.53576377,0.03366658,99.80944542],[4.53576329,0.03366484,99.80918923],[4.53576282,0.0336631,99.80893249],[4.53576234,0.03366136,99.80867522],[4.53576187,0.03365962,99.80841742],[4.53576139,0.03365789,99.8081591],[4.53576092,0.03365615,99.80790028],[4.53576044,0.03365441,99.80764097],[4.53575997,0.03365267,99.80738119],[4.53575949,0.03365093,99.80712093],[4.53575902,0.0336492,99.80686022],[4.53575854,0.03364746,99.80659906],[4.53575807,0.03364572,99.80633747],[4.53575759,0.03364398,99.80607546],[4.53575712,0.03364224,99.80581305],[4.53575664,0.0336405,99.80555023],[4.53575617,0.03363877,99.80528703],[4.53575569,0.03363703,99.80502346],[4.53575522,0.03363529,99.80475952],[4.53575474,0.03363355,99.80449524],[4.53575427,0.03363181,99.80423061],[4.53575379,0.03363008,99.80396565],[4.53575331,0.03362834,99.80370037],[4.53575284,0.0336266,99.80343479],[4.53575236,0.03362486,99.80316891],[4.53575189,0.03362312,99.80290274],[4.53575141,0.03362139,99.8026363],[4.53575094,0.03361965,99.80236959],[4.53575046,0.03361791,99.80210262],[4.53574999,0.03361617,99.80183542],[4.53574951,0.03361443,99.80156798],[4.53574904,0.0336127,99.80130032],[4.53574856,0.03361096,99.80103245],[4.53574809,0.03360922,99.80076438],[4.53574761,0.03360749,99.80049612],[4.53574714,0.03360575,99.80022768],[4.53574666,0.03360401,99.79995908],[4.53574619,0.03360227,99.79969032],[4.53574571,0.03360053,99.79942142],[4.53574524,0.0335988,99.79915238],[4.53574476,0.03359706,99.79888322],[4.53574429,0.03359532,99.79861395],[4.53574381,0.03359358,99.79834457],[4.53574334,0.03359184,99.79807511],[4.53574286,0.0335901,99.79780557],[4.53574239,0.03358837,99.79753596],[4.53574191,0.03358663,99.7972663],[4.53574144,0.03358489,99.79699659],[4.53574096,0.03358315,99.79672685],[4.53574082,0.03358264,99.79664749]],"type":"LineString"},"type":"feature","properties":{"successorId":-5,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":-5,"type":"border","predecessorId":-5}},{"geometry":{"coordinates":[[4.53587613,0.03407866,99.69281324],[4.53587566,0.03407692,99.69279893],[4.53587518,0.03407518,99.69278397],[4.53587471,0.03407344,99.69276834],[4.53587424,0.03407171,99.69275201],[4.53587376,0.03406997,99.69273497],[4.53587329,0.03406823,99.69271721],[4.53587282,0.03406649,99.69269869],[4.53587235,0.03406475,99.69267941],[4.53587188,0.03406301,99.69265934],[4.5358714,0.03406127,99.69263847],[4.53587093,0.03405953,99.69261678],[4.53587046,0.03405779,99.69259424],[4.53586999,0.03405605,99.69257085],[4.53586952,0.03405431,99.69254658],[4.53586905,0.03405257,99.69252142],[4.53586858,0.03405083,99.69249535],[4.53586811,0.03404909,99.69246834],[4.53586764,0.03404735,99.69244038],[4.53586717,0.03404561,99.69241146],[4.5358667,0.03404387,99.69238156],[4.53586623,0.03404213,99.69235065],[4.53586576,0.03404039,99.69231872],[4.53586529,0.03403865,99.69228575],[4.53586482,0.03403691,99.69225173],[4.53586435,0.03403517,99.69221663],[4.53586389,0.03403342,99.69218045],[4.53586342,0.03403168,99.69214315],[4.53586295,0.03402994,99.69210472],[4.53586248,0.0340282,99.69206516],[4.53586201,0.03402646,99.69202443],[4.53586154,0.03402472,99.69198252],[4.53586107,0.03402298,99.69193941],[4.53586061,0.03402124,99.69189509],[4.53586014,0.0340195,99.69184954],[4.53585967,0.03401776,99.69180274],[4.5358592,0.03401602,99.69175467],[4.53585873,0.03401428,99.69170532],[4.53585827,0.03401254,99.69165466],[4.5358578,0.0340108,99.69160269],[4.53585733,0.03400906,99.69154938],[4.53585686,0.03400732,99.69149471],[4.53585639,0.03400558,99.69143868],[4.53585592,0.03400384,99.69138125],[4.53585546,0.03400209,99.69132242],[4.53585499,0.03400035,99.69126217],[4.53585452,0.03399861,99.69120048],[4.53585405,0.03399687,99.69113733],[4.53585358,0.03399513,99.6910727],[4.53585311,0.03399339,99.69100658],[4.53585265,0.03399165,99.69093895],[4.53585218,0.03398991,99.6908698],[4.53585171,0.03398817,99.6907991],[4.53585124,0.03398643,99.69072684],[4.53585077,0.03398469,99.690653],[4.5358503,0.03398295,99.69057756],[4.53584983,0.03398121,99.69050054],[4.53584936,0.03397947,99.69042193],[4.53584889,0.03397773,99.69034176],[4.53584842,0.03397599,99.69026006],[4.53584795,0.03397425,99.69017683],[4.53584748,0.03397251,99.6900921],[4.53584701,0.03397077,99.69000588],[4.53584654,0.03396903,99.68991819],[4.53584607,0.03396729,99.68982906],[4.5358456,0.03396555,99.68973849],[4.53584513,0.03396381,99.68964651],[4.53584466,0.03396207,99.68955313],[4.53584419,0.03396033,99.68945838],[4.53584372,0.03395859,99.68936227],[4.53584325,0.03395685,99.68926482],[4.53584278,0.03395511,99.68916604],[4.53584231,0.03395337,99.68906596],[4.53584184,0.03395163,99.6889646],[4.53584136,0.03394989,99.68886196],[4.53584089,0.03394815,99.68875808],[4.53584042,0.03394641,99.68865296],[4.53583995,0.03394467,99.68854663],[4.53583948,0.03394293,99.68843911],[4.53583901,0.03394119,99.6883304],[4.53583854,0.03393945,99.68822054],[4.53583807,0.03393771,99.68810954],[4.5358376,0.03393597,99.68799741],[4.53583713,0.03393423,99.68788418],[4.53583666,0.03393249,99.68776986],[4.53583618,0.03393075,99.68765447],[4.53583571,0.03392901,99.68753804],[4.53583524,0.03392727,99.68742057],[4.53583477,0.03392553,99.68730208],[4.5358343,0.0339238,99.6871826],[4.53583383,0.03392206,99.68706214],[4.53583336,0.03392032,99.68694072],[4.53583289,0.03391858,99.68681836],[4.53583242,0.03391684,99.68669508],[4.53583195,0.0339151,99.68657089],[4.53583148,0.03391336,99.6864458],[4.53583101,0.03391162,99.68631983],[4.53583054,0.03390988,99.68619299],[4.53583007,0.03390814,99.68606529],[4.5358296,0.0339064,99.68593673],[4.53582913,0.03390466,99.68580734],[4.53582866,0.03390292,99.68567712],[4.53582819,0.03390118,99.68554609],[4.53582772,0.03389944,99.68541425],[4.53582725,0.0338977,99.68528161],[4.53582678,0.03389596,99.6851482],[4.53582632,0.03389422,99.68501401],[4.53582585,0.03389247,99.68487907],[4.53582538,0.03389073,99.68474338],[4.53582491,0.03388899,99.68460696],[4.53582444,0.03388725,99.68446981],[4.53582397,0.03388551,99.68433194],[4.53582351,0.03388377,99.68419338],[4.53582304,0.03388203,99.68405413],[4.53582257,0.03388029,99.6839142],[4.5358221,0.03387855,99.6837736],[4.53582163,0.03387681,99.68363235],[4.53582117,0.03387507,99.68349045],[4.5358207,0.03387333,99.68334793],[4.53582023,0.03387159,99.68320478],[4.53581977,0.03386985,99.68306103],[4.5358193,0.03386811,99.68291666],[4.53581883,0.03386637,99.68277166],[4.53581837,0.03386463,99.68262602],[4.5358179,0.03386288,99.68247972],[4.53581743,0.03386114,99.68233274],[4.53581697,0.0338594,99.68218506],[4.5358165,0.03385766,99.68203666],[4.53581604,0.03385592,99.68188754],[4.53581557,0.03385418,99.68173766],[4.53581511,0.03385244,99.68158702],[4.53581464,0.0338507,99.6814356],[4.53581418,0.03384896,99.68128337],[4.53581371,0.03384722,99.68113033],[4.53581324,0.03384547,99.68097645],[4.53581278,0.03384373,99.68082171],[4.53581231,0.03384199,99.68066611],[4.53581185,0.03384025,99.68050962],[4.53581138,0.03383851,99.68035223],[4.53581092,0.03383677,99.68019391],[4.53581045,0.03383503,99.68003465],[4.53580999,0.03383329,99.67987444],[4.53580952,0.03383154,99.67971325],[4.53580906,0.0338298,99.67955109],[4.53580859,0.03382806,99.67938793],[4.53580813,0.03382632,99.67922377],[4.53580766,0.03382458,99.6790586],[4.5358072,0.03382284,99.67889241],[4.53580673,0.0338211,99.67872519],[4.53580627,0.03381936,99.67855693],[4.5358058,0.03381762,99.67838761],[4.53580534,0.03381587,99.67821723],[4.53580487,0.03381413,99.67804578],[4.53580441,0.03381239,99.67787325],[4.53580394,0.03381065,99.67769963],[4.53580347,0.03380891,99.6775249],[4.53580301,0.03380717,99.67734906],[4.53580254,0.03380543,99.6771721],[4.53580208,0.03380369,99.676994],[4.53580161,0.03380195,99.67681476],[4.53580114,0.03380021,99.67663437],[4.53580068,0.03379847,99.67645281],[4.53580021,0.03379672,99.67627008],[4.53579975,0.03379498,99.67608616],[4.53579928,0.03379324,99.67590105],[4.53579881,0.0337915,99.67571473],[4.53579835,0.03378976,99.67552719],[4.53579788,0.03378802,99.67533842],[4.53579741,0.03378628,99.67514842],[4.53579694,0.03378454,99.67495718],[4.53579648,0.0337828,99.67476468],[4.53579601,0.03378106,99.67457092],[4.53579554,0.03377932,99.67437591],[4.53579507,0.03377758,99.67417962],[4.5357946,0.03377584,99.67398206],[4.53579414,0.0337741,99.67378324],[4.53579367,0.03377236,99.67358317],[4.5357932,0.03377062,99.67338185],[4.53579273,0.03376888,99.6731793],[4.53579226,0.03376714,99.67297553],[4.53579179,0.0337654,99.67277055],[4.53579132,0.03376366,99.67256437],[4.53579085,0.03376192,99.672357],[4.53579038,0.03376018,99.67214846],[4.53578991,0.03375844,99.67193875],[4.53578944,0.0337567,99.67172788],[4.53578897,0.03375496,99.67151587],[4.5357885,0.03375322,99.67130273],[4.53578803,0.03375148,99.67108847],[4.53578756,0.03374974,99.67087309],[4.53578709,0.033748,99.67065661],[4.53578662,0.03374626,99.67043905],[4.53578615,0.03374452,99.6702204],[4.53578568,0.03374278,99.67000069],[4.53578521,0.03374104,99.66977992],[4.53578474,0.0337393,99.66955811],[4.53578427,0.03373756,99.66933526],[4.5357838,0.03373582,99.66911139],[4.53578332,0.03373409,99.66888651],[4.53578285,0.03373235,99.66866062],[4.53578238,0.03373061,99.66843375],[4.53578191,0.03372887,99.6682059],[4.53578144,0.03372713,99.66797707],[4.53578097,0.03372539,99.66774729],[4.53578049,0.03372365,99.66751657],[4.53578002,0.03372191,99.66728491],[4.53577955,0.03372017,99.66705233],[4.53577908,0.03371843,99.66681883],[4.53577861,0.03371669,99.66658443],[4.53577813,0.03371495,99.66634915],[4.53577766,0.03371322,99.66611298],[4.53577719,0.03371148,99.66587595],[4.53577672,0.03370974,99.66563806],[4.53577624,0.033708,99.66539932],[4.53577577,0.03370626,99.66515975],[4.5357753,0.03370452,99.66491936],[4.53577483,0.03370278,99.66467815],[4.53577435,0.03370104,99.66443615],[4.53577388,0.0336993,99.66419336],[4.53577341,0.03369757,99.66394978],[4.53577294,0.03369583,99.66370544],[4.53577246,0.03369409,99.66346035],[4.53577199,0.03369235,99.66321451],[4.53577152,0.03369061,99.66296794],[4.53577104,0.03368887,99.66272065],[4.53577057,0.03368713,99.66247265],[4.5357701,0.03368539,99.66222395],[4.53576962,0.03368365,99.66197456],[4.53576915,0.03368192,99.6617245],[4.53576868,0.03368018,99.66147377],[4.53576821,0.03367844,99.66122239],[4.53576773,0.0336767,99.66097037],[4.53576726,0.03367496,99.66071772],[4.53576679,0.03367322,99.66046445],[4.53576631,0.03367148,99.66021057],[4.53576584,0.03366974,99.6599561],[4.53576537,0.03366801,99.65970105],[4.5357649,0.03366627,99.65944542],[4.53576442,0.03366453,99.65918923],[4.53576395,0.03366279,99.65893249],[4.53576348,0.03366105,99.65867522],[4.535763,0.03365931,99.65841742],[4.53576253,0.03365757,99.6581591],[4.53576206,0.03365583,99.65790028],[4.53576159,0.03365409,99.65764097],[4.53576111,0.03365236,99.65738119],[4.53576064,0.03365062,99.65712093],[4.53576017,0.03364888,99.65686022],[4.5357597,0.03364714,99.65659906],[4.53575922,0.0336454,99.65633747],[4.53575875,0.03364366,99.65607546],[4.53575828,0.03364192,99.65581305],[4.53575781,0.03364018,99.65555023],[4.53575733,0.03363844,99.65528703],[4.53575686,0.03363671,99.65502346],[4.53575639,0.03363497,99.65475952],[4.53575592,0.03363323,99.65449524],[4.53575545,0.03363149,99.65423061],[4.53575497,0.03362975,99.65396565],[4.5357545,0.03362801,99.65370037],[4.53575403,0.03362627,99.65343479],[4.53575356,0.03362453,99.65316891],[4.53575309,0.03362279,99.65290274],[4.53575262,0.03362105,99.6526363],[4.53575215,0.03361931,99.65236959],[4.53575167,0.03361758,99.65210262],[4.5357512,0.03361584,99.65183542],[4.53575073,0.0336141,99.65156798],[4.53575026,0.03361236,99.65130032],[4.53574979,0.03361062,99.65103245],[4.53574932,0.03360888,99.65076438],[4.53574885,0.03360714,99.65049612],[4.53574838,0.0336054,99.65022768],[4.53574791,0.03360366,99.64995908],[4.53574744,0.03360193,99.64969032],[4.53574697,0.03360019,99.64942142],[4.5357465,0.03359845,99.64915238],[4.53574603,0.03359671,99.64888322],[4.53574556,0.03359497,99.64861395],[4.53574509,0.03359323,99.64834457],[4.53574462,0.03359149,99.64807511],[4.53574415,0.03358975,99.64780557],[4.53574368,0.03358801,99.64753596],[4.53574321,0.03358627,99.6472663],[4.53574275,0.03358453,99.64699659],[4.53574228,0.03358279,99.64672685],[4.53574214,0.03358228,99.64664749]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-4,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-4,"type":"border","predecessorId":-4}},{"geometry":{"coordinates":[[4.53587916,0.03407784,99.70048394],[4.53587868,0.0340761,99.70046671],[4.53587821,0.03407436,99.70044887],[4.53587774,0.03407262,99.7004304],[4.53587726,0.03407088,99.70041128],[4.53587679,0.03406914,99.70039149],[4.53587632,0.0340674,99.70037101],[4.53587585,0.03406566,99.70034983],[4.53587537,0.03406392,99.70032793],[4.5358749,0.03406218,99.70030528],[4.53587443,0.03406044,99.70028187],[4.53587396,0.0340587,99.70025768],[4.53587349,0.03405696,99.70023269],[4.53587302,0.03405522,99.70020689],[4.53587255,0.03405348,99.70018025],[4.53587208,0.03405174,99.70015276],[4.53587161,0.03405,99.7001244],[4.53587114,0.03404826,99.70009515],[4.53587067,0.03404652,99.70006499],[4.5358702,0.03404478,99.7000339],[4.53586973,0.03404304,99.70000187],[4.53586926,0.0340413,99.69996888],[4.53586879,0.03403956,99.69993491],[4.53586832,0.03403782,99.69989995],[4.53586785,0.03403608,99.69986396],[4.53586738,0.03403434,99.69982695],[4.53586691,0.0340326,99.69978888],[4.53586644,0.03403086,99.69974974],[4.53586597,0.03402912,99.69970952],[4.53586551,0.03402738,99.69966819],[4.53586504,0.03402564,99.69962575],[4.53586457,0.0340239,99.69958216],[4.5358641,0.03402216,99.69953741],[4.53586363,0.03402042,99.69949149],[4.53586316,0.03401868,99.69944437],[4.5358627,0.03401693,99.69939605],[4.53586223,0.03401519,99.69934649],[4.53586176,0.03401345,99.69929569],[4.53586129,0.03401171,99.69924363],[4.53586082,0.03400997,99.69919029],[4.53586036,0.03400823,99.69913565],[4.53585989,0.03400649,99.69907969],[4.53585942,0.03400475,99.6990224],[4.53585895,0.03400301,99.69896376],[4.53585848,0.03400127,99.69890375],[4.53585801,0.03399953,99.69884235],[4.53585755,0.03399779,99.69877956],[4.53585708,0.03399605,99.69871534],[4.53585661,0.03399431,99.69864968],[4.53585614,0.03399257,99.69858257],[4.53585567,0.03399083,99.69851399],[4.5358552,0.03398909,99.69844392],[4.53585473,0.03398735,99.69837234],[4.53585426,0.0339856,99.69829923],[4.53585379,0.03398386,99.69822458],[4.53585333,0.03398212,99.69814837],[4.53585286,0.03398038,99.69807061],[4.53585239,0.03397864,99.6979913],[4.53585192,0.0339769,99.69791047],[4.53585145,0.03397516,99.69782814],[4.53585098,0.03397342,99.69774432],[4.53585051,0.03397168,99.69765903],[4.53585004,0.03396994,99.69757229],[4.53584957,0.0339682,99.69748411],[4.5358491,0.03396646,99.69739452],[4.53584863,0.03396472,99.69730354],[4.53584816,0.03396298,99.69721118],[4.53584769,0.03396124,99.69711745],[4.53584721,0.0339595,99.69702239],[4.53584674,0.03395776,99.696926],[4.53584627,0.03395602,99.6968283],[4.5358458,0.03395428,99.69672932],[4.53584533,0.03395254,99.69662906],[4.53584486,0.0339508,99.69652755],[4.53584439,0.03394906,99.69642481],[4.53584392,0.03394733,99.69632085],[4.53584345,0.03394559,99.69621569],[4.53584298,0.03394385,99.69610936],[4.53584251,0.03394211,99.69600186],[4.53584204,0.03394037,99.69589321],[4.53584156,0.03393863,99.69578344],[4.53584109,0.03393689,99.69567256],[4.53584062,0.03393515,99.69556059],[4.53584015,0.03393341,99.69544755],[4.53583968,0.03393167,99.69533345],[4.53583921,0.03392993,99.69521832],[4.53583874,0.03392819,99.69510216],[4.53583827,0.03392645,99.69498501],[4.5358378,0.03392471,99.69486688],[4.53583733,0.03392297,99.69474778],[4.53583686,0.03392123,99.69462773],[4.53583639,0.03391949,99.69450676],[4.53583592,0.03391775,99.69438487],[4.53583545,0.03391601,99.6942621],[4.53583498,0.03391427,99.69413845],[4.53583451,0.03391253,99.69401393],[4.53583404,0.03391079,99.69388856],[4.53583357,0.03390905,99.69376235],[4.5358331,0.03390731,99.6936353],[4.53583263,0.03390557,99.69350744],[4.53583216,0.03390383,99.69337877],[4.53583169,0.03390209,99.6932493],[4.53583122,0.03390035,99.69311905],[4.53583075,0.03389861,99.69298802],[4.53583028,0.03389687,99.69285623],[4.53582981,0.03389513,99.69272369],[4.53582934,0.03389339,99.6925904],[4.53582887,0.03389165,99.69245639],[4.5358284,0.03388991,99.69232166],[4.53582794,0.03388817,99.69218622],[4.53582747,0.03388643,99.69205009],[4.535827,0.03388469,99.69191327],[4.53582653,0.03388295,99.69177578],[4.53582606,0.0338812,99.69163763],[4.53582559,0.03387946,99.69149883],[4.53582513,0.03387772,99.69135939],[4.53582466,0.03387598,99.69121933],[4.53582419,0.03387424,99.69107865],[4.53582373,0.0338725,99.69093737],[4.53582326,0.03387076,99.69079549],[4.53582279,0.03386902,99.69065304],[4.53582232,0.03386728,99.69051],[4.53582186,0.03386554,99.69036635],[4.53582139,0.0338638,99.69022209],[4.53582093,0.03386206,99.6900772],[4.53582046,0.03386032,99.68993165],[4.53581999,0.03385857,99.68978543],[4.53581953,0.03385683,99.68963852],[4.53581906,0.03385509,99.68949091],[4.5358186,0.03385335,99.68934258],[4.53581813,0.03385161,99.6891935],[4.53581767,0.03384987,99.68904367],[4.5358172,0.03384813,99.68889307],[4.53581673,0.03384639,99.68874167],[4.53581627,0.03384465,99.68858946],[4.5358158,0.0338429,99.68843642],[4.53581534,0.03384116,99.68828254],[4.53581487,0.03383942,99.6881278],[4.53581441,0.03383768,99.68797218],[4.53581394,0.03383594,99.68781566],[4.53581348,0.0338342,99.68765822],[4.53581301,0.03383246,99.68749985],[4.53581255,0.03383072,99.68734054],[4.53581208,0.03382897,99.68718027],[4.53581162,0.03382723,99.68701903],[4.53581115,0.03382549,99.68685682],[4.53581069,0.03382375,99.68669362],[4.53581022,0.03382201,99.68652942],[4.53580976,0.03382027,99.68636421],[4.53580929,0.03381853,99.68619799],[4.53580883,0.03381679,99.68603074],[4.53580836,0.03381505,99.68586245],[4.5358079,0.0338133,99.68569311],[4.53580743,0.03381156,99.68552271],[4.53580696,0.03380982,99.68535124],[4.5358065,0.03380808,99.6851787],[4.53580603,0.03380634,99.68500506],[4.53580557,0.0338046,99.68483032],[4.5358051,0.03380286,99.68465447],[4.53580464,0.03380112,99.6844775],[4.53580417,0.03379938,99.6842994],[4.5358037,0.03379764,99.68412015],[4.53580324,0.03379589,99.68393976],[4.53580277,0.03379415,99.6837582],[4.5358023,0.03379241,99.68357546],[4.53580184,0.03379067,99.68339154],[4.53580137,0.03378893,99.68320643],[4.5358009,0.03378719,99.6830201],[4.53580044,0.03378545,99.68283257],[4.53579997,0.03378371,99.68264381],[4.5357995,0.03378197,99.68245382],[4.53579903,0.03378023,99.68226259],[4.53579857,0.03377849,99.68207012],[4.5357981,0.03377675,99.6818764],[4.53579763,0.03377501,99.68168143],[4.53579716,0.03377327,99.68148522],[4.53579669,0.03377153,99.68128777],[4.53579622,0.03376979,99.6810891],[4.53579575,0.03376805,99.68088922],[4.53579529,0.03376631,99.68068814],[4.53579482,0.03376457,99.68048587],[4.53579435,0.03376283,99.68028242],[4.53579388,0.03376109,99.6800778],[4.53579341,0.03375935,99.67987202],[4.53579294,0.03375761,99.67966509],[4.53579247,0.03375587,99.67945703],[4.535792,0.03375413,99.67924784],[4.53579153,0.03375239,99.67903754],[4.53579106,0.03375065,99.67882614],[4.53579059,0.03374891,99.67861364],[4.53579012,0.03374717,99.67840006],[4.53578965,0.03374543,99.67818541],[4.53578918,0.03374369,99.67796969],[4.5357887,0.03374195,99.67775293],[4.53578823,0.03374021,99.67753513],[4.53578776,0.03373847,99.6773163],[4.53578729,0.03373673,99.67709646],[4.53578682,0.03373499,99.6768756],[4.53578635,0.03373325,99.67665376],[4.53578588,0.03373151,99.67643093],[4.53578541,0.03372977,99.67620712],[4.53578493,0.03372804,99.67598235],[4.53578446,0.0337263,99.67575664],[4.53578399,0.03372456,99.67552998],[4.53578352,0.03372282,99.67530239],[4.53578305,0.03372108,99.67507388],[4.53578257,0.03371934,99.67484447],[4.5357821,0.0337176,99.67461416],[4.53578163,0.03371586,99.67438296],[4.53578116,0.03371412,99.67415089],[4.53578069,0.03371238,99.67391795],[4.53578021,0.03371064,99.67368417],[4.53577974,0.03370891,99.67344954],[4.53577927,0.03370717,99.67321408],[4.5357788,0.03370543,99.6729778],[4.53577832,0.03370369,99.67274072],[4.53577785,0.03370195,99.67250283],[4.53577738,0.03370021,99.67226417],[4.5357769,0.03369847,99.67202472],[4.53577643,0.03369673,99.67178451],[4.53577596,0.03369499,99.67154356],[4.53577549,0.03369325,99.67130185],[4.53577501,0.03369152,99.67105942],[4.53577454,0.03368978,99.67081627],[4.53577407,0.03368804,99.67057242],[4.53577359,0.0336863,99.67032786],[4.53577312,0.03368456,99.67008262],[4.53577265,0.03368282,99.66983671],[4.53577218,0.03368108,99.66959014],[4.5357717,0.03367934,99.66934291],[4.53577123,0.0336776,99.66909504],[4.53577076,0.03367587,99.66884655],[4.53577028,0.03367413,99.66859744],[4.53576981,0.03367239,99.66834772],[4.53576934,0.03367065,99.66809741],[4.53576887,0.03366891,99.66784651],[4.53576839,0.03366717,99.66759504],[4.53576792,0.03366543,99.66734301],[4.53576745,0.03366369,99.66709044],[4.53576697,0.03366196,99.66683732],[4.5357665,0.03366022,99.66658368],[4.53576603,0.03365848,99.66632953],[4.53576556,0.03365674,99.66607487],[4.53576508,0.033655,99.66581972],[4.53576461,0.03365326,99.66556409],[4.53576414,0.03365152,99.66530799],[4.53576366,0.03364978,99.66505143],[4.53576319,0.03364804,99.66479443],[4.53576272,0.03364631,99.664537],[4.53576225,0.03364457,99.66427914],[4.53576177,0.03364283,99.66402087],[4.5357613,0.03364109,99.66376221],[4.53576083,0.03363935,99.66350315],[4.53576036,0.03363761,99.66324373],[4.53575989,0.03363587,99.66298393],[4.53575941,0.03363413,99.66272379],[4.53575894,0.03363239,99.6624633],[4.53575847,0.03363065,99.66220248],[4.535758,0.03362892,99.66194134],[4.53575753,0.03362718,99.66167989],[4.53575705,0.03362544,99.66141815],[4.53575658,0.0336237,99.66115611],[4.53575611,0.03362196,99.66089379],[4.53575564,0.03362022,99.66063121],[4.53575517,0.03361848,99.66036837],[4.5357547,0.03361674,99.66010529],[4.53575423,0.033615,99.65984197],[4.53575376,0.03361326,99.65957842],[4.53575329,0.03361153,99.65931466],[4.53575282,0.03360979,99.6590507],[4.53575234,0.03360805,99.65878655],[4.53575187,0.03360631,99.65852221],[4.5357514,0.03360457,99.65825771],[4.53575093,0.03360283,99.65799304],[4.53575046,0.03360109,99.65772823],[4.53574999,0.03359935,99.65746328],[4.53574952,0.03359761,99.6571982],[4.53574905,0.03359587,99.656933],[4.53574858,0.03359413,99.6566677],[4.53574811,0.03359239,99.65640231],[4.53574764,0.03359065,99.65613683],[4.53574718,0.03358891,99.65587128],[4.53574671,0.03358717,99.65560567],[4.53574624,0.03358543,99.65534],[4.53574577,0.03358369,99.6550743],[4.5357453,0.03358195,99.65480857],[4.53574516,0.03358144,99.65473039]],"type":"LineString"},"type":"feature","properties":{"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-3,"type":"stop","predecessorId":-3}},{"geometry":{"coordinates":[[4.5358966,0.03407308,99.74469755],[4.53589614,0.03407134,99.74469287],[4.53589568,0.0340696,99.74468718],[4.53589521,0.03406786,99.74468046],[4.53589475,0.03406612,99.74467271],[4.53589429,0.03406437,99.74466391],[4.53589383,0.03406263,99.74465404],[4.53589336,0.03406089,99.7446431],[4.5358929,0.03405915,99.74463107],[4.53589244,0.0340574,99.74461793],[4.53589198,0.03405566,99.74460368],[4.53589152,0.03405392,99.7445883],[4.53589105,0.03405218,99.74457178],[4.53589059,0.03405043,99.74455411],[4.53589013,0.03404869,99.74453526],[4.53588967,0.03404695,99.74451523],[4.53588921,0.03404521,99.74449401],[4.53588874,0.03404346,99.74447158],[4.53588828,0.03404172,99.74444793],[4.53588782,0.03403998,99.74442305],[4.53588736,0.03403824,99.74439692],[4.53588689,0.03403649,99.74436953],[4.53588643,0.03403475,99.74434087],[4.53588597,0.03403301,99.74431092],[4.53588551,0.03403127,99.74427967],[4.53588504,0.03402952,99.74424712],[4.53588458,0.03402778,99.74421323],[4.53588412,0.03402604,99.74417802],[4.53588365,0.0340243,99.74414145],[4.53588319,0.03402255,99.74410352],[4.53588273,0.03402081,99.74406421],[4.53588226,0.03401907,99.74402351],[4.5358818,0.03401733,99.74398142],[4.53588134,0.03401559,99.74393791],[4.53588087,0.03401384,99.74389297],[4.53588041,0.0340121,99.74384659],[4.53587995,0.03401036,99.74379876],[4.53587948,0.03400862,99.74374946],[4.53587902,0.03400688,99.74369868],[4.53587855,0.03400514,99.74364642],[4.53587809,0.03400339,99.74359264],[4.53587762,0.03400165,99.74353735],[4.53587716,0.03399991,99.74348054],[4.53587669,0.03399817,99.74342217],[4.53587623,0.03399643,99.74336226],[4.53587576,0.03399469,99.74330077],[4.53587529,0.03399294,99.7432377],[4.53587483,0.0339912,99.74317304],[4.53587436,0.03398946,99.74310677],[4.5358739,0.03398772,99.74303888],[4.53587343,0.03398598,99.74296935],[4.53587296,0.03398424,99.74289818],[4.53587249,0.0339825,99.74282535],[4.53587203,0.03398076,99.74275085],[4.53587156,0.03397902,99.74267467],[4.53587109,0.03397727,99.74259678],[4.53587062,0.03397553,99.74251721],[4.53587015,0.03397379,99.74243596],[4.53586968,0.03397205,99.74235307],[4.53586921,0.03397031,99.74226855],[4.53586874,0.03396857,99.74218243],[4.53586828,0.03396683,99.74209472],[4.53586781,0.03396509,99.74200546],[4.53586734,0.03396335,99.74191466],[4.53586686,0.03396161,99.74182235],[4.53586639,0.03395987,99.74172855],[4.53586592,0.03395813,99.74163328],[4.53586545,0.03395639,99.74153656],[4.53586498,0.03395465,99.74143842],[4.53586451,0.03395291,99.74133888],[4.53586404,0.03395117,99.74123795],[4.53586357,0.03394943,99.74113567],[4.53586309,0.03394769,99.74103206],[4.53586262,0.03394595,99.74092713],[4.53586215,0.03394421,99.74082091],[4.53586168,0.03394247,99.74071342],[4.53586121,0.03394073,99.74060469],[4.53586073,0.03393899,99.74049473],[4.53586026,0.03393725,99.74038357],[4.53585979,0.03393551,99.74027123],[4.53585932,0.03393377,99.74015773],[4.53585884,0.03393204,99.7400431],[4.53585837,0.0339303,99.73992736],[4.5358579,0.03392856,99.73981052],[4.53585743,0.03392682,99.73969262],[4.53585695,0.03392508,99.73957367],[4.53585648,0.03392334,99.7394537],[4.53585601,0.0339216,99.73933272],[4.53585553,0.03391986,99.73921076],[4.53585506,0.03391812,99.73908785],[4.53585459,0.03391638,99.738964],[4.53585411,0.03391464,99.73883924],[4.53585364,0.0339129,99.73871359],[4.53585317,0.03391116,99.73858707],[4.53585269,0.03390942,99.7384597],[4.53585222,0.03390768,99.73833149],[4.53585175,0.03390594,99.73820247],[4.53585128,0.0339042,99.73807265],[4.5358508,0.03390247,99.73794204],[4.53585033,0.03390073,99.73781066],[4.53584986,0.03389899,99.73767853],[4.53584938,0.03389725,99.73754565],[4.53584891,0.03389551,99.73741205],[4.53584844,0.03389377,99.73727774],[4.53584797,0.03389203,99.73714273],[4.53584749,0.03389029,99.73700705],[4.53584702,0.03388855,99.7368707],[4.53584655,0.03388681,99.7367337],[4.53584608,0.03388507,99.73659608],[4.53584561,0.03388333,99.73645783],[4.53584513,0.03388159,99.73631899],[4.53584466,0.03387985,99.73617956],[4.53584419,0.03387811,99.73603955],[4.53584372,0.03387637,99.735899],[4.53584325,0.03387463,99.7357579],[4.53584278,0.03387289,99.73561629],[4.53584231,0.03387115,99.73547416],[4.53584183,0.03386941,99.73533154],[4.53584136,0.03386767,99.73518845],[4.53584089,0.03386593,99.73504489],[4.53584042,0.03386419,99.73490089],[4.53583995,0.03386245,99.73475644],[4.53583948,0.03386071,99.73461154],[4.53583901,0.03385897,99.73446617],[4.53583854,0.03385723,99.73432031],[4.53583807,0.03385549,99.73417396],[4.5358376,0.03385375,99.7340271],[4.53583713,0.03385201,99.73387971],[4.53583666,0.03385027,99.73373179],[4.53583619,0.03384853,99.73358332],[4.53583573,0.03384679,99.73343429],[4.53583526,0.03384505,99.73328468],[4.53583479,0.03384331,99.73313448],[4.53583432,0.03384157,99.73298368],[4.53583385,0.03383983,99.73283226],[4.53583338,0.03383809,99.73268022],[4.53583291,0.03383635,99.73252753],[4.53583244,0.03383461,99.73237419],[4.53583197,0.03383287,99.73222018],[4.53583151,0.03383113,99.73206549],[4.53583104,0.03382939,99.73191011],[4.53583057,0.03382765,99.73175401],[4.5358301,0.0338259,99.7315972],[4.53582963,0.03382416,99.73143965],[4.53582916,0.03382242,99.73128135],[4.5358287,0.03382068,99.73112229],[4.53582823,0.03381894,99.73096245],[4.53582776,0.0338172,99.73080183],[4.53582729,0.03381546,99.7306404],[4.53582682,0.03381372,99.73047816],[4.53582635,0.03381198,99.73031509],[4.53582588,0.03381024,99.73015118],[4.53582542,0.0338085,99.72998641],[4.53582495,0.03380676,99.72982077],[4.53582448,0.03380502,99.72965425],[4.53582401,0.03380328,99.72948684],[4.53582354,0.03380154,99.72931851],[4.53582307,0.0337998,99.72914926],[4.5358226,0.03379806,99.72897907],[4.53582213,0.03379632,99.72880793],[4.53582167,0.03379458,99.72863582],[4.5358212,0.03379284,99.72846274],[4.53582073,0.0337911,99.72828866],[4.53582026,0.03378936,99.72811358],[4.53581979,0.03378762,99.72793748],[4.53581932,0.03378587,99.72776034],[4.53581885,0.03378413,99.72758216],[4.53581838,0.03378239,99.72740292],[4.53581791,0.03378065,99.7272226],[4.53581744,0.03377891,99.72704119],[4.53581697,0.03377717,99.72685869],[4.5358165,0.03377543,99.72667509],[4.53581603,0.03377369,99.72649037],[4.53581556,0.03377195,99.72630453],[4.53581508,0.03377022,99.72611755],[4.53581461,0.03376848,99.72592946],[4.53581414,0.03376674,99.72574024],[4.53581367,0.033765,99.72554992],[4.5358132,0.03376326,99.72535849],[4.53581273,0.03376152,99.72516596],[4.53581226,0.03375978,99.72497235],[4.53581178,0.03375804,99.72477766],[4.53581131,0.0337563,99.72458189],[4.53581084,0.03375456,99.72438506],[4.53581037,0.03375282,99.72418717],[4.53580989,0.03375108,99.72398823],[4.53580942,0.03374934,99.72378825],[4.53580895,0.0337476,99.72358723],[4.53580847,0.03374586,99.72338519],[4.535808,0.03374412,99.72318212],[4.53580753,0.03374238,99.72297805],[4.53580705,0.03374065,99.72277296],[4.53580658,0.03373891,99.72256688],[4.53580611,0.03373717,99.72235981],[4.53580563,0.03373543,99.72215176],[4.53580516,0.03373369,99.72194273],[4.53580468,0.03373195,99.72173273],[4.53580421,0.03373021,99.72152178],[4.53580374,0.03372847,99.72130987],[4.53580326,0.03372673,99.72109702],[4.53580279,0.033725,99.72088323],[4.53580231,0.03372326,99.72066851],[4.53580184,0.03372152,99.72045287],[4.53580136,0.03371978,99.72023631],[4.53580089,0.03371804,99.72001885],[4.53580041,0.0337163,99.71980049],[4.53579994,0.03371456,99.71958124],[4.53579946,0.03371283,99.7193611],[4.53579899,0.03371109,99.71914009],[4.53579851,0.03370935,99.71891821],[4.53579803,0.03370761,99.71869547],[4.53579756,0.03370587,99.71847188],[4.53579708,0.03370413,99.71824744],[4.53579661,0.03370239,99.71802216],[4.53579613,0.03370066,99.71779605],[4.53579566,0.03369892,99.71756912],[4.53579518,0.03369718,99.71734138],[4.5357947,0.03369544,99.71711283],[4.53579423,0.0336937,99.71688348],[4.53579375,0.03369196,99.71665333],[4.53579327,0.03369023,99.71642241],[4.5357928,0.03368849,99.71619071],[4.53579232,0.03368675,99.71595824],[4.53579184,0.03368501,99.71572501],[4.53579137,0.03368327,99.71549102],[4.53579089,0.03368154,99.7152563],[4.53579041,0.0336798,99.71502083],[4.53578994,0.03367806,99.71478464],[4.53578946,0.03367632,99.71454772],[4.53578898,0.03367458,99.71431009],[4.5357885,0.03367285,99.71407176],[4.53578803,0.03367111,99.71383272],[4.53578755,0.03366937,99.713593],[4.53578707,0.03366763,99.71335259],[4.5357866,0.03366589,99.71311151],[4.53578612,0.03366416,99.71286977],[4.53578564,0.03366242,99.71262736],[4.53578516,0.03366068,99.71238431],[4.53578469,0.03365894,99.71214061],[4.53578421,0.0336572,99.71189628],[4.53578373,0.03365547,99.71165132],[4.53578325,0.03365373,99.71140574],[4.53578278,0.03365199,99.71115955],[4.5357823,0.03365025,99.71091276],[4.53578182,0.03364851,99.71066537],[4.53578134,0.03364678,99.71041739],[4.53578087,0.03364504,99.71016884],[4.53578039,0.0336433,99.70991971],[4.53577991,0.03364156,99.70967003],[4.53577943,0.03363983,99.70941978],[4.53577896,0.03363809,99.70916899],[4.53577848,0.03363635,99.70891767],[4.535778,0.03363461,99.70866581],[4.53577752,0.03363287,99.70841343],[4.53577704,0.03363114,99.70816053],[4.53577657,0.0336294,99.70790713],[4.53577609,0.03362766,99.70765322],[4.53577561,0.03362592,99.70739883],[4.53577513,0.03362419,99.70714395],[4.53577466,0.03362245,99.70688859],[4.53577418,0.03362071,99.70663276],[4.5357737,0.03361897,99.70637646],[4.53577322,0.03361723,99.70611971],[4.53577274,0.0336155,99.7058625],[4.53577227,0.03361376,99.70560485],[4.53577179,0.03361202,99.70534677],[4.53577131,0.03361028,99.70508826],[4.53577083,0.03360855,99.70482932],[4.53577036,0.03360681,99.70456997],[4.53576988,0.03360507,99.70431021],[4.5357694,0.03360334,99.70405005],[4.53576892,0.0336016,99.70378949],[4.53576845,0.03359986,99.70352855],[4.53576797,0.03359812,99.70326723],[4.53576749,0.03359638,99.70300554],[4.53576701,0.03359465,99.70274348],[4.53576654,0.03359291,99.70248106],[4.53576606,0.03359117,99.70221829],[4.53576558,0.03358943,99.70195518],[4.53576511,0.0335877,99.70169173],[4.53576463,0.03358596,99.70142795],[4.53576415,0.03358422,99.70116385],[4.53576367,0.03358248,99.70089944],[4.5357632,0.03358074,99.70063471],[4.53576272,0.03357901,99.70036969],[4.53576224,0.03357727,99.70010438],[4.5357621,0.03357676,99.70002627]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2}},{"geometry":{"coordinates":[[4.53592812,0.0340645,99.82458625],[4.53592765,0.03406276,99.82453635],[4.53592718,0.03406102,99.82448559],[4.53592671,0.03405927,99.82443398],[4.53592624,0.03405753,99.82438152],[4.53592578,0.03405579,99.82432822],[4.53592531,0.03405405,99.82427408],[4.53592484,0.03405231,99.8242191],[4.53592437,0.03405057,99.82416329],[4.5359239,0.03404883,99.82410666],[4.53592343,0.03404709,99.82404921],[4.53592296,0.03404535,99.82399093],[4.53592249,0.03404361,99.82393185],[4.53592202,0.03404186,99.82387195],[4.53592156,0.03404012,99.82381125],[4.53592109,0.03403838,99.82374975],[4.53592062,0.03403664,99.82368746],[4.53592015,0.0340349,99.82362437],[4.53591968,0.03403316,99.82356049],[4.53591921,0.03403142,99.82349584],[4.53591874,0.03402968,99.8234304],[4.53591827,0.03402794,99.82336418],[4.5359178,0.0340262,99.8232972],[4.53591733,0.03402446,99.82322945],[4.53591686,0.03402272,99.82316094],[4.53591639,0.03402097,99.82309167],[4.53591592,0.03401923,99.82302164],[4.53591545,0.03401749,99.82295087],[4.53591498,0.03401575,99.82287935],[4.53591451,0.03401401,99.82280709],[4.53591404,0.03401227,99.82273409],[4.53591358,0.03401053,99.82266036],[4.53591311,0.03400879,99.8225859],[4.53591264,0.03400705,99.82251072],[4.53591217,0.03400531,99.82243482],[4.5359117,0.03400357,99.8223582],[4.53591123,0.03400183,99.82228087],[4.53591076,0.03400009,99.82220283],[4.53591029,0.03399835,99.82212409],[4.53590982,0.03399661,99.82204465],[4.53590935,0.03399486,99.82196451],[4.53590888,0.03399312,99.82188368],[4.53590841,0.03399138,99.82180217],[4.53590794,0.03398964,99.82171997],[4.53590747,0.0339879,99.8216371],[4.535907,0.03398616,99.82155355],[4.53590653,0.03398442,99.82146933],[4.53590606,0.03398268,99.82138444],[4.53590559,0.03398094,99.8212989],[4.53590512,0.0339792,99.82121269],[4.53590465,0.03397746,99.82112584],[4.53590418,0.03397572,99.82103833],[4.53590371,0.03397398,99.82095018],[4.53590324,0.03397224,99.82086138],[4.53590277,0.0339705,99.82077195],[4.5359023,0.03396875,99.82068189],[4.53590183,0.03396701,99.8205912],[4.53590136,0.03396527,99.82049988],[4.53590089,0.03396353,99.82040795],[4.53590042,0.03396179,99.82031539],[4.53589995,0.03396005,99.82022223],[4.53589948,0.03395831,99.82012846],[4.53589901,0.03395657,99.82003408],[4.53589854,0.03395483,99.81993911],[4.53589807,0.03395309,99.81984354],[4.5358976,0.03395135,99.81974738],[4.53589713,0.03394961,99.81965063],[4.53589666,0.03394787,99.8195533],[4.53589619,0.03394613,99.81945539],[4.53589572,0.03394439,99.81935691],[4.53589525,0.03394265,99.81925786],[4.53589478,0.0339409,99.81915824],[4.53589431,0.03393916,99.81905806],[4.53589384,0.03393742,99.81895732],[4.53589337,0.03393568,99.81885602],[4.5358929,0.03393394,99.81875418],[4.53589243,0.0339322,99.8186518],[4.53589196,0.03393046,99.81854887],[4.53589149,0.03392872,99.8184454],[4.53589102,0.03392698,99.81834141],[4.53589055,0.03392524,99.81823688],[4.53589008,0.0339235,99.81813183],[4.53588961,0.03392176,99.81802627],[4.53588914,0.03392002,99.81792018],[4.53588867,0.03391828,99.81781359],[4.5358882,0.03391653,99.81770648],[4.53588774,0.03391479,99.81759888],[4.53588727,0.03391305,99.81749077],[4.5358868,0.03391131,99.81738217],[4.53588633,0.03390957,99.81727308],[4.53588586,0.03390783,99.81716351],[4.53588539,0.03390609,99.81705345],[4.53588492,0.03390435,99.81694292],[4.53588445,0.03390261,99.81683191],[4.53588398,0.03390087,99.81672043],[4.53588351,0.03389913,99.81660847],[4.53588304,0.03389739,99.81649605],[4.53588258,0.03389564,99.81638314],[4.53588211,0.0338939,99.81626975],[4.53588164,0.03389216,99.81615588],[4.53588117,0.03389042,99.81604152],[4.5358807,0.03388868,99.81592667],[4.53588023,0.03388694,99.81581133],[4.53587976,0.0338852,99.8156955],[4.53587929,0.03388346,99.81557917],[4.53587883,0.03388172,99.81546234],[4.53587836,0.03387998,99.815345],[4.53587789,0.03387823,99.81522717],[4.53587742,0.03387649,99.81510882],[4.53587695,0.03387475,99.81498997],[4.53587648,0.03387301,99.8148706],[4.53587602,0.03387127,99.81475072],[4.53587555,0.03386953,99.81463032],[4.53587508,0.03386779,99.8145094],[4.53587461,0.03386605,99.81438796],[4.53587414,0.03386431,99.81426599],[4.53587367,0.03386257,99.8141435],[4.53587321,0.03386082,99.81402047],[4.53587274,0.03385908,99.81389691],[4.53587227,0.03385734,99.81377281],[4.5358718,0.0338556,99.81364818],[4.53587133,0.03385386,99.813523],[4.53587086,0.03385212,99.81339729],[4.5358704,0.03385038,99.81327102],[4.53586993,0.03384864,99.81314421],[4.53586946,0.0338469,99.81301684],[4.53586899,0.03384516,99.81288892],[4.53586852,0.03384341,99.81276045],[4.53586805,0.03384167,99.81263141],[4.53586759,0.03383993,99.81250181],[4.53586712,0.03383819,99.81237165],[4.53586665,0.03383645,99.81224092],[4.53586618,0.03383471,99.81210962],[4.53586571,0.03383297,99.81197775],[4.53586525,0.03383123,99.81184531],[4.53586478,0.03382949,99.81171228],[4.53586431,0.03382774,99.81157868],[4.53586384,0.033826,99.81144449],[4.53586337,0.03382426,99.81130972],[4.5358629,0.03382252,99.81117436],[4.53586243,0.03382078,99.8110384],[4.53586197,0.03381904,99.81090186],[4.5358615,0.0338173,99.81076472],[4.53586103,0.03381556,99.81062698],[4.53586056,0.03381382,99.81048863],[4.53586009,0.03381208,99.81034969],[4.53585962,0.03381034,99.81021013],[4.53585915,0.03380859,99.81006997],[4.53585869,0.03380685,99.80992919],[4.53585822,0.03380511,99.8097878],[4.53585775,0.03380337,99.80964579],[4.53585728,0.03380163,99.80950317],[4.53585681,0.03379989,99.80935991],[4.53585634,0.03379815,99.80921603],[4.53585587,0.03379641,99.80907153],[4.5358554,0.03379467,99.80892639],[4.53585494,0.03379293,99.80878061],[4.53585447,0.03379119,99.8086342],[4.535854,0.03378944,99.80848715],[4.53585353,0.0337877,99.80833945],[4.53585306,0.03378596,99.80819111],[4.53585259,0.03378422,99.80804212],[4.53585212,0.03378248,99.80789248],[4.53585165,0.03378074,99.80774219],[4.53585118,0.033779,99.80759124],[4.53585071,0.03377726,99.80743963],[4.53585024,0.03377552,99.80728735],[4.53584977,0.03377378,99.80713441],[4.5358493,0.03377204,99.8069808],[4.53584883,0.0337703,99.80682653],[4.53584836,0.03376856,99.80667159],[4.53584789,0.03376682,99.80651598],[4.53584742,0.03376508,99.80635971],[4.53584695,0.03376333,99.80620278],[4.53584648,0.03376159,99.80604519],[4.53584601,0.03375985,99.80588694],[4.53584554,0.03375811,99.80572804],[4.53584507,0.03375637,99.80556848],[4.5358446,0.03375463,99.80540827],[4.53584413,0.03375289,99.8052474],[4.53584366,0.03375115,99.80508589],[4.53584319,0.03374941,99.80492373],[4.53584272,0.03374767,99.80476092],[4.53584225,0.03374593,99.80459747],[4.53584178,0.03374419,99.80443338],[4.53584131,0.03374245,99.80426864],[4.53584084,0.03374071,99.80410326],[4.53584037,0.03373897,99.80393725],[4.53583989,0.03373723,99.8037706],[4.53583942,0.03373549,99.80360331],[4.53583895,0.03373375,99.80343539],[4.53583848,0.03373201,99.80326684],[4.53583801,0.03373027,99.80309766],[4.53583754,0.03372853,99.80292785],[4.53583707,0.03372679,99.80275741],[4.5358366,0.03372505,99.80258635],[4.53583612,0.03372331,99.80241467],[4.53583565,0.03372157,99.80224236],[4.53583518,0.03371983,99.80206943],[4.53583471,0.03371809,99.80189589],[4.53583424,0.03371635,99.80172172],[4.53583377,0.03371461,99.80154695],[4.53583329,0.03371287,99.80137155],[4.53583282,0.03371113,99.80119555],[4.53583235,0.03370939,99.80101894],[4.53583188,0.03370765,99.80084172],[4.53583141,0.03370591,99.80066389],[4.53583093,0.03370417,99.80048545],[4.53583046,0.03370243,99.80030641],[4.53582999,0.03370069,99.80012677],[4.53582952,0.03369895,99.79994653],[4.53582904,0.03369721,99.79976569],[4.53582857,0.03369547,99.79958425],[4.5358281,0.03369373,99.79940222],[4.53582763,0.03369199,99.79921959],[4.53582715,0.03369025,99.79903637],[4.53582668,0.03368851,99.79885256],[4.53582621,0.03368677,99.79866816],[4.53582573,0.03368503,99.79848317],[4.53582526,0.03368329,99.7982976],[4.53582479,0.03368155,99.79811144],[4.53582432,0.03367981,99.7979247],[4.53582384,0.03367807,99.79773738],[4.53582337,0.03367633,99.79754948],[4.5358229,0.03367459,99.797361],[4.53582242,0.03367285,99.79717195],[4.53582195,0.03367111,99.79698232],[4.53582148,0.03366937,99.79679212],[4.535821,0.03366763,99.79660135],[4.53582053,0.03366589,99.79641001],[4.53582006,0.03366415,99.7962181],[4.53581958,0.03366241,99.79602563],[4.53581911,0.03366067,99.79583259],[4.53581864,0.03365893,99.79563898],[4.53581816,0.0336572,99.79544482],[4.53581769,0.03365546,99.7952501],[4.53581721,0.03365372,99.79505482],[4.53581674,0.03365198,99.79485898],[4.53581627,0.03365024,99.79466259],[4.53581579,0.0336485,99.79446564],[4.53581532,0.03364676,99.79426815],[4.53581484,0.03364502,99.7940701],[4.53581437,0.03364328,99.79387151],[4.5358139,0.03364154,99.79367237],[4.53581342,0.0336398,99.79347268],[4.53581295,0.03363806,99.79327246],[4.53581247,0.03363632,99.79307169],[4.535812,0.03363458,99.79287038],[4.53581152,0.03363284,99.79266853],[4.53581105,0.0336311,99.79246615],[4.53581058,0.03362937,99.79226323],[4.5358101,0.03362763,99.79205978],[4.53580963,0.03362589,99.7918558],[4.53580915,0.03362415,99.79165129],[4.53580868,0.03362241,99.79144625],[4.5358082,0.03362067,99.79124069],[4.53580773,0.03361893,99.79103459],[4.53580725,0.03361719,99.79082798],[4.53580678,0.03361545,99.79062083],[4.5358063,0.03361371,99.79041316],[4.53580583,0.03361197,99.79020497],[4.53580535,0.03361023,99.78999626],[4.53580488,0.03360849,99.78978702],[4.5358044,0.03360676,99.78957726],[4.53580393,0.03360502,99.78936698],[4.53580345,0.03360328,99.78915617],[4.53580298,0.03360154,99.78894485],[4.5358025,0.0335998,99.788733],[4.53580203,0.03359806,99.78852063],[4.53580155,0.03359633,99.78830775],[4.53580107,0.03359459,99.78809435],[4.5358006,0.03359285,99.78788042],[4.53580012,0.03359111,99.78766598],[4.53579965,0.03358937,99.78745102],[4.53579917,0.03358763,99.78723555],[4.5357987,0.03358589,99.78701956],[4.53579822,0.03358415,99.78680305],[4.53579774,0.03358241,99.78658603],[4.53579727,0.03358068,99.78636849],[4.53579679,0.03357894,99.78615043],[4.53579632,0.0335772,99.78593187],[4.53579584,0.03357546,99.78571279],[4.53579536,0.03357372,99.78549319],[4.53579489,0.03357198,99.78527309],[4.53579441,0.03357024,99.78505247],[4.53579394,0.0335685,99.78483134],[4.5357938,0.03356799,99.78476619]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}},{"geometry":{"coordinates":[[4.53582863,0.03355836,99.87790119],[4.53582876,0.03355887,99.87793446],[4.53582921,0.03356062,99.87804906],[4.53582967,0.03356236,99.87816595],[4.53583013,0.03356411,99.87828508],[4.53583058,0.03356585,99.87840638],[4.53583104,0.0335676,99.87852977],[4.5358315,0.03356934,99.8786552],[4.53583196,0.03357109,99.87878259],[4.53583242,0.03357283,99.87891188],[4.53583288,0.03357458,99.879043],[4.53583334,0.03357632,99.87917589],[4.5358338,0.03357806,99.87931047],[4.53583427,0.0335798,99.87944668],[4.53583473,0.03358155,99.87958447],[4.53583519,0.03358329,99.87972375],[4.53583566,0.03358503,99.87986446],[4.53583612,0.03358678,99.88000655],[4.53583659,0.03358852,99.88014993],[4.53583706,0.03359026,99.88029456],[4.53583752,0.033592,99.88044035],[4.53583799,0.03359374,99.88058725],[4.53583846,0.03359548,99.8807352],[4.53583893,0.03359722,99.88088412],[4.5358394,0.03359896,99.88103395],[4.53583987,0.03360071,99.88118463],[4.53584034,0.03360245,99.88133609],[4.53584081,0.03360419,99.88148827],[4.53584128,0.03360593,99.8816411],[4.53584175,0.03360767,99.88179452],[4.53584222,0.03360941,99.88194847],[4.5358427,0.03361115,99.88210288],[4.53584317,0.03361289,99.88225769],[4.53584364,0.03361463,99.88241283],[4.53584411,0.03361637,99.88256824],[4.53584459,0.03361811,99.88272386],[4.53584506,0.03361985,99.88287962],[4.53584553,0.03362159,99.88303545],[4.535846,0.03362333,99.8831913],[4.53584648,0.03362507,99.88334709],[4.53584695,0.03362681,99.88350277],[4.53584742,0.03362855,99.88365827],[4.5358479,0.03363029,99.88381352],[4.53584837,0.03363203,99.88396847],[4.53584884,0.03363377,99.88412305],[4.53584932,0.03363551,99.88427719],[4.53584979,0.03363726,99.88443085],[4.53585026,0.033639,99.88458402],[4.53585074,0.03364074,99.8847367],[4.53585121,0.03364248,99.8848889],[4.53585168,0.03364422,99.88504062],[4.53585216,0.03364596,99.88519187],[4.53585263,0.0336477,99.88534266],[4.5358531,0.03364944,99.88549299],[4.53585357,0.03365118,99.88564287],[4.53585405,0.03365292,99.8857923],[4.53585452,0.03365466,99.88594128],[4.53585499,0.0336564,99.88608983],[4.53585546,0.03365814,99.88623794],[4.53585594,0.03365988,99.88638562],[4.53585641,0.03366162,99.88653289],[4.53585688,0.03366336,99.88667973],[4.53585735,0.0336651,99.88682617],[4.53585782,0.03366684,99.8869722],[4.5358583,0.03366858,99.88711783],[4.53585877,0.03367032,99.88726306],[4.53585924,0.03367206,99.8874079],[4.53585971,0.0336738,99.88755236],[4.53586018,0.03367555,99.88769643],[4.53586066,0.03367729,99.88784013],[4.53586113,0.03367903,99.88798346],[4.5358616,0.03368077,99.88812643],[4.53586207,0.03368251,99.88826904],[4.53586254,0.03368425,99.88841129],[4.53586301,0.03368599,99.8885532],[4.53586349,0.03368773,99.88869476],[4.53586396,0.03368947,99.88883598],[4.53586443,0.03369121,99.88897687],[4.5358649,0.03369295,99.88911743],[4.53586537,0.03369469,99.88925766],[4.53586584,0.03369643,99.88939756],[4.53586631,0.03369817,99.88953714],[4.53586679,0.03369992,99.88967639],[4.53586726,0.03370166,99.8898153],[4.53586773,0.0337034,99.88995388],[4.5358682,0.03370514,99.89009212],[4.53586867,0.03370688,99.89023003],[4.53586914,0.03370862,99.8903676],[4.53586961,0.03371036,99.89050484],[4.53587008,0.0337121,99.89064173],[4.53587056,0.03371384,99.89077828],[4.53587103,0.03371558,99.89091448],[4.5358715,0.03371732,99.89105035],[4.53587197,0.03371906,99.89118586],[4.53587244,0.0337208,99.89132103],[4.53587291,0.03372255,99.89145585],[4.53587338,0.03372429,99.89159033],[4.53587385,0.03372603,99.89172445],[4.53587432,0.03372777,99.89185821],[4.5358748,0.03372951,99.89199163],[4.53587527,0.03373125,99.89212469],[4.53587574,0.03373299,99.89225739],[4.53587621,0.03373473,99.89238973],[4.53587668,0.03373647,99.89252172],[4.53587715,0.03373821,99.89265334],[4.53587762,0.03373995,99.8927846],[4.53587809,0.03374169,99.8929155],[4.53587856,0.03374344,99.89304604],[4.53587903,0.03374518,99.8931762],[4.5358795,0.03374692,99.89330601],[4.53587997,0.03374866,99.89343544],[4.53588044,0.0337504,99.8935645],[4.53588091,0.03375214,99.89369319],[4.53588138,0.03375388,99.89382151],[4.53588185,0.03375562,99.89394946],[4.53588232,0.03375736,99.89407703],[4.53588279,0.0337591,99.89420422],[4.53588326,0.03376085,99.89433104],[4.53588373,0.03376259,99.89445747],[4.5358842,0.03376433,99.89458353],[4.53588468,0.03376607,99.89470921],[4.53588514,0.03376781,99.89483451],[4.53588561,0.03376955,99.89495943],[4.53588608,0.03377129,99.89508398],[4.53588655,0.03377303,99.89520817],[4.53588702,0.03377477,99.89533199],[4.53588749,0.03377652,99.89545545],[4.53588796,0.03377826,99.89557855],[4.53588843,0.03378,99.8957013],[4.5358889,0.03378174,99.89582369],[4.53588937,0.03378348,99.89594574],[4.53588984,0.03378522,99.89606744],[4.53589031,0.03378696,99.8961888],[4.53589078,0.0337887,99.89630982],[4.53589125,0.03379044,99.8964305],[4.53589172,0.03379219,99.89655085],[4.53589219,0.03379393,99.89667087],[4.53589266,0.03379567,99.89679056],[4.53589313,0.03379741,99.89690993],[4.5358936,0.03379915,99.89702898],[4.53589407,0.03380089,99.89714772],[4.53589454,0.03380263,99.89726614],[4.53589501,0.03380437,99.89738425],[4.53589547,0.03380612,99.89750206],[4.53589594,0.03380786,99.89761956],[4.53589641,0.0338096,99.89773677],[4.53589688,0.03381134,99.89785368],[4.53589735,0.03381308,99.89797029],[4.53589782,0.03381482,99.89808662],[4.53589829,0.03381656,99.89820266],[4.53589876,0.03381831,99.89831842],[4.53589923,0.03382005,99.8984339],[4.5358997,0.03382179,99.89854911],[4.53590017,0.03382353,99.89866404],[4.53590063,0.03382527,99.89877871],[4.5359011,0.03382701,99.89889311],[4.53590157,0.03382875,99.89900725],[4.53590204,0.03383049,99.89912113],[4.53590251,0.03383224,99.89923475],[4.53590298,0.03383398,99.89934812],[4.53590345,0.03383572,99.89946125],[4.53590392,0.03383746,99.89957413],[4.53590439,0.0338392,99.89968677],[4.53590486,0.03384094,99.89979917],[4.53590532,0.03384268,99.89991133],[4.53590579,0.03384442,99.90002326],[4.53590626,0.03384617,99.90013497],[4.53590673,0.03384791,99.90024645],[4.5359072,0.03384965,99.90035771],[4.53590767,0.03385139,99.90046875],[4.53590814,0.03385313,99.90057958],[4.53590861,0.03385487,99.90069019],[4.53590908,0.03385661,99.9008006],[4.53590955,0.03385836,99.9009108],[4.53591002,0.0338601,99.9010208],[4.53591048,0.03386184,99.90113061],[4.53591095,0.03386358,99.90124022],[4.53591142,0.03386532,99.90134964],[4.53591189,0.03386706,99.90145887],[4.53591236,0.0338688,99.90156791],[4.53591283,0.03387054,99.90167678],[4.5359133,0.03387229,99.90178546],[4.53591377,0.03387403,99.90189398],[4.53591424,0.03387577,99.90200232],[4.53591471,0.03387751,99.90211049],[4.53591518,0.03387925,99.9022185],[4.53591565,0.03388099,99.90232635],[4.53591612,0.03388273,99.90243405],[4.53591659,0.03388447,99.90254158],[4.53591706,0.03388621,99.90264897],[4.53591752,0.03388796,99.90275621],[4.53591799,0.0338897,99.90286331],[4.53591846,0.03389144,99.90297026],[4.53591893,0.03389318,99.90307708],[4.5359194,0.03389492,99.90318377],[4.53591987,0.03389666,99.90329031],[4.53592034,0.0338984,99.90339672],[4.53592081,0.03390014,99.90350299],[4.53592128,0.03390188,99.90360911],[4.53592175,0.03390363,99.90371509],[4.53592222,0.03390537,99.90382091],[4.53592269,0.03390711,99.90392657],[4.53592316,0.03390885,99.90403207],[4.53592363,0.03391059,99.90413741],[4.5359241,0.03391233,99.90424258],[4.53592457,0.03391407,99.90434759],[4.53592504,0.03391581,99.90445242],[4.53592551,0.03391755,99.90455707],[4.53592598,0.03391929,99.90466154],[4.53592645,0.03392104,99.90476583],[4.53592692,0.03392278,99.90486993],[4.53592739,0.03392452,99.90497384],[4.53592786,0.03392626,99.90507756],[4.53592833,0.033928,99.90518108],[4.5359288,0.03392974,99.90528439],[4.53592927,0.03393148,99.90538751],[4.53592974,0.03393322,99.90549041],[4.53593021,0.03393496,99.9055931],[4.53593069,0.0339367,99.90569558],[4.53593116,0.03393844,99.90579784],[4.53593163,0.03394019,99.90589988],[4.5359321,0.03394193,99.9060017],[4.53593257,0.03394367,99.90610328],[4.53593304,0.03394541,99.90620463],[4.53593351,0.03394715,99.90630575],[4.53593398,0.03394889,99.90640663],[4.53593445,0.03395063,99.90650727],[4.53593492,0.03395237,99.90660766],[4.53593539,0.03395411,99.9067078],[4.53593586,0.03395585,99.9068077],[4.53593633,0.0339576,99.90690733],[4.5359368,0.03395934,99.90700671],[4.53593727,0.03396108,99.90710582],[4.53593774,0.03396282,99.90720467],[4.53593821,0.03396456,99.90730325],[4.53593868,0.0339663,99.90740155],[4.53593915,0.03396804,99.90749958],[4.53593962,0.03396978,99.90759733],[4.53594009,0.03397152,99.90769479],[4.53594056,0.03397326,99.90779197],[4.53594103,0.033975,99.90788886],[4.5359415,0.03397675,99.90798546],[4.53594197,0.03397849,99.90808176],[4.53594244,0.03398023,99.90817776],[4.53594291,0.03398197,99.90827345],[4.53594338,0.03398371,99.90836884],[4.53594385,0.03398545,99.90846392],[4.53594432,0.03398719,99.90855868],[4.53594479,0.03398893,99.90865313],[4.53594526,0.03399067,99.90874725],[4.53594573,0.03399242,99.90884105],[4.5359462,0.03399416,99.90893452],[4.53594667,0.0339959,99.90902766],[4.53594714,0.03399764,99.90912047],[4.5359476,0.03399938,99.90921293],[4.53594807,0.03400112,99.90930506],[4.53594854,0.03400286,99.90939684],[4.53594901,0.0340046,99.90948827],[4.53594948,0.03400634,99.90957935],[4.53594995,0.03400809,99.90967007],[4.53595042,0.03400983,99.90976043],[4.53595089,0.03401157,99.90985043],[4.53595136,0.03401331,99.90994006],[4.53595183,0.03401505,99.91002933],[4.5359523,0.03401679,99.91011822],[4.53595277,0.03401853,99.91020673],[4.53595323,0.03402027,99.91029486],[4.5359537,0.03402202,99.9103826],[4.53595417,0.03402376,99.91046996],[4.53595464,0.0340255,99.91055693],[4.53595511,0.03402724,99.9106435],[4.53595558,0.03402898,99.91072967],[4.53595604,0.03403072,99.91081544],[4.53595651,0.03403246,99.91090081],[4.53595698,0.03403421,99.91098576],[4.53595745,0.03403595,99.9110703],[4.53595792,0.03403769,99.91115443],[4.53595838,0.03403943,99.91123813],[4.53595885,0.03404117,99.91132141],[4.53595932,0.03404291,99.91140426],[4.53595979,0.03404465,99.91148667],[4.53596026,0.0340464,99.91156866],[4.53596072,0.03404814,99.9116502],[4.53596119,0.03404988,99.9117313],[4.53596166,0.03405162,99.91181195],[4.53596212,0.03405336,99.91189215],[4.53596259,0.0340551,99.9119719]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":1,"type":"shoulder","predecessorId":1}},{"geometry":{"coordinates":[[4.53582979,0.03355804,100.02790119],[4.53582992,0.03355855,100.02793446],[4.53583038,0.0335603,100.02804906],[4.53583084,0.03356204,100.02816595],[4.53583131,0.03356378,100.02828508],[4.53583177,0.03356553,100.02840638],[4.53583224,0.03356727,100.02852977],[4.53583271,0.03356901,100.0286552],[4.53583318,0.03357075,100.02878259],[4.53583365,0.03357249,100.02891188],[4.53583412,0.03357423,100.029043],[4.53583459,0.03357597,100.02917589],[4.53583507,0.03357771,100.02931047],[4.53583554,0.03357945,100.02944668],[4.53583602,0.03358119,100.02958447],[4.53583649,0.03358293,100.02972375],[4.53583697,0.03358467,100.02986446],[4.53583745,0.03358641,100.03000655],[4.53583792,0.03358815,100.03014993],[4.5358384,0.03358989,100.03029456],[4.53583887,0.03359163,100.03044035],[4.53583935,0.03359337,100.03058725],[4.53583982,0.03359511,100.0307352],[4.5358403,0.03359685,100.03088412],[4.53584077,0.03359859,100.03103395],[4.53584124,0.03360033,100.03118463],[4.53584172,0.03360207,100.03133609],[4.53584219,0.03360381,100.03148827],[4.53584267,0.03360555,100.0316411],[4.53584314,0.03360729,100.03179452],[4.53584361,0.03360903,100.03194847],[4.53584408,0.03361077,100.03210288],[4.53584456,0.03361251,100.03225769],[4.53584503,0.03361425,100.03241283],[4.5358455,0.03361599,100.03256824],[4.53584597,0.03361773,100.03272386],[4.53584644,0.03361947,100.03287962],[4.53584691,0.03362121,100.03303545],[4.53584739,0.03362295,100.0331913],[4.53584786,0.03362469,100.03334709],[4.53584833,0.03362643,100.03350277],[4.5358488,0.03362818,100.03365827],[4.53584927,0.03362992,100.03381352],[4.53584974,0.03363166,100.03396847],[4.53585021,0.0336334,100.03412305],[4.53585068,0.03363514,100.03427719],[4.53585115,0.03363688,100.03443085],[4.53585161,0.03363862,100.03458402],[4.53585208,0.03364036,100.0347367],[4.53585255,0.03364211,100.0348889],[4.53585302,0.03364385,100.03504062],[4.53585349,0.03364559,100.03519187],[4.53585396,0.03364733,100.03534266],[4.53585443,0.03364907,100.03549299],[4.53585489,0.03365081,100.03564287],[4.53585536,0.03365256,100.0357923],[4.53585583,0.0336543,100.03594128],[4.5358563,0.03365604,100.03608983],[4.53585677,0.03365778,100.03623794],[4.53585724,0.03365952,100.03638562],[4.5358577,0.03366126,100.03653289],[4.53585817,0.03366301,100.03667973],[4.53585864,0.03366475,100.03682617],[4.53585911,0.03366649,100.0369722],[4.53585958,0.03366823,100.03711783],[4.53586005,0.03366997,100.03726306],[4.53586052,0.03367171,100.0374079],[4.53586099,0.03367345,100.03755236],[4.53586146,0.0336752,100.03769643],[4.53586193,0.03367694,100.03784013],[4.5358624,0.03367868,100.03798346],[4.53586286,0.03368042,100.03812643],[4.53586333,0.03368216,100.03826904],[4.5358638,0.0336839,100.03841129],[4.53586427,0.03368564,100.0385532],[4.53586474,0.03368738,100.03869476],[4.53586521,0.03368913,100.03883598],[4.53586568,0.03369087,100.03897687],[4.53586615,0.03369261,100.03911743],[4.53586662,0.03369435,100.03925766],[4.53586709,0.03369609,100.03939756],[4.53586756,0.03369783,100.03953714],[4.53586803,0.03369957,100.03967639],[4.5358685,0.03370131,100.0398153],[4.53586898,0.03370305,100.03995388],[4.53586945,0.03370479,100.04009212],[4.53586992,0.03370654,100.04023003],[4.53587039,0.03370828,100.0403676],[4.53587086,0.03371002,100.04050484],[4.53587133,0.03371176,100.04064173],[4.5358718,0.0337135,100.04077828],[4.53587227,0.03371524,100.04091448],[4.53587274,0.03371698,100.04105035],[4.53587321,0.03371872,100.04118586],[4.53587368,0.03372046,100.04132103],[4.53587415,0.0337222,100.04145585],[4.53587463,0.03372394,100.04159033],[4.5358751,0.03372569,100.04172445],[4.53587557,0.03372743,100.04185821],[4.53587604,0.03372917,100.04199163],[4.53587651,0.03373091,100.04212469],[4.53587698,0.03373265,100.04225739],[4.53587745,0.03373439,100.04238973],[4.53587792,0.03373613,100.04252172],[4.5358784,0.03373787,100.04265334],[4.53587887,0.03373961,100.0427846],[4.53587934,0.03374135,100.0429155],[4.53587981,0.03374309,100.04304604],[4.53588028,0.03374483,100.0431762],[4.53588075,0.03374657,100.04330601],[4.53588122,0.03374831,100.04343544],[4.53588169,0.03375006,100.0435645],[4.53588217,0.0337518,100.04369319],[4.53588264,0.03375354,100.04382151],[4.53588311,0.03375528,100.04394946],[4.53588358,0.03375702,100.04407703],[4.53588405,0.03375876,100.04420422],[4.53588452,0.0337605,100.04433104],[4.53588499,0.03376224,100.04445747],[4.53588546,0.03376398,100.04458353],[4.53588594,0.03376572,100.04470921],[4.53588641,0.03376746,100.04483451],[4.53588688,0.0337692,100.04495943],[4.53588735,0.03377094,100.04508398],[4.53588782,0.03377269,100.04520817],[4.53588829,0.03377443,100.04533199],[4.53588876,0.03377617,100.04545545],[4.53588923,0.03377791,100.04557855],[4.5358897,0.03377965,100.0457013],[4.53589018,0.03378139,100.04582369],[4.53589065,0.03378313,100.04594574],[4.53589112,0.03378487,100.04606744],[4.53589159,0.03378661,100.0461888],[4.53589206,0.03378835,100.04630982],[4.53589253,0.03379009,100.0464305],[4.535893,0.03379184,100.04655085],[4.53589347,0.03379358,100.04667087],[4.53589394,0.03379532,100.04679056],[4.53589441,0.03379706,100.04690993],[4.53589488,0.0337988,100.04702898],[4.53589535,0.03380054,100.04714772],[4.53589582,0.03380228,100.04726614],[4.53589629,0.03380402,100.04738425],[4.53589676,0.03380576,100.04750206],[4.53589723,0.0338075,100.04761956],[4.5358977,0.03380924,100.04773677],[4.53589817,0.03381099,100.04785368],[4.53589865,0.03381273,100.04797029],[4.53589912,0.03381447,100.04808662],[4.53589959,0.03381621,100.04820266],[4.53590006,0.03381795,100.04831842],[4.53590053,0.03381969,100.0484339],[4.535901,0.03382143,100.04854911],[4.53590147,0.03382317,100.04866404],[4.53590194,0.03382491,100.04877871],[4.53590241,0.03382666,100.04889311],[4.53590288,0.0338284,100.04900725],[4.53590335,0.03383014,100.04912113],[4.53590381,0.03383188,100.04923475],[4.53590428,0.03383362,100.04934812],[4.53590475,0.03383536,100.04946125],[4.53590522,0.0338371,100.04957413],[4.53590569,0.03383884,100.04968677],[4.53590616,0.03384058,100.04979917],[4.53590663,0.03384233,100.04991133],[4.5359071,0.03384407,100.05002326],[4.53590757,0.03384581,100.05013497],[4.53590804,0.03384755,100.05024645],[4.53590851,0.03384929,100.05035771],[4.53590898,0.03385103,100.05046875],[4.53590945,0.03385277,100.05057958],[4.53590992,0.03385451,100.05069019],[4.53591039,0.03385625,100.0508006],[4.53591086,0.033858,100.0509108],[4.53591133,0.03385974,100.0510208],[4.5359118,0.03386148,100.05113061],[4.53591227,0.03386322,100.05124022],[4.53591274,0.03386496,100.05134964],[4.53591321,0.0338667,100.05145887],[4.53591368,0.03386844,100.05156791],[4.53591415,0.03387018,100.05167678],[4.53591462,0.03387193,100.05178546],[4.53591509,0.03387367,100.05189398],[4.53591556,0.03387541,100.05200232],[4.53591602,0.03387715,100.05211049],[4.53591649,0.03387889,100.0522185],[4.53591696,0.03388063,100.05232635],[4.53591743,0.03388237,100.05243405],[4.5359179,0.03388411,100.05254158],[4.53591837,0.03388585,100.05264897],[4.53591884,0.0338876,100.05275621],[4.53591931,0.03388934,100.05286331],[4.53591978,0.03389108,100.05297026],[4.53592025,0.03389282,100.05307708],[4.53592072,0.03389456,100.05318377],[4.53592119,0.0338963,100.05329031],[4.53592166,0.03389804,100.05339672],[4.53592213,0.03389978,100.05350299],[4.5359226,0.03390152,100.05360911],[4.53592307,0.03390327,100.05371509],[4.53592354,0.03390501,100.05382091],[4.53592401,0.03390675,100.05392657],[4.53592448,0.03390849,100.05403207],[4.53592495,0.03391023,100.05413741],[4.53592542,0.03391197,100.05424258],[4.53592589,0.03391371,100.05434759],[4.53592636,0.03391545,100.05445242],[4.53592683,0.03391719,100.05455707],[4.5359273,0.03391893,100.05466154],[4.53592777,0.03392068,100.05476583],[4.53592824,0.03392242,100.05486993],[4.53592871,0.03392416,100.05497384],[4.53592918,0.0339259,100.05507756],[4.53592965,0.03392764,100.05518108],[4.53593012,0.03392938,100.05528439],[4.53593059,0.03393112,100.05538751],[4.53593106,0.03393286,100.05549041],[4.53593153,0.0339346,100.0555931],[4.535932,0.03393634,100.05569558],[4.53593247,0.03393809,100.05579784],[4.53593294,0.03393983,100.05589988],[4.53593341,0.03394157,100.0560017],[4.53593388,0.03394331,100.05610328],[4.53593435,0.03394505,100.05620463],[4.53593482,0.03394679,100.05630575],[4.53593529,0.03394853,100.05640663],[4.53593576,0.03395027,100.05650727],[4.53593623,0.03395201,100.05660766],[4.5359367,0.03395375,100.0567078],[4.53593717,0.0339555,100.0568077],[4.53593764,0.03395724,100.05690733],[4.53593811,0.03395898,100.05700671],[4.53593858,0.03396072,100.05710582],[4.53593905,0.03396246,100.05720467],[4.53593952,0.0339642,100.05730325],[4.53593999,0.03396594,100.05740155],[4.53594046,0.03396768,100.05749958],[4.53594093,0.03396942,100.05759733],[4.5359414,0.03397116,100.05769479],[4.53594187,0.03397291,100.05779197],[4.53594234,0.03397465,100.05788886],[4.53594281,0.03397639,100.05798546],[4.53594328,0.03397813,100.05808176],[4.53594375,0.03397987,100.05817776],[4.53594422,0.03398161,100.05827345],[4.53594469,0.03398335,100.05836884],[4.53594516,0.03398509,100.05846392],[4.53594563,0.03398683,100.05855868],[4.5359461,0.03398858,100.05865313],[4.53594657,0.03399032,100.05874725],[4.53594704,0.03399206,100.05884105],[4.53594751,0.0339938,100.05893452],[4.53594798,0.03399554,100.05902766],[4.53594845,0.03399728,100.05912047],[4.53594892,0.03399902,100.05921293],[4.53594938,0.03400076,100.05930506],[4.53594985,0.0340025,100.05939684],[4.53595032,0.03400425,100.05948827],[4.53595079,0.03400599,100.05957935],[4.53595126,0.03400773,100.05967007],[4.53595173,0.03400947,100.05976043],[4.5359522,0.03401121,100.05985043],[4.53595267,0.03401295,100.05994006],[4.53595314,0.03401469,100.06002933],[4.5359536,0.03401643,100.06011822],[4.53595407,0.03401818,100.06020673],[4.53595454,0.03401992,100.06029486],[4.53595501,0.03402166,100.0603826],[4.53595548,0.0340234,100.06046996],[4.53595595,0.03402514,100.06055693],[4.53595642,0.03402688,100.0606435],[4.53595688,0.03402862,100.06072967],[4.53595735,0.03403037,100.06081544],[4.53595782,0.03403211,100.06090081],[4.53595829,0.03403385,100.06098576],[4.53595876,0.03403559,100.0610703],[4.53595922,0.03403733,100.06115443],[4.53595969,0.03403907,100.06123813],[4.53596016,0.03404082,100.06132141],[4.53596063,0.03404256,100.06140426],[4.5359611,0.0340443,100.06148667],[4.53596156,0.03404604,100.06156866],[4.53596203,0.03404778,100.0616502],[4.5359625,0.03404952,100.0617313],[4.53596296,0.03405127,100.06181195],[4.53596343,0.03405301,100.06189215],[4.5359639,0.03405475,100.0619719]],"type":"LineString"},"type":"feature","properties":{"successorId":3,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":2,"type":"border","predecessorId":2}},{"geometry":{"coordinates":[[4.53584135,0.03355484,100.02790119],[4.53584149,0.03355535,100.02793446],[4.53584197,0.03355709,100.02804906],[4.53584244,0.03355883,100.02816595],[4.53584292,0.03356057,100.02828508],[4.5358434,0.03356231,100.02840638],[4.53584387,0.03356405,100.02852977],[4.53584435,0.03356579,100.0286552],[4.53584483,0.03356753,100.02878259],[4.53584531,0.03356927,100.02891188],[4.53584579,0.03357101,100.029043],[4.53584627,0.03357275,100.02917589],[4.53584675,0.03357448,100.02931047],[4.53584723,0.03357622,100.02944668],[4.53584771,0.03357796,100.02958447],[4.53584818,0.0335797,100.02972375],[4.53584866,0.03358144,100.02986446],[4.53584914,0.03358318,100.03000655],[4.53584962,0.03358492,100.03014993],[4.53585009,0.03358666,100.03029456],[4.53585057,0.0335884,100.03044035],[4.53585104,0.03359014,100.03058725],[4.53585152,0.03359188,100.0307352],[4.53585199,0.03359362,100.03088412],[4.53585247,0.03359536,100.03103395],[4.53585294,0.0335971,100.03118463],[4.53585341,0.03359884,100.03133609],[4.53585388,0.03360058,100.03148827],[4.53585435,0.03360232,100.0316411],[4.53585483,0.03360406,100.03179452],[4.5358553,0.0336058,100.03194847],[4.53585577,0.03360754,100.03210288],[4.53585624,0.03360928,100.03225769],[4.53585671,0.03361102,100.03241283],[4.53585718,0.03361277,100.03256824],[4.53585765,0.03361451,100.03272386],[4.53585812,0.03361625,100.03287962],[4.53585859,0.03361799,100.03303545],[4.53585906,0.03361973,100.0331913],[4.53585953,0.03362147,100.03334709],[4.53586,0.03362321,100.03350277],[4.53586047,0.03362496,100.03365827],[4.53586094,0.0336267,100.03381352],[4.53586141,0.03362844,100.03396847],[4.53586188,0.03363018,100.03412305],[4.53586235,0.03363192,100.03427719],[4.53586282,0.03363366,100.03443085],[4.53586329,0.0336354,100.03458402],[4.53586376,0.03363715,100.0347367],[4.53586423,0.03363889,100.0348889],[4.5358647,0.03364063,100.03504062],[4.53586517,0.03364237,100.03519187],[4.53586564,0.03364411,100.03534266],[4.5358661,0.03364585,100.03549299],[4.53586657,0.0336476,100.03564287],[4.53586704,0.03364934,100.0357923],[4.53586751,0.03365108,100.03594128],[4.53586798,0.03365282,100.03608983],[4.53586845,0.03365456,100.03623794],[4.53586892,0.0336563,100.03638562],[4.53586939,0.03365805,100.03653289],[4.53586986,0.03365979,100.03667973],[4.53587033,0.03366153,100.03682617],[4.5358708,0.03366327,100.0369722],[4.53587127,0.03366501,100.03711783],[4.53587174,0.03366675,100.03726306],[4.53587221,0.03366849,100.0374079],[4.53587268,0.03367023,100.03755236],[4.53587315,0.03367198,100.03769643],[4.53587362,0.03367372,100.03784013],[4.53587409,0.03367546,100.03798346],[4.53587456,0.0336772,100.03812643],[4.53587503,0.03367894,100.03826904],[4.53587551,0.03368068,100.03841129],[4.53587598,0.03368242,100.0385532],[4.53587645,0.03368416,100.03869476],[4.53587692,0.0336859,100.03883598],[4.53587739,0.03368765,100.03897687],[4.53587786,0.03368939,100.03911743],[4.53587833,0.03369113,100.03925766],[4.53587881,0.03369287,100.03939756],[4.53587928,0.03369461,100.03953714],[4.53587975,0.03369635,100.03967639],[4.53588022,0.03369809,100.0398153],[4.53588069,0.03369983,100.03995388],[4.53588116,0.03370157,100.04009212],[4.53588164,0.03370331,100.04023003],[4.53588211,0.03370505,100.0403676],[4.53588258,0.03370679,100.04050484],[4.53588305,0.03370854,100.04064173],[4.53588352,0.03371028,100.04077828],[4.535884,0.03371202,100.04091448],[4.53588447,0.03371376,100.04105035],[4.53588494,0.0337155,100.04118586],[4.53588541,0.03371724,100.04132103],[4.53588588,0.03371898,100.04145585],[4.53588636,0.03372072,100.04159033],[4.53588683,0.03372246,100.04172445],[4.5358873,0.0337242,100.04185821],[4.53588777,0.03372594,100.04199163],[4.53588825,0.03372768,100.04212469],[4.53588872,0.03372942,100.04225739],[4.53588919,0.03373116,100.04238973],[4.53588966,0.03373291,100.04252172],[4.53589013,0.03373465,100.04265334],[4.5358906,0.03373639,100.0427846],[4.53589108,0.03373813,100.0429155],[4.53589155,0.03373987,100.04304604],[4.53589202,0.03374161,100.0431762],[4.53589249,0.03374335,100.04330601],[4.53589296,0.03374509,100.04343544],[4.53589343,0.03374683,100.0435645],[4.53589391,0.03374857,100.04369319],[4.53589438,0.03375031,100.04382151],[4.53589485,0.03375205,100.04394946],[4.53589532,0.0337538,100.04407703],[4.53589579,0.03375554,100.04420422],[4.53589626,0.03375728,100.04433104],[4.53589673,0.03375902,100.04445747],[4.5358972,0.03376076,100.04458353],[4.53589768,0.0337625,100.04470921],[4.53589815,0.03376424,100.04483451],[4.53589862,0.03376598,100.04495943],[4.53589909,0.03376772,100.04508398],[4.53589956,0.03376946,100.04520817],[4.53590003,0.03377121,100.04533199],[4.5359005,0.03377295,100.04545545],[4.53590097,0.03377469,100.04557855],[4.53590144,0.03377643,100.0457013],[4.53590191,0.03377817,100.04582369],[4.53590238,0.03377991,100.04594574],[4.53590285,0.03378165,100.04606744],[4.53590332,0.03378339,100.0461888],[4.53590379,0.03378514,100.04630982],[4.53590426,0.03378688,100.0464305],[4.53590473,0.03378862,100.04655085],[4.5359052,0.03379036,100.04667087],[4.53590567,0.0337921,100.04679056],[4.53590614,0.03379384,100.04690993],[4.53590661,0.03379558,100.04702898],[4.53590708,0.03379732,100.04714772],[4.53590755,0.03379907,100.04726614],[4.53590802,0.03380081,100.04738425],[4.53590849,0.03380255,100.04750206],[4.53590896,0.03380429,100.04761956],[4.53590943,0.03380603,100.04773677],[4.5359099,0.03380777,100.04785368],[4.53591037,0.03380951,100.04797029],[4.53591084,0.03381126,100.04808662],[4.53591131,0.033813,100.04820266],[4.53591177,0.03381474,100.04831842],[4.53591224,0.03381648,100.0484339],[4.53591271,0.03381822,100.04854911],[4.53591318,0.03381996,100.04866404],[4.53591365,0.0338217,100.04877871],[4.53591412,0.03382345,100.04889311],[4.53591459,0.03382519,100.04900725],[4.53591506,0.03382693,100.04912113],[4.53591553,0.03382867,100.04923475],[4.535916,0.03383041,100.04934812],[4.53591646,0.03383215,100.04946125],[4.53591693,0.0338339,100.04957413],[4.5359174,0.03383564,100.04968677],[4.53591787,0.03383738,100.04979917],[4.53591834,0.03383912,100.04991133],[4.53591881,0.03384086,100.05002326],[4.53591928,0.0338426,100.05013497],[4.53591975,0.03384434,100.05024645],[4.53592022,0.03384609,100.05035771],[4.53592068,0.03384783,100.05046875],[4.53592115,0.03384957,100.05057958],[4.53592162,0.03385131,100.05069019],[4.53592209,0.03385305,100.0508006],[4.53592256,0.03385479,100.0509108],[4.53592303,0.03385653,100.0510208],[4.5359235,0.03385828,100.05113061],[4.53592397,0.03386002,100.05124022],[4.53592444,0.03386176,100.05134964],[4.5359249,0.0338635,100.05145887],[4.53592537,0.03386524,100.05156791],[4.53592584,0.03386698,100.05167678],[4.53592631,0.03386873,100.05178546],[4.53592678,0.03387047,100.05189398],[4.53592725,0.03387221,100.05200232],[4.53592772,0.03387395,100.05211049],[4.53592819,0.03387569,100.0522185],[4.53592866,0.03387743,100.05232635],[4.53592913,0.03387917,100.05243405],[4.5359296,0.03388091,100.05254158],[4.53593007,0.03388266,100.05264897],[4.53593054,0.0338844,100.05275621],[4.53593101,0.03388614,100.05286331],[4.53593148,0.03388788,100.05297026],[4.53593195,0.03388962,100.05307708],[4.53593242,0.03389136,100.05318377],[4.53593289,0.0338931,100.05329031],[4.53593336,0.03389484,100.05339672],[4.53593383,0.03389659,100.05350299],[4.5359343,0.03389833,100.05360911],[4.53593477,0.03390007,100.05371509],[4.53593524,0.03390181,100.05382091],[4.53593571,0.03390355,100.05392657],[4.53593618,0.03390529,100.05403207],[4.53593665,0.03390703,100.05413741],[4.53593712,0.03390877,100.05424258],[4.53593759,0.03391051,100.05434759],[4.53593806,0.03391225,100.05445242],[4.53593853,0.033914,100.05455707],[4.535939,0.03391574,100.05466154],[4.53593947,0.03391748,100.05476583],[4.53593995,0.03391922,100.05486993],[4.53594042,0.03392096,100.05497384],[4.53594089,0.0339227,100.05507756],[4.53594136,0.03392444,100.05518108],[4.53594183,0.03392618,100.05528439],[4.5359423,0.03392792,100.05538751],[4.53594277,0.03392966,100.05549041],[4.53594325,0.0339314,100.0555931],[4.53594372,0.03393314,100.05569558],[4.53594419,0.03393489,100.05579784],[4.53594466,0.03393663,100.05589988],[4.53594513,0.03393837,100.0560017],[4.5359456,0.03394011,100.05610328],[4.53594608,0.03394185,100.05620463],[4.53594655,0.03394359,100.05630575],[4.53594702,0.03394533,100.05640663],[4.53594749,0.03394707,100.05650727],[4.53594796,0.03394881,100.05660766],[4.53594843,0.03395055,100.0567078],[4.53594891,0.03395229,100.0568077],[4.53594938,0.03395403,100.05690733],[4.53594985,0.03395577,100.05700671],[4.53595032,0.03395751,100.05710582],[4.53595079,0.03395925,100.05720467],[4.53595126,0.033961,100.05730325],[4.53595174,0.03396274,100.05740155],[4.53595221,0.03396448,100.05749958],[4.53595268,0.03396622,100.05759733],[4.53595315,0.03396796,100.05769479],[4.53595362,0.0339697,100.05779197],[4.53595409,0.03397144,100.05788886],[4.53595457,0.03397318,100.05798546],[4.53595504,0.03397492,100.05808176],[4.53595551,0.03397666,100.05817776],[4.53595598,0.0339784,100.05827345],[4.53595645,0.03398014,100.05836884],[4.53595692,0.03398188,100.05846392],[4.53595739,0.03398362,100.05855868],[4.53595786,0.03398537,100.05865313],[4.53595834,0.03398711,100.05874725],[4.53595881,0.03398885,100.05884105],[4.53595928,0.03399059,100.05893452],[4.53595975,0.03399233,100.05902766],[4.53596022,0.03399407,100.05912047],[4.53596069,0.03399581,100.05921293],[4.53596116,0.03399755,100.05930506],[4.53596163,0.03399929,100.05939684],[4.5359621,0.03400103,100.05948827],[4.53596257,0.03400277,100.05957935],[4.53596304,0.03400451,100.05967007],[4.53596351,0.03400626,100.05976043],[4.53596398,0.034008,100.05985043],[4.53596445,0.03400974,100.05994006],[4.53596492,0.03401148,100.06002933],[4.53596539,0.03401322,100.06011822],[4.53596586,0.03401496,100.06020673],[4.53596633,0.0340167,100.06029486],[4.5359668,0.03401844,100.0603826],[4.53596727,0.03402018,100.06046996],[4.53596774,0.03402193,100.06055693],[4.53596821,0.03402367,100.0606435],[4.53596868,0.03402541,100.06072967],[4.53596915,0.03402715,100.06081544],[4.53596962,0.03402889,100.06090081],[4.53597009,0.03403063,100.06098576],[4.53597056,0.03403237,100.0610703],[4.53597102,0.03403412,100.06115443],[4.53597149,0.03403586,100.06123813],[4.53597196,0.0340376,100.06132141],[4.53597243,0.03403934,100.06140426],[4.5359729,0.03404108,100.06148667],[4.53597336,0.03404282,100.06156866],[4.53597383,0.03404457,100.0616502],[4.5359743,0.03404631,100.0617313],[4.53597477,0.03404805,100.06181195],[4.53597523,0.03404979,100.06189215],[4.5359757,0.03405153,100.0619719]],"type":"LineString"},"type":"feature","properties":{"successorId":4,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":3,"type":"border","predecessorId":3}},{"geometry":{"coordinates":[[4.5357259,0.03358677,99.79664749],[4.53572543,0.03358503,99.79637817],[4.53572497,0.03358329,99.79610838],[4.5357245,0.03358155,99.79583813],[4.53572404,0.0335798,99.79556741],[4.53572358,0.03357806,99.79529623],[4.53572311,0.03357632,99.79502459],[4.53572265,0.03357458,99.7947525],[4.53572218,0.03357284,99.79447997],[4.53572172,0.0335711,99.79420698],[4.53572126,0.03356936,99.79393356],[4.53572079,0.03356762,99.79365969],[4.53572033,0.03356588,99.79338539],[4.53571986,0.03356414,99.79311066],[4.53571942,0.03356248,99.79284973]],"type":"LineString"},"type":"feature","properties":{"successorId":-6,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":-6,"type":"border","predecessorId":-6}},{"geometry":{"coordinates":[[4.53574082,0.03358264,99.79664749],[4.53574035,0.0335809,99.79637817],[4.53573987,0.03357916,99.79610838],[4.5357394,0.03357743,99.79583813],[4.53573893,0.03357569,99.79556741],[4.53573845,0.03357395,99.79529623],[4.53573798,0.03357221,99.79502459],[4.5357375,0.03357047,99.7947525],[4.53573703,0.03356873,99.79447997],[4.53573655,0.033567,99.79420698],[4.53573608,0.03356526,99.79393356],[4.5357356,0.03356352,99.79365969],[4.53573513,0.03356178,99.79338539],[4.53573466,0.03356004,99.79311066],[4.53573421,0.03355839,99.79284973]],"type":"LineString"},"type":"feature","properties":{"successorId":-5,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":-5,"type":"border","predecessorId":-5}},{"geometry":{"coordinates":[[4.53574214,0.03358228,99.64664749],[4.53574167,0.03358054,99.64637817],[4.5357412,0.0335788,99.64610838],[4.53574073,0.03357706,99.64583813],[4.53574027,0.03357532,99.64556741],[4.5357398,0.03357358,99.64529623],[4.53573933,0.03357184,99.64502459],[4.53573886,0.0335701,99.6447525],[4.53573839,0.03356836,99.64447997],[4.53573792,0.03356662,99.64420698],[4.53573746,0.03356488,99.64393356],[4.53573699,0.03356314,99.64365969],[4.53573652,0.0335614,99.64338539],[4.53573605,0.03355966,99.64311066],[4.53573561,0.03355801,99.64284973]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-4,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-4,"type":"border","predecessorId":-4}},{"geometry":{"coordinates":[[4.53574516,0.03358144,99.65473039],[4.53574469,0.0335797,99.6544651],[4.53574423,0.03357796,99.65419933],[4.53574376,0.03357622,99.65393311],[4.53574329,0.03357448,99.65366642],[4.53574282,0.03357274,99.65339928],[4.53574235,0.033571,99.65313169],[4.53574188,0.03356926,99.65286365],[4.53574142,0.03356752,99.65259517],[4.53574095,0.03356578,99.65232624],[4.53574048,0.03356404,99.65205688],[4.53574001,0.0335623,99.65178708],[4.53573954,0.03356056,99.65151685],[4.53573907,0.03355882,99.65124619],[4.53573863,0.03355717,99.65098912]],"type":"LineString"},"type":"feature","properties":{"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-3,"type":"stop","predecessorId":-3}},{"geometry":{"coordinates":[[4.5357621,0.03357676,99.70002627],[4.53576163,0.03357502,99.69976118],[4.53576115,0.03357328,99.69949563],[4.53576067,0.03357154,99.69922962],[4.5357602,0.0335698,99.69896316],[4.53575972,0.03356807,99.69869625],[4.53575924,0.03356633,99.69842889],[4.53575877,0.03356459,99.69816109],[4.53575829,0.03356285,99.69789284],[4.53575781,0.03356111,99.69762415],[4.53575734,0.03355938,99.69735503],[4.53575686,0.03355764,99.69708547],[4.53575638,0.0335559,99.69681547],[4.5357559,0.03355416,99.69654505],[4.53575545,0.03355251,99.6962882]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2}},{"geometry":{"coordinates":[[4.5357938,0.03356799,99.78476619],[4.53579332,0.03356625,99.78454407],[4.53579284,0.03356452,99.78432155],[4.53579237,0.03356278,99.78409862],[4.53579189,0.03356104,99.78387529],[4.53579141,0.0335593,99.78365156],[4.53579094,0.03355756,99.78342743],[4.53579046,0.03355582,99.7832029],[4.53578998,0.03355408,99.78297798],[4.53578951,0.03355234,99.78275266],[4.53578903,0.03355061,99.78252695],[4.53578855,0.03354887,99.78230084],[4.53578808,0.03354713,99.78207434],[4.5357876,0.03354539,99.78184745],[4.53578715,0.03354374,99.78163192]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}},{"geometry":{"coordinates":[[4.53582075,0.03353444,99.87212468],[4.53582118,0.03353609,99.87223654],[4.53582164,0.03353784,99.87235421],[4.53582209,0.03353959,99.87247159],[4.53582254,0.03354133,99.87258869],[4.535823,0.03354308,99.8727055],[4.53582345,0.03354482,99.87282203],[4.5358239,0.03354657,99.87293827],[4.53582435,0.03354832,99.87305423],[4.53582481,0.03355006,99.8731699],[4.53582526,0.03355181,99.87328529],[4.53582571,0.03355355,99.87340039],[4.53582617,0.0335553,99.87351521],[4.53582662,0.03355704,99.87362975],[4.53582707,0.03355879,99.873744]],"type":"LineString"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":1,"type":"shoulder","predecessorId":0}},{"geometry":{"coordinates":[[4.53582231,0.03353401,99.87631102],[4.53582274,0.03353566,99.87642088],[4.53582319,0.03353741,99.87653645],[4.53582364,0.03353916,99.87665173],[4.5358241,0.0335409,99.87676673],[4.53582455,0.03354265,99.87688145],[4.535825,0.03354439,99.87699589],[4.53582546,0.03354614,99.87711004],[4.53582591,0.03354789,99.87722391],[4.53582636,0.03354963,99.87733749],[4.53582682,0.03355138,99.8774508],[4.53582727,0.03355312,99.87756382],[4.53582772,0.03355487,99.87767656],[4.53582817,0.03355661,99.87778902],[4.53582863,0.03355836,99.87790119]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":2,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":2,"type":"border","predecessorId":0}},{"geometry":{"coordinates":[[4.53582352,0.03353367,100.02631102],[4.53582395,0.03353533,100.02642088],[4.5358244,0.03353708,100.02653645],[4.53582485,0.03353882,100.02665173],[4.53582529,0.03354057,100.02676673],[4.53582574,0.03354232,100.02688145],[4.53582619,0.03354406,100.02699589],[4.53582664,0.03354581,100.02711004],[4.53582709,0.03354756,100.02722391],[4.53582754,0.03354931,100.02733749],[4.53582799,0.03355105,100.0274508],[4.53582844,0.0335528,100.02756382],[4.53582889,0.03355455,100.02767656],[4.53582934,0.03355629,100.02778902],[4.53582979,0.03355804,100.02790119]],"type":"LineString"},"type":"feature","properties":{"successorId":3,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":3,"type":"border","predecessorId":2}},{"geometry":{"coordinates":[[4.53583473,0.03353057,100.02631102],[4.53583518,0.03353222,100.02642088],[4.53583565,0.03353396,100.02653645],[4.53583613,0.0335357,100.02665173],[4.5358366,0.03353744,100.02676673],[4.53583708,0.03353918,100.02688145],[4.53583755,0.03354092,100.02699589],[4.53583803,0.03354266,100.02711004],[4.5358385,0.0335444,100.02722391],[4.53583898,0.03354614,100.02733749],[4.53583945,0.03354788,100.0274508],[4.53583993,0.03354962,100.02756382],[4.5358404,0.03355136,100.02767656],[4.53584088,0.0335531,100.02778902],[4.53584135,0.03355484,100.02790119]],"type":"LineString"},"type":"feature","properties":{"successorId":4,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":4,"type":"border","predecessorId":3}},{"geometry":{"coordinates":[[4.53571942,0.03356248,99.79284973],[4.53571896,0.03356074,99.7925752],[4.5357185,0.033559,99.79229445],[4.53571803,0.03355726,99.79201327],[4.53571757,0.03355552,99.79173168],[4.53571711,0.03355378,99.79144966],[4.53571664,0.03355204,99.79116814]],"type":"LineString"},"type":"feature","properties":{"successorId":-6,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":-6,"type":"border","predecessorId":-6}},{"geometry":{"coordinates":[[4.53573421,0.03355839,99.79284973],[4.53573373,0.03355665,99.7925752],[4.53573326,0.03355492,99.79229445],[4.53573279,0.03355318,99.79201327],[4.53573231,0.03355144,99.79173168],[4.53573184,0.0335497,99.79144966],[4.53573136,0.03354797,99.79116814]],"type":"LineString"},"type":"feature","properties":{"successorId":-5,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":-5,"type":"border","predecessorId":-5}},{"geometry":{"coordinates":[[4.53573561,0.03355801,99.64284973],[4.53573514,0.03355627,99.6425752],[4.53573467,0.03355453,99.64229445],[4.5357342,0.03355279,99.64201327],[4.53573373,0.03355105,99.64173168],[4.53573326,0.03354931,99.64144966],[4.53573279,0.03354757,99.64116814]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-4,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-4,"type":"border","predecessorId":-4}},{"geometry":{"coordinates":[[4.53573863,0.03355717,99.65098912],[4.53573946,0.03355507,99.65420874],[4.53573899,0.03355333,99.65393379],[4.53573852,0.03355159,99.65365843],[4.53573805,0.03354985,99.65338265],[4.53573758,0.03354811,99.65310646],[4.53573711,0.03354638,99.65283074]],"type":"LineString"},"type":"feature","properties":{"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-3,"type":"stop","predecessorId":-3}},{"geometry":{"coordinates":[[4.53575545,0.03355251,99.6962882],[4.53575498,0.03355077,99.69601831],[4.5357545,0.03354904,99.69574799],[4.53575402,0.0335473,99.69547726],[4.53575355,0.03354556,99.69520611],[4.53575307,0.03354382,99.69493455],[4.5357526,0.03354209,99.69466345]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2}},{"geometry":{"coordinates":[[4.53578715,0.03354374,99.78163192],[4.53578667,0.033542,99.78140406],[4.53578619,0.03354026,99.78117581],[4.53578572,0.03353853,99.78094717],[4.53578524,0.03353679,99.78071815],[4.53578476,0.03353505,99.78048874],[4.53578429,0.03353331,99.78025969]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}},{"geometry":{"coordinates":[[4.53581804,0.03352397,99.87142006],[4.53581849,0.03352571,99.8715379],[4.53581894,0.03352746,99.87165583],[4.5358194,0.0335292,99.87177347],[4.53581985,0.03353095,99.87189082],[4.5358203,0.03353269,99.8720079],[4.53582075,0.03353444,99.87212468]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":1,"type":"shoulder","predecessorId":1}},{"geometry":{"coordinates":[[4.53581959,0.03352354,99.87561901],[4.53582005,0.03352528,99.87573474],[4.5358205,0.03352703,99.87585057],[4.53582095,0.03352877,99.8759661],[4.5358214,0.03353052,99.87608136],[4.53582186,0.03353226,99.87619633],[4.53582231,0.03353401,99.87631102]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":2,"type":"border","predecessorId":2}},{"geometry":{"coordinates":[[4.5358209,0.03352318,100.02561901],[4.53582133,0.03352492,100.02573474],[4.53582177,0.03352667,100.02585057],[4.53582221,0.03352842,100.0259661],[4.53582264,0.03353017,100.02608136],[4.53582308,0.03353192,100.02619633],[4.53582352,0.03353367,100.02631102]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":3,"type":"border","predecessorId":3}},{"geometry":{"coordinates":[[4.53583187,0.03352014,100.02561901],[4.53583235,0.03352187,100.02573474],[4.53583282,0.03352361,100.02585057],[4.5358333,0.03352535,100.0259661],[4.53583378,0.03352709,100.02608136],[4.53583425,0.03352883,100.02619633],[4.53583473,0.03353057,100.02631102]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":true,"heights":[{"outer":0.15,"inner":0.025},{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":4,"type":"border","predecessorId":4}},{"geometry":{"coordinates":[[4.53571664,0.03355204,99.79116814],[4.53571618,0.0335503,99.79087935],[4.53571572,0.03354856,99.79059014],[4.53571526,0.03354682,99.79030053],[4.5357148,0.03354508,99.79001052],[4.53571433,0.03354334,99.78972011],[4.53571387,0.03354159,99.78942929],[4.53571341,0.03353985,99.78913809],[4.53571295,0.03353811,99.7888465],[4.53571249,0.03353637,99.78855451],[4.53571202,0.03353463,99.78826215],[4.53571156,0.03353289,99.78796941],[4.5357111,0.03353114,99.78767629],[4.53571064,0.0335294,99.7873828],[4.53571018,0.03352766,99.78708894],[4.53570971,0.03352592,99.78679472],[4.53570925,0.03352418,99.78650013],[4.53570879,0.03352244,99.78620519],[4.53570833,0.03352069,99.78590989],[4.53570787,0.03351895,99.78561424],[4.5357074,0.03351721,99.78531824],[4.53570694,0.03351547,99.7850219],[4.53570648,0.03351373,99.78472522],[4.53570602,0.03351199,99.7844282],[4.53570555,0.03351025,99.78413084],[4.53570509,0.0335085,99.78383316],[4.53570463,0.03350676,99.78353515],[4.53570417,0.03350502,99.78323682],[4.53570371,0.03350328,99.78293817],[4.53570324,0.03350154,99.7826392],[4.53570278,0.0334998,99.78233992],[4.53570267,0.03349937,99.78226605]],"type":"LineString"},"type":"feature","properties":{"successorId":-6,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":-6,"type":"border","predecessorId":-6}},{"geometry":{"coordinates":[[4.53573136,0.03354797,99.79116814],[4.53573089,0.03354623,99.79087935],[4.53573042,0.03354449,99.79059014],[4.53572995,0.03354275,99.79030053],[4.53572948,0.03354101,99.79001052],[4.535729,0.03353927,99.78972011],[4.53572853,0.03353753,99.78942929],[4.53572806,0.0335358,99.78913809],[4.53572759,0.03353406,99.7888465],[4.53572711,0.03353232,99.78855451],[4.53572664,0.03353058,99.78826215],[4.53572617,0.03352884,99.78796941],[4.5357257,0.0335271,99.78767629],[4.53572522,0.03352536,99.7873828],[4.53572475,0.03352362,99.78708894],[4.53572428,0.03352188,99.78679472],[4.53572381,0.03352014,99.78650013],[4.53572333,0.03351841,99.78620519],[4.53572286,0.03351667,99.78590989],[4.53572239,0.03351493,99.78561424],[4.53572192,0.03351319,99.78531824],[4.53572144,0.03351145,99.7850219],[4.53572097,0.03350971,99.78472522],[4.5357205,0.03350797,99.7844282],[4.53572003,0.03350623,99.78413084],[4.53571955,0.03350449,99.78383316],[4.53571908,0.03350275,99.78353515],[4.53571861,0.03350102,99.78323682],[4.53571814,0.03349928,99.78293817],[4.53571766,0.03349754,99.7826392],[4.53571719,0.0334958,99.78233992],[4.53571707,0.03349537,99.78226605]],"type":"LineString"},"type":"feature","properties":{"successorId":-5,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":-5,"type":"border","predecessorId":-5}},{"geometry":{"coordinates":[[4.53573279,0.03354757,99.64116814],[4.53573232,0.03354583,99.64087935],[4.53573184,0.0335441,99.64059014],[4.53573137,0.03354236,99.64030053],[4.5357309,0.03354062,99.64001052],[4.53573043,0.03353888,99.63972011],[4.53572995,0.03353714,99.63942929],[4.53572948,0.0335354,99.63913809],[4.53572901,0.03353366,99.6388465],[4.53572854,0.03353192,99.63855451],[4.53572806,0.03353018,99.63826215],[4.53572759,0.03352845,99.63796941],[4.53572712,0.03352671,99.63767629],[4.53572664,0.03352497,99.6373828],[4.53572617,0.03352323,99.63708894],[4.5357257,0.03352149,99.63679472],[4.53572523,0.03351975,99.63650013],[4.53572475,0.03351801,99.63620519],[4.53572428,0.03351627,99.63590989],[4.53572381,0.03351453,99.63561424],[4.53572334,0.03351279,99.63531824],[4.53572286,0.03351106,99.6350219],[4.53572239,0.03350932,99.63472522],[4.53572192,0.03350758,99.6344282],[4.53572145,0.03350584,99.63413084],[4.53572097,0.0335041,99.63383316],[4.5357205,0.03350236,99.63353515],[4.53572003,0.03350062,99.63323682],[4.53571955,0.03349888,99.63293817],[4.53571908,0.03349714,99.6326392],[4.53571861,0.03349541,99.63233992],[4.53571849,0.03349498,99.63226605]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-4,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-4,"type":"border","predecessorId":-4}},{"geometry":{"coordinates":[[4.53573711,0.03354638,99.65283074],[4.53573663,0.03354464,99.6525478],[4.53573616,0.0335429,99.65226445],[4.53573569,0.03354116,99.6519807],[4.53573522,0.03353942,99.65169655],[4.53573474,0.03353768,99.651412],[4.53573427,0.03353594,99.65112706],[4.5357338,0.03353421,99.65084173],[4.53573333,0.03353247,99.65055601],[4.53573285,0.03353073,99.6502699],[4.53573238,0.03352899,99.64998342],[4.53573191,0.03352725,99.64969656],[4.53573144,0.03352551,99.64940932],[4.53573096,0.03352377,99.64912171],[4.53573049,0.03352203,99.64883374],[4.53573002,0.03352029,99.6485454],[4.53572954,0.03351855,99.6482567],[4.53572907,0.03351682,99.64796764],[4.5357286,0.03351508,99.64767823],[4.53572813,0.03351334,99.64738846],[4.53572765,0.0335116,99.64709835],[4.53572718,0.03350986,99.6468079],[4.53572671,0.03350812,99.64651711],[4.53572624,0.03350638,99.64622597],[4.53572576,0.03350464,99.64593451],[4.53572529,0.0335029,99.64564271],[4.53572482,0.03350116,99.64535058],[4.53572434,0.03349943,99.64505813],[4.53572387,0.03349769,99.64476536],[4.5357234,0.03349595,99.64447228],[4.53572293,0.03349421,99.64417887],[4.53572281,0.03349378,99.64410645]],"type":"LineString"},"type":"feature","properties":{"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-3,"type":"stop","predecessorId":-3}},{"geometry":{"coordinates":[[4.5357526,0.03354209,99.69466345],[4.53575212,0.03354035,99.69439527],[4.53575165,0.03353861,99.6941267],[4.53575117,0.03353687,99.69385772],[4.5357507,0.03353514,99.69358835],[4.53575022,0.0335334,99.69331858],[4.53574975,0.03353166,99.69304843],[4.53574927,0.03352992,99.69277789],[4.5357488,0.03352818,99.69250696],[4.53574832,0.03352644,99.69223565],[4.53574785,0.0335247,99.69196396],[4.53574737,0.03352296,99.69169189],[4.5357469,0.03352123,99.69141945],[4.53574642,0.03351949,99.69114664],[4.53574595,0.03351775,99.69087345],[4.53574547,0.03351601,99.6905999],[4.535745,0.03351427,99.69032599],[4.53574452,0.03351253,99.69005172],[4.53574405,0.03351079,99.68977708],[4.53574357,0.03350906,99.68950209],[4.53574309,0.03350732,99.68922675],[4.53574262,0.03350558,99.68895105],[4.53574214,0.03350384,99.68867501],[4.53574167,0.0335021,99.68839862],[4.53574119,0.03350036,99.68812189],[4.53574072,0.03349862,99.68784482],[4.53574024,0.03349689,99.68756741],[4.53573977,0.03349515,99.68728967],[4.53573929,0.03349341,99.68701159],[4.53573882,0.03349167,99.68673319],[4.53573834,0.03348993,99.68645446],[4.53573823,0.0334895,99.68638565]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2}},{"geometry":{"coordinates":[[4.53578429,0.03353331,99.78025969],[4.53578381,0.03353158,99.78003089],[4.53578333,0.03352984,99.77980172],[4.53578286,0.0335281,99.77957217],[4.53578238,0.03352636,99.77934225],[4.53578191,0.03352462,99.77911195],[4.53578143,0.03352288,99.77888128],[4.53578095,0.03352114,99.77865023],[4.53578048,0.0335194,99.77841881],[4.53578,0.03351767,99.77818703],[4.53577952,0.03351593,99.77795487],[4.53577905,0.03351419,99.77772235],[4.53577857,0.03351245,99.77748946],[4.53577809,0.03351071,99.7772562],[4.53577762,0.03350897,99.77702259],[4.53577714,0.03350723,99.7767886],[4.53577666,0.0335055,99.77655426],[4.53577619,0.03350376,99.77631956],[4.53577571,0.03350202,99.7760845],[4.53577523,0.03350028,99.77584908],[4.53577476,0.03349854,99.7756133],[4.53577428,0.0334968,99.77537717],[4.5357738,0.03349506,99.77514069],[4.53577333,0.03349332,99.77490385],[4.53577285,0.03349159,99.77466666],[4.53577237,0.03348985,99.77442912],[4.5357719,0.03348811,99.77419123],[4.53577142,0.03348637,99.773953],[4.53577094,0.03348463,99.77371442],[4.53577047,0.03348289,99.77347549],[4.53576999,0.03348115,99.77323622],[4.53576987,0.03348072,99.77317714]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}},{"geometry":{"coordinates":[[4.53580466,0.03347108,99.86857196],[4.53580478,0.0334715,99.86863092],[4.53580527,0.03347324,99.86886969],[4.53580577,0.03347497,99.86910806],[4.53580626,0.03347671,99.86934602],[4.53580676,0.03347844,99.86958358],[4.53580725,0.03348018,99.86982073],[4.53580774,0.03348191,99.87005748],[4.53580824,0.03348364,99.87029382],[4.53580873,0.03348538,99.87052976],[4.53580923,0.03348711,99.8707653],[4.53580972,0.03348885,99.87100043],[4.53581021,0.03349058,99.87123517],[4.53581071,0.03349232,99.87146949],[4.5358112,0.03349405,99.87170342],[4.53581169,0.03349579,99.87193695],[4.53581219,0.03349752,99.87217007],[4.53581268,0.03349926,99.8724028],[4.53581318,0.03350099,99.87263512],[4.53581367,0.03350272,99.87286704],[4.53581416,0.03350446,99.87309856],[4.53581466,0.03350619,99.87332969],[4.53581515,0.03350793,99.87356041],[4.53581564,0.03350966,99.87379073],[4.53581614,0.0335114,99.87402066],[4.53581663,0.03351313,99.87425019],[4.53581713,0.03351487,99.87447932],[4.53581762,0.0335166,99.87470805],[4.53581811,0.03351834,99.87493638],[4.53581861,0.03352007,99.87516432],[4.5358191,0.0335218,99.87539186],[4.53581959,0.03352354,99.87561901]],"type":"LineString"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":1,"type":"shoulder","predecessorId":0}},{"geometry":{"coordinates":[[4.53581749,0.03346752,99.86857196],[4.53581761,0.03346794,99.86863092],[4.53581809,0.03346968,99.86886969],[4.53581856,0.03347142,99.86910806],[4.53581904,0.03347316,99.86934602],[4.53581951,0.0334749,99.86958358],[4.53581999,0.03347664,99.86982073],[4.53582047,0.03347838,99.87005748],[4.53582094,0.03348012,99.87029382],[4.53582142,0.03348186,99.87052976],[4.53582189,0.0334836,99.8707653],[4.53582237,0.03348534,99.87100043],[4.53582284,0.03348708,99.87123517],[4.53582332,0.03348882,99.87146949],[4.53582379,0.03349056,99.87170342],[4.53582427,0.0334923,99.87193695],[4.53582474,0.03349404,99.87217007],[4.53582522,0.03349578,99.8724028],[4.5358257,0.03349752,99.87263512],[4.53582617,0.03349926,99.87286704],[4.53582665,0.033501,99.87309856],[4.53582712,0.03350274,99.87332969],[4.5358276,0.03350448,99.87356041],[4.53582807,0.03350622,99.87379073],[4.53582855,0.03350796,99.87402066],[4.53582902,0.0335097,99.87425019],[4.5358295,0.03351144,99.87447932],[4.53582997,0.03351318,99.87470805],[4.53583045,0.03351492,99.87493638],[4.53583092,0.03351666,99.87516432],[4.5358314,0.0335184,99.87539186],[4.53583187,0.03352014,99.87561901]],"type":"LineString"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":2,"type":"none","predecessorId":0}},{"geometry":{"coordinates":[[4.53570267,0.03349937,99.78226605],[4.53570221,0.03349762,99.78197014],[4.53570175,0.03349588,99.78167402],[4.53570129,0.03349414,99.78137767],[4.53570083,0.0334924,99.78108111],[4.53570037,0.03349065,99.78078431],[4.53569991,0.03348891,99.78048728],[4.53569945,0.03348717,99.78019002],[4.53569899,0.03348543,99.77989252],[4.53569854,0.03348368,99.77959477],[4.53569808,0.03348194,99.77929678],[4.53569762,0.0334802,99.77899854],[4.53569716,0.03347845,99.77870004],[4.53569671,0.03347671,99.77840128],[4.53569625,0.03347497,99.77810226],[4.53569579,0.03347323,99.77780297],[4.53569533,0.03347148,99.77750341],[4.53569488,0.03346974,99.77720357],[4.53569442,0.033468,99.77690346],[4.53569396,0.03346625,99.77660306],[4.5356935,0.03346451,99.77630236],[4.53569304,0.03346277,99.77600136],[4.53569258,0.03346103,99.77570005],[4.53569212,0.03345928,99.77539843],[4.53569166,0.03345754,99.77509649],[4.5356912,0.0334558,99.77479421],[4.53569074,0.03345406,99.77449159],[4.53569028,0.03345232,99.77418863],[4.53568981,0.03345057,99.77388532],[4.53568935,0.03344883,99.77358164],[4.53568889,0.03344709,99.7732776],[4.53568842,0.03344535,99.77297318],[4.53568795,0.03344361,99.77266838],[4.53568749,0.03344187,99.77236319],[4.53568702,0.03344013,99.7720576],[4.53568655,0.03343839,99.7717516],[4.53568608,0.03343665,99.7714452],[4.53568561,0.03343491,99.77113837],[4.53568514,0.03343317,99.77083111],[4.53568467,0.03343143,99.77052342],[4.53568419,0.03342969,99.77021528],[4.53568372,0.03342795,99.7699067],[4.53568324,0.03342622,99.76959765],[4.53568277,0.03342448,99.76928814],[4.53568229,0.03342274,99.76897816],[4.53568181,0.033421,99.76866768],[4.53568133,0.03341927,99.76835671],[4.53568086,0.03341753,99.76804523],[4.53568038,0.03341579,99.76773323],[4.5356799,0.03341405,99.76742071],[4.53567942,0.03341232,99.76710764],[4.53567894,0.03341058,99.76679403],[4.53567845,0.03340884,99.76647985],[4.53567797,0.03340711,99.76616511],[4.53567749,0.03340537,99.76584978],[4.53567701,0.03340363,99.76553386],[4.53567653,0.0334019,99.76521734],[4.53567604,0.03340016,99.76490019],[4.53567556,0.03339843,99.76458241],[4.53567508,0.03339669,99.76426397],[4.5356746,0.03339495,99.76394487],[4.53567411,0.03339322,99.76362507],[4.53567363,0.03339148,99.76330456],[4.53567315,0.03338975,99.76298334],[4.53567266,0.03338801,99.76266137],[4.53567218,0.03338627,99.76233864],[4.5356717,0.03338454,99.76201514],[4.53567121,0.0333828,99.76169084],[4.53567073,0.03338107,99.76136575],[4.53567025,0.03337933,99.76103985],[4.53566976,0.03337759,99.76071317],[4.53566928,0.03337586,99.76038572],[4.5356688,0.03337412,99.76005751],[4.53566831,0.03337238,99.75972856],[4.53566783,0.03337065,99.75939887],[4.53566735,0.03336891,99.75906847],[4.53566687,0.03336718,99.75873736],[4.53566638,0.03336544,99.75840556],[4.5356659,0.0333637,99.75807308],[4.53566542,0.03336197,99.75773993],[4.53566494,0.03336023,99.75740613],[4.53566445,0.03335849,99.7570717],[4.53566397,0.03335676,99.75673663],[4.53566349,0.03335502,99.75640095],[4.53566301,0.03335329,99.75606467],[4.53566252,0.03335155,99.75572781],[4.53566204,0.03334981,99.75539037],[4.53566156,0.03334808,99.75505238],[4.53566108,0.03334634,99.75471384],[4.5356606,0.0333446,99.75437476],[4.53566011,0.03334287,99.75403517],[4.53565963,0.03334113,99.75369507],[4.53565915,0.03333939,99.75335448],[4.53565867,0.03333766,99.75301341],[4.53565818,0.03333592,99.75267188],[4.5356577,0.03333418,99.7523299],[4.53565722,0.03333245,99.75198748],[4.53565674,0.03333071,99.75164464],[4.53565626,0.03332897,99.75130138],[4.53565578,0.03332724,99.75095773],[4.53565529,0.0333255,99.7506137],[4.53565481,0.03332377,99.7502693],[4.53565433,0.03332203,99.74992455],[4.53565385,0.03332029,99.74957945],[4.53565337,0.03331856,99.74923403],[4.53565288,0.03331682,99.7488883],[4.5356524,0.03331508,99.74854226],[4.53565192,0.03331335,99.74819595],[4.53565144,0.03331161,99.74784936],[4.53565096,0.03330987,99.74750251],[4.53565047,0.03330814,99.74715542],[4.53564999,0.0333064,99.74680811],[4.53564951,0.03330466,99.74646058],[4.53564903,0.03330293,99.74611284],[4.53564855,0.03330119,99.74576493],[4.53564807,0.03329945,99.74541687],[4.53564759,0.03329772,99.74506866],[4.5356471,0.03329598,99.74472033],[4.53564662,0.03329424,99.74437188],[4.53564614,0.0332925,99.74402328],[4.53564566,0.03329077,99.74367451],[4.53564518,0.03328903,99.74332553],[4.5356447,0.03328729,99.74297632],[4.53564422,0.03328556,99.74262684],[4.53564374,0.03328382,99.74227707],[4.53564326,0.03328208,99.74192699],[4.53564278,0.03328035,99.7415766],[4.5356423,0.03327861,99.74122587],[4.53564182,0.03327687,99.7408748],[4.53564134,0.03327513,99.74052337],[4.53564086,0.0332734,99.74017157],[4.53564038,0.03327166,99.73981939],[4.53563989,0.03326992,99.73946681],[4.53563941,0.03326819,99.73911382],[4.53563893,0.03326645,99.73876041],[4.53563845,0.03326471,99.73840657],[4.53563797,0.03326297,99.73805227],[4.53563749,0.03326124,99.73769752],[4.53563701,0.0332595,99.73734229],[4.53563653,0.03325776,99.73698658],[4.53563605,0.03325602,99.73663036],[4.53563557,0.03325429,99.73627363],[4.53563509,0.03325255,99.73591637],[4.53563461,0.03325081,99.73555858],[4.53563413,0.03324908,99.73520023],[4.53563365,0.03324734,99.73484131],[4.53563317,0.0332456,99.73448181],[4.53563269,0.03324386,99.73412172],[4.53563221,0.03324213,99.73376103],[4.53563173,0.03324039,99.73339972],[4.53563125,0.03323865,99.73303777],[4.53563077,0.03323691,99.73267518],[4.53563029,0.03323518,99.73231193],[4.53562981,0.03323344,99.731948],[4.53562933,0.0332317,99.73158339],[4.53562885,0.03322997,99.73121808],[4.53562837,0.03322823,99.73085206],[4.53562789,0.03322649,99.73048532],[4.53562741,0.03322475,99.73011783],[4.53562693,0.03322302,99.7297496],[4.53562645,0.03322128,99.72938059],[4.53562597,0.03321954,99.72901081],[4.53562549,0.0332178,99.72864023],[4.53562501,0.03321607,99.72826885],[4.53562453,0.03321433,99.72789665],[4.53562405,0.03321259,99.72752362],[4.53562357,0.03321086,99.72714974],[4.53562309,0.03320912,99.726775],[4.53562261,0.03320738,99.72639938],[4.53562213,0.03320564,99.72602288],[4.53562165,0.03320391,99.72564548],[4.53562116,0.03320217,99.72526716],[4.53562068,0.03320043,99.72488792],[4.5356202,0.0331987,99.72450773],[4.53561972,0.03319696,99.72412659],[4.53561924,0.03319522,99.72374448],[4.53561876,0.03319349,99.72336141],[4.53561828,0.03319175,99.7229774],[4.53561779,0.03319001,99.72259247],[4.53561731,0.03318827,99.72220664],[4.53561683,0.03318654,99.72181994],[4.53561635,0.0331848,99.72143239],[4.53561587,0.03318306,99.72104401],[4.53561538,0.03318133,99.72065482],[4.5356149,0.03317959,99.72026484],[4.53561442,0.03317785,99.71987408],[4.53561394,0.03317612,99.71948254],[4.53561346,0.03317438,99.71909023],[4.53561298,0.03317264,99.71869715],[4.53561249,0.03317091,99.71830331],[4.53561201,0.03316917,99.71790872],[4.53561153,0.03316743,99.71751338],[4.53561105,0.03316569,99.71711729],[4.53561057,0.03316396,99.71672048],[4.53561009,0.03316222,99.71632293],[4.53560961,0.03316048,99.71592467],[4.53560913,0.03315874,99.71552568],[4.53560865,0.03315701,99.71512599],[4.53560817,0.03315527,99.7147256],[4.53560769,0.03315353,99.71432452],[4.53560721,0.03315179,99.71392276],[4.53560673,0.03315006,99.71352032],[4.53560625,0.03314832,99.7131172],[4.53560578,0.03314658,99.71271341],[4.5356053,0.03314484,99.71230893],[4.53560482,0.0331431,99.71190378],[4.53560435,0.03314136,99.71149796],[4.53560387,0.03313963,99.71109146],[4.5356034,0.03313789,99.71068429],[4.53560292,0.03313615,99.71027646],[4.53560245,0.03313441,99.70986795],[4.53560197,0.03313267,99.70945878],[4.5356015,0.03313093,99.70904894],[4.53560103,0.03312919,99.70863843],[4.53560055,0.03312745,99.70822726],[4.53560008,0.03312571,99.70781543],[4.53559961,0.03312397,99.70740294],[4.53559914,0.03312223,99.70698979],[4.53559867,0.03312049,99.70657599],[4.5355982,0.03311875,99.70616152],[4.53559773,0.03311701,99.70574639],[4.53559726,0.03311527,99.70533059],[4.53559679,0.03311353,99.7049141],[4.53559632,0.03311179,99.70449693],[4.53559585,0.03311005,99.70407905],[4.53559538,0.03310831,99.70366047],[4.53559491,0.03310657,99.70324117],[4.53559444,0.03310483,99.70282115],[4.53559398,0.03310308,99.70240039],[4.53559351,0.03310134,99.70197889],[4.53559304,0.0330996,99.70155664],[4.53559257,0.03309786,99.70113363],[4.5355921,0.03309612,99.70070986],[4.53559164,0.03309438,99.70028531],[4.53559117,0.03309264,99.69985997],[4.5355907,0.0330909,99.69943384],[4.53559023,0.03308916,99.6990069],[4.53558976,0.03308742,99.69857916],[4.53558929,0.03308567,99.6981506],[4.53558883,0.03308393,99.69772121],[4.53558836,0.03308219,99.69729098],[4.53558789,0.03308045,99.6968599],[4.53558742,0.03307871,99.69642797],[4.53558695,0.03307697,99.69599518],[4.53558648,0.03307523,99.69556152],[4.53558601,0.03307349,99.69512698],[4.53558554,0.03307175,99.69469155],[4.53558507,0.03307001,99.69425522],[4.5355846,0.03306827,99.69381798],[4.53558414,0.03306653,99.69337983],[4.53558367,0.03306479,99.69294076],[4.5355832,0.03306305,99.69250075],[4.53558273,0.0330613,99.69205981],[4.53558226,0.03305956,99.69161791],[4.53558179,0.03305782,99.69117505],[4.53558132,0.03305608,99.69073123],[4.53558085,0.03305434,99.69028643],[4.53558038,0.0330526,99.68984065],[4.53557991,0.03305086,99.68939387],[4.53557944,0.03304912,99.68894609],[4.53557896,0.03304738,99.6884973],[4.53557849,0.03304564,99.68804749],[4.53557802,0.0330439,99.68759665],[4.53557755,0.03304216,99.68714477],[4.53557708,0.03304042,99.68669185],[4.53557661,0.03303868,99.68623787],[4.53557614,0.03303694,99.68578282],[4.53557567,0.0330352,99.68532672],[4.5355752,0.03303346,99.68486956],[4.53557473,0.03303172,99.68441137],[4.53557426,0.03302998,99.68395217],[4.53557379,0.03302824,99.68349198],[4.53557332,0.0330265,99.6830308],[4.53557285,0.03302476,99.68256865],[4.53557238,0.03302302,99.68210553],[4.5355719,0.03302127,99.68164143],[4.53557143,0.03301953,99.68117634],[4.53557096,0.03301779,99.68071027],[4.53557049,0.03301605,99.68024321],[4.53557002,0.03301431,99.67977516],[4.53556955,0.03301257,99.67930611],[4.53556908,0.03301083,99.67883606],[4.53556861,0.03300909,99.67836501],[4.53556814,0.03300735,99.67789295],[4.53556767,0.03300561,99.67741988],[4.5355672,0.03300387,99.67694579],[4.53556673,0.03300213,99.67647069],[4.53556626,0.03300039,99.67599458],[4.53556579,0.03299865,99.67551747],[4.53556532,0.03299691,99.67503936],[4.53556485,0.03299517,99.67456027],[4.53556438,0.03299342,99.6740802],[4.53556391,0.03299168,99.67359915],[4.53556345,0.03298994,99.67311715],[4.53556298,0.0329882,99.67263419],[4.53556251,0.03298646,99.67215028],[4.53556204,0.03298472,99.67166544],[4.53556157,0.03298298,99.67117966],[4.5355611,0.03298124,99.67069296],[4.53556063,0.0329795,99.67020534],[4.53556016,0.03297776,99.66971681],[4.5355597,0.03297601,99.66922737],[4.53555923,0.03297427,99.66873701],[4.53555876,0.03297253,99.66824573],[4.53555829,0.03297079,99.66775354],[4.53555782,0.03296905,99.66726044],[4.53555735,0.03296731,99.66676641],[4.53555689,0.03296557,99.66627148],[4.53555642,0.03296383,99.66577563],[4.53555595,0.03296209,99.66527886],[4.53555548,0.03296034,99.66478118],[4.53555501,0.0329586,99.66428258],[4.53555454,0.03295686,99.66378306],[4.53555407,0.03295512,99.66328264],[4.53555361,0.03295338,99.66278129],[4.53555314,0.03295164,99.66227903],[4.53555267,0.0329499,99.66177586],[4.5355522,0.03294816,99.66127177],[4.53555173,0.03294642,99.66076676],[4.53555126,0.03294467,99.66026084],[4.53555079,0.03294293,99.659754],[4.53555032,0.03294119,99.65924623],[4.53554985,0.03293945,99.65873751],[4.53554938,0.03293771,99.65822782],[4.53554891,0.03293597,99.65771714],[4.53554844,0.03293423,99.65720545],[4.53554797,0.03293249,99.65669273],[4.5355475,0.03293075,99.65617895],[4.53554703,0.03292901,99.65566411],[4.53554656,0.03292727,99.65514817],[4.53554609,0.03292553,99.65463113],[4.53554562,0.03292379,99.65411295],[4.53554515,0.03292205,99.65359362],[4.53554467,0.03292031,99.65307313],[4.5355442,0.03291857,99.65255143],[4.53554373,0.03291683,99.65202853],[4.53554326,0.03291509,99.6515044],[4.53554278,0.03291335,99.65097901],[4.53554231,0.03291161,99.65045235],[4.53554184,0.03290987,99.6499244],[4.53554136,0.03290813,99.64939514],[4.53554089,0.03290639,99.64886454],[4.53554041,0.03290465,99.64833259],[4.53553994,0.03290291,99.64779927],[4.53553946,0.03290117,99.64726455],[4.53553899,0.03289943,99.64672842],[4.53553851,0.03289769,99.64619085],[4.53553804,0.03289595,99.64565183],[4.53553756,0.03289421,99.64511134],[4.53553708,0.03289248,99.64456936],[4.53553661,0.03289074,99.64402592],[4.53553613,0.032889,99.64348102],[4.53553565,0.03288726,99.64293466],[4.53553517,0.03288552,99.64238686],[4.53553469,0.03288378,99.64183763],[4.53553422,0.03288205,99.64128698],[4.53553374,0.03288031,99.64073492],[4.53553326,0.03287857,99.64018146],[4.53553278,0.03287683,99.6396266],[4.5355323,0.03287509,99.63907036],[4.53553182,0.03287335,99.63851274],[4.53553134,0.03287162,99.63795376],[4.53553086,0.03286988,99.63739343],[4.53553038,0.03286814,99.63683175],[4.5355299,0.0328664,99.63626874],[4.53552942,0.03286467,99.63570441],[4.53552894,0.03286293,99.63513876],[4.53552846,0.03286119,99.6345718],[4.53552798,0.03285945,99.63400355],[4.5355275,0.03285772,99.63343402],[4.53552702,0.03285598,99.6328632],[4.53552654,0.03285424,99.63229113],[4.53552605,0.0328525,99.63171779],[4.53552557,0.03285077,99.63114322],[4.53552509,0.03284903,99.6305674],[4.53552461,0.03284729,99.62999036],[4.53552413,0.03284555,99.6294121],[4.53552365,0.03284382,99.62883264],[4.53552316,0.03284208,99.62825198],[4.53552268,0.03284034,99.62767013],[4.5355222,0.03283861,99.6270871],[4.53552172,0.03283687,99.62650291],[4.53552124,0.03283513,99.62591756],[4.53552076,0.03283339,99.62533106],[4.53552027,0.03283166,99.62474343],[4.53551979,0.03282992,99.62415467],[4.53551931,0.03282818,99.62356479],[4.53551883,0.03282644,99.6229738],[4.53551835,0.03282471,99.62238171],[4.53551786,0.03282297,99.62178853],[4.53551738,0.03282123,99.62119426],[4.5355169,0.0328195,99.62059888],[4.53551642,0.03281776,99.62000241],[4.53551594,0.03281602,99.61940483],[4.53551545,0.03281428,99.61880616],[4.53551497,0.03281255,99.6182064],[4.53551449,0.03281081,99.61760556],[4.53551401,0.03280907,99.61700367],[4.53551353,0.03280734,99.61640074],[4.53551305,0.0328056,99.61579679],[4.53551257,0.03280386,99.61519184],[4.53551208,0.03280212,99.61458586],[4.5355116,0.03280039,99.61397885],[4.53551112,0.03279865,99.6133708],[4.53551064,0.03279691,99.6127617],[4.53551016,0.03279517,99.61215153],[4.53550968,0.03279344,99.61154029],[4.5355092,0.0327917,99.61092796],[4.53550872,0.03278996,99.61031453],[4.53550824,0.03278822,99.6097],[4.53550776,0.03278649,99.60908435],[4.53550728,0.03278475,99.60846756],[4.5355068,0.03278301,99.60784964],[4.53550632,0.03278127,99.60723056],[4.53550584,0.03277954,99.60661032],[4.53550536,0.0327778,99.60598891],[4.53550488,0.03277606,99.60536631],[4.5355044,0.03277432,99.60474252],[4.53550392,0.03277258,99.60411751],[4.53550344,0.03277085,99.60349129],[4.53550296,0.03276911,99.60286384],[4.53550248,0.03276737,99.60223515],[4.535502,0.03276563,99.60160521],[4.53550152,0.0327639,99.600974],[4.53550104,0.03276216,99.60034153],[4.53550056,0.03276042,99.59970776],[4.53550008,0.03275868,99.59907271],[4.5354996,0.03275695,99.59843634],[4.53549912,0.03275521,99.59779866],[4.53549865,0.03275347,99.59715965],[4.53549817,0.03275173,99.59651929],[4.53549769,0.03274999,99.59587759],[4.53549721,0.03274826,99.59523453],[4.53549673,0.03274652,99.59459009],[4.53549625,0.03274478,99.59394427],[4.53549577,0.03274304,99.59329705],[4.53549529,0.0327413,99.59264843],[4.53549481,0.03273957,99.59199839],[4.53549433,0.03273783,99.59134692],[4.53549385,0.03273609,99.59069401],[4.53549337,0.03273435,99.59003966],[4.5354929,0.03273262,99.58938384],[4.53549242,0.03273088,99.58872654],[4.53549194,0.03272914,99.58806777],[4.53549146,0.0327274,99.5874075],[4.53549098,0.03272566,99.58674572],[4.5354905,0.03272393,99.58608243],[4.53549002,0.03272219,99.5854176],[4.53548954,0.03272045,99.58475124],[4.53548906,0.03271871,99.58408333],[4.53548858,0.03271698,99.58341386],[4.5354881,0.03271524,99.58274281],[4.53548762,0.0327135,99.58207019],[4.53548714,0.03271176,99.58139597],[4.53548667,0.03271002,99.58072017],[4.53548619,0.03270829,99.58004279],[4.53548571,0.03270655,99.57936384],[4.53548523,0.03270481,99.5786833],[4.53548475,0.03270307,99.5780012],[4.53548427,0.03270134,99.57731753],[4.53548379,0.0326996,99.57663229],[4.53548331,0.03269786,99.57594549],[4.53548283,0.03269612,99.57525714],[4.53548235,0.03269439,99.57456722],[4.53548187,0.03269265,99.57387576],[4.53548139,0.03269091,99.57318273],[4.53548091,0.03268917,99.57248815],[4.53548043,0.03268744,99.57179198],[4.53547995,0.0326857,99.57109423],[4.53547947,0.03268396,99.5703949],[4.53547899,0.03268222,99.56969396],[4.53547851,0.03268049,99.56899141],[4.53547803,0.03267875,99.56828725],[4.53547755,0.03267701,99.56758148],[4.53547707,0.03267527,99.56687411],[4.53547659,0.03267354,99.56616517],[4.53547612,0.0326718,99.56545467],[4.53547564,0.03267006,99.56474262],[4.53547516,0.03266832,99.56402901],[4.53547468,0.03266658,99.56331386],[4.5354742,0.03266485,99.56259715],[4.53547372,0.03266311,99.56187888],[4.53547324,0.03266137,99.56115907],[4.53547276,0.03265963,99.56043771],[4.53547228,0.0326579,99.5597148],[4.5354718,0.03265616,99.55899035],[4.53547132,0.03265442,99.55826434],[4.53547084,0.03265268,99.55753679],[4.53547036,0.03265095,99.5568077],[4.53546988,0.03264921,99.55607706],[4.5354694,0.03264747,99.55534488],[4.53546892,0.03264573,99.55461115],[4.53546844,0.032644,99.55387588],[4.53546796,0.03264226,99.55313907],[4.53546748,0.03264052,99.55240072],[4.535467,0.03263878,99.55166083],[4.53546652,0.03263705,99.55091941],[4.53546604,0.03263531,99.55017644],[4.53546557,0.03263357,99.54943194],[4.53546509,0.03263183,99.5486859],[4.53546461,0.0326301,99.54793832],[4.53546413,0.03262836,99.54718921],[4.53546365,0.03262662,99.54643857],[4.53546317,0.03262488,99.54568639],[4.53546269,0.03262315,99.54493269],[4.53546221,0.03262141,99.54417744],[4.53546173,0.03261967,99.54342067],[4.53546125,0.03261793,99.54266237],[4.53546077,0.0326162,99.54190254],[4.53546029,0.03261446,99.54114119],[4.53545981,0.03261272,99.5403783],[4.53545933,0.03261098,99.53961388],[4.53545885,0.03260925,99.53884794],[4.53545838,0.03260751,99.53808047],[4.5354579,0.03260577,99.53731147],[4.53545742,0.03260403,99.53654095],[4.53545694,0.0326023,99.53576889],[4.53545646,0.03260056,99.53499531],[4.53545598,0.03259882,99.5342202],[4.5354555,0.03259708,99.53344356],[4.53545502,0.03259535,99.53266539],[4.53545454,0.03259361,99.53188569],[4.53545406,0.03259187,99.53110448],[4.53545358,0.03259013,99.53032175],[4.53545309,0.0325884,99.52953752],[4.53545261,0.03258666,99.52875178],[4.53545213,0.03258492,99.52796455],[4.53545165,0.03258319,99.52717584],[4.53545117,0.03258145,99.52638563],[4.53545069,0.03257971,99.52559393],[4.53545021,0.03257798,99.52480074],[4.53544973,0.03257624,99.52400604],[4.53544924,0.0325745,99.52320983],[4.53544876,0.03257277,99.52241215],[4.53544828,0.03257103,99.52161298],[4.5354478,0.03256929,99.52081236],[4.53544732,0.03256756,99.52001029],[4.53544683,0.03256582,99.51920679],[4.53544635,0.03256408,99.51840186],[4.53544587,0.03256235,99.51759553],[4.53544538,0.03256061,99.5167878],[4.5354449,0.03255887,99.51597869],[4.53544442,0.03255714,99.51516821],[4.53544393,0.0325554,99.51435638],[4.53544345,0.03255367,99.51354321],[4.53544296,0.03255193,99.5127287],[4.53544248,0.03255019,99.51191289],[4.53544199,0.03254846,99.51109577],[4.53544151,0.03254672,99.51027736],[4.53544102,0.03254499,99.50945767],[4.53544054,0.03254325,99.50863673],[4.53544005,0.03254151,99.50781453],[4.53543957,0.03253978,99.50699109],[4.53543908,0.03253804,99.5061664],[4.5354386,0.03253631,99.50534046],[4.53543811,0.03253457,99.50451327],[4.53543763,0.03253284,99.50368483],[4.53543714,0.0325311,99.50285515],[4.53543666,0.03252936,99.50202421],[4.53543617,0.03252763,99.50119203],[4.53543568,0.03252589,99.5003586],[4.5354352,0.03252416,99.49952392],[4.53543471,0.03252242,99.49868799],[4.53543422,0.03252069,99.4978508],[4.53543374,0.03251895,99.49701237],[4.53543325,0.03251722,99.49617269],[4.53543277,0.03251548,99.49533176],[4.53543228,0.03251375,99.49448958],[4.53543179,0.03251201,99.49364615],[4.5354313,0.03251027,99.49280147],[4.53543082,0.03250854,99.49195554],[4.53543033,0.0325068,99.49110836],[4.53542984,0.03250507,99.49025994],[4.53542936,0.03250333,99.48941029],[4.53542887,0.0325016,99.48855943],[4.53542838,0.03249986,99.48770735],[4.53542789,0.03249813,99.48685407],[4.53542741,0.03249639,99.48599961],[4.53542692,0.03249466,99.48514396],[4.53542643,0.03249292,99.48428714],[4.53542594,0.03249119,99.48342916],[4.53542546,0.03248945,99.48257002],[4.53542497,0.03248772,99.48170975],[4.53542448,0.03248598,99.48084834],[4.53542399,0.03248425,99.47998579],[4.53542351,0.03248251,99.47912207],[4.53542302,0.03248078,99.47825708],[4.53542253,0.03247904,99.47739072],[4.53542204,0.03247731,99.4765229],[4.53542156,0.03247557,99.47565351],[4.53542107,0.03247384,99.47478245],[4.53542058,0.0324721,99.47390964],[4.53542009,0.03247037,99.47303497],[4.5354196,0.03246864,99.47215833],[4.53541911,0.0324669,99.47127964],[4.53541862,0.03246517,99.4703988],[4.53541813,0.03246343,99.46951571],[4.53541764,0.0324617,99.46863026],[4.53541715,0.03245996,99.46774237],[4.53541666,0.03245823,99.46685193],[4.53541617,0.0324565,99.46595914],[4.53541568,0.03245476,99.46506447],[4.53541519,0.03245303,99.46416845],[4.5354147,0.03245129,99.46327183],[4.5354142,0.03244956,99.46237542],[4.53541371,0.03244783,99.46148002],[4.53541323,0.03244609,99.46058643],[4.53541274,0.03244436,99.45969547],[4.53541225,0.03244262,99.45880792],[4.53541177,0.03244089,99.45792461],[4.53541128,0.03243915,99.4570453],[4.5354108,0.03243741,99.45616576],[4.53541032,0.03243568,99.45528072],[4.53540983,0.03243394,99.45438491],[4.53540934,0.03243221,99.45347308],[4.53540884,0.03243048,99.45253898],[4.53540833,0.03242875,99.45157331],[4.53540782,0.03242702,99.45058619],[4.53540731,0.03242529,99.44960807],[4.53540681,0.03242356,99.448674],[4.53540634,0.03242182,99.44783391],[4.53540591,0.03242007,99.4470854],[4.53540548,0.03241832,99.44636352],[4.53540499,0.03241658,99.44544617],[4.5354043,0.03241491,99.44390538],[4.53540384,0.03241316,99.44307131],[4.53540346,0.0324114,99.44250304],[4.53540296,0.03240967,99.44154537],[4.53540244,0.03240794,99.44052278],[4.53540194,0.03240621,99.43957458],[4.53540147,0.03240447,99.43868555],[4.53540099,0.03240273,99.43779336],[4.5354005,0.032401,99.43687175],[4.53540001,0.03239926,99.43593045],[4.53539951,0.03239753,99.43498083],[4.53539902,0.0323958,99.43403388],[4.53539853,0.03239406,99.43309376],[4.53539804,0.03239233,99.43215839],[4.53539755,0.0323906,99.43122547],[4.53539706,0.03238886,99.43029271],[4.53539658,0.03238713,99.42935787],[4.53539609,0.03238539,99.42841994],[4.5353956,0.03238366,99.42747917],[4.53539511,0.03238192,99.42653593],[4.53539462,0.03238019,99.4255906],[4.53539413,0.03237845,99.42464359],[4.53539364,0.03237672,99.42369529],[4.53539315,0.03237499,99.42274608],[4.53539266,0.03237325,99.42179636],[4.53539217,0.03237152,99.42084651],[4.53539168,0.03236978,99.41989664],[4.5353912,0.03236805,99.41894662],[4.53539071,0.03236631,99.4179963],[4.53539022,0.03236458,99.41704554],[4.53538973,0.03236284,99.41609419],[4.53538925,0.03236111,99.41514211],[4.53538876,0.03235937,99.41418916],[4.53538827,0.03235764,99.41323517],[4.53538778,0.0323559,99.41228002],[4.5353873,0.03235417,99.41132356],[4.53538681,0.03235243,99.41036564],[4.53538632,0.0323507,99.40940613],[4.53538584,0.03234896,99.40844493],[4.53538535,0.03234723,99.40748195],[4.53538486,0.03234549,99.40651723],[4.53538437,0.03234376,99.40555079],[4.53538388,0.03234203,99.40458266],[4.5353834,0.03234029,99.40361288],[4.53538291,0.03233856,99.40264146],[4.53538242,0.03233682,99.40166845],[4.53538193,0.03233509,99.40069387],[4.53538144,0.03233335,99.39971775],[4.53538095,0.03233162,99.39874013],[4.53538046,0.03232988,99.39776104],[4.53537998,0.03232815,99.3967805],[4.53537949,0.03232642,99.39579855],[4.535379,0.03232468,99.39481521],[4.53537851,0.03232295,99.39383052],[4.53537802,0.03232121,99.39284451],[4.53537753,0.03231948,99.39185721],[4.53537704,0.03231774,99.39086864],[4.53537655,0.03231601,99.38987883],[4.53537606,0.03231428,99.38888778],[4.53537557,0.03231254,99.38789553],[4.53537508,0.03231081,99.38690212],[4.5353746,0.03230907,99.38590762],[4.53537411,0.03230734,99.38491205],[4.53537362,0.0323056,99.38391549],[4.53537313,0.03230387,99.38291798],[4.53537264,0.03230214,99.38191956],[4.53537215,0.0323004,99.38092029],[4.53537166,0.03229867,99.3799202],[4.53537118,0.03229693,99.37891927],[4.53537069,0.0322952,99.3779175],[4.5353702,0.03229346,99.37691488],[4.53536971,0.03229173,99.37591137],[4.53536922,0.03228999,99.37490698],[4.53536874,0.03228826,99.37390169],[4.53536825,0.03228652,99.37289548],[4.53536776,0.03228479,99.37188833],[4.53536727,0.03228305,99.37088025],[4.53536679,0.03228132,99.3698712],[4.5353663,0.03227959,99.36886119],[4.53536581,0.03227785,99.36785018],[4.53536533,0.03227612,99.36683817],[4.53536484,0.03227438,99.36582515],[4.53536435,0.03227265,99.3648111],[4.53536386,0.03227091,99.36379601],[4.53536338,0.03226918,99.36277986],[4.53536289,0.03226744,99.36176264],[4.5353624,0.03226571,99.3607443],[4.53536192,0.03226397,99.35972484],[4.53536143,0.03226224,99.35870423],[4.53536094,0.0322605,99.35768244],[4.53536046,0.03225877,99.35665945],[4.53535997,0.03225703,99.35563524],[4.53535949,0.0322553,99.35460978],[4.535359,0.03225356,99.35358304],[4.53535851,0.03225183,99.35255501],[4.53535803,0.03225009,99.35152566],[4.53535754,0.03224836,99.35049496],[4.53535705,0.03224662,99.34946289],[4.53535657,0.03224489,99.34842943],[4.53535608,0.03224315,99.34739455],[4.53535559,0.03224142,99.34635823],[4.5353551,0.03223968,99.34532045],[4.53535462,0.03223795,99.34428117],[4.53535413,0.03223621,99.34324039],[4.53535364,0.03223448,99.34219806],[4.53535316,0.03223275,99.34115418],[4.53535267,0.03223101,99.34010871],[4.53535218,0.03222928,99.33906163],[4.53535169,0.03222754,99.33801292],[4.53535121,0.03222581,99.33696257],[4.53535072,0.03222407,99.33591061],[4.53535023,0.03222234,99.33485708],[4.53534974,0.0322206,99.33380202],[4.53534925,0.03221887,99.33274546],[4.53534877,0.03221713,99.33168743],[4.53534828,0.0322154,99.33062796],[4.53534779,0.03221367,99.32956711],[4.5353473,0.03221193,99.32850491],[4.53534681,0.0322102,99.3274414],[4.53534632,0.03220846,99.32637663],[4.53534583,0.03220673,99.32531062],[4.53534535,0.03220499,99.32424343],[4.53534486,0.03220326,99.32317509],[4.53534437,0.03220152,99.32210564],[4.53534388,0.03219979,99.32103506],[4.53534339,0.03219806,99.31996336],[4.53534291,0.03219632,99.31889051],[4.53534242,0.03219459,99.3178165],[4.53534193,0.03219285,99.31674134],[4.53534144,0.03219112,99.31566501],[4.53534095,0.03218938,99.31458751],[4.53534047,0.03218765,99.31350883],[4.53533998,0.03218591,99.31242895],[4.53533949,0.03218418,99.31134788],[4.535339,0.03218244,99.31026561],[4.53533851,0.03218071,99.30918212],[4.53533803,0.03217898,99.30809742],[4.53533754,0.03217724,99.30701149],[4.53533705,0.03217551,99.30592432],[4.53533656,0.03217377,99.30483591],[4.53533607,0.03217204,99.30374626],[4.53533559,0.0321703,99.30265535],[4.5353351,0.03216857,99.30156317],[4.53533461,0.03216683,99.30046973],[4.53533412,0.0321651,99.299375],[4.53533363,0.03216336,99.29827899],[4.53533315,0.03216163,99.29718169],[4.53533266,0.0321599,99.29608309],[4.53533217,0.03215816,99.29498318],[4.53533168,0.03215643,99.29388195],[4.53533119,0.03215469,99.2927794],[4.5353307,0.03215296,99.29167552],[4.53533022,0.03215122,99.29057031],[4.53532973,0.03214949,99.28946375],[4.53532924,0.03214775,99.28835584],[4.53532875,0.03214602,99.28724656],[4.53532826,0.03214429,99.28613593],[4.53532777,0.03214255,99.28502392],[4.53532728,0.03214082,99.28391052],[4.5353268,0.03213908,99.28279574],[4.53532631,0.03213735,99.28167956],[4.53532582,0.03213561,99.28056198],[4.53532533,0.03213388,99.27944299],[4.53532484,0.03213215,99.27832258],[4.53532435,0.03213041,99.27720075],[4.53532386,0.03212868,99.27607753],[4.53532337,0.03212694,99.27495296],[4.53532288,0.03212521,99.27382704],[4.53532239,0.03212348,99.27269981],[4.5353219,0.03212174,99.27157127],[4.53532141,0.03212001,99.27044143],[4.53532092,0.03211827,99.26931032],[4.53532043,0.03211654,99.26817794],[4.53531994,0.03211481,99.26704431],[4.53531945,0.03211307,99.26590944],[4.53531896,0.03211134,99.26477333],[4.53531847,0.0321096,99.263636],[4.53531798,0.03210787,99.26249745],[4.53531749,0.03210614,99.2613577],[4.535317,0.0321044,99.26021675],[4.53531651,0.03210267,99.25907461],[4.53531602,0.03210094,99.25793129],[4.53531553,0.0320992,99.2567868],[4.53531504,0.03209747,99.25564115],[4.53531454,0.03209573,99.25449436],[4.53531405,0.032094,99.25334641],[4.53531356,0.03209227,99.25219734],[4.53531307,0.03209053,99.25104714],[4.53531258,0.0320888,99.24989583],[4.5353121,0.03208706,99.24874341],[4.53531161,0.03208533,99.2475899],[4.53531112,0.03208359,99.2464353],[4.53531063,0.03208186,99.24527962],[4.53531014,0.03208013,99.24412288],[4.53530965,0.03207839,99.24296507],[4.53530916,0.03207666,99.24180622],[4.53530867,0.03207492,99.24064632],[4.53530819,0.03207319,99.23948539],[4.5353077,0.03207145,99.23832344],[4.53530721,0.03206972,99.23716048],[4.53530672,0.03206798,99.23599651],[4.53530624,0.03206625,99.23483155],[4.53530575,0.03206451,99.2336656],[4.53530526,0.03206278,99.23249868],[4.53530478,0.03206104,99.23133079],[4.53530429,0.03205931,99.23016194],[4.53530381,0.03205757,99.22899214],[4.53530332,0.03205584,99.2278214],[4.53530284,0.0320541,99.22664973],[4.53530235,0.03205237,99.22547714],[4.53530187,0.03205063,99.22430364],[4.53530139,0.0320489,99.22312923],[4.5353009,0.03204716,99.22195393],[4.53530042,0.03204542,99.22077775],[4.53529994,0.03204369,99.21960069],[4.53529945,0.03204195,99.21842276],[4.53529897,0.03204021,99.21724398],[4.53529849,0.03203848,99.21606435],[4.53529801,0.03203674,99.21488389],[4.53529753,0.03203501,99.21370259],[4.53529704,0.03203327,99.21252048],[4.53529656,0.03203153,99.21133756],[4.53529608,0.0320298,99.21015382],[4.5352956,0.03202806,99.20896926],[4.53529512,0.03202632,99.20778387],[4.53529464,0.03202459,99.20659764],[4.53529416,0.03202285,99.20541058],[4.53529368,0.03202111,99.20422268],[4.53529321,0.03201937,99.20303393],[4.53529273,0.03201764,99.20184432],[4.53529225,0.0320159,99.20065386],[4.53529177,0.03201416,99.19946254],[4.53529129,0.03201242,99.19827035],[4.53529081,0.03201069,99.19707729],[4.53529033,0.03200895,99.19588336],[4.53528986,0.03200721,99.19468854],[4.53528938,0.03200548,99.19349284],[4.5352889,0.03200374,99.19229625],[4.53528842,0.032002,99.19109877],[4.53528795,0.03200026,99.18990038],[4.53528747,0.03199852,99.1887011],[4.53528699,0.03199679,99.1875009],[4.53528651,0.03199505,99.18629979],[4.53528604,0.03199331,99.18509776],[4.53528556,0.03199157,99.18389481],[4.53528508,0.03198984,99.18269093],[4.53528461,0.0319881,99.18148612],[4.53528413,0.03198636,99.18028038],[4.53528365,0.03198462,99.17907369],[4.53528317,0.03198289,99.17786605],[4.5352827,0.03198115,99.17665746],[4.53528222,0.03197941,99.17544792],[4.53528174,0.03197767,99.17423741],[4.53528127,0.03197593,99.17302594],[4.53528079,0.0319742,99.1718135],[4.53528031,0.03197246,99.17060007],[4.53527983,0.03197072,99.16938566],[4.53527936,0.03196898,99.16817026],[4.53527888,0.03196725,99.16695386],[4.5352784,0.03196551,99.16573644],[4.53527793,0.03196377,99.16451801],[4.53527745,0.03196203,99.16329856],[4.53527697,0.0319603,99.16207808],[4.53527649,0.03195856,99.16085656],[4.53527601,0.03195682,99.159634],[4.53527554,0.03195508,99.15841038],[4.53527506,0.03195335,99.1571857],[4.53527458,0.03195161,99.15595996],[4.5352741,0.03194987,99.15473314],[4.53527362,0.03194813,99.15350525],[4.53527314,0.0319464,99.15227626],[4.53527266,0.03194466,99.15104618],[4.53527218,0.03194292,99.14981499],[4.5352717,0.03194119,99.1485827],[4.53527122,0.03193945,99.14734928],[4.53527074,0.03193771,99.14611475],[4.53527026,0.03193597,99.14487912],[4.53526978,0.03193424,99.14364239],[4.5352693,0.0319325,99.14240457],[4.53526882,0.03193076,99.14116568],[4.53526834,0.03192903,99.13992574],[4.53526786,0.03192729,99.13868474],[4.53526737,0.03192556,99.13744273],[4.53526689,0.03192382,99.13619973],[4.53526641,0.03192208,99.13495576],[4.53526593,0.03192035,99.13371084],[4.53526544,0.03191861,99.13246501],[4.53526496,0.03191688,99.1312183],[4.53526448,0.03191514,99.12997071],[4.53526399,0.0319134,99.12872229],[4.53526351,0.03191167,99.12747306],[4.53526302,0.03190993,99.12622303],[4.53526254,0.0319082,99.12497224],[4.53526205,0.03190646,99.1237207],[4.53526157,0.03190472,99.12246844],[4.53526109,0.03190299,99.12121546],[4.5352606,0.03190125,99.11996179],[4.53526012,0.03189952,99.11870745],[4.53525963,0.03189778,99.11745247],[4.53525914,0.03189605,99.11619685],[4.53525866,0.03189431,99.11494062],[4.53525817,0.03189258,99.1136838],[4.53525769,0.03189084,99.1124264],[4.5352572,0.03188911,99.11116845],[4.53525672,0.03188737,99.10990997],[4.53525623,0.03188564,99.10865098],[4.53525574,0.0318839,99.10739149],[4.53525526,0.03188217,99.10613153],[4.53525477,0.03188043,99.10487111],[4.53525428,0.0318787,99.10361026],[4.5352538,0.03187696,99.10234899],[4.53525331,0.03187523,99.10108732],[4.53525282,0.03187349,99.09982528],[4.53525234,0.03187176,99.09856288],[4.53525185,0.03187002,99.09730015],[4.53525136,0.03186829,99.0960371],[4.53525087,0.03186655,99.09477375],[4.53525039,0.03186482,99.09351012],[4.5352499,0.03186308,99.09224624],[4.53524941,0.03186135,99.09098211],[4.53524892,0.03185961,99.08971777],[4.53524843,0.03185788,99.08845323],[4.53524795,0.03185614,99.0871885],[4.53524746,0.03185441,99.08592362],[4.53524697,0.03185267,99.0846586],[4.53524648,0.03185094,99.08339346],[4.53524599,0.0318492,99.08212821],[4.5352455,0.03184747,99.08086289],[4.53524502,0.03184574,99.0795975],[4.53524453,0.031844,99.07833208],[4.53524404,0.03184227,99.07706663],[4.53524355,0.03184053,99.07580118],[4.53524306,0.0318388,99.07453575],[4.53524257,0.03183706,99.07327035],[4.53524208,0.03183533,99.07200502],[4.53524159,0.03183359,99.07073976],[4.5352411,0.03183186,99.0694746],[4.53524062,0.03183013,99.06820955],[4.53524013,0.03182839,99.06694464],[4.53523964,0.03182666,99.06567989],[4.53523915,0.03182492,99.06441531],[4.53523866,0.03182319,99.06315094],[4.53523817,0.03182145,99.06188677],[4.53523768,0.03181972,99.06062285],[4.53523719,0.03181799,99.05935917],[4.5352367,0.03181625,99.05809578],[4.53523621,0.03181452,99.05683268],[4.53523572,0.03181278,99.05556991],[4.53523523,0.03181105,99.05430749],[4.53523474,0.03180931,99.05304544],[4.53523426,0.03180758,99.05178381],[4.53523377,0.03180585,99.05052261],[4.53523328,0.03180411,99.04926187],[4.53523279,0.03180238,99.04800162],[4.5352323,0.03180064,99.04674189],[4.53523181,0.03179891,99.0454827],[4.53523132,0.03179717,99.04422409],[4.53523083,0.03179544,99.04296607],[4.53523034,0.0317937,99.04170868],[4.53522986,0.03179197,99.04045195],[4.53522937,0.03179024,99.03919588],[4.53522888,0.0317885,99.03794049],[4.53522839,0.03178677,99.03668578],[4.5352279,0.03178503,99.03543175],[4.53522741,0.0317833,99.03417841],[4.53522693,0.03178156,99.03292576],[4.53522644,0.03177983,99.0316738],[4.53522595,0.03177809,99.03042251],[4.53522546,0.03177636,99.02917187],[4.53522498,0.03177462,99.02792189],[4.53522449,0.03177289,99.02667253],[4.535224,0.03177115,99.0254238],[4.53522352,0.03176942,99.02417566],[4.53522303,0.03176768,99.02292812],[4.53522254,0.03176595,99.02168115],[4.53522206,0.03176421,99.02043474],[4.53522157,0.03176248,99.01918888],[4.53522109,0.03176074,99.01794356],[4.5352206,0.03175901,99.01669876],[4.53522012,0.03175727,99.01545446],[4.53521963,0.03175553,99.01421065],[4.53521915,0.0317538,99.01296733],[4.53521866,0.03175206,99.01172448],[4.53521818,0.03175033,99.0104821],[4.5352177,0.03174859,99.00924018],[4.53521721,0.03174685,99.00799872],[4.53521673,0.03174512,99.0067577],[4.53521625,0.03174338,99.00551713],[4.53521576,0.03174165,99.00427699],[4.53521528,0.03173991,99.00303729],[4.53521479,0.03173818,99.001798],[4.5352143,0.03173644,99.00055913],[4.53521382,0.03173471,98.99932066],[4.53521333,0.03173297,98.9980826],[4.53521283,0.03173124,98.99684494],[4.53521234,0.0317295,98.99560766],[4.53521185,0.03172777,98.99437076],[4.53521135,0.03172604,98.99313424],[4.53521085,0.03172431,98.99189808],[4.53521035,0.03172258,98.99066229],[4.53520985,0.03172085,98.98942685],[4.53520934,0.03171912,98.98819176],[4.53520884,0.03171739,98.98695702],[4.53520833,0.03171566,98.9857226],[4.53520782,0.03171393,98.98448851],[4.53520731,0.0317122,98.98325475],[4.5352068,0.03171047,98.98202129],[4.53520629,0.03170874,98.98078815],[4.53520577,0.03170702,98.9795553],[4.53520526,0.03170529,98.97832275],[4.53520475,0.03170356,98.97709049],[4.53520423,0.03170184,98.9758585],[4.53520372,0.03170011,98.97462679],[4.5352032,0.03169838,98.97339535],[4.53520269,0.03169665,98.97216416],[4.53520217,0.03169493,98.97093323],[4.53520166,0.0316932,98.96970254],[4.53520114,0.03169147,98.9684721],[4.53520063,0.03168975,98.96724188],[4.53520011,0.03168802,98.96601189],[4.5351996,0.03168629,98.96478212],[4.53519909,0.03168456,98.96355256],[4.53519858,0.03168284,98.96232321],[4.53519807,0.03168111,98.96109406],[4.53519756,0.03167938,98.95986509],[4.53519705,0.03167765,98.95863632],[4.53519654,0.03167592,98.95740772],[4.53519603,0.03167419,98.95617929],[4.53519552,0.03167247,98.95495103],[4.53519501,0.03167074,98.95372292],[4.5351945,0.03166901,98.95249497],[4.53519399,0.03166728,98.95126716],[4.53519348,0.03166555,98.95003949],[4.53519297,0.03166382,98.94881195],[4.53519246,0.03166209,98.94758453],[4.53519196,0.03166036,98.94635722],[4.53519145,0.03165864,98.94513001],[4.53519094,0.03165691,98.94390289],[4.53519043,0.03165518,98.94267586],[4.53518992,0.03165345,98.94144893],[4.53518941,0.03165172,98.94022211],[4.5351889,0.03164999,98.9389954],[4.53518839,0.03164826,98.9377688],[4.53518788,0.03164653,98.93654233],[4.53518737,0.03164481,98.93531603],[4.53518686,0.03164308,98.93408991],[4.53518635,0.03164135,98.93286399],[4.53518584,0.03163962,98.93163832],[4.53518533,0.03163789,98.9304129],[4.53518482,0.03163617,98.92918776],[4.53518431,0.03163444,98.92796294],[4.53518379,0.03163271,98.92673844],[4.53518328,0.03163098,98.9255143],[4.53518277,0.03162926,98.92429055],[4.53518225,0.03162753,98.9230672],[4.53518174,0.0316258,98.92184429],[4.53518122,0.03162407,98.92062183],[4.53518071,0.03162235,98.91939985],[4.53518019,0.03162062,98.91817838],[4.53517968,0.03161889,98.91695744],[4.53517916,0.03161717,98.91573705],[4.53517865,0.03161544,98.91451725],[4.53517814,0.03161371,98.91329805],[4.53517762,0.03161198,98.91207948],[4.53517711,0.03161026,98.91086156],[4.5351766,0.03160853,98.90964433],[4.53517609,0.0316068,98.90842779],[4.53517558,0.03160507,98.90721199],[4.53517507,0.03160334,98.90599694],[4.53517457,0.03160161,98.90478267],[4.53517406,0.03159988,98.90356921],[4.53517356,0.03159815,98.90235656],[4.53517306,0.03159642,98.90114477],[4.53517256,0.03159469,98.89993384],[4.53517206,0.03159296,98.89872381],[4.53517156,0.03159123,98.89751469],[4.53517106,0.03158949,98.8963065],[4.53517057,0.03158776,98.89509928],[4.53517007,0.03158603,98.89389303],[4.53516958,0.0315843,98.89268778],[4.53516909,0.03158256,98.89148355],[4.53516859,0.03158083,98.89028037],[4.5351681,0.03157909,98.88907826],[4.53516761,0.03157736,98.88787724],[4.53516712,0.03157563,98.88667732],[4.53516663,0.03157389,98.88547854],[4.53516614,0.03157216,98.88428091],[4.53516565,0.03157042,98.88308447],[4.53516516,0.03156869,98.88188921],[4.53516467,0.03156696,98.88069518],[4.53516418,0.03156522,98.87950239],[4.53516369,0.03156349,98.87831087],[4.5351632,0.03156175,98.87712063],[4.53516271,0.03156002,98.8759317],[4.53516222,0.03155828,98.8747441],[4.53516173,0.03155655,98.87355785],[4.53516124,0.03155482,98.87237296],[4.53516075,0.03155308,98.87118946],[4.53516026,0.03155135,98.87000736],[4.53515977,0.03154961,98.86882669],[4.53515928,0.03154788,98.86764744],[4.53515879,0.03154615,98.86646966],[4.5351583,0.03154441,98.86529334],[4.53515781,0.03154268,98.86411853],[4.53515732,0.03154094,98.86294525],[4.53515682,0.03153921,98.86177355],[4.53515633,0.03153748,98.86060345],[4.53515584,0.03153574,98.85943496],[4.53515535,0.03153401,98.8582681],[4.53515486,0.03153228,98.85710287],[4.53515437,0.03153055,98.85593931],[4.53515387,0.03152881,98.85477741],[4.53515338,0.03152708,98.8536172],[4.53515289,0.03152535,98.85245868],[4.5351524,0.03152361,98.85130187],[4.5351519,0.03152188,98.85014679],[4.53515141,0.03152014,98.84899344],[4.53515092,0.03151841,98.84784185],[4.53515043,0.03151668,98.84669203],[4.53514993,0.03151494,98.84554398],[4.53514944,0.03151321,98.84439773],[4.53514895,0.03151148,98.84325329],[4.53514846,0.03150974,98.84211064],[4.53514796,0.03150801,98.84096979],[4.53514747,0.03150628,98.83983072],[4.53514698,0.03150454,98.83869343],[4.53514649,0.03150281,98.8375579],[4.535146,0.03150108,98.83642414],[4.5351455,0.03149934,98.83529214],[4.53514501,0.03149761,98.83416188],[4.53514452,0.03149588,98.83303336],[4.53514403,0.03149414,98.83190657],[4.53514354,0.03149241,98.8307815],[4.53514304,0.03149067,98.82965816],[4.53514255,0.03148894,98.82853651],[4.53514206,0.03148721,98.82741655],[4.53514157,0.03148547,98.82629826],[4.53514108,0.03148374,98.82518162],[4.53514058,0.03148201,98.8240666],[4.53514009,0.03148027,98.82295319],[4.5351396,0.03147854,98.82184137],[4.53513911,0.0314768,98.82073112],[4.53513862,0.03147507,98.81962242],[4.53513813,0.03147334,98.81851524],[4.53513764,0.0314716,98.81740958],[4.53513714,0.03146987,98.8163054],[4.53513665,0.03146814,98.8152027],[4.53513616,0.0314664,98.81410146],[4.53513567,0.03146467,98.81300166],[4.53513518,0.03146293,98.8119033],[4.53513469,0.0314612,98.81080636],[4.5351342,0.03145947,98.80971084],[4.53513371,0.03145773,98.80861671],[4.53513321,0.031456,98.80752397],[4.53513272,0.03145426,98.80643261],[4.53513223,0.03145253,98.80534261],[4.53513174,0.0314508,98.80425396],[4.53513125,0.03144906,98.80316666],[4.53513076,0.03144733,98.80208068],[4.53513027,0.0314456,98.80099602],[4.53512978,0.03144386,98.79991267],[4.53512929,0.03144213,98.79883061],[4.53512879,0.03144039,98.79774983],[4.5351283,0.03143866,98.79667032],[4.53512781,0.03143693,98.79559207],[4.53512732,0.03143519,98.79451506],[4.53512683,0.03143346,98.79343928],[4.53512634,0.03143172,98.79236472],[4.53512585,0.03142999,98.79129136],[4.53512536,0.03142826,98.7902192],[4.53512487,0.03142652,98.78914821],[4.53512437,0.03142479,98.7880784],[4.53512388,0.03142305,98.78700973],[4.53512339,0.03142132,98.78594221],[4.5351229,0.03141959,98.78487581],[4.53512241,0.03141785,98.78381054],[4.53512192,0.03141612,98.78274636],[4.53512143,0.03141439,98.78168327],[4.53512094,0.03141265,98.78062126],[4.53512044,0.03141092,98.77956032],[4.53511995,0.03140918,98.7785004],[4.53511946,0.03140745,98.77744149],[4.53511897,0.03140572,98.77638356],[4.53511848,0.03140398,98.77532659],[4.53511799,0.03140225,98.77427055],[4.53511749,0.03140052,98.77321542],[4.535117,0.03139878,98.77216119],[4.53511651,0.03139705,98.77110782],[4.53511602,0.03139531,98.77005529],[4.53511553,0.03139358,98.76900358],[4.53511503,0.03139185,98.76795268],[4.53511454,0.03139011,98.76690255],[4.53511405,0.03138838,98.76585317],[4.53511356,0.03138665,98.76480454],[4.53511306,0.03138491,98.76375665],[4.53511257,0.03138318,98.76270949],[4.53511208,0.03138145,98.76166304],[4.53511158,0.03137971,98.7606173],[4.53511109,0.03137798,98.75957227],[4.5351106,0.03137625,98.75852793],[4.5351101,0.03137451,98.75748427],[4.53510961,0.03137278,98.75644129],[4.53510912,0.03137105,98.75539898],[4.53510862,0.03136932,98.75435732],[4.53510813,0.03136758,98.75331632],[4.53510763,0.03136585,98.75227595],[4.53510714,0.03136412,98.75123622],[4.53510665,0.03136238,98.75019711],[4.53510615,0.03136065,98.74915861],[4.53510566,0.03135892,98.74812072],[4.53510516,0.03135718,98.74708343],[4.53510467,0.03135545,98.74604673],[4.53510417,0.03135372,98.74501061],[4.53510368,0.03135199,98.74397505],[4.53510318,0.03135025,98.74294007],[4.53510269,0.03134852,98.74190563],[4.53510219,0.03134679,98.74087175],[4.5351017,0.03134506,98.7398384],[4.5351012,0.03134332,98.73880558],[4.53510071,0.03134159,98.73777328],[4.53510021,0.03133986,98.73674149],[4.53509972,0.03133812,98.73571021],[4.53509922,0.03133639,98.73467942],[4.53509873,0.03133466,98.73364911],[4.53509823,0.03133293,98.73261929],[4.53509774,0.03133119,98.73158993],[4.53509724,0.03132946,98.73056103],[4.53509675,0.03132773,98.72953259],[4.53509625,0.031326,98.72850459],[4.53509575,0.03132426,98.72747702],[4.53509526,0.03132253,98.72644989],[4.53509476,0.0313208,98.72542317],[4.53509427,0.03131906,98.72439686],[4.53509377,0.03131733,98.72337095],[4.53509328,0.0313156,98.72234543],[4.53509278,0.03131387,98.7213203],[4.53509229,0.03131213,98.72029555],[4.53509179,0.0313104,98.71927116],[4.5350913,0.03130867,98.71824713],[4.5350908,0.03130694,98.71722346],[4.53509031,0.0313052,98.71620012],[4.53508981,0.03130347,98.71517712],[4.53508931,0.03130174,98.71415445],[4.53508882,0.03130001,98.71313209],[4.53508832,0.03129827,98.71211004],[4.53508783,0.03129654,98.7110883],[4.53508733,0.03129481,98.71006684],[4.53508684,0.03129308,98.70904567],[4.53508634,0.03129134,98.70802481],[4.53508585,0.03128961,98.70700429],[4.53508535,0.03128788,98.70598414],[4.53508486,0.03128614,98.7049644],[4.53508436,0.03128441,98.70394509],[4.53508387,0.03128268,98.70292625],[4.53508337,0.03128095,98.70190792],[4.53508288,0.03127921,98.70089012],[4.53508238,0.03127748,98.69987289],[4.53508189,0.03127575,98.69885625],[4.5350814,0.03127401,98.6978402],[4.5350809,0.03127228,98.69682474],[4.53508041,0.03127055,98.69580985],[4.53507992,0.03126881,98.69479554],[4.53507942,0.03126708,98.6937818],[4.53507893,0.03126535,98.69276862],[4.53507844,0.03126361,98.691756],[4.53507795,0.03126188,98.69074393],[4.53507745,0.03126015,98.6897324],[4.53507696,0.03125841,98.68872141],[4.53507647,0.03125668,98.68771096],[4.53507598,0.03125495,98.68670104],[4.53507549,0.03125321,98.68569163],[4.53507499,0.03125148,98.68468275],[4.5350745,0.03124974,98.68367438],[4.53507401,0.03124801,98.68266651],[4.53507352,0.03124628,98.68165914],[4.53507303,0.03124454,98.68065226],[4.53507254,0.03124281,98.67964588],[4.53507205,0.03124108,98.67863997],[4.53507156,0.03123934,98.67763455],[4.53507106,0.03123761,98.67662959],[4.53507057,0.03123587,98.6756251],[4.53507008,0.03123414,98.67462106],[4.53506959,0.03123241,98.67361748],[4.5350691,0.03123067,98.67261435],[4.53506861,0.03122894,98.67161166],[4.53506812,0.0312272,98.6706094],[4.53506763,0.03122547,98.66960757],[4.53506714,0.03122374,98.66860617],[4.53506664,0.031222,98.66760518],[4.53506615,0.03122027,98.66660461],[4.53506566,0.03121853,98.66560444],[4.53506517,0.0312168,98.66460467],[4.53506468,0.03121507,98.66360529],[4.53506419,0.03121333,98.66260631],[4.53506369,0.0312116,98.6616077],[4.5350632,0.03120987,98.66060947],[4.53506271,0.03120813,98.65961161],[4.53506222,0.0312064,98.6586141],[4.53506173,0.03120467,98.65761694],[4.53506123,0.03120293,98.65662009],[4.53506074,0.0312012,98.65562356],[4.53506025,0.03119947,98.65462732],[4.53505975,0.03119773,98.65363136],[4.53505926,0.031196,98.65263566],[4.53505877,0.03119427,98.65164018],[4.53505827,0.03119253,98.65064485],[4.53505778,0.0311908,98.64964956],[4.53505728,0.03118907,98.64865423],[4.53505679,0.03118733,98.64765881],[4.53505629,0.0311856,98.64666328],[4.5350558,0.03118387,98.64566765],[4.5350553,0.03118214,98.64467189],[4.5350548,0.03118041,98.64367601],[4.5350543,0.03117867,98.64267999],[4.53505381,0.03117694,98.64168383],[4.53505331,0.03117521,98.64068751],[4.53505281,0.03117348,98.63969103],[4.53505231,0.03117175,98.63869438],[4.53505181,0.03117001,98.63769755],[4.53505131,0.03116828,98.63670053],[4.53505081,0.03116655,98.63570331],[4.53505031,0.03116482,98.63470588],[4.53504981,0.03116309,98.63370824],[4.53504931,0.03116136,98.63271038],[4.53504881,0.03115963,98.63171228],[4.5350483,0.0311579,98.63071395],[4.5350478,0.03115617,98.62971536],[4.5350473,0.03115444,98.62871652],[4.53504679,0.03115271,98.62771741],[4.53504629,0.03115098,98.62671802],[4.53504579,0.03114925,98.62571835],[4.53504528,0.03114752,98.62471839],[4.53504478,0.03114579,98.62371813],[4.53504427,0.03114406,98.62271755],[4.53504377,0.03114233,98.62171666],[4.53504326,0.0311406,98.62071544],[4.53504276,0.03113887,98.61971389],[4.53504225,0.03113714,98.61871199],[4.53504174,0.03113541,98.61770974],[4.53504124,0.03113368,98.61670712],[4.53504073,0.03113195,98.61570414],[4.53504022,0.03113022,98.61470078],[4.53503971,0.03112849,98.61369703],[4.53503921,0.03112676,98.61269288],[4.5350387,0.03112503,98.61168833],[4.53503819,0.0311233,98.61068337],[4.53503768,0.03112158,98.60967799],[4.53503717,0.03111985,98.60867217],[4.53503666,0.03111812,98.60766592],[4.53503615,0.03111639,98.60665922],[4.53503564,0.03111466,98.60565207],[4.53503513,0.03111293,98.60464447],[4.53503462,0.0311112,98.60363652],[4.53503411,0.03110948,98.60262827],[4.5350336,0.03110775,98.60161981],[4.53503309,0.03110602,98.60061112],[4.53503258,0.03110429,98.59960218],[4.53503207,0.03110256,98.59859299],[4.53503156,0.03110084,98.59758352],[4.53503105,0.03109911,98.59657377],[4.53503054,0.03109738,98.59556371],[4.53503003,0.03109565,98.59455334],[4.53502951,0.03109392,98.59354266],[4.535029,0.0310922,98.59253165],[4.53502849,0.03109047,98.5915203],[4.53502798,0.03108874,98.59050862],[4.53502747,0.03108701,98.58949658],[4.53502696,0.03108528,98.58848419],[4.53502645,0.03108356,98.58747143],[4.53502593,0.03108183,98.5864583],[4.53502542,0.0310801,98.58544479],[4.53502491,0.03107837,98.58443088],[4.5350244,0.03107664,98.58341658],[4.53502389,0.03107492,98.58240187],[4.53502338,0.03107319,98.58138674],[4.53502287,0.03107146,98.58037119],[4.53502236,0.03106973,98.57935521],[4.53502184,0.031068,98.57833879],[4.53502133,0.03106627,98.57732193],[4.53502082,0.03106455,98.5763046],[4.53502031,0.03106282,98.57528682],[4.53501981,0.03106109,98.57426856],[4.5350193,0.03105936,98.57324982],[4.53501879,0.03105763,98.57223059],[4.53501828,0.0310559,98.57121087],[4.53501778,0.03105417,98.57019064],[4.53501727,0.03105244,98.56916989],[4.53501677,0.03105071,98.56814863],[4.53501627,0.03104898,98.56712684],[4.53501576,0.03104725,98.56610451],[4.53501526,0.03104552,98.56508164],[4.53501476,0.03104379,98.56405821],[4.53501427,0.03104206,98.56303422],[4.53501377,0.03104032,98.56200966],[4.53501328,0.03103859,98.56098453],[4.53501278,0.03103686,98.5599588],[4.53501229,0.03103512,98.55893249],[4.5350118,0.03103339,98.55790557],[4.53501131,0.03103166,98.55687804],[4.53501082,0.03102992,98.55584989],[4.53501033,0.03102819,98.55482112],[4.53500984,0.03102645,98.55379171],[4.53500935,0.03102472,98.55276166],[4.53500887,0.03102298,98.55173095],[4.53500838,0.03102125,98.55069959],[4.5350079,0.03101951,98.54966756],[4.53500741,0.03101778,98.54863486],[4.53500693,0.03101604,98.54760147],[4.53500644,0.0310143,98.54656739],[4.53500596,0.03101257,98.54553262],[4.53500548,0.03101083,98.54449713],[4.535005,0.03100909,98.54346093],[4.53500451,0.03100736,98.54242401],[4.53500403,0.03100562,98.54138635],[4.53500355,0.03100389,98.54034795],[4.53500306,0.03100215,98.53930881],[4.53500258,0.03100041,98.53826891],[4.5350021,0.03099868,98.53722824],[4.53500162,0.03099694,98.53618681],[4.53500113,0.0309952,98.53514459],[4.53500065,0.03099347,98.53410159],[4.53500017,0.03099173,98.53305776],[4.53499968,0.03098999,98.53201304],[4.5349992,0.03098826,98.53096733],[4.53499872,0.03098652,98.52992055],[4.53499823,0.03098479,98.52887263],[4.53499775,0.03098305,98.52782353],[4.53499726,0.03098131,98.52677324],[4.53499678,0.03097958,98.52572177],[4.53499629,0.03097784,98.52466914],[4.53499581,0.03097611,98.52361534],[4.53499532,0.03097437,98.52256039],[4.53499484,0.03097264,98.52150429],[4.53499435,0.0309709,98.52044705],[4.53499386,0.03096917,98.51938866],[4.53499337,0.03096743,98.51832915],[4.53499289,0.0309657,98.51726851],[4.5349924,0.03096396,98.51620676],[4.53499191,0.03096223,98.51514389],[4.53499142,0.03096049,98.51407991],[4.53499093,0.03095876,98.51301483],[4.53499044,0.03095703,98.51194866],[4.53498995,0.03095529,98.5108814],[4.53498946,0.03095356,98.50981305],[4.53498896,0.03095182,98.50874363],[4.53498847,0.03095009,98.50767313],[4.53498798,0.03094836,98.50660157],[4.53498749,0.03094662,98.50552895],[4.53498699,0.03094489,98.50445527],[4.5349865,0.03094316,98.50338054],[4.534986,0.03094142,98.50230477],[4.53498551,0.03093969,98.50122796],[4.53498501,0.03093796,98.50015012],[4.53498452,0.03093623,98.49907125],[4.53498402,0.03093449,98.49799136],[4.53498352,0.03093276,98.49691045],[4.53498302,0.03093103,98.49582854],[4.53498253,0.0309293,98.49474561],[4.53498203,0.03092757,98.49366169],[4.53498153,0.03092583,98.49257677],[4.53498103,0.0309241,98.49149086],[4.53498053,0.03092237,98.49040396],[4.53498003,0.03092064,98.48931609],[4.53497952,0.03091891,98.48822724],[4.53497902,0.03091718,98.48713742],[4.53497852,0.03091545,98.48604663],[4.53497801,0.03091372,98.48495483],[4.53497751,0.03091199,98.48386195],[4.534977,0.03091026,98.48276795],[4.5349765,0.03090853,98.48167278],[4.53497599,0.0309068,98.48057638],[4.53497548,0.03090507,98.47947871],[4.53497498,0.03090334,98.47837977],[4.53497447,0.03090161,98.47727955],[4.53497396,0.03089989,98.47617805],[4.53497345,0.03089816,98.47507525],[4.53497294,0.03089643,98.47397116],[4.53497243,0.0308947,98.47286577],[4.53497192,0.03089297,98.47175907],[4.5349714,0.03089124,98.47065106],[4.53497089,0.03088952,98.46954173],[4.53497038,0.03088779,98.46843107],[4.53496986,0.03088606,98.46731909],[4.53496935,0.03088433,98.46620578],[4.53496884,0.03088261,98.46509112],[4.53496832,0.03088088,98.46397512],[4.53496781,0.03087915,98.46285777],[4.53496729,0.03087743,98.46173906],[4.53496678,0.0308757,98.46061899],[4.53496626,0.03087397,98.45949755],[4.53496575,0.03087225,98.45837474],[4.53496523,0.03087052,98.45725055],[4.53496471,0.03086879,98.45612498],[4.5349642,0.03086707,98.45499802],[4.53496368,0.03086534,98.45386966],[4.53496317,0.03086361,98.4527399],[4.53496265,0.03086189,98.45160874],[4.53496213,0.03086016,98.45047616],[4.53496162,0.03085843,98.44934217],[4.5349611,0.03085671,98.44820676],[4.53496058,0.03085498,98.44706991],[4.53496007,0.03085325,98.44593163],[4.53495955,0.03085153,98.44479192],[4.53495903,0.0308498,98.44365076],[4.53495852,0.03084807,98.44250815],[4.534958,0.03084635,98.44136408],[4.53495749,0.03084462,98.44021855],[4.53495697,0.03084289,98.43907155],[4.53495646,0.03084117,98.43792309],[4.53495594,0.03083944,98.43677315],[4.53495543,0.03083771,98.43562173],[4.53495491,0.03083599,98.43446885],[4.5349544,0.03083426,98.43331449],[4.53495389,0.03083253,98.43215866],[4.53495337,0.0308308,98.43100135],[4.53495286,0.03082908,98.42984255],[4.53495235,0.03082735,98.42868226],[4.53495184,0.03082562,98.42752047],[4.53495133,0.03082389,98.42635717],[4.53495082,0.03082216,98.42519236],[4.53495031,0.03082044,98.42402603],[4.5349498,0.03081871,98.42285816],[4.53494929,0.03081698,98.42168876],[4.53494878,0.03081525,98.42051781],[4.53494827,0.03081352,98.4193453],[4.53494776,0.03081179,98.41817122],[4.53494726,0.03081006,98.41699557],[4.53494675,0.03080833,98.41581834],[4.53494624,0.0308066,98.41463952],[4.53494574,0.03080487,98.4134591],[4.53494523,0.03080314,98.41227707],[4.53494473,0.03080141,98.41109343],[4.53494422,0.03079968,98.40990816],[4.53494372,0.03079795,98.40872126],[4.53494321,0.03079622,98.40753272],[4.53494271,0.03079449,98.40634253],[4.53494221,0.03079276,98.40515068],[4.5349417,0.03079103,98.40395717],[4.5349412,0.0307893,98.40276198],[4.5349407,0.03078757,98.40156511],[4.5349402,0.03078584,98.40036654],[4.53493969,0.03078411,98.39916628],[4.53493919,0.03078238,98.39796431],[4.53493869,0.03078065,98.39676062],[4.53493819,0.03077892,98.39555521],[4.53493769,0.03077719,98.39434807],[4.53493718,0.03077546,98.39313918],[4.53493668,0.03077373,98.39192854],[4.53493618,0.03077199,98.39071615],[4.53493568,0.03077026,98.38950199],[4.53493518,0.03076853,98.38828605],[4.53493468,0.0307668,98.38706833],[4.53493418,0.03076507,98.38584882],[4.53493368,0.03076334,98.38462751],[4.53493317,0.03076161,98.3834044],[4.53493267,0.03075988,98.38217946],[4.53493217,0.03075815,98.3809527],[4.53493167,0.03075642,98.37972411],[4.53493117,0.03075469,98.37849368],[4.53493067,0.03075295,98.3772614],[4.53493017,0.03075122,98.37602726],[4.53492966,0.03074949,98.37479125],[4.53492916,0.03074776,98.37355337],[4.53492866,0.03074603,98.37231361],[4.53492816,0.0307443,98.37107195],[4.53492765,0.03074257,98.3698284],[4.53492715,0.03074084,98.36858294],[4.53492665,0.03073911,98.36733556],[4.53492615,0.03073738,98.36608626],[4.53492564,0.03073565,98.36483503],[4.53492514,0.03073392,98.36358186],[4.53492464,0.03073219,98.36232674],[4.53492413,0.03073046,98.36106966],[4.53492363,0.03072873,98.35981062],[4.53492312,0.030727,98.3585496],[4.53492262,0.03072527,98.3572866],[4.53492212,0.03072354,98.35602161],[4.53492161,0.03072181,98.35475462],[4.53492111,0.03072008,98.35348562],[4.53492061,0.03071835,98.35221461],[4.5349201,0.03071662,98.35094157],[4.5349196,0.03071488,98.3496665],[4.5349191,0.03071315,98.34838939],[4.5349186,0.03071142,98.34711021],[4.53491809,0.03070969,98.34582896],[4.53491759,0.03070796,98.34454564],[4.53491709,0.03070623,98.34326022],[4.53491659,0.0307045,98.34197269],[4.53491609,0.03070277,98.34068305],[4.53491559,0.03070104,98.33939128],[4.53491509,0.03069931,98.33809737],[4.53491459,0.03069758,98.3368013],[4.53491409,0.03069584,98.33550307],[4.53491359,0.03069411,98.33420267],[4.53491309,0.03069238,98.33290007],[4.53491259,0.03069065,98.33159528],[4.5349121,0.03068892,98.33028827],[4.5349116,0.03068718,98.32897904],[4.5349111,0.03068545,98.32766757],[4.53491061,0.03068372,98.32635386],[4.53491012,0.03068198,98.32503788],[4.53490962,0.03068025,98.32371963],[4.53490913,0.03067852,98.32239909],[4.53490864,0.03067678,98.32107626],[4.53490815,0.03067505,98.31975113],[4.53490766,0.03067332,98.31842369],[4.53490717,0.03067158,98.31709395],[4.53490668,0.03066985,98.3157619],[4.53490619,0.03066811,98.31442754],[4.5349057,0.03066638,98.31309085],[4.53490521,0.03066464,98.31175182],[4.53490473,0.03066291,98.31041043],[4.53490424,0.03066117,98.30906667],[4.53490376,0.03065944,98.30772051],[4.53490327,0.0306577,98.30637195],[4.53490279,0.03065596,98.30502097],[4.5349023,0.03065423,98.30366754],[4.53490182,0.03065249,98.30231166],[4.53490133,0.03065076,98.30095331],[4.53490084,0.03064902,98.29959247],[4.53490036,0.03064729,98.29822913],[4.53489987,0.03064555,98.29686326],[4.53489939,0.03064381,98.29549485],[4.5348989,0.03064208,98.2941239],[4.53489842,0.03064034,98.29275037],[4.53489793,0.03063861,98.29137427],[4.53489744,0.03063687,98.28999559],[4.53489695,0.03063514,98.28861432],[4.53489647,0.0306334,98.28723048],[4.53489598,0.03063167,98.28584404],[4.53489549,0.03062993,98.28445501],[4.534895,0.0306282,98.28306338],[4.53489451,0.03062646,98.28166916],[4.53489402,0.03062473,98.28027233],[4.53489353,0.030623,98.27887289],[4.53489304,0.03062126,98.27747084],[4.53489255,0.03061953,98.27606618],[4.53489206,0.03061779,98.27465891],[4.53489157,0.03061606,98.27324901],[4.53489108,0.03061432,98.27183648],[4.53489059,0.03061259,98.27042133],[4.5348901,0.03061086,98.26900355],[4.53488961,0.03060912,98.26758313],[4.53488913,0.03060739,98.26616008],[4.53488864,0.03060565,98.26473438],[4.53488815,0.03060392,98.26330604],[4.53488766,0.03060218,98.26187505],[4.53488717,0.03060045,98.26044142],[4.53488668,0.03059871,98.25900512],[4.53488619,0.03059698,98.25756617],[4.5348857,0.03059524,98.25612456],[4.53488521,0.03059351,98.25468028],[4.53488472,0.03059177,98.25323334],[4.53488424,0.03059004,98.25178373],[4.53488375,0.0305883,98.25033144],[4.53488326,0.03058657,98.24887648],[4.53488277,0.03058483,98.24741884],[4.53488229,0.0305831,98.24595851],[4.5348818,0.03058136,98.2444955],[4.53488132,0.03057963,98.24302981],[4.53488083,0.0305779,98.24156142],[4.53488035,0.03057616,98.24009033],[4.53487986,0.03057443,98.23861656],[4.53487938,0.03057269,98.23714008],[4.5348789,0.03057095,98.23566094],[4.53487842,0.03056922,98.23417918],[4.53487793,0.03056748,98.23269485],[4.53487745,0.03056574,98.231208],[4.53487697,0.03056401,98.22971866],[4.53487649,0.03056227,98.2282269],[4.534876,0.03056053,98.22673276],[4.53487552,0.0305588,98.22523628],[4.53487503,0.03055706,98.22373752],[4.53487453,0.03055533,98.22223653],[4.53487404,0.0305536,98.22073336],[4.53487354,0.03055187,98.21922808],[4.53487304,0.03055014,98.21772072],[4.53487253,0.03054841,98.21621134],[4.53487201,0.03054668,98.21470001],[4.5348715,0.03054495,98.21318676],[4.53487098,0.03054323,98.21167166],[4.53487046,0.0305415,98.21015476],[4.53486993,0.03053978,98.20863611],[4.5348694,0.03053806,98.20711577],[4.53486888,0.03053633,98.20559378],[4.53486835,0.03053461,98.20407018],[4.53486782,0.03053289,98.20254503],[4.53486728,0.03053117,98.20101837],[4.53486675,0.03052944,98.19949024],[4.53486622,0.03052772,98.19796067],[4.53486569,0.030526,98.19642971],[4.53486516,0.03052428,98.19489738],[4.53486463,0.03052255,98.19336373],[4.53486411,0.03052083,98.19182878],[4.53486358,0.03051911,98.19029256],[4.53486305,0.03051738,98.18875512],[4.53486252,0.03051566,98.18721648],[4.534862,0.03051394,98.18567668],[4.53486147,0.03051221,98.18413575],[4.53486095,0.03051049,98.18259373],[4.53486043,0.03050876,98.18105064],[4.5348599,0.03050704,98.17950652],[4.53485938,0.03050531,98.17796141],[4.53485886,0.03050359,98.17641533],[4.53485834,0.03050186,98.17486833],[4.53485782,0.03050014,98.17332042],[4.5348573,0.03049841,98.17177165],[4.53485679,0.03049669,98.17022204],[4.53485627,0.03049496,98.16867164],[4.53485575,0.03049323,98.16712047],[4.53485524,0.03049151,98.16556856],[4.53485472,0.03048978,98.16401595],[4.53485421,0.03048805,98.16246266],[4.5348537,0.03048632,98.16090874],[4.53485319,0.0304846,98.15935421],[4.53485267,0.03048287,98.15779911],[4.53485217,0.03048114,98.15624346],[4.53485166,0.03047941,98.1546873],[4.53485115,0.03047768,98.15313066],[4.53485064,0.03047595,98.15157357],[4.53485013,0.03047422,98.15001607],[4.53484963,0.03047249,98.14845818],[4.53484912,0.03047076,98.14689993],[4.53484862,0.03046903,98.14534136],[4.53484812,0.0304673,98.1437825],[4.53484761,0.03046557,98.14222338],[4.53484711,0.03046384,98.14066403],[4.53484661,0.03046211,98.13910448],[4.53484611,0.03046038,98.13754477],[4.53484561,0.03045865,98.13598491],[4.5348451,0.03045692,98.13442495],[4.5348446,0.03045519,98.13286491],[4.5348441,0.03045346,98.13130483],[4.5348436,0.03045172,98.12974473],[4.53484311,0.03044999,98.12818465],[4.53484261,0.03044826,98.12662462],[4.53484211,0.03044653,98.12506466],[4.53484161,0.0304448,98.1235048],[4.53484111,0.03044307,98.1219451],[4.53484061,0.03044133,98.12038558],[4.53484011,0.0304396,98.11882632],[4.53483961,0.03043787,98.11726735],[4.53483912,0.03043614,98.11570874],[4.53483862,0.03043441,98.11415053],[4.53483812,0.03043268,98.11259278],[4.53483762,0.03043094,98.11103555],[4.53483712,0.03042921,98.10947889],[4.53483662,0.03042748,98.10792284],[4.53483612,0.03042575,98.10636747],[4.53483563,0.03042402,98.10481284],[4.53483513,0.03042228,98.10325898],[4.53483463,0.03042055,98.10170596],[4.53483413,0.03041882,98.10015383],[4.53483363,0.03041709,98.09860265],[4.53483313,0.03041536,98.09705247],[4.53483264,0.03041362,98.09550334],[4.53483214,0.03041189,98.09395533],[4.53483164,0.03041016,98.09240847],[4.53483114,0.03040843,98.09086284],[4.53483064,0.0304067,98.08931848],[4.53483014,0.03040497,98.08777544],[4.53482965,0.03040323,98.08623379],[4.53482915,0.0304015,98.08469358],[4.53482865,0.03039977,98.08315485],[4.53482815,0.03039804,98.08161766],[4.53482765,0.03039631,98.08008204],[4.53482716,0.03039457,98.07854806],[4.53482666,0.03039284,98.07701576],[4.53482616,0.03039111,98.07548519],[4.53482566,0.03038938,98.07395639],[4.53482516,0.03038765,98.07242941],[4.53482466,0.03038591,98.07090431],[4.53482417,0.03038418,98.06938112],[4.53482367,0.03038245,98.06785989],[4.53482317,0.03038072,98.06634067],[4.53482267,0.03037899,98.06482351],[4.53482217,0.03037725,98.06330843],[4.53482168,0.03037552,98.0617955],[4.53482118,0.03037379,98.06028475],[4.53482068,0.03037206,98.05877623],[4.53482018,0.03037033,98.05726999],[4.53481968,0.03036859,98.05576606],[4.53481918,0.03036686,98.05426449],[4.53481869,0.03036513,98.05276533],[4.53481819,0.0303634,98.05126862],[4.53481769,0.03036167,98.04977441],[4.53481719,0.03035994,98.04828274],[4.53481669,0.0303582,98.04679365],[4.53481619,0.03035647,98.04530719],[4.53481569,0.03035474,98.0438234],[4.53481519,0.03035301,98.04234234],[4.53481469,0.03035128,98.04086403],[4.5348142,0.03034955,98.03938854],[4.5348137,0.03034781,98.03791589],[4.5348132,0.03034608,98.03644614],[4.5348127,0.03034435,98.03497934],[4.5348122,0.03034262,98.03351552],[4.5348117,0.03034089,98.03205474],[4.5348112,0.03033916,98.03059706],[4.53481069,0.03033743,98.02914252],[4.53481019,0.03033569,98.02769119],[4.53480969,0.03033396,98.0262431],[4.53480919,0.03033223,98.02479831],[4.53480869,0.0303305,98.02335688],[4.53480819,0.03032877,98.02191886],[4.53480768,0.03032704,98.0204843],[4.53480718,0.03032531,98.01905325],[4.53480668,0.03032358,98.01762577],[4.53480617,0.03032185,98.0162019],[4.53480567,0.03032012,98.01478168],[4.53480516,0.03031839,98.01336517],[4.53480466,0.03031666,98.01195239],[4.53480415,0.03031493,98.01054338],[4.53480365,0.0303132,98.00913819],[4.53480314,0.03031147,98.00773685],[4.53480264,0.03030974,98.0063394],[4.53480213,0.03030801,98.00494588],[4.53480162,0.03030628,98.00355634],[4.53480111,0.03030455,98.0021708],[4.5348006,0.03030282,98.00078931],[4.5348001,0.03030109,97.99941191],[4.53479959,0.03029937,97.99803863],[4.53479908,0.03029764,97.99666952],[4.53479857,0.03029591,97.99530461],[4.53479805,0.03029418,97.99394395],[4.53479754,0.03029245,97.99258756],[4.53479703,0.03029073,97.9912355],[4.53479652,0.030289,97.98988779],[4.53479601,0.03028727,97.98854449],[4.53479549,0.03028554,97.98720562],[4.53479498,0.03028381,97.98587122],[4.53479447,0.03028209,97.98454134],[4.53479395,0.03028036,97.98321602],[4.53479344,0.03027863,97.98189528],[4.53479292,0.03027691,97.98057918],[4.53479241,0.03027518,97.97926774],[4.53479189,0.03027345,97.97796102],[4.53479138,0.03027172,97.97665903],[4.53479086,0.03027,97.97536184],[4.53479035,0.03026827,97.97406947],[4.53478983,0.03026654,97.97278196],[4.53478932,0.03026482,97.97149935],[4.5347888,0.03026309,97.97022168],[4.53478829,0.03026136,97.96894899],[4.53478777,0.03025964,97.96768131],[4.53478726,0.03025791,97.9664187],[4.53478674,0.03025618,97.96516117],[4.53478622,0.03025446,97.96390878],[4.53478571,0.03025273,97.96266156],[4.53478519,0.030251,97.96141955],[4.53478468,0.03024927,97.96018279],[4.53478416,0.03024755,97.95895132],[4.53478365,0.03024582,97.95772517],[4.53478313,0.03024409,97.95650439],[4.53478262,0.03024237,97.95528901],[4.5347821,0.03024064,97.95407907],[4.53478159,0.03023891,97.95287461],[4.53478107,0.03023719,97.95167568],[4.53478056,0.03023546,97.9504823],[4.53478004,0.03023373,97.94929452],[4.53477953,0.03023201,97.94811237],[4.53477901,0.03023028,97.9469359],[4.5347785,0.03022855,97.94576514],[4.53477798,0.03022682,97.94460014],[4.53477747,0.0302251,97.94344092],[4.53477695,0.03022337,97.94228754],[4.53477644,0.03022164,97.94114002],[4.53477592,0.03021992,97.93999841],[4.53477541,0.03021819,97.93886275],[4.53477489,0.03021646,97.93773308],[4.53477438,0.03021474,97.93660943],[4.53477386,0.03021301,97.93549184],[4.53477335,0.03021128,97.93438036],[4.53477283,0.03020955,97.93327502],[4.53477232,0.03020783,97.93217586],[4.53477181,0.0302061,97.93108293],[4.53477129,0.03020437,97.92999626],[4.53477078,0.03020264,97.9289159],[4.53477026,0.03020092,97.92784191],[4.53476975,0.03019919,97.92677434],[4.53476924,0.03019746,97.92571324],[4.53476872,0.03019574,97.92465866],[4.53476821,0.03019401,97.92361066],[4.5347677,0.03019228,97.92256928],[4.53476718,0.03019055,97.92153457],[4.53476667,0.03018882,97.92050659],[4.53476616,0.0301871,97.91948539],[4.53476564,0.03018537,97.91847102],[4.53476513,0.03018364,97.91746348],[4.53476462,0.03018191,97.9164627],[4.53476411,0.03018019,97.91546857],[4.53476359,0.03017846,97.91448102],[4.53476308,0.03017673,97.91349996],[4.53476257,0.030175,97.91252528],[4.53476206,0.03017327,97.9115569],[4.53476155,0.03017155,97.91059473],[4.53476104,0.03016982,97.90963867],[4.53476053,0.03016809,97.90868864],[4.53476002,0.03016636,97.90774455],[4.53475951,0.03016463,97.9068063],[4.534759,0.0301629,97.9058738],[4.53475849,0.03016118,97.90494696],[4.53475798,0.03015945,97.9040257],[4.53475747,0.03015772,97.90310991],[4.53475696,0.03015599,97.90219951],[4.53475645,0.03015426,97.9012944],[4.53475594,0.03015253,97.9003945],[4.53475543,0.0301508,97.89949971],[4.53475492,0.03014907,97.89860994],[4.53475441,0.03014735,97.8977251],[4.53475391,0.03014562,97.8968451],[4.5347534,0.03014389,97.89596985],[4.53475289,0.03014216,97.89509925],[4.53475239,0.03014043,97.89423321],[4.53475188,0.0301387,97.89337165],[4.53475137,0.03013697,97.89251446],[4.53475087,0.03013524,97.89166156],[4.53475036,0.03013351,97.89081285],[4.53474986,0.03013178,97.88996824],[4.53474935,0.03013005,97.88912763],[4.53474885,0.03012832,97.88829092],[4.53474834,0.03012659,97.887458],[4.53474784,0.03012486,97.88662878],[4.53474733,0.03012313,97.88580316],[4.53474683,0.0301214,97.88498103],[4.53474632,0.03011967,97.88416229],[4.53474582,0.03011794,97.88334685],[4.53474532,0.03011621,97.8825346],[4.53474481,0.03011448,97.88172545],[4.53474431,0.03011275,97.88091928],[4.53474381,0.03011102,97.88011601],[4.5347433,0.03010928,97.87931553],[4.5347428,0.03010755,97.87851774],[4.5347423,0.03010582,97.87772255],[4.5347418,0.03010409,97.87692984],[4.53474129,0.03010236,97.87613952],[4.53474079,0.03010063,97.87535148],[4.53474029,0.0300989,97.87456564],[4.53473979,0.03009717,97.87378189],[4.53473929,0.03009544,97.87300012],[4.53473879,0.03009371,97.87222024],[4.53473828,0.03009198,97.87144214],[4.53473778,0.03009024,97.87066573],[4.53473728,0.03008851,97.86989091],[4.53473678,0.03008678,97.86911757],[4.53473628,0.03008505,97.86834562],[4.53473578,0.03008332,97.86757495],[4.53473528,0.03008159,97.86680546],[4.53473478,0.03007986,97.86603706],[4.53473428,0.03007812,97.86526964],[4.53473378,0.03007639,97.8645031],[4.53473328,0.03007466,97.86373735],[4.53473278,0.03007293,97.86297228],[4.53473228,0.0300712,97.86220779],[4.53473178,0.03006947,97.86144378],[4.53473128,0.03006774,97.86068016],[4.53473078,0.030066,97.85991683],[4.53473028,0.03006427,97.85915371],[4.53472978,0.03006254,97.8583907],[4.53472928,0.03006081,97.85762772],[4.53472878,0.03005908,97.85686467],[4.53472828,0.03005735,97.85610147],[4.53472778,0.03005562,97.85533803],[4.53472728,0.03005388,97.85457426],[4.53472678,0.03005215,97.85381007],[4.53472628,0.03005042,97.85304535],[4.53472578,0.03004869,97.85228003],[4.53472528,0.03004696,97.85151399],[4.53472478,0.03004523,97.85074714],[4.53472428,0.03004349,97.84997938],[4.53472378,0.03004176,97.84921062],[4.53472328,0.03004003,97.84844076],[4.53472278,0.0300383,97.8476697],[4.53472228,0.03003657,97.84689734],[4.53472178,0.03003484,97.84612359],[4.53472128,0.03003311,97.84534834],[4.53472078,0.03003137,97.8445715],[4.53472028,0.03002964,97.84379297],[4.53471978,0.03002791,97.84301266],[4.53471928,0.03002618,97.84223046],[4.53471878,0.03002445,97.84144628],[4.53471828,0.03002272,97.84066002],[4.53471777,0.03002098,97.83987158],[4.53471727,0.03001925,97.83908087],[4.53471677,0.03001752,97.83828779],[4.53471627,0.03001579,97.83749223],[4.53471577,0.03001406,97.83669411],[4.53471527,0.03001233,97.83589332],[4.53471477,0.0300106,97.83508976],[4.53471427,0.03000887,97.83428335],[4.53471377,0.03000713,97.83347398],[4.53471327,0.0300054,97.83266163],[4.53471277,0.03000367,97.83184632],[4.53471226,0.03000194,97.83102805],[4.53471176,0.03000021,97.83020683],[4.53471126,0.02999848,97.82938268],[4.53471076,0.02999675,97.82855561],[4.53471026,0.02999502,97.82772562],[4.53470975,0.02999329,97.82689272],[4.53470925,0.02999156,97.82605693],[4.53470875,0.02998982,97.82521826],[4.53470824,0.02998809,97.82437672],[4.53470774,0.02998636,97.82353231],[4.53470724,0.02998463,97.82268505],[4.53470673,0.0299829,97.82183494],[4.53470623,0.02998117,97.82098201],[4.53470573,0.02997944,97.82012626],[4.53470522,0.02997771,97.81926769],[4.53470472,0.02997598,97.81840633],[4.53470421,0.02997425,97.81754217],[4.53470371,0.02997252,97.81667524],[4.5347032,0.02997079,97.81580553],[4.5347027,0.02996906,97.81493307],[4.53470219,0.02996733,97.81405787],[4.53470169,0.0299656,97.81317994],[4.53470118,0.02996387,97.81229932],[4.53470067,0.02996214,97.81141601],[4.53470017,0.02996041,97.81053004],[4.53469966,0.02995868,97.80964141],[4.53469916,0.02995695,97.80875015],[4.53469865,0.02995522,97.80785627],[4.53469814,0.02995349,97.8069598],[4.53469764,0.02995176,97.80606073],[4.53469713,0.02995003,97.80515911],[4.53469662,0.0299483,97.80425493],[4.53469612,0.02994657,97.80334821],[4.53469561,0.02994484,97.80243898],[4.5346951,0.02994311,97.80152725],[4.5346946,0.02994139,97.80061303],[4.53469409,0.02993966,97.79969634],[4.53469358,0.02993793,97.79877718],[4.53469308,0.0299362,97.79785555],[4.53469257,0.02993447,97.79693143],[4.53469206,0.02993274,97.79600483],[4.53469156,0.02993101,97.79507573],[4.53469105,0.02992928,97.79414414],[4.53469055,0.02992755,97.79321004],[4.53469004,0.02992582,97.79227343],[4.53468953,0.02992409,97.79133431],[4.53468903,0.02992236,97.79039267],[4.53468852,0.02992063,97.78944851],[4.53468802,0.0299189,97.78850182],[4.53468751,0.02991717,97.78755259],[4.534687,0.02991544,97.78660082],[4.5346865,0.02991371,97.78564651],[4.53468599,0.02991198,97.78468966],[4.53468549,0.02991025,97.78373025],[4.53468498,0.02990852,97.78276828],[4.53468448,0.02990679,97.78180376],[4.53468397,0.02990506,97.78083667],[4.53468347,0.02990333,97.77986701],[4.53468296,0.0299016,97.77889478],[4.53468246,0.02989987,97.77791997],[4.53468195,0.02989814,97.77694258],[4.53468145,0.02989641,97.77596261],[4.53468095,0.02989468,97.77498005],[4.53468044,0.02989295,97.7739949],[4.53467994,0.02989122,97.77300715],[4.53467943,0.02988949,97.77201681],[4.53467893,0.02988776,97.77102387],[4.53467843,0.02988602,97.77002834],[4.53467792,0.02988429,97.76903021],[4.53467742,0.02988256,97.76802948],[4.53467691,0.02988083,97.76702615],[4.53467641,0.0298791,97.76602023],[4.53467591,0.02987737,97.76501172],[4.5346754,0.02987564,97.76400061],[4.5346749,0.02987391,97.7629869],[4.5346744,0.02987218,97.7619706],[4.53467389,0.02987045,97.76095171],[4.53467339,0.02986872,97.75993022],[4.53467288,0.02986699,97.75890614],[4.53467238,0.02986526,97.75787947],[4.53467188,0.02986353,97.7568502],[4.53467137,0.0298618,97.75581834],[4.53467087,0.02986007,97.75478389],[4.53467036,0.02985834,97.75374685],[4.53466986,0.02985661,97.75270722],[4.53466935,0.02985488,97.751665],[4.53466885,0.02985315,97.75062019],[4.53466834,0.02985142,97.7495728],[4.53466784,0.02984969,97.74852281],[4.53466733,0.02984796,97.74747025],[4.53466683,0.02984623,97.74641512],[4.53466632,0.0298445,97.74535741],[4.53466581,0.02984277,97.74429715],[4.53466531,0.02984104,97.74323432],[4.5346648,0.02983931,97.74216895],[4.53466429,0.02983758,97.74110103],[4.53466379,0.02983585,97.74003057],[4.53466328,0.02983412,97.73895758],[4.53466277,0.02983239,97.73788206],[4.53466226,0.02983066,97.73680402],[4.53466175,0.02982893,97.73572346],[4.53466124,0.0298272,97.73464039],[4.53466073,0.02982548,97.73355482],[4.53466022,0.02982375,97.73246677],[4.53465971,0.02982202,97.73137626],[4.5346592,0.02982029,97.73028336],[4.53465869,0.02981856,97.72918811],[4.53465818,0.02981683,97.72809055],[4.53465766,0.02981511,97.72699074],[4.53465715,0.02981338,97.72588873],[4.53465664,0.02981165,97.72478455],[4.53465612,0.02980992,97.72367827],[4.53465561,0.0298082,97.72256993],[4.5346551,0.02980647,97.72145958],[4.53465458,0.02980474,97.72034726],[4.53465407,0.02980301,97.71923302],[4.53465355,0.02980129,97.71811691],[4.53465304,0.02979956,97.71699898],[4.53465252,0.02979783,97.71587928],[4.53465201,0.0297961,97.71475784],[4.53465149,0.02979438,97.71363468],[4.53465098,0.02979265,97.7125098],[4.53465046,0.02979092,97.71138321],[4.53464995,0.0297892,97.71025491],[4.53464943,0.02978747,97.70912491],[4.53464891,0.02978574,97.70799321],[4.5346484,0.02978402,97.70685982],[4.53464788,0.02978229,97.70572475],[4.53464736,0.02978056,97.70458799],[4.53464684,0.02977884,97.70344956],[4.53464633,0.02977711,97.70230946],[4.53464581,0.02977538,97.7011677],[4.53464529,0.02977366,97.70002427],[4.53464477,0.02977193,97.69887919],[4.53464425,0.02977021,97.69773246],[4.53464373,0.02976848,97.69658409],[4.53464321,0.02976675,97.69543408],[4.53464269,0.02976503,97.69428244],[4.53464217,0.0297633,97.69312917],[4.53464165,0.02976158,97.69197428],[4.53464113,0.02975985,97.69081777],[4.53464061,0.02975813,97.68965965],[4.53464009,0.0297564,97.68849993],[4.53463957,0.02975468,97.68733861],[4.53463905,0.02975295,97.68617569],[4.53463853,0.02975123,97.68501118],[4.534638,0.0297495,97.6838451],[4.53463748,0.02974778,97.68267743],[4.53463696,0.02974605,97.68150819],[4.53463643,0.02974433,97.68033739],[4.53463591,0.0297426,97.67916502],[4.53463539,0.02974088,97.6779911],[4.53463486,0.02973915,97.67681564],[4.53463434,0.02973743,97.67563862],[4.53463381,0.0297357,97.67446007],[4.53463329,0.02973398,97.67327999],[4.53463276,0.02973226,97.67209838],[4.53463223,0.02973053,97.67091524],[4.53463171,0.02972881,97.6697306],[4.53463118,0.02972708,97.66854444],[4.53463066,0.02972536,97.66735677],[4.53463013,0.02972364,97.66616761],[4.53462961,0.02972191,97.66497696],[4.53462909,0.02972019,97.66378481],[4.53462856,0.02971846,97.66259119],[4.53462804,0.02971674,97.66139609],[4.53462752,0.02971501,97.66019951],[4.534627,0.02971329,97.65900148],[4.53462648,0.02971156,97.65780198],[4.53462596,0.02970983,97.65660103],[4.53462544,0.02970811,97.65539863],[4.53462493,0.02970638,97.6541948],[4.53462441,0.02970465,97.65298959],[4.5346239,0.02970293,97.65178306],[4.53462339,0.0297012,97.65057524],[4.53462288,0.02969947,97.64936612],[4.53462237,0.02969774,97.64815572],[4.53462186,0.02969601,97.64694404],[4.53462136,0.02969428,97.64573107],[4.53462086,0.02969255,97.64451684],[4.53462036,0.02969082,97.64330133],[4.53461986,0.02968908,97.64208456],[4.53461936,0.02968735,97.64086652],[4.53461887,0.02968562,97.63964723],[4.53461837,0.02968389,97.63842669],[4.53461788,0.02968215,97.63720489],[4.53461739,0.02968042,97.63598185],[4.5346169,0.02967868,97.63475757],[4.53461641,0.02967695,97.63353206],[4.53461592,0.02967521,97.63230531],[4.53461543,0.02967348,97.63107733],[4.53461494,0.02967175,97.62984812],[4.53461445,0.02967001,97.62861768],[4.53461396,0.02966828,97.62738601],[4.53461347,0.02966654,97.62615312],[4.53461298,0.02966481,97.624919],[4.53461249,0.02966307,97.62368365],[4.534612,0.02966134,97.62244707],[4.5346115,0.0296596,97.62120927],[4.53461101,0.02965787,97.61997024],[4.53461052,0.02965614,97.61872998],[4.53461003,0.0296544,97.6174885],[4.53460953,0.02965267,97.6162458],[4.53460904,0.02965094,97.61500187],[4.53460855,0.0296492,97.61375671],[4.53460805,0.02964747,97.61251034],[4.53460756,0.02964573,97.61126273],[4.53460707,0.029644,97.61001391],[4.53460657,0.02964227,97.60876386],[4.53460608,0.02964053,97.60751259],[4.53460559,0.0296388,97.60626009],[4.5346051,0.02963707,97.60500638],[4.5346046,0.02963533,97.60375144],[4.53460411,0.0296336,97.60249527],[4.53460362,0.02963186,97.60123789],[4.53460313,0.02963013,97.5999793],[4.53460264,0.0296284,97.59871955],[4.53460215,0.02962666,97.59745871],[4.53460166,0.02962493,97.5961968],[4.53460117,0.02962319,97.5949339],[4.53460068,0.02962146,97.59367006],[4.53460019,0.02961972,97.59240532],[4.5345997,0.02961799,97.59113974],[4.53459922,0.02961625,97.58987338],[4.53459873,0.02961451,97.58860628],[4.53459824,0.02961278,97.58733851],[4.53459776,0.02961104,97.58607009],[4.53459727,0.02960931,97.58480107],[4.53459679,0.02960757,97.58353144],[4.5345963,0.02960584,97.58226122],[4.53459581,0.0296041,97.58099043],[4.53459533,0.02960236,97.57971907],[4.53459484,0.02960063,97.57844717],[4.53459435,0.0295989,97.57717472],[4.53459385,0.02959716,97.57590175],[4.53459336,0.02959543,97.57462826],[4.53459286,0.0295937,97.57335427],[4.53459237,0.02959196,97.5720798],[4.53459187,0.02959023,97.57080485],[4.53459136,0.0295885,97.56952944],[4.53459086,0.02958677,97.56825358],[4.53459035,0.02958504,97.56697728],[4.53458983,0.02958331,97.56570056],[4.53458932,0.02958159,97.56442342],[4.5345888,0.02957986,97.56314589],[4.53458828,0.02957814,97.56186798],[4.53458777,0.02957641,97.56058969],[4.53458725,0.02957468,97.55931104],[4.53458673,0.02957296,97.55803204],[4.53458621,0.02957123,97.55675272],[4.53458569,0.02956951,97.55547306],[4.53458517,0.02956778,97.55419308],[4.53458465,0.02956605,97.55291278],[4.53458413,0.02956433,97.55163214],[4.53458362,0.0295626,97.55035118],[4.5345831,0.02956088,97.54906989],[4.53458258,0.02955915,97.54778827],[4.53458207,0.02955742,97.54650632],[4.53458155,0.0295557,97.54522403],[4.53458104,0.02955397,97.54394142],[4.53458052,0.02955224,97.54265846],[4.53458001,0.02955052,97.54137517],[4.53457949,0.02954879,97.54009155],[4.53457898,0.02954706,97.53880758],[4.53457846,0.02954533,97.53752327],[4.53457795,0.02954361,97.53623863],[4.53457743,0.02954188,97.53495364],[4.53457692,0.02954015,97.5336683],[4.53457641,0.02953843,97.53238263],[4.53457589,0.0295367,97.5310966],[4.53457538,0.02953497,97.52981023],[4.53457487,0.02953324,97.5285235],[4.53457435,0.02953152,97.52723643],[4.53457384,0.02952979,97.525949],[4.53457333,0.02952806,97.52466122],[4.53457281,0.02952633,97.52337308],[4.5345723,0.02952461,97.52208459],[4.53457179,0.02952288,97.52079573],[4.53457127,0.02952115,97.51950652],[4.53457076,0.02951942,97.51821694],[4.53457025,0.0295177,97.516927],[4.53456973,0.02951597,97.51563669],[4.53456922,0.02951424,97.51434601],[4.5345687,0.02951251,97.51305496],[4.53456819,0.02951079,97.51176356],[4.53456768,0.02950906,97.51047181],[4.53456716,0.02950733,97.50917973],[4.53456665,0.02950561,97.50788732],[4.53456614,0.02950388,97.5065946],[4.53456562,0.02950215,97.50530159],[4.53456511,0.02950042,97.50400829],[4.53456459,0.0294987,97.50271471],[4.53456408,0.02949697,97.50142088],[4.53456357,0.02949524,97.50012679],[4.53456305,0.02949352,97.49883247],[4.53456254,0.02949179,97.49753791],[4.53456202,0.02949006,97.49624315],[4.53456151,0.02948833,97.49494818],[4.53456099,0.02948661,97.49365302],[4.53456048,0.02948488,97.49235769],[4.53455997,0.02948315,97.49106219],[4.53455945,0.02948143,97.48976653],[4.53455894,0.0294797,97.48847073],[4.53455842,0.02947797,97.48717481],[4.53455791,0.02947625,97.48587876],[4.53455739,0.02947452,97.48458261],[4.53455688,0.02947279,97.48328636],[4.53455636,0.02947106,97.48199004],[4.53455585,0.02946934,97.48069364],[4.53455533,0.02946761,97.47939718],[4.53455482,0.02946588,97.47810068],[4.5345543,0.02946416,97.47680415],[4.53455379,0.02946243,97.47550759],[4.53455327,0.0294607,97.47421103],[4.53455276,0.02945898,97.47291447],[4.53455224,0.02945725,97.47161792],[4.53455173,0.02945552,97.4703214],[4.53455121,0.0294538,97.46902492],[4.5345507,0.02945207,97.46772849],[4.53455018,0.02945034,97.46643212],[4.53454967,0.02944862,97.46513583],[4.53454915,0.02944689,97.46383963],[4.53454864,0.02944516,97.46254352],[4.53454812,0.02944344,97.46124753],[4.53454761,0.02944171,97.45995166],[4.53454709,0.02943998,97.45865593],[4.53454658,0.02943826,97.45736035],[4.53454606,0.02943653,97.45606493],[4.53454555,0.0294348,97.45476968],[4.53454503,0.02943308,97.45347461],[4.53454452,0.02943135,97.45217974],[4.534544,0.02942962,97.45088509],[4.53454349,0.0294279,97.44959065],[4.53454297,0.02942617,97.44829645],[4.53454246,0.02942444,97.4470025],[4.53454195,0.02942271,97.4457088],[4.53454143,0.02942099,97.44441537],[4.53454092,0.02941926,97.44312223],[4.5345404,0.02941753,97.44182938],[4.53453989,0.02941581,97.44053685],[4.53453938,0.02941408,97.43924463],[4.53453886,0.02941235,97.43795274],[4.53453835,0.02941062,97.4366612],[4.53453784,0.0294089,97.43537001],[4.53453733,0.02940717,97.4340792],[4.53453682,0.02940544,97.43278876],[4.5345363,0.02940371,97.43149872],[4.53453579,0.02940199,97.43020909],[4.53453528,0.02940026,97.42891987],[4.53453477,0.02939853,97.42763109],[4.53453426,0.0293968,97.42634275],[4.53453375,0.02939507,97.42505486],[4.53453324,0.02939335,97.42376745],[4.53453273,0.02939162,97.42248051],[4.53453222,0.02938989,97.42119407],[4.53453171,0.02938816,97.41990813],[4.5345312,0.02938643,97.41862271],[4.53453069,0.0293847,97.41733782],[4.53453019,0.02938298,97.41605347],[4.53452968,0.02938125,97.41476968],[4.53452917,0.02937952,97.41348646],[4.53452866,0.02937779,97.41220382],[4.53452816,0.02937606,97.41092176],[4.53452765,0.02937433,97.40964032],[4.53452714,0.0293726,97.40835949],[4.53452664,0.02937087,97.40707929],[4.53452613,0.02936914,97.40579974],[4.53452563,0.02936741,97.40452083],[4.53452513,0.02936568,97.40324259],[4.53452462,0.02936395,97.40196503],[4.53452412,0.02936222,97.40068816],[4.53452362,0.02936049,97.39941199],[4.53452312,0.02935876,97.39813653],[4.53452261,0.02935703,97.3968618],[4.53452211,0.0293553,97.3955878],[4.53452161,0.02935357,97.39431455],[4.53452111,0.02935184,97.39304205],[4.53452061,0.02935011,97.39177031],[4.53452011,0.02934837,97.39049933],[4.53451961,0.02934664,97.38922911],[4.53451912,0.02934491,97.38795966],[4.53451862,0.02934318,97.38669097],[4.53451812,0.02934145,97.38542307],[4.53451762,0.02933971,97.38415594],[4.53451713,0.02933798,97.3828896],[4.53451663,0.02933625,97.38162405],[4.53451614,0.02933452,97.38035928],[4.53451564,0.02933279,97.37909532],[4.53451514,0.02933105,97.37783215],[4.53451465,0.02932932,97.37656978],[4.53451415,0.02932759,97.37530823],[4.53451366,0.02932586,97.37404748],[4.53451316,0.02932412,97.37278755],[4.53451267,0.02932239,97.37152844],[4.53451217,0.02932066,97.37027015],[4.53451168,0.02931893,97.36901267],[4.53451118,0.02931719,97.36775602],[4.53451069,0.02931546,97.36650017],[4.53451019,0.02931373,97.36524512],[4.5345097,0.029312,97.36399087],[4.5345092,0.02931026,97.3627374],[4.5345087,0.02930853,97.36148473],[4.53450821,0.0293068,97.36023283],[4.53450771,0.02930507,97.35898171],[4.53450721,0.02930333,97.35773135],[4.53450672,0.0293016,97.35648175],[4.53450622,0.02929987,97.35523291],[4.53450572,0.02929814,97.35398482],[4.53450522,0.02929641,97.35273748],[4.53450472,0.02929468,97.35149087],[4.53450422,0.02929295,97.35024499],[4.53450372,0.02929121,97.34899984],[4.53450322,0.02928948,97.34775541],[4.53450272,0.02928775,97.34651169],[4.53450222,0.02928602,97.34526867],[4.53450172,0.02928429,97.34402635],[4.53450122,0.02928256,97.34278472],[4.53450073,0.02928083,97.34154376],[4.53450023,0.0292791,97.34030348],[4.53449973,0.02927736,97.33906386],[4.53449923,0.02927563,97.33782491],[4.53449874,0.0292739,97.33658663],[4.53449824,0.02927217,97.33534902],[4.53449775,0.02927043,97.33411209],[4.53449725,0.0292687,97.33287584],[4.53449676,0.02926697,97.33164027],[4.53449627,0.02926523,97.33040538],[4.53449578,0.0292635,97.32917118],[4.53449529,0.02926177,97.32793767],[4.5344948,0.02926003,97.32670486],[4.53449431,0.0292583,97.32547273],[4.53449383,0.02925656,97.32424131],[4.53449334,0.02925483,97.32301059],[4.53449285,0.02925309,97.32178056],[4.53449236,0.02925136,97.32055125],[4.53449187,0.02924962,97.31932264],[4.53449138,0.02924789,97.31809475],[4.53449087,0.02924616,97.31686757],[4.53449037,0.02924443,97.3156411],[4.53448985,0.02924271,97.31441536],[4.53448933,0.02924098,97.31319034],[4.5344888,0.02923926,97.31196604],[4.53448827,0.02923754,97.31074248],[4.53448773,0.02923582,97.30951964],[4.53448718,0.0292341,97.30829754],[4.53448664,0.02923239,97.30707617],[4.53448609,0.02923067,97.30585555],[4.53448555,0.02922895,97.30463566],[4.534485,0.02922723,97.30341652],[4.53448446,0.02922552,97.30219813],[4.53448392,0.0292238,97.3009805],[4.53448338,0.02922208,97.29976361],[4.53448284,0.02922036,97.29854748],[4.5344823,0.02921864,97.29733211],[4.53448176,0.02921692,97.29611751],[4.53448122,0.0292152,97.29490367],[4.53448068,0.02921349,97.2936906],[4.53448014,0.02921177,97.2924783],[4.5344796,0.02921005,97.29126677],[4.53447906,0.02920833,97.29005603],[4.53447852,0.02920661,97.28884606],[4.53447797,0.02920489,97.28763687],[4.53447743,0.02920317,97.28642847],[4.53447689,0.02920146,97.28522087],[4.53447635,0.02919974,97.28401405],[4.53447581,0.02919802,97.28280803],[4.53447527,0.0291963,97.2816028],[4.53447473,0.02919458,97.28039838],[4.53447418,0.02919286,97.27919476],[4.53447364,0.02919115,97.27799195],[4.5344731,0.02918943,97.27678995],[4.53447256,0.02918771,97.27558876],[4.53447201,0.02918599,97.27438839],[4.53447147,0.02918428,97.27318884],[4.53447093,0.02918256,97.27199011],[4.53447038,0.02918084,97.2707922],[4.53446984,0.02917912,97.26959513],[4.53446929,0.02917741,97.26839888],[4.53446875,0.02917569,97.26720347],[4.53446821,0.02917397,97.2660089],[4.53446766,0.02917225,97.26481516],[4.53446712,0.02917054,97.26362228],[4.53446657,0.02916882,97.26243023],[4.53446603,0.0291671,97.26123904],[4.53446549,0.02916538,97.2600487],[4.53446494,0.02916367,97.25885922],[4.5344644,0.02916195,97.25767059],[4.53446391,0.02916021,97.25648283],[4.53446346,0.02915847,97.25529593],[4.534463,0.02915672,97.25410991],[4.53446255,0.02915498,97.25292475],[4.53446209,0.02915323,97.25174047],[4.53446164,0.02915149,97.25055706],[4.53446118,0.02914975,97.24937454],[4.53446073,0.029148,97.2481929],[4.53446027,0.02914626,97.24701215],[4.53445982,0.02914451,97.24583229],[4.53445936,0.02914277,97.24465332],[4.5344589,0.02914102,97.24347525],[4.53445845,0.02913928,97.24229808],[4.53445799,0.02913753,97.24112181],[4.53445754,0.02913579,97.23994645],[4.53445708,0.02913405,97.238772],[4.53445663,0.0291323,97.23759845],[4.53445617,0.02913056,97.2364258],[4.53445572,0.02912881,97.23525405],[4.53445526,0.02912707,97.23408319],[4.53445481,0.02912532,97.23291322],[4.53445436,0.02912358,97.23174414],[4.5344539,0.02912183,97.23057595],[4.53445345,0.02912009,97.22940863],[4.534453,0.02911834,97.2282422],[4.53445255,0.0291166,97.22707663],[4.53445209,0.02911485,97.22591194],[4.53445164,0.02911311,97.22474811],[4.53445119,0.02911136,97.22358514],[4.53445074,0.02910961,97.22242302],[4.53445029,0.02910787,97.22126176],[4.53444984,0.02910612,97.22010133],[4.5344494,0.02910437,97.21894175],[4.53444895,0.02910263,97.21778301],[4.5344485,0.02910088,97.21662509],[4.53444805,0.02909913,97.215468],[4.53444761,0.02909739,97.21431173],[4.53444716,0.02909564,97.21315627],[4.53444672,0.02909389,97.21200162],[4.53444627,0.02909214,97.21084778],[4.53444582,0.0290904,97.20969474],[4.53444538,0.02908865,97.20854251],[4.53444493,0.0290869,97.20739108],[4.53444448,0.02908516,97.20624045],[4.53444403,0.02908341,97.20509064],[4.53444358,0.02908167,97.20394164],[4.53444312,0.02907992,97.20279346],[4.53444267,0.02907818,97.20164609],[4.53444221,0.02907643,97.20049955],[4.53444175,0.02907469,97.19935383],[4.53444129,0.02907294,97.19820893],[4.53444083,0.0290712,97.19706487],[4.53444037,0.02906946,97.19592164],[4.5344399,0.02906772,97.19477924],[4.53443943,0.02906598,97.19363768],[4.53443895,0.02906424,97.19249696],[4.53443848,0.0290625,97.19135708],[4.534438,0.02906077,97.19021805],[4.53443752,0.02905903,97.18907986],[4.53443703,0.02905729,97.18794253],[4.53443655,0.02905556,97.18680604],[4.53443606,0.02905382,97.18567042],[4.53443557,0.02905209,97.18453565],[4.53443508,0.02905036,97.18340175],[4.53443459,0.02904862,97.18226871],[4.5344341,0.02904689,97.18113653],[4.53443361,0.02904516,97.18000523],[4.53443312,0.02904342,97.17887479],[4.53443262,0.02904169,97.17774523],[4.53443213,0.02903996,97.17661655],[4.53443163,0.02903823,97.17548875],[4.53443114,0.02903649,97.17436184],[4.53443065,0.02903476,97.17323581],[4.53443015,0.02903303,97.17211066],[4.53442966,0.02903129,97.17098641],[4.53442917,0.02902956,97.16986305],[4.53442868,0.02902783,97.16874059],[4.53442819,0.02902609,97.16761903],[4.5344277,0.02902436,97.16649837],[4.53442721,0.02902263,97.16537862],[4.53442672,0.02902089,97.16425977],[4.53442623,0.02901916,97.16314184],[4.53442574,0.02901742,97.16202482],[4.53442525,0.02901569,97.16090871],[4.53442476,0.02901396,97.15979352],[4.53442428,0.02901222,97.15867926],[4.53442379,0.02901049,97.15756592],[4.5344233,0.02900875,97.1564535],[4.53442282,0.02900702,97.15534202],[4.53442233,0.02900528,97.15423147],[4.53442184,0.02900355,97.15312185],[4.53442136,0.02900181,97.15201318],[4.53442087,0.02900008,97.15090544],[4.53442039,0.02899834,97.14979865],[4.5344199,0.02899661,97.1486928],[4.53441942,0.02899487,97.14758791],[4.53441893,0.02899314,97.14648396],[4.53441845,0.0289914,97.14538097],[4.53441796,0.02898966,97.14427894],[4.53441747,0.02898793,97.14317787],[4.53441699,0.0289862,97.14207776],[4.5344165,0.02898447,97.14097862],[4.53441602,0.02898273,97.13988045],[4.53441553,0.028981,97.13878325],[4.53441504,0.02897926,97.13768703],[4.53441456,0.02897753,97.13659178],[4.53441407,0.02897579,97.13549751],[4.53441358,0.02897406,97.13440423],[4.53441315,0.02897231,97.13331193],[4.53441278,0.02897053,97.13222062],[4.53441277,0.02897045,97.13217057]],"type":"LineString"},"type":"feature","properties":{"successorId":-6,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":-6,"type":"none","predecessorId":-6}},{"geometry":{"coordinates":[[4.53571707,0.03349537,99.78226605],[4.5357166,0.03349363,99.78197014],[4.53571613,0.03349189,99.78167402],[4.53571566,0.03349015,99.78137767],[4.53571519,0.03348841,99.78108111],[4.53571472,0.03348667,99.78078431],[4.53571425,0.03348493,99.78048728],[4.53571378,0.03348319,99.78019002],[4.53571331,0.03348145,99.77989252],[4.53571284,0.03347971,99.77959477],[4.53571236,0.03347798,99.77929678],[4.53571189,0.03347624,99.77899854],[4.53571142,0.0334745,99.77870004],[4.53571095,0.03347276,99.77840128],[4.53571048,0.03347102,99.77810226],[4.53571001,0.03346928,99.77780297],[4.53570954,0.03346754,99.77750341],[4.53570907,0.0334658,99.77720357],[4.5357086,0.03346406,99.77690346],[4.53570813,0.03346232,99.77660306],[4.53570766,0.03346058,99.77630236],[4.53570719,0.03345884,99.77600136],[4.53570672,0.0334571,99.77570005],[4.53570625,0.03345536,99.77539843],[4.53570578,0.03345362,99.77509649],[4.53570531,0.03345188,99.77479421],[4.53570484,0.03345014,99.77449159],[4.53570437,0.0334484,99.77418863],[4.53570389,0.03344666,99.77388532],[4.53570342,0.03344492,99.77358164],[4.53570295,0.03344318,99.7732776],[4.53570248,0.03344144,99.77297318],[4.53570201,0.0334397,99.77266838],[4.53570154,0.03343796,99.77236319],[4.53570107,0.03343622,99.7720576],[4.5357006,0.03343448,99.7717516],[4.53570013,0.03343274,99.7714452],[4.53569966,0.03343101,99.77113837],[4.53569919,0.03342927,99.77083111],[4.53569872,0.03342753,99.77052342],[4.53569825,0.03342579,99.77021528],[4.53569778,0.03342405,99.7699067],[4.5356973,0.03342231,99.76959765],[4.53569683,0.03342057,99.76928814],[4.53569636,0.03341883,99.76897816],[4.53569589,0.03341709,99.76866768],[4.53569542,0.03341535,99.76835671],[4.53569495,0.03341361,99.76804523],[4.53569448,0.03341187,99.76773323],[4.535694,0.03341013,99.76742071],[4.53569353,0.03340839,99.76710764],[4.53569306,0.03340665,99.76679403],[4.53569259,0.03340491,99.76647985],[4.53569212,0.03340317,99.76616511],[4.53569165,0.03340143,99.76584978],[4.53569117,0.0333997,99.76553386],[4.5356907,0.03339796,99.76521734],[4.53569023,0.03339622,99.76490019],[4.53568976,0.03339448,99.76458241],[4.53568928,0.03339274,99.76426397],[4.53568881,0.033391,99.76394487],[4.53568834,0.03338926,99.76362507],[4.53568786,0.03338752,99.76330456],[4.53568739,0.03338578,99.76298334],[4.53568692,0.03338404,99.76266137],[4.53568644,0.0333823,99.76233864],[4.53568597,0.03338056,99.76201514],[4.5356855,0.03337883,99.76169084],[4.53568502,0.03337709,99.76136575],[4.53568455,0.03337535,99.76103985],[4.53568407,0.03337361,99.76071317],[4.5356836,0.03337187,99.76038572],[4.53568313,0.03337013,99.76005751],[4.53568265,0.03336839,99.75972856],[4.53568218,0.03336666,99.75939887],[4.5356817,0.03336492,99.75906847],[4.53568123,0.03336318,99.75873736],[4.53568075,0.03336144,99.75840556],[4.53568028,0.0333597,99.75807308],[4.5356798,0.03335796,99.75773993],[4.53567932,0.03335622,99.75740613],[4.53567885,0.03335449,99.7570717],[4.53567837,0.03335275,99.75673663],[4.5356779,0.03335101,99.75640095],[4.53567742,0.03334927,99.75606467],[4.53567694,0.03334753,99.75572781],[4.53567647,0.03334579,99.75539037],[4.53567599,0.03334406,99.75505238],[4.53567552,0.03334232,99.75471384],[4.53567504,0.03334058,99.75437476],[4.53567456,0.03333884,99.75403517],[4.53567409,0.0333371,99.75369507],[4.53567361,0.03333536,99.75335448],[4.53567313,0.03333363,99.75301341],[4.53567266,0.03333189,99.75267188],[4.53567218,0.03333015,99.7523299],[4.5356717,0.03332841,99.75198748],[4.53567123,0.03332667,99.75164464],[4.53567075,0.03332494,99.75130138],[4.53567027,0.0333232,99.75095773],[4.5356698,0.03332146,99.7506137],[4.53566932,0.03331972,99.7502693],[4.53566884,0.03331798,99.74992455],[4.53566837,0.03331625,99.74957945],[4.53566789,0.03331451,99.74923403],[4.53566741,0.03331277,99.7488883],[4.53566693,0.03331103,99.74854226],[4.53566646,0.03330929,99.74819595],[4.53566598,0.03330755,99.74784936],[4.5356655,0.03330582,99.74750251],[4.53566503,0.03330408,99.74715542],[4.53566455,0.03330234,99.74680811],[4.53566408,0.0333006,99.74646058],[4.5356636,0.03329886,99.74611284],[4.53566312,0.03329712,99.74576493],[4.53566265,0.03329539,99.74541687],[4.53566217,0.03329365,99.74506866],[4.53566169,0.03329191,99.74472033],[4.53566122,0.03329017,99.74437188],[4.53566074,0.03328843,99.74402328],[4.53566027,0.03328669,99.74367451],[4.53565979,0.03328496,99.74332553],[4.53565931,0.03328322,99.74297632],[4.53565884,0.03328148,99.74262684],[4.53565836,0.03327974,99.74227707],[4.53565789,0.033278,99.74192699],[4.53565741,0.03327626,99.7415766],[4.53565694,0.03327452,99.74122587],[4.53565646,0.03327279,99.7408748],[4.53565598,0.03327105,99.74052337],[4.53565551,0.03326931,99.74017157],[4.53565503,0.03326757,99.73981939],[4.53565456,0.03326583,99.73946681],[4.53565408,0.03326409,99.73911382],[4.53565361,0.03326235,99.73876041],[4.53565313,0.03326062,99.73840657],[4.53565266,0.03325888,99.73805227],[4.53565218,0.03325714,99.73769752],[4.5356517,0.0332554,99.73734229],[4.53565123,0.03325366,99.73698658],[4.53565075,0.03325192,99.73663036],[4.53565028,0.03325018,99.73627363],[4.5356498,0.03324845,99.73591637],[4.53564932,0.03324671,99.73555858],[4.53564885,0.03324497,99.73520023],[4.53564837,0.03324323,99.73484131],[4.5356479,0.03324149,99.73448181],[4.53564742,0.03323975,99.73412172],[4.53564694,0.03323801,99.73376103],[4.53564647,0.03323628,99.73339972],[4.53564599,0.03323454,99.73303777],[4.53564552,0.0332328,99.73267518],[4.53564504,0.03323106,99.73231193],[4.53564456,0.03322932,99.731948],[4.53564409,0.03322758,99.73158339],[4.53564361,0.03322585,99.73121808],[4.53564313,0.03322411,99.73085206],[4.53564266,0.03322237,99.73048532],[4.53564218,0.03322063,99.73011783],[4.5356417,0.03321889,99.7297496],[4.53564122,0.03321715,99.72938059],[4.53564075,0.03321542,99.72901081],[4.53564027,0.03321368,99.72864023],[4.53563979,0.03321194,99.72826885],[4.53563931,0.0332102,99.72789665],[4.53563884,0.03320846,99.72752362],[4.53563836,0.03320672,99.72714974],[4.53563788,0.03320499,99.726775],[4.5356374,0.03320325,99.72639938],[4.53563692,0.03320151,99.72602288],[4.53563645,0.03319977,99.72564548],[4.53563597,0.03319803,99.72526716],[4.53563549,0.0331963,99.72488792],[4.53563501,0.03319456,99.72450773],[4.53563453,0.03319282,99.72412659],[4.53563405,0.03319108,99.72374448],[4.53563357,0.03318935,99.72336141],[4.53563309,0.03318761,99.7229774],[4.53563261,0.03318587,99.72259247],[4.53563213,0.03318413,99.72220664],[4.53563165,0.0331824,99.72181994],[4.53563117,0.03318066,99.72143239],[4.5356307,0.03317892,99.72104401],[4.53563022,0.03317718,99.72065482],[4.53562974,0.03317544,99.72026484],[4.53562926,0.03317371,99.71987408],[4.53562877,0.03317197,99.71948254],[4.53562829,0.03317023,99.71909023],[4.53562781,0.03316849,99.71869715],[4.53562733,0.03316676,99.71830331],[4.53562685,0.03316502,99.71790872],[4.53562637,0.03316328,99.71751338],[4.53562589,0.03316154,99.71711729],[4.53562541,0.03315981,99.71672048],[4.53562493,0.03315807,99.71632293],[4.53562445,0.03315633,99.71592467],[4.53562397,0.0331546,99.71552568],[4.53562349,0.03315286,99.71512599],[4.53562301,0.03315112,99.7147256],[4.53562253,0.03314938,99.71432452],[4.53562205,0.03314765,99.71392276],[4.53562157,0.03314591,99.71352032],[4.53562109,0.03314417,99.7131172],[4.53562061,0.03314243,99.71271341],[4.53562013,0.0331407,99.71230893],[4.53561965,0.03313896,99.71190378],[4.53561916,0.03313722,99.71149796],[4.53561868,0.03313548,99.71109146],[4.5356182,0.03313375,99.71068429],[4.53561772,0.03313201,99.71027646],[4.53561724,0.03313027,99.70986795],[4.53561676,0.03312853,99.70945878],[4.53561628,0.0331268,99.70904894],[4.5356158,0.03312506,99.70863843],[4.53561532,0.03312332,99.70822726],[4.53561484,0.03312158,99.70781543],[4.53561436,0.03311985,99.70740294],[4.53561388,0.03311811,99.70698979],[4.5356134,0.03311637,99.70657599],[4.53561292,0.03311463,99.70616152],[4.53561244,0.0331129,99.70574639],[4.53561196,0.03311116,99.70533059],[4.53561148,0.03310942,99.7049141],[4.535611,0.03310768,99.70449693],[4.53561052,0.03310595,99.70407905],[4.53561004,0.03310421,99.70366047],[4.53560955,0.03310247,99.70324117],[4.53560907,0.03310073,99.70282115],[4.53560859,0.033099,99.70240039],[4.53560811,0.03309726,99.70197889],[4.53560763,0.03309552,99.70155664],[4.53560715,0.03309378,99.70113363],[4.53560667,0.03309204,99.70070986],[4.53560619,0.03309031,99.70028531],[4.53560571,0.03308857,99.69985997],[4.53560523,0.03308683,99.69943384],[4.53560475,0.03308509,99.6990069],[4.53560427,0.03308336,99.69857916],[4.53560379,0.03308162,99.6981506],[4.53560331,0.03307988,99.69772121],[4.53560283,0.03307814,99.69729098],[4.53560235,0.03307641,99.6968599],[4.53560187,0.03307467,99.69642797],[4.53560139,0.03307293,99.69599518],[4.53560091,0.03307119,99.69556152],[4.53560043,0.03306946,99.69512698],[4.53559995,0.03306772,99.69469155],[4.53559947,0.03306598,99.69425522],[4.53559899,0.03306424,99.69381798],[4.53559851,0.0330625,99.69337983],[4.53559803,0.03306077,99.69294076],[4.53559755,0.03305903,99.69250075],[4.53559707,0.03305729,99.69205981],[4.53559659,0.03305555,99.69161791],[4.53559611,0.03305382,99.69117505],[4.53559563,0.03305208,99.69073123],[4.53559515,0.03305034,99.69028643],[4.53559467,0.0330486,99.68984065],[4.53559419,0.03304687,99.68939387],[4.53559371,0.03304513,99.68894609],[4.53559322,0.03304339,99.6884973],[4.53559274,0.03304165,99.68804749],[4.53559226,0.03303991,99.68759665],[4.53559178,0.03303818,99.68714477],[4.5355913,0.03303644,99.68669185],[4.53559082,0.0330347,99.68623787],[4.53559034,0.03303296,99.68578282],[4.53558986,0.03303123,99.68532672],[4.53558938,0.03302949,99.68486956],[4.5355889,0.03302775,99.68441137],[4.53558842,0.03302601,99.68395217],[4.53558794,0.03302428,99.68349198],[4.53558746,0.03302254,99.6830308],[4.53558697,0.0330208,99.68256865],[4.53558649,0.03301906,99.68210553],[4.53558601,0.03301733,99.68164143],[4.53558553,0.03301559,99.68117634],[4.53558505,0.03301385,99.68071027],[4.53558457,0.03301211,99.68024321],[4.53558409,0.03301038,99.67977516],[4.53558361,0.03300864,99.67930611],[4.53558313,0.0330069,99.67883606],[4.53558265,0.03300516,99.67836501],[4.53558217,0.03300343,99.67789295],[4.53558168,0.03300169,99.67741988],[4.5355812,0.03299995,99.67694579],[4.53558072,0.03299821,99.67647069],[4.53558024,0.03299647,99.67599458],[4.53557976,0.03299474,99.67551747],[4.53557928,0.032993,99.67503936],[4.5355788,0.03299126,99.67456027],[4.53557832,0.03298952,99.6740802],[4.53557784,0.03298779,99.67359915],[4.53557736,0.03298605,99.67311715],[4.53557688,0.03298431,99.67263419],[4.53557639,0.03298257,99.67215028],[4.53557591,0.03298084,99.67166544],[4.53557543,0.0329791,99.67117966],[4.53557495,0.03297736,99.67069296],[4.53557447,0.03297562,99.67020534],[4.53557399,0.03297388,99.66971681],[4.53557351,0.03297215,99.66922737],[4.53557303,0.03297041,99.66873701],[4.53557255,0.03296867,99.66824573],[4.53557207,0.03296693,99.66775354],[4.53557159,0.0329652,99.66726044],[4.53557111,0.03296346,99.66676641],[4.53557063,0.03296172,99.66627148],[4.53557015,0.03295998,99.66577563],[4.53556967,0.03295824,99.66527886],[4.53556919,0.03295651,99.66478118],[4.53556871,0.03295477,99.66428258],[4.53556823,0.03295303,99.66378306],[4.53556775,0.03295129,99.66328264],[4.53556727,0.03294956,99.66278129],[4.53556679,0.03294782,99.66227903],[4.53556631,0.03294608,99.66177586],[4.53556583,0.03294434,99.66127177],[4.53556535,0.0329426,99.66076676],[4.53556487,0.03294087,99.66026084],[4.53556439,0.03293913,99.659754],[4.53556391,0.03293739,99.65924623],[4.53556343,0.03293565,99.65873751],[4.53556295,0.03293391,99.65822782],[4.53556247,0.03293218,99.65771714],[4.53556199,0.03293044,99.65720545],[4.53556151,0.0329287,99.65669273],[4.53556103,0.03292696,99.65617895],[4.53556055,0.03292522,99.65566411],[4.53556007,0.03292349,99.65514817],[4.53555959,0.03292175,99.65463113],[4.53555911,0.03292001,99.65411295],[4.53555863,0.03291827,99.65359362],[4.53555815,0.03291653,99.65307313],[4.53555767,0.0329148,99.65255143],[4.53555719,0.03291306,99.65202853],[4.53555671,0.03291132,99.6515044],[4.53555623,0.03290958,99.65097901],[4.53555575,0.03290784,99.65045235],[4.53555527,0.03290611,99.6499244],[4.53555479,0.03290437,99.64939514],[4.53555431,0.03290263,99.64886454],[4.53555383,0.03290089,99.64833259],[4.53555335,0.03289915,99.64779927],[4.53555287,0.03289742,99.64726455],[4.53555239,0.03289568,99.64672842],[4.53555191,0.03289394,99.64619085],[4.53555143,0.0328922,99.64565183],[4.53555095,0.03289047,99.64511134],[4.53555047,0.03288873,99.64456936],[4.53554999,0.03288699,99.64402592],[4.53554951,0.03288525,99.64348102],[4.53554902,0.03288352,99.64293466],[4.53554854,0.03288178,99.64238686],[4.53554806,0.03288004,99.64183763],[4.53554758,0.0328783,99.64128698],[4.5355471,0.03287657,99.64073492],[4.53554662,0.03287483,99.64018146],[4.53554613,0.03287309,99.6396266],[4.53554565,0.03287135,99.63907036],[4.53554517,0.03286962,99.63851274],[4.53554469,0.03286788,99.63795376],[4.53554421,0.03286614,99.63739343],[4.53554372,0.0328644,99.63683175],[4.53554324,0.03286267,99.63626874],[4.53554276,0.03286093,99.63570441],[4.53554228,0.03285919,99.63513876],[4.53554179,0.03285746,99.6345718],[4.53554131,0.03285572,99.63400355],[4.53554083,0.03285398,99.63343402],[4.53554035,0.03285224,99.6328632],[4.53553986,0.03285051,99.63229113],[4.53553938,0.03284877,99.63171779],[4.5355389,0.03284703,99.63114322],[4.53553842,0.0328453,99.6305674],[4.53553793,0.03284356,99.62999036],[4.53553745,0.03284182,99.6294121],[4.53553697,0.03284009,99.62883264],[4.53553648,0.03283835,99.62825198],[4.535536,0.03283661,99.62767013],[4.53553552,0.03283487,99.6270871],[4.53553504,0.03283314,99.62650291],[4.53553455,0.0328314,99.62591756],[4.53553407,0.03282966,99.62533106],[4.53553359,0.03282793,99.62474343],[4.5355331,0.03282619,99.62415467],[4.53553262,0.03282445,99.62356479],[4.53553214,0.03282272,99.6229738],[4.53553166,0.03282098,99.62238171],[4.53553117,0.03281924,99.62178853],[4.53553069,0.03281751,99.62119426],[4.53553021,0.03281577,99.62059888],[4.53552973,0.03281403,99.62000241],[4.53552924,0.03281229,99.61940483],[4.53552876,0.03281056,99.61880616],[4.53552828,0.03280882,99.6182064],[4.5355278,0.03280708,99.61760556],[4.53552731,0.03280535,99.61700367],[4.53552683,0.03280361,99.61640074],[4.53552635,0.03280187,99.61579679],[4.53552587,0.03280013,99.61519184],[4.53552538,0.0327984,99.61458586],[4.5355249,0.03279666,99.61397885],[4.53552442,0.03279492,99.6133708],[4.53552394,0.03279319,99.6127617],[4.53552345,0.03279145,99.61215153],[4.53552297,0.03278971,99.61154029],[4.53552249,0.03278798,99.61092796],[4.53552201,0.03278624,99.61031453],[4.53552153,0.0327845,99.6097],[4.53552104,0.03278276,99.60908435],[4.53552056,0.03278103,99.60846756],[4.53552008,0.03277929,99.60784964],[4.5355196,0.03277755,99.60723056],[4.53551912,0.03277581,99.60661032],[4.53551863,0.03277408,99.60598891],[4.53551815,0.03277234,99.60536631],[4.53551767,0.0327706,99.60474252],[4.53551719,0.03276887,99.60411751],[4.53551671,0.03276713,99.60349129],[4.53551623,0.03276539,99.60286384],[4.53551574,0.03276365,99.60223515],[4.53551526,0.03276192,99.60160521],[4.53551478,0.03276018,99.600974],[4.5355143,0.03275844,99.60034153],[4.53551382,0.03275671,99.59970776],[4.53551334,0.03275497,99.59907271],[4.53551285,0.03275323,99.59843634],[4.53551237,0.03275149,99.59779866],[4.53551189,0.03274976,99.59715965],[4.53551141,0.03274802,99.59651929],[4.53551093,0.03274628,99.59587759],[4.53551044,0.03274455,99.59523453],[4.53550996,0.03274281,99.59459009],[4.53550948,0.03274107,99.59394427],[4.535509,0.03273933,99.59329705],[4.53550852,0.0327376,99.59264843],[4.53550803,0.03273586,99.59199839],[4.53550755,0.03273412,99.59134692],[4.53550707,0.03273239,99.59069401],[4.53550659,0.03273065,99.59003966],[4.53550611,0.03272891,99.58938384],[4.53550562,0.03272718,99.58872654],[4.53550514,0.03272544,99.58806777],[4.53550466,0.0327237,99.5874075],[4.53550418,0.03272196,99.58674572],[4.53550369,0.03272023,99.58608243],[4.53550321,0.03271849,99.5854176],[4.53550273,0.03271675,99.58475124],[4.53550225,0.03271502,99.58408333],[4.53550176,0.03271328,99.58341386],[4.53550128,0.03271154,99.58274281],[4.5355008,0.03270981,99.58207019],[4.53550031,0.03270807,99.58139597],[4.53549983,0.03270633,99.58072017],[4.53549935,0.0327046,99.58004279],[4.53549887,0.03270286,99.57936384],[4.53549838,0.03270112,99.5786833],[4.5354979,0.03269939,99.5780012],[4.53549742,0.03269765,99.57731753],[4.53549693,0.03269591,99.57663229],[4.53549645,0.03269418,99.57594549],[4.53549596,0.03269244,99.57525714],[4.53549548,0.0326907,99.57456722],[4.535495,0.03268897,99.57387576],[4.53549451,0.03268723,99.57318273],[4.53549403,0.03268549,99.57248815],[4.53549355,0.03268376,99.57179198],[4.53549306,0.03268202,99.57109423],[4.53549258,0.03268028,99.5703949],[4.53549209,0.03267855,99.56969396],[4.53549161,0.03267681,99.56899141],[4.53549113,0.03267507,99.56828725],[4.53549064,0.03267334,99.56758148],[4.53549016,0.0326716,99.56687411],[4.53548967,0.03266987,99.56616517],[4.53548919,0.03266813,99.56545467],[4.5354887,0.03266639,99.56474262],[4.53548822,0.03266466,99.56402901],[4.53548774,0.03266292,99.56331386],[4.53548725,0.03266118,99.56259715],[4.53548677,0.03265945,99.56187888],[4.53548628,0.03265771,99.56115907],[4.5354858,0.03265598,99.56043771],[4.53548531,0.03265424,99.5597148],[4.53548483,0.0326525,99.55899035],[4.53548434,0.03265077,99.55826434],[4.53548386,0.03264903,99.55753679],[4.53548337,0.03264729,99.5568077],[4.53548289,0.03264556,99.55607706],[4.5354824,0.03264382,99.55534488],[4.53548192,0.03264209,99.55461115],[4.53548143,0.03264035,99.55387588],[4.53548095,0.03263861,99.55313907],[4.53548046,0.03263688,99.55240072],[4.53547998,0.03263514,99.55166083],[4.53547949,0.03263341,99.55091941],[4.53547901,0.03263167,99.55017644],[4.53547852,0.03262993,99.54943194],[4.53547804,0.0326282,99.5486859],[4.53547755,0.03262646,99.54793832],[4.53547707,0.03262473,99.54718921],[4.53547658,0.03262299,99.54643857],[4.5354761,0.03262125,99.54568639],[4.53547561,0.03261952,99.54493269],[4.53547513,0.03261778,99.54417744],[4.53547464,0.03261605,99.54342067],[4.53547416,0.03261431,99.54266237],[4.53547367,0.03261257,99.54190254],[4.53547319,0.03261084,99.54114119],[4.5354727,0.0326091,99.5403783],[4.53547222,0.03260736,99.53961388],[4.53547173,0.03260563,99.53884794],[4.53547125,0.03260389,99.53808047],[4.53547076,0.03260216,99.53731147],[4.53547028,0.03260042,99.53654095],[4.53546979,0.03259868,99.53576889],[4.53546931,0.03259695,99.53499531],[4.53546882,0.03259521,99.5342202],[4.53546834,0.03259348,99.53344356],[4.53546785,0.03259174,99.53266539],[4.53546737,0.03259,99.53188569],[4.53546688,0.03258827,99.53110448],[4.5354664,0.03258653,99.53032175],[4.53546591,0.0325848,99.52953752],[4.53546543,0.03258306,99.52875178],[4.53546494,0.03258132,99.52796455],[4.53546446,0.03257959,99.52717584],[4.53546397,0.03257785,99.52638563],[4.53546349,0.03257612,99.52559393],[4.535463,0.03257438,99.52480074],[4.53546252,0.03257264,99.52400604],[4.53546203,0.03257091,99.52320983],[4.53546155,0.03256917,99.52241215],[4.53546106,0.03256744,99.52161298],[4.53546058,0.0325657,99.52081236],[4.53546009,0.03256396,99.52001029],[4.53545961,0.03256223,99.51920679],[4.53545912,0.03256049,99.51840186],[4.53545864,0.03255876,99.51759553],[4.53545815,0.03255702,99.5167878],[4.53545767,0.03255528,99.51597869],[4.53545718,0.03255355,99.51516821],[4.5354567,0.03255181,99.51435638],[4.53545621,0.03255008,99.51354321],[4.53545573,0.03254834,99.5127287],[4.53545524,0.0325466,99.51191289],[4.53545476,0.03254487,99.51109577],[4.53545428,0.03254313,99.51027736],[4.53545379,0.0325414,99.50945767],[4.53545331,0.03253966,99.50863673],[4.53545282,0.03253792,99.50781453],[4.53545234,0.03253619,99.50699109],[4.53545185,0.03253445,99.5061664],[4.53545137,0.03253272,99.50534046],[4.53545089,0.03253098,99.50451327],[4.5354504,0.03252924,99.50368483],[4.53544992,0.03252751,99.50285515],[4.53544943,0.03252577,99.50202421],[4.53544895,0.03252403,99.50119203],[4.53544847,0.0325223,99.5003586],[4.53544798,0.03252056,99.49952392],[4.5354475,0.03251883,99.49868799],[4.53544701,0.03251709,99.4978508],[4.53544653,0.03251535,99.49701237],[4.53544605,0.03251362,99.49617269],[4.53544556,0.03251188,99.49533176],[4.53544508,0.03251014,99.49448958],[4.5354446,0.03250841,99.49364615],[4.53544411,0.03250667,99.49280147],[4.53544363,0.03250494,99.49195554],[4.53544314,0.0325032,99.49110836],[4.53544266,0.03250146,99.49025994],[4.53544218,0.03249973,99.48941029],[4.53544169,0.03249799,99.48855943],[4.53544121,0.03249625,99.48770735],[4.53544073,0.03249452,99.48685407],[4.53544024,0.03249278,99.48599961],[4.53543976,0.03249104,99.48514396],[4.53543928,0.03248931,99.48428714],[4.53543879,0.03248757,99.48342916],[4.53543831,0.03248584,99.48257002],[4.53543783,0.0324841,99.48170975],[4.53543734,0.03248236,99.48084834],[4.53543686,0.03248063,99.47998579],[4.53543638,0.03247889,99.47912207],[4.53543589,0.03247715,99.47825708],[4.53543541,0.03247542,99.47739072],[4.53543493,0.03247368,99.4765229],[4.53543444,0.03247194,99.47565351],[4.53543396,0.03247021,99.47478245],[4.53543348,0.03246847,99.47390964],[4.53543299,0.03246674,99.47303497],[4.53543251,0.032465,99.47215833],[4.53543202,0.03246326,99.47127964],[4.53543154,0.03246153,99.4703988],[4.53543105,0.03245979,99.46951571],[4.53543057,0.03245806,99.46863026],[4.53543008,0.03245632,99.46774237],[4.5354296,0.03245459,99.46685193],[4.53542911,0.03245285,99.46595914],[4.53542862,0.03245111,99.46506447],[4.53542814,0.03244938,99.46416845],[4.53542765,0.03244764,99.46327183],[4.53542716,0.03244591,99.46237542],[4.53542668,0.03244417,99.46148002],[4.53542619,0.03244244,99.46058643],[4.53542571,0.0324407,99.45969547],[4.53542523,0.03243896,99.45880792],[4.53542475,0.03243723,99.45792461],[4.53542427,0.03243549,99.4570453],[4.53542379,0.03243375,99.45616576],[4.53542331,0.03243201,99.45528072],[4.53542283,0.03243028,99.45438491],[4.53542234,0.03242854,99.45347308],[4.53542185,0.03242681,99.45253898],[4.53542134,0.03242508,99.45157331],[4.53542083,0.03242335,99.45058619],[4.53542033,0.03242162,99.44960807],[4.53541983,0.03241989,99.448674],[4.53541937,0.03241815,99.44783391],[4.53541894,0.03241639,99.4470854],[4.53541852,0.03241464,99.44636352],[4.53541803,0.03241291,99.44544617],[4.53541734,0.03241123,99.44390538],[4.53541688,0.03240948,99.44307131],[4.53541651,0.03240772,99.44250304],[4.53541602,0.03240598,99.44154537],[4.5354155,0.03240426,99.44052278],[4.535415,0.03240252,99.43957458],[4.53541453,0.03240078,99.43868555],[4.53541406,0.03239905,99.43779336],[4.53541357,0.03239731,99.43687175],[4.53541308,0.03239558,99.43593045],[4.53541259,0.03239384,99.43498083],[4.5354121,0.03239211,99.43403388],[4.53541161,0.03239037,99.43309376],[4.53541112,0.03238864,99.43215839],[4.53541064,0.0323869,99.43122547],[4.53541015,0.03238517,99.43029271],[4.53540967,0.03238343,99.42935787],[4.53540918,0.0323817,99.42841994],[4.5354087,0.03237996,99.42747917],[4.53540821,0.03237822,99.42653593],[4.53540772,0.03237649,99.4255906],[4.53540724,0.03237475,99.42464359],[4.53540675,0.03237302,99.42369529],[4.53540626,0.03237128,99.42274608],[4.53540577,0.03236955,99.42179636],[4.53540529,0.03236781,99.42084651],[4.5354048,0.03236608,99.41989664],[4.53540432,0.03236434,99.41894662],[4.53540383,0.03236261,99.4179963],[4.53540334,0.03236087,99.41704554],[4.53540286,0.03235914,99.41609419],[4.53540237,0.0323574,99.41514211],[4.53540189,0.03235567,99.41418916],[4.5354014,0.03235393,99.41323517],[4.53540092,0.03235219,99.41228002],[4.53540043,0.03235046,99.41132356],[4.53539995,0.03234872,99.41036564],[4.53539946,0.03234699,99.40940613],[4.53539898,0.03234525,99.40844493],[4.53539849,0.03234352,99.40748195],[4.53539801,0.03234178,99.40651723],[4.53539752,0.03234005,99.40555079],[4.53539703,0.03233831,99.40458266],[4.53539655,0.03233658,99.40361288],[4.53539606,0.03233484,99.40264146],[4.53539557,0.0323331,99.40166845],[4.53539509,0.03233137,99.40069387],[4.5353946,0.03232963,99.39971775],[4.53539411,0.0323279,99.39874013],[4.53539362,0.03232616,99.39776104],[4.53539314,0.03232443,99.3967805],[4.53539265,0.0323227,99.39579855],[4.53539216,0.03232096,99.39481521],[4.53539167,0.03231923,99.39383052],[4.53539119,0.03231749,99.39284451],[4.5353907,0.03231576,99.39185721],[4.53539021,0.03231402,99.39086864],[4.53538972,0.03231229,99.38987883],[4.53538923,0.03231055,99.38888778],[4.53538875,0.03230882,99.38789553],[4.53538826,0.03230708,99.38690212],[4.53538777,0.03230535,99.38590762],[4.53538728,0.03230361,99.38491205],[4.53538679,0.03230188,99.38391549],[4.53538631,0.03230014,99.38291798],[4.53538582,0.03229841,99.38191956],[4.53538533,0.03229667,99.38092029],[4.53538484,0.03229494,99.3799202],[4.53538436,0.0322932,99.37891927],[4.53538387,0.03229147,99.3779175],[4.53538338,0.03228973,99.37691488],[4.5353829,0.032288,99.37591137],[4.53538241,0.03228626,99.37490698],[4.53538192,0.03228453,99.37390169],[4.53538143,0.03228279,99.37289548],[4.53538095,0.03228106,99.37188833],[4.53538046,0.03227932,99.37088025],[4.53537998,0.03227759,99.3698712],[4.53537949,0.03227585,99.36886119],[4.535379,0.03227412,99.36785018],[4.53537852,0.03227238,99.36683817],[4.53537803,0.03227065,99.36582515],[4.53537754,0.03226891,99.3648111],[4.53537706,0.03226718,99.36379601],[4.53537657,0.03226544,99.36277986],[4.53537609,0.03226371,99.36176264],[4.5353756,0.03226197,99.3607443],[4.53537511,0.03226024,99.35972484],[4.53537463,0.0322585,99.35870423],[4.53537414,0.03225677,99.35768244],[4.53537366,0.03225503,99.35665945],[4.53537317,0.03225329,99.35563524],[4.53537269,0.03225156,99.35460978],[4.5353722,0.03224982,99.35358304],[4.53537171,0.03224809,99.35255501],[4.53537123,0.03224635,99.35152566],[4.53537074,0.03224462,99.35049496],[4.53537026,0.03224288,99.34946289],[4.53536977,0.03224115,99.34842943],[4.53536928,0.03223941,99.34739455],[4.5353688,0.03223768,99.34635823],[4.53536831,0.03223594,99.34532045],[4.53536783,0.03223421,99.34428117],[4.53536734,0.03223247,99.34324039],[4.53536685,0.03223074,99.34219806],[4.53536637,0.032229,99.34115418],[4.53536588,0.03222727,99.34010871],[4.53536539,0.03222553,99.33906163],[4.53536491,0.0322238,99.33801292],[4.53536442,0.03222206,99.33696257],[4.53536393,0.03222033,99.33591061],[4.53536344,0.03221859,99.33485708],[4.53536296,0.03221686,99.33380202],[4.53536247,0.03221512,99.33274546],[4.53536198,0.03221339,99.33168743],[4.5353615,0.03221165,99.33062796],[4.53536101,0.03220992,99.32956711],[4.53536052,0.03220818,99.32850491],[4.53536003,0.03220645,99.3274414],[4.53535954,0.03220471,99.32637663],[4.53535906,0.03220298,99.32531062],[4.53535857,0.03220124,99.32424343],[4.53535808,0.03219951,99.32317509],[4.5353576,0.03219777,99.32210564],[4.53535711,0.03219604,99.32103506],[4.53535662,0.0321943,99.31996336],[4.53535613,0.03219257,99.31889051],[4.53535565,0.03219083,99.3178165],[4.53535516,0.0321891,99.31674134],[4.53535467,0.03218736,99.31566501],[4.53535419,0.03218563,99.31458751],[4.5353537,0.03218389,99.31350883],[4.53535321,0.03218216,99.31242895],[4.53535272,0.03218042,99.31134788],[4.53535224,0.03217869,99.31026561],[4.53535175,0.03217695,99.30918212],[4.53535126,0.03217522,99.30809742],[4.53535078,0.03217348,99.30701149],[4.53535029,0.03217175,99.30592432],[4.5353498,0.03217001,99.30483591],[4.53534932,0.03216828,99.30374626],[4.53534883,0.03216654,99.30265535],[4.53534834,0.03216481,99.30156317],[4.53534786,0.03216307,99.30046973],[4.53534737,0.03216134,99.299375],[4.53534688,0.0321596,99.29827899],[4.53534639,0.03215787,99.29718169],[4.53534591,0.03215613,99.29608309],[4.53534542,0.0321544,99.29498318],[4.53534493,0.03215266,99.29388195],[4.53534445,0.03215093,99.2927794],[4.53534396,0.03214919,99.29167552],[4.53534347,0.03214746,99.29057031],[4.53534298,0.03214572,99.28946375],[4.5353425,0.03214399,99.28835584],[4.53534201,0.03214225,99.28724656],[4.53534152,0.03214052,99.28613593],[4.53534103,0.03213878,99.28502392],[4.53534055,0.03213705,99.28391052],[4.53534006,0.03213531,99.28279574],[4.53533957,0.03213358,99.28167956],[4.53533908,0.03213184,99.28056198],[4.53533859,0.03213011,99.27944299],[4.53533811,0.03212837,99.27832258],[4.53533762,0.03212664,99.27720075],[4.53533713,0.0321249,99.27607753],[4.53533664,0.03212317,99.27495296],[4.53533615,0.03212144,99.27382704],[4.53533566,0.0321197,99.27269981],[4.53533517,0.03211797,99.27157127],[4.53533469,0.03211623,99.27044143],[4.5353342,0.0321145,99.26931032],[4.53533371,0.03211276,99.26817794],[4.53533322,0.03211103,99.26704431],[4.53533273,0.03210929,99.26590944],[4.53533224,0.03210756,99.26477333],[4.53533175,0.03210583,99.263636],[4.53533126,0.03210409,99.26249745],[4.53533077,0.03210236,99.2613577],[4.53533028,0.03210062,99.26021675],[4.53532979,0.03209889,99.25907461],[4.5353293,0.03209715,99.25793129],[4.53532881,0.03209542,99.2567868],[4.53532832,0.03209369,99.25564115],[4.53532783,0.03209195,99.25449436],[4.53532734,0.03209022,99.25334641],[4.53532685,0.03208848,99.25219734],[4.53532636,0.03208675,99.25104714],[4.53532587,0.03208501,99.24989583],[4.53532538,0.03208328,99.24874341],[4.53532489,0.03208155,99.2475899],[4.5353244,0.03207981,99.2464353],[4.53532391,0.03207808,99.24527962],[4.53532342,0.03207634,99.24412288],[4.53532293,0.03207461,99.24296507],[4.53532244,0.03207287,99.24180622],[4.53532195,0.03207114,99.24064632],[4.53532146,0.03206941,99.23948539],[4.53532097,0.03206767,99.23832344],[4.53532048,0.03206594,99.23716048],[4.53531999,0.0320642,99.23599651],[4.5353195,0.03206247,99.23483155],[4.53531901,0.03206074,99.2336656],[4.53531852,0.032059,99.23249868],[4.53531803,0.03205727,99.23133079],[4.53531754,0.03205553,99.23016194],[4.53531705,0.0320538,99.22899214],[4.53531656,0.03205207,99.2278214],[4.53531607,0.03205033,99.22664973],[4.53531558,0.0320486,99.22547714],[4.53531509,0.03204686,99.22430364],[4.5353146,0.03204513,99.22312923],[4.53531411,0.0320434,99.22195393],[4.53531362,0.03204166,99.22077775],[4.53531313,0.03203993,99.21960069],[4.53531263,0.03203819,99.21842276],[4.53531214,0.03203646,99.21724398],[4.53531165,0.03203473,99.21606435],[4.53531116,0.03203299,99.21488389],[4.53531067,0.03203126,99.21370259],[4.53531018,0.03202952,99.21252048],[4.53530969,0.03202779,99.21133756],[4.5353092,0.03202605,99.21015382],[4.53530872,0.03202432,99.20896926],[4.53530823,0.03202259,99.20778387],[4.53530774,0.03202085,99.20659764],[4.53530725,0.03201912,99.20541058],[4.53530676,0.03201738,99.20422268],[4.53530627,0.03201565,99.20303393],[4.53530578,0.03201391,99.20184432],[4.53530529,0.03201218,99.20065386],[4.5353048,0.03201044,99.19946254],[4.53530431,0.03200871,99.19827035],[4.53530382,0.03200698,99.19707729],[4.53530333,0.03200524,99.19588336],[4.53530284,0.03200351,99.19468854],[4.53530235,0.03200177,99.19349284],[4.53530186,0.03200004,99.19229625],[4.53530138,0.0319983,99.19109877],[4.53530089,0.03199657,99.18990038],[4.5353004,0.03199483,99.1887011],[4.53529991,0.0319931,99.1875009],[4.53529942,0.03199137,99.18629979],[4.53529893,0.03198963,99.18509776],[4.53529844,0.0319879,99.18389481],[4.53529795,0.03198616,99.18269093],[4.53529746,0.03198443,99.18148612],[4.53529698,0.03198269,99.18028038],[4.53529649,0.03198096,99.17907369],[4.535296,0.03197922,99.17786605],[4.53529551,0.03197749,99.17665746],[4.53529502,0.03197575,99.17544792],[4.53529453,0.03197402,99.17423741],[4.53529404,0.03197229,99.17302594],[4.53529355,0.03197055,99.1718135],[4.53529306,0.03196882,99.17060007],[4.53529258,0.03196708,99.16938566],[4.53529209,0.03196535,99.16817026],[4.5352916,0.03196361,99.16695386],[4.53529111,0.03196188,99.16573644],[4.53529062,0.03196014,99.16451801],[4.53529013,0.03195841,99.16329856],[4.53528964,0.03195667,99.16207808],[4.53528915,0.03195494,99.16085656],[4.53528866,0.03195321,99.159634],[4.53528818,0.03195147,99.15841038],[4.53528769,0.03194974,99.1571857],[4.5352872,0.031948,99.15595996],[4.53528671,0.03194627,99.15473314],[4.53528622,0.03194453,99.15350525],[4.53528573,0.0319428,99.15227626],[4.53528524,0.03194106,99.15104618],[4.53528475,0.03193933,99.14981499],[4.53528426,0.0319376,99.1485827],[4.53528377,0.03193586,99.14734928],[4.53528328,0.03193413,99.14611475],[4.53528279,0.03193239,99.14487912],[4.5352823,0.03193066,99.14364239],[4.53528181,0.03192892,99.14240457],[4.53528132,0.03192719,99.14116568],[4.53528083,0.03192546,99.13992574],[4.53528034,0.03192372,99.13868474],[4.53527985,0.03192199,99.13744273],[4.53527936,0.03192025,99.13619973],[4.53527887,0.03191852,99.13495576],[4.53527838,0.03191678,99.13371084],[4.53527789,0.03191505,99.13246501],[4.5352774,0.03191332,99.1312183],[4.53527691,0.03191158,99.12997071],[4.53527642,0.03190985,99.12872229],[4.53527593,0.03190811,99.12747306],[4.53527544,0.03190638,99.12622303],[4.53527495,0.03190465,99.12497224],[4.53527446,0.03190291,99.1237207],[4.53527397,0.03190118,99.12246844],[4.53527348,0.03189944,99.12121546],[4.53527299,0.03189771,99.11996179],[4.5352725,0.03189597,99.11870745],[4.53527201,0.03189424,99.11745247],[4.53527152,0.03189251,99.11619685],[4.53527103,0.03189077,99.11494062],[4.53527054,0.03188904,99.1136838],[4.53527005,0.0318873,99.1124264],[4.53526956,0.03188557,99.11116845],[4.53526907,0.03188383,99.10990997],[4.53526858,0.0318821,99.10865098],[4.53526809,0.03188037,99.10739149],[4.5352676,0.03187863,99.10613153],[4.53526711,0.0318769,99.10487111],[4.53526662,0.03187516,99.10361026],[4.53526613,0.03187343,99.10234899],[4.53526564,0.03187169,99.10108732],[4.53526515,0.03186996,99.09982528],[4.53526466,0.03186823,99.09856288],[4.53526417,0.03186649,99.09730015],[4.53526368,0.03186476,99.0960371],[4.53526319,0.03186302,99.09477375],[4.5352627,0.03186129,99.09351012],[4.53526221,0.03185955,99.09224624],[4.53526172,0.03185782,99.09098211],[4.53526123,0.03185609,99.08971777],[4.53526074,0.03185435,99.08845323],[4.53526025,0.03185262,99.0871885],[4.53525976,0.03185088,99.08592362],[4.53525927,0.03184915,99.0846586],[4.53525878,0.03184741,99.08339346],[4.53525829,0.03184568,99.08212821],[4.5352578,0.03184395,99.08086289],[4.53525731,0.03184221,99.0795975],[4.53525682,0.03184048,99.07833208],[4.53525633,0.03183874,99.07706663],[4.53525584,0.03183701,99.07580118],[4.53525535,0.03183527,99.07453575],[4.53525486,0.03183354,99.07327035],[4.53525437,0.03183181,99.07200502],[4.53525388,0.03183007,99.07073976],[4.53525339,0.03182834,99.0694746],[4.5352529,0.0318266,99.06820955],[4.53525241,0.03182487,99.06694464],[4.53525192,0.03182313,99.06567989],[4.53525143,0.0318214,99.06441531],[4.53525094,0.03181967,99.06315094],[4.53525045,0.03181793,99.06188677],[4.53524996,0.0318162,99.06062285],[4.53524947,0.03181446,99.05935917],[4.53524898,0.03181273,99.05809578],[4.53524849,0.03181099,99.05683268],[4.535248,0.03180926,99.05556991],[4.53524751,0.03180753,99.05430749],[4.53524702,0.03180579,99.05304544],[4.53524653,0.03180406,99.05178381],[4.53524604,0.03180232,99.05052261],[4.53524555,0.03180059,99.04926187],[4.53524506,0.03179886,99.04800162],[4.53524457,0.03179712,99.04674189],[4.53524408,0.03179539,99.0454827],[4.53524358,0.03179365,99.04422409],[4.53524309,0.03179192,99.04296607],[4.5352426,0.03179019,99.04170868],[4.53524211,0.03178845,99.04045195],[4.53524162,0.03178672,99.03919588],[4.53524113,0.03178498,99.03794049],[4.53524064,0.03178325,99.03668578],[4.53524015,0.03178152,99.03543175],[4.53523966,0.03177978,99.03417841],[4.53523917,0.03177805,99.03292576],[4.53523868,0.03177631,99.0316738],[4.53523819,0.03177458,99.03042251],[4.53523769,0.03177285,99.02917187],[4.5352372,0.03177111,99.02792189],[4.53523671,0.03176938,99.02667253],[4.53523622,0.03176764,99.0254238],[4.53523573,0.03176591,99.02417566],[4.53523524,0.03176417,99.02292812],[4.53523475,0.03176244,99.02168115],[4.53523426,0.03176071,99.02043474],[4.53523377,0.03175897,99.01918888],[4.53523328,0.03175724,99.01794356],[4.53523279,0.0317555,99.01669876],[4.5352323,0.03175377,99.01545446],[4.53523181,0.03175204,99.01421065],[4.53523132,0.0317503,99.01296733],[4.53523083,0.03174857,99.01172448],[4.53523034,0.03174683,99.0104821],[4.53522985,0.0317451,99.00924018],[4.53522936,0.03174336,99.00799872],[4.53522887,0.03174163,99.0067577],[4.53522838,0.0317399,99.00551713],[4.53522789,0.03173816,99.00427699],[4.5352274,0.03173643,99.00303729],[4.53522691,0.03173469,99.001798],[4.53522642,0.03173296,99.00055913],[4.53522593,0.03173122,98.99932066],[4.53522544,0.03172949,98.9980826],[4.53522495,0.03172775,98.99684494],[4.53522446,0.03172602,98.99560766],[4.53522397,0.03172429,98.99437076],[4.53522348,0.03172255,98.99313424],[4.53522299,0.03172082,98.99189808],[4.53522251,0.03171908,98.99066229],[4.53522202,0.03171735,98.98942685],[4.53522153,0.03171561,98.98819176],[4.53522104,0.03171388,98.98695702],[4.53522055,0.03171214,98.9857226],[4.53522006,0.03171041,98.98448851],[4.53521958,0.03170867,98.98325475],[4.53521909,0.03170694,98.98202129],[4.5352186,0.0317052,98.98078815],[4.53521811,0.03170347,98.9795553],[4.53521763,0.03170173,98.97832275],[4.53521714,0.0317,98.97709049],[4.53521665,0.03169826,98.9758585],[4.53521616,0.03169653,98.97462679],[4.53521568,0.03169479,98.97339535],[4.53521519,0.03169306,98.97216416],[4.5352147,0.03169132,98.97093323],[4.53521421,0.03168959,98.96970254],[4.53521373,0.03168785,98.9684721],[4.53521324,0.03168612,98.96724188],[4.53521275,0.03168438,98.96601189],[4.53521227,0.03168265,98.96478212],[4.53521178,0.03168091,98.96355256],[4.53521129,0.03167918,98.96232321],[4.5352108,0.03167744,98.96109406],[4.53521031,0.03167571,98.95986509],[4.53520983,0.03167397,98.95863632],[4.53520934,0.03167224,98.95740772],[4.53520885,0.0316705,98.95617929],[4.53520836,0.03166877,98.95495103],[4.53520788,0.03166703,98.95372292],[4.53520739,0.0316653,98.95249497],[4.5352069,0.03166356,98.95126716],[4.53520641,0.03166183,98.95003949],[4.53520592,0.03166009,98.94881195],[4.53520543,0.03165836,98.94758453],[4.53520494,0.03165662,98.94635722],[4.53520445,0.03165489,98.94513001],[4.53520397,0.03165315,98.94390289],[4.53520348,0.03165142,98.94267586],[4.53520299,0.03164969,98.94144893],[4.5352025,0.03164795,98.94022211],[4.53520201,0.03164622,98.9389954],[4.53520152,0.03164448,98.9377688],[4.53520102,0.03164275,98.93654233],[4.53520053,0.03164101,98.93531603],[4.53520004,0.03163928,98.93408991],[4.53519955,0.03163755,98.93286399],[4.53519906,0.03163581,98.93163832],[4.53519857,0.03163408,98.9304129],[4.53519808,0.03163234,98.92918776],[4.53519759,0.03163061,98.92796294],[4.53519709,0.03162888,98.92673844],[4.5351966,0.03162714,98.9255143],[4.53519611,0.03162541,98.92429055],[4.53519562,0.03162368,98.9230672],[4.53519512,0.03162194,98.92184429],[4.53519463,0.03162021,98.92062183],[4.53519414,0.03161848,98.91939985],[4.53519364,0.03161674,98.91817838],[4.53519315,0.03161501,98.91695744],[4.53519266,0.03161328,98.91573705],[4.53519216,0.03161154,98.91451725],[4.53519167,0.03160981,98.91329805],[4.53519118,0.03160808,98.91207948],[4.53519068,0.03160634,98.91086156],[4.53519019,0.03160461,98.90964433],[4.53518969,0.03160288,98.90842779],[4.5351892,0.03160114,98.90721199],[4.5351887,0.03159941,98.90599694],[4.53518821,0.03159768,98.90478267],[4.53518771,0.03159594,98.90356921],[4.53518722,0.03159421,98.90235656],[4.53518672,0.03159248,98.90114477],[4.53518623,0.03159075,98.89993384],[4.53518573,0.03158901,98.89872381],[4.53518523,0.03158728,98.89751469],[4.53518474,0.03158555,98.8963065],[4.53518424,0.03158382,98.89509928],[4.53518375,0.03158208,98.89389303],[4.53518325,0.03158035,98.89268778],[4.53518275,0.03157862,98.89148355],[4.53518226,0.03157689,98.89028037],[4.53518176,0.03157515,98.88907826],[4.53518126,0.03157342,98.88787724],[4.53518076,0.03157169,98.88667732],[4.53518027,0.03156996,98.88547854],[4.53517977,0.03156822,98.88428091],[4.53517927,0.03156649,98.88308447],[4.53517877,0.03156476,98.88188921],[4.53517828,0.03156303,98.88069518],[4.53517778,0.0315613,98.87950239],[4.53517728,0.03155956,98.87831087],[4.53517678,0.03155783,98.87712063],[4.53517629,0.0315561,98.8759317],[4.53517579,0.03155437,98.8747441],[4.53517529,0.03155264,98.87355785],[4.53517479,0.0315509,98.87237296],[4.53517429,0.03154917,98.87118946],[4.5351738,0.03154744,98.87000736],[4.5351733,0.03154571,98.86882669],[4.5351728,0.03154398,98.86764744],[4.5351723,0.03154224,98.86646966],[4.5351718,0.03154051,98.86529334],[4.5351713,0.03153878,98.86411853],[4.53517081,0.03153705,98.86294525],[4.53517031,0.03153532,98.86177355],[4.53516981,0.03153358,98.86060345],[4.53516931,0.03153185,98.85943496],[4.53516881,0.03153012,98.8582681],[4.53516831,0.03152839,98.85710287],[4.53516782,0.03152666,98.85593931],[4.53516732,0.03152493,98.85477741],[4.53516682,0.0315232,98.8536172],[4.53516632,0.03152146,98.85245868],[4.53516583,0.03151973,98.85130187],[4.53516533,0.031518,98.85014679],[4.53516483,0.03151627,98.84899344],[4.53516433,0.03151453,98.84784185],[4.53516383,0.0315128,98.84669203],[4.53516334,0.03151107,98.84554398],[4.53516284,0.03150934,98.84439773],[4.53516234,0.03150761,98.84325329],[4.53516184,0.03150587,98.84211064],[4.53516135,0.03150414,98.84096979],[4.53516085,0.03150241,98.83983072],[4.53516035,0.03150068,98.83869343],[4.53515986,0.03149894,98.8375579],[4.53515936,0.03149721,98.83642414],[4.53515886,0.03149548,98.83529214],[4.53515837,0.03149375,98.83416188],[4.53515787,0.03149201,98.83303336],[4.53515737,0.03149028,98.83190657],[4.53515688,0.03148855,98.8307815],[4.53515638,0.03148682,98.82965816],[4.53515588,0.03148508,98.82853651],[4.53515539,0.03148335,98.82741655],[4.53515489,0.03148162,98.82629826],[4.53515439,0.03147989,98.82518162],[4.5351539,0.03147815,98.8240666],[4.5351534,0.03147642,98.82295319],[4.53515291,0.03147469,98.82184137],[4.53515241,0.03147296,98.82073112],[4.53515191,0.03147122,98.81962242],[4.53515142,0.03146949,98.81851524],[4.53515092,0.03146776,98.81740958],[4.53515043,0.03146603,98.8163054],[4.53514993,0.03146429,98.8152027],[4.53514943,0.03146256,98.81410146],[4.53514894,0.03146083,98.81300166],[4.53514844,0.0314591,98.8119033],[4.53514795,0.03145736,98.81080636],[4.53514745,0.03145563,98.80971084],[4.53514695,0.0314539,98.80861671],[4.53514646,0.03145217,98.80752397],[4.53514596,0.03145043,98.80643261],[4.53514547,0.0314487,98.80534261],[4.53514497,0.03144697,98.80425396],[4.53514448,0.03144523,98.80316666],[4.53514398,0.0314435,98.80208068],[4.53514349,0.03144177,98.80099602],[4.53514299,0.03144004,98.79991267],[4.53514249,0.0314383,98.79883061],[4.535142,0.03143657,98.79774983],[4.5351415,0.03143484,98.79667032],[4.53514101,0.03143311,98.79559207],[4.53514051,0.03143137,98.79451506],[4.53514002,0.03142964,98.79343928],[4.53513952,0.03142791,98.79236472],[4.53513903,0.03142617,98.79129136],[4.53513853,0.03142444,98.7902192],[4.53513804,0.03142271,98.78914821],[4.53513754,0.03142098,98.7880784],[4.53513704,0.03141924,98.78700973],[4.53513655,0.03141751,98.78594221],[4.53513605,0.03141578,98.78487581],[4.53513556,0.03141404,98.78381054],[4.53513506,0.03141231,98.78274636],[4.53513457,0.03141058,98.78168327],[4.53513407,0.03140885,98.78062126],[4.53513358,0.03140711,98.77956032],[4.53513308,0.03140538,98.7785004],[4.53513259,0.03140365,98.77744149],[4.53513209,0.03140191,98.77638356],[4.5351316,0.03140018,98.77532659],[4.5351311,0.03139845,98.77427055],[4.53513061,0.03139672,98.77321542],[4.53513011,0.03139498,98.77216119],[4.53512962,0.03139325,98.77110782],[4.53512912,0.03139152,98.77005529],[4.53512863,0.03138978,98.76900358],[4.53512813,0.03138805,98.76795268],[4.53512764,0.03138632,98.76690255],[4.53512714,0.03138459,98.76585317],[4.53512664,0.03138285,98.76480454],[4.53512615,0.03138112,98.76375665],[4.53512565,0.03137939,98.76270949],[4.53512516,0.03137765,98.76166304],[4.53512466,0.03137592,98.7606173],[4.53512417,0.03137419,98.75957227],[4.53512367,0.03137246,98.75852793],[4.53512318,0.03137072,98.75748427],[4.53512268,0.03136899,98.75644129],[4.53512218,0.03136726,98.75539898],[4.53512169,0.03136553,98.75435732],[4.53512119,0.03136379,98.75331632],[4.5351207,0.03136206,98.75227595],[4.5351202,0.03136033,98.75123622],[4.53511971,0.03135859,98.75019711],[4.53511921,0.03135686,98.74915861],[4.53511871,0.03135513,98.74812072],[4.53511822,0.0313534,98.74708343],[4.53511772,0.03135166,98.74604673],[4.53511723,0.03134993,98.74501061],[4.53511673,0.0313482,98.74397505],[4.53511623,0.03134647,98.74294007],[4.53511574,0.03134473,98.74190563],[4.53511524,0.031343,98.74087175],[4.53511475,0.03134127,98.7398384],[4.53511425,0.03133954,98.73880558],[4.53511375,0.0313378,98.73777328],[4.53511326,0.03133607,98.73674149],[4.53511276,0.03133434,98.73571021],[4.53511227,0.03133261,98.73467942],[4.53511177,0.03133087,98.73364911],[4.53511127,0.03132914,98.73261929],[4.53511078,0.03132741,98.73158993],[4.53511028,0.03132568,98.73056103],[4.53510978,0.03132394,98.72953259],[4.53510929,0.03132221,98.72850459],[4.53510879,0.03132048,98.72747702],[4.5351083,0.03131875,98.72644989],[4.5351078,0.03131701,98.72542317],[4.5351073,0.03131528,98.72439686],[4.53510681,0.03131355,98.72337095],[4.53510631,0.03131182,98.72234543],[4.53510581,0.03131008,98.7213203],[4.53510532,0.03130835,98.72029555],[4.53510482,0.03130662,98.71927116],[4.53510432,0.03130489,98.71824713],[4.53510383,0.03130315,98.71722346],[4.53510333,0.03130142,98.71620012],[4.53510283,0.03129969,98.71517712],[4.53510234,0.03129796,98.71415445],[4.53510184,0.03129622,98.71313209],[4.53510134,0.03129449,98.71211004],[4.53510084,0.03129276,98.7110883],[4.53510035,0.03129103,98.71006684],[4.53509985,0.03128929,98.70904567],[4.53509935,0.03128756,98.70802481],[4.53509886,0.03128583,98.70700429],[4.53509836,0.0312841,98.70598414],[4.53509786,0.03128237,98.7049644],[4.53509736,0.03128063,98.70394509],[4.53509687,0.0312789,98.70292625],[4.53509637,0.03127717,98.70190792],[4.53509587,0.03127544,98.70089012],[4.53509537,0.0312737,98.69987289],[4.53509488,0.03127197,98.69885625],[4.53509438,0.03127024,98.6978402],[4.53509388,0.03126851,98.69682474],[4.53509339,0.03126677,98.69580985],[4.53509289,0.03126504,98.69479554],[4.53509239,0.03126331,98.6937818],[4.5350919,0.03126158,98.69276862],[4.5350914,0.03125985,98.691756],[4.5350909,0.03125811,98.69074393],[4.53509041,0.03125638,98.6897324],[4.53508991,0.03125465,98.68872141],[4.53508941,0.03125292,98.68771096],[4.53508892,0.03125118,98.68670104],[4.53508842,0.03124945,98.68569163],[4.53508792,0.03124772,98.68468275],[4.53508743,0.03124598,98.68367438],[4.53508693,0.03124425,98.68266651],[4.53508644,0.03124252,98.68165914],[4.53508594,0.03124079,98.68065226],[4.53508544,0.03123905,98.67964588],[4.53508495,0.03123732,98.67863997],[4.53508445,0.03123559,98.67763455],[4.53508396,0.03123386,98.67662959],[4.53508346,0.03123212,98.6756251],[4.53508297,0.03123039,98.67462106],[4.53508247,0.03122866,98.67361748],[4.53508197,0.03122693,98.67261435],[4.53508148,0.03122519,98.67161166],[4.53508098,0.03122346,98.6706094],[4.53508049,0.03122173,98.66960757],[4.53507999,0.03121999,98.66860617],[4.5350795,0.03121826,98.66760518],[4.535079,0.03121653,98.66660461],[4.53507851,0.0312148,98.66560444],[4.53507801,0.03121306,98.66460467],[4.53507752,0.03121133,98.66360529],[4.53507702,0.0312096,98.66260631],[4.53507653,0.03120786,98.6616077],[4.53507603,0.03120613,98.66060947],[4.53507554,0.0312044,98.65961161],[4.53507504,0.03120266,98.6586141],[4.53507455,0.03120093,98.65761694],[4.53507405,0.0311992,98.65662009],[4.53507356,0.03119747,98.65562356],[4.53507307,0.03119573,98.65462732],[4.53507257,0.031194,98.65363136],[4.53507208,0.03119227,98.65263566],[4.53507158,0.03119053,98.65164018],[4.53507109,0.0311888,98.65064485],[4.53507059,0.03118707,98.64964956],[4.5350701,0.03118533,98.64865423],[4.5350696,0.0311836,98.64765881],[4.53506911,0.03118187,98.64666328],[4.53506861,0.03118014,98.64566765],[4.53506812,0.0311784,98.64467189],[4.53506762,0.03117667,98.64367601],[4.53506713,0.03117494,98.64267999],[4.53506663,0.0311732,98.64168383],[4.53506614,0.03117147,98.64068751],[4.53506564,0.03116974,98.63969103],[4.53506515,0.03116801,98.63869438],[4.53506465,0.03116627,98.63769755],[4.53506416,0.03116454,98.63670053],[4.53506366,0.03116281,98.63570331],[4.53506316,0.03116107,98.63470588],[4.53506267,0.03115934,98.63370824],[4.53506217,0.03115761,98.63271038],[4.53506167,0.03115588,98.63171228],[4.53506118,0.03115414,98.63071395],[4.53506068,0.03115241,98.62971536],[4.53506018,0.03115068,98.62871652],[4.53505969,0.03114895,98.62771741],[4.53505919,0.03114722,98.62671802],[4.53505869,0.03114548,98.62571835],[4.53505819,0.03114375,98.62471839],[4.5350577,0.03114202,98.62371813],[4.5350572,0.03114029,98.62271755],[4.5350567,0.03113855,98.62171666],[4.5350562,0.03113682,98.62071544],[4.5350557,0.03113509,98.61971389],[4.53505521,0.03113336,98.61871199],[4.53505471,0.03113163,98.61770974],[4.53505421,0.03112989,98.61670712],[4.53505371,0.03112816,98.61570414],[4.53505321,0.03112643,98.61470078],[4.53505271,0.0311247,98.61369703],[4.53505221,0.03112297,98.61269288],[4.53505171,0.03112124,98.61168833],[4.53505122,0.0311195,98.61068337],[4.53505072,0.03111777,98.60967799],[4.53505022,0.03111604,98.60867217],[4.53504972,0.03111431,98.60766592],[4.53504922,0.03111258,98.60665922],[4.53504872,0.03111085,98.60565207],[4.53504822,0.03110911,98.60464447],[4.53504772,0.03110738,98.60363652],[4.53504722,0.03110565,98.60262827],[4.53504672,0.03110392,98.60161981],[4.53504622,0.03110219,98.60061112],[4.53504572,0.03110046,98.59960218],[4.53504522,0.03109873,98.59859299],[4.53504472,0.03109699,98.59758352],[4.53504422,0.03109526,98.59657377],[4.53504372,0.03109353,98.59556371],[4.53504322,0.0310918,98.59455334],[4.53504272,0.03109007,98.59354266],[4.53504222,0.03108834,98.59253165],[4.53504172,0.03108661,98.5915203],[4.53504121,0.03108487,98.59050862],[4.53504071,0.03108314,98.58949658],[4.53504021,0.03108141,98.58848419],[4.53503971,0.03107968,98.58747143],[4.53503921,0.03107795,98.5864583],[4.53503871,0.03107622,98.58544479],[4.53503821,0.03107449,98.58443088],[4.53503771,0.03107275,98.58341658],[4.53503721,0.03107102,98.58240187],[4.53503671,0.03106929,98.58138674],[4.53503621,0.03106756,98.58037119],[4.53503571,0.03106583,98.57935521],[4.53503521,0.0310641,98.57833879],[4.53503471,0.03106237,98.57732193],[4.53503421,0.03106063,98.5763046],[4.53503371,0.0310589,98.57528682],[4.53503321,0.03105717,98.57426856],[4.53503271,0.03105544,98.57324982],[4.53503221,0.03105371,98.57223059],[4.53503171,0.03105198,98.57121087],[4.53503121,0.03105025,98.57019064],[4.53503071,0.03104851,98.56916989],[4.53503021,0.03104678,98.56814863],[4.53502971,0.03104505,98.56712684],[4.53502921,0.03104332,98.56610451],[4.53502871,0.03104159,98.56508164],[4.53502821,0.03103986,98.56405821],[4.53502771,0.03103813,98.56303422],[4.53502721,0.03103639,98.56200966],[4.53502671,0.03103466,98.56098453],[4.53502621,0.03103293,98.5599588],[4.53502571,0.0310312,98.55893249],[4.53502521,0.03102947,98.55790557],[4.53502471,0.03102774,98.55687804],[4.53502421,0.031026,98.55584989],[4.53502371,0.03102427,98.55482112],[4.53502321,0.03102254,98.55379171],[4.53502272,0.03102081,98.55276166],[4.53502222,0.03101908,98.55173095],[4.53502172,0.03101735,98.55069959],[4.53502122,0.03101562,98.54966756],[4.53502072,0.03101388,98.54863486],[4.53502022,0.03101215,98.54760147],[4.53501972,0.03101042,98.54656739],[4.53501922,0.03100869,98.54553262],[4.53501872,0.03100696,98.54449713],[4.53501822,0.03100523,98.54346093],[4.53501772,0.03100349,98.54242401],[4.53501722,0.03100176,98.54138635],[4.53501672,0.03100003,98.54034795],[4.53501622,0.0309983,98.53930881],[4.53501572,0.03099657,98.53826891],[4.53501522,0.03099484,98.53722824],[4.53501472,0.03099311,98.53618681],[4.53501422,0.03099137,98.53514459],[4.53501372,0.03098964,98.53410159],[4.53501322,0.03098791,98.53305776],[4.53501272,0.03098618,98.53201304],[4.53501222,0.03098445,98.53096733],[4.53501172,0.03098272,98.52992055],[4.53501122,0.03098098,98.52887263],[4.53501072,0.03097925,98.52782353],[4.53501022,0.03097752,98.52677324],[4.53500972,0.03097579,98.52572177],[4.53500922,0.03097406,98.52466914],[4.53500872,0.03097233,98.52361534],[4.53500822,0.0309706,98.52256039],[4.53500772,0.03096887,98.52150429],[4.53500722,0.03096713,98.52044705],[4.53500672,0.0309654,98.51938866],[4.53500622,0.03096367,98.51832915],[4.53500571,0.03096194,98.51726851],[4.53500521,0.03096021,98.51620676],[4.53500471,0.03095848,98.51514389],[4.53500421,0.03095675,98.51407991],[4.53500371,0.03095502,98.51301483],[4.53500321,0.03095329,98.51194866],[4.53500271,0.03095155,98.5108814],[4.5350022,0.03094982,98.50981305],[4.5350017,0.03094809,98.50874363],[4.5350012,0.03094636,98.50767313],[4.5350007,0.03094463,98.50660157],[4.5350002,0.0309429,98.50552895],[4.53499969,0.03094117,98.50445527],[4.53499919,0.03093944,98.50338054],[4.53499869,0.03093771,98.50230477],[4.53499819,0.03093598,98.50122796],[4.53499769,0.03093424,98.50015012],[4.53499719,0.03093251,98.49907125],[4.53499668,0.03093078,98.49799136],[4.53499618,0.03092905,98.49691045],[4.53499568,0.03092732,98.49582854],[4.53499518,0.03092559,98.49474561],[4.53499468,0.03092386,98.49366169],[4.53499418,0.03092213,98.49257677],[4.53499367,0.0309204,98.49149086],[4.53499317,0.03091867,98.49040396],[4.53499267,0.03091693,98.48931609],[4.53499217,0.0309152,98.48822724],[4.53499167,0.03091347,98.48713742],[4.53499117,0.03091174,98.48604663],[4.53499067,0.03091001,98.48495483],[4.53499016,0.03090828,98.48386195],[4.53498966,0.03090655,98.48276795],[4.53498916,0.03090482,98.48167278],[4.53498866,0.03090309,98.48057638],[4.53498816,0.03090135,98.47947871],[4.53498766,0.03089962,98.47837977],[4.53498716,0.03089789,98.47727955],[4.53498666,0.03089616,98.47617805],[4.53498616,0.03089443,98.47507525],[4.53498565,0.0308927,98.47397116],[4.53498515,0.03089097,98.47286577],[4.53498465,0.03088924,98.47175907],[4.53498415,0.03088751,98.47065106],[4.53498365,0.03088577,98.46954173],[4.53498315,0.03088404,98.46843107],[4.53498265,0.03088231,98.46731909],[4.53498214,0.03088058,98.46620578],[4.53498164,0.03087885,98.46509112],[4.53498114,0.03087712,98.46397512],[4.53498064,0.03087539,98.46285777],[4.53498014,0.03087366,98.46173906],[4.53497964,0.03087193,98.46061899],[4.53497913,0.0308702,98.45949755],[4.53497863,0.03086846,98.45837474],[4.53497813,0.03086673,98.45725055],[4.53497763,0.030865,98.45612498],[4.53497713,0.03086327,98.45499802],[4.53497663,0.03086154,98.45386966],[4.53497612,0.03085981,98.4527399],[4.53497562,0.03085808,98.45160874],[4.53497512,0.03085635,98.45047616],[4.53497462,0.03085462,98.44934217],[4.53497412,0.03085289,98.44820676],[4.53497362,0.03085115,98.44706991],[4.53497311,0.03084942,98.44593163],[4.53497261,0.03084769,98.44479192],[4.53497211,0.03084596,98.44365076],[4.53497161,0.03084423,98.44250815],[4.53497111,0.0308425,98.44136408],[4.53497061,0.03084077,98.44021855],[4.5349701,0.03083904,98.43907155],[4.5349696,0.03083731,98.43792309],[4.5349691,0.03083558,98.43677315],[4.5349686,0.03083384,98.43562173],[4.5349681,0.03083211,98.43446885],[4.5349676,0.03083038,98.43331449],[4.53496709,0.03082865,98.43215866],[4.53496659,0.03082692,98.43100135],[4.53496609,0.03082519,98.42984255],[4.53496559,0.03082346,98.42868226],[4.53496509,0.03082173,98.42752047],[4.53496459,0.03082,98.42635717],[4.53496409,0.03081827,98.42519236],[4.53496358,0.03081653,98.42402603],[4.53496308,0.0308148,98.42285816],[4.53496258,0.03081307,98.42168876],[4.53496208,0.03081134,98.42051781],[4.53496158,0.03080961,98.4193453],[4.53496108,0.03080788,98.41817122],[4.53496058,0.03080615,98.41699557],[4.53496007,0.03080442,98.41581834],[4.53495957,0.03080269,98.41463952],[4.53495907,0.03080095,98.4134591],[4.53495857,0.03079922,98.41227707],[4.53495807,0.03079749,98.41109343],[4.53495757,0.03079576,98.40990816],[4.53495707,0.03079403,98.40872126],[4.53495656,0.0307923,98.40753272],[4.53495606,0.03079057,98.40634253],[4.53495556,0.03078884,98.40515068],[4.53495506,0.03078711,98.40395717],[4.53495456,0.03078537,98.40276198],[4.53495406,0.03078364,98.40156511],[4.53495356,0.03078191,98.40036654],[4.53495306,0.03078018,98.39916628],[4.53495256,0.03077845,98.39796431],[4.53495205,0.03077672,98.39676062],[4.53495155,0.03077499,98.39555521],[4.53495105,0.03077326,98.39434807],[4.53495055,0.03077153,98.39313918],[4.53495005,0.03076979,98.39192854],[4.53494955,0.03076806,98.39071615],[4.53494905,0.03076633,98.38950199],[4.53494855,0.0307646,98.38828605],[4.53494805,0.03076287,98.38706833],[4.53494754,0.03076114,98.38584882],[4.53494704,0.03075941,98.38462751],[4.53494654,0.03075768,98.3834044],[4.53494604,0.03075594,98.38217946],[4.53494554,0.03075421,98.3809527],[4.53494504,0.03075248,98.37972411],[4.53494454,0.03075075,98.37849368],[4.53494404,0.03074902,98.3772614],[4.53494354,0.03074729,98.37602726],[4.53494304,0.03074556,98.37479125],[4.53494254,0.03074383,98.37355337],[4.53494203,0.03074209,98.37231361],[4.53494153,0.03074036,98.37107195],[4.53494103,0.03073863,98.3698284],[4.53494053,0.0307369,98.36858294],[4.53494003,0.03073517,98.36733556],[4.53493953,0.03073344,98.36608626],[4.53493903,0.03073171,98.36483503],[4.53493853,0.03072998,98.36358186],[4.53493803,0.03072824,98.36232674],[4.53493753,0.03072651,98.36106966],[4.53493703,0.03072478,98.35981062],[4.53493652,0.03072305,98.3585496],[4.53493602,0.03072132,98.3572866],[4.53493552,0.03071959,98.35602161],[4.53493502,0.03071786,98.35475462],[4.53493452,0.03071613,98.35348562],[4.53493402,0.0307144,98.35221461],[4.53493352,0.03071266,98.35094157],[4.53493302,0.03071093,98.3496665],[4.53493252,0.0307092,98.34838939],[4.53493202,0.03070747,98.34711021],[4.53493152,0.03070574,98.34582896],[4.53493101,0.03070401,98.34454564],[4.53493051,0.03070228,98.34326022],[4.53493001,0.03070055,98.34197269],[4.53492951,0.03069881,98.34068305],[4.53492901,0.03069708,98.33939128],[4.53492851,0.03069535,98.33809737],[4.53492801,0.03069362,98.3368013],[4.53492751,0.03069189,98.33550307],[4.53492701,0.03069016,98.33420267],[4.5349265,0.03068843,98.33290007],[4.534926,0.0306867,98.33159528],[4.5349255,0.03068496,98.33028827],[4.534925,0.03068323,98.32897904],[4.5349245,0.0306815,98.32766757],[4.534924,0.03067977,98.32635386],[4.5349235,0.03067804,98.32503788],[4.534923,0.03067631,98.32371963],[4.53492249,0.03067458,98.32239909],[4.53492199,0.03067285,98.32107626],[4.53492149,0.03067112,98.31975113],[4.53492099,0.03066938,98.31842369],[4.53492049,0.03066765,98.31709395],[4.53491999,0.03066592,98.3157619],[4.53491948,0.03066419,98.31442754],[4.53491898,0.03066246,98.31309085],[4.53491848,0.03066073,98.31175182],[4.53491798,0.030659,98.31041043],[4.53491748,0.03065727,98.30906667],[4.53491698,0.03065554,98.30772051],[4.53491647,0.03065381,98.30637195],[4.53491597,0.03065208,98.30502097],[4.53491547,0.03065034,98.30366754],[4.53491497,0.03064861,98.30231166],[4.53491447,0.03064688,98.30095331],[4.53491396,0.03064515,98.29959247],[4.53491346,0.03064342,98.29822913],[4.53491296,0.03064169,98.29686326],[4.53491246,0.03063996,98.29549485],[4.53491195,0.03063823,98.2941239],[4.53491145,0.0306365,98.29275037],[4.53491095,0.03063477,98.29137427],[4.53491044,0.03063304,98.28999559],[4.53490994,0.03063131,98.28861432],[4.53490944,0.03062958,98.28723048],[4.53490894,0.03062784,98.28584404],[4.53490843,0.03062611,98.28445501],[4.53490793,0.03062438,98.28306338],[4.53490743,0.03062265,98.28166916],[4.53490692,0.03062092,98.28027233],[4.53490642,0.03061919,98.27887289],[4.53490591,0.03061746,98.27747084],[4.53490541,0.03061573,98.27606618],[4.53490491,0.030614,98.27465891],[4.5349044,0.03061227,98.27324901],[4.5349039,0.03061054,98.27183648],[4.5349034,0.03060881,98.27042133],[4.53490289,0.03060708,98.26900355],[4.53490239,0.03060535,98.26758313],[4.53490188,0.03060362,98.26616008],[4.53490138,0.03060189,98.26473438],[4.53490087,0.03060016,98.26330604],[4.53490037,0.03059843,98.26187505],[4.53489987,0.0305967,98.26044142],[4.53489936,0.03059497,98.25900512],[4.53489886,0.03059324,98.25756617],[4.53489835,0.03059151,98.25612456],[4.53489785,0.03058978,98.25468028],[4.53489734,0.03058805,98.25323334],[4.53489684,0.03058632,98.25178373],[4.53489633,0.03058459,98.25033144],[4.53489583,0.03058286,98.24887648],[4.53489532,0.03058113,98.24741884],[4.53489482,0.0305794,98.24595851],[4.53489431,0.03057767,98.2444955],[4.53489381,0.03057594,98.24302981],[4.53489331,0.03057421,98.24156142],[4.5348928,0.03057248,98.24009033],[4.5348923,0.03057075,98.23861656],[4.53489179,0.03056902,98.23714008],[4.53489129,0.03056729,98.23566094],[4.53489078,0.03056556,98.23417918],[4.53489028,0.03056383,98.23269485],[4.53488977,0.0305621,98.231208],[4.53488927,0.03056037,98.22971866],[4.53488876,0.03055864,98.2282269],[4.53488826,0.03055691,98.22673276],[4.53488775,0.03055518,98.22523628],[4.53488725,0.03055345,98.22373752],[4.53488674,0.03055172,98.22223653],[4.53488624,0.03054999,98.22073336],[4.53488573,0.03054826,98.21922808],[4.53488523,0.03054653,98.21772072],[4.53488472,0.0305448,98.21621134],[4.53488422,0.03054307,98.21470001],[4.53488371,0.03054134,98.21318676],[4.53488321,0.03053961,98.21167166],[4.5348827,0.03053788,98.21015476],[4.5348822,0.03053615,98.20863611],[4.53488169,0.03053442,98.20711577],[4.53488119,0.03053269,98.20559378],[4.53488068,0.03053096,98.20407018],[4.53488018,0.03052923,98.20254503],[4.53487967,0.0305275,98.20101837],[4.53487917,0.03052577,98.19949024],[4.53487867,0.03052404,98.19796067],[4.53487816,0.03052231,98.19642971],[4.53487766,0.03052058,98.19489738],[4.53487715,0.03051885,98.19336373],[4.53487665,0.03051712,98.19182878],[4.53487614,0.03051539,98.19029256],[4.53487564,0.03051366,98.18875512],[4.53487514,0.03051193,98.18721648],[4.53487463,0.0305102,98.18567668],[4.53487413,0.03050847,98.18413575],[4.53487362,0.03050674,98.18259373],[4.53487312,0.03050501,98.18105064],[4.53487261,0.03050328,98.17950652],[4.53487211,0.03050155,98.17796141],[4.53487161,0.03049982,98.17641533],[4.5348711,0.03049809,98.17486833],[4.5348706,0.03049636,98.17332042],[4.53487009,0.03049463,98.17177165],[4.53486959,0.0304929,98.17022204],[4.53486908,0.03049117,98.16867164],[4.53486858,0.03048944,98.16712047],[4.53486808,0.03048771,98.16556856],[4.53486757,0.03048598,98.16401595],[4.53486707,0.03048425,98.16246266],[4.53486656,0.03048252,98.16090874],[4.53486606,0.03048079,98.15935421],[4.53486555,0.03047905,98.15779911],[4.53486505,0.03047732,98.15624346],[4.53486454,0.03047559,98.1546873],[4.53486404,0.03047386,98.15313066],[4.53486354,0.03047213,98.15157357],[4.53486303,0.0304704,98.15001607],[4.53486253,0.03046867,98.14845818],[4.53486202,0.03046694,98.14689993],[4.53486152,0.03046521,98.14534136],[4.53486101,0.03046348,98.1437825],[4.53486051,0.03046175,98.14222338],[4.53486,0.03046002,98.14066403],[4.5348595,0.03045829,98.13910448],[4.53485899,0.03045656,98.13754477],[4.53485849,0.03045483,98.13598491],[4.53485798,0.0304531,98.13442495],[4.53485747,0.03045137,98.13286491],[4.53485697,0.03044964,98.13130483],[4.53485646,0.03044791,98.12974473],[4.53485596,0.03044618,98.12818465],[4.53485545,0.03044446,98.12662462],[4.53485494,0.03044273,98.12506466],[4.53485444,0.030441,98.1235048],[4.53485393,0.03043927,98.1219451],[4.53485343,0.03043754,98.12038558],[4.53485292,0.03043581,98.11882632],[4.53485241,0.03043408,98.11726735],[4.53485191,0.03043235,98.11570874],[4.5348514,0.03043062,98.11415053],[4.53485089,0.03042889,98.11259278],[4.53485039,0.03042716,98.11103555],[4.53484988,0.03042543,98.10947889],[4.53484937,0.0304237,98.10792284],[4.53484886,0.03042197,98.10636747],[4.53484836,0.03042024,98.10481284],[4.53484785,0.03041851,98.10325898],[4.53484734,0.03041678,98.10170596],[4.53484683,0.03041505,98.10015383],[4.53484633,0.03041332,98.09860265],[4.53484582,0.0304116,98.09705247],[4.53484531,0.03040987,98.09550334],[4.5348448,0.03040814,98.09395533],[4.5348443,0.03040641,98.09240847],[4.53484379,0.03040468,98.09086284],[4.53484328,0.03040295,98.08931848],[4.53484277,0.03040122,98.08777544],[4.53484226,0.03039949,98.08623379],[4.53484176,0.03039776,98.08469358],[4.53484125,0.03039603,98.08315485],[4.53484074,0.0303943,98.08161766],[4.53484023,0.03039257,98.08008204],[4.53483972,0.03039084,98.07854806],[4.53483922,0.03038912,98.07701576],[4.53483871,0.03038739,98.07548519],[4.5348382,0.03038566,98.07395639],[4.53483769,0.03038393,98.07242941],[4.53483718,0.0303822,98.07090431],[4.53483668,0.03038047,98.06938112],[4.53483617,0.03037874,98.06785989],[4.53483566,0.03037701,98.06634067],[4.53483515,0.03037528,98.06482351],[4.53483464,0.03037355,98.06330843],[4.53483414,0.03037182,98.0617955],[4.53483363,0.03037009,98.06028475],[4.53483312,0.03036837,98.05877623],[4.53483261,0.03036664,98.05726999],[4.5348321,0.03036491,98.05576606],[4.5348316,0.03036318,98.05426449],[4.53483109,0.03036145,98.05276533],[4.53483058,0.03035972,98.05126862],[4.53483007,0.03035799,98.04977441],[4.53482956,0.03035626,98.04828274],[4.53482906,0.03035453,98.04679365],[4.53482855,0.0303528,98.04530719],[4.53482804,0.03035107,98.0438234],[4.53482753,0.03034934,98.04234234],[4.53482702,0.03034762,98.04086403],[4.53482652,0.03034589,98.03938854],[4.53482601,0.03034416,98.03791589],[4.5348255,0.03034243,98.03644614],[4.53482499,0.0303407,98.03497934],[4.53482448,0.03033897,98.03351552],[4.53482398,0.03033724,98.03205474],[4.53482347,0.03033551,98.03059706],[4.53482296,0.03033378,98.02914252],[4.53482245,0.03033205,98.02769119],[4.53482194,0.03033032,98.0262431],[4.53482144,0.03032859,98.02479831],[4.53482093,0.03032687,98.02335688],[4.53482042,0.03032514,98.02191886],[4.53481991,0.03032341,98.0204843],[4.5348194,0.03032168,98.01905325],[4.5348189,0.03031995,98.01762577],[4.53481839,0.03031822,98.0162019],[4.53481788,0.03031649,98.01478168],[4.53481737,0.03031476,98.01336517],[4.53481687,0.03031303,98.01195239],[4.53481636,0.0303113,98.01054338],[4.53481585,0.03030957,98.00913819],[4.53481534,0.03030784,98.00773685],[4.53481484,0.03030611,98.0063394],[4.53481433,0.03030438,98.00494588],[4.53481382,0.03030266,98.00355634],[4.53481331,0.03030093,98.0021708],[4.53481281,0.0302992,98.00078931],[4.5348123,0.03029747,97.99941191],[4.53481179,0.03029574,97.99803863],[4.53481128,0.03029401,97.99666952],[4.53481078,0.03029228,97.99530461],[4.53481027,0.03029055,97.99394395],[4.53480976,0.03028882,97.99258756],[4.53480926,0.03028709,97.9912355],[4.53480875,0.03028536,97.98988779],[4.53480824,0.03028363,97.98854449],[4.53480773,0.0302819,97.98720562],[4.53480723,0.03028017,97.98587122],[4.53480672,0.03027844,97.98454134],[4.53480621,0.03027671,97.98321602],[4.53480571,0.03027498,97.98189528],[4.5348052,0.03027325,97.98057918],[4.53480469,0.03027153,97.97926774],[4.53480418,0.0302698,97.97796102],[4.53480368,0.03026807,97.97665903],[4.53480317,0.03026634,97.97536184],[4.53480266,0.03026461,97.97406947],[4.53480215,0.03026288,97.97278196],[4.53480165,0.03026115,97.97149935],[4.53480114,0.03025942,97.97022168],[4.53480063,0.03025769,97.96894899],[4.53480013,0.03025596,97.96768131],[4.53479962,0.03025423,97.9664187],[4.53479911,0.0302525,97.96516117],[4.5347986,0.03025077,97.96390878],[4.5347981,0.03024904,97.96266156],[4.53479759,0.03024731,97.96141955],[4.53479708,0.03024558,97.96018279],[4.53479658,0.03024385,97.95895132],[4.53479607,0.03024212,97.95772517],[4.53479556,0.0302404,97.95650439],[4.53479505,0.03023867,97.95528901],[4.53479455,0.03023694,97.95407907],[4.53479404,0.03023521,97.95287461],[4.53479353,0.03023348,97.95167568],[4.53479302,0.03023175,97.9504823],[4.53479252,0.03023002,97.94929452],[4.53479201,0.03022829,97.94811237],[4.5347915,0.03022656,97.9469359],[4.53479099,0.03022483,97.94576514],[4.53479049,0.0302231,97.94460014],[4.53478998,0.03022137,97.94344092],[4.53478947,0.03021964,97.94228754],[4.53478896,0.03021791,97.94114002],[4.53478846,0.03021618,97.93999841],[4.53478795,0.03021445,97.93886275],[4.53478744,0.03021273,97.93773308],[4.53478693,0.030211,97.93660943],[4.53478643,0.03020927,97.93549184],[4.53478592,0.03020754,97.93438036],[4.53478541,0.03020581,97.93327502],[4.5347849,0.03020408,97.93217586],[4.53478439,0.03020235,97.93108293],[4.53478389,0.03020062,97.92999626],[4.53478338,0.03019889,97.9289159],[4.53478287,0.03019716,97.92784191],[4.53478236,0.03019543,97.92677434],[4.53478185,0.0301937,97.92571324],[4.53478134,0.03019198,97.92465866],[4.53478084,0.03019025,97.92361066],[4.53478033,0.03018852,97.92256928],[4.53477982,0.03018679,97.92153457],[4.53477931,0.03018506,97.92050659],[4.5347788,0.03018333,97.91948539],[4.53477829,0.0301816,97.91847102],[4.53477778,0.03017987,97.91746348],[4.53477727,0.03017814,97.9164627],[4.53477677,0.03017641,97.91546857],[4.53477626,0.03017468,97.91448102],[4.53477575,0.03017296,97.91349996],[4.53477524,0.03017123,97.91252528],[4.53477473,0.0301695,97.9115569],[4.53477422,0.03016777,97.91059473],[4.53477371,0.03016604,97.90963867],[4.5347732,0.03016431,97.90868864],[4.53477269,0.03016258,97.90774455],[4.53477218,0.03016085,97.9068063],[4.53477168,0.03015912,97.9058738],[4.53477117,0.0301574,97.90494696],[4.53477066,0.03015567,97.9040257],[4.53477015,0.03015394,97.90310991],[4.53476964,0.03015221,97.90219951],[4.53476913,0.03015048,97.9012944],[4.53476862,0.03014875,97.9003945],[4.53476811,0.03014702,97.89949971],[4.5347676,0.03014529,97.89860994],[4.53476709,0.03014356,97.8977251],[4.53476658,0.03014184,97.8968451],[4.53476607,0.03014011,97.89596985],[4.53476557,0.03013838,97.89509925],[4.53476506,0.03013665,97.89423321],[4.53476455,0.03013492,97.89337165],[4.53476404,0.03013319,97.89251446],[4.53476353,0.03013146,97.89166156],[4.53476302,0.03012973,97.89081285],[4.53476251,0.030128,97.88996824],[4.534762,0.03012628,97.88912763],[4.53476149,0.03012455,97.88829092],[4.53476098,0.03012282,97.887458],[4.53476047,0.03012109,97.88662878],[4.53475996,0.03011936,97.88580316],[4.53475945,0.03011763,97.88498103],[4.53475894,0.0301159,97.88416229],[4.53475843,0.03011417,97.88334685],[4.53475793,0.03011245,97.8825346],[4.53475742,0.03011072,97.88172545],[4.53475691,0.03010899,97.88091928],[4.5347564,0.03010726,97.88011601],[4.53475589,0.03010553,97.87931553],[4.53475538,0.0301038,97.87851774],[4.53475487,0.03010207,97.87772255],[4.53475436,0.03010034,97.87692984],[4.53475385,0.03009861,97.87613952],[4.53475334,0.03009689,97.87535148],[4.53475283,0.03009516,97.87456564],[4.53475232,0.03009343,97.87378189],[4.53475181,0.0300917,97.87300012],[4.5347513,0.03008997,97.87222024],[4.53475079,0.03008824,97.87144214],[4.53475028,0.03008651,97.87066573],[4.53474977,0.03008478,97.86989091],[4.53474926,0.03008306,97.86911757],[4.53474875,0.03008133,97.86834562],[4.53474824,0.0300796,97.86757495],[4.53474773,0.03007787,97.86680546],[4.53474722,0.03007614,97.86603706],[4.53474671,0.03007441,97.86526964],[4.53474621,0.03007268,97.8645031],[4.5347457,0.03007095,97.86373735],[4.53474519,0.03006923,97.86297228],[4.53474468,0.0300675,97.86220779],[4.53474417,0.03006577,97.86144378],[4.53474365,0.03006404,97.86068016],[4.53474314,0.03006231,97.85991683],[4.53474263,0.03006058,97.85915371],[4.53474212,0.03005885,97.8583907],[4.53474161,0.03005713,97.85762772],[4.5347411,0.0300554,97.85686467],[4.53474059,0.03005367,97.85610147],[4.53474008,0.03005194,97.85533803],[4.53473957,0.03005021,97.85457426],[4.53473906,0.03004848,97.85381007],[4.53473855,0.03004675,97.85304535],[4.53473804,0.03004503,97.85228003],[4.53473753,0.0300433,97.85151399],[4.53473702,0.03004157,97.85074714],[4.53473651,0.03003984,97.84997938],[4.534736,0.03003811,97.84921062],[4.53473549,0.03003638,97.84844076],[4.53473498,0.03003465,97.8476697],[4.53473447,0.03003293,97.84689734],[4.53473396,0.0300312,97.84612359],[4.53473345,0.03002947,97.84534834],[4.53473294,0.03002774,97.8445715],[4.53473243,0.03002601,97.84379297],[4.53473191,0.03002428,97.84301266],[4.5347314,0.03002255,97.84223046],[4.53473089,0.03002083,97.84144628],[4.53473038,0.0300191,97.84066002],[4.53472987,0.03001737,97.83987158],[4.53472936,0.03001564,97.83908087],[4.53472885,0.03001391,97.83828779],[4.53472834,0.03001218,97.83749223],[4.53472783,0.03001046,97.83669411],[4.53472732,0.03000873,97.83589332],[4.53472681,0.030007,97.83508976],[4.5347263,0.03000527,97.83428335],[4.53472579,0.03000354,97.83347398],[4.53472528,0.03000181,97.83266163],[4.53472476,0.03000008,97.83184632],[4.53472425,0.02999836,97.83102805],[4.53472374,0.02999663,97.83020683],[4.53472323,0.0299949,97.82938268],[4.53472272,0.02999317,97.82855561],[4.53472221,0.02999144,97.82772562],[4.5347217,0.02998971,97.82689272],[4.53472119,0.02998798,97.82605693],[4.53472068,0.02998626,97.82521826],[4.53472017,0.02998453,97.82437672],[4.53471966,0.0299828,97.82353231],[4.53471915,0.02998107,97.82268505],[4.53471864,0.02997934,97.82183494],[4.53471813,0.02997761,97.82098201],[4.53471762,0.02997588,97.82012626],[4.53471711,0.02997416,97.81926769],[4.5347166,0.02997243,97.81840633],[4.53471609,0.0299707,97.81754217],[4.53471558,0.02996897,97.81667524],[4.53471507,0.02996724,97.81580553],[4.53471456,0.02996551,97.81493307],[4.53471405,0.02996378,97.81405787],[4.53471354,0.02996206,97.81317994],[4.53471303,0.02996033,97.81229932],[4.53471252,0.0299586,97.81141601],[4.53471201,0.02995687,97.81053004],[4.5347115,0.02995514,97.80964141],[4.53471099,0.02995341,97.80875015],[4.53471048,0.02995168,97.80785627],[4.53470997,0.02994995,97.8069598],[4.53470946,0.02994823,97.80606073],[4.53470895,0.0299465,97.80515911],[4.53470844,0.02994477,97.80425493],[4.53470793,0.02994304,97.80334821],[4.53470742,0.02994131,97.80243898],[4.53470691,0.02993958,97.80152725],[4.5347064,0.02993785,97.80061303],[4.5347059,0.02993612,97.79969634],[4.53470539,0.02993439,97.79877718],[4.53470488,0.02993266,97.79785555],[4.53470437,0.02993093,97.79693143],[4.53470386,0.02992921,97.79600483],[4.53470335,0.02992748,97.79507573],[4.53470285,0.02992575,97.79414414],[4.53470234,0.02992402,97.79321004],[4.53470183,0.02992229,97.79227343],[4.53470132,0.02992056,97.79133431],[4.53470081,0.02991883,97.79039267],[4.53470031,0.0299171,97.78944851],[4.5346998,0.02991537,97.78850182],[4.53469929,0.02991364,97.78755259],[4.53469878,0.02991191,97.78660082],[4.53469828,0.02991018,97.78564651],[4.53469777,0.02990845,97.78468966],[4.53469726,0.02990672,97.78373025],[4.53469676,0.02990499,97.78276828],[4.53469625,0.02990326,97.78180376],[4.53469574,0.02990153,97.78083667],[4.53469523,0.0298998,97.77986701],[4.53469473,0.02989808,97.77889478],[4.53469422,0.02989635,97.77791997],[4.53469371,0.02989462,97.77694258],[4.5346932,0.02989289,97.77596261],[4.5346927,0.02989116,97.77498005],[4.53469219,0.02988943,97.7739949],[4.53469168,0.0298877,97.77300715],[4.53469118,0.02988597,97.77201681],[4.53469067,0.02988424,97.77102387],[4.53469016,0.02988251,97.77002834],[4.53468965,0.02988078,97.76903021],[4.53468915,0.02987905,97.76802948],[4.53468864,0.02987732,97.76702615],[4.53468813,0.02987559,97.76602023],[4.53468763,0.02987386,97.76501172],[4.53468712,0.02987213,97.76400061],[4.53468661,0.0298704,97.7629869],[4.5346861,0.02986867,97.7619706],[4.53468559,0.02986694,97.76095171],[4.53468509,0.02986521,97.75993022],[4.53468458,0.02986348,97.75890614],[4.53468407,0.02986176,97.75787947],[4.53468356,0.02986003,97.7568502],[4.53468306,0.0298583,97.75581834],[4.53468255,0.02985657,97.75478389],[4.53468204,0.02985484,97.75374685],[4.53468153,0.02985311,97.75270722],[4.53468102,0.02985138,97.751665],[4.53468051,0.02984965,97.75062019],[4.53468001,0.02984792,97.7495728],[4.5346795,0.02984619,97.74852281],[4.53467899,0.02984446,97.74747025],[4.53467848,0.02984273,97.74641512],[4.53467797,0.029841,97.74535741],[4.53467746,0.02983928,97.74429715],[4.53467695,0.02983755,97.74323432],[4.53467644,0.02983582,97.74216895],[4.53467593,0.02983409,97.74110103],[4.53467542,0.02983236,97.74003057],[4.53467491,0.02983063,97.73895758],[4.5346744,0.0298289,97.73788206],[4.53467389,0.02982717,97.73680402],[4.53467338,0.02982545,97.73572346],[4.53467287,0.02982372,97.73464039],[4.53467236,0.02982199,97.73355482],[4.53467185,0.02982026,97.73246677],[4.53467134,0.02981853,97.73137626],[4.53467083,0.0298168,97.73028336],[4.53467031,0.02981508,97.72918811],[4.5346698,0.02981335,97.72809055],[4.53466929,0.02981162,97.72699074],[4.53466878,0.02980989,97.72588873],[4.53466827,0.02980816,97.72478455],[4.53466775,0.02980643,97.72367827],[4.53466724,0.02980471,97.72256993],[4.53466673,0.02980298,97.72145958],[4.53466622,0.02980125,97.72034726],[4.5346657,0.02979952,97.71923302],[4.53466519,0.02979779,97.71811691],[4.53466468,0.02979607,97.71699898],[4.53466417,0.02979434,97.71587928],[4.53466365,0.02979261,97.71475784],[4.53466314,0.02979088,97.71363468],[4.53466263,0.02978915,97.7125098],[4.53466212,0.02978743,97.71138321],[4.53466161,0.0297857,97.71025491],[4.53466109,0.02978397,97.70912491],[4.53466058,0.02978224,97.70799321],[4.53466007,0.02978051,97.70685982],[4.53465956,0.02977879,97.70572475],[4.53465904,0.02977706,97.70458799],[4.53465853,0.02977533,97.70344956],[4.53465802,0.0297736,97.70230946],[4.53465751,0.02977187,97.7011677],[4.534657,0.02977014,97.70002427],[4.53465648,0.02976842,97.69887919],[4.53465597,0.02976669,97.69773246],[4.53465546,0.02976496,97.69658409],[4.53465495,0.02976323,97.69543408],[4.53465443,0.0297615,97.69428244],[4.53465392,0.02975978,97.69312917],[4.53465341,0.02975805,97.69197428],[4.5346529,0.02975632,97.69081777],[4.53465238,0.02975459,97.68965965],[4.53465187,0.02975286,97.68849993],[4.53465136,0.02975114,97.68733861],[4.53465085,0.02974941,97.68617569],[4.53465033,0.02974768,97.68501118],[4.53464982,0.02974595,97.6838451],[4.53464931,0.02974422,97.68267743],[4.5346488,0.0297425,97.68150819],[4.53464828,0.02974077,97.68033739],[4.53464777,0.02973904,97.67916502],[4.53464726,0.02973731,97.6779911],[4.53464674,0.02973559,97.67681564],[4.53464623,0.02973386,97.67563862],[4.53464572,0.02973213,97.67446007],[4.5346452,0.0297304,97.67327999],[4.53464469,0.02972867,97.67209838],[4.53464417,0.02972695,97.67091524],[4.53464366,0.02972522,97.6697306],[4.53464315,0.02972349,97.66854444],[4.53464263,0.02972176,97.66735677],[4.53464212,0.02972004,97.66616761],[4.5346416,0.02971831,97.66497696],[4.53464109,0.02971658,97.66378481],[4.53464057,0.02971485,97.66259119],[4.53464006,0.02971313,97.66139609],[4.53463954,0.0297114,97.66019951],[4.53463903,0.02970967,97.65900148],[4.53463851,0.02970795,97.65780198],[4.534638,0.02970622,97.65660103],[4.53463748,0.02970449,97.65539863],[4.53463697,0.02970276,97.6541948],[4.53463645,0.02970104,97.65298959],[4.53463593,0.02969931,97.65178306],[4.53463542,0.02969758,97.65057524],[4.5346349,0.02969586,97.64936612],[4.53463439,0.02969413,97.64815572],[4.53463387,0.0296924,97.64694404],[4.53463335,0.02969068,97.64573107],[4.53463284,0.02968895,97.64451684],[4.53463232,0.02968722,97.64330133],[4.5346318,0.02968549,97.64208456],[4.53463129,0.02968377,97.64086652],[4.53463077,0.02968204,97.63964723],[4.53463025,0.02968032,97.63842669],[4.53462974,0.02967859,97.63720489],[4.53462922,0.02967686,97.63598185],[4.5346287,0.02967514,97.63475757],[4.53462819,0.02967341,97.63353206],[4.53462767,0.02967168,97.63230531],[4.53462715,0.02966996,97.63107733],[4.53462664,0.02966823,97.62984812],[4.53462612,0.0296665,97.62861768],[4.5346256,0.02966478,97.62738601],[4.53462508,0.02966305,97.62615312],[4.53462457,0.02966132,97.624919],[4.53462405,0.0296596,97.62368365],[4.53462353,0.02965787,97.62244707],[4.53462302,0.02965614,97.62120927],[4.5346225,0.02965442,97.61997024],[4.53462198,0.02965269,97.61872998],[4.53462146,0.02965096,97.6174885],[4.53462094,0.02964924,97.6162458],[4.53462043,0.02964751,97.61500187],[4.53461991,0.02964578,97.61375671],[4.53461939,0.02964406,97.61251034],[4.53461887,0.02964233,97.61126273],[4.53461835,0.02964061,97.61001391],[4.53461784,0.02963888,97.60876386],[4.53461732,0.02963715,97.60751259],[4.5346168,0.02963543,97.60626009],[4.53461628,0.0296337,97.60500638],[4.53461576,0.02963198,97.60375144],[4.53461524,0.02963025,97.60249527],[4.53461472,0.02962852,97.60123789],[4.53461421,0.0296268,97.5999793],[4.53461369,0.02962507,97.59871955],[4.53461317,0.02962335,97.59745871],[4.53461265,0.02962162,97.5961968],[4.53461213,0.02961989,97.5949339],[4.53461161,0.02961817,97.59367006],[4.53461109,0.02961644,97.59240532],[4.53461057,0.02961472,97.59113974],[4.53461005,0.02961299,97.58987338],[4.53460954,0.02961126,97.58860628],[4.53460902,0.02960954,97.58733851],[4.5346085,0.02960781,97.58607009],[4.53460798,0.02960608,97.58480107],[4.53460746,0.02960436,97.58353144],[4.53460694,0.02960263,97.58226122],[4.53460643,0.02960091,97.58099043],[4.53460591,0.02959918,97.57971907],[4.53460539,0.02959745,97.57844717],[4.53460488,0.02959573,97.57717472],[4.53460436,0.029594,97.57590175],[4.53460384,0.02959227,97.57462826],[4.53460333,0.02959055,97.57335427],[4.53460281,0.02958882,97.5720798],[4.53460229,0.02958709,97.57080485],[4.53460178,0.02958537,97.56952944],[4.53460126,0.02958364,97.56825358],[4.53460075,0.02958191,97.56697728],[4.53460023,0.02958018,97.56570056],[4.53459972,0.02957846,97.56442342],[4.5345992,0.02957673,97.56314589],[4.53459869,0.029575,97.56186798],[4.53459817,0.02957328,97.56058969],[4.53459766,0.02957155,97.55931104],[4.53459714,0.02956982,97.55803204],[4.53459663,0.02956809,97.55675272],[4.53459612,0.02956637,97.55547306],[4.5345956,0.02956464,97.55419308],[4.53459509,0.02956291,97.55291278],[4.53459458,0.02956118,97.55163214],[4.53459407,0.02955945,97.55035118],[4.53459355,0.02955773,97.54906989],[4.53459304,0.029556,97.54778827],[4.53459253,0.02955427,97.54650632],[4.53459202,0.02955254,97.54522403],[4.53459151,0.02955082,97.54394142],[4.53459099,0.02954909,97.54265846],[4.53459048,0.02954736,97.54137517],[4.53458997,0.02954563,97.54009155],[4.53458946,0.0295439,97.53880758],[4.53458895,0.02954217,97.53752327],[4.53458844,0.02954045,97.53623863],[4.53458793,0.02953872,97.53495364],[4.53458741,0.02953699,97.5336683],[4.5345869,0.02953526,97.53238263],[4.53458639,0.02953353,97.5310966],[4.53458588,0.02953181,97.52981023],[4.53458537,0.02953008,97.5285235],[4.53458486,0.02952835,97.52723643],[4.53458435,0.02952662,97.525949],[4.53458384,0.02952489,97.52466122],[4.53458333,0.02952316,97.52337308],[4.53458282,0.02952144,97.52208459],[4.53458231,0.02951971,97.52079573],[4.53458179,0.02951798,97.51950652],[4.53458128,0.02951625,97.51821694],[4.53458077,0.02951452,97.516927],[4.53458026,0.02951279,97.51563669],[4.53457975,0.02951107,97.51434601],[4.53457924,0.02950934,97.51305496],[4.53457873,0.02950761,97.51176356],[4.53457822,0.02950588,97.51047181],[4.53457771,0.02950415,97.50917973],[4.53457719,0.02950243,97.50788732],[4.53457668,0.0295007,97.5065946],[4.53457617,0.02949897,97.50530159],[4.53457566,0.02949724,97.50400829],[4.53457515,0.02949551,97.50271471],[4.53457464,0.02949379,97.50142088],[4.53457412,0.02949206,97.50012679],[4.53457361,0.02949033,97.49883247],[4.5345731,0.0294886,97.49753791],[4.53457259,0.02948687,97.49624315],[4.53457207,0.02948515,97.49494818],[4.53457156,0.02948342,97.49365302],[4.53457105,0.02948169,97.49235769],[4.53457054,0.02947996,97.49106219],[4.53457002,0.02947824,97.48976653],[4.53456951,0.02947651,97.48847073],[4.534569,0.02947478,97.48717481],[4.53456849,0.02947305,97.48587876],[4.53456797,0.02947133,97.48458261],[4.53456746,0.0294696,97.48328636],[4.53456694,0.02946787,97.48199004],[4.53456643,0.02946614,97.48069364],[4.53456592,0.02946442,97.47939718],[4.5345654,0.02946269,97.47810068],[4.53456489,0.02946096,97.47680415],[4.53456438,0.02945923,97.47550759],[4.53456386,0.02945751,97.47421103],[4.53456335,0.02945578,97.47291447],[4.53456283,0.02945405,97.47161792],[4.53456232,0.02945233,97.4703214],[4.5345618,0.0294506,97.46902492],[4.53456129,0.02944887,97.46772849],[4.53456077,0.02944715,97.46643212],[4.53456026,0.02944542,97.46513583],[4.53455974,0.02944369,97.46383963],[4.53455923,0.02944197,97.46254352],[4.53455871,0.02944024,97.46124753],[4.53455819,0.02943851,97.45995166],[4.53455768,0.02943678,97.45865593],[4.53455716,0.02943506,97.45736035],[4.53455665,0.02943333,97.45606493],[4.53455613,0.02943161,97.45476968],[4.53455561,0.02942988,97.45347461],[4.5345551,0.02942815,97.45217974],[4.53455458,0.02942643,97.45088509],[4.53455407,0.0294247,97.44959065],[4.53455355,0.02942297,97.44829645],[4.53455303,0.02942125,97.4470025],[4.53455252,0.02941952,97.4457088],[4.534552,0.02941779,97.44441537],[4.53455148,0.02941607,97.44312223],[4.53455097,0.02941434,97.44182938],[4.53455045,0.02941261,97.44053685],[4.53454993,0.02941089,97.43924463],[4.53454942,0.02940916,97.43795274],[4.5345489,0.02940744,97.4366612],[4.53454838,0.02940571,97.43537001],[4.53454787,0.02940398,97.4340792],[4.53454735,0.02940226,97.43278876],[4.53454683,0.02940053,97.43149872],[4.53454632,0.0293988,97.43020909],[4.5345458,0.02939708,97.42891987],[4.53454528,0.02939535,97.42763109],[4.53454477,0.02939362,97.42634275],[4.53454425,0.0293919,97.42505486],[4.53454373,0.02939017,97.42376745],[4.53454322,0.02938845,97.42248051],[4.5345427,0.02938672,97.42119407],[4.53454218,0.02938499,97.41990813],[4.53454167,0.02938327,97.41862271],[4.53454115,0.02938154,97.41733782],[4.53454063,0.02937981,97.41605347],[4.53454012,0.02937809,97.41476968],[4.5345396,0.02937636,97.41348646],[4.53453908,0.02937463,97.41220382],[4.53453857,0.02937291,97.41092176],[4.53453805,0.02937118,97.40964032],[4.53453754,0.02936946,97.40835949],[4.53453702,0.02936773,97.40707929],[4.5345365,0.029366,97.40579974],[4.53453599,0.02936428,97.40452083],[4.53453547,0.02936255,97.40324259],[4.53453496,0.02936082,97.40196503],[4.53453444,0.0293591,97.40068816],[4.53453393,0.02935737,97.39941199],[4.53453341,0.02935564,97.39813653],[4.53453289,0.02935392,97.3968618],[4.53453238,0.02935219,97.3955878],[4.53453186,0.02935046,97.39431455],[4.53453135,0.02934874,97.39304205],[4.53453083,0.02934701,97.39177031],[4.53453032,0.02934528,97.39049933],[4.5345298,0.02934356,97.38922911],[4.53452929,0.02934183,97.38795966],[4.53452878,0.0293401,97.38669097],[4.53452826,0.02933838,97.38542307],[4.53452775,0.02933665,97.38415594],[4.53452723,0.02933492,97.3828896],[4.53452672,0.02933319,97.38162405],[4.5345262,0.02933147,97.38035928],[4.53452569,0.02932974,97.37909532],[4.53452517,0.02932801,97.37783215],[4.53452466,0.02932629,97.37656978],[4.53452415,0.02932456,97.37530823],[4.53452363,0.02932283,97.37404748],[4.53452312,0.02932111,97.37278755],[4.5345226,0.02931938,97.37152844],[4.53452209,0.02931765,97.37027015],[4.53452158,0.02931592,97.36901267],[4.53452106,0.0293142,97.36775602],[4.53452055,0.02931247,97.36650017],[4.53452003,0.02931074,97.36524512],[4.53451952,0.02930902,97.36399087],[4.53451901,0.02930729,97.3627374],[4.53451849,0.02930556,97.36148473],[4.53451798,0.02930384,97.36023283],[4.53451746,0.02930211,97.35898171],[4.53451695,0.02930038,97.35773135],[4.53451644,0.02929865,97.35648175],[4.53451592,0.02929693,97.35523291],[4.53451541,0.0292952,97.35398482],[4.53451489,0.02929347,97.35273748],[4.53451438,0.02929175,97.35149087],[4.53451387,0.02929002,97.35024499],[4.53451335,0.02928829,97.34899984],[4.53451284,0.02928657,97.34775541],[4.53451232,0.02928484,97.34651169],[4.53451181,0.02928311,97.34526867],[4.53451129,0.02928139,97.34402635],[4.53451078,0.02927966,97.34278472],[4.53451026,0.02927793,97.34154376],[4.53450975,0.02927621,97.34030348],[4.53450924,0.02927448,97.33906386],[4.53450872,0.02927275,97.33782491],[4.53450821,0.02927103,97.33658663],[4.53450769,0.0292693,97.33534902],[4.53450718,0.02926757,97.33411209],[4.53450666,0.02926585,97.33287584],[4.53450615,0.02926412,97.33164027],[4.53450563,0.02926239,97.33040538],[4.53450511,0.02926067,97.32917118],[4.5345046,0.02925894,97.32793767],[4.53450408,0.02925721,97.32670486],[4.53450357,0.02925549,97.32547273],[4.53450305,0.02925376,97.32424131],[4.53450254,0.02925203,97.32301059],[4.53450202,0.02925031,97.32178056],[4.5345015,0.02924858,97.32055125],[4.53450099,0.02924685,97.31932264],[4.53450047,0.02924513,97.31809475],[4.53449996,0.0292434,97.31686757],[4.53449944,0.02924168,97.3156411],[4.53449892,0.02923995,97.31441536],[4.53449841,0.02923822,97.31319034],[4.53449789,0.0292365,97.31196604],[4.53449737,0.02923477,97.31074248],[4.53449686,0.02923305,97.30951964],[4.53449634,0.02923132,97.30829754],[4.53449582,0.02922959,97.30707617],[4.53449531,0.02922787,97.30585555],[4.53449479,0.02922614,97.30463566],[4.53449427,0.02922442,97.30341652],[4.53449375,0.02922269,97.30219813],[4.53449324,0.02922096,97.3009805],[4.53449272,0.02921924,97.29976361],[4.5344922,0.02921751,97.29854748],[4.53449168,0.02921579,97.29733211],[4.53449117,0.02921406,97.29611751],[4.53449065,0.02921234,97.29490367],[4.53449013,0.02921061,97.2936906],[4.53448961,0.02920888,97.2924783],[4.53448909,0.02920716,97.29126677],[4.53448857,0.02920543,97.29005603],[4.53448806,0.02920371,97.28884606],[4.53448754,0.02920198,97.28763687],[4.53448702,0.02920026,97.28642847],[4.5344865,0.02919853,97.28522087],[4.53448598,0.02919681,97.28401405],[4.53448546,0.02919508,97.28280803],[4.53448494,0.02919336,97.2816028],[4.53448442,0.02919163,97.28039838],[4.53448391,0.0291899,97.27919476],[4.53448339,0.02918818,97.27799195],[4.53448287,0.02918645,97.27678995],[4.53448235,0.02918473,97.27558876],[4.53448183,0.029183,97.27438839],[4.53448131,0.02918128,97.27318884],[4.53448079,0.02917955,97.27199011],[4.53448027,0.02917783,97.2707922],[4.53447975,0.0291761,97.26959513],[4.53447923,0.02917438,97.26839888],[4.53447871,0.02917265,97.26720347],[4.53447819,0.02917093,97.2660089],[4.53447767,0.0291692,97.26481516],[4.53447715,0.02916748,97.26362228],[4.53447663,0.02916576,97.26243023],[4.53447611,0.02916403,97.26123904],[4.53447558,0.02916231,97.2600487],[4.53447506,0.02916058,97.25885922],[4.53447454,0.02915886,97.25767059],[4.53447402,0.02915713,97.25648283],[4.5344735,0.02915541,97.25529593],[4.53447298,0.02915368,97.25410991],[4.53447246,0.02915196,97.25292475],[4.53447194,0.02915023,97.25174047],[4.53447142,0.02914851,97.25055706],[4.5344709,0.02914678,97.24937454],[4.53447037,0.02914506,97.2481929],[4.53446985,0.02914333,97.24701215],[4.53446933,0.02914161,97.24583229],[4.53446881,0.02913989,97.24465332],[4.53446829,0.02913816,97.24347525],[4.53446777,0.02913644,97.24229808],[4.53446725,0.02913471,97.24112181],[4.53446672,0.02913299,97.23994645],[4.5344662,0.02913126,97.238772],[4.53446568,0.02912954,97.23759845],[4.53446516,0.02912781,97.2364258],[4.53446464,0.02912609,97.23525405],[4.53446412,0.02912437,97.23408319],[4.5344636,0.02912264,97.23291322],[4.53446308,0.02912092,97.23174414],[4.53446255,0.02911919,97.23057595],[4.53446203,0.02911747,97.22940863],[4.53446151,0.02911574,97.2282422],[4.53446099,0.02911402,97.22707663],[4.53446047,0.02911229,97.22591194],[4.53445995,0.02911057,97.22474811],[4.53445943,0.02910885,97.22358514],[4.5344589,0.02910712,97.22242302],[4.53445838,0.0291054,97.22126176],[4.53445786,0.02910367,97.22010133],[4.53445734,0.02910195,97.21894175],[4.53445682,0.02910022,97.21778301],[4.5344563,0.0290985,97.21662509],[4.53445578,0.02909677,97.215468],[4.53445525,0.02909505,97.21431173],[4.53445473,0.02909333,97.21315627],[4.53445421,0.0290916,97.21200162],[4.53445369,0.02908988,97.21084778],[4.53445317,0.02908815,97.20969474],[4.53445265,0.02908643,97.20854251],[4.53445213,0.0290847,97.20739108],[4.5344516,0.02908298,97.20624045],[4.53445108,0.02908125,97.20509064],[4.53445056,0.02907953,97.20394164],[4.53445004,0.02907781,97.20279346],[4.53444952,0.02907608,97.20164609],[4.534449,0.02907436,97.20049955],[4.53444848,0.02907263,97.19935383],[4.53444796,0.02907091,97.19820893],[4.53444743,0.02906918,97.19706487],[4.53444691,0.02906746,97.19592164],[4.53444639,0.02906573,97.19477924],[4.53444587,0.02906401,97.19363768],[4.53444535,0.02906229,97.19249696],[4.53444483,0.02906056,97.19135708],[4.53444431,0.02905884,97.19021805],[4.53444378,0.02905711,97.18907986],[4.53444326,0.02905539,97.18794253],[4.53444274,0.02905366,97.18680604],[4.53444222,0.02905194,97.18567042],[4.5344417,0.02905021,97.18453565],[4.53444118,0.02904849,97.18340175],[4.53444066,0.02904677,97.18226871],[4.53444013,0.02904504,97.18113653],[4.53443961,0.02904332,97.18000523],[4.53443909,0.02904159,97.17887479],[4.53443857,0.02903987,97.17774523],[4.53443805,0.02903815,97.17661655],[4.53443753,0.02903642,97.17548875],[4.534437,0.0290347,97.17436184],[4.53443648,0.02903297,97.17323581],[4.53443596,0.02903125,97.17211066],[4.53443544,0.02902952,97.17098641],[4.53443492,0.0290278,97.16986305],[4.53443439,0.02902608,97.16874059],[4.53443387,0.02902435,97.16761903],[4.53443335,0.02902263,97.16649837],[4.53443283,0.0290209,97.16537862],[4.5344323,0.02901918,97.16425977],[4.53443178,0.02901746,97.16314184],[4.53443126,0.02901573,97.16202482],[4.53443074,0.02901401,97.16090871],[4.53443021,0.02901228,97.15979352],[4.53442969,0.02901056,97.15867926],[4.53442917,0.02900884,97.15756592],[4.53442865,0.02900711,97.1564535],[4.53442812,0.02900539,97.15534202],[4.5344276,0.02900366,97.15423147],[4.53442708,0.02900194,97.15312185],[4.53442655,0.02900022,97.15201318],[4.53442603,0.02899849,97.15090544],[4.53442551,0.02899677,97.14979865],[4.53442498,0.02899505,97.1486928],[4.53442446,0.02899332,97.14758791],[4.53442393,0.0289916,97.14648396],[4.53442341,0.02898988,97.14538097],[4.53442289,0.02898815,97.14427894],[4.53442236,0.02898643,97.14317787],[4.53442184,0.02898471,97.14207776],[4.53442131,0.02898299,97.14097862],[4.53442079,0.02898127,97.13988045],[4.53442027,0.02897954,97.13878325],[4.53441974,0.02897782,97.13768703],[4.53441922,0.0289761,97.13659178],[4.53441869,0.02897437,97.13549751],[4.53441816,0.02897265,97.13440423],[4.53441764,0.02897093,97.13331193],[4.53441711,0.0289692,97.13222062],[4.53441709,0.02896912,97.13217057]],"type":"LineString"},"type":"feature","properties":{"successorId":-5,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":-5,"type":"border","predecessorId":-5}},{"geometry":{"coordinates":[[4.53571849,0.03349498,99.63226605],[4.53571802,0.03349324,99.63197014],[4.53571755,0.0334915,99.63167402],[4.53571708,0.03348976,99.63137767],[4.53571661,0.03348802,99.63108111],[4.53571613,0.03348628,99.63078431],[4.53571566,0.03348454,99.63048728],[4.53571519,0.0334828,99.63019002],[4.53571472,0.03348106,99.62989252],[4.53571425,0.03347932,99.62959477],[4.53571378,0.03347758,99.62929678],[4.53571331,0.03347584,99.62899854],[4.53571283,0.0334741,99.62870004],[4.53571236,0.03347236,99.62840128],[4.53571189,0.03347063,99.62810226],[4.53571142,0.03346889,99.62780297],[4.53571095,0.03346715,99.62750341],[4.53571048,0.03346541,99.62720357],[4.53571001,0.03346367,99.62690346],[4.53570953,0.03346193,99.62660306],[4.53570906,0.03346019,99.62630236],[4.53570859,0.03345845,99.62600136],[4.53570812,0.03345671,99.62570005],[4.53570765,0.03345497,99.62539843],[4.53570718,0.03345323,99.62509649],[4.53570671,0.03345149,99.62479421],[4.53570623,0.03344975,99.62449159],[4.53570576,0.03344801,99.62418863],[4.53570529,0.03344627,99.62388532],[4.53570482,0.03344454,99.62358164],[4.53570435,0.0334428,99.6232776],[4.53570387,0.03344106,99.62297318],[4.5357034,0.03343932,99.62266838],[4.53570293,0.03343758,99.62236319],[4.53570246,0.03343584,99.6220576],[4.53570199,0.0334341,99.6217516],[4.53570151,0.03343236,99.6214452],[4.53570104,0.03343062,99.62113837],[4.53570057,0.03342888,99.62083111],[4.5357001,0.03342714,99.62052342],[4.53569962,0.0334254,99.62021528],[4.53569915,0.03342366,99.6199067],[4.53569868,0.03342193,99.61959765],[4.53569821,0.03342019,99.61928814],[4.53569773,0.03341845,99.61897816],[4.53569726,0.03341671,99.61866768],[4.53569679,0.03341497,99.61835671],[4.53569631,0.03341323,99.61804523],[4.53569584,0.03341149,99.61773323],[4.53569537,0.03340975,99.61742071],[4.53569489,0.03340801,99.61710764],[4.53569442,0.03340627,99.61679403],[4.53569395,0.03340454,99.61647985],[4.53569347,0.0334028,99.61616511],[4.535693,0.03340106,99.61584978],[4.53569253,0.03339932,99.61553386],[4.53569205,0.03339758,99.61521734],[4.53569158,0.03339584,99.61490019],[4.5356911,0.0333941,99.61458241],[4.53569063,0.03339236,99.61426397],[4.53569015,0.03339063,99.61394487],[4.53568968,0.03338889,99.61362507],[4.5356892,0.03338715,99.61330456],[4.53568873,0.03338541,99.61298334],[4.53568825,0.03338367,99.61266137],[4.53568778,0.03338193,99.61233864],[4.5356873,0.03338019,99.61201514],[4.53568683,0.03337846,99.61169084],[4.53568635,0.03337672,99.61136575],[4.53568587,0.03337498,99.61103985],[4.5356854,0.03337324,99.61071317],[4.53568492,0.0333715,99.61038572],[4.53568445,0.03336976,99.61005751],[4.53568397,0.03336803,99.60972856],[4.53568349,0.03336629,99.60939887],[4.53568302,0.03336455,99.60906847],[4.53568254,0.03336281,99.60873736],[4.53568206,0.03336107,99.60840556],[4.53568158,0.03335934,99.60807308],[4.53568111,0.0333576,99.60773993],[4.53568063,0.03335586,99.60740613],[4.53568015,0.03335412,99.6070717],[4.53567967,0.03335239,99.60673663],[4.53567919,0.03335065,99.60640095],[4.53567872,0.03334891,99.60606467],[4.53567824,0.03334717,99.60572781],[4.53567776,0.03334543,99.60539037],[4.53567728,0.0333437,99.60505238],[4.5356768,0.03334196,99.60471384],[4.53567633,0.03334022,99.60437476],[4.53567585,0.03333848,99.60403517],[4.53567537,0.03333675,99.60369507],[4.53567489,0.03333501,99.60335448],[4.53567441,0.03333327,99.60301341],[4.53567393,0.03333153,99.60267188],[4.53567346,0.03332979,99.6023299],[4.53567298,0.03332806,99.60198748],[4.5356725,0.03332632,99.60164464],[4.53567202,0.03332458,99.60130138],[4.53567154,0.03332284,99.60095773],[4.53567106,0.03332111,99.6006137],[4.53567058,0.03331937,99.6002693],[4.53567011,0.03331763,99.59992455],[4.53566963,0.03331589,99.59957945],[4.53566915,0.03331416,99.59923403],[4.53566867,0.03331242,99.5988883],[4.53566819,0.03331068,99.59854226],[4.53566771,0.03330894,99.59819595],[4.53566724,0.0333072,99.59784936],[4.53566676,0.03330547,99.59750251],[4.53566628,0.03330373,99.59715542],[4.5356658,0.03330199,99.59680811],[4.53566532,0.03330025,99.59646058],[4.53566484,0.03329852,99.59611284],[4.53566437,0.03329678,99.59576493],[4.53566389,0.03329504,99.59541687],[4.53566341,0.0332933,99.59506866],[4.53566293,0.03329156,99.59472033],[4.53566246,0.03328983,99.59437188],[4.53566198,0.03328809,99.59402328],[4.5356615,0.03328635,99.59367451],[4.53566103,0.03328461,99.59332553],[4.53566055,0.03328287,99.59297632],[4.53566007,0.03328113,99.59262684],[4.53565959,0.0332794,99.59227707],[4.53565912,0.03327766,99.59192699],[4.53565864,0.03327592,99.5915766],[4.53565816,0.03327418,99.59122587],[4.53565769,0.03327244,99.5908748],[4.53565721,0.0332707,99.59052337],[4.53565673,0.03326897,99.59017157],[4.53565626,0.03326723,99.58981939],[4.53565578,0.03326549,99.58946681],[4.5356553,0.03326375,99.58911382],[4.53565483,0.03326201,99.58876041],[4.53565435,0.03326027,99.58840657],[4.53565388,0.03325854,99.58805227],[4.5356534,0.0332568,99.58769752],[4.53565292,0.03325506,99.58734229],[4.53565245,0.03325332,99.58698658],[4.53565197,0.03325158,99.58663036],[4.53565149,0.03324984,99.58627363],[4.53565102,0.03324811,99.58591637],[4.53565054,0.03324637,99.58555858],[4.53565006,0.03324463,99.58520023],[4.53564959,0.03324289,99.58484131],[4.53564911,0.03324115,99.58448181],[4.53564863,0.03323941,99.58412172],[4.53564816,0.03323768,99.58376103],[4.53564768,0.03323594,99.58339972],[4.5356472,0.0332342,99.58303777],[4.53564673,0.03323246,99.58267518],[4.53564625,0.03323072,99.58231193],[4.53564577,0.03322898,99.581948],[4.5356453,0.03322725,99.58158339],[4.53564482,0.03322551,99.58121808],[4.53564434,0.03322377,99.58085206],[4.53564387,0.03322203,99.58048532],[4.53564339,0.03322029,99.58011783],[4.53564291,0.03321855,99.5797496],[4.53564244,0.03321682,99.57938059],[4.53564196,0.03321508,99.57901081],[4.53564148,0.03321334,99.57864023],[4.535641,0.0332116,99.57826885],[4.53564053,0.03320986,99.57789665],[4.53564005,0.03320812,99.57752362],[4.53563957,0.03320639,99.57714974],[4.53563909,0.03320465,99.576775],[4.53563862,0.03320291,99.57639938],[4.53563814,0.03320117,99.57602288],[4.53563766,0.03319943,99.57564548],[4.53563718,0.0331977,99.57526716],[4.53563671,0.03319596,99.57488792],[4.53563623,0.03319422,99.57450773],[4.53563575,0.03319248,99.57412659],[4.53563527,0.03319074,99.57374448],[4.53563479,0.03318901,99.57336141],[4.53563431,0.03318727,99.5729774],[4.53563383,0.03318553,99.57259247],[4.53563335,0.03318379,99.57220664],[4.53563288,0.03318205,99.57181994],[4.5356324,0.03318032,99.57143239],[4.53563192,0.03317858,99.57104401],[4.53563144,0.03317684,99.57065482],[4.53563096,0.0331751,99.57026484],[4.53563048,0.03317336,99.56987408],[4.53563,0.03317163,99.56948254],[4.53562952,0.03316989,99.56909023],[4.53562904,0.03316815,99.56869715],[4.53562856,0.03316641,99.56830331],[4.53562808,0.03316468,99.56790872],[4.5356276,0.03316294,99.56751338],[4.53562712,0.0331612,99.56711729],[4.53562664,0.03315946,99.56672048],[4.53562616,0.03315773,99.56632293],[4.53562569,0.03315599,99.56592467],[4.53562521,0.03315425,99.56552568],[4.53562473,0.03315251,99.56512599],[4.53562425,0.03315077,99.5647256],[4.53562377,0.03314904,99.56432452],[4.53562329,0.0331473,99.56392276],[4.53562281,0.03314556,99.56352032],[4.53562233,0.03314382,99.5631172],[4.53562185,0.03314209,99.56271341],[4.53562137,0.03314035,99.56230893],[4.53562089,0.03313861,99.56190378],[4.53562041,0.03313687,99.56149796],[4.53561993,0.03313514,99.56109146],[4.53561945,0.0331334,99.56068429],[4.53561897,0.03313166,99.56027646],[4.53561849,0.03312992,99.55986795],[4.53561801,0.03312818,99.55945878],[4.53561753,0.03312645,99.55904894],[4.53561705,0.03312471,99.55863843],[4.53561657,0.03312297,99.55822726],[4.53561609,0.03312123,99.55781543],[4.53561561,0.03311949,99.55740294],[4.53561514,0.03311776,99.55698979],[4.53561466,0.03311602,99.55657599],[4.53561418,0.03311428,99.55616152],[4.5356137,0.03311254,99.55574639],[4.53561322,0.03311081,99.55533059],[4.53561274,0.03310907,99.5549141],[4.53561226,0.03310733,99.55449693],[4.53561178,0.03310559,99.55407905],[4.5356113,0.03310385,99.55366047],[4.53561082,0.03310212,99.55324117],[4.53561034,0.03310038,99.55282115],[4.53560986,0.03309864,99.55240039],[4.53560938,0.0330969,99.55197889],[4.53560891,0.03309516,99.55155664],[4.53560843,0.03309343,99.55113363],[4.53560795,0.03309169,99.55070986],[4.53560747,0.03308995,99.55028531],[4.53560699,0.03308821,99.54985997],[4.53560651,0.03308647,99.54943384],[4.53560603,0.03308474,99.5490069],[4.53560555,0.033083,99.54857916],[4.53560507,0.03308126,99.5481506],[4.53560459,0.03307952,99.54772121],[4.53560411,0.03307778,99.54729098],[4.53560364,0.03307605,99.5468599],[4.53560316,0.03307431,99.54642797],[4.53560268,0.03307257,99.54599518],[4.5356022,0.03307083,99.54556152],[4.53560172,0.03306909,99.54512698],[4.53560124,0.03306736,99.54469155],[4.53560076,0.03306562,99.54425522],[4.53560028,0.03306388,99.54381798],[4.5355998,0.03306214,99.54337983],[4.53559932,0.0330604,99.54294076],[4.53559884,0.03305867,99.54250075],[4.53559836,0.03305693,99.54205981],[4.53559788,0.03305519,99.54161791],[4.5355974,0.03305345,99.54117505],[4.53559692,0.03305172,99.54073123],[4.53559645,0.03304998,99.54028643],[4.53559597,0.03304824,99.53984065],[4.53559549,0.0330465,99.53939387],[4.53559501,0.03304476,99.53894609],[4.53559453,0.03304303,99.5384973],[4.53559405,0.03304129,99.53804749],[4.53559357,0.03303955,99.53759665],[4.53559309,0.03303781,99.53714477],[4.53559261,0.03303607,99.53669185],[4.53559213,0.03303434,99.53623787],[4.53559165,0.0330326,99.53578282],[4.53559117,0.03303086,99.53532672],[4.53559069,0.03302912,99.53486956],[4.53559021,0.03302739,99.53441137],[4.53558973,0.03302565,99.53395217],[4.53558925,0.03302391,99.53349198],[4.53558876,0.03302217,99.5330308],[4.53558828,0.03302043,99.53256865],[4.5355878,0.0330187,99.53210553],[4.53558732,0.03301696,99.53164143],[4.53558684,0.03301522,99.53117634],[4.53558636,0.03301348,99.53071027],[4.53558588,0.03301175,99.53024321],[4.5355854,0.03301001,99.52977516],[4.53558492,0.03300827,99.52930611],[4.53558444,0.03300653,99.52883606],[4.53558396,0.0330048,99.52836501],[4.53558348,0.03300306,99.52789295],[4.535583,0.03300132,99.52741988],[4.53558252,0.03299958,99.52694579],[4.53558204,0.03299784,99.52647069],[4.53558156,0.03299611,99.52599458],[4.53558108,0.03299437,99.52551747],[4.53558059,0.03299263,99.52503936],[4.53558011,0.03299089,99.52456027],[4.53557963,0.03298916,99.5240802],[4.53557915,0.03298742,99.52359915],[4.53557867,0.03298568,99.52311715],[4.53557819,0.03298394,99.52263419],[4.53557771,0.03298221,99.52215028],[4.53557723,0.03298047,99.52166544],[4.53557675,0.03297873,99.52117966],[4.53557627,0.03297699,99.52069296],[4.53557579,0.03297525,99.52020534],[4.53557531,0.03297352,99.51971681],[4.53557482,0.03297178,99.51922737],[4.53557434,0.03297004,99.51873701],[4.53557386,0.0329683,99.51824573],[4.53557338,0.03296657,99.51775354],[4.5355729,0.03296483,99.51726044],[4.53557242,0.03296309,99.51676641],[4.53557194,0.03296135,99.51627148],[4.53557146,0.03295961,99.51577563],[4.53557098,0.03295788,99.51527886],[4.5355705,0.03295614,99.51478118],[4.53557002,0.0329544,99.51428258],[4.53556954,0.03295266,99.51378306],[4.53556906,0.03295093,99.51328264],[4.53556858,0.03294919,99.51278129],[4.5355681,0.03294745,99.51227903],[4.53556762,0.03294571,99.51177586],[4.53556714,0.03294397,99.51127177],[4.53556666,0.03294224,99.51076676],[4.53556618,0.0329405,99.51026084],[4.5355657,0.03293876,99.509754],[4.53556522,0.03293702,99.50924623],[4.53556474,0.03293529,99.50873751],[4.53556426,0.03293355,99.50822782],[4.53556378,0.03293181,99.50771714],[4.5355633,0.03293007,99.50720545],[4.53556282,0.03292833,99.50669273],[4.53556234,0.0329266,99.50617895],[4.53556186,0.03292486,99.50566411],[4.53556138,0.03292312,99.50514817],[4.5355609,0.03292138,99.50463113],[4.53556042,0.03291964,99.50411295],[4.53555994,0.03291791,99.50359362],[4.53555946,0.03291617,99.50307313],[4.53555898,0.03291443,99.50255143],[4.53555849,0.03291269,99.50202853],[4.53555801,0.03291095,99.5015044],[4.53555753,0.03290922,99.50097901],[4.53555705,0.03290748,99.50045235],[4.53555657,0.03290574,99.4999244],[4.53555609,0.032904,99.49939514],[4.53555561,0.03290227,99.49886454],[4.53555513,0.03290053,99.49833259],[4.53555465,0.03289879,99.49779927],[4.53555417,0.03289705,99.49726455],[4.53555369,0.03289532,99.49672842],[4.53555321,0.03289358,99.49619085],[4.53555273,0.03289184,99.49565183],[4.53555224,0.0328901,99.49511134],[4.53555176,0.03288837,99.49456936],[4.53555128,0.03288663,99.49402592],[4.5355508,0.03288489,99.49348102],[4.53555032,0.03288315,99.49293466],[4.53554984,0.03288142,99.49238686],[4.53554935,0.03287968,99.49183763],[4.53554887,0.03287794,99.49128698],[4.53554839,0.0328762,99.49073492],[4.53554791,0.03287447,99.49018146],[4.53554743,0.03287273,99.4896266],[4.53554694,0.03287099,99.48907036],[4.53554646,0.03286926,99.48851274],[4.53554598,0.03286752,99.48795376],[4.5355455,0.03286578,99.48739343],[4.53554501,0.03286404,99.48683175],[4.53554453,0.03286231,99.48626874],[4.53554405,0.03286057,99.48570441],[4.53554356,0.03285883,99.48513876],[4.53554308,0.0328571,99.4845718],[4.5355426,0.03285536,99.48400355],[4.53554211,0.03285362,99.48343402],[4.53554163,0.03285189,99.4828632],[4.53554115,0.03285015,99.48229113],[4.53554067,0.03284841,99.48171779],[4.53554018,0.03284667,99.48114322],[4.5355397,0.03284494,99.4805674],[4.53553922,0.0328432,99.47999036],[4.53553873,0.03284146,99.4794121],[4.53553825,0.03283973,99.47883264],[4.53553777,0.03283799,99.47825198],[4.53553728,0.03283625,99.47767013],[4.5355368,0.03283452,99.4770871],[4.53553632,0.03283278,99.47650291],[4.53553583,0.03283104,99.47591756],[4.53553535,0.03282931,99.47533106],[4.53553487,0.03282757,99.47474343],[4.53553438,0.03282583,99.47415467],[4.5355339,0.0328241,99.47356479],[4.53553342,0.03282236,99.4729738],[4.53553293,0.03282062,99.47238171],[4.53553245,0.03281888,99.47178853],[4.53553197,0.03281715,99.47119426],[4.53553148,0.03281541,99.47059888],[4.535531,0.03281367,99.47000241],[4.53553052,0.03281194,99.46940483],[4.53553004,0.0328102,99.46880616],[4.53552955,0.03280846,99.4682064],[4.53552907,0.03280673,99.46760556],[4.53552859,0.03280499,99.46700367],[4.5355281,0.03280325,99.46640074],[4.53552762,0.03280151,99.46579679],[4.53552714,0.03279978,99.46519184],[4.53552666,0.03279804,99.46458586],[4.53552617,0.0327963,99.46397885],[4.53552569,0.03279457,99.4633708],[4.53552521,0.03279283,99.4627617],[4.53552473,0.03279109,99.46215153],[4.53552425,0.03278936,99.46154029],[4.53552376,0.03278762,99.46092796],[4.53552328,0.03278588,99.46031453],[4.5355228,0.03278414,99.4597],[4.53552232,0.03278241,99.45908435],[4.53552184,0.03278067,99.45846756],[4.53552135,0.03277893,99.45784964],[4.53552087,0.0327772,99.45723056],[4.53552039,0.03277546,99.45661032],[4.53551991,0.03277372,99.45598891],[4.53551943,0.03277198,99.45536631],[4.53551894,0.03277025,99.45474252],[4.53551846,0.03276851,99.45411751],[4.53551798,0.03276677,99.45349129],[4.5355175,0.03276503,99.45286384],[4.53551702,0.0327633,99.45223515],[4.53551654,0.03276156,99.45160521],[4.53551605,0.03275982,99.450974],[4.53551557,0.03275809,99.45034153],[4.53551509,0.03275635,99.44970776],[4.53551461,0.03275461,99.44907271],[4.53551413,0.03275287,99.44843634],[4.53551365,0.03275114,99.44779866],[4.53551316,0.0327494,99.44715965],[4.53551268,0.03274766,99.44651929],[4.5355122,0.03274593,99.44587759],[4.53551172,0.03274419,99.44523453],[4.53551124,0.03274245,99.44459009],[4.53551076,0.03274071,99.44394427],[4.53551027,0.03273898,99.44329705],[4.53550979,0.03273724,99.44264843],[4.53550931,0.0327355,99.44199839],[4.53550883,0.03273377,99.44134692],[4.53550835,0.03273203,99.44069401],[4.53550786,0.03273029,99.44003966],[4.53550738,0.03272855,99.43938384],[4.5355069,0.03272682,99.43872654],[4.53550642,0.03272508,99.43806777],[4.53550594,0.03272334,99.4374075],[4.53550545,0.03272161,99.43674572],[4.53550497,0.03271987,99.43608243],[4.53550449,0.03271813,99.4354176],[4.53550401,0.0327164,99.43475124],[4.53550352,0.03271466,99.43408333],[4.53550304,0.03271292,99.43341386],[4.53550256,0.03271118,99.43274281],[4.53550208,0.03270945,99.43207019],[4.53550159,0.03270771,99.43139597],[4.53550111,0.03270597,99.43072017],[4.53550063,0.03270424,99.43004279],[4.53550015,0.0327025,99.42936384],[4.53549966,0.03270076,99.4286833],[4.53549918,0.03269903,99.4280012],[4.5354987,0.03269729,99.42731753],[4.53549821,0.03269555,99.42663229],[4.53549773,0.03269382,99.42594549],[4.53549725,0.03269208,99.42525714],[4.53549676,0.03269034,99.42456722],[4.53549628,0.03268861,99.42387576],[4.5354958,0.03268687,99.42318273],[4.53549531,0.03268513,99.42248815],[4.53549483,0.0326834,99.42179198],[4.53549435,0.03268166,99.42109423],[4.53549386,0.03267992,99.4203949],[4.53549338,0.03267819,99.41969396],[4.53549289,0.03267645,99.41899141],[4.53549241,0.03267471,99.41828725],[4.53549193,0.03267298,99.41758148],[4.53549144,0.03267124,99.41687411],[4.53549096,0.03266951,99.41616517],[4.53549047,0.03266777,99.41545467],[4.53548999,0.03266603,99.41474262],[4.53548951,0.0326643,99.41402901],[4.53548902,0.03266256,99.41331386],[4.53548854,0.03266082,99.41259715],[4.53548805,0.03265909,99.41187888],[4.53548757,0.03265735,99.41115907],[4.53548708,0.03265561,99.41043771],[4.5354866,0.03265388,99.4097148],[4.53548612,0.03265214,99.40899035],[4.53548563,0.03265041,99.40826434],[4.53548515,0.03264867,99.40753679],[4.53548466,0.03264693,99.4068077],[4.53548418,0.0326452,99.40607706],[4.53548369,0.03264346,99.40534488],[4.53548321,0.03264172,99.40461115],[4.53548272,0.03263999,99.40387588],[4.53548224,0.03263825,99.40313907],[4.53548175,0.03263652,99.40240072],[4.53548127,0.03263478,99.40166083],[4.53548078,0.03263304,99.40091941],[4.5354803,0.03263131,99.40017644],[4.53547981,0.03262957,99.39943194],[4.53547933,0.03262784,99.3986859],[4.53547884,0.0326261,99.39793832],[4.53547836,0.03262436,99.39718921],[4.53547787,0.03262263,99.39643857],[4.53547739,0.03262089,99.39568639],[4.53547691,0.03261915,99.39493269],[4.53547642,0.03261742,99.39417744],[4.53547594,0.03261568,99.39342067],[4.53547545,0.03261395,99.39266237],[4.53547497,0.03261221,99.39190254],[4.53547448,0.03261047,99.39114119],[4.535474,0.03260874,99.3903783],[4.53547351,0.032607,99.38961388],[4.53547303,0.03260527,99.38884794],[4.53547254,0.03260353,99.38808047],[4.53547206,0.03260179,99.38731147],[4.53547157,0.03260006,99.38654095],[4.53547108,0.03259832,99.38576889],[4.5354706,0.03259659,99.38499531],[4.53547011,0.03259485,99.3842202],[4.53546963,0.03259311,99.38344356],[4.53546914,0.03259138,99.38266539],[4.53546866,0.03258964,99.38188569],[4.53546817,0.03258791,99.38110448],[4.53546769,0.03258617,99.38032175],[4.5354672,0.03258443,99.37953752],[4.53546672,0.0325827,99.37875178],[4.53546623,0.03258096,99.37796455],[4.53546575,0.03257923,99.37717584],[4.53546526,0.03257749,99.37638563],[4.53546478,0.03257575,99.37559393],[4.53546429,0.03257402,99.37480074],[4.53546381,0.03257228,99.37400604],[4.53546332,0.03257055,99.37320983],[4.53546284,0.03256881,99.37241215],[4.53546235,0.03256707,99.37161298],[4.53546187,0.03256534,99.37081236],[4.53546138,0.0325636,99.37001029],[4.5354609,0.03256187,99.36920679],[4.53546041,0.03256013,99.36840186],[4.53545993,0.03255839,99.36759553],[4.53545944,0.03255666,99.3667878],[4.53545896,0.03255492,99.36597869],[4.53545847,0.03255319,99.36516821],[4.53545799,0.03255145,99.36435638],[4.5354575,0.03254971,99.36354321],[4.53545702,0.03254798,99.3627287],[4.53545653,0.03254624,99.36191289],[4.53545605,0.03254451,99.36109577],[4.53545556,0.03254277,99.36027736],[4.53545508,0.03254103,99.35945767],[4.5354546,0.0325393,99.35863673],[4.53545411,0.03253756,99.35781453],[4.53545363,0.03253583,99.35699109],[4.53545314,0.03253409,99.3561664],[4.53545266,0.03253235,99.35534046],[4.53545217,0.03253062,99.35451327],[4.53545169,0.03252888,99.35368483],[4.5354512,0.03252714,99.35285515],[4.53545072,0.03252541,99.35202421],[4.53545024,0.03252367,99.35119203],[4.53544975,0.03252194,99.3503586],[4.53544927,0.0325202,99.34952392],[4.53544878,0.03251846,99.34868799],[4.5354483,0.03251673,99.3478508],[4.53544781,0.03251499,99.34701237],[4.53544733,0.03251326,99.34617269],[4.53544685,0.03251152,99.34533176],[4.53544636,0.03250978,99.34448958],[4.53544588,0.03250805,99.34364615],[4.53544539,0.03250631,99.34280147],[4.53544491,0.03250457,99.34195554],[4.53544443,0.03250284,99.34110836],[4.53544394,0.0325011,99.34025994],[4.53544346,0.03249937,99.33941029],[4.53544298,0.03249763,99.33855943],[4.53544249,0.03249589,99.33770735],[4.53544201,0.03249416,99.33685407],[4.53544152,0.03249242,99.33599961],[4.53544104,0.03249068,99.33514396],[4.53544056,0.03248895,99.33428714],[4.53544007,0.03248721,99.33342916],[4.53543959,0.03248548,99.33257002],[4.53543911,0.03248374,99.33170975],[4.53543862,0.032482,99.33084834],[4.53543814,0.03248027,99.32998579],[4.53543766,0.03247853,99.32912207],[4.53543717,0.03247679,99.32825708],[4.53543669,0.03247506,99.32739072],[4.53543621,0.03247332,99.3265229],[4.53543572,0.03247158,99.32565351],[4.53543524,0.03246985,99.32478245],[4.53543475,0.03246811,99.32390964],[4.53543427,0.03246638,99.32303497],[4.53543379,0.03246464,99.32215833],[4.5354333,0.0324629,99.32127964],[4.53543282,0.03246117,99.3203988],[4.53543233,0.03245943,99.31951571],[4.53543185,0.0324577,99.31863026],[4.53543136,0.03245596,99.31774237],[4.53543087,0.03245423,99.31685193],[4.53543039,0.03245249,99.31595914],[4.5354299,0.03245076,99.31506447],[4.53542941,0.03244902,99.31416845],[4.53542893,0.03244728,99.31327183],[4.53542844,0.03244555,99.31237542],[4.53542795,0.03244381,99.31148002],[4.53542747,0.03244208,99.31058643],[4.53542699,0.03244034,99.30969547],[4.5354265,0.0324386,99.30880792],[4.53542602,0.03243687,99.30792461],[4.53542555,0.03243513,99.3070453],[4.53542507,0.03243339,99.30616576],[4.53542459,0.03243165,99.30528072],[4.5354241,0.03242992,99.30438491],[4.53542362,0.03242818,99.30347308],[4.53542312,0.03242645,99.30253898],[4.53542262,0.03242472,99.30157331],[4.53542211,0.03242299,99.30058619],[4.5354216,0.03242126,99.29960807],[4.53542111,0.03241953,99.298674],[4.53542065,0.03241779,99.29783391],[4.53542021,0.03241603,99.2970854],[4.53541979,0.03241428,99.29636352],[4.53541931,0.03241255,99.29544617],[4.53541862,0.03241087,99.29390538],[4.53541816,0.03240912,99.29307131],[4.53541779,0.03240736,99.29250304],[4.53541729,0.03240562,99.29154537],[4.53541677,0.0324039,99.29052278],[4.53541628,0.03240216,99.28957458],[4.53541581,0.03240042,99.28868555],[4.53541533,0.03239869,99.28779336],[4.53541485,0.03239695,99.28687175],[4.53541436,0.03239522,99.28593045],[4.53541387,0.03239348,99.28498083],[4.53541338,0.03239175,99.28403388],[4.53541289,0.03239001,99.28309376],[4.5354124,0.03238828,99.28215839],[4.53541192,0.03238654,99.28122547],[4.53541143,0.03238481,99.28029271],[4.53541095,0.03238307,99.27935787],[4.53541046,0.03238133,99.27841994],[4.53540998,0.0323796,99.27747917],[4.53540949,0.03237786,99.27653593],[4.535409,0.03237613,99.2755906],[4.53540852,0.03237439,99.27464359],[4.53540803,0.03237266,99.27369529],[4.53540754,0.03237092,99.27274608],[4.53540706,0.03236919,99.27179636],[4.53540657,0.03236745,99.27084651],[4.53540609,0.03236572,99.26989664],[4.5354056,0.03236398,99.26894662],[4.53540512,0.03236224,99.2679963],[4.53540463,0.03236051,99.26704554],[4.53540415,0.03235877,99.26609419],[4.53540366,0.03235704,99.26514211],[4.53540318,0.0323553,99.26418916],[4.53540269,0.03235357,99.26323517],[4.53540221,0.03235183,99.26228002],[4.53540172,0.03235009,99.26132356],[4.53540124,0.03234836,99.26036564],[4.53540075,0.03234662,99.25940613],[4.53540027,0.03234489,99.25844493],[4.53539978,0.03234315,99.25748195],[4.5353993,0.03234142,99.25651723],[4.53539881,0.03233968,99.25555079],[4.53539833,0.03233794,99.25458266],[4.53539784,0.03233621,99.25361288],[4.53539736,0.03233447,99.25264146],[4.53539687,0.03233274,99.25166845],[4.53539639,0.032331,99.25069387],[4.5353959,0.03232927,99.24971775],[4.53539541,0.03232753,99.24874013],[4.53539493,0.0323258,99.24776104],[4.53539444,0.03232406,99.2467805],[4.53539395,0.03232233,99.24579855],[4.53539347,0.03232059,99.24481521],[4.53539298,0.03231886,99.24383052],[4.53539249,0.03231712,99.24284451],[4.53539201,0.03231539,99.24185721],[4.53539152,0.03231365,99.24086864],[4.53539103,0.03231192,99.23987883],[4.53539055,0.03231018,99.23888778],[4.53539006,0.03230844,99.23789553],[4.53538957,0.03230671,99.23690212],[4.53538909,0.03230497,99.23590762],[4.5353886,0.03230324,99.23491205],[4.53538811,0.0323015,99.23391549],[4.53538763,0.03229977,99.23291798],[4.53538714,0.03229803,99.23191956],[4.53538665,0.0322963,99.23092029],[4.53538617,0.03229456,99.2299202],[4.53538568,0.03229283,99.22891927],[4.53538519,0.03229109,99.2279175],[4.53538471,0.03228936,99.22691488],[4.53538422,0.03228762,99.22591137],[4.53538374,0.03228589,99.22490698],[4.53538325,0.03228415,99.22390169],[4.53538276,0.03228242,99.22289548],[4.53538228,0.03228068,99.22188833],[4.53538179,0.03227895,99.22088025],[4.53538131,0.03227721,99.2198712],[4.53538082,0.03227547,99.21886119],[4.53538034,0.03227374,99.21785018],[4.53537985,0.032272,99.21683817],[4.53537937,0.03227027,99.21582515],[4.53537888,0.03226853,99.2148111],[4.5353784,0.0322668,99.21379601],[4.53537791,0.03226506,99.21277986],[4.53537743,0.03226333,99.21176264],[4.53537694,0.03226159,99.2107443],[4.53537646,0.03225986,99.20972484],[4.53537597,0.03225812,99.20870423],[4.53537549,0.03225638,99.20768244],[4.535375,0.03225465,99.20665945],[4.53537452,0.03225291,99.20563524],[4.53537403,0.03225118,99.20460978],[4.53537355,0.03224944,99.20358304],[4.53537306,0.03224771,99.20255501],[4.53537258,0.03224597,99.20152566],[4.53537209,0.03224424,99.20049496],[4.53537161,0.0322425,99.19946289],[4.53537112,0.03224076,99.19842943],[4.53537064,0.03223903,99.19739455],[4.53537015,0.03223729,99.19635823],[4.53536966,0.03223556,99.19532045],[4.53536918,0.03223382,99.19428117],[4.53536869,0.03223209,99.19324039],[4.53536821,0.03223035,99.19219806],[4.53536772,0.03222862,99.19115418],[4.53536723,0.03222688,99.19010871],[4.53536675,0.03222515,99.18906163],[4.53536626,0.03222341,99.18801292],[4.53536577,0.03222168,99.18696257],[4.53536529,0.03221994,99.18591061],[4.5353648,0.03221821,99.18485708],[4.53536431,0.03221647,99.18380202],[4.53536383,0.03221474,99.18274546],[4.53536334,0.032213,99.18168743],[4.53536285,0.03221127,99.18062796],[4.53536236,0.03220953,99.17956711],[4.53536188,0.0322078,99.17850491],[4.53536139,0.03220606,99.1774414],[4.5353609,0.03220433,99.17637663],[4.53536041,0.03220259,99.17531062],[4.53535992,0.03220086,99.17424343],[4.53535944,0.03219912,99.17317509],[4.53535895,0.03219739,99.17210564],[4.53535846,0.03219565,99.17103506],[4.53535797,0.03219392,99.16996336],[4.53535749,0.03219218,99.16889051],[4.535357,0.03219045,99.1678165],[4.53535651,0.03218871,99.16674134],[4.53535602,0.03218698,99.16566501],[4.53535553,0.03218524,99.16458751],[4.53535505,0.03218351,99.16350883],[4.53535456,0.03218177,99.16242895],[4.53535407,0.03218004,99.16134788],[4.53535358,0.03217831,99.16026561],[4.5353531,0.03217657,99.15918212],[4.53535261,0.03217484,99.15809742],[4.53535212,0.0321731,99.15701149],[4.53535163,0.03217137,99.15592432],[4.53535114,0.03216963,99.15483591],[4.53535066,0.0321679,99.15374626],[4.53535017,0.03216616,99.15265535],[4.53534968,0.03216443,99.15156317],[4.53534919,0.03216269,99.15046973],[4.5353487,0.03216096,99.149375],[4.53534822,0.03215922,99.14827899],[4.53534773,0.03215749,99.14718169],[4.53534724,0.03215575,99.14608309],[4.53534675,0.03215402,99.14498318],[4.53534626,0.03215228,99.14388195],[4.53534577,0.03215055,99.1427794],[4.53534529,0.03214881,99.14167552],[4.5353448,0.03214708,99.14057031],[4.53534431,0.03214535,99.13946375],[4.53534382,0.03214361,99.13835584],[4.53534333,0.03214188,99.13724656],[4.53534284,0.03214014,99.13613593],[4.53534235,0.03213841,99.13502392],[4.53534186,0.03213667,99.13391052],[4.53534138,0.03213494,99.13279574],[4.53534089,0.0321332,99.13167956],[4.5353404,0.03213147,99.13056198],[4.53533991,0.03212974,99.12944299],[4.53533942,0.032128,99.12832258],[4.53533893,0.03212627,99.12720075],[4.53533844,0.03212453,99.12607753],[4.53533795,0.0321228,99.12495296],[4.53533746,0.03212106,99.12382704],[4.53533697,0.03211933,99.12269981],[4.53533648,0.0321176,99.12157127],[4.53533599,0.03211586,99.12044143],[4.5353355,0.03211413,99.11931032],[4.53533501,0.03211239,99.11817794],[4.53533452,0.03211066,99.11704431],[4.53533403,0.03210892,99.11590944],[4.53533354,0.03210719,99.11477333],[4.53533305,0.03210546,99.113636],[4.53533256,0.03210372,99.11249745],[4.53533207,0.03210199,99.1113577],[4.53533158,0.03210025,99.11021675],[4.53533109,0.03209852,99.10907461],[4.5353306,0.03209679,99.10793129],[4.53533011,0.03209505,99.1067868],[4.53532962,0.03209332,99.10564115],[4.53532913,0.03209158,99.10449436],[4.53532864,0.03208985,99.10334641],[4.53532815,0.03208811,99.10219734],[4.53532766,0.03208638,99.10104714],[4.53532717,0.03208465,99.09989583],[4.53532668,0.03208291,99.09874341],[4.53532619,0.03208118,99.0975899],[4.5353257,0.03207944,99.0964353],[4.53532521,0.03207771,99.09527962],[4.53532472,0.03207598,99.09412288],[4.53532423,0.03207424,99.09296507],[4.53532374,0.03207251,99.09180622],[4.53532325,0.03207077,99.09064632],[4.53532276,0.03206904,99.08948539],[4.53532227,0.0320673,99.08832344],[4.53532178,0.03206557,99.08716048],[4.53532129,0.03206384,99.08599651],[4.5353208,0.0320621,99.08483155],[4.53532031,0.03206037,99.0836656],[4.53531982,0.03205863,99.08249868],[4.53531933,0.0320569,99.08133079],[4.53531884,0.03205516,99.08016194],[4.53531835,0.03205343,99.07899214],[4.53531786,0.0320517,99.0778214],[4.53531737,0.03204996,99.07664973],[4.53531688,0.03204823,99.07547714],[4.53531639,0.03204649,99.07430364],[4.5353159,0.03204476,99.07312923],[4.53531541,0.03204302,99.07195393],[4.53531492,0.03204129,99.07077775],[4.53531443,0.03203955,99.06960069],[4.53531394,0.03203782,99.06842276],[4.53531346,0.03203609,99.06724398],[4.53531297,0.03203435,99.06606435],[4.53531248,0.03203262,99.06488389],[4.53531199,0.03203088,99.06370259],[4.5353115,0.03202915,99.06252048],[4.53531101,0.03202741,99.06133756],[4.53531052,0.03202568,99.06015382],[4.53531004,0.03202394,99.05896926],[4.53530955,0.03202221,99.05778387],[4.53530906,0.03202047,99.05659764],[4.53530857,0.03201874,99.05541058],[4.53530808,0.032017,99.05422268],[4.5353076,0.03201527,99.05303393],[4.53530711,0.03201353,99.05184432],[4.53530662,0.0320118,99.05065386],[4.53530613,0.03201006,99.04946254],[4.53530565,0.03200833,99.04827035],[4.53530516,0.03200659,99.04707729],[4.53530467,0.03200486,99.04588336],[4.53530418,0.03200312,99.04468854],[4.5353037,0.03200139,99.04349284],[4.53530321,0.03199965,99.04229625],[4.53530272,0.03199792,99.04109877],[4.53530224,0.03199618,99.03990038],[4.53530175,0.03199445,99.0387011],[4.53530126,0.03199271,99.0375009],[4.53530077,0.03199098,99.03629979],[4.53530029,0.03198924,99.03509776],[4.5352998,0.03198751,99.03389481],[4.53529931,0.03198577,99.03269093],[4.53529882,0.03198404,99.03148612],[4.53529834,0.0319823,99.03028038],[4.53529785,0.03198057,99.02907369],[4.53529736,0.03197883,99.02786605],[4.53529688,0.0319771,99.02665746],[4.53529639,0.03197536,99.02544792],[4.5352959,0.03197363,99.02423741],[4.53529541,0.03197189,99.02302594],[4.53529493,0.03197016,99.0218135],[4.53529444,0.03196842,99.02060007],[4.53529395,0.03196669,99.01938566],[4.53529346,0.03196495,99.01817026],[4.53529297,0.03196322,99.01695386],[4.53529249,0.03196148,99.01573644],[4.535292,0.03195975,99.01451801],[4.53529151,0.03195801,99.01329856],[4.53529102,0.03195628,99.01207808],[4.53529053,0.03195455,99.01085656],[4.53529005,0.03195281,99.009634],[4.53528956,0.03195108,99.00841038],[4.53528907,0.03194934,99.0071857],[4.53528858,0.03194761,99.00595996],[4.53528809,0.03194587,99.00473314],[4.5352876,0.03194414,99.00350525],[4.53528711,0.0319424,99.00227626],[4.53528662,0.03194067,99.00104618],[4.53528613,0.03193893,98.99981499],[4.53528564,0.0319372,98.9985827],[4.53528516,0.03193547,98.99734928],[4.53528467,0.03193373,98.99611475],[4.53528418,0.031932,98.99487912],[4.53528369,0.03193026,98.99364239],[4.53528319,0.03192853,98.99240457],[4.5352827,0.03192679,98.99116568],[4.53528221,0.03192506,98.98992574],[4.53528172,0.03192333,98.98868474],[4.53528123,0.03192159,98.98744273],[4.53528074,0.03191986,98.98619973],[4.53528025,0.03191812,98.98495576],[4.53527976,0.03191639,98.98371084],[4.53527927,0.03191466,98.98246501],[4.53527878,0.03191292,98.9812183],[4.53527828,0.03191119,98.97997071],[4.53527779,0.03190946,98.97872229],[4.5352773,0.03190772,98.97747306],[4.53527681,0.03190599,98.97622303],[4.53527632,0.03190425,98.97497224],[4.53527582,0.03190252,98.9737207],[4.53527533,0.03190079,98.97246844],[4.53527484,0.03189905,98.97121546],[4.53527435,0.03189732,98.96996179],[4.53527385,0.03189559,98.96870745],[4.53527336,0.03189385,98.96745247],[4.53527287,0.03189212,98.96619685],[4.53527238,0.03189039,98.96494062],[4.53527188,0.03188865,98.9636838],[4.53527139,0.03188692,98.9624264],[4.5352709,0.03188519,98.96116845],[4.5352704,0.03188345,98.95990997],[4.53526991,0.03188172,98.95865098],[4.53526942,0.03187999,98.95739149],[4.53526893,0.03187825,98.95613153],[4.53526843,0.03187652,98.95487111],[4.53526794,0.03187479,98.95361026],[4.53526745,0.03187305,98.95234899],[4.53526695,0.03187132,98.95108732],[4.53526646,0.03186959,98.94982528],[4.53526597,0.03186785,98.94856288],[4.53526547,0.03186612,98.94730015],[4.53526498,0.03186438,98.9460371],[4.53526449,0.03186265,98.94477375],[4.53526399,0.03186092,98.94351012],[4.5352635,0.03185918,98.94224624],[4.53526301,0.03185745,98.94098211],[4.53526251,0.03185572,98.93971777],[4.53526202,0.03185398,98.93845323],[4.53526153,0.03185225,98.9371885],[4.53526103,0.03185052,98.93592362],[4.53526054,0.03184878,98.9346586],[4.53526005,0.03184705,98.93339346],[4.53525955,0.03184532,98.93212821],[4.53525906,0.03184358,98.93086289],[4.53525857,0.03184185,98.9295975],[4.53525808,0.03184012,98.92833208],[4.53525758,0.03183838,98.92706663],[4.53525709,0.03183665,98.92580118],[4.5352566,0.03183492,98.92453575],[4.5352561,0.03183318,98.92327035],[4.53525561,0.03183145,98.92200502],[4.53525512,0.03182972,98.92073976],[4.53525463,0.03182798,98.9194746],[4.53525413,0.03182625,98.91820955],[4.53525364,0.03182452,98.91694464],[4.53525315,0.03182278,98.91567989],[4.53525266,0.03182105,98.91441531],[4.53525216,0.03181932,98.91315094],[4.53525167,0.03181758,98.91188677],[4.53525118,0.03181585,98.91062285],[4.53525069,0.03181411,98.90935917],[4.5352502,0.03181238,98.90809578],[4.53524971,0.03181065,98.90683268],[4.53524921,0.03180891,98.90556991],[4.53524872,0.03180718,98.90430749],[4.53524823,0.03180544,98.90304544],[4.53524774,0.03180371,98.90178381],[4.53524725,0.03180198,98.90052261],[4.53524676,0.03180024,98.89926187],[4.53524627,0.03179851,98.89800162],[4.53524578,0.03179677,98.89674189],[4.53524529,0.03179504,98.8954827],[4.5352448,0.03179331,98.89422409],[4.53524431,0.03179157,98.89296607],[4.53524382,0.03178984,98.89170868],[4.53524333,0.0317881,98.89045195],[4.53524284,0.03178637,98.88919588],[4.53524235,0.03178463,98.88794049],[4.53524186,0.0317829,98.88668578],[4.53524137,0.03178117,98.88543175],[4.53524088,0.03177943,98.88417841],[4.53524039,0.0317777,98.88292576],[4.5352399,0.03177596,98.8816738],[4.53523941,0.03177423,98.88042251],[4.53523893,0.03177249,98.87917187],[4.53523844,0.03177076,98.87792189],[4.53523795,0.03176902,98.87667253],[4.53523746,0.03176729,98.8754238],[4.53523697,0.03176555,98.87417566],[4.53523649,0.03176382,98.87292812],[4.535236,0.03176208,98.87168115],[4.53523551,0.03176035,98.87043474],[4.53523502,0.03175861,98.86918888],[4.53523454,0.03175688,98.86794356],[4.53523405,0.03175514,98.86669876],[4.53523356,0.03175341,98.86545446],[4.53523308,0.03175167,98.86421065],[4.53523259,0.03174994,98.86296733],[4.5352321,0.0317482,98.86172448],[4.53523162,0.03174647,98.8604821],[4.53523113,0.03174473,98.85924018],[4.53523064,0.03174299,98.85799872],[4.53523016,0.03174126,98.8567577],[4.53522967,0.03173952,98.85551713],[4.53522918,0.03173779,98.85427699],[4.5352287,0.03173605,98.85303729],[4.53522821,0.03173432,98.851798],[4.53522772,0.03173258,98.85055913],[4.53522724,0.03173085,98.84932066],[4.53522675,0.03172911,98.8480826],[4.53522626,0.03172738,98.84684494],[4.53522578,0.03172564,98.84560766],[4.53522529,0.03172391,98.84437076],[4.53522481,0.03172217,98.84313424],[4.53522432,0.03172044,98.84189808],[4.53522383,0.0317187,98.84066229],[4.53522335,0.03171696,98.83942685],[4.53522286,0.03171523,98.83819176],[4.53522237,0.03171349,98.83695702],[4.53522189,0.03171176,98.8357226],[4.5352214,0.03171002,98.83448851],[4.53522091,0.03170829,98.83325475],[4.53522043,0.03170655,98.83202129],[4.53521994,0.03170482,98.83078815],[4.53521945,0.03170308,98.8295553],[4.53521896,0.03170135,98.82832275],[4.53521848,0.03169961,98.82709049],[4.53521799,0.03169788,98.8258585],[4.5352175,0.03169614,98.82462679],[4.53521701,0.03169441,98.82339535],[4.53521653,0.03169267,98.82216416],[4.53521604,0.03169094,98.82093323],[4.53521555,0.0316892,98.81970254],[4.53521506,0.03168747,98.8184721],[4.53521458,0.03168573,98.81724188],[4.53521409,0.031684,98.81601189],[4.5352136,0.03168226,98.81478212],[4.53521311,0.03168053,98.81355256],[4.53521262,0.03167879,98.81232321],[4.53521213,0.03167706,98.81109406],[4.53521164,0.03167532,98.80986509],[4.53521116,0.03167359,98.80863632],[4.53521067,0.03167185,98.80740772],[4.53521018,0.03167012,98.80617929],[4.53520969,0.03166839,98.80495103],[4.5352092,0.03166665,98.80372292],[4.53520871,0.03166492,98.80249497],[4.53520822,0.03166318,98.80126716],[4.53520773,0.03166145,98.80003949],[4.53520724,0.03165971,98.79881195],[4.53520675,0.03165798,98.79758453],[4.53520625,0.03165625,98.79635722],[4.53520576,0.03165451,98.79513001],[4.53520527,0.03165278,98.79390289],[4.53520478,0.03165104,98.79267586],[4.53520429,0.03164931,98.79144893],[4.5352038,0.03164758,98.79022211],[4.5352033,0.03164584,98.7889954],[4.53520281,0.03164411,98.7877688],[4.53520232,0.03164238,98.78654233],[4.53520182,0.03164064,98.78531603],[4.53520133,0.03163891,98.78408991],[4.53520084,0.03163718,98.78286399],[4.53520034,0.03163544,98.78163832],[4.53519985,0.03163371,98.7804129],[4.53519936,0.03163198,98.77918776],[4.53519886,0.03163024,98.77796294],[4.53519837,0.03162851,98.77673844],[4.53519787,0.03162678,98.7755143],[4.53519738,0.03162504,98.77429055],[4.53519688,0.03162331,98.7730672],[4.53519639,0.03162158,98.77184429],[4.53519589,0.03161985,98.77062183],[4.5351954,0.03161811,98.76939985],[4.5351949,0.03161638,98.76817838],[4.53519441,0.03161465,98.76695744],[4.53519391,0.03161291,98.76573705],[4.53519341,0.03161118,98.76451725],[4.53519292,0.03160945,98.76329805],[4.53519242,0.03160772,98.76207948],[4.53519192,0.03160598,98.76086156],[4.53519143,0.03160425,98.75964433],[4.53519093,0.03160252,98.75842779],[4.53519043,0.03160079,98.75721199],[4.53518994,0.03159905,98.75599694],[4.53518944,0.03159732,98.75478267],[4.53518894,0.03159559,98.75356921],[4.53518845,0.03159386,98.75235656],[4.53518795,0.03159212,98.75114477],[4.53518745,0.03159039,98.74993384],[4.53518695,0.03158866,98.74872381],[4.53518646,0.03158693,98.74751469],[4.53518596,0.0315852,98.7463065],[4.53518546,0.03158346,98.74509928],[4.53518496,0.03158173,98.74389303],[4.53518447,0.03158,98.74268778],[4.53518397,0.03157827,98.74148355],[4.53518347,0.03157654,98.74028037],[4.53518297,0.0315748,98.73907826],[4.53518248,0.03157307,98.73787724],[4.53518198,0.03157134,98.73667732],[4.53518148,0.03156961,98.73547854],[4.53518098,0.03156787,98.73428091],[4.53518048,0.03156614,98.73308447],[4.53517999,0.03156441,98.73188921],[4.53517949,0.03156268,98.73069518],[4.53517899,0.03156095,98.72950239],[4.53517849,0.03155921,98.72831087],[4.53517799,0.03155748,98.72712063],[4.5351775,0.03155575,98.7259317],[4.535177,0.03155402,98.7247441],[4.5351765,0.03155229,98.72355785],[4.535176,0.03155055,98.72237296],[4.53517551,0.03154882,98.72118946],[4.53517501,0.03154709,98.72000736],[4.53517451,0.03154536,98.71882669],[4.53517401,0.03154362,98.71764744],[4.53517351,0.03154189,98.71646966],[4.53517302,0.03154016,98.71529334],[4.53517252,0.03153843,98.71411853],[4.53517202,0.0315367,98.71294525],[4.53517152,0.03153496,98.71177355],[4.53517103,0.03153323,98.71060345],[4.53517053,0.0315315,98.70943496],[4.53517003,0.03152977,98.7082681],[4.53516954,0.03152803,98.70710287],[4.53516904,0.03152631,98.70593931],[4.53516854,0.03152457,98.70477741],[4.53516805,0.03152284,98.7036172],[4.53516755,0.03152111,98.70245868],[4.53516705,0.03151938,98.70130187],[4.53516656,0.03151764,98.70014679],[4.53516606,0.03151591,98.69899344],[4.53516556,0.03151418,98.69784185],[4.53516507,0.03151245,98.69669203],[4.53516457,0.03151071,98.69554398],[4.53516408,0.03150898,98.69439773],[4.53516358,0.03150725,98.69325329],[4.53516309,0.03150551,98.69211064],[4.53516259,0.03150378,98.69096979],[4.5351621,0.03150205,98.68983072],[4.5351616,0.03150032,98.68869343],[4.53516111,0.03149858,98.6875579],[4.53516061,0.03149685,98.68642414],[4.53516012,0.03149512,98.68529214],[4.53515962,0.03149338,98.68416188],[4.53515913,0.03149165,98.68303336],[4.53515863,0.03148992,98.68190657],[4.53515814,0.03148819,98.6807815],[4.53515764,0.03148645,98.67965816],[4.53515715,0.03148472,98.67853651],[4.53515666,0.03148299,98.67741655],[4.53515616,0.03148125,98.67629826],[4.53515567,0.03147952,98.67518162],[4.53515517,0.03147779,98.6740666],[4.53515468,0.03147605,98.67295319],[4.53515419,0.03147432,98.67184137],[4.53515369,0.03147259,98.67073112],[4.5351532,0.03147085,98.66962242],[4.5351527,0.03146912,98.66851524],[4.53515221,0.03146739,98.66740958],[4.53515172,0.03146565,98.6663054],[4.53515122,0.03146392,98.6652027],[4.53515073,0.03146219,98.66410146],[4.53515024,0.03146045,98.66300166],[4.53514974,0.03145872,98.6619033],[4.53514925,0.03145699,98.66080636],[4.53514876,0.03145525,98.65971084],[4.53514826,0.03145352,98.65861671],[4.53514777,0.03145179,98.65752397],[4.53514728,0.03145005,98.65643261],[4.53514678,0.03144832,98.65534261],[4.53514629,0.03144658,98.65425396],[4.5351458,0.03144485,98.65316666],[4.53514531,0.03144312,98.65208068],[4.53514481,0.03144138,98.65099602],[4.53514432,0.03143965,98.64991267],[4.53514383,0.03143792,98.64883061],[4.53514333,0.03143618,98.64774983],[4.53514284,0.03143445,98.64667032],[4.53514235,0.03143272,98.64559207],[4.53514185,0.03143098,98.64451506],[4.53514136,0.03142925,98.64343928],[4.53514087,0.03142752,98.64236472],[4.53514038,0.03142578,98.64129136],[4.53513988,0.03142405,98.6402192],[4.53513939,0.03142232,98.63914821],[4.5351389,0.03142058,98.6380784],[4.5351384,0.03141885,98.63700973],[4.53513791,0.03141712,98.63594221],[4.53513742,0.03141538,98.63487581],[4.53513693,0.03141365,98.63381054],[4.53513643,0.03141191,98.63274636],[4.53513594,0.03141018,98.63168327],[4.53513545,0.03140845,98.63062126],[4.53513495,0.03140671,98.62956032],[4.53513446,0.03140498,98.6285004],[4.53513397,0.03140325,98.62744149],[4.53513348,0.03140151,98.62638356],[4.53513298,0.03139978,98.62532659],[4.53513249,0.03139805,98.62427055],[4.535132,0.03139631,98.62321542],[4.5351315,0.03139458,98.62216119],[4.53513101,0.03139285,98.62110782],[4.53513052,0.03139111,98.62005529],[4.53513002,0.03138938,98.61900358],[4.53512953,0.03138765,98.61795268],[4.53512904,0.03138591,98.61690255],[4.53512854,0.03138418,98.61585317],[4.53512805,0.03138245,98.61480454],[4.53512756,0.03138071,98.61375665],[4.53512706,0.03137898,98.61270949],[4.53512657,0.03137725,98.61166304],[4.53512607,0.03137551,98.6106173],[4.53512558,0.03137378,98.60957227],[4.53512509,0.03137205,98.60852793],[4.53512459,0.03137031,98.60748427],[4.5351241,0.03136858,98.60644129],[4.5351236,0.03136685,98.60539898],[4.53512311,0.03136511,98.60435732],[4.53512261,0.03136338,98.60331632],[4.53512212,0.03136165,98.60227595],[4.53512162,0.03135991,98.60123622],[4.53512113,0.03135818,98.60019711],[4.53512063,0.03135645,98.59915861],[4.53512014,0.03135472,98.59812072],[4.53511964,0.03135298,98.59708343],[4.53511915,0.03135125,98.59604673],[4.53511865,0.03134952,98.59501061],[4.53511816,0.03134778,98.59397505],[4.53511766,0.03134605,98.59294007],[4.53511717,0.03134432,98.59190563],[4.53511667,0.03134259,98.59087175],[4.53511618,0.03134085,98.5898384],[4.53511568,0.03133912,98.58880558],[4.53511518,0.03133739,98.58777328],[4.53511469,0.03133566,98.58674149],[4.53511419,0.03133392,98.58571021],[4.5351137,0.03133219,98.58467942],[4.5351132,0.03133046,98.58364911],[4.5351127,0.03132872,98.58261929],[4.53511221,0.03132699,98.58158993],[4.53511171,0.03132526,98.58056103],[4.53511121,0.03132353,98.57953259],[4.53511072,0.0313218,98.57850459],[4.53511022,0.03132006,98.57747702],[4.53510972,0.03131833,98.57644989],[4.53510923,0.0313166,98.57542317],[4.53510873,0.03131487,98.57439686],[4.53510823,0.03131313,98.57337095],[4.53510773,0.0313114,98.57234543],[4.53510724,0.03130967,98.5713203],[4.53510674,0.03130794,98.57029555],[4.53510624,0.0313062,98.56927116],[4.53510574,0.03130447,98.56824713],[4.53510525,0.03130274,98.56722346],[4.53510475,0.03130101,98.56620012],[4.53510425,0.03129928,98.56517712],[4.53510375,0.03129754,98.56415445],[4.53510325,0.03129581,98.56313209],[4.53510276,0.03129408,98.56211004],[4.53510226,0.03129235,98.5610883],[4.53510176,0.03129062,98.56006684],[4.53510126,0.03128888,98.55904567],[4.53510076,0.03128715,98.55802481],[4.53510026,0.03128542,98.55700429],[4.53509976,0.03128369,98.55598414],[4.53509926,0.03128196,98.5549644],[4.53509876,0.03128023,98.55394509],[4.53509827,0.03127849,98.55292625],[4.53509777,0.03127676,98.55190792],[4.53509727,0.03127503,98.55089012],[4.53509677,0.0312733,98.54987289],[4.53509627,0.03127157,98.54885625],[4.53509577,0.03126984,98.5478402],[4.53509527,0.0312681,98.54682474],[4.53509477,0.03126637,98.54580985],[4.53509427,0.03126464,98.54479554],[4.53509378,0.03126291,98.5437818],[4.53509328,0.03126118,98.54276862],[4.53509278,0.03125944,98.541756],[4.53509228,0.03125771,98.54074393],[4.53509178,0.03125598,98.5397324],[4.53509128,0.03125425,98.53872141],[4.53509078,0.03125252,98.53771096],[4.53509028,0.03125078,98.53670104],[4.53508979,0.03124905,98.53569163],[4.53508929,0.03124732,98.53468275],[4.53508879,0.03124559,98.53367438],[4.53508829,0.03124386,98.53266651],[4.53508779,0.03124212,98.53165914],[4.53508729,0.03124039,98.53065226],[4.5350868,0.03123866,98.52964588],[4.5350863,0.03123693,98.52863997],[4.5350858,0.0312352,98.52763455],[4.5350853,0.03123346,98.52662959],[4.5350848,0.03123173,98.5256251],[4.53508431,0.03123,98.52462106],[4.53508381,0.03122827,98.52361748],[4.53508331,0.03122654,98.52261435],[4.53508281,0.0312248,98.52161166],[4.53508232,0.03122307,98.5206094],[4.53508182,0.03122134,98.51960757],[4.53508132,0.03121961,98.51860617],[4.53508082,0.03121788,98.51760518],[4.53508033,0.03121614,98.51660461],[4.53507983,0.03121441,98.51560444],[4.53507933,0.03121268,98.51460467],[4.53507883,0.03121095,98.51360529],[4.53507834,0.03120921,98.51260631],[4.53507784,0.03120748,98.5116077],[4.53507734,0.03120575,98.51060947],[4.53507685,0.03120402,98.50961161],[4.53507635,0.03120228,98.5086141],[4.53507585,0.03120055,98.50761694],[4.53507536,0.03119882,98.50662009],[4.53507486,0.03119709,98.50562356],[4.53507436,0.03119535,98.50462732],[4.53507387,0.03119362,98.50363136],[4.53507337,0.03119189,98.50263566],[4.53507287,0.03119016,98.50164018],[4.53507238,0.03118842,98.50064485],[4.53507188,0.03118669,98.49964956],[4.53507139,0.03118496,98.49865423],[4.53507089,0.03118323,98.49765881],[4.53507039,0.03118149,98.49666328],[4.5350699,0.03117976,98.49566765],[4.5350694,0.03117803,98.49467189],[4.5350689,0.0311763,98.49367601],[4.53506841,0.03117456,98.49267999],[4.53506791,0.03117283,98.49168383],[4.53506741,0.0311711,98.49068751],[4.53506691,0.03116937,98.48969103],[4.53506642,0.03116764,98.48869438],[4.53506592,0.0311659,98.48769755],[4.53506542,0.03116417,98.48670053],[4.53506493,0.03116244,98.48570331],[4.53506443,0.03116071,98.48470588],[4.53506393,0.03115897,98.48370824],[4.53506343,0.03115724,98.48271038],[4.53506294,0.03115551,98.48171228],[4.53506244,0.03115378,98.48071395],[4.53506194,0.03115205,98.47971536],[4.53506144,0.03115031,98.47871652],[4.53506094,0.03114858,98.47771741],[4.53506045,0.03114685,98.47671802],[4.53505995,0.03114512,98.47571835],[4.53505945,0.03114338,98.47471839],[4.53505895,0.03114165,98.47371813],[4.53505845,0.03113992,98.47271755],[4.53505795,0.03113819,98.47171666],[4.53505746,0.03113646,98.47071544],[4.53505696,0.03113473,98.46971389],[4.53505646,0.03113299,98.46871199],[4.53505596,0.03113126,98.46770974],[4.53505546,0.03112953,98.46670712],[4.53505496,0.0311278,98.46570414],[4.53505446,0.03112607,98.46470078],[4.53505396,0.03112433,98.46369703],[4.53505347,0.0311226,98.46269288],[4.53505297,0.03112087,98.46168833],[4.53505247,0.03111914,98.46068337],[4.53505197,0.03111741,98.45967799],[4.53505147,0.03111568,98.45867217],[4.53505097,0.03111394,98.45766592],[4.53505047,0.03111221,98.45665922],[4.53504997,0.03111048,98.45565207],[4.53504947,0.03110875,98.45464447],[4.53504897,0.03110702,98.45363652],[4.53504847,0.03110529,98.45262827],[4.53504797,0.03110356,98.45161981],[4.53504747,0.03110182,98.45061112],[4.53504697,0.03110009,98.44960218],[4.53504647,0.03109836,98.44859299],[4.53504597,0.03109663,98.44758352],[4.53504547,0.0310949,98.44657377],[4.53504497,0.03109317,98.44556371],[4.53504447,0.03109143,98.44455334],[4.53504397,0.0310897,98.44354266],[4.53504347,0.03108797,98.44253165],[4.53504297,0.03108624,98.4415203],[4.53504247,0.03108451,98.44050862],[4.53504197,0.03108278,98.43949658],[4.53504147,0.03108105,98.43848419],[4.53504097,0.03107931,98.43747143],[4.53504047,0.03107758,98.4364583],[4.53503997,0.03107585,98.43544479],[4.53503947,0.03107412,98.43443088],[4.53503897,0.03107239,98.43341658],[4.53503847,0.03107066,98.43240187],[4.53503797,0.03106892,98.43138674],[4.53503747,0.03106719,98.43037119],[4.53503697,0.03106546,98.42935521],[4.53503647,0.03106373,98.42833879],[4.53503597,0.031062,98.42732193],[4.53503547,0.03106027,98.4263046],[4.53503497,0.03105853,98.42528682],[4.53503447,0.0310568,98.42426856],[4.53503397,0.03105507,98.42324982],[4.53503348,0.03105334,98.42223059],[4.53503298,0.03105161,98.42121087],[4.53503248,0.03104988,98.42019064],[4.53503198,0.03104815,98.41916989],[4.53503148,0.03104641,98.41814863],[4.53503098,0.03104468,98.41712684],[4.53503048,0.03104295,98.41610451],[4.53502998,0.03104122,98.41508164],[4.53502948,0.03103949,98.41405821],[4.53502898,0.03103776,98.41303422],[4.53502848,0.03103602,98.41200966],[4.53502798,0.03103429,98.41098453],[4.53502748,0.03103256,98.4099588],[4.53502698,0.03103083,98.40893249],[4.53502648,0.0310291,98.40790557],[4.53502598,0.03102737,98.40687804],[4.53502548,0.03102563,98.40584989],[4.53502498,0.0310239,98.40482112],[4.53502448,0.03102217,98.40379171],[4.53502398,0.03102044,98.40276166],[4.53502348,0.03101871,98.40173095],[4.53502298,0.03101698,98.40069959],[4.53502248,0.03101525,98.39966756],[4.53502198,0.03101351,98.39863486],[4.53502148,0.03101178,98.39760147],[4.53502098,0.03101005,98.39656739],[4.53502048,0.03100832,98.39553262],[4.53501998,0.03100659,98.39449713],[4.53501948,0.03100486,98.39346093],[4.53501898,0.03100312,98.39242401],[4.53501849,0.03100139,98.39138635],[4.53501799,0.03099966,98.39034795],[4.53501749,0.03099793,98.38930881],[4.53501699,0.0309962,98.38826891],[4.53501649,0.03099447,98.38722824],[4.53501599,0.03099273,98.38618681],[4.53501549,0.030991,98.38514459],[4.53501499,0.03098927,98.38410159],[4.53501449,0.03098754,98.38305776],[4.53501399,0.03098581,98.38201304],[4.53501349,0.03098408,98.38096733],[4.53501299,0.03098235,98.37992055],[4.53501249,0.03098061,98.37887263],[4.53501199,0.03097888,98.37782353],[4.53501149,0.03097715,98.37677324],[4.53501099,0.03097542,98.37572177],[4.53501049,0.03097369,98.37466914],[4.53500999,0.03097196,98.37361534],[4.53500949,0.03097023,98.37256039],[4.53500898,0.03096849,98.37150429],[4.53500848,0.03096676,98.37044705],[4.53500798,0.03096503,98.36938866],[4.53500748,0.0309633,98.36832915],[4.53500698,0.03096157,98.36726851],[4.53500648,0.03095984,98.36620676],[4.53500598,0.03095811,98.36514389],[4.53500548,0.03095638,98.36407991],[4.53500497,0.03095465,98.36301483],[4.53500447,0.03095291,98.36194866],[4.53500397,0.03095118,98.3608814],[4.53500347,0.03094945,98.35981305],[4.53500297,0.03094772,98.35874363],[4.53500246,0.03094599,98.35767313],[4.53500196,0.03094426,98.35660157],[4.53500146,0.03094253,98.35552895],[4.53500096,0.0309408,98.35445527],[4.53500046,0.03093907,98.35338054],[4.53499995,0.03093734,98.35230477],[4.53499945,0.03093561,98.35122796],[4.53499895,0.03093387,98.35015012],[4.53499845,0.03093214,98.34907125],[4.53499795,0.03093041,98.34799136],[4.53499744,0.03092868,98.34691045],[4.53499694,0.03092695,98.34582854],[4.53499644,0.03092522,98.34474561],[4.53499594,0.03092349,98.34366169],[4.53499544,0.03092176,98.34257677],[4.53499494,0.03092003,98.34149086],[4.53499443,0.0309183,98.34040396],[4.53499393,0.03091657,98.33931609],[4.53499343,0.03091483,98.33822724],[4.53499293,0.0309131,98.33713742],[4.53499243,0.03091137,98.33604663],[4.53499193,0.03090964,98.33495483],[4.53499142,0.03090791,98.33386195],[4.53499092,0.03090618,98.33276795],[4.53499042,0.03090445,98.33167278],[4.53498992,0.03090272,98.33057638],[4.53498942,0.03090099,98.32947871],[4.53498892,0.03089925,98.32837977],[4.53498842,0.03089752,98.32727955],[4.53498791,0.03089579,98.32617805],[4.53498741,0.03089406,98.32507525],[4.53498691,0.03089233,98.32397116],[4.53498641,0.0308906,98.32286577],[4.53498591,0.03088887,98.32175907],[4.53498541,0.03088714,98.32065106],[4.5349849,0.03088541,98.31954173],[4.5349844,0.03088368,98.31843107],[4.5349839,0.03088194,98.31731909],[4.5349834,0.03088021,98.31620578],[4.5349829,0.03087848,98.31509112],[4.5349824,0.03087675,98.31397512],[4.53498189,0.03087502,98.31285777],[4.53498139,0.03087329,98.31173906],[4.53498089,0.03087156,98.31061899],[4.53498039,0.03086983,98.30949755],[4.53497989,0.0308681,98.30837474],[4.53497938,0.03086637,98.30725055],[4.53497888,0.03086463,98.30612498],[4.53497838,0.0308629,98.30499802],[4.53497788,0.03086117,98.30386966],[4.53497738,0.03085944,98.3027399],[4.53497687,0.03085771,98.30160874],[4.53497637,0.03085598,98.30047616],[4.53497587,0.03085425,98.29934217],[4.53497537,0.03085252,98.29820676],[4.53497487,0.03085079,98.29706991],[4.53497436,0.03084906,98.29593163],[4.53497386,0.03084733,98.29479192],[4.53497336,0.03084559,98.29365076],[4.53497286,0.03084386,98.29250815],[4.53497236,0.03084213,98.29136408],[4.53497185,0.0308404,98.29021855],[4.53497135,0.03083867,98.28907155],[4.53497085,0.03083694,98.28792309],[4.53497035,0.03083521,98.28677315],[4.53496985,0.03083348,98.28562173],[4.53496934,0.03083175,98.28446885],[4.53496884,0.03083002,98.28331449],[4.53496834,0.03082829,98.28215866],[4.53496784,0.03082655,98.28100135],[4.53496734,0.03082482,98.27984255],[4.53496683,0.03082309,98.27868226],[4.53496633,0.03082136,98.27752047],[4.53496583,0.03081963,98.27635717],[4.53496533,0.0308179,98.27519236],[4.53496483,0.03081617,98.27402603],[4.53496433,0.03081444,98.27285816],[4.53496382,0.03081271,98.27168876],[4.53496332,0.03081098,98.27051781],[4.53496282,0.03080925,98.2693453],[4.53496232,0.03080751,98.26817122],[4.53496182,0.03080578,98.26699557],[4.53496131,0.03080405,98.26581834],[4.53496081,0.03080232,98.26463952],[4.53496031,0.03080059,98.2634591],[4.53495981,0.03079886,98.26227707],[4.53495931,0.03079713,98.26109343],[4.53495881,0.0307954,98.25990816],[4.53495831,0.03079367,98.25872126],[4.5349578,0.03079193,98.25753272],[4.5349573,0.0307902,98.25634253],[4.5349568,0.03078847,98.25515068],[4.5349563,0.03078674,98.25395717],[4.5349558,0.03078501,98.25276198],[4.5349553,0.03078328,98.25156511],[4.53495479,0.03078155,98.25036654],[4.53495429,0.03077982,98.24916628],[4.53495379,0.03077809,98.24796431],[4.53495329,0.03077636,98.24676062],[4.53495279,0.03077462,98.24555521],[4.53495229,0.03077289,98.24434807],[4.53495179,0.03077116,98.24313918],[4.53495128,0.03076943,98.24192854],[4.53495078,0.0307677,98.24071615],[4.53495028,0.03076597,98.23950199],[4.53494978,0.03076424,98.23828605],[4.53494928,0.03076251,98.23706833],[4.53494878,0.03076078,98.23584882],[4.53494828,0.03075904,98.23462751],[4.53494778,0.03075731,98.2334044],[4.53494727,0.03075558,98.23217946],[4.53494677,0.03075385,98.2309527],[4.53494627,0.03075212,98.22972411],[4.53494577,0.03075039,98.22849368],[4.53494527,0.03074866,98.2272614],[4.53494477,0.03074693,98.22602726],[4.53494427,0.03074519,98.22479125],[4.53494377,0.03074346,98.22355337],[4.53494326,0.03074173,98.22231361],[4.53494276,0.03074,98.22107195],[4.53494226,0.03073827,98.2198284],[4.53494176,0.03073654,98.21858294],[4.53494126,0.03073481,98.21733556],[4.53494076,0.03073308,98.21608626],[4.53494026,0.03073135,98.21483503],[4.53493976,0.03072961,98.21358186],[4.53493926,0.03072788,98.21232674],[4.53493875,0.03072615,98.21106966],[4.53493825,0.03072442,98.20981062],[4.53493775,0.03072269,98.2085496],[4.53493725,0.03072096,98.2072866],[4.53493675,0.03071923,98.20602161],[4.53493625,0.0307175,98.20475462],[4.53493575,0.03071576,98.20348562],[4.53493525,0.03071403,98.20221461],[4.53493475,0.0307123,98.20094157],[4.53493424,0.03071057,98.1996665],[4.53493374,0.03070884,98.19838939],[4.53493324,0.03070711,98.19711021],[4.53493274,0.03070538,98.19582896],[4.53493224,0.03070365,98.19454564],[4.53493174,0.03070192,98.19326022],[4.53493124,0.03070018,98.19197269],[4.53493074,0.03069845,98.19068305],[4.53493024,0.03069672,98.18939128],[4.53492973,0.03069499,98.18809737],[4.53492923,0.03069326,98.1868013],[4.53492873,0.03069153,98.18550307],[4.53492823,0.0306898,98.18420267],[4.53492773,0.03068807,98.18290007],[4.53492723,0.03068633,98.18159528],[4.53492673,0.0306846,98.18028827],[4.53492623,0.03068287,98.17897904],[4.53492572,0.03068114,98.17766757],[4.53492522,0.03067941,98.17635386],[4.53492472,0.03067768,98.17503788],[4.53492422,0.03067595,98.17371963],[4.53492372,0.03067422,98.17239909],[4.53492322,0.03067249,98.17107626],[4.53492272,0.03067075,98.16975113],[4.53492221,0.03066902,98.16842369],[4.53492171,0.03066729,98.16709395],[4.53492121,0.03066556,98.1657619],[4.53492071,0.03066383,98.16442754],[4.53492021,0.0306621,98.16309085],[4.53491971,0.03066037,98.16175182],[4.5349192,0.03065864,98.16041043],[4.5349187,0.03065691,98.15906667],[4.5349182,0.03065518,98.15772051],[4.5349177,0.03065345,98.15637195],[4.5349172,0.03065171,98.15502097],[4.53491669,0.03064998,98.15366754],[4.53491619,0.03064825,98.15231166],[4.53491569,0.03064652,98.15095331],[4.53491519,0.03064479,98.14959247],[4.53491469,0.03064306,98.14822913],[4.53491418,0.03064133,98.14686326],[4.53491368,0.0306396,98.14549485],[4.53491318,0.03063787,98.1441239],[4.53491268,0.03063614,98.14275037],[4.53491217,0.03063441,98.14137427],[4.53491167,0.03063268,98.13999559],[4.53491117,0.03063094,98.13861432],[4.53491066,0.03062921,98.13723048],[4.53491016,0.03062748,98.13584404],[4.53490966,0.03062575,98.13445501],[4.53490915,0.03062402,98.13306338],[4.53490865,0.03062229,98.13166916],[4.53490815,0.03062056,98.13027233],[4.53490764,0.03061883,98.12887289],[4.53490714,0.0306171,98.12747084],[4.53490664,0.03061537,98.12606618],[4.53490613,0.03061364,98.12465891],[4.53490563,0.03061191,98.12324901],[4.53490513,0.03061018,98.12183648],[4.53490462,0.03060845,98.12042133],[4.53490412,0.03060672,98.11900355],[4.53490362,0.03060499,98.11758313],[4.53490311,0.03060326,98.11616008],[4.53490261,0.03060153,98.11473438],[4.5349021,0.0305998,98.11330604],[4.5349016,0.03059807,98.11187505],[4.5349011,0.03059634,98.11044142],[4.53490059,0.0305946,98.10900512],[4.53490009,0.03059287,98.10756617],[4.53489958,0.03059114,98.10612456],[4.53489908,0.03058941,98.10468028],[4.53489857,0.03058768,98.10323334],[4.53489807,0.03058595,98.10178373],[4.53489757,0.03058422,98.10033144],[4.53489706,0.03058249,98.09887648],[4.53489656,0.03058076,98.09741884],[4.53489605,0.03057903,98.09595851],[4.53489555,0.0305773,98.0944955],[4.53489504,0.03057557,98.09302981],[4.53489454,0.03057385,98.09156142],[4.53489404,0.03057212,98.09009033],[4.53489353,0.03057039,98.08861656],[4.53489303,0.03056866,98.08714008],[4.53489252,0.03056693,98.08566094],[4.53489202,0.0305652,98.08417918],[4.53489151,0.03056347,98.08269485],[4.53489101,0.03056174,98.081208],[4.53489051,0.03056001,98.07971866],[4.53489,0.03055828,98.0782269],[4.5348895,0.03055655,98.07673276],[4.53488899,0.03055482,98.07523628],[4.53488849,0.03055309,98.07373752],[4.53488798,0.03055136,98.07223653],[4.53488748,0.03054962,98.07073336],[4.53488697,0.03054789,98.06922808],[4.53488647,0.03054616,98.06772072],[4.53488597,0.03054443,98.06621134],[4.53488546,0.0305427,98.06470001],[4.53488496,0.03054097,98.06318676],[4.53488445,0.03053924,98.06167166],[4.53488395,0.03053751,98.06015476],[4.53488344,0.03053578,98.05863611],[4.53488294,0.03053405,98.05711577],[4.53488244,0.03053232,98.05559378],[4.53488193,0.03053059,98.05407018],[4.53488143,0.03052886,98.05254503],[4.53488092,0.03052713,98.05101837],[4.53488042,0.0305254,98.04949024],[4.53487992,0.03052367,98.04796067],[4.53487941,0.03052194,98.04642971],[4.53487891,0.03052021,98.04489738],[4.53487841,0.03051848,98.04336373],[4.5348779,0.03051675,98.04182878],[4.5348774,0.03051502,98.04029256],[4.5348769,0.03051329,98.03875512],[4.53487639,0.03051156,98.03721648],[4.53487589,0.03050983,98.03567668],[4.53487539,0.0305081,98.03413575],[4.53487488,0.03050637,98.03259373],[4.53487438,0.03050464,98.03105064],[4.53487388,0.0305029,98.02950652],[4.53487337,0.03050117,98.02796141],[4.53487287,0.03049944,98.02641533],[4.53487237,0.03049771,98.02486833],[4.53487186,0.03049598,98.02332042],[4.53487136,0.03049425,98.02177165],[4.53487086,0.03049252,98.02022204],[4.53487035,0.03049079,98.01867164],[4.53486985,0.03048906,98.01712047],[4.53486935,0.03048733,98.01556856],[4.53486884,0.0304856,98.01401595],[4.53486834,0.03048387,98.01246266],[4.53486784,0.03048214,98.01090874],[4.53486733,0.03048041,98.00935421],[4.53486683,0.03047868,98.00779911],[4.53486633,0.03047695,98.00624346],[4.53486582,0.03047522,98.0046873],[4.53486532,0.03047349,98.00313066],[4.53486481,0.03047176,98.00157357],[4.53486431,0.03047002,98.00001607],[4.53486381,0.03046829,97.99845818],[4.5348633,0.03046656,97.99689993],[4.5348628,0.03046483,97.99534136],[4.5348623,0.0304631,97.9937825],[4.53486179,0.03046137,97.99222338],[4.53486129,0.03045964,97.99066403],[4.53486078,0.03045791,97.98910448],[4.53486028,0.03045618,97.98754477],[4.53485978,0.03045445,97.98598491],[4.53485927,0.03045272,97.98442495],[4.53485877,0.03045099,97.98286491],[4.53485826,0.03044926,97.98130483],[4.53485776,0.03044753,97.97974473],[4.53485725,0.0304458,97.97818465],[4.53485675,0.03044407,97.97662462],[4.53485624,0.03044234,97.97506466],[4.53485574,0.03044061,97.9735048],[4.53485523,0.03043888,97.9719451],[4.53485473,0.03043715,97.97038558],[4.53485422,0.03043542,97.96882632],[4.53485372,0.03043369,97.96726735],[4.53485321,0.03043196,97.96570874],[4.5348527,0.03043023,97.96415053],[4.5348522,0.0304285,97.96259278],[4.53485169,0.03042677,97.96103555],[4.53485119,0.03042504,97.95947889],[4.53485068,0.03042331,97.95792284],[4.53485017,0.03042158,97.95636747],[4.53484967,0.03041985,97.95481284],[4.53484916,0.03041812,97.95325898],[4.53484866,0.03041639,97.95170596],[4.53484815,0.03041466,97.95015383],[4.53484764,0.03041293,97.94860265],[4.53484714,0.0304112,97.94705247],[4.53484663,0.03040947,97.94550334],[4.53484612,0.03040775,97.94395533],[4.53484562,0.03040602,97.94240847],[4.53484511,0.03040429,97.94086284],[4.5348446,0.03040256,97.93931848],[4.5348441,0.03040083,97.93777544],[4.53484359,0.0303991,97.93623379],[4.53484308,0.03039737,97.93469358],[4.53484258,0.03039564,97.93315485],[4.53484207,0.03039391,97.93161766],[4.53484156,0.03039218,97.93008204],[4.53484105,0.03039045,97.92854806],[4.53484055,0.03038872,97.92701576],[4.53484004,0.03038699,97.92548519],[4.53483953,0.03038526,97.92395639],[4.53483903,0.03038353,97.92242941],[4.53483852,0.0303818,97.92090431],[4.53483801,0.03038007,97.91938112],[4.53483751,0.03037834,97.91785989],[4.534837,0.03037661,97.91634067],[4.53483649,0.03037488,97.91482351],[4.53483598,0.03037316,97.91330843],[4.53483548,0.03037143,97.9117955],[4.53483497,0.0303697,97.91028475],[4.53483446,0.03036797,97.90877623],[4.53483396,0.03036624,97.90726999],[4.53483345,0.03036451,97.90576606],[4.53483294,0.03036278,97.90426449],[4.53483243,0.03036105,97.90276533],[4.53483193,0.03035932,97.90126862],[4.53483142,0.03035759,97.89977441],[4.53483091,0.03035586,97.89828274],[4.53483041,0.03035413,97.89679365],[4.5348299,0.0303524,97.89530719],[4.53482939,0.03035067,97.8938234],[4.53482888,0.03034894,97.89234234],[4.53482838,0.03034721,97.89086403],[4.53482787,0.03034548,97.88938854],[4.53482736,0.03034375,97.88791589],[4.53482686,0.03034203,97.88644614],[4.53482635,0.0303403,97.88497934],[4.53482584,0.03033857,97.88351552],[4.53482533,0.03033684,97.88205474],[4.53482483,0.03033511,97.88059706],[4.53482432,0.03033338,97.87914252],[4.53482381,0.03033165,97.87769119],[4.5348233,0.03032992,97.8762431],[4.5348228,0.03032819,97.87479831],[4.53482229,0.03032646,97.87335688],[4.53482178,0.03032473,97.87191886],[4.53482128,0.030323,97.8704843],[4.53482077,0.03032127,97.86905325],[4.53482026,0.03031954,97.86762577],[4.53481975,0.03031781,97.8662019],[4.53481925,0.03031608,97.86478168],[4.53481874,0.03031435,97.86336517],[4.53481823,0.03031262,97.86195239],[4.53481773,0.0303109,97.86054338],[4.53481722,0.03030917,97.85913819],[4.53481671,0.03030744,97.85773685],[4.5348162,0.03030571,97.8563394],[4.5348157,0.03030398,97.85494588],[4.53481519,0.03030225,97.85355634],[4.53481468,0.03030052,97.8521708],[4.53481418,0.03029879,97.85078931],[4.53481367,0.03029706,97.84941191],[4.53481316,0.03029533,97.84803863],[4.53481266,0.0302936,97.84666952],[4.53481215,0.03029187,97.84530461],[4.53481164,0.03029014,97.84394395],[4.53481114,0.03028841,97.84258756],[4.53481063,0.03028668,97.8412355],[4.53481012,0.03028495,97.83988779],[4.53480961,0.03028322,97.83854449],[4.53480911,0.03028149,97.83720562],[4.5348086,0.03027976,97.83587122],[4.53480809,0.03027803,97.83454134],[4.53480759,0.0302763,97.83321602],[4.53480708,0.03027458,97.83189528],[4.53480657,0.03027285,97.83057918],[4.53480607,0.03027112,97.82926774],[4.53480556,0.03026939,97.82796102],[4.53480505,0.03026766,97.82665903],[4.53480454,0.03026593,97.82536184],[4.53480404,0.0302642,97.82406947],[4.53480353,0.03026247,97.82278196],[4.53480302,0.03026074,97.82149935],[4.53480252,0.03025901,97.82022168],[4.53480201,0.03025728,97.81894899],[4.5348015,0.03025555,97.81768131],[4.53480099,0.03025382,97.8164187],[4.53480049,0.03025209,97.81516117],[4.53479998,0.03025036,97.81390878],[4.53479947,0.03024863,97.81266156],[4.53479897,0.0302469,97.81141955],[4.53479846,0.03024517,97.81018279],[4.53479795,0.03024345,97.80895132],[4.53479744,0.03024172,97.80772517],[4.53479694,0.03023999,97.80650439],[4.53479643,0.03023826,97.80528901],[4.53479592,0.03023653,97.80407907],[4.53479541,0.0302348,97.80287461],[4.5347949,0.03023307,97.80167568],[4.5347944,0.03023134,97.8004823],[4.53479389,0.03022961,97.79929452],[4.53479338,0.03022788,97.79811237],[4.53479287,0.03022615,97.7969359],[4.53479236,0.03022442,97.79576514],[4.53479186,0.03022269,97.79460014],[4.53479135,0.03022096,97.79344092],[4.53479084,0.03021924,97.79228754],[4.53479033,0.03021751,97.79114002],[4.53478982,0.03021578,97.78999841],[4.53478932,0.03021405,97.78886275],[4.53478881,0.03021232,97.78773308],[4.5347883,0.03021059,97.78660943],[4.53478779,0.03020886,97.78549184],[4.53478728,0.03020713,97.78438036],[4.53478677,0.0302054,97.78327502],[4.53478626,0.03020367,97.78217586],[4.53478575,0.03020194,97.78108293],[4.53478525,0.03020022,97.77999626],[4.53478474,0.03019849,97.7789159],[4.53478423,0.03019676,97.77784191],[4.53478372,0.03019503,97.77677434],[4.53478321,0.0301933,97.77571324],[4.5347827,0.03019157,97.77465866],[4.53478219,0.03018984,97.77361066],[4.53478168,0.03018811,97.77256928],[4.53478117,0.03018638,97.77153457],[4.53478066,0.03018466,97.77050659],[4.53478015,0.03018293,97.76948539],[4.53477964,0.0301812,97.76847102],[4.53477913,0.03017947,97.76746348],[4.53477862,0.03017774,97.7664627],[4.53477811,0.03017601,97.76546857],[4.5347776,0.03017428,97.76448102],[4.53477709,0.03017255,97.76349996],[4.53477658,0.03017083,97.76252528],[4.53477607,0.0301691,97.7615569],[4.53477556,0.03016737,97.76059473],[4.53477505,0.03016564,97.75963867],[4.53477454,0.03016391,97.75868864],[4.53477403,0.03016218,97.75774455],[4.53477352,0.03016045,97.7568063],[4.53477301,0.03015873,97.7558738],[4.5347725,0.030157,97.75494696],[4.53477199,0.03015527,97.7540257],[4.53477148,0.03015354,97.75310991],[4.53477097,0.03015181,97.75219951],[4.53477046,0.03015008,97.7512944],[4.53476995,0.03014835,97.7503945],[4.53476944,0.03014663,97.74949971],[4.53476893,0.0301449,97.74860994],[4.53476842,0.03014317,97.7477251],[4.53476791,0.03014144,97.7468451],[4.5347674,0.03013971,97.74596985],[4.53476689,0.03013798,97.74509925],[4.53476638,0.03013625,97.74423321],[4.53476587,0.03013453,97.74337165],[4.53476536,0.0301328,97.74251446],[4.53476485,0.03013107,97.74166156],[4.53476434,0.03012934,97.74081285],[4.53476383,0.03012761,97.73996824],[4.53476332,0.03012588,97.73912763],[4.53476281,0.03012415,97.73829092],[4.5347623,0.03012243,97.737458],[4.53476179,0.0301207,97.73662878],[4.53476128,0.03011897,97.73580316],[4.53476077,0.03011724,97.73498103],[4.53476026,0.03011551,97.73416229],[4.53475975,0.03011378,97.73334685],[4.53475924,0.03011205,97.7325346],[4.53475873,0.03011033,97.73172545],[4.53475822,0.0301086,97.73091928],[4.53475771,0.03010687,97.73011601],[4.5347572,0.03010514,97.72931553],[4.53475669,0.03010341,97.72851774],[4.53475617,0.03010168,97.72772255],[4.53475566,0.03009995,97.72692984],[4.53475515,0.03009823,97.72613952],[4.53475464,0.0300965,97.72535148],[4.53475413,0.03009477,97.72456564],[4.53475362,0.03009304,97.72378189],[4.53475311,0.03009131,97.72300012],[4.5347526,0.03008958,97.72222024],[4.53475209,0.03008785,97.72144214],[4.53475158,0.03008612,97.72066573],[4.53475107,0.0300844,97.71989091],[4.53475056,0.03008267,97.71911757],[4.53475005,0.03008094,97.71834562],[4.53474954,0.03007921,97.71757495],[4.53474903,0.03007748,97.71680546],[4.53474852,0.03007575,97.71603706],[4.53474801,0.03007402,97.71526964],[4.5347475,0.0300723,97.7145031],[4.53474699,0.03007057,97.71373735],[4.53474648,0.03006884,97.71297228],[4.53474597,0.03006711,97.71220779],[4.53474546,0.03006538,97.71144378],[4.53474495,0.03006365,97.71068016],[4.53474444,0.03006192,97.70991683],[4.53474393,0.0300602,97.70915371],[4.53474342,0.03005847,97.7083907],[4.53474291,0.03005674,97.70762772],[4.5347424,0.03005501,97.70686467],[4.53474189,0.03005328,97.70610147],[4.53474138,0.03005155,97.70533803],[4.53474086,0.03004982,97.70457426],[4.53474035,0.0300481,97.70381007],[4.53473984,0.03004637,97.70304535],[4.53473933,0.03004464,97.70228003],[4.53473882,0.03004291,97.70151399],[4.53473831,0.03004118,97.70074714],[4.5347378,0.03003945,97.69997938],[4.53473729,0.03003772,97.69921062],[4.53473678,0.030036,97.69844076],[4.53473627,0.03003427,97.6976697],[4.53473576,0.03003254,97.69689734],[4.53473525,0.03003081,97.69612359],[4.53473474,0.03002908,97.69534834],[4.53473423,0.03002735,97.6945715],[4.53473372,0.03002562,97.69379297],[4.53473321,0.0300239,97.69301266],[4.5347327,0.03002217,97.69223046],[4.53473219,0.03002044,97.69144628],[4.53473168,0.03001871,97.69066002],[4.53473117,0.03001698,97.68987158],[4.53473066,0.03001525,97.68908087],[4.53473015,0.03001352,97.68828779],[4.53472964,0.03001179,97.68749223],[4.53472913,0.03001007,97.68669411],[4.53472862,0.03000834,97.68589332],[4.53472811,0.03000661,97.68508976],[4.5347276,0.03000488,97.68428335],[4.53472709,0.03000315,97.68347398],[4.53472658,0.03000142,97.68266163],[4.53472607,0.02999969,97.68184632],[4.53472556,0.02999796,97.68102805],[4.53472505,0.02999624,97.68020683],[4.53472454,0.02999451,97.67938268],[4.53472403,0.02999278,97.67855561],[4.53472352,0.02999105,97.67772562],[4.53472301,0.02998932,97.67689272],[4.5347225,0.02998759,97.67605693],[4.53472199,0.02998586,97.67521826],[4.53472149,0.02998413,97.67437672],[4.53472098,0.02998241,97.67353231],[4.53472047,0.02998068,97.67268505],[4.53471996,0.02997895,97.67183494],[4.53471945,0.02997722,97.67098201],[4.53471894,0.02997549,97.67012626],[4.53471843,0.02997376,97.66926769],[4.53471792,0.02997203,97.66840633],[4.53471741,0.0299703,97.66754217],[4.5347169,0.02996857,97.66667524],[4.53471639,0.02996684,97.66580553],[4.53471588,0.02996512,97.66493307],[4.53471537,0.02996339,97.66405787],[4.53471487,0.02996166,97.66317994],[4.53471436,0.02995993,97.66229932],[4.53471385,0.0299582,97.66141601],[4.53471334,0.02995647,97.66053004],[4.53471283,0.02995474,97.65964141],[4.53471232,0.02995301,97.65875015],[4.53471181,0.02995128,97.65785627],[4.5347113,0.02994955,97.6569598],[4.5347108,0.02994782,97.65606073],[4.53471029,0.0299461,97.65515911],[4.53470978,0.02994437,97.65425493],[4.53470927,0.02994264,97.65334821],[4.53470876,0.02994091,97.65243898],[4.53470825,0.02993918,97.65152725],[4.53470775,0.02993745,97.65061303],[4.53470724,0.02993572,97.64969634],[4.53470673,0.02993399,97.64877718],[4.53470622,0.02993226,97.64785555],[4.53470572,0.02993053,97.64693143],[4.53470521,0.0299288,97.64600483],[4.5347047,0.02992707,97.64507573],[4.53470419,0.02992534,97.64414414],[4.53470369,0.02992361,97.64321004],[4.53470318,0.02992188,97.64227343],[4.53470267,0.02992015,97.64133431],[4.53470216,0.02991843,97.64039267],[4.53470166,0.0299167,97.63944851],[4.53470115,0.02991497,97.63850182],[4.53470064,0.02991324,97.63755259],[4.53470014,0.02991151,97.63660082],[4.53469963,0.02990978,97.63564651],[4.53469912,0.02990805,97.63468966],[4.53469861,0.02990632,97.63373025],[4.53469811,0.02990459,97.63276828],[4.5346976,0.02990286,97.63180376],[4.53469709,0.02990113,97.63083667],[4.53469659,0.0298994,97.62986701],[4.53469608,0.02989767,97.62889478],[4.53469557,0.02989594,97.62791997],[4.53469506,0.02989421,97.62694258],[4.53469456,0.02989248,97.62596261],[4.53469405,0.02989075,97.62498005],[4.53469354,0.02988902,97.6239949],[4.53469303,0.02988729,97.62300715],[4.53469253,0.02988556,97.62201681],[4.53469202,0.02988383,97.62102387],[4.53469151,0.0298821,97.62002834],[4.534691,0.02988038,97.61903021],[4.5346905,0.02987865,97.61802948],[4.53468999,0.02987692,97.61702615],[4.53468948,0.02987519,97.61602023],[4.53468897,0.02987346,97.61501172],[4.53468846,0.02987173,97.61400061],[4.53468795,0.02987,97.6129869],[4.53468744,0.02986827,97.6119706],[4.53468694,0.02986654,97.61095171],[4.53468643,0.02986481,97.60993022],[4.53468592,0.02986308,97.60890614],[4.53468541,0.02986135,97.60787947],[4.5346849,0.02985963,97.6068502],[4.53468439,0.0298579,97.60581834],[4.53468388,0.02985617,97.60478389],[4.53468337,0.02985444,97.60374685],[4.53468286,0.02985271,97.60270722],[4.53468235,0.02985098,97.601665],[4.53468184,0.02984925,97.60062019],[4.53468133,0.02984752,97.5995728],[4.53468082,0.0298458,97.59852281],[4.53468031,0.02984407,97.59747025],[4.5346798,0.02984234,97.59641512],[4.53467929,0.02984061,97.59535741],[4.53467877,0.02983888,97.59429715],[4.53467826,0.02983715,97.59323432],[4.53467775,0.02983543,97.59216895],[4.53467724,0.0298337,97.59110103],[4.53467673,0.02983197,97.59003057],[4.53467621,0.02983024,97.58895758],[4.5346757,0.02982851,97.58788206],[4.53467519,0.02982679,97.58680402],[4.53467468,0.02982506,97.58572346],[4.53467416,0.02982333,97.58464039],[4.53467365,0.0298216,97.58355482],[4.53467314,0.02981987,97.58246677],[4.53467262,0.02981815,97.58137626],[4.53467211,0.02981642,97.58028336],[4.53467159,0.02981469,97.57918811],[4.53467108,0.02981296,97.57809055],[4.53467057,0.02981124,97.57699074],[4.53467005,0.02980951,97.57588873],[4.53466954,0.02980778,97.57478455],[4.53466902,0.02980605,97.57367827],[4.53466851,0.02980433,97.57256993],[4.53466799,0.0298026,97.57145958],[4.53466748,0.02980087,97.57034726],[4.53466696,0.02979915,97.56923302],[4.53466645,0.02979742,97.56811691],[4.53466593,0.02979569,97.56699898],[4.53466542,0.02979396,97.56587928],[4.5346649,0.02979224,97.56475784],[4.53466439,0.02979051,97.56363468],[4.53466387,0.02978878,97.5625098],[4.53466336,0.02978705,97.56138321],[4.53466284,0.02978533,97.56025491],[4.53466233,0.0297836,97.55912491],[4.53466181,0.02978187,97.55799321],[4.5346613,0.02978014,97.55685982],[4.53466079,0.02977842,97.55572475],[4.53466027,0.02977669,97.55458799],[4.53465976,0.02977496,97.55344956],[4.53465924,0.02977323,97.55230946],[4.53465873,0.02977151,97.5511677],[4.53465821,0.02976978,97.55002427],[4.5346577,0.02976805,97.54887919],[4.53465719,0.02976632,97.54773246],[4.53465667,0.0297646,97.54658409],[4.53465616,0.02976287,97.54543408],[4.53465564,0.02976114,97.54428244],[4.53465513,0.02975941,97.54312917],[4.53465462,0.02975769,97.54197428],[4.5346541,0.02975596,97.54081777],[4.53465359,0.02975423,97.53965965],[4.53465307,0.0297525,97.53849993],[4.53465256,0.02975078,97.53733861],[4.53465205,0.02974905,97.53617569],[4.53465153,0.02974732,97.53501118],[4.53465102,0.02974559,97.5338451],[4.53465051,0.02974387,97.53267743],[4.53464999,0.02974214,97.53150819],[4.53464948,0.02974041,97.53033739],[4.53464896,0.02973868,97.52916502],[4.53464845,0.02973695,97.5279911],[4.53464794,0.02973523,97.52681564],[4.53464742,0.0297335,97.52563862],[4.53464691,0.02973177,97.52446007],[4.53464639,0.02973004,97.52327999],[4.53464588,0.02972832,97.52209838],[4.53464537,0.02972659,97.52091524],[4.53464485,0.02972486,97.5197306],[4.53464434,0.02972313,97.51854444],[4.53464382,0.02972141,97.51735677],[4.53464331,0.02971968,97.51616761],[4.5346428,0.02971795,97.51497696],[4.53464228,0.02971622,97.51378481],[4.53464177,0.0297145,97.51259119],[4.53464125,0.02971277,97.51139609],[4.53464074,0.02971104,97.51019951],[4.53464023,0.02970931,97.50900148],[4.53463971,0.02970759,97.50780198],[4.5346392,0.02970586,97.50660103],[4.53463868,0.02970413,97.50539863],[4.53463817,0.0297024,97.5041948],[4.53463765,0.02970068,97.50298959],[4.53463714,0.02969895,97.50178306],[4.53463663,0.02969722,97.50057524],[4.53463611,0.02969549,97.49936612],[4.5346356,0.02969377,97.49815572],[4.53463508,0.02969204,97.49694404],[4.53463457,0.02969031,97.49573107],[4.53463405,0.02968858,97.49451684],[4.53463354,0.02968686,97.49330133],[4.53463303,0.02968513,97.49208456],[4.53463251,0.0296834,97.49086652],[4.534632,0.02968167,97.48964723],[4.53463148,0.02967995,97.48842669],[4.53463097,0.02967822,97.48720489],[4.53463046,0.02967649,97.48598185],[4.53462994,0.02967476,97.48475757],[4.53462943,0.02967304,97.48353206],[4.53462891,0.02967131,97.48230531],[4.5346284,0.02966958,97.48107733],[4.53462788,0.02966785,97.47984812],[4.53462737,0.02966613,97.47861768],[4.53462685,0.0296644,97.47738601],[4.53462634,0.02966267,97.47615312],[4.53462583,0.02966094,97.474919],[4.53462531,0.02965922,97.47368365],[4.5346248,0.02965749,97.47244707],[4.53462428,0.02965576,97.47120927],[4.53462377,0.02965404,97.46997024],[4.53462325,0.02965231,97.46872998],[4.53462274,0.02965058,97.4674885],[4.53462222,0.02964885,97.4662458],[4.53462171,0.02964713,97.46500187],[4.53462119,0.0296454,97.46375671],[4.53462068,0.02964367,97.46251034],[4.53462016,0.02964194,97.46126273],[4.53461965,0.02964022,97.46001391],[4.53461913,0.02963849,97.45876386],[4.53461861,0.02963676,97.45751259],[4.5346181,0.02963504,97.45626009],[4.53461758,0.02963331,97.45500638],[4.53461707,0.02963158,97.45375144],[4.53461655,0.02962986,97.45249527],[4.53461603,0.02962813,97.45123789],[4.53461552,0.0296264,97.4499793],[4.534615,0.02962468,97.44871955],[4.53461448,0.02962295,97.44745871],[4.53461397,0.02962122,97.4461968],[4.53461345,0.0296195,97.4449339],[4.53461293,0.02961777,97.44367006],[4.53461242,0.02961604,97.44240532],[4.5346119,0.02961432,97.44113974],[4.53461138,0.02961259,97.43987338],[4.53461087,0.02961086,97.43860628],[4.53461035,0.02960914,97.43733851],[4.53460983,0.02960741,97.43607009],[4.53460932,0.02960568,97.43480107],[4.5346088,0.02960395,97.43353144],[4.53460829,0.02960223,97.43226122],[4.53460777,0.0296005,97.43099043],[4.53460725,0.02959877,97.42971907],[4.53460674,0.02959705,97.42844717],[4.53460622,0.02959532,97.42717472],[4.53460571,0.02959359,97.42590175],[4.53460519,0.02959187,97.42462826],[4.53460468,0.02959014,97.42335427],[4.53460416,0.02958841,97.4220798],[4.53460364,0.02958669,97.42080485],[4.53460313,0.02958496,97.41952944],[4.53460261,0.02958323,97.41825358],[4.5346021,0.0295815,97.41697728],[4.53460158,0.02957978,97.41570056],[4.53460107,0.02957805,97.41442342],[4.53460055,0.02957632,97.41314589],[4.53460004,0.0295746,97.41186798],[4.53459953,0.02957287,97.41058969],[4.53459901,0.02957114,97.40931104],[4.5345985,0.02956941,97.40803204],[4.53459798,0.02956769,97.40675272],[4.53459747,0.02956596,97.40547306],[4.53459695,0.02956423,97.40419308],[4.53459644,0.0295625,97.40291278],[4.53459593,0.02956078,97.40163214],[4.53459541,0.02955905,97.40035118],[4.5345949,0.02955732,97.39906989],[4.53459439,0.02955559,97.39778827],[4.53459387,0.02955387,97.39650632],[4.53459336,0.02955214,97.39522403],[4.53459285,0.02955041,97.39394142],[4.53459233,0.02954868,97.39265846],[4.53459182,0.02954696,97.39137517],[4.53459131,0.02954523,97.39009155],[4.53459079,0.0295435,97.38880758],[4.53459028,0.02954177,97.38752327],[4.53458977,0.02954005,97.38623863],[4.53458925,0.02953832,97.38495364],[4.53458874,0.02953659,97.3836683],[4.53458823,0.02953486,97.38238263],[4.53458772,0.02953313,97.3810966],[4.5345872,0.02953141,97.37981023],[4.53458669,0.02952968,97.3785235],[4.53458618,0.02952795,97.37723643],[4.53458566,0.02952622,97.375949],[4.53458515,0.0295245,97.37466122],[4.53458464,0.02952277,97.37337308],[4.53458412,0.02952104,97.37208459],[4.53458361,0.02951931,97.37079573],[4.5345831,0.02951759,97.36950652],[4.53458259,0.02951586,97.36821694],[4.53458207,0.02951413,97.366927],[4.53458156,0.0295124,97.36563669],[4.53458105,0.02951068,97.36434601],[4.53458053,0.02950895,97.36305496],[4.53458002,0.02950722,97.36176356],[4.53457951,0.02950549,97.36047181],[4.53457899,0.02950377,97.35917973],[4.53457848,0.02950204,97.35788732],[4.53457797,0.02950031,97.3565946],[4.53457745,0.02949858,97.35530159],[4.53457694,0.02949686,97.35400829],[4.53457643,0.02949513,97.35271471],[4.53457591,0.0294934,97.35142088],[4.5345754,0.02949167,97.35012679],[4.53457488,0.02948995,97.34883247],[4.53457437,0.02948822,97.34753791],[4.53457386,0.02948649,97.34624315],[4.53457334,0.02948476,97.34494818],[4.53457283,0.02948304,97.34365302],[4.53457231,0.02948131,97.34235769],[4.5345718,0.02947958,97.34106219],[4.53457129,0.02947785,97.33976653],[4.53457077,0.02947613,97.33847073],[4.53457026,0.0294744,97.33717481],[4.53456974,0.02947267,97.33587876],[4.53456923,0.02947095,97.33458261],[4.53456871,0.02946922,97.33328636],[4.5345682,0.02946749,97.33199004],[4.53456769,0.02946576,97.33069364],[4.53456717,0.02946404,97.32939718],[4.53456666,0.02946231,97.32810068],[4.53456614,0.02946058,97.32680415],[4.53456563,0.02945886,97.32550759],[4.53456511,0.02945713,97.32421103],[4.5345646,0.0294554,97.32291447],[4.53456408,0.02945367,97.32161792],[4.53456357,0.02945195,97.3203214],[4.53456306,0.02945022,97.31902492],[4.53456254,0.02944849,97.31772849],[4.53456203,0.02944677,97.31643212],[4.53456151,0.02944504,97.31513583],[4.534561,0.02944331,97.31383963],[4.53456048,0.02944159,97.31254352],[4.53455997,0.02943986,97.31124753],[4.53455945,0.02943813,97.30995166],[4.53455894,0.0294364,97.30865593],[4.53455842,0.02943468,97.30736035],[4.53455791,0.02943295,97.30606493],[4.53455739,0.02943122,97.30476968],[4.53455688,0.0294295,97.30347461],[4.53455636,0.02942777,97.30217974],[4.53455585,0.02942604,97.30088509],[4.53455533,0.02942432,97.29959065],[4.53455482,0.02942259,97.29829645],[4.5345543,0.02942086,97.2970025],[4.53455379,0.02941914,97.2957088],[4.53455327,0.02941741,97.29441537],[4.53455276,0.02941568,97.29312223],[4.53455224,0.02941395,97.29182938],[4.53455173,0.02941223,97.29053685],[4.53455121,0.0294105,97.28924463],[4.5345507,0.02940877,97.28795274],[4.53455018,0.02940705,97.2866612],[4.53454967,0.02940532,97.28537001],[4.53454915,0.02940359,97.2840792],[4.53454864,0.02940187,97.28278876],[4.53454812,0.02940014,97.28149872],[4.53454761,0.02939841,97.28020909],[4.53454709,0.02939669,97.27891987],[4.53454658,0.02939496,97.27763109],[4.53454606,0.02939323,97.27634275],[4.53454555,0.02939151,97.27505486],[4.53454503,0.02938978,97.27376745],[4.53454452,0.02938805,97.27248051],[4.534544,0.02938632,97.27119407],[4.53454349,0.0293846,97.26990813],[4.53454298,0.02938287,97.26862271],[4.53454246,0.02938114,97.26733782],[4.53454195,0.02937942,97.26605347],[4.53454143,0.02937769,97.26476968],[4.53454092,0.02937596,97.26348646],[4.5345404,0.02937424,97.26220382],[4.53453989,0.02937251,97.26092176],[4.53453937,0.02937078,97.25964032],[4.53453886,0.02936906,97.25835949],[4.53453834,0.02936733,97.25707929],[4.53453783,0.0293656,97.25579974],[4.53453731,0.02936388,97.25452083],[4.5345368,0.02936215,97.25324259],[4.53453628,0.02936042,97.25196503],[4.53453577,0.02935869,97.25068816],[4.53453525,0.02935697,97.24941199],[4.53453474,0.02935524,97.24813653],[4.53453422,0.02935351,97.2468618],[4.53453371,0.02935179,97.2455878],[4.53453319,0.02935006,97.24431455],[4.53453268,0.02934833,97.24304205],[4.53453217,0.02934661,97.24177031],[4.53453165,0.02934488,97.24049933],[4.53453114,0.02934315,97.23922911],[4.53453062,0.02934143,97.23795966],[4.53453011,0.0293397,97.23669097],[4.53452959,0.02933797,97.23542307],[4.53452908,0.02933624,97.23415594],[4.53452856,0.02933452,97.2328896],[4.53452805,0.02933279,97.23162405],[4.53452753,0.02933106,97.23035928],[4.53452702,0.02932934,97.22909532],[4.53452651,0.02932761,97.22783215],[4.53452599,0.02932588,97.22656978],[4.53452548,0.02932416,97.22530823],[4.53452496,0.02932243,97.22404748],[4.53452445,0.0293207,97.22278755],[4.53452393,0.02931898,97.22152844],[4.53452342,0.02931725,97.22027015],[4.5345229,0.02931552,97.21901267],[4.53452239,0.0293138,97.21775602],[4.53452187,0.02931207,97.21650017],[4.53452136,0.02931034,97.21524512],[4.53452085,0.02930861,97.21399087],[4.53452033,0.02930689,97.2127374],[4.53451982,0.02930516,97.21148473],[4.5345193,0.02930343,97.21023283],[4.53451879,0.02930171,97.20898171],[4.53451827,0.02929998,97.20773135],[4.53451776,0.02929825,97.20648175],[4.53451724,0.02929653,97.20523291],[4.53451673,0.0292948,97.20398482],[4.53451621,0.02929307,97.20273748],[4.53451569,0.02929135,97.20149087],[4.53451518,0.02928962,97.20024499],[4.53451466,0.02928789,97.19899984],[4.53451415,0.02928617,97.19775541],[4.53451363,0.02928444,97.19651169],[4.53451312,0.02928272,97.19526867],[4.5345126,0.02928099,97.19402635],[4.53451209,0.02927926,97.19278472],[4.53451157,0.02927754,97.19154376],[4.53451105,0.02927581,97.19030348],[4.53451054,0.02927408,97.18906386],[4.53451002,0.02927236,97.18782491],[4.53450951,0.02927063,97.18658663],[4.53450899,0.0292689,97.18534902],[4.53450847,0.02926718,97.18411209],[4.53450796,0.02926545,97.18287584],[4.53450744,0.02926373,97.18164027],[4.53450692,0.029262,97.18040538],[4.53450641,0.02926027,97.17917118],[4.53450589,0.02925855,97.17793767],[4.53450537,0.02925682,97.17670486],[4.53450486,0.0292551,97.17547273],[4.53450434,0.02925337,97.17424131],[4.53450382,0.02925164,97.17301059],[4.5345033,0.02924992,97.17178056],[4.53450279,0.02924819,97.17055125],[4.53450227,0.02924647,97.16932264],[4.53450175,0.02924474,97.16809475],[4.53450124,0.02924301,97.16686757],[4.53450072,0.02924129,97.1656411],[4.5345002,0.02923956,97.16441536],[4.53449968,0.02923784,97.16319034],[4.53449916,0.02923611,97.16196604],[4.53449865,0.02923438,97.16074248],[4.53449813,0.02923266,97.15951964],[4.53449761,0.02923093,97.15829754],[4.53449709,0.02922921,97.15707617],[4.53449657,0.02922748,97.15585555],[4.53449606,0.02922576,97.15463566],[4.53449554,0.02922403,97.15341652],[4.53449502,0.0292223,97.15219813],[4.5344945,0.02922058,97.1509805],[4.53449398,0.02921885,97.14976361],[4.53449347,0.02921713,97.14854748],[4.53449295,0.0292154,97.14733211],[4.53449243,0.02921368,97.14611751],[4.53449191,0.02921195,97.14490367],[4.53449139,0.02921023,97.1436906],[4.53449087,0.0292085,97.1424783],[4.53449035,0.02920678,97.14126677],[4.53448983,0.02920505,97.14005603],[4.53448932,0.02920332,97.13884606],[4.5344888,0.0292016,97.13763687],[4.53448828,0.02919987,97.13642847],[4.53448776,0.02919815,97.13522087],[4.53448724,0.02919642,97.13401405],[4.53448672,0.0291947,97.13280803],[4.5344862,0.02919297,97.1316028],[4.53448568,0.02919125,97.13039838],[4.53448516,0.02918952,97.12919476],[4.53448464,0.0291878,97.12799195],[4.53448412,0.02918607,97.12678995],[4.5344836,0.02918435,97.12558876],[4.53448308,0.02918262,97.12438839],[4.53448257,0.0291809,97.12318884],[4.53448205,0.02917917,97.12199011],[4.53448153,0.02917745,97.1207922],[4.53448101,0.02917572,97.11959513],[4.53448049,0.029174,97.11839888],[4.53447997,0.02917227,97.11720347],[4.53447945,0.02917055,97.1160089],[4.53447893,0.02916882,97.11481516],[4.53447841,0.0291671,97.11362228],[4.53447789,0.02916537,97.11243023],[4.53447737,0.02916365,97.11123904],[4.53447685,0.02916192,97.1100487],[4.53447633,0.0291602,97.10885922],[4.53447581,0.02915847,97.10767059],[4.53447529,0.02915675,97.10648283],[4.53447477,0.02915502,97.10529593],[4.53447425,0.0291533,97.10410991],[4.53447373,0.02915157,97.10292475],[4.53447321,0.02914985,97.10174047],[4.53447269,0.02914812,97.10055706],[4.53447217,0.0291464,97.09937454],[4.53447165,0.02914467,97.0981929],[4.53447113,0.02914295,97.09701215],[4.53447061,0.02914122,97.09583229],[4.53447009,0.0291395,97.09465332],[4.53446957,0.02913777,97.09347525],[4.53446905,0.02913605,97.09229808],[4.53446853,0.02913432,97.09112181],[4.53446801,0.0291326,97.08994645],[4.53446749,0.02913087,97.088772],[4.53446697,0.02912915,97.08759845],[4.53446645,0.02912742,97.0864258],[4.53446593,0.0291257,97.08525405],[4.53446541,0.02912397,97.08408319],[4.53446489,0.02912225,97.08291322],[4.53446436,0.02912052,97.08174414],[4.53446384,0.0291188,97.08057595],[4.53446332,0.02911707,97.07940863],[4.5344628,0.02911535,97.0782422],[4.53446228,0.02911362,97.07707663],[4.53446176,0.0291119,97.07591194],[4.53446124,0.02911017,97.07474811],[4.53446072,0.02910845,97.07358514],[4.5344602,0.02910672,97.07242302],[4.53445968,0.029105,97.07126176],[4.53445916,0.02910328,97.07010133],[4.53445864,0.02910155,97.06894175],[4.53445812,0.02909983,97.06778301],[4.5344576,0.0290981,97.06662509],[4.53445708,0.02909638,97.065468],[4.53445656,0.02909465,97.06431173],[4.53445603,0.02909293,97.06315627],[4.53445551,0.0290912,97.06200162],[4.53445499,0.02908948,97.06084778],[4.53445447,0.02908775,97.05969474],[4.53445395,0.02908603,97.05854251],[4.53445343,0.0290843,97.05739108],[4.53445291,0.02908258,97.05624045],[4.53445239,0.02908086,97.05509064],[4.53445187,0.02907913,97.05394164],[4.53445134,0.02907741,97.05279346],[4.53445082,0.02907568,97.05164609],[4.5344503,0.02907396,97.05049955],[4.53444978,0.02907223,97.04935383],[4.53444926,0.02907051,97.04820893],[4.53444874,0.02906879,97.04706487],[4.53444821,0.02906706,97.04592164],[4.53444769,0.02906534,97.04477924],[4.53444717,0.02906361,97.04363768],[4.53444665,0.02906189,97.04249696],[4.53444613,0.02906016,97.04135708],[4.5344456,0.02905844,97.04021805],[4.53444508,0.02905672,97.03907986],[4.53444456,0.02905499,97.03794253],[4.53444404,0.02905327,97.03680604],[4.53444352,0.02905154,97.03567042],[4.53444299,0.02904982,97.03453565],[4.53444247,0.02904809,97.03340175],[4.53444195,0.02904637,97.03226871],[4.53444143,0.02904465,97.03113653],[4.5344409,0.02904292,97.03000523],[4.53444038,0.0290412,97.02887479],[4.53443986,0.02903947,97.02774523],[4.53443934,0.02903775,97.02661655],[4.53443881,0.02903603,97.02548875],[4.53443829,0.0290343,97.02436184],[4.53443777,0.02903258,97.02323581],[4.53443725,0.02903085,97.02211066],[4.53443672,0.02902913,97.02098641],[4.5344362,0.02902741,97.01986305],[4.53443568,0.02902568,97.01874059],[4.53443516,0.02902396,97.01761903],[4.53443463,0.02902223,97.01649837],[4.53443411,0.02902051,97.01537862],[4.53443359,0.02901879,97.01425977],[4.53443306,0.02901706,97.01314184],[4.53443254,0.02901534,97.01202482],[4.53443202,0.02901361,97.01090871],[4.5344315,0.02901189,97.00979352],[4.53443097,0.02901017,97.00867926],[4.53443045,0.02900844,97.00756592],[4.53442993,0.02900672,97.0064535],[4.5344294,0.029005,97.00534202],[4.53442888,0.02900327,97.00423147],[4.53442836,0.02900155,97.00312185],[4.53442783,0.02899982,97.00201318],[4.53442731,0.0289981,97.00090544],[4.53442679,0.02899638,96.99979865],[4.53442627,0.02899465,96.9986928],[4.53442574,0.02899293,96.99758791],[4.53442522,0.02899121,96.99648396],[4.5344247,0.02898948,96.99538097],[4.53442417,0.02898776,96.99427894],[4.53442365,0.02898603,96.99317787],[4.53442313,0.02898432,96.99207776],[4.5344226,0.02898259,96.99097862],[4.53442208,0.02898087,96.98988045],[4.53442156,0.02897914,96.98878325],[4.53442104,0.02897742,96.98768703],[4.53442051,0.0289757,96.98659178],[4.53441999,0.02897397,96.98549751],[4.53441947,0.02897225,96.98440423],[4.53441894,0.02897053,96.98331193],[4.53441842,0.0289688,96.98222062],[4.53441839,0.02896872,96.98217057]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-4,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-4,"type":"border","predecessorId":-4}},{"geometry":{"coordinates":[[4.53572281,0.03349378,99.64410645],[4.53572234,0.03349204,99.64381642],[4.53572187,0.0334903,99.64352617],[4.53572139,0.03348856,99.6432357],[4.53572092,0.03348682,99.642945],[4.53572045,0.03348508,99.64265407],[4.53571998,0.03348334,99.6423629],[4.53571951,0.0334816,99.6420715],[4.53571904,0.03347986,99.64177985],[4.53571857,0.03347812,99.64148796],[4.53571809,0.03347638,99.64119582],[4.53571762,0.03347465,99.64090342],[4.53571715,0.03347291,99.64061076],[4.53571668,0.03347117,99.64031784],[4.53571621,0.03346943,99.64002465],[4.53571574,0.03346769,99.63973119],[4.53571527,0.03346595,99.63943745],[4.5357148,0.03346421,99.63914343],[4.53571432,0.03346247,99.63884913],[4.53571385,0.03346073,99.63855453],[4.53571338,0.03345899,99.63825964],[4.53571291,0.03345725,99.63796444],[4.53571244,0.03345551,99.63766892],[4.53571197,0.03345377,99.63737308],[4.53571149,0.03345203,99.63707691],[4.53571102,0.03345029,99.6367804],[4.53571055,0.03344855,99.63648355],[4.53571008,0.03344681,99.63618634],[4.53570961,0.03344508,99.63588878],[4.53570914,0.03344334,99.63559085],[4.53570866,0.0334416,99.63529254],[4.53570819,0.03343986,99.63499385],[4.53570772,0.03343812,99.63469476],[4.53570725,0.03343638,99.63439528],[4.53570678,0.03343464,99.63409539],[4.5357063,0.0334329,99.63379509],[4.53570583,0.03343116,99.63349437],[4.53570536,0.03342942,99.63319322],[4.53570489,0.03342768,99.63289163],[4.53570441,0.03342594,99.63258959],[4.53570394,0.0334242,99.63228711],[4.53570347,0.03342246,99.63198416],[4.535703,0.03342073,99.63168074],[4.53570252,0.03341899,99.63137685],[4.53570205,0.03341725,99.63107247],[4.53570158,0.03341551,99.6307676],[4.5357011,0.03341377,99.63046221],[4.53570063,0.03341203,99.63015631],[4.53570016,0.03341029,99.62984988],[4.53569968,0.03340855,99.62954292],[4.53569921,0.03340681,99.6292354],[4.53569874,0.03340507,99.62892732],[4.53569826,0.03340333,99.62861867],[4.53569779,0.0334016,99.62830944],[4.53569732,0.03339986,99.62799962],[4.53569684,0.03339812,99.6276892],[4.53569637,0.03339638,99.62737817],[4.53569589,0.03339464,99.6270665],[4.53569542,0.0333929,99.62675418],[4.53569494,0.03339116,99.6264412],[4.53569447,0.03338942,99.62612754],[4.535694,0.03338769,99.62581317],[4.53569352,0.03338595,99.62549809],[4.53569305,0.03338421,99.62518228],[4.53569257,0.03338247,99.62486572],[4.53569209,0.03338073,99.62454838],[4.53569162,0.03337899,99.62423027],[4.53569114,0.03337725,99.62391134],[4.53569067,0.03337552,99.62359161],[4.53569019,0.03337378,99.62327106],[4.53568971,0.03337204,99.62294973],[4.53568924,0.0333703,99.62262761],[4.53568876,0.03336856,99.62230472],[4.53568829,0.03336683,99.62198108],[4.53568781,0.03336509,99.62165669],[4.53568733,0.03336335,99.62133158],[4.53568685,0.03336161,99.62100575],[4.53568638,0.03335987,99.62067921],[4.5356859,0.03335813,99.62035199],[4.53568542,0.0333564,99.62002409],[4.53568494,0.03335466,99.61969553],[4.53568447,0.03335292,99.61936632],[4.53568399,0.03335118,99.61903647],[4.53568351,0.03334945,99.61870599],[4.53568303,0.03334771,99.61837491],[4.53568256,0.03334597,99.61804323],[4.53568208,0.03334423,99.61771097],[4.5356816,0.03334249,99.61737813],[4.53568112,0.03334076,99.61704474],[4.53568064,0.03333902,99.61671081],[4.53568016,0.03333728,99.61637635],[4.53567969,0.03333554,99.61604137],[4.53567921,0.03333381,99.61570588],[4.53567873,0.03333207,99.61536991],[4.53567825,0.03333033,99.61503347],[4.53567777,0.03332859,99.61469656],[4.53567729,0.03332685,99.61435921],[4.53567681,0.03332512,99.61402142],[4.53567634,0.03332338,99.61368321],[4.53567586,0.03332164,99.61334459],[4.53567538,0.0333199,99.61300558],[4.5356749,0.03331817,99.61266619],[4.53567442,0.03331643,99.61232644],[4.53567394,0.03331469,99.61198633],[4.53567346,0.03331295,99.61164589],[4.53567299,0.03331121,99.61130513],[4.53567251,0.03330948,99.61096405],[4.53567203,0.03330774,99.61062268],[4.53567155,0.033306,99.61028102],[4.53567107,0.03330426,99.6099391],[4.53567059,0.03330253,99.60959692],[4.53567012,0.03330079,99.60925451],[4.53566964,0.03329905,99.60891187],[4.53566916,0.03329731,99.60856902],[4.53566868,0.03329557,99.60822597],[4.53566821,0.03329384,99.60788276],[4.53566773,0.0332921,99.60753941],[4.53566725,0.03329036,99.60719591],[4.53566677,0.03328862,99.60685228],[4.5356663,0.03328688,99.6065085],[4.53566582,0.03328515,99.60616453],[4.53566534,0.03328341,99.60582034],[4.53566486,0.03328167,99.60547591],[4.53566439,0.03327993,99.60513119],[4.53566391,0.03327819,99.60478618],[4.53566343,0.03327645,99.60444085],[4.53566296,0.03327472,99.60409519],[4.53566248,0.03327298,99.60374918],[4.535662,0.03327124,99.60340283],[4.53566153,0.0332695,99.6030561],[4.53566105,0.03326776,99.60270899],[4.53566057,0.03326602,99.60236148],[4.5356601,0.03326429,99.60201357],[4.53565962,0.03326255,99.60166524],[4.53565914,0.03326081,99.60131648],[4.53565867,0.03325907,99.60096726],[4.53565819,0.03325733,99.60061759],[4.53565771,0.03325559,99.60026745],[4.53565724,0.03325386,99.59991682],[4.53565676,0.03325212,99.59956569],[4.53565628,0.03325038,99.59921405],[4.53565581,0.03324864,99.59886188],[4.53565533,0.0332469,99.59850918],[4.53565486,0.03324516,99.59815592],[4.53565438,0.03324342,99.5978021],[4.5356539,0.03324169,99.59744771],[4.53565343,0.03323995,99.59709272],[4.53565295,0.03323821,99.59673712],[4.53565247,0.03323647,99.59638091],[4.535652,0.03323473,99.59602407],[4.53565152,0.03323299,99.59566659],[4.53565104,0.03323126,99.59530844],[4.53565057,0.03322952,99.59494963],[4.53565009,0.03322778,99.59459013],[4.53564961,0.03322604,99.59422994],[4.53564914,0.0332243,99.59386903],[4.53564866,0.03322256,99.5935074],[4.53564818,0.03322082,99.59314504],[4.53564771,0.03321909,99.59278192],[4.53564723,0.03321735,99.59241804],[4.53564675,0.03321561,99.59205338],[4.53564627,0.03321387,99.59168793],[4.5356458,0.03321213,99.59132167],[4.53564532,0.03321039,99.5909546],[4.53564484,0.03320866,99.5905867],[4.53564437,0.03320692,99.59021795],[4.53564389,0.03320518,99.58984834],[4.53564341,0.03320344,99.58947786],[4.53564293,0.0332017,99.5891065],[4.53564245,0.03319997,99.58873423],[4.53564198,0.03319823,99.58836106],[4.5356415,0.03319649,99.58798696],[4.53564102,0.03319475,99.58761192],[4.53564054,0.03319301,99.58723592],[4.53564006,0.03319128,99.58685896],[4.53563959,0.03318954,99.58648102],[4.53563911,0.0331878,99.5861021],[4.53563863,0.03318606,99.58572223],[4.53563815,0.03318432,99.58534143],[4.53563767,0.03318259,99.58495973],[4.53563719,0.03318085,99.58457713],[4.53563671,0.03317911,99.58419368],[4.53563623,0.03317737,99.58380938],[4.53563575,0.03317563,99.58342426],[4.53563527,0.0331739,99.58303834],[4.5356348,0.03317216,99.58265163],[4.53563432,0.03317042,99.58226412],[4.53563384,0.03316868,99.58187583],[4.53563336,0.03316695,99.58148676],[4.53563288,0.03316521,99.58109692],[4.5356324,0.03316347,99.58070632],[4.53563192,0.03316173,99.58031495],[4.53563144,0.03315999,99.57992283],[4.53563096,0.03315826,99.57952996],[4.53563048,0.03315652,99.57913636],[4.53563,0.03315478,99.57874201],[4.53562952,0.03315304,99.57834695],[4.53562904,0.03315131,99.57795115],[4.53562856,0.03314957,99.57755465],[4.53562808,0.03314783,99.57715745],[4.5356276,0.03314609,99.57675955],[4.53562712,0.03314436,99.57636097],[4.53562664,0.03314262,99.57596169],[4.53562616,0.03314088,99.57556172],[4.53562568,0.03313914,99.57516106],[4.5356252,0.0331374,99.57475971],[4.53562472,0.03313567,99.57435768],[4.53562425,0.03313393,99.57395496],[4.53562377,0.03313219,99.57355156],[4.53562329,0.03313045,99.57314747],[4.53562281,0.03312872,99.57274271],[4.53562233,0.03312698,99.57233726],[4.53562185,0.03312524,99.57193114],[4.53562137,0.0331235,99.57152433],[4.53562089,0.03312176,99.57111686],[4.53562041,0.03312003,99.57070871],[4.53561993,0.03311829,99.57029988],[4.53561945,0.03311655,99.56989038],[4.53561897,0.03311481,99.56948022],[4.53561849,0.03311307,99.56906938],[4.53561801,0.03311134,99.56865787],[4.53561753,0.0331096,99.56824567],[4.53561705,0.03310786,99.56783277],[4.53561657,0.03310612,99.56741917],[4.5356161,0.03310439,99.56700486],[4.53561562,0.03310265,99.56658983],[4.53561514,0.03310091,99.56617407],[4.53561466,0.03309917,99.56575758],[4.53561418,0.03309743,99.56534034],[4.5356137,0.0330957,99.56492234],[4.53561322,0.03309396,99.56450358],[4.53561274,0.03309222,99.56408405],[4.53561226,0.03309048,99.56366373],[4.53561178,0.03308874,99.56324263],[4.5356113,0.03308701,99.56282073],[4.53561082,0.03308527,99.56239803],[4.53561035,0.03308353,99.56197451],[4.53560987,0.03308179,99.56155016],[4.53560939,0.03308005,99.56112499],[4.53560891,0.03307832,99.56069897],[4.53560843,0.03307658,99.5602721],[4.53560795,0.03307484,99.55984438],[4.53560747,0.0330731,99.55941578],[4.53560699,0.03307136,99.55898632],[4.53560651,0.03306963,99.55855596],[4.53560603,0.03306789,99.55812472],[4.53560555,0.03306615,99.55769257],[4.53560507,0.03306441,99.55725951],[4.5356046,0.03306267,99.55682554],[4.53560412,0.03306094,99.55639063],[4.53560364,0.0330592,99.55595479],[4.53560316,0.03305746,99.555518],[4.53560268,0.03305572,99.55508026],[4.5356022,0.03305398,99.55464156],[4.53560172,0.03305225,99.55420188],[4.53560124,0.03305051,99.55376122],[4.53560076,0.03304877,99.55331958],[4.53560028,0.03304703,99.55287693],[4.5355998,0.03304529,99.55243328],[4.53559932,0.03304356,99.55198862],[4.53559884,0.03304182,99.55154293],[4.53559836,0.03304008,99.5510962],[4.53559788,0.03303834,99.55064844],[4.5355974,0.0330366,99.55019962],[4.53559692,0.03303487,99.54974975],[4.53559644,0.03303313,99.54929881],[4.53559596,0.03303139,99.54884679],[4.53559548,0.03302965,99.54839369],[4.535595,0.03302792,99.54793953],[4.53559452,0.03302618,99.54748432],[4.53559404,0.03302444,99.54702809],[4.53559356,0.0330227,99.54657085],[4.53559308,0.03302096,99.54611262],[4.5355926,0.03301923,99.5456534],[4.53559212,0.03301749,99.54519319],[4.53559164,0.03301575,99.54473199],[4.53559116,0.03301401,99.5442698],[4.53559068,0.03301228,99.5438066],[4.5355902,0.03301054,99.54334241],[4.53558972,0.0330088,99.5428772],[4.53558924,0.03300706,99.54241099],[4.53558875,0.03300533,99.54194377],[4.53558827,0.03300359,99.54147552],[4.53558779,0.03300185,99.54100626],[4.53558731,0.03300011,99.54053597],[4.53558683,0.03299837,99.54006466],[4.53558635,0.03299664,99.53959231],[4.53558587,0.0329949,99.53911895],[4.53558539,0.03299316,99.53864456],[4.53558491,0.03299142,99.53816917],[4.53558443,0.03298969,99.53769278],[4.53558395,0.03298795,99.5372154],[4.53558347,0.03298621,99.53673704],[4.53558299,0.03298447,99.5362577],[4.5355825,0.03298274,99.53577739],[4.53558202,0.032981,99.53529612],[4.53558154,0.03297926,99.5348139],[4.53558106,0.03297752,99.53433073],[4.53558058,0.03297578,99.53384663],[4.5355801,0.03297405,99.5333616],[4.53557962,0.03297231,99.53287564],[4.53557914,0.03297057,99.53238875],[4.53557866,0.03296883,99.53190093],[4.53557818,0.0329671,99.53141219],[4.5355777,0.03296536,99.53092251],[4.53557722,0.03296362,99.53043191],[4.53557674,0.03296188,99.52994038],[4.53557625,0.03296014,99.52944792],[4.53557577,0.03295841,99.52895453],[4.53557529,0.03295667,99.52846022],[4.53557481,0.03295493,99.52796497],[4.53557433,0.03295319,99.5274688],[4.53557385,0.03295146,99.52697169],[4.53557337,0.03294972,99.52647366],[4.53557289,0.03294798,99.5259747],[4.53557241,0.03294624,99.52547481],[4.53557193,0.0329445,99.52497399],[4.53557145,0.03294277,99.52447224],[4.53557097,0.03294103,99.52396957],[4.53557049,0.03293929,99.52346596],[4.53557001,0.03293755,99.52296143],[4.53556953,0.03293582,99.52245595],[4.53556905,0.03293408,99.5219495],[4.53556857,0.03293234,99.52144207],[4.53556809,0.0329306,99.52093364],[4.53556761,0.03292886,99.52042419],[4.53556713,0.03292713,99.51991369],[4.53556665,0.03292539,99.51940212],[4.53556617,0.03292365,99.51888948],[4.53556569,0.03292191,99.51837572],[4.53556521,0.03292017,99.51786085],[4.53556473,0.03291844,99.51734483],[4.53556425,0.0329167,99.51682764],[4.53556377,0.03291496,99.51630927],[4.53556329,0.03291322,99.51578969],[4.53556281,0.03291148,99.51526889],[4.53556233,0.03290975,99.51474684],[4.53556185,0.03290801,99.51422353],[4.53556137,0.03290627,99.51369893],[4.53556089,0.03290453,99.51317303],[4.53556041,0.0329028,99.5126458],[4.53555993,0.03290106,99.51211722],[4.53555945,0.03289932,99.51158728],[4.53555896,0.03289758,99.51105595],[4.53555848,0.03289585,99.51052321],[4.535558,0.03289411,99.50998905],[4.53555752,0.03289237,99.50945343],[4.53555704,0.03289063,99.50891635],[4.53555656,0.03288889,99.50837779],[4.53555608,0.03288716,99.50783772],[4.5355556,0.03288542,99.50729618],[4.53555511,0.03288368,99.50675316],[4.53555463,0.03288195,99.50620868],[4.53555415,0.03288021,99.50566274],[4.53555367,0.03287847,99.50511535],[4.53555319,0.03287673,99.50456653],[4.5355527,0.032875,99.50401629],[4.53555222,0.03287326,99.50346463],[4.53555174,0.03287152,99.50291156],[4.53555126,0.03286978,99.50235709],[4.53555077,0.03286805,99.50180124],[4.53555029,0.03286631,99.50124401],[4.53554981,0.03286457,99.50068542],[4.53554933,0.03286284,99.50012546],[4.53554884,0.0328611,99.49956416],[4.53554836,0.03285936,99.49900152],[4.53554788,0.03285763,99.49843755],[4.53554739,0.03285589,99.49787227],[4.53554691,0.03285415,99.49730567],[4.53554643,0.03285241,99.49673778],[4.53554595,0.03285068,99.49616859],[4.53554546,0.03284894,99.49559813],[4.53554498,0.0328472,99.4950264],[4.5355445,0.03284547,99.4944534],[4.53554401,0.03284373,99.49387916],[4.53554353,0.03284199,99.49330368],[4.53554305,0.03284026,99.49272697],[4.53554256,0.03283852,99.49214904],[4.53554208,0.03283678,99.49156989],[4.5355416,0.03283505,99.49098955],[4.53554111,0.03283331,99.49040802],[4.53554063,0.03283157,99.4898253],[4.53554015,0.03282983,99.48924142],[4.53553966,0.0328281,99.48865637],[4.53553918,0.03282636,99.48807017],[4.5355387,0.03282462,99.48748283],[4.53553821,0.03282289,99.48689436],[4.53553773,0.03282115,99.48630477],[4.53553725,0.03281941,99.48571407],[4.53553676,0.03281768,99.48512226],[4.53553628,0.03281594,99.48452934],[4.5355358,0.0328142,99.4839353],[4.53553532,0.03281247,99.48334016],[4.53553483,0.03281073,99.48274389],[4.53553435,0.03280899,99.48214652],[4.53553387,0.03280725,99.48154805],[4.53553338,0.03280552,99.48094849],[4.5355329,0.03280378,99.48034785],[4.53553242,0.03280204,99.47974617],[4.53553194,0.03280031,99.47914345],[4.53553145,0.03279857,99.47853971],[4.53553097,0.03279683,99.47793494],[4.53553049,0.0327951,99.47732912],[4.53553001,0.03279336,99.47672225],[4.53552952,0.03279162,99.47611431],[4.53552904,0.03278988,99.47550529],[4.53552856,0.03278815,99.47489518],[4.53552808,0.03278641,99.47428397],[4.5355276,0.03278467,99.47367165],[4.53552711,0.03278294,99.47305821],[4.53552663,0.0327812,99.47244364],[4.53552615,0.03277946,99.47182792],[4.53552567,0.03277772,99.47121104],[4.53552519,0.03277599,99.470593],[4.5355247,0.03277425,99.46997378],[4.53552422,0.03277251,99.46935337],[4.53552374,0.03277077,99.46873176],[4.53552326,0.03276904,99.46810894],[4.53552278,0.0327673,99.4674849],[4.5355223,0.03276556,99.46685962],[4.53552181,0.03276383,99.4662331],[4.53552133,0.03276209,99.46560532],[4.53552085,0.03276035,99.46497628],[4.53552037,0.03275861,99.46434596],[4.53551989,0.03275688,99.46371435],[4.53551941,0.03275514,99.46308145],[4.53551892,0.0327534,99.46244723],[4.53551844,0.03275167,99.46181169],[4.53551796,0.03274993,99.46117481],[4.53551748,0.03274819,99.46053659],[4.535517,0.03274645,99.45989702],[4.53551652,0.03274472,99.45925608],[4.53551603,0.03274298,99.45861376],[4.53551555,0.03274124,99.45797005],[4.53551507,0.0327395,99.45732494],[4.53551459,0.03273777,99.45667843],[4.53551411,0.03273603,99.45603048],[4.53551362,0.03273429,99.45538111],[4.53551314,0.03273256,99.45473029],[4.53551266,0.03273082,99.45407802],[4.53551218,0.03272908,99.45342428],[4.5355117,0.03272734,99.45276906],[4.53551121,0.03272561,99.45211235],[4.53551073,0.03272387,99.45145414],[4.53551025,0.03272213,99.45079442],[4.53550977,0.0327204,99.45013318],[4.53550929,0.03271866,99.44947041],[4.5355088,0.03271692,99.44880609],[4.53550832,0.03271519,99.44814021],[4.53550784,0.03271345,99.44747277],[4.53550736,0.03271171,99.44680375],[4.53550687,0.03270997,99.44613314],[4.53550639,0.03270824,99.44546093],[4.53550591,0.0327065,99.44478711],[4.53550543,0.03270476,99.4441117],[4.53550494,0.03270303,99.44343468],[4.53550446,0.03270129,99.44275607],[4.53550398,0.03269955,99.44207587],[4.53550349,0.03269782,99.44139408],[4.53550301,0.03269608,99.44071071],[4.53550253,0.03269434,99.44002575],[4.53550204,0.03269261,99.43933922],[4.53550156,0.03269087,99.4386511],[4.53550108,0.03268913,99.43796142],[4.53550059,0.0326874,99.43727016],[4.53550011,0.03268566,99.43657733],[4.53549963,0.03268392,99.43588291],[4.53549914,0.03268219,99.4351869],[4.53549866,0.03268045,99.43448929],[4.53549818,0.03267871,99.43379007],[4.53549769,0.03267698,99.43308924],[4.53549721,0.03267524,99.43238677],[4.53549672,0.0326735,99.43168267],[4.53549624,0.03267177,99.43097695],[4.53549576,0.03267003,99.43026961],[4.53549527,0.03266829,99.42956068],[4.53549479,0.03266656,99.42885017],[4.5354943,0.03266482,99.42813809],[4.53549382,0.03266309,99.42742444],[4.53549334,0.03266135,99.42670921],[4.53549285,0.03265961,99.42599242],[4.53549237,0.03265788,99.42527406],[4.53549188,0.03265614,99.42455412],[4.5354914,0.0326544,99.42383262],[4.53549091,0.03265267,99.42310955],[4.53549043,0.03265093,99.42238492],[4.53548995,0.03264919,99.42165872],[4.53548946,0.03264746,99.42093095],[4.53548898,0.03264572,99.42020162],[4.53548849,0.03264399,99.41947072],[4.53548801,0.03264225,99.41873827],[4.53548752,0.03264051,99.41800425],[4.53548704,0.03263878,99.41726866],[4.53548655,0.03263704,99.41653152],[4.53548607,0.0326353,99.41579282],[4.53548558,0.03263357,99.41505256],[4.5354851,0.03263183,99.41431074],[4.53548461,0.0326301,99.41356736],[4.53548413,0.03262836,99.41282242],[4.53548364,0.03262662,99.41207593],[4.53548316,0.03262489,99.41132788],[4.53548267,0.03262315,99.41057828],[4.53548219,0.03262142,99.40982713],[4.5354817,0.03261968,99.40907442],[4.53548122,0.03261794,99.40832016],[4.53548073,0.03261621,99.40756434],[4.53548025,0.03261447,99.40680698],[4.53547976,0.03261274,99.40604806],[4.53547928,0.032611,99.4052876],[4.53547879,0.03260926,99.40452558],[4.53547831,0.03260753,99.40376202],[4.53547782,0.03260579,99.40299692],[4.53547734,0.03260405,99.40223026],[4.53547685,0.03260232,99.40146206],[4.53547637,0.03260058,99.40069231],[4.53547588,0.03259885,99.39992102],[4.5354754,0.03259711,99.39914819],[4.53547491,0.03259537,99.39837381],[4.53547443,0.03259364,99.3975979],[4.53547394,0.0325919,99.39682044],[4.53547346,0.03259017,99.39604144],[4.53547297,0.03258843,99.3952609],[4.53547249,0.03258669,99.39447883],[4.535472,0.03258496,99.39369524],[4.53547152,0.03258322,99.39291013],[4.53547103,0.03258149,99.39212351],[4.53547055,0.03257975,99.39133539],[4.53547006,0.03257801,99.39054577],[4.53546958,0.03257628,99.38975466],[4.53546909,0.03257454,99.38896205],[4.53546861,0.03257281,99.38816794],[4.53546812,0.03257107,99.38737232],[4.53546764,0.03256933,99.38657519],[4.53546715,0.0325676,99.38577657],[4.53546667,0.03256586,99.38497648],[4.53546618,0.03256413,99.38417493],[4.5354657,0.03256239,99.38337193],[4.53546521,0.03256065,99.38256749],[4.53546473,0.03255892,99.38176163],[4.53546424,0.03255718,99.38095437],[4.53546376,0.03255545,99.38014572],[4.53546327,0.03255371,99.37933568],[4.53546279,0.03255197,99.37852429],[4.5354623,0.03255024,99.37771154],[4.53546182,0.0325485,99.37689745],[4.53546133,0.03254677,99.37608204],[4.53546085,0.03254503,99.37526533],[4.53546036,0.03254329,99.37444732],[4.53545988,0.03254156,99.37362803],[4.53545939,0.03253982,99.37280747],[4.53545891,0.03253808,99.37198566],[4.53545842,0.03253635,99.37116261],[4.53545794,0.03253461,99.37033832],[4.53545745,0.03253288,99.3695128],[4.53545697,0.03253114,99.36868603],[4.53545649,0.0325294,99.36785801],[4.535456,0.03252767,99.36702874],[4.53545552,0.03252593,99.3661982],[4.53545503,0.0325242,99.36536641],[4.53545455,0.03252246,99.36453334],[4.53545407,0.03252072,99.36369901],[4.53545358,0.03251899,99.36286339],[4.5354531,0.03251725,99.36202649],[4.53545261,0.03251551,99.36118831],[4.53545213,0.03251378,99.36034882],[4.53545165,0.03251204,99.35950805],[4.53545116,0.03251031,99.35866597],[4.53545068,0.03250857,99.35782258],[4.53545019,0.03250683,99.35697788],[4.53544971,0.0325051,99.35613186],[4.53544923,0.03250336,99.35528452],[4.53544874,0.03250162,99.35443585],[4.53544826,0.03249989,99.35358587],[4.53544777,0.03249815,99.35273457],[4.53544729,0.03249642,99.35188196],[4.53544681,0.03249468,99.35102804],[4.53544632,0.03249294,99.35017283],[4.53544584,0.03249121,99.34931632],[4.53544535,0.03248947,99.34845852],[4.53544487,0.03248773,99.34759943],[4.53544439,0.032486,99.34673906],[4.5354439,0.03248426,99.34587742],[4.53544342,0.03248252,99.34501451],[4.53544294,0.03248079,99.34415033],[4.53544245,0.03247905,99.34328488],[4.53544197,0.03247732,99.34241811],[4.53544148,0.03247558,99.34154998],[4.535441,0.03247384,99.34068044],[4.53544052,0.03247211,99.33980943],[4.53544003,0.03247037,99.3389369],[4.53543955,0.03246864,99.3380628],[4.53543906,0.0324669,99.33718708],[4.53543858,0.03246516,99.33630969],[4.5354381,0.03246343,99.33543058],[4.53543761,0.03246169,99.33454969],[4.53543713,0.03245995,99.33366698],[4.53543664,0.03245822,99.33278239],[4.53543616,0.03245648,99.33189587],[4.53543567,0.03245475,99.33100737],[4.53543518,0.03245301,99.33011685],[4.5354347,0.03245128,99.32922454],[4.53543421,0.03244954,99.32833096],[4.53543373,0.0324478,99.32743663],[4.53543324,0.03244607,99.32654208],[4.53543276,0.03244433,99.32564783],[4.53543227,0.0324426,99.32475442],[4.53543179,0.03244086,99.32386235],[4.53543131,0.03243912,99.32297217],[4.53543082,0.03243739,99.32208438],[4.53543034,0.03243565,99.32119952],[4.53542987,0.03243391,99.32031709],[4.53542939,0.03243217,99.31943256],[4.53542891,0.03243044,99.3185404],[4.53542842,0.0324287,99.31763506],[4.53542793,0.03242697,99.316711],[4.53542743,0.03242524,99.31576268],[4.53542692,0.03242351,99.31478546],[4.53542641,0.03242178,99.3137951],[4.53542591,0.03242005,99.31282768],[4.53542543,0.03241831,99.31192011],[4.53542497,0.03241657,99.3111093],[4.53542455,0.03241481,99.31036695],[4.53542404,0.03241308,99.30939222],[4.53542325,0.03241143,99.30754289],[4.53542209,0.03240989,99.30454115],[4.53542122,0.03240826,99.30244786],[4.53542073,0.03240653,99.30151748],[4.5354203,0.03240478,99.30074807],[4.53541981,0.03240304,99.29983167],[4.53541932,0.03240131,99.29888485],[4.53541883,0.03239957,99.29794414],[4.53541834,0.03239784,99.29700749],[4.53541786,0.0323961,99.29607305],[4.53541737,0.03239437,99.29513966],[4.53541688,0.03239263,99.2942063],[4.5354164,0.0323909,99.29327197],[4.53541591,0.03238916,99.2923362],[4.53541543,0.03238742,99.29139897],[4.53541494,0.03238569,99.29046029],[4.53541445,0.03238395,99.28952018],[4.53541397,0.03238222,99.28857866],[4.53541348,0.03238048,99.28763573],[4.53541299,0.03237875,99.28669144],[4.53541251,0.03237701,99.2857459],[4.53541202,0.03237528,99.28479925],[4.53541153,0.03237354,99.28385162],[4.53541105,0.03237181,99.28290315],[4.53541056,0.03237007,99.28195398],[4.53541008,0.03236834,99.28100423],[4.53540959,0.0323666,99.28005403],[4.5354091,0.03236486,99.27910342],[4.53540862,0.03236313,99.27815228],[4.53540813,0.03236139,99.27720052],[4.53540765,0.03235966,99.27624804],[4.53540716,0.03235792,99.27529474],[4.53540668,0.03235618,99.27434052],[4.5354062,0.03235445,99.27338528],[4.53540571,0.03235271,99.27242892],[4.53540523,0.03235098,99.27147134],[4.53540474,0.03234924,99.27051245],[4.53540426,0.03234751,99.26955214],[4.53540377,0.03234577,99.26859032],[4.53540329,0.03234403,99.26762688],[4.5354028,0.0323423,99.26666176],[4.53540232,0.03234056,99.26569495],[4.53540183,0.03233883,99.26472649],[4.53540135,0.03233709,99.2637564],[4.53540086,0.03233536,99.2627847],[4.53540037,0.03233362,99.26181141],[4.53539989,0.03233189,99.26083658],[4.5353994,0.03233015,99.25986021],[4.53539892,0.03232841,99.25888233],[4.53539843,0.03232668,99.25790297],[4.53539794,0.03232494,99.25692216],[4.53539746,0.03232321,99.25593991],[4.53539697,0.03232147,99.25495626],[4.53539648,0.03231974,99.25397122],[4.535396,0.032318,99.25298482],[4.53539551,0.03231627,99.25199709],[4.53539502,0.03231453,99.25100806],[4.53539454,0.0323128,99.25001774],[4.53539405,0.03231106,99.24902615],[4.53539356,0.03230933,99.24803331],[4.53539308,0.03230759,99.24703925],[4.53539259,0.03230586,99.24604403],[4.5353921,0.03230412,99.24504769],[4.53539162,0.03230239,99.24405028],[4.53539113,0.03230065,99.24305186],[4.53539064,0.03229892,99.24205247],[4.53539016,0.03229718,99.24105218],[4.53538967,0.03229545,99.24005102],[4.53538918,0.03229371,99.23904903],[4.5353887,0.03229197,99.23804621],[4.53538821,0.03229024,99.23704253],[4.53538773,0.0322885,99.23603799],[4.53538724,0.03228677,99.23503257],[4.53538675,0.03228503,99.23402626],[4.53538627,0.0322833,99.23301905],[4.53538578,0.03228156,99.23201092],[4.5353853,0.03227983,99.23100186],[4.53538481,0.03227809,99.22999186],[4.53538433,0.03227636,99.2289809],[4.53538384,0.03227462,99.22796897],[4.53538336,0.03227289,99.22695605],[4.53538287,0.03227115,99.22594215],[4.53538239,0.03226941,99.22492723],[4.5353819,0.03226768,99.2239113],[4.53538141,0.03226594,99.22289433],[4.53538093,0.03226421,99.22187631],[4.53538044,0.03226247,99.22085722],[4.53537996,0.03226074,99.21983703],[4.53537947,0.032259,99.21881572],[4.53537899,0.03225727,99.21779327],[4.5353785,0.03225553,99.21676965],[4.53537802,0.03225379,99.21574484],[4.53537753,0.03225206,99.21471881],[4.53537705,0.03225032,99.21369154],[4.53537656,0.03224859,99.21266301],[4.53537608,0.03224685,99.21163318],[4.53537559,0.03224512,99.21060205],[4.53537511,0.03224338,99.20956957],[4.53537462,0.03224165,99.20853574],[4.53537414,0.03223991,99.20750052],[4.53537365,0.03223817,99.20646389],[4.53537317,0.03223644,99.20542583],[4.53537268,0.0322347,99.20438631],[4.5353722,0.03223297,99.20334532],[4.53537171,0.03223123,99.20230281],[4.53537122,0.0322295,99.20125878],[4.53537074,0.03222776,99.2002132],[4.53537025,0.03222603,99.19916604],[4.53536976,0.03222429,99.19811728],[4.53536928,0.03222256,99.19706689],[4.53536879,0.03222082,99.19601488],[4.5353683,0.03221909,99.19496127],[4.53536782,0.03221735,99.1939061],[4.53536733,0.03221562,99.1928494],[4.53536684,0.03221388,99.1917912],[4.53536636,0.03221215,99.19073155],[4.53536587,0.03221041,99.18967048],[4.53536538,0.03220868,99.18860803],[4.53536489,0.03220694,99.18754424],[4.5353644,0.03220521,99.18647914],[4.53536392,0.03220347,99.18541279],[4.53536343,0.03220174,99.18434522],[4.53536294,0.0322,99.18327647],[4.53536245,0.03219827,99.18220659],[4.53536197,0.03219653,99.18113559],[4.53536148,0.0321948,99.18006349],[4.53536099,0.03219306,99.17899027],[4.5353605,0.03219133,99.17791591],[4.53536001,0.03218959,99.17684041],[4.53535953,0.03218786,99.17576376],[4.53535904,0.03218612,99.17468595],[4.53535855,0.03218439,99.17360697],[4.53535806,0.03218265,99.17252683],[4.53535758,0.03218092,99.17144551],[4.53535709,0.03217918,99.170363],[4.5353566,0.03217745,99.16927929],[4.53535611,0.03217571,99.16819439],[4.53535562,0.03217398,99.16710828],[4.53535514,0.03217224,99.16602095],[4.53535465,0.03217051,99.1649324],[4.53535416,0.03216877,99.16384262],[4.53535367,0.03216704,99.16275161],[4.53535319,0.0321653,99.16165935],[4.5353527,0.03216357,99.16056583],[4.53535221,0.03216184,99.15947106],[4.53535172,0.0321601,99.15837503],[4.53535123,0.03215837,99.15727772],[4.53535074,0.03215663,99.15617913],[4.53535026,0.0321549,99.15507925],[4.53534977,0.03215316,99.15397808],[4.53534928,0.03215143,99.15287561],[4.53534879,0.03214969,99.15177182],[4.5353483,0.03214796,99.15066672],[4.53534781,0.03214622,99.1495603],[4.53534733,0.03214449,99.14845255],[4.53534684,0.03214275,99.14734346],[4.53534635,0.03214102,99.14623302],[4.53534586,0.03213928,99.14512123],[4.53534537,0.03213755,99.14400808],[4.53534488,0.03213582,99.14289357],[4.53534439,0.03213408,99.14177768],[4.5353439,0.03213235,99.14066041],[4.53534341,0.03213061,99.13954175],[4.53534292,0.03212888,99.1384217],[4.53534243,0.03212714,99.13730024],[4.53534195,0.03212541,99.13617738],[4.53534146,0.03212367,99.13505315],[4.53534097,0.03212194,99.13392757],[4.53534048,0.03212021,99.13280068],[4.53533999,0.03211847,99.13167248],[4.5353395,0.03211674,99.13054299],[4.53533901,0.032115,99.12941222],[4.53533852,0.03211327,99.12828019],[4.53533803,0.03211153,99.12714691],[4.53533754,0.0321098,99.1260124],[4.53533705,0.03210807,99.12487666],[4.53533656,0.03210633,99.12373971],[4.53533607,0.0321046,99.12260155],[4.53533558,0.03210286,99.12146219],[4.53533509,0.03210113,99.12032164],[4.5353346,0.0320994,99.11917991],[4.53533411,0.03209766,99.11803701],[4.53533361,0.03209593,99.11689296],[4.53533312,0.03209419,99.11574775],[4.53533263,0.03209246,99.1146014],[4.53533214,0.03209072,99.11345392],[4.53533165,0.03208899,99.11230531],[4.53533116,0.03208726,99.11115559],[4.53533067,0.03208552,99.11000477],[4.53533018,0.03208379,99.10885285],[4.53532969,0.03208205,99.10769985],[4.5353292,0.03208032,99.10654577],[4.53532871,0.03207858,99.10539062],[4.53532822,0.03207685,99.10423442],[4.53532773,0.03207512,99.10307717],[4.53532724,0.03207338,99.10191888],[4.53532675,0.03207165,99.10075956],[4.53532626,0.03206991,99.09959922],[4.53532577,0.03206818,99.09843787],[4.53532528,0.03206645,99.09727552],[4.53532479,0.03206471,99.09611217],[4.5353243,0.03206298,99.09494784],[4.53532381,0.03206124,99.09378254],[4.53532332,0.03205951,99.09261628],[4.53532283,0.03205777,99.09144906],[4.53532234,0.03205604,99.09028089],[4.53532185,0.03205431,99.08911179],[4.53532136,0.03205257,99.08794176],[4.53532087,0.03205084,99.08677082],[4.53532038,0.0320491,99.08559896],[4.53531989,0.03204737,99.08442621],[4.53531941,0.03204563,99.08325257],[4.53531892,0.0320439,99.08207805],[4.53531843,0.03204216,99.08090266],[4.53531794,0.03204043,99.0797264],[4.53531745,0.0320387,99.0785493],[4.53531696,0.03203696,99.07737135],[4.53531647,0.03203523,99.07619257],[4.53531598,0.03203349,99.07501296],[4.53531549,0.03203176,99.07383254],[4.53531501,0.03203002,99.07265132],[4.53531452,0.03202829,99.07146931],[4.53531403,0.03202655,99.0702865],[4.53531354,0.03202482,99.0691029],[4.53531305,0.03202308,99.06791851],[4.53531256,0.03202135,99.0667333],[4.53531208,0.03201961,99.06554729],[4.53531159,0.03201788,99.06436046],[4.5353111,0.03201614,99.06317281],[4.53531061,0.03201441,99.06198433],[4.53531013,0.03201267,99.06079502],[4.53530964,0.03201094,99.05960488],[4.53530915,0.0320092,99.0584139],[4.53530866,0.03200747,99.05722207],[4.53530818,0.03200573,99.0560294],[4.53530769,0.032004,99.05483586],[4.5353072,0.03200226,99.05364147],[4.53530671,0.03200053,99.05244621],[4.53530623,0.03199879,99.05125008],[4.53530574,0.03199706,99.05005308],[4.53530525,0.03199532,99.0488552],[4.53530476,0.03199359,99.04765643],[4.53530428,0.03199185,99.04645677],[4.53530379,0.03199012,99.04525622],[4.5353033,0.03198838,99.04405477],[4.53530281,0.03198665,99.04285241],[4.53530233,0.03198491,99.04164914],[4.53530184,0.03198318,99.04044496],[4.53530135,0.03198144,99.03923986],[4.53530087,0.03197971,99.03803383],[4.53530038,0.03197797,99.03682687],[4.53529989,0.03197624,99.03561898],[4.5352994,0.0319745,99.03441015],[4.53529892,0.03197277,99.03320037],[4.53529843,0.03197103,99.03198965],[4.53529794,0.0319693,99.03077796],[4.53529745,0.03196756,99.02956532],[4.53529697,0.03196583,99.0283517],[4.53529648,0.03196409,99.0271371],[4.53529599,0.03196236,99.02592152],[4.5352955,0.03196062,99.02470494],[4.53529501,0.03195889,99.02348736],[4.53529453,0.03195715,99.02226877],[4.53529404,0.03195542,99.02104917],[4.53529355,0.03195368,99.01982854],[4.53529306,0.03195195,99.01860688],[4.53529257,0.03195021,99.01738418],[4.53529208,0.03194848,99.01616044],[4.5352916,0.03194674,99.01493564],[4.53529111,0.03194501,99.01370978],[4.53529062,0.03194328,99.01248285],[4.53529013,0.03194154,99.01125484],[4.53528964,0.03193981,99.01002575],[4.53528915,0.03193807,99.00879557],[4.53528866,0.03193634,99.00756429],[4.53528817,0.0319346,99.0063319],[4.53528768,0.03193287,99.0050984],[4.53528719,0.03193113,99.00386382],[4.5352867,0.0319294,99.00262814],[4.53528621,0.03192767,99.0013914],[4.53528572,0.03192593,99.00015359],[4.53528523,0.0319242,98.99891472],[4.53528474,0.03192246,98.99767483],[4.53528425,0.03192073,98.99643392],[4.53528376,0.031919,98.99519203],[4.53528327,0.03191726,98.99394918],[4.53528277,0.03191553,98.9927054],[4.53528228,0.03191379,98.99146071],[4.53528179,0.03191206,98.99021514],[4.5352813,0.03191033,98.98896871],[4.53528081,0.03190859,98.98772146],[4.53528032,0.03190686,98.98647339],[4.53527982,0.03190513,98.98522455],[4.53527933,0.03190339,98.98397494],[4.53527884,0.03190166,98.98272459],[4.53527835,0.03189992,98.98147352],[4.53527785,0.03189819,98.98022175],[4.53527736,0.03189646,98.97896929],[4.53527687,0.03189472,98.97771617],[4.53527638,0.03189299,98.9764624],[4.53527588,0.03189126,98.97520801],[4.53527539,0.03188952,98.97395301],[4.5352749,0.03188779,98.97269742],[4.53527441,0.03188606,98.97144126],[4.53527391,0.03188432,98.97018456],[4.53527342,0.03188259,98.96892733],[4.53527293,0.03188086,98.96766959],[4.53527243,0.03187912,98.96641135],[4.53527194,0.03187739,98.96515265],[4.53527145,0.03187566,98.9638935],[4.53527095,0.03187392,98.96263391],[4.53527046,0.03187219,98.96137391],[4.53526997,0.03187045,98.96011351],[4.53526947,0.03186872,98.95885275],[4.53526898,0.03186699,98.95759162],[4.53526849,0.03186525,98.95633016],[4.535268,0.03186352,98.95506839],[4.5352675,0.03186179,98.95380632],[4.53526701,0.03186005,98.95254397],[4.53526652,0.03185832,98.95128137],[4.53526602,0.03185659,98.95001852],[4.53526553,0.03185485,98.94875546],[4.53526504,0.03185312,98.9474922],[4.53526454,0.03185139,98.94622876],[4.53526405,0.03184965,98.94496516],[4.53526356,0.03184792,98.94370142],[4.53526306,0.03184619,98.94243756],[4.53526257,0.03184445,98.9411736],[4.53526208,0.03184272,98.93990955],[4.53526158,0.03184099,98.93864544],[4.53526109,0.03183925,98.93738129],[4.5352606,0.03183752,98.93611711],[4.5352601,0.03183579,98.93485294],[4.53525961,0.03183405,98.93358877],[4.53525912,0.03183232,98.93232464],[4.53525863,0.03183059,98.93106057],[4.53525813,0.03182885,98.92979657],[4.53525764,0.03182712,98.92853266],[4.53525715,0.03182539,98.92726887],[4.53525666,0.03182365,98.92600521],[4.53525616,0.03182192,98.9247417],[4.53525567,0.03182018,98.92347837],[4.53525518,0.03181845,98.92221523],[4.53525469,0.03181672,98.9209523],[4.5352542,0.03181498,98.91968959],[4.5352537,0.03181325,98.91842714],[4.53525321,0.03181152,98.91716496],[4.53525272,0.03180978,98.91590308],[4.53525223,0.03180805,98.91464151],[4.53525174,0.03180631,98.91338028],[4.53525125,0.03180458,98.91211943],[4.53525075,0.03180285,98.91085899],[4.53525026,0.03180111,98.90959896],[4.53524977,0.03179938,98.9083394],[4.53524928,0.03179764,98.90708031],[4.53524879,0.03179591,98.90582174],[4.5352483,0.03179418,98.9045637],[4.53524781,0.03179244,98.90330623],[4.53524732,0.03179071,98.90204934],[4.53524683,0.03178897,98.90079308],[4.53524634,0.03178724,98.89953746],[4.53524585,0.0317855,98.8982825],[4.53524536,0.03178377,98.89702821],[4.53524487,0.03178203,98.89577458],[4.53524438,0.0317803,98.89452163],[4.53524389,0.03177857,98.89326936],[4.5352434,0.03177683,98.89201777],[4.53524292,0.0317751,98.89076685],[4.53524243,0.03177336,98.8895166],[4.53524194,0.03177163,98.888267],[4.53524145,0.03176989,98.88701803],[4.53524096,0.03176816,98.88576968],[4.53524048,0.03176642,98.88452193],[4.53523999,0.03176469,98.88327478],[4.5352395,0.03176295,98.88202821],[4.53523901,0.03176122,98.8807822],[4.53523853,0.03175948,98.87953674],[4.53523804,0.03175775,98.87829181],[4.53523755,0.03175601,98.87704741],[4.53523706,0.03175428,98.87580351],[4.53523658,0.03175254,98.8745601],[4.53523609,0.03175081,98.87331718],[4.5352356,0.03174907,98.87207472],[4.53523512,0.03174733,98.87083273],[4.53523463,0.0317456,98.86959118],[4.53523414,0.03174386,98.86835009],[4.53523366,0.03174213,98.86710944],[4.53523317,0.03174039,98.86586921],[4.53523268,0.03173866,98.86462942],[4.5352322,0.03173692,98.86339005],[4.53523171,0.03173519,98.86215109],[4.53523122,0.03173345,98.86091253],[4.53523074,0.03173172,98.85967438],[4.53523025,0.03172998,98.85843661],[4.53522977,0.03172825,98.85719924],[4.53522928,0.03172651,98.85596224],[4.53522879,0.03172477,98.85472561],[4.53522831,0.03172304,98.85348934],[4.53522782,0.0317213,98.85225344],[4.53522733,0.03171957,98.85101788],[4.53522685,0.03171783,98.84978267],[4.53522636,0.0317161,98.84854779],[4.53522587,0.03171436,98.84731324],[4.53522539,0.03171263,98.84607902],[4.5352249,0.03171089,98.84484511],[4.53522441,0.03170916,98.84361151],[4.53522393,0.03170742,98.84237821],[4.53522344,0.03170569,98.8411452],[4.53522295,0.03170395,98.83991248],[4.53522247,0.03170222,98.83868005],[4.53522198,0.03170048,98.83744788],[4.53522149,0.03169875,98.83621598],[4.535221,0.03169701,98.83498435],[4.53522052,0.03169528,98.83375296],[4.53522003,0.03169354,98.83252182],[4.53521954,0.0316918,98.83129092],[4.53521905,0.03169007,98.83006025],[4.53521857,0.03168833,98.8288298],[4.53521808,0.0316866,98.82759957],[4.53521759,0.03168487,98.82636955],[4.5352171,0.03168313,98.82513973],[4.53521661,0.0316814,98.82391011],[4.53521612,0.03167966,98.82268068],[4.53521564,0.03167793,98.82145143],[4.53521515,0.03167619,98.82022235],[4.53521466,0.03167446,98.81899345],[4.53521417,0.03167272,98.8177647],[4.53521368,0.03167099,98.81653611],[4.53521319,0.03166925,98.81530767],[4.5352127,0.03166752,98.81407936],[4.53521221,0.03166578,98.81285119],[4.53521172,0.03166405,98.81162314],[4.53521123,0.03166231,98.81039522],[4.53521074,0.03166058,98.8091674],[4.53521025,0.03165885,98.8079397],[4.53520976,0.03165711,98.80671209],[4.53520927,0.03165538,98.80548456],[4.53520878,0.03165364,98.8042571],[4.53520829,0.03165191,98.8030297],[4.53520779,0.03165018,98.80180237],[4.5352073,0.03164844,98.80057512],[4.53520681,0.03164671,98.79934794],[4.53520632,0.03164497,98.79812085],[4.53520582,0.03164324,98.79689383],[4.53520533,0.03164151,98.79566693],[4.53520484,0.03163977,98.79444016],[4.53520435,0.03163804,98.79321354],[4.53520385,0.03163631,98.7919871],[4.53520336,0.03163457,98.79076087],[4.53520286,0.03163284,98.78953487],[4.53520237,0.03163111,98.78830912],[4.53520188,0.03162937,98.78708365],[4.53520138,0.03162764,98.78585849],[4.53520089,0.03162591,98.78463365],[4.53520039,0.03162418,98.78340916],[4.5351999,0.03162244,98.78218505],[4.5351994,0.03162071,98.78096134],[4.53519891,0.03161898,98.77973805],[4.53519841,0.03161724,98.77851522],[4.53519792,0.03161551,98.77729286],[4.53519742,0.03161378,98.776071],[4.53519692,0.03161205,98.77484966],[4.53519643,0.03161031,98.77362887],[4.53519593,0.03160858,98.77240865],[4.53519543,0.03160685,98.77118903],[4.53519494,0.03160512,98.76997003],[4.53519444,0.03160338,98.76875168],[4.53519394,0.03160165,98.767534],[4.53519345,0.03159992,98.76631701],[4.53519295,0.03159819,98.76510075],[4.53519245,0.03159645,98.76388523],[4.53519196,0.03159472,98.76267047],[4.53519146,0.03159299,98.76145651],[4.53519096,0.03159126,98.76024336],[4.53519047,0.03158952,98.75903104],[4.53518997,0.03158779,98.75781958],[4.53518947,0.03158606,98.756609],[4.53518897,0.03158433,98.75539932],[4.53518848,0.03158259,98.75419056],[4.53518798,0.03158086,98.75298274],[4.53518748,0.03157913,98.75177588],[4.53518698,0.0315774,98.75057002],[4.53518648,0.03157567,98.74936516],[4.53518599,0.03157393,98.74816133],[4.53518549,0.0315722,98.74695855],[4.53518499,0.03157047,98.74575684],[4.53518449,0.03156874,98.74455623],[4.535184,0.031567,98.74335674],[4.5351835,0.03156527,98.74215838],[4.535183,0.03156354,98.74096118],[4.5351825,0.03156181,98.73976517],[4.535182,0.03156008,98.73857036],[4.53518151,0.03155834,98.73737677],[4.53518101,0.03155661,98.73618443],[4.53518051,0.03155488,98.73499336],[4.53518001,0.03155315,98.73380358],[4.53517951,0.03155142,98.7326151],[4.53517902,0.03154968,98.73142796],[4.53517852,0.03154795,98.73024215],[4.53517802,0.03154622,98.72905771],[4.53517752,0.03154449,98.72787465],[4.53517703,0.03154275,98.72669298],[4.53517653,0.03154102,98.72551273],[4.53517603,0.03153929,98.7243339],[4.53517553,0.03153756,98.72315654],[4.53517504,0.03153583,98.72198067],[4.53517454,0.03153409,98.72080633],[4.53517404,0.03153236,98.71963355],[4.53517354,0.03153063,98.71846234],[4.53517305,0.0315289,98.71729271],[4.53517255,0.03152716,98.71612468],[4.53517205,0.03152544,98.71495826],[4.53517156,0.0315237,98.71379347],[4.53517106,0.03152197,98.71263031],[4.53517056,0.03152024,98.71146881],[4.53517007,0.03151851,98.71030898],[4.53516957,0.03151677,98.70915082],[4.53516907,0.03151504,98.70799436],[4.53516858,0.03151331,98.7068396],[4.53516808,0.03151157,98.70568657],[4.53516759,0.03150984,98.70453527],[4.53516709,0.03150811,98.70338572],[4.53516659,0.03150638,98.70223792],[4.5351661,0.03150464,98.70109188],[4.5351656,0.03150291,98.69994759],[4.53516511,0.03150118,98.69880503],[4.53516461,0.03149945,98.6976642],[4.53516412,0.03149771,98.6965251],[4.53516362,0.03149598,98.69538771],[4.53516313,0.03149425,98.69425202],[4.53516263,0.03149251,98.69311804],[4.53516214,0.03149078,98.69198574],[4.53516165,0.03148905,98.69085513],[4.53516115,0.03148731,98.68972619],[4.53516066,0.03148558,98.68859892],[4.53516016,0.03148385,98.68747331],[4.53515967,0.03148211,98.68634933],[4.53515917,0.03148038,98.68522698],[4.53515868,0.03147865,98.68410622],[4.53515819,0.03147691,98.68298704],[4.53515769,0.03147518,98.68186942],[4.5351572,0.03147345,98.68075334],[4.5351567,0.03147171,98.67963878],[4.53515621,0.03146998,98.67852573],[4.53515572,0.03146825,98.67741415],[4.53515522,0.03146651,98.67630405],[4.53515473,0.03146478,98.67519538],[4.53515424,0.03146305,98.67408814],[4.53515374,0.03146131,98.67298232],[4.53515325,0.03145958,98.6718779],[4.53515276,0.03145785,98.67077487],[4.53515226,0.03145611,98.66967322],[4.53515177,0.03145438,98.66857293],[4.53515128,0.03145265,98.66747401],[4.53515078,0.03145091,98.66637642],[4.53515029,0.03144918,98.66528017],[4.5351498,0.03144745,98.66418525],[4.5351493,0.03144571,98.66309163],[4.53514881,0.03144398,98.66199931],[4.53514832,0.03144225,98.66090828],[4.53514783,0.03144051,98.65981852],[4.53514733,0.03143878,98.65873003],[4.53514684,0.03143705,98.65764279],[4.53514635,0.03143531,98.65655679],[4.53514585,0.03143358,98.65547202],[4.53514536,0.03143184,98.65438847],[4.53514487,0.03143011,98.65330612],[4.53514437,0.03142838,98.65222496],[4.53514388,0.03142664,98.65114498],[4.53514339,0.03142491,98.65006617],[4.5351429,0.03142318,98.64898851],[4.5351424,0.03142144,98.647912],[4.53514191,0.03141971,98.64683661],[4.53514142,0.03141798,98.64576234],[4.53514092,0.03141624,98.64468917],[4.53514043,0.03141451,98.64361709],[4.53513994,0.03141278,98.6425461],[4.53513945,0.03141104,98.64147617],[4.53513895,0.03140931,98.64040729],[4.53513846,0.03140757,98.63933946],[4.53513797,0.03140584,98.63827265],[4.53513747,0.03140411,98.63720684],[4.53513698,0.03140237,98.636142],[4.53513649,0.03140064,98.63507811],[4.53513599,0.03139891,98.63401513],[4.5351355,0.03139717,98.63295306],[4.53513501,0.03139544,98.63189187],[4.53513452,0.03139371,98.63083154],[4.53513402,0.03139197,98.62977203],[4.53513353,0.03139024,98.62871334],[4.53513304,0.03138851,98.62765544],[4.53513254,0.03138677,98.62659831],[4.53513205,0.03138504,98.62554192],[4.53513156,0.03138331,98.62448626],[4.53513106,0.03138157,98.62343131],[4.53513057,0.03137984,98.62237706],[4.53513007,0.03137811,98.62132352],[4.53512958,0.03137637,98.62027066],[4.53512909,0.03137464,98.61921848],[4.53512859,0.03137291,98.61816698],[4.5351281,0.03137117,98.61711614],[4.5351276,0.03136944,98.61606595],[4.53512711,0.03136771,98.61501641],[4.53512662,0.03136597,98.61396751],[4.53512612,0.03136424,98.61291925],[4.53512563,0.03136251,98.6118716],[4.53512513,0.03136077,98.61082457],[4.53512464,0.03135904,98.60977814],[4.53512414,0.03135731,98.60873231],[4.53512365,0.03135557,98.60768706],[4.53512315,0.03135384,98.6066424],[4.53512266,0.03135211,98.60559831],[4.53512216,0.03135038,98.60455478],[4.53512167,0.03134864,98.60351181],[4.53512117,0.03134691,98.60246939],[4.53512068,0.03134518,98.6014275],[4.53512018,0.03134344,98.60038615],[4.53511968,0.03134171,98.59934531],[4.53511919,0.03133998,98.59830499],[4.53511869,0.03133825,98.59726518],[4.5351182,0.03133651,98.59622587],[4.5351177,0.03133478,98.59518704],[4.5351172,0.03133305,98.59414869],[4.53511671,0.03133132,98.59311082],[4.53511621,0.03132958,98.59207341],[4.53511572,0.03132785,98.59103646],[4.53511522,0.03132612,98.58999996],[4.53511472,0.03132439,98.58896389],[4.53511423,0.03132265,98.58792826],[4.53511373,0.03132092,98.58689306],[4.53511323,0.03131919,98.58585826],[4.53511274,0.03131746,98.58482388],[4.53511224,0.03131572,98.58378989],[4.53511174,0.03131399,98.5827563],[4.53511124,0.03131226,98.58172309],[4.53511075,0.03131053,98.58069025],[4.53511025,0.03130879,98.57965778],[4.53510975,0.03130706,98.57862567],[4.53510925,0.03130533,98.5775939],[4.53510876,0.0313036,98.57656249],[4.53510826,0.03130187,98.5755314],[4.53510776,0.03130013,98.57450064],[4.53510726,0.0312984,98.5734702],[4.53510676,0.03129667,98.57244007],[4.53510627,0.03129494,98.57141024],[4.53510577,0.03129321,98.57038071],[4.53510527,0.03129147,98.56935146],[4.53510477,0.03128974,98.56832249],[4.53510427,0.03128801,98.56729379],[4.53510377,0.03128628,98.56626538],[4.53510327,0.03128455,98.5652373],[4.53510277,0.03128281,98.56420958],[4.53510228,0.03128108,98.56318225],[4.53510178,0.03127935,98.56215535],[4.53510128,0.03127762,98.5611289],[4.53510078,0.03127589,98.56010295],[4.53510028,0.03127415,98.55907752],[4.53509978,0.03127242,98.55805264],[4.53509928,0.03127069,98.55702834],[4.53509878,0.03126896,98.55600463],[4.53509828,0.03126723,98.55498149],[4.53509778,0.0312655,98.55395892],[4.53509729,0.03126376,98.55293691],[4.53509679,0.03126203,98.55191546],[4.53509629,0.0312603,98.55089456],[4.53509579,0.03125857,98.54987421],[4.53509529,0.03125684,98.54885441],[4.53509479,0.0312551,98.54783514],[4.53509429,0.03125337,98.5468164],[4.53509379,0.03125164,98.54579819],[4.5350933,0.03124991,98.5447805],[4.5350928,0.03124818,98.54376333],[4.5350923,0.03124644,98.54274667],[4.5350918,0.03124471,98.54173051],[4.5350913,0.03124298,98.54071485],[4.5350908,0.03124125,98.53969968],[4.53509031,0.03123952,98.538685],[4.53508981,0.03123778,98.53767081],[4.53508931,0.03123605,98.53665709],[4.53508881,0.03123432,98.53564384],[4.53508831,0.03123259,98.53463106],[4.53508782,0.03123086,98.53361874],[4.53508732,0.03122912,98.53260688],[4.53508682,0.03122739,98.53159546],[4.53508632,0.03122566,98.53058449],[4.53508583,0.03122393,98.52957396],[4.53508533,0.0312222,98.52856386],[4.53508483,0.03122046,98.52755419],[4.53508433,0.03121873,98.52654494],[4.53508384,0.031217,98.52553611],[4.53508334,0.03121527,98.52452768],[4.53508284,0.03121353,98.52351967],[4.53508234,0.0312118,98.52251205],[4.53508185,0.03121007,98.52150482],[4.53508135,0.03120834,98.52049798],[4.53508085,0.0312066,98.51949153],[4.53508036,0.03120487,98.51848545],[4.53507986,0.03120314,98.51747974],[4.53507936,0.03120141,98.51647438],[4.53507886,0.03119967,98.51546937],[4.53507837,0.03119794,98.51446468],[4.53507787,0.03119621,98.51346031],[4.53507737,0.03119448,98.51245623],[4.53507688,0.03119274,98.51145243],[4.53507638,0.03119101,98.51044889],[4.53507589,0.03118928,98.50944559],[4.53507539,0.03118755,98.50844243],[4.53507489,0.03118581,98.50743932],[4.5350744,0.03118408,98.50643617],[4.5350739,0.03118235,98.50543293],[4.5350734,0.03118062,98.5044296],[4.53507291,0.03117888,98.50342616],[4.53507241,0.03117715,98.50242261],[4.53507191,0.03117542,98.50141893],[4.53507142,0.03117369,98.50041513],[4.53507092,0.03117195,98.49941119],[4.53507042,0.03117022,98.4984071],[4.53506993,0.03116849,98.49740285],[4.53506943,0.03116676,98.49639844],[4.53506893,0.03116503,98.49539386],[4.53506843,0.03116329,98.49438909],[4.53506794,0.03116156,98.49338414],[4.53506744,0.03115983,98.49237899],[4.53506694,0.0311581,98.49137363],[4.53506644,0.03115636,98.49036806],[4.53506595,0.03115463,98.48936227],[4.53506545,0.0311529,98.48835625],[4.53506495,0.03115117,98.48734998],[4.53506445,0.03114944,98.48634347],[4.53506396,0.0311477,98.4853367],[4.53506346,0.03114597,98.48432967],[4.53506296,0.03114424,98.48332237],[4.53506246,0.03114251,98.48231479],[4.53506196,0.03114077,98.48130691],[4.53506146,0.03113904,98.48029874],[4.53506097,0.03113731,98.47929026],[4.53506047,0.03113558,98.47828147],[4.53505997,0.03113385,98.47727236],[4.53505947,0.03113212,98.47626292],[4.53505897,0.03113038,98.47525313],[4.53505847,0.03112865,98.474243],[4.53505797,0.03112692,98.47323252],[4.53505747,0.03112519,98.47222167],[4.53505698,0.03112346,98.47121044],[4.53505648,0.03112172,98.47019884],[4.53505598,0.03111999,98.46918685],[4.53505548,0.03111826,98.46817446],[4.53505498,0.03111653,98.46716167],[4.53505448,0.0311148,98.46614846],[4.53505398,0.03111307,98.46513484],[4.53505348,0.03111133,98.46412078],[4.53505298,0.0311096,98.46310628],[4.53505248,0.03110787,98.46209137],[4.53505198,0.03110614,98.46107611],[4.53505148,0.03110441,98.46006058],[4.53505098,0.03110268,98.45904484],[4.53505048,0.03110094,98.45802891],[4.53504998,0.03109921,98.45701274],[4.53504948,0.03109748,98.45599634],[4.53504898,0.03109575,98.45497969],[4.53504848,0.03109402,98.45396276],[4.53504798,0.03109229,98.45294556],[4.53504748,0.03109056,98.45192806],[4.53504698,0.03108882,98.45091027],[4.53504648,0.03108709,98.44989218],[4.53504598,0.03108536,98.44887378],[4.53504548,0.03108363,98.44785505],[4.53504498,0.0310819,98.446836],[4.53504448,0.03108017,98.44581661],[4.53504398,0.03107843,98.44479689],[4.53504348,0.0310767,98.44377681],[4.53504298,0.03107497,98.44275637],[4.53504248,0.03107324,98.44173556],[4.53504198,0.03107151,98.44071438],[4.53504148,0.03106978,98.43969282],[4.53504098,0.03106804,98.43867087],[4.53504048,0.03106631,98.43764852],[4.53503998,0.03106458,98.43662577],[4.53503948,0.03106285,98.4356026],[4.53503898,0.03106112,98.43457901],[4.53503848,0.03105939,98.43355499],[4.53503799,0.03105766,98.43253054],[4.53503749,0.03105592,98.43150564],[4.53503699,0.03105419,98.43048028],[4.53503649,0.03105246,98.42945447],[4.53503599,0.03105073,98.42842819],[4.53503549,0.031049,98.42740143],[4.53503499,0.03104727,98.42637419],[4.53503449,0.03104553,98.42534645],[4.53503399,0.0310438,98.42431822],[4.53503349,0.03104207,98.42328948],[4.53503299,0.03104034,98.42226022],[4.53503249,0.03103861,98.42123044],[4.53503199,0.03103688,98.42020013],[4.53503149,0.03103514,98.41916928],[4.53503099,0.03103341,98.41813788],[4.53503049,0.03103168,98.41710593],[4.53502999,0.03102995,98.41607342],[4.53502949,0.03102822,98.41504033],[4.53502899,0.03102649,98.41400667],[4.53502849,0.03102475,98.41297243],[4.53502799,0.03102302,98.41193759],[4.53502749,0.03102129,98.41090214],[4.53502699,0.03101956,98.40986609],[4.53502649,0.03101783,98.40882942],[4.53502599,0.0310161,98.40779213],[4.53502549,0.03101436,98.40675421],[4.53502499,0.03101263,98.40571564],[4.53502449,0.0310109,98.40467643],[4.53502399,0.03100917,98.40363656],[4.53502349,0.03100744,98.40259603],[4.53502299,0.03100571,98.40155482],[4.5350225,0.03100398,98.40051294],[4.535022,0.03100224,98.39947037],[4.5350215,0.03100051,98.39842711],[4.535021,0.03099878,98.39738314],[4.5350205,0.03099705,98.39633846],[4.53502,0.03099532,98.39529307],[4.5350195,0.03099359,98.39424694],[4.535019,0.03099185,98.39320009],[4.5350185,0.03099012,98.39215249],[4.535018,0.03098839,98.39110415],[4.5350175,0.03098666,98.39005502],[4.535017,0.03098493,98.38900503],[4.5350165,0.0309832,98.38795411],[4.535016,0.03098146,98.38690215],[4.5350155,0.03097973,98.38584909],[4.535015,0.030978,98.38479488],[4.5350145,0.03097627,98.38373954],[4.535014,0.03097454,98.38268306],[4.5350135,0.03097281,98.38162545],[4.535013,0.03097108,98.38056673],[4.5350125,0.03096934,98.37950689],[4.535012,0.03096761,98.37844594],[4.53501149,0.03096588,98.37738389],[4.53501099,0.03096415,98.37632075],[4.53501049,0.03096242,98.37525652],[4.53500999,0.03096069,98.37419122],[4.53500949,0.03095896,98.37312483],[4.53500899,0.03095723,98.37205738],[4.53500849,0.03095549,98.37098887],[4.53500798,0.03095376,98.3699193],[4.53500748,0.03095203,98.36884868],[4.53500698,0.0309503,98.36777702],[4.53500648,0.03094857,98.36670432],[4.53500598,0.03094684,98.36563059],[4.53500548,0.03094511,98.36455584],[4.53500497,0.03094338,98.36348006],[4.53500447,0.03094165,98.36240328],[4.53500397,0.03093992,98.36132548],[4.53500347,0.03093819,98.36024669],[4.53500297,0.03093645,98.3591669],[4.53500246,0.03093472,98.35808612],[4.53500196,0.03093299,98.35700436],[4.53500146,0.03093126,98.35592161],[4.53500096,0.03092953,98.3548379],[4.53500045,0.0309278,98.35375322],[4.53499995,0.03092607,98.35266758],[4.53499945,0.03092434,98.35158098],[4.53499895,0.03092261,98.35049344],[4.53499845,0.03092088,98.34940495],[4.53499795,0.03091914,98.34831552],[4.53499744,0.03091741,98.34722516],[4.53499694,0.03091568,98.34613387],[4.53499644,0.03091395,98.34504166],[4.53499594,0.03091222,98.34394854],[4.53499544,0.03091049,98.3428545],[4.53499494,0.03090876,98.34175949],[4.53499443,0.03090703,98.34066346],[4.53499393,0.0309053,98.33956637],[4.53499343,0.03090356,98.33846816],[4.53499293,0.03090183,98.33736877],[4.53499243,0.0309001,98.33626818],[4.53499193,0.03089837,98.33516636],[4.53499143,0.03089664,98.33406332],[4.53499092,0.03089491,98.33295905],[4.53499042,0.03089318,98.33185355],[4.53498992,0.03089145,98.33074681],[4.53498942,0.03088972,98.32963882],[4.53498892,0.03088799,98.32852959],[4.53498842,0.03088625,98.3274191],[4.53498791,0.03088452,98.32630735],[4.53498741,0.03088279,98.32519433],[4.53498691,0.03088106,98.32408004],[4.53498641,0.03087933,98.32296448],[4.53498591,0.0308776,98.32184764],[4.53498541,0.03087587,98.32072951],[4.5349849,0.03087414,98.31961009],[4.5349844,0.03087241,98.31848938],[4.5349839,0.03087068,98.31736736],[4.5349834,0.03086894,98.31624403],[4.5349829,0.03086721,98.3151194],[4.53498239,0.03086548,98.31399344],[4.53498189,0.03086375,98.31286617],[4.53498139,0.03086202,98.31173756],[4.53498089,0.03086029,98.31060763],[4.53498039,0.03085856,98.30947635],[4.53497988,0.03085683,98.30834373],[4.53497938,0.0308551,98.30720976],[4.53497888,0.03085337,98.30607444],[4.53497838,0.03085163,98.30493776],[4.53497788,0.0308499,98.30379972],[4.53497737,0.03084817,98.30266031],[4.53497687,0.03084644,98.30151952],[4.53497637,0.03084471,98.30037735],[4.53497587,0.03084298,98.2992338],[4.53497537,0.03084125,98.29808885],[4.53497486,0.03083952,98.29694251],[4.53497436,0.03083779,98.29579477],[4.53497386,0.03083606,98.29464563],[4.53497336,0.03083433,98.29349508],[4.53497286,0.03083259,98.29234312],[4.53497235,0.03083086,98.29118976],[4.53497185,0.03082913,98.29003499],[4.53497135,0.0308274,98.28887882],[4.53497085,0.03082567,98.28772124],[4.53497035,0.03082394,98.28656223],[4.53496984,0.03082221,98.28540181],[4.53496934,0.03082048,98.28423995],[4.53496884,0.03081875,98.28307666],[4.53496834,0.03081702,98.28191192],[4.53496784,0.03081528,98.28074573],[4.53496733,0.03081355,98.27957808],[4.53496683,0.03081182,98.27840896],[4.53496633,0.03081009,98.27723836],[4.53496583,0.03080836,98.27606628],[4.53496533,0.03080663,98.2748927],[4.53496483,0.0308049,98.27371762],[4.53496432,0.03080317,98.27254104],[4.53496382,0.03080144,98.27136293],[4.53496332,0.03079971,98.2701833],[4.53496282,0.03079797,98.26900213],[4.53496232,0.03079624,98.26781942],[4.53496182,0.03079451,98.26663517],[4.53496131,0.03079278,98.26544935],[4.53496081,0.03079105,98.26426196],[4.53496031,0.03078932,98.26307301],[4.53495981,0.03078759,98.26188247],[4.53495931,0.03078586,98.26069033],[4.53495881,0.03078413,98.2594966],[4.53495831,0.03078239,98.25830127],[4.5349578,0.03078066,98.25710431],[4.5349573,0.03077893,98.25590574],[4.5349568,0.0307772,98.25470553],[4.5349563,0.03077547,98.25350368],[4.5349558,0.03077374,98.25230019],[4.5349553,0.03077201,98.25109504],[4.5349548,0.03077028,98.24988823],[4.53495429,0.03076855,98.24867975],[4.53495379,0.03076681,98.24746959],[4.53495329,0.03076508,98.24625774],[4.53495279,0.03076335,98.24504419],[4.53495229,0.03076162,98.24382894],[4.53495179,0.03075989,98.24261198],[4.53495129,0.03075816,98.2413933],[4.53495079,0.03075643,98.2401729],[4.53495028,0.0307547,98.23895076],[4.53494978,0.03075297,98.23772687],[4.53494928,0.03075123,98.23650123],[4.53494878,0.0307495,98.23527384],[4.53494828,0.03074777,98.23404468],[4.53494778,0.03074604,98.23281374],[4.53494728,0.03074431,98.23158102],[4.53494678,0.03074258,98.2303465],[4.53494627,0.03074085,98.22911019],[4.53494577,0.03073912,98.22787207],[4.53494527,0.03073738,98.22663214],[4.53494477,0.03073565,98.22539038],[4.53494427,0.03073392,98.22414679],[4.53494377,0.03073219,98.22290137],[4.53494327,0.03073046,98.22165409],[4.53494277,0.03072873,98.22040496],[4.53494226,0.030727,98.21915397],[4.53494176,0.03072527,98.21790111],[4.53494126,0.03072353,98.21664637],[4.53494076,0.0307218,98.21538974],[4.53494026,0.03072007,98.21413122],[4.53493976,0.03071834,98.21287079],[4.53493926,0.03071661,98.21160845],[4.53493876,0.03071488,98.21034419],[4.53493826,0.03071315,98.20907801],[4.53493775,0.03071142,98.20780989],[4.53493725,0.03070969,98.20653982],[4.53493675,0.03070795,98.2052678],[4.53493625,0.03070622,98.20399381],[4.53493575,0.03070449,98.20271784],[4.53493525,0.03070276,98.20143987],[4.53493475,0.03070103,98.20015991],[4.53493425,0.0306993,98.19887793],[4.53493375,0.03069757,98.19759392],[4.53493324,0.03069584,98.19630788],[4.53493274,0.0306941,98.19501979],[4.53493224,0.03069237,98.19372964],[4.53493174,0.03069064,98.19243741],[4.53493124,0.03068891,98.1911431],[4.53493074,0.03068718,98.1898467],[4.53493024,0.03068545,98.18854819],[4.53492974,0.03068372,98.18724756],[4.53492923,0.03068199,98.1859448],[4.53492873,0.03068025,98.18463989],[4.53492823,0.03067852,98.18333283],[4.53492773,0.03067679,98.18202361],[4.53492723,0.03067506,98.18071221],[4.53492673,0.03067333,98.17939862],[4.53492623,0.0306716,98.17808283],[4.53492572,0.03066987,98.17676484],[4.53492522,0.03066814,98.17544463],[4.53492472,0.03066641,98.17412222],[4.53492422,0.03066467,98.1727976],[4.53492372,0.03066294,98.17147076],[4.53492322,0.03066121,98.17014169],[4.53492271,0.03065948,98.16881038],[4.53492221,0.03065775,98.16747681],[4.53492171,0.03065602,98.16614096],[4.53492121,0.03065429,98.16480283],[4.53492071,0.03065256,98.16346238],[4.5349202,0.03065083,98.16211961],[4.5349197,0.0306491,98.1607745],[4.5349192,0.03064736,98.15942703],[4.5349187,0.03064563,98.15807719],[4.5349182,0.0306439,98.15672497],[4.53491769,0.03064217,98.15537034],[4.53491719,0.03064044,98.15401329],[4.53491669,0.03063871,98.15265381],[4.53491619,0.03063698,98.15129187],[4.53491568,0.03063525,98.14992746],[4.53491518,0.03063352,98.14856059],[4.53491468,0.03063179,98.14719123],[4.53491418,0.03063006,98.1458194],[4.53491367,0.03062833,98.14444509],[4.53491317,0.0306266,98.14306829],[4.53491267,0.03062486,98.14168901],[4.53491216,0.03062313,98.14030723],[4.53491166,0.0306214,98.13892295],[4.53491116,0.03061967,98.13753618],[4.53491065,0.03061794,98.13614691],[4.53491015,0.03061621,98.13475513],[4.53490965,0.03061448,98.13336084],[4.53490914,0.03061275,98.13196405],[4.53490864,0.03061102,98.13056474],[4.53490813,0.03060929,98.12916291],[4.53490763,0.03060756,98.12775856],[4.53490713,0.03060583,98.12635168],[4.53490662,0.0306041,98.12494228],[4.53490612,0.03060237,98.12353035],[4.53490562,0.03060064,98.12211589],[4.53490511,0.03059891,98.12069889],[4.53490461,0.03059718,98.11927935],[4.5349041,0.03059545,98.11785728],[4.5349036,0.03059372,98.11643265],[4.5349031,0.03059199,98.11500548],[4.53490259,0.03059026,98.11357576],[4.53490209,0.03058853,98.11214348],[4.53490158,0.0305868,98.11070865],[4.53490108,0.03058506,98.10927126],[4.53490057,0.03058333,98.10783131],[4.53490007,0.0305816,98.10638879],[4.53489957,0.03057987,98.10494371],[4.53489906,0.03057814,98.10349606],[4.53489856,0.03057641,98.10204583],[4.53489805,0.03057468,98.10059303],[4.53489755,0.03057296,98.09913765],[4.53489704,0.03057123,98.09767969],[4.53489654,0.0305695,98.09621915],[4.53489604,0.03056777,98.09475603],[4.53489553,0.03056604,98.09329035],[4.53489503,0.03056431,98.09182217],[4.53489452,0.03056258,98.09035152],[4.53489402,0.03056085,98.08887846],[4.53489351,0.03055912,98.08740302],[4.53489301,0.03055739,98.08592526],[4.5348925,0.03055566,98.08444522],[4.534892,0.03055393,98.08296295],[4.5348915,0.0305522,98.08147848],[4.53489099,0.03055047,98.07999189],[4.53489049,0.03054874,98.07850321],[4.53488998,0.03054701,98.0770125],[4.53488948,0.03054528,98.07551982],[4.53488897,0.03054354,98.0740252],[4.53488847,0.03054181,98.07252871],[4.53488797,0.03054008,98.07103039],[4.53488746,0.03053835,98.0695303],[4.53488696,0.03053662,98.06802849],[4.53488645,0.03053489,98.06652501],[4.53488595,0.03053316,98.06501991],[4.53488544,0.03053143,98.06351325],[4.53488494,0.0305297,98.06200505],[4.53488444,0.03052797,98.06049536],[4.53488393,0.03052624,98.05898423],[4.53488343,0.03052451,98.0574717],[4.53488293,0.03052278,98.0559578],[4.53488242,0.03052105,98.05444256],[4.53488192,0.03051932,98.05292603],[4.53488141,0.03051759,98.05140822],[4.53488091,0.03051586,98.04988918],[4.53488041,0.03051413,98.04836892],[4.5348799,0.0305124,98.0468475],[4.5348794,0.03051067,98.04532493],[4.5348789,0.03050894,98.04380124],[4.53487839,0.03050721,98.04227648],[4.53487789,0.03050548,98.04075066],[4.53487739,0.03050375,98.03922383],[4.53487688,0.03050201,98.03769601],[4.53487638,0.03050028,98.03616723],[4.53487588,0.03049855,98.03463753],[4.53487537,0.03049682,98.03310693],[4.53487487,0.03049509,98.03157547],[4.53487437,0.03049336,98.03004318],[4.53487386,0.03049163,98.02851008],[4.53487336,0.0304899,98.02697621],[4.53487286,0.03048817,98.0254416],[4.53487235,0.03048644,98.02390628],[4.53487185,0.03048471,98.02237028],[4.53487135,0.03048298,98.02083363],[4.53487084,0.03048125,98.01929636],[4.53487034,0.03047952,98.0177585],[4.53486984,0.03047779,98.01622008],[4.53486933,0.03047606,98.01468113],[4.53486883,0.03047433,98.01314168],[4.53486833,0.0304726,98.01160175],[4.53486782,0.03047086,98.01006139],[4.53486732,0.03046913,98.00852062],[4.53486681,0.0304674,98.00697946],[4.53486631,0.03046567,98.00543795],[4.53486581,0.03046394,98.00389612],[4.5348653,0.03046221,98.00235399],[4.5348648,0.03046048,98.0008116],[4.5348643,0.03045875,97.99926898],[4.53486379,0.03045702,97.99772614],[4.53486329,0.03045529,97.99618313],[4.53486278,0.03045356,97.99463998],[4.53486228,0.03045183,97.9930967],[4.53486177,0.0304501,97.99155333],[4.53486127,0.03044837,97.99000989],[4.53486076,0.03044664,97.98846642],[4.53486026,0.03044491,97.98692295],[4.53485975,0.03044318,97.9853795],[4.53485925,0.03044145,97.9838361],[4.53485874,0.03043972,97.98229278],[4.53485824,0.03043799,97.98074958],[4.53485773,0.03043626,97.97920654],[4.53485723,0.03043453,97.97766371],[4.53485672,0.0304328,97.97612115],[4.53485622,0.03043107,97.97457891],[4.53485571,0.03042934,97.97303703],[4.53485521,0.03042761,97.97149558],[4.5348547,0.03042588,97.96995459],[4.53485419,0.03042415,97.96841413],[4.53485369,0.03042242,97.96687425],[4.53485318,0.03042069,97.96533499],[4.53485268,0.03041896,97.96379641],[4.53485217,0.03041723,97.96225856],[4.53485166,0.0304155,97.9607215],[4.53485116,0.03041377,97.95918527],[4.53485065,0.03041204,97.95764993],[4.53485014,0.03041031,97.95611553],[4.53484964,0.03040858,97.95458212],[4.53484913,0.03040685,97.95304976],[4.53484862,0.03040512,97.9515185],[4.53484812,0.03040339,97.94998839],[4.53484761,0.03040166,97.94845948],[4.5348471,0.03039994,97.94693184],[4.5348466,0.03039821,97.9454055],[4.53484609,0.03039648,97.94388052],[4.53484558,0.03039475,97.94235695],[4.53484508,0.03039302,97.94083484],[4.53484457,0.03039129,97.93931423],[4.53484406,0.03038956,97.93779516],[4.53484355,0.03038783,97.9362777],[4.53484305,0.0303861,97.93476187],[4.53484254,0.03038437,97.93324773],[4.53484203,0.03038264,97.93173532],[4.53484153,0.03038091,97.93022469],[4.53484102,0.03037918,97.92871589],[4.53484051,0.03037745,97.92720895],[4.53484001,0.03037572,97.92570392],[4.5348395,0.03037399,97.92420084],[4.53483899,0.03037226,97.92269976],[4.53483848,0.03037053,97.92120071],[4.53483798,0.0303688,97.91970374],[4.53483747,0.03036707,97.91820889],[4.53483696,0.03036535,97.9167162],[4.53483646,0.03036362,97.91522572],[4.53483595,0.03036189,97.91373749],[4.53483544,0.03036016,97.91225156],[4.53483493,0.03035843,97.91076795],[4.53483443,0.0303567,97.90928673],[4.53483392,0.03035497,97.90780792],[4.53483341,0.03035324,97.90633157],[4.53483291,0.03035151,97.90485773],[4.5348324,0.03034978,97.90338644],[4.53483189,0.03034805,97.90191774],[4.53483138,0.03034632,97.90045166],[4.53483088,0.03034459,97.89898827],[4.53483037,0.03034286,97.89752759],[4.53482986,0.03034113,97.89606967],[4.53482935,0.0303394,97.89461456],[4.53482885,0.03033767,97.89316229],[4.53482834,0.03033594,97.89171292],[4.53482783,0.03033421,97.89026651],[4.53482733,0.03033249,97.88882309],[4.53482682,0.03033076,97.88738273],[4.53482631,0.03032903,97.88594546],[4.5348258,0.0303273,97.88451135],[4.5348253,0.03032557,97.88308044],[4.53482479,0.03032384,97.88165278],[4.53482428,0.03032211,97.88022842],[4.53482377,0.03032038,97.87880742],[4.53482327,0.03031865,97.87738982],[4.53482276,0.03031692,97.87597567],[4.53482225,0.03031519,97.87456502],[4.53482175,0.03031346,97.87315789],[4.53482124,0.03031173,97.87175433],[4.53482073,0.03031,97.87035438],[4.53482023,0.03030827,97.86895807],[4.53481972,0.03030654,97.86756543],[4.53481921,0.03030481,97.86617651],[4.5348187,0.03030308,97.86479134],[4.5348182,0.03030135,97.86340997],[4.53481769,0.03029962,97.86203242],[4.53481718,0.0302979,97.86065873],[4.53481668,0.03029617,97.85928894],[4.53481617,0.03029444,97.8579231],[4.53481566,0.03029271,97.85656122],[4.53481516,0.03029098,97.85520336],[4.53481465,0.03028925,97.85384955],[4.53481414,0.03028752,97.85249983],[4.53481363,0.03028579,97.85115423],[4.53481313,0.03028406,97.84981278],[4.53481262,0.03028233,97.84847554],[4.53481211,0.0302806,97.84714253],[4.53481161,0.03027887,97.84581379],[4.5348111,0.03027714,97.84448935],[4.53481059,0.03027541,97.84316926],[4.53481009,0.03027368,97.84185355],[4.53480958,0.03027195,97.84054226],[4.53480907,0.03027022,97.83923542],[4.53480856,0.03026849,97.83793308],[4.53480806,0.03026676,97.83663526],[4.53480755,0.03026503,97.835342],[4.53480704,0.0302633,97.83405335],[4.53480654,0.03026157,97.83276934],[4.53480603,0.03025985,97.83149],[4.53480552,0.03025812,97.83021537],[4.53480501,0.03025639,97.82894549],[4.53480451,0.03025466,97.8276804],[4.534804,0.03025293,97.82642013],[4.53480349,0.0302512,97.82516471],[4.53480299,0.03024947,97.82391419],[4.53480248,0.03024774,97.82266861],[4.53480197,0.03024601,97.82142799],[4.53480146,0.03024428,97.82019237],[4.53480096,0.03024255,97.8189618],[4.53480045,0.03024082,97.81773631],[4.53479994,0.03023909,97.81651593],[4.53479943,0.03023736,97.81530071],[4.53479893,0.03023563,97.81409067],[4.53479842,0.0302339,97.81288586],[4.53479791,0.03023217,97.81168632],[4.5347974,0.03023045,97.81049207],[4.53479689,0.03022872,97.80930316],[4.53479639,0.03022699,97.80811962],[4.53479588,0.03022526,97.80694149],[4.53479537,0.03022353,97.80576881],[4.53479486,0.0302218,97.80460162],[4.53479435,0.03022007,97.80343994],[4.53479385,0.03021834,97.80228382],[4.53479334,0.03021661,97.8011333],[4.53479283,0.03021488,97.79998841],[4.53479232,0.03021315,97.79884918],[4.53479181,0.03021142,97.79771567],[4.5347913,0.03020969,97.7965879],[4.5347908,0.03020797,97.7954659],[4.53479029,0.03020624,97.79434973],[4.53478978,0.03020451,97.79323941],[4.53478927,0.03020278,97.79213498],[4.53478876,0.03020105,97.79103648],[4.53478825,0.03019932,97.78994396],[4.53478774,0.03019759,97.78885745],[4.53478723,0.03019586,97.78777702],[4.53478672,0.03019413,97.7867027],[4.53478622,0.0301924,97.78563455],[4.53478571,0.03019068,97.78457263],[4.5347852,0.03018895,97.78351697],[4.53478469,0.03018722,97.78246763],[4.53478418,0.03018549,97.78142465],[4.53478367,0.03018376,97.78038809],[4.53478316,0.03018203,97.779358],[4.53478265,0.0301803,97.77833442],[4.53478214,0.03017857,97.77731736],[4.53478163,0.03017685,97.77630675],[4.53478112,0.03017512,97.77530249],[4.53478061,0.03017339,97.7743045],[4.5347801,0.03017166,97.7733127],[4.53477959,0.03016993,97.77232699],[4.53477908,0.0301682,97.77134729],[4.53477857,0.03016647,97.77037352],[4.53477806,0.03016474,97.76940559],[4.53477755,0.03016302,97.76844341],[4.53477704,0.03016129,97.76748689],[4.53477653,0.03015956,97.76653595],[4.53477602,0.03015783,97.7655905],[4.53477551,0.0301561,97.76465046],[4.534775,0.03015437,97.76371573],[4.53477449,0.03015264,97.76278623],[4.53477398,0.03015092,97.76186188],[4.53477347,0.03014919,97.76094258],[4.53477296,0.03014746,97.76002825],[4.53477245,0.03014573,97.75911881],[4.53477194,0.030144,97.75821416],[4.53477143,0.03014227,97.75731421],[4.53477092,0.03014054,97.75641889],[4.53477041,0.03013882,97.7555281],[4.5347699,0.03013709,97.75464176],[4.53476939,0.03013536,97.75375978],[4.53476888,0.03013363,97.75288207],[4.53476837,0.0301319,97.75200854],[4.53476785,0.03013017,97.75113911],[4.53476734,0.03012844,97.75027369],[4.53476683,0.03012671,97.74941218],[4.53476632,0.03012499,97.74855449],[4.53476581,0.03012326,97.74770053],[4.5347653,0.03012153,97.7468502],[4.53476479,0.0301198,97.7460034],[4.53476428,0.03011807,97.74516004],[4.53476377,0.03011634,97.74432001],[4.53476326,0.03011461,97.74348323],[4.53476275,0.03011289,97.7426496],[4.53476224,0.03011116,97.74181902],[4.53476173,0.03010943,97.7409914],[4.53476122,0.0301077,97.74016663],[4.53476071,0.03010597,97.73934463],[4.5347602,0.03010424,97.7385253],[4.53475969,0.03010251,97.73770853],[4.53475918,0.03010079,97.73689425],[4.53475867,0.03009906,97.73608234],[4.53475816,0.03009733,97.73527271],[4.53475765,0.0300956,97.73446528],[4.53475714,0.03009387,97.73365993],[4.53475663,0.03009214,97.73285658],[4.53475612,0.03009041,97.73205512],[4.53475561,0.03008869,97.73125547],[4.5347551,0.03008696,97.73045753],[4.53475459,0.03008523,97.7296612],[4.53475408,0.0300835,97.72886638],[4.53475357,0.03008177,97.72807298],[4.53475306,0.03008004,97.72728091],[4.53475255,0.03007831,97.72649006],[4.53475204,0.03007658,97.72570034],[4.53475153,0.03007486,97.72491166],[4.53475102,0.03007313,97.72412392],[4.53475051,0.0300714,97.72333702],[4.53475,0.03006967,97.72255086],[4.53474948,0.03006794,97.72176536],[4.53474897,0.03006621,97.72098042],[4.53474846,0.03006448,97.72019593],[4.53474795,0.03006276,97.71941181],[4.53474744,0.03006103,97.71862798],[4.53474693,0.0300593,97.71784434],[4.53474642,0.03005757,97.71706081],[4.53474591,0.03005584,97.71627731],[4.5347454,0.03005411,97.71549375],[4.53474489,0.03005238,97.71471005],[4.53474438,0.03005066,97.71392612],[4.53474387,0.03004893,97.71314187],[4.53474336,0.0300472,97.71235723],[4.53474285,0.03004547,97.71157209],[4.53474234,0.03004374,97.71078637],[4.53474183,0.03004201,97.70999998],[4.53474132,0.03004028,97.70921282],[4.53474081,0.03003856,97.70842479],[4.5347403,0.03003683,97.70763581],[4.53473979,0.0300351,97.70684578],[4.53473928,0.03003337,97.70605461],[4.53473877,0.03003164,97.7052622],[4.53473826,0.03002991,97.70446847],[4.53473775,0.03002818,97.70367331],[4.53473724,0.03002646,97.70287664],[4.53473673,0.03002473,97.70207836],[4.53473622,0.030023,97.70127838],[4.53473571,0.03002127,97.70047661],[4.5347352,0.03001954,97.69967294],[4.53473469,0.03001781,97.6988673],[4.53473418,0.03001608,97.69805958],[4.53473367,0.03001435,97.69724969],[4.53473316,0.03001263,97.69643754],[4.53473265,0.0300109,97.69562304],[4.53473214,0.03000917,97.69480609],[4.53473163,0.03000744,97.69398659],[4.53473112,0.03000571,97.69316446],[4.53473061,0.03000398,97.69233961],[4.5347301,0.03000225,97.69151193],[4.53472959,0.03000052,97.69068142],[4.53472908,0.0299988,97.68984809],[4.53472857,0.02999707,97.68901193],[4.53472806,0.02999534,97.68817297],[4.53472755,0.02999361,97.6873312],[4.53472704,0.02999188,97.68648665],[4.53472653,0.02999015,97.68563932],[4.53472602,0.02998842,97.68478923],[4.53472551,0.02998669,97.68393637],[4.534725,0.02998496,97.68308077],[4.53472449,0.02998324,97.68222243],[4.53472398,0.02998151,97.68136136],[4.53472347,0.02997978,97.68049757],[4.53472296,0.02997805,97.67963107],[4.53472245,0.02997632,97.67876188],[4.53472194,0.02997459,97.67789],[4.53472143,0.02997286,97.67701544],[4.53472093,0.02997113,97.67613821],[4.53472042,0.0299694,97.67525833],[4.53471991,0.02996767,97.67437579],[4.5347194,0.02996595,97.67349062],[4.53471889,0.02996422,97.67260282],[4.53471838,0.02996249,97.67171241],[4.53471787,0.02996076,97.67081941],[4.53471736,0.02995903,97.66992384],[4.53471685,0.0299573,97.66902571],[4.53471634,0.02995557,97.66812504],[4.53471584,0.02995384,97.66722186],[4.53471533,0.02995211,97.66631616],[4.53471482,0.02995038,97.66540798],[4.53471431,0.02994865,97.66449732],[4.5347138,0.02994693,97.66358421],[4.53471329,0.0299452,97.66266865],[4.53471278,0.02994347,97.66175067],[4.53471228,0.02994174,97.66083028],[4.53471177,0.02994001,97.6599075],[4.53471126,0.02993828,97.65898234],[4.53471075,0.02993655,97.65805482],[4.53471024,0.02993482,97.65712495],[4.53470974,0.02993309,97.65619274],[4.53470923,0.02993136,97.65525817],[4.53470872,0.02992963,97.65432125],[4.53470821,0.0299279,97.65338196],[4.53470771,0.02992617,97.6524403],[4.5347072,0.02992444,97.65149626],[4.53470669,0.02992271,97.65054985],[4.53470618,0.02992098,97.64960104],[4.53470568,0.02991925,97.64864984],[4.53470517,0.02991753,97.64769624],[4.53470466,0.0299158,97.64674023],[4.53470416,0.02991407,97.64578181],[4.53470365,0.02991234,97.64482098],[4.53470314,0.02991061,97.64385773],[4.53470263,0.02990888,97.64289206],[4.53470213,0.02990715,97.64192395],[4.53470162,0.02990542,97.64095341],[4.53470111,0.02990369,97.63998043],[4.53470061,0.02990196,97.639005],[4.5347001,0.02990023,97.63802713],[4.53469959,0.0298985,97.6370468],[4.53469908,0.02989677,97.63606402],[4.53469858,0.02989504,97.63507877],[4.53469807,0.02989331,97.63409106],[4.53469756,0.02989158,97.63310087],[4.53469705,0.02988985,97.63210822],[4.53469655,0.02988812,97.63111308],[4.53469604,0.02988639,97.63011547],[4.53469553,0.02988466,97.62911536],[4.53469502,0.02988293,97.62811278],[4.53469452,0.0298812,97.62710771],[4.53469401,0.02987948,97.62610015],[4.5346935,0.02987775,97.62509011],[4.53469299,0.02987602,97.62407758],[4.53469248,0.02987429,97.62306257],[4.53469198,0.02987256,97.62204507],[4.53469147,0.02987083,97.62102509],[4.53469096,0.0298691,97.62000262],[4.53469045,0.02986737,97.61897766],[4.53468994,0.02986564,97.61795022],[4.53468943,0.02986391,97.61692029],[4.53468892,0.02986218,97.61588787],[4.53468841,0.02986045,97.61485297],[4.5346879,0.02985872,97.61381558],[4.53468739,0.029857,97.61277571],[4.53468689,0.02985527,97.61173335],[4.53468638,0.02985354,97.6106885],[4.53468587,0.02985181,97.60964117],[4.53468536,0.02985008,97.60859136],[4.53468484,0.02984835,97.60753906],[4.53468433,0.02984662,97.60648427],[4.53468382,0.02984489,97.60542701],[4.53468331,0.02984317,97.60436726],[4.5346828,0.02984144,97.60330505],[4.53468229,0.02983971,97.60224036],[4.53468178,0.02983798,97.60117322],[4.53468127,0.02983625,97.60010362],[4.53468076,0.02983452,97.59903158],[4.53468024,0.0298328,97.59795709],[4.53467973,0.02983107,97.59688015],[4.53467922,0.02982934,97.59580079],[4.53467871,0.02982761,97.59471899],[4.53467819,0.02982588,97.59363478],[4.53467768,0.02982416,97.59254814],[4.53467717,0.02982243,97.59145909],[4.53467665,0.0298207,97.59036764],[4.53467614,0.02981897,97.5892738],[4.53467563,0.02981725,97.58817761],[4.53467511,0.02981552,97.58707911],[4.5346746,0.02981379,97.58597836],[4.53467408,0.02981206,97.58487541],[4.53467357,0.02981034,97.58377029],[4.53467306,0.02980861,97.58266307],[4.53467254,0.02980688,97.58155378],[4.53467203,0.02980515,97.58044248],[4.53467151,0.02980343,97.57932921],[4.534671,0.0298017,97.57821402],[4.53467048,0.02979997,97.57709696],[4.53466997,0.02979824,97.57597807],[4.53466945,0.02979652,97.57485741],[4.53466894,0.02979479,97.57373501],[4.53466842,0.02979306,97.57261094],[4.53466791,0.02979133,97.57148521],[4.53466739,0.02978961,97.57035786],[4.53466688,0.02978788,97.56922888],[4.53466636,0.02978615,97.56809827],[4.53466585,0.02978442,97.56696605],[4.53466533,0.0297827,97.56583222],[4.53466482,0.02978097,97.56469677],[4.53466431,0.02977924,97.56355973],[4.53466379,0.02977751,97.56242108],[4.53466328,0.02977579,97.56128084],[4.53466276,0.02977406,97.56013901],[4.53466225,0.02977233,97.5589956],[4.53466173,0.0297706,97.55785061],[4.53466122,0.02976888,97.55670405],[4.53466071,0.02976715,97.55555591],[4.53466019,0.02976542,97.55440622],[4.53465968,0.02976369,97.55325496],[4.53465916,0.02976197,97.55210215],[4.53465865,0.02976024,97.55094779],[4.53465813,0.02975851,97.54979189],[4.53465762,0.02975678,97.54863445],[4.53465711,0.02975506,97.54747548],[4.53465659,0.02975333,97.54631497],[4.53465608,0.0297516,97.54515295],[4.53465557,0.02974987,97.5439894],[4.53465505,0.02974815,97.54282435],[4.53465454,0.02974642,97.54165778],[4.53465402,0.02974469,97.54048971],[4.53465351,0.02974296,97.53932014],[4.534653,0.02974124,97.53814909],[4.53465248,0.02973951,97.53697654],[4.53465197,0.02973778,97.53580251],[4.53465145,0.02973605,97.53462701],[4.53465094,0.02973432,97.53345003],[4.53465043,0.0297326,97.53227158],[4.53464991,0.02973087,97.53109168],[4.5346494,0.02972914,97.52991032],[4.53464888,0.02972741,97.52872751],[4.53464837,0.02972569,97.52754325],[4.53464786,0.02972396,97.52635755],[4.53464734,0.02972223,97.52517042],[4.53464683,0.0297205,97.52398185],[4.53464631,0.02971878,97.52279186],[4.5346458,0.02971705,97.52160046],[4.53464529,0.02971532,97.52040763],[4.53464477,0.02971359,97.5192134],[4.53464426,0.02971187,97.51801777],[4.53464374,0.02971014,97.51682073],[4.53464323,0.02970841,97.51562231],[4.53464272,0.02970668,97.51442249],[4.5346422,0.02970496,97.51322129],[4.53464169,0.02970323,97.51201872],[4.53464117,0.0297015,97.51081478],[4.53464066,0.02969977,97.50960953],[4.53464014,0.02969805,97.50840303],[4.53463963,0.02969632,97.50719531],[4.53463912,0.02969459,97.50598637],[4.5346386,0.02969286,97.5047762],[4.53463809,0.02969113,97.50356482],[4.53463757,0.02968941,97.50235224],[4.53463706,0.02968768,97.50113844],[4.53463654,0.02968595,97.49992344],[4.53463603,0.02968422,97.49870724],[4.53463552,0.0296825,97.49748984],[4.534635,0.02968077,97.49627126],[4.53463449,0.02967904,97.49505148],[4.53463397,0.02967732,97.49383052],[4.53463346,0.02967559,97.49260838],[4.53463295,0.02967386,97.49138506],[4.53463243,0.02967213,97.49016057],[4.53463192,0.02967041,97.48893491],[4.5346314,0.02966868,97.48770808],[4.53463089,0.02966695,97.48648008],[4.53463037,0.02966522,97.48525092],[4.53462986,0.0296635,97.48402059],[4.53462934,0.02966177,97.48278909],[4.53462883,0.02966004,97.48155643],[4.53462831,0.02965831,97.4803226],[4.5346278,0.02965659,97.4790876],[4.53462729,0.02965486,97.47785143],[4.53462677,0.02965313,97.4766141],[4.53462626,0.0296514,97.4753756],[4.53462574,0.02964968,97.47413593],[4.53462523,0.02964795,97.4728951],[4.53462471,0.02964622,97.4716531],[4.5346242,0.0296445,97.47040993],[4.53462368,0.02964277,97.46916559],[4.53462316,0.02964104,97.46792009],[4.53462265,0.02963931,97.46667342],[4.53462213,0.02963759,97.46542558],[4.53462162,0.02963586,97.46417657],[4.5346211,0.02963413,97.4629264],[4.53462059,0.02963241,97.46167506],[4.53462007,0.02963068,97.46042254],[4.53461955,0.02962895,97.45916886],[4.53461904,0.02962723,97.45791401],[4.53461852,0.0296255,97.45665801],[4.53461801,0.02962377,97.4554009],[4.53461749,0.02962205,97.45414275],[4.53461697,0.02962032,97.45288359],[4.53461646,0.02961859,97.45162348],[4.53461594,0.02961686,97.45036248],[4.53461542,0.02961514,97.44910064],[4.53461491,0.02961341,97.44783801],[4.53461439,0.02961168,97.44657464],[4.53461387,0.02960996,97.44531058],[4.53461336,0.02960823,97.4440459],[4.53461284,0.0296065,97.44278062],[4.53461232,0.02960478,97.44151479],[4.53461181,0.02960305,97.44024839],[4.53461129,0.02960132,97.43898146],[4.53461077,0.0295996,97.437714],[4.53461026,0.02959787,97.43644601],[4.53460974,0.02959614,97.43517753],[4.53460923,0.02959442,97.43390855],[4.53460871,0.02959269,97.43263909],[4.53460819,0.02959096,97.43136916],[4.53460768,0.02958924,97.43009877],[4.53460716,0.02958751,97.42882794],[4.53460665,0.02958578,97.42755668],[4.53460613,0.02958405,97.426285],[4.53460562,0.02958233,97.42501292],[4.5346051,0.0295806,97.42374043],[4.53460459,0.02957887,97.42246757],[4.53460407,0.02957715,97.42119434],[4.53460356,0.02957542,97.41992075],[4.53460304,0.02957369,97.41864681],[4.53460253,0.02957196,97.41737255],[4.53460201,0.02957024,97.41609796],[4.5346015,0.02956851,97.41482307],[4.53460099,0.02956678,97.41354788],[4.53460047,0.02956505,97.41227241],[4.53459996,0.02956333,97.41099664],[4.53459944,0.0295616,97.4097206],[4.53459893,0.02955987,97.40844426],[4.53459842,0.02955814,97.40716763],[4.5345979,0.02955642,97.4058907],[4.53459739,0.02955469,97.40461349],[4.53459688,0.02955296,97.40333597],[4.53459636,0.02955123,97.40205816],[4.53459585,0.02954951,97.40078006],[4.53459534,0.02954778,97.39950165],[4.53459482,0.02954605,97.39822294],[4.53459431,0.02954432,97.39694392],[4.5345938,0.0295426,97.39566461],[4.53459328,0.02954087,97.39438498],[4.53459277,0.02953914,97.39310505],[4.53459226,0.02953741,97.3918248],[4.53459174,0.02953568,97.39054425],[4.53459123,0.02953396,97.38926338],[4.53459072,0.02953223,97.38798219],[4.53459021,0.0295305,97.38670069],[4.53458969,0.02952877,97.38541887],[4.53458918,0.02952705,97.38413673],[4.53458867,0.02952532,97.38285426],[4.53458815,0.02952359,97.38157147],[4.53458764,0.02952186,97.38028835],[4.53458713,0.02952014,97.3790049],[4.53458662,0.02951841,97.37772112],[4.5345861,0.02951668,97.37643701],[4.53458559,0.02951495,97.37515256],[4.53458508,0.02951322,97.37386778],[4.53458456,0.0295115,97.37258265],[4.53458405,0.02950977,97.37129718],[4.53458354,0.02950804,97.37001137],[4.53458302,0.02950631,97.36872523],[4.53458251,0.02950459,97.36743876],[4.534582,0.02950286,97.36615199],[4.53458148,0.02950113,97.36486492],[4.53458097,0.0294994,97.36357756],[4.53458046,0.02949768,97.36228992],[4.53457994,0.02949595,97.36100203],[4.53457943,0.02949422,97.35971388],[4.53457891,0.02949249,97.35842549],[4.5345784,0.02949077,97.35713687],[4.53457789,0.02948904,97.35584804],[4.53457737,0.02948731,97.354559],[4.53457686,0.02948559,97.35326977],[4.53457635,0.02948386,97.35198035],[4.53457583,0.02948213,97.35069076],[4.53457532,0.0294804,97.34940102],[4.5345748,0.02947868,97.34811113],[4.53457429,0.02947695,97.3468211],[4.53457378,0.02947522,97.34553095],[4.53457326,0.02947349,97.34424069],[4.53457275,0.02947177,97.34295032],[4.53457223,0.02947004,97.34165987],[4.53457172,0.02946831,97.34036934],[4.5345712,0.02946659,97.33907874],[4.53457069,0.02946486,97.33778809],[4.53457017,0.02946313,97.3364974],[4.53456966,0.0294614,97.33520667],[4.53456915,0.02945968,97.33391593],[4.53456863,0.02945795,97.33262518],[4.53456812,0.02945622,97.33133443],[4.5345676,0.0294545,97.3300437],[4.53456709,0.02945277,97.328753],[4.53456657,0.02945104,97.32746234],[4.53456606,0.02944931,97.32617173],[4.53456554,0.02944759,97.32488118],[4.53456503,0.02944586,97.3235907],[4.53456451,0.02944413,97.32230031],[4.534564,0.02944241,97.32101002],[4.53456349,0.02944068,97.31971984],[4.53456297,0.02943895,97.31842979],[4.53456246,0.02943722,97.31713986],[4.53456194,0.0294355,97.31585008],[4.53456143,0.02943377,97.31456046],[4.53456091,0.02943204,97.313271],[4.5345604,0.02943032,97.31198173],[4.53455988,0.02942859,97.31069265],[4.53455937,0.02942686,97.30940377],[4.53455885,0.02942514,97.30811511],[4.53455834,0.02942341,97.30682668],[4.53455782,0.02942168,97.30553849],[4.53455731,0.02941995,97.30425055],[4.53455679,0.02941823,97.30296287],[4.53455628,0.0294165,97.30167547],[4.53455576,0.02941477,97.30038835],[4.53455525,0.02941305,97.29910154],[4.53455473,0.02941132,97.29781503],[4.53455422,0.02940959,97.29652885],[4.5345537,0.02940787,97.29524301],[4.53455319,0.02940614,97.29395751],[4.53455267,0.02940441,97.29267237],[4.53455216,0.02940269,97.2913876],[4.53455164,0.02940096,97.29010321],[4.53455113,0.02939923,97.28881921],[4.53455061,0.0293975,97.28753563],[4.5345501,0.02939578,97.28625246],[4.53454958,0.02939405,97.28496972],[4.53454907,0.02939232,97.28368743],[4.53454855,0.0293906,97.28240559],[4.53454804,0.02938887,97.28112421],[4.53454752,0.02938714,97.27984331],[4.53454701,0.02938542,97.27856291],[4.53454649,0.02938369,97.27728301],[4.53454598,0.02938196,97.27600362],[4.53454546,0.02938024,97.27472475],[4.53454495,0.02937851,97.27344643],[4.53454443,0.02937678,97.27216866],[4.53454392,0.02937505,97.27089145],[4.5345434,0.02937333,97.26961481],[4.53454289,0.0293716,97.26833876],[4.53454237,0.02936987,97.26706331],[4.53454186,0.02936815,97.26578847],[4.53454134,0.02936642,97.26451426],[4.53454083,0.02936469,97.26324067],[4.53454031,0.02936297,97.26196774],[4.5345398,0.02936124,97.26069546],[4.53453928,0.02935951,97.25942385],[4.53453877,0.02935779,97.25815292],[4.53453826,0.02935606,97.25688268],[4.53453774,0.02935433,97.25561314],[4.53453723,0.02935261,97.25434432],[4.53453671,0.02935088,97.25307623],[4.5345362,0.02934915,97.25180887],[4.53453568,0.02934742,97.25054225],[4.53453517,0.0293457,97.24927637],[4.53453465,0.02934397,97.24801124],[4.53453414,0.02934224,97.24674686],[4.53453362,0.02934052,97.24548324],[4.53453311,0.02933879,97.24422038],[4.5345326,0.02933706,97.24295827],[4.53453208,0.02933534,97.24169693],[4.53453157,0.02933361,97.24043637],[4.53453105,0.02933188,97.23917657],[4.53453054,0.02933015,97.23791755],[4.53453002,0.02932843,97.23665931],[4.53452951,0.0293267,97.23540185],[4.53452899,0.02932497,97.23414518],[4.53452848,0.02932325,97.2328893],[4.53452796,0.02932152,97.23163422],[4.53452745,0.02931979,97.23037993],[4.53452694,0.02931807,97.22912644],[4.53452642,0.02931634,97.22787376],[4.53452591,0.02931461,97.22662187],[4.53452539,0.02931289,97.22537078],[4.53452488,0.02931116,97.22412048],[4.53452436,0.02930943,97.22287097],[4.53452385,0.0293077,97.22162223],[4.53452333,0.02930598,97.22037426],[4.53452282,0.02930425,97.21912706],[4.5345223,0.02930252,97.21788062],[4.53452179,0.0293008,97.21663494],[4.53452127,0.02929907,97.21539],[4.53452076,0.02929734,97.21414581],[4.53452024,0.02929562,97.21290235],[4.53451973,0.02929389,97.21165963],[4.53451921,0.02929216,97.21041763],[4.5345187,0.02929044,97.20917635],[4.53451818,0.02928871,97.20793578],[4.53451767,0.02928698,97.20669593],[4.53451715,0.02928526,97.20545677],[4.53451663,0.02928353,97.20421831],[4.53451612,0.0292818,97.20298053],[4.5345156,0.02928008,97.20174342],[4.53451509,0.02927835,97.20050699],[4.53451457,0.02927662,97.19927122],[4.53451406,0.0292749,97.1980361],[4.53451354,0.02927317,97.19680163],[4.53451302,0.02927145,97.19556781],[4.53451251,0.02926972,97.19433464],[4.53451199,0.02926799,97.19310213],[4.53451147,0.02926627,97.19187027],[4.53451096,0.02926454,97.19063908],[4.53451044,0.02926281,97.18940855],[4.53450993,0.02926109,97.18817869],[4.53450941,0.02925936,97.18694949],[4.53450889,0.02925764,97.18572097],[4.53450837,0.02925591,97.18449312],[4.53450786,0.02925418,97.18326595],[4.53450734,0.02925246,97.18203946],[4.53450682,0.02925073,97.18081365],[4.53450631,0.02924901,97.17958853],[4.53450579,0.02924728,97.17836409],[4.53450527,0.02924555,97.17714035],[4.53450475,0.02924383,97.1759173],[4.53450424,0.0292421,97.17469494],[4.53450372,0.02924038,97.17347329],[4.5345032,0.02923865,97.17225234],[4.53450268,0.02923692,97.17103209],[4.53450217,0.0292352,97.16981255],[4.53450165,0.02923347,97.16859372],[4.53450113,0.02923175,97.16737561],[4.53450061,0.02923002,97.16615821],[4.53450009,0.0292283,97.16494153],[4.53449958,0.02922657,97.16372558],[4.53449906,0.02922484,97.16251035],[4.53449854,0.02922312,97.16129585],[4.53449802,0.02922139,97.16008207],[4.5344975,0.02921967,97.15886904],[4.53449698,0.02921794,97.15765673],[4.53449647,0.02921622,97.15644517],[4.53449595,0.02921449,97.15523435],[4.53449543,0.02921276,97.15402428],[4.53449491,0.02921104,97.15281495],[4.53449439,0.02920931,97.15160638],[4.53449387,0.02920759,97.15039856],[4.53449335,0.02920586,97.1491915],[4.53449284,0.02920414,97.1479852],[4.53449232,0.02920241,97.14677966],[4.5344918,0.02920069,97.14557489],[4.53449128,0.02919896,97.14437088],[4.53449076,0.02919724,97.14316765],[4.53449024,0.02919551,97.1419652],[4.53448972,0.02919378,97.14076352],[4.5344892,0.02919206,97.13956262],[4.53448868,0.02919033,97.13836251],[4.53448816,0.02918861,97.13716319],[4.53448764,0.02918688,97.13596465],[4.53448712,0.02918516,97.13476691],[4.5344866,0.02918343,97.13356997],[4.53448609,0.02918171,97.13237382],[4.53448557,0.02917998,97.13117848],[4.53448505,0.02917826,97.12998394],[4.53448453,0.02917653,97.12879021],[4.53448401,0.02917481,97.1275973],[4.53448349,0.02917308,97.1264052],[4.53448297,0.02917136,97.12521391],[4.53448245,0.02916963,97.12402345],[4.53448193,0.02916791,97.12283381],[4.53448141,0.02916618,97.121645],[4.53448089,0.02916446,97.12045702],[4.53448037,0.02916273,97.11926987],[4.53447985,0.02916101,97.11808355],[4.53447933,0.02915928,97.11689808],[4.53447881,0.02915756,97.11571345],[4.53447829,0.02915583,97.11452967],[4.53447777,0.02915411,97.11334673],[4.53447725,0.02915238,97.11216465],[4.53447673,0.02915066,97.11098342],[4.53447621,0.02914893,97.10980306],[4.53447569,0.02914721,97.10862355],[4.53447517,0.02914548,97.10744491],[4.53447465,0.02914376,97.10626713],[4.53447413,0.02914203,97.10509023],[4.53447361,0.02914031,97.1039142],[4.53447309,0.02913858,97.10273905],[4.53447257,0.02913686,97.10156478],[4.53447205,0.02913513,97.10039139],[4.53447153,0.02913341,97.09921889],[4.53447101,0.02913168,97.09804728],[4.53447049,0.02912996,97.09687656],[4.53446997,0.02912823,97.09570673],[4.53446945,0.02912651,97.09453778],[4.53446893,0.02912478,97.09336972],[4.53446841,0.02912306,97.09220253],[4.53446789,0.02912133,97.09103622],[4.53446736,0.02911961,97.08987078],[4.53446684,0.02911788,97.08870621],[4.53446632,0.02911616,97.08754251],[4.5344658,0.02911443,97.08637966],[4.53446528,0.02911271,97.08521767],[4.53446476,0.02911098,97.08405654],[4.53446424,0.02910926,97.08289626],[4.53446372,0.02910753,97.08173681],[4.5344632,0.02910581,97.08057821],[4.53446268,0.02910408,97.07942044],[4.53446216,0.02910236,97.07826351],[4.53446164,0.02910063,97.07710739],[4.53446112,0.02909891,97.0759521],[4.5344606,0.02909718,97.07479761],[4.53446008,0.02909546,97.07364394],[4.53445956,0.02909374,97.07249108],[4.53445903,0.02909201,97.07133901],[4.53445851,0.02909029,97.07018774],[4.53445799,0.02908856,97.06903725],[4.53445747,0.02908684,97.06788756],[4.53445695,0.02908511,97.06673865],[4.53445643,0.02908339,97.06559053],[4.53445591,0.02908166,97.0644432],[4.53445539,0.02907994,97.06329667],[4.53445486,0.02907821,97.06215094],[4.53445434,0.02907649,97.06100601],[4.53445382,0.02907477,97.05986188],[4.5344533,0.02907304,97.05871855],[4.53445278,0.02907132,97.05757604],[4.53445226,0.02906959,97.05643434],[4.53445174,0.02906787,97.05529345],[4.53445121,0.02906614,97.05415337],[4.53445069,0.02906442,97.05301412],[4.53445017,0.02906269,97.05187569],[4.53444965,0.02906097,97.05073808],[4.53444913,0.02905925,97.0496013],[4.5344486,0.02905752,97.04846536],[4.53444808,0.0290558,97.04733024],[4.53444756,0.02905407,97.04619596],[4.53444704,0.02905235,97.04506252],[4.53444652,0.02905062,97.04392992],[4.53444599,0.0290489,97.04279816],[4.53444547,0.02904718,97.04166725],[4.53444495,0.02904545,97.04053719],[4.53444443,0.02904373,97.03940798],[4.5344439,0.029042,97.03827963],[4.53444338,0.02904028,97.03715213],[4.53444286,0.02903856,97.03602549],[4.53444234,0.02903683,97.03489972],[4.53444181,0.02903511,97.03377481],[4.53444129,0.02903338,97.03265077],[4.53444077,0.02903166,97.0315276],[4.53444025,0.02902994,97.03040531],[4.53443972,0.02902821,97.02928389],[4.5344392,0.02902649,97.02816335],[4.53443868,0.02902476,97.02704369],[4.53443815,0.02902304,97.02592492],[4.53443763,0.02902132,97.02480704],[4.53443711,0.02901959,97.02369005],[4.53443659,0.02901787,97.02257395],[4.53443606,0.02901614,97.02145874],[4.53443554,0.02901442,97.02034444],[4.53443502,0.0290127,97.01923104],[4.53443449,0.02901097,97.01811854],[4.53443397,0.02900925,97.01700695],[4.53443345,0.02900752,97.01589627],[4.53443293,0.0290058,97.0147865],[4.5344324,0.02900408,97.01367765],[4.53443188,0.02900235,97.01256971],[4.53443136,0.02900063,97.0114627],[4.53443083,0.0289989,97.01035661],[4.53443031,0.02899718,97.00925145],[4.53442979,0.02899546,97.00814722],[4.53442926,0.02899373,97.00704392],[4.53442874,0.02899201,97.00594156],[4.53442822,0.02899028,97.00484013],[4.53442769,0.02898856,97.00373965],[4.53442717,0.02898684,97.00264011],[4.53442665,0.02898511,97.00154151],[4.53442613,0.0289834,97.00044387],[4.5344256,0.02898167,96.99934718],[4.53442508,0.02897995,96.99825144],[4.53442456,0.02897822,96.99715666],[4.53442403,0.0289765,96.99606285],[4.53442351,0.02897478,96.99496999],[4.53442299,0.02897305,96.9938781],[4.53442246,0.02897133,96.99278718],[4.53442194,0.0289696,96.99169724],[4.53442142,0.02896788,96.99060827],[4.53442139,0.0289678,96.99055832]],"type":"LineString"},"type":"feature","properties":{"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-3,"type":"stop","predecessorId":-3}},{"geometry":{"coordinates":[[4.53573823,0.0334895,99.68638565],[4.53573775,0.03348776,99.68611016],[4.53573728,0.03348602,99.68583432],[4.5357368,0.03348429,99.68555815],[4.53573633,0.03348255,99.68528163],[4.53573586,0.03348081,99.68500476],[4.53573538,0.03347907,99.68472755],[4.53573491,0.03347733,99.68444999],[4.53573443,0.03347559,99.68417208],[4.53573396,0.03347385,99.68389382],[4.53573349,0.03347211,99.6836152],[4.53573301,0.03347037,99.68333624],[4.53573254,0.03346864,99.68305691],[4.53573206,0.0334669,99.68277724],[4.53573159,0.03346516,99.6824972],[4.53573112,0.03346342,99.68221681],[4.53573064,0.03346168,99.68193605],[4.53573017,0.03345994,99.68165494],[4.53572969,0.0334582,99.68137346],[4.53572922,0.03345646,99.68109161],[4.53572874,0.03345472,99.68080939],[4.53572827,0.03345299,99.6805268],[4.53572779,0.03345125,99.68024382],[4.53572732,0.03344951,99.67996046],[4.53572684,0.03344777,99.6796767],[4.53572637,0.03344603,99.67939255],[4.5357259,0.03344429,99.679108],[4.53572542,0.03344255,99.67882305],[4.53572495,0.03344081,99.67853769],[4.53572447,0.03343908,99.67825191],[4.535724,0.03343734,99.67796571],[4.53572352,0.0334356,99.6776791],[4.53572305,0.03343386,99.67739205],[4.53572257,0.03343212,99.67710457],[4.5357221,0.03343038,99.67681666],[4.53572162,0.03342864,99.6765283],[4.53572115,0.0334269,99.67623949],[4.53572067,0.03342517,99.67595024],[4.53572019,0.03342343,99.67566052],[4.53571972,0.03342169,99.67537035],[4.53571924,0.03341995,99.67507971],[4.53571877,0.03341821,99.67478861],[4.53571829,0.03341647,99.67449702],[4.53571782,0.03341473,99.67420496],[4.53571734,0.033413,99.67391241],[4.53571687,0.03341126,99.67361936],[4.53571639,0.03340952,99.67332582],[4.53571591,0.03340778,99.67303177],[4.53571544,0.03340604,99.67273721],[4.53571496,0.0334043,99.67244213],[4.53571448,0.03340256,99.67214652],[4.53571401,0.03340083,99.67185037],[4.53571353,0.03339909,99.67155369],[4.53571306,0.03339735,99.67125646],[4.53571258,0.03339561,99.67095867],[4.5357121,0.03339387,99.67066033],[4.53571163,0.03339213,99.67036141],[4.53571115,0.0333904,99.67006192],[4.53571067,0.03338866,99.66976182],[4.53571019,0.03338692,99.66946112],[4.53570972,0.03338518,99.6691598],[4.53570924,0.03338344,99.66885784],[4.53570876,0.03338171,99.66855523],[4.53570829,0.03337997,99.66825196],[4.53570781,0.03337823,99.66794802],[4.53570733,0.03337649,99.66764339],[4.53570685,0.03337475,99.66733805],[4.53570637,0.03337302,99.667032],[4.5357059,0.03337128,99.66672523],[4.53570542,0.03336954,99.66641774],[4.53570494,0.0333678,99.66610956],[4.53570446,0.03336606,99.66580069],[4.53570398,0.03336433,99.66549117],[4.5357035,0.03336259,99.665181],[4.53570303,0.03336085,99.66487021],[4.53570255,0.03335911,99.6645588],[4.53570207,0.03335737,99.6642468],[4.53570159,0.03335564,99.66393422],[4.53570111,0.0333539,99.66362109],[4.53570063,0.03335216,99.66330741],[4.53570015,0.03335042,99.6629932],[4.53569967,0.03334869,99.66267849],[4.53569919,0.03334695,99.66236328],[4.53569871,0.03334521,99.66204761],[4.53569823,0.03334347,99.66173147],[4.53569776,0.03334174,99.6614149],[4.53569728,0.03334,99.6610979],[4.5356968,0.03333826,99.6607805],[4.53569632,0.03333652,99.66046271],[4.53569584,0.03333478,99.66014456],[4.53569536,0.03333305,99.65982605],[4.53569488,0.03333131,99.65950721],[4.5356944,0.03332957,99.65918805],[4.53569392,0.03332783,99.65886859],[4.53569344,0.0333261,99.65854884],[4.53569296,0.03332436,99.65822884],[4.53569249,0.03332262,99.65790859],[4.53569201,0.03332088,99.65758811],[4.53569153,0.03331914,99.65726742],[4.53569105,0.03331741,99.65694653],[4.53569057,0.03331567,99.65662547],[4.53569009,0.03331393,99.65630425],[4.53568961,0.03331219,99.6559829],[4.53568914,0.03331046,99.65566142],[4.53568866,0.03330872,99.65533983],[4.53568818,0.03330698,99.65501817],[4.5356877,0.03330524,99.65469643],[4.53568723,0.0333035,99.65437464],[4.53568675,0.03330176,99.65405282],[4.53568627,0.03330003,99.65373099],[4.53568579,0.03329829,99.65340917],[4.53568532,0.03329655,99.65308736],[4.53568484,0.03329481,99.6527656],[4.53568436,0.03329307,99.65244389],[4.53568389,0.03329133,99.65212226],[4.53568341,0.0332896,99.65180073],[4.53568293,0.03328786,99.65147929],[4.53568246,0.03328612,99.65115796],[4.53568198,0.03328438,99.65083672],[4.53568151,0.03328264,99.65051554],[4.53568103,0.0332809,99.65019439],[4.53568056,0.03327916,99.64987323],[4.53568008,0.03327742,99.64955201],[4.53567961,0.03327568,99.64923069],[4.53567913,0.03327395,99.64890924],[4.53567866,0.03327221,99.64858764],[4.53567818,0.03327047,99.64826586],[4.53567771,0.03326873,99.64794387],[4.53567724,0.03326699,99.64762167],[4.53567676,0.03326525,99.64729922],[4.53567629,0.03326351,99.64697651],[4.53567581,0.03326177,99.6466535],[4.53567534,0.03326003,99.64633018],[4.53567487,0.03325829,99.64600652],[4.53567439,0.03325655,99.6456825],[4.53567392,0.03325481,99.6453581],[4.53567345,0.03325307,99.64503329],[4.53567297,0.03325134,99.64470806],[4.5356725,0.0332496,99.64438238],[4.53567203,0.03324786,99.64405622],[4.53567155,0.03324612,99.64372956],[4.53567108,0.03324438,99.64340239],[4.5356706,0.03324264,99.64307467],[4.53567013,0.0332409,99.64274638],[4.53566966,0.03323916,99.64241751],[4.53566918,0.03323742,99.64208802],[4.53566871,0.03323568,99.6417579],[4.53566824,0.03323394,99.64142711],[4.53566776,0.0332322,99.64109565],[4.53566729,0.03323046,99.64076348],[4.53566682,0.03322872,99.64043057],[4.53566634,0.03322698,99.64009692],[4.53566587,0.03322524,99.63976249],[4.5356654,0.0332235,99.63942726],[4.53566492,0.03322177,99.63909121],[4.53566445,0.03322003,99.63875431],[4.53566397,0.03321829,99.63841654],[4.5356635,0.03321655,99.63807788],[4.53566303,0.03321481,99.6377383],[4.53566255,0.03321307,99.63739779],[4.53566208,0.03321133,99.6370563],[4.5356616,0.03320959,99.63671383],[4.53566113,0.03320785,99.63637035],[4.53566065,0.03320611,99.63602583],[4.53566018,0.03320437,99.63568026],[4.5356597,0.03320263,99.6353336],[4.53565923,0.0332009,99.63498583],[4.53565875,0.03319916,99.63463694],[4.53565828,0.03319742,99.63428689],[4.5356578,0.03319568,99.63393566],[4.53565732,0.03319394,99.63358323],[4.53565685,0.0331922,99.63322958],[4.53565637,0.03319046,99.63287467],[4.53565589,0.03318872,99.6325185],[4.53565542,0.03318699,99.63216102],[4.53565494,0.03318525,99.63180223],[4.53565446,0.03318351,99.6314421],[4.53565399,0.03318177,99.63108067],[4.53565351,0.03318003,99.63071792],[4.53565303,0.03317829,99.63035389],[4.53565255,0.03317656,99.62998858],[4.53565207,0.03317482,99.62962201],[4.5356516,0.03317308,99.62925417],[4.53565112,0.03317134,99.6288851],[4.53565064,0.0331696,99.6285148],[4.53565016,0.03316787,99.62814328],[4.53564968,0.03316613,99.62777055],[4.5356492,0.03316439,99.62739663],[4.53564872,0.03316265,99.62702153],[4.53564824,0.03316091,99.62664527],[4.53564776,0.03315918,99.62626784],[4.53564728,0.03315744,99.62588928],[4.5356468,0.0331557,99.62550958],[4.53564632,0.03315396,99.62512876],[4.53564584,0.03315223,99.62474684],[4.53564536,0.03315049,99.62436383],[4.53564488,0.03314875,99.62397973],[4.5356444,0.03314701,99.62359457],[4.53564392,0.03314528,99.62320835],[4.53564344,0.03314354,99.62282111],[4.53564296,0.0331418,99.62243284],[4.53564247,0.03314006,99.62204355],[4.53564199,0.03313833,99.62165326],[4.53564151,0.03313659,99.62126197],[4.53564103,0.03313485,99.62086969],[4.53564055,0.03313311,99.62047643],[4.53564007,0.03313138,99.62008219],[4.53563959,0.03312964,99.61968697],[4.5356391,0.0331279,99.6192908],[4.53563862,0.03312616,99.61889368],[4.53563814,0.03312443,99.61849561],[4.53563766,0.03312269,99.6180966],[4.53563718,0.03312095,99.61769666],[4.53563669,0.03311922,99.6172958],[4.53563621,0.03311748,99.61689402],[4.53563573,0.03311574,99.61649134],[4.53563525,0.033114,99.61608775],[4.53563477,0.03311227,99.61568328],[4.53563428,0.03311053,99.61527792],[4.5356338,0.03310879,99.61487169],[4.53563332,0.03310706,99.61446457],[4.53563284,0.03310532,99.61405658],[4.53563236,0.03310358,99.6136477],[4.53563187,0.03310184,99.61323794],[4.53563139,0.03310011,99.61282729],[4.53563091,0.03309837,99.61241576],[4.53563043,0.03309663,99.61200333],[4.53562994,0.0330949,99.61159002],[4.53562946,0.03309316,99.6111758],[4.53562898,0.03309142,99.61076069],[4.5356285,0.03308968,99.61034468],[4.53562802,0.03308795,99.60992777],[4.53562753,0.03308621,99.60950996],[4.53562705,0.03308447,99.60909124],[4.53562657,0.03308274,99.60867162],[4.53562609,0.033081,99.60825108],[4.5356256,0.03307926,99.60782963],[4.53562512,0.03307752,99.60740727],[4.53562464,0.03307579,99.606984],[4.53562416,0.03307405,99.60655981],[4.53562367,0.03307231,99.60613469],[4.53562319,0.03307058,99.60570866],[4.53562271,0.03306884,99.6052817],[4.53562223,0.0330671,99.60485382],[4.53562174,0.03306536,99.604425],[4.53562126,0.03306363,99.60399526],[4.53562078,0.03306189,99.60356459],[4.53562029,0.03306015,99.60313298],[4.53561981,0.03305842,99.60270043],[4.53561933,0.03305668,99.60226695],[4.53561885,0.03305494,99.60183252],[4.53561836,0.0330532,99.60139716],[4.53561788,0.03305147,99.60096085],[4.5356174,0.03304973,99.60052359],[4.53561692,0.03304799,99.60008538],[4.53561643,0.03304626,99.59964623],[4.53561595,0.03304452,99.59920612],[4.53561547,0.03304278,99.59876505],[4.53561498,0.03304105,99.59832303],[4.5356145,0.03303931,99.59788005],[4.53561402,0.03303757,99.59743611],[4.53561354,0.03303583,99.5969912],[4.53561305,0.0330341,99.59654533],[4.53561257,0.03303236,99.59609849],[4.53561209,0.03303062,99.59565069],[4.5356116,0.03302889,99.59520191],[4.53561112,0.03302715,99.59475216],[4.53561064,0.03302541,99.59430144],[4.53561016,0.03302367,99.59384977],[4.53560967,0.03302194,99.59339719],[4.53560919,0.0330202,99.59294371],[4.53560871,0.03301846,99.59248936],[4.53560822,0.03301673,99.59203416],[4.53560774,0.03301499,99.59157812],[4.53560726,0.03301325,99.59112126],[4.53560678,0.03301151,99.59066357],[4.53560629,0.03300978,99.59020505],[4.53560581,0.03300804,99.58974571],[4.53560533,0.0330063,99.58928556],[4.53560485,0.03300457,99.58882459],[4.53560436,0.03300283,99.58836281],[4.53560388,0.03300109,99.58790022],[4.5356034,0.03299935,99.58743683],[4.53560292,0.03299762,99.58697264],[4.53560243,0.03299588,99.58650765],[4.53560195,0.03299414,99.58604187],[4.53560147,0.0329924,99.58557529],[4.53560099,0.03299067,99.58510792],[4.53560051,0.03298893,99.58463978],[4.53560002,0.03298719,99.58417085],[4.53559954,0.03298546,99.58370114],[4.53559906,0.03298372,99.58323065],[4.53559858,0.03298198,99.5827594],[4.5355981,0.03298024,99.58228738],[4.53559762,0.03297851,99.58181459],[4.53559713,0.03297677,99.58134104],[4.53559665,0.03297503,99.58086673],[4.53559617,0.03297329,99.58039167],[4.53559569,0.03297155,99.57991586],[4.53559521,0.03296982,99.57943929],[4.53559473,0.03296808,99.57896198],[4.53559425,0.03296634,99.5784839],[4.53559377,0.0329646,99.57800507],[4.53559329,0.03296287,99.57752547],[4.53559281,0.03296113,99.57704509],[4.53559233,0.03295939,99.57656394],[4.53559185,0.03295765,99.57608201],[4.53559137,0.03295591,99.57559929],[4.53559089,0.03295418,99.57511578],[4.53559041,0.03295244,99.57463148],[4.53558993,0.0329507,99.57414638],[4.53558945,0.03294896,99.57366047],[4.53558897,0.03294723,99.57317375],[4.53558849,0.03294549,99.57268622],[4.53558801,0.03294375,99.57219787],[4.53558753,0.03294201,99.5717087],[4.53558705,0.03294027,99.5712187],[4.53558657,0.03293853,99.57072786],[4.53558609,0.0329368,99.57023619],[4.53558561,0.03293506,99.56974367],[4.53558513,0.03293332,99.56925031],[4.53558465,0.03293158,99.56875608],[4.53558417,0.03292984,99.56826096],[4.53558369,0.03292811,99.56776492],[4.53558321,0.03292637,99.56726794],[4.53558274,0.03292463,99.56676999],[4.53558226,0.03292289,99.56627106],[4.53558178,0.03292115,99.56577111],[4.5355813,0.03291941,99.56527011],[4.53558082,0.03291768,99.56476806],[4.53558034,0.03291594,99.56426491],[4.53557986,0.0329142,99.56376065],[4.53557938,0.03291246,99.56325524],[4.53557891,0.03291072,99.56274867],[4.53557843,0.03290898,99.56224092],[4.53557795,0.03290725,99.56173194],[4.53557747,0.03290551,99.56122173],[4.53557699,0.03290377,99.56071025],[4.53557651,0.03290203,99.56019749],[4.53557603,0.03290029,99.5596834],[4.53557555,0.03289856,99.55916798],[4.53557507,0.03289682,99.5586512],[4.53557459,0.03289508,99.55813302],[4.53557412,0.03289334,99.55761343],[4.53557364,0.0328916,99.5570924],[4.53557316,0.03288986,99.5565699],[4.53557268,0.03288813,99.55604591],[4.5355722,0.03288639,99.55552041],[4.53557172,0.03288465,99.55499337],[4.53557124,0.03288291,99.55446478],[4.53557076,0.03288117,99.55393464],[4.53557028,0.03287944,99.55340296],[4.5355698,0.0328777,99.55286975],[4.53556932,0.03287596,99.552335],[4.53556884,0.03287422,99.55179873],[4.53556836,0.03287249,99.55126094],[4.53556787,0.03287075,99.55072163],[4.53556739,0.03286901,99.55018081],[4.53556691,0.03286727,99.54963848],[4.53556643,0.03286554,99.54909465],[4.53556595,0.0328638,99.54854932],[4.53556547,0.03286206,99.5480025],[4.53556499,0.03286032,99.54745419],[4.53556451,0.03285859,99.5469044],[4.53556403,0.03285685,99.54635313],[4.53556354,0.03285511,99.54580039],[4.53556306,0.03285337,99.54524618],[4.53556258,0.03285164,99.54469051],[4.5355621,0.0328499,99.54413338],[4.53556162,0.03284816,99.5435748],[4.53556113,0.03284642,99.54301477],[4.53556065,0.03284469,99.5424533],[4.53556017,0.03284295,99.54189039],[4.53555969,0.03284121,99.54132604],[4.53555921,0.03283947,99.54076027],[4.53555872,0.03283774,99.54019308],[4.53555824,0.032836,99.53962446],[4.53555776,0.03283426,99.53905443],[4.53555728,0.03283253,99.538483],[4.53555679,0.03283079,99.53791016],[4.53555631,0.03282905,99.53733592],[4.53555583,0.03282731,99.53676029],[4.53555535,0.03282558,99.53618327],[4.53555486,0.03282384,99.53560487],[4.53555438,0.0328221,99.53502509],[4.5355539,0.03282037,99.53444393],[4.53555341,0.03281863,99.53386141],[4.53555293,0.03281689,99.53327752],[4.53555245,0.03281515,99.53269228],[4.53555197,0.03281342,99.53210568],[4.53555148,0.03281168,99.53151773],[4.535551,0.03280994,99.53092845],[4.53555052,0.03280821,99.53033782],[4.53555003,0.03280647,99.52974586],[4.53554955,0.03280473,99.52915258],[4.53554907,0.032803,99.52855801],[4.53554858,0.03280126,99.52796214],[4.5355481,0.03279952,99.52736502],[4.53554762,0.03279779,99.52676667],[4.53554714,0.03279605,99.52616712],[4.53554665,0.03279431,99.52556638],[4.53554617,0.03279257,99.52496445],[4.53554569,0.03279084,99.52436133],[4.5355452,0.0327891,99.52375701],[4.53554472,0.03278736,99.52315148],[4.53554424,0.03278563,99.52254476],[4.53554376,0.03278389,99.52193682],[4.53554327,0.03278215,99.52132767],[4.53554279,0.03278041,99.5207173],[4.53554231,0.03277868,99.52010572],[4.53554183,0.03277694,99.51949291],[4.53554134,0.0327752,99.51887887],[4.53554086,0.03277347,99.5182636],[4.53554038,0.03277173,99.5176471],[4.5355399,0.03276999,99.51702937],[4.53553941,0.03276826,99.51641039],[4.53553893,0.03276652,99.51579016],[4.53553845,0.03276478,99.51516869],[4.53553797,0.03276304,99.51454596],[4.53553748,0.03276131,99.51392198],[4.535537,0.03275957,99.51329674],[4.53553652,0.03275783,99.51267024],[4.53553604,0.0327561,99.51204247],[4.53553555,0.03275436,99.51141343],[4.53553507,0.03275262,99.51078311],[4.53553459,0.03275088,99.51015152],[4.53553411,0.03274915,99.50951864],[4.53553363,0.03274741,99.50888449],[4.53553314,0.03274567,99.50824904],[4.53553266,0.03274393,99.5076123],[4.53553218,0.0327422,99.50697426],[4.5355317,0.03274046,99.50633493],[4.53553122,0.03273872,99.50569429],[4.53553073,0.03273699,99.50505235],[4.53553025,0.03273525,99.50440909],[4.53552977,0.03273351,99.50376453],[4.53552929,0.03273177,99.50311864],[4.53552881,0.03273004,99.50247143],[4.53552832,0.0327283,99.5018229],[4.53552784,0.03272656,99.50117304],[4.53552736,0.03272483,99.50052185],[4.53552688,0.03272309,99.49986932],[4.5355264,0.03272135,99.49921545],[4.53552592,0.03271961,99.49856024],[4.53552543,0.03271788,99.49790368],[4.53552495,0.03271614,99.49724577],[4.53552447,0.0327144,99.49658651],[4.53552399,0.03271266,99.49592589],[4.53552351,0.03271093,99.49526391],[4.53552303,0.03270919,99.49460057],[4.53552254,0.03270745,99.49393585],[4.53552206,0.03270572,99.49326977],[4.53552158,0.03270398,99.4926023],[4.5355211,0.03270224,99.49193346],[4.53552062,0.0327005,99.49126324],[4.53552014,0.03269877,99.49059162],[4.53551965,0.03269703,99.48991862],[4.53551917,0.03269529,99.48924422],[4.53551869,0.03269355,99.48856843],[4.53551821,0.03269182,99.48789123],[4.53551773,0.03269008,99.48721263],[4.53551725,0.03268834,99.48653262],[4.53551677,0.03268661,99.4858512],[4.53551628,0.03268487,99.48516836],[4.5355158,0.03268313,99.4844841],[4.53551532,0.03268139,99.48379841],[4.53551484,0.03267966,99.48311127],[4.53551436,0.03267792,99.48242267],[4.53551388,0.03267618,99.48173259],[4.5355134,0.03267444,99.48104102],[4.53551291,0.03267271,99.48034794],[4.53551243,0.03267097,99.47965333],[4.53551195,0.03266923,99.47895719],[4.53551147,0.0326675,99.47825951],[4.53551099,0.03266576,99.47756029],[4.53551051,0.03266402,99.47685956],[4.53551003,0.03266228,99.47615732],[4.53550954,0.03266055,99.47545357],[4.53550906,0.03265881,99.47474831],[4.53550858,0.03265707,99.47404152],[4.5355081,0.03265533,99.4733332],[4.53550762,0.0326536,99.47262334],[4.53550714,0.03265186,99.47191194],[4.53550665,0.03265012,99.471199],[4.53550617,0.03264839,99.4704845],[4.53550569,0.03264665,99.46976844],[4.53550521,0.03264491,99.46905082],[4.53550473,0.03264317,99.46833162],[4.53550425,0.03264144,99.46761085],[4.53550376,0.0326397,99.46688849],[4.53550328,0.03263796,99.46616455],[4.5355028,0.03263622,99.465439],[4.53550232,0.03263449,99.46471186],[4.53550184,0.03263275,99.4639831],[4.53550136,0.03263101,99.46325273],[4.53550087,0.03262928,99.46252074],[4.53550039,0.03262754,99.46178713],[4.53549991,0.0326258,99.46105188],[4.53549943,0.03262406,99.46031499],[4.53549895,0.03262233,99.45957646],[4.53549846,0.03262059,99.45883628],[4.53549798,0.03261885,99.45809444],[4.5354975,0.03261712,99.45735094],[4.53549702,0.03261538,99.45660576],[4.53549654,0.03261364,99.45585892],[4.53549605,0.03261191,99.45511039],[4.53549557,0.03261017,99.45436017],[4.53549509,0.03260843,99.45360827],[4.53549461,0.03260669,99.45285466],[4.53549412,0.03260496,99.45209934],[4.53549364,0.03260322,99.45134232],[4.53549316,0.03260148,99.45058358],[4.53549268,0.03259975,99.44982311],[4.5354922,0.03259801,99.44906092],[4.53549171,0.03259627,99.44829699],[4.53549123,0.03259454,99.44753131],[4.53549075,0.0325928,99.44676389],[4.53549026,0.03259106,99.44599472],[4.53548978,0.03258933,99.44522378],[4.5354893,0.03258759,99.44445108],[4.53548882,0.03258585,99.44367661],[4.53548833,0.03258412,99.44290036],[4.53548785,0.03258238,99.44212234],[4.53548737,0.03258064,99.44134254],[4.53548688,0.0325789,99.44056097],[4.5354864,0.03257717,99.43977762],[4.53548592,0.03257543,99.43899249],[4.53548543,0.03257369,99.43820559],[4.53548495,0.03257196,99.43741692],[4.53548447,0.03257022,99.43662648],[4.53548398,0.03256848,99.43583426],[4.5354835,0.03256675,99.43504027],[4.53548302,0.03256501,99.43424452],[4.53548253,0.03256328,99.43344703],[4.53548205,0.03256154,99.43264781],[4.53548157,0.0325598,99.43184689],[4.53548108,0.03255807,99.43104428],[4.5354806,0.03255633,99.43024001],[4.53548011,0.03255459,99.42943409],[4.53547963,0.03255286,99.42862654],[4.53547915,0.03255112,99.42781738],[4.53547866,0.03254938,99.42700664],[4.53547818,0.03254765,99.42619433],[4.53547769,0.03254591,99.42538046],[4.53547721,0.03254417,99.42456506],[4.53547673,0.03254244,99.42374816],[4.53547624,0.0325407,99.42292976],[4.53547576,0.03253896,99.42210988],[4.53547527,0.03253723,99.42128856],[4.53547479,0.03253549,99.42046579],[4.5354743,0.03253376,99.41964161],[4.53547382,0.03253202,99.41881604],[4.53547334,0.03253028,99.41798908],[4.53547285,0.03252855,99.41716073],[4.53547237,0.03252681,99.41633099],[4.53547189,0.03252507,99.41549987],[4.5354714,0.03252334,99.41466737],[4.53547092,0.0325216,99.41383348],[4.53547043,0.03251986,99.41299821],[4.53546995,0.03251813,99.41216155],[4.53546947,0.03251639,99.41132351],[4.53546898,0.03251465,99.41048408],[4.5354685,0.03251292,99.40964328],[4.53546802,0.03251118,99.40880109],[4.53546753,0.03250944,99.40795752],[4.53546705,0.03250771,99.40711256],[4.53546656,0.03250597,99.40626623],[4.53546608,0.03250424,99.40541852],[4.5354656,0.0325025,99.40456942],[4.53546511,0.03250076,99.40371895],[4.53546463,0.03249903,99.4028671],[4.53546415,0.03249729,99.40201387],[4.53546366,0.03249555,99.40115928],[4.53546318,0.03249382,99.40030332],[4.5354627,0.03249208,99.39944603],[4.53546221,0.03249034,99.39858739],[4.53546173,0.03248861,99.39772744],[4.53546124,0.03248687,99.39686616],[4.53546076,0.03248513,99.39600358],[4.53546028,0.0324834,99.39513971],[4.53545979,0.03248166,99.39427454],[4.53545931,0.03247992,99.39340811],[4.53545883,0.03247819,99.39254041],[4.53545834,0.03247645,99.39167145],[4.53545786,0.03247471,99.39080125],[4.53545738,0.03247298,99.38992981],[4.53545689,0.03247124,99.38905715],[4.53545641,0.0324695,99.38818328],[4.53545593,0.03246777,99.38730819],[4.53545544,0.03246603,99.38643192],[4.53545496,0.03246429,99.38555446],[4.53545448,0.03246256,99.38467583],[4.535454,0.03246082,99.38379603],[4.53545351,0.03245908,99.38291507],[4.53545303,0.03245735,99.38203298],[4.53545255,0.03245561,99.38114975],[4.53545206,0.03245387,99.38026539],[4.53545158,0.03245214,99.37937992],[4.5354511,0.0324504,99.37849334],[4.53545062,0.03244866,99.37760567],[4.53545013,0.03244693,99.3767169],[4.53544965,0.03244519,99.37582706],[4.53544917,0.03244345,99.37493613],[4.53544869,0.03244172,99.37404414],[4.5354482,0.03243998,99.37315108],[4.53544772,0.03243824,99.37225698],[4.53544724,0.03243651,99.37136183],[4.53544676,0.03243477,99.37046564],[4.53544628,0.03243303,99.36956842],[4.53544579,0.0324313,99.36867017],[4.53544531,0.03242956,99.36777091],[4.53544483,0.03242782,99.36687064],[4.53544435,0.03242609,99.36596938],[4.53544387,0.03242435,99.36506711],[4.53544339,0.03242261,99.36416384],[4.53544291,0.03242087,99.36325957],[4.53544242,0.03241914,99.36235428],[4.53544194,0.0324174,99.36144798],[4.53544146,0.03241566,99.36054067],[4.53544098,0.03241393,99.35963234],[4.5354405,0.03241219,99.35872298],[4.53544002,0.03241045,99.35781259],[4.53543954,0.03240871,99.35690118],[4.53543906,0.03240698,99.35598873],[4.53543858,0.03240524,99.35507524],[4.5354381,0.0324035,99.35416071],[4.53543762,0.03240176,99.35324514],[4.53543714,0.03240003,99.35232852],[4.53543666,0.03239829,99.35141084],[4.53543618,0.03239655,99.35049211],[4.5354357,0.03239482,99.34957232],[4.53543522,0.03239308,99.34865145],[4.53543474,0.03239134,99.3477295],[4.53543426,0.0323896,99.34680646],[4.53543378,0.03238787,99.3458823],[4.5354333,0.03238613,99.34495701],[4.53543282,0.03238439,99.34403059],[4.53543234,0.03238265,99.34310302],[4.53543186,0.03238092,99.34217429],[4.53543138,0.03237918,99.34124438],[4.5354309,0.03237744,99.34031328],[4.53543042,0.0323757,99.33938098],[4.53542994,0.03237397,99.33844747],[4.53542946,0.03237223,99.33751273],[4.53542898,0.03237049,99.33657674],[4.5354285,0.03236875,99.33563951],[4.53542802,0.03236702,99.33470101],[4.53542754,0.03236528,99.33376122],[4.53542706,0.03236354,99.33282015],[4.53542658,0.0323618,99.33187778],[4.5354261,0.03236007,99.33093408],[4.53542562,0.03235833,99.32998906],[4.53542514,0.03235659,99.32904269],[4.53542466,0.03235485,99.32809497],[4.53542418,0.03235312,99.32714588],[4.5354237,0.03235138,99.3261954],[4.53542322,0.03234964,99.32524354],[4.53542274,0.0323479,99.32429027],[4.53542226,0.03234617,99.32333557],[4.53542178,0.03234443,99.32237945],[4.5354213,0.03234269,99.32142188],[4.53542082,0.03234096,99.32046286],[4.53542034,0.03233922,99.31950236],[4.53541986,0.03233748,99.31854039],[4.53541938,0.03233574,99.31757695],[4.5354189,0.03233401,99.31661204],[4.53541841,0.03233227,99.31564568],[4.53541793,0.03233053,99.31467787],[4.53541745,0.0323288,99.31370862],[4.53541697,0.03232706,99.31273793],[4.53541649,0.03232532,99.31176581],[4.53541601,0.03232358,99.31079227],[4.53541553,0.03232185,99.30981732],[4.53541505,0.03232011,99.30884096],[4.53541456,0.03231837,99.3078632],[4.53541408,0.03231664,99.30688405],[4.5354136,0.0323149,99.30590351],[4.53541312,0.03231316,99.3049216],[4.53541264,0.03231143,99.30393831],[4.53541216,0.03230969,99.30295366],[4.53541167,0.03230795,99.30196765],[4.53541119,0.03230622,99.30098029],[4.53541071,0.03230448,99.29999159],[4.53541023,0.03230274,99.29900157],[4.53540975,0.032301,99.29801027],[4.53540926,0.03229927,99.29701776],[4.53540878,0.03229753,99.29602406],[4.5354083,0.03229579,99.29502922],[4.53540782,0.03229406,99.2940333],[4.53540734,0.03229232,99.29303632],[4.53540685,0.03229058,99.29203835],[4.53540637,0.03228885,99.2910394],[4.53540589,0.03228711,99.29003947],[4.53540541,0.03228537,99.28903852],[4.53540493,0.03228364,99.28803654],[4.53540445,0.0322819,99.28703352],[4.53540396,0.03228016,99.28602943],[4.53540348,0.03227843,99.28502426],[4.535403,0.03227669,99.28401798],[4.53540252,0.03227495,99.28301058],[4.53540204,0.03227322,99.28200204],[4.53540156,0.03227148,99.28099233],[4.53540107,0.03226974,99.27998144],[4.53540059,0.03226801,99.27896936],[4.53540011,0.03226627,99.27795605],[4.53539963,0.03226453,99.27694151],[4.53539915,0.0322628,99.27592572],[4.53539867,0.03226106,99.27490864],[4.53539818,0.03225932,99.27389028],[4.5353977,0.03225759,99.2728706],[4.53539722,0.03225585,99.27184959],[4.53539674,0.03225411,99.27082723],[4.53539626,0.03225238,99.2698035],[4.53539577,0.03225064,99.26877838],[4.53539529,0.0322489,99.26775186],[4.53539481,0.03224717,99.26672391],[4.53539433,0.03224543,99.26569452],[4.53539384,0.03224369,99.26466366],[4.53539336,0.03224196,99.26363133],[4.53539288,0.03224022,99.26259749],[4.5353924,0.03223848,99.26156213],[4.53539191,0.03223675,99.26052524],[4.53539143,0.03223501,99.25948679],[4.53539095,0.03223327,99.25844676],[4.53539046,0.03223154,99.25740515],[4.53538998,0.0322298,99.25636192],[4.5353895,0.03222806,99.25531706],[4.53538901,0.03222633,99.25427055],[4.53538853,0.03222459,99.25322237],[4.53538804,0.03222286,99.25217251],[4.53538756,0.03222112,99.25112094],[4.53538707,0.03221938,99.25006765],[4.53538659,0.03221765,99.24901261],[4.5353861,0.03221591,99.24795584],[4.53538562,0.03221418,99.24689736],[4.53538513,0.03221244,99.24583722],[4.53538465,0.03221071,99.24477545],[4.53538416,0.03220897,99.24371209],[4.53538367,0.03220723,99.2426472],[4.53538319,0.0322055,99.2415808],[4.5353827,0.03220376,99.24051295],[4.53538222,0.03220203,99.23944369],[4.53538173,0.03220029,99.23837306],[4.53538124,0.03219856,99.23730111],[4.53538076,0.03219682,99.23622789],[4.53538027,0.03219509,99.23515344],[4.53537978,0.03219335,99.23407781],[4.5353793,0.03219162,99.23300104],[4.53537881,0.03218988,99.23192312],[4.53537832,0.03218814,99.23084405],[4.53537784,0.03218641,99.22976383],[4.53537735,0.03218467,99.22868244],[4.53537686,0.03218294,99.22759987],[4.53537637,0.0321812,99.22651613],[4.53537589,0.03217947,99.22543119],[4.5353754,0.03217773,99.22434507],[4.53537491,0.032176,99.22325774],[4.53537443,0.03217426,99.2221692],[4.53537394,0.03217253,99.22107944],[4.53537345,0.03217079,99.21998846],[4.53537296,0.03216906,99.21889625],[4.53537248,0.03216732,99.21780279],[4.53537199,0.03216559,99.21670809],[4.5353715,0.03216385,99.21561214],[4.53537102,0.03216211,99.21451493],[4.53537053,0.03216038,99.21341644],[4.53537004,0.03215864,99.21231668],[4.53536955,0.03215691,99.21121564],[4.53536906,0.03215517,99.2101133],[4.53536858,0.03215344,99.20900967],[4.53536809,0.0321517,99.20790473],[4.5353676,0.03214997,99.20679848],[4.53536711,0.03214823,99.20569091],[4.53536662,0.0321465,99.20458201],[4.53536614,0.03214476,99.20347178],[4.53536565,0.03214303,99.20236021],[4.53536516,0.03214129,99.20124728],[4.53536467,0.03213956,99.200133],[4.53536418,0.03213782,99.19901735],[4.53536369,0.03213609,99.19790034],[4.5353632,0.03213435,99.19678194],[4.53536272,0.03213262,99.19566216],[4.53536223,0.03213089,99.19454098],[4.53536174,0.03212915,99.19341841],[4.53536125,0.03212742,99.19229443],[4.53536076,0.03212568,99.19116903],[4.53536027,0.03212395,99.19004221],[4.53535978,0.03212221,99.18891395],[4.53535929,0.03212048,99.18778427],[4.5353588,0.03211874,99.18665319],[4.53535831,0.03211701,99.18552074],[4.53535782,0.03211527,99.18438694],[4.53535733,0.03211354,99.1832518],[4.53535684,0.03211181,99.18211535],[4.53535635,0.03211007,99.18097759],[4.53535586,0.03210834,99.17983855],[4.53535537,0.0321066,99.17869822],[4.53535487,0.03210487,99.17755664],[4.53535438,0.03210313,99.17641381],[4.53535389,0.0321014,99.17526974],[4.5353534,0.03209967,99.17412446],[4.53535291,0.03209793,99.17297797],[4.53535242,0.0320962,99.1718303],[4.53535193,0.03209446,99.17068145],[4.53535144,0.03209273,99.16953144],[4.53535095,0.03209099,99.16838028],[4.53535045,0.03208926,99.16722799],[4.53534996,0.03208753,99.16607458],[4.53534947,0.03208579,99.16492007],[4.53534898,0.03208406,99.16376447],[4.53534849,0.03208232,99.16260779],[4.535348,0.03208059,99.16145006],[4.53534751,0.03207886,99.16029128],[4.53534701,0.03207712,99.15913146],[4.53534652,0.03207539,99.15797063],[4.53534603,0.03207365,99.1568088],[4.53534554,0.03207192,99.15564598],[4.53534505,0.03207019,99.15448218],[4.53534456,0.03206845,99.15331742],[4.53534407,0.03206672,99.15215171],[4.53534357,0.03206498,99.15098508],[4.53534308,0.03206325,99.14981752],[4.53534259,0.03206152,99.14864907],[4.5353421,0.03205978,99.14747972],[4.53534161,0.03205805,99.1463095],[4.53534112,0.03205631,99.14513842],[4.53534063,0.03205458,99.14396649],[4.53534014,0.03205284,99.14279373],[4.53533964,0.03205111,99.14162016],[4.53533915,0.03204938,99.14044577],[4.53533866,0.03204764,99.13927061],[4.53533817,0.03204591,99.13809466],[4.53533768,0.03204417,99.13691796],[4.53533719,0.03204244,99.13574051],[4.5353367,0.0320407,99.13456232],[4.53533621,0.03203897,99.13338342],[4.53533572,0.03203724,99.13220382],[4.53533523,0.0320355,99.13102352],[4.53533474,0.03203377,99.12984256],[4.53533425,0.03203203,99.12866093],[4.53533376,0.0320303,99.12747865],[4.53533327,0.03202856,99.12629575],[4.53533278,0.03202683,99.12511222],[4.53533229,0.03202509,99.1239281],[4.5353318,0.03202336,99.12274339],[4.53533131,0.03202163,99.12155809],[4.53533082,0.03201989,99.12037221],[4.53533033,0.03201816,99.11918575],[4.53532984,0.03201642,99.11799869],[4.53532935,0.03201469,99.11681104],[4.53532886,0.03201295,99.11562279],[4.53532837,0.03201122,99.11443395],[4.53532789,0.03200948,99.11324451],[4.5353274,0.03200775,99.11205447],[4.53532691,0.03200601,99.11086382],[4.53532642,0.03200428,99.10967257],[4.53532593,0.03200254,99.10848071],[4.53532544,0.03200081,99.10728824],[4.53532496,0.03199907,99.10609516],[4.53532447,0.03199734,99.10490146],[4.53532398,0.0319956,99.10370715],[4.53532349,0.03199387,99.10251222],[4.535323,0.03199213,99.10131667],[4.53532252,0.0319904,99.10012049],[4.53532203,0.03198866,99.09892369],[4.53532154,0.03198693,99.09772627],[4.53532105,0.03198519,99.09652821],[4.53532057,0.03198345,99.09532952],[4.53532008,0.03198172,99.0941302],[4.53531959,0.03197998,99.09293025],[4.5353191,0.03197825,99.09172965],[4.53531862,0.03197651,99.09052842],[4.53531813,0.03197478,99.08932654],[4.53531764,0.03197304,99.08812402],[4.53531716,0.03197131,99.08692085],[4.53531667,0.03196957,99.08571704],[4.53531618,0.03196784,99.08451257],[4.53531569,0.0319661,99.08330745],[4.53531521,0.03196437,99.08210167],[4.53531472,0.03196263,99.08089523],[4.53531423,0.0319609,99.07968813],[4.53531375,0.03195916,99.07848035],[4.53531326,0.03195743,99.0772719],[4.53531277,0.03195569,99.07606277],[4.53531228,0.03195395,99.07485296],[4.5353118,0.03195222,99.07364245],[4.53531131,0.03195048,99.07243126],[4.53531082,0.03194875,99.07121936],[4.53531034,0.03194701,99.07000676],[4.53530985,0.03194528,99.06879346],[4.53530936,0.03194354,99.06757944],[4.53530887,0.03194181,99.0663647],[4.53530839,0.03194007,99.06514925],[4.5353079,0.03193834,99.06393306],[4.53530741,0.0319366,99.06271615],[4.53530693,0.03193487,99.0614985],[4.53530644,0.03193313,99.06028011],[4.53530595,0.0319314,99.05906098],[4.53530546,0.03192966,99.0578411],[4.53530497,0.03192792,99.05662047],[4.53530449,0.03192619,99.05539911],[4.535304,0.03192445,99.05417704],[4.53530351,0.03192272,99.05295426],[4.53530302,0.03192098,99.05173079],[4.53530254,0.03191925,99.05050664],[4.53530205,0.03191751,99.04928183],[4.53530156,0.03191578,99.04805636],[4.53530107,0.03191404,99.04683026],[4.53530058,0.03191231,99.04560354],[4.5353001,0.03191057,99.04437621],[4.53529961,0.03190884,99.04314828],[4.53529912,0.0319071,99.04191977],[4.53529863,0.03190537,99.04069069],[4.53529814,0.03190363,99.03946105],[4.53529766,0.0319019,99.03823087],[4.53529717,0.03190016,99.03700017],[4.53529668,0.03189843,99.03576894],[4.53529619,0.03189669,99.0345372],[4.5352957,0.03189496,99.03330495],[4.53529521,0.03189322,99.0320722],[4.53529473,0.03189149,99.03083896],[4.53529424,0.03188975,99.02960523],[4.53529375,0.03188802,99.02837103],[4.53529326,0.03188628,99.02713636],[4.53529277,0.03188455,99.02590123],[4.53529228,0.03188281,99.02466564],[4.53529179,0.03188108,99.0234296],[4.53529131,0.03187934,99.02219313],[4.53529082,0.03187761,99.02095622],[4.53529033,0.03187587,99.01971888],[4.53528984,0.03187414,99.01848113],[4.53528935,0.0318724,99.01724296],[4.53528886,0.03187067,99.01600439],[4.53528837,0.03186893,99.01476543],[4.53528788,0.0318672,99.01352607],[4.5352874,0.03186546,99.01228634],[4.53528691,0.03186373,99.01104623],[4.53528642,0.03186199,99.00980575],[4.53528593,0.03186026,99.00856491],[4.53528544,0.03185852,99.00732372],[4.53528495,0.03185679,99.00608219],[4.53528446,0.03185505,99.00484031],[4.53528397,0.03185332,99.00359811],[4.53528348,0.03185158,99.00235558],[4.535283,0.03184985,99.00111274],[4.53528251,0.03184812,98.99986959],[4.53528202,0.03184638,98.99862614],[4.53528153,0.03184465,98.99738239],[4.53528104,0.03184291,98.99613836],[4.53528055,0.03184118,98.99489405],[4.53528006,0.03183944,98.99364947],[4.53527957,0.03183771,98.99240462],[4.53527908,0.03183597,98.99115952],[4.53527859,0.03183424,98.98991416],[4.5352781,0.0318325,98.98866857],[4.53527761,0.03183077,98.98742273],[4.53527713,0.03182903,98.98617667],[4.53527664,0.0318273,98.98493039],[4.53527615,0.03182556,98.9836839],[4.53527566,0.03182383,98.9824372],[4.53527517,0.03182209,98.9811903],[4.53527468,0.03182036,98.97994321],[4.53527419,0.03181862,98.97869594],[4.5352737,0.03181689,98.97744849],[4.53527321,0.03181515,98.97620087],[4.53527272,0.03181342,98.97495309],[4.53527223,0.03181169,98.97370516],[4.53527174,0.03180995,98.97245707],[4.53527125,0.03180822,98.97120885],[4.53527076,0.03180648,98.9699605],[4.53527027,0.03180475,98.96871202],[4.53526978,0.03180301,98.96746343],[4.53526929,0.03180128,98.96621475],[4.5352688,0.03179954,98.96496599],[4.53526831,0.03179781,98.96371717],[4.53526782,0.03179607,98.9624683],[4.53526733,0.03179434,98.96121939],[4.53526684,0.0317926,98.95997047],[4.53526635,0.03179087,98.95872154],[4.53526586,0.03178913,98.95747262],[4.53526537,0.0317874,98.95622372],[4.53526488,0.03178567,98.95497487],[4.5352644,0.03178393,98.95372607],[4.53526391,0.0317822,98.95247734],[4.53526342,0.03178046,98.9512287],[4.53526293,0.03177873,98.94998016],[4.53526244,0.03177699,98.94873173],[4.53526195,0.03177526,98.94748343],[4.53526146,0.03177352,98.94623528],[4.53526097,0.03177179,98.94498729],[4.53526048,0.03177005,98.94373946],[4.53525999,0.03176832,98.94249179],[4.5352595,0.03176658,98.94124429],[4.53525901,0.03176485,98.93999694],[4.53525852,0.03176311,98.93874974],[4.53525803,0.03176138,98.9375027],[4.53525754,0.03175965,98.9362558],[4.53525705,0.03175791,98.93500904],[4.53525656,0.03175618,98.93376243],[4.53525607,0.03175444,98.93251595],[4.53525558,0.03175271,98.93126961],[4.53525509,0.03175097,98.9300234],[4.5352546,0.03174924,98.92877732],[4.53525411,0.0317475,98.92753136],[4.53525362,0.03174577,98.92628552],[4.53525313,0.03174403,98.92503981],[4.53525264,0.0317423,98.92379422],[4.53525216,0.03174056,98.92254877],[4.53525167,0.03173883,98.92130345],[4.53525118,0.03173709,98.92005826],[4.53525069,0.03173536,98.91881323],[4.5352502,0.03173363,98.91756833],[4.53524971,0.03173189,98.9163236],[4.53524922,0.03173016,98.91507901],[4.53524873,0.03172842,98.91383459],[4.53524824,0.03172669,98.91259033],[4.53524775,0.03172495,98.91134624],[4.53524726,0.03172322,98.91010232],[4.53524677,0.03172148,98.90885858],[4.53524628,0.03171975,98.90761502],[4.53524579,0.03171801,98.90637165],[4.5352453,0.03171628,98.90512846],[4.53524481,0.03171454,98.90388547],[4.53524432,0.03171281,98.90264268],[4.53524383,0.03171108,98.90140009],[4.53524334,0.03170934,98.90015771],[4.53524284,0.03170761,98.89891553],[4.53524235,0.03170587,98.89767357],[4.53524186,0.03170414,98.89643183],[4.53524137,0.0317024,98.89519032],[4.53524088,0.03170067,98.89394903],[4.53524039,0.03169893,98.89270797],[4.5352399,0.0316972,98.89146715],[4.53523941,0.03169547,98.89022657],[4.53523892,0.03169373,98.88898623],[4.53523843,0.031692,98.88774614],[4.53523794,0.03169026,98.8865063],[4.53523745,0.03168853,98.88526672],[4.53523696,0.03168679,98.88402741],[4.53523647,0.03168506,98.88278835],[4.53523597,0.03168333,98.88154957],[4.53523548,0.03168159,98.88031106],[4.53523499,0.03167986,98.87907282],[4.5352345,0.03167812,98.87783487],[4.53523401,0.03167639,98.87659721],[4.53523352,0.03167465,98.87535983],[4.53523303,0.03167292,98.87412275],[4.53523254,0.03167119,98.87288597],[4.53523204,0.03166945,98.87164949],[4.53523155,0.03166772,98.87041332],[4.53523106,0.03166598,98.86917746],[4.53523057,0.03166425,98.86794192],[4.53523008,0.03166252,98.86670669],[4.53522958,0.03166078,98.86547179],[4.53522909,0.03165905,98.86423722],[4.5352286,0.03165731,98.86300298],[4.53522811,0.03165558,98.86176908],[4.53522762,0.03165385,98.86053552],[4.53522712,0.03165211,98.8593023],[4.53522663,0.03165038,98.85806942],[4.53522614,0.03164864,98.85683688],[4.53522565,0.03164691,98.85560466],[4.53522515,0.03164518,98.85437275],[4.53522466,0.03164344,98.85314116],[4.53522417,0.03164171,98.85190986],[4.53522367,0.03163997,98.85067885],[4.53522318,0.03163824,98.84944814],[4.53522269,0.03163651,98.84821772],[4.53522219,0.03163477,98.84698761],[4.5352217,0.03163304,98.84575782],[4.53522121,0.03163131,98.84452837],[4.53522071,0.03162957,98.84329927],[4.53522022,0.03162784,98.84207053],[4.53521973,0.03162611,98.84084216],[4.53521923,0.03162437,98.83961419],[4.53521874,0.03162264,98.83838662],[4.53521824,0.03162091,98.83715946],[4.53521775,0.03161917,98.83593273],[4.53521726,0.03161744,98.83470644],[4.53521676,0.03161571,98.83348061],[4.53521627,0.03161397,98.83225525],[4.53521577,0.03161224,98.83103036],[4.53521528,0.03161051,98.82980597],[4.53521478,0.03160877,98.82858209],[4.53521429,0.03160704,98.82735872],[4.53521379,0.03160531,98.8261359],[4.5352133,0.03160357,98.82491361],[4.5352128,0.03160184,98.82369189],[4.53521231,0.03160011,98.82247074],[4.53521181,0.03159837,98.82125018],[4.53521132,0.03159664,98.82003021],[4.53521082,0.03159491,98.81881086],[4.53521033,0.03159317,98.81759213],[4.53520983,0.03159144,98.81637405],[4.53520934,0.03158971,98.81515661],[4.53520884,0.03158797,98.81393984],[4.53520834,0.03158624,98.81272374],[4.53520785,0.03158451,98.81150832],[4.53520735,0.03158278,98.8102936],[4.53520686,0.03158104,98.80907958],[4.53520636,0.03157931,98.80786627],[4.53520586,0.03157758,98.80665369],[4.53520537,0.03157584,98.80544185],[4.53520487,0.03157411,98.80423075],[4.53520438,0.03157238,98.80302041],[4.53520388,0.03157065,98.80181083],[4.53520338,0.03156891,98.80060203],[4.53520289,0.03156718,98.79939402],[4.53520239,0.03156545,98.7981868],[4.5352019,0.03156371,98.7969804],[4.5352014,0.03156198,98.79577481],[4.5352009,0.03156025,98.79457005],[4.53520041,0.03155852,98.79336613],[4.53519991,0.03155678,98.79216306],[4.53519941,0.03155505,98.79096085],[4.53519892,0.03155332,98.78975951],[4.53519842,0.03155159,98.78855906],[4.53519792,0.03154985,98.78735949],[4.53519743,0.03154812,98.78616083],[4.53519693,0.03154639,98.78496307],[4.53519643,0.03154465,98.78376624],[4.53519594,0.03154292,98.78257032],[4.53519544,0.03154119,98.78137534],[4.53519494,0.03153946,98.78018129],[4.53519445,0.03153772,98.77898818],[4.53519395,0.03153599,98.77779602],[4.53519345,0.03153426,98.77660481],[4.53519295,0.03153253,98.77541458],[4.53519246,0.03153079,98.77422534],[4.53519196,0.03152906,98.77303712],[4.53519146,0.03152733,98.77184994],[4.53519097,0.0315256,98.7706638],[4.53519047,0.03152386,98.7694787],[4.53518997,0.03152213,98.76829464],[4.53518948,0.0315204,98.76711163],[4.53518898,0.03151867,98.76592967],[4.53518848,0.03151694,98.76474876],[4.53518799,0.0315152,98.76356891],[4.53518749,0.03151347,98.76239012],[4.53518699,0.03151174,98.76121239],[4.53518649,0.03151001,98.76003572],[4.535186,0.03150827,98.75886012],[4.5351855,0.03150654,98.75768559],[4.535185,0.03150481,98.75651213],[4.53518451,0.03150308,98.75533975],[4.53518401,0.03150134,98.75416845],[4.53518351,0.03149961,98.75299823],[4.53518302,0.03149788,98.75182909],[4.53518252,0.03149615,98.75066105],[4.53518202,0.03149441,98.74949409],[4.53518152,0.03149268,98.74832822],[4.53518103,0.03149095,98.74716345],[4.53518053,0.03148921,98.74599978],[4.53518003,0.03148748,98.74483722],[4.53517954,0.03148575,98.74367575],[4.53517904,0.03148402,98.7425154],[4.53517854,0.03148228,98.74135615],[4.53517804,0.03148055,98.74019802],[4.53517755,0.03147882,98.739041],[4.53517705,0.03147709,98.73788509],[4.53517655,0.03147535,98.73673028],[4.53517606,0.03147362,98.73557657],[4.53517556,0.03147189,98.73442395],[4.53517506,0.03147016,98.73327242],[4.53517456,0.03146842,98.73212197],[4.53517407,0.03146669,98.73097259],[4.53517357,0.03146496,98.72982429],[4.53517307,0.03146323,98.72867704],[4.53517258,0.03146149,98.72753086],[4.53517208,0.03145976,98.72638573],[4.53517158,0.03145803,98.72524164],[4.53517108,0.0314563,98.72409861],[4.53517059,0.03145456,98.72295662],[4.53517009,0.03145283,98.72181569],[4.53516959,0.0314511,98.72067581],[4.5351691,0.03144937,98.71953699],[4.5351686,0.03144763,98.71839923],[4.5351681,0.0314459,98.71726253],[4.5351676,0.03144417,98.7161269],[4.53516711,0.03144244,98.71499232],[4.53516661,0.0314407,98.71385882],[4.53516611,0.03143897,98.71272638],[4.53516562,0.03143724,98.71159501],[4.53516512,0.03143551,98.71046471],[4.53516462,0.03143377,98.70933549],[4.53516413,0.03143204,98.70820734],[4.53516363,0.03143031,98.70708027],[4.53516313,0.03142857,98.70595428],[4.53516264,0.03142684,98.70482937],[4.53516214,0.03142511,98.70370553],[4.53516164,0.03142338,98.70258278],[4.53516115,0.03142164,98.7014611],[4.53516065,0.03141991,98.70034051],[4.53516015,0.03141818,98.69922099],[4.53515966,0.03141645,98.69810256],[4.53515916,0.03141471,98.69698521],[4.53515866,0.03141298,98.69586895],[4.53515817,0.03141125,98.69475376],[4.53515767,0.03140951,98.69363966],[4.53515717,0.03140778,98.69252664],[4.53515668,0.03140605,98.69141471],[4.53515618,0.03140432,98.69030386],[4.53515569,0.03140258,98.68919409],[4.53515519,0.03140085,98.68808541],[4.53515469,0.03139912,98.68697779],[4.5351542,0.03139738,98.68587121],[4.5351537,0.03139565,98.68476565],[4.53515321,0.03139392,98.68366108],[4.53515271,0.03139219,98.68255748],[4.53515222,0.03139045,98.68145482],[4.53515172,0.03138872,98.68035307],[4.53515123,0.03138699,98.67925223],[4.53515073,0.03138525,98.67815225],[4.53515024,0.03138352,98.67705311],[4.53514974,0.03138179,98.6759548],[4.53514924,0.03138005,98.67485728],[4.53514875,0.03137832,98.67376053],[4.53514825,0.03137659,98.67266455],[4.53514776,0.03137485,98.67156932],[4.53514726,0.03137312,98.67047482],[4.53514677,0.03137139,98.66938106],[4.53514627,0.03136966,98.66828802],[4.53514578,0.03136792,98.66719568],[4.53514528,0.03136619,98.66610404],[4.53514479,0.03136446,98.66501309],[4.53514429,0.03136272,98.66392282],[4.53514379,0.03136099,98.66283321],[4.5351433,0.03135926,98.66174426],[4.5351428,0.03135752,98.66065596],[4.53514231,0.03135579,98.65956829],[4.53514181,0.03135406,98.65848124],[4.53514132,0.03135233,98.65739481],[4.53514082,0.03135059,98.65630898],[4.53514032,0.03134886,98.65522375],[4.53513983,0.03134713,98.6541391],[4.53513933,0.03134539,98.65305502],[4.53513884,0.03134366,98.65197151],[4.53513834,0.03134193,98.65088855],[4.53513785,0.0313402,98.64980613],[4.53513735,0.03133846,98.64872424],[4.53513685,0.03133673,98.64764287],[4.53513636,0.031335,98.64656202],[4.53513586,0.03133326,98.64548166],[4.53513536,0.03133153,98.6444018],[4.53513487,0.0313298,98.64332242],[4.53513437,0.03132807,98.64224351],[4.53513388,0.03132633,98.64116506],[4.53513338,0.0313246,98.64008705],[4.53513288,0.03132287,98.63900949],[4.53513239,0.03132113,98.63793236],[4.53513189,0.0313194,98.63685565],[4.53513139,0.03131767,98.63577935],[4.5351309,0.03131594,98.63470345],[4.5351304,0.0313142,98.63362794],[4.5351299,0.03131247,98.63255281],[4.53512941,0.03131074,98.63147805],[4.53512891,0.03130901,98.63040365],[4.53512841,0.03130727,98.6293296],[4.53512792,0.03130554,98.62825588],[4.53512742,0.03130381,98.6271825],[4.53512692,0.03130208,98.62610944],[4.53512642,0.03130034,98.62503669],[4.53512593,0.03129861,98.62396424],[4.53512543,0.03129688,98.62289208],[4.53512493,0.03129515,98.62182021],[4.53512443,0.03129341,98.6207486],[4.53512394,0.03129168,98.61967725],[4.53512344,0.03128995,98.61860616],[4.53512294,0.03128822,98.61753531],[4.53512244,0.03128648,98.61646468],[4.53512194,0.03128475,98.61539429],[4.53512145,0.03128302,98.6143241],[4.53512095,0.03128129,98.61325415],[4.53512045,0.03127955,98.61218447],[4.53511995,0.03127782,98.61111508],[4.53511945,0.03127609,98.61004603],[4.53511895,0.03127436,98.60897733],[4.53511845,0.03127263,98.60790902],[4.53511796,0.03127089,98.60684114],[4.53511746,0.03126916,98.6057737],[4.53511696,0.03126743,98.60470676],[4.53511646,0.0312657,98.60364032],[4.53511596,0.03126397,98.60257438],[4.53511546,0.03126223,98.60150895],[4.53511497,0.0312605,98.600444],[4.53511447,0.03125877,98.59937954],[4.53511397,0.03125704,98.59831556],[4.53511347,0.0312553,98.59725205],[4.53511297,0.03125357,98.59618901],[4.53511247,0.03125184,98.59512642],[4.53511198,0.03125011,98.59406428],[4.53511148,0.03124838,98.59300259],[4.53511098,0.03124664,98.59194134],[4.53511048,0.03124491,98.59088051],[4.53510998,0.03124318,98.58982011],[4.53510948,0.03124145,98.58876013],[4.53510899,0.03123971,98.58770055],[4.53510849,0.03123798,98.58664138],[4.53510799,0.03123625,98.58558261],[4.53510749,0.03123452,98.58452423],[4.535107,0.03123278,98.58346623],[4.5351065,0.03123105,98.5824086],[4.535106,0.03122932,98.58135135],[4.5351055,0.03122759,98.58029446],[4.535105,0.03122586,98.57923792],[4.53510451,0.03122412,98.57818174],[4.53510401,0.03122239,98.57712589],[4.53510351,0.03122066,98.57607038],[4.53510301,0.03121893,98.57501521],[4.53510252,0.03121719,98.57396035],[4.53510202,0.03121546,98.57290581],[4.53510152,0.03121373,98.57185157],[4.53510102,0.031212,98.57079764],[4.53510052,0.03121026,98.56974401],[4.53510003,0.03120853,98.56869066],[4.53509953,0.0312068,98.5676376],[4.53509903,0.03120507,98.56658481],[4.53509853,0.03120333,98.56553229],[4.53509804,0.0312016,98.56448003],[4.53509754,0.03119987,98.56342802],[4.53509704,0.03119814,98.56237627],[4.53509655,0.0311964,98.56132475],[4.53509605,0.03119467,98.56027347],[4.53509555,0.03119294,98.55922242],[4.53509505,0.03119121,98.55817158],[4.53509456,0.03118947,98.55712097],[4.53509406,0.03118774,98.55607056],[4.53509356,0.03118601,98.55502035],[4.53509306,0.03118428,98.55397031],[4.53509257,0.03118254,98.55292037],[4.53509207,0.03118081,98.55187043],[4.53509157,0.03117908,98.55082043],[4.53509107,0.03117735,98.54977031],[4.53509058,0.03117561,98.54872008],[4.53509008,0.03117388,98.54766973],[4.53508958,0.03117215,98.54661927],[4.53508908,0.03117042,98.54556869],[4.53508859,0.03116868,98.544518],[4.53508809,0.03116695,98.54346718],[4.53508759,0.03116522,98.54241626],[4.53508709,0.03116349,98.54136521],[4.53508659,0.03116176,98.54031404],[4.5350861,0.03116002,98.53926276],[4.5350856,0.03115829,98.53821135],[4.5350851,0.03115656,98.53715983],[4.5350846,0.03115483,98.53610818],[4.5350841,0.03115309,98.53505641],[4.5350836,0.03115136,98.53400452],[4.53508311,0.03114963,98.53295251],[4.53508261,0.0311479,98.53190037],[4.53508211,0.03114617,98.5308481],[4.53508161,0.03114443,98.52979571],[4.53508111,0.0311427,98.5287432],[4.53508061,0.03114097,98.52769055],[4.53508011,0.03113924,98.52663778],[4.53507961,0.03113751,98.52558488],[4.53507911,0.03113577,98.52453184],[4.53507862,0.03113404,98.52347868],[4.53507812,0.03113231,98.52242538],[4.53507762,0.03113058,98.52137195],[4.53507712,0.03112885,98.52031839],[4.53507662,0.03112711,98.51926469],[4.53507612,0.03112538,98.51821086],[4.53507562,0.03112365,98.51715688],[4.53507512,0.03112192,98.51610277],[4.53507462,0.03112019,98.51504852],[4.53507412,0.03111845,98.51399413],[4.53507362,0.03111672,98.5129396],[4.53507312,0.03111499,98.51188492],[4.53507262,0.03111326,98.51083011],[4.53507212,0.03111153,98.50977514],[4.53507162,0.03110979,98.50872003],[4.53507113,0.03110806,98.50766477],[4.53507063,0.03110633,98.50660937],[4.53507013,0.0311046,98.50555381],[4.53506963,0.03110287,98.50449813],[4.53506913,0.03110114,98.5034424],[4.53506863,0.0310994,98.50238672],[4.53506813,0.03109767,98.50133115],[4.53506763,0.03109594,98.5002757],[4.53506713,0.03109421,98.49922035],[4.53506663,0.03109248,98.4981651],[4.53506613,0.03109074,98.49710994],[4.53506563,0.03108901,98.49605486],[4.53506513,0.03108728,98.49499985],[4.53506464,0.03108555,98.49394489],[4.53506414,0.03108382,98.49288998],[4.53506364,0.03108208,98.49183512],[4.53506314,0.03108035,98.49078028],[4.53506264,0.03107862,98.48972547],[4.53506214,0.03107689,98.48867066],[4.53506165,0.03107515,98.48761586],[4.53506115,0.03107342,98.48656104],[4.53506065,0.03107169,98.48550621],[4.53506015,0.03106996,98.48445135],[4.53505966,0.03106822,98.48339646],[4.53505916,0.03106649,98.48234152],[4.53505866,0.03106476,98.48128652],[4.53505816,0.03106303,98.48023145],[4.53505767,0.03106129,98.47917631],[4.53505717,0.03105956,98.47812109],[4.53505667,0.03105783,98.47706577],[4.53505617,0.0310561,98.47601035],[4.53505568,0.03105436,98.47495482],[4.53505518,0.03105263,98.47389916],[4.53505468,0.0310509,98.47284338],[4.53505419,0.03104917,98.47178745],[4.53505369,0.03104743,98.47073137],[4.53505319,0.0310457,98.46967513],[4.5350527,0.03104397,98.46861873],[4.5350522,0.03104224,98.46756215],[4.5350517,0.0310405,98.46650537],[4.53505121,0.03103877,98.46544841],[4.53505071,0.03103704,98.46439124],[4.53505021,0.0310353,98.46333385],[4.53504972,0.03103357,98.46227624],[4.53504922,0.03103184,98.46121839],[4.53504873,0.03103011,98.46016031],[4.53504823,0.03102837,98.45910197],[4.53504773,0.03102664,98.45804337],[4.53504724,0.03102491,98.4569845],[4.53504674,0.03102317,98.45592536],[4.53504625,0.03102144,98.45486592],[4.53504575,0.03101971,98.45380619],[4.53504526,0.03101797,98.45274615],[4.53504476,0.03101624,98.4516858],[4.53504426,0.03101451,98.45062513],[4.53504377,0.03101278,98.44956412],[4.53504327,0.03101104,98.44850277],[4.53504278,0.03100931,98.44744107],[4.53504228,0.03100758,98.44637901],[4.53504179,0.03100584,98.44531658],[4.53504129,0.03100411,98.44425378],[4.5350408,0.03100238,98.44319058],[4.5350403,0.03100064,98.442127],[4.53503981,0.03099891,98.44106301],[4.53503931,0.03099718,98.4399986],[4.53503882,0.03099544,98.43893378],[4.53503832,0.03099371,98.43786852],[4.53503783,0.03099198,98.43680283],[4.53503733,0.03099025,98.43573669],[4.53503684,0.03098851,98.43467009],[4.53503634,0.03098678,98.43360302],[4.53503585,0.03098505,98.43253548],[4.53503535,0.03098331,98.43146746],[4.53503486,0.03098158,98.43039892],[4.53503436,0.03097985,98.42932979],[4.53503387,0.03097811,98.42825998],[4.53503337,0.03097638,98.4271894],[4.53503288,0.03097465,98.42611798],[4.53503238,0.03097291,98.42504568],[4.53503189,0.03097118,98.42397249],[4.53503139,0.03096945,98.42289844],[4.53503089,0.03096771,98.42182351],[4.5350304,0.03096598,98.42074772],[4.5350299,0.03096425,98.41967107],[4.53502941,0.03096252,98.41859357],[4.53502891,0.03096078,98.41751523],[4.53502841,0.03095905,98.41643605],[4.53502792,0.03095732,98.41535603],[4.53502742,0.03095558,98.41427519],[4.53502692,0.03095385,98.41319352],[4.53502643,0.03095212,98.41211103],[4.53502593,0.03095039,98.41102774],[4.53502543,0.03094865,98.40994364],[4.53502494,0.03094692,98.40885873],[4.53502444,0.03094519,98.40777304],[4.53502394,0.03094346,98.40668655],[4.53502345,0.03094172,98.40559928],[4.53502295,0.03093999,98.40451123],[4.53502245,0.03093826,98.4034224],[4.53502196,0.03093652,98.40233281],[4.53502146,0.03093479,98.40124246],[4.53502096,0.03093306,98.40015134],[4.53502047,0.03093133,98.39905948],[4.53501997,0.03092959,98.39796686],[4.53501947,0.03092786,98.39687351],[4.53501897,0.03092613,98.39577942],[4.53501848,0.0309244,98.39468459],[4.53501798,0.03092266,98.39358904],[4.53501748,0.03092093,98.39249277],[4.53501698,0.0309192,98.39139578],[4.53501649,0.03091747,98.39029808],[4.53501599,0.03091573,98.38919967],[4.53501549,0.030914,98.38810057],[4.535015,0.03091227,98.38700076],[4.5350145,0.03091054,98.38590026],[4.535014,0.0309088,98.38479908],[4.53501351,0.03090707,98.38369722],[4.53501301,0.03090534,98.38259467],[4.53501251,0.03090361,98.38149138],[4.53501201,0.03090187,98.38038732],[4.53501152,0.03090014,98.37928242],[4.53501102,0.03089841,98.37817663],[4.53501052,0.03089667,98.3770699],[4.53501003,0.03089494,98.37596219],[4.53500953,0.03089321,98.37485349],[4.53500903,0.03089148,98.3737438],[4.53500854,0.03088974,98.3726331],[4.53500804,0.03088801,98.37152141],[4.53500754,0.03088628,98.37040869],[4.53500704,0.03088455,98.36929497],[4.53500655,0.03088281,98.36818022],[4.53500605,0.03088108,98.36706444],[4.53500555,0.03087935,98.36594762],[4.53500505,0.03087762,98.36482977],[4.53500455,0.03087588,98.36371087],[4.53500406,0.03087415,98.36259092],[4.53500356,0.03087242,98.36146992],[4.53500306,0.03087069,98.36034785],[4.53500256,0.03086896,98.35922471],[4.53500206,0.03086722,98.35810049],[4.53500157,0.03086549,98.3569752],[4.53500107,0.03086376,98.35584882],[4.53500057,0.03086203,98.35472135],[4.53500007,0.03086029,98.35359279],[4.53499957,0.03085856,98.35246312],[4.53499907,0.03085683,98.35133234],[4.53499857,0.0308551,98.35020045],[4.53499808,0.03085337,98.34906743],[4.53499758,0.03085163,98.34793329],[4.53499708,0.0308499,98.34679802],[4.53499658,0.03084817,98.34566161],[4.53499608,0.03084644,98.34452406],[4.53499558,0.03084471,98.34338536],[4.53499508,0.03084297,98.3422455],[4.53499458,0.03084124,98.34110449],[4.53499408,0.03083951,98.3399623],[4.53499358,0.03083778,98.33881894],[4.53499308,0.03083605,98.33767441],[4.53499258,0.03083431,98.33652869],[4.53499208,0.03083258,98.33538178],[4.53499158,0.03083085,98.33423368],[4.53499108,0.03082912,98.33308438],[4.53499058,0.03082739,98.33193388],[4.53499008,0.03082566,98.33078219],[4.53498958,0.03082392,98.3296293],[4.53498908,0.03082219,98.32847521],[4.53498858,0.03082046,98.32731992],[4.53498808,0.03081873,98.32616344],[4.53498758,0.030817,98.32500576],[4.53498708,0.03081527,98.32384688],[4.53498658,0.03081353,98.3226868],[4.53498608,0.0308118,98.32152551],[4.53498558,0.03081007,98.32036302],[4.53498508,0.03080834,98.31919932],[4.53498458,0.03080661,98.31803441],[4.53498408,0.03080488,98.31686828],[4.53498358,0.03080314,98.31570093],[4.53498308,0.03080141,98.31453236],[4.53498258,0.03079968,98.31336256],[4.53498207,0.03079795,98.31219154],[4.53498157,0.03079622,98.31101929],[4.53498107,0.03079449,98.3098458],[4.53498057,0.03079276,98.30867107],[4.53498007,0.03079102,98.3074951],[4.53497957,0.03078929,98.3063179],[4.53497907,0.03078756,98.30513944],[4.53497857,0.03078583,98.30395973],[4.53497807,0.0307841,98.30277878],[4.53497756,0.03078237,98.30159656],[4.53497706,0.03078064,98.30041309],[4.53497656,0.03077891,98.29922836],[4.53497606,0.03077717,98.29804236],[4.53497556,0.03077544,98.29685509],[4.53497506,0.03077371,98.29566656],[4.53497456,0.03077198,98.29447675],[4.53497405,0.03077025,98.29328566],[4.53497355,0.03076852,98.29209329],[4.53497305,0.03076679,98.29089964],[4.53497255,0.03076505,98.2897047],[4.53497205,0.03076332,98.28850848],[4.53497155,0.03076159,98.28731096],[4.53497104,0.03075986,98.28611214],[4.53497054,0.03075813,98.28491203],[4.53497004,0.0307564,98.28371062],[4.53496954,0.03075467,98.2825079],[4.53496904,0.03075294,98.28130388],[4.53496854,0.0307512,98.28009854],[4.53496803,0.03074947,98.27889189],[4.53496753,0.03074774,98.27768393],[4.53496703,0.03074601,98.27647464],[4.53496653,0.03074428,98.27526404],[4.53496603,0.03074255,98.2740521],[4.53496553,0.03074082,98.27283884],[4.53496502,0.03073909,98.27162425],[4.53496452,0.03073735,98.27040832],[4.53496402,0.03073562,98.26919106],[4.53496352,0.03073389,98.26797245],[4.53496302,0.03073216,98.26675251],[4.53496251,0.03073043,98.26553121],[4.53496201,0.0307287,98.26430857],[4.53496151,0.03072697,98.26308457],[4.53496101,0.03072524,98.26185922],[4.53496051,0.03072351,98.26063252],[4.53496001,0.03072177,98.25940445],[4.5349595,0.03072004,98.25817501],[4.534959,0.03071831,98.25694422],[4.5349585,0.03071658,98.25571205],[4.534958,0.03071485,98.25447851],[4.5349575,0.03071312,98.25324359],[4.53495699,0.03071139,98.2520073],[4.53495649,0.03070966,98.25076962],[4.53495599,0.03070792,98.24953057],[4.53495549,0.03070619,98.24829012],[4.53495499,0.03070446,98.24704829],[4.53495449,0.03070273,98.24580505],[4.53495398,0.030701,98.24456042],[4.53495348,0.03069927,98.24331438],[4.53495298,0.03069754,98.24206692],[4.53495248,0.03069581,98.24081803],[4.53495198,0.03069407,98.23956773],[4.53495148,0.03069234,98.23831598],[4.53495097,0.03069061,98.2370628],[4.53495047,0.03068888,98.23580817],[4.53494997,0.03068715,98.23455209],[4.53494947,0.03068542,98.23329455],[4.53494897,0.03068369,98.23203554],[4.53494847,0.03068195,98.23077507],[4.53494796,0.03068022,98.22951311],[4.53494746,0.03067849,98.22824968],[4.53494696,0.03067676,98.22698475],[4.53494646,0.03067503,98.22571833],[4.53494596,0.0306733,98.22445041],[4.53494546,0.03067157,98.22318098],[4.53494496,0.03066984,98.22191004],[4.53494445,0.0306681,98.22063757],[4.53494395,0.03066637,98.21936358],[4.53494345,0.03066464,98.21808807],[4.53494295,0.03066291,98.21681103],[4.53494245,0.03066118,98.21553248],[4.53494195,0.03065945,98.21425242],[4.53494145,0.03065772,98.21297084],[4.53494094,0.03065598,98.21168775],[4.53494044,0.03065425,98.21040312],[4.53493994,0.03065252,98.20911696],[4.53493944,0.03065079,98.20782925],[4.53493894,0.03064906,98.20653998],[4.53493844,0.03064733,98.20524914],[4.53493794,0.0306456,98.20395672],[4.53493744,0.03064387,98.20266272],[4.53493693,0.03064213,98.20136711],[4.53493643,0.0306404,98.2000699],[4.53493593,0.03063867,98.19877107],[4.53493543,0.03063694,98.19747061],[4.53493493,0.03063521,98.19616851],[4.53493443,0.03063348,98.19486477],[4.53493393,0.03063175,98.19355936],[4.53493343,0.03063001,98.19225229],[4.53493292,0.03062828,98.19094354],[4.53493242,0.03062655,98.1896331],[4.53493192,0.03062482,98.18832096],[4.53493142,0.03062309,98.18700711],[4.53493092,0.03062136,98.18569155],[4.53493042,0.03061963,98.18437425],[4.53492992,0.03061789,98.18305522],[4.53492942,0.03061616,98.18173444],[4.53492891,0.03061443,98.18041189],[4.53492841,0.0306127,98.17908758],[4.53492791,0.03061097,98.17776149],[4.53492741,0.03060924,98.1764336],[4.53492691,0.03060751,98.17510391],[4.53492641,0.03060577,98.17377242],[4.5349259,0.03060404,98.1724391],[4.5349254,0.03060231,98.17110395],[4.5349249,0.03060058,98.16976695],[4.5349244,0.03059885,98.1684281],[4.5349239,0.03059712,98.16708739],[4.5349234,0.03059539,98.16574481],[4.53492289,0.03059366,98.16440033],[4.53492239,0.03059192,98.16305397],[4.53492189,0.03059019,98.16170569],[4.53492139,0.03058846,98.1603555],[4.53492089,0.03058673,98.15900338],[4.53492038,0.030585,98.15764932],[4.53491988,0.03058327,98.15629331],[4.53491938,0.03058154,98.15493534],[4.53491888,0.03057981,98.1535754],[4.53491838,0.03057808,98.15221348],[4.53491787,0.03057634,98.15084956],[4.53491737,0.03057461,98.14948364],[4.53491687,0.03057288,98.1481157],[4.53491637,0.03057115,98.14674574],[4.53491586,0.03056942,98.14537374],[4.53491536,0.0305677,98.14399968],[4.53491486,0.03056596,98.14262357],[4.53491436,0.03056423,98.14124539],[4.53491385,0.0305625,98.13986512],[4.53491335,0.03056077,98.13848279],[4.53491285,0.03055904,98.1370984],[4.53491234,0.03055731,98.135712],[4.53491184,0.03055558,98.13432359],[4.53491134,0.03055385,98.13293321],[4.53491083,0.03055212,98.13154087],[4.53491033,0.03055039,98.13014659],[4.53490983,0.03054866,98.12875041],[4.53490932,0.03054693,98.12735234],[4.53490882,0.0305452,98.12595242],[4.53490831,0.03054347,98.12455068],[4.53490781,0.03054173,98.12314713],[4.5349073,0.03054,98.12174182],[4.5349068,0.03053827,98.12033476],[4.5349063,0.03053654,98.11892599],[4.53490579,0.03053481,98.11751554],[4.53490529,0.03053308,98.11610342],[4.53490478,0.03053135,98.11468968],[4.53490428,0.03052962,98.11327433],[4.53490377,0.03052789,98.11185742],[4.53490327,0.03052616,98.11043897],[4.53490276,0.03052443,98.10901904],[4.53490226,0.0305227,98.10759766],[4.53490175,0.03052097,98.10617488],[4.53490125,0.03051924,98.10475073],[4.53490074,0.03051751,98.10332526],[4.53490023,0.03051578,98.10189848],[4.53489973,0.03051405,98.10047045],[4.53489922,0.03051232,98.09904118],[4.53489872,0.03051059,98.09761071],[4.53489821,0.03050886,98.09617906],[4.53489771,0.03050713,98.09474628],[4.5348972,0.0305054,98.0933124],[4.53489669,0.03050367,98.09187743],[4.53489619,0.03050194,98.09044142],[4.53489568,0.03050021,98.0890044],[4.53489518,0.03049848,98.0875664],[4.53489467,0.03049675,98.08612745],[4.53489416,0.03049502,98.08468758],[4.53489366,0.03049329,98.08324683],[4.53489315,0.03049156,98.08180522],[4.53489265,0.03048983,98.08036279],[4.53489214,0.0304881,98.07891956],[4.53489163,0.03048637,98.07747558],[4.53489113,0.03048464,98.07603088],[4.53489062,0.03048291,98.07458547],[4.53489011,0.03048118,98.07313941],[4.53488961,0.03047945,98.07169271],[4.5348891,0.03047772,98.07024541],[4.53488859,0.03047599,98.06879755],[4.53488809,0.03047426,98.06734915],[4.53488758,0.03047253,98.06590025],[4.53488707,0.0304708,98.06445088],[4.53488657,0.03046907,98.06300107],[4.53488606,0.03046734,98.06155085],[4.53488555,0.03046561,98.06010026],[4.53488505,0.03046388,98.05864932],[4.53488454,0.03046215,98.05719808],[4.53488403,0.03046042,98.05574655],[4.53488352,0.03045869,98.05429479],[4.53488302,0.03045697,98.05284281],[4.53488251,0.03045524,98.05139064],[4.534882,0.03045351,98.04993833],[4.5348815,0.03045178,98.04848591],[4.53488099,0.03045005,98.0470334],[4.53488048,0.03044832,98.04558084],[4.53487998,0.03044659,98.04412826],[4.53487947,0.03044486,98.0426757],[4.53487896,0.03044313,98.04122319],[4.53487845,0.0304414,98.03977075],[4.53487795,0.03043967,98.03831843],[4.53487744,0.03043794,98.03686625],[4.53487693,0.03043621,98.03541425],[4.53487643,0.03043448,98.03396246],[4.53487592,0.03043275,98.03251092],[4.53487541,0.03043102,98.03105967],[4.5348749,0.03042929,98.02960873],[4.5348744,0.03042756,98.02815814],[4.53487389,0.03042583,98.02670794],[4.53487338,0.0304241,98.02525816],[4.53487288,0.03042237,98.02380883],[4.53487237,0.03042064,98.02236],[4.53487186,0.03041891,98.02091169],[4.53487135,0.03041718,98.01946395],[4.53487085,0.03041545,98.0180168],[4.53487034,0.03041372,98.01657028],[4.53486983,0.03041199,98.01512443],[4.53486933,0.03041026,98.01367927],[4.53486882,0.03040853,98.01223486],[4.53486831,0.0304068,98.01079121],[4.5348678,0.03040508,98.00934837],[4.5348673,0.03040335,98.00790637],[4.53486679,0.03040162,98.00646525],[4.53486628,0.03039989,98.00502504],[4.53486578,0.03039816,98.00358578],[4.53486527,0.03039643,98.00214749],[4.53486476,0.0303947,98.00071023],[4.53486426,0.03039297,97.99927402],[4.53486375,0.03039124,97.99783889],[4.53486324,0.03038951,97.99640488],[4.53486274,0.03038778,97.99497202],[4.53486223,0.03038605,97.99354032],[4.53486172,0.03038432,97.99210983],[4.53486122,0.03038259,97.99068057],[4.53486071,0.03038086,97.98925257],[4.5348602,0.03037913,97.98782585],[4.5348597,0.0303774,97.98640044],[4.53485919,0.03037567,97.98497637],[4.53485868,0.03037394,97.98355368],[4.53485818,0.03037221,97.98213237],[4.53485767,0.03037048,97.98071248],[4.53485716,0.03036875,97.97929402],[4.53485666,0.03036702,97.97787703],[4.53485615,0.03036529,97.97646153],[4.53485564,0.03036356,97.97504754],[4.53485514,0.03036183,97.97363508],[4.53485463,0.0303601,97.97222418],[4.53485412,0.03035837,97.97081487],[4.53485362,0.03035664,97.96940716],[4.53485311,0.03035491,97.96800108],[4.5348526,0.03035318,97.96659665],[4.5348521,0.03035145,97.9651939],[4.53485159,0.03034972,97.96379285],[4.53485108,0.03034799,97.96239353],[4.53485058,0.03034626,97.96099595],[4.53485007,0.03034453,97.95960014],[4.53484956,0.0303428,97.95820613],[4.53484906,0.03034107,97.95681393],[4.53484855,0.03033934,97.95542358],[4.53484804,0.03033761,97.95403509],[4.53484754,0.03033588,97.95264849],[4.53484703,0.03033415,97.95126379],[4.53484652,0.03033242,97.94988104],[4.53484602,0.03033069,97.94850025],[4.53484551,0.03032896,97.94712147],[4.534845,0.03032723,97.94574471],[4.5348445,0.0303255,97.94437002],[4.53484399,0.03032377,97.94299742],[4.53484348,0.03032205,97.94162694],[4.53484298,0.03032032,97.94025861],[4.53484247,0.03031859,97.93889247],[4.53484196,0.03031686,97.93752854],[4.53484145,0.03031513,97.93616686],[4.53484095,0.0303134,97.93480746],[4.53484044,0.03031167,97.93345036],[4.53483993,0.03030994,97.93209561],[4.53483942,0.03030821,97.93074322],[4.53483892,0.03030648,97.92939324],[4.53483841,0.03030475,97.92804568],[4.5348379,0.03030302,97.92670059],[4.5348374,0.03030129,97.925358],[4.53483689,0.03029956,97.92401792],[4.53483638,0.03029783,97.92268041],[4.53483587,0.0302961,97.92134547],[4.53483537,0.03029437,97.92001316],[4.53483486,0.03029264,97.9186835],[4.53483435,0.03029091,97.91735651],[4.53483384,0.03028918,97.91603224],[4.53483333,0.03028745,97.9147107],[4.53483283,0.03028572,97.91339194],[4.53483232,0.03028399,97.91207598],[4.53483181,0.03028226,97.91076286],[4.5348313,0.03028053,97.9094526],[4.5348308,0.03027881,97.90814524],[4.53483029,0.03027708,97.90684081],[4.53482978,0.03027535,97.90553933],[4.53482927,0.03027362,97.90424085],[4.53482876,0.03027189,97.90294538],[4.53482826,0.03027016,97.90165297],[4.53482775,0.03026843,97.90036364],[4.53482724,0.0302667,97.89907742],[4.53482673,0.03026497,97.89779435],[4.53482622,0.03026324,97.89651446],[4.53482572,0.03026151,97.89523777],[4.53482521,0.03025978,97.89396432],[4.5348247,0.03025805,97.89269414],[4.53482419,0.03025632,97.89142726],[4.53482368,0.03025459,97.89016371],[4.53482317,0.03025286,97.88890353],[4.53482267,0.03025113,97.88764674],[4.53482216,0.03024941,97.88639337],[4.53482165,0.03024768,97.88514347],[4.53482114,0.03024595,97.88389704],[4.53482063,0.03024422,97.88265414],[4.53482012,0.03024249,97.88141479],[4.53481962,0.03024076,97.88017902],[4.53481911,0.03023903,97.87894686],[4.5348186,0.0302373,97.87771835],[4.53481809,0.03023557,97.87649351],[4.53481758,0.03023384,97.87527237],[4.53481707,0.03023211,97.87405498],[4.53481656,0.03023038,97.87284135],[4.53481606,0.03022865,97.87163152],[4.53481555,0.03022692,97.87042553],[4.53481504,0.0302252,97.86922339],[4.53481453,0.03022347,97.86802515],[4.53481402,0.03022174,97.86683083],[4.53481351,0.03022001,97.86564047],[4.534813,0.03021828,97.8644541],[4.5348125,0.03021655,97.86327175],[4.53481199,0.03021482,97.86209344],[4.53481148,0.03021309,97.86091922],[4.53481097,0.03021136,97.85974911],[4.53481046,0.03020963,97.85858314],[4.53480995,0.0302079,97.85742135],[4.53480944,0.03020617,97.85626377],[4.53480893,0.03020445,97.85511042],[4.53480842,0.03020272,97.85396134],[4.53480791,0.03020099,97.85281657],[4.53480741,0.03019926,97.85167612],[4.5348069,0.03019753,97.85054004],[4.53480639,0.0301958,97.84940835],[4.53480588,0.03019407,97.84828109],[4.53480537,0.03019234,97.84715829],[4.53480486,0.03019061,97.84603997],[4.53480435,0.03018888,97.84492618],[4.53480384,0.03018715,97.84381695],[4.53480333,0.03018542,97.84271231],[4.53480282,0.0301837,97.8416123],[4.53480231,0.03018197,97.84051694],[4.5348018,0.03018024,97.83942628],[4.5348013,0.03017851,97.83834034],[4.53480079,0.03017678,97.83725915],[4.53480028,0.03017505,97.83618275],[4.53479977,0.03017332,97.83511115],[4.53479926,0.03017159,97.83404427],[4.53479875,0.03016986,97.83298207],[4.53479824,0.03016813,97.83192446],[4.53479773,0.03016641,97.83087139],[4.53479722,0.03016468,97.82982279],[4.53479671,0.03016295,97.82877859],[4.5347962,0.03016122,97.82773874],[4.53479569,0.03015949,97.82670315],[4.53479518,0.03015776,97.82567178],[4.53479467,0.03015603,97.82464454],[4.53479416,0.0301543,97.82362139],[4.53479365,0.03015257,97.82260224],[4.53479314,0.03015084,97.82158704],[4.53479264,0.03014912,97.82057572],[4.53479213,0.03014739,97.81956821],[4.53479162,0.03014566,97.81856444],[4.53479111,0.03014393,97.81756436],[4.5347906,0.0301422,97.8165679],[4.53479009,0.03014047,97.81557499],[4.53478958,0.03013874,97.81458556],[4.53478907,0.03013701,97.81359955],[4.53478856,0.03013528,97.81261689],[4.53478805,0.03013355,97.81163751],[4.53478754,0.03013182,97.81066136],[4.53478703,0.0301301,97.80968837],[4.53478652,0.03012837,97.80871846],[4.53478601,0.03012664,97.80775157],[4.5347855,0.03012491,97.80678764],[4.53478499,0.03012318,97.8058266],[4.53478448,0.03012145,97.80486838],[4.53478397,0.03011972,97.80391291],[4.53478346,0.03011799,97.80296011],[4.53478295,0.03011626,97.8020099],[4.53478244,0.03011453,97.80106222],[4.53478194,0.03011281,97.80011698],[4.53478143,0.03011108,97.79917412],[4.53478092,0.03010935,97.79823356],[4.53478041,0.03010762,97.79729522],[4.5347799,0.03010589,97.79635904],[4.53477939,0.03010416,97.79542493],[4.53477888,0.03010243,97.79449282],[4.53477837,0.0301007,97.79356265],[4.53477786,0.03009897,97.79263433],[4.53477735,0.03009724,97.79170779],[4.53477684,0.03009552,97.79078296],[4.53477633,0.03009379,97.78985976],[4.53477582,0.03009206,97.78893812],[4.53477531,0.03009033,97.78801797],[4.5347748,0.0300886,97.78709923],[4.53477429,0.03008687,97.78618183],[4.53477378,0.03008514,97.78526569],[4.53477327,0.03008341,97.78435075],[4.53477276,0.03008168,97.78343692],[4.53477225,0.03007996,97.78252414],[4.53477174,0.03007823,97.78161233],[4.53477123,0.0300765,97.78070143],[4.53477072,0.03007477,97.77979134],[4.53477021,0.03007304,97.77888201],[4.5347697,0.03007131,97.77797336],[4.53476919,0.03006958,97.77706531],[4.53476868,0.03006785,97.7761578],[4.53476817,0.03006613,97.77525075],[4.53476766,0.0300644,97.77434408],[4.53476715,0.03006267,97.77343773],[4.53476664,0.03006094,97.77253162],[4.53476612,0.03005921,97.77162568],[4.53476561,0.03005748,97.77071984],[4.5347651,0.03005575,97.76981404],[4.53476459,0.03005403,97.76890821],[4.53476408,0.0300523,97.7680023],[4.53476357,0.03005057,97.76709624],[4.53476306,0.03004884,97.76618997],[4.53476255,0.03004711,97.76528343],[4.53476204,0.03004538,97.76437656],[4.53476152,0.03004365,97.76346929],[4.53476101,0.03004193,97.76256156],[4.5347605,0.0300402,97.76165332],[4.53475999,0.03003847,97.76074449],[4.53475948,0.03003674,97.75983502],[4.53475897,0.03003501,97.75892484],[4.53475845,0.03003328,97.7580139],[4.53475794,0.03003156,97.75710212],[4.53475743,0.03002983,97.75618945],[4.53475692,0.0300281,97.75527583],[4.53475641,0.03002637,97.75436118],[4.53475589,0.03002464,97.75344546],[4.53475538,0.03002291,97.75252859],[4.53475487,0.03002119,97.75161051],[4.53475436,0.03001946,97.75069117],[4.53475385,0.03001773,97.74977049],[4.53475333,0.030016,97.74884842],[4.53475282,0.03001427,97.74792489],[4.53475231,0.03001254,97.74699983],[4.5347518,0.03001082,97.74607319],[4.53475129,0.03000909,97.74514491],[4.53475077,0.03000736,97.74421491],[4.53475026,0.03000563,97.74328314],[4.53474975,0.0300039,97.74234953],[4.53474924,0.03000217,97.74141402],[4.53474872,0.03000045,97.74047654],[4.53474821,0.02999872,97.73953704],[4.5347477,0.02999699,97.73859544],[4.53474719,0.02999526,97.73765175],[4.53474668,0.02999353,97.73670597],[4.53474616,0.02999181,97.73575811],[4.53474565,0.02999008,97.73480819],[4.53474514,0.02998835,97.73385621],[4.53474463,0.02998662,97.73290219],[4.53474411,0.02998489,97.73194613],[4.5347436,0.02998316,97.73098805],[4.53474309,0.02998144,97.73002796],[4.53474258,0.02997971,97.72906588],[4.53474206,0.02997798,97.7281018],[4.53474155,0.02997625,97.72713574],[4.53474104,0.02997452,97.72616772],[4.53474053,0.0299728,97.72519775],[4.53474001,0.02997107,97.72422582],[4.5347395,0.02996934,97.72325197],[4.53473899,0.02996761,97.72227619],[4.53473848,0.02996588,97.7212985],[4.53473797,0.02996415,97.7203189],[4.53473745,0.02996243,97.71933742],[4.53473694,0.0299607,97.71835405],[4.53473643,0.02995897,97.71736882],[4.53473592,0.02995724,97.71638173],[4.5347354,0.02995551,97.71539281],[4.53473489,0.02995378,97.71440208],[4.53473438,0.02995206,97.71340955],[4.53473387,0.02995033,97.71241525],[4.53473336,0.0299486,97.71141919],[4.53473284,0.02994687,97.71042138],[4.53473233,0.02994514,97.70942184],[4.53473182,0.02994341,97.7084206],[4.53473131,0.02994169,97.70741766],[4.5347308,0.02993996,97.70641304],[4.53473029,0.02993823,97.70540676],[4.53472977,0.0299365,97.70439884],[4.53472926,0.02993477,97.70338929],[4.53472875,0.02993304,97.70237812],[4.53472824,0.02993132,97.70136536],[4.53472773,0.02992959,97.70035102],[4.53472722,0.02992786,97.6993351],[4.53472671,0.02992613,97.69831759],[4.5347262,0.0299244,97.69729849],[4.53472569,0.02992267,97.69627779],[4.53472518,0.02992094,97.69525548],[4.53472467,0.02991921,97.69423157],[4.53472416,0.02991749,97.69320603],[4.53472364,0.02991576,97.69217888],[4.53472313,0.02991403,97.6911501],[4.53472262,0.0299123,97.69011969],[4.53472211,0.02991057,97.68908764],[4.5347216,0.02990884,97.68805394],[4.53472109,0.02990711,97.6870186],[4.53472058,0.02990538,97.68598161],[4.53472007,0.02990366,97.68494295],[4.53471956,0.02990193,97.68390264],[4.53471905,0.0299002,97.68286065],[4.53471854,0.02989847,97.68181699],[4.53471803,0.02989674,97.68077166],[4.53471752,0.02989501,97.67972464],[4.53471701,0.02989328,97.67867594],[4.5347165,0.02989155,97.67762555],[4.53471599,0.02988982,97.67657346],[4.53471548,0.02988809,97.67551968],[4.53471497,0.02988637,97.67446419],[4.53471446,0.02988464,97.67340699],[4.53471395,0.02988291,97.67234808],[4.53471344,0.02988118,97.67128746],[4.53471293,0.02987945,97.67022511],[4.53471242,0.02987772,97.66916105],[4.53471191,0.02987599,97.66809525],[4.5347114,0.02987426,97.66702773],[4.53471089,0.02987253,97.66595847],[4.53471038,0.02987081,97.66488747],[4.53470987,0.02986908,97.66381473],[4.53470936,0.02986735,97.66274024],[4.53470885,0.02986562,97.66166401],[4.53470834,0.02986389,97.66058602],[4.53470783,0.02986216,97.65950628],[4.53470732,0.02986043,97.65842477],[4.53470681,0.0298587,97.65734151],[4.5347063,0.02985698,97.65625647],[4.53470579,0.02985525,97.65516967],[4.53470527,0.02985352,97.6540811],[4.53470476,0.02985179,97.65299075],[4.53470425,0.02985006,97.65189862],[4.53470374,0.02984833,97.6508047],[4.53470323,0.02984661,97.64970901],[4.53470272,0.02984488,97.64861152],[4.5347022,0.02984315,97.64751224],[4.53470169,0.02984142,97.64641117],[4.53470118,0.02983969,97.6453083],[4.53470067,0.02983796,97.64420364],[4.53470016,0.02983624,97.64309719],[4.53469964,0.02983451,97.64198895],[4.53469913,0.02983278,97.64087892],[4.53469862,0.02983105,97.63976711],[4.5346981,0.02982932,97.63865351],[4.53469759,0.0298276,97.63753814],[4.53469708,0.02982587,97.63642098],[4.53469656,0.02982414,97.63530205],[4.53469605,0.02982241,97.63418135],[4.53469554,0.02982068,97.63305887],[4.53469502,0.02981896,97.63193463],[4.53469451,0.02981723,97.63080862],[4.53469399,0.0298155,97.62968084],[4.53469348,0.02981377,97.62855132],[4.53469296,0.02981205,97.62742008],[4.53469245,0.02981032,97.62628718],[4.53469193,0.02980859,97.62515264],[4.53469142,0.02980686,97.62401653],[4.5346909,0.02980514,97.62287888],[4.53469039,0.02980341,97.62173975],[4.53468987,0.02980168,97.62059916],[4.53468936,0.02979995,97.61945718],[4.53468884,0.02979823,97.61831384],[4.53468832,0.0297965,97.61716919],[4.53468781,0.02979477,97.61602328],[4.53468729,0.02979305,97.61487614],[4.53468678,0.02979132,97.61372782],[4.53468626,0.02978959,97.61257837],[4.53468575,0.02978786,97.61142783],[4.53468523,0.02978614,97.61027623],[4.53468472,0.02978441,97.60912359],[4.5346842,0.02978268,97.60796991],[4.53468369,0.02978095,97.60681519],[4.53468317,0.02977923,97.60565942],[4.53468266,0.0297775,97.60450262],[4.53468214,0.02977577,97.60334479],[4.53468163,0.02977404,97.60218592],[4.53468111,0.02977232,97.60102601],[4.5346806,0.02977059,97.59986508],[4.53468008,0.02976886,97.59870312],[4.53467957,0.02976713,97.59754014],[4.53467905,0.02976541,97.59637613],[4.53467854,0.02976368,97.5952111],[4.53467803,0.02976195,97.59404505],[4.53467751,0.02976022,97.59287798],[4.534677,0.0297585,97.59170989],[4.53467648,0.02975677,97.5905408],[4.53467597,0.02975504,97.58937069],[4.53467545,0.02975331,97.58819957],[4.53467494,0.02975158,97.58702745],[4.53467443,0.02974986,97.58585432],[4.53467391,0.02974813,97.58468019],[4.5346734,0.0297464,97.58350506],[4.53467288,0.02974467,97.58232893],[4.53467237,0.02974295,97.5811518],[4.53467186,0.02974122,97.57997369],[4.53467134,0.02973949,97.57879458],[4.53467083,0.02973776,97.57761448],[4.53467032,0.02973603,97.5764334],[4.5346698,0.02973431,97.57525133],[4.53466929,0.02973258,97.57406828],[4.53466877,0.02973085,97.57288425],[4.53466826,0.02972912,97.57169925],[4.53466775,0.0297274,97.57051327],[4.53466723,0.02972567,97.56932632],[4.53466672,0.02972394,97.5681384],[4.53466621,0.02972221,97.56694951],[4.53466569,0.02972048,97.56575966],[4.53466518,0.02971876,97.56456884],[4.53466467,0.02971703,97.56337706],[4.53466415,0.0297153,97.56218433],[4.53466364,0.02971357,97.56099064],[4.53466313,0.02971184,97.559796],[4.53466261,0.02971012,97.55860041],[4.5346621,0.02970839,97.55740388],[4.53466158,0.02970666,97.55620639],[4.53466107,0.02970493,97.55500797],[4.53466056,0.0297032,97.5538086],[4.53466004,0.02970148,97.5526083],[4.53465953,0.02969975,97.55140706],[4.53465902,0.02969802,97.55020489],[4.5346585,0.02969629,97.54900179],[4.53465799,0.02969457,97.54779783],[4.53465748,0.02969284,97.54659306],[4.53465696,0.02969111,97.54538749],[4.53465645,0.02968938,97.54418113],[4.53465593,0.02968765,97.54297398],[4.53465542,0.02968593,97.54176604],[4.53465491,0.0296842,97.54055732],[4.53465439,0.02968247,97.5393478],[4.53465388,0.02968074,97.5381375],[4.53465337,0.02967901,97.53692642],[4.53465285,0.02967729,97.53571455],[4.53465234,0.02967556,97.5345019],[4.53465183,0.02967383,97.53328846],[4.53465131,0.0296721,97.53207425],[4.5346508,0.02967038,97.53085925],[4.53465029,0.02966865,97.52964348],[4.53464977,0.02966692,97.52842693],[4.53464926,0.02966519,97.5272096],[4.53464875,0.02966346,97.52599149],[4.53464823,0.02966174,97.5247726],[4.53464772,0.02966001,97.52355293],[4.53464721,0.02965828,97.52233248],[4.53464669,0.02965655,97.52111124],[4.53464618,0.02965483,97.5198892],[4.53464567,0.0296531,97.51866637],[4.53464515,0.02965137,97.51744275],[4.53464464,0.02964964,97.51621833],[4.53464412,0.02964791,97.5149931],[4.53464361,0.02964619,97.51376707],[4.5346431,0.02964446,97.51254023],[4.53464258,0.02964273,97.51131259],[4.53464207,0.029641,97.51008413],[4.53464155,0.02963928,97.50885485],[4.53464104,0.02963755,97.50762476],[4.53464053,0.02963582,97.50639384],[4.53464001,0.02963409,97.5051621],[4.5346395,0.02963237,97.50392954],[4.53463898,0.02963064,97.50269614],[4.53463847,0.02962891,97.50146191],[4.53463795,0.02962718,97.50022684],[4.53463744,0.02962546,97.49899094],[4.53463692,0.02962373,97.49775419],[4.53463641,0.029622,97.4965166],[4.53463589,0.02962027,97.49527818],[4.53463538,0.02961855,97.49403897],[4.53463486,0.02961682,97.49279903],[4.53463435,0.02961509,97.4915584],[4.53463383,0.02961336,97.49031713],[4.53463331,0.02961164,97.48907528],[4.5346328,0.02960991,97.48783289],[4.53463228,0.02960818,97.48659001],[4.53463177,0.02960646,97.48534669],[4.53463125,0.02960473,97.48410299],[4.53463074,0.029603,97.48285895],[4.53463022,0.02960127,97.48161461],[4.53462971,0.02959955,97.48037],[4.53462919,0.02959782,97.47912512],[4.53462868,0.02959609,97.47787998],[4.53462816,0.02959436,97.47663459],[4.53462765,0.02959264,97.47538896],[4.53462713,0.02959091,97.4741431],[4.53462662,0.02958918,97.47289702],[4.5346261,0.02958745,97.47165073],[4.53462559,0.02958573,97.47040424],[4.53462507,0.029584,97.46915755],[4.53462456,0.02958227,97.46791068],[4.53462405,0.02958054,97.46666364],[4.53462353,0.02957882,97.46541643],[4.53462302,0.02957709,97.46416907],[4.5346225,0.02957536,97.46292157],[4.53462199,0.02957363,97.46167393],[4.53462148,0.02957191,97.46042617],[4.53462096,0.02957018,97.45917829],[4.53462045,0.02956845,97.4579303],[4.53461994,0.02956672,97.45668222],[4.53461942,0.02956499,97.45543406],[4.53461891,0.02956327,97.45418581],[4.5346184,0.02956154,97.4529375],[4.53461788,0.02955981,97.45168913],[4.53461737,0.02955808,97.45044069],[4.53461686,0.02955635,97.44919219],[4.53461635,0.02955463,97.44794361],[4.53461583,0.0295529,97.44669496],[4.53461532,0.02955117,97.44544622],[4.53461481,0.02954944,97.4441974],[4.5346143,0.02954771,97.44294848],[4.53461378,0.02954599,97.44169948],[4.53461327,0.02954426,97.44045037],[4.53461276,0.02954253,97.43920116],[4.53461225,0.0295408,97.43795185],[4.53461174,0.02953907,97.43670242],[4.53461122,0.02953734,97.43545287],[4.53461071,0.02953562,97.43420321],[4.5346102,0.02953389,97.43295342],[4.53460969,0.02953216,97.4317035],[4.53460918,0.02953043,97.43045344],[4.53460867,0.0295287,97.42920325],[4.53460815,0.02952698,97.42795291],[4.53460764,0.02952525,97.42670242],[4.53460713,0.02952352,97.42545178],[4.53460662,0.02952179,97.42420098],[4.53460611,0.02952006,97.42295002],[4.53460559,0.02951833,97.42169889],[4.53460508,0.02951661,97.42044759],[4.53460457,0.02951488,97.41919611],[4.53460406,0.02951315,97.41794445],[4.53460355,0.02951142,97.4166926],[4.53460304,0.02950969,97.41544056],[4.53460252,0.02950796,97.41418832],[4.53460201,0.02950624,97.41293588],[4.5346015,0.02950451,97.41168323],[4.53460099,0.02950278,97.41043038],[4.53460047,0.02950105,97.40917731],[4.53459996,0.02949932,97.40792406],[4.53459945,0.0294976,97.40667061],[4.53459894,0.02949587,97.40541699],[4.53459842,0.02949414,97.4041632],[4.53459791,0.02949241,97.40290925],[4.5345974,0.02949068,97.40165515],[4.53459689,0.02948896,97.4004009],[4.53459637,0.02948723,97.39914652],[4.53459586,0.0294855,97.39789202],[4.53459535,0.02948377,97.39663739],[4.53459483,0.02948204,97.39538266],[4.53459432,0.02948032,97.39412784],[4.53459381,0.02947859,97.39287292],[4.5345933,0.02947686,97.39161791],[4.53459278,0.02947513,97.39036284],[4.53459227,0.02947341,97.3891077],[4.53459176,0.02947168,97.3878525],[4.53459124,0.02946995,97.38659726],[4.53459073,0.02946822,97.38534198],[4.53459022,0.02946649,97.38408667],[4.5345897,0.02946477,97.38283134],[4.53458919,0.02946304,97.381576],[4.53458868,0.02946131,97.38032065],[4.53458816,0.02945958,97.37906531],[4.53458765,0.02945786,97.37780998],[4.53458713,0.02945613,97.37655468],[4.53458662,0.0294544,97.3752994],[4.53458611,0.02945267,97.37404417],[4.53458559,0.02945095,97.37278899],[4.53458508,0.02944922,97.37153386],[4.53458456,0.02944749,97.3702788],[4.53458405,0.02944576,97.36902381],[4.53458354,0.02944404,97.36776891],[4.53458302,0.02944231,97.36651411],[4.53458251,0.02944058,97.3652594],[4.53458199,0.02943885,97.3640048],[4.53458148,0.02943713,97.36275033],[4.53458097,0.0294354,97.36149598],[4.53458045,0.02943367,97.36024176],[4.53457994,0.02943194,97.3589877],[4.53457942,0.02943022,97.35773378],[4.53457891,0.02942849,97.35648004],[4.53457839,0.02942676,97.35522646],[4.53457788,0.02942503,97.35397306],[4.53457737,0.02942331,97.35271985],[4.53457685,0.02942158,97.35146685],[4.53457634,0.02941985,97.35021405],[4.53457582,0.02941813,97.34896146],[4.53457531,0.0294164,97.3477091],[4.53457479,0.02941467,97.34645698],[4.53457428,0.02941294,97.34520509],[4.53457376,0.02941122,97.34395346],[4.53457325,0.02940949,97.34270209],[4.53457273,0.02940776,97.34145099],[4.53457222,0.02940603,97.34020016],[4.5345717,0.02940431,97.33894963],[4.53457119,0.02940258,97.33769939],[4.53457067,0.02940085,97.33644945],[4.53457016,0.02939913,97.33519983],[4.53456964,0.0293974,97.33395053],[4.53456913,0.02939567,97.33270157],[4.53456861,0.02939394,97.33145294],[4.5345681,0.02939222,97.33020467],[4.53456758,0.02939049,97.32895675],[4.53456707,0.02938876,97.3277092],[4.53456655,0.02938704,97.32646202],[4.53456604,0.02938531,97.32521523],[4.53456552,0.02938358,97.32396884],[4.53456501,0.02938185,97.32272285],[4.53456449,0.02938013,97.32147727],[4.53456398,0.0293784,97.32023211],[4.53456346,0.02937667,97.31898739],[4.53456295,0.02937495,97.3177431],[4.53456243,0.02937322,97.31649926],[4.53456192,0.02937149,97.31525588],[4.5345614,0.02936976,97.31401296],[4.53456089,0.02936804,97.31277052],[4.53456037,0.02936631,97.31152856],[4.53455986,0.02936458,97.3102871],[4.53455934,0.02936286,97.30904614],[4.53455883,0.02936113,97.3078057],[4.53455831,0.0293594,97.30656578],[4.53455779,0.02935768,97.3053264],[4.53455728,0.02935595,97.30408756],[4.53455676,0.02935422,97.30284928],[4.53455625,0.02935249,97.30161156],[4.53455573,0.02935077,97.30037442],[4.53455522,0.02934904,97.29913787],[4.5345547,0.02934731,97.29790192],[4.53455419,0.02934559,97.29666657],[4.53455367,0.02934386,97.29543184],[4.53455316,0.02934213,97.29419773],[4.53455264,0.02934041,97.29296425],[4.53455213,0.02933868,97.29173138],[4.53455161,0.02933695,97.29049914],[4.5345511,0.02933522,97.28926754],[4.53455058,0.0293335,97.28803656],[4.53455006,0.02933177,97.28680622],[4.53454955,0.02933004,97.28557651],[4.53454903,0.02932832,97.28434745],[4.53454852,0.02932659,97.28311903],[4.534548,0.02932486,97.28189125],[4.53454749,0.02932314,97.28066412],[4.53454697,0.02932141,97.27943764],[4.53454646,0.02931968,97.27821181],[4.53454594,0.02931796,97.27698663],[4.53454542,0.02931623,97.27576212],[4.53454491,0.0293145,97.27453826],[4.53454439,0.02931277,97.27331506],[4.53454388,0.02931105,97.27209253],[4.53454336,0.02930932,97.27087065],[4.53454285,0.02930759,97.26964944],[4.53454233,0.02930587,97.26842887],[4.53454181,0.02930414,97.26720896],[4.5345413,0.02930241,97.26598969],[4.53454078,0.02930069,97.26477106],[4.53454027,0.02929896,97.26355306],[4.53453975,0.02929723,97.2623357],[4.53453923,0.02929551,97.26111896],[4.53453872,0.02929378,97.25990285],[4.5345382,0.02929205,97.25868735],[4.53453769,0.02929033,97.25747247],[4.53453717,0.0292886,97.2562582],[4.53453665,0.02928687,97.25504453],[4.53453614,0.02928515,97.25383146],[4.53453562,0.02928342,97.25261899],[4.5345351,0.02928169,97.25140711],[4.53453459,0.02927997,97.25019582],[4.53453407,0.02927824,97.2489851],[4.53453355,0.02927651,97.24777496],[4.53453304,0.02927479,97.24656539],[4.53453252,0.02927306,97.24535638],[4.534532,0.02927133,97.24414792],[4.53453149,0.02926961,97.24294001],[4.53453097,0.02926788,97.24173264],[4.53453045,0.02926616,97.24052582],[4.53452993,0.02926443,97.23931955],[4.53452942,0.0292627,97.23811384],[4.5345289,0.02926098,97.23690869],[4.53452838,0.02925925,97.2357041],[4.53452786,0.02925752,97.23450008],[4.53452735,0.0292558,97.23329663],[4.53452683,0.02925407,97.23209376],[4.53452631,0.02925235,97.23089147],[4.53452579,0.02925062,97.22968977],[4.53452527,0.02924889,97.22848866],[4.53452476,0.02924717,97.22728814],[4.53452424,0.02924544,97.22608822],[4.53452372,0.02924372,97.2248889],[4.5345232,0.02924199,97.22369019],[4.53452268,0.02924026,97.22249209],[4.53452216,0.02923854,97.22129461],[4.53452165,0.02923681,97.22009775],[4.53452113,0.02923509,97.21890151],[4.53452061,0.02923336,97.2177059],[4.53452009,0.02923163,97.21651093],[4.53451957,0.02922991,97.21531659],[4.53451905,0.02922818,97.21412289],[4.53451853,0.02922646,97.21292985],[4.53451801,0.02922473,97.21173745],[4.53451749,0.02922301,97.21054571],[4.53451698,0.02922128,97.20935463],[4.53451646,0.02921955,97.20816421],[4.53451594,0.02921783,97.20697446],[4.53451542,0.0292161,97.20578539],[4.5345149,0.02921438,97.20459699],[4.53451438,0.02921265,97.20340928],[4.53451386,0.02921093,97.20222226],[4.53451334,0.0292092,97.20103592],[4.53451282,0.02920747,97.19985028],[4.5345123,0.02920575,97.19866535],[4.53451178,0.02920402,97.19748111],[4.53451126,0.0292023,97.19629759],[4.53451074,0.02920057,97.19511479],[4.53451022,0.02919885,97.1939327],[4.5345097,0.02919712,97.19275133],[4.53450919,0.0291954,97.1915707],[4.53450867,0.02919367,97.19039079],[4.53450815,0.02919194,97.18921163],[4.53450763,0.02919022,97.1880332],[4.53450711,0.02918849,97.18685553],[4.53450659,0.02918677,97.1856786],[4.53450607,0.02918504,97.18450243],[4.53450555,0.02918332,97.18332703],[4.53450503,0.02918159,97.18215238],[4.53450451,0.02917987,97.18097851],[4.53450399,0.02917814,97.17980541],[4.53450347,0.02917641,97.1786331],[4.53450295,0.02917469,97.17746156],[4.53450243,0.02917296,97.17629082],[4.53450191,0.02917124,97.17512087],[4.53450139,0.02916951,97.17395172],[4.53450087,0.02916779,97.17278337],[4.53450035,0.02916606,97.17161583],[4.53449983,0.02916434,97.1704491],[4.53449931,0.02916261,97.16928319],[4.53449879,0.02916089,97.1681181],[4.53449827,0.02915916,97.16695384],[4.53449775,0.02915743,97.16579041],[4.53449723,0.02915571,97.16462782],[4.53449671,0.02915398,97.16346606],[4.53449619,0.02915226,97.16230516],[4.53449567,0.02915053,97.16114511],[4.53449515,0.02914881,97.15998591],[4.53449463,0.02914708,97.15882757],[4.53449411,0.02914536,97.1576701],[4.53449359,0.02914363,97.1565135],[4.53449307,0.02914191,97.15535777],[4.53449255,0.02914018,97.15420292],[4.53449203,0.02913845,97.15304896],[4.53449151,0.02913673,97.15189589],[4.53449099,0.029135,97.15074372],[4.53449047,0.02913328,97.14959244],[4.53448995,0.02913155,97.14844207],[4.53448943,0.02912983,97.1472926],[4.53448891,0.0291281,97.14614405],[4.53448839,0.02912638,97.14499642],[4.53448788,0.02912465,97.14384971],[4.53448736,0.02912293,97.14270393],[4.53448684,0.0291212,97.14155906],[4.53448632,0.02911947,97.14041511],[4.5344858,0.02911775,97.13927207],[4.53448528,0.02911602,97.13812995],[4.53448476,0.0291143,97.13698874],[4.53448424,0.02911257,97.13584844],[4.53448372,0.02911085,97.13470905],[4.5344832,0.02910912,97.13357057],[4.53448268,0.0291074,97.13243299],[4.53448216,0.02910567,97.13129632],[4.53448164,0.02910394,97.13016055],[4.53448112,0.02910222,97.12902567],[4.53448061,0.02910049,97.12789168],[4.53448009,0.02909877,97.12675859],[4.53447957,0.02909704,97.12562638],[4.53447905,0.02909532,97.12449506],[4.53447853,0.02909359,97.12336462],[4.53447801,0.02909186,97.12223505],[4.53447749,0.02909014,97.12110636],[4.53447697,0.02908841,97.11997855],[4.53447645,0.02908669,97.11885159],[4.53447593,0.02908496,97.11772551],[4.53447541,0.02908324,97.11660028],[4.5344749,0.02908151,97.11547592],[4.53447438,0.02907979,97.11435241],[4.53447386,0.02907806,97.11322975],[4.53447334,0.02907633,97.11210793],[4.53447282,0.02907461,97.11098697],[4.5344723,0.02907288,97.10986684],[4.53447178,0.02907116,97.10874756],[4.53447126,0.02906943,97.10762911],[4.53447074,0.02906771,97.10651149],[4.53447022,0.02906598,97.1053947],[4.5344697,0.02906426,97.10427873],[4.53446918,0.02906253,97.10316359],[4.53446867,0.0290608,97.10204926],[4.53446815,0.02905908,97.10093575],[4.53446763,0.02905735,97.09982306],[4.53446711,0.02905563,97.09871117],[4.53446659,0.0290539,97.09760008],[4.53446607,0.02905218,97.0964898],[4.53446555,0.02905045,97.09538032],[4.53446503,0.02904873,97.09427163],[4.53446451,0.029047,97.09316374],[4.53446399,0.02904528,97.09205663],[4.53446347,0.02904355,97.09095031],[4.53446295,0.02904182,97.08984476],[4.53446243,0.0290401,97.08874],[4.53446191,0.02903837,97.08763601],[4.53446139,0.02903665,97.08653279],[4.53446087,0.02903492,97.08543035],[4.53446035,0.0290332,97.08432866],[4.53445983,0.02903147,97.08322774],[4.53445931,0.02902975,97.08212757],[4.53445879,0.02902802,97.08102816],[4.53445828,0.0290263,97.0799295],[4.53445776,0.02902457,97.07883158],[4.53445724,0.02902285,97.07773441],[4.53445672,0.02902112,97.07663798],[4.53445619,0.0290194,97.07554229],[4.53445567,0.02901767,97.07444733],[4.53445515,0.02901594,97.0733531],[4.53445463,0.02901422,97.0722596],[4.53445411,0.02901249,97.07116682],[4.53445359,0.02901077,97.07007475],[4.53445307,0.02900904,97.06898341],[4.53445255,0.02900732,97.06789278],[4.53445203,0.02900559,97.06680285],[4.53445151,0.02900387,97.06571363],[4.53445099,0.02900214,97.06462512],[4.53445047,0.02900042,97.0635373],[4.53444995,0.02899869,97.06245018],[4.53444943,0.02899697,97.06136374],[4.53444891,0.02899524,97.060278],[4.53444839,0.02899352,97.05919294],[4.53444786,0.02899179,97.05810856],[4.53444734,0.02899007,97.05702486],[4.53444682,0.02898834,97.05594183],[4.5344463,0.02898662,97.05485947],[4.53444578,0.0289849,97.05377778],[4.53444526,0.02898317,97.05269675],[4.53444474,0.02898145,97.05161638],[4.53444421,0.02897972,97.05053667],[4.53444369,0.028978,97.04945761],[4.53444317,0.02897628,97.04837919],[4.53444265,0.02897455,97.04730143],[4.53444213,0.02897283,97.0462243],[4.53444161,0.0289711,97.04514781],[4.53444108,0.02896938,97.04407196],[4.53444056,0.02896765,97.04299674],[4.53444004,0.02896593,97.04192214],[4.53443952,0.02896421,97.04084817],[4.53443899,0.02896248,97.03977482],[4.53443897,0.0289624,97.03972558]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2}},{"geometry":{"coordinates":[[4.53576987,0.03348072,99.77317714],[4.5357694,0.03347899,99.7729386],[4.53576892,0.03347725,99.77269944],[4.53576844,0.03347551,99.77245966],[4.53576797,0.03347377,99.77221927],[4.53576749,0.03347203,99.77197829],[4.53576701,0.03347029,99.7717367],[4.53576654,0.03346855,99.77149453],[4.53576606,0.03346681,99.77125177],[4.53576558,0.03346508,99.77100844],[4.53576511,0.03346334,99.77076454],[4.53576463,0.0334616,99.77052008],[4.53576415,0.03345986,99.77027506],[4.53576367,0.03345812,99.77002949],[4.5357632,0.03345638,99.76978339],[4.53576272,0.03345465,99.76953675],[4.53576224,0.03345291,99.76928957],[4.53576176,0.03345117,99.76904188],[4.53576129,0.03344943,99.76879368],[4.53576081,0.03344769,99.76854496],[4.53576033,0.03344595,99.76829573],[4.53575985,0.03344422,99.76804601],[4.53575937,0.03344248,99.76779578],[4.5357589,0.03344074,99.76754505],[4.53575842,0.033439,99.76729384],[4.53575794,0.03343726,99.76704213],[4.53575746,0.03343552,99.76678994],[4.53575698,0.03343379,99.76653727],[4.5357565,0.03343205,99.76628412],[4.53575603,0.03343031,99.7660305],[4.53575555,0.03342857,99.7657764],[4.53575507,0.03342683,99.76552184],[4.53575459,0.03342509,99.76526682],[4.53575411,0.03342336,99.76501134],[4.53575363,0.03342162,99.76475541],[4.53575315,0.03341988,99.76449902],[4.53575267,0.03341814,99.76424219],[4.5357522,0.0334164,99.76398491],[4.53575172,0.03341467,99.76372719],[4.53575124,0.03341293,99.76346904],[4.53575076,0.03341119,99.76321046],[4.53575028,0.03340945,99.76295145],[4.5357498,0.03340771,99.76269202],[4.53574932,0.03340598,99.76243216],[4.53574884,0.03340424,99.7621719],[4.53574836,0.0334025,99.76191121],[4.53574789,0.03340076,99.76165012],[4.53574741,0.03339902,99.76138862],[4.53574693,0.03339729,99.76112672],[4.53574645,0.03339555,99.76086442],[4.53574597,0.03339381,99.76060172],[4.53574549,0.03339207,99.76033863],[4.53574501,0.03339033,99.76007515],[4.53574453,0.03338859,99.75981128],[4.53574405,0.03338686,99.75954703],[4.53574357,0.03338512,99.7592824],[4.53574309,0.03338338,99.7590174],[4.53574262,0.03338164,99.75875201],[4.53574214,0.0333799,99.75848624],[4.53574166,0.03337817,99.75822008],[4.53574118,0.03337643,99.75795354],[4.5357407,0.03337469,99.7576866],[4.53574022,0.03337295,99.75741927],[4.53573974,0.03337121,99.75715153],[4.53573926,0.03336948,99.7568834],[4.53573878,0.03336774,99.75661486],[4.5357383,0.033366,99.75634592],[4.53573783,0.03336426,99.75607656],[4.53573735,0.03336252,99.75580679],[4.53573687,0.03336079,99.7555366],[4.53573639,0.03335905,99.755266],[4.53573591,0.03335731,99.75499497],[4.53573543,0.03335557,99.75472351],[4.53573495,0.03335383,99.75445163],[4.53573447,0.03335209,99.75417931],[4.53573399,0.03335036,99.75390656],[4.53573352,0.03334862,99.75363337],[4.53573304,0.03334688,99.75335975],[4.53573256,0.03334514,99.75308567],[4.53573208,0.0333434,99.75281115],[4.5357316,0.03334167,99.75253618],[4.53573112,0.03333993,99.75226076],[4.53573064,0.03333819,99.75198488],[4.53573016,0.03333645,99.75170855],[4.53572969,0.03333471,99.75143175],[4.53572921,0.03333297,99.75115448],[4.53572873,0.03333124,99.75087675],[4.53572825,0.0333295,99.75059854],[4.53572777,0.03332776,99.75031987],[4.53572729,0.03332602,99.75004071],[4.53572681,0.03332428,99.74976107],[4.53572633,0.03332255,99.74948095],[4.53572586,0.03332081,99.74920035],[4.53572538,0.03331907,99.74891925],[4.5357249,0.03331733,99.74863766],[4.53572442,0.03331559,99.74835558],[4.53572394,0.03331385,99.748073],[4.53572346,0.03331212,99.74778991],[4.53572298,0.03331038,99.74750633],[4.53572251,0.03330864,99.74722223],[4.53572203,0.0333069,99.74693762],[4.53572155,0.03330516,99.7466525],[4.53572107,0.03330343,99.74636686],[4.53572059,0.03330169,99.7460807],[4.53572011,0.03329995,99.74579402],[4.53571963,0.03329821,99.74550682],[4.53571915,0.03329647,99.74521908],[4.53571868,0.03329473,99.74493081],[4.5357182,0.033293,99.74464201],[4.53571772,0.03329126,99.74435266],[4.53571724,0.03328952,99.74406278],[4.53571676,0.03328778,99.74377235],[4.53571628,0.03328604,99.74348138],[4.53571581,0.0332843,99.74318985],[4.53571533,0.03328257,99.74289777],[4.53571485,0.03328083,99.74260513],[4.53571437,0.03327909,99.74231191],[4.53571389,0.03327735,99.74201811],[4.53571341,0.03327561,99.74172369],[4.53571293,0.03327388,99.74142864],[4.53571246,0.03327214,99.74113294],[4.53571198,0.0332704,99.74083657],[4.5357115,0.03326866,99.74053952],[4.53571102,0.03326692,99.74024176],[4.53571054,0.03326518,99.73994328],[4.53571006,0.03326345,99.73964409],[4.53570958,0.03326171,99.73934418],[4.5357091,0.03325997,99.73904354],[4.53570863,0.03325823,99.73874218],[4.53570815,0.03325649,99.73844011],[4.53570767,0.03325475,99.7381373],[4.53570719,0.03325302,99.73783378],[4.53570671,0.03325128,99.73752952],[4.53570623,0.03324954,99.73722455],[4.53570575,0.0332478,99.73691884],[4.53570527,0.03324606,99.73661241],[4.53570479,0.03324433,99.73630525],[4.53570431,0.03324259,99.73599737],[4.53570384,0.03324085,99.73568875],[4.53570336,0.03323911,99.73537941],[4.53570288,0.03323737,99.73506933],[4.5357024,0.03323564,99.73475852],[4.53570192,0.0332339,99.73444698],[4.53570144,0.03323216,99.73413471],[4.53570096,0.03323042,99.7338217],[4.53570048,0.03322868,99.73350796],[4.5357,0.03322695,99.73319348],[4.53569952,0.03322521,99.73287827],[4.53569904,0.03322347,99.73256232],[4.53569856,0.03322173,99.73224563],[4.53569808,0.03321999,99.73192821],[4.5356976,0.03321826,99.73161005],[4.53569712,0.03321652,99.73129115],[4.53569665,0.03321478,99.7309715],[4.53569617,0.03321304,99.73065112],[4.53569569,0.0332113,99.73033],[4.53569521,0.03320957,99.73000813],[4.53569473,0.03320783,99.72968552],[4.53569425,0.03320609,99.72936217],[4.53569377,0.03320435,99.72903807],[4.53569329,0.03320261,99.72871323],[4.53569281,0.03320087,99.72838765],[4.53569233,0.03319914,99.72806131],[4.53569185,0.0331974,99.72773423],[4.53569137,0.03319566,99.72740641],[4.53569089,0.03319392,99.72707783],[4.53569041,0.03319219,99.72674851],[4.53568993,0.03319045,99.72641844],[4.53568945,0.03318871,99.72608761],[4.53568897,0.03318697,99.72575604],[4.53568849,0.03318523,99.72542372],[4.53568801,0.0331835,99.72509064],[4.53568753,0.03318176,99.72475681],[4.53568705,0.03318002,99.72442223],[4.53568657,0.03317828,99.72408689],[4.53568609,0.03317654,99.7237508],[4.53568561,0.03317481,99.72341396],[4.53568513,0.03317307,99.72307635],[4.53568465,0.03317133,99.722738],[4.53568418,0.03316959,99.72239888],[4.5356837,0.03316785,99.72205901],[4.53568322,0.03316612,99.72171838],[4.53568274,0.03316438,99.72137699],[4.53568226,0.03316264,99.72103484],[4.53568178,0.0331609,99.72069193],[4.5356813,0.03315916,99.72034826],[4.53568082,0.03315742,99.72000383],[4.53568034,0.03315569,99.71965864],[4.53567986,0.03315395,99.71931268],[4.53567938,0.03315221,99.71896596],[4.5356789,0.03315047,99.71861848],[4.53567842,0.03314873,99.71827024],[4.53567794,0.033147,99.71792123],[4.53567746,0.03314526,99.71757145],[4.53567698,0.03314352,99.71722091],[4.5356765,0.03314178,99.7168696],[4.53567602,0.03314004,99.71651752],[4.53567554,0.03313831,99.71616468],[4.53567506,0.03313657,99.71581107],[4.53567458,0.03313483,99.7154567],[4.53567411,0.03313309,99.71510158],[4.53567363,0.03313135,99.71474568],[4.53567315,0.03312962,99.71438902],[4.53567267,0.03312788,99.71403157],[4.53567219,0.03312614,99.71367335],[4.53567171,0.0331244,99.71331433],[4.53567123,0.03312266,99.71295452],[4.53567075,0.03312093,99.7125939],[4.53567027,0.03311919,99.71223248],[4.53566979,0.03311745,99.71187025],[4.53566931,0.03311571,99.7115072],[4.53566883,0.03311397,99.71114333],[4.53566836,0.03311223,99.71077863],[4.53566788,0.0331105,99.7104131],[4.5356674,0.03310876,99.71004672],[4.53566692,0.03310702,99.7096795],[4.53566644,0.03310528,99.70931142],[4.53566596,0.03310354,99.70894249],[4.53566548,0.03310181,99.70857269],[4.535665,0.03310007,99.70820203],[4.53566452,0.03309833,99.70783049],[4.53566404,0.03309659,99.70745807],[4.53566356,0.03309485,99.70708477],[4.53566309,0.03309311,99.70671057],[4.53566261,0.03309138,99.70633547],[4.53566213,0.03308964,99.70595948],[4.53566165,0.0330879,99.70558257],[4.53566117,0.03308616,99.70520475],[4.53566069,0.03308442,99.704826],[4.53566021,0.03308268,99.70444634],[4.53565973,0.03308095,99.70406573],[4.53565925,0.03307921,99.7036842],[4.53565877,0.03307747,99.70330171],[4.5356583,0.03307573,99.70291828],[4.53565782,0.03307399,99.7025339],[4.53565734,0.03307226,99.70214855],[4.53565686,0.03307052,99.70176223],[4.53565638,0.03306878,99.70137495],[4.5356559,0.03306704,99.70098668],[4.53565542,0.0330653,99.70059743],[4.53565494,0.03306356,99.7002072],[4.53565446,0.03306183,99.69981596],[4.53565398,0.03306009,99.69942373],[4.5356535,0.03305835,99.69903048],[4.53565302,0.03305661,99.69863623],[4.53565255,0.03305487,99.69824096],[4.53565207,0.03305314,99.69784466],[4.53565159,0.0330514,99.69744733],[4.53565111,0.03304966,99.69704896],[4.53565063,0.03304792,99.69664956],[4.53565015,0.03304618,99.6962491],[4.53564967,0.03304444,99.6958476],[4.53564919,0.03304271,99.69544503],[4.53564871,0.03304097,99.6950414],[4.53564823,0.03303923,99.69463669],[4.53564775,0.03303749,99.69423091],[4.53564727,0.03303575,99.69382405],[4.53564679,0.03303402,99.6934161],[4.53564631,0.03303228,99.69300705],[4.53564583,0.03303054,99.69259691],[4.53564536,0.0330288,99.69218566],[4.53564488,0.03302706,99.69177329],[4.5356444,0.03302533,99.69135981],[4.53564392,0.03302359,99.69094521],[4.53564344,0.03302185,99.69052947],[4.53564296,0.03302011,99.69011261],[4.53564248,0.03301837,99.6896946],[4.535642,0.03301664,99.68927545],[4.53564152,0.0330149,99.68885518],[4.53564104,0.03301316,99.68843381],[4.53564056,0.03301142,99.68801136],[4.53564008,0.03300968,99.68758786],[4.5356396,0.03300795,99.68716331],[4.53563912,0.03300621,99.68673774],[4.53563864,0.03300447,99.68631114],[4.53563816,0.03300273,99.68588351],[4.53563768,0.03300099,99.68545485],[4.5356372,0.03299926,99.68502516],[4.53563672,0.03299752,99.68459444],[4.53563624,0.03299578,99.68416269],[4.53563576,0.03299404,99.6837299],[4.53563528,0.0329923,99.68329608],[4.5356348,0.03299056,99.68286123],[4.53563432,0.03298883,99.68242535],[4.53563384,0.03298709,99.68198843],[4.53563336,0.03298535,99.68155048],[4.53563288,0.03298361,99.68111149],[4.5356324,0.03298187,99.68067147],[4.53563192,0.03298014,99.68023041],[4.53563144,0.0329784,99.67978831],[4.53563096,0.03297666,99.67934517],[4.53563048,0.03297492,99.678901],[4.53563,0.03297318,99.67845579],[4.53562952,0.03297145,99.67800954],[4.53562905,0.03296971,99.67756224],[4.53562857,0.03296797,99.67711391],[4.53562809,0.03296623,99.67666454],[4.53562761,0.03296449,99.67621413],[4.53562713,0.03296276,99.67576267],[4.53562665,0.03296102,99.67531017],[4.53562617,0.03295928,99.67485663],[4.53562569,0.03295754,99.67440205],[4.53562521,0.0329558,99.67394642],[4.53562473,0.03295406,99.67348974],[4.53562425,0.03295233,99.67303203],[4.53562377,0.03295059,99.67257326],[4.53562329,0.03294885,99.67211345],[4.53562282,0.03294711,99.67165259],[4.53562234,0.03294537,99.67119069],[4.53562186,0.03294363,99.67072774],[4.53562138,0.0329419,99.67026373],[4.5356209,0.03294016,99.66979868],[4.53562042,0.03293842,99.66933259],[4.53561994,0.03293668,99.66886544],[4.53561946,0.03293494,99.66839724],[4.53561898,0.0329332,99.66792799],[4.53561851,0.03293147,99.66745768],[4.53561803,0.03292973,99.66698633],[4.53561755,0.03292799,99.66651392],[4.53561707,0.03292625,99.66604046],[4.53561659,0.03292451,99.66556595],[4.53561611,0.03292277,99.66509036],[4.53561563,0.03292104,99.66461369],[4.53561516,0.0329193,99.66413591],[4.53561468,0.03291756,99.66365699],[4.5356142,0.03291582,99.66317693],[4.53561372,0.03291408,99.66269569],[4.53561324,0.03291234,99.66221326],[4.53561276,0.03291061,99.66172962],[4.53561229,0.03290887,99.66124475],[4.53561181,0.03290713,99.66075862],[4.53561133,0.03290539,99.66027121],[4.53561085,0.03290365,99.65978251],[4.53561037,0.03290191,99.6592925],[4.53560989,0.03290017,99.65880114],[4.53560941,0.03289844,99.65830844],[4.53560894,0.0328967,99.65781435],[4.53560846,0.03289496,99.65731886],[4.53560798,0.03289322,99.65682196],[4.5356075,0.03289148,99.65632361],[4.53560702,0.03288974,99.6558238],[4.53560654,0.03288801,99.65532251],[4.53560606,0.03288627,99.65481972],[4.53560558,0.03288453,99.65431541],[4.53560511,0.03288279,99.65380955],[4.53560463,0.03288105,99.65330213],[4.53560415,0.03287932,99.65279312],[4.53560367,0.03287758,99.65228251],[4.53560319,0.03287584,99.65177027],[4.53560271,0.0328741,99.65125639],[4.53560223,0.03287236,99.6507409],[4.53560175,0.03287063,99.65022378],[4.53560127,0.03286889,99.64970507],[4.53560079,0.03286715,99.64918476],[4.53560031,0.03286541,99.64866286],[4.53559983,0.03286367,99.64813938],[4.53559935,0.03286194,99.64761433],[4.53559887,0.0328602,99.64708773],[4.53559839,0.03285846,99.64655957],[4.53559791,0.03285672,99.64602987],[4.53559742,0.03285498,99.64549864],[4.53559694,0.03285325,99.64496589],[4.53559646,0.03285151,99.64443163],[4.53559598,0.03284977,99.64389586],[4.5355955,0.03284803,99.64335859],[4.53559502,0.0328463,99.64281984],[4.53559454,0.03284456,99.64227962],[4.53559406,0.03284282,99.64173792],[4.53559358,0.03284108,99.64119477],[4.53559309,0.03283935,99.64065017],[4.53559261,0.03283761,99.64010414],[4.53559213,0.03283587,99.63955667],[4.53559165,0.03283413,99.63900778],[4.53559117,0.0328324,99.63845748],[4.53559069,0.03283066,99.63790578],[4.53559021,0.03282892,99.63735268],[4.53558973,0.03282718,99.63679821],[4.53558924,0.03282544,99.63624235],[4.53558876,0.03282371,99.63568514],[4.53558828,0.03282197,99.63512657],[4.5355878,0.03282023,99.63456665],[4.53558732,0.03281849,99.63400539],[4.53558684,0.03281676,99.63344281],[4.53558635,0.03281502,99.63287891],[4.53558587,0.03281328,99.63231371],[4.53558539,0.03281154,99.6317472],[4.53558491,0.03280981,99.63117941],[4.53558443,0.03280807,99.63061033],[4.53558395,0.03280633,99.63003998],[4.53558347,0.03280459,99.62946837],[4.53558299,0.03280286,99.62889551],[4.5355825,0.03280112,99.62832141],[4.53558202,0.03279938,99.62774608],[4.53558154,0.03279764,99.62716952],[4.53558106,0.03279591,99.62659174],[4.53558058,0.03279417,99.62601276],[4.5355801,0.03279243,99.62543259],[4.53557962,0.03279069,99.62485124],[4.53557914,0.03278896,99.62426874],[4.53557866,0.03278722,99.6236851],[4.53557818,0.03278548,99.62310034],[4.5355777,0.03278374,99.62251445],[4.53557722,0.032782,99.62192741],[4.53557674,0.03278027,99.62133922],[4.53557626,0.03277853,99.62074986],[4.53557577,0.03277679,99.62015933],[4.53557529,0.03277505,99.61956761],[4.53557481,0.03277331,99.6189747],[4.53557433,0.03277158,99.61838058],[4.53557386,0.03276984,99.61778524],[4.53557338,0.0327681,99.61718868],[4.5355729,0.03276636,99.61659088],[4.53557242,0.03276462,99.61599183],[4.53557194,0.03276289,99.61539152],[4.53557146,0.03276115,99.61478995],[4.53557098,0.03275941,99.6141871],[4.5355705,0.03275767,99.61358296],[4.53557002,0.03275593,99.61297753],[4.53556954,0.0327542,99.61237078],[4.53556906,0.03275246,99.61176272],[4.53556858,0.03275072,99.61115332],[4.5355681,0.03274898,99.61054259],[4.53556762,0.03274724,99.6099305],[4.53556714,0.03274551,99.60931706],[4.53556666,0.03274377,99.60870224],[4.53556618,0.03274203,99.60808605],[4.53556571,0.03274029,99.60746846],[4.53556523,0.03273855,99.60684947],[4.53556475,0.03273681,99.60622907],[4.53556427,0.03273508,99.60560724],[4.53556379,0.03273334,99.60498399],[4.53556331,0.0327316,99.60435929],[4.53556283,0.03272986,99.60373314],[4.53556235,0.03272812,99.60310552],[4.53556187,0.03272639,99.60247643],[4.53556139,0.03272465,99.60184586],[4.53556092,0.03272291,99.60121379],[4.53556044,0.03272117,99.60058021],[4.53555996,0.03271943,99.59994512],[4.53555948,0.03271769,99.59930851],[4.535559,0.03271596,99.59867036],[4.53555852,0.03271422,99.59803066],[4.53555804,0.03271248,99.59738941],[4.53555756,0.03271074,99.59674659],[4.53555708,0.032709,99.59610219],[4.5355566,0.03270726,99.5954562],[4.53555612,0.03270553,99.59480862],[4.53555565,0.03270379,99.59415942],[4.53555517,0.03270205,99.59350861],[4.53555469,0.03270031,99.59285617],[4.53555421,0.03269857,99.59220209],[4.53555373,0.03269684,99.59154636],[4.53555325,0.0326951,99.59088897],[4.53555277,0.03269336,99.59022991],[4.53555229,0.03269162,99.58956916],[4.53555181,0.03268988,99.58890673],[4.53555133,0.03268815,99.5882426],[4.53555085,0.03268641,99.58757675],[4.53555037,0.03268467,99.58690918],[4.53554989,0.03268293,99.58623988],[4.53554941,0.03268119,99.58556883],[4.53554893,0.03267946,99.58489603],[4.53554845,0.03267772,99.58422147],[4.53554797,0.03267598,99.58354513],[4.53554749,0.03267424,99.58286701],[4.53554701,0.0326725,99.58218708],[4.53554653,0.03267077,99.58150533],[4.53554605,0.03266903,99.58082173],[4.53554557,0.03266729,99.58013626],[4.53554509,0.03266555,99.5794489],[4.53554461,0.03266381,99.57875963],[4.53554413,0.03266208,99.57806842],[4.53554365,0.03266034,99.57737525],[4.53554317,0.0326586,99.57668012],[4.53554269,0.03265686,99.57598302],[4.53554221,0.03265513,99.57528397],[4.53554173,0.03265339,99.57458298],[4.53554125,0.03265165,99.57388003],[4.53554076,0.03264991,99.57317515],[4.53554028,0.03264818,99.57246833],[4.5355398,0.03264644,99.57175959],[4.53553932,0.0326447,99.57104892],[4.53553884,0.03264296,99.57033633],[4.53553836,0.03264123,99.56962183],[4.53553787,0.03263949,99.56890542],[4.53553739,0.03263775,99.56818711],[4.53553691,0.03263601,99.5674669],[4.53553643,0.03263428,99.5667448],[4.53553594,0.03263254,99.56602081],[4.53553546,0.0326308,99.56529495],[4.53553498,0.03262907,99.56456721],[4.5355345,0.03262733,99.56383759],[4.53553401,0.03262559,99.56310612],[4.53553353,0.03262385,99.56237278],[4.53553305,0.03262212,99.56163759],[4.53553257,0.03262038,99.56090055],[4.53553208,0.03261864,99.56016166],[4.5355316,0.03261691,99.55942094],[4.53553112,0.03261517,99.55867838],[4.53553063,0.03261343,99.557934],[4.53553015,0.03261169,99.55718779],[4.53552967,0.03260996,99.55643977],[4.53552918,0.03260822,99.55568994],[4.5355287,0.03260648,99.55493829],[4.53552822,0.03260475,99.55418485],[4.53552773,0.03260301,99.55342961],[4.53552725,0.03260127,99.55267259],[4.53552677,0.03259954,99.55191377],[4.53552628,0.0325978,99.55115318],[4.5355258,0.03259606,99.55039081],[4.53552532,0.03259433,99.54962668],[4.53552483,0.03259259,99.54886078],[4.53552435,0.03259085,99.54809312],[4.53552387,0.03258911,99.54732371],[4.53552338,0.03258738,99.54655255],[4.5355229,0.03258564,99.54577965],[4.53552242,0.0325839,99.54500501],[4.53552193,0.03258217,99.54422864],[4.53552145,0.03258043,99.54345054],[4.53552097,0.03257869,99.54267073],[4.53552048,0.03257696,99.54188919],[4.53552,0.03257522,99.54110595],[4.53551951,0.03257348,99.54032101],[4.53551903,0.03257175,99.53953439],[4.53551855,0.03257001,99.53874609],[4.53551806,0.03256827,99.53795613],[4.53551758,0.03256654,99.53716452],[4.5355171,0.0325648,99.53637127],[4.53551661,0.03256306,99.53557639],[4.53551613,0.03256132,99.5347799],[4.53551565,0.03255959,99.53398181],[4.53551516,0.03255785,99.53318213],[4.53551468,0.03255611,99.53238086],[4.5355142,0.03255438,99.53157803],[4.53551371,0.03255264,99.53077364],[4.53551323,0.0325509,99.52996771],[4.53551275,0.03254917,99.52916024],[4.53551226,0.03254743,99.52835125],[4.53551178,0.03254569,99.52754076],[4.5355113,0.03254396,99.52672876],[4.53551081,0.03254222,99.52591528],[4.53551033,0.03254048,99.52510033],[4.53550985,0.03253874,99.52428391],[4.53550936,0.03253701,99.52346604],[4.53550888,0.03253527,99.52264673],[4.5355084,0.03253353,99.52182599],[4.53550792,0.0325318,99.52100384],[4.53550743,0.03253006,99.52018028],[4.53550695,0.03252832,99.51935533],[4.53550647,0.03252658,99.518529],[4.53550599,0.03252485,99.5177013],[4.5355055,0.03252311,99.51687225],[4.53550502,0.03252137,99.51604183],[4.53550454,0.03251964,99.51521005],[4.53550406,0.0325179,99.51437691],[4.53550358,0.03251616,99.51354238],[4.53550309,0.03251442,99.51270648],[4.53550261,0.03251269,99.51186918],[4.53550213,0.03251095,99.51103048],[4.53550165,0.03250921,99.51019038],[4.53550117,0.03250747,99.50934886],[4.53550068,0.03250574,99.50850593],[4.5355002,0.032504,99.50766156],[4.53549972,0.03250226,99.50681577],[4.53549924,0.03250052,99.50596853],[4.53549876,0.03249879,99.50511984],[4.53549828,0.03249705,99.5042697],[4.5354978,0.03249531,99.50341809],[4.53549731,0.03249358,99.50256502],[4.53549683,0.03249184,99.50171047],[4.53549635,0.0324901,99.50085443],[4.53549587,0.03248836,99.49999691],[4.53549539,0.03248663,99.4991379],[4.53549491,0.03248489,99.49827741],[4.53549443,0.03248315,99.49741543],[4.53549394,0.03248141,99.49655198],[4.53549346,0.03247968,99.49568705],[4.53549298,0.03247794,99.49482065],[4.5354925,0.0324762,99.49395278],[4.53549202,0.03247446,99.49308344],[4.53549154,0.03247273,99.49221264],[4.53549106,0.03247099,99.49134037],[4.53549057,0.03246925,99.49046664],[4.53549009,0.03246751,99.48959146],[4.53548961,0.03246578,99.48871482],[4.53548913,0.03246404,99.48783673],[4.53548865,0.0324623,99.48695719],[4.53548817,0.03246056,99.4860762],[4.53548769,0.03245883,99.48519377],[4.53548721,0.03245709,99.4843099],[4.53548672,0.03245535,99.48342458],[4.53548624,0.03245361,99.48253784],[4.53548576,0.03245188,99.48164965],[4.53548528,0.03245014,99.48076004],[4.5354848,0.0324484,99.479869],[4.53548432,0.03244666,99.47897653],[4.53548384,0.03244493,99.47808264],[4.53548336,0.03244319,99.47718733],[4.53548287,0.03244145,99.4762906],[4.53548239,0.03243971,99.47539245],[4.53548191,0.03243798,99.47449289],[4.53548143,0.03243624,99.47359192],[4.53548095,0.0324345,99.47268953],[4.53548047,0.03243276,99.47178573],[4.53547999,0.03243103,99.47088053],[4.53547951,0.03242929,99.46997392],[4.53547902,0.03242755,99.46906591],[4.53547854,0.03242581,99.46815649],[4.53547806,0.03242408,99.46724567],[4.53547758,0.03242234,99.46633346],[4.5354771,0.0324206,99.46541985],[4.53547662,0.03241886,99.46450484],[4.53547614,0.03241713,99.46358844],[4.53547566,0.03241539,99.46267065],[4.53547517,0.03241365,99.46175147],[4.53547469,0.03241191,99.4608309],[4.53547421,0.03241018,99.45990895],[4.53547373,0.03240844,99.45898561],[4.53547325,0.0324067,99.45806089],[4.53547277,0.03240496,99.45713479],[4.53547229,0.03240323,99.45620731],[4.53547181,0.03240149,99.45527845],[4.53547132,0.03239975,99.45434822],[4.53547084,0.03239801,99.45341662],[4.53547036,0.03239628,99.45248364],[4.53546988,0.03239454,99.4515493],[4.5354694,0.0323928,99.45061359],[4.53546892,0.03239106,99.44967651],[4.53546844,0.03238933,99.44873807],[4.53546796,0.03238759,99.44779827],[4.53546747,0.03238585,99.4468571],[4.53546699,0.03238411,99.44591457],[4.53546651,0.03238238,99.44497066],[4.53546603,0.03238064,99.44402537],[4.53546555,0.0323789,99.44307869],[4.53546507,0.03237716,99.44213061],[4.53546459,0.03237543,99.44118112],[4.5354641,0.03237369,99.44023022],[4.53546362,0.03237195,99.4392779],[4.53546314,0.03237021,99.43832415],[4.53546266,0.03236848,99.43736897],[4.53546218,0.03236674,99.43641234],[4.5354617,0.032365,99.43545426],[4.53546121,0.03236327,99.43449473],[4.53546073,0.03236153,99.43353372],[4.53546025,0.03235979,99.43257125],[4.53545977,0.03235805,99.43160729],[4.53545929,0.03235632,99.43064184],[4.5354588,0.03235458,99.4296749],[4.53545832,0.03235284,99.42870646],[4.53545784,0.0323511,99.4277365],[4.53545736,0.03234937,99.42676503],[4.53545688,0.03234763,99.42579203],[4.53545639,0.03234589,99.42481749],[4.53545591,0.03234416,99.42384142],[4.53545543,0.03234242,99.4228638],[4.53545494,0.03234068,99.42188462],[4.53545446,0.03233895,99.42090388],[4.53545398,0.03233721,99.41992157],[4.5354535,0.03233547,99.41893768],[4.53545301,0.03233373,99.41795221],[4.53545253,0.032332,99.41696515],[4.53545205,0.03233026,99.41597648],[4.53545156,0.03232852,99.41498622],[4.53545108,0.03232679,99.41399436],[4.53545059,0.03232505,99.41300093],[4.53545011,0.03232331,99.41200594],[4.53544963,0.03232158,99.41100939],[4.53544914,0.03231984,99.4100113],[4.53544866,0.0323181,99.40901168],[4.53544817,0.03231637,99.40801055],[4.53544769,0.03231463,99.40700792],[4.5354472,0.03231289,99.40600379],[4.53544672,0.03231116,99.40499819],[4.53544624,0.03230942,99.40399112],[4.53544575,0.03230769,99.40298259],[4.53544527,0.03230595,99.40197263],[4.53544478,0.03230421,99.40096123],[4.5354443,0.03230248,99.39994842],[4.53544381,0.03230074,99.3989342],[4.53544333,0.032299,99.3979186],[4.53544284,0.03229727,99.39690161],[4.53544235,0.03229553,99.39588325],[4.53544187,0.03229379,99.39486356],[4.53544138,0.03229206,99.39384258],[4.5354409,0.03229032,99.39282037],[4.53544041,0.03228859,99.39179697],[4.53543993,0.03228685,99.39077244],[4.53543944,0.03228511,99.38974683],[4.53543896,0.03228338,99.38872018],[4.53543847,0.03228164,99.38769255],[4.53543799,0.0322799,99.38666396],[4.5354375,0.03227817,99.38563442],[4.53543702,0.03227643,99.38460389],[4.53543653,0.0322747,99.38357238],[4.53543605,0.03227296,99.38253987],[4.53543556,0.03227122,99.38150633],[4.53543508,0.03226949,99.38047177],[4.53543459,0.03226775,99.37943616],[4.53543411,0.03226601,99.37839949],[4.53543362,0.03226428,99.37736174],[4.53543314,0.03226254,99.37632291],[4.53543265,0.0322608,99.37528298],[4.53543217,0.03225907,99.37424194],[4.53543168,0.03225733,99.37319976],[4.5354312,0.0322556,99.37215645],[4.53543071,0.03225386,99.37111197],[4.53543023,0.03225212,99.37006633],[4.53542974,0.03225039,99.36901951],[4.53542926,0.03224865,99.36797149],[4.53542877,0.03224691,99.36692225],[4.53542829,0.03224518,99.3658718],[4.5354278,0.03224344,99.3648201],[4.53542732,0.03224171,99.36376716],[4.53542683,0.03223997,99.36271294],[4.53542635,0.03223823,99.36165745],[4.53542586,0.0322365,99.36060067],[4.53542537,0.03223476,99.35954258],[4.53542489,0.03223302,99.35848317],[4.5354244,0.03223129,99.35742243],[4.53542392,0.03222955,99.35636034],[4.53542343,0.03222782,99.35529689],[4.53542295,0.03222608,99.35423207],[4.53542246,0.03222434,99.35316586],[4.53542197,0.03222261,99.35209825],[4.53542149,0.03222087,99.35102922],[4.535421,0.03221914,99.34995876],[4.53542051,0.0322174,99.34888687],[4.53542003,0.03221566,99.34781352],[4.53541954,0.03221393,99.3467387],[4.53541905,0.03221219,99.3456624],[4.53541857,0.03221046,99.3445846],[4.53541808,0.03220872,99.34350529],[4.53541759,0.03220699,99.34242449],[4.5354171,0.03220525,99.34134221],[4.53541662,0.03220351,99.34025853],[4.53541613,0.03220178,99.33917347],[4.53541564,0.03220004,99.33808709],[4.53541515,0.03219831,99.33699942],[4.53541466,0.03219657,99.33591052],[4.53541418,0.03219484,99.33482044],[4.53541369,0.0321931,99.33372921],[4.5354132,0.03219137,99.33263688],[4.53541271,0.03218963,99.3315435],[4.53541222,0.03218789,99.33044911],[4.53541173,0.03218616,99.32935377],[4.53541125,0.03218442,99.3282575],[4.53541076,0.03218269,99.32716036],[4.53541027,0.03218095,99.32606233],[4.53540978,0.03217922,99.32496342],[4.53540929,0.03217748,99.32386361],[4.5354088,0.03217575,99.3227629],[4.53540832,0.03217401,99.32166129],[4.53540783,0.03217228,99.32055875],[4.53540734,0.03217054,99.31945528],[4.53540685,0.0321688,99.31835088],[4.53540636,0.03216707,99.31724554],[4.53540588,0.03216533,99.31613925],[4.53540539,0.0321636,99.315032],[4.5354049,0.03216186,99.31392379],[4.53540441,0.03216013,99.3128146],[4.53540392,0.03215839,99.31170443],[4.53540343,0.03215666,99.31059327],[4.53540295,0.03215492,99.30948112],[4.53540246,0.03215319,99.30836796],[4.53540197,0.03215145,99.30725379],[4.53540148,0.03214971,99.3061386],[4.53540099,0.03214798,99.30502238],[4.53540051,0.03214624,99.30390512],[4.53540002,0.03214451,99.30278682],[4.53539953,0.03214277,99.30166747],[4.53539904,0.03214104,99.30054706],[4.53539855,0.0321393,99.29942559],[4.53539806,0.03213757,99.29830304],[4.53539757,0.03213583,99.2971794],[4.53539709,0.0321341,99.29605468],[4.5353966,0.03213236,99.29492886],[4.53539611,0.03213063,99.29380193],[4.53539562,0.03212889,99.29267389],[4.53539513,0.03212715,99.29154473],[4.53539464,0.03212542,99.29041444],[4.53539415,0.03212368,99.28928302],[4.53539366,0.03212195,99.28815045],[4.53539317,0.03212021,99.28701673],[4.53539268,0.03211848,99.28588185],[4.5353922,0.03211674,99.2847458],[4.53539171,0.03211501,99.28360858],[4.53539122,0.03211327,99.28247017],[4.53539073,0.03211154,99.28133059],[4.53539024,0.0321098,99.28018984],[4.53538975,0.03210807,99.27904798],[4.53538926,0.03210633,99.27790501],[4.53538877,0.0321046,99.27676095],[4.53538828,0.03210286,99.27561582],[4.53538779,0.03210113,99.27446963],[4.5353873,0.03209939,99.27332239],[4.53538681,0.03209766,99.27217412],[4.53538631,0.03209592,99.27102484],[4.53538582,0.03209419,99.26987455],[4.53538533,0.03209246,99.26872327],[4.53538484,0.03209072,99.26757101],[4.53538435,0.03208899,99.26641779],[4.53538386,0.03208725,99.26526363],[4.53538337,0.03208552,99.26410853],[4.53538288,0.03208378,99.26295251],[4.53538239,0.03208205,99.26179558],[4.5353819,0.03208031,99.26063777],[4.53538141,0.03207858,99.25947907],[4.53538092,0.03207684,99.25831951],[4.53538043,0.03207511,99.2571591],[4.53537994,0.03207337,99.25599786],[4.53537944,0.03207164,99.25483579],[4.53537895,0.0320699,99.25367292],[4.53537846,0.03206817,99.25250925],[4.53537797,0.03206643,99.2513448],[4.53537748,0.0320647,99.25017958],[4.53537699,0.03206296,99.24901361],[4.5353765,0.03206123,99.24784691],[4.53537601,0.0320595,99.24667947],[4.53537552,0.03205776,99.24551133],[4.53537503,0.03205603,99.24434249],[4.53537454,0.03205429,99.24317297],[4.53537405,0.03205256,99.24200278],[4.53537356,0.03205082,99.24083194],[4.53537306,0.03204909,99.23966045],[4.53537257,0.03204735,99.23848834],[4.53537208,0.03204562,99.23731562],[4.53537159,0.03204388,99.23614229],[4.5353711,0.03204215,99.23496838],[4.53537061,0.03204041,99.2337939],[4.53537012,0.03203868,99.23261887],[4.53536963,0.03203694,99.23144329],[4.53536914,0.03203521,99.23026718],[4.53536865,0.03203347,99.22909055],[4.53536816,0.03203174,99.22791342],[4.53536767,0.03203,99.22673581],[4.53536718,0.03202827,99.22555772],[4.53536669,0.03202653,99.22437917],[4.5353662,0.0320248,99.22320018],[4.53536571,0.03202306,99.22202076],[4.53536522,0.03202133,99.22084092],[4.53536474,0.03201959,99.21966067],[4.53536425,0.03201786,99.21848004],[4.53536376,0.03201612,99.21729903],[4.53536327,0.03201439,99.21611765],[4.53536278,0.03201265,99.21493591],[4.53536229,0.03201092,99.2137538],[4.5353618,0.03200918,99.21257131],[4.53536131,0.03200745,99.21138844],[4.53536083,0.03200571,99.21020517],[4.53536034,0.03200397,99.20902151],[4.53535985,0.03200224,99.20783744],[4.53535936,0.0320005,99.20665296],[4.53535887,0.03199877,99.20546806],[4.53535839,0.03199703,99.20428274],[4.5353579,0.0319953,99.20309699],[4.53535741,0.03199356,99.2019108],[4.53535692,0.03199183,99.20072417],[4.53535643,0.03199009,99.19953709],[4.53535595,0.03198835,99.19834955],[4.53535546,0.03198662,99.19716155],[4.53535497,0.03198488,99.19597308],[4.53535448,0.03198315,99.19478414],[4.535354,0.03198141,99.19359471],[4.53535351,0.03197968,99.19240479],[4.53535302,0.03197794,99.19121438],[4.53535254,0.0319762,99.19002347],[4.53535205,0.03197447,99.18883205],[4.53535156,0.03197273,99.18764012],[4.53535107,0.031971,99.18644766],[4.53535059,0.03196926,99.18525468],[4.5353501,0.03196753,99.18406116],[4.53534961,0.03196579,99.18286711],[4.53534913,0.03196405,99.1816725],[4.53534864,0.03196232,99.18047735],[4.53534815,0.03196058,99.17928163],[4.53534766,0.03195885,99.17808535],[4.53534718,0.03195711,99.17688849],[4.53534669,0.03195537,99.17569106],[4.5353462,0.03195364,99.17449303],[4.53534572,0.0319519,99.17329441],[4.53534523,0.03195017,99.17209518],[4.53534474,0.03194843,99.17089533],[4.53534425,0.0319467,99.16969486],[4.53534377,0.03194496,99.16849375],[4.53534328,0.03194322,99.167292],[4.53534279,0.03194149,99.1660896],[4.53534231,0.03193975,99.16488653],[4.53534182,0.03193802,99.1636828],[4.53534133,0.03193628,99.16247838],[4.53534084,0.03193455,99.16127328],[4.53534036,0.03193281,99.16006748],[4.53533987,0.03193107,99.15886098],[4.53533938,0.03192934,99.15765376],[4.53533889,0.0319276,99.15644582],[4.5353384,0.03192587,99.15523714],[4.53533792,0.03192413,99.15402772],[4.53533743,0.0319224,99.15281755],[4.53533694,0.03192066,99.15160662],[4.53533645,0.03191893,99.15039493],[4.53533596,0.03191719,99.14918249],[4.53533547,0.03191545,99.14796931],[4.53533499,0.03191372,99.1467554],[4.5353345,0.03191198,99.14554076],[4.53533401,0.03191025,99.14432541],[4.53533352,0.03190851,99.14310935],[4.53533303,0.03190678,99.1418926],[4.53533254,0.03190504,99.14067516],[4.53533205,0.03190331,99.13945704],[4.53533156,0.03190157,99.13823826],[4.53533107,0.03189984,99.13701881],[4.53533058,0.0318981,99.13579872],[4.53533009,0.03189637,99.13457798],[4.5353296,0.03189463,99.13335661],[4.53532912,0.0318929,99.13213462],[4.53532863,0.03189116,99.13091202],[4.53532814,0.03188943,99.12968881],[4.53532765,0.03188769,99.128465],[4.53532716,0.03188596,99.12724061],[4.53532667,0.03188422,99.12601565],[4.53532618,0.03188249,99.12479011],[4.53532568,0.03188075,99.12356402],[4.53532519,0.03187902,99.12233738],[4.5353247,0.03187728,99.1211102],[4.53532421,0.03187555,99.11988248],[4.53532372,0.03187381,99.11865425],[4.53532323,0.03187208,99.1174255],[4.53532274,0.03187034,99.11619625],[4.53532225,0.03186861,99.1149665],[4.53532176,0.03186687,99.11373627],[4.53532127,0.03186514,99.11250556],[4.53532078,0.0318634,99.11127439],[4.53532029,0.03186167,99.11004276],[4.5353198,0.03185994,99.10881068],[4.53531931,0.0318582,99.10757816],[4.53531882,0.03185647,99.10634522],[4.53531832,0.03185473,99.10511185],[4.53531783,0.031853,99.10387807],[4.53531734,0.03185126,99.10264389],[4.53531685,0.03184953,99.10140931],[4.53531636,0.03184779,99.10017435],[4.53531587,0.03184606,99.09893902],[4.53531538,0.03184432,99.09770332],[4.53531488,0.03184259,99.09646727],[4.53531439,0.03184085,99.09523086],[4.5353139,0.03183912,99.09399412],[4.53531341,0.03183739,99.09275706],[4.53531292,0.03183565,99.09151967],[4.53531243,0.03183392,99.09028197],[4.53531194,0.03183218,99.08904397],[4.53531144,0.03183045,99.08780568],[4.53531095,0.03182871,99.08656711],[4.53531046,0.03182698,99.08532827],[4.53530997,0.03182524,99.08408916],[4.53530948,0.03182351,99.0828498],[4.53530899,0.03182177,99.08161019],[4.53530849,0.03182004,99.08037035],[4.535308,0.03181831,99.07913028],[4.53530751,0.03181657,99.07788999],[4.53530702,0.03181484,99.07664949],[4.53530653,0.0318131,99.0754088],[4.53530603,0.03181137,99.07416792],[4.53530554,0.03180963,99.07292685],[4.53530505,0.0318079,99.07168562],[4.53530456,0.03180616,99.07044422],[4.53530407,0.03180443,99.06920267],[4.53530358,0.0318027,99.06796098],[4.53530308,0.03180096,99.06671915],[4.53530259,0.03179923,99.0654772],[4.5353021,0.03179749,99.06423513],[4.53530161,0.03179576,99.06299296],[4.53530112,0.03179402,99.06175071],[4.53530062,0.03179229,99.06050838],[4.53530013,0.03179055,99.059266],[4.53529964,0.03178882,99.05802358],[4.53529915,0.03178709,99.05678115],[4.53529866,0.03178535,99.05553871],[4.53529817,0.03178362,99.05429628],[4.53529767,0.03178188,99.05305389],[4.53529718,0.03178015,99.05181154],[4.53529669,0.03177841,99.05056926],[4.5352962,0.03177668,99.04932706],[4.53529571,0.03177494,99.04808496],[4.53529522,0.03177321,99.04684297],[4.53529472,0.03177147,99.04560112],[4.53529423,0.03176974,99.04435941],[4.53529374,0.03176801,99.04311787],[4.53529325,0.03176627,99.04187652],[4.53529276,0.03176454,99.04063537],[4.53529227,0.0317628,99.03939443],[4.53529178,0.03176107,99.03815372],[4.53529129,0.03175933,99.03691323],[4.5352908,0.0317576,99.03567296],[4.53529031,0.03175586,99.03443292],[4.53528981,0.03175413,99.0331931],[4.53528932,0.03175239,99.0319535],[4.53528883,0.03175066,99.03071411],[4.53528834,0.03174892,99.02947495],[4.53528785,0.03174719,99.028236],[4.53528736,0.03174545,99.02699726],[4.53528687,0.03174372,99.02575874],[4.53528638,0.03174198,99.02452043],[4.53528589,0.03174025,99.02328234],[4.5352854,0.03173851,99.02204445],[4.53528491,0.03173678,99.02080678],[4.53528442,0.03173504,99.01956931],[4.53528393,0.03173331,99.01833205],[4.53528344,0.03173157,99.017095],[4.53528295,0.03172984,99.01585815],[4.53528246,0.0317281,99.0146215],[4.53528197,0.03172637,99.01338506],[4.53528148,0.03172463,99.01214882],[4.53528099,0.0317229,99.01091278],[4.5352805,0.03172116,99.00967694],[4.53528001,0.03171943,99.00844129],[4.53527952,0.03171769,99.00720585],[4.53527903,0.03171596,99.0059706],[4.53527855,0.03171422,99.00473554],[4.53527806,0.03171249,99.00350068],[4.53527757,0.03171075,99.002266],[4.53527708,0.03170902,99.00103152],[4.53527659,0.03170728,98.99979723],[4.5352761,0.03170555,98.99856313],[4.53527561,0.03170381,98.99732921],[4.53527512,0.03170208,98.99609548],[4.53527463,0.03170034,98.99486193],[4.53527414,0.03169861,98.99362857],[4.53527365,0.03169687,98.99239539],[4.53527316,0.03169514,98.99116239],[4.53527267,0.0316934,98.98992957],[4.53527218,0.03169167,98.98869692],[4.53527169,0.03168993,98.98746446],[4.5352712,0.0316882,98.98623217],[4.53527071,0.03168646,98.98500005],[4.53527023,0.03168473,98.98376811],[4.53526974,0.03168299,98.98253634],[4.53526925,0.03168125,98.98130474],[4.53526876,0.03167952,98.98007331],[4.53526827,0.03167778,98.97884205],[4.53526778,0.03167605,98.97761096],[4.53526729,0.03167431,98.97638003],[4.5352668,0.03167258,98.97514926],[4.53526631,0.03167084,98.97391866],[4.53526582,0.03166911,98.97268822],[4.53526533,0.03166737,98.97145794],[4.53526484,0.03166564,98.97022782],[4.53526435,0.0316639,98.96899786],[4.53526386,0.03166217,98.96776805],[4.53526337,0.03166043,98.9665384],[4.53526288,0.0316587,98.96530891],[4.53526239,0.03165696,98.96407956],[4.5352619,0.03165523,98.96285037],[4.53526141,0.03165349,98.96162133],[4.53526092,0.03165176,98.96039244],[4.53526043,0.03165002,98.95916369],[4.53525994,0.03164829,98.95793509],[4.53525945,0.03164655,98.95670664],[4.53525896,0.03164482,98.95547833],[4.53525847,0.03164308,98.95425016],[4.53525798,0.03164135,98.95302212],[4.53525749,0.03163961,98.95179421],[4.535257,0.03163788,98.95056639],[4.53525651,0.03163614,98.94933867],[4.53525602,0.03163441,98.94811103],[4.53525553,0.03163267,98.94688345],[4.53525504,0.03163094,98.94565592],[4.53525455,0.0316292,98.94442843],[4.53525406,0.03162747,98.94320099],[4.53525357,0.03162573,98.94197359],[4.53525308,0.031624,98.94074626],[4.53525259,0.03162226,98.939519],[4.5352521,0.03162053,98.93829181],[4.5352516,0.0316188,98.9370647],[4.53525111,0.03161706,98.93583768],[4.53525062,0.03161533,98.93461076],[4.53525013,0.03161359,98.93338395],[4.53524964,0.03161186,98.93215725],[4.53524915,0.03161012,98.93093066],[4.53524865,0.03160839,98.92970421],[4.53524816,0.03160665,98.92847789],[4.53524767,0.03160492,98.92725172],[4.53524718,0.03160319,98.9260257],[4.53524669,0.03160145,98.92479983],[4.53524619,0.03159972,98.92357413],[4.5352457,0.03159798,98.92234861],[4.53524521,0.03159625,98.92112327],[4.53524472,0.03159451,98.91989811],[4.53524422,0.03159278,98.91867316],[4.53524373,0.03159104,98.91744841],[4.53524324,0.03158931,98.91622386],[4.53524274,0.03158758,98.91499954],[4.53524225,0.03158584,98.91377545],[4.53524176,0.03158411,98.91255159],[4.53524127,0.03158237,98.91132798],[4.53524077,0.03158064,98.91010461],[4.53524028,0.03157891,98.9088815],[4.53523979,0.03157717,98.90765866],[4.53523929,0.03157544,98.90643609],[4.5352388,0.0315737,98.90521381],[4.53523831,0.03157197,98.90399181],[4.53523781,0.03157024,98.90277011],[4.53523732,0.0315685,98.90154871],[4.53523682,0.03156677,98.90032762],[4.53523633,0.03156503,98.89910685],[4.53523584,0.0315633,98.89788641],[4.53523534,0.03156157,98.8966663],[4.53523485,0.03155983,98.89544654],[4.53523436,0.0315581,98.89422713],[4.53523386,0.03155636,98.89300807],[4.53523337,0.03155463,98.89178938],[4.53523287,0.0315529,98.89057106],[4.53523238,0.03155116,98.88935312],[4.53523188,0.03154943,98.88813557],[4.53523139,0.0315477,98.88691842],[4.5352309,0.03154596,98.88570167],[4.5352304,0.03154423,98.88448533],[4.53522991,0.03154249,98.88326942],[4.53522941,0.03154076,98.88205392],[4.53522892,0.03153903,98.88083887],[4.53522842,0.03153729,98.87962425],[4.53522793,0.03153556,98.87841008],[4.53522743,0.03153383,98.87719635],[4.53522694,0.03153209,98.87598308],[4.53522644,0.03153036,98.87477026],[4.53522595,0.03152863,98.87355789],[4.53522545,0.03152689,98.87234599],[4.53522496,0.03152516,98.87113455],[4.53522446,0.03152342,98.86992359],[4.53522397,0.03152169,98.86871314],[4.53522347,0.03151996,98.8675032],[4.53522298,0.03151822,98.86629381],[4.53522248,0.03151649,98.86508495],[4.53522199,0.03151476,98.86387662],[4.53522149,0.03151302,98.86266883],[4.535221,0.03151129,98.86146158],[4.5352205,0.03150956,98.86025486],[4.53522001,0.03150783,98.85904868],[4.53521951,0.03150609,98.85784303],[4.53521902,0.03150436,98.85663793],[4.53521852,0.03150263,98.85543335],[4.53521803,0.03150089,98.85422932],[4.53521753,0.03149916,98.85302582],[4.53521703,0.03149743,98.85182287],[4.53521654,0.03149569,98.85062044],[4.53521604,0.03149396,98.84941856],[4.53521555,0.03149223,98.84821721],[4.53521505,0.03149049,98.84701641],[4.53521456,0.03148876,98.84581614],[4.53521406,0.03148703,98.84461641],[4.53521357,0.03148529,98.84341721],[4.53521307,0.03148356,98.84221856],[4.53521257,0.03148183,98.84102045],[4.53521208,0.03148009,98.83982287],[4.53521158,0.03147836,98.83862584],[4.53521109,0.03147663,98.83742934],[4.53521059,0.03147489,98.83623339],[4.5352101,0.03147316,98.83503797],[4.5352096,0.03147143,98.83384309],[4.53520911,0.03146969,98.83264876],[4.53520861,0.03146796,98.83145496],[4.53520811,0.03146623,98.83026169],[4.53520762,0.03146449,98.82906896],[4.53520712,0.03146276,98.82787676],[4.53520663,0.03146103,98.82668508],[4.53520613,0.03145929,98.82549393],[4.53520563,0.03145756,98.8243033],[4.53520514,0.03145583,98.82311319],[4.53520464,0.03145409,98.82192359],[4.53520415,0.03145236,98.82073451],[4.53520365,0.03145063,98.81954594],[4.53520315,0.03144889,98.81835788],[4.53520266,0.03144716,98.81717033],[4.53520216,0.03144543,98.8159833],[4.53520167,0.03144369,98.8147968],[4.53520117,0.03144196,98.81361082],[4.53520067,0.03144023,98.81242538],[4.53520018,0.03143849,98.81124047],[4.53519968,0.03143676,98.81005611],[4.53519919,0.03143503,98.8088723],[4.53519869,0.03143329,98.80768904],[4.53519819,0.03143156,98.80650635],[4.5351977,0.03142983,98.80532421],[4.5351972,0.03142809,98.80414264],[4.5351967,0.03142636,98.80296165],[4.53519621,0.03142463,98.80178123],[4.53519571,0.03142289,98.80060139],[4.53519522,0.03142116,98.79942214],[4.53519472,0.03141943,98.79824349],[4.53519422,0.03141769,98.79706543],[4.53519373,0.03141596,98.79588797],[4.53519323,0.03141423,98.79471112],[4.53519274,0.03141249,98.79353488],[4.53519224,0.03141076,98.79235926],[4.53519174,0.03140903,98.79118425],[4.53519125,0.03140729,98.79000987],[4.53519075,0.03140556,98.78883612],[4.53519026,0.03140383,98.78766301],[4.53518976,0.03140209,98.78649053],[4.53518927,0.03140036,98.7853187],[4.53518877,0.03139863,98.78414751],[4.53518827,0.03139689,98.78297697],[4.53518778,0.03139516,98.7818071],[4.53518728,0.03139343,98.78063788],[4.53518679,0.03139169,98.77946932],[4.53518629,0.03138996,98.77830142],[4.5351858,0.03138823,98.77713415],[4.5351853,0.03138649,98.77596748],[4.53518481,0.03138476,98.77480141],[4.53518431,0.03138303,98.7736359],[4.53518382,0.03138129,98.77247095],[4.53518332,0.03137956,98.77130652],[4.53518283,0.03137783,98.7701426],[4.53518233,0.03137609,98.76897916],[4.53518184,0.03137436,98.7678162],[4.53518134,0.03137263,98.76665368],[4.53518085,0.03137089,98.76549159],[4.53518035,0.03136916,98.76432991],[4.53517986,0.03136743,98.76316863],[4.53517936,0.03136569,98.76200774],[4.53517887,0.03136396,98.76084724],[4.53517837,0.03136222,98.75968712],[4.53517788,0.03136049,98.75852738],[4.53517738,0.03135876,98.757368],[4.53517689,0.03135702,98.75620899],[4.53517639,0.03135529,98.75505033],[4.53517589,0.03135356,98.75389203],[4.5351754,0.03135182,98.75273406],[4.5351749,0.03135009,98.75157644],[4.53517441,0.03134836,98.75041914],[4.53517391,0.03134662,98.74926217],[4.53517342,0.03134489,98.74810551],[4.53517292,0.03134316,98.74694917],[4.53517243,0.03134142,98.74579314],[4.53517193,0.03133969,98.7446374],[4.53517143,0.03133796,98.74348196],[4.53517094,0.03133622,98.7423268],[4.53517044,0.03133449,98.74117192],[4.53516995,0.03133276,98.74001732],[4.53516945,0.03133102,98.73886299],[4.53516896,0.03132929,98.73770892],[4.53516846,0.03132756,98.73655511],[4.53516796,0.03132582,98.73540154],[4.53516747,0.03132409,98.73424822],[4.53516697,0.03132236,98.73309514],[4.53516648,0.03132062,98.73194229],[4.53516598,0.03131889,98.73078966],[4.53516548,0.03131716,98.72963726],[4.53516499,0.03131542,98.72848507],[4.53516449,0.03131369,98.72733308],[4.53516399,0.03131196,98.7261813],[4.5351635,0.03131023,98.72502972],[4.535163,0.03130849,98.72387832],[4.5351625,0.03130676,98.72272711],[4.53516201,0.03130503,98.72157607],[4.53516151,0.03130329,98.72042521],[4.53516101,0.03130156,98.71927451],[4.53516052,0.03129983,98.71812398],[4.53516002,0.03129809,98.71697359],[4.53515952,0.03129636,98.71582336],[4.53515903,0.03129463,98.71467327],[4.53515853,0.0312929,98.71352331],[4.53515803,0.03129116,98.71237349],[4.53515753,0.03128943,98.71122379],[4.53515704,0.0312877,98.71007421],[4.53515654,0.03128596,98.70892474],[4.53515604,0.03128423,98.70777538],[4.53515554,0.0312825,98.70662613],[4.53515505,0.03128077,98.70547697],[4.53515455,0.03127903,98.7043279],[4.53515405,0.0312773,98.70317891],[4.53515355,0.03127557,98.70203001],[4.53515305,0.03127383,98.70088118],[4.53515255,0.0312721,98.69973245],[4.53515206,0.03127037,98.69858385],[4.53515156,0.03126864,98.69743542],[4.53515106,0.0312669,98.6962872],[4.53515056,0.03126517,98.69513922],[4.53515006,0.03126344,98.69399152],[4.53514956,0.03126171,98.69284413],[4.53514907,0.03125997,98.69169708],[4.53514857,0.03125824,98.69055042],[4.53514807,0.03125651,98.68940416],[4.53514757,0.03125478,98.68825832],[4.53514707,0.03125304,98.68711288],[4.53514657,0.03125131,98.68596784],[4.53514608,0.03124958,98.68482319],[4.53514558,0.03124785,98.68367894],[4.53514508,0.03124611,98.68253506],[4.53514458,0.03124438,98.68139157],[4.53514408,0.03124265,98.68024845],[4.53514359,0.03124092,98.6791057],[4.53514309,0.03123918,98.67796331],[4.53514259,0.03123745,98.67682129],[4.53514209,0.03123572,98.67567961],[4.53514159,0.03123398,98.67453828],[4.5351411,0.03123225,98.6733973],[4.5351406,0.03123052,98.67225665],[4.5351401,0.03122879,98.67111633],[4.5351396,0.03122705,98.66997634],[4.5351391,0.03122532,98.66883668],[4.53513861,0.03122359,98.66769733],[4.53513811,0.03122186,98.66655829],[4.53513761,0.03122012,98.66541956],[4.53513711,0.03121839,98.66428113],[4.53513662,0.03121666,98.663143],[4.53513612,0.03121492,98.66200516],[4.53513562,0.03121319,98.66086761],[4.53513512,0.03121146,98.65973034],[4.53513463,0.03120973,98.65859334],[4.53513413,0.03120799,98.65745661],[4.53513363,0.03120626,98.65632016],[4.53513313,0.03120453,98.65518396],[4.53513263,0.03120279,98.65404802],[4.53513214,0.03120106,98.65291233],[4.53513164,0.03119933,98.65177689],[4.53513114,0.0311976,98.65064169],[4.53513064,0.03119586,98.64950672],[4.53513015,0.03119413,98.64837199],[4.53512965,0.0311924,98.64723748],[4.53512915,0.03119067,98.64610319],[4.53512866,0.03118893,98.64496912],[4.53512816,0.0311872,98.64383527],[4.53512766,0.03118547,98.64270161],[4.53512716,0.03118373,98.64156816],[4.53512667,0.031182,98.64043491],[4.53512617,0.03118027,98.63930185],[4.53512567,0.03117854,98.63816898],[4.53512517,0.0311768,98.63703629],[4.53512468,0.03117507,98.63590375],[4.53512418,0.03117334,98.63477129],[4.53512368,0.0311716,98.63363882],[4.53512318,0.03116987,98.63250627],[4.53512269,0.03116814,98.63137361],[4.53512219,0.03116641,98.63024081],[4.53512169,0.03116467,98.6291079],[4.53512119,0.03116294,98.62797487],[4.53512069,0.03116121,98.62684172],[4.5351202,0.03115947,98.62570846],[4.5351197,0.03115774,98.62457508],[4.5351192,0.03115601,98.62344158],[4.5351187,0.03115428,98.62230797],[4.5351182,0.03115254,98.62117425],[4.5351177,0.03115081,98.62004043],[4.5351172,0.03114908,98.61890649],[4.5351167,0.03114735,98.61777244],[4.53511621,0.03114562,98.61663829],[4.53511571,0.03114388,98.61550403],[4.53511521,0.03114215,98.61436967],[4.53511471,0.03114042,98.61323521],[4.53511421,0.03113869,98.61210064],[4.53511371,0.03113695,98.61096598],[4.53511321,0.03113522,98.60983121],[4.53511271,0.03113349,98.60869635],[4.53511221,0.03113176,98.60756139],[4.53511171,0.03113002,98.60642633],[4.53511121,0.03112829,98.60529118],[4.53511071,0.03112656,98.60415593],[4.53511021,0.03112483,98.60302059],[4.53510971,0.0311231,98.60188517],[4.53510921,0.03112136,98.60074965],[4.53510871,0.03111963,98.59961404],[4.53510821,0.0311179,98.59847834],[4.53510771,0.03111617,98.59734255],[4.53510721,0.03111444,98.59620668],[4.53510671,0.0311127,98.59507072],[4.53510621,0.03111097,98.59393468],[4.5351057,0.03110924,98.59279855],[4.5351052,0.03110751,98.59166234],[4.5351047,0.03110578,98.59052605],[4.5351042,0.03110405,98.58938967],[4.5351037,0.03110231,98.58825322],[4.5351032,0.03110058,98.58711669],[4.5351027,0.03109885,98.58598008],[4.5351022,0.03109712,98.58484339],[4.5351017,0.03109539,98.58370662],[4.53510119,0.03109366,98.58256981],[4.53510069,0.03109192,98.58143303],[4.53510019,0.03109019,98.58029637],[4.53509969,0.03108846,98.5791599],[4.53509919,0.03108673,98.57802364],[4.53509869,0.031085,98.57688758],[4.53509819,0.03108326,98.57575171],[4.53509769,0.03108153,98.57461604],[4.53509718,0.0310798,98.57348056],[4.53509668,0.03107807,98.57234526],[4.53509618,0.03107634,98.57121014],[4.53509568,0.03107461,98.5700752],[4.53509518,0.03107287,98.56894043],[4.53509468,0.03107114,98.56780583],[4.53509418,0.03106941,98.56667139],[4.53509368,0.03106768,98.56553712],[4.53509318,0.03106595,98.564403],[4.53509268,0.03106421,98.56326904],[4.53509218,0.03106248,98.56213522],[4.53509168,0.03106075,98.56100155],[4.53509118,0.03105902,98.55986803],[4.53509068,0.03105729,98.55873464],[4.53509018,0.03105555,98.55760138],[4.53508968,0.03105382,98.55646825],[4.53508918,0.03105209,98.55533525],[4.53508868,0.03105036,98.55420237],[4.53508818,0.03104863,98.55306961],[4.53508768,0.03104689,98.55193697],[4.53508718,0.03104516,98.55080443],[4.53508668,0.03104343,98.549672],[4.53508618,0.0310417,98.54853967],[4.53508568,0.03103997,98.54740745],[4.53508518,0.03103823,98.54627531],[4.53508468,0.0310365,98.54514327],[4.53508418,0.03103477,98.54401132],[4.53508368,0.03103304,98.54287945],[4.53508318,0.0310313,98.54174766],[4.53508268,0.03102957,98.54061595],[4.53508218,0.03102784,98.5394843],[4.53508168,0.03102611,98.53835273],[4.53508118,0.03102438,98.53722122],[4.53508068,0.03102264,98.53608978],[4.53508018,0.03102091,98.53495839],[4.53507968,0.03101918,98.53382705],[4.53507918,0.03101745,98.53269577],[4.53507868,0.03101571,98.53156453],[4.53507818,0.03101398,98.53043333],[4.53507768,0.03101225,98.52930217],[4.53507719,0.03101052,98.52817105],[4.53507669,0.03100878,98.52703996],[4.53507619,0.03100705,98.52590889],[4.53507569,0.03100532,98.52477785],[4.53507519,0.03100359,98.52364683],[4.53507469,0.03100185,98.52251583],[4.53507419,0.03100012,98.52138483],[4.53507369,0.03099839,98.52025385],[4.53507319,0.03099666,98.51912288],[4.5350727,0.03099492,98.5179919],[4.5350722,0.03099319,98.51686093],[4.5350717,0.03099146,98.51572995],[4.5350712,0.03098973,98.51459896],[4.5350707,0.03098799,98.51346795],[4.5350702,0.03098626,98.51233694],[4.5350697,0.03098453,98.5112059],[4.53506921,0.0309828,98.51007484],[4.53506871,0.03098106,98.50894375],[4.53506821,0.03097933,98.50781263],[4.53506771,0.0309776,98.50668148],[4.53506721,0.03097587,98.50555029],[4.53506671,0.03097413,98.50441905],[4.53506622,0.0309724,98.50328775],[4.53506572,0.03097067,98.50215631],[4.53506522,0.03096894,98.50102465],[4.53506472,0.0309672,98.49989268],[4.53506422,0.03096547,98.49876034],[4.53506372,0.03096374,98.49762758],[4.53506323,0.03096201,98.49649442],[4.53506273,0.03096027,98.49536087],[4.53506223,0.03095854,98.49422694],[4.53506173,0.03095681,98.49309264],[4.53506123,0.03095508,98.49195798],[4.53506073,0.03095334,98.49082297],[4.53506023,0.03095161,98.48968763],[4.53505973,0.03094988,98.48855196],[4.53505923,0.03094815,98.48741598],[4.53505873,0.03094642,98.48627968],[4.53505823,0.03094468,98.4851431],[4.53505773,0.03094295,98.48400623],[4.53505723,0.03094122,98.48286909],[4.53505673,0.03093949,98.48173169],[4.53505623,0.03093775,98.48059403],[4.53505573,0.03093602,98.47945614],[4.53505524,0.03093429,98.47831801],[4.53505474,0.03093256,98.47717966],[4.53505424,0.03093083,98.4760411],[4.53505374,0.03092909,98.47490235],[4.53505324,0.03092736,98.4737634],[4.53505274,0.03092563,98.47262427],[4.53505224,0.0309239,98.47148498],[4.53505174,0.03092216,98.47034552],[4.53505124,0.03092043,98.46920592],[4.53505074,0.0309187,98.46806618],[4.53505024,0.03091697,98.46692631],[4.53504974,0.03091524,98.46578632],[4.53504924,0.0309135,98.46464623],[4.53504874,0.03091177,98.46350603],[4.53504824,0.03091004,98.46236575],[4.53504774,0.03090831,98.46122539],[4.53504724,0.03090657,98.46008497],[4.53504674,0.03090484,98.45894449],[4.53504624,0.03090311,98.45780395],[4.53504574,0.03090138,98.45666339],[4.53504524,0.03089965,98.45552279],[4.53504474,0.03089791,98.45438217],[4.53504425,0.03089618,98.45324154],[4.53504375,0.03089445,98.45210085],[4.53504325,0.03089272,98.45096005],[4.53504275,0.03089098,98.44981908],[4.53504225,0.03088925,98.4486779],[4.53504175,0.03088752,98.44753646],[4.53504125,0.03088579,98.44639471],[4.53504075,0.03088405,98.44525266],[4.53504026,0.03088232,98.44411029],[4.53503976,0.03088059,98.4429676],[4.53503926,0.03087886,98.4418246],[4.53503876,0.03087712,98.44068126],[4.53503826,0.03087539,98.4395376],[4.53503776,0.03087366,98.43839361],[4.53503726,0.03087193,98.43724928],[4.53503676,0.03087019,98.4361046],[4.53503626,0.03086846,98.43495958],[4.53503576,0.03086673,98.43381422],[4.53503527,0.030865,98.43266849],[4.53503477,0.03086326,98.43152241],[4.53503427,0.03086153,98.43037597],[4.53503377,0.0308598,98.42922916],[4.53503327,0.03085807,98.42808199],[4.53503277,0.03085633,98.42693443],[4.53503227,0.0308546,98.4257865],[4.53503177,0.03085287,98.42463819],[4.53503127,0.03085114,98.4234895],[4.53503077,0.03084941,98.42234041],[4.53503027,0.03084767,98.42119092],[4.53502977,0.03084594,98.42004104],[4.53502927,0.03084421,98.41889076],[4.53502877,0.03084248,98.41774007],[4.53502827,0.03084074,98.41658897],[4.53502777,0.03083901,98.41543746],[4.53502727,0.03083728,98.41428552],[4.53502677,0.03083555,98.41313317],[4.53502627,0.03083382,98.41198039],[4.53502577,0.03083208,98.41082717],[4.53502527,0.03083035,98.40967353],[4.53502477,0.03082862,98.40851944],[4.53502427,0.03082689,98.40736491],[4.53502377,0.03082516,98.40620993],[4.53502327,0.03082342,98.4050545],[4.53502277,0.03082169,98.40389862],[4.53502227,0.03081996,98.40274229],[4.53502177,0.03081823,98.4015855],[4.53502127,0.0308165,98.40042826],[4.53502077,0.03081476,98.39927057],[4.53502027,0.03081303,98.39811243],[4.53501977,0.0308113,98.39695385],[4.53501927,0.03080957,98.39579483],[4.53501877,0.03080784,98.39463536],[4.53501827,0.0308061,98.39347545],[4.53501777,0.03080437,98.39231509],[4.53501727,0.03080264,98.3911543],[4.53501677,0.03080091,98.38999305],[4.53501627,0.03079918,98.38883137],[4.53501576,0.03079744,98.38766923],[4.53501526,0.03079571,98.38650665],[4.53501476,0.03079398,98.38534362],[4.53501426,0.03079225,98.38418014],[4.53501376,0.03079052,98.3830162],[4.53501326,0.03078879,98.38185182],[4.53501276,0.03078705,98.38068698],[4.53501226,0.03078532,98.37952168],[4.53501176,0.03078359,98.37835592],[4.53501125,0.03078186,98.37718971],[4.53501075,0.03078013,98.37602304],[4.53501025,0.03077839,98.37485591],[4.53500975,0.03077666,98.37368832],[4.53500925,0.03077493,98.37252026],[4.53500875,0.0307732,98.37135174],[4.53500825,0.03077147,98.37018276],[4.53500775,0.03076974,98.36901331],[4.53500724,0.030768,98.36784339],[4.53500674,0.03076627,98.366673],[4.53500624,0.03076454,98.36550214],[4.53500574,0.03076281,98.36433081],[4.53500524,0.03076108,98.363159],[4.53500474,0.03075935,98.36198673],[4.53500424,0.03075761,98.36081397],[4.53500373,0.03075588,98.35964074],[4.53500323,0.03075415,98.35846704],[4.53500273,0.03075242,98.35729285],[4.53500223,0.03075069,98.35611819],[4.53500173,0.03074896,98.35494304],[4.53500123,0.03074722,98.35376741],[4.53500072,0.03074549,98.35259129],[4.53500022,0.03074376,98.3514147],[4.53499972,0.03074203,98.35023761],[4.53499922,0.0307403,98.34906004],[4.53499872,0.03073857,98.34788198],[4.53499821,0.03073683,98.34670343],[4.53499771,0.0307351,98.34552438],[4.53499721,0.03073337,98.34434485],[4.53499671,0.03073164,98.34316482],[4.53499621,0.03072991,98.3419843],[4.5349957,0.03072818,98.34080328],[4.5349952,0.03072645,98.33962176],[4.5349947,0.03072471,98.33843975],[4.5349942,0.03072298,98.33725723],[4.5349937,0.03072125,98.33607422],[4.5349932,0.03071952,98.3348907],[4.53499269,0.03071779,98.33370668],[4.53499219,0.03071606,98.33252216],[4.53499169,0.03071432,98.33133713],[4.53499119,0.03071259,98.33015159],[4.53499068,0.03071086,98.32896555],[4.53499018,0.03070913,98.327779],[4.53498968,0.0307074,98.32659193],[4.53498918,0.03070567,98.32540436],[4.53498868,0.03070394,98.32421627],[4.53498817,0.0307022,98.32302767],[4.53498767,0.03070047,98.32183856],[4.53498717,0.03069874,98.32064893],[4.53498667,0.03069701,98.31945878],[4.53498617,0.03069528,98.31826811],[4.53498566,0.03069355,98.31707693],[4.53498516,0.03069181,98.31588523],[4.53498466,0.03069008,98.314693],[4.53498416,0.03068835,98.31350025],[4.53498366,0.03068662,98.31230698],[4.53498315,0.03068489,98.31111318],[4.53498265,0.03068316,98.30991886],[4.53498215,0.03068143,98.30872401],[4.53498165,0.03067969,98.30752864],[4.53498114,0.03067796,98.30633273],[4.53498064,0.03067623,98.3051363],[4.53498014,0.0306745,98.30393933],[4.53497964,0.03067277,98.30274183],[4.53497914,0.03067104,98.3015438],[4.53497863,0.03066931,98.30034524],[4.53497813,0.03066757,98.29914614],[4.53497763,0.03066584,98.2979465],[4.53497713,0.03066411,98.29674633],[4.53497663,0.03066238,98.29554562],[4.53497612,0.03066065,98.29434437],[4.53497562,0.03065892,98.29314258],[4.53497512,0.03065719,98.29194025],[4.53497462,0.03065545,98.29073739],[4.53497411,0.03065372,98.289534],[4.53497361,0.03065199,98.28833009],[4.53497311,0.03065026,98.28712568],[4.53497261,0.03064853,98.28592077],[4.53497211,0.0306468,98.28471535],[4.5349716,0.03064506,98.28350943],[4.5349711,0.03064333,98.282303],[4.5349706,0.0306416,98.28109605],[4.5349701,0.03063987,98.27988858],[4.5349696,0.03063814,98.27868058],[4.53496909,0.03063641,98.27747205],[4.53496859,0.03063467,98.27626299],[4.53496809,0.03063294,98.27505338],[4.53496759,0.03063121,98.27384324],[4.53496709,0.03062948,98.27263254],[4.53496659,0.03062775,98.27142129],[4.53496608,0.03062602,98.27020948],[4.53496558,0.03062429,98.26899711],[4.53496508,0.03062255,98.26778417],[4.53496458,0.03062082,98.26657065],[4.53496408,0.03061909,98.26535657],[4.53496358,0.03061736,98.26414189],[4.53496307,0.03061563,98.26292664],[4.53496257,0.0306139,98.26171079],[4.53496207,0.03061216,98.26049435],[4.53496157,0.03061043,98.2592773],[4.53496107,0.0306087,98.25805965],[4.53496057,0.03060697,98.25684139],[4.53496006,0.03060524,98.25562252],[4.53495956,0.03060351,98.25440302],[4.53495906,0.03060177,98.25318291],[4.53495856,0.03060004,98.25196216],[4.53495806,0.03059831,98.25074078],[4.53495755,0.03059658,98.24951876],[4.53495705,0.03059485,98.2482961],[4.53495655,0.03059312,98.24707279],[4.53495605,0.03059138,98.24584883],[4.53495555,0.03058965,98.24462421],[4.53495505,0.03058792,98.24339892],[4.53495454,0.03058619,98.24217297],[4.53495404,0.03058446,98.24094635],[4.53495354,0.03058273,98.23971905],[4.53495304,0.03058099,98.23849107],[4.53495254,0.03057926,98.2372624],[4.53495204,0.03057753,98.23603304],[4.53495153,0.0305758,98.23480298],[4.53495103,0.03057407,98.23357222],[4.53495053,0.03057234,98.23234075],[4.53495003,0.03057061,98.23110857],[4.53494953,0.03056887,98.22987568],[4.53494902,0.03056714,98.22864206],[4.53494852,0.03056541,98.22740771],[4.53494802,0.03056368,98.22617264],[4.53494752,0.03056195,98.22493682],[4.53494702,0.03056022,98.22370026],[4.53494652,0.03055849,98.22246296],[4.53494601,0.03055676,98.2212249],[4.53494551,0.03055503,98.21998609],[4.53494501,0.0305533,98.21874651],[4.53494451,0.03055156,98.21750617],[4.534944,0.03054983,98.21626508],[4.5349435,0.0305481,98.21502324],[4.534943,0.03054637,98.21378066],[4.5349425,0.03054464,98.21253734],[4.53494199,0.03054291,98.21129329],[4.53494149,0.03054118,98.21004852],[4.53494099,0.03053944,98.20880303],[4.53494049,0.03053771,98.20755682],[4.53493998,0.03053598,98.20630991],[4.53493948,0.03053425,98.2050623],[4.53493898,0.03053252,98.20381399],[4.53493848,0.03053079,98.20256499],[4.53493797,0.03052906,98.20131531],[4.53493747,0.03052733,98.20006495],[4.53493697,0.03052559,98.19881392],[4.53493646,0.03052386,98.19756222],[4.53493596,0.03052213,98.19630985],[4.53493546,0.0305204,98.19505683],[4.53493496,0.03051867,98.19380317],[4.53493445,0.03051694,98.19254887],[4.53493395,0.03051521,98.19129396],[4.53493345,0.03051348,98.19003847],[4.53493294,0.03051174,98.18878239],[4.53493244,0.03051001,98.18752576],[4.53493194,0.03050828,98.18626859],[4.53493143,0.03050655,98.18501089],[4.53493093,0.03050482,98.18375267],[4.53493043,0.03050309,98.18249393],[4.53492992,0.03050136,98.18123468],[4.53492942,0.03049963,98.17997493],[4.53492891,0.0304979,98.17871469],[4.53492841,0.03049617,98.17745398],[4.53492791,0.03049443,98.17619279],[4.5349274,0.0304927,98.17493113],[4.5349269,0.03049097,98.17366902],[4.5349264,0.03048924,98.17240646],[4.53492589,0.03048751,98.17114347],[4.53492539,0.03048578,98.16988004],[4.53492489,0.03048405,98.1686162],[4.53492438,0.03048232,98.16735194],[4.53492388,0.03048059,98.16608727],[4.53492337,0.03047886,98.16482221],[4.53492287,0.03047712,98.16355676],[4.53492237,0.03047539,98.16229093],[4.53492186,0.03047366,98.16102473],[4.53492136,0.03047193,98.15975817],[4.53492085,0.0304702,98.15849126],[4.53492035,0.03046847,98.157224],[4.53491984,0.03046674,98.1559564],[4.53491934,0.03046501,98.15468848],[4.53491884,0.03046328,98.15342023],[4.53491833,0.03046155,98.15215168],[4.53491783,0.03045982,98.15088282],[4.53491732,0.03045808,98.14961366],[4.53491682,0.03045635,98.14834422],[4.53491631,0.03045462,98.1470745],[4.53491581,0.03045289,98.14580451],[4.53491531,0.03045116,98.14453426],[4.5349148,0.03044943,98.14326376],[4.5349143,0.0304477,98.14199302],[4.53491379,0.03044597,98.14072204],[4.53491329,0.03044424,98.13945083],[4.53491278,0.03044251,98.1381794],[4.53491228,0.03044078,98.13690776],[4.53491177,0.03043905,98.13563592],[4.53491127,0.03043732,98.13436388],[4.53491076,0.03043558,98.13309166],[4.53491026,0.03043385,98.13181926],[4.53490975,0.03043212,98.1305467],[4.53490925,0.03043039,98.12927397],[4.53490874,0.03042866,98.12800109],[4.53490824,0.03042693,98.12672807],[4.53490773,0.0304252,98.12545491],[4.53490723,0.03042347,98.12418164],[4.53490672,0.03042174,98.12290825],[4.53490622,0.03042001,98.12163475],[4.53490571,0.03041828,98.12036117],[4.53490521,0.03041655,98.1190875],[4.5349047,0.03041482,98.11781376],[4.5349042,0.03041309,98.11653996],[4.53490369,0.03041136,98.11526611],[4.53490319,0.03040963,98.11399222],[4.53490268,0.0304079,98.11271829],[4.53490218,0.03040616,98.11144435],[4.53490167,0.03040443,98.11017039],[4.53490116,0.0304027,98.10889644],[4.53490066,0.03040097,98.10762249],[4.53490015,0.03039924,98.10634856],[4.53489965,0.03039751,98.10507466],[4.53489914,0.03039578,98.10380081],[4.53489864,0.03039405,98.102527],[4.53489813,0.03039232,98.10125325],[4.53489762,0.03039059,98.09997958],[4.53489712,0.03038886,98.09870598],[4.53489661,0.03038713,98.09743248],[4.53489611,0.0303854,98.09615907],[4.5348956,0.03038367,98.09488578],[4.5348951,0.03038194,98.09361261],[4.53489459,0.03038021,98.09233957],[4.53489408,0.03037848,98.09106667],[4.53489358,0.03037675,98.08979393],[4.53489307,0.03037502,98.08852135],[4.53489257,0.03037329,98.08724894],[4.53489206,0.03037156,98.08597671],[4.53489155,0.03036983,98.08470467],[4.53489105,0.0303681,98.08343284],[4.53489054,0.03036637,98.08216122],[4.53489003,0.03036464,98.08088982],[4.53488953,0.03036291,98.07961865],[4.53488902,0.03036118,98.07834771],[4.53488852,0.03035944,98.07707701],[4.53488801,0.03035771,98.07580655],[4.5348875,0.03035598,98.07453635],[4.534887,0.03035425,98.0732664],[4.53488649,0.03035252,98.07199672],[4.53488598,0.03035079,98.07072731],[4.53488548,0.03034906,98.06945817],[4.53488497,0.03034733,98.06818931],[4.53488446,0.0303456,98.06692075],[4.53488396,0.03034387,98.06565248],[4.53488345,0.03034214,98.0643845],[4.53488294,0.03034041,98.06311684],[4.53488243,0.03033868,98.06184948],[4.53488193,0.03033695,98.06058245],[4.53488142,0.03033522,98.05931574],[4.53488091,0.03033349,98.05804936],[4.53488041,0.03033176,98.05678331],[4.5348799,0.03033003,98.05551761],[4.53487939,0.0303283,98.05425226],[4.53487888,0.03032657,98.05298726],[4.53487838,0.03032484,98.05172262],[4.53487787,0.03032311,98.05045835],[4.53487736,0.03032138,98.04919447],[4.53487685,0.03031965,98.04793098],[4.53487635,0.03031792,98.0466679],[4.53487584,0.03031619,98.04540525],[4.53487533,0.03031446,98.04414303],[4.53487482,0.03031273,98.04288127],[4.53487431,0.030311,98.04161997],[4.53487381,0.03030928,98.04035915],[4.5348733,0.03030755,98.03909883],[4.53487279,0.03030582,98.03783901],[4.53487228,0.03030409,98.03657971],[4.53487177,0.03030236,98.03532095],[4.53487127,0.03030063,98.03406274],[4.53487076,0.0302989,98.03280509],[4.53487025,0.03029717,98.03154802],[4.53486974,0.03029544,98.03029154],[4.53486923,0.03029371,98.02903566],[4.53486872,0.03029198,98.02778041],[4.53486821,0.03029025,98.02652578],[4.53486771,0.03028852,98.02527181],[4.5348672,0.03028679,98.02401849],[4.53486669,0.03028506,98.02276586],[4.53486618,0.03028333,98.02151391],[4.53486567,0.0302816,98.02026266],[4.53486516,0.03027987,98.01901214],[4.53486465,0.03027814,98.01776235],[4.53486414,0.03027641,98.0165133],[4.53486363,0.03027468,98.01526502],[4.53486313,0.03027295,98.01401751],[4.53486262,0.03027122,98.01277079],[4.53486211,0.0302695,98.01152488],[4.5348616,0.03026777,98.01027979],[4.53486109,0.03026604,98.00903553],[4.53486058,0.03026431,98.00779212],[4.53486007,0.03026258,98.00654957],[4.53485956,0.03026085,98.0053079],[4.53485905,0.03025912,98.00406712],[4.53485854,0.03025739,98.00282724],[4.53485803,0.03025566,98.00158829],[4.53485752,0.03025393,98.00035027],[4.53485702,0.0302522,97.9991132],[4.53485651,0.03025047,97.99787709],[4.534856,0.03024874,97.99664197],[4.53485549,0.03024701,97.99540784],[4.53485498,0.03024528,97.99417471],[4.53485447,0.03024355,97.99294261],[4.53485396,0.03024183,97.99171155],[4.53485345,0.0302401,97.99048153],[4.53485294,0.03023837,97.98925259],[4.53485243,0.03023664,97.98802472],[4.53485192,0.03023491,97.98679796],[4.53485141,0.03023318,97.9855723],[4.5348509,0.03023145,97.98434777],[4.53485039,0.03022972,97.98312437],[4.53484988,0.03022799,97.98190213],[4.53484937,0.03022626,97.98068107],[4.53484886,0.03022453,97.97946118],[4.53484835,0.0302228,97.9782425],[4.53484784,0.03022107,97.97702502],[4.53484734,0.03021934,97.97580878],[4.53484683,0.03021761,97.97459378],[4.53484632,0.03021589,97.97338003],[4.53484581,0.03021416,97.97216756],[4.5348453,0.03021243,97.97095637],[4.53484479,0.0302107,97.96974648],[4.53484428,0.03020897,97.96853792],[4.53484377,0.03020724,97.96733068],[4.53484326,0.03020551,97.96612478],[4.53484275,0.03020378,97.96492025],[4.53484224,0.03020205,97.96371709],[4.53484173,0.03020032,97.96251532],[4.53484122,0.03019859,97.96131495],[4.53484071,0.03019686,97.960116],[4.5348402,0.03019513,97.95891848],[4.53483969,0.0301934,97.95772241],[4.53483918,0.03019167,97.9565278],[4.53483867,0.03018995,97.95533466],[4.53483816,0.03018822,97.95414302],[4.53483766,0.03018649,97.95295288],[4.53483715,0.03018476,97.95176426],[4.53483664,0.03018303,97.95057717],[4.53483613,0.0301813,97.94939163],[4.53483562,0.03017957,97.94820765],[4.53483511,0.03017784,97.94702525],[4.5348346,0.03017611,97.94584442],[4.53483409,0.03017438,97.9446652],[4.53483358,0.03017265,97.94348757],[4.53483307,0.03017092,97.94231156],[4.53483256,0.03016919,97.94113718],[4.53483205,0.03016746,97.93996443],[4.53483154,0.03016573,97.93879333],[4.53483104,0.030164,97.93762387],[4.53483053,0.03016227,97.93645604],[4.53483002,0.03016055,97.93528981],[4.53482951,0.03015882,97.93412517],[4.534829,0.03015709,97.93296208],[4.53482849,0.03015536,97.93180053],[4.53482798,0.03015363,97.9306405],[4.53482747,0.0301519,97.92948196],[4.53482696,0.03015017,97.92832489],[4.53482646,0.03014844,97.92716927],[4.53482595,0.03014671,97.92601508],[4.53482544,0.03014498,97.9248623],[4.53482493,0.03014325,97.92371089],[4.53482442,0.03014152,97.92256085],[4.53482391,0.03013979,97.92141214],[4.5348234,0.03013806,97.92026475],[4.53482289,0.03013633,97.91911865],[4.53482239,0.0301346,97.91797383],[4.53482188,0.03013287,97.91683025],[4.53482137,0.03013114,97.9156879],[4.53482086,0.03012941,97.91454675],[4.53482035,0.03012768,97.91340678],[4.53481984,0.03012595,97.91226798],[4.53481933,0.03012422,97.91113031],[4.53481883,0.0301225,97.90999375],[4.53481832,0.03012077,97.90885829],[4.53481781,0.03011904,97.90772389],[4.5348173,0.03011731,97.90659054],[4.53481679,0.03011558,97.90545822],[4.53481628,0.03011385,97.9043269],[4.53481578,0.03011212,97.90319655],[4.53481527,0.03011039,97.90206715],[4.53481476,0.03010866,97.90093866],[4.53481425,0.03010693,97.89981105],[4.53481374,0.0301052,97.89868429],[4.53481323,0.03010347,97.89755836],[4.53481273,0.03010174,97.89643322],[4.53481222,0.03010001,97.89530883],[4.53481171,0.03009828,97.89418518],[4.5348112,0.03009655,97.89306222],[4.53481069,0.03009482,97.89193994],[4.53481018,0.03009309,97.89081829],[4.53480968,0.03009136,97.88969726],[4.53480917,0.03008963,97.8885768],[4.53480866,0.0300879,97.88745689],[4.53480815,0.03008617,97.88633749],[4.53480764,0.03008444,97.88521859],[4.53480713,0.03008271,97.88410015],[4.53480663,0.03008098,97.88298213],[4.53480612,0.03007925,97.88186451],[4.53480561,0.03007752,97.88074727],[4.5348051,0.03007579,97.87963036],[4.53480459,0.03007406,97.87851377],[4.53480408,0.03007234,97.87739745],[4.53480357,0.03007061,97.87628139],[4.53480307,0.03006888,97.87516555],[4.53480256,0.03006715,97.87404991],[4.53480205,0.03006542,97.87293443],[4.53480154,0.03006369,97.87181909],[4.53480103,0.03006196,97.87070385],[4.53480052,0.03006023,97.86958869],[4.53480001,0.0300585,97.86847359],[4.5347995,0.03005677,97.8673585],[4.53479899,0.03005504,97.86624341],[4.53479848,0.03005331,97.86512828],[4.53479798,0.03005158,97.86401308],[4.53479747,0.03004985,97.8628978],[4.53479696,0.03004812,97.8617824],[4.53479645,0.03004639,97.86066686],[4.53479594,0.03004466,97.85955117],[4.53479543,0.03004293,97.85843531],[4.53479492,0.03004121,97.85731927],[4.53479441,0.03003948,97.85620302],[4.5347939,0.03003775,97.85508655],[4.53479339,0.03003602,97.85396984],[4.53479288,0.03003429,97.85285287],[4.53479237,0.03003256,97.85173564],[4.53479186,0.03003083,97.85061811],[4.53479135,0.0300291,97.84950027],[4.53479084,0.03002737,97.84838211],[4.53479033,0.03002564,97.84726361],[4.53478982,0.03002391,97.84614475],[4.53478931,0.03002219,97.84502551],[4.53478879,0.03002046,97.84390587],[4.53478828,0.03001873,97.84278582],[4.53478777,0.030017,97.84166534],[4.53478726,0.03001527,97.84054441],[4.53478675,0.03001354,97.83942301],[4.53478624,0.03001181,97.83830113],[4.53478573,0.03001008,97.83717875],[4.53478522,0.03000835,97.83605585],[4.53478471,0.03000662,97.83493241],[4.5347842,0.0300049,97.83380841],[4.53478369,0.03000317,97.83268384],[4.53478317,0.03000144,97.83155868],[4.53478266,0.02999971,97.83043291],[4.53478215,0.02999798,97.82930651],[4.53478164,0.02999625,97.82817947],[4.53478113,0.02999452,97.82705176],[4.53478062,0.02999279,97.82592336],[4.53478011,0.02999107,97.82479427],[4.53477959,0.02998934,97.82366445],[4.53477908,0.02998761,97.82253391],[4.53477857,0.02998588,97.82140262],[4.53477806,0.02998415,97.8202706],[4.53477755,0.02998242,97.81913785],[4.53477704,0.02998069,97.81800439],[4.53477652,0.02997896,97.81687021],[4.53477601,0.02997724,97.81573532],[4.5347755,0.02997551,97.81459973],[4.53477499,0.02997378,97.81346344],[4.53477448,0.02997205,97.81232646],[4.53477396,0.02997032,97.8111888],[4.53477345,0.02996859,97.81005046],[4.53477294,0.02996686,97.80891145],[4.53477243,0.02996514,97.80777177],[4.53477192,0.02996341,97.80663142],[4.5347714,0.02996168,97.80549042],[4.53477089,0.02995995,97.80434877],[4.53477038,0.02995822,97.80320648],[4.53476987,0.02995649,97.80206355],[4.53476936,0.02995476,97.80091998],[4.53476884,0.02995304,97.79977578],[4.53476833,0.02995131,97.79863096],[4.53476782,0.02994958,97.79748553],[4.53476731,0.02994785,97.79633949],[4.5347668,0.02994612,97.79519286],[4.53476628,0.02994439,97.79404566],[4.53476577,0.02994266,97.7928979],[4.53476526,0.02994094,97.79174961],[4.53476475,0.02993921,97.7906008],[4.53476423,0.02993748,97.78945147],[4.53476372,0.02993575,97.78830167],[4.53476321,0.02993402,97.78715139],[4.5347627,0.02993229,97.78600065],[4.53476219,0.02993057,97.78484947],[4.53476167,0.02992884,97.78369787],[4.53476116,0.02992711,97.78254586],[4.53476065,0.02992538,97.78139346],[4.53476014,0.02992365,97.78024069],[4.53475963,0.02992192,97.77908755],[4.53475911,0.02992019,97.77793407],[4.5347586,0.02991846,97.77678024],[4.53475809,0.02991674,97.77562606],[4.53475758,0.02991501,97.77447152],[4.53475707,0.02991328,97.77331661],[4.53475656,0.02991155,97.77216133],[4.53475605,0.02990982,97.77100567],[4.53475553,0.02990809,97.76984963],[4.53475502,0.02990636,97.76869319],[4.53475451,0.02990463,97.76753635],[4.534754,0.02990291,97.76637912],[4.53475349,0.02990118,97.76522147],[4.53475298,0.02989945,97.7640634],[4.53475247,0.02989772,97.76290491],[4.53475196,0.02989599,97.76174599],[4.53475145,0.02989426,97.76058664],[4.53475093,0.02989253,97.75942685],[4.53475042,0.0298908,97.75826661],[4.53474991,0.02988907,97.75710592],[4.5347494,0.02988735,97.75594477],[4.53474889,0.02988562,97.75478316],[4.53474838,0.02988389,97.75362109],[4.53474787,0.02988216,97.75245853],[4.53474736,0.02988043,97.7512955],[4.53474685,0.0298787,97.75013198],[4.53474634,0.02987697,97.74896798],[4.53474583,0.02987524,97.74780348],[4.53474532,0.02987351,97.74663847],[4.5347448,0.02987178,97.74547297],[4.53474429,0.02987006,97.74430695],[4.53474378,0.02986833,97.74314041],[4.53474327,0.0298666,97.74197336],[4.53474276,0.02986487,97.74080578],[4.53474225,0.02986314,97.73963766],[4.53474174,0.02986141,97.73846902],[4.53474123,0.02985968,97.73729983],[4.53474072,0.02985795,97.73613009],[4.5347402,0.02985622,97.73495981],[4.53473969,0.0298545,97.73378897],[4.53473918,0.02985277,97.73261757],[4.53473867,0.02985104,97.73144561],[4.53473816,0.02984931,97.73027307],[4.53473765,0.02984758,97.72909996],[4.53473714,0.02984585,97.72792628],[4.53473662,0.02984412,97.72675201],[4.53473611,0.02984239,97.72557715],[4.5347356,0.02984067,97.7244017],[4.53473509,0.02983894,97.72322566],[4.53473458,0.02983721,97.72204901],[4.53473406,0.02983548,97.72087175],[4.53473355,0.02983375,97.71969389],[4.53473304,0.02983202,97.71851541],[4.53473253,0.02983029,97.71733632],[4.53473202,0.02982857,97.71615661],[4.5347315,0.02982684,97.71497628],[4.53473099,0.02982511,97.71379534],[4.53473048,0.02982338,97.71261378],[4.53472996,0.02982165,97.71143162],[4.53472945,0.02981992,97.71024884],[4.53472894,0.0298182,97.70906544],[4.53472842,0.02981647,97.70788144],[4.53472791,0.02981474,97.70669683],[4.5347274,0.02981301,97.70551161],[4.53472688,0.02981128,97.70432577],[4.53472637,0.02980956,97.70313933],[4.53472586,0.02980783,97.70195229],[4.53472534,0.0298061,97.70076463],[4.53472483,0.02980437,97.69957637],[4.53472431,0.02980264,97.69838754],[4.5347238,0.02980092,97.69719816],[4.53472329,0.02979919,97.69600829],[4.53472277,0.02979746,97.69481795],[4.53472226,0.02979573,97.69362719],[4.53472174,0.029794,97.69243603],[4.53472123,0.02979228,97.69124453],[4.53472071,0.02979055,97.69005272],[4.5347202,0.02978882,97.68886063],[4.53471969,0.02978709,97.68766831],[4.53471917,0.02978536,97.68647578],[4.53471866,0.02978364,97.68528309],[4.53471814,0.02978191,97.68409028],[4.53471763,0.02978018,97.68289737],[4.53471711,0.02977845,97.68170442],[4.5347166,0.02977672,97.68051144],[4.53471609,0.029775,97.67931845],[4.53471557,0.02977327,97.67812543],[4.53471506,0.02977154,97.67693237],[4.53471455,0.02976981,97.67573928],[4.53471403,0.02976808,97.67454616],[4.53471352,0.02976636,97.67335298],[4.53471301,0.02976463,97.67215976],[4.53471249,0.0297629,97.67096647],[4.53471198,0.02976117,97.66977313],[4.53471147,0.02975944,97.66857972],[4.53471095,0.02975771,97.66738625],[4.53471044,0.02975599,97.66619269],[4.53470993,0.02975426,97.66499906],[4.53470942,0.02975253,97.66380534],[4.5347089,0.0297508,97.66261153],[4.53470839,0.02974907,97.66141763],[4.53470788,0.02974734,97.66022362],[4.53470737,0.02974561,97.65902952],[4.53470686,0.02974389,97.6578353],[4.53470634,0.02974216,97.65664097],[4.53470583,0.02974043,97.65544653],[4.53470532,0.0297387,97.65425196],[4.53470481,0.02973697,97.65305727],[4.5347043,0.02973524,97.65186244],[4.53470378,0.02973351,97.65066748],[4.53470327,0.02973179,97.64947237],[4.53470276,0.02973006,97.64827713],[4.53470225,0.02972833,97.64708173],[4.53470174,0.0297266,97.64588618],[4.53470123,0.02972487,97.64469047],[4.53470071,0.02972314,97.6434946],[4.5347002,0.02972141,97.64229856],[4.53469969,0.02971968,97.64110235],[4.53469918,0.02971796,97.63990597],[4.53469867,0.02971623,97.6387094],[4.53469816,0.0297145,97.63751265],[4.53469764,0.02971277,97.63631571],[4.53469713,0.02971104,97.63511858],[4.53469662,0.02970931,97.63392125],[4.53469611,0.02970758,97.63272372],[4.5346956,0.02970586,97.63152598],[4.53469509,0.02970413,97.63032803],[4.53469457,0.0297024,97.62912987],[4.53469406,0.02970067,97.62793148],[4.53469355,0.02969894,97.62673288],[4.53469304,0.02969721,97.62553404],[4.53469253,0.02969548,97.62433498],[4.53469202,0.02969375,97.62313567],[4.5346915,0.02969203,97.62193613],[4.53469099,0.0296903,97.62073634],[4.53469048,0.02968857,97.6195363],[4.53468997,0.02968684,97.61833602],[4.53468946,0.02968511,97.61713554],[4.53468894,0.02968338,97.61593491],[4.53468843,0.02968165,97.61473414],[4.53468792,0.02967993,97.61353323],[4.53468741,0.0296782,97.61233217],[4.5346869,0.02967647,97.61113096],[4.53468638,0.02967474,97.60992959],[4.53468587,0.02967301,97.60872806],[4.53468536,0.02967128,97.60752635],[4.53468485,0.02966955,97.60632447],[4.53468434,0.02966783,97.6051224],[4.53468382,0.0296661,97.60392014],[4.53468331,0.02966437,97.60271769],[4.5346828,0.02966264,97.60151505],[4.53468229,0.02966091,97.60031219],[4.53468177,0.02965918,97.59910912],[4.53468126,0.02965746,97.59790584],[4.53468075,0.02965573,97.59670233],[4.53468024,0.029654,97.59549859],[4.53467972,0.02965227,97.59429462],[4.53467921,0.02965054,97.5930904],[4.5346787,0.02964881,97.59188594],[4.53467819,0.02964708,97.59068122],[4.53467767,0.02964536,97.58947625],[4.53467716,0.02964363,97.58827101],[4.53467665,0.0296419,97.58706549],[4.53467613,0.02964017,97.5858597],[4.53467562,0.02963844,97.58465363],[4.53467511,0.02963672,97.58344727],[4.53467459,0.02963499,97.58224061],[4.53467408,0.02963326,97.58103366],[4.53467357,0.02963153,97.57982639],[4.53467305,0.0296298,97.57861881],[4.53467254,0.02962807,97.57741091],[4.53467203,0.02962635,97.57620269],[4.53467151,0.02962462,97.57499413],[4.534671,0.02962289,97.57378523],[4.53467048,0.02962116,97.57257599],[4.53466997,0.02961944,97.5713664],[4.53466945,0.02961771,97.57015645],[4.53466894,0.02961598,97.56894614],[4.53466842,0.02961425,97.56773546],[4.53466791,0.02961252,97.5665244],[4.53466739,0.0296108,97.56531297],[4.53466688,0.02960907,97.56410123],[4.53466636,0.02960734,97.5628892],[4.53466585,0.02960561,97.56167694],[4.53466533,0.02960389,97.5604645],[4.53466481,0.02960216,97.55925192],[4.5346643,0.02960043,97.55803925],[4.53466378,0.02959871,97.55682653],[4.53466327,0.02959698,97.55561381],[4.53466275,0.02959525,97.55440114],[4.53466223,0.02959352,97.55318856],[4.53466172,0.0295918,97.55197612],[4.5346612,0.02959007,97.55076383],[4.53466069,0.02958834,97.54955168],[4.53466017,0.02958661,97.5483397],[4.53465966,0.02958489,97.54712788],[4.53465914,0.02958316,97.54591624],[4.53465862,0.02958143,97.54470477],[4.53465811,0.0295797,97.54349348],[4.53465759,0.02957798,97.54228238],[4.53465708,0.02957625,97.54107148],[4.53465656,0.02957452,97.53986078],[4.53465605,0.02957279,97.53865029],[4.53465553,0.02957107,97.53744001],[4.53465502,0.02956934,97.53622996],[4.5346545,0.02956761,97.53502013],[4.53465399,0.02956588,97.53381053],[4.53465347,0.02956415,97.53260117],[4.53465296,0.02956243,97.53139206],[4.53465244,0.0295607,97.5301832],[4.53465193,0.02955897,97.5289746],[4.53465141,0.02955724,97.52776626],[4.5346509,0.02955552,97.52655819],[4.53465039,0.02955379,97.5253504],[4.53464987,0.02955206,97.52414289],[4.53464936,0.02955033,97.52293567],[4.53464884,0.0295486,97.52172873],[4.53464833,0.02954688,97.52052206],[4.53464782,0.02954515,97.51931565],[4.5346473,0.02954342,97.5181095],[4.53464679,0.02954169,97.51690359],[4.53464627,0.02953996,97.51569793],[4.53464576,0.02953824,97.5144925],[4.53464525,0.02953651,97.51328729],[4.53464473,0.02953478,97.51208231],[4.53464422,0.02953305,97.51087753],[4.53464371,0.02953132,97.50967295],[4.53464319,0.0295296,97.50846857],[4.53464268,0.02952787,97.50726438],[4.53464217,0.02952614,97.50606036],[4.53464165,0.02952441,97.50485651],[4.53464114,0.02952268,97.50365283],[4.53464063,0.02952095,97.5024493],[4.53464011,0.02951923,97.50124592],[4.5346396,0.0295175,97.50004268],[4.53463909,0.02951577,97.49883957],[4.53463857,0.02951404,97.49763658],[4.53463806,0.02951231,97.4964337],[4.53463754,0.02951059,97.49523093],[4.53463703,0.02950886,97.49402826],[4.53463652,0.02950713,97.49282568],[4.534636,0.0295054,97.49162318],[4.53463549,0.02950367,97.49042076],[4.53463498,0.02950195,97.4892184],[4.53463446,0.02950022,97.4880161],[4.53463395,0.02949849,97.48681384],[4.53463343,0.02949676,97.48561163],[4.53463292,0.02949503,97.48440945],[4.53463241,0.02949331,97.48320729],[4.53463189,0.02949158,97.48200516],[4.53463138,0.02948985,97.48080307],[4.53463086,0.02948812,97.47960102],[4.53463035,0.02948639,97.47839901],[4.53462983,0.02948467,97.47719705],[4.53462932,0.02948294,97.47599514],[4.53462881,0.02948121,97.4747933],[4.53462829,0.02947948,97.47359153],[4.53462778,0.02947776,97.47238982],[4.53462726,0.02947603,97.4711882],[4.53462675,0.0294743,97.46998665],[4.53462623,0.02947257,97.4687852],[4.53462572,0.02947084,97.46758384],[4.5346252,0.02946912,97.46638258],[4.53462469,0.02946739,97.46518142],[4.53462417,0.02946566,97.46398037],[4.53462366,0.02946393,97.46277944],[4.53462314,0.02946221,97.46157863],[4.53462263,0.02946048,97.46037795],[4.53462211,0.02945875,97.4591774],[4.53462159,0.02945702,97.45797699],[4.53462108,0.0294553,97.45677671],[4.53462056,0.02945357,97.45557659],[4.53462005,0.02945184,97.45437662],[4.53461953,0.02945011,97.45317681],[4.53461902,0.02944839,97.45197717],[4.5346185,0.02944666,97.4507777],[4.53461799,0.02944493,97.4495784],[4.53461747,0.02944321,97.44837928],[4.53461695,0.02944148,97.44718035],[4.53461644,0.02943975,97.44598162],[4.53461592,0.02943802,97.44478308],[4.53461541,0.0294363,97.44358474],[4.53461489,0.02943457,97.44238662],[4.53461437,0.02943284,97.44118871],[4.53461386,0.02943111,97.43999102],[4.53461334,0.02942939,97.43879355],[4.53461282,0.02942766,97.43759632],[4.53461231,0.02942593,97.43639933],[4.53461179,0.0294242,97.43520258],[4.53461128,0.02942248,97.43400607],[4.53461076,0.02942075,97.43280982],[4.53461024,0.02941902,97.43161384],[4.53460973,0.0294173,97.43041811],[4.53460921,0.02941557,97.42922266],[4.53460869,0.02941384,97.42802749],[4.53460818,0.02941211,97.4268326],[4.53460766,0.02941039,97.42563799],[4.53460714,0.02940866,97.42444369],[4.53460663,0.02940693,97.42324968],[4.53460611,0.02940521,97.42205597],[4.53460559,0.02940348,97.42086258],[4.53460508,0.02940175,97.41966951],[4.53460456,0.02940002,97.41847676],[4.53460404,0.0293983,97.41728434],[4.53460353,0.02939657,97.41609225],[4.53460301,0.02939484,97.4149005],[4.53460249,0.02939312,97.4137091],[4.53460198,0.02939139,97.41251805],[4.53460146,0.02938966,97.41132736],[4.53460094,0.02938794,97.41013703],[4.53460043,0.02938621,97.40894708],[4.53459991,0.02938448,97.40775749],[4.53459939,0.02938275,97.40656829],[4.53459888,0.02938103,97.40537948],[4.53459836,0.0293793,97.40419106],[4.53459784,0.02937757,97.40300304],[4.53459733,0.02937585,97.40181542],[4.53459681,0.02937412,97.40062822],[4.53459629,0.02937239,97.39944143],[4.53459578,0.02937066,97.39825506],[4.53459526,0.02936894,97.39706913],[4.53459474,0.02936721,97.39588362],[4.53459423,0.02936548,97.39469856],[4.53459371,0.02936376,97.39351395],[4.53459319,0.02936203,97.39232978],[4.53459268,0.0293603,97.39114608],[4.53459216,0.02935858,97.38996284],[4.53459164,0.02935685,97.38878007],[4.53459113,0.02935512,97.38759778],[4.53459061,0.02935339,97.38641597],[4.53459009,0.02935167,97.38523465],[4.53458957,0.02934994,97.38405383],[4.53458906,0.02934821,97.3828735],[4.53458854,0.02934649,97.38169369],[4.53458802,0.02934476,97.38051438],[4.53458751,0.02934303,97.3793356],[4.53458699,0.0293413,97.37815734],[4.53458647,0.02933958,97.37697961],[4.53458596,0.02933785,97.37580242],[4.53458544,0.02933612,97.37462577],[4.53458493,0.0293344,97.37344967],[4.53458441,0.02933267,97.37227412],[4.53458389,0.02933094,97.37109911],[4.53458338,0.02932921,97.36992465],[4.53458286,0.02932749,97.36875072],[4.53458234,0.02932576,97.36757734],[4.53458183,0.02932403,97.36640449],[4.53458131,0.02932231,97.36523218],[4.53458079,0.02932058,97.3640604],[4.53458028,0.02931885,97.36288915],[4.53457976,0.02931712,97.36171844],[4.53457924,0.0293154,97.36054825],[4.53457873,0.02931367,97.35937859],[4.53457821,0.02931194,97.35820946],[4.53457769,0.02931022,97.35704085],[4.53457718,0.02930849,97.35587276],[4.53457666,0.02930676,97.35470519],[4.53457614,0.02930503,97.35353813],[4.53457563,0.02930331,97.3523716],[4.53457511,0.02930158,97.35120557],[4.5345746,0.02929985,97.35004006],[4.53457408,0.02929813,97.34887505],[4.53457356,0.0292964,97.34771054],[4.53457305,0.02929467,97.34654653],[4.53457253,0.02929294,97.34538302],[4.53457201,0.02929122,97.34421999],[4.5345715,0.02928949,97.34305745],[4.53457098,0.02928776,97.34189539],[4.53457046,0.02928604,97.3407338],[4.53456994,0.02928431,97.33957269],[4.53456943,0.02928258,97.33841204],[4.53456891,0.02928086,97.33725186],[4.53456839,0.02927913,97.33609213],[4.53456788,0.0292774,97.33493286],[4.53456736,0.02927567,97.33377404],[4.53456684,0.02927395,97.33261567],[4.53456633,0.02927222,97.33145774],[4.53456581,0.02927049,97.33030024],[4.53456529,0.02926877,97.32914318],[4.53456477,0.02926704,97.32798653],[4.53456426,0.02926531,97.32683031],[4.53456374,0.02926359,97.32567449],[4.53456322,0.02926186,97.32451908],[4.5345627,0.02926013,97.32336407],[4.53456219,0.02925841,97.32220945],[4.53456167,0.02925668,97.32105523],[4.53456115,0.02925495,97.31990141],[4.53456063,0.02925323,97.31874799],[4.53456011,0.0292515,97.31759499],[4.5345596,0.02924977,97.3164424],[4.53455908,0.02924805,97.31529023],[4.53455856,0.02924632,97.31413849],[4.53455804,0.02924459,97.31298717],[4.53455752,0.02924287,97.31183628],[4.53455701,0.02924114,97.31068584],[4.53455649,0.02923941,97.30953583],[4.53455597,0.02923769,97.30838626],[4.53455545,0.02923596,97.30723715],[4.53455493,0.02923423,97.30608849],[4.53455441,0.02923251,97.30494028],[4.53455389,0.02923078,97.30379254],[4.53455338,0.02922905,97.30264527],[4.53455286,0.02922733,97.30149847],[4.53455234,0.0292256,97.30035214],[4.53455182,0.02922388,97.29920629],[4.5345513,0.02922215,97.29806093],[4.53455078,0.02922042,97.29691606],[4.53455026,0.0292187,97.29577168],[4.53454974,0.02921697,97.2946278],[4.53454922,0.02921524,97.29348442],[4.53454871,0.02921352,97.29234155],[4.53454819,0.02921179,97.29119918],[4.53454767,0.02921006,97.29005734],[4.53454715,0.02920834,97.28891601],[4.53454663,0.02920661,97.28777521],[4.53454611,0.02920489,97.28663494],[4.53454559,0.02920316,97.2854952],[4.53454507,0.02920143,97.284356],[4.53454455,0.02919971,97.28321735],[4.53454403,0.02919798,97.28207924],[4.53454351,0.02919626,97.28094168],[4.53454299,0.02919453,97.27980468],[4.53454247,0.0291928,97.27866824],[4.53454195,0.02919108,97.27753237],[4.53454143,0.02918935,97.27639707],[4.53454091,0.02918762,97.27526234],[4.53454039,0.0291859,97.27412819],[4.53453988,0.02918417,97.27299463],[4.53453936,0.02918245,97.27186165],[4.53453884,0.02918072,97.27072927],[4.53453832,0.02917899,97.26959749],[4.5345378,0.02917727,97.26846631],[4.53453728,0.02917554,97.26733574],[4.53453676,0.02917382,97.26620577],[4.53453624,0.02917209,97.26507643],[4.53453572,0.02917036,97.26394771],[4.5345352,0.02916864,97.26281961],[4.53453468,0.02916691,97.26169215],[4.53453416,0.02916518,97.26056532],[4.53453364,0.02916346,97.25943913],[4.53453312,0.02916173,97.25831358],[4.5345326,0.02916001,97.25718869],[4.53453208,0.02915828,97.25606444],[4.53453156,0.02915655,97.25494086],[4.53453104,0.02915483,97.25381794],[4.53453052,0.0291531,97.2526957],[4.53453,0.02915138,97.25157412],[4.53452948,0.02914965,97.25045322],[4.53452896,0.02914792,97.24933301],[4.53452844,0.0291462,97.24821348],[4.53452792,0.02914447,97.24709465],[4.5345274,0.02914274,97.24597651],[4.53452688,0.02914102,97.24485907],[4.53452637,0.02913929,97.24374234],[4.53452585,0.02913757,97.24262633],[4.53452533,0.02913584,97.24151103],[4.53452481,0.02913411,97.24039645],[4.53452429,0.02913239,97.2392826],[4.53452377,0.02913066,97.23816947],[4.53452325,0.02912894,97.23705709],[4.53452273,0.02912721,97.23594544],[4.53452221,0.02912548,97.23483454],[4.53452169,0.02912376,97.23372439],[4.53452117,0.02912203,97.232615],[4.53452065,0.0291203,97.23150636],[4.53452013,0.02911858,97.23039849],[4.53451961,0.02911685,97.22929139],[4.53451909,0.02911513,97.22818506],[4.53451858,0.0291134,97.22707951],[4.53451806,0.02911167,97.22597472],[4.53451754,0.02910995,97.2248707],[4.53451702,0.02910822,97.22376745],[4.5345165,0.02910649,97.22266496],[4.53451598,0.02910477,97.22156323],[4.53451546,0.02910304,97.22046227],[4.53451494,0.02910131,97.21936206],[4.53451442,0.02909959,97.21826261],[4.53451391,0.02909786,97.21716392],[4.53451339,0.02909614,97.21606598],[4.53451287,0.02909441,97.21496879],[4.53451235,0.02909268,97.21387235],[4.53451183,0.02909096,97.21277667],[4.53451131,0.02908923,97.21168172],[4.53451079,0.0290875,97.21058753],[4.53451027,0.02908578,97.20949407],[4.53450976,0.02908405,97.20840136],[4.53450924,0.02908232,97.20730939],[4.53450872,0.0290806,97.20621815],[4.5345082,0.02907887,97.20512765],[4.53450768,0.02907715,97.20403788],[4.53450716,0.02907542,97.20294885],[4.53450664,0.02907369,97.20186054],[4.53450613,0.02907197,97.20077297],[4.53450561,0.02907024,97.19968612],[4.53450509,0.02906851,97.19859999],[4.53450457,0.02906679,97.19751459],[4.53450405,0.02906506,97.19642991],[4.53450353,0.02906333,97.19534595],[4.53450301,0.02906161,97.1942627],[4.5345025,0.02905988,97.19318017],[4.53450198,0.02905815,97.19209835],[4.53450146,0.02905643,97.19101724],[4.53450094,0.0290547,97.18993685],[4.53450042,0.02905298,97.18885716],[4.5344999,0.02905125,97.18777817],[4.53449938,0.02904952,97.18669989],[4.53449887,0.0290478,97.18562231],[4.53449835,0.02904607,97.18454543],[4.53449783,0.02904434,97.18346925],[4.53449731,0.02904262,97.18239377],[4.53449679,0.02904089,97.18131897],[4.53449627,0.02903916,97.18024487],[4.53449575,0.02903744,97.17917146],[4.53449524,0.02903571,97.17809874],[4.53449472,0.02903398,97.1770267],[4.5344942,0.02903226,97.17595535],[4.53449368,0.02903053,97.17488468],[4.53449316,0.02902881,97.17381469],[4.53449264,0.02902708,97.17274537],[4.53449212,0.02902535,97.17167673],[4.53449161,0.02902363,97.17060877],[4.53449109,0.0290219,97.16954148],[4.53449057,0.02902017,97.16847486],[4.53449005,0.02901845,97.1674089],[4.53448953,0.02901672,97.16634361],[4.53448901,0.02901499,97.16527899],[4.53448849,0.02901327,97.16421503],[4.53448797,0.02901154,97.16315172],[4.53448745,0.02900982,97.16208908],[4.53448694,0.02900809,97.16102709],[4.53448642,0.02900636,97.15996575],[4.5344859,0.02900464,97.15890507],[4.53448538,0.02900291,97.15784503],[4.53448486,0.02900118,97.15678564],[4.53448434,0.02899946,97.1557269],[4.53448382,0.02899773,97.1546688],[4.5344833,0.02899601,97.15361134],[4.53448278,0.02899428,97.15255452],[4.53448226,0.02899255,97.15149834],[4.53448174,0.02899083,97.15044279],[4.53448122,0.0289891,97.14938788],[4.53448071,0.02898737,97.14833359],[4.53448019,0.02898565,97.14727994],[4.53447967,0.02898392,97.14622691],[4.53447915,0.0289822,97.14517451],[4.53447863,0.02898047,97.14412273],[4.53447811,0.02897874,97.14307157],[4.53447759,0.02897702,97.14202102],[4.53447707,0.02897529,97.1409711],[4.53447655,0.02897357,97.13992178],[4.53447603,0.02897184,97.13887308],[4.53447551,0.02897011,97.13782499],[4.53447499,0.02896839,97.13677751],[4.53447447,0.02896667,97.13573063],[4.53447395,0.02896494,97.13468435],[4.53447343,0.02896322,97.13363868],[4.53447291,0.02896149,97.1325936],[4.53447239,0.02895976,97.13154913],[4.53447187,0.02895804,97.13050524],[4.53447135,0.02895631,97.12946195],[4.53447083,0.02895459,97.12841925],[4.53447031,0.02895286,97.12737714],[4.53447028,0.02895278,97.12732933]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}},{"geometry":{"coordinates":[[4.53450431,0.02894233,97.22251778],[4.53450433,0.02894241,97.2225645],[4.53450486,0.02894413,97.22358293],[4.53450538,0.02894586,97.22460196],[4.5345059,0.02894759,97.2256216],[4.53450642,0.02894931,97.22664185],[4.53450694,0.02895104,97.22766269],[4.53450747,0.02895276,97.22868414],[4.53450799,0.02895449,97.22970618],[4.53450851,0.02895622,97.23072881],[4.53450903,0.02895794,97.23175205],[4.53450955,0.02895966,97.23277587],[4.53451007,0.02896139,97.23380028],[4.53451059,0.02896312,97.23482528],[4.53451112,0.02896484,97.23585086],[4.53451164,0.02896657,97.23687703],[4.53451216,0.02896829,97.23790379],[4.53451268,0.02897002,97.23893112],[4.5345132,0.02897175,97.23995903],[4.53451372,0.02897347,97.24098751],[4.53451425,0.0289752,97.24201658],[4.53451477,0.02897693,97.24304621],[4.53451529,0.02897865,97.24407641],[4.53451581,0.02898038,97.24510718],[4.53451633,0.0289821,97.24613852],[4.53451685,0.02898383,97.24717043],[4.53451738,0.02898556,97.24820289],[4.5345179,0.02898728,97.24923592],[4.53451842,0.02898901,97.25026951],[4.53451894,0.02899074,97.25130365],[4.53451946,0.02899246,97.25233835],[4.53451998,0.02899419,97.2533736],[4.53452051,0.02899591,97.25440941],[4.53452103,0.02899764,97.25544576],[4.53452155,0.02899937,97.25648266],[4.53452207,0.02900109,97.25752011],[4.53452259,0.02900282,97.2585581],[4.53452311,0.02900455,97.25959663],[4.53452364,0.02900627,97.2606357],[4.53452416,0.029008,97.26167531],[4.53452468,0.02900973,97.26271546],[4.5345252,0.02901145,97.26375614],[4.53452572,0.02901318,97.26479735],[4.53452624,0.0290149,97.26583909],[4.53452676,0.02901663,97.26688137],[4.53452729,0.02901836,97.26792416],[4.53452781,0.02902008,97.26896749],[4.53452833,0.02902181,97.27001133],[4.53452885,0.02902354,97.2710557],[4.53452937,0.02902526,97.27210058],[4.53452989,0.02902699,97.27314598],[4.53453041,0.02902871,97.2741919],[4.53453094,0.02903044,97.27523833],[4.53453146,0.02903217,97.27628527],[4.53453198,0.02903389,97.27733272],[4.5345325,0.02903562,97.27838068],[4.53453302,0.02903735,97.27942914],[4.53453354,0.02903907,97.28047811],[4.53453406,0.0290408,97.28152757],[4.53453458,0.02904253,97.28257754],[4.53453511,0.02904425,97.28362801],[4.53453563,0.02904598,97.28467897],[4.53453615,0.0290477,97.28573042],[4.53453667,0.02904943,97.28678237],[4.53453719,0.02905116,97.28783481],[4.53453771,0.02905288,97.28888774],[4.53453823,0.02905461,97.28994115],[4.53453875,0.02905634,97.29099505],[4.53453928,0.02905806,97.29204943],[4.5345398,0.02905979,97.29310429],[4.53454032,0.02906152,97.29415963],[4.53454084,0.02906324,97.29521544],[4.53454136,0.02906497,97.29627173],[4.53454188,0.02906669,97.2973285],[4.5345424,0.02906842,97.29838573],[4.53454292,0.02907015,97.29944344],[4.53454344,0.02907187,97.30050161],[4.53454396,0.0290736,97.30156025],[4.53454449,0.02907533,97.30261935],[4.53454501,0.02907705,97.30367891],[4.53454553,0.02907878,97.30473894],[4.53454605,0.02908051,97.30579942],[4.53454657,0.02908223,97.30686036],[4.53454709,0.02908396,97.30792175],[4.53454761,0.02908569,97.30898359],[4.53454813,0.02908741,97.31004588],[4.53454865,0.02908914,97.31110863],[4.53454917,0.02909087,97.31217182],[4.53454969,0.02909259,97.31323545],[4.53455022,0.02909432,97.31429953],[4.53455074,0.02909604,97.31536404],[4.53455126,0.02909777,97.316429],[4.53455178,0.0290995,97.31749439],[4.5345523,0.02910122,97.31856022],[4.53455282,0.02910295,97.31962649],[4.53455334,0.02910468,97.32069318],[4.53455386,0.0291064,97.3217603],[4.53455438,0.02910813,97.32282785],[4.5345549,0.02910986,97.32389583],[4.53455542,0.02911158,97.32496421],[4.53455594,0.02911331,97.326033],[4.53455646,0.02911504,97.32710218],[4.53455698,0.02911676,97.32817175],[4.5345575,0.02911849,97.3292417],[4.53455802,0.02912022,97.33031202],[4.53455854,0.02912194,97.33138271],[4.53455906,0.02912367,97.33245374],[4.53455958,0.0291254,97.33352513],[4.5345601,0.02912712,97.33459684],[4.53456062,0.02912885,97.33566889],[4.53456114,0.02913058,97.33674126],[4.53456166,0.0291323,97.33781394],[4.53456218,0.02913403,97.33888693],[4.5345627,0.02913576,97.33996021],[4.53456322,0.02913748,97.34103378],[4.53456374,0.02913921,97.34210763],[4.53456426,0.02914094,97.34318174],[4.53456478,0.02914266,97.34425613],[4.5345653,0.02914439,97.34533076],[4.53456582,0.02914612,97.34640565],[4.53456634,0.02914784,97.34748077],[4.53456686,0.02914957,97.34855613],[4.53456738,0.0291513,97.34963173],[4.5345679,0.02915302,97.35070757],[4.53456842,0.02915475,97.35178363],[4.53456894,0.02915648,97.35285993],[4.53456946,0.02915821,97.35393647],[4.53456997,0.02915993,97.35501323],[4.53457049,0.02916166,97.35609023],[4.53457101,0.02916339,97.35716745],[4.53457153,0.02916511,97.3582449],[4.53457205,0.02916684,97.35932258],[4.53457257,0.02916857,97.36040048],[4.53457309,0.0291703,97.36147861],[4.5345736,0.02917202,97.36255696],[4.53457412,0.02917375,97.36363553],[4.53457464,0.02917548,97.36471433],[4.53457516,0.0291772,97.36579335],[4.53457568,0.02917893,97.36687258],[4.53457619,0.02918066,97.36795203],[4.53457671,0.02918239,97.3690317],[4.53457723,0.02918411,97.37011159],[4.53457775,0.02918584,97.37119169],[4.53457826,0.02918757,97.37227201],[4.53457878,0.0291893,97.37335254],[4.5345793,0.02919102,97.37443328],[4.53457982,0.02919275,97.37551423],[4.53458033,0.02919448,97.37659539],[4.53458085,0.02919621,97.37767676],[4.53458137,0.02919793,97.37875834],[4.53458188,0.02919966,97.37984012],[4.5345824,0.02920139,97.38092211],[4.53458292,0.02920312,97.38200431],[4.53458343,0.02920484,97.38308671],[4.53458395,0.02920657,97.38416931],[4.53458447,0.0292083,97.38525211],[4.53458498,0.02921003,97.38633512],[4.5345855,0.02921176,97.38741832],[4.53458602,0.02921348,97.38850172],[4.53458653,0.02921521,97.38958532],[4.53458705,0.02921694,97.39066912],[4.53458756,0.02921867,97.39175311],[4.53458808,0.0292204,97.3928373],[4.5345886,0.02922212,97.39392168],[4.53458911,0.02922385,97.39500625],[4.53458963,0.02922558,97.39609102],[4.53459014,0.02922731,97.39717597],[4.53459066,0.02922904,97.39826112],[4.53459117,0.02923076,97.39934645],[4.53459169,0.02923249,97.40043197],[4.5345922,0.02923422,97.40151768],[4.53459272,0.02923595,97.40260357],[4.53459323,0.02923768,97.40368965],[4.53459375,0.0292394,97.40477591],[4.53459426,0.02924113,97.40586236],[4.53459478,0.02924286,97.40694898],[4.53459529,0.02924459,97.40803579],[4.53459581,0.02924632,97.40912278],[4.53459632,0.02924805,97.41020994],[4.53459684,0.02924977,97.41129729],[4.53459735,0.0292515,97.41238481],[4.53459787,0.02925323,97.41347251],[4.53459838,0.02925496,97.41456041],[4.53459889,0.02925669,97.41564852],[4.53459941,0.02925842,97.41673683],[4.53459992,0.02926014,97.41782537],[4.53460044,0.02926187,97.41891415],[4.53460095,0.0292636,97.42000316],[4.53460146,0.02926533,97.42109242],[4.53460198,0.02926706,97.42218194],[4.53460249,0.02926879,97.42327173],[4.534603,0.02927051,97.42436178],[4.53460352,0.02927224,97.4254521],[4.53460403,0.02927397,97.42654271],[4.53460455,0.0292757,97.4276336],[4.53460506,0.02927743,97.42872479],[4.53460557,0.02927916,97.42981627],[4.53460609,0.02928089,97.43090806],[4.5346066,0.02928261,97.43200016],[4.53460711,0.02928434,97.43309257],[4.53460763,0.02928607,97.43418531],[4.53460814,0.0292878,97.43527838],[4.53460865,0.02928953,97.43637178],[4.53460917,0.02929126,97.43746552],[4.53460968,0.02929299,97.43855961],[4.53461019,0.02929472,97.43965405],[4.53461071,0.02929644,97.44074885],[4.53461122,0.02929817,97.44184402],[4.53461173,0.0292999,97.44293957],[4.53461225,0.02930163,97.44403551],[4.53461276,0.02930336,97.44513183],[4.53461327,0.02930509,97.44622857],[4.53461379,0.02930682,97.44732571],[4.5346143,0.02930854,97.44842327],[4.53461481,0.02931027,97.44952126],[4.53461533,0.029312,97.45061968],[4.53461584,0.02931373,97.45171855],[4.53461636,0.02931546,97.45281787],[4.53461687,0.02931719,97.45391765],[4.53461738,0.02931892,97.4550179],[4.5346179,0.02932064,97.45611862],[4.53461841,0.02932237,97.45721983],[4.53461892,0.0293241,97.45832153],[4.53461944,0.02932583,97.45942373],[4.53461995,0.02932756,97.46052644],[4.53462047,0.02932929,97.46162966],[4.53462098,0.02933101,97.46273338],[4.53462149,0.02933274,97.46383762],[4.53462201,0.02933447,97.46494237],[4.53462252,0.0293362,97.46604763],[4.53462304,0.02933793,97.46715341],[4.53462355,0.02933966,97.46825969],[4.53462406,0.02934138,97.46936648],[4.53462458,0.02934311,97.47047379],[4.53462509,0.02934484,97.47158161],[4.53462561,0.02934657,97.47268994],[4.53462612,0.0293483,97.47379878],[4.53462664,0.02935003,97.47490813],[4.53462715,0.02935175,97.476018],[4.53462767,0.02935348,97.47712837],[4.53462818,0.02935521,97.47823927],[4.5346287,0.02935694,97.47935067],[4.53462921,0.02935867,97.48046259],[4.53462973,0.0293604,97.48157502],[4.53463024,0.02936212,97.48268796],[4.53463075,0.02936385,97.48380142],[4.53463127,0.02936558,97.48491539],[4.53463178,0.02936731,97.48602987],[4.5346323,0.02936904,97.48714487],[4.53463281,0.02937076,97.48826038],[4.53463333,0.02937249,97.48937641],[4.53463385,0.02937422,97.49049295],[4.53463436,0.02937595,97.49161001],[4.53463488,0.02937768,97.49272758],[4.53463539,0.0293794,97.49384567],[4.53463591,0.02938113,97.49496428],[4.53463642,0.02938286,97.4960834],[4.53463694,0.02938459,97.49720303],[4.53463745,0.02938632,97.49832318],[4.53463797,0.02938804,97.49944385],[4.53463848,0.02938977,97.50056503],[4.534639,0.0293915,97.50168674],[4.53463951,0.02939323,97.50280895],[4.53464003,0.02939496,97.50393169],[4.53464055,0.02939668,97.50505494],[4.53464106,0.02939841,97.50617871],[4.53464158,0.02940014,97.507303],[4.53464209,0.02940187,97.50842781],[4.53464261,0.02940359,97.50955314],[4.53464312,0.02940532,97.51067898],[4.53464364,0.02940705,97.51180534],[4.53464416,0.02940878,97.51293223],[4.53464467,0.02941051,97.51405963],[4.53464519,0.02941223,97.51518755],[4.5346457,0.02941396,97.516316],[4.53464622,0.02941569,97.51744496],[4.53464674,0.02941742,97.51857444],[4.53464725,0.02941914,97.51970445],[4.53464777,0.02942087,97.52083497],[4.53464829,0.0294226,97.52196602],[4.5346488,0.02942433,97.52309759],[4.53464932,0.02942606,97.52422968],[4.53464983,0.02942778,97.5253623],[4.53465035,0.02942951,97.52649543],[4.53465087,0.02943124,97.5276291],[4.53465138,0.02943297,97.52876328],[4.5346519,0.02943469,97.52989799],[4.53465242,0.02943642,97.53103322],[4.53465293,0.02943815,97.53216897],[4.53465345,0.02943988,97.53330524],[4.53465397,0.0294416,97.53444201],[4.53465448,0.02944333,97.53557929],[4.534655,0.02944506,97.53671706],[4.53465552,0.02944679,97.53785531],[4.53465603,0.02944851,97.53899405],[4.53465655,0.02945024,97.54013326],[4.53465707,0.02945197,97.54127293],[4.53465758,0.0294537,97.54241307],[4.5346581,0.02945542,97.54355366],[4.53465862,0.02945715,97.5446947],[4.53465913,0.02945888,97.54583618],[4.53465965,0.02946061,97.5469781],[4.53466017,0.02946233,97.54812044],[4.53466068,0.02946406,97.54926321],[4.5346612,0.02946579,97.55040638],[4.53466172,0.02946752,97.55154997],[4.53466223,0.02946925,97.55269396],[4.53466275,0.02947097,97.55383835],[4.53466327,0.0294727,97.55498313],[4.53466378,0.02947443,97.55612829],[4.5346643,0.02947616,97.55727382],[4.53466481,0.02947788,97.55841973],[4.53466533,0.02947961,97.559566],[4.53466585,0.02948134,97.56071263],[4.53466636,0.02948307,97.56185961],[4.53466688,0.02948479,97.56300694],[4.5346674,0.02948652,97.56415461],[4.53466791,0.02948825,97.56530261],[4.53466843,0.02948998,97.56645094],[4.53466894,0.02949171,97.56759959],[4.53466946,0.02949343,97.56874855],[4.53466997,0.02949516,97.56989782],[4.53467049,0.02949689,97.5710474],[4.53467101,0.02949862,97.57219727],[4.53467152,0.02950034,97.57334744],[4.53467204,0.02950207,97.57449788],[4.53467255,0.0295038,97.57564861],[4.53467307,0.02950553,97.57679961],[4.53467358,0.02950726,97.57795088],[4.5346741,0.02950898,97.57910241],[4.53467461,0.02951071,97.58025419],[4.53467513,0.02951244,97.58140623],[4.53467564,0.02951417,97.58255851],[4.53467616,0.0295159,97.58371108],[4.53467667,0.02951763,97.58486395],[4.53467718,0.02951935,97.58601718],[4.5346777,0.02952108,97.58717079],[4.53467821,0.02952281,97.58832482],[4.53467873,0.02952454,97.58947931],[4.53467924,0.02952627,97.59063428],[4.53467975,0.02952799,97.59178978],[4.53468027,0.02952972,97.59294584],[4.53468078,0.02953145,97.5941025],[4.5346813,0.02953318,97.59525979],[4.53468181,0.02953491,97.59641774],[4.53468233,0.02953664,97.59757639],[4.53468284,0.02953836,97.59873577],[4.53468336,0.02954009,97.59989592],[4.53468387,0.02954182,97.60105687],[4.53468438,0.02954355,97.60221866],[4.5346849,0.02954528,97.60338131],[4.53468541,0.029547,97.60454483],[4.53468593,0.02954873,97.60570926],[4.53468645,0.02955046,97.60687461],[4.53468696,0.02955219,97.6080409],[4.53468748,0.02955392,97.60920815],[4.53468799,0.02955564,97.61037638],[4.53468851,0.02955737,97.61154561],[4.53468903,0.0295591,97.61271587],[4.53468954,0.02956083,97.61388716],[4.53469006,0.02956255,97.61505952],[4.53469058,0.02956428,97.61623295],[4.53469109,0.02956601,97.61740749],[4.53469161,0.02956774,97.61858315],[4.53469213,0.02956946,97.61975995],[4.53469265,0.02957119,97.62093791],[4.53469317,0.02957292,97.62211704],[4.53469368,0.02957464,97.6232973],[4.5346942,0.02957637,97.62447863],[4.53469472,0.0295781,97.62566099],[4.53469524,0.02957982,97.62684432],[4.53469576,0.02958155,97.62802857],[4.53469628,0.02958328,97.6292137],[4.5346968,0.029585,97.63039963],[4.53469732,0.02958673,97.63158634],[4.53469784,0.02958846,97.63277376],[4.53469836,0.02959018,97.63396184],[4.53469888,0.02959191,97.63515054],[4.5346994,0.02959364,97.63633979],[4.53469992,0.02959536,97.63752956],[4.53470044,0.02959709,97.63871978],[4.53470096,0.02959882,97.63991042],[4.53470148,0.02960054,97.64110141],[4.534702,0.02960227,97.64229271],[4.53470252,0.029604,97.64348427],[4.53470304,0.02960572,97.64467608],[4.53470356,0.02960745,97.64586813],[4.53470408,0.02960918,97.64706044],[4.5347046,0.0296109,97.64825299],[4.53470511,0.02961263,97.6494458],[4.53470563,0.02961436,97.65063887],[4.53470615,0.02961608,97.65183219],[4.53470667,0.02961781,97.65302577],[4.53470719,0.02961954,97.65421962],[4.53470771,0.02962126,97.65541373],[4.53470822,0.02962299,97.6566081],[4.53470874,0.02962472,97.65780274],[4.53470926,0.02962645,97.65899764],[4.53470978,0.02962817,97.66019282],[4.53471029,0.0296299,97.66138827],[4.53471081,0.02963163,97.662584],[4.53471133,0.02963336,97.66378],[4.53471184,0.02963508,97.66497628],[4.53471236,0.02963681,97.66617283],[4.53471288,0.02963854,97.66736967],[4.53471339,0.02964027,97.6685668],[4.53471391,0.02964199,97.6697642],[4.53471443,0.02964372,97.6709619],[4.53471494,0.02964545,97.67215988],[4.53471546,0.02964718,97.67335815],[4.53471597,0.0296489,97.67455671],[4.53471649,0.02965063,97.67575557],[4.534717,0.02965236,97.67695472],[4.53471752,0.02965409,97.67815417],[4.53471803,0.02965582,97.67935391],[4.53471855,0.02965754,97.68055396],[4.53471906,0.02965927,97.68175431],[4.53471958,0.029661,97.68295496],[4.53472009,0.02966273,97.68415591],[4.53472061,0.02966445,97.68535717],[4.53472112,0.02966618,97.68655873],[4.53472164,0.02966791,97.68776061],[4.53472215,0.02966964,97.68896279],[4.53472266,0.02967137,97.69016529],[4.53472318,0.0296731,97.6913681],[4.53472369,0.02967483,97.69257122],[4.5347242,0.02967655,97.69377464],[4.53472472,0.02967828,97.69497831],[4.53472523,0.02968001,97.69618215],[4.53472574,0.02968174,97.69738612],[4.53472625,0.02968347,97.69859016],[4.53472677,0.0296852,97.69979422],[4.53472728,0.02968693,97.70099831],[4.53472779,0.02968866,97.70220246],[4.5347283,0.02969038,97.70340669],[4.53472881,0.02969211,97.70461103],[4.53472932,0.02969384,97.70581549],[4.53472983,0.02969557,97.70702011],[4.53473034,0.0296973,97.70822491],[4.53473085,0.02969903,97.70942991],[4.53473136,0.02970076,97.71063514],[4.53473187,0.02970249,97.71184062],[4.53473238,0.02970422,97.71304637],[4.53473289,0.02970595,97.71425242],[4.5347334,0.02970768,97.7154588],[4.53473391,0.02970941,97.71666553],[4.53473442,0.02971114,97.71787262],[4.53473493,0.02971287,97.71908012],[4.53473543,0.0297146,97.72028803],[4.53473594,0.02971633,97.72149639],[4.53473645,0.02971806,97.72270522],[4.53473696,0.02971979,97.72391454],[4.53473747,0.02972152,97.72512438],[4.53473798,0.02972325,97.72633476],[4.53473848,0.02972498,97.7275457],[4.53473899,0.02972671,97.72875724],[4.5347395,0.02972844,97.72996939],[4.53474001,0.02973017,97.73118217],[4.53474052,0.0297319,97.73239562],[4.53474102,0.02973363,97.73360976],[4.53474153,0.02973536,97.73482461],[4.53474204,0.02973709,97.7360402],[4.53474255,0.02973882,97.73725654],[4.53474306,0.02974055,97.73847368],[4.53474357,0.02974228,97.73969162],[4.53474407,0.02974401,97.74091039],[4.53474458,0.02974574,97.74213003],[4.53474509,0.02974747,97.74335055],[4.5347456,0.0297492,97.74457198],[4.53474611,0.02975093,97.74579434],[4.53474662,0.02975266,97.74701766],[4.53474712,0.02975439,97.74824196],[4.53474763,0.02975612,97.74946727],[4.53474814,0.02975785,97.75069362],[4.53474865,0.02975958,97.75192102],[4.53474916,0.02976131,97.75314948],[4.53474967,0.02976304,97.75437896],[4.53475018,0.02976477,97.75560944],[4.53475069,0.0297665,97.75684087],[4.5347512,0.02976823,97.75807324],[4.53475171,0.02976996,97.7593065],[4.53475222,0.02977169,97.76054062],[4.53475273,0.02977341,97.76177558],[4.53475324,0.02977514,97.76301133],[4.53475375,0.02977687,97.76424785],[4.53475426,0.0297786,97.76548511],[4.53475477,0.02978033,97.76672307],[4.53475528,0.02978206,97.7679617],[4.53475579,0.02978379,97.76920096],[4.5347563,0.02978552,97.77044083],[4.53475681,0.02978725,97.77168127],[4.53475732,0.02978898,97.77292225],[4.53475783,0.02979071,97.77416372],[4.53475834,0.02979244,97.77540567],[4.53475885,0.02979417,97.77664806],[4.53475936,0.0297959,97.77789085],[4.53475987,0.02979763,97.77913402],[4.53476038,0.02979936,97.78037758],[4.53476089,0.02980109,97.78162152],[4.53476139,0.02980282,97.78286585],[4.5347619,0.02980455,97.78411058],[4.53476241,0.02980628,97.78535571],[4.53476292,0.02980801,97.78660123],[4.53476343,0.02980974,97.78784717],[4.53476393,0.02981147,97.78909351],[4.53476444,0.0298132,97.79034027],[4.53476495,0.02981493,97.79158745],[4.53476546,0.02981666,97.79283504],[4.53476596,0.02981839,97.79408307],[4.53476647,0.02982012,97.79533154],[4.53476698,0.02982185,97.79658053],[4.53476749,0.02982358,97.79783007],[4.53476799,0.02982531,97.79908023],[4.5347685,0.02982704,97.80033106],[4.53476901,0.02982877,97.8015826],[4.53476951,0.0298305,97.80283493],[4.53477002,0.02983223,97.80408808],[4.53477053,0.02983396,97.80534213],[4.53477103,0.02983569,97.80659711],[4.53477154,0.02983742,97.80785309],[4.53477205,0.02983915,97.80911012],[4.53477256,0.02984088,97.81036826],[4.53477306,0.02984261,97.81162756],[4.53477357,0.02984434,97.81288809],[4.53477408,0.02984607,97.81414989],[4.53477459,0.0298478,97.81541303],[4.5347751,0.02984953,97.81667756],[4.53477561,0.02985126,97.81794355],[4.53477611,0.02985299,97.81921104],[4.53477662,0.02985472,97.8204801],[4.53477713,0.02985645,97.82175078],[4.53477764,0.02985818,97.82302315],[4.53477815,0.02985991,97.82429727],[4.53477867,0.02986164,97.82557319],[4.53477918,0.02986337,97.82685098],[4.53477969,0.0298651,97.82813064],[4.5347802,0.02986683,97.82941216],[4.53478071,0.02986856,97.83069549],[4.53478123,0.02987029,97.83198062],[4.53478174,0.02987201,97.8332675],[4.53478225,0.02987374,97.83455611],[4.53478277,0.02987547,97.83584641],[4.53478328,0.0298772,97.83713838],[4.5347838,0.02987893,97.83843198],[4.53478431,0.02988065,97.83972717],[4.53478483,0.02988238,97.84102394],[4.53478534,0.02988411,97.84232224],[4.53478586,0.02988584,97.84362204],[4.53478638,0.02988757,97.84492331],[4.53478689,0.02988929,97.84622601],[4.53478741,0.02989102,97.84753013],[4.53478793,0.02989275,97.84883561],[4.53478844,0.02989448,97.85014243],[4.53478896,0.0298962,97.85145056],[4.53478948,0.02989793,97.85275995],[4.53479,0.02989966,97.85407058],[4.53479051,0.02990138,97.85538242],[4.53479103,0.02990311,97.85669542],[4.53479155,0.02990484,97.85800956],[4.53479207,0.02990657,97.85932479],[4.53479259,0.02990829,97.86064109],[4.5347931,0.02991002,97.86195842],[4.53479362,0.02991175,97.86327674],[4.53479414,0.02991347,97.86459601],[4.53479466,0.0299152,97.86591618],[4.53479518,0.02991693,97.86723717],[4.53479569,0.02991866,97.86855894],[4.53479621,0.02992038,97.86988143],[4.53479673,0.02992211,97.87120456],[4.53479725,0.02992384,97.87252829],[4.53479777,0.02992556,97.87385256],[4.53479828,0.02992729,97.87517729],[4.5347988,0.02992902,97.87650242],[4.53479932,0.02993075,97.8778279],[4.53479983,0.02993247,97.87915366],[4.53480035,0.0299342,97.88047964],[4.53480087,0.02993593,97.88180577],[4.53480138,0.02993766,97.88313198],[4.5348019,0.02993938,97.88445822],[4.53480241,0.02994111,97.8857844],[4.53480293,0.02994284,97.88711048],[4.53480344,0.02994457,97.88843638],[4.53480395,0.0299463,97.88976207],[4.53480447,0.02994803,97.89108759],[4.53480498,0.02994975,97.89241295],[4.53480549,0.02995148,97.89373819],[4.534806,0.02995321,97.89506332],[4.53480652,0.02995494,97.89638837],[4.53480703,0.02995667,97.89771337],[4.53480754,0.0299584,97.89903834],[4.53480805,0.02996013,97.90036331],[4.53480856,0.02996186,97.9016883],[4.53480907,0.02996359,97.90301334],[4.53480958,0.02996532,97.90433846],[4.53481009,0.02996705,97.90566367],[4.5348106,0.02996878,97.90698902],[4.53481111,0.02997051,97.90831451],[4.53481161,0.02997224,97.90964019],[4.53481212,0.02997397,97.91096608],[4.53481263,0.0299757,97.9122922],[4.53481314,0.02997743,97.91361858],[4.53481364,0.02997916,97.91494526],[4.53481415,0.02998089,97.91627224],[4.53481466,0.02998262,97.91759953],[4.53481517,0.02998435,97.91892712],[4.53481567,0.02998608,97.92025502],[4.53481618,0.02998781,97.92158322],[4.53481669,0.02998954,97.92291172],[4.53481719,0.02999127,97.92424053],[4.5348177,0.029993,97.92556963],[4.5348182,0.02999473,97.92689903],[4.53481871,0.02999646,97.92822873],[4.53481921,0.02999819,97.92955873],[4.53481972,0.02999993,97.93088902],[4.53482023,0.03000166,97.93221962],[4.53482073,0.03000339,97.93355052],[4.53482124,0.03000512,97.93488173],[4.53482174,0.03000685,97.93621323],[4.53482225,0.03000858,97.93754505],[4.53482275,0.03001031,97.93887717],[4.53482326,0.03001204,97.94020961],[4.53482376,0.03001377,97.94154236],[4.53482427,0.0300155,97.94287543],[4.53482477,0.03001723,97.94420882],[4.53482528,0.03001896,97.94554254],[4.53482578,0.0300207,97.94687659],[4.53482629,0.03002243,97.94821098],[4.5348268,0.03002416,97.9495457],[4.5348273,0.03002589,97.95088077],[4.53482781,0.03002762,97.9522162],[4.53482831,0.03002935,97.95355198],[4.53482882,0.03003108,97.95488812],[4.53482932,0.03003281,97.95622464],[4.53482983,0.03003454,97.95756153],[4.53483034,0.03003627,97.95889881],[4.53483084,0.030038,97.96023646],[4.53483135,0.03003973,97.96157442],[4.53483186,0.03004146,97.96291265],[4.53483236,0.03004319,97.96425111],[4.53483287,0.03004493,97.96558976],[4.53483338,0.03004666,97.96692857],[4.53483388,0.03004839,97.96826749],[4.53483439,0.03005012,97.96960649],[4.5348349,0.03005185,97.97094553],[4.53483541,0.03005358,97.97228457],[4.53483591,0.03005531,97.97362357],[4.53483642,0.03005704,97.9749625],[4.53483693,0.03005877,97.97630131],[4.53483744,0.0300605,97.97763997],[4.53483795,0.03006223,97.97897844],[4.53483845,0.03006396,97.98031667],[4.53483896,0.03006569,97.98165464],[4.53483947,0.03006742,97.9829923],[4.53483998,0.03006915,97.98432961],[4.53484049,0.03007088,97.98566653],[4.534841,0.03007261,97.98700303],[4.5348415,0.03007434,97.98833906],[4.53484201,0.03007607,97.98967458],[4.53484252,0.0300778,97.99100956],[4.53484303,0.03007953,97.99234395],[4.53484354,0.03008126,97.99367772],[4.53484405,0.03008299,97.99501082],[4.53484456,0.03008472,97.99634321],[4.53484506,0.03008645,97.99767486],[4.53484557,0.03008818,97.99900572],[4.53484608,0.03008991,98.00033575],[4.53484659,0.03009164,98.00166491],[4.5348471,0.03009337,98.00299316],[4.53484761,0.0300951,98.00432046],[4.53484812,0.03009683,98.00564677],[4.53484863,0.03009856,98.00697205],[4.53484913,0.03010029,98.00829625],[4.53484964,0.03010202,98.00961934],[4.53485015,0.03010375,98.01094127],[4.53485066,0.03010548,98.01226201],[4.53485117,0.03010721,98.0135815],[4.53485168,0.03010894,98.01489971],[4.53485219,0.03011067,98.0162166],[4.5348527,0.03011239,98.01753213],[4.5348532,0.03011412,98.01884626],[4.53485371,0.03011585,98.02015898],[4.53485422,0.03011758,98.02147026],[4.53485473,0.03011931,98.02278007],[4.53485524,0.03012104,98.02408838],[4.53485575,0.03012277,98.02539518],[4.53485626,0.0301245,98.02670044],[4.53485676,0.03012623,98.02800413],[4.53485727,0.03012796,98.02930622],[4.53485778,0.03012969,98.0306067],[4.53485829,0.03013142,98.03190553],[4.5348588,0.03013315,98.0332027],[4.53485931,0.03013488,98.03449817],[4.53485981,0.03013661,98.03579192],[4.53486032,0.03013834,98.03708392],[4.53486083,0.03014007,98.03837416],[4.53486134,0.03014181,98.0396626],[4.53486185,0.03014354,98.04094923],[4.53486235,0.03014527,98.04223401],[4.53486286,0.030147,98.04351692],[4.53486337,0.03014873,98.04479794],[4.53486388,0.03015046,98.04607703],[4.53486439,0.03015219,98.04735419],[4.53486489,0.03015392,98.04862937],[4.5348654,0.03015565,98.04990257],[4.53486591,0.03015738,98.05117374],[4.53486642,0.03015911,98.0524429],[4.53486693,0.03016084,98.05371007],[4.53486743,0.03016257,98.05497525],[4.53486794,0.0301643,98.05623846],[4.53486845,0.03016603,98.05749971],[4.53486896,0.03016776,98.05875903],[4.53486947,0.03016949,98.06001642],[4.53486997,0.03017122,98.06127189],[4.53487048,0.03017295,98.06252547],[4.53487099,0.03017468,98.06377717],[4.5348715,0.03017641,98.06502698],[4.53487201,0.03017814,98.06627493],[4.53487251,0.03017987,98.06752103],[4.53487302,0.0301816,98.06876528],[4.53487353,0.03018333,98.0700077],[4.53487404,0.03018506,98.07124829],[4.53487455,0.03018679,98.07248708],[4.53487505,0.03018852,98.07372406],[4.53487556,0.03019025,98.07495925],[4.53487607,0.03019198,98.07619266],[4.53487658,0.03019371,98.0774243],[4.53487709,0.03019544,98.07865418],[4.53487759,0.03019717,98.07988232],[4.5348781,0.0301989,98.08110871],[4.53487861,0.03020063,98.08233338],[4.53487912,0.03020236,98.08355634],[4.53487963,0.03020409,98.08477758],[4.53488013,0.03020582,98.08599713],[4.53488064,0.03020755,98.087215],[4.53488115,0.03020928,98.08843119],[4.53488166,0.03021101,98.08964572],[4.53488217,0.03021274,98.0908586],[4.53488267,0.03021447,98.09206983],[4.53488318,0.0302162,98.09327943],[4.53488369,0.03021793,98.09448741],[4.5348842,0.03021966,98.09569378],[4.53488471,0.03022139,98.09689855],[4.53488521,0.03022312,98.09810173],[4.53488572,0.03022485,98.09930333],[4.53488623,0.03022658,98.10050336],[4.53488674,0.03022831,98.10170183],[4.53488724,0.03023004,98.10289875],[4.53488775,0.03023177,98.10409414],[4.53488826,0.0302335,98.105288],[4.53488877,0.03023523,98.10648034],[4.53488928,0.03023696,98.10767118],[4.53488978,0.03023869,98.10886052],[4.53489029,0.03024042,98.11004838],[4.5348908,0.03024215,98.11123476],[4.53489131,0.03024388,98.11241968],[4.53489182,0.03024561,98.11360314],[4.53489232,0.03024734,98.11478516],[4.53489283,0.03024907,98.11596575],[4.53489334,0.0302508,98.11714492],[4.53489385,0.03025253,98.11832267],[4.53489435,0.03025426,98.11949903],[4.53489486,0.03025599,98.12067399],[4.53489537,0.03025772,98.12184757],[4.53489588,0.03025945,98.12301978],[4.53489639,0.03026118,98.12419063],[4.53489689,0.03026291,98.12536013],[4.5348974,0.03026464,98.1265283],[4.53489791,0.03026637,98.12769513],[4.53489842,0.0302681,98.12886065],[4.53489892,0.03026983,98.13002486],[4.53489943,0.03027157,98.13118777],[4.53489994,0.0302733,98.1323494],[4.53490045,0.03027503,98.13350975],[4.53490095,0.03027676,98.13466883],[4.53490146,0.03027849,98.13582666],[4.53490197,0.03028022,98.13698324],[4.53490248,0.03028195,98.13813859],[4.53490299,0.03028368,98.13929271],[4.53490349,0.03028541,98.14044562],[4.534904,0.03028714,98.14159732],[4.53490451,0.03028887,98.14274781],[4.53490502,0.0302906,98.14389711],[4.53490552,0.03029233,98.14504522],[4.53490603,0.03029406,98.14619215],[4.53490654,0.03029579,98.14733791],[4.53490705,0.03029752,98.1484825],[4.53490755,0.03029925,98.14962594],[4.53490806,0.03030098,98.15076822],[4.53490857,0.03030271,98.15190936],[4.53490908,0.03030444,98.15304936],[4.53490958,0.03030617,98.15418823],[4.53491009,0.0303079,98.15532598],[4.5349106,0.03030963,98.15646262],[4.53491111,0.03031136,98.15759815],[4.53491161,0.03031309,98.15873258],[4.53491212,0.03031482,98.15986592],[4.53491263,0.03031655,98.16099818],[4.53491313,0.03031828,98.16212936],[4.53491364,0.03032001,98.16325947],[4.53491415,0.03032174,98.16438852],[4.53491466,0.03032347,98.16551651],[4.53491516,0.0303252,98.16664346],[4.53491567,0.03032693,98.16776937],[4.53491618,0.03032866,98.16889425],[4.53491668,0.03033039,98.17001811],[4.53491719,0.03033213,98.17114095],[4.5349177,0.03033386,98.17226279],[4.53491821,0.03033559,98.17338362],[4.53491871,0.03033732,98.17450347],[4.53491922,0.03033905,98.17562233],[4.53491973,0.03034078,98.17674021],[4.53492023,0.03034251,98.17785712],[4.53492074,0.03034424,98.17897308],[4.53492125,0.03034597,98.18008808],[4.53492175,0.0303477,98.18120214],[4.53492226,0.03034943,98.18231526],[4.53492276,0.03035116,98.18342745],[4.53492327,0.03035289,98.18453873],[4.53492378,0.03035462,98.18564909],[4.53492428,0.03035635,98.18675854],[4.53492479,0.03035808,98.1878671],[4.5349253,0.03035981,98.18897478],[4.5349258,0.03036154,98.19008156],[4.53492631,0.03036328,98.19118747],[4.53492681,0.03036501,98.1922925],[4.53492732,0.03036674,98.19339667],[4.53492783,0.03036847,98.1945],[4.53492833,0.0303702,98.1956025],[4.53492884,0.03037193,98.19670418],[4.53492934,0.03037366,98.19780506],[4.53492985,0.03037539,98.19890516],[4.53493035,0.03037712,98.20000448],[4.53493086,0.03037885,98.20110306],[4.53493136,0.03038058,98.20220089],[4.53493187,0.03038231,98.203298],[4.53493238,0.03038405,98.2043944],[4.53493288,0.03038578,98.20549011],[4.53493339,0.03038751,98.20658514],[4.53493389,0.03038924,98.2076795],[4.5349344,0.03039097,98.20877321],[4.5349349,0.0303927,98.20986629],[4.53493541,0.03039443,98.21095875],[4.53493591,0.03039616,98.21205061],[4.53493642,0.03039789,98.21314188],[4.53493692,0.03039962,98.21423257],[4.53493743,0.03040136,98.2153227],[4.53493793,0.03040309,98.21641229],[4.53493844,0.03040482,98.21750135],[4.53493894,0.03040655,98.21858989],[4.53493944,0.03040828,98.21967793],[4.53493995,0.03041001,98.22076548],[4.53494045,0.03041174,98.22185257],[4.53494096,0.03041347,98.22293919],[4.53494146,0.0304152,98.22402538],[4.53494197,0.03041694,98.22511113],[4.53494247,0.03041867,98.22619648],[4.53494298,0.0304204,98.22728142],[4.53494348,0.03042213,98.22836598],[4.53494399,0.03042386,98.22945018],[4.53494449,0.03042559,98.23053402],[4.53494499,0.03042732,98.23161754],[4.5349455,0.03042905,98.23270073],[4.534946,0.03043079,98.23378362],[4.53494651,0.03043252,98.23486623],[4.53494701,0.03043425,98.23594856],[4.53494752,0.03043598,98.23703064],[4.53494802,0.03043771,98.23811249],[4.53494852,0.03043944,98.23919411],[4.53494903,0.03044117,98.24027553],[4.53494953,0.0304429,98.24135676],[4.53495004,0.03044464,98.24243782],[4.53495054,0.03044637,98.24351872],[4.53495104,0.0304481,98.24459947],[4.53495155,0.03044983,98.2456801],[4.53495205,0.03045156,98.24676062],[4.53495256,0.03045329,98.24784105],[4.53495306,0.03045502,98.2489214],[4.53495357,0.03045675,98.25000168],[4.53495407,0.03045849,98.25108192],[4.53495457,0.03046022,98.25216213],[4.53495508,0.03046195,98.25324232],[4.53495558,0.03046368,98.25432251],[4.53495609,0.03046541,98.25540271],[4.53495659,0.03046714,98.25648295],[4.53495709,0.03046887,98.25756323],[4.5349576,0.0304706,98.25864358],[4.5349581,0.03047234,98.259724],[4.53495861,0.03047407,98.26080452],[4.53495911,0.0304758,98.26188516],[4.53495961,0.03047753,98.26296594],[4.53496012,0.03047926,98.26404686],[4.53496062,0.03048099,98.26512795],[4.53496113,0.03048272,98.26620923],[4.53496163,0.03048445,98.26729071],[4.53496214,0.03048619,98.26837242],[4.53496264,0.03048792,98.26945437],[4.53496314,0.03048965,98.27053657],[4.53496365,0.03049138,98.27161905],[4.53496415,0.03049311,98.27270182],[4.53496466,0.03049484,98.27378489],[4.53496516,0.03049657,98.2748683],[4.53496567,0.0304983,98.27595205],[4.53496617,0.03050004,98.27703616],[4.53496668,0.03050177,98.27812066],[4.53496718,0.0305035,98.27920554],[4.53496768,0.03050523,98.28029084],[4.53496819,0.03050696,98.28137657],[4.53496869,0.03050869,98.28246275],[4.5349692,0.03051042,98.2835494],[4.5349697,0.03051215,98.28463652],[4.53497021,0.03051388,98.28572416],[4.53497071,0.03051562,98.28681233],[4.53497122,0.03051735,98.28790107],[4.53497172,0.03051908,98.28899041],[4.53497223,0.03052081,98.29008037],[4.53497273,0.03052254,98.291171],[4.53497324,0.03052427,98.2922623],[4.53497375,0.030526,98.29335433],[4.53497425,0.03052773,98.29444709],[4.53497476,0.03052946,98.29554063],[4.53497526,0.03053119,98.29663497],[4.53497577,0.03053292,98.29773014],[4.53497627,0.03053465,98.29882617],[4.53497678,0.03053639,98.29992309],[4.53497729,0.03053812,98.30102093],[4.53497779,0.03053985,98.3021197],[4.5349783,0.03054158,98.30321945],[4.53497881,0.03054331,98.3043202],[4.53497932,0.03054504,98.30542198],[4.53497982,0.03054677,98.30652481],[4.53498033,0.0305485,98.30762864],[4.53498084,0.03055022,98.30873346],[4.53498134,0.03055195,98.30983922],[4.53498185,0.03055368,98.31094588],[4.53498236,0.03055541,98.31205341],[4.53498287,0.03055714,98.31316177],[4.53498338,0.03055887,98.31427092],[4.53498389,0.0305606,98.31538083],[4.53498439,0.03056233,98.31649146],[4.5349849,0.03056406,98.31760278],[4.53498541,0.03056579,98.31871475],[4.53498592,0.03056752,98.31982733],[4.53498643,0.03056925,98.3209405],[4.53498694,0.03057098,98.32205421],[4.53498745,0.03057271,98.32316843],[4.53498795,0.03057444,98.32428314],[4.53498846,0.03057617,98.32539828],[4.53498897,0.0305779,98.32651384],[4.53498948,0.03057963,98.32762977],[4.53498999,0.03058136,98.32874604],[4.5349905,0.03058309,98.32986262],[4.534991,0.03058482,98.33097948],[4.53499151,0.03058655,98.33209658],[4.53499202,0.03058828,98.33321389],[4.53499253,0.03059001,98.33433138],[4.53499304,0.03059174,98.33544902],[4.53499354,0.03059348,98.33656677],[4.53499405,0.03059521,98.3376846],[4.53499456,0.03059694,98.33880248],[4.53499506,0.03059867,98.33992038],[4.53499557,0.0306004,98.34103826],[4.53499608,0.03060213,98.3421561],[4.53499658,0.03060386,98.34327386],[4.53499709,0.03060559,98.34439151],[4.5349976,0.03060732,98.34550902],[4.5349981,0.03060905,98.34662636],[4.53499861,0.03061078,98.3477435],[4.53499911,0.03061251,98.34886041],[4.53499961,0.03061424,98.34997705],[4.53500012,0.03061598,98.3510934],[4.53500062,0.03061771,98.35220943],[4.53500112,0.03061944,98.35332513],[4.53500163,0.03062117,98.35444055],[4.53500213,0.0306229,98.35555572],[4.53500263,0.03062463,98.35667067],[4.53500313,0.03062637,98.35778544],[4.53500364,0.0306281,98.35890006],[4.53500414,0.03062983,98.36001457],[4.53500464,0.03063156,98.361129],[4.53500514,0.0306333,98.36224338],[4.53500564,0.03063503,98.36335775],[4.53500614,0.03063676,98.36447215],[4.53500664,0.03063849,98.3655866],[4.53500714,0.03064023,98.36670114],[4.53500764,0.03064196,98.36781581],[4.53500814,0.03064369,98.36893061],[4.53500864,0.03064542,98.37004558],[4.53500914,0.03064716,98.37116073],[4.53500964,0.03064889,98.37227607],[4.53501014,0.03065062,98.37339163],[4.53501063,0.03065235,98.37450741],[4.53501113,0.03065409,98.37562345],[4.53501163,0.03065582,98.37673975],[4.53501213,0.03065755,98.37785634],[4.53501263,0.03065929,98.37897323],[4.53501313,0.03066102,98.38009042],[4.53501362,0.03066275,98.38120795],[4.53501412,0.03066449,98.38232583],[4.53501462,0.03066622,98.38344407],[4.53501512,0.03066795,98.38456268],[4.53501562,0.03066969,98.38568168],[4.53501611,0.03067142,98.38680109],[4.53501661,0.03067315,98.38792093],[4.53501711,0.03067488,98.3890412],[4.53501761,0.03067662,98.39016192],[4.53501811,0.03067835,98.39128311],[4.5350186,0.03068008,98.39240478],[4.5350191,0.03068182,98.39352695],[4.5350196,0.03068355,98.39464963],[4.5350201,0.03068528,98.39577283],[4.53502059,0.03068702,98.39689658],[4.53502109,0.03068875,98.39802088],[4.53502159,0.03069048,98.39914575],[4.53502209,0.03069222,98.40027121],[4.53502258,0.03069395,98.40139726],[4.53502308,0.03069568,98.40252393],[4.53502358,0.03069742,98.40365123],[4.53502408,0.03069915,98.40477917],[4.53502458,0.03070088,98.40590777],[4.53502507,0.03070262,98.40703704],[4.53502557,0.03070435,98.408167],[4.53502607,0.03070608,98.40929765],[4.53502657,0.03070781,98.41042902],[4.53502707,0.03070955,98.41156113],[4.53502757,0.03071128,98.41269397],[4.53502806,0.03071301,98.41382757],[4.53502856,0.03071475,98.41496195],[4.53502906,0.03071648,98.41609711],[4.53502956,0.03071821,98.41723307],[4.53503006,0.03071994,98.41836985],[4.53503056,0.03072168,98.41950745],[4.53503106,0.03072341,98.4206459],[4.53503156,0.03072514,98.42178521],[4.53503206,0.03072688,98.42292539],[4.53503256,0.03072861,98.42406646],[4.53503306,0.03073034,98.42520842],[4.53503356,0.03073207,98.42635131],[4.53503406,0.03073381,98.42749512],[4.53503456,0.03073554,98.42863987],[4.53503506,0.03073727,98.42978559],[4.53503556,0.030739,98.43093227],[4.53503607,0.03074073,98.43207995],[4.53503657,0.03074247,98.4332286],[4.53503707,0.0307442,98.43437822],[4.53503757,0.03074593,98.43552878],[4.53503807,0.03074766,98.43668027],[4.53503858,0.03074939,98.43783266],[4.53503908,0.03075112,98.43898593],[4.53503958,0.03075286,98.44014007],[4.53504009,0.03075459,98.44129505],[4.53504059,0.03075632,98.44245086],[4.53504109,0.03075805,98.44360746],[4.5350416,0.03075978,98.44476486],[4.5350421,0.03076151,98.44592302],[4.5350426,0.03076325,98.44708192],[4.53504311,0.03076498,98.44824155],[4.53504361,0.03076671,98.44940188],[4.53504412,0.03076844,98.4505629],[4.53504462,0.03077017,98.45172459],[4.53504513,0.0307719,98.45288692],[4.53504563,0.03077363,98.45404988],[4.53504613,0.03077536,98.45521345],[4.53504664,0.0307771,98.45637761],[4.53504714,0.03077883,98.45754234],[4.53504765,0.03078056,98.45870762],[4.53504815,0.03078229,98.45987343],[4.53504866,0.03078402,98.46103974],[4.53504916,0.03078575,98.46220656],[4.53504967,0.03078748,98.46337384],[4.53505017,0.03078921,98.46454158],[4.53505068,0.03079094,98.46570975],[4.53505118,0.03079267,98.46687833],[4.53505169,0.03079441,98.46804732],[4.53505219,0.03079614,98.46921667],[4.5350527,0.03079787,98.47038639],[4.5350532,0.0307996,98.47155644],[4.53505371,0.03080133,98.4727268],[4.53505421,0.03080306,98.47389746],[4.53505472,0.03080479,98.47506839],[4.53505522,0.03080652,98.47623956],[4.53505573,0.03080825,98.47741097],[4.53505623,0.03080999,98.47858257],[4.53505673,0.03081172,98.47975436],[4.53505724,0.03081345,98.48092631],[4.53505774,0.03081518,98.4820984],[4.53505825,0.03081691,98.48327064],[4.53505875,0.03081864,98.48444302],[4.53505925,0.03082037,98.48561556],[4.53505976,0.03082211,98.48678826],[4.53506026,0.03082384,98.48796112],[4.53506076,0.03082557,98.48913416],[4.53506127,0.0308273,98.49030737],[4.53506177,0.03082903,98.49148076],[4.53506227,0.03083076,98.49265434],[4.53506278,0.0308325,98.49382811],[4.53506328,0.03083423,98.49500208],[4.53506378,0.03083596,98.49617625],[4.53506428,0.03083769,98.49735064],[4.53506479,0.03083942,98.49852524],[4.53506529,0.03084115,98.49970005],[4.53506579,0.03084289,98.5008751],[4.53506629,0.03084462,98.50205037],[4.5350668,0.03084635,98.50322588],[4.5350673,0.03084808,98.50440163],[4.5350678,0.03084981,98.50557763],[4.5350683,0.03085155,98.50675389],[4.53506881,0.03085328,98.5079304],[4.53506931,0.03085501,98.50910717],[4.53506981,0.03085674,98.51028421],[4.53507031,0.03085847,98.51146153],[4.53507081,0.0308602,98.51263913],[4.53507131,0.03086194,98.51381701],[4.53507182,0.03086367,98.51499519],[4.53507232,0.0308654,98.51617366],[4.53507282,0.03086713,98.51735243],[4.53507332,0.03086887,98.51853152],[4.53507382,0.0308706,98.51971091],[4.53507432,0.03087233,98.52089062],[4.53507483,0.03087406,98.52207066],[4.53507533,0.03087579,98.52325102],[4.53507583,0.03087753,98.52443173],[4.53507633,0.03087926,98.52561277],[4.53507683,0.03088099,98.5267942],[4.53507733,0.03088272,98.52797606],[4.53507783,0.03088445,98.52915841],[4.53507834,0.03088619,98.5303413],[4.53507884,0.03088792,98.53152478],[4.53507934,0.03088965,98.53270891],[4.53507984,0.03089138,98.53389374],[4.53508034,0.03089311,98.53507933],[4.53508085,0.03089485,98.53626572],[4.53508135,0.03089658,98.53745296],[4.53508185,0.03089831,98.53864108],[4.53508235,0.03090004,98.53983004],[4.53508286,0.03090177,98.54101981],[4.53508336,0.0309035,98.54221035],[4.53508386,0.03090524,98.54340163],[4.53508437,0.03090697,98.54459363],[4.53508487,0.0309087,98.54578629],[4.53508537,0.03091043,98.54697961],[4.53508588,0.03091216,98.54817353],[4.53508638,0.03091389,98.54936803],[4.53508689,0.03091562,98.55056307],[4.53508739,0.03091736,98.55175863],[4.53508789,0.03091909,98.55295467],[4.5350884,0.03092082,98.55415115],[4.5350889,0.03092255,98.55534804],[4.53508941,0.03092428,98.55654531],[4.53508991,0.03092601,98.55774293],[4.53509042,0.03092774,98.55894085],[4.53509092,0.03092947,98.56013906],[4.53509142,0.03093121,98.56133751],[4.53509193,0.03093294,98.56253617],[4.53509243,0.03093467,98.563735],[4.53509294,0.0309364,98.56493398],[4.53509344,0.03093813,98.56613307],[4.53509394,0.03093986,98.56733223],[4.53509445,0.03094159,98.56853143],[4.53509495,0.03094333,98.56973064],[4.53509545,0.03094506,98.57092982],[4.53509596,0.03094679,98.57212893],[4.53509646,0.03094852,98.57332794],[4.53509696,0.03095025,98.57452683],[4.53509746,0.03095198,98.57572554],[4.53509797,0.03095372,98.57692405],[4.53509847,0.03095545,98.57812233],[4.53509897,0.03095718,98.57932032],[4.53509947,0.03095891,98.58051801],[4.53509997,0.03096064,98.58171536],[4.53510047,0.03096238,98.58291233],[4.53510097,0.03096411,98.58410888],[4.53510147,0.03096584,98.58530497],[4.53510197,0.03096757,98.58650052],[4.53510247,0.03096931,98.58769543],[4.53510297,0.03097104,98.58888972],[4.53510347,0.03097277,98.59008342],[4.53510397,0.03097451,98.59127657],[4.53510447,0.03097624,98.5924692],[4.53510496,0.03097797,98.59366134],[4.53510546,0.0309797,98.59485304],[4.53510596,0.03098144,98.59604433],[4.53510645,0.03098317,98.59723523],[4.53510695,0.03098491,98.5984258],[4.53510745,0.03098664,98.59961606],[4.53510794,0.03098837,98.60080605],[4.53510844,0.03099011,98.6019958],[4.53510893,0.03099184,98.60318536],[4.53510943,0.03099357,98.60437476],[4.53510992,0.03099531,98.60556402],[4.53511042,0.03099704,98.60675321],[4.53511091,0.03099878,98.60794233],[4.53511141,0.03100051,98.60913144],[4.5351119,0.03100224,98.61032058],[4.5351124,0.03100398,98.61150977],[4.53511289,0.03100571,98.61269905],[4.53511338,0.03100745,98.61388847],[4.53511388,0.03100918,98.61507805],[4.53511437,0.03101092,98.61626784],[4.53511487,0.03101265,98.61745788],[4.53511536,0.03101438,98.6186482],[4.53511585,0.03101612,98.61983883],[4.53511635,0.03101785,98.62102983],[4.53511684,0.03101959,98.62222122],[4.53511734,0.03102132,98.62341304],[4.53511783,0.03102306,98.62460534],[4.53511833,0.03102479,98.62579815],[4.53511882,0.03102652,98.62699151],[4.53511931,0.03102826,98.62818545],[4.53511981,0.03102999,98.62938003],[4.5351203,0.03103173,98.63057527],[4.5351208,0.03103346,98.63177122],[4.5351213,0.03103519,98.63296791],[4.53512179,0.03103693,98.63416539],[4.53512229,0.03103866,98.63536369],[4.53512278,0.0310404,98.63656286],[4.53512328,0.03104213,98.63776293],[4.53512378,0.03104386,98.63896395],[4.53512427,0.0310456,98.64016592],[4.53512477,0.03104733,98.64136882],[4.53512527,0.03104906,98.64257263],[4.53512576,0.0310508,98.64377733],[4.53512626,0.03105253,98.64498289],[4.53512676,0.03105426,98.64618928],[4.53512726,0.03105599,98.64739649],[4.53512776,0.03105773,98.64860449],[4.53512826,0.03105946,98.64981325],[4.53512875,0.03106119,98.65102276],[4.53512925,0.03106293,98.65223299],[4.53512975,0.03106466,98.65344391],[4.53513025,0.03106639,98.6546555],[4.53513075,0.03106812,98.65586774],[4.53513125,0.03106986,98.6570806],[4.53513175,0.03107159,98.65829406],[4.53513225,0.03107332,98.65950809],[4.53513275,0.03107505,98.66072267],[4.53513325,0.03107679,98.66193777],[4.53513375,0.03107852,98.66315338],[4.53513425,0.03108025,98.66436945],[4.53513475,0.03108198,98.66558598],[4.53513525,0.03108372,98.66680293],[4.53513575,0.03108545,98.66802028],[4.53513625,0.03108718,98.66923801],[4.53513676,0.03108891,98.67045615],[4.53513726,0.03109065,98.67167478],[4.53513776,0.03109238,98.67289394],[4.53513826,0.03109411,98.67411371],[4.53513876,0.03109584,98.67533414],[4.53513926,0.03109757,98.67655531],[4.53513976,0.03109931,98.67777727],[4.53514026,0.03110104,98.67900009],[4.53514077,0.03110277,98.68022381],[4.53514127,0.0311045,98.68144841],[4.53514177,0.03110623,98.68267384],[4.53514227,0.03110797,98.68390006],[4.53514278,0.0311097,98.68512703],[4.53514328,0.03111143,98.68635468],[4.53514378,0.03111316,98.68758299],[4.53514429,0.03111489,98.68881189],[4.53514479,0.03111662,98.69004135],[4.53514529,0.03111835,98.69127132],[4.5351458,0.03112009,98.69250175],[4.5351463,0.03112182,98.6937326],[4.5351468,0.03112355,98.69496381],[4.53514731,0.03112528,98.69619534],[4.53514781,0.03112701,98.69742714],[4.53514831,0.03112874,98.69865917],[4.53514882,0.03113047,98.69989137],[4.53514932,0.03113221,98.7011237],[4.53514983,0.03113394,98.70235611],[4.53515033,0.03113567,98.70358854],[4.53515083,0.0311374,98.70482096],[4.53515134,0.03113913,98.70605331],[4.53515184,0.03114086,98.70728554],[4.53515234,0.0311426,98.7085176],[4.53515284,0.03114433,98.70974947],[4.53515335,0.03114606,98.71098115],[4.53515385,0.03114779,98.71221262],[4.53515435,0.03114952,98.71344389],[4.53515485,0.03115125,98.71467496],[4.53515536,0.03115299,98.71590581],[4.53515586,0.03115472,98.71713646],[4.53515636,0.03115645,98.71836689],[4.53515686,0.03115818,98.71959709],[4.53515736,0.03115992,98.72082708],[4.53515786,0.03116165,98.72205684],[4.53515836,0.03116338,98.72328638],[4.53515886,0.03116511,98.72451568],[4.53515936,0.03116684,98.72574474],[4.53515986,0.03116858,98.72697357],[4.53516036,0.03117031,98.72820209],[4.53516086,0.03117204,98.72943023],[4.53516136,0.03117377,98.73065792],[4.53516186,0.03117551,98.73188506],[4.53516236,0.03117724,98.73311158],[4.53516286,0.03117897,98.7343374],[4.53516336,0.03118071,98.73556243],[4.53516386,0.03118244,98.73678659],[4.53516435,0.03118417,98.73800981],[4.53516485,0.03118591,98.73923201],[4.53516535,0.03118764,98.74045321],[4.53516584,0.03118937,98.74167343],[4.53516634,0.03119111,98.74289272],[4.53516683,0.03119284,98.7441111],[4.53516733,0.03119457,98.74532859],[4.53516782,0.03119631,98.74654524],[4.53516832,0.03119804,98.74776108],[4.53516881,0.03119978,98.74897613],[4.5351693,0.03120151,98.75019042],[4.5351698,0.03120325,98.75140399],[4.53517029,0.03120498,98.75261688],[4.53517078,0.03120672,98.7538291],[4.53517127,0.03120845,98.75504071],[4.53517177,0.03121019,98.75625171],[4.53517226,0.03121192,98.75746216],[4.53517275,0.03121366,98.75867208],[4.53517324,0.03121539,98.75988151],[4.53517373,0.03121713,98.76109047],[4.53517422,0.03121886,98.762299],[4.53517471,0.0312206,98.76350714],[4.5351752,0.03122233,98.76471491],[4.53517569,0.03122407,98.76592236],[4.53517618,0.0312258,98.76712951],[4.53517667,0.03122754,98.7683364],[4.53517716,0.03122927,98.76954306],[4.53517765,0.03123101,98.77074952],[4.53517814,0.03123275,98.77195583],[4.53517863,0.03123448,98.77316201],[4.53517912,0.03123622,98.7743681],[4.53517961,0.03123795,98.77557414],[4.53518009,0.03123969,98.77678015],[4.53518058,0.03124142,98.77798618],[4.53518107,0.03124316,98.77919225],[4.53518156,0.0312449,98.78039841],[4.53518205,0.03124663,98.78160469],[4.53518254,0.03124837,98.78281112],[4.53518303,0.0312501,98.78401774],[4.53518352,0.03125184,98.78522459],[4.53518401,0.03125357,98.7864317],[4.53518449,0.03125531,98.78763911],[4.53518498,0.03125705,98.78884685],[4.53518547,0.03125878,98.79005496],[4.53518596,0.03126052,98.79126348],[4.53518645,0.03126225,98.79247245],[4.53518694,0.03126399,98.79368189],[4.53518743,0.03126572,98.79489185],[4.53518792,0.03126746,98.79610237],[4.53518841,0.03126919,98.79731354],[4.5351889,0.03127093,98.79852543],[4.53518939,0.03127266,98.79973813],[4.53518988,0.0312744,98.8009517],[4.53519037,0.03127614,98.80216624],[4.53519086,0.03127787,98.80338181],[4.53519136,0.03127961,98.80459851],[4.53519185,0.03128134,98.80581641],[4.53519234,0.03128307,98.8070356],[4.53519283,0.03128481,98.80825615],[4.53519333,0.03128654,98.80947815],[4.53519382,0.03128828,98.81070167],[4.53519432,0.03129001,98.8119268],[4.53519481,0.03129175,98.81315363],[4.53519531,0.03129348,98.81438223],[4.5351958,0.03129521,98.81561269],[4.5351963,0.03129695,98.81684509],[4.5351968,0.03129868,98.81807949],[4.5351973,0.03130041,98.81931581],[4.53519779,0.03130215,98.82055396],[4.53519829,0.03130388,98.82179385],[4.53519879,0.03130561,98.82303536],[4.53519929,0.03130734,98.82427841],[4.53519979,0.03130908,98.8255229],[4.5352003,0.03131081,98.82676872],[4.5352008,0.03131254,98.82801577],[4.5352013,0.03131427,98.82926396],[4.5352018,0.031316,98.83051318],[4.5352023,0.03131774,98.83176334],[4.53520281,0.03131947,98.83301433],[4.53520331,0.0313212,98.83426604],[4.53520381,0.03132293,98.83551838],[4.53520432,0.03132466,98.83677125],[4.53520482,0.03132639,98.83802454],[4.53520532,0.03132812,98.83927815],[4.53520583,0.03132986,98.84053197],[4.53520633,0.03133159,98.8417859],[4.53520683,0.03133332,98.84303984],[4.53520734,0.03133505,98.84429368],[4.53520784,0.03133678,98.84554732],[4.53520834,0.03133851,98.84680066],[4.53520885,0.03134025,98.84805358],[4.53520935,0.03134198,98.84930606],[4.53520985,0.03134371,98.85055812],[4.53521035,0.03134544,98.85180981],[4.53521086,0.03134717,98.85306117],[4.53521136,0.0313489,98.85431222],[4.53521186,0.03135064,98.85556302],[4.53521236,0.03135237,98.85681359],[4.53521286,0.0313541,98.85806397],[4.53521336,0.03135583,98.8593142],[4.53521387,0.03135757,98.86056432],[4.53521437,0.0313593,98.86181437],[4.53521487,0.03136103,98.86306438],[4.53521537,0.03136276,98.86431439],[4.53521587,0.03136449,98.86556445],[4.53521637,0.03136623,98.86681459],[4.53521687,0.03136796,98.86806485],[4.53521737,0.03136969,98.86931526],[4.53521788,0.03137142,98.87056587],[4.53521838,0.03137315,98.87181672],[4.53521888,0.03137489,98.87306784],[4.53521938,0.03137662,98.87431927],[4.53521988,0.03137835,98.87557106],[4.53522038,0.03138008,98.87682324],[4.53522088,0.03138182,98.87807585],[4.53522139,0.03138355,98.87932893],[4.53522189,0.03138528,98.88058252],[4.53522239,0.03138701,98.88183662],[4.53522289,0.03138874,98.88309126],[4.53522339,0.03139047,98.88434645],[4.5352239,0.03139221,98.8856022],[4.5352244,0.03139394,98.88685853],[4.5352249,0.03139567,98.88811545],[4.53522541,0.0313974,98.88937298],[4.53522591,0.03139913,98.89063114],[4.53522641,0.03140086,98.89188993],[4.53522692,0.0314026,98.89314937],[4.53522742,0.03140433,98.89440949],[4.53522792,0.03140606,98.89567028],[4.53522843,0.03140779,98.89693178],[4.53522893,0.03140952,98.89819398],[4.53522944,0.03141125,98.89945691],[4.53522994,0.03141298,98.9007204],[4.53523045,0.03141472,98.90198415],[4.53523095,0.03141645,98.90324784],[4.53523145,0.03141818,98.90451114],[4.53523196,0.03141991,98.90577373],[4.53523246,0.03142164,98.90703529],[4.53523297,0.03142337,98.90829549],[4.53523347,0.0314251,98.90955401],[4.53523397,0.03142684,98.91081052],[4.53523447,0.03142857,98.9120647],[4.53523497,0.0314303,98.91331622],[4.53523547,0.03143203,98.91456476],[4.53523597,0.03143377,98.91580998],[4.53523647,0.0314355,98.91705156],[4.53523696,0.03143723,98.91828918],[4.53523746,0.03143897,98.91952281],[4.53523795,0.0314407,98.92075269],[4.53523844,0.03144244,98.92197909],[4.53523893,0.03144417,98.92320227],[4.53523942,0.03144591,98.9244225],[4.53523991,0.03144764,98.92564004],[4.5352404,0.03144938,98.92685516],[4.53524088,0.03145112,98.92806811],[4.53524137,0.03145285,98.92927918],[4.53524186,0.03145459,98.93048862],[4.53524234,0.03145633,98.9316967],[4.53524283,0.03145806,98.93290369],[4.53524331,0.0314598,98.93410986],[4.5352438,0.03146154,98.93531548],[4.53524428,0.03146327,98.93652081],[4.53524476,0.03146501,98.93772614],[4.53524525,0.03146675,98.93893173],[4.53524573,0.03146848,98.94013786],[4.53524622,0.03147022,98.9413448],[4.5352467,0.03147196,98.94255278],[4.53524719,0.03147369,98.94376181],[4.53524767,0.03147543,98.94497185],[4.53524816,0.03147717,98.94618287],[4.53524865,0.0314789,98.94739482],[4.53524913,0.03148064,98.94860766],[4.53524962,0.03148238,98.94982136],[4.53525011,0.03148411,98.95103588],[4.5352506,0.03148585,98.95225117],[4.53525108,0.03148759,98.95346719],[4.53525157,0.03148932,98.95468392],[4.53525206,0.03149106,98.9559013],[4.53525255,0.03149279,98.95711929],[4.53525304,0.03149453,98.95833786],[4.53525353,0.03149626,98.95955697],[4.53525401,0.031498,98.96077657],[4.5352545,0.03149974,98.96199663],[4.53525499,0.03150147,98.96321711],[4.53525548,0.0315032,98.96443795],[4.53525597,0.03150494,98.96565914],[4.53525646,0.03150668,98.96688061],[4.53525695,0.03150841,98.96810234],[4.53525744,0.03151015,98.96932428],[4.53525793,0.03151188,98.97054639],[4.53525842,0.03151362,98.97176864],[4.53525891,0.03151535,98.97299097],[4.53525939,0.03151709,98.97421335],[4.53525988,0.03151882,98.97543574],[4.53526037,0.03152056,98.97665813],[4.53526086,0.0315223,98.97788051],[4.53526135,0.03152403,98.97910289],[4.53526184,0.03152577,98.98032526],[4.53526233,0.0315275,98.98154762],[4.53526282,0.03152924,98.98276999],[4.53526331,0.03153097,98.98399236],[4.5352638,0.03153271,98.98521473],[4.53526429,0.03153445,98.9864371],[4.53526478,0.03153618,98.98765946],[4.53526526,0.03153792,98.98888181],[4.53526575,0.03153965,98.99010416],[4.53526624,0.03154139,98.99132649],[4.53526673,0.03154312,98.99254881],[4.53526722,0.03154486,98.99377111],[4.53526771,0.0315466,98.99499339],[4.5352682,0.03154833,98.99621565],[4.53526869,0.03155007,98.99743788],[4.53526917,0.0315518,98.99866009],[4.53526966,0.03155354,98.99988226],[4.53527015,0.03155528,99.0011044],[4.53527064,0.03155701,99.00232651],[4.53527113,0.03155875,99.00354858],[4.53527162,0.03156048,99.00477061],[4.5352721,0.03156222,99.0059926],[4.53527259,0.03156396,99.00721454],[4.53527308,0.03156569,99.00843643],[4.53527357,0.03156743,99.00965828],[4.53527406,0.03156916,99.01088007],[4.53527454,0.0315709,99.0121018],[4.53527503,0.03157264,99.01332348],[4.53527552,0.03157437,99.0145451],[4.53527601,0.03157611,99.01576665],[4.5352765,0.03157784,99.01698814],[4.53527698,0.03157958,99.01820956],[4.53527747,0.03158132,99.01943091],[4.53527796,0.03158305,99.02065219],[4.53527845,0.03158479,99.02187339],[4.53527893,0.03158652,99.02309451],[4.53527942,0.03158826,99.02431555],[4.53527991,0.03159,99.02553651],[4.5352804,0.03159173,99.02675738],[4.53528088,0.03159347,99.02797817],[4.53528137,0.0315952,99.02919886],[4.53528186,0.03159694,99.03041946],[4.53528235,0.03159868,99.03163997],[4.53528283,0.03160041,99.03286037],[4.53528332,0.03160215,99.03408068],[4.53528381,0.03160389,99.03530088],[4.53528429,0.03160562,99.03652097],[4.53528478,0.03160736,99.03774096],[4.53528527,0.03160909,99.03896084],[4.53528575,0.03161083,99.0401806],[4.53528624,0.03161257,99.04140025],[4.53528673,0.0316143,99.04261977],[4.53528721,0.03161604,99.04383918],[4.5352877,0.03161778,99.04505846],[4.53528819,0.03161951,99.04627762],[4.53528867,0.03162125,99.04749664],[4.53528916,0.03162299,99.04871554],[4.53528965,0.03162472,99.0499343],[4.53529013,0.03162646,99.05115293],[4.53529062,0.0316282,99.05237141],[4.53529111,0.03162993,99.05358976],[4.53529159,0.03163167,99.05480796],[4.53529208,0.0316334,99.05602601],[4.53529256,0.03163514,99.05724392],[4.53529305,0.03163688,99.05846167],[4.53529354,0.03163861,99.05967925],[4.53529402,0.03164035,99.06089664],[4.53529451,0.03164209,99.06211384],[4.53529499,0.03164382,99.06333082],[4.53529548,0.03164556,99.06454757],[4.53529597,0.0316473,99.06576408],[4.53529645,0.03164903,99.06698033],[4.53529694,0.03165077,99.06819634],[4.53529742,0.03165251,99.06941216],[4.53529791,0.03165424,99.07062783],[4.53529839,0.03165598,99.0718434],[4.53529888,0.03165772,99.07305892],[4.53529936,0.03165945,99.07427445],[4.53529985,0.03166119,99.07549002],[4.53530033,0.03166293,99.07670569],[4.53530082,0.03166467,99.0779215],[4.53530131,0.0316664,99.0791375],[4.53530179,0.03166814,99.08035375],[4.53530228,0.03166988,99.08157029],[4.53530276,0.03167161,99.08278716],[4.53530325,0.03167335,99.08400442],[4.53530373,0.03167509,99.08522211],[4.53530422,0.03167682,99.08644029],[4.53530471,0.03167856,99.08765899],[4.53530519,0.03168029,99.08887828],[4.53530568,0.03168203,99.09009819],[4.53530617,0.03168377,99.09131877],[4.53530666,0.0316855,99.09254008],[4.53530714,0.03168724,99.09376216],[4.53530763,0.03168898,99.09498506],[4.53530812,0.03169071,99.09620883],[4.53530861,0.03169245,99.09743351],[4.5353091,0.03169418,99.09865916],[4.53530959,0.03169592,99.09988582],[4.53531008,0.03169765,99.10111353],[4.53531057,0.03169939,99.10234236],[4.53531106,0.03170112,99.10357233],[4.53531155,0.03170286,99.10480352],[4.53531204,0.03170459,99.10603595],[4.53531253,0.03170633,99.10726968],[4.53531302,0.03170806,99.10850475],[4.53531351,0.0317098,99.10974121],[4.53531401,0.03171153,99.11097901],[4.5353145,0.03171327,99.11221812],[4.535315,0.031715,99.11345849],[4.53531549,0.03171674,99.11470007],[4.53531598,0.03171847,99.11594282],[4.53531648,0.0317202,99.11718669],[4.53531698,0.03172194,99.11843163],[4.53531747,0.03172367,99.11967761],[4.53531797,0.03172541,99.12092457],[4.53531846,0.03172714,99.12217248],[4.53531896,0.03172887,99.12342128],[4.53531946,0.03173061,99.12467093],[4.53531996,0.03173234,99.12592138],[4.53532045,0.03173407,99.1271726],[4.53532095,0.03173581,99.12842452],[4.53532145,0.03173754,99.12967712],[4.53532195,0.03173927,99.13093034],[4.53532245,0.031741,99.13218414],[4.53532295,0.03174274,99.13343847],[4.53532345,0.03174447,99.13469329],[4.53532395,0.0317462,99.13594855],[4.53532445,0.03174793,99.13720421],[4.53532495,0.03174967,99.13846023],[4.53532545,0.0317514,99.13971654],[4.53532595,0.03175313,99.14097312],[4.53532645,0.03175486,99.14222992],[4.53532695,0.0317566,99.14348689],[4.53532745,0.03175833,99.14474398],[4.53532795,0.03176006,99.14600116],[4.53532845,0.03176179,99.14725837],[4.53532895,0.03176353,99.14851558],[4.53532945,0.03176526,99.14977273],[4.53532995,0.03176699,99.15102978],[4.53533045,0.03176872,99.15228668],[4.53533095,0.03177046,99.1535434],[4.53533145,0.03177219,99.15479989],[4.53533196,0.03177392,99.1560561],[4.53533246,0.03177565,99.15731198],[4.53533296,0.03177739,99.15856749],[4.53533346,0.03177912,99.1598226],[4.53533396,0.03178085,99.16107724],[4.53533446,0.03178258,99.16233139],[4.53533496,0.03178432,99.16358503],[4.53533546,0.03178605,99.16483814],[4.53533596,0.03178778,99.16609073],[4.53533646,0.03178951,99.16734277],[4.53533696,0.03179125,99.16859428],[4.53533746,0.03179298,99.16984524],[4.53533796,0.03179471,99.17109566],[4.53533846,0.03179644,99.17234553],[4.53533896,0.03179818,99.17359485],[4.53533945,0.03179991,99.17484363],[4.53533995,0.03180164,99.17609185],[4.53534045,0.03180338,99.17733952],[4.53534095,0.03180511,99.17858664],[4.53534145,0.03180684,99.1798332],[4.53534195,0.03180857,99.18107921],[4.53534245,0.03181031,99.18232466],[4.53534295,0.03181204,99.18356955],[4.53534344,0.03181377,99.18481388],[4.53534394,0.03181551,99.18605765],[4.53534444,0.03181724,99.18730086],[4.53534494,0.03181897,99.1885435],[4.53534544,0.03182071,99.18978557],[4.53534593,0.03182244,99.19102708],[4.53534643,0.03182417,99.19226802],[4.53534693,0.03182591,99.19350839],[4.53534743,0.03182764,99.19474819],[4.53534792,0.03182937,99.19598741],[4.53534842,0.03183111,99.19722606],[4.53534892,0.03183284,99.19846414],[4.53534941,0.03183457,99.19970164],[4.53534991,0.03183631,99.20093856],[4.53535041,0.03183804,99.2021749],[4.5353509,0.03183977,99.20341066],[4.5353514,0.03184151,99.20464583],[4.5353519,0.03184324,99.20588043],[4.53535239,0.03184497,99.20711443],[4.53535289,0.03184671,99.20834786],[4.53535338,0.03184844,99.20958069],[4.53535388,0.03185018,99.21081294],[4.53535438,0.03185191,99.21204459],[4.53535487,0.03185364,99.21327565],[4.53535537,0.03185538,99.21450612],[4.53535586,0.03185711,99.215736],[4.53535636,0.03185884,99.21696527],[4.53535685,0.03186058,99.21819395],[4.53535735,0.03186231,99.21942204],[4.53535784,0.03186405,99.22064952],[4.53535834,0.03186578,99.2218764],[4.53535883,0.03186751,99.22310268],[4.53535933,0.03186925,99.22432835],[4.53535982,0.03187098,99.22555342],[4.53536032,0.03187272,99.22677788],[4.53536081,0.03187445,99.22800174],[4.5353613,0.03187619,99.22922498],[4.5353618,0.03187792,99.23044762],[4.53536229,0.03187965,99.23166964],[4.53536279,0.03188139,99.23289104],[4.53536328,0.03188312,99.23411184],[4.53536377,0.03188486,99.23533201],[4.53536427,0.03188659,99.23655157],[4.53536476,0.03188833,99.23777051],[4.53536525,0.03189006,99.23898883],[4.53536575,0.03189179,99.24020653],[4.53536624,0.03189353,99.2414236],[4.53536673,0.03189526,99.24264005],[4.53536723,0.031897,99.24385588],[4.53536772,0.03189873,99.24507108],[4.53536821,0.03190047,99.24628565],[4.5353687,0.0319022,99.24749958],[4.5353692,0.03190394,99.24871289],[4.53536969,0.03190567,99.24992557],[4.53537018,0.03190741,99.25113761],[4.53537067,0.03190914,99.25234901],[4.53537117,0.03191088,99.25355978],[4.53537166,0.03191261,99.25476989],[4.53537215,0.03191435,99.25597936],[4.53537264,0.03191608,99.25718817],[4.53537313,0.03191782,99.25839633],[4.53537362,0.03191955,99.25960382],[4.53537412,0.03192129,99.26081064],[4.53537461,0.03192302,99.26201679],[4.5353751,0.03192476,99.26322226],[4.53537559,0.03192649,99.26442705],[4.53537608,0.03192823,99.26563115],[4.53537657,0.03192996,99.26683456],[4.53537706,0.0319317,99.26803728],[4.53537755,0.03193343,99.2692393],[4.53537804,0.03193517,99.27044061],[4.53537853,0.0319369,99.27164122],[4.53537902,0.03193864,99.27284111],[4.53537951,0.03194037,99.27404028],[4.53538,0.03194211,99.27523873],[4.53538049,0.03194384,99.27643646],[4.53538098,0.03194558,99.27763346],[4.53538147,0.03194732,99.27882971],[4.53538196,0.03194905,99.28002523],[4.53538245,0.03195079,99.28122001],[4.53538294,0.03195252,99.28241403],[4.53538343,0.03195426,99.28360729],[4.53538392,0.03195599,99.28479979],[4.53538441,0.03195773,99.28599151],[4.5353849,0.03195946,99.28718246],[4.53538539,0.0319612,99.28837261],[4.53538588,0.03196294,99.28956198],[4.53538636,0.03196467,99.29075054],[4.53538685,0.03196641,99.29193829],[4.53538734,0.03196814,99.29312523],[4.53538783,0.03196988,99.29431135],[4.53538832,0.03197162,99.29549664],[4.5353888,0.03197335,99.2966811],[4.53538929,0.03197509,99.29786471],[4.53538978,0.03197682,99.29904748],[4.53539027,0.03197856,99.30022938],[4.53539075,0.0319803,99.30141043],[4.53539124,0.03198203,99.3025906],[4.53539173,0.03198377,99.3037699],[4.53539221,0.03198551,99.30494831],[4.5353927,0.03198724,99.30612583],[4.53539319,0.03198898,99.30730246],[4.53539367,0.03199072,99.30847823],[4.53539416,0.03199245,99.30965315],[4.53539464,0.03199419,99.31082727],[4.53539513,0.03199593,99.31200061],[4.53539562,0.03199766,99.31317321],[4.5353961,0.0319994,99.3143451],[4.53539659,0.03200114,99.3155163],[4.53539707,0.03200287,99.31668685],[4.53539756,0.03200461,99.31785678],[4.53539804,0.03200635,99.31902611],[4.53539853,0.03200808,99.32019489],[4.53539901,0.03200982,99.32136314],[4.5353995,0.03201156,99.32253088],[4.53539998,0.03201329,99.32369815],[4.53540047,0.03201503,99.32486498],[4.53540096,0.03201677,99.32603139],[4.53540144,0.0320185,99.32719741],[4.53540193,0.03202024,99.32836308],[4.53540241,0.03202198,99.32952841],[4.5354029,0.03202371,99.33069344],[4.53540338,0.03202545,99.3318582],[4.53540387,0.03202719,99.33302271],[4.53540435,0.03202892,99.334187],[4.53540484,0.03203066,99.3353511],[4.53540533,0.0320324,99.33651504],[4.53540581,0.03203413,99.33767885],[4.5354063,0.03203587,99.33884256],[4.53540678,0.03203761,99.34000619],[4.53540727,0.03203934,99.34116977],[4.53540776,0.03204108,99.34233333],[4.53540824,0.03204282,99.34349691],[4.53540873,0.03204455,99.34466052],[4.53540922,0.03204629,99.34582419],[4.53540971,0.03204802,99.34698797],[4.53541019,0.03204976,99.34815183],[4.53541068,0.0320515,99.34931577],[4.53541117,0.03205323,99.35047974],[4.53541166,0.03205497,99.35164373],[4.53541215,0.0320567,99.35280771],[4.53541263,0.03205844,99.35397164],[4.53541312,0.03206018,99.35513551],[4.53541361,0.03206191,99.35629928],[4.5354141,0.03206365,99.35746293],[4.53541459,0.03206538,99.35862643],[4.53541508,0.03206712,99.35978975],[4.53541557,0.03206885,99.36095286],[4.53541606,0.03207059,99.36211575],[4.53541655,0.03207233,99.36327837],[4.53541704,0.03207406,99.36444071],[4.53541753,0.0320758,99.36560273],[4.53541802,0.03207753,99.36676441],[4.53541851,0.03207927,99.36792572],[4.535419,0.032081,99.36908664],[4.53541949,0.03208274,99.37024713],[4.53541998,0.03208447,99.37140717],[4.53542047,0.03208621,99.37256673],[4.53542096,0.03208794,99.37372578],[4.53542145,0.03208968,99.3748843],[4.53542194,0.03209141,99.37604227],[4.53542243,0.03209315,99.37719964],[4.53542292,0.03209489,99.3783564],[4.53542341,0.03209662,99.37951251],[4.53542391,0.03209836,99.38066795],[4.5354244,0.03210009,99.3818227],[4.53542489,0.03210183,99.38297672],[4.53542538,0.03210356,99.38412995],[4.53542587,0.0321053,99.38528236],[4.53542636,0.03210703,99.3864339],[4.53542685,0.03210877,99.38758451],[4.53542734,0.0321105,99.38873415],[4.53542783,0.03211224,99.38988278],[4.53542832,0.03211397,99.39103034],[4.53542881,0.03211571,99.39217679],[4.5354293,0.03211744,99.39332211],[4.53542979,0.03211918,99.3944663],[4.53543028,0.03212092,99.39560937],[4.53543077,0.03212265,99.39675134],[4.53543126,0.03212439,99.39789221],[4.53543175,0.03212612,99.39903199],[4.53543223,0.03212786,99.40017069],[4.53543272,0.03212959,99.40130831],[4.53543321,0.03213133,99.40244487],[4.5354337,0.03213307,99.40358037],[4.53543419,0.0321348,99.40471483],[4.53543468,0.03213654,99.40584824],[4.53543517,0.03213827,99.40698063],[4.53543566,0.03214001,99.40811199],[4.53543614,0.03214174,99.40924235],[4.53543663,0.03214348,99.41037169],[4.53543712,0.03214522,99.41150005],[4.53543761,0.03214695,99.41262741],[4.5354381,0.03214869,99.4137538],[4.53543858,0.03215042,99.41487922],[4.53543907,0.03215216,99.41600368],[4.53543956,0.0321539,99.41712718],[4.53544005,0.03215563,99.41824975],[4.53544054,0.03215737,99.41937137],[4.53544102,0.03215911,99.42049208],[4.53544151,0.03216084,99.42161186],[4.535442,0.03216258,99.42273074],[4.53544249,0.03216431,99.42384871],[4.53544298,0.03216605,99.4249658],[4.53544346,0.03216779,99.426082],[4.53544395,0.03216952,99.42719733],[4.53544444,0.03217126,99.4283118],[4.53544493,0.03217299,99.42942541],[4.53544541,0.03217473,99.43053817],[4.5354459,0.03217647,99.43165009],[4.53544639,0.0321782,99.43276119],[4.53544688,0.03217994,99.43387146],[4.53544737,0.03218167,99.43498093],[4.53544785,0.03218341,99.43608959],[4.53544834,0.03218515,99.43719745],[4.53544883,0.03218688,99.43830453],[4.53544932,0.03218862,99.43941084],[4.5354498,0.03219035,99.44051637],[4.53545029,0.03219209,99.44162115],[4.53545078,0.03219383,99.44272518],[4.53545127,0.03219556,99.44382847],[4.53545176,0.0321973,99.44493102],[4.53545225,0.03219903,99.44603284],[4.53545273,0.03220077,99.44713388],[4.53545322,0.03220251,99.4482341],[4.53545371,0.03220424,99.44933351],[4.5354542,0.03220598,99.45043209],[4.53545469,0.03220771,99.45152984],[4.53545518,0.03220945,99.45262674],[4.53545567,0.03221119,99.4537228],[4.53545615,0.03221292,99.454818],[4.53545664,0.03221466,99.45591233],[4.53545713,0.03221639,99.45700579],[4.53545762,0.03221813,99.45809838],[4.53545811,0.03221986,99.45919007],[4.5354586,0.0322216,99.46028088],[4.53545909,0.03222334,99.46137078],[4.53545958,0.03222507,99.46245977],[4.53546006,0.03222681,99.46354784],[4.53546055,0.03222854,99.46463499],[4.53546104,0.03223028,99.4657212],[4.53546153,0.03223202,99.46680648],[4.53546202,0.03223375,99.46789081],[4.53546251,0.03223549,99.46897418],[4.535463,0.03223722,99.47005659],[4.53546349,0.03223896,99.47113803],[4.53546398,0.03224069,99.47221849],[4.53546447,0.03224243,99.47329796],[4.53546495,0.03224417,99.47437645],[4.53546544,0.0322459,99.47545393],[4.53546593,0.03224764,99.4765304],[4.53546642,0.03224937,99.47760586],[4.53546691,0.03225111,99.47868029],[4.5354674,0.03225284,99.47975369],[4.53546789,0.03225458,99.48082605],[4.53546838,0.03225631,99.48189737],[4.53546887,0.03225805,99.48296763],[4.53546936,0.03225979,99.48403682],[4.53546985,0.03226152,99.48510495],[4.53547033,0.03226326,99.486172],[4.53547082,0.03226499,99.48723797],[4.53547131,0.03226673,99.48830284],[4.5354718,0.03226846,99.48936662],[4.53547229,0.0322702,99.49042928],[4.53547278,0.03227194,99.49149083],[4.53547327,0.03227367,99.49255125],[4.53547376,0.03227541,99.49361049],[4.53547425,0.03227714,99.49466848],[4.53547474,0.03227888,99.49572515],[4.53547523,0.03228061,99.49678046],[4.53547572,0.03228235,99.49783441],[4.5354762,0.03228409,99.49888702],[4.53547669,0.03228582,99.49993827],[4.53547718,0.03228756,99.50098818],[4.53547767,0.03228929,99.50203675],[4.53547816,0.03229103,99.50308398],[4.53547865,0.03229276,99.50412987],[4.53547914,0.0322945,99.50517444],[4.53547963,0.03229624,99.50621767],[4.53548011,0.03229797,99.50725959],[4.5354806,0.03229971,99.50830018],[4.53548109,0.03230144,99.50933945],[4.53548158,0.03230318,99.51037741],[4.53548207,0.03230492,99.51141405],[4.53548256,0.03230665,99.51244939],[4.53548304,0.03230839,99.51348343],[4.53548353,0.03231012,99.51451616],[4.53548402,0.03231186,99.5155476],[4.53548451,0.0323136,99.51657774],[4.535485,0.03231533,99.5176066],[4.53548548,0.03231707,99.51863416],[4.53548597,0.0323188,99.51966045],[4.53548646,0.03232054,99.52068545],[4.53548695,0.03232228,99.52170918],[4.53548744,0.03232401,99.52273165],[4.53548793,0.03232575,99.52375289],[4.53548841,0.03232748,99.52477291],[4.5354889,0.03232922,99.52579175],[4.53548939,0.03233096,99.52680942],[4.53548988,0.03233269,99.52782595],[4.53549037,0.03233443,99.52884137],[4.53549085,0.03233616,99.52985569],[4.53549134,0.0323379,99.53086893],[4.53549183,0.03233963,99.53188113],[4.53549232,0.03234137,99.53289231],[4.53549281,0.03234311,99.53390248],[4.5354933,0.03234484,99.53491167],[4.53549379,0.03234658,99.53591992],[4.53549428,0.03234831,99.53692723],[4.53549476,0.03235005,99.53793361],[4.53549525,0.03235178,99.53893903],[4.53549574,0.03235352,99.53994347],[4.53549623,0.03235526,99.5409469],[4.53549672,0.03235699,99.54194929],[4.53549721,0.03235873,99.54295063],[4.5354977,0.03236046,99.54395088],[4.53549819,0.0323622,99.54495003],[4.53549868,0.03236393,99.54594803],[4.53549917,0.03236567,99.54694488],[4.53549966,0.0323674,99.54794054],[4.53550015,0.03236914,99.54893498],[4.53550064,0.03237088,99.54992819],[4.53550113,0.03237261,99.55092013],[4.53550162,0.03237435,99.55191078],[4.53550211,0.03237608,99.55290012],[4.5355026,0.03237782,99.55388811],[4.53550309,0.03237955,99.55487473],[4.53550358,0.03238129,99.55585997],[4.53550407,0.03238302,99.55684378],[4.53550457,0.03238476,99.55782615],[4.53550506,0.03238649,99.55880704],[4.53550555,0.03238823,99.55978644],[4.53550604,0.03238996,99.56076432],[4.53550653,0.0323917,99.56174064],[4.53550702,0.03239343,99.56271539],[4.53550751,0.03239517,99.56368854],[4.535508,0.03239691,99.56466007],[4.53550849,0.03239864,99.56562994],[4.53550898,0.03240038,99.56659813],[4.53550947,0.03240211,99.56756462],[4.53550996,0.03240385,99.56852938],[4.53551045,0.03240558,99.56949238],[4.53551094,0.03240732,99.57045359],[4.53551143,0.03240905,99.571413],[4.53551191,0.03241079,99.57237057],[4.5355124,0.03241253,99.57332628],[4.53551289,0.03241426,99.57428011],[4.53551338,0.032416,99.57523202],[4.53551387,0.03241773,99.57618198],[4.53551436,0.03241947,99.57712999],[4.53551485,0.0324212,99.578076],[4.53551534,0.03242294,99.57901999],[4.53551582,0.03242468,99.57996194],[4.53551631,0.03242641,99.58090182],[4.5355168,0.03242815,99.5818396],[4.53551729,0.03242988,99.58277526],[4.53551778,0.03243162,99.58370876],[4.53551826,0.03243336,99.5846401],[4.53551875,0.03243509,99.58556923],[4.53551924,0.03243683,99.58649613],[4.53551972,0.03243856,99.58742078],[4.53552021,0.0324403,99.58834315],[4.5355207,0.03244204,99.58926321],[4.53552118,0.03244377,99.59018095],[4.53552167,0.03244551,99.59109633],[4.53552215,0.03244725,99.59200934],[4.53552264,0.03244898,99.59291993],[4.53552312,0.03245072,99.5938281],[4.53552361,0.03245246,99.59473381],[4.53552409,0.0324542,99.59563704],[4.53552458,0.03245593,99.59653777],[4.53552506,0.03245767,99.59743596],[4.53552554,0.03245941,99.59833159],[4.53552603,0.03246114,99.59922464],[4.53552651,0.03246288,99.60011509],[4.53552699,0.03246462,99.6010029],[4.53552747,0.03246636,99.60188805],[4.53552796,0.03246809,99.60277051],[4.53552844,0.03246983,99.60365027],[4.53552892,0.03247157,99.60452729],[4.5355294,0.03247331,99.60540156],[4.53552988,0.03247505,99.60627303],[4.53553036,0.03247678,99.6071417],[4.53553084,0.03247852,99.60800753],[4.53553132,0.03248026,99.6088705],[4.5355318,0.032482,99.60973058],[4.53553228,0.03248374,99.61058775],[4.53553275,0.03248548,99.61144201],[4.53553323,0.03248722,99.61229336],[4.53553371,0.03248895,99.61314184],[4.53553419,0.03249069,99.6139875],[4.53553466,0.03249243,99.61483038],[4.53553514,0.03249417,99.61567052],[4.53553561,0.03249591,99.61650796],[4.53553609,0.03249765,99.61734275],[4.53553657,0.03249939,99.61817492],[4.53553704,0.03250113,99.61900453],[4.53553751,0.03250287,99.6198316],[4.53553799,0.03250461,99.62065619],[4.53553846,0.03250635,99.62147834],[4.53553894,0.03250809,99.62229809],[4.53553941,0.03250983,99.62311548],[4.53553989,0.03251157,99.62393055],[4.53554036,0.03251331,99.62474335],[4.53554083,0.03251505,99.62555392],[4.5355413,0.03251679,99.6263623],[4.53554178,0.03251853,99.62716854],[4.53554225,0.03252027,99.62797267],[4.53554272,0.03252201,99.62877474],[4.5355432,0.03252375,99.6295748],[4.53554367,0.03252549,99.63037288],[4.53554414,0.03252723,99.63116902],[4.53554461,0.03252897,99.63196328],[4.53554509,0.03253071,99.63275568],[4.53554556,0.03253245,99.63354629],[4.53554603,0.03253419,99.63433513],[4.5355465,0.03253593,99.63512225],[4.53554698,0.03253767,99.6359077],[4.53554745,0.03253941,99.63669151],[4.53554792,0.03254115,99.63747373],[4.5355484,0.03254289,99.6382544],[4.53554887,0.03254463,99.63903356],[4.53554934,0.03254637,99.63981126],[4.53554981,0.03254811,99.64058755],[4.53555029,0.03254985,99.64136245],[4.53555076,0.03255159,99.64213602],[4.53555123,0.03255333,99.6429083],[4.53555171,0.03255507,99.64367933],[4.53555218,0.03255681,99.64444915],[4.53555266,0.03255855,99.64521781],[4.53555313,0.03256029,99.64598535],[4.53555361,0.03256203,99.64675181],[4.53555408,0.03256377,99.64751723],[4.53555456,0.03256551,99.64828167],[4.53555503,0.03256725,99.64904512],[4.53555551,0.03256899,99.64980756],[4.53555598,0.03257073,99.65056899],[4.53555646,0.03257247,99.65132937],[4.53555694,0.03257421,99.65208871],[4.53555741,0.03257595,99.65284697],[4.53555789,0.03257769,99.65360415],[4.53555837,0.03257943,99.65436022],[4.53555884,0.03258116,99.65511518],[4.53555932,0.0325829,99.655869],[4.5355598,0.03258464,99.65662167],[4.53556028,0.03258638,99.65737318],[4.53556076,0.03258812,99.6581235],[4.53556123,0.03258986,99.65887263],[4.53556171,0.0325916,99.65962054],[4.53556219,0.03259333,99.66036722],[4.53556267,0.03259507,99.66111265],[4.53556315,0.03259681,99.66185682],[4.53556363,0.03259855,99.66259971],[4.53556411,0.03260029,99.66334131],[4.53556459,0.03260203,99.66408159],[4.53556507,0.03260376,99.66482055],[4.53556555,0.0326055,99.66555816],[4.53556603,0.03260724,99.66629441],[4.53556651,0.03260898,99.66702929],[4.53556699,0.03261072,99.66776277],[4.53556747,0.03261245,99.66849484],[4.53556795,0.03261419,99.6692255],[4.53556843,0.03261593,99.6699547],[4.53556891,0.03261767,99.67068246],[4.53556939,0.03261941,99.67140874],[4.53556988,0.03262114,99.67213352],[4.53557036,0.03262288,99.67285681],[4.53557084,0.03262462,99.67357857],[4.53557132,0.03262636,99.67429879],[4.5355718,0.0326281,99.67501746],[4.53557228,0.03262983,99.67573456],[4.53557276,0.03263157,99.67645007],[4.53557325,0.03263331,99.67716398],[4.53557373,0.03263505,99.67787626],[4.53557421,0.03263678,99.67858692],[4.53557469,0.03263852,99.67929592],[4.53557517,0.03264026,99.68000325],[4.53557565,0.032642,99.6807089],[4.53557614,0.03264373,99.68141285],[4.53557662,0.03264547,99.68211508],[4.5355771,0.03264721,99.68281557],[4.53557758,0.03264895,99.68351432],[4.53557806,0.03265069,99.6842113],[4.53557854,0.03265242,99.6849065],[4.53557903,0.03265416,99.68559991],[4.53557951,0.0326559,99.6862915],[4.53557999,0.03265764,99.68698125],[4.53558047,0.03265937,99.68766916],[4.53558095,0.03266111,99.68835521],[4.53558143,0.03266285,99.68903938],[4.53558191,0.03266459,99.68972165],[4.5355824,0.03266632,99.69040202],[4.53558288,0.03266806,99.69108045],[4.53558336,0.0326698,99.69175692],[4.53558384,0.03267154,99.6924314],[4.53558432,0.03267328,99.6931039],[4.5355848,0.03267501,99.69377441],[4.53558528,0.03267675,99.69444297],[4.53558576,0.03267849,99.69510958],[4.53558624,0.03268023,99.69577426],[4.53558672,0.03268197,99.69643704],[4.5355872,0.0326837,99.69709791],[4.53558768,0.03268544,99.69775691],[4.53558816,0.03268718,99.69841404],[4.53558864,0.03268892,99.69906933],[4.53558912,0.03269066,99.69972278],[4.5355896,0.03269239,99.70037442],[4.53559008,0.03269413,99.70102426],[4.53559056,0.03269587,99.70167232],[4.53559104,0.03269761,99.70231861],[4.53559152,0.03269935,99.70296315],[4.535592,0.03270108,99.70360596],[4.53559248,0.03270282,99.70424704],[4.53559296,0.03270456,99.70488643],[4.53559344,0.0327063,99.70552413],[4.53559392,0.03270804,99.70616016],[4.5355944,0.03270978,99.70679454],[4.53559488,0.03271151,99.70742728],[4.53559536,0.03271325,99.70805839],[4.53559584,0.03271499,99.70868791],[4.53559632,0.03271673,99.70931583],[4.5355968,0.03271847,99.70994218],[4.53559728,0.0327202,99.71056697],[4.53559776,0.03272194,99.71119022],[4.53559824,0.03272368,99.71181195],[4.53559872,0.03272542,99.71243217],[4.5355992,0.03272716,99.7130509],[4.53559968,0.0327289,99.71366815],[4.53560016,0.03273063,99.71428394],[4.53560064,0.03273237,99.71489828],[4.53560112,0.03273411,99.7155112],[4.5356016,0.03273585,99.71612271],[4.53560208,0.03273759,99.71673282],[4.53560256,0.03273932,99.71734155],[4.53560304,0.03274106,99.71794891],[4.53560352,0.0327428,99.71855493],[4.53560401,0.03274454,99.71915962],[4.53560449,0.03274628,99.71976299],[4.53560497,0.03274801,99.72036506],[4.53560545,0.03274975,99.72096585],[4.53560593,0.03275149,99.72156537],[4.53560641,0.03275323,99.72216364],[4.53560689,0.03275496,99.72276067],[4.53560737,0.0327567,99.72335649],[4.53560785,0.03275844,99.7239511],[4.53560833,0.03276018,99.72454452],[4.53560882,0.03276192,99.72513678],[4.5356093,0.03276365,99.72572787],[4.53560978,0.03276539,99.72631783],[4.53561026,0.03276713,99.72690666],[4.53561074,0.03276887,99.72749437],[4.53561123,0.0327706,99.72808094],[4.53561171,0.03277234,99.72866636],[4.53561219,0.03277408,99.7292506],[4.53561267,0.03277581,99.72983366],[4.53561316,0.03277755,99.73041551],[4.53561364,0.03277929,99.73099614],[4.53561412,0.03278103,99.73157554],[4.53561461,0.03278276,99.73215368],[4.53561509,0.0327845,99.73273056],[4.53561557,0.03278624,99.73330616],[4.53561605,0.03278798,99.73388048],[4.53561654,0.03278971,99.73445351],[4.53561702,0.03279145,99.73502525],[4.5356175,0.03279319,99.73559571],[4.53561799,0.03279492,99.73616487],[4.53561847,0.03279666,99.73673273],[4.53561896,0.0327984,99.7372993],[4.53561944,0.03280014,99.73786456],[4.53561992,0.03280187,99.73842853],[4.53562041,0.03280361,99.73899118],[4.53562089,0.03280535,99.73955253],[4.53562137,0.03280708,99.74011257],[4.53562186,0.03280882,99.74067129],[4.53562234,0.03281056,99.7412287],[4.53562283,0.03281229,99.74178479],[4.53562331,0.03281403,99.74233956],[4.53562379,0.03281577,99.742893],[4.53562428,0.03281751,99.74344512],[4.53562476,0.03281924,99.74399591],[4.53562525,0.03282098,99.74454537],[4.53562573,0.03282272,99.74509349],[4.53562622,0.03282445,99.74564028],[4.5356267,0.03282619,99.74618573],[4.53562718,0.03282793,99.74672983],[4.53562767,0.03282966,99.74727259],[4.53562815,0.0328314,99.74781401],[4.53562864,0.03283314,99.74835407],[4.53562912,0.03283487,99.74889279],[4.53562961,0.03283661,99.74943015],[4.53563009,0.03283835,99.74996615],[4.53563058,0.03284008,99.75050079],[4.53563106,0.03284182,99.75103407],[4.53563155,0.03284356,99.75156599],[4.53563203,0.03284529,99.75209654],[4.53563251,0.03284703,99.75262572],[4.535633,0.03284877,99.75315352],[4.53563348,0.0328505,99.75367996],[4.53563397,0.03285224,99.75420501],[4.53563445,0.03285398,99.75472869],[4.53563494,0.03285571,99.75525098],[4.53563542,0.03285745,99.75577189],[4.53563591,0.03285919,99.75629141],[4.53563639,0.03286092,99.75680954],[4.53563688,0.03286266,99.75732628],[4.53563736,0.0328644,99.75784162],[4.53563785,0.03286613,99.75835557],[4.53563833,0.03286787,99.75886811],[4.53563882,0.03286961,99.75937919],[4.5356393,0.03287134,99.75988876],[4.53563979,0.03287308,99.76039676],[4.53564027,0.03287482,99.76090313],[4.53564075,0.03287656,99.76140782],[4.53564124,0.03287829,99.76191078],[4.53564172,0.03288003,99.76241194],[4.53564221,0.03288177,99.76291124],[4.53564269,0.0328835,99.76340864],[4.53564317,0.03288524,99.76390408],[4.53564366,0.03288698,99.7643975],[4.53564414,0.03288871,99.76488884],[4.53564462,0.03289045,99.76537805],[4.53564511,0.03289219,99.76586507],[4.53564559,0.03289393,99.76634985],[4.53564607,0.03289566,99.76683233],[4.53564655,0.0328974,99.76731245],[4.53564703,0.03289914,99.76779017],[4.53564752,0.03290088,99.76826541],[4.535648,0.03290261,99.76873813],[4.53564848,0.03290435,99.76920827],[4.53564896,0.03290609,99.76967578],[4.53564944,0.03290783,99.77014062],[4.53564991,0.03290957,99.77060284],[4.53565039,0.03291131,99.77106249],[4.53565087,0.03291304,99.77151965],[4.53565135,0.03291478,99.77197438],[4.53565183,0.03291652,99.77242676],[4.5356523,0.03291826,99.77287682],[4.53565278,0.03292,99.77332464],[4.53565326,0.03292174,99.77377024],[4.53565373,0.03292348,99.77421368],[4.53565421,0.03292522,99.77465499],[4.53565468,0.03292696,99.77509424],[4.53565516,0.0329287,99.77553145],[4.53565563,0.03293043,99.77596668],[4.53565611,0.03293217,99.77639997],[4.53565658,0.03293391,99.77683138],[4.53565706,0.03293565,99.77726093],[4.53565753,0.03293739,99.77768868],[4.53565801,0.03293913,99.77811468],[4.53565848,0.03294087,99.77853896],[4.53565896,0.03294261,99.77896158],[4.53565943,0.03294435,99.77938257],[4.5356599,0.03294609,99.77980199],[4.53566038,0.03294783,99.78021988],[4.53566085,0.03294957,99.78063629],[4.53566132,0.03295131,99.78105125],[4.5356618,0.03295305,99.78146482],[4.53566227,0.03295479,99.78187704],[4.53566274,0.03295653,99.78228795],[4.53566322,0.03295827,99.7826976],[4.53566369,0.03296001,99.78310603],[4.53566416,0.03296175,99.7835133],[4.53566464,0.03296349,99.78391944],[4.53566511,0.03296523,99.78432449],[4.53566558,0.03296697,99.78472851],[4.53566606,0.03296871,99.78513153],[4.53566653,0.03297045,99.78553357],[4.53566701,0.03297219,99.78593463],[4.53566748,0.03297393,99.78633471],[4.53566795,0.03297567,99.78673383],[4.53566843,0.03297741,99.78713198],[4.5356689,0.03297915,99.78752918],[4.53566937,0.03298089,99.78792544],[4.53566985,0.03298263,99.78832074],[4.53567032,0.03298437,99.78871512],[4.5356708,0.03298611,99.78910856],[4.53567127,0.03298785,99.78950108],[4.53567175,0.03298959,99.78989268],[4.53567222,0.03299133,99.79028336],[4.5356727,0.03299306,99.79067314],[4.53567317,0.0329948,99.79106203],[4.53567365,0.03299654,99.79145001],[4.53567412,0.03299828,99.79183711],[4.5356746,0.03300002,99.79222333],[4.53567507,0.03300176,99.79260868],[4.53567555,0.0330035,99.79299315],[4.53567602,0.03300524,99.79337676],[4.5356765,0.03300698,99.79375951],[4.53567697,0.03300872,99.79414142],[4.53567745,0.03301046,99.79452247],[4.53567792,0.0330122,99.79490271],[4.5356784,0.03301394,99.79528217],[4.53567888,0.03301568,99.79566086],[4.53567935,0.03301742,99.79603884],[4.53567983,0.03301916,99.79641613],[4.5356803,0.03302089,99.79679275],[4.53568078,0.03302263,99.79716875],[4.53568126,0.03302437,99.79754416],[4.53568173,0.03302611,99.79791901],[4.53568221,0.03302785,99.79829333],[4.53568269,0.03302959,99.79866715],[4.53568317,0.03303133,99.7990405],[4.53568364,0.03303307,99.79941342],[4.53568412,0.03303481,99.79978594],[4.5356846,0.03303654,99.80015809],[4.53568508,0.03303828,99.8005299],[4.53568556,0.03304002,99.8009014],[4.53568604,0.03304176,99.80127263],[4.53568651,0.0330435,99.80164362],[4.53568699,0.03304524,99.8020144],[4.53568747,0.03304697,99.802385],[4.53568795,0.03304871,99.80275545],[4.53568843,0.03305045,99.80312578],[4.53568892,0.03305219,99.80349603],[4.5356894,0.03305393,99.8038662],[4.53568988,0.03305566,99.80423628],[4.53569036,0.0330574,99.80460623],[4.53569084,0.03305914,99.80497605],[4.53569132,0.03306088,99.80534572],[4.53569181,0.03306261,99.80571521],[4.53569229,0.03306435,99.8060845],[4.53569277,0.03306609,99.80645358],[4.53569326,0.03306782,99.80682242],[4.53569374,0.03306956,99.80719101],[4.53569422,0.0330713,99.80755933],[4.53569471,0.03307304,99.80792736],[4.53569519,0.03307477,99.80829508],[4.53569568,0.03307651,99.80866247],[4.53569616,0.03307825,99.8090295],[4.53569665,0.03307998,99.80939617],[4.53569713,0.03308172,99.80976245],[4.53569762,0.03308346,99.81012832],[4.5356981,0.03308519,99.81049377],[4.53569859,0.03308693,99.81085877],[4.53569908,0.03308867,99.81122331],[4.53569956,0.0330904,99.81158736],[4.53570005,0.03309214,99.81195091],[4.53570053,0.03309387,99.81231393],[4.53570102,0.03309561,99.81267642],[4.53570151,0.03309735,99.81303835],[4.535702,0.03309908,99.81339969],[4.53570248,0.03310082,99.81376044],[4.53570297,0.03310255,99.81412057],[4.53570346,0.03310429,99.81448006],[4.53570395,0.03310603,99.8148389],[4.53570443,0.03310776,99.81519707],[4.53570492,0.0331095,99.81555454],[4.53570541,0.03311123,99.8159113],[4.5357059,0.03311297,99.81626733],[4.53570638,0.03311471,99.81662261],[4.53570687,0.03311644,99.81697713],[4.53570736,0.03311818,99.81733085],[4.53570785,0.03311991,99.81768377],[4.53570834,0.03312165,99.81803587],[4.53570882,0.03312339,99.81838712],[4.53570931,0.03312512,99.81873751],[4.5357098,0.03312686,99.81908702],[4.53571029,0.03312859,99.81943563],[4.53571078,0.03313033,99.8197833],[4.53571127,0.03313206,99.82012999],[4.53571175,0.0331338,99.82047566],[4.53571224,0.03313554,99.82082027],[4.53571273,0.03313727,99.82116377],[4.53571322,0.03313901,99.82150612],[4.53571371,0.03314074,99.82184727],[4.53571419,0.03314248,99.82218719],[4.53571468,0.03314422,99.82252583],[4.53571517,0.03314595,99.82286314],[4.53571566,0.03314769,99.8231991],[4.53571615,0.03314942,99.82353365],[4.53571663,0.03315116,99.82386674],[4.53571712,0.0331529,99.82419835],[4.53571761,0.03315463,99.82452843],[4.53571809,0.03315637,99.82485692],[4.53571858,0.03315811,99.82518381],[4.53571906,0.03315984,99.82550903],[4.53571955,0.03316158,99.82583255],[4.53572004,0.03316332,99.82615432],[4.53572052,0.03316505,99.82647431],[4.53572101,0.03316679,99.82679247],[4.53572149,0.03316853,99.82710877],[4.53572197,0.03317026,99.82742315],[4.53572246,0.033172,99.82773558],[4.53572294,0.03317374,99.82804601],[4.53572342,0.03317547,99.82835441],[4.53572391,0.03317721,99.82866074],[4.53572439,0.03317895,99.82896494],[4.53572487,0.03318069,99.82926699],[4.53572535,0.03318242,99.82956683],[4.53572583,0.03318416,99.82986443],[4.53572631,0.0331859,99.83015975],[4.53572679,0.03318764,99.83045274],[4.53572727,0.03318938,99.83074337],[4.53572775,0.03319112,99.8310316],[4.53572823,0.03319285,99.83131745],[4.53572871,0.03319459,99.83160102],[4.53572918,0.03319633,99.83188241],[4.53572966,0.03319807,99.83216171],[4.53573014,0.03319981,99.83243903],[4.53573061,0.03320155,99.83271446],[4.53573109,0.03320329,99.8329881],[4.53573156,0.03320503,99.83326004],[4.53573204,0.03320677,99.83353038],[4.53573251,0.03320851,99.83379923],[4.53573299,0.03321025,99.83406667],[4.53573346,0.03321199,99.8343328],[4.53573393,0.03321373,99.83459773],[4.53573441,0.03321547,99.83486154],[4.53573488,0.03321721,99.83512433],[4.53573536,0.03321895,99.8353862],[4.53573583,0.03322069,99.83564724],[4.5357363,0.03322243,99.83590756],[4.53573678,0.03322417,99.83616724],[4.53573725,0.03322591,99.83642639],[4.53573773,0.03322765,99.83668507],[4.5357382,0.03322939,99.8369433],[4.53573867,0.03323113,99.83720106],[4.53573915,0.03323287,99.83745834],[4.53573962,0.03323461,99.83771513],[4.5357401,0.03323635,99.83797142],[4.53574057,0.03323809,99.83822718],[4.53574105,0.03323982,99.83848241],[4.53574152,0.03324156,99.83873711],[4.535742,0.0332433,99.83899124],[4.53574247,0.03324504,99.83924481],[4.53574295,0.03324678,99.83949779],[4.53574342,0.03324852,99.83975018],[4.5357439,0.03325026,99.84000197],[4.53574437,0.033252,99.84025314],[4.53574485,0.03325374,99.84050367],[4.53574532,0.03325548,99.84075357],[4.5357458,0.03325722,99.84100281],[4.53574627,0.03325896,99.84125138],[4.53574675,0.0332607,99.84149928],[4.53574722,0.03326244,99.84174652],[4.5357477,0.03326418,99.84199311],[4.53574817,0.03326592,99.84223904],[4.53574865,0.03326766,99.84248433],[4.53574912,0.0332694,99.84272898],[4.5357496,0.03327114,99.842973],[4.53575007,0.03327288,99.84321638],[4.53575055,0.03327462,99.84345915],[4.53575102,0.03327636,99.84370129],[4.5357515,0.0332781,99.84394282],[4.53575197,0.03327984,99.84418374],[4.53575245,0.03328158,99.84442406],[4.53575292,0.03328331,99.84466379],[4.5357534,0.03328505,99.84490292],[4.53575387,0.03328679,99.84514147],[4.53575435,0.03328853,99.84537943],[4.53575482,0.03329027,99.84561682],[4.5357553,0.03329201,99.84585364],[4.53575577,0.03329375,99.84608989],[4.53575625,0.03329549,99.84632559],[4.53575672,0.03329723,99.84656073],[4.5357572,0.03329897,99.84679532],[4.53575768,0.03330071,99.84702937],[4.53575815,0.03330245,99.84726288],[4.53575863,0.03330419,99.84749586],[4.5357591,0.03330593,99.84772831],[4.53575958,0.03330767,99.84796023],[4.53576005,0.03330941,99.84819165],[4.53576053,0.03331115,99.84842254],[4.535761,0.03331289,99.84865294],[4.53576148,0.03331463,99.84888283],[4.53576196,0.03331637,99.84911222],[4.53576243,0.0333181,99.84934113],[4.53576291,0.03331984,99.84956955],[4.53576338,0.03332158,99.84979749],[4.53576386,0.03332332,99.85002495],[4.53576433,0.03332506,99.85025195],[4.53576481,0.0333268,99.85047848],[4.53576529,0.03332854,99.85070455],[4.53576576,0.03333028,99.85093017],[4.53576624,0.03333202,99.85115533],[4.53576671,0.03333376,99.85138006],[4.53576719,0.0333355,99.85160435],[4.53576767,0.03333724,99.8518282],[4.53576814,0.03333898,99.85205163],[4.53576862,0.03334072,99.85227463],[4.53576909,0.03334246,99.85249721],[4.53576957,0.03334419,99.85271934],[4.53577005,0.03334593,99.85294098],[4.53577052,0.03334767,99.85316211],[4.535771,0.03334941,99.85338267],[4.53577148,0.03335115,99.85360265],[4.53577195,0.03335289,99.853822],[4.53577243,0.03335463,99.8540407],[4.5357729,0.03335637,99.8542587],[4.53577338,0.03335811,99.85447598],[4.53577386,0.03335985,99.85469249],[4.53577433,0.03336159,99.85490821],[4.53577481,0.03336333,99.85512311],[4.53577528,0.03336507,99.85533714],[4.53577576,0.03336681,99.85555028],[4.53577623,0.03336855,99.85576249],[4.53577671,0.03337029,99.85597373],[4.53577718,0.03337203,99.85618398],[4.53577766,0.03337377,99.8563932],[4.53577813,0.0333755,99.85660136],[4.53577861,0.03337724,99.85680842],[4.53577908,0.03337898,99.85701434],[4.53577956,0.03338072,99.85721909],[4.53578003,0.03338246,99.85742263],[4.5357805,0.0333842,99.85762492],[4.53578098,0.03338594,99.85782591],[4.53578145,0.03338769,99.85802557],[4.53578192,0.03338943,99.85822386],[4.53578239,0.03339117,99.85842074],[4.53578286,0.03339291,99.85861617],[4.53578334,0.03339465,99.85881027],[4.53578381,0.03339639,99.85900329],[4.53578428,0.03339813,99.85919548],[4.53578475,0.03339987,99.85938709],[4.53578522,0.03340161,99.85957839],[4.53578569,0.03340335,99.85976962],[4.53578616,0.03340509,99.85996104],[4.53578663,0.03340683,99.86015291],[4.53578711,0.03340857,99.86034547],[4.53578758,0.03341031,99.86053899],[4.53578805,0.03341205,99.86073371],[4.53578853,0.03341379,99.86092989],[4.535789,0.03341553,99.86112777],[4.53578947,0.03341727,99.86132762],[4.53578995,0.03341901,99.86152967],[4.53579043,0.03342075,99.86173419],[4.53579091,0.03342249,99.86194141],[4.53579139,0.03342423,99.86215159],[4.53579187,0.03342597,99.86236498],[4.53579235,0.0334277,99.86258183],[4.53579283,0.03342944,99.86280229],[4.53579332,0.03343118,99.86302622],[4.53579381,0.03343291,99.86325336],[4.53579429,0.03343465,99.86348347],[4.53579478,0.03343639,99.86371631],[4.53579527,0.03343812,99.86395163],[4.53579576,0.03343986,99.86418919],[4.53579625,0.03344159,99.86442875],[4.53579675,0.03344333,99.86467007],[4.53579724,0.03344506,99.8649129],[4.53579773,0.0334468,99.86515699],[4.53579823,0.03344853,99.86540211],[4.53579872,0.03345027,99.86564802],[4.53579922,0.033452,99.86589446],[4.53579971,0.03345373,99.8661412],[4.53580021,0.03345547,99.86638799],[4.5358007,0.0334572,99.8666346],[4.5358012,0.03345894,99.86688078],[4.53580169,0.03346067,99.86712629],[4.53580219,0.0334624,99.8673709],[4.53580268,0.03346414,99.86761436],[4.53580318,0.03346587,99.86785643],[4.53580367,0.03346761,99.86809688],[4.53580417,0.03346934,99.86833547],[4.53580466,0.03347108,99.86857196]],"type":"LineString"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":1,"type":"shoulder","predecessorId":1}},{"geometry":{"coordinates":[[4.53451733,0.02893833,97.22251778],[4.53451735,0.02893841,97.2225645],[4.53451787,0.02894014,97.22358293],[4.53451839,0.02894186,97.22460196],[4.53451891,0.02894359,97.2256216],[4.53451943,0.02894532,97.22664185],[4.53451995,0.02894704,97.22766269],[4.53452048,0.02894877,97.22868414],[4.534521,0.0289505,97.22970618],[4.53452152,0.02895222,97.23072881],[4.53452204,0.02895395,97.23175205],[4.53452256,0.02895567,97.23277587],[4.53452308,0.0289574,97.23380028],[4.5345236,0.02895912,97.23482528],[4.53452412,0.02896085,97.23585086],[4.53452464,0.02896258,97.23687703],[4.53452516,0.02896431,97.23790379],[4.53452568,0.02896603,97.23893112],[4.5345262,0.02896776,97.23995903],[4.53452672,0.02896949,97.24098751],[4.53452724,0.02897121,97.24201658],[4.53452776,0.02897294,97.24304621],[4.53452828,0.02897467,97.24407641],[4.5345288,0.02897639,97.24510718],[4.53452932,0.02897812,97.24613852],[4.53452984,0.02897985,97.24717043],[4.53453036,0.02898158,97.24820289],[4.53453088,0.0289833,97.24923592],[4.5345314,0.02898503,97.25026951],[4.53453192,0.02898676,97.25130365],[4.53453244,0.02898848,97.25233835],[4.53453296,0.02899021,97.2533736],[4.53453348,0.02899194,97.25440941],[4.534534,0.02899366,97.25544576],[4.53453452,0.02899539,97.25648266],[4.53453504,0.02899712,97.25752011],[4.53453556,0.02899885,97.2585581],[4.53453608,0.02900057,97.25959663],[4.5345366,0.0290023,97.2606357],[4.53453712,0.02900403,97.26167531],[4.53453764,0.02900575,97.26271546],[4.53453816,0.02900748,97.26375614],[4.53453868,0.02900921,97.26479735],[4.5345392,0.02901094,97.26583909],[4.53453972,0.02901266,97.26688137],[4.53454024,0.02901439,97.26792416],[4.53454076,0.02901612,97.26896749],[4.53454128,0.02901784,97.27001133],[4.5345418,0.02901957,97.2710557],[4.53454232,0.0290213,97.27210058],[4.53454284,0.02902303,97.27314598],[4.53454336,0.02902475,97.2741919],[4.53454388,0.02902648,97.27523833],[4.5345444,0.02902821,97.27628527],[4.53454492,0.02902993,97.27733272],[4.53454544,0.02903166,97.27838068],[4.53454596,0.02903339,97.27942914],[4.53454648,0.02903512,97.28047811],[4.534547,0.02903684,97.28152757],[4.53454751,0.02903857,97.28257754],[4.53454803,0.0290403,97.28362801],[4.53454855,0.02904202,97.28467897],[4.53454907,0.02904375,97.28573042],[4.53454959,0.02904548,97.28678237],[4.53455011,0.02904721,97.28783481],[4.53455063,0.02904893,97.28888774],[4.53455115,0.02905066,97.28994115],[4.53455167,0.02905239,97.29099505],[4.53455219,0.02905411,97.29204943],[4.53455271,0.02905584,97.29310429],[4.53455323,0.02905757,97.29415963],[4.53455375,0.0290593,97.29521544],[4.53455427,0.02906102,97.29627173],[4.53455479,0.02906275,97.2973285],[4.53455531,0.02906448,97.29838573],[4.53455583,0.02906621,97.29944344],[4.53455635,0.02906793,97.30050161],[4.53455687,0.02906966,97.30156025],[4.53455739,0.02907139,97.30261935],[4.53455791,0.02907311,97.30367891],[4.53455843,0.02907484,97.30473894],[4.53455894,0.02907657,97.30579942],[4.53455946,0.02907829,97.30686036],[4.53455998,0.02908002,97.30792175],[4.5345605,0.02908175,97.30898359],[4.53456102,0.02908348,97.31004588],[4.53456154,0.0290852,97.31110863],[4.53456206,0.02908693,97.31217182],[4.53456258,0.02908866,97.31323545],[4.5345631,0.02909038,97.31429953],[4.53456362,0.02909211,97.31536404],[4.53456414,0.02909384,97.316429],[4.53456466,0.02909557,97.31749439],[4.53456518,0.02909729,97.31856022],[4.5345657,0.02909902,97.31962649],[4.53456622,0.02910075,97.32069318],[4.53456674,0.02910247,97.3217603],[4.53456726,0.0291042,97.32282785],[4.53456778,0.02910593,97.32389583],[4.5345683,0.02910765,97.32496421],[4.53456882,0.02910938,97.326033],[4.53456934,0.02911111,97.32710218],[4.53456986,0.02911284,97.32817175],[4.53457038,0.02911456,97.3292417],[4.5345709,0.02911629,97.33031202],[4.53457142,0.02911802,97.33138271],[4.53457194,0.02911974,97.33245374],[4.53457246,0.02912147,97.33352513],[4.53457298,0.0291232,97.33459684],[4.5345735,0.02912492,97.33566889],[4.53457402,0.02912665,97.33674126],[4.53457454,0.02912838,97.33781394],[4.53457506,0.02913011,97.33888693],[4.53457558,0.02913183,97.33996021],[4.5345761,0.02913356,97.34103378],[4.53457662,0.02913529,97.34210763],[4.53457714,0.02913701,97.34318174],[4.53457766,0.02913874,97.34425613],[4.53457818,0.02914047,97.34533076],[4.5345787,0.02914219,97.34640565],[4.53457922,0.02914392,97.34748077],[4.53457974,0.02914565,97.34855613],[4.53458026,0.02914738,97.34963173],[4.53458078,0.0291491,97.35070757],[4.5345813,0.02915083,97.35178363],[4.53458182,0.02915256,97.35285993],[4.53458234,0.02915428,97.35393647],[4.53458286,0.02915601,97.35501323],[4.53458338,0.02915774,97.35609023],[4.5345839,0.02915946,97.35716745],[4.53458442,0.02916119,97.3582449],[4.53458494,0.02916292,97.35932258],[4.53458546,0.02916465,97.36040048],[4.53458598,0.02916637,97.36147861],[4.5345865,0.0291681,97.36255696],[4.53458702,0.02916983,97.36363553],[4.53458754,0.02917155,97.36471433],[4.53458805,0.02917328,97.36579335],[4.53458857,0.02917501,97.36687258],[4.53458909,0.02917673,97.36795203],[4.53458961,0.02917846,97.3690317],[4.53459013,0.02918019,97.37011159],[4.53459065,0.02918192,97.37119169],[4.53459117,0.02918364,97.37227201],[4.53459169,0.02918537,97.37335254],[4.53459221,0.0291871,97.37443328],[4.53459273,0.02918882,97.37551423],[4.53459325,0.02919055,97.37659539],[4.53459377,0.02919228,97.37767676],[4.53459428,0.02919401,97.37875834],[4.5345948,0.02919573,97.37984012],[4.53459532,0.02919746,97.38092211],[4.53459584,0.02919919,97.38200431],[4.53459636,0.02920092,97.38308671],[4.53459688,0.02920264,97.38416931],[4.5345974,0.02920437,97.38525211],[4.53459792,0.0292061,97.38633512],[4.53459843,0.02920782,97.38741832],[4.53459895,0.02920955,97.38850172],[4.53459947,0.02921128,97.38958532],[4.53459999,0.02921301,97.39066912],[4.53460051,0.02921473,97.39175311],[4.53460103,0.02921646,97.3928373],[4.53460154,0.02921819,97.39392168],[4.53460206,0.02921992,97.39500625],[4.53460258,0.02922164,97.39609102],[4.5346031,0.02922337,97.39717597],[4.53460362,0.0292251,97.39826112],[4.53460414,0.02922683,97.39934645],[4.53460465,0.02922855,97.40043197],[4.53460517,0.02923028,97.40151768],[4.53460569,0.02923201,97.40260357],[4.53460621,0.02923374,97.40368965],[4.53460672,0.02923546,97.40477591],[4.53460724,0.02923719,97.40586236],[4.53460776,0.02923892,97.40694898],[4.53460828,0.02924065,97.40803579],[4.53460879,0.02924237,97.40912278],[4.53460931,0.0292441,97.41020994],[4.53460983,0.02924583,97.41129729],[4.53461035,0.02924756,97.41238481],[4.53461086,0.02924929,97.41347251],[4.53461138,0.02925101,97.41456041],[4.5346119,0.02925274,97.41564852],[4.53461242,0.02925447,97.41673683],[4.53461293,0.0292562,97.41782537],[4.53461345,0.02925792,97.41891415],[4.53461397,0.02925965,97.42000316],[4.53461448,0.02926138,97.42109242],[4.534615,0.02926311,97.42218194],[4.53461552,0.02926484,97.42327173],[4.53461603,0.02926656,97.42436178],[4.53461655,0.02926829,97.4254521],[4.53461707,0.02927002,97.42654271],[4.53461758,0.02927175,97.4276336],[4.5346181,0.02927347,97.42872479],[4.53461862,0.0292752,97.42981627],[4.53461913,0.02927693,97.43090806],[4.53461965,0.02927866,97.43200016],[4.53462017,0.02928039,97.43309257],[4.53462068,0.02928211,97.43418531],[4.5346212,0.02928384,97.43527838],[4.53462172,0.02928557,97.43637178],[4.53462223,0.0292873,97.43746552],[4.53462275,0.02928903,97.43855961],[4.53462327,0.02929075,97.43965405],[4.53462378,0.02929248,97.44074885],[4.5346243,0.02929421,97.44184402],[4.53462482,0.02929594,97.44293957],[4.53462533,0.02929766,97.44403551],[4.53462585,0.02929939,97.44513183],[4.53462637,0.02930112,97.44622857],[4.53462688,0.02930285,97.44732571],[4.5346274,0.02930458,97.44842327],[4.53462792,0.0293063,97.44952126],[4.53462843,0.02930803,97.45061968],[4.53462895,0.02930976,97.45171855],[4.53462947,0.02931149,97.45281787],[4.53462998,0.02931322,97.45391765],[4.5346305,0.02931494,97.4550179],[4.53463102,0.02931667,97.45611862],[4.53463153,0.0293184,97.45721983],[4.53463205,0.02932013,97.45832153],[4.53463257,0.02932185,97.45942373],[4.53463308,0.02932358,97.46052644],[4.5346336,0.02932531,97.46162966],[4.53463412,0.02932704,97.46273338],[4.53463463,0.02932876,97.46383762],[4.53463515,0.02933049,97.46494237],[4.53463567,0.02933222,97.46604763],[4.53463619,0.02933395,97.46715341],[4.5346367,0.02933568,97.46825969],[4.53463722,0.0293374,97.46936648],[4.53463774,0.02933913,97.47047379],[4.53463826,0.02934086,97.47158161],[4.53463877,0.02934259,97.47268994],[4.53463929,0.02934431,97.47379878],[4.53463981,0.02934604,97.47490813],[4.53464033,0.02934777,97.476018],[4.53464084,0.0293495,97.47712837],[4.53464136,0.02935122,97.47823927],[4.53464188,0.02935295,97.47935067],[4.5346424,0.02935468,97.48046259],[4.53464291,0.02935641,97.48157502],[4.53464343,0.02935813,97.48268796],[4.53464395,0.02935986,97.48380142],[4.53464447,0.02936159,97.48491539],[4.53464498,0.02936332,97.48602987],[4.5346455,0.02936504,97.48714487],[4.53464602,0.02936677,97.48826038],[4.53464654,0.0293685,97.48937641],[4.53464705,0.02937023,97.49049295],[4.53464757,0.02937195,97.49161001],[4.53464809,0.02937368,97.49272758],[4.53464861,0.02937541,97.49384567],[4.53464913,0.02937714,97.49496428],[4.53464964,0.02937886,97.4960834],[4.53465016,0.02938059,97.49720303],[4.53465068,0.02938232,97.49832318],[4.5346512,0.02938405,97.49944385],[4.53465172,0.02938577,97.50056503],[4.53465223,0.0293875,97.50168674],[4.53465275,0.02938923,97.50280895],[4.53465327,0.02939095,97.50393169],[4.53465379,0.02939268,97.50505494],[4.53465431,0.02939441,97.50617871],[4.53465482,0.02939614,97.507303],[4.53465534,0.02939786,97.50842781],[4.53465586,0.02939959,97.50955314],[4.53465638,0.02940132,97.51067898],[4.5346569,0.02940305,97.51180534],[4.53465741,0.02940477,97.51293223],[4.53465793,0.0294065,97.51405963],[4.53465845,0.02940823,97.51518755],[4.53465897,0.02940996,97.516316],[4.53465949,0.02941168,97.51744496],[4.53466001,0.02941341,97.51857444],[4.53466052,0.02941514,97.51970445],[4.53466104,0.02941686,97.52083497],[4.53466156,0.02941859,97.52196602],[4.53466208,0.02942032,97.52309759],[4.5346626,0.02942205,97.52422968],[4.53466312,0.02942377,97.5253623],[4.53466363,0.0294255,97.52649543],[4.53466415,0.02942723,97.5276291],[4.53466467,0.02942896,97.52876328],[4.53466519,0.02943068,97.52989799],[4.53466571,0.02943241,97.53103322],[4.53466622,0.02943414,97.53216897],[4.53466674,0.02943586,97.53330524],[4.53466726,0.02943759,97.53444201],[4.53466778,0.02943932,97.53557929],[4.5346683,0.02944105,97.53671706],[4.53466882,0.02944277,97.53785531],[4.53466933,0.0294445,97.53899405],[4.53466985,0.02944623,97.54013326],[4.53467037,0.02944795,97.54127293],[4.53467089,0.02944968,97.54241307],[4.53467141,0.02945141,97.54355366],[4.53467193,0.02945314,97.5446947],[4.53467244,0.02945486,97.54583618],[4.53467296,0.02945659,97.5469781],[4.53467348,0.02945832,97.54812044],[4.534674,0.02946005,97.54926321],[4.53467451,0.02946177,97.55040638],[4.53467503,0.0294635,97.55154997],[4.53467555,0.02946523,97.55269396],[4.53467607,0.02946696,97.55383835],[4.53467659,0.02946868,97.55498313],[4.5346771,0.02947041,97.55612829],[4.53467762,0.02947214,97.55727382],[4.53467814,0.02947387,97.55841973],[4.53467865,0.02947559,97.559566],[4.53467917,0.02947732,97.56071263],[4.53467969,0.02947905,97.56185961],[4.53468021,0.02948078,97.56300694],[4.53468072,0.0294825,97.56415461],[4.53468124,0.02948423,97.56530261],[4.53468176,0.02948596,97.56645094],[4.53468227,0.02948769,97.56759959],[4.53468279,0.02948941,97.56874855],[4.5346833,0.02949114,97.56989782],[4.53468382,0.02949287,97.5710474],[4.53468434,0.0294946,97.57219727],[4.53468485,0.02949633,97.57334744],[4.53468537,0.02949805,97.57449788],[4.53468588,0.02949978,97.57564861],[4.5346864,0.02950151,97.57679961],[4.53468691,0.02950324,97.57795088],[4.53468743,0.02950497,97.57910241],[4.53468794,0.0295067,97.58025419],[4.53468846,0.02950842,97.58140623],[4.53468897,0.02951015,97.58255851],[4.53468948,0.02951188,97.58371108],[4.53469,0.02951361,97.58486395],[4.53469051,0.02951534,97.58601718],[4.53469103,0.02951707,97.58717079],[4.53469154,0.02951879,97.58832482],[4.53469205,0.02952052,97.58947931],[4.53469257,0.02952225,97.59063428],[4.53469308,0.02952398,97.59178978],[4.53469359,0.02952571,97.59294584],[4.53469411,0.02952744,97.5941025],[4.53469462,0.02952917,97.59525979],[4.53469513,0.0295309,97.59641774],[4.53469564,0.02953263,97.59757639],[4.53469616,0.02953435,97.59873577],[4.53469667,0.02953608,97.59989592],[4.53469718,0.02953781,97.60105687],[4.5346977,0.02953954,97.60221866],[4.53469821,0.02954127,97.60338131],[4.53469872,0.029543,97.60454483],[4.53469923,0.02954473,97.60570926],[4.53469975,0.02954646,97.60687461],[4.53470026,0.02954818,97.6080409],[4.53470077,0.02954991,97.60920815],[4.53470129,0.02955164,97.61037638],[4.5347018,0.02955337,97.61154561],[4.53470231,0.0295551,97.61271587],[4.53470283,0.02955683,97.61388716],[4.53470334,0.02955856,97.61505952],[4.53470385,0.02956028,97.61623295],[4.53470437,0.02956201,97.61740749],[4.53470488,0.02956374,97.61858315],[4.5347054,0.02956547,97.61975995],[4.53470591,0.0295672,97.62093791],[4.53470642,0.02956893,97.62211704],[4.53470694,0.02957065,97.6232973],[4.53470745,0.02957238,97.62447863],[4.53470797,0.02957411,97.62566099],[4.53470848,0.02957584,97.62684432],[4.534709,0.02957757,97.62802857],[4.53470951,0.0295793,97.6292137],[4.53471003,0.02958102,97.63039963],[4.53471054,0.02958275,97.63158634],[4.53471106,0.02958448,97.63277376],[4.53471157,0.02958621,97.63396184],[4.53471209,0.02958794,97.63515054],[4.5347126,0.02958967,97.63633979],[4.53471311,0.02959139,97.63752956],[4.53471363,0.02959312,97.63871978],[4.53471414,0.02959485,97.63991042],[4.53471465,0.02959658,97.64110141],[4.53471517,0.02959831,97.64229271],[4.53471568,0.02960004,97.64348427],[4.53471619,0.02960177,97.64467608],[4.53471671,0.02960349,97.64586813],[4.53471722,0.02960522,97.64706044],[4.53471773,0.02960695,97.64825299],[4.53471824,0.02960868,97.6494458],[4.53471875,0.02961041,97.65063887],[4.53471926,0.02961214,97.65183219],[4.53471978,0.02961387,97.65302577],[4.53472029,0.0296156,97.65421962],[4.5347208,0.02961733,97.65541373],[4.53472131,0.02961906,97.6566081],[4.53472182,0.02962079,97.65780274],[4.53472233,0.02962252,97.65899764],[4.53472284,0.02962425,97.66019282],[4.53472335,0.02962598,97.66138827],[4.53472386,0.02962771,97.662584],[4.53472437,0.02962944,97.66378],[4.53472488,0.02963116,97.66497628],[4.53472539,0.02963289,97.66617283],[4.5347259,0.02963462,97.66736967],[4.53472641,0.02963635,97.6685668],[4.53472692,0.02963808,97.6697642],[4.53472743,0.02963981,97.6709619],[4.53472793,0.02964154,97.67215988],[4.53472844,0.02964327,97.67335815],[4.53472895,0.029645,97.67455671],[4.53472946,0.02964673,97.67575557],[4.53472997,0.02964846,97.67695472],[4.53473048,0.02965019,97.67815417],[4.53473099,0.02965192,97.67935391],[4.5347315,0.02965365,97.68055396],[4.53473201,0.02965538,97.68175431],[4.53473252,0.02965711,97.68295496],[4.53473303,0.02965884,97.68415591],[4.53473354,0.02966057,97.68535717],[4.53473405,0.0296623,97.68655873],[4.53473456,0.02966403,97.68776061],[4.53473507,0.02966576,97.68896279],[4.53473557,0.02966749,97.69016529],[4.53473608,0.02966922,97.6913681],[4.53473659,0.02967095,97.69257122],[4.5347371,0.02967268,97.69377464],[4.53473761,0.02967441,97.69497831],[4.53473812,0.02967614,97.69618215],[4.53473864,0.02967787,97.69738612],[4.53473915,0.0296796,97.69859016],[4.53473966,0.02968132,97.69979422],[4.53474017,0.02968305,97.70099831],[4.53474068,0.02968478,97.70220246],[4.53474119,0.02968651,97.70340669],[4.5347417,0.02968824,97.70461103],[4.53474221,0.02968997,97.70581549],[4.53474272,0.0296917,97.70702011],[4.53474323,0.02969343,97.70822491],[4.53474374,0.02969516,97.70942991],[4.53474425,0.02969689,97.71063514],[4.53474476,0.02969862,97.71184062],[4.53474528,0.02970035,97.71304637],[4.53474579,0.02970208,97.71425242],[4.5347463,0.02970381,97.7154588],[4.53474681,0.02970553,97.71666553],[4.53474732,0.02970726,97.71787262],[4.53474784,0.02970899,97.71908012],[4.53474835,0.02971072,97.72028803],[4.53474886,0.02971245,97.72149639],[4.53474938,0.02971418,97.72270522],[4.53474989,0.02971591,97.72391454],[4.5347504,0.02971764,97.72512438],[4.53475092,0.02971936,97.72633476],[4.53475143,0.02972109,97.7275457],[4.53475194,0.02972282,97.72875724],[4.53475246,0.02972455,97.72996939],[4.53475297,0.02972628,97.73118217],[4.53475349,0.02972801,97.73239562],[4.534754,0.02972973,97.73360976],[4.53475452,0.02973146,97.73482461],[4.53475503,0.02973319,97.7360402],[4.53475555,0.02973492,97.73725654],[4.53475606,0.02973665,97.73847368],[4.53475658,0.02973837,97.73969162],[4.53475709,0.0297401,97.74091039],[4.53475761,0.02974183,97.74213003],[4.53475813,0.02974356,97.74335055],[4.53475864,0.02974528,97.74457198],[4.53475916,0.02974701,97.74579434],[4.53475968,0.02974874,97.74701766],[4.53476019,0.02975047,97.74824196],[4.53476071,0.02975219,97.74946727],[4.53476123,0.02975392,97.75069362],[4.53476175,0.02975565,97.75192102],[4.53476227,0.02975738,97.75314948],[4.53476278,0.0297591,97.75437896],[4.5347633,0.02976083,97.75560944],[4.53476382,0.02976256,97.75684087],[4.53476434,0.02976428,97.75807324],[4.53476486,0.02976601,97.7593065],[4.53476538,0.02976774,97.76054062],[4.5347659,0.02976947,97.76177558],[4.53476641,0.02977119,97.76301133],[4.53476693,0.02977292,97.76424785],[4.53476745,0.02977465,97.76548511],[4.53476797,0.02977637,97.76672307],[4.53476849,0.0297781,97.7679617],[4.53476901,0.02977983,97.76920096],[4.53476952,0.02978155,97.77044083],[4.53477004,0.02978328,97.77168127],[4.53477056,0.02978501,97.77292225],[4.53477108,0.02978674,97.77416372],[4.5347716,0.02978846,97.77540567],[4.53477211,0.02979019,97.77664806],[4.53477263,0.02979192,97.77789085],[4.53477315,0.02979365,97.77913402],[4.53477366,0.02979537,97.78037758],[4.53477418,0.0297971,97.78162152],[4.53477469,0.02979883,97.78286585],[4.53477521,0.02980056,97.78411058],[4.53477572,0.02980229,97.78535571],[4.53477624,0.02980401,97.78660123],[4.53477675,0.02980574,97.78784717],[4.53477726,0.02980747,97.78909351],[4.53477778,0.0298092,97.79034027],[4.53477829,0.02981093,97.79158745],[4.5347788,0.02981266,97.79283504],[4.53477931,0.02981439,97.79408307],[4.53477983,0.02981612,97.79533154],[4.53478034,0.02981785,97.79658053],[4.53478085,0.02981957,97.79783007],[4.53478136,0.0298213,97.79908023],[4.53478187,0.02982303,97.80033106],[4.53478238,0.02982476,97.8015826],[4.53478289,0.02982649,97.80283493],[4.5347834,0.02982822,97.80408808],[4.53478391,0.02982995,97.80534213],[4.53478441,0.02983168,97.80659711],[4.53478492,0.02983341,97.80785309],[4.53478543,0.02983514,97.80911012],[4.53478594,0.02983687,97.81036826],[4.53478645,0.0298386,97.81162756],[4.53478695,0.02984033,97.81288809],[4.53478746,0.02984207,97.81414989],[4.53478797,0.0298438,97.81541303],[4.53478847,0.02984553,97.81667756],[4.53478898,0.02984726,97.81794355],[4.53478949,0.02984899,97.81921104],[4.53478999,0.02985072,97.8204801],[4.5347905,0.02985245,97.82175078],[4.53479101,0.02985418,97.82302315],[4.53479151,0.02985591,97.82429727],[4.53479202,0.02985764,97.82557319],[4.53479253,0.02985937,97.82685098],[4.53479303,0.0298611,97.82813064],[4.53479354,0.02986283,97.82941216],[4.53479405,0.02986456,97.83069549],[4.53479456,0.02986629,97.83198062],[4.53479506,0.02986802,97.8332675],[4.53479557,0.02986975,97.83455611],[4.53479608,0.02987148,97.83584641],[4.53479659,0.02987321,97.83713838],[4.5347971,0.02987494,97.83843198],[4.53479761,0.02987667,97.83972717],[4.53479811,0.0298784,97.84102394],[4.53479862,0.02988013,97.84232224],[4.53479913,0.02988186,97.84362204],[4.53479964,0.02988359,97.84492331],[4.53480015,0.02988532,97.84622601],[4.53480066,0.02988705,97.84753013],[4.53480117,0.02988878,97.84883561],[4.53480168,0.02989051,97.85014243],[4.53480219,0.02989224,97.85145056],[4.5348027,0.02989397,97.85275995],[4.53480321,0.0298957,97.85407058],[4.53480372,0.02989743,97.85538242],[4.53480423,0.02989916,97.85669542],[4.53480474,0.02990089,97.85800956],[4.53480525,0.02990262,97.85932479],[4.53480576,0.02990435,97.86064109],[4.53480627,0.02990608,97.86195842],[4.53480678,0.02990781,97.86327674],[4.53480729,0.02990954,97.86459601],[4.5348078,0.02991127,97.86591618],[4.53480831,0.029913,97.86723717],[4.53480882,0.02991473,97.86855894],[4.53480933,0.02991646,97.86988143],[4.53480984,0.02991819,97.87120456],[4.53481035,0.02991991,97.87252829],[4.53481086,0.02992164,97.87385256],[4.53481137,0.02992337,97.87517729],[4.53481189,0.0299251,97.87650242],[4.5348124,0.02992683,97.8778279],[4.53481291,0.02992856,97.87915366],[4.53481342,0.02993029,97.88047964],[4.53481393,0.02993202,97.88180577],[4.53481444,0.02993375,97.88313198],[4.53481495,0.02993548,97.88445822],[4.53481546,0.02993721,97.8857844],[4.53481597,0.02993894,97.88711048],[4.53481648,0.02994067,97.88843638],[4.53481698,0.0299424,97.88976207],[4.53481749,0.02994413,97.89108759],[4.534818,0.02994586,97.89241295],[4.53481851,0.02994759,97.89373819],[4.53481902,0.02994932,97.89506332],[4.53481953,0.02995105,97.89638837],[4.53482004,0.02995278,97.89771337],[4.53482055,0.02995451,97.89903834],[4.53482106,0.02995624,97.90036331],[4.53482157,0.02995797,97.9016883],[4.53482207,0.0299597,97.90301334],[4.53482258,0.02996143,97.90433846],[4.53482309,0.02996316,97.90566367],[4.5348236,0.02996489,97.90698902],[4.53482411,0.02996662,97.90831451],[4.53482462,0.02996835,97.90964019],[4.53482513,0.02997008,97.91096608],[4.53482564,0.02997181,97.9122922],[4.53482615,0.02997354,97.91361858],[4.53482666,0.02997527,97.91494526],[4.53482717,0.029977,97.91627224],[4.53482768,0.02997873,97.91759953],[4.53482819,0.02998046,97.91892712],[4.5348287,0.02998219,97.92025502],[4.53482921,0.02998392,97.92158322],[4.53482972,0.02998564,97.92291172],[4.53483023,0.02998737,97.92424053],[4.53483074,0.0299891,97.92556963],[4.53483125,0.02999083,97.92689903],[4.53483176,0.02999256,97.92822873],[4.53483227,0.02999429,97.92955873],[4.53483278,0.02999602,97.93088902],[4.53483329,0.02999775,97.93221962],[4.5348338,0.02999948,97.93355052],[4.53483431,0.03000121,97.93488173],[4.53483482,0.03000294,97.93621323],[4.53483533,0.03000467,97.93754505],[4.53483584,0.0300064,97.93887717],[4.53483636,0.03000813,97.94020961],[4.53483687,0.03000986,97.94154236],[4.53483738,0.03001159,97.94287543],[4.53483789,0.03001332,97.94420882],[4.5348384,0.03001505,97.94554254],[4.53483891,0.03001678,97.94687659],[4.53483942,0.03001851,97.94821098],[4.53483993,0.03002023,97.9495457],[4.53484044,0.03002196,97.95088077],[4.53484095,0.03002369,97.9522162],[4.53484146,0.03002542,97.95355198],[4.53484197,0.03002715,97.95488812],[4.53484248,0.03002888,97.95622464],[4.53484299,0.03003061,97.95756153],[4.5348435,0.03003234,97.95889881],[4.53484401,0.03003407,97.96023646],[4.53484452,0.0300358,97.96157442],[4.53484503,0.03003753,97.96291265],[4.53484554,0.03003926,97.96425111],[4.53484605,0.03004099,97.96558976],[4.53484656,0.03004272,97.96692857],[4.53484707,0.03004445,97.96826749],[4.53484758,0.03004618,97.96960649],[4.53484809,0.03004791,97.97094553],[4.5348486,0.03004964,97.97228457],[4.53484911,0.03005137,97.97362357],[4.53484962,0.0300531,97.9749625],[4.53485013,0.03005483,97.97630131],[4.53485064,0.03005656,97.97763997],[4.53485115,0.03005829,97.97897844],[4.53485166,0.03006002,97.98031667],[4.53485217,0.03006175,97.98165464],[4.53485267,0.03006348,97.9829923],[4.53485318,0.03006521,97.98432961],[4.53485369,0.03006694,97.98566653],[4.5348542,0.03006867,97.98700303],[4.53485471,0.0300704,97.98833906],[4.53485522,0.03007213,97.98967458],[4.53485573,0.03007386,97.99100956],[4.53485624,0.03007559,97.99234395],[4.53485674,0.03007732,97.99367772],[4.53485725,0.03007905,97.99501082],[4.53485776,0.03008078,97.99634321],[4.53485827,0.03008251,97.99767486],[4.53485878,0.03008424,97.99900572],[4.53485929,0.03008597,98.00033575],[4.53485979,0.0300877,98.00166491],[4.5348603,0.03008943,98.00299316],[4.53486081,0.03009116,98.00432046],[4.53486132,0.03009289,98.00564677],[4.53486182,0.03009462,98.00697205],[4.53486233,0.03009635,98.00829625],[4.53486284,0.03009808,98.00961934],[4.53486335,0.03009981,98.01094127],[4.53486385,0.03010154,98.01226201],[4.53486436,0.03010327,98.0135815],[4.53486487,0.030105,98.01489971],[4.53486538,0.03010673,98.0162166],[4.53486588,0.03010846,98.01753213],[4.53486639,0.03011019,98.01884626],[4.5348669,0.03011192,98.02015898],[4.5348674,0.03011365,98.02147026],[4.53486791,0.03011539,98.02278007],[4.53486842,0.03011712,98.02408838],[4.53486892,0.03011885,98.02539518],[4.53486943,0.03012058,98.02670044],[4.53486993,0.03012231,98.02800413],[4.53487044,0.03012404,98.02930622],[4.53487095,0.03012577,98.0306067],[4.53487145,0.0301275,98.03190553],[4.53487196,0.03012923,98.0332027],[4.53487246,0.03013096,98.03449817],[4.53487297,0.03013269,98.03579192],[4.53487348,0.03013442,98.03708392],[4.53487398,0.03013615,98.03837416],[4.53487449,0.03013789,98.0396626],[4.53487499,0.03013962,98.04094923],[4.5348755,0.03014135,98.04223401],[4.534876,0.03014308,98.04351692],[4.53487651,0.03014481,98.04479794],[4.53487702,0.03014654,98.04607703],[4.53487752,0.03014827,98.04735419],[4.53487803,0.03015,98.04862937],[4.53487853,0.03015173,98.04990257],[4.53487904,0.03015346,98.05117374],[4.53487954,0.0301552,98.0524429],[4.53488005,0.03015693,98.05371007],[4.53488055,0.03015866,98.05497525],[4.53488106,0.03016039,98.05623846],[4.53488156,0.03016212,98.05749971],[4.53488207,0.03016385,98.05875903],[4.53488258,0.03016558,98.06001642],[4.53488308,0.03016731,98.06127189],[4.53488359,0.03016904,98.06252547],[4.53488409,0.03017077,98.06377717],[4.5348846,0.03017251,98.06502698],[4.5348851,0.03017424,98.06627493],[4.53488561,0.03017597,98.06752103],[4.53488611,0.0301777,98.06876528],[4.53488662,0.03017943,98.0700077],[4.53488712,0.03018116,98.07124829],[4.53488763,0.03018289,98.07248708],[4.53488813,0.03018462,98.07372406],[4.53488864,0.03018635,98.07495925],[4.53488914,0.03018809,98.07619266],[4.53488965,0.03018982,98.0774243],[4.53489015,0.03019155,98.07865418],[4.53489066,0.03019328,98.07988232],[4.53489116,0.03019501,98.08110871],[4.53489167,0.03019674,98.08233338],[4.53489217,0.03019847,98.08355634],[4.53489268,0.0302002,98.08477758],[4.53489319,0.03020193,98.08599713],[4.53489369,0.03020367,98.087215],[4.5348942,0.0302054,98.08843119],[4.5348947,0.03020713,98.08964572],[4.53489521,0.03020886,98.0908586],[4.53489571,0.03021059,98.09206983],[4.53489622,0.03021232,98.09327943],[4.53489672,0.03021405,98.09448741],[4.53489723,0.03021578,98.09569378],[4.53489773,0.03021751,98.09689855],[4.53489824,0.03021924,98.09810173],[4.53489874,0.03022098,98.09930333],[4.53489925,0.03022271,98.10050336],[4.53489976,0.03022444,98.10170183],[4.53490026,0.03022617,98.10289875],[4.53490077,0.0302279,98.10409414],[4.53490127,0.03022963,98.105288],[4.53490178,0.03023136,98.10648034],[4.53490228,0.03023309,98.10767118],[4.53490279,0.03023482,98.10886052],[4.53490329,0.03023655,98.11004838],[4.5349038,0.03023829,98.11123476],[4.53490431,0.03024002,98.11241968],[4.53490481,0.03024175,98.11360314],[4.53490532,0.03024348,98.11478516],[4.53490582,0.03024521,98.11596575],[4.53490633,0.03024694,98.11714492],[4.53490683,0.03024867,98.11832267],[4.53490734,0.0302504,98.11949903],[4.53490785,0.03025213,98.12067399],[4.53490835,0.03025386,98.12184757],[4.53490886,0.03025559,98.12301978],[4.53490936,0.03025732,98.12419063],[4.53490987,0.03025906,98.12536013],[4.53491038,0.03026079,98.1265283],[4.53491088,0.03026252,98.12769513],[4.53491139,0.03026425,98.12886065],[4.5349119,0.03026598,98.13002486],[4.5349124,0.03026771,98.13118777],[4.53491291,0.03026944,98.1323494],[4.53491341,0.03027117,98.13350975],[4.53491392,0.0302729,98.13466883],[4.53491443,0.03027463,98.13582666],[4.53491493,0.03027636,98.13698324],[4.53491544,0.03027809,98.13813859],[4.53491595,0.03027982,98.13929271],[4.53491645,0.03028156,98.14044562],[4.53491696,0.03028329,98.14159732],[4.53491747,0.03028502,98.14274781],[4.53491797,0.03028675,98.14389711],[4.53491848,0.03028848,98.14504522],[4.53491899,0.03029021,98.14619215],[4.5349195,0.03029194,98.14733791],[4.53492,0.03029367,98.1484825],[4.53492051,0.0302954,98.14962594],[4.53492102,0.03029713,98.15076822],[4.53492152,0.03029886,98.15190936],[4.53492203,0.03030059,98.15304936],[4.53492254,0.03030232,98.15418823],[4.53492305,0.03030405,98.15532598],[4.53492355,0.03030578,98.15646262],[4.53492406,0.03030751,98.15759815],[4.53492457,0.03030924,98.15873258],[4.53492508,0.03031097,98.15986592],[4.53492558,0.0303127,98.16099818],[4.53492609,0.03031443,98.16212936],[4.5349266,0.03031616,98.16325947],[4.53492711,0.0303179,98.16438852],[4.53492761,0.03031963,98.16551651],[4.53492812,0.03032136,98.16664346],[4.53492863,0.03032309,98.16776937],[4.53492914,0.03032482,98.16889425],[4.53492965,0.03032655,98.17001811],[4.53493015,0.03032828,98.17114095],[4.53493066,0.03033001,98.17226279],[4.53493117,0.03033174,98.17338362],[4.53493168,0.03033347,98.17450347],[4.53493219,0.0303352,98.17562233],[4.5349327,0.03033693,98.17674021],[4.5349332,0.03033866,98.17785712],[4.53493371,0.03034039,98.17897308],[4.53493422,0.03034212,98.18008808],[4.53493473,0.03034385,98.18120214],[4.53493524,0.03034558,98.18231526],[4.53493575,0.03034731,98.18342745],[4.53493625,0.03034904,98.18453873],[4.53493676,0.03035077,98.18564909],[4.53493727,0.0303525,98.18675854],[4.53493778,0.03035423,98.1878671],[4.53493829,0.03035596,98.18897478],[4.5349388,0.03035769,98.19008156],[4.5349393,0.03035942,98.19118747],[4.53493981,0.03036115,98.1922925],[4.53494032,0.03036288,98.19339667],[4.53494083,0.03036461,98.1945],[4.53494134,0.03036634,98.1956025],[4.53494184,0.03036807,98.19670418],[4.53494235,0.0303698,98.19780506],[4.53494286,0.03037153,98.19890516],[4.53494337,0.03037326,98.20000448],[4.53494388,0.03037499,98.20110306],[4.53494438,0.03037672,98.20220089],[4.53494489,0.03037845,98.203298],[4.5349454,0.03038018,98.2043944],[4.53494591,0.03038191,98.20549011],[4.53494641,0.03038364,98.20658514],[4.53494692,0.03038537,98.2076795],[4.53494743,0.0303871,98.20877321],[4.53494794,0.03038884,98.20986629],[4.53494844,0.03039057,98.21095875],[4.53494895,0.0303923,98.21205061],[4.53494946,0.03039403,98.21314188],[4.53494997,0.03039576,98.21423257],[4.53495047,0.03039749,98.2153227],[4.53495098,0.03039922,98.21641229],[4.53495149,0.03040095,98.21750135],[4.534952,0.03040268,98.21858989],[4.5349525,0.03040441,98.21967793],[4.53495301,0.03040614,98.22076548],[4.53495352,0.03040787,98.22185257],[4.53495402,0.0304096,98.22293919],[4.53495453,0.03041133,98.22402538],[4.53495504,0.03041306,98.22511113],[4.53495554,0.03041479,98.22619648],[4.53495605,0.03041652,98.22728142],[4.53495656,0.03041826,98.22836598],[4.53495706,0.03041999,98.22945018],[4.53495757,0.03042172,98.23053402],[4.53495807,0.03042345,98.23161754],[4.53495858,0.03042518,98.23270073],[4.53495909,0.03042691,98.23378362],[4.53495959,0.03042864,98.23486623],[4.5349601,0.03043037,98.23594856],[4.5349606,0.0304321,98.23703064],[4.53496111,0.03043383,98.23811249],[4.53496161,0.03043556,98.23919411],[4.53496212,0.0304373,98.24027553],[4.53496262,0.03043903,98.24135676],[4.53496313,0.03044076,98.24243782],[4.53496363,0.03044249,98.24351872],[4.53496414,0.03044422,98.24459947],[4.53496464,0.03044595,98.2456801],[4.53496515,0.03044768,98.24676062],[4.53496565,0.03044941,98.24784105],[4.53496616,0.03045114,98.2489214],[4.53496666,0.03045288,98.25000168],[4.53496717,0.03045461,98.25108192],[4.53496767,0.03045634,98.25216213],[4.53496818,0.03045807,98.25324232],[4.53496868,0.0304598,98.25432251],[4.53496918,0.03046153,98.25540271],[4.53496969,0.03046326,98.25648295],[4.53497019,0.030465,98.25756323],[4.5349707,0.03046673,98.25864358],[4.5349712,0.03046846,98.259724],[4.5349717,0.03047019,98.26080452],[4.53497221,0.03047192,98.26188516],[4.53497271,0.03047365,98.26296594],[4.53497321,0.03047539,98.26404686],[4.53497371,0.03047712,98.26512795],[4.53497422,0.03047885,98.26620923],[4.53497472,0.03048058,98.26729071],[4.53497522,0.03048231,98.26837242],[4.53497573,0.03048405,98.26945437],[4.53497623,0.03048578,98.27053657],[4.53497673,0.03048751,98.27161905],[4.53497723,0.03048924,98.27270182],[4.53497774,0.03049097,98.27378489],[4.53497824,0.03049271,98.2748683],[4.53497874,0.03049444,98.27595205],[4.53497924,0.03049617,98.27703616],[4.53497974,0.0304979,98.27812066],[4.53498025,0.03049963,98.27920554],[4.53498075,0.03050137,98.28029084],[4.53498125,0.0305031,98.28137657],[4.53498175,0.03050483,98.28246275],[4.53498225,0.03050656,98.2835494],[4.53498275,0.03050829,98.28463652],[4.53498325,0.03051003,98.28572416],[4.53498376,0.03051176,98.28681233],[4.53498426,0.03051349,98.28790107],[4.53498476,0.03051522,98.28899041],[4.53498526,0.03051696,98.29008037],[4.53498576,0.03051869,98.291171],[4.53498626,0.03052042,98.2922623],[4.53498676,0.03052215,98.29335433],[4.53498726,0.03052389,98.29444709],[4.53498776,0.03052562,98.29554063],[4.53498827,0.03052735,98.29663497],[4.53498877,0.03052908,98.29773014],[4.53498927,0.03053081,98.29882617],[4.53498977,0.03053255,98.29992309],[4.53499027,0.03053428,98.30102093],[4.53499077,0.03053601,98.3021197],[4.53499127,0.03053774,98.30321945],[4.53499177,0.03053948,98.3043202],[4.53499227,0.03054121,98.30542198],[4.53499277,0.03054294,98.30652481],[4.53499328,0.03054467,98.30762864],[4.53499378,0.0305464,98.30873346],[4.53499428,0.03054813,98.30983922],[4.53499478,0.03054986,98.31094588],[4.53499528,0.0305516,98.31205341],[4.53499578,0.03055333,98.31316177],[4.53499628,0.03055506,98.31427092],[4.53499679,0.03055679,98.31538083],[4.53499729,0.03055852,98.31649146],[4.53499779,0.03056026,98.31760278],[4.53499829,0.03056199,98.31871475],[4.5349988,0.03056372,98.31982733],[4.5349993,0.03056545,98.3209405],[4.5349998,0.03056718,98.32205421],[4.5350003,0.03056892,98.32316843],[4.5350008,0.03057065,98.32428314],[4.53500131,0.03057238,98.32539828],[4.53500181,0.03057411,98.32651384],[4.53500231,0.03057584,98.32762977],[4.53500281,0.03057758,98.32874604],[4.53500332,0.03057931,98.32986262],[4.53500382,0.03058104,98.33097948],[4.53500432,0.03058277,98.33209658],[4.53500482,0.0305845,98.33321389],[4.53500533,0.03058624,98.33433138],[4.53500583,0.03058797,98.33544902],[4.53500633,0.0305897,98.33656677],[4.53500683,0.03059143,98.3376846],[4.53500734,0.03059316,98.33880248],[4.53500784,0.0305949,98.33992038],[4.53500834,0.03059663,98.34103826],[4.53500884,0.03059836,98.3421561],[4.53500935,0.03060009,98.34327386],[4.53500985,0.03060182,98.34439151],[4.53501035,0.03060356,98.34550902],[4.53501085,0.03060529,98.34662636],[4.53501135,0.03060702,98.3477435],[4.53501186,0.03060875,98.34886041],[4.53501236,0.03061049,98.34997705],[4.53501286,0.03061222,98.3510934],[4.53501336,0.03061395,98.35220943],[4.53501386,0.03061568,98.35332513],[4.53501436,0.03061741,98.35444055],[4.53501487,0.03061915,98.35555572],[4.53501537,0.03062088,98.35667067],[4.53501587,0.03062261,98.35778544],[4.53501637,0.03062434,98.35890006],[4.53501687,0.03062607,98.36001457],[4.53501737,0.03062781,98.361129],[4.53501788,0.03062954,98.36224338],[4.53501838,0.03063127,98.36335775],[4.53501888,0.030633,98.36447215],[4.53501938,0.03063474,98.3655866],[4.53501988,0.03063647,98.36670114],[4.53502039,0.0306382,98.36781581],[4.53502089,0.03063993,98.36893061],[4.53502139,0.03064166,98.37004558],[4.53502189,0.0306434,98.37116073],[4.5350224,0.03064513,98.37227607],[4.5350229,0.03064686,98.37339163],[4.5350234,0.03064859,98.37450741],[4.5350239,0.03065032,98.37562345],[4.53502441,0.03065205,98.37673975],[4.53502491,0.03065379,98.37785634],[4.53502541,0.03065552,98.37897323],[4.53502592,0.03065725,98.38009042],[4.53502642,0.03065898,98.38120795],[4.53502692,0.03066071,98.38232583],[4.53502743,0.03066245,98.38344407],[4.53502793,0.03066418,98.38456268],[4.53502843,0.03066591,98.38568168],[4.53502894,0.03066764,98.38680109],[4.53502944,0.03066937,98.38792093],[4.53502994,0.0306711,98.3890412],[4.53503045,0.03067284,98.39016192],[4.53503095,0.03067457,98.39128311],[4.53503145,0.0306763,98.39240478],[4.53503196,0.03067803,98.39352695],[4.53503246,0.03067976,98.39464963],[4.53503296,0.03068149,98.39577283],[4.53503347,0.03068323,98.39689658],[4.53503397,0.03068496,98.39802088],[4.53503448,0.03068669,98.39914575],[4.53503498,0.03068842,98.40027121],[4.53503548,0.03069015,98.40139726],[4.53503599,0.03069188,98.40252393],[4.53503649,0.03069361,98.40365123],[4.535037,0.03069535,98.40477917],[4.5350375,0.03069708,98.40590777],[4.535038,0.03069881,98.40703704],[4.53503851,0.03070054,98.408167],[4.53503901,0.03070227,98.40929765],[4.53503952,0.030704,98.41042902],[4.53504002,0.03070573,98.41156113],[4.53504052,0.03070747,98.41269397],[4.53504103,0.0307092,98.41382757],[4.53504153,0.03071093,98.41496195],[4.53504204,0.03071266,98.41609711],[4.53504254,0.03071439,98.41723307],[4.53504304,0.03071612,98.41836985],[4.53504355,0.03071786,98.41950745],[4.53504405,0.03071959,98.4206459],[4.53504456,0.03072132,98.42178521],[4.53504506,0.03072305,98.42292539],[4.53504556,0.03072478,98.42406646],[4.53504607,0.03072651,98.42520842],[4.53504657,0.03072824,98.42635131],[4.53504708,0.03072998,98.42749512],[4.53504758,0.03073171,98.42863987],[4.53504808,0.03073344,98.42978559],[4.53504859,0.03073517,98.43093227],[4.53504909,0.0307369,98.43207995],[4.5350496,0.03073863,98.4332286],[4.5350501,0.03074036,98.43437822],[4.53505061,0.0307421,98.43552878],[4.53505111,0.03074383,98.43668027],[4.53505162,0.03074556,98.43783266],[4.53505212,0.03074729,98.43898593],[4.53505263,0.03074902,98.44014007],[4.53505313,0.03075075,98.44129505],[4.53505364,0.03075248,98.44245086],[4.53505414,0.03075421,98.44360746],[4.53505465,0.03075595,98.44476486],[4.53505515,0.03075768,98.44592302],[4.53505566,0.03075941,98.44708192],[4.53505616,0.03076114,98.44824155],[4.53505667,0.03076287,98.44940188],[4.53505717,0.0307646,98.4505629],[4.53505768,0.03076633,98.45172459],[4.53505818,0.03076806,98.45288692],[4.53505869,0.03076979,98.45404988],[4.5350592,0.03077152,98.45521345],[4.5350597,0.03077326,98.45637761],[4.53506021,0.03077499,98.45754234],[4.53506071,0.03077672,98.45870762],[4.53506122,0.03077845,98.45987343],[4.53506172,0.03078018,98.46103974],[4.53506223,0.03078191,98.46220656],[4.53506273,0.03078364,98.46337384],[4.53506324,0.03078537,98.46454158],[4.53506374,0.0307871,98.46570975],[4.53506425,0.03078884,98.46687833],[4.53506476,0.03079057,98.46804732],[4.53506526,0.0307923,98.46921667],[4.53506577,0.03079403,98.47038639],[4.53506627,0.03079576,98.47155644],[4.53506678,0.03079749,98.4727268],[4.53506728,0.03079922,98.47389746],[4.53506779,0.03080095,98.47506839],[4.53506829,0.03080268,98.47623956],[4.5350688,0.03080442,98.47741097],[4.5350693,0.03080615,98.47858257],[4.53506981,0.03080788,98.47975436],[4.53507031,0.03080961,98.48092631],[4.53507081,0.03081134,98.4820984],[4.53507132,0.03081307,98.48327064],[4.53507182,0.0308148,98.48444302],[4.53507233,0.03081654,98.48561556],[4.53507283,0.03081827,98.48678826],[4.53507334,0.03082,98.48796112],[4.53507384,0.03082173,98.48913416],[4.53507434,0.03082346,98.49030737],[4.53507485,0.03082519,98.49148076],[4.53507535,0.03082692,98.49265434],[4.53507585,0.03082866,98.49382811],[4.53507636,0.03083039,98.49500208],[4.53507686,0.03083212,98.49617625],[4.53507736,0.03083385,98.49735064],[4.53507787,0.03083558,98.49852524],[4.53507837,0.03083732,98.49970005],[4.53507887,0.03083905,98.5008751],[4.53507938,0.03084078,98.50205037],[4.53507988,0.03084251,98.50322588],[4.53508038,0.03084424,98.50440163],[4.53508088,0.03084597,98.50557763],[4.53508138,0.03084771,98.50675389],[4.53508189,0.03084944,98.5079304],[4.53508239,0.03085117,98.50910717],[4.53508289,0.0308529,98.51028421],[4.53508339,0.03085464,98.51146153],[4.53508389,0.03085637,98.51263913],[4.53508439,0.0308581,98.51381701],[4.53508489,0.03085983,98.51499519],[4.53508539,0.03086157,98.51617366],[4.53508589,0.0308633,98.51735243],[4.53508639,0.03086503,98.51853152],[4.53508689,0.03086676,98.51971091],[4.53508739,0.0308685,98.52089062],[4.53508789,0.03087023,98.52207066],[4.53508839,0.03087196,98.52325102],[4.53508889,0.03087369,98.52443173],[4.53508939,0.03087543,98.52561277],[4.53508989,0.03087716,98.5267942],[4.53509039,0.03087889,98.52797606],[4.53509089,0.03088063,98.52915841],[4.53509139,0.03088236,98.5303413],[4.53509188,0.03088409,98.53152478],[4.53509238,0.03088583,98.53270891],[4.53509288,0.03088756,98.53389374],[4.53509338,0.03088929,98.53507933],[4.53509388,0.03089103,98.53626572],[4.53509437,0.03089276,98.53745296],[4.53509487,0.03089449,98.53864108],[4.53509537,0.03089623,98.53983004],[4.53509587,0.03089796,98.54101981],[4.53509636,0.03089969,98.54221035],[4.53509686,0.03090143,98.54340163],[4.53509736,0.03090316,98.54459363],[4.53509786,0.03090489,98.54578629],[4.53509836,0.03090663,98.54697961],[4.53509885,0.03090836,98.54817353],[4.53509935,0.03091009,98.54936803],[4.53509985,0.03091183,98.55056307],[4.53510035,0.03091356,98.55175863],[4.53510085,0.03091529,98.55295467],[4.53510134,0.03091703,98.55415115],[4.53510184,0.03091876,98.55534804],[4.53510234,0.03092049,98.55654531],[4.53510284,0.03092223,98.55774293],[4.53510334,0.03092396,98.55894085],[4.53510384,0.03092569,98.56013906],[4.53510433,0.03092742,98.56133751],[4.53510483,0.03092916,98.56253617],[4.53510533,0.03093089,98.563735],[4.53510583,0.03093262,98.56493398],[4.53510633,0.03093436,98.56613307],[4.53510683,0.03093609,98.56733223],[4.53510733,0.03093782,98.56853143],[4.53510783,0.03093955,98.56973064],[4.53510833,0.03094129,98.57092982],[4.53510883,0.03094302,98.57212893],[4.53510933,0.03094475,98.57332794],[4.53510983,0.03094648,98.57452683],[4.53511034,0.03094822,98.57572554],[4.53511084,0.03094995,98.57692405],[4.53511134,0.03095168,98.57812233],[4.53511184,0.03095341,98.57932032],[4.53511234,0.03095514,98.58051801],[4.53511284,0.03095688,98.58171536],[4.53511335,0.03095861,98.58291233],[4.53511385,0.03096034,98.58410888],[4.53511435,0.03096207,98.58530497],[4.53511485,0.0309638,98.58650052],[4.53511536,0.03096554,98.58769543],[4.53511586,0.03096727,98.58888972],[4.53511636,0.030969,98.59008342],[4.53511687,0.03097073,98.59127657],[4.53511737,0.03097246,98.5924692],[4.53511787,0.0309742,98.59366134],[4.53511837,0.03097593,98.59485304],[4.53511888,0.03097766,98.59604433],[4.53511938,0.03097939,98.59723523],[4.53511988,0.03098112,98.5984258],[4.53512039,0.03098285,98.59961606],[4.53512089,0.03098459,98.60080605],[4.53512139,0.03098632,98.6019958],[4.5351219,0.03098805,98.60318536],[4.5351224,0.03098978,98.60437476],[4.5351229,0.03099151,98.60556402],[4.53512341,0.03099325,98.60675321],[4.53512391,0.03099498,98.60794233],[4.53512441,0.03099671,98.60913144],[4.53512492,0.03099844,98.61032058],[4.53512542,0.03100017,98.61150977],[4.53512592,0.0310019,98.61269905],[4.53512643,0.03100363,98.61388847],[4.53512693,0.03100537,98.61507805],[4.53512743,0.0310071,98.61626784],[4.53512794,0.03100883,98.61745788],[4.53512844,0.03101056,98.6186482],[4.53512895,0.03101229,98.61983883],[4.53512945,0.03101402,98.62102983],[4.53512996,0.03101575,98.62222122],[4.53513046,0.03101749,98.62341304],[4.53513097,0.03101922,98.62460534],[4.53513147,0.03102095,98.62579815],[4.53513198,0.03102268,98.62699151],[4.53513248,0.03102441,98.62818545],[4.53513299,0.03102614,98.62938003],[4.53513349,0.03102787,98.63057527],[4.535134,0.0310296,98.63177122],[4.5351345,0.03103134,98.63296791],[4.53513501,0.03103307,98.63416539],[4.53513551,0.0310348,98.63536369],[4.53513602,0.03103653,98.63656286],[4.53513653,0.03103826,98.63776293],[4.53513703,0.03103999,98.63896395],[4.53513754,0.03104172,98.64016592],[4.53513805,0.03104345,98.64136882],[4.53513855,0.03104518,98.64257263],[4.53513906,0.03104691,98.64377733],[4.53513957,0.03104864,98.64498289],[4.53514008,0.03105037,98.64618928],[4.53514058,0.0310521,98.64739649],[4.53514109,0.03105383,98.64860449],[4.5351416,0.03105556,98.64981325],[4.5351421,0.0310573,98.65102276],[4.53514261,0.03105903,98.65223299],[4.53514312,0.03106076,98.65344391],[4.53514363,0.03106249,98.6546555],[4.53514413,0.03106422,98.65586774],[4.53514464,0.03106595,98.6570806],[4.53514514,0.03106768,98.65829406],[4.53514565,0.03106941,98.65950809],[4.53514616,0.03107114,98.66072267],[4.53514666,0.03107287,98.66193777],[4.53514717,0.0310746,98.66315338],[4.53514767,0.03107633,98.66436945],[4.53514818,0.03107807,98.66558598],[4.53514868,0.0310798,98.66680293],[4.53514919,0.03108153,98.66802028],[4.53514969,0.03108326,98.66923801],[4.53515019,0.03108499,98.67045615],[4.5351507,0.03108672,98.67167478],[4.5351512,0.03108846,98.67289394],[4.5351517,0.03109019,98.67411371],[4.5351522,0.03109192,98.67533414],[4.53515271,0.03109365,98.67655531],[4.53515321,0.03109538,98.67777727],[4.53515371,0.03109712,98.67900009],[4.53515421,0.03109885,98.68022381],[4.53515471,0.03110058,98.68144841],[4.53515521,0.03110231,98.68267384],[4.53515571,0.03110405,98.68390006],[4.53515621,0.03110578,98.68512703],[4.53515671,0.03110751,98.68635468],[4.53515722,0.03110924,98.68758299],[4.53515772,0.03111098,98.68881189],[4.53515822,0.03111271,98.69004135],[4.53515872,0.03111444,98.69127132],[4.53515922,0.03111617,98.69250175],[4.53515972,0.03111791,98.6937326],[4.53516022,0.03111964,98.69496381],[4.53516071,0.03112137,98.69619534],[4.53516121,0.0311231,98.69742714],[4.53516171,0.03112484,98.69865917],[4.53516221,0.03112657,98.69989137],[4.53516271,0.0311283,98.7011237],[4.53516321,0.03113004,98.70235611],[4.53516371,0.03113177,98.70358854],[4.53516421,0.0311335,98.70482096],[4.5351647,0.03113524,98.70605331],[4.5351652,0.03113697,98.70728554],[4.5351657,0.0311387,98.7085176],[4.5351662,0.03114044,98.70974947],[4.5351667,0.03114217,98.71098115],[4.53516719,0.0311439,98.71221262],[4.53516769,0.03114564,98.71344389],[4.53516819,0.03114737,98.71467496],[4.53516868,0.0311491,98.71590581],[4.53516918,0.03115084,98.71713646],[4.53516968,0.03115257,98.71836689],[4.53517017,0.0311543,98.71959709],[4.53517067,0.03115604,98.72082708],[4.53517117,0.03115777,98.72205684],[4.53517166,0.03115951,98.72328638],[4.53517216,0.03116124,98.72451568],[4.53517266,0.03116297,98.72574474],[4.53517315,0.03116471,98.72697357],[4.53517365,0.03116644,98.72820209],[4.53517414,0.03116817,98.72943023],[4.53517464,0.03116991,98.73065792],[4.53517514,0.03117164,98.73188506],[4.53517563,0.03117338,98.73311158],[4.53517613,0.03117511,98.7343374],[4.53517663,0.03117684,98.73556243],[4.53517712,0.03117858,98.73678659],[4.53517762,0.03118031,98.73800981],[4.53517812,0.03118204,98.73923201],[4.53517861,0.03118378,98.74045321],[4.53517911,0.03118551,98.74167343],[4.5351796,0.03118725,98.74289272],[4.5351801,0.03118898,98.7441111],[4.5351806,0.03119071,98.74532859],[4.53518109,0.03119245,98.74654524],[4.53518159,0.03119418,98.74776108],[4.53518208,0.03119592,98.74897613],[4.53518258,0.03119765,98.75019042],[4.53518308,0.03119938,98.75140399],[4.53518357,0.03120112,98.75261688],[4.53518407,0.03120285,98.7538291],[4.53518457,0.03120458,98.75504071],[4.53518506,0.03120632,98.75625171],[4.53518556,0.03120805,98.75746216],[4.53518606,0.03120978,98.75867208],[4.53518656,0.03121152,98.75988151],[4.53518706,0.03121325,98.76109047],[4.53518756,0.03121498,98.762299],[4.53518806,0.03121672,98.76350714],[4.53518856,0.03121845,98.76471491],[4.53518905,0.03122018,98.76592236],[4.53518955,0.03122191,98.76712951],[4.53519005,0.03122365,98.7683364],[4.53519055,0.03122538,98.76954306],[4.53519105,0.03122711,98.77074952],[4.53519155,0.03122884,98.77195583],[4.53519205,0.03123058,98.77316201],[4.53519255,0.03123231,98.7743681],[4.53519305,0.03123404,98.77557414],[4.53519356,0.03123577,98.77678015],[4.53519406,0.03123751,98.77798618],[4.53519456,0.03123924,98.77919225],[4.53519506,0.03124097,98.78039841],[4.53519556,0.0312427,98.78160469],[4.53519606,0.03124444,98.78281112],[4.53519656,0.03124617,98.78401774],[4.53519706,0.0312479,98.78522459],[4.53519756,0.03124964,98.7864317],[4.53519806,0.03125137,98.78763911],[4.53519856,0.0312531,98.78884685],[4.53519906,0.03125483,98.79005496],[4.53519956,0.03125657,98.79126348],[4.53520006,0.0312583,98.79247245],[4.53520056,0.03126003,98.79368189],[4.53520105,0.03126177,98.79489185],[4.53520155,0.0312635,98.79610237],[4.53520205,0.03126523,98.79731354],[4.53520255,0.03126696,98.79852543],[4.53520305,0.0312687,98.79973813],[4.53520355,0.03127043,98.8009517],[4.53520404,0.03127216,98.80216624],[4.53520454,0.0312739,98.80338181],[4.53520504,0.03127563,98.80459851],[4.53520554,0.03127736,98.80581641],[4.53520603,0.0312791,98.8070356],[4.53520653,0.03128083,98.80825615],[4.53520703,0.03128256,98.80947815],[4.53520752,0.0312843,98.81070167],[4.53520802,0.03128603,98.8119268],[4.53520852,0.03128777,98.81315363],[4.53520902,0.0312895,98.81438223],[4.53520952,0.03129123,98.81561269],[4.53521001,0.03129296,98.81684509],[4.53521051,0.0312947,98.81807949],[4.53521101,0.03129643,98.81931581],[4.53521151,0.03129816,98.82055396],[4.53521201,0.0312999,98.82179385],[4.53521251,0.03130163,98.82303536],[4.53521301,0.03130336,98.82427841],[4.53521351,0.0313051,98.8255229],[4.53521401,0.03130683,98.82676872],[4.53521451,0.03130856,98.82801577],[4.53521501,0.03131029,98.82926396],[4.53521551,0.03131203,98.83051318],[4.53521601,0.03131376,98.83176334],[4.53521651,0.03131549,98.83301433],[4.53521701,0.03131722,98.83426604],[4.53521751,0.03131896,98.83551838],[4.53521801,0.03132069,98.83677125],[4.53521851,0.03132242,98.83802454],[4.53521901,0.03132416,98.83927815],[4.5352195,0.03132589,98.84053197],[4.53522,0.03132762,98.8417859],[4.5352205,0.03132935,98.84303984],[4.535221,0.03133109,98.84429368],[4.5352215,0.03133282,98.84554732],[4.53522199,0.03133455,98.84680066],[4.53522249,0.03133629,98.84805358],[4.53522299,0.03133802,98.84930606],[4.53522348,0.03133976,98.85055812],[4.53522398,0.03134149,98.85180981],[4.53522448,0.03134322,98.85306117],[4.53522497,0.03134496,98.85431222],[4.53522547,0.03134669,98.85556302],[4.53522596,0.03134843,98.85681359],[4.53522646,0.03135016,98.85806397],[4.53522695,0.03135189,98.8593142],[4.53522744,0.03135363,98.86056432],[4.53522794,0.03135536,98.86181437],[4.53522843,0.0313571,98.86306438],[4.53522892,0.03135883,98.86431439],[4.53522942,0.03136057,98.86556445],[4.53522991,0.0313623,98.86681459],[4.5352304,0.03136404,98.86806485],[4.5352309,0.03136577,98.86931526],[4.53523139,0.03136751,98.87056587],[4.53523188,0.03136924,98.87181672],[4.53523238,0.03137097,98.87306784],[4.53523287,0.03137271,98.87431927],[4.53523336,0.03137444,98.87557106],[4.53523386,0.03137618,98.87682324],[4.53523435,0.03137791,98.87807585],[4.53523484,0.03137965,98.87932893],[4.53523534,0.03138138,98.88058252],[4.53523583,0.03138312,98.88183662],[4.53523632,0.03138485,98.88309126],[4.53523682,0.03138659,98.88434645],[4.53523731,0.03138832,98.8856022],[4.53523781,0.03139005,98.88685853],[4.5352383,0.03139179,98.88811545],[4.5352388,0.03139352,98.88937298],[4.53523929,0.03139526,98.89063114],[4.53523979,0.03139699,98.89188993],[4.53524028,0.03139873,98.89314937],[4.53524078,0.03140046,98.89440949],[4.53524127,0.03140219,98.89567028],[4.53524177,0.03140393,98.89693178],[4.53524227,0.03140566,98.89819398],[4.53524277,0.03140739,98.89945691],[4.53524326,0.03140913,98.9007204],[4.53524376,0.03141086,98.90198415],[4.53524426,0.03141259,98.90324784],[4.53524476,0.03141433,98.90451114],[4.53524526,0.03141606,98.90577373],[4.53524576,0.03141779,98.90703529],[4.53524626,0.03141952,98.90829549],[4.53524676,0.03142126,98.90955401],[4.53524725,0.03142299,98.91081052],[4.53524775,0.03142472,98.9120647],[4.53524825,0.03142646,98.91331622],[4.53524875,0.03142819,98.91456476],[4.53524925,0.03142992,98.91580998],[4.53524974,0.03143166,98.91705156],[4.53525024,0.03143339,98.91828918],[4.53525073,0.03143513,98.91952281],[4.53525123,0.03143686,98.92075269],[4.53525172,0.03143859,98.92197909],[4.53525221,0.03144033,98.92320227],[4.53525271,0.03144206,98.9244225],[4.5352532,0.0314438,98.92564004],[4.53525369,0.03144553,98.92685516],[4.53525418,0.03144727,98.92806811],[4.53525468,0.031449,98.92927918],[4.53525517,0.03145074,98.93048862],[4.53525566,0.03145247,98.9316967],[4.53525615,0.03145421,98.93290369],[4.53525664,0.03145594,98.93410986],[4.53525714,0.03145768,98.93531548],[4.53525763,0.03145941,98.93652081],[4.53525812,0.03146115,98.93772614],[4.53525862,0.03146288,98.93893173],[4.53525911,0.03146462,98.94013786],[4.5352596,0.03146635,98.9413448],[4.5352601,0.03146809,98.94255278],[4.53526059,0.03146982,98.94376181],[4.53526109,0.03147155,98.94497185],[4.53526159,0.03147329,98.94618287],[4.53526208,0.03147502,98.94739482],[4.53526258,0.03147675,98.94860766],[4.53526308,0.03147849,98.94982136],[4.53526358,0.03148022,98.95103588],[4.53526408,0.03148195,98.95225117],[4.53526458,0.03148369,98.95346719],[4.53526508,0.03148542,98.95468392],[4.53526558,0.03148715,98.9559013],[4.53526608,0.03148888,98.95711929],[4.53526658,0.03149062,98.95833786],[4.53526708,0.03149235,98.95955697],[4.53526758,0.03149408,98.96077657],[4.53526808,0.03149581,98.96199663],[4.53526858,0.03149755,98.96321711],[4.53526907,0.03149928,98.96443795],[4.53526957,0.03150101,98.96565914],[4.53527007,0.03150274,98.96688061],[4.53527057,0.03150447,98.96810234],[4.53527107,0.03150621,98.96932428],[4.53527157,0.03150794,98.97054639],[4.53527207,0.03150967,98.97176864],[4.53527257,0.03151141,98.97299097],[4.53527307,0.03151314,98.97421335],[4.53527357,0.03151487,98.97543574],[4.53527407,0.03151661,98.97665813],[4.53527457,0.03151834,98.97788051],[4.53527506,0.03152007,98.97910289],[4.53527556,0.03152181,98.98032526],[4.53527606,0.03152354,98.98154762],[4.53527656,0.03152527,98.98276999],[4.53527705,0.03152701,98.98399236],[4.53527755,0.03152874,98.98521473],[4.53527804,0.03153047,98.9864371],[4.53527854,0.03153221,98.98765946],[4.53527904,0.03153394,98.98888181],[4.53527953,0.03153568,98.99010416],[4.53528003,0.03153741,98.99132649],[4.53528052,0.03153914,98.99254881],[4.53528102,0.03154088,98.99377111],[4.53528151,0.03154261,98.99499339],[4.53528201,0.03154435,98.99621565],[4.5352825,0.03154608,98.99743788],[4.535283,0.03154781,98.99866009],[4.53528349,0.03154955,98.99988226],[4.53528399,0.03155128,99.0011044],[4.53528448,0.03155302,99.00232651],[4.53528497,0.03155475,99.00354858],[4.53528547,0.03155649,99.00477061],[4.53528596,0.03155822,99.0059926],[4.53528645,0.03155996,99.00721454],[4.53528695,0.03156169,99.00843643],[4.53528744,0.03156343,99.00965828],[4.53528793,0.03156516,99.01088007],[4.53528843,0.03156689,99.0121018],[4.53528892,0.03156863,99.01332348],[4.53528941,0.03157036,99.0145451],[4.53528991,0.0315721,99.01576665],[4.5352904,0.03157383,99.01698814],[4.53529089,0.03157557,99.01820956],[4.53529138,0.0315773,99.01943091],[4.53529188,0.03157904,99.02065219],[4.53529237,0.03158077,99.02187339],[4.53529286,0.03158251,99.02309451],[4.53529335,0.03158424,99.02431555],[4.53529385,0.03158598,99.02553651],[4.53529434,0.03158771,99.02675738],[4.53529483,0.03158945,99.02797817],[4.53529532,0.03159118,99.02919886],[4.53529582,0.03159292,99.03041946],[4.53529631,0.03159465,99.03163997],[4.5352968,0.03159639,99.03286037],[4.53529729,0.03159812,99.03408068],[4.53529779,0.03159986,99.03530088],[4.53529828,0.03160159,99.03652097],[4.53529877,0.03160333,99.03774096],[4.53529926,0.03160506,99.03896084],[4.53529976,0.0316068,99.0401806],[4.53530025,0.03160853,99.04140025],[4.53530074,0.03161027,99.04261977],[4.53530123,0.031612,99.04383918],[4.53530173,0.03161374,99.04505846],[4.53530222,0.03161547,99.04627762],[4.53530271,0.03161721,99.04749664],[4.53530321,0.03161894,99.04871554],[4.5353037,0.03162067,99.0499343],[4.53530419,0.03162241,99.05115293],[4.53530469,0.03162414,99.05237141],[4.53530518,0.03162588,99.05358976],[4.53530567,0.03162761,99.05480796],[4.53530617,0.03162935,99.05602601],[4.53530666,0.03163108,99.05724392],[4.53530715,0.03163282,99.05846167],[4.53530765,0.03163455,99.05967925],[4.53530814,0.03163629,99.06089664],[4.53530863,0.03163802,99.06211384],[4.53530913,0.03163976,99.06333082],[4.53530962,0.03164149,99.06454757],[4.53531011,0.03164323,99.06576408],[4.5353106,0.03164496,99.06698033],[4.5353111,0.03164669,99.06819634],[4.53531159,0.03164843,99.06941216],[4.53531208,0.03165016,99.07062783],[4.53531258,0.0316519,99.0718434],[4.53531307,0.03165363,99.07305892],[4.53531356,0.03165537,99.07427445],[4.53531405,0.0316571,99.07549002],[4.53531455,0.03165884,99.07670569],[4.53531504,0.03166057,99.0779215],[4.53531553,0.03166231,99.0791375],[4.53531602,0.03166404,99.08035375],[4.53531651,0.03166578,99.08157029],[4.53531701,0.03166751,99.08278716],[4.5353175,0.03166925,99.08400442],[4.53531799,0.03167098,99.08522211],[4.53531848,0.03167272,99.08644029],[4.53531897,0.03167445,99.08765899],[4.53531947,0.03167619,99.08887828],[4.53531996,0.03167792,99.09009819],[4.53532045,0.03167966,99.09131877],[4.53532094,0.03168139,99.09254008],[4.53532143,0.03168313,99.09376216],[4.53532193,0.03168486,99.09498506],[4.53532242,0.0316866,99.09620883],[4.53532291,0.03168833,99.09743351],[4.5353234,0.03169007,99.09865916],[4.53532389,0.0316918,99.09988582],[4.53532439,0.03169354,99.10111353],[4.53532488,0.03169527,99.10234236],[4.53532537,0.03169701,99.10357233],[4.53532586,0.03169874,99.10480352],[4.53532635,0.03170048,99.10603595],[4.53532685,0.03170221,99.10726968],[4.53532734,0.03170395,99.10850475],[4.53532783,0.03170568,99.10974121],[4.53532832,0.03170742,99.11097901],[4.53532882,0.03170915,99.11221812],[4.53532931,0.03171089,99.11345849],[4.5353298,0.03171262,99.11470007],[4.53533029,0.03171436,99.11594282],[4.53533079,0.03171609,99.11718669],[4.53533128,0.03171783,99.11843163],[4.53533177,0.03171956,99.11967761],[4.53533226,0.0317213,99.12092457],[4.53533276,0.03172303,99.12217248],[4.53533325,0.03172477,99.12342128],[4.53533374,0.0317265,99.12467093],[4.53533424,0.03172824,99.12592138],[4.53533473,0.03172997,99.1271726],[4.53533522,0.03173171,99.12842452],[4.53533571,0.03173344,99.12967712],[4.53533621,0.03173518,99.13093034],[4.5353367,0.03173691,99.13218414],[4.53533719,0.03173865,99.13343847],[4.53533768,0.03174038,99.13469329],[4.53533818,0.03174212,99.13594855],[4.53533867,0.03174385,99.13720421],[4.53533916,0.03174559,99.13846023],[4.53533965,0.03174732,99.13971654],[4.53534015,0.03174906,99.14097312],[4.53534064,0.03175079,99.14222992],[4.53534113,0.03175253,99.14348689],[4.53534162,0.03175426,99.14474398],[4.53534212,0.031756,99.14600116],[4.53534261,0.03175773,99.14725837],[4.5353431,0.03175947,99.14851558],[4.53534359,0.0317612,99.14977273],[4.53534409,0.03176293,99.15102978],[4.53534458,0.03176467,99.15228668],[4.53534507,0.0317664,99.1535434],[4.53534556,0.03176814,99.15479989],[4.53534606,0.03176987,99.1560561],[4.53534655,0.03177161,99.15731198],[4.53534704,0.03177334,99.15856749],[4.53534753,0.03177508,99.1598226],[4.53534803,0.03177681,99.16107724],[4.53534852,0.03177855,99.16233139],[4.53534901,0.03178028,99.16358503],[4.5353495,0.03178202,99.16483814],[4.53534999,0.03178375,99.16609073],[4.53535049,0.03178549,99.16734277],[4.53535098,0.03178722,99.16859428],[4.53535147,0.03178896,99.16984524],[4.53535196,0.03179069,99.17109566],[4.53535246,0.03179243,99.17234553],[4.53535295,0.03179416,99.17359485],[4.53535344,0.0317959,99.17484363],[4.53535393,0.03179763,99.17609185],[4.53535442,0.03179937,99.17733952],[4.53535492,0.0318011,99.17858664],[4.53535541,0.03180284,99.1798332],[4.5353559,0.03180457,99.18107921],[4.53535639,0.03180631,99.18232466],[4.53535689,0.03180804,99.18356955],[4.53535738,0.03180978,99.18481388],[4.53535787,0.03181151,99.18605765],[4.53535836,0.03181325,99.18730086],[4.53535885,0.03181498,99.1885435],[4.53535935,0.03181672,99.18978557],[4.53535984,0.03181845,99.19102708],[4.53536033,0.03182019,99.19226802],[4.53536082,0.03182192,99.19350839],[4.53536131,0.03182366,99.19474819],[4.53536181,0.03182539,99.19598741],[4.5353623,0.03182713,99.19722606],[4.53536279,0.03182886,99.19846414],[4.53536328,0.0318306,99.19970164],[4.53536377,0.03183233,99.20093856],[4.53536426,0.03183407,99.2021749],[4.53536476,0.03183581,99.20341066],[4.53536525,0.03183754,99.20464583],[4.53536574,0.03183928,99.20588043],[4.53536623,0.03184101,99.20711443],[4.53536672,0.03184275,99.20834786],[4.53536721,0.03184448,99.20958069],[4.5353677,0.03184622,99.21081294],[4.53536819,0.03184795,99.21204459],[4.53536868,0.03184969,99.21327565],[4.53536917,0.03185142,99.21450612],[4.53536966,0.03185316,99.215736],[4.53537015,0.0318549,99.21696527],[4.53537064,0.03185663,99.21819395],[4.53537113,0.03185837,99.21942204],[4.53537162,0.0318601,99.22064952],[4.53537211,0.03186184,99.2218764],[4.5353726,0.03186357,99.22310268],[4.53537309,0.03186531,99.22432835],[4.53537358,0.03186705,99.22555342],[4.53537407,0.03186878,99.22677788],[4.53537456,0.03187052,99.22800174],[4.53537504,0.03187225,99.22922498],[4.53537553,0.03187399,99.23044762],[4.53537602,0.03187573,99.23166964],[4.53537651,0.03187746,99.23289104],[4.535377,0.0318792,99.23411184],[4.53537748,0.03188093,99.23533201],[4.53537797,0.03188267,99.23655157],[4.53537846,0.03188441,99.23777051],[4.53537895,0.03188614,99.23898883],[4.53537943,0.03188788,99.24020653],[4.53537992,0.03188962,99.2414236],[4.53538041,0.03189135,99.24264005],[4.53538089,0.03189309,99.24385588],[4.53538138,0.03189483,99.24507108],[4.53538186,0.03189656,99.24628565],[4.53538235,0.0318983,99.24749958],[4.53538284,0.03190004,99.24871289],[4.53538332,0.03190177,99.24992557],[4.53538381,0.03190351,99.25113761],[4.53538429,0.03190525,99.25234901],[4.53538478,0.03190698,99.25355978],[4.53538527,0.03190872,99.25476989],[4.53538575,0.03191046,99.25597936],[4.53538624,0.03191219,99.25718817],[4.53538672,0.03191393,99.25839633],[4.53538721,0.03191567,99.25960382],[4.53538769,0.03191741,99.26081064],[4.53538818,0.03191914,99.26201679],[4.53538866,0.03192088,99.26322226],[4.53538915,0.03192262,99.26442705],[4.53538963,0.03192435,99.26563115],[4.53539012,0.03192609,99.26683456],[4.53539061,0.03192783,99.26803728],[4.53539109,0.03192956,99.2692393],[4.53539158,0.0319313,99.27044061],[4.53539206,0.03193304,99.27164122],[4.53539255,0.03193478,99.27284111],[4.53539303,0.03193651,99.27404028],[4.53539352,0.03193825,99.27523873],[4.535394,0.03193999,99.27643646],[4.53539449,0.03194172,99.27763346],[4.53539498,0.03194346,99.27882971],[4.53539546,0.0319452,99.28002523],[4.53539595,0.03194693,99.28122001],[4.53539643,0.03194867,99.28241403],[4.53539692,0.03195041,99.28360729],[4.53539741,0.03195214,99.28479979],[4.53539789,0.03195388,99.28599151],[4.53539838,0.03195562,99.28718246],[4.53539887,0.03195735,99.28837261],[4.53539935,0.03195909,99.28956198],[4.53539984,0.03196083,99.29075054],[4.53540033,0.03196256,99.29193829],[4.53540081,0.0319643,99.29312523],[4.5354013,0.03196604,99.29431135],[4.53540179,0.03196777,99.29549664],[4.53540227,0.03196951,99.2966811],[4.53540276,0.03197124,99.29786471],[4.53540325,0.03197298,99.29904748],[4.53540374,0.03197472,99.30022938],[4.53540422,0.03197645,99.30141043],[4.53540471,0.03197819,99.3025906],[4.5354052,0.03197993,99.3037699],[4.53540569,0.03198166,99.30494831],[4.53540617,0.0319834,99.30612583],[4.53540666,0.03198514,99.30730246],[4.53540715,0.03198687,99.30847823],[4.53540763,0.03198861,99.30965315],[4.53540812,0.03199035,99.31082727],[4.53540861,0.03199208,99.31200061],[4.5354091,0.03199382,99.31317321],[4.53540958,0.03199555,99.3143451],[4.53541007,0.03199729,99.3155163],[4.53541056,0.03199903,99.31668685],[4.53541105,0.03200076,99.31785678],[4.53541154,0.0320025,99.31902611],[4.53541202,0.03200424,99.32019489],[4.53541251,0.03200597,99.32136314],[4.535413,0.03200771,99.32253088],[4.53541349,0.03200944,99.32369815],[4.53541398,0.03201118,99.32486498],[4.53541446,0.03201292,99.32603139],[4.53541495,0.03201465,99.32719741],[4.53541544,0.03201639,99.32836308],[4.53541593,0.03201812,99.32952841],[4.53541642,0.03201986,99.33069344],[4.53541691,0.0320216,99.3318582],[4.5354174,0.03202333,99.33302271],[4.53541789,0.03202507,99.334187],[4.53541838,0.0320268,99.3353511],[4.53541887,0.03202854,99.33651504],[4.53541935,0.03203028,99.33767885],[4.53541984,0.03203201,99.33884256],[4.53542034,0.03203375,99.34000619],[4.53542083,0.03203548,99.34116977],[4.53542132,0.03203722,99.34233333],[4.53542181,0.03203895,99.34349691],[4.5354223,0.03204069,99.34466052],[4.53542279,0.03204242,99.34582419],[4.53542328,0.03204416,99.34698797],[4.53542377,0.03204589,99.34815183],[4.53542426,0.03204763,99.34931577],[4.53542476,0.03204936,99.35047974],[4.53542525,0.0320511,99.35164373],[4.53542574,0.03205283,99.35280771],[4.53542623,0.03205457,99.35397164],[4.53542673,0.0320563,99.35513551],[4.53542722,0.03205804,99.35629928],[4.53542771,0.03205977,99.35746293],[4.5354282,0.03206151,99.35862643],[4.5354287,0.03206324,99.35978975],[4.53542919,0.03206498,99.36095286],[4.53542968,0.03206671,99.36211575],[4.53543018,0.03206845,99.36327837],[4.53543067,0.03207018,99.36444071],[4.53543117,0.03207192,99.36560273],[4.53543166,0.03207365,99.36676441],[4.53543215,0.03207539,99.36792572],[4.53543265,0.03207712,99.36908664],[4.53543314,0.03207885,99.37024713],[4.53543363,0.03208059,99.37140717],[4.53543413,0.03208232,99.37256673],[4.53543462,0.03208406,99.37372578],[4.53543511,0.03208579,99.3748843],[4.53543561,0.03208753,99.37604227],[4.5354361,0.03208926,99.37719964],[4.53543659,0.032091,99.3783564],[4.53543709,0.03209273,99.37951251],[4.53543758,0.03209447,99.38066795],[4.53543807,0.0320962,99.3818227],[4.53543857,0.03209794,99.38297672],[4.53543906,0.03209967,99.38412995],[4.53543955,0.03210141,99.38528236],[4.53544005,0.03210314,99.3864339],[4.53544054,0.03210488,99.38758451],[4.53544103,0.03210661,99.38873415],[4.53544152,0.03210835,99.38988278],[4.53544201,0.03211008,99.39103034],[4.53544251,0.03211182,99.39217679],[4.535443,0.03211355,99.39332211],[4.53544349,0.03211529,99.3944663],[4.53544398,0.03211702,99.39560937],[4.53544447,0.03211876,99.39675134],[4.53544496,0.03212049,99.39789221],[4.53544545,0.03212223,99.39903199],[4.53544594,0.03212396,99.40017069],[4.53544643,0.0321257,99.40130831],[4.53544692,0.03212743,99.40244487],[4.53544741,0.03212917,99.40358037],[4.5354479,0.03213091,99.40471483],[4.53544839,0.03213264,99.40584824],[4.53544888,0.03213438,99.40698063],[4.53544937,0.03213611,99.40811199],[4.53544986,0.03213785,99.40924235],[4.53545035,0.03213959,99.41037169],[4.53545084,0.03214132,99.41150005],[4.53545133,0.03214306,99.41262741],[4.53545182,0.03214479,99.4137538],[4.53545231,0.03214653,99.41487922],[4.53545279,0.03214827,99.41600368],[4.53545328,0.03215,99.41712718],[4.53545377,0.03215174,99.41824975],[4.53545426,0.03215347,99.41937137],[4.53545475,0.03215521,99.42049208],[4.53545524,0.03215695,99.42161186],[4.53545572,0.03215868,99.42273074],[4.53545621,0.03216042,99.42384871],[4.5354567,0.03216215,99.4249658],[4.53545719,0.03216389,99.426082],[4.53545767,0.03216563,99.42719733],[4.53545816,0.03216736,99.4283118],[4.53545865,0.0321691,99.42942541],[4.53545914,0.03217084,99.43053817],[4.53545962,0.03217257,99.43165009],[4.53546011,0.03217431,99.43276119],[4.5354606,0.03217605,99.43387146],[4.53546109,0.03217778,99.43498093],[4.53546157,0.03217952,99.43608959],[4.53546206,0.03218126,99.43719745],[4.53546255,0.03218299,99.43830453],[4.53546304,0.03218473,99.43941084],[4.53546352,0.03218646,99.44051637],[4.53546401,0.0321882,99.44162115],[4.5354645,0.03218994,99.44272518],[4.53546498,0.03219167,99.44382847],[4.53546547,0.03219341,99.44493102],[4.53546596,0.03219515,99.44603284],[4.53546645,0.03219688,99.44713388],[4.53546693,0.03219862,99.4482341],[4.53546742,0.03220036,99.44933351],[4.53546791,0.03220209,99.45043209],[4.53546839,0.03220383,99.45152984],[4.53546888,0.03220557,99.45262674],[4.53546937,0.0322073,99.4537228],[4.53546986,0.03220904,99.454818],[4.53547034,0.03221077,99.45591233],[4.53547083,0.03221251,99.45700579],[4.53547132,0.03221425,99.45809838],[4.53547181,0.03221598,99.45919007],[4.53547229,0.03221772,99.46028088],[4.53547278,0.03221946,99.46137078],[4.53547327,0.03222119,99.46245977],[4.53547375,0.03222293,99.46354784],[4.53547424,0.03222467,99.46463499],[4.53547473,0.0322264,99.4657212],[4.53547521,0.03222814,99.46680648],[4.5354757,0.03222988,99.46789081],[4.53547619,0.03223161,99.46897418],[4.53547668,0.03223335,99.47005659],[4.53547716,0.03223509,99.47113803],[4.53547765,0.03223682,99.47221849],[4.53547814,0.03223856,99.47329796],[4.53547862,0.0322403,99.47437645],[4.53547911,0.03224203,99.47545393],[4.5354796,0.03224377,99.4765304],[4.53548008,0.03224551,99.47760586],[4.53548057,0.03224724,99.47868029],[4.53548106,0.03224898,99.47975369],[4.53548154,0.03225071,99.48082605],[4.53548203,0.03225245,99.48189737],[4.53548251,0.03225419,99.48296763],[4.535483,0.03225592,99.48403682],[4.53548349,0.03225766,99.48510495],[4.53548397,0.0322594,99.486172],[4.53548446,0.03226113,99.48723797],[4.53548495,0.03226287,99.48830284],[4.53548543,0.03226461,99.48936662],[4.53548592,0.03226634,99.49042928],[4.5354864,0.03226808,99.49149083],[4.53548689,0.03226982,99.49255125],[4.53548738,0.03227155,99.49361049],[4.53548786,0.03227329,99.49466848],[4.53548835,0.03227503,99.49572515],[4.53548883,0.03227677,99.49678046],[4.53548932,0.0322785,99.49783441],[4.5354898,0.03228024,99.49888702],[4.53549029,0.03228198,99.49993827],[4.53549077,0.03228371,99.50098818],[4.53549126,0.03228545,99.50203675],[4.53549174,0.03228719,99.50308398],[4.53549223,0.03228892,99.50412987],[4.53549271,0.03229066,99.50517444],[4.5354932,0.0322924,99.50621767],[4.53549368,0.03229414,99.50725959],[4.53549417,0.03229587,99.50830018],[4.53549465,0.03229761,99.50933945],[4.53549514,0.03229935,99.51037741],[4.53549562,0.03230109,99.51141405],[4.5354961,0.03230282,99.51244939],[4.53549659,0.03230456,99.51348343],[4.53549707,0.0323063,99.51451616],[4.53549756,0.03230804,99.5155476],[4.53549804,0.03230977,99.51657774],[4.53549852,0.03231151,99.5176066],[4.53549901,0.03231325,99.51863416],[4.53549949,0.03231499,99.51966045],[4.53549997,0.03231672,99.52068545],[4.53550046,0.03231846,99.52170918],[4.53550094,0.0323202,99.52273165],[4.53550142,0.03232194,99.52375289],[4.53550191,0.03232367,99.52477291],[4.53550239,0.03232541,99.52579175],[4.53550287,0.03232715,99.52680942],[4.53550335,0.03232889,99.52782595],[4.53550384,0.03233062,99.52884137],[4.53550432,0.03233236,99.52985569],[4.5355048,0.0323341,99.53086893],[4.53550529,0.03233584,99.53188113],[4.53550577,0.03233757,99.53289231],[4.53550625,0.03233931,99.53390248],[4.53550674,0.03234105,99.53491167],[4.53550722,0.03234279,99.53591992],[4.5355077,0.03234452,99.53692723],[4.53550819,0.03234626,99.53793361],[4.53550867,0.032348,99.53893903],[4.53550915,0.03234974,99.53994347],[4.53550964,0.03235147,99.5409469],[4.53551012,0.03235321,99.54194929],[4.53551061,0.03235495,99.54295063],[4.53551109,0.03235669,99.54395088],[4.53551157,0.03235842,99.54495003],[4.53551206,0.03236016,99.54594803],[4.53551254,0.0323619,99.54694488],[4.53551302,0.03236363,99.54794054],[4.53551351,0.03236537,99.54893498],[4.53551399,0.03236711,99.54992819],[4.53551448,0.03236885,99.55092013],[4.53551496,0.03237058,99.55191078],[4.53551544,0.03237232,99.55290012],[4.53551593,0.03237406,99.55388811],[4.53551641,0.0323758,99.55487473],[4.53551689,0.03237753,99.55585997],[4.53551738,0.03237927,99.55684378],[4.53551786,0.03238101,99.55782615],[4.53551834,0.03238275,99.55880704],[4.53551883,0.03238448,99.55978644],[4.53551931,0.03238622,99.56076432],[4.5355198,0.03238796,99.56174064],[4.53552028,0.0323897,99.56271539],[4.53552076,0.03239143,99.56368854],[4.53552125,0.03239317,99.56466007],[4.53552173,0.03239491,99.56562994],[4.53552221,0.03239664,99.56659813],[4.5355227,0.03239838,99.56756462],[4.53552318,0.03240012,99.56852938],[4.53552366,0.03240186,99.56949238],[4.53552415,0.03240359,99.57045359],[4.53552463,0.03240533,99.571413],[4.53552512,0.03240707,99.57237057],[4.5355256,0.03240881,99.57332628],[4.53552608,0.03241054,99.57428011],[4.53552657,0.03241228,99.57523202],[4.53552705,0.03241402,99.57618198],[4.53552753,0.03241576,99.57712999],[4.53552802,0.03241749,99.578076],[4.5355285,0.03241923,99.57901999],[4.53552899,0.03242097,99.57996194],[4.53552947,0.03242271,99.58090182],[4.53552995,0.03242444,99.5818396],[4.53553044,0.03242618,99.58277526],[4.53553092,0.03242792,99.58370876],[4.53553141,0.03242965,99.5846401],[4.53553189,0.03243139,99.58556923],[4.53553237,0.03243313,99.58649613],[4.53553286,0.03243487,99.58742078],[4.53553334,0.0324366,99.58834315],[4.53553383,0.03243834,99.58926321],[4.53553431,0.03244008,99.59018095],[4.53553479,0.03244181,99.59109633],[4.53553528,0.03244355,99.59200934],[4.53553576,0.03244529,99.59291993],[4.53553625,0.03244703,99.5938281],[4.53553673,0.03244876,99.59473381],[4.53553722,0.0324505,99.59563704],[4.5355377,0.03245224,99.59653777],[4.53553819,0.03245397,99.59743596],[4.53553867,0.03245571,99.59833159],[4.53553916,0.03245745,99.59922464],[4.53553964,0.03245919,99.60011509],[4.53554012,0.03246092,99.6010029],[4.53554061,0.03246266,99.60188805],[4.53554109,0.0324644,99.60277051],[4.53554158,0.03246613,99.60365027],[4.53554206,0.03246787,99.60452729],[4.53554255,0.03246961,99.60540156],[4.53554303,0.03247135,99.60627303],[4.53554351,0.03247308,99.6071417],[4.535544,0.03247482,99.60800753],[4.53554448,0.03247656,99.6088705],[4.53554496,0.0324783,99.60973058],[4.53554545,0.03248003,99.61058775],[4.53554593,0.03248177,99.61144201],[4.53554641,0.03248351,99.61229336],[4.53554689,0.03248525,99.61314184],[4.53554738,0.03248698,99.6139875],[4.53554786,0.03248872,99.61483038],[4.53554834,0.03249046,99.61567052],[4.53554882,0.0324922,99.61650796],[4.5355493,0.03249394,99.61734275],[4.53554978,0.03249567,99.61817492],[4.53555026,0.03249741,99.61900453],[4.53555074,0.03249915,99.6198316],[4.53555122,0.03250089,99.62065619],[4.5355517,0.03250263,99.62147834],[4.53555218,0.03250436,99.62229809],[4.53555266,0.0325061,99.62311548],[4.53555314,0.03250784,99.62393055],[4.53555362,0.03250958,99.62474335],[4.5355541,0.03251132,99.62555392],[4.53555458,0.03251306,99.6263623],[4.53555506,0.0325148,99.62716854],[4.53555554,0.03251653,99.62797267],[4.53555602,0.03251827,99.62877474],[4.5355565,0.03252001,99.6295748],[4.53555697,0.03252175,99.63037288],[4.53555745,0.03252349,99.63116902],[4.53555793,0.03252523,99.63196328],[4.53555841,0.03252697,99.63275568],[4.53555889,0.03252871,99.63354629],[4.53555936,0.03253044,99.63433513],[4.53555984,0.03253218,99.63512225],[4.53556032,0.03253392,99.6359077],[4.5355608,0.03253566,99.63669151],[4.53556128,0.0325374,99.63747373],[4.53556175,0.03253914,99.6382544],[4.53556223,0.03254088,99.63903356],[4.53556271,0.03254262,99.63981126],[4.53556319,0.03254436,99.64058755],[4.53556366,0.0325461,99.64136245],[4.53556414,0.03254783,99.64213602],[4.53556462,0.03254957,99.6429083],[4.53556509,0.03255131,99.64367933],[4.53556557,0.03255305,99.64444915],[4.53556605,0.03255479,99.64521781],[4.53556653,0.03255653,99.64598535],[4.535567,0.03255827,99.64675181],[4.53556748,0.03256001,99.64751723],[4.53556796,0.03256175,99.64828167],[4.53556844,0.03256349,99.64904512],[4.53556891,0.03256522,99.64980756],[4.53556939,0.03256696,99.65056899],[4.53556987,0.0325687,99.65132937],[4.53557035,0.03257044,99.65208871],[4.53557082,0.03257218,99.65284697],[4.5355713,0.03257392,99.65360415],[4.53557178,0.03257566,99.65436022],[4.53557226,0.0325774,99.65511518],[4.53557274,0.03257914,99.655869],[4.53557322,0.03258087,99.65662167],[4.53557369,0.03258261,99.65737318],[4.53557417,0.03258435,99.6581235],[4.53557465,0.03258609,99.65887263],[4.53557513,0.03258783,99.65962054],[4.53557561,0.03258957,99.66036722],[4.53557609,0.03259131,99.66111265],[4.53557657,0.03259304,99.66185682],[4.53557705,0.03259478,99.66259971],[4.53557753,0.03259652,99.66334131],[4.53557801,0.03259826,99.66408159],[4.53557849,0.0326,99.66482055],[4.53557897,0.03260174,99.66555816],[4.53557945,0.03260347,99.66629441],[4.53557993,0.03260521,99.66702929],[4.53558041,0.03260695,99.66776277],[4.53558089,0.03260869,99.66849484],[4.53558137,0.03261043,99.6692255],[4.53558185,0.03261217,99.6699547],[4.53558233,0.0326139,99.67068246],[4.53558281,0.03261564,99.67140874],[4.53558329,0.03261738,99.67213352],[4.53558377,0.03261912,99.67285681],[4.53558425,0.03262085,99.67357857],[4.53558474,0.03262259,99.67429879],[4.53558522,0.03262433,99.67501746],[4.5355857,0.03262607,99.67573456],[4.53558618,0.03262781,99.67645007],[4.53558666,0.03262954,99.67716398],[4.53558715,0.03263128,99.67787626],[4.53558763,0.03263302,99.67858692],[4.53558811,0.03263476,99.67929592],[4.5355886,0.03263649,99.68000325],[4.53558908,0.03263823,99.6807089],[4.53558956,0.03263997,99.68141285],[4.53559005,0.0326417,99.68211508],[4.53559053,0.03264344,99.68281557],[4.53559101,0.03264518,99.68351432],[4.5355915,0.03264692,99.6842113],[4.53559198,0.03264865,99.6849065],[4.53559247,0.03265039,99.68559991],[4.53559295,0.03265213,99.6862915],[4.53559344,0.03265386,99.68698125],[4.53559392,0.0326556,99.68766916],[4.5355944,0.03265734,99.68835521],[4.53559489,0.03265907,99.68903938],[4.53559537,0.03266081,99.68972165],[4.53559586,0.03266255,99.69040202],[4.53559634,0.03266429,99.69108045],[4.53559683,0.03266602,99.69175692],[4.53559731,0.03266776,99.6924314],[4.5355978,0.0326695,99.6931039],[4.53559829,0.03267123,99.69377441],[4.53559877,0.03267297,99.69444297],[4.53559926,0.03267471,99.69510958],[4.53559974,0.03267644,99.69577426],[4.53560023,0.03267818,99.69643704],[4.53560071,0.03267992,99.69709791],[4.5356012,0.03268165,99.69775691],[4.53560168,0.03268339,99.69841404],[4.53560217,0.03268513,99.69906933],[4.53560265,0.03268686,99.69972278],[4.53560313,0.0326886,99.70037442],[4.53560362,0.03269034,99.70102426],[4.5356041,0.03269207,99.70167232],[4.53560459,0.03269381,99.70231861],[4.53560507,0.03269555,99.70296315],[4.53560556,0.03269728,99.70360596],[4.53560604,0.03269902,99.70424704],[4.53560653,0.03270076,99.70488643],[4.53560701,0.0327025,99.70552413],[4.5356075,0.03270423,99.70616016],[4.53560798,0.03270597,99.70679454],[4.53560847,0.03270771,99.70742728],[4.53560895,0.03270944,99.70805839],[4.53560943,0.03271118,99.70868791],[4.53560992,0.03271292,99.70931583],[4.5356104,0.03271465,99.70994218],[4.53561089,0.03271639,99.71056697],[4.53561137,0.03271813,99.71119022],[4.53561185,0.03271987,99.71181195],[4.53561234,0.0327216,99.71243217],[4.53561282,0.03272334,99.7130509],[4.5356133,0.03272508,99.71366815],[4.53561379,0.03272681,99.71428394],[4.53561427,0.03272855,99.71489828],[4.53561475,0.03273029,99.7155112],[4.53561524,0.03273203,99.71612271],[4.53561572,0.03273376,99.71673282],[4.5356162,0.0327355,99.71734155],[4.53561669,0.03273724,99.71794891],[4.53561717,0.03273898,99.71855493],[4.53561765,0.03274071,99.71915962],[4.53561814,0.03274245,99.71976299],[4.53561862,0.03274419,99.72036506],[4.5356191,0.03274593,99.72096585],[4.53561958,0.03274766,99.72156537],[4.53562006,0.0327494,99.72216364],[4.53562055,0.03275114,99.72276067],[4.53562103,0.03275288,99.72335649],[4.53562151,0.03275461,99.7239511],[4.53562199,0.03275635,99.72454452],[4.53562247,0.03275809,99.72513678],[4.53562295,0.03275983,99.72572787],[4.53562344,0.03276156,99.72631783],[4.53562392,0.0327633,99.72690666],[4.5356244,0.03276504,99.72749437],[4.53562488,0.03276678,99.72808094],[4.53562536,0.03276852,99.72866636],[4.53562584,0.03277025,99.7292506],[4.53562632,0.03277199,99.72983366],[4.5356268,0.03277373,99.73041551],[4.53562728,0.03277547,99.73099614],[4.53562776,0.03277721,99.73157554],[4.53562824,0.03277894,99.73215368],[4.53562872,0.03278068,99.73273056],[4.5356292,0.03278242,99.73330616],[4.53562968,0.03278416,99.73388048],[4.53563016,0.0327859,99.73445351],[4.53563064,0.03278764,99.73502525],[4.53563112,0.03278937,99.73559571],[4.53563159,0.03279111,99.73616487],[4.53563207,0.03279285,99.73673273],[4.53563255,0.03279459,99.7372993],[4.53563303,0.03279633,99.73786456],[4.53563351,0.03279807,99.73842853],[4.53563399,0.03279981,99.73899118],[4.53563447,0.03280154,99.73955253],[4.53563494,0.03280328,99.74011257],[4.53563542,0.03280502,99.74067129],[4.5356359,0.03280676,99.7412287],[4.53563638,0.0328085,99.74178479],[4.53563686,0.03281024,99.74233956],[4.53563734,0.03281198,99.742893],[4.53563781,0.03281371,99.74344512],[4.53563829,0.03281545,99.74399591],[4.53563877,0.03281719,99.74454537],[4.53563925,0.03281893,99.74509349],[4.53563972,0.03282067,99.74564028],[4.5356402,0.03282241,99.74618573],[4.53564068,0.03282415,99.74672983],[4.53564116,0.03282589,99.74727259],[4.53564163,0.03282762,99.74781401],[4.53564211,0.03282936,99.74835407],[4.53564259,0.0328311,99.74889279],[4.53564307,0.03283284,99.74943015],[4.53564354,0.03283458,99.74996615],[4.53564402,0.03283632,99.75050079],[4.5356445,0.03283806,99.75103407],[4.53564498,0.0328398,99.75156599],[4.53564546,0.03284153,99.75209654],[4.53564593,0.03284327,99.75262572],[4.53564641,0.03284501,99.75315352],[4.53564689,0.03284675,99.75367996],[4.53564737,0.03284849,99.75420501],[4.53564784,0.03285023,99.75472869],[4.53564832,0.03285197,99.75525098],[4.5356488,0.03285371,99.75577189],[4.53564928,0.03285544,99.75629141],[4.53564976,0.03285718,99.75680954],[4.53565024,0.03285892,99.75732628],[4.53565071,0.03286066,99.75784162],[4.53565119,0.0328624,99.75835557],[4.53565167,0.03286414,99.75886811],[4.53565215,0.03286588,99.75937919],[4.53565263,0.03286761,99.75988876],[4.53565311,0.03286935,99.76039676],[4.53565359,0.03287109,99.76090313],[4.53565407,0.03287283,99.76140782],[4.53565455,0.03287457,99.76191078],[4.53565502,0.03287631,99.76241194],[4.5356555,0.03287804,99.76291124],[4.53565598,0.03287978,99.76340864],[4.53565646,0.03288152,99.76390408],[4.53565694,0.03288326,99.7643975],[4.53565742,0.032885,99.76488884],[4.5356579,0.03288673,99.76537805],[4.53565838,0.03288847,99.76586507],[4.53565886,0.03289021,99.76634985],[4.53565934,0.03289195,99.76683233],[4.53565982,0.03289369,99.76731245],[4.5356603,0.03289543,99.76779017],[4.53566077,0.03289716,99.76826541],[4.53566125,0.0328989,99.76873813],[4.53566173,0.03290064,99.76920827],[4.53566221,0.03290238,99.76967578],[4.53566269,0.03290412,99.77014062],[4.53566317,0.03290586,99.77060284],[4.53566364,0.0329076,99.77106249],[4.53566412,0.03290933,99.77151965],[4.5356646,0.03291107,99.77197438],[4.53566508,0.03291281,99.77242676],[4.53566555,0.03291455,99.77287682],[4.53566603,0.03291629,99.77332464],[4.53566651,0.03291803,99.77377024],[4.53566698,0.03291977,99.77421368],[4.53566746,0.03292151,99.77465499],[4.53566794,0.03292325,99.77509424],[4.53566841,0.03292498,99.77553145],[4.53566889,0.03292672,99.77596668],[4.53566937,0.03292846,99.77639997],[4.53566984,0.0329302,99.77683138],[4.53567032,0.03293194,99.77726093],[4.53567079,0.03293368,99.77768868],[4.53567127,0.03293542,99.77811468],[4.53567175,0.03293716,99.77853896],[4.53567222,0.0329389,99.77896158],[4.5356727,0.03294064,99.77938257],[4.53567317,0.03294238,99.77980199],[4.53567365,0.03294412,99.78021988],[4.53567413,0.03294585,99.78063629],[4.5356746,0.03294759,99.78105125],[4.53567508,0.03294933,99.78146482],[4.53567555,0.03295107,99.78187704],[4.53567603,0.03295281,99.78228795],[4.53567651,0.03295455,99.7826976],[4.53567698,0.03295629,99.78310603],[4.53567746,0.03295803,99.7835133],[4.53567793,0.03295977,99.78391944],[4.53567841,0.03296151,99.78432449],[4.53567889,0.03296325,99.78472851],[4.53567936,0.03296498,99.78513153],[4.53567984,0.03296672,99.78553357],[4.53568032,0.03296846,99.78593463],[4.53568079,0.0329702,99.78633471],[4.53568127,0.03297194,99.78673383],[4.53568175,0.03297368,99.78713198],[4.53568223,0.03297542,99.78752918],[4.5356827,0.03297716,99.78792544],[4.53568318,0.0329789,99.78832074],[4.53568366,0.03298063,99.78871512],[4.53568413,0.03298237,99.78910856],[4.53568461,0.03298411,99.78950108],[4.53568509,0.03298585,99.78989268],[4.53568557,0.03298759,99.79028336],[4.53568604,0.03298933,99.79067314],[4.53568652,0.03299107,99.79106203],[4.535687,0.03299281,99.79145001],[4.53568748,0.03299455,99.79183711],[4.53568795,0.03299628,99.79222333],[4.53568843,0.03299802,99.79260868],[4.53568891,0.03299976,99.79299315],[4.53568939,0.0330015,99.79337676],[4.53568987,0.03300324,99.79375951],[4.53569034,0.03300498,99.79414142],[4.53569082,0.03300672,99.79452247],[4.5356913,0.03300846,99.79490271],[4.53569178,0.03301019,99.79528217],[4.53569225,0.03301193,99.79566086],[4.53569273,0.03301367,99.79603884],[4.53569321,0.03301541,99.79641613],[4.53569369,0.03301715,99.79679275],[4.53569416,0.03301889,99.79716875],[4.53569464,0.03302063,99.79754416],[4.53569512,0.03302237,99.79791901],[4.5356956,0.0330241,99.79829333],[4.53569607,0.03302584,99.79866715],[4.53569655,0.03302758,99.7990405],[4.53569703,0.03302932,99.79941342],[4.53569751,0.03303106,99.79978594],[4.53569799,0.0330328,99.80015809],[4.53569846,0.03303454,99.8005299],[4.53569894,0.03303628,99.8009014],[4.53569942,0.03303801,99.80127263],[4.5356999,0.03303975,99.80164362],[4.53570038,0.03304149,99.8020144],[4.53570085,0.03304323,99.802385],[4.53570133,0.03304497,99.80275545],[4.53570181,0.03304671,99.80312578],[4.53570229,0.03304845,99.80349603],[4.53570277,0.03305018,99.8038662],[4.53570325,0.03305192,99.80423628],[4.53570373,0.03305366,99.80460623],[4.5357042,0.0330554,99.80497605],[4.53570468,0.03305714,99.80534572],[4.53570516,0.03305888,99.80571521],[4.53570564,0.03306062,99.8060845],[4.53570612,0.03306235,99.80645358],[4.5357066,0.03306409,99.80682242],[4.53570708,0.03306583,99.80719101],[4.53570756,0.03306757,99.80755933],[4.53570803,0.03306931,99.80792736],[4.53570851,0.03307105,99.80829508],[4.53570899,0.03307278,99.80866247],[4.53570947,0.03307452,99.8090295],[4.53570995,0.03307626,99.80939617],[4.53571043,0.033078,99.80976245],[4.53571091,0.03307974,99.81012832],[4.53571139,0.03308148,99.81049377],[4.53571187,0.03308322,99.81085877],[4.53571234,0.03308495,99.81122331],[4.53571282,0.03308669,99.81158736],[4.5357133,0.03308843,99.81195091],[4.53571378,0.03309017,99.81231393],[4.53571426,0.03309191,99.81267642],[4.53571474,0.03309365,99.81303835],[4.53571522,0.03309538,99.81339969],[4.5357157,0.03309712,99.81376044],[4.53571618,0.03309886,99.81412057],[4.53571666,0.0331006,99.81448006],[4.53571714,0.03310234,99.8148389],[4.53571761,0.03310408,99.81519707],[4.53571809,0.03310582,99.81555454],[4.53571857,0.03310755,99.8159113],[4.53571905,0.03310929,99.81626733],[4.53571953,0.03311103,99.81662261],[4.53572001,0.03311277,99.81697713],[4.53572049,0.03311451,99.81733085],[4.53572097,0.03311625,99.81768377],[4.53572145,0.03311798,99.81803587],[4.53572193,0.03311972,99.81838712],[4.53572241,0.03312146,99.81873751],[4.53572289,0.0331232,99.81908702],[4.53572337,0.03312494,99.81943563],[4.53572385,0.03312668,99.8197833],[4.53572433,0.03312841,99.82012999],[4.53572481,0.03313015,99.82047566],[4.53572529,0.03313189,99.82082027],[4.53572577,0.03313363,99.82116377],[4.53572625,0.03313537,99.82150612],[4.53572673,0.03313711,99.82184727],[4.53572721,0.03313884,99.82218719],[4.53572769,0.03314058,99.82252583],[4.53572817,0.03314232,99.82286314],[4.53572865,0.03314406,99.8231991],[4.53572913,0.0331458,99.82353365],[4.5357296,0.03314753,99.82386674],[4.53573008,0.03314927,99.82419835],[4.53573056,0.03315101,99.82452843],[4.53573104,0.03315275,99.82485692],[4.53573152,0.03315449,99.82518381],[4.535732,0.03315623,99.82550903],[4.53573248,0.03315797,99.82583255],[4.53573296,0.0331597,99.82615432],[4.53573344,0.03316144,99.82647431],[4.53573392,0.03316318,99.82679247],[4.5357344,0.03316492,99.82710877],[4.53573488,0.03316666,99.82742315],[4.53573536,0.0331684,99.82773558],[4.53573583,0.03317014,99.82804601],[4.53573631,0.03317187,99.82835441],[4.53573679,0.03317361,99.82866074],[4.53573727,0.03317535,99.82896494],[4.53573775,0.03317709,99.82926699],[4.53573822,0.03317883,99.82956683],[4.5357387,0.03318057,99.82986443],[4.53573918,0.03318231,99.83015975],[4.53573966,0.03318405,99.83045274],[4.53574013,0.03318579,99.83074337],[4.53574061,0.03318752,99.8310316],[4.53574109,0.03318926,99.83131745],[4.53574156,0.033191,99.83160102],[4.53574204,0.03319274,99.83188241],[4.53574252,0.03319448,99.83216171],[4.53574299,0.03319622,99.83243903],[4.53574347,0.03319796,99.83271446],[4.53574395,0.0331997,99.8329881],[4.53574442,0.03320144,99.83326004],[4.5357449,0.03320318,99.83353038],[4.53574538,0.03320492,99.83379923],[4.53574585,0.03320666,99.83406667],[4.53574633,0.0332084,99.8343328],[4.53574681,0.03321013,99.83459773],[4.53574728,0.03321187,99.83486154],[4.53574776,0.03321361,99.83512433],[4.53574824,0.03321535,99.8353862],[4.53574872,0.03321709,99.83564724],[4.53574919,0.03321883,99.83590756],[4.53574967,0.03322057,99.83616724],[4.53575015,0.03322231,99.83642639],[4.53575063,0.03322405,99.83668507],[4.53575111,0.03322578,99.8369433],[4.53575159,0.03322752,99.83720106],[4.53575207,0.03322926,99.83745834],[4.53575255,0.033231,99.83771513],[4.53575303,0.03323274,99.83797142],[4.53575351,0.03323448,99.83822718],[4.53575399,0.03323621,99.83848241],[4.53575447,0.03323795,99.83873711],[4.53575495,0.03323969,99.83899124],[4.53575543,0.03324143,99.83924481],[4.53575591,0.03324317,99.83949779],[4.53575639,0.03324491,99.83975018],[4.53575687,0.03324664,99.84000197],[4.53575735,0.03324838,99.84025314],[4.53575783,0.03325012,99.84050367],[4.53575831,0.03325186,99.84075357],[4.53575879,0.0332536,99.84100281],[4.53575927,0.03325533,99.84125138],[4.53575975,0.03325707,99.84149928],[4.53576023,0.03325881,99.84174652],[4.53576071,0.03326055,99.84199311],[4.53576119,0.03326229,99.84223904],[4.53576168,0.03326402,99.84248433],[4.53576216,0.03326576,99.84272898],[4.53576264,0.0332675,99.842973],[4.53576311,0.03326924,99.84321638],[4.53576359,0.03327098,99.84345915],[4.53576407,0.03327272,99.84370129],[4.53576455,0.03327446,99.84394282],[4.53576503,0.03327619,99.84418374],[4.53576551,0.03327793,99.84442406],[4.53576599,0.03327967,99.84466379],[4.53576647,0.03328141,99.84490292],[4.53576695,0.03328315,99.84514147],[4.53576743,0.03328489,99.84537943],[4.53576791,0.03328663,99.84561682],[4.53576838,0.03328836,99.84585364],[4.53576886,0.0332901,99.84608989],[4.53576934,0.03329184,99.84632559],[4.53576982,0.03329358,99.84656073],[4.5357703,0.03329532,99.84679532],[4.53577077,0.03329706,99.84702937],[4.53577125,0.0332988,99.84726288],[4.53577173,0.03330054,99.84749586],[4.53577221,0.03330228,99.84772831],[4.53577269,0.03330402,99.84796023],[4.53577316,0.03330575,99.84819165],[4.53577364,0.03330749,99.84842254],[4.53577412,0.03330923,99.84865294],[4.5357746,0.03331097,99.84888283],[4.53577507,0.03331271,99.84911222],[4.53577555,0.03331445,99.84934113],[4.53577603,0.03331619,99.84956955],[4.5357765,0.03331793,99.84979749],[4.53577698,0.03331967,99.85002495],[4.53577746,0.03332141,99.85025195],[4.53577794,0.03332315,99.85047848],[4.53577841,0.03332488,99.85070455],[4.53577889,0.03332662,99.85093017],[4.53577937,0.03332836,99.85115533],[4.53577984,0.0333301,99.85138006],[4.53578032,0.03333184,99.85160435],[4.5357808,0.03333358,99.8518282],[4.53578128,0.03333532,99.85205163],[4.53578175,0.03333706,99.85227463],[4.53578223,0.0333388,99.85249721],[4.53578271,0.03334054,99.85271934],[4.53578318,0.03334228,99.85294098],[4.53578366,0.03334402,99.85316211],[4.53578414,0.03334576,99.85338267],[4.53578461,0.03334749,99.85360265],[4.53578509,0.03334923,99.853822],[4.53578557,0.03335097,99.8540407],[4.53578605,0.03335271,99.8542587],[4.53578652,0.03335445,99.85447598],[4.535787,0.03335619,99.85469249],[4.53578748,0.03335793,99.85490821],[4.53578795,0.03335967,99.85512311],[4.53578843,0.03336141,99.85533714],[4.53578891,0.03336315,99.85555028],[4.53578939,0.03336489,99.85576249],[4.53578986,0.03336663,99.85597373],[4.53579034,0.03336837,99.85618398],[4.53579082,0.0333701,99.8563932],[4.53579129,0.03337184,99.85660136],[4.53579177,0.03337358,99.85680842],[4.53579225,0.03337532,99.85701434],[4.53579273,0.03337706,99.85721909],[4.5357932,0.0333788,99.85742263],[4.53579368,0.03338054,99.85762492],[4.53579416,0.03338228,99.85782591],[4.53579464,0.03338402,99.85802557],[4.53579511,0.03338576,99.85822386],[4.53579559,0.0333875,99.85842074],[4.53579607,0.03338924,99.85861617],[4.53579654,0.03339098,99.85881027],[4.53579702,0.03339271,99.85900329],[4.5357975,0.03339445,99.85919548],[4.53579798,0.03339619,99.85938709],[4.53579845,0.03339793,99.85957839],[4.53579893,0.03339967,99.85976962],[4.53579941,0.03340141,99.85996104],[4.53579988,0.03340315,99.86015291],[4.53580036,0.03340489,99.86034547],[4.53580083,0.03340663,99.86053899],[4.53580131,0.03340837,99.86073371],[4.53580179,0.03341011,99.86092989],[4.53580226,0.03341185,99.86112777],[4.53580274,0.03341359,99.86132762],[4.53580322,0.03341533,99.86152967],[4.53580369,0.03341707,99.86173419],[4.53580417,0.03341881,99.86194141],[4.53580464,0.03342055,99.86215159],[4.53580512,0.03342229,99.86236498],[4.53580559,0.03342403,99.86258183],[4.53580607,0.03342577,99.86280229],[4.53580655,0.0334275,99.86302622],[4.53580702,0.03342924,99.86325336],[4.5358075,0.03343098,99.86348347],[4.53580797,0.03343272,99.86371631],[4.53580845,0.03343446,99.86395163],[4.53580893,0.0334362,99.86418919],[4.5358094,0.03343794,99.86442875],[4.53580988,0.03343968,99.86467007],[4.53581035,0.03344142,99.8649129],[4.53581083,0.03344316,99.86515699],[4.53581131,0.0334449,99.86540211],[4.53581178,0.03344664,99.86564802],[4.53581226,0.03344838,99.86589446],[4.53581274,0.03345012,99.8661412],[4.53581321,0.03345186,99.86638799],[4.53581369,0.0334536,99.8666346],[4.53581416,0.03345534,99.86688078],[4.53581464,0.03345708,99.86712629],[4.53581512,0.03345882,99.8673709],[4.53581559,0.03346056,99.86761436],[4.53581607,0.0334623,99.86785643],[4.53581654,0.03346404,99.86809688],[4.53581702,0.03346578,99.86833547],[4.53581749,0.03346752,99.86857196]],"type":"LineString"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":2,"type":"none","predecessorId":2}},{"geometry":{"coordinates":[[4.53441277,0.02897045,97.13217057],[4.5344124,0.02896868,97.13108056],[4.53441204,0.02896691,97.12999143],[4.53441167,0.02896514,97.12890318],[4.53441131,0.02896336,97.12781579],[4.53441094,0.02896159,97.12672928],[4.53441058,0.02895982,97.12564363],[4.53441036,0.02895877,97.1250049]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.025},{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":-6,"type":"none","predecessorId":-6}},{"geometry":{"coordinates":[[4.53441709,0.02896912,97.13217057],[4.53441657,0.0289674,97.13108056],[4.53441604,0.02896568,97.12999143],[4.53441552,0.02896395,97.12890318],[4.534415,0.02896223,97.12781579],[4.53441447,0.0289605,97.12672928],[4.53441395,0.02895878,97.12564363],[4.53441364,0.02895777,97.1250049]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":-5,"type":"border","predecessorId":-5}},{"geometry":{"coordinates":[[4.53441839,0.02896872,96.98217057],[4.53441787,0.028967,96.98108056],[4.53441735,0.02896528,96.97999143],[4.53441682,0.02896355,96.97890318],[4.5344163,0.02896183,96.97781579],[4.53441578,0.0289601,96.97672928],[4.53441525,0.02895838,96.97564363],[4.53441495,0.02895737,96.9750049]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-4,"type":"border","predecessorId":-4}},{"geometry":{"coordinates":[[4.53442139,0.0289678,96.99055832],[4.53442087,0.02896608,96.98947064],[4.53442035,0.02896435,96.98838382],[4.53441982,0.02896263,96.98729786],[4.5344193,0.02896091,96.98621276],[4.53441878,0.02895918,96.98512851],[4.53441825,0.02895746,96.98404512],[4.53441794,0.02895644,96.98340771]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","rules":[{"value":"barred"}],"id":-3,"type":"restricted","predecessorId":-3}},{"geometry":{"coordinates":[[4.53443897,0.0289624,97.03972558],[4.53443845,0.02896068,97.03865312],[4.53443792,0.02895895,97.03758145],[4.5344374,0.02895723,97.03651055],[4.53443688,0.0289555,97.03544044],[4.53443635,0.02895378,97.0343711],[4.53443583,0.02895206,97.03330253],[4.53443552,0.02895104,97.03267382]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2}},{"geometry":{"coordinates":[[4.53447028,0.02895278,97.12732933],[4.53446976,0.02895106,97.12628771],[4.53446924,0.02894933,97.12524673],[4.53446872,0.0289476,97.12420639],[4.5344682,0.02894588,97.1231667],[4.53446768,0.02894415,97.12212764],[4.53446716,0.02894243,97.12108921],[4.53446685,0.02894141,97.12047818]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}},{"geometry":{"coordinates":[[4.53450087,0.02893095,97.21582253],[4.53450118,0.02893197,97.21641991],[4.5345017,0.0289337,97.21743501],[4.53450222,0.02893542,97.2184506],[4.53450275,0.02893715,97.21946667],[4.53450327,0.02893888,97.22048322],[4.53450379,0.0289406,97.22150026],[4.53450431,0.02894233,97.22251778]],"type":"LineString"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":1,"type":"shoulder","predecessorId":1}},{"geometry":{"coordinates":[[4.53451389,0.02892695,97.21582253],[4.5345142,0.02892797,97.21641991],[4.53451472,0.0289297,97.21743501],[4.53451524,0.02893142,97.2184506],[4.53451576,0.02893315,97.21946667],[4.53451628,0.02893488,97.22048322],[4.5345168,0.0289366,97.22150026],[4.53451733,0.02893833,97.22251778]],"type":"LineString"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":2,"type":"none","predecessorId":2}},{"geometry":{"coordinates":[[4.53441036,0.02895877,96.9750049],[4.53441,0.028957,96.96955709],[4.53440976,0.02895583,96.96114451]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-4,"type":"none","predecessorId":0}},{"geometry":{"coordinates":[[4.53441495,0.02895737,96.9750049],[4.53441287,0.02895612,96.96955709],[4.53440978,0.02895583,96.96114451]],"type":"LineString"},"type":"feature","properties":{"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","rules":[{"value":"barred"}],"id":-3,"type":"restricted","predecessorId":0}},{"geometry":{"coordinates":[[4.53443552,0.02895104,97.03267382],[4.534435,0.02894932,97.03160681],[4.53443466,0.02894818,97.03090321]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2}},{"geometry":{"coordinates":[[4.53446685,0.02894141,97.12047818],[4.53446633,0.02893969,97.11944063],[4.53446599,0.02893855,97.1187564]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}},{"geometry":{"coordinates":[[4.53450001,0.02892809,97.21413996],[4.53450035,0.02892923,97.21480866],[4.53450087,0.02893095,97.21582253]],"type":"LineString"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":1,"type":"shoulder","predecessorId":1}},{"geometry":{"coordinates":[[4.53451303,0.02892409,97.21413996],[4.53451337,0.02892523,97.21480866],[4.53451389,0.02892695,97.21582253]],"type":"LineString"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":2,"type":"none","predecessorId":2}},{"geometry":{"coordinates":[[4.53440978,0.02895583,96.96114451],[4.53440971,0.02895396,96.96135059],[4.53440965,0.0289521,96.96155868],[4.53440959,0.02895023,96.96176875],[4.53440952,0.02894836,96.96198077],[4.53440946,0.0289465,96.96219474],[4.5344094,0.02894463,96.96241062],[4.53440934,0.02894277,96.96262839],[4.53440928,0.0289409,96.96284804],[4.53440921,0.02893904,96.96306954],[4.53440915,0.02893717,96.96329287],[4.53440909,0.0289353,96.96351801],[4.53440903,0.02893344,96.96374493],[4.53440896,0.02893157,96.96397362],[4.5344089,0.02892971,96.96420405],[4.53440884,0.02892784,96.9644362],[4.53440878,0.02892597,96.96467005],[4.53440872,0.02892411,96.96490558],[4.53440866,0.02892224,96.96514277],[4.53440826,0.02892048,96.96443692],[4.5344078,0.02891873,96.96357349],[4.53440735,0.02891699,96.96271207],[4.5344069,0.02891524,96.96185248],[4.53440645,0.02891349,96.9609945],[4.53440599,0.02891175,96.96013794],[4.53440554,0.02891,96.9592826],[4.53440509,0.02890826,96.95842827],[4.53440464,0.02890651,96.95757476],[4.53440418,0.02890476,96.95672185],[4.53440373,0.02890302,96.95586934],[4.53440328,0.02890127,96.95501704],[4.53440282,0.02889953,96.95416474],[4.53440237,0.02889778,96.95331224],[4.53440191,0.02889604,96.95245933],[4.53440146,0.02889429,96.95160581],[4.534401,0.02889254,96.95075148],[4.53440055,0.0288908,96.94989613],[4.53440009,0.02888905,96.94903956],[4.53439963,0.02888731,96.94818157],[4.53439917,0.02888557,96.94732197],[4.53439871,0.02888382,96.94646077],[4.53439825,0.02888208,96.94559804],[4.53439779,0.02888034,96.94473384],[4.53439733,0.02887859,96.94386822],[4.53439686,0.02887685,96.94300126],[4.5343964,0.02887511,96.94213302],[4.53439593,0.02887336,96.94126357],[4.53439547,0.02887162,96.94039296],[4.534395,0.02886988,96.93952126],[4.53439453,0.02886814,96.93864854],[4.53439406,0.0288664,96.93777486],[4.53439359,0.02886465,96.93690028],[4.53439312,0.02886291,96.93602488],[4.53439265,0.02886117,96.9351487],[4.53439218,0.02885943,96.93427183],[4.53439171,0.02885769,96.93339432],[4.53439124,0.02885595,96.93251624],[4.53439077,0.02885421,96.93163765],[4.5343903,0.02885247,96.93075862],[4.53438982,0.02885073,96.92987921],[4.53438935,0.02884899,96.92899949],[4.53438887,0.02884725,96.92811953],[4.5343884,0.02884551,96.92723943],[4.53438792,0.02884377,96.92635929],[4.53438745,0.02884203,96.92547923],[4.53438697,0.02884029,96.92459936],[4.5343865,0.02883855,96.9237198],[4.53438602,0.02883681,96.92284064],[4.53438554,0.02883507,96.92196201],[4.53438507,0.02883333,96.921084],[4.53438459,0.02883159,96.92020675],[4.53438412,0.02882985,96.91933035],[4.53438364,0.02882811,96.91845491],[4.53438316,0.02882638,96.91758056],[4.53438269,0.02882464,96.91670739],[4.53438221,0.0288229,96.91583553],[4.53438173,0.02882116,96.91496507],[4.53438126,0.02881942,96.91409615],[4.53438078,0.02881768,96.91322886],[4.53438031,0.02881594,96.91236332],[4.53437983,0.0288142,96.91149963],[4.53437936,0.02881246,96.91063786],[4.53437888,0.02881072,96.90977796],[4.53437841,0.02880898,96.9089199],[4.53437793,0.02880724,96.90806364],[4.53437746,0.0288055,96.90720916],[4.53437699,0.02880376,96.9063564],[4.53437651,0.02880202,96.90550533],[4.53437604,0.02880028,96.90465592],[4.53437557,0.02879853,96.90380812],[4.5343751,0.02879679,96.90296191],[4.53437462,0.02879505,96.90211724],[4.53437415,0.02879331,96.90127408],[4.53437368,0.02879157,96.90043239],[4.53437321,0.02878983,96.89959213],[4.53437274,0.02878809,96.89875327],[4.53437226,0.02878635,96.89791577],[4.53437179,0.02878461,96.89707959],[4.53437132,0.02878286,96.89624469],[4.53437085,0.02878112,96.89541104],[4.53437038,0.02877938,96.8945786],[4.53436991,0.02877764,96.89374733],[4.53436944,0.0287759,96.8929172],[4.53436897,0.02877416,96.89208816],[4.5343685,0.02877242,96.89126019],[4.53436803,0.02877067,96.89043323],[4.53436755,0.02876893,96.88960726],[4.53436708,0.02876719,96.8887822],[4.53436661,0.02876545,96.88795798],[4.53436614,0.02876371,96.8871345],[4.53436567,0.02876197,96.88631168],[4.5343652,0.02876022,96.8854894],[4.53436473,0.02875848,96.88466758],[4.53436426,0.02875674,96.88384613],[4.53436379,0.028755,96.88302494],[4.53436331,0.02875326,96.88220395],[4.53436284,0.02875152,96.88138316],[4.53436237,0.02874978,96.88056256],[4.5343619,0.02874804,96.8797422],[4.53436142,0.02874629,96.87892209],[4.53436095,0.02874455,96.87810224],[4.53436048,0.02874281,96.87728268],[4.53436,0.02874107,96.87646342],[4.53435953,0.02873933,96.87564449],[4.53435905,0.02873759,96.87482591],[4.53435858,0.02873585,96.87400769],[4.53435811,0.02873411,96.87318986],[4.53435763,0.02873237,96.87237244],[4.53435716,0.02873063,96.87155543],[4.53435668,0.02872889,96.87073888],[4.53435621,0.02872715,96.86992278],[4.53435573,0.02872541,96.86910717],[4.53435526,0.02872367,96.86829206],[4.53435478,0.02872193,96.86747748],[4.5343543,0.02872019,96.86666344],[4.53435383,0.02871845,96.86584996],[4.53435335,0.0287167,96.86503707],[4.53435288,0.02871496,96.86422477],[4.5343524,0.02871322,96.8634131],[4.53435192,0.02871148,96.86260207],[4.53435145,0.02870974,96.8617917],[4.53435097,0.028708,96.86098202],[4.53435049,0.02870626,96.86017303],[4.53435002,0.02870452,96.85936477],[4.53434954,0.02870278,96.85855725],[4.53434906,0.02870104,96.85775049],[4.53434859,0.0286993,96.85694451],[4.53434811,0.02869756,96.85613933],[4.53434763,0.02869582,96.85533498],[4.53434716,0.02869408,96.85453152],[4.53434668,0.02869234,96.85372904],[4.5343462,0.0286906,96.85292761],[4.53434573,0.02868886,96.85212729],[4.53434525,0.02868712,96.85132814],[4.53434477,0.02868538,96.8505302],[4.5343443,0.02868364,96.8497335],[4.53434382,0.0286819,96.84893807],[4.53434334,0.02868016,96.84814393],[4.53434287,0.02867842,96.84735112],[4.53434239,0.02867668,96.84655968],[4.53434192,0.02867494,96.84576962],[4.53434144,0.0286732,96.84498098],[4.53434097,0.02867146,96.84419373],[4.53434049,0.02866972,96.84340785],[4.53434002,0.02866798,96.84262329],[4.53433954,0.02866623,96.84184003],[4.53433907,0.02866449,96.84105805],[4.53433859,0.02866275,96.8402773],[4.53433812,0.02866101,96.83949777],[4.53433764,0.02865927,96.83871941],[4.53433717,0.02865753,96.83794221],[4.53433669,0.02865579,96.83716612],[4.53433622,0.02865405,96.83639115],[4.53433575,0.0286523,96.83561729],[4.53433527,0.02865056,96.83484452],[4.5343348,0.02864882,96.83407285],[4.53433432,0.02864708,96.83330227],[4.53433385,0.02864534,96.83253277],[4.53433338,0.0286436,96.83176435],[4.5343329,0.02864186,96.830997],[4.53433243,0.02864012,96.83023071],[4.53433196,0.02863837,96.82946548],[4.53433148,0.02863663,96.82870131],[4.53433101,0.02863489,96.82793818],[4.53433054,0.02863315,96.82717609],[4.53433006,0.02863141,96.82641503],[4.53432959,0.02862967,96.825655],[4.53432912,0.02862792,96.824896],[4.53432864,0.02862618,96.82413801],[4.53432817,0.02862444,96.82338103],[4.5343277,0.0286227,96.82262505],[4.53432722,0.02862096,96.82187008],[4.53432675,0.02861922,96.82111609],[4.53432628,0.02861747,96.8203631],[4.53432581,0.02861573,96.81961108],[4.53432533,0.02861399,96.81886004],[4.53432486,0.02861225,96.81810996],[4.53432439,0.02861051,96.81736083],[4.53432391,0.02860876,96.8166126],[4.53432344,0.02860702,96.81586522],[4.53432297,0.02860528,96.81511866],[4.5343225,0.02860354,96.81437287],[4.53432202,0.0286018,96.8136278],[4.53432155,0.02860005,96.81288342],[4.53432108,0.02859831,96.81213966],[4.5343206,0.02859657,96.8113965],[4.53432013,0.02859483,96.81065389],[4.53431966,0.02859309,96.80991182],[4.53431918,0.02859135,96.80917031],[4.53431871,0.0285896,96.80842938],[4.53431824,0.02858786,96.80768906],[4.53431776,0.02858612,96.80694936],[4.53431729,0.02858438,96.80621032],[4.53431682,0.02858264,96.80547195],[4.53431634,0.0285809,96.80473428],[4.53431587,0.02857916,96.80399733],[4.53431539,0.02857741,96.80326112],[4.53431492,0.02857567,96.80252562],[4.53431445,0.02857393,96.80179083],[4.53431397,0.02857219,96.80105671],[4.5343135,0.02857045,96.80032324],[4.53431302,0.02856871,96.79959041],[4.53431255,0.02856697,96.79885819],[4.53431207,0.02856523,96.79812655],[4.5343116,0.02856348,96.79739548],[4.53431113,0.02856174,96.79666495],[4.53431065,0.02856,96.79593495],[4.53431018,0.02855826,96.79520544],[4.5343097,0.02855652,96.79447641],[4.53430923,0.02855478,96.79374784],[4.53430875,0.02855304,96.7930197],[4.53430827,0.0285513,96.79229197],[4.5343078,0.02854956,96.79156464],[4.53430732,0.02854782,96.79083766],[4.53430685,0.02854608,96.79011104],[4.53430637,0.02854434,96.78938474],[4.53430589,0.0285426,96.78865874],[4.53430542,0.02854086,96.78793301],[4.53430494,0.02853912,96.78720755],[4.53430446,0.02853738,96.78648232],[4.53430399,0.02853564,96.78575731],[4.53430351,0.0285339,96.78503248],[4.53430303,0.02853216,96.78430779],[4.53430255,0.02853042,96.78358322],[4.53430207,0.02852868,96.78285872],[4.5343016,0.02852694,96.78213426],[4.53430112,0.0285252,96.7814098],[4.53430064,0.02852346,96.78068531],[4.53430016,0.02852172,96.77996074],[4.53429968,0.02851998,96.77923607],[4.5342992,0.02851824,96.77851125],[4.53429872,0.0285165,96.77778625],[4.53429823,0.02851477,96.77706111],[4.53429775,0.02851303,96.77633586],[4.53429727,0.02851129,96.77561054],[4.53429679,0.02850955,96.77488517],[4.53429631,0.02850781,96.7741598],[4.53429582,0.02850608,96.77343447],[4.53429534,0.02850434,96.77270921],[4.53429486,0.0285026,96.77198405],[4.53429437,0.02850086,96.77125904],[4.53429389,0.02849912,96.77053421],[4.5342934,0.02849739,96.7698096],[4.53429292,0.02849565,96.76908524],[4.53429244,0.02849391,96.76836118],[4.53429195,0.02849218,96.76763743],[4.53429147,0.02849044,96.76691406],[4.53429098,0.0284887,96.76619108],[4.53429049,0.02848696,96.76546854],[4.53429001,0.02848523,96.76474647],[4.53428952,0.02848349,96.76402491],[4.53428904,0.02848175,96.76330389],[4.53428855,0.02848002,96.76258346],[4.53428807,0.02847828,96.76186364],[4.53428758,0.02847654,96.76114449],[4.53428709,0.02847481,96.76042602],[4.53428661,0.02847307,96.75970828],[4.53428612,0.02847133,96.7589913],[4.53428563,0.0284696,96.75827513],[4.53428515,0.02846786,96.75755979],[4.53428466,0.02846612,96.75684533],[4.53428417,0.02846439,96.75613178],[4.53428369,0.02846265,96.75541917],[4.5342832,0.02846092,96.75470755],[4.53428271,0.02845918,96.75399695],[4.53428223,0.02845744,96.75328738],[4.53428174,0.02845571,96.75257884],[4.53428125,0.02845397,96.75187133],[4.53428077,0.02845223,96.75116487],[4.53428028,0.0284505,96.75045946],[4.53427979,0.02844876,96.7497551],[4.53427931,0.02844703,96.7490518],[4.53427882,0.02844529,96.74834957],[4.53427833,0.02844355,96.74764841],[4.53427785,0.02844182,96.74694833],[4.53427736,0.02844008,96.74624933],[4.53427687,0.02843834,96.74555142],[4.53427639,0.02843661,96.7448546],[4.5342759,0.02843487,96.74415889],[4.53427542,0.02843314,96.74346428],[4.53427493,0.0284314,96.74277078],[4.53427444,0.02842966,96.7420784],[4.53427396,0.02842793,96.74138715],[4.53427347,0.02842619,96.74069702],[4.53427299,0.02842445,96.74000803],[4.5342725,0.02842272,96.73932018],[4.53427201,0.02842098,96.73863347],[4.53427153,0.02841925,96.73794791],[4.53427104,0.02841751,96.73726345],[4.53427056,0.02841577,96.73658005],[4.53427007,0.02841404,96.73589765],[4.53426958,0.0284123,96.7352162],[4.5342691,0.02841056,96.73453565],[4.53426861,0.02840883,96.73385595],[4.53426813,0.02840709,96.73317706],[4.53426764,0.02840536,96.73249892],[4.53426715,0.02840362,96.73182151],[4.53426667,0.02840188,96.7311448],[4.53426618,0.02840015,96.73046876],[4.53426569,0.02839841,96.72979337],[4.53426521,0.02839668,96.72911861],[4.53426472,0.02839494,96.72844449],[4.53426423,0.02839321,96.72777102],[4.53426375,0.02839147,96.72709823],[4.53426326,0.02838973,96.72642612],[4.53426277,0.028388,96.72575472],[4.53426228,0.02838626,96.72508405],[4.5342618,0.02838453,96.72441411],[4.53426131,0.02838279,96.72374493],[4.53426082,0.02838106,96.72307653],[4.53426033,0.02837932,96.72240891],[4.53425984,0.02837759,96.7217421],[4.53425936,0.02837585,96.72107611],[4.53425887,0.02837412,96.72041097],[4.53425838,0.02837238,96.71974668],[4.53425789,0.02837065,96.71908326],[4.5342574,0.02836891,96.71842073],[4.53425692,0.02836718,96.71775912],[4.53425643,0.02836544,96.71709842],[4.53425594,0.02836371,96.71643866],[4.53425545,0.02836197,96.71577987],[4.53425496,0.02836024,96.71512204],[4.53425447,0.0283585,96.71446521],[4.53425398,0.02835677,96.71380938],[4.53425349,0.02835503,96.71315457],[4.53425301,0.0283533,96.71250081],[4.53425252,0.02835156,96.7118481],[4.53425203,0.02834983,96.71119647],[4.53425154,0.02834809,96.71054593],[4.53425105,0.02834636,96.70989649],[4.53425056,0.02834463,96.70924818],[4.53425007,0.02834289,96.708601],[4.53424958,0.02834116,96.70795499],[4.5342491,0.02833942,96.70731014],[4.53424861,0.02833769,96.70666649],[4.53424812,0.02833595,96.70602404],[4.53424763,0.02833422,96.70538282],[4.53424714,0.02833248,96.70474283],[4.53424665,0.02833075,96.7041041],[4.53424616,0.02832902,96.70346665],[4.53424568,0.02832728,96.70283048],[4.53424519,0.02832555,96.70219562],[4.5342447,0.02832381,96.70156208],[4.53424421,0.02832208,96.70092988],[4.53424372,0.02832034,96.70029904],[4.53424324,0.02831861,96.69966956],[4.53424275,0.02831687,96.69904148],[4.53424226,0.02831514,96.6984148],[4.53424177,0.02831341,96.69778954],[4.53424128,0.02831167,96.69716572],[4.5342408,0.02830994,96.69654335],[4.53424031,0.0283082,96.69592246],[4.53423982,0.02830647,96.69530305],[4.53423933,0.02830473,96.69468514],[4.53423885,0.028303,96.69406875],[4.53423836,0.02830126,96.6934539],[4.53423787,0.02829953,96.69284061],[4.53423773,0.02829901,96.69265764]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","rules":[{"value":"barred"}],"id":-3,"type":"restricted","predecessorId":-3}},{"geometry":{"coordinates":[[4.53443466,0.02894818,97.03090321],[4.53443413,0.02894645,97.02983779],[4.53443361,0.02894473,97.02877359],[4.53443309,0.02894301,97.02771059],[4.53443256,0.02894128,97.02664878],[4.53443204,0.02893956,97.02558814],[4.53443152,0.02893783,97.02452865],[4.534431,0.02893611,97.02347031],[4.53443047,0.02893438,97.02241309],[4.53442995,0.02893266,97.02135697],[4.53442943,0.02893093,97.02030196],[4.53442891,0.02892921,97.01924802],[4.53442839,0.02892748,97.01819514],[4.53442786,0.02892576,97.01714331],[4.53442734,0.02892403,97.01609252],[4.53442682,0.02892231,97.01504274],[4.5344263,0.02892058,97.01399396],[4.53442578,0.02891886,97.01294617],[4.53442525,0.02891713,97.01189935],[4.53442473,0.02891541,97.01085348],[4.53442421,0.02891368,97.00980856],[4.53442369,0.02891196,97.00876455],[4.53442317,0.02891023,97.00772146],[4.53442265,0.02890851,97.00667926],[4.53442212,0.02890678,97.00563793],[4.5344216,0.02890506,97.00459747],[4.53442108,0.02890333,97.00355785],[4.53442056,0.02890161,97.00251906],[4.53442004,0.02889988,97.00148109],[4.53441951,0.02889816,97.00044391],[4.53441899,0.02889643,96.99940752],[4.53441847,0.02889471,96.9983719],[4.53441795,0.02889298,96.99733702],[4.53441743,0.02889126,96.99630289],[4.5344169,0.02888953,96.99526947],[4.53441638,0.02888781,96.99423676],[4.53441586,0.02888608,96.99320473],[4.53441534,0.02888436,96.99217338],[4.53441481,0.02888263,96.99114269],[4.53441429,0.02888091,96.99011263],[4.53441377,0.02887918,96.9890832],[4.53441325,0.02887746,96.98805439],[4.53441272,0.02887573,96.98702616],[4.5344122,0.02887401,96.98599851],[4.53441168,0.02887228,96.98497143],[4.53441115,0.02887056,96.98394489],[4.53441063,0.02886883,96.98291888],[4.53441011,0.02886711,96.98189339],[4.53440958,0.02886539,96.98086839],[4.53440906,0.02886366,96.97984388],[4.53440854,0.02886194,96.97881983],[4.53440801,0.02886021,96.97779624],[4.53440749,0.02885849,96.97677307],[4.53440696,0.02885676,96.97575033],[4.53440644,0.02885504,96.97472799],[4.53440591,0.02885331,96.97370604],[4.53440539,0.02885159,96.97268446],[4.53440486,0.02884986,96.97166323],[4.53440434,0.02884814,96.97064234],[4.53440381,0.02884642,96.96962177],[4.53440329,0.02884469,96.96860151],[4.53440276,0.02884297,96.96758155],[4.53440223,0.02884124,96.9665619],[4.53440171,0.02883952,96.9655426],[4.53440118,0.0288378,96.96452367],[4.53440066,0.02883607,96.96350513],[4.53440013,0.02883435,96.96248704],[4.5343996,0.02883262,96.9614694],[4.53439907,0.0288309,96.96045225],[4.53439855,0.02882918,96.95943562],[4.53439802,0.02882745,96.95841954],[4.53439749,0.02882573,96.95740405],[4.53439696,0.02882401,96.95638916],[4.53439644,0.02882228,96.9553749],[4.53439591,0.02882056,96.95436132],[4.53439538,0.02881883,96.95334844],[4.53439485,0.02881711,96.95233628],[4.53439433,0.02881539,96.95132488],[4.5343938,0.02881366,96.95031426],[4.53439327,0.02881194,96.94930447],[4.53439274,0.02881022,96.94829551],[4.53439221,0.02880849,96.94728744],[4.53439169,0.02880677,96.94628027],[4.53439116,0.02880505,96.94527404],[4.53439063,0.02880332,96.94426877],[4.5343901,0.0288016,96.9432645],[4.53438957,0.02879987,96.94226125],[4.53438905,0.02879815,96.94125906],[4.53438852,0.02879643,96.94025795],[4.53438799,0.0287947,96.93925796],[4.53438746,0.02879298,96.93825911],[4.53438694,0.02879126,96.93726143],[4.53438641,0.02878953,96.93626496],[4.53438588,0.02878781,96.93526973],[4.53438535,0.02878608,96.93427576],[4.53438483,0.02878436,96.93328308],[4.5343843,0.02878263,96.93229173],[4.53438377,0.02878091,96.93130174],[4.53438325,0.02877919,96.93031312],[4.53438272,0.02877746,96.92932592],[4.53438219,0.02877574,96.92834017],[4.53438167,0.02877401,96.92735589],[4.53438114,0.02877229,96.92637312],[4.53438062,0.02877056,96.92539187],[4.53438009,0.02876884,96.9244122],[4.53437957,0.02876711,96.92343412],[4.53437904,0.02876539,96.92245765],[4.53437852,0.02876366,96.92148281],[4.53437799,0.02876194,96.92050957],[4.53437747,0.02876021,96.91953792],[4.53437695,0.02875849,96.91856784],[4.53437642,0.02875676,96.91759927],[4.5343759,0.02875504,96.91663221],[4.53437538,0.02875331,96.91566662],[4.53437485,0.02875159,96.91470248],[4.53437433,0.02874986,96.91373977],[4.53437381,0.02874814,96.91277846],[4.53437329,0.02874641,96.91181853],[4.53437277,0.02874468,96.91085995],[4.53437224,0.02874296,96.90990269],[4.53437172,0.02874123,96.90894673],[4.5343712,0.02873951,96.90799205],[4.53437068,0.02873778,96.90703862],[4.53437016,0.02873605,96.90608642],[4.53436964,0.02873433,96.90513542],[4.53436912,0.0287326,96.90418559],[4.53436859,0.02873088,96.90323692],[4.53436807,0.02872915,96.90228937],[4.53436755,0.02872742,96.90134292],[4.53436703,0.0287257,96.90039755],[4.53436651,0.02872397,96.89945322],[4.53436599,0.02872224,96.89850993],[4.53436547,0.02872052,96.89756763],[4.53436495,0.02871879,96.89662631],[4.53436443,0.02871706,96.89568593],[4.53436391,0.02871534,96.89474649],[4.53436339,0.02871361,96.89380794],[4.53436287,0.02871188,96.89287027],[4.53436235,0.02871016,96.89193344],[4.53436183,0.02870843,96.89099745],[4.53436131,0.02870671,96.89006225],[4.53436078,0.02870498,96.88912782],[4.53436026,0.02870325,96.88819414],[4.53435974,0.02870153,96.88726119],[4.53435922,0.0286998,96.88632893],[4.5343587,0.02869807,96.88539735],[4.53435818,0.02869635,96.88446641],[4.53435766,0.02869462,96.8835361],[4.53435714,0.02869289,96.8826064],[4.53435662,0.02869117,96.88167732],[4.5343561,0.02868944,96.8807489],[4.53435558,0.02868771,96.87982117],[4.53435505,0.02868599,96.87889415],[4.53435453,0.02868426,96.87796788],[4.53435401,0.02868253,96.87704238],[4.53435349,0.02868081,96.87611768],[4.53435297,0.02867908,96.87519382],[4.53435245,0.02867736,96.87427081],[4.53435193,0.02867563,96.87334869],[4.5343514,0.0286739,96.8724275],[4.53435088,0.02867218,96.87150724],[4.53435036,0.02867045,96.87058796],[4.53434984,0.02866872,96.86966962],[4.53434932,0.028667,96.86875219],[4.5343488,0.02866527,96.86783564],[4.53434828,0.02866354,96.86691993],[4.53434775,0.02866182,96.86600505],[4.53434723,0.02866009,96.86509094],[4.53434671,0.02865836,96.86417758],[4.53434619,0.02865664,96.86326494],[4.53434567,0.02865491,96.86235299],[4.53434515,0.02865318,96.86144169],[4.53434463,0.02865146,96.86053104],[4.5343441,0.02864973,96.85962102],[4.53434358,0.02864801,96.85871164],[4.53434306,0.02864628,96.85780287],[4.53434254,0.02864455,96.85689472],[4.53434202,0.02864283,96.85598717],[4.53434149,0.0286411,96.85508022],[4.53434097,0.02863937,96.85417385],[4.53434045,0.02863765,96.85326807],[4.53433993,0.02863592,96.85236287],[4.53433941,0.02863419,96.85145822],[4.53433888,0.02863247,96.85055414],[4.53433836,0.02863074,96.8496506],[4.53433784,0.02862902,96.8487476],[4.53433731,0.02862729,96.84784514],[4.53433679,0.02862556,96.84694321],[4.53433627,0.02862384,96.84604179],[4.53433574,0.02862211,96.84514088],[4.53433522,0.02862038,96.84424047],[4.5343347,0.02861866,96.84334056],[4.53433417,0.02861693,96.84244113],[4.53433365,0.02861521,96.84154218],[4.53433313,0.02861348,96.84064369],[4.5343326,0.02861175,96.83974568],[4.53433208,0.02861003,96.83884811],[4.53433155,0.0286083,96.83795099],[4.53433103,0.02860658,96.83705431],[4.53433051,0.02860485,96.83615806],[4.53432998,0.02860312,96.83526223],[4.53432946,0.0286014,96.83436681],[4.53432893,0.02859967,96.83347181],[4.53432841,0.02859795,96.8325772],[4.53432788,0.02859622,96.83168298],[4.53432735,0.0285945,96.83078914],[4.53432683,0.02859277,96.82989568],[4.5343263,0.02859105,96.82900262],[4.53432578,0.02858932,96.82811003],[4.53432525,0.02858759,96.82721795],[4.53432473,0.02858587,96.82632645],[4.5343242,0.02858414,96.82543558],[4.53432367,0.02858242,96.82454542],[4.53432315,0.02858069,96.82365601],[4.53432262,0.02857897,96.82276741],[4.53432209,0.02857724,96.82187969],[4.53432157,0.02857552,96.8209929],[4.53432104,0.02857379,96.82010705],[4.53432052,0.02857207,96.81922216],[4.53431999,0.02857034,96.81833825],[4.53431946,0.02856862,96.81745533],[4.53431894,0.02856689,96.81657341],[4.53431841,0.02856517,96.81569251],[4.53431789,0.02856344,96.81481264],[4.53431736,0.02856172,96.81393381],[4.53431683,0.02855999,96.81305605],[4.53431631,0.02855827,96.81217935],[4.53431578,0.02855654,96.81130375],[4.53431526,0.02855482,96.81042925],[4.53431473,0.02855309,96.80955586],[4.53431421,0.02855136,96.80868361],[4.53431368,0.02854964,96.8078125],[4.53431316,0.02854791,96.80694255],[4.53431263,0.02854619,96.80607377],[4.53431211,0.02854446,96.80520618],[4.53431158,0.02854274,96.80433979],[4.53431106,0.02854101,96.80347462],[4.53431053,0.02853929,96.80261068],[4.53431001,0.02853756,96.80174797],[4.53430948,0.02853584,96.80088653],[4.53430896,0.02853411,96.80002636],[4.53430843,0.02853239,96.79916747],[4.53430791,0.02853066,96.79830985],[4.53430739,0.02852893,96.79745352],[4.53430686,0.02852721,96.79659845],[4.53430634,0.02852548,96.79574467],[4.53430582,0.02852376,96.79489216],[4.53430529,0.02852203,96.79404093],[4.53430477,0.02852031,96.79319097],[4.53430425,0.02851858,96.79234228],[4.53430372,0.02851686,96.79149486],[4.5343032,0.02851513,96.79064872],[4.53430268,0.0285134,96.78980385],[4.53430215,0.02851168,96.78896025],[4.53430163,0.02850995,96.78811792],[4.53430111,0.02850823,96.78727686],[4.53430059,0.0285065,96.78643707],[4.53430007,0.02850477,96.78559854],[4.53429954,0.02850305,96.78476128],[4.53429902,0.02850132,96.78392529],[4.5342985,0.0284996,96.78309057],[4.53429798,0.02849787,96.78225711],[4.53429746,0.02849614,96.78142492],[4.53429694,0.02849442,96.78059399],[4.53429641,0.02849269,96.77976432],[4.53429589,0.02849097,96.77893592],[4.53429537,0.02848924,96.77810878],[4.53429485,0.02848751,96.77728289],[4.53429433,0.02848579,96.77645827],[4.53429381,0.02848406,96.77563491],[4.53429329,0.02848234,96.77481281],[4.53429277,0.02848061,96.77399197],[4.53429225,0.02847888,96.77317239],[4.53429173,0.02847716,96.77235406],[4.53429121,0.02847543,96.77153699],[4.53429069,0.02847371,96.77072117],[4.53429017,0.02847198,96.76990661],[4.53428965,0.02847025,96.76909331],[4.53428913,0.02846853,96.76828126],[4.53428861,0.0284668,96.76747046],[4.53428809,0.02846507,96.76666091],[4.53428757,0.02846335,96.76585262],[4.53428705,0.02846162,96.76504557],[4.53428653,0.02845989,96.76423978],[4.53428601,0.02845817,96.76343524],[4.53428549,0.02845644,96.76263192],[4.53428497,0.02845472,96.76182979],[4.53428445,0.02845299,96.76102881],[4.53428393,0.02845126,96.76022895],[4.53428341,0.02844954,96.7594302],[4.5342829,0.02844781,96.7586325],[4.53428238,0.02844608,96.75783583],[4.53428186,0.02844436,96.75704017],[4.53428134,0.02844263,96.75624547],[4.53428082,0.0284409,96.75545171],[4.5342803,0.02843918,96.75465886],[4.53427978,0.02843745,96.75386688],[4.53427926,0.02843573,96.75307575],[4.53427874,0.028434,96.75228543],[4.53427822,0.02843227,96.75149589],[4.53427771,0.02843055,96.7507071],[4.53427719,0.02842882,96.74991903],[4.53427667,0.0284271,96.74913165],[4.53427615,0.02842537,96.74834492],[4.53427563,0.02842364,96.74755882],[4.53427511,0.02842192,96.74677332],[4.53427459,0.02842019,96.74598837],[4.53427407,0.02841847,96.74520396],[4.53427355,0.02841674,96.74442006],[4.53427303,0.02841501,96.74363662],[4.53427251,0.02841329,96.74285362],[4.53427198,0.02841156,96.74207103],[4.53427146,0.02840984,96.74128882],[4.53427094,0.02840811,96.74050695],[4.53427042,0.02840639,96.7397254],[4.5342699,0.02840466,96.73894413],[4.53426937,0.02840294,96.73816315],[4.53426885,0.02840121,96.73738243],[4.53426833,0.02839949,96.73660198],[4.53426781,0.02839776,96.73582179],[4.53426728,0.02839604,96.73504185],[4.53426676,0.02839432,96.73426221],[4.53426624,0.02839259,96.73348288],[4.53426571,0.02839087,96.73270391],[4.53426519,0.02838914,96.73192534],[4.53426466,0.02838742,96.7311472],[4.53426414,0.02838569,96.73036952],[4.53426361,0.02838397,96.72959235],[4.53426309,0.02838225,96.72881571],[4.53426256,0.02838052,96.72803965],[4.53426204,0.0283788,96.7272642],[4.53426151,0.02837708,96.72648939],[4.53426098,0.02837535,96.72571527],[4.53426046,0.02837363,96.72494186],[4.53425993,0.0283719,96.72416921],[4.53425941,0.02837018,96.72339734],[4.53425888,0.02836846,96.7226263],[4.53425835,0.02836673,96.72185612],[4.53425783,0.02836501,96.72108683],[4.5342573,0.02836329,96.72031848],[4.53425677,0.02836157,96.71955109],[4.53425625,0.02835984,96.71878471],[4.53425572,0.02835812,96.71801936],[4.53425519,0.0283564,96.71725509],[4.53425467,0.02835467,96.71649193],[4.53425414,0.02835295,96.71572992],[4.53425361,0.02835123,96.71496908],[4.53425309,0.0283495,96.71420947],[4.53425256,0.02834778,96.7134511],[4.53425203,0.02834606,96.71269402],[4.53425151,0.02834433,96.71193827],[4.53425098,0.02834261,96.71118387],[4.53425046,0.02834089,96.71043087],[4.53424993,0.02833917,96.7096793],[4.5342494,0.02833744,96.7089292],[4.53424888,0.02833572,96.70818059],[4.53424835,0.028334,96.70743352],[4.53424783,0.02833227,96.70668802],[4.5342473,0.02833055,96.70594413],[4.53424678,0.02832883,96.70520188],[4.53424625,0.0283271,96.70446131],[4.53424573,0.02832538,96.70372245],[4.5342452,0.02832366,96.70298534],[4.53424468,0.02832193,96.70225001],[4.53424415,0.02832021,96.70151651],[4.53424363,0.02831849,96.70078485],[4.5342431,0.02831676,96.70005508],[4.53424258,0.02831504,96.69932724],[4.53424206,0.02831332,96.69860136],[4.53424153,0.02831159,96.69787747],[4.53424101,0.02830987,96.69715561],[4.53424049,0.02830815,96.69643582],[4.53423997,0.02830642,96.69571813],[4.53423945,0.0283047,96.69500257],[4.53423893,0.02830297,96.69428918],[4.5342384,0.02830125,96.693578],[4.53423788,0.02829953,96.69286905],[4.53423773,0.02829901,96.69265764]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2}},{"geometry":{"coordinates":[[4.53446599,0.02893855,97.1187564],[4.53446547,0.02893682,97.11771999],[4.53446495,0.0289351,97.11668442],[4.53446443,0.02893337,97.11564968],[4.5344639,0.02893164,97.11461577],[4.53446338,0.02892992,97.11358267],[4.53446286,0.02892819,97.11255039],[4.53446234,0.02892647,97.11151891],[4.53446182,0.02892474,97.11048824],[4.5344613,0.02892302,97.10945836],[4.53446078,0.02892129,97.10842927],[4.53446026,0.02891956,97.10740097],[4.53445974,0.02891784,97.10637345],[4.53445922,0.02891611,97.1053467],[4.5344587,0.02891439,97.10432071],[4.53445817,0.02891266,97.10329549],[4.53445765,0.02891094,97.10227103],[4.53445713,0.02890921,97.10124731],[4.53445661,0.02890748,97.10022434],[4.53445609,0.02890576,97.09920211],[4.53445557,0.02890403,97.09818061],[4.53445505,0.02890231,97.09715984],[4.53445453,0.02890058,97.09613979],[4.53445401,0.02889885,97.09512046],[4.53445349,0.02889713,97.09410183],[4.53445297,0.0288954,97.09308392],[4.53445244,0.02889368,97.0920667],[4.53445192,0.02889195,97.09105017],[4.5344514,0.02889023,97.09003433],[4.53445088,0.0288885,97.08901917],[4.53445036,0.02888677,97.08800469],[4.53444984,0.02888505,97.08699087],[4.53444932,0.02888332,97.08597773],[4.5344488,0.0288816,97.08496523],[4.53444828,0.02887987,97.08395339],[4.53444775,0.02887815,97.0829422],[4.53444723,0.02887642,97.08193165],[4.53444671,0.02887469,97.08092173],[4.53444619,0.02887297,97.07991244],[4.53444567,0.02887124,97.07890378],[4.53444515,0.02886952,97.07789573],[4.53444463,0.02886779,97.07688829],[4.5344441,0.02886607,97.07588146],[4.53444358,0.02886434,97.07487523],[4.53444306,0.02886262,97.07386959],[4.53444254,0.02886089,97.07286454],[4.53444202,0.02885916,97.07186007],[4.53444149,0.02885744,97.07085618],[4.53444097,0.02885571,97.06985286],[4.53444045,0.02885399,97.0688501],[4.53443993,0.02885226,97.0678479],[4.53443941,0.02885054,97.06684625],[4.53443888,0.02884881,97.06584515],[4.53443836,0.02884709,97.06484459],[4.53443784,0.02884536,97.06384457],[4.53443732,0.02884363,97.06284507],[4.53443679,0.02884191,97.0618461],[4.53443627,0.02884018,97.06084765],[4.53443575,0.02883846,97.0598497],[4.53443522,0.02883673,97.05885226],[4.5344347,0.02883501,97.05785532],[4.53443418,0.02883328,97.05685888],[4.53443366,0.02883156,97.05586293],[4.53443313,0.02882983,97.05486748],[4.53443261,0.02882811,97.05387255],[4.53443209,0.02882638,97.05287813],[4.53443156,0.02882466,97.05188424],[4.53443104,0.02882293,97.05089089],[4.53443051,0.02882121,97.04989808],[4.53442999,0.02881948,97.04890583],[4.53442947,0.02881776,97.04791413],[4.53442894,0.02881603,97.04692301],[4.53442842,0.02881431,97.04593246],[4.5344279,0.02881258,97.04494249],[4.53442737,0.02881086,97.04395312],[4.53442685,0.02880913,97.04296435],[4.53442632,0.02880741,97.04197619],[4.5344258,0.02880568,97.04098865],[4.53442527,0.02880396,97.04000174],[4.53442475,0.02880223,97.03901546],[4.53442423,0.02880051,97.03802982],[4.5344237,0.02879878,97.03704484],[4.53442318,0.02879706,97.03606051],[4.53442265,0.02879533,97.03507685],[4.53442213,0.02879361,97.03409387],[4.5344216,0.02879188,97.03311157],[4.53442108,0.02879016,97.03212996],[4.53442055,0.02878843,97.03114906],[4.53442003,0.02878671,97.03016886],[4.53441951,0.02878498,97.02918938],[4.53441898,0.02878326,97.02821063],[4.53441846,0.02878153,97.02723261],[4.53441793,0.02877981,97.02625534],[4.53441741,0.02877808,97.02527881],[4.53441688,0.02877636,97.02430304],[4.53441636,0.02877463,97.02332805],[4.53441583,0.02877291,97.02235382],[4.53441531,0.02877118,97.02138038],[4.53441478,0.02876946,97.02040774],[4.53441426,0.02876773,97.01943589],[4.53441373,0.02876601,97.01846485],[4.53441321,0.02876429,97.01749463],[4.53441269,0.02876256,97.01652524],[4.53441216,0.02876084,97.01555668],[4.53441164,0.02875911,97.01458896],[4.53441111,0.02875739,97.01362209],[4.53441059,0.02875566,97.01265608],[4.53441006,0.02875394,97.01169094],[4.53440954,0.02875221,97.01072667],[4.53440901,0.02875049,97.00976329],[4.53440849,0.02874876,97.00880075],[4.53440797,0.02874704,97.00783905],[4.53440744,0.02874531,97.00687819],[4.53440692,0.02874359,97.00591815],[4.53440639,0.02874186,97.00495892],[4.53440587,0.02874013,97.0040005],[4.53440535,0.02873841,97.00304287],[4.53440482,0.02873668,97.00208603],[4.5344043,0.02873496,97.00112997],[4.53440377,0.02873323,97.00017468],[4.53440325,0.02873151,96.99922015],[4.53440273,0.02872978,96.99826637],[4.5344022,0.02872806,96.99731333],[4.53440168,0.02872633,96.99636103],[4.53440115,0.02872461,96.99540945],[4.53440063,0.02872288,96.99445859],[4.5344001,0.02872116,96.99350844],[4.53439958,0.02871943,96.99255899],[4.53439906,0.02871771,96.99161023],[4.53439853,0.02871598,96.99066214],[4.53439801,0.02871426,96.98971473],[4.53439748,0.02871253,96.98876799],[4.53439696,0.02871081,96.98782189],[4.53439644,0.02870908,96.98687645],[4.53439591,0.02870736,96.98593164],[4.53439539,0.02870563,96.98498745],[4.53439486,0.02870391,96.98404389],[4.53439434,0.02870218,96.98310094],[4.53439381,0.02870046,96.98215858],[4.53439329,0.02869873,96.98121683],[4.53439276,0.02869701,96.98027565],[4.53439224,0.02869528,96.97933505],[4.53439171,0.02869356,96.97839501],[4.53439119,0.02869183,96.97745553],[4.53439066,0.02869011,96.9765166],[4.53439014,0.02868838,96.97557821],[4.53438961,0.02868666,96.97464034],[4.53438909,0.02868493,96.973703],[4.53438856,0.02868321,96.97276618],[4.53438804,0.02868148,96.97182992],[4.53438751,0.02867976,96.97089427],[4.53438699,0.02867803,96.96995926],[4.53438646,0.02867631,96.96902496],[4.53438594,0.02867458,96.96809139],[4.53438541,0.02867286,96.96715861],[4.53438489,0.02867113,96.96622665],[4.53438436,0.02866941,96.96529558],[4.53438384,0.02866769,96.96436543],[4.53438331,0.02866596,96.96343624],[4.53438278,0.02866424,96.96250807],[4.53438226,0.02866251,96.96158096],[4.53438173,0.02866079,96.96065494],[4.53438121,0.02865906,96.95973001],[4.53438069,0.02865734,96.95880615],[4.53438016,0.02865561,96.95788334],[4.53437964,0.02865389,96.95696158],[4.53437911,0.02865216,96.95604084],[4.53437859,0.02865043,96.9551211],[4.53437806,0.02864871,96.95420236],[4.53437754,0.02864698,96.95328459],[4.53437702,0.02864526,96.95236779],[4.53437649,0.02864353,96.95145192],[4.53437597,0.02864181,96.95053699],[4.53437544,0.02864008,96.94962296],[4.53437492,0.02863836,96.94870984],[4.5343744,0.02863663,96.94779759],[4.53437387,0.02863491,96.9468862],[4.53437335,0.02863318,96.94597566],[4.53437282,0.02863146,96.94506596],[4.5343723,0.02862973,96.94415707],[4.53437178,0.02862801,96.94324898],[4.53437125,0.02862628,96.94234167],[4.53437073,0.02862455,96.94143513],[4.53437021,0.02862283,96.94052934],[4.53436968,0.0286211,96.93962428],[4.53436916,0.02861938,96.93871995],[4.53436864,0.02861765,96.93781632],[4.53436811,0.02861593,96.93691337],[4.53436759,0.0286142,96.9360111],[4.53436706,0.02861248,96.93510948],[4.53436654,0.02861075,96.9342085],[4.53436602,0.02860903,96.93330815],[4.53436549,0.0286073,96.9324084],[4.53436497,0.02860557,96.93150924],[4.53436445,0.02860385,96.93061066],[4.53436392,0.02860212,96.92971263],[4.5343634,0.0286004,96.92881515],[4.53436287,0.02859867,96.9279182],[4.53436235,0.02859695,96.92702175],[4.53436182,0.02859522,96.92612581],[4.5343613,0.0285935,96.92523034],[4.53436078,0.02859177,96.92433533],[4.53436025,0.02859005,96.92344077],[4.53435973,0.02858832,96.92254664],[4.5343592,0.0285866,96.92165292],[4.53435868,0.02858487,96.9207596],[4.53435815,0.02858315,96.91986667],[4.53435763,0.02858142,96.91897414],[4.5343571,0.0285797,96.91808206],[4.53435658,0.02857797,96.91719048],[4.53435605,0.02857625,96.91629946],[4.53435552,0.02857452,96.91540904],[4.534355,0.0285728,96.91451928],[4.53435447,0.02857107,96.91363022],[4.53435395,0.02856935,96.91274193],[4.53435342,0.02856762,96.91185444],[4.5343529,0.0285659,96.9109678],[4.53435237,0.02856417,96.91008203],[4.53435185,0.02856245,96.90919713],[4.53435132,0.02856072,96.90831311],[4.53435079,0.028559,96.90742997],[4.53435027,0.02855727,96.90654772],[4.53434974,0.02855555,96.90566637],[4.53434922,0.02855382,96.90478592],[4.53434869,0.0285521,96.90390637],[4.53434817,0.02855037,96.90302774],[4.53434764,0.02854865,96.90215003],[4.53434712,0.02854692,96.90127324],[4.53434659,0.0285452,96.90039739],[4.53434607,0.02854347,96.89952247],[4.53434554,0.02854175,96.89864849],[4.53434502,0.02854002,96.89777547],[4.53434449,0.0285383,96.8969034],[4.53434397,0.02853657,96.8960323],[4.53434344,0.02853485,96.89516216],[4.53434292,0.02853312,96.89429299],[4.53434239,0.0285314,96.89342481],[4.53434187,0.02852967,96.89255761],[4.53434134,0.02852795,96.8916914],[4.53434082,0.02852622,96.89082619],[4.5343403,0.0285245,96.88996199],[4.53433977,0.02852277,96.8890988],[4.53433925,0.02852105,96.88823662],[4.53433872,0.02851932,96.88737546],[4.5343382,0.0285176,96.88651533],[4.53433767,0.02851587,96.88565624],[4.53433715,0.02851415,96.88479819],[4.53433663,0.02851242,96.88394118],[4.5343361,0.0285107,96.88308523],[4.53433558,0.02850897,96.88223033],[4.53433506,0.02850725,96.8813765],[4.53433453,0.02850552,96.88052374],[4.53433401,0.0285038,96.87967205],[4.53433348,0.02850207,96.87882145],[4.53433296,0.02850034,96.87797194],[4.53433244,0.02849862,96.87712352],[4.53433192,0.02849689,96.8762762],[4.53433139,0.02849517,96.87542998],[4.53433087,0.02849344,96.87458488],[4.53433035,0.02849172,96.8737409],[4.53432982,0.02848999,96.87289804],[4.5343293,0.02848827,96.87205632],[4.53432878,0.02848654,96.87121572],[4.53432826,0.02848482,96.87037628],[4.53432773,0.02848309,96.86953798],[4.53432721,0.02848136,96.86870083],[4.53432669,0.02847964,96.86786484],[4.53432617,0.02847791,96.86703002],[4.53432564,0.02847619,96.86619638],[4.53432512,0.02847446,96.86536391],[4.5343246,0.02847274,96.86453262],[4.53432408,0.02847101,96.86370253],[4.53432356,0.02846928,96.86287363],[4.53432303,0.02846756,96.86204594],[4.53432251,0.02846583,96.86121945],[4.53432199,0.02846411,96.86039417],[4.53432147,0.02846238,96.85957012],[4.53432095,0.02846066,96.85874729],[4.53432043,0.02845893,96.85792569],[4.53431991,0.0284572,96.85710534],[4.53431939,0.02845548,96.85628622],[4.53431887,0.02845375,96.85546836],[4.53431835,0.02845203,96.85465175],[4.53431783,0.0284503,96.8538364],[4.53431731,0.02844857,96.85302233],[4.53431679,0.02844685,96.85220949],[4.53431626,0.02844512,96.85139788],[4.53431574,0.02844339,96.85058746],[4.53431523,0.02844167,96.84977821],[4.53431471,0.02843994,96.8489701],[4.53431419,0.02843822,96.84816312],[4.53431367,0.02843649,96.84735723],[4.53431315,0.02843476,96.84655241],[4.53431263,0.02843304,96.84574864],[4.53431211,0.02843131,96.84494588],[4.53431159,0.02842958,96.84414413],[4.53431107,0.02842786,96.84334335],[4.53431055,0.02842613,96.84254351],[4.53431003,0.0284244,96.8417446],[4.53430951,0.02842268,96.84094659],[4.53430899,0.02842095,96.84014945],[4.53430847,0.02841923,96.83935316],[4.53430795,0.0284175,96.8385577],[4.53430743,0.02841577,96.83776303],[4.53430691,0.02841405,96.83696915],[4.53430639,0.02841232,96.83617601],[4.53430587,0.02841059,96.8353836],[4.53430535,0.02840887,96.83459189],[4.53430483,0.02840714,96.83380086],[4.53430431,0.02840542,96.83301048],[4.53430379,0.02840369,96.83222073],[4.53430327,0.02840196,96.83143159],[4.53430275,0.02840024,96.83064302],[4.53430223,0.02839851,96.82985501],[4.53430171,0.02839679,96.82906753],[4.53430119,0.02839506,96.82828056],[4.53430066,0.02839334,96.82749407],[4.53430014,0.02839161,96.82670804],[4.53429962,0.02838988,96.82592244],[4.5342991,0.02838816,96.82513724],[4.53429858,0.02838643,96.82435244],[4.53429805,0.02838471,96.82356805],[4.53429753,0.02838298,96.82278407],[4.53429701,0.02838126,96.82200053],[4.53429649,0.02837953,96.82121745],[4.53429596,0.02837781,96.82043485],[4.53429544,0.02837608,96.81965274],[4.53429492,0.02837436,96.81887114],[4.53429439,0.02837263,96.81809007],[4.53429387,0.02837091,96.81730955],[4.53429335,0.02836918,96.8165296],[4.53429282,0.02836746,96.81575023],[4.5342923,0.02836573,96.81497147],[4.53429177,0.02836401,96.81419333],[4.53429125,0.02836228,96.81341582],[4.53429072,0.02836056,96.81263898],[4.5342902,0.02835884,96.81186281],[4.53428967,0.02835711,96.81108733],[4.53428915,0.02835539,96.81031257],[4.53428862,0.02835366,96.80953853],[4.5342881,0.02835194,96.80876525],[4.53428757,0.02835021,96.80799273],[4.53428705,0.02834849,96.807221],[4.53428652,0.02834676,96.80645007],[4.534286,0.02834504,96.80567996],[4.53428547,0.02834332,96.80491069],[4.53428494,0.02834159,96.80414227],[4.53428442,0.02833987,96.80337473],[4.53428389,0.02833814,96.80260809],[4.53428337,0.02833642,96.80184235],[4.53428284,0.0283347,96.80107755],[4.53428231,0.02833297,96.80031369],[4.53428179,0.02833125,96.7995508],[4.53428126,0.02832952,96.7987889],[4.53428074,0.0283278,96.79802799],[4.53428021,0.02832608,96.7972681],[4.53427968,0.02832435,96.79650926],[4.53427916,0.02832263,96.79575146],[4.53427863,0.02832091,96.79499474],[4.5342781,0.02831918,96.79423912],[4.53427758,0.02831746,96.7934846],[4.53427705,0.02831573,96.79273121],[4.53427652,0.02831401,96.79197897],[4.534276,0.02831229,96.79122789],[4.53427547,0.02831056,96.79047799],[4.53427495,0.02830884,96.78972929],[4.53427442,0.02830711,96.78898181],[4.53427389,0.02830539,96.78823556],[4.53427337,0.02830367,96.78749057],[4.53427284,0.02830194,96.78674684],[4.53427232,0.02830022,96.78600441],[4.53427179,0.0282985,96.78526328],[4.53427126,0.02829677,96.78452348],[4.53427074,0.02829505,96.78378502],[4.53427021,0.02829332,96.78304792],[4.53426969,0.0282916,96.7823122],[4.53426916,0.02828988,96.78157788],[4.534269,0.02828936,96.78135871]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}},{"geometry":{"coordinates":[[4.5343034,0.02827875,96.87892692],[4.53430356,0.02827926,96.87914546],[4.53430408,0.02828099,96.87987778],[4.5343046,0.02828272,96.88061162],[4.53430512,0.02828444,96.88134697],[4.53430564,0.02828617,96.88208381],[4.53430616,0.0282879,96.88282214],[4.53430669,0.02828962,96.88356193],[4.53430721,0.02829135,96.88430317],[4.53430773,0.02829308,96.88504585],[4.53430825,0.0282948,96.88578995],[4.53430877,0.02829653,96.88653547],[4.53430929,0.02829826,96.88728238],[4.53430982,0.02829998,96.88803067],[4.53431034,0.02830171,96.88878033],[4.53431086,0.02830343,96.88953135],[4.53431138,0.02830516,96.8902837],[4.53431191,0.02830689,96.89103739],[4.53431243,0.02830861,96.89179238],[4.53431295,0.02831034,96.89254868],[4.53431347,0.02831207,96.89330626],[4.534314,0.02831379,96.89406511],[4.53431452,0.02831552,96.89482521],[4.53431504,0.02831724,96.89558656],[4.53431557,0.02831897,96.89634913],[4.53431609,0.0283207,96.89711292],[4.53431661,0.02832242,96.89787791],[4.53431713,0.02832415,96.89864409],[4.53431766,0.02832587,96.89941144],[4.53431818,0.0283276,96.90017994],[4.5343187,0.02832932,96.90094959],[4.53431923,0.02833105,96.90172037],[4.53431975,0.02833278,96.90249226],[4.53432027,0.0283345,96.90326526],[4.5343208,0.02833623,96.90403934],[4.53432132,0.02833795,96.9048145],[4.53432184,0.02833968,96.90559071],[4.53432237,0.02834141,96.90636797],[4.53432289,0.02834313,96.90714626],[4.53432341,0.02834486,96.90792557],[4.53432394,0.02834658,96.90870588],[4.53432446,0.02834831,96.90948717],[4.53432498,0.02835003,96.91026944],[4.53432551,0.02835176,96.91105267],[4.53432603,0.02835348,96.91183685],[4.53432655,0.02835521,96.91262196],[4.53432708,0.02835694,96.91340798],[4.5343276,0.02835866,96.91419491],[4.53432812,0.02836039,96.91498272],[4.53432865,0.02836211,96.91577141],[4.53432917,0.02836384,96.91656096],[4.53432969,0.02836556,96.91735136],[4.53433022,0.02836729,96.91814259],[4.53433074,0.02836902,96.91893463],[4.53433126,0.02837074,96.91972748],[4.53433179,0.02837247,96.92052112],[4.53433231,0.02837419,96.92131553],[4.53433283,0.02837592,96.9221107],[4.53433335,0.02837764,96.92290662],[4.53433388,0.02837937,96.92370327],[4.5343344,0.0283811,96.92450064],[4.53433492,0.02838282,96.92529871],[4.53433544,0.02838455,96.92609748],[4.53433597,0.02838627,96.92689692],[4.53433649,0.028388,96.92769706],[4.53433701,0.02838973,96.92849791],[4.53433753,0.02839145,96.92929946],[4.53433806,0.02839318,96.93010173],[4.53433858,0.0283949,96.93090473],[4.5343391,0.02839663,96.93170846],[4.53433962,0.02839836,96.93251294],[4.53434014,0.02840008,96.93331816],[4.53434066,0.02840181,96.93412415],[4.53434119,0.02840353,96.9349309],[4.53434171,0.02840526,96.93573842],[4.53434223,0.02840698,96.93654673],[4.53434275,0.02840871,96.93735583],[4.53434327,0.02841044,96.93816573],[4.53434379,0.02841216,96.93897644],[4.53434432,0.02841389,96.93978796],[4.53434484,0.02841561,96.9406003],[4.53434536,0.02841734,96.94141348],[4.53434588,0.02841907,96.9422275],[4.5343464,0.02842079,96.94304236],[4.53434692,0.02842252,96.94385808],[4.53434744,0.02842425,96.94467467],[4.53434797,0.02842597,96.94549213],[4.53434849,0.0284277,96.94631047],[4.53434901,0.02842942,96.94712969],[4.53434953,0.02843115,96.94794982],[4.53435005,0.02843287,96.94877085],[4.53435057,0.0284346,96.94959279],[4.53435109,0.02843633,96.95041565],[4.53435162,0.02843805,96.95123945],[4.53435214,0.02843978,96.95206418],[4.53435266,0.0284415,96.95288985],[4.53435318,0.02844323,96.95371649],[4.5343537,0.02844496,96.95454412],[4.53435422,0.02844668,96.95537277],[4.53435474,0.02844841,96.9562025],[4.53435527,0.02845013,96.95703332],[4.53435579,0.02845186,96.9578653],[4.53435631,0.02845359,96.95869845],[4.53435683,0.02845531,96.95953282],[4.53435736,0.02845704,96.96036845],[4.53435788,0.02845876,96.96120538],[4.5343584,0.02846049,96.96204364],[4.53435892,0.02846221,96.96288328],[4.53435945,0.02846394,96.96372432],[4.53435997,0.02846566,96.96456682],[4.53436049,0.02846739,96.9654108],[4.53436102,0.02846911,96.96625631],[4.53436154,0.02847084,96.96710338],[4.53436207,0.02847256,96.96795205],[4.53436259,0.02847429,96.96880233],[4.53436312,0.02847601,96.96965418],[4.53436364,0.02847774,96.97050757],[4.53436417,0.02847946,96.97136247],[4.53436469,0.02848119,96.97221886],[4.53436522,0.02848291,96.97307669],[4.53436574,0.02848464,96.97393594],[4.53436627,0.02848636,96.97479657],[4.5343668,0.02848808,96.97565856],[4.53436732,0.02848981,96.97652188],[4.53436785,0.02849153,96.97738648],[4.53436838,0.02849326,96.97825235],[4.5343689,0.02849498,96.97911944],[4.53436943,0.0284967,96.97998773],[4.53436996,0.02849843,96.98085719],[4.53437049,0.02850015,96.98172778],[4.53437101,0.02850188,96.98259947],[4.53437154,0.0285036,96.98347224],[4.53437207,0.02850532,96.98434604],[4.5343726,0.02850705,96.98522085],[4.53437313,0.02850877,96.98609664],[4.53437365,0.02851049,96.98697338],[4.53437418,0.02851222,96.98785103],[4.53437471,0.02851394,96.98872956],[4.53437524,0.02851566,96.98960894],[4.53437577,0.02851739,96.99048914],[4.5343763,0.02851911,96.99137013],[4.53437682,0.02852084,96.99225187],[4.53437735,0.02852256,96.99313434],[4.53437788,0.02852428,96.9940175],[4.53437841,0.02852601,96.99490132],[4.53437894,0.02852773,96.99578578],[4.53437947,0.02852945,96.99667083],[4.53437999,0.02853118,96.99755645],[4.53438052,0.0285329,96.9984426],[4.53438105,0.02853462,96.99932926],[4.53438158,0.02853635,97.00021638],[4.53438211,0.02853807,97.00110395],[4.53438263,0.02853979,97.00199193],[4.53438316,0.02854152,97.00288028],[4.53438369,0.02854324,97.00376899],[4.53438422,0.02854497,97.004658],[4.53438474,0.02854669,97.0055473],[4.53438527,0.02854841,97.00643685],[4.5343858,0.02855014,97.00732661],[4.53438632,0.02855186,97.00821657],[4.53438685,0.02855358,97.00910668],[4.53438738,0.02855531,97.00999691],[4.5343879,0.02855703,97.01088725],[4.53438843,0.02855876,97.01177768],[4.53438896,0.02856048,97.01266824],[4.53438948,0.02856221,97.01355895],[4.53439001,0.02856393,97.01444982],[4.53439053,0.02856565,97.01534088],[4.53439106,0.02856738,97.01623213],[4.53439158,0.0285691,97.0171236],[4.53439211,0.02857083,97.01801531],[4.53439263,0.02857255,97.01890727],[4.53439316,0.02857428,97.0197995],[4.53439368,0.028576,97.02069202],[4.5343942,0.02857773,97.02158485],[4.53439473,0.02857945,97.022478],[4.53439525,0.02858117,97.02337149],[4.53439578,0.0285829,97.02426534],[4.5343963,0.02858462,97.02515957],[4.53439682,0.02858635,97.0260542],[4.53439735,0.02858807,97.02694924],[4.53439787,0.0285898,97.02784471],[4.53439839,0.02859152,97.02874064],[4.53439892,0.02859325,97.02963702],[4.53439944,0.02859497,97.0305339],[4.53439997,0.0285967,97.03143128],[4.53440049,0.02859842,97.03232918],[4.53440101,0.02860015,97.03322762],[4.53440153,0.02860187,97.03412661],[4.53440206,0.0286036,97.03502618],[4.53440258,0.02860532,97.03592634],[4.5344031,0.02860705,97.03682711],[4.53440363,0.02860877,97.03772852],[4.53440415,0.0286105,97.03863056],[4.53440467,0.02861222,97.03953328],[4.5344052,0.02861395,97.04043667],[4.53440572,0.02861567,97.04134076],[4.53440624,0.0286174,97.04224557],[4.53440677,0.02861912,97.04315112],[4.53440729,0.02862085,97.04405742],[4.53440781,0.02862257,97.04496449],[4.53440834,0.0286243,97.04587235],[4.53440886,0.02862602,97.04678102],[4.53440938,0.02862775,97.04769052],[4.53440991,0.02862947,97.04860085],[4.53441043,0.0286312,97.04951205],[4.53441096,0.02863292,97.05042413],[4.53441148,0.02863465,97.0513371],[4.534412,0.02863637,97.05225098],[4.53441253,0.0286381,97.0531658],[4.53441305,0.02863982,97.05408157],[4.53441358,0.02864155,97.05499831],[4.5344141,0.02864327,97.05591603],[4.53441463,0.02864499,97.05683475],[4.53441515,0.02864672,97.0577545],[4.53441568,0.02864844,97.05867529],[4.5344162,0.02865017,97.05959713],[4.53441673,0.02865189,97.06052005],[4.53441725,0.02865362,97.06144406],[4.53441778,0.02865534,97.06236913],[4.5344183,0.02865707,97.06329522],[4.53441883,0.02865879,97.06422224],[4.53441935,0.02866051,97.06515015],[4.53441988,0.02866224,97.06607888],[4.5344204,0.02866396,97.06700837],[4.53442093,0.02866569,97.06793854],[4.53442146,0.02866741,97.06886935],[4.53442198,0.02866914,97.06980072],[4.53442251,0.02867086,97.0707326],[4.53442303,0.02867259,97.07166492],[4.53442356,0.02867431,97.07259761],[4.53442409,0.02867603,97.07353064],[4.53442461,0.02867776,97.07446396],[4.53442514,0.02867948,97.07539759],[4.53442566,0.02868121,97.0763315],[4.53442619,0.02868293,97.07726569],[4.53442671,0.02868466,97.07820015],[4.53442724,0.02868638,97.07913487],[4.53442776,0.02868811,97.08006985],[4.53442829,0.02868983,97.08100507],[4.53442881,0.02869156,97.08194053],[4.53442933,0.02869328,97.08287622],[4.53442986,0.02869501,97.08381213],[4.53443038,0.02869673,97.08474825],[4.53443091,0.02869845,97.08568457],[4.53443143,0.02870018,97.08662108],[4.53443195,0.02870191,97.08755778],[4.53443248,0.02870363,97.08849466],[4.534433,0.02870536,97.0894317],[4.53443352,0.02870708,97.09036891],[4.53443405,0.02870881,97.09130626],[4.53443457,0.02871053,97.09224376],[4.53443509,0.02871226,97.09318139],[4.53443561,0.02871398,97.09411915],[4.53443614,0.02871571,97.09505703],[4.53443666,0.02871743,97.09599501],[4.53443718,0.02871916,97.0969331],[4.5344377,0.02872088,97.09787128],[4.53443822,0.02872261,97.09880954],[4.53443874,0.02872434,97.09974787],[4.53443927,0.02872606,97.10068627],[4.53443979,0.02872779,97.10162473],[4.53444031,0.02872951,97.10256324],[4.53444083,0.02873124,97.10350179],[4.53444135,0.02873297,97.10444038],[4.53444187,0.02873469,97.10537899],[4.53444239,0.02873642,97.10631761],[4.53444291,0.02873815,97.10725624],[4.53444343,0.02873987,97.10819491],[4.53444395,0.0287416,97.10913367],[4.53444447,0.02874333,97.11007257],[4.53444498,0.02874505,97.11101165],[4.5344455,0.02874678,97.1119509],[4.53444602,0.02874851,97.11289036],[4.53444654,0.02875023,97.11383004],[4.53444706,0.02875196,97.11476996],[4.53444758,0.02875369,97.11571013],[4.53444809,0.02875541,97.11665057],[4.53444861,0.02875714,97.11759129],[4.53444913,0.02875887,97.11853232],[4.53444965,0.02876059,97.11947367],[4.53445017,0.02876232,97.12041536],[4.53445068,0.02876405,97.1213574],[4.5344512,0.02876577,97.12229982],[4.53445172,0.0287675,97.12324262],[4.53445224,0.02876923,97.12418582],[4.53445275,0.02877096,97.12512945],[4.53445327,0.02877268,97.12607351],[4.53445379,0.02877441,97.12701803],[4.5344543,0.02877614,97.12796302],[4.53445482,0.02877787,97.1289085],[4.53445534,0.02877959,97.12985448],[4.53445585,0.02878132,97.13080099],[4.53445637,0.02878305,97.13174804],[4.53445689,0.02878477,97.13269564],[4.53445741,0.0287865,97.13364381],[4.53445792,0.02878823,97.13459257],[4.53445844,0.02878996,97.13554194],[4.53445896,0.02879168,97.13649193],[4.53445947,0.02879341,97.13744256],[4.53445999,0.02879514,97.13839384],[4.53446051,0.02879687,97.1393458],[4.53446102,0.02879859,97.14029844],[4.53446154,0.02880032,97.14125179],[4.53446206,0.02880205,97.14220586],[4.53446257,0.02880378,97.14316068],[4.53446309,0.0288055,97.14411624],[4.53446361,0.02880723,97.14507258],[4.53446412,0.02880896,97.14602971],[4.53446464,0.02881068,97.14698764],[4.53446516,0.02881241,97.1479464],[4.53446568,0.02881414,97.14890599],[4.53446619,0.02881587,97.14986644],[4.53446671,0.02881759,97.15082776],[4.53446723,0.02881932,97.15178996],[4.53446775,0.02882105,97.15275307],[4.53446826,0.02882278,97.15371711],[4.53446878,0.0288245,97.15468207],[4.5344693,0.02882623,97.155648],[4.53446982,0.02882796,97.15661488],[4.53447034,0.02882968,97.1575827],[4.53447085,0.02883141,97.15855148],[4.53447137,0.02883314,97.15952119],[4.53447189,0.02883486,97.16049183],[4.53447241,0.02883659,97.1614634],[4.53447293,0.02883832,97.16243589],[4.53447345,0.02884005,97.1634093],[4.53447397,0.02884177,97.16438362],[4.53447449,0.0288435,97.16535884],[4.53447501,0.02884523,97.16633496],[4.53447552,0.02884695,97.16731198],[4.53447604,0.02884868,97.16828989],[4.53447656,0.02885041,97.16926868],[4.53447708,0.02885213,97.17024835],[4.5344776,0.02885386,97.17122889],[4.53447812,0.02885559,97.1722103],[4.53447864,0.02885731,97.17319257],[4.53447916,0.02885904,97.17417569],[4.53447968,0.02886077,97.17515967],[4.5344802,0.02886249,97.17614449],[4.53448072,0.02886422,97.17713015],[4.53448124,0.02886594,97.17811664],[4.53448176,0.02886767,97.17910397],[4.53448228,0.0288694,97.18009211],[4.5344828,0.02887112,97.18108108],[4.53448332,0.02887285,97.18207085],[4.53448385,0.02887458,97.18306144],[4.53448437,0.0288763,97.18405282],[4.53448489,0.02887803,97.185045],[4.53448541,0.02887976,97.18603797],[4.53448593,0.02888148,97.18703173],[4.53448645,0.02888321,97.18802626],[4.53448697,0.02888493,97.18902157],[4.53448749,0.02888666,97.19001765],[4.53448801,0.02888839,97.19101449],[4.53448853,0.02889011,97.19201209],[4.53448905,0.02889184,97.19301044],[4.53448958,0.02889357,97.19400954],[4.5344901,0.02889529,97.19500938],[4.53449062,0.02889702,97.19600995],[4.53449114,0.02889874,97.19701126],[4.53449166,0.02890047,97.19801329],[4.53449218,0.0289022,97.19901604],[4.5344927,0.02890392,97.20001951],[4.53449323,0.02890565,97.20102368],[4.53449375,0.02890738,97.20202856],[4.53449427,0.0289091,97.20303413],[4.53449479,0.02891083,97.2040404],[4.53449531,0.02891255,97.20504735],[4.53449583,0.02891428,97.20605499],[4.53449635,0.02891601,97.2070633],[4.53449688,0.02891773,97.20807228],[4.5344974,0.02891946,97.20908193],[4.53449792,0.02892119,97.21009224],[4.53449844,0.02892291,97.2111032],[4.53449896,0.02892464,97.21211481],[4.53449949,0.02892636,97.21312707],[4.53450001,0.02892809,97.21413996]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":1,"type":"shoulder","predecessorId":1}},{"geometry":{"coordinates":[[4.534316,0.02827486,96.87892692],[4.53431616,0.02827538,96.87914546],[4.53431668,0.0282771,96.87987778],[4.53431721,0.02827883,96.88061162],[4.53431773,0.02828055,96.88134697],[4.53431826,0.02828228,96.88208381],[4.53431879,0.028284,96.88282214],[4.53431932,0.02828573,96.88356193],[4.53431984,0.02828745,96.88430317],[4.53432037,0.02828918,96.88504585],[4.5343209,0.02829091,96.88578995],[4.53432142,0.02829263,96.88653547],[4.53432195,0.02829436,96.88728238],[4.53432248,0.02829608,96.88803067],[4.53432301,0.02829781,96.88878033],[4.53432353,0.02829953,96.88953135],[4.53432406,0.02830126,96.8902837],[4.53432459,0.02830298,96.89103739],[4.53432512,0.02830471,96.89179238],[4.53432564,0.02830643,96.89254868],[4.53432617,0.02830816,96.89330626],[4.5343267,0.02830988,96.89406511],[4.53432723,0.02831161,96.89482521],[4.53432776,0.02831333,96.89558656],[4.53432828,0.02831506,96.89634913],[4.53432881,0.02831678,96.89711292],[4.53432934,0.02831851,96.89787791],[4.53432987,0.02832023,96.89864409],[4.5343304,0.02832195,96.89941144],[4.53433092,0.02832368,96.90017994],[4.53433145,0.0283254,96.90094959],[4.53433198,0.02832713,96.90172037],[4.53433251,0.02832885,96.90249226],[4.53433304,0.02833058,96.90326526],[4.53433356,0.0283323,96.90403934],[4.53433409,0.02833403,96.9048145],[4.53433462,0.02833575,96.90559071],[4.53433515,0.02833748,96.90636797],[4.53433567,0.0283392,96.90714626],[4.5343362,0.02834093,96.90792557],[4.53433673,0.02834265,96.90870588],[4.53433726,0.02834438,96.90948717],[4.53433778,0.0283461,96.91026944],[4.53433831,0.02834783,96.91105267],[4.53433884,0.02834955,96.91183685],[4.53433937,0.02835128,96.91262196],[4.53433989,0.028353,96.91340798],[4.53434042,0.02835472,96.91419491],[4.53434095,0.02835645,96.91498272],[4.53434148,0.02835817,96.91577141],[4.534342,0.0283599,96.91656096],[4.53434253,0.02836162,96.91735136],[4.53434306,0.02836335,96.91814259],[4.53434358,0.02836507,96.91893463],[4.53434411,0.0283668,96.91972748],[4.53434463,0.02836852,96.92052112],[4.53434516,0.02837025,96.92131553],[4.53434569,0.02837197,96.9221107],[4.53434621,0.0283737,96.92290662],[4.53434674,0.02837542,96.92370327],[4.53434726,0.02837715,96.92450064],[4.53434779,0.02837887,96.92529871],[4.53434831,0.0283806,96.92609748],[4.53434884,0.02838232,96.92689692],[4.53434936,0.02838405,96.92769706],[4.53434989,0.02838577,96.92849791],[4.53435041,0.0283875,96.92929946],[4.53435094,0.02838922,96.93010173],[4.53435146,0.02839095,96.93090473],[4.53435199,0.02839268,96.93170846],[4.53435251,0.0283944,96.93251294],[4.53435303,0.02839613,96.93331816],[4.53435356,0.02839785,96.93412415],[4.53435408,0.02839958,96.9349309],[4.5343546,0.0284013,96.93573842],[4.53435513,0.02840303,96.93654673],[4.53435565,0.02840475,96.93735583],[4.53435617,0.02840648,96.93816573],[4.5343567,0.02840821,96.93897644],[4.53435722,0.02840993,96.93978796],[4.53435774,0.02841166,96.9406003],[4.53435826,0.02841338,96.94141348],[4.53435879,0.02841511,96.9422275],[4.53435931,0.02841683,96.94304236],[4.53435983,0.02841856,96.94385808],[4.53436035,0.02842029,96.94467467],[4.53436088,0.02842201,96.94549213],[4.5343614,0.02842374,96.94631047],[4.53436192,0.02842546,96.94712969],[4.53436244,0.02842719,96.94794982],[4.53436296,0.02842892,96.94877085],[4.53436348,0.02843064,96.94959279],[4.534364,0.02843237,96.95041565],[4.53436452,0.02843409,96.95123945],[4.53436505,0.02843582,96.95206418],[4.53436557,0.02843755,96.95288985],[4.53436609,0.02843927,96.95371649],[4.53436661,0.028441,96.95454412],[4.53436713,0.02844273,96.95537277],[4.53436765,0.02844445,96.9562025],[4.53436817,0.02844618,96.95703332],[4.53436869,0.0284479,96.9578653],[4.53436921,0.02844963,96.95869845],[4.53436973,0.02845136,96.95953282],[4.53437025,0.02845308,96.96036845],[4.53437077,0.02845481,96.96120538],[4.53437129,0.02845654,96.96204364],[4.53437181,0.02845826,96.96288328],[4.53437233,0.02845999,96.96372432],[4.53437285,0.02846171,96.96456682],[4.53437337,0.02846344,96.9654108],[4.53437389,0.02846517,96.96625631],[4.53437441,0.02846689,96.96710338],[4.53437493,0.02846862,96.96795205],[4.53437545,0.02847035,96.96880233],[4.53437597,0.02847207,96.96965418],[4.53437649,0.0284738,96.97050757],[4.53437701,0.02847552,96.97136247],[4.53437753,0.02847725,96.97221886],[4.53437805,0.02847898,96.97307669],[4.53437857,0.0284807,96.97393594],[4.53437909,0.02848243,96.97479657],[4.53437961,0.02848415,96.97565856],[4.53438014,0.02848588,96.97652188],[4.53438066,0.02848761,96.97738648],[4.53438118,0.02848933,96.97825235],[4.5343817,0.02849106,96.97911944],[4.53438222,0.02849278,96.97998773],[4.53438274,0.02849451,96.98085719],[4.53438326,0.02849623,96.98172778],[4.53438378,0.02849796,96.98259947],[4.5343843,0.02849969,96.98347224],[4.53438483,0.02850141,96.98434604],[4.53438535,0.02850314,96.98522085],[4.53438587,0.02850486,96.98609664],[4.53438639,0.02850659,96.98697338],[4.53438691,0.02850831,96.98785103],[4.53438743,0.02851004,96.98872956],[4.53438795,0.02851176,96.98960894],[4.53438848,0.02851349,96.99048914],[4.534389,0.02851521,96.99137013],[4.53438952,0.02851694,96.99225187],[4.53439004,0.02851867,96.99313434],[4.53439056,0.02852039,96.9940175],[4.53439109,0.02852212,96.99490132],[4.53439161,0.02852384,96.99578578],[4.53439213,0.02852557,96.99667083],[4.53439265,0.02852729,96.99755645],[4.53439317,0.02852902,96.9984426],[4.5343937,0.02853074,96.99932926],[4.53439422,0.02853247,97.00021638],[4.53439474,0.02853419,97.00110395],[4.53439526,0.02853592,97.00199193],[4.53439579,0.02853764,97.00288028],[4.53439631,0.02853937,97.00376899],[4.53439683,0.02854109,97.004658],[4.53439735,0.02854282,97.0055473],[4.53439788,0.02854454,97.00643685],[4.5343984,0.02854627,97.00732661],[4.53439892,0.02854799,97.00821657],[4.53439945,0.02854972,97.00910668],[4.53439997,0.02855144,97.00999691],[4.53440049,0.02855317,97.01088725],[4.53440101,0.02855489,97.01177768],[4.53440154,0.02855662,97.01266824],[4.53440206,0.02855834,97.01355895],[4.53440258,0.02856007,97.01444982],[4.53440311,0.02856179,97.01534088],[4.53440363,0.02856352,97.01623213],[4.53440415,0.02856524,97.0171236],[4.53440468,0.02856697,97.01801531],[4.5344052,0.02856869,97.01890727],[4.53440572,0.02857041,97.0197995],[4.53440625,0.02857214,97.02069202],[4.53440677,0.02857386,97.02158485],[4.53440729,0.02857559,97.022478],[4.53440782,0.02857731,97.02337149],[4.53440834,0.02857904,97.02426534],[4.53440886,0.02858076,97.02515957],[4.53440939,0.02858249,97.0260542],[4.53440991,0.02858421,97.02694924],[4.53441044,0.02858594,97.02784471],[4.53441096,0.02858766,97.02874064],[4.53441148,0.02858938,97.02963702],[4.53441201,0.02859111,97.0305339],[4.53441253,0.02859283,97.03143128],[4.53441306,0.02859456,97.03232918],[4.53441358,0.02859628,97.03322762],[4.5344141,0.02859801,97.03412661],[4.53441463,0.02859973,97.03502618],[4.53441515,0.02860146,97.03592634],[4.53441568,0.02860318,97.03682711],[4.5344162,0.0286049,97.03772852],[4.53441673,0.02860663,97.03863056],[4.53441725,0.02860835,97.03953328],[4.53441778,0.02861008,97.04043667],[4.5344183,0.0286118,97.04134076],[4.53441882,0.02861353,97.04224557],[4.53441935,0.02861525,97.04315112],[4.53441987,0.02861697,97.04405742],[4.5344204,0.0286187,97.04496449],[4.53442092,0.02862042,97.04587235],[4.53442145,0.02862215,97.04678102],[4.53442197,0.02862387,97.04769052],[4.5344225,0.0286256,97.04860085],[4.53442302,0.02862732,97.04951205],[4.53442355,0.02862904,97.05042413],[4.53442408,0.02863077,97.0513371],[4.5344246,0.02863249,97.05225098],[4.53442513,0.02863422,97.0531658],[4.53442565,0.02863594,97.05408157],[4.53442618,0.02863766,97.05499831],[4.5344267,0.02863939,97.05591603],[4.53442723,0.02864111,97.05683475],[4.53442775,0.02864284,97.0577545],[4.53442828,0.02864456,97.05867529],[4.53442881,0.02864629,97.05959713],[4.53442933,0.02864801,97.06052005],[4.53442986,0.02864973,97.06144406],[4.53443038,0.02865146,97.06236913],[4.53443091,0.02865318,97.06329522],[4.53443144,0.02865491,97.06422224],[4.53443196,0.02865663,97.06515015],[4.53443249,0.02865835,97.06607888],[4.53443301,0.02866008,97.06700837],[4.53443354,0.0286618,97.06793854],[4.53443406,0.02866353,97.06886935],[4.53443459,0.02866525,97.06980072],[4.53443511,0.02866698,97.0707326],[4.53443564,0.0286687,97.07166492],[4.53443616,0.02867042,97.07259761],[4.53443669,0.02867215,97.07353064],[4.53443721,0.02867387,97.07446396],[4.53443774,0.0286756,97.07539759],[4.53443826,0.02867732,97.0763315],[4.53443878,0.02867905,97.07726569],[4.53443931,0.02868077,97.07820015],[4.53443983,0.0286825,97.07913487],[4.53444035,0.02868422,97.08006985],[4.53444088,0.02868595,97.08100507],[4.5344414,0.02868767,97.08194053],[4.53444192,0.0286894,97.08287622],[4.53444244,0.02869113,97.08381213],[4.53444297,0.02869285,97.08474825],[4.53444349,0.02869458,97.08568457],[4.53444401,0.0286963,97.08662108],[4.53444453,0.02869803,97.08755778],[4.53444505,0.02869975,97.08849466],[4.53444557,0.02870148,97.0894317],[4.5344461,0.0287032,97.09036891],[4.53444662,0.02870493,97.09130626],[4.53444714,0.02870666,97.09224376],[4.53444766,0.02870838,97.09318139],[4.53444818,0.02871011,97.09411915],[4.53444871,0.02871183,97.09505703],[4.53444923,0.02871356,97.09599501],[4.53444975,0.02871528,97.0969331],[4.53445027,0.02871701,97.09787128],[4.53445079,0.02871873,97.09880954],[4.53445132,0.02872046,97.09974787],[4.53445184,0.02872219,97.10068627],[4.53445236,0.02872391,97.10162473],[4.53445288,0.02872564,97.10256324],[4.53445341,0.02872736,97.10350179],[4.53445393,0.02872909,97.10444038],[4.53445445,0.02873081,97.10537899],[4.53445497,0.02873254,97.10631761],[4.5344555,0.02873426,97.10725624],[4.53445602,0.02873599,97.10819491],[4.53445654,0.02873771,97.10913367],[4.53445706,0.02873944,97.11007257],[4.53445759,0.02874117,97.11101165],[4.53445811,0.02874289,97.1119509],[4.53445863,0.02874462,97.11289036],[4.53445915,0.02874634,97.11383004],[4.53445968,0.02874807,97.11476996],[4.5344602,0.02874979,97.11571013],[4.53446072,0.02875152,97.11665057],[4.53446125,0.02875324,97.11759129],[4.53446177,0.02875497,97.11853232],[4.53446229,0.02875669,97.11947367],[4.53446282,0.02875842,97.12041536],[4.53446334,0.02876014,97.1213574],[4.53446386,0.02876187,97.12229982],[4.53446439,0.02876359,97.12324262],[4.53446491,0.02876532,97.12418582],[4.53446543,0.02876705,97.12512945],[4.53446596,0.02876877,97.12607351],[4.53446648,0.0287705,97.12701803],[4.534467,0.02877222,97.12796302],[4.53446753,0.02877395,97.1289085],[4.53446805,0.02877567,97.12985448],[4.53446857,0.0287774,97.13080099],[4.5344691,0.02877912,97.13174804],[4.53446962,0.02878085,97.13269564],[4.53447014,0.02878257,97.13364381],[4.53447067,0.0287843,97.13459257],[4.53447119,0.02878602,97.13554194],[4.53447172,0.02878775,97.13649193],[4.53447224,0.02878947,97.13744256],[4.53447276,0.0287912,97.13839384],[4.53447329,0.02879293,97.1393458],[4.53447381,0.02879465,97.14029844],[4.53447433,0.02879638,97.14125179],[4.53447486,0.0287981,97.14220586],[4.53447538,0.02879983,97.14316068],[4.53447591,0.02880155,97.14411624],[4.53447643,0.02880328,97.14507258],[4.53447695,0.028805,97.14602971],[4.53447748,0.02880673,97.14698764],[4.534478,0.02880845,97.1479464],[4.53447852,0.02881018,97.14890599],[4.53447905,0.0288119,97.14986644],[4.53447957,0.02881363,97.15082776],[4.5344801,0.02881535,97.15178996],[4.53448062,0.02881708,97.15275307],[4.53448114,0.02881881,97.15371711],[4.53448167,0.02882053,97.15468207],[4.53448219,0.02882226,97.155648],[4.53448272,0.02882398,97.15661488],[4.53448324,0.02882571,97.1575827],[4.53448376,0.02882743,97.15855148],[4.53448429,0.02882916,97.15952119],[4.53448481,0.02883088,97.16049183],[4.53448533,0.02883261,97.1614634],[4.53448586,0.02883433,97.16243589],[4.53448638,0.02883606,97.1634093],[4.5344869,0.02883779,97.16438362],[4.53448743,0.02883951,97.16535884],[4.53448795,0.02884124,97.16633496],[4.53448847,0.02884296,97.16731198],[4.534489,0.02884469,97.16828989],[4.53448952,0.02884641,97.16926868],[4.53449004,0.02884814,97.17024835],[4.53449057,0.02884986,97.17122889],[4.53449109,0.02885159,97.1722103],[4.53449161,0.02885332,97.17319257],[4.53449214,0.02885504,97.17417569],[4.53449266,0.02885677,97.17515967],[4.53449318,0.02885849,97.17614449],[4.53449371,0.02886022,97.17713015],[4.53449423,0.02886195,97.17811664],[4.53449475,0.02886367,97.17910397],[4.53449527,0.0288654,97.18009211],[4.5344958,0.02886712,97.18108108],[4.53449632,0.02886885,97.18207085],[4.53449684,0.02887057,97.18306144],[4.53449736,0.0288723,97.18405282],[4.53449789,0.02887403,97.185045],[4.53449841,0.02887575,97.18603797],[4.53449893,0.02887748,97.18703173],[4.53449945,0.0288792,97.18802626],[4.53449998,0.02888093,97.18902157],[4.5345005,0.02888266,97.19001765],[4.53450102,0.02888438,97.19101449],[4.53450154,0.02888611,97.19201209],[4.53450207,0.02888784,97.19301044],[4.53450259,0.02888956,97.19400954],[4.53450311,0.02889129,97.19500938],[4.53450363,0.02889301,97.19600995],[4.53450415,0.02889474,97.19701126],[4.53450468,0.02889647,97.19801329],[4.5345052,0.02889819,97.19901604],[4.53450572,0.02889992,97.20001951],[4.53450624,0.02890164,97.20102368],[4.53450676,0.02890337,97.20202856],[4.53450729,0.0289051,97.20303413],[4.53450781,0.02890682,97.2040404],[4.53450833,0.02890855,97.20504735],[4.53450885,0.02891028,97.20605499],[4.53450937,0.028912,97.2070633],[4.5345099,0.02891373,97.20807228],[4.53451042,0.02891546,97.20908193],[4.53451094,0.02891718,97.21009224],[4.53451146,0.02891891,97.2111032],[4.53451198,0.02892063,97.21211481],[4.5345125,0.02892236,97.21312707],[4.53451303,0.02892409,97.21413996]],"type":"LineString"},"type":"feature","properties":{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":2,"type":"none","predecessorId":2}},{"geometry":{"coordinates":[[4.53698326,0.03877713,97.94868424],[4.5369827,0.03877541,97.94843076],[4.53698213,0.03877369,97.9481755],[4.53698156,0.03877197,97.94791847],[4.536981,0.03877025,97.94765964],[4.53698043,0.03876853,97.94739903],[4.53697986,0.03876681,97.94713663],[4.5369793,0.0387651,97.94687242],[4.53697873,0.03876338,97.94660641],[4.53697816,0.03876166,97.94633859],[4.53697759,0.03875994,97.94606896],[4.53697702,0.03875822,97.94579753],[4.53697645,0.03875651,97.94552428],[4.53697588,0.03875479,97.94524923],[4.53697532,0.03875307,97.94497236],[4.53697475,0.03875135,97.94469369],[4.53697418,0.03874964,97.94441321],[4.53697361,0.03874792,97.94413093],[4.53697304,0.0387462,97.94384685],[4.53697248,0.03874448,97.94356098],[4.53697191,0.03874276,97.94327332],[4.53697134,0.03874105,97.94298388],[4.53697078,0.03873933,97.94269266],[4.53697021,0.03873761,97.94239967],[4.53696964,0.03873589,97.94210492],[4.53696908,0.03873417,97.94180854],[4.53696852,0.03873246,97.94151118],[4.53696795,0.03873074,97.94121384],[4.53696739,0.03872902,97.94091763],[4.53696683,0.0387273,97.94062366],[4.53696627,0.03872558,97.94033302],[4.53696571,0.03872386,97.94004682],[4.53696515,0.03872214,97.93976603],[4.5369646,0.03872042,97.93949152],[4.53696404,0.0387187,97.93922413],[4.53696349,0.03871698,97.93896471],[4.53696293,0.03871526,97.93871412],[4.53696238,0.03871354,97.93847321],[4.53696182,0.03871182,97.93824282],[4.53696127,0.0387101,97.9380238],[4.53696072,0.03870838,97.93781699],[4.53696016,0.03870666,97.93762325],[4.53695961,0.03870494,97.93744342],[4.53695906,0.03870322,97.93727834],[4.53695851,0.0387015,97.93712885],[4.53695796,0.03869978,97.9369958],[4.53695741,0.03869806,97.93688003],[4.53695685,0.03869634,97.93678238],[4.5369563,0.03869462,97.93670369],[4.53695575,0.0386929,97.93664479],[4.5369552,0.0386912,97.93660679]],"type":"LineString"},"type":"feature","properties":{"successorId":-4,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"3000170","id":-4,"type":"none","predecessorId":-6}},{"geometry":{"coordinates":[[4.53702697,0.03876651,97.94868424],[4.53702641,0.03876479,97.94843076],[4.53702584,0.03876307,97.9481755],[4.53702528,0.03876135,97.94791847],[4.53702471,0.03875963,97.94765964],[4.53702414,0.03875792,97.94739903],[4.53702357,0.0387562,97.94713663],[4.53702301,0.03875448,97.94687242],[4.53702244,0.03875276,97.94660641],[4.53702187,0.03875104,97.94633859],[4.5370213,0.03874933,97.94606896],[4.53702073,0.03874761,97.94579753],[4.53702016,0.03874589,97.94552428],[4.53701959,0.03874417,97.94524923],[4.53701902,0.03874246,97.94497236],[4.53701846,0.03874074,97.94469369],[4.53701789,0.03873902,97.94441321],[4.53701732,0.0387373,97.94413093],[4.53701675,0.03873559,97.94384685],[4.53701618,0.03873387,97.94356098],[4.53701561,0.03873215,97.94327332],[4.53701505,0.03873043,97.94298388],[4.53701448,0.03872871,97.94269266],[4.53701391,0.038727,97.94239967],[4.53701335,0.03872528,97.94210492],[4.53701278,0.03872356,97.94180854],[4.53701222,0.03872184,97.94151118],[4.53701166,0.03872012,97.94121384],[4.53701109,0.0387184,97.94091763],[4.53701053,0.03871668,97.94062366],[4.53700997,0.03871496,97.94033302],[4.53700941,0.03871325,97.94004682],[4.53700886,0.03871153,97.93976603],[4.5370083,0.03870981,97.93949152],[4.53700774,0.03870808,97.93922413],[4.53700719,0.03870636,97.93896471],[4.53700663,0.03870464,97.93871412],[4.53700608,0.03870292,97.93847321],[4.53700552,0.0387012,97.93824282],[4.53700497,0.03869948,97.9380238],[4.53700442,0.03869776,97.93781699],[4.53700386,0.03869604,97.93762325],[4.53700331,0.03869432,97.93744342],[4.53700276,0.0386926,97.93727834],[4.53700221,0.03869088,97.93712885],[4.53700165,0.03868916,97.9369958],[4.5370011,0.03868744,97.93688003],[4.53700055,0.03868572,97.93678238],[4.537,0.038684,97.93670369],[4.53699944,0.03868228,97.93664479],[4.53699889,0.03868058,97.93660679]],"type":"LineString"},"type":"feature","properties":{"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"3000170","id":-3,"type":"shoulder","predecessorId":-5}},{"geometry":{"coordinates":[[4.53703049,0.03876565,97.95928925],[4.53702993,0.03876393,97.95905473],[4.53702936,0.03876221,97.95881908],[4.5370288,0.0387605,97.9585822],[4.53702824,0.03875878,97.958344],[4.53702767,0.03875706,97.9581044],[4.53702711,0.03875534,97.95786329],[4.53702654,0.03875362,97.95762059],[4.53702598,0.0387519,97.9573762],[4.53702541,0.03875018,97.95713004],[4.53702485,0.03874846,97.95688202],[4.53702428,0.03874675,97.95663204],[4.53702372,0.03874503,97.95638002],[4.53702315,0.03874331,97.95612586],[4.53702259,0.03874159,97.95586948],[4.53702202,0.03873987,97.95561078],[4.53702145,0.03873815,97.95534969],[4.53702089,0.03873644,97.95508611],[4.53702032,0.03873472,97.95481996],[4.53701975,0.038733,97.95455114],[4.53701919,0.03873128,97.95427958],[4.53701862,0.03872956,97.95400518],[4.53701806,0.03872785,97.95372786],[4.53701749,0.03872613,97.95344754],[4.53701693,0.03872441,97.95316412],[4.53701636,0.03872269,97.95287765],[4.53701579,0.03872097,97.95258867],[4.53701523,0.03871925,97.9522981],[4.53701467,0.03871754,97.95200696],[4.5370141,0.03871582,97.95171624],[4.53701354,0.0387141,97.95142696],[4.53701298,0.03871238,97.95114013],[4.53701241,0.03871066,97.95085675],[4.53701185,0.03870894,97.95057784],[4.53701129,0.03870722,97.95030439],[4.53701073,0.0387055,97.95003741],[4.53701017,0.03870379,97.94977792],[4.5370096,0.03870207,97.94952691],[4.53700904,0.03870035,97.9492854],[4.53700848,0.03869863,97.94905439],[4.53700792,0.03869691,97.94883488],[4.53700736,0.03869519,97.94862789],[4.5370068,0.03869347,97.94843441],[4.53700624,0.03869175,97.94825546],[4.53700568,0.03869004,97.94809203],[4.53700512,0.03868832,97.94794514],[4.53700456,0.0386866,97.94781578],[4.537004,0.03868488,97.94770496],[4.53700344,0.03868316,97.94761368],[4.53700288,0.03868144,97.94754296],[4.53700232,0.03867974,97.94749415]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"3000170","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-4}},{"geometry":{"coordinates":[[4.5370613,0.03875817,98.05220106],[4.53706074,0.03875645,98.0520896],[4.53706019,0.03875473,98.05197706],[4.53705963,0.03875301,98.05186334],[4.53705908,0.03875129,98.05174836],[4.53705852,0.03874956,98.05163202],[4.53705797,0.03874784,98.05151424],[4.53705741,0.03874612,98.05139491],[4.53705685,0.0387444,98.05127396],[4.5370563,0.03874268,98.05115128],[4.53705574,0.03874096,98.05102679],[4.53705518,0.03873924,98.0509004],[4.53705462,0.03873752,98.05077202],[4.53705407,0.0387358,98.05064155],[4.53705351,0.03873408,98.05050892],[4.53705295,0.03873236,98.05037403],[4.53705239,0.03873064,98.05023679],[4.53705184,0.03872892,98.05009712],[4.53705128,0.0387272,98.04995493],[4.53705072,0.03872548,98.04981013],[4.53705016,0.03872376,98.04966263],[4.53704961,0.03872204,98.04951236],[4.53704905,0.03872032,98.04935921],[4.53704849,0.0387186,98.04920311],[4.53704793,0.03871688,98.04904398],[4.53704738,0.03871516,98.04888184],[4.53704682,0.03871344,98.04871725],[4.53704626,0.03871172,98.04855112],[4.53704571,0.03871,98.04838447],[4.53704515,0.03870827,98.0482183],[4.5370446,0.03870655,98.04805363],[4.53704404,0.03870483,98.04789145],[4.53704349,0.03870311,98.04773278],[4.53704293,0.03870139,98.04757862],[4.53704238,0.03869967,98.04742998],[4.53704183,0.03869795,98.04728787],[4.53704127,0.03869623,98.0471533],[4.53704072,0.03869451,98.04702727],[4.53704017,0.03869279,98.04691078],[4.53703961,0.03869106,98.04680485],[4.53703906,0.03868934,98.04671048],[4.53703851,0.03868762,98.04662867],[4.53703796,0.0386859,98.04656043],[4.53703741,0.03868418,98.04650677],[4.53703685,0.03868246,98.04646869],[4.5370363,0.03868074,98.04644719],[4.53703575,0.03867902,98.04644329],[4.5370352,0.03867729,98.04645797],[4.53703465,0.03867557,98.04649226],[4.53703409,0.03867385,98.04654714],[4.53703355,0.03867215,98.04662279]],"type":"LineString"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"3000170","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3}}],"type":"FeatureCollection"}
\ No newline at end of file
diff --git a/asset/media/3d_preview/junctions.json b/asset/media/3d_preview/junctions.json
deleted file mode 100644
index b1b5242..0000000
--- a/asset/media/3d_preview/junctions.json
+++ /dev/null
@@ -1 +0,0 @@
-{"features":[{"geometry":{"coordinates":[[[[4.53274319,0.02360983,94.66552576],[4.53274263,0.02360812,94.66462634],[4.53274206,0.02360641,94.66376111],[4.53274149,0.0236047,94.6629287],[4.53274093,0.02360299,94.66212772],[4.53274036,0.02360128,94.66135681],[4.5327398,0.02359957,94.66061459],[4.53273923,0.02359786,94.65989968],[4.53273866,0.02359615,94.65921071],[4.5327381,0.02359444,94.6585463],[4.53273753,0.02359273,94.65790507],[4.53273696,0.02359102,94.65728564],[4.5327364,0.02358931,94.65668665],[4.53273583,0.0235876,94.65610671],[4.53273526,0.02358589,94.65554444],[4.53273469,0.02358418,94.65499848],[4.53273413,0.02358247,94.65446744],[4.53273356,0.02358076,94.65394995],[4.53273299,0.02357905,94.65344464],[4.53273243,0.02357734,94.65295012],[4.53273186,0.02357563,94.65246502],[4.53273129,0.02357392,94.65198796],[4.53273072,0.02357221,94.65151757],[4.53273016,0.02357049,94.65105247],[4.53272959,0.02356878,94.65059128],[4.53272902,0.02356707,94.65013263],[4.53272846,0.02356536,94.64967502],[4.53272789,0.02356365,94.64921649],[4.53272732,0.02356194,94.64875495],[4.53272675,0.02356023,94.64828831],[4.53272619,0.02355852,94.64781448],[4.53272562,0.02355681,94.64733138],[4.53272505,0.0235551,94.64683692],[4.53272448,0.02355339,94.64632901],[4.53272392,0.02355167,94.64580557],[4.53272335,0.02354996,94.64526451],[4.53272278,0.02354825,94.64470375],[4.53272221,0.02354654,94.64412119],[4.53272165,0.02354483,94.64351475],[4.53272108,0.02354312,94.64288235],[4.53272051,0.02354141,94.64222189],[4.53271994,0.0235397,94.64153129],[4.53271938,0.02353798,94.64080846],[4.53271881,0.02353627,94.64005132],[4.53271824,0.02353456,94.63925777],[4.53271767,0.02353285,94.63842574],[4.53271711,0.02353114,94.63755314],[4.53271654,0.02352942,94.63663787],[4.53271597,0.02352771,94.63567786],[4.53271541,0.023526,94.63467101],[4.53271484,0.02352429,94.63361523],[4.53271484,0.02352429,94.63361523],[4.53274593,0.02351381,94.72737248],[4.53274593,0.02351381,94.72737249],[4.53274649,0.02351552,94.72828278],[4.53274706,0.02351723,94.72914417],[4.53274763,0.02351895,94.72995873],[4.53274819,0.02352066,94.73072855],[4.53274876,0.02352237,94.73145573],[4.53274932,0.02352408,94.73214234],[4.53274989,0.02352579,94.73279048],[4.53275046,0.0235275,94.73340223],[4.53275102,0.02352922,94.73397967],[4.53275159,0.02353093,94.7345249],[4.53275216,0.02353264,94.73504],[4.53275272,0.02353435,94.73552706],[4.53275329,0.02353606,94.73598817],[4.53275385,0.02353777,94.7364254],[4.53275442,0.02353949,94.73684085],[4.53275499,0.0235412,94.73723661],[4.53275555,0.02354291,94.73761477],[4.53275612,0.02354462,94.7379774],[4.53275668,0.02354633,94.73832659],[4.53275725,0.02354804,94.73866444],[4.53275782,0.02354976,94.73899303],[4.53275838,0.02355147,94.73931444],[4.53275895,0.02355318,94.73963077],[4.53275951,0.02355489,94.73994409],[4.53276008,0.0235566,94.74025651],[4.53276065,0.02355831,94.74056997],[4.53276121,0.02356002,94.74088599],[4.53276178,0.02356174,94.74120593],[4.53276234,0.02356345,94.74153118],[4.53276291,0.02356516,94.7418631],[4.53276348,0.02356687,94.74220308],[4.53276404,0.02356858,94.74255249],[4.53276461,0.02357029,94.74291271],[4.53276517,0.023572,94.74328511],[4.53276574,0.02357372,94.74367107],[4.53276631,0.02357543,94.74407197],[4.53276687,0.02357714,94.74448919],[4.53276744,0.02357885,94.74492409],[4.532768,0.02358056,94.74537805],[4.53276857,0.02358227,94.74585246],[4.53276913,0.02358398,94.74634869],[4.5327697,0.0235857,94.74686811],[4.53277027,0.02358741,94.7474121],[4.53277083,0.02358912,94.74798204],[4.5327714,0.02359083,94.74857931],[4.53277196,0.02359254,94.74920527],[4.53277253,0.02359425,94.74986131],[4.53277309,0.02359596,94.7505488],[4.53277366,0.02359767,94.75126912],[4.53277422,0.02359938,94.75202365],[4.53274319,0.02360983,94.66552576]]],[[[4.53277422,0.02359938,94.75202365],[4.53277366,0.02359767,94.75126912],[4.53277309,0.02359596,94.7505488],[4.53277253,0.02359425,94.74986131],[4.53277196,0.02359254,94.74920527],[4.5327714,0.02359083,94.74857931],[4.53277083,0.02358912,94.74798204],[4.53277027,0.02358741,94.7474121],[4.5327697,0.0235857,94.74686811],[4.53276913,0.02358398,94.74634869],[4.53276857,0.02358227,94.74585246],[4.532768,0.02358056,94.74537805],[4.53276744,0.02357885,94.74492409],[4.53276687,0.02357714,94.74448919],[4.53276631,0.02357543,94.74407197],[4.53276574,0.02357372,94.74367107],[4.53276517,0.023572,94.74328511],[4.53276461,0.02357029,94.74291271],[4.53276404,0.02356858,94.74255249],[4.53276348,0.02356687,94.74220308],[4.53276291,0.02356516,94.7418631],[4.53276234,0.02356345,94.74153118],[4.53276178,0.02356174,94.74120593],[4.53276121,0.02356002,94.74088599],[4.53276065,0.02355831,94.74056997],[4.53276008,0.0235566,94.74025651],[4.53275951,0.02355489,94.73994409],[4.53275895,0.02355318,94.73963077],[4.53275838,0.02355147,94.73931444],[4.53275782,0.02354976,94.73899303],[4.53275725,0.02354804,94.73866444],[4.53275668,0.02354633,94.73832659],[4.53275612,0.02354462,94.7379774],[4.53275555,0.02354291,94.73761477],[4.53275499,0.0235412,94.73723661],[4.53275442,0.02353949,94.73684085],[4.53275385,0.02353777,94.7364254],[4.53275329,0.02353606,94.73598817],[4.53275272,0.02353435,94.73552706],[4.53275216,0.02353264,94.73504],[4.53275159,0.02353093,94.7345249],[4.53275102,0.02352922,94.73397967],[4.53275046,0.0235275,94.73340223],[4.53274989,0.02352579,94.73279048],[4.53274932,0.02352408,94.73214234],[4.53274876,0.02352237,94.73145573],[4.53274819,0.02352066,94.73072855],[4.53274763,0.02351895,94.72995873],[4.53274706,0.02351723,94.72914417],[4.53274649,0.02351552,94.72828278],[4.53274593,0.02351381,94.72737249],[4.53274593,0.02351381,94.72737248],[4.53277639,0.02350354,94.81923811],[4.53277639,0.02350354,94.81923811],[4.53277696,0.02350525,94.82001087],[4.53277752,0.02350697,94.8207347],[4.53277809,0.02350868,94.82141171],[4.53277866,0.02351039,94.82204398],[4.53277922,0.0235121,94.8226336],[4.53277979,0.02351381,94.82318265],[4.53278036,0.02351552,94.82369322],[4.53278092,0.02351723,94.8241674],[4.53278149,0.02351894,94.82460727],[4.53278206,0.02352066,94.82501492],[4.53278262,0.02352237,94.82539244],[4.53278319,0.02352408,94.82574192],[4.53278375,0.02352579,94.82606543],[4.53278432,0.0235275,94.82636508],[4.53278489,0.02352921,94.82664294],[4.53278545,0.02353092,94.8269011],[4.53278602,0.02353263,94.82714165],[4.53278659,0.02353435,94.82736667],[4.53278715,0.02353606,94.82757826],[4.53278772,0.02353777,94.8277785],[4.53278829,0.02353948,94.82796947],[4.53278885,0.02354119,94.82815326],[4.53278942,0.0235429,94.82833197],[4.53278999,0.02354462,94.82850767],[4.53279055,0.02354633,94.82868245],[4.53279112,0.02354804,94.82885828],[4.53279169,0.02354975,94.82903666],[4.53279225,0.02355146,94.82921897],[4.53279282,0.02355317,94.82940657],[4.53279339,0.02355488,94.82960085],[4.53279395,0.0235566,94.82980317],[4.53279452,0.02355831,94.83001493],[4.53279508,0.02356002,94.83023749],[4.53279565,0.02356173,94.83047223],[4.53279622,0.02356344,94.83072053],[4.53279678,0.02356515,94.83098376],[4.53279735,0.02356687,94.8312633],[4.53279792,0.02356858,94.83156052],[4.53279848,0.02357029,94.83187681],[4.53279905,0.023572,94.83221353],[4.53279962,0.02357371,94.83257207],[4.53280018,0.02357542,94.83295381],[4.53280075,0.02357714,94.8333601],[4.53280131,0.02357885,94.83379235],[4.53280188,0.02358056,94.83425191],[4.53280245,0.02358227,94.83474017],[4.53280301,0.02358398,94.8352585],[4.53280358,0.0235857,94.83580828],[4.53280414,0.02358741,94.83639089],[4.53280471,0.02358912,94.8370077],[4.53277422,0.02359938,94.75202365]]]],"type":"MultiPolygon"},"type":"feature","properties":{"JunctionId":"11"}},{"geometry":{"coordinates":[[[[4.53708662,0.03875202,98.1285378],[4.5370862,0.03875026,98.12897522],[4.53708579,0.03874851,98.12942538],[4.53708537,0.03874675,98.12988747],[4.53708496,0.038745,98.13036073],[4.53708455,0.03874324,98.13084435],[4.53708413,0.03874149,98.13133755],[4.53708372,0.03873973,98.13183955],[4.53708331,0.03873798,98.13234956],[4.53708289,0.03873622,98.1328668],[4.53708248,0.03873447,98.13339049],[4.53708207,0.03873271,98.13391985],[4.53708166,0.03873096,98.13445409],[4.53708124,0.0387292,98.13499245],[4.53708083,0.03872745,98.13553414],[4.53708042,0.03872569,98.13607838],[4.53708,0.03872394,98.1366244],[4.53707959,0.03872218,98.13717142],[4.53707917,0.03872043,98.13771868],[4.53707875,0.03871867,98.13826539],[4.53707833,0.03871692,98.13881079],[4.53707791,0.03871517,98.13935411],[4.53707749,0.03871341,98.13989458],[4.53707707,0.03871166,98.14043142],[4.53707665,0.03870991,98.14096387],[4.53707622,0.03870816,98.14149129],[4.5370758,0.0387064,98.14201355],[4.53707537,0.03870465,98.14253101],[4.53707494,0.0387029,98.14304408],[4.53707451,0.03870115,98.14355317],[4.53707408,0.0386994,98.14405872],[4.53707365,0.03869765,98.14456112],[4.53707321,0.0386959,98.14506081],[4.53707278,0.03869415,98.14555819],[4.53707235,0.0386924,98.14605367],[4.53707191,0.03869065,98.14654766],[4.53707148,0.0386889,98.14704058],[4.53707104,0.03868715,98.14753284],[4.53707061,0.0386854,98.14802484],[4.53707017,0.03868365,98.14851698],[4.53706974,0.0386819,98.14900968],[4.53706931,0.03868015,98.14950334],[4.53706887,0.0386784,98.14999836],[4.53706844,0.03867665,98.15049514],[4.53706801,0.0386749,98.15099409],[4.53706758,0.03867315,98.15149559],[4.53706715,0.0386714,98.15200006],[4.53706672,0.03866964,98.15250788],[4.5370663,0.03866789,98.15301945],[4.53706587,0.03866614,98.15353517],[4.53706545,0.03866439,98.15405543],[4.53709748,0.0386566,98.24683369],[4.53709791,0.03865835,98.24638414],[4.53709833,0.0386601,98.24593454],[4.53709875,0.03866186,98.24548486],[4.53709917,0.03866361,98.24503506],[4.53709959,0.03866536,98.24458509],[4.53710001,0.03866712,98.24413494],[4.53710044,0.03866887,98.24368455],[4.53710086,0.03867062,98.24323389],[4.53710128,0.03867237,98.24278293],[4.5371017,0.03867413,98.24233163],[4.53710212,0.03867588,98.24187995],[4.53710254,0.03867763,98.24142786],[4.53710297,0.03867939,98.24097532],[4.53710339,0.03868114,98.24052229],[4.53710381,0.03868289,98.24006873],[4.53710423,0.03868465,98.23961461],[4.53710465,0.0386864,98.2391599],[4.53710507,0.03868815,98.23870455],[4.5371055,0.03868991,98.23824853],[4.53710592,0.03869166,98.2377918],[4.53710634,0.03869341,98.23733433],[4.53710676,0.03869517,98.23687608],[4.53710718,0.03869692,98.23641701],[4.5371076,0.03869867,98.23595709],[4.53710803,0.03870043,98.23549627],[4.53710845,0.03870218,98.23503461],[4.53710887,0.03870393,98.23457249],[4.53710929,0.03870569,98.23411035],[4.53710971,0.03870744,98.23364868],[4.53711013,0.03870919,98.23318791],[4.53711055,0.03871095,98.23272853],[4.53711098,0.0387127,98.23227098],[4.5371114,0.03871445,98.23181572],[4.53711182,0.03871621,98.23136323],[4.53711224,0.03871796,98.23091395],[4.53711266,0.03871971,98.23046836],[4.53711308,0.03872147,98.2300269],[4.53711351,0.03872322,98.22959005],[4.53711393,0.03872497,98.22915825],[4.53711435,0.03872672,98.22873198],[4.53711477,0.03872848,98.22831169],[4.53711519,0.03873023,98.22789784],[4.53711561,0.03873198,98.2274909],[4.53711603,0.03873374,98.22709132],[4.53711646,0.03873549,98.22669957],[4.53711688,0.03873724,98.22631611],[4.5371173,0.038739,98.22594139],[4.53711772,0.03874075,98.22557588],[4.53711814,0.0387425,98.22522003],[4.53711856,0.03874426,98.22487432],[4.53708662,0.03875202,98.1285378]]],[[[4.53711856,0.03874426,98.22487432],[4.53711814,0.0387425,98.22522003],[4.53711772,0.03874075,98.22557588],[4.5371173,0.038739,98.22594139],[4.53711688,0.03873724,98.22631611],[4.53711646,0.03873549,98.22669957],[4.53711603,0.03873374,98.22709132],[4.53711561,0.03873198,98.2274909],[4.53711519,0.03873023,98.22789784],[4.53711477,0.03872848,98.22831169],[4.53711435,0.03872672,98.22873198],[4.53711393,0.03872497,98.22915825],[4.53711351,0.03872322,98.22959005],[4.53711308,0.03872147,98.2300269],[4.53711266,0.03871971,98.23046836],[4.53711224,0.03871796,98.23091395],[4.53711182,0.03871621,98.23136323],[4.5371114,0.03871445,98.23181572],[4.53711098,0.0387127,98.23227098],[4.53711055,0.03871095,98.23272853],[4.53711013,0.03870919,98.23318791],[4.53710971,0.03870744,98.23364868],[4.53710929,0.03870569,98.23411035],[4.53710887,0.03870393,98.23457249],[4.53710845,0.03870218,98.23503461],[4.53710803,0.03870043,98.23549627],[4.5371076,0.03869867,98.23595709],[4.53710718,0.03869692,98.23641701],[4.53710676,0.03869517,98.23687608],[4.53710634,0.03869341,98.23733433],[4.53710592,0.03869166,98.2377918],[4.5371055,0.03868991,98.23824853],[4.53710507,0.03868815,98.23870455],[4.53710465,0.0386864,98.2391599],[4.53710423,0.03868465,98.23961461],[4.53710381,0.03868289,98.24006873],[4.53710339,0.03868114,98.24052229],[4.53710297,0.03867939,98.24097532],[4.53710254,0.03867763,98.24142786],[4.53710212,0.03867588,98.24187995],[4.5371017,0.03867413,98.24233163],[4.53710128,0.03867237,98.24278293],[4.53710086,0.03867062,98.24323389],[4.53710044,0.03866887,98.24368455],[4.53710001,0.03866712,98.24413494],[4.53709959,0.03866536,98.24458509],[4.53709917,0.03866361,98.24503506],[4.53709875,0.03866186,98.24548486],[4.53709833,0.0386601,98.24593454],[4.53709791,0.03865835,98.24638414],[4.53709748,0.0386566,98.24683369],[4.53712849,0.03864905,98.33663665],[4.53712892,0.03865081,98.33626707],[4.53712934,0.03865256,98.33589746],[4.53712976,0.03865431,98.33552776],[4.53713019,0.03865607,98.33515796],[4.53713061,0.03865782,98.334788],[4.53713104,0.03865957,98.33441786],[4.53713146,0.03866132,98.3340475],[4.53713188,0.03866308,98.33367688],[4.53713231,0.03866483,98.33330596],[4.53713273,0.03866658,98.33293471],[4.53713315,0.03866834,98.3325631],[4.53713358,0.03867009,98.33219107],[4.537134,0.03867184,98.33181861],[4.53713442,0.0386736,98.33144567],[4.53713485,0.03867535,98.33107221],[4.53713527,0.0386771,98.3306982],[4.53713569,0.03867885,98.3303236],[4.53713612,0.03868061,98.32994837],[4.53713654,0.03868236,98.32957249],[4.53713697,0.03868411,98.3291959],[4.53713739,0.03868587,98.32881858],[4.53713781,0.03868762,98.32844049],[4.53713824,0.03868937,98.32806159],[4.53713866,0.03869112,98.32768184],[4.53713908,0.03869288,98.32730122],[4.53713951,0.03869463,98.32691975],[4.53713993,0.03869638,98.32653783],[4.53714035,0.03869814,98.32615591],[4.53714078,0.03869989,98.32577446],[4.5371412,0.03870164,98.32539393],[4.53714162,0.03870339,98.32501478],[4.53714205,0.03870515,98.32463748],[4.53714247,0.0387069,98.32426249],[4.53714289,0.03870865,98.32389026],[4.53714332,0.03871041,98.32352126],[4.53714374,0.03871216,98.32315595],[4.53714416,0.03871391,98.32279479],[4.53714459,0.03871566,98.32243824],[4.53714501,0.03871742,98.32208675],[4.53714543,0.03871917,98.3217408],[4.53714586,0.03872092,98.32140084],[4.53714628,0.03872268,98.32106734],[4.5371467,0.03872443,98.32074074],[4.53714713,0.03872618,98.32042152],[4.53714755,0.03872794,98.32011014],[4.53714797,0.03872969,98.31980705],[4.5371484,0.03873144,98.31951272],[4.53714882,0.03873319,98.3192276],[4.53714924,0.03873495,98.31895216],[4.53714967,0.0387367,98.31868686],[4.53711856,0.03874426,98.22487432]]]],"type":"MultiPolygon"},"type":"feature","properties":{"JunctionId":"1"}},{"geometry":{"coordinates":[[[[4.53423773,0.02829901,96.69265764],[4.53423721,0.02829729,96.69167893],[4.53423669,0.02829556,96.69070198],[4.53423617,0.02829384,96.68972667],[4.53423565,0.02829212,96.68875289],[4.53423513,0.02829039,96.6877805],[4.53423461,0.02828867,96.68680938],[4.53423409,0.02828695,96.68583942],[4.53423357,0.02828522,96.6848705],[4.53423305,0.0282835,96.68390249],[4.53423253,0.02828177,96.68293526],[4.53423201,0.02828005,96.68196871],[4.53423149,0.02827832,96.68100271],[4.53423097,0.0282766,96.68003713],[4.53423044,0.02827487,96.67907186],[4.53422992,0.02827315,96.67810678],[4.5342294,0.02827143,96.67714175],[4.53422888,0.0282697,96.67617667],[4.53422836,0.02826798,96.67521141],[4.53422784,0.02826625,96.67424585],[4.53422732,0.02826453,96.67327985],[4.5342268,0.0282628,96.6723133],[4.53422628,0.02826108,96.67134607],[4.53422575,0.02825935,96.67037802],[4.53422523,0.02825763,96.66940902],[4.53422471,0.02825591,96.66843895],[4.53422419,0.02825418,96.66746769],[4.53422367,0.02825246,96.66649509],[4.53422315,0.02825073,96.66552104],[4.53422263,0.02824901,96.66454541],[4.5342221,0.02824729,96.66356805],[4.53422158,0.02824556,96.66258886],[4.53422106,0.02824384,96.6616077],[4.53422054,0.02824212,96.66062444],[4.53422002,0.0282404,96.65963895],[4.5342195,0.02823868,96.6586511],[4.53421898,0.02823698,96.65767692],[4.53425006,0.02822734,96.7520086],[4.53425058,0.02822904,96.75282983],[4.5342511,0.02823076,96.75366213],[4.53425163,0.02823248,96.75449203],[4.53425216,0.0282342,96.75531964],[4.53425269,0.02823593,96.75614509],[4.53425321,0.02823765,96.75696852],[4.53425374,0.02823937,96.75779004],[4.53425427,0.0282411,96.7586098],[4.53425479,0.02824282,96.75942791],[4.53425532,0.02824454,96.76024452],[4.53425585,0.02824627,96.76105973],[4.53425637,0.02824799,96.76187369],[4.5342569,0.02824971,96.76268652],[4.53425743,0.02825144,96.76349835],[4.53425795,0.02825316,96.76430931],[4.53425848,0.02825489,96.76511953],[4.53425901,0.02825661,96.76592913],[4.53425953,0.02825833,96.76673825],[4.53426006,0.02826006,96.767547],[4.53426059,0.02826178,96.76835552],[4.53426111,0.0282635,96.76916393],[4.53426164,0.02826523,96.76997234],[4.53426217,0.02826695,96.77078088],[4.53426269,0.02826868,96.77158967],[4.53426322,0.0282704,96.77239883],[4.53426375,0.02827212,96.77320848],[4.53426427,0.02827385,96.77401874],[4.5342648,0.02827557,96.77482974],[4.53426532,0.0282773,96.77564159],[4.53426585,0.02827902,96.77645442],[4.53426638,0.02828074,96.77726835],[4.5342669,0.02828247,96.7780835],[4.53426743,0.02828419,96.77889999],[4.53426795,0.02828591,96.77971794],[4.53426848,0.02828764,96.78053747],[4.534269,0.02828936,96.78135871],[4.53423773,0.02829901,96.69265764]]],[[[4.534269,0.02828936,96.78135871],[4.53426848,0.02828764,96.78053747],[4.53426795,0.02828591,96.77971794],[4.53426743,0.02828419,96.77889999],[4.5342669,0.02828247,96.7780835],[4.53426638,0.02828074,96.77726835],[4.53426585,0.02827902,96.77645442],[4.53426532,0.0282773,96.77564159],[4.5342648,0.02827557,96.77482974],[4.53426427,0.02827385,96.77401874],[4.53426375,0.02827212,96.77320848],[4.53426322,0.0282704,96.77239883],[4.53426269,0.02826868,96.77158967],[4.53426217,0.02826695,96.77078088],[4.53426164,0.02826523,96.76997234],[4.53426111,0.0282635,96.76916393],[4.53426059,0.02826178,96.76835552],[4.53426006,0.02826006,96.767547],[4.53425953,0.02825833,96.76673825],[4.53425901,0.02825661,96.76592913],[4.53425848,0.02825489,96.76511953],[4.53425795,0.02825316,96.76430931],[4.53425743,0.02825144,96.76349835],[4.5342569,0.02824971,96.76268652],[4.53425637,0.02824799,96.76187369],[4.53425585,0.02824627,96.76105973],[4.53425532,0.02824454,96.76024452],[4.53425479,0.02824282,96.75942791],[4.53425427,0.0282411,96.7586098],[4.53425374,0.02823937,96.75779004],[4.53425321,0.02823765,96.75696852],[4.53425269,0.02823593,96.75614509],[4.53425216,0.0282342,96.75531964],[4.53425163,0.02823248,96.75449203],[4.5342511,0.02823076,96.75366213],[4.53425058,0.02822904,96.75282983],[4.53425006,0.02822734,96.7520086],[4.53428075,0.02821782,96.84518629],[4.53428127,0.02821951,96.84584184],[4.5342818,0.02822124,96.84650571],[4.53428233,0.02822296,96.84716717],[4.53428285,0.02822469,96.84782635],[4.53428338,0.02822641,96.84848336],[4.53428391,0.02822814,96.84913835],[4.53428444,0.02822986,96.84979143],[4.53428497,0.02823159,96.85044275],[4.53428549,0.02823331,96.85109242],[4.53428602,0.02823504,96.85174057],[4.53428655,0.02823676,96.85238734],[4.53428708,0.02823849,96.85303284],[4.5342876,0.02824021,96.85367722],[4.53428813,0.02824194,96.85432059],[4.53428866,0.02824366,96.85496309],[4.53428919,0.02824539,96.85560485],[4.53428971,0.02824711,96.85624599],[4.53429024,0.02824883,96.85688664],[4.53429077,0.02825056,96.85752693],[4.53429129,0.02825228,96.85816698],[4.53429182,0.02825401,96.85880692],[4.53429235,0.02825573,96.85944685],[4.53429287,0.02825746,96.86008692],[4.5342934,0.02825918,96.86072723],[4.53429393,0.02826091,96.86136791],[4.53429445,0.02826263,96.86200908],[4.53429498,0.02826436,96.86265086],[4.53429551,0.02826608,96.86329337],[4.53429603,0.02826781,96.86393673],[4.53429656,0.02826953,96.86458107],[4.53429709,0.02827126,96.86522651],[4.53429761,0.02827298,96.86587316],[4.53429814,0.02827471,96.86652116],[4.53429867,0.02827643,96.86717061],[4.53429919,0.02827816,96.86782164],[4.53429972,0.02827988,96.86847438],[4.534269,0.02828936,96.78135871]]]],"type":"MultiPolygon"},"type":"feature","properties":{"JunctionId":"21"}}],"type":"FeatureCollection"}
\ No newline at end of file
diff --git a/asset/media/3d_preview/laneSections.json b/asset/media/3d_preview/laneSections.json
deleted file mode 100644
index 6813d7e..0000000
--- a/asset/media/3d_preview/laneSections.json
+++ /dev/null
@@ -1 +0,0 @@
-{"features":[{"geometry":{"coordinates":[[[4.53708662,0.03875202,98.1285378],[4.5370862,0.03875026,98.12897522],[4.53708579,0.03874851,98.12942538],[4.53708537,0.03874675,98.12988747],[4.53708496,0.038745,98.13036073],[4.53708455,0.03874324,98.13084435],[4.53708413,0.03874149,98.13133755],[4.53708372,0.03873973,98.13183955],[4.53708331,0.03873798,98.13234956],[4.53708289,0.03873622,98.1328668],[4.53708248,0.03873447,98.13339049],[4.53708207,0.03873271,98.13391985],[4.53708166,0.03873096,98.13445409],[4.53708124,0.0387292,98.13499245],[4.53708083,0.03872745,98.13553414],[4.53708042,0.03872569,98.13607838],[4.53708,0.03872394,98.1366244],[4.53707959,0.03872218,98.13717142],[4.53707917,0.03872043,98.13771868],[4.53707875,0.03871867,98.13826539],[4.53707833,0.03871692,98.13881079],[4.53707791,0.03871517,98.13935411],[4.53707749,0.03871341,98.13989458],[4.53707707,0.03871166,98.14043142],[4.53707665,0.03870991,98.14096387],[4.53707622,0.03870816,98.14149129],[4.5370758,0.0387064,98.14201355],[4.53707537,0.03870465,98.14253101],[4.53707494,0.0387029,98.14304408],[4.53707451,0.03870115,98.14355317],[4.53707408,0.0386994,98.14405872],[4.53707365,0.03869765,98.14456112],[4.53707321,0.0386959,98.14506081],[4.53707278,0.03869415,98.14555819],[4.53707235,0.0386924,98.14605367],[4.53707191,0.03869065,98.14654766],[4.53707148,0.0386889,98.14704058],[4.53707104,0.03868715,98.14753284],[4.53707061,0.0386854,98.14802484],[4.53707017,0.03868365,98.14851698],[4.53706974,0.0386819,98.14900968],[4.53706931,0.03868015,98.14950334],[4.53706887,0.0386784,98.14999836],[4.53706844,0.03867665,98.15049514],[4.53706801,0.0386749,98.15099409],[4.53706758,0.03867315,98.15149559],[4.53706715,0.0386714,98.15200006],[4.53706672,0.03866964,98.15250788],[4.5370663,0.03866789,98.15301945],[4.53706587,0.03866614,98.15353517],[4.53706545,0.03866439,98.15405543],[4.53714642,0.03864469,98.34671699],[4.53714684,0.03864645,98.34634554],[4.53714727,0.0386482,98.34597402],[4.53714769,0.03864995,98.34560242],[4.53714812,0.03865171,98.34523068],[4.53714854,0.03865346,98.34485878],[4.53714897,0.03865521,98.34448668],[4.53714939,0.03865696,98.34411434],[4.53714982,0.03865872,98.34374172],[4.53715024,0.03866047,98.34336879],[4.53715067,0.03866222,98.34299551],[4.53715109,0.03866398,98.34262184],[4.53715152,0.03866573,98.34224775],[4.53715194,0.03866748,98.34187321],[4.53715236,0.03866923,98.34149816],[4.53715279,0.03867099,98.34112259],[4.53715321,0.03867274,98.34074645],[4.53715364,0.03867449,98.3403697],[4.53715406,0.03867624,98.33999231],[4.53715449,0.038678,98.33961423],[4.53715491,0.03867975,98.33923545],[4.53715534,0.0386815,98.33885591],[4.53715576,0.03868326,98.33847558],[4.53715619,0.03868501,98.33809443],[4.53715661,0.03868676,98.33771241],[4.53715704,0.03868851,98.3373295],[4.53715746,0.03869027,98.33694573],[4.53715789,0.03869202,98.33656149],[4.53715831,0.03869377,98.33617724],[4.53715873,0.03869552,98.33579343],[4.53715916,0.03869728,98.33541053],[4.53715958,0.03869903,98.33502899],[4.53716001,0.03870078,98.33464929],[4.53716043,0.03870253,98.33427187],[4.53716086,0.03870429,98.33389721],[4.53716128,0.03870604,98.33352575],[4.53716171,0.03870779,98.33315797],[4.53716213,0.03870955,98.33279431],[4.53716256,0.0387113,98.33243526],[4.53716298,0.03871305,98.33208125],[4.53716341,0.0387148,98.33173276],[4.53716383,0.03871656,98.33139024],[4.53716425,0.03871831,98.33105416],[4.53716468,0.03872006,98.33072497],[4.5371651,0.03872181,98.33040314],[4.53716553,0.03872357,98.33008913],[4.53716595,0.03872532,98.3297834],[4.53716638,0.03872707,98.32948641],[4.5371668,0.03872883,98.32919861],[4.53716723,0.03873058,98.32892048],[4.53716765,0.03873233,98.32865246],[4.53708662,0.03875202,98.1285378]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":1,"type":"shoulder","predecessorId":1},{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":2,"type":"none","predecessorId":2}],"roadId":"3000180","singleSide":false,"rightLanes":[{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0},{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.53266994,0.02363449,94.72174826],[4.53266938,0.02363277,94.72072009],[4.53266882,0.02363106,94.71968043],[4.53266826,0.02362935,94.71863145],[4.5326677,0.02362763,94.71757532],[4.53266713,0.02362592,94.71651425],[4.53266657,0.02362421,94.71545045],[4.53266599,0.0236225,94.71438616],[4.53266541,0.02362079,94.71332361],[4.53266482,0.02361909,94.71226508],[4.53266422,0.02361739,94.71121128],[4.53266362,0.02361569,94.71015669],[4.53266301,0.02361399,94.70909415],[4.5326624,0.0236123,94.70801756],[4.53266177,0.02361061,94.70692522],[4.53266114,0.02360892,94.70581656],[4.5326605,0.02360723,94.70469099],[4.53265986,0.02360554,94.70354791],[4.53265922,0.02360386,94.70238673],[4.53265857,0.02360217,94.70120682],[4.53265793,0.02360049,94.70000758],[4.53265729,0.0235988,94.69878833],[4.53265665,0.02359711,94.69754729],[4.53265601,0.02359543,94.69628175],[4.53265537,0.02359374,94.69499333],[4.53265473,0.02359205,94.69368796],[4.53265409,0.02359037,94.69236954],[4.53265345,0.02358868,94.69103894],[4.53265281,0.023587,94.68969666],[4.53265216,0.02358531,94.68834323],[4.5326515,0.02358363,94.68697919],[4.53265083,0.02358196,94.68560509],[4.53265014,0.02358029,94.68422151],[4.53264945,0.02357862,94.68282905],[4.53264874,0.02357695,94.681429],[4.53264803,0.02357529,94.68002539],[4.53264731,0.02357363,94.67862298],[4.5326466,0.02357197,94.67722472],[4.5326459,0.0235703,94.67582621],[4.5326452,0.02356864,94.67442114],[4.53264451,0.02356697,94.67300317],[4.53264383,0.0235653,94.67156592],[4.53264314,0.02356363,94.67010297],[4.53264247,0.02356196,94.66860783],[4.53264179,0.02356028,94.66707402],[4.53264111,0.02355861,94.66549496],[4.53264041,0.02355695,94.66386407],[4.5326397,0.02355529,94.66217471],[4.53263897,0.02355363,94.6604202],[4.5326382,0.02355199,94.65859382],[4.53263741,0.02355038,94.65671402],[4.53271482,0.0235243,94.62390976],[4.53271538,0.02352599,94.62499658],[4.53271595,0.0235277,94.6260689],[4.53271651,0.02352941,94.62711362],[4.53271708,0.02353112,94.62813209],[4.53271765,0.02353283,94.62912566],[4.53271822,0.02353454,94.63009569],[4.53271878,0.02353625,94.63104351],[4.53271935,0.02353797,94.63197048],[4.53271992,0.02353968,94.63287795],[4.53272049,0.02354139,94.63376728],[4.53272105,0.0235431,94.6346398],[4.53272162,0.02354481,94.63549688],[4.53272219,0.02354652,94.63633986],[4.53272276,0.02354823,94.63717009],[4.53272332,0.02354995,94.63798893],[4.53272389,0.02355166,94.63879772],[4.53272446,0.02355337,94.63959781],[4.53272503,0.02355508,94.64039056],[4.53272559,0.02355679,94.64117731],[4.53272616,0.0235585,94.64195942],[4.53272673,0.02356021,94.64273823],[4.53272729,0.02356192,94.6435151],[4.53272786,0.02356364,94.64429137],[4.53272843,0.02356535,94.6450684],[4.532729,0.02356706,94.64584754],[4.53272956,0.02356877,94.64662986],[4.53273013,0.02357048,94.64741528],[4.5327307,0.02357219,94.64820345],[4.53273127,0.0235739,94.648994],[4.53273183,0.02357561,94.64978659],[4.5327324,0.02357733,94.65058084],[4.53273297,0.02357904,94.6513764],[4.53273353,0.02358075,94.6521729],[4.5327341,0.02358246,94.65297],[4.53273467,0.02358417,94.65376732],[4.53273524,0.02358588,94.6545645],[4.5327358,0.02358759,94.65536119],[4.53273637,0.0235893,94.65615703],[4.53273694,0.02359102,94.65695165],[4.5327375,0.02359273,94.6577447],[4.53273807,0.02359444,94.65853582],[4.53273864,0.02359615,94.65932464],[4.53273921,0.02359786,94.6601108],[4.53273977,0.02359957,94.66089395],[4.53274034,0.02360128,94.66167373],[4.53274091,0.02360299,94.66244977],[4.53274147,0.0236047,94.66322172],[4.53274204,0.02360641,94.6639892],[4.53274261,0.02360813,94.66475188],[4.53274318,0.02360984,94.66550938],[4.53266994,0.02363449,94.72174826]]],"type":"Polygon"},"type":"feature","properties":{"roadId":"3000440","singleSide":false,"rightLanes":[{"successorId":-5,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"id":-5,"type":"none","predecessorId":-7},{"successorId":-4,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":-4,"type":"border","predecessorId":-6},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"id":-3,"type":"border","predecessorId":-5},{"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"type":"shoulder","predecessorId":-4},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3}]}},{"geometry":{"coordinates":[[[4.5375973,0.04127599,98.57058451],[4.53759692,0.04127423,98.56967809],[4.53759655,0.04127246,98.56877257],[4.53759618,0.0412707,98.56786786],[4.53759581,0.04126894,98.56696391],[4.53759543,0.04126718,98.56606064],[4.53759506,0.04126542,98.56515798],[4.53759469,0.04126365,98.56425586],[4.53759432,0.04126189,98.56335421],[4.53759395,0.04126013,98.56245296],[4.53759357,0.04125837,98.56155205],[4.5375932,0.0412566,98.5606514],[4.53759283,0.04125484,98.55975094],[4.53759246,0.04125308,98.5588506],[4.53759209,0.04125132,98.55795032],[4.53759171,0.04124956,98.55705003],[4.53759134,0.04124779,98.55614965],[4.53759097,0.04124603,98.55524912],[4.5375906,0.04124427,98.55434837],[4.53759022,0.04124251,98.55344732],[4.53758985,0.04124075,98.55254592],[4.53758948,0.04123898,98.55164409],[4.5375891,0.04123722,98.55074177],[4.53758873,0.04123546,98.54983888],[4.53758836,0.0412337,98.54893535],[4.53758798,0.04123194,98.54803113],[4.5375876,0.04123018,98.54712613],[4.53758723,0.04122842,98.5462203],[4.53758685,0.04122665,98.54531356],[4.53758648,0.04122489,98.54440584],[4.5375861,0.04122313,98.54349709],[4.53758572,0.04122137,98.54258722],[4.53758534,0.04121961,98.54167618],[4.53758496,0.04121785,98.54076391],[4.53758458,0.04121609,98.53985044],[4.5375842,0.04121433,98.53893584],[4.53758382,0.04121257,98.53802015],[4.53758344,0.04121081,98.53710343],[4.53758306,0.04120905,98.53618574],[4.53758268,0.04120729,98.53526711],[4.53758229,0.04120553,98.53434762],[4.53758191,0.04120377,98.53342731],[4.53758153,0.04120201,98.53250623],[4.53758114,0.04120025,98.53158444],[4.53758076,0.04119849,98.53066198],[4.53758037,0.04119673,98.52973892],[4.53757999,0.04119497,98.52881531],[4.5375796,0.04119321,98.5278912],[4.53757922,0.04119145,98.52696663],[4.53757883,0.0411897,98.52604168],[4.53757844,0.04118794,98.52511637],[4.53757806,0.04118618,98.52419078],[4.53757767,0.04118442,98.52326495],[4.53757728,0.04118266,98.52233893],[4.5375769,0.0411809,98.52141278],[4.53757651,0.04117914,98.52048654],[4.53757612,0.04117738,98.51956028],[4.53757573,0.04117562,98.51863404],[4.53757534,0.04117387,98.51770787],[4.53757496,0.04117211,98.51678183],[4.53757457,0.04117035,98.51585597],[4.53757418,0.04116859,98.51493035],[4.53757379,0.04116683,98.514005],[4.5375734,0.04116507,98.51307999],[4.53757301,0.04116331,98.51215537],[4.53757263,0.04116156,98.51123118],[4.53757224,0.0411598,98.51030749],[4.53757185,0.04115804,98.50938433],[4.53757146,0.04115628,98.50846177],[4.53757107,0.04115452,98.50753986],[4.53757068,0.04115276,98.50661865],[4.5375703,0.041151,98.50569818],[4.53756991,0.04114924,98.50477852],[4.53756952,0.04114749,98.50385972],[4.53756913,0.04114573,98.50294185],[4.53756875,0.04114397,98.50202499],[4.53756836,0.04114221,98.5011092],[4.53756797,0.04114045,98.50019456],[4.53756759,0.04113869,98.49928115],[4.5375672,0.04113693,98.49836902],[4.53756681,0.04113517,98.49745826],[4.53756643,0.04113341,98.49654893],[4.53756604,0.04113165,98.49564111],[4.53756566,0.04112989,98.49473485],[4.53756528,0.04112813,98.49383011],[4.53756489,0.04112638,98.49292685],[4.53756451,0.04112462,98.492025],[4.53756412,0.04112286,98.49112454],[4.53756374,0.0411211,98.49022539],[4.53756336,0.04111934,98.48932752],[4.53756298,0.04111758,98.48843086],[4.5375626,0.04111582,98.48753538],[4.53756221,0.04111406,98.48664101],[4.53756183,0.04111229,98.48574771],[4.53756145,0.04111053,98.48485543],[4.53756107,0.04110877,98.48396411],[4.53756069,0.04110701,98.48307371],[4.53756031,0.04110525,98.48218417],[4.53755993,0.04110349,98.48129545],[4.53755955,0.04110173,98.48040749],[4.53755917,0.04109997,98.47952024],[4.53755879,0.04109821,98.47863366],[4.53755841,0.04109645,98.47774769],[4.53755803,0.04109469,98.47686227],[4.53755765,0.04109293,98.47597737],[4.53755727,0.04109117,98.47509293],[4.53755689,0.04108941,98.4742089],[4.53755651,0.04108765,98.47332523],[4.53755613,0.04108589,98.47244187],[4.53755575,0.04108413,98.47155876],[4.53755537,0.04108237,98.47067586],[4.53755499,0.04108061,98.46979312],[4.53755461,0.04107884,98.46891049],[4.53755422,0.04107708,98.46802792],[4.53755384,0.04107532,98.46714535],[4.53755346,0.04107356,98.46626273],[4.53755308,0.0410718,98.46538002],[4.5375527,0.04107004,98.46449717],[4.53755232,0.04106828,98.46361412],[4.53755193,0.04106652,98.46273082],[4.53755155,0.04106476,98.46184723],[4.53755117,0.041063,98.46096328],[4.53755079,0.04106124,98.46007895],[4.5375504,0.04105948,98.45919416],[4.53755002,0.04105772,98.45830888],[4.53754963,0.04105596,98.45742304],[4.53754925,0.0410542,98.45653661],[4.53754886,0.04105244,98.45564954],[4.53754848,0.04105068,98.45476178],[4.53754809,0.04104893,98.45387329],[4.53754771,0.04104717,98.45298403],[4.53754732,0.04104541,98.45209395],[4.53754693,0.04104365,98.45120302],[4.53754654,0.04104189,98.45031119],[4.53754615,0.04104013,98.44941841],[4.53754576,0.04103837,98.44852465],[4.53754537,0.04103661,98.44762987],[4.53754498,0.04103485,98.44673413],[4.53754459,0.0410331,98.44583749],[4.5375442,0.04103134,98.44494002],[4.53754381,0.04102958,98.44404179],[4.53754341,0.04102782,98.44314286],[4.53754302,0.04102606,98.44224329],[4.53754263,0.04102431,98.44134316],[4.53754223,0.04102255,98.44044253],[4.53754184,0.04102079,98.43954146],[4.53754145,0.04101903,98.43864003],[4.53754105,0.04101728,98.4377383],[4.53754065,0.04101552,98.43683633],[4.53754026,0.04101376,98.43593419],[4.53753986,0.04101201,98.43503195],[4.53753947,0.04101025,98.43412968],[4.53753907,0.04100849,98.43322743],[4.53753867,0.04100673,98.43232528],[4.53753828,0.04100498,98.4314233],[4.53753788,0.04100322,98.43052154],[4.53753748,0.04100146,98.42962008],[4.53753709,0.04099971,98.42871898],[4.53753669,0.04099795,98.42781831],[4.53753629,0.04099619,98.42691814],[4.5375359,0.04099443,98.42601853],[4.5375355,0.04099268,98.42511954],[4.5375351,0.04099092,98.42422125],[4.53753471,0.04098916,98.42332372],[4.53753431,0.04098741,98.42242701],[4.53753391,0.04098565,98.4215312],[4.53753352,0.04098389,98.42063635],[4.53753312,0.04098213,98.41974253],[4.53753272,0.04098038,98.4188498],[4.53753233,0.04097862,98.41795824],[4.53753193,0.04097686,98.4170679],[4.53753154,0.04097511,98.41617886],[4.53753114,0.04097335,98.41529118],[4.53753075,0.04097159,98.41440494],[4.53753035,0.04096983,98.4135202],[4.53752996,0.04096808,98.41263703],[4.53752957,0.04096632,98.41175549],[4.53752917,0.04096456,98.41087563],[4.53752878,0.0409628,98.40999736],[4.53752839,0.04096104,98.40912054],[4.537528,0.04095929,98.40824506],[4.5375276,0.04095753,98.4073708],[4.53752721,0.04095577,98.40649763],[4.53752682,0.04095401,98.40562543],[4.53752643,0.04095225,98.40475408],[4.53752604,0.04095049,98.40388345],[4.53752565,0.04094874,98.40301342],[4.53752526,0.04094698,98.40214387],[4.53752486,0.04094522,98.40127468],[4.53752447,0.04094346,98.40040572],[4.53752408,0.0409417,98.3995369],[4.53752369,0.04093994,98.39866821],[4.5375233,0.04093819,98.39779969],[4.5375229,0.04093643,98.39693135],[4.53752251,0.04093467,98.39606324],[4.53752212,0.04093291,98.39519537],[4.53752173,0.04093115,98.39432777],[4.53752133,0.0409294,98.39346046],[4.53752094,0.04092764,98.39259349],[4.53752055,0.04092588,98.39172687],[4.53752015,0.04092412,98.39086062],[4.53751976,0.04092236,98.38999479],[4.53751937,0.04092061,98.38912938],[4.53751897,0.04091885,98.38826444],[4.53751858,0.04091709,98.38739999],[4.53751819,0.04091533,98.38653605],[4.53751779,0.04091357,98.38567265],[4.5375174,0.04091182,98.38480983],[4.53751701,0.04091006,98.3839476],[4.53751661,0.0409083,98.38308599],[4.53751622,0.04090654,98.38222504],[4.53751583,0.04090478,98.38136476],[4.53751543,0.04090303,98.38050519],[4.53751504,0.04090127,98.37964635],[4.53751465,0.04089951,98.37878827],[4.53751425,0.04089775,98.37793098],[4.53751386,0.04089599,98.3770745],[4.53751347,0.04089424,98.37621887],[4.53751307,0.04089248,98.3753641],[4.53751268,0.04089072,98.37451024],[4.53751229,0.04088896,98.37365729],[4.53751189,0.0408872,98.3728053],[4.5375115,0.04088544,98.37195429],[4.53751111,0.04088369,98.37110429],[4.53751072,0.04088193,98.37025532],[4.53751032,0.04088017,98.36940741],[4.53750993,0.04087841,98.36856059],[4.53750954,0.04087665,98.36771489],[4.53750915,0.04087489,98.36687033],[4.53750876,0.04087313,98.36602695],[4.53750837,0.04087138,98.36518477],[4.53750798,0.04086962,98.36434381],[4.53750758,0.04086786,98.36350412],[4.53750719,0.0408661,98.3626657],[4.5375068,0.04086434,98.3618286],[4.53750652,0.04086306,98.36121883],[4.53765157,0.04083036,98.62824337],[4.53765186,0.04083164,98.62881197],[4.53765225,0.0408334,98.62959186],[4.53765264,0.04083516,98.63037222],[4.53765304,0.04083692,98.63115307],[4.53765343,0.04083868,98.63193441],[4.53765382,0.04084044,98.63271628],[4.53765421,0.0408422,98.63349869],[4.5376546,0.04084397,98.63428165],[4.537655,0.04084573,98.63506518],[4.53765539,0.04084749,98.63584931],[4.53765578,0.04084925,98.63663404],[4.53765617,0.04085101,98.6374194],[4.53765656,0.04085277,98.63820541],[4.53765695,0.04085453,98.63899207],[4.53765734,0.04085629,98.63977942],[4.53765773,0.04085805,98.64056746],[4.53765812,0.04085981,98.64135621],[4.53765851,0.04086158,98.6421457],[4.5376589,0.04086334,98.64293594],[4.53765929,0.0408651,98.64372694],[4.53765968,0.04086686,98.64451873],[4.53766006,0.04086862,98.64531132],[4.53766045,0.04087038,98.64610472],[4.53766084,0.04087214,98.64689897],[4.53766123,0.04087391,98.64769407],[4.53766162,0.04087567,98.64849003],[4.53766201,0.04087743,98.64928689],[4.5376624,0.04087919,98.65008465],[4.53766278,0.04088095,98.65088334],[4.53766317,0.04088271,98.65168297],[4.53766356,0.04088448,98.65248355],[4.53766395,0.04088624,98.65328511],[4.53766434,0.040888,98.65408766],[4.53766472,0.04088976,98.65489122],[4.53766511,0.04089152,98.65569581],[4.5376655,0.04089328,98.65650145],[4.53766589,0.04089505,98.65730814],[4.53766627,0.04089681,98.65811591],[4.53766666,0.04089857,98.65892482],[4.53766705,0.04090033,98.65973495],[4.53766744,0.04090209,98.66054638],[4.53766783,0.04090386,98.66135921],[4.53766821,0.04090562,98.66217353],[4.5376686,0.04090738,98.66298942],[4.53766899,0.04090914,98.66380695],[4.53766938,0.0409109,98.66462611],[4.53766977,0.04091266,98.66544687],[4.53767016,0.04091442,98.6662692],[4.53767054,0.04091619,98.66709306],[4.53767093,0.04091795,98.66791844],[4.53767132,0.04091971,98.66874529],[4.53767171,0.04092147,98.66957359],[4.5376721,0.04092323,98.67040331],[4.53767249,0.04092499,98.67123441],[4.53767288,0.04092675,98.67206686],[4.53767327,0.04092852,98.67290064],[4.53767366,0.04093028,98.67373572],[4.53767405,0.04093204,98.67457206],[4.53767444,0.0409338,98.67540963],[4.53767483,0.04093556,98.67624841],[4.53767522,0.04093732,98.67708836],[4.53767561,0.04093908,98.67792945],[4.537676,0.04094085,98.67877165],[4.53767639,0.04094261,98.67961493],[4.53767678,0.04094437,98.68045927],[4.53767717,0.04094613,98.68130463],[4.53767755,0.04094789,98.68215097],[4.53767794,0.04094965,98.68299828],[4.53767833,0.04095141,98.68384652],[4.53767872,0.04095318,98.68469566],[4.53767911,0.04095494,98.68554567],[4.5376795,0.0409567,98.68639652],[4.53767989,0.04095846,98.68724819],[4.53768028,0.04096022,98.68810064],[4.53768067,0.04096198,98.68895385],[4.53768105,0.04096375,98.68980779],[4.53768144,0.04096551,98.69066242],[4.53768183,0.04096727,98.69151772],[4.53768222,0.04096903,98.69237366],[4.5376826,0.04097079,98.69323021],[4.53768299,0.04097256,98.69408734],[4.53768338,0.04097432,98.69494502],[4.53768376,0.04097608,98.69580323],[4.53768415,0.04097784,98.69666195],[4.53768454,0.0409796,98.69752126],[4.53768492,0.04098137,98.69838125],[4.53768531,0.04098313,98.69924202],[4.53768569,0.04098489,98.70010365],[4.53768608,0.04098665,98.70096624],[4.53768647,0.04098842,98.70182988],[4.53768685,0.04099018,98.70269466],[4.53768724,0.04099194,98.70356062],[4.53768762,0.0409937,98.70442778],[4.53768801,0.04099546,98.70529619],[4.53768839,0.04099723,98.70616586],[4.53768878,0.04099899,98.70703682],[4.53768916,0.04100075,98.70790912],[4.53768955,0.04100251,98.70878277],[4.53768994,0.04100428,98.70965782],[4.53769032,0.04100604,98.71053428],[4.53769071,0.0410078,98.71141219],[4.53769109,0.04100956,98.71229159],[4.53769148,0.04101133,98.71317249],[4.53769187,0.04101309,98.71405493],[4.53769225,0.04101485,98.71493895],[4.53769264,0.04101661,98.71582456],[4.53769303,0.04101837,98.71671178],[4.53769341,0.04102014,98.71760059],[4.5376938,0.0410219,98.71849095],[4.53769419,0.04102366,98.71938286],[4.53769457,0.04102542,98.72027628],[4.53769496,0.04102718,98.7211712],[4.53769535,0.04102895,98.72206759],[4.53769574,0.04103071,98.72296544],[4.53769612,0.04103247,98.72386472],[4.53769651,0.04103423,98.7247654],[4.5376969,0.04103599,98.72566747],[4.53769729,0.04103776,98.7265709],[4.53769768,0.04103952,98.72747568],[4.53769806,0.04104128,98.72838178],[4.53769845,0.04104304,98.72928917],[4.53769884,0.0410448,98.73019785],[4.53769923,0.04104656,98.73110778],[4.53769962,0.04104833,98.73201894],[4.5377,0.04105009,98.73293131],[4.53770039,0.04105185,98.73384487],[4.53770078,0.04105361,98.7347596],[4.53770117,0.04105537,98.73567547],[4.53770156,0.04105714,98.73659247],[4.53770194,0.0410589,98.73751057],[4.53770233,0.04106066,98.73842975],[4.53770272,0.04106242,98.73934999],[4.53770311,0.04106418,98.74027126],[4.5377035,0.04106594,98.74119355],[4.53770388,0.04106771,98.74211682],[4.53770427,0.04106947,98.74304107],[4.53770466,0.04107123,98.74396627],[4.53770505,0.04107299,98.74489239],[4.53770543,0.04107475,98.74581941],[4.53770582,0.04107652,98.74674732],[4.53770621,0.04107828,98.74767609],[4.53770659,0.04108004,98.74860569],[4.53770698,0.0410818,98.74953612],[4.53770737,0.04108356,98.75046733],[4.53770775,0.04108533,98.75139932],[4.53770814,0.04108709,98.75233205],[4.53770853,0.04108885,98.75326554],[4.53770891,0.04109061,98.75419978],[4.5377093,0.04109238,98.75513479],[4.53770968,0.04109414,98.75607059],[4.53771007,0.0410959,98.75700718],[4.53771045,0.04109766,98.75794458],[4.53771084,0.04109943,98.75888281],[4.53771122,0.04110119,98.75982185],[4.53771161,0.04110295,98.76076173],[4.53771199,0.04110471,98.76170244],[4.53771238,0.04110648,98.76264399],[4.53771276,0.04110824,98.7635864],[4.53771314,0.04111,98.76452966],[4.53771353,0.04111176,98.76547378],[4.53771391,0.04111353,98.76641878],[4.5377143,0.04111529,98.76736465],[4.53771468,0.04111705,98.7683114],[4.53771506,0.04111882,98.76925905],[4.53771545,0.04112058,98.77020758],[4.53771583,0.04112234,98.77115703],[4.53771621,0.0411241,98.77210737],[4.53771659,0.04112587,98.77305864],[4.53771698,0.04112763,98.77401083],[4.53771736,0.04112939,98.77496394],[4.53771774,0.04113116,98.77591799],[4.53771813,0.04113292,98.77687298],[4.53771851,0.04113468,98.77782892],[4.53771889,0.04113645,98.77878582],[4.53771927,0.04113821,98.77974367],[4.53771965,0.04113997,98.7807025],[4.53772004,0.04114174,98.78166229],[4.53772042,0.0411435,98.78262307],[4.5377208,0.04114526,98.78358484],[4.53772118,0.04114702,98.7845476],[4.53772156,0.04114879,98.78551136],[4.53772195,0.04115055,98.78647613],[4.53772233,0.04115231,98.78744191],[4.53772271,0.04115408,98.78840871],[4.53772309,0.04115584,98.78937653],[4.53772347,0.0411576,98.7903454],[4.53772385,0.04115937,98.7913153],[4.53772423,0.04116113,98.79228624],[4.53772461,0.0411629,98.79325824],[4.53772499,0.04116466,98.7942313],[4.53772538,0.04116642,98.79520543],[4.53772576,0.04116819,98.79618063],[4.53772614,0.04116995,98.79715691],[4.53772652,0.04117171,98.79813427],[4.5377269,0.04117348,98.79911273],[4.53772728,0.04117524,98.80009228],[4.53772766,0.041177,98.80107294],[4.53772804,0.04117877,98.80205472],[4.53772842,0.04118053,98.80303761],[4.5377288,0.04118229,98.80402163],[4.53772918,0.04118406,98.80500678],[4.53772956,0.04118582,98.80599307],[4.53772994,0.04118758,98.8069805],[4.53773032,0.04118935,98.80796909],[4.5377307,0.04119111,98.80895884],[4.53773108,0.04119287,98.80994975],[4.53773146,0.04119464,98.81094184],[4.53773184,0.0411964,98.8119351],[4.53773222,0.04119817,98.81292955],[4.5377326,0.04119993,98.81392519],[4.53773298,0.04120169,98.81492203],[4.53773336,0.04120346,98.81592008],[4.53773374,0.04120522,98.81691934],[4.53773412,0.04120698,98.81791982],[4.5377345,0.04120875,98.81892152],[4.53773488,0.04121051,98.81992446],[4.53773526,0.04121227,98.82092864],[4.53773564,0.04121404,98.82193406],[4.53773602,0.0412158,98.82294074],[4.53773641,0.04121757,98.82394868],[4.53773679,0.04121933,98.82495788],[4.53773717,0.04122109,98.82596836],[4.53773755,0.04122286,98.82698012],[4.53773793,0.04122462,98.82799316],[4.53773831,0.04122638,98.8290075],[4.53773869,0.04122815,98.83002314],[4.53773907,0.04122991,98.83104009],[4.53773945,0.04123167,98.83205835],[4.53773983,0.04123344,98.83307794],[4.53774021,0.0412352,98.83409885],[4.53774059,0.04123697,98.8351211],[4.53774097,0.04123873,98.8361447],[4.53774135,0.04124049,98.83716964],[4.53774173,0.04124226,98.83819594],[4.53774211,0.04124402,98.8392236],[4.5375973,0.04127599,98.57058451]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":1,"type":"shoulder","predecessorId":0},{"successorId":2,"level":false,"id":2,"type":"border","predecessorId":0}],"roadId":"1003400","singleSide":false,"rightLanes":[{"successorId":-5,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":-4,"type":"none","predecessorId":0},{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-3,"type":"stop","predecessorId":0},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":0},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":0}]}},{"geometry":{"coordinates":[[[4.53750652,0.04086306,98.36121883],[4.53750613,0.0408613,98.36038553],[4.53750574,0.04085954,98.35955298],[4.53750535,0.04085778,98.35872112],[4.53750496,0.04085602,98.35788992],[4.53750457,0.04085426,98.35705932],[4.53750418,0.0408525,98.35622927],[4.53750379,0.04085074,98.35539974],[4.5375034,0.04084898,98.35457065],[4.53750301,0.04084722,98.35374198],[4.53750262,0.04084546,98.35291367],[4.53750223,0.04084371,98.35208567],[4.53750185,0.04084195,98.35125793],[4.53750145,0.04084019,98.35043041],[4.53750106,0.04083843,98.34960305],[4.53750067,0.04083667,98.34877581],[4.53750028,0.04083491,98.34794864],[4.53749989,0.04083315,98.34712148],[4.5374995,0.04083139,98.3462943],[4.53749911,0.04082963,98.34546703],[4.53749872,0.04082787,98.34463964],[4.53749833,0.04082612,98.34381207],[4.53749793,0.04082436,98.34298427],[4.53749754,0.0408226,98.34215619],[4.53749715,0.04082084,98.3413278],[4.53749675,0.04081908,98.34049936],[4.53749636,0.04081732,98.33967105],[4.53749597,0.04081556,98.33884298],[4.53749557,0.04081381,98.33801527],[4.53749518,0.04081205,98.33718804],[4.53749478,0.04081029,98.33636141],[4.53749439,0.04080853,98.3355355],[4.537494,0.04080677,98.33471043],[4.5374936,0.04080501,98.33388631],[4.53749321,0.04080326,98.33306327],[4.53749281,0.0408015,98.33224144],[4.53749242,0.04079974,98.33142099],[4.53749203,0.04079798,98.3306021],[4.53749164,0.04079622,98.32978495],[4.53749124,0.04079446,98.32896972],[4.53749085,0.0407927,98.32815643],[4.53749046,0.04079094,98.32734445],[4.53749007,0.04078919,98.326533],[4.53748968,0.04078743,98.32572136],[4.53748928,0.04078567,98.32490939],[4.53748889,0.04078391,98.32409736],[4.5374885,0.04078215,98.32328555],[4.5374881,0.04078039,98.32247423],[4.53748771,0.04077863,98.32166367],[4.53748732,0.04077687,98.32085415],[4.53748693,0.04077511,98.32004595],[4.53748653,0.04077336,98.31923935],[4.53748614,0.0407716,98.31843461],[4.53748575,0.04076984,98.31763201],[4.53748536,0.04076808,98.31683184],[4.53748497,0.04076632,98.31603436],[4.53748458,0.04076456,98.31523986],[4.53748419,0.0407628,98.3144486],[4.5374838,0.04076104,98.31366037],[4.53748342,0.04075928,98.31287392],[4.53748303,0.04075752,98.31208845],[4.53748264,0.04075576,98.31130367],[4.53748225,0.040754,98.31051936],[4.53748187,0.04075224,98.30973527],[4.53748148,0.04075048,98.30895116],[4.53748109,0.04074872,98.30816678],[4.5374807,0.04074696,98.30738189],[4.53748031,0.0407452,98.3065962],[4.53747992,0.04074344,98.30580947],[4.53747953,0.04074168,98.30502142],[4.53747914,0.04073992,98.30423177],[4.53747875,0.04073816,98.30344028],[4.53747835,0.0407364,98.30264666],[4.53747796,0.04073464,98.30185065],[4.53747756,0.04073289,98.30105236],[4.53747716,0.04073113,98.30025255],[4.53747677,0.04072937,98.29945241],[4.53747637,0.04072761,98.2986537],[4.53747597,0.04072585,98.29785826],[4.53747558,0.04072409,98.29706792],[4.53747519,0.04072234,98.29628451],[4.5374748,0.04072058,98.29550988],[4.53747441,0.04071881,98.29474586],[4.53747403,0.04071705,98.29399342],[4.53747365,0.04071529,98.29324683],[4.53747326,0.04071353,98.29249713],[4.53747288,0.04071177,98.29173528],[4.53747248,0.04071001,98.29095226],[4.53747208,0.04070825,98.29013901],[4.53747166,0.0407065,98.28928805],[4.53747122,0.04070475,98.28840194],[4.53747078,0.040703,98.28748722],[4.53747032,0.04070126,98.28655045],[4.53746987,0.04069951,98.2855982],[4.5374694,0.04069777,98.28463705],[4.53746894,0.04069603,98.28367359],[4.53746848,0.04069428,98.28271441],[4.53746802,0.04069254,98.2817653],[4.53746756,0.0406908,98.28082652],[4.53746711,0.04068905,98.27989606],[4.53746666,0.0406873,98.27897192],[4.53746621,0.04068556,98.27805208],[4.53746576,0.04068381,98.27713454],[4.53746531,0.04068206,98.27621727],[4.53746486,0.04068032,98.27529828],[4.53746441,0.04067857,98.27437593],[4.53746395,0.04067683,98.27344897],[4.53746349,0.04067508,98.27251617],[4.53746304,0.04067334,98.27157627],[4.53746257,0.04067159,98.27062802],[4.53746211,0.04066985,98.26967019],[4.53746164,0.04066811,98.26870151],[4.53746116,0.04066637,98.26772065],[4.53746068,0.04066463,98.26672588],[4.53746019,0.04066289,98.26571537],[4.5374597,0.04066116,98.26468731],[4.5374592,0.04065942,98.26364031],[4.53745869,0.04065769,98.2625756],[4.53745818,0.04065595,98.26149528],[4.53745766,0.04065422,98.26040145],[4.53745713,0.04065249,98.25929622],[4.53745661,0.04065076,98.25818169],[4.53745608,0.04064904,98.25705996],[4.53745555,0.04064731,98.25593316],[4.53745501,0.04064558,98.25480338],[4.53745448,0.04064385,98.25367274],[4.53745395,0.04064213,98.25254336],[4.53745342,0.0406404,98.25141736],[4.53745289,0.04063867,98.25029682],[4.53745236,0.04063694,98.24918257],[4.53745183,0.04063521,98.24807385],[4.53745131,0.04063348,98.24696975],[4.53745078,0.04063175,98.24586939],[4.53745026,0.04063002,98.24477189],[4.53744974,0.04062829,98.24367634],[4.53744922,0.04062656,98.24258187],[4.5374487,0.04062483,98.24148756],[4.53744817,0.0406231,98.24039257],[4.53744765,0.04062137,98.23929611],[4.53744713,0.04061964,98.23819742],[4.5374466,0.04061791,98.23709574],[4.53744608,0.04061618,98.23599032],[4.53744555,0.04061445,98.23488037],[4.53744502,0.04061272,98.23376531],[4.53744449,0.04061099,98.23264547],[4.53744395,0.04060927,98.23152148],[4.53744342,0.04060754,98.23039401],[4.53744288,0.04060581,98.22926369],[4.53744235,0.04060408,98.22813117],[4.53744181,0.04060236,98.22699701],[4.53744127,0.04060063,98.22586178],[4.53744074,0.0405989,98.22472603],[4.5374402,0.04059718,98.22359032],[4.53743966,0.04059545,98.22245521],[4.53743912,0.04059372,98.22132126],[4.53743859,0.040592,98.22018904],[4.53743805,0.04059027,98.2190591],[4.53743751,0.04058854,98.21793201],[4.53743698,0.04058681,98.21680833],[4.53743645,0.04058509,98.21568863],[4.53743592,0.04058336,98.21457348],[4.53743539,0.04058163,98.21346344],[4.53743486,0.0405799,98.21235908],[4.53743434,0.04057817,98.21126098],[4.53743381,0.04057644,98.21016969],[4.53743329,0.04057471,98.20908579],[4.53743278,0.04057298,98.2080097],[4.53743226,0.04057124,98.20694091],[4.53743175,0.04056951,98.20587865],[4.53743124,0.04056778,98.20482211],[4.53743073,0.04056604,98.20377052],[4.53743022,0.04056431,98.20272306],[4.53742972,0.04056258,98.20167895],[4.53742921,0.04056084,98.20063739],[4.5374287,0.04055911,98.19959758],[4.5374282,0.04055737,98.19855873],[4.53742769,0.04055564,98.19752003],[4.53742719,0.0405539,98.19648067],[4.53742668,0.04055217,98.19543986],[4.53742618,0.04055044,98.19439677],[4.53742567,0.0405487,98.19335059],[4.53742516,0.04054697,98.1923005],[4.53742464,0.04054524,98.19124568],[4.53742413,0.0405435,98.19018531],[4.53742361,0.04054177,98.18911856],[4.53742309,0.04054004,98.18804476],[4.53742257,0.04053831,98.18696645],[4.53742205,0.04053658,98.18588968],[4.53742153,0.04053485,98.18482064],[4.53742102,0.04053311,98.18376554],[4.53742051,0.04053138,98.18273059],[4.53742002,0.04052964,98.18172201],[4.53741953,0.0405279,98.18074605],[4.53741906,0.04052616,98.17980896],[4.5374186,0.04052442,98.17891557],[4.53741816,0.04052267,98.17806277],[4.53741773,0.04052092,98.17724464],[4.53741731,0.04051916,98.17645528],[4.53741689,0.04051741,98.17568877],[4.53741648,0.04051565,98.17493917],[4.53741608,0.04051389,98.17420054],[4.53741568,0.04051214,98.17346691],[4.53741527,0.04051038,98.17273234],[4.53741487,0.04050862,98.17199092],[4.53741446,0.04050686,98.17123981],[4.53741404,0.04050511,98.17048008],[4.53741363,0.04050335,98.16971306],[4.53741321,0.0405016,98.16894008],[4.53741279,0.04049985,98.16816248],[4.53741236,0.04049809,98.16738154],[4.53741194,0.04049634,98.16659841],[4.53741152,0.04049459,98.16581423],[4.53741109,0.04049283,98.16503011],[4.53741067,0.04049108,98.1642472],[4.53741024,0.04048933,98.16346663],[4.53740982,0.04048757,98.16268953],[4.5374094,0.04048582,98.16191638],[4.53740897,0.04048407,98.1611468],[4.53740855,0.04048231,98.16038036],[4.53740813,0.04048056,98.15961667],[4.53740771,0.0404788,98.15885535],[4.53740729,0.04047705,98.15809598],[4.53740687,0.04047529,98.15733817],[4.53740645,0.04047354,98.15658154],[4.53740603,0.04047179,98.15582566],[4.53740561,0.04047003,98.15507015],[4.53740519,0.04046828,98.15431461],[4.53740477,0.04046652,98.15355864],[4.53740435,0.04046477,98.15280182],[4.53740393,0.04046302,98.15204377],[4.5374035,0.04046126,98.15128408],[4.53740308,0.04045951,98.15052234],[4.53740265,0.04045775,98.14975815],[4.53740223,0.040456,98.14899113],[4.5374018,0.04045425,98.14822169],[4.53740137,0.0404525,98.14745124],[4.53740094,0.04045074,98.14668126],[4.53740051,0.04044899,98.14591322],[4.53740008,0.04044724,98.14514859],[4.53739966,0.04044549,98.14438887],[4.53739923,0.04044373,98.14363554],[4.53739881,0.04044198,98.14289008],[4.53739839,0.04044023,98.14215398],[4.53739797,0.04043847,98.14142873],[4.53739756,0.04043671,98.14071583],[4.53739716,0.04043496,98.14001678],[4.53739675,0.0404332,98.13933308],[4.53739636,0.04043144,98.1386663],[4.53739596,0.04042968,98.1380177],[4.53739558,0.04042792,98.13738654],[4.5373952,0.04042615,98.13677137],[4.53739482,0.04042439,98.13617074],[4.53739445,0.04042263,98.13558321],[4.53739409,0.04042086,98.13500731],[4.53739372,0.04041909,98.13444161],[4.53739336,0.04041733,98.13388463],[4.537393,0.04041556,98.13333492],[4.53739264,0.04041379,98.13279102],[4.53739229,0.04041202,98.13225145],[4.53739193,0.04041025,98.13171447],[4.53739157,0.04040849,98.13117678],[4.53739121,0.04040672,98.13063445],[4.53739085,0.04040495,98.13008351],[4.53739048,0.04040318,98.12952001],[4.53739011,0.04040142,98.12893996],[4.53738973,0.04039966,98.12833939],[4.53738934,0.0403979,98.12771442],[4.53738894,0.04039614,98.12706585],[4.53738854,0.04039438,98.12640039],[4.53738813,0.04039262,98.12572515],[4.53738772,0.04039087,98.12504668],[4.53738732,0.04038911,98.12436709],[4.53738691,0.04038735,98.12368628],[4.53738649,0.0403856,98.12300414],[4.53738608,0.04038384,98.12232066],[4.53738567,0.04038209,98.12163593],[4.53738526,0.04038033,98.12095009],[4.53738484,0.04037858,98.12026325],[4.53738443,0.04037682,98.11957555],[4.53738401,0.04037507,98.11888711],[4.5373836,0.04037331,98.11819807],[4.53738318,0.04037156,98.11750855],[4.53738276,0.04036981,98.11681869],[4.53738235,0.04036805,98.1161286],[4.53738193,0.0403663,98.11543841],[4.53738151,0.04036454,98.11474825],[4.53738109,0.04036279,98.11405824],[4.53738068,0.04036103,98.11336852],[4.53738026,0.04035928,98.11267922],[4.53737984,0.04035753,98.11199053],[4.53737942,0.04035577,98.11130262],[4.537379,0.04035402,98.11061568],[4.53737858,0.04035227,98.10992988],[4.53737816,0.04035051,98.1092454],[4.53737775,0.04034876,98.10856243],[4.53737733,0.040347,98.10788114],[4.53737691,0.04034525,98.10720171],[4.53737649,0.0403435,98.10652419],[4.53737607,0.04034174,98.10584858],[4.53737566,0.04033999,98.10517497],[4.53737524,0.04033824,98.1045035],[4.53737482,0.04033648,98.10383428],[4.53737441,0.04033473,98.10316745],[4.53737399,0.04033297,98.10250313],[4.53737358,0.04033122,98.10184144],[4.53737317,0.04032946,98.10118252],[4.53737275,0.04032771,98.10052647],[4.53737234,0.04032595,98.09987344],[4.53737193,0.0403242,98.09922355],[4.53737152,0.04032244,98.09857691],[4.5373711,0.04032069,98.09793367],[4.53737069,0.04031893,98.09729394],[4.53737029,0.04031718,98.09665785],[4.53736988,0.04031542,98.09602554],[4.53736947,0.04031367,98.09539711],[4.53736906,0.04031191,98.09477263],[4.53736866,0.04031015,98.09415205],[4.53736826,0.0403084,98.09353529],[4.53736785,0.04030664,98.09292231],[4.53736745,0.04030488,98.09231305],[4.53736705,0.04030313,98.09170744],[4.53736665,0.04030137,98.09110543],[4.53736625,0.04029961,98.09050696],[4.53736585,0.04029785,98.08991197],[4.53736545,0.0402961,98.08932039],[4.53736505,0.04029434,98.08873187],[4.53736465,0.04029258,98.088146],[4.53736426,0.04029082,98.08756269],[4.53736386,0.04028906,98.0869819],[4.53736346,0.04028731,98.08640361],[4.53736307,0.04028555,98.08582778],[4.53736267,0.04028379,98.08525436],[4.53736228,0.04028203,98.08468333],[4.53736188,0.04028027,98.08411464],[4.53736149,0.04027851,98.08354826],[4.5373611,0.04027675,98.08298415],[4.5373607,0.040275,98.08242228],[4.53736031,0.04027324,98.08186261],[4.53735992,0.04027148,98.08130509],[4.53735953,0.04026972,98.08074971],[4.53735913,0.04026796,98.08019641],[4.53735874,0.0402662,98.07964516],[4.53735835,0.04026444,98.07909592],[4.53735796,0.04026268,98.07854866],[4.53735757,0.04026092,98.07800333],[4.53735718,0.04025916,98.07745991],[4.53735679,0.04025741,98.07691835],[4.5373564,0.04025565,98.07637862],[4.53735601,0.04025389,98.07584075],[4.53735562,0.04025213,98.07530507],[4.53735523,0.04025037,98.07477196],[4.53735484,0.04024861,98.07424165],[4.53735445,0.04024685,98.07371402],[4.53735406,0.04024509,98.07318892],[4.53735367,0.04024333,98.07266618],[4.53735329,0.04024157,98.07214566],[4.5373529,0.04023981,98.07162719],[4.53735251,0.04023805,98.07111063],[4.53735212,0.04023629,98.07059581],[4.53735174,0.04023453,98.07008257],[4.53735135,0.04023277,98.06957077],[4.53735096,0.04023101,98.06906024],[4.53735058,0.04022925,98.06855082],[4.53735019,0.04022749,98.06804236],[4.5373498,0.04022573,98.06753471],[4.53734942,0.04022397,98.06702769],[4.53734903,0.04022221,98.06652116],[4.53734864,0.04022045,98.06601495],[4.53734825,0.04021869,98.06550891],[4.53734788,0.04021701,98.06502578],[4.53750608,0.04018103,98.41225728],[4.53750645,0.04018271,98.41263372],[4.53750685,0.04018448,98.41302902],[4.53750724,0.04018624,98.41342534],[4.53750763,0.040188,98.41382264],[4.53750803,0.04018976,98.41422095],[4.53750842,0.04019152,98.41462027],[4.53750881,0.04019328,98.4150206],[4.53750921,0.04019504,98.41542193],[4.5375096,0.0401968,98.41582427],[4.53750999,0.04019856,98.41622761],[4.53751039,0.04020032,98.41663195],[4.53751078,0.04020208,98.41703729],[4.53751117,0.04020384,98.41744362],[4.53751157,0.0402056,98.41785094],[4.53751196,0.04020736,98.41825925],[4.53751235,0.04020912,98.41866854],[4.53751275,0.04021088,98.41907882],[4.53751314,0.04021264,98.41949008],[4.53751353,0.0402144,98.41990233],[4.53751393,0.04021616,98.42031555],[4.53751432,0.04021792,98.42072975],[4.53751471,0.04021968,98.42114493],[4.53751511,0.04022144,98.4215611],[4.5375155,0.0402232,98.42197825],[4.53751589,0.04022496,98.42239638],[4.53751629,0.04022672,98.4228155],[4.53751668,0.04022848,98.4232356],[4.53751707,0.04023024,98.42365669],[4.53751747,0.040232,98.42407877],[4.53751786,0.04023377,98.42450183],[4.53751825,0.04023553,98.42492589],[4.53751865,0.04023729,98.42535094],[4.53751904,0.04023905,98.42577697],[4.53751943,0.04024081,98.426204],[4.53751982,0.04024257,98.42663202],[4.53752022,0.04024433,98.42706104],[4.53752061,0.04024609,98.42749105],[4.537521,0.04024785,98.42792205],[4.5375214,0.04024961,98.42835405],[4.53752179,0.04025137,98.42878705],[4.53752218,0.04025313,98.42922105],[4.53752258,0.04025489,98.42965604],[4.53752297,0.04025665,98.43009204],[4.53752336,0.04025841,98.43052904],[4.53752375,0.04026017,98.43096703],[4.53752415,0.04026193,98.43140603],[4.53752454,0.04026369,98.43184603],[4.53752493,0.04026545,98.43228704],[4.53752533,0.04026721,98.43272905],[4.53752572,0.04026897,98.43317207],[4.53752611,0.04027073,98.43361619],[4.5375265,0.04027249,98.43406158],[4.5375269,0.04027425,98.43450838],[4.53752729,0.04027601,98.43495664],[4.53752768,0.04027777,98.43540638],[4.53752808,0.04027953,98.43585761],[4.53752847,0.04028129,98.43631035],[4.53752887,0.04028305,98.43676461],[4.53752926,0.04028481,98.43722041],[4.53752965,0.04028657,98.43767777],[4.53753005,0.04028833,98.4381367],[4.53753044,0.04029009,98.43859722],[4.53753084,0.04029185,98.43905934],[4.53753123,0.04029361,98.43952309],[4.53753163,0.04029537,98.43998847],[4.53753202,0.04029713,98.44045551],[4.53753242,0.04029889,98.44092422],[4.53753282,0.04030065,98.44139461],[4.53753321,0.04030241,98.4418667],[4.53753361,0.04030417,98.44234051],[4.53753401,0.04030593,98.44281605],[4.5375344,0.04030769,98.44329334],[4.5375348,0.04030945,98.4437724],[4.5375352,0.04031121,98.44425322],[4.53753559,0.04031297,98.44473575],[4.53753599,0.04031472,98.44521989],[4.53753639,0.04031648,98.44570559],[4.53753679,0.04031824,98.44619275],[4.53753719,0.04032,98.4466813],[4.53753759,0.04032176,98.44717116],[4.53753798,0.04032352,98.44766225],[4.53753838,0.04032528,98.4481545],[4.53753878,0.04032704,98.44864784],[4.53753918,0.0403288,98.44914217],[4.53753958,0.04033055,98.44963743],[4.53753998,0.04033231,98.45013355],[4.53754038,0.04033407,98.45063053],[4.53754077,0.04033583,98.4511284],[4.53754117,0.04033759,98.45162718],[4.53754157,0.04033935,98.45212687],[4.53754197,0.04034111,98.4526275],[4.53754237,0.04034287,98.45312907],[4.53754277,0.04034463,98.45363158],[4.53754317,0.04034638,98.45413502],[4.53754356,0.04034814,98.4546394],[4.53754396,0.0403499,98.45514471],[4.53754436,0.04035166,98.45565094],[4.53754476,0.04035342,98.45615809],[4.53754516,0.04035518,98.45666617],[4.53754556,0.04035694,98.45717516],[4.53754595,0.0403587,98.45768506],[4.53754635,0.04036046,98.45819588],[4.53754675,0.04036221,98.45870761],[4.53754715,0.04036397,98.45922024],[4.53754755,0.04036573,98.45973378],[4.53754794,0.04036749,98.46024821],[4.53754834,0.04036925,98.46076354],[4.53754874,0.04037101,98.46127977],[4.53754914,0.04037277,98.46179689],[4.53754954,0.04037453,98.46231489],[4.53754993,0.04037629,98.46283378],[4.53755033,0.04037804,98.46335355],[4.53755073,0.0403798,98.46387419],[4.53755113,0.04038156,98.4643957],[4.53755152,0.04038332,98.46491805],[4.53755192,0.04038508,98.46544126],[4.53755232,0.04038684,98.46596531],[4.53755272,0.0403886,98.4664902],[4.53755312,0.04039036,98.46701591],[4.53755351,0.04039212,98.46754244],[4.53755391,0.04039388,98.46806978],[4.53755431,0.04039563,98.46859793],[4.5375547,0.04039739,98.46912688],[4.5375551,0.04039915,98.46965662],[4.5375555,0.04040091,98.47018714],[4.5375559,0.04040267,98.47071844],[4.53755629,0.04040443,98.47125051],[4.53755669,0.04040619,98.47178334],[4.53755709,0.04040795,98.47231692],[4.53755748,0.04040971,98.47285126],[4.53755788,0.04041147,98.47338633],[4.53755828,0.04041323,98.47392214],[4.53755867,0.04041498,98.47445867],[4.53755907,0.04041674,98.47499593],[4.53755947,0.0404185,98.4755339],[4.53755986,0.04042026,98.47607257],[4.53756026,0.04042202,98.47661194],[4.53756065,0.04042378,98.477152],[4.53756105,0.04042554,98.47769275],[4.53756145,0.0404273,98.47823418],[4.53756184,0.04042906,98.47877629],[4.53756224,0.04043082,98.47931906],[4.53756263,0.04043258,98.4798625],[4.53756303,0.04043434,98.4804066],[4.53756342,0.0404361,98.48095135],[4.53756382,0.04043786,98.48149674],[4.53756421,0.04043962,98.48204278],[4.53756461,0.04044138,98.48258945],[4.537565,0.04044314,98.48313676],[4.5375654,0.0404449,98.48368468],[4.53756579,0.04044665,98.48423323],[4.53756619,0.04044841,98.48478239],[4.53756658,0.04045017,98.48533216],[4.53756697,0.04045193,98.48588253],[4.53756737,0.04045369,98.4864335],[4.53756776,0.04045545,98.48698506],[4.53756816,0.04045721,98.48753721],[4.53756855,0.04045897,98.48808998],[4.53756894,0.04046073,98.48864338],[4.53756934,0.04046249,98.48919743],[4.53756973,0.04046425,98.48975217],[4.53757012,0.04046601,98.4903076],[4.53757051,0.04046777,98.49086375],[4.53757091,0.04046953,98.49142063],[4.5375713,0.04047129,98.49197828],[4.53757169,0.04047305,98.4925367],[4.53757208,0.04047481,98.49309593],[4.53757248,0.04047657,98.49365597],[4.53757287,0.04047833,98.49421686],[4.53757326,0.04048009,98.49477861],[4.53757365,0.04048185,98.49534124],[4.53757405,0.04048361,98.49590477],[4.53757444,0.04048537,98.49646922],[4.53757483,0.04048713,98.49703462],[4.53757522,0.04048889,98.49760098],[4.53757562,0.04049065,98.49816833],[4.53757601,0.04049241,98.49873668],[4.5375764,0.04049417,98.49930605],[4.53757679,0.04049593,98.49987646],[4.53757718,0.04049769,98.50044794],[4.53757758,0.04049946,98.50102051],[4.53757797,0.04050122,98.50159418],[4.53757836,0.04050298,98.50216897],[4.53757875,0.04050474,98.50274491],[4.53757915,0.0405065,98.50332201],[4.53757954,0.04050826,98.5039003],[4.53757993,0.04051002,98.50447979],[4.53758032,0.04051178,98.50506049],[4.53758072,0.04051354,98.5056424],[4.53758111,0.0405153,98.50622551],[4.5375815,0.04051706,98.50680982],[4.53758189,0.04051882,98.50739533],[4.53758229,0.04052058,98.50798203],[4.53758268,0.04052234,98.50856992],[4.53758307,0.0405241,98.50915899],[4.53758347,0.04052586,98.50974924],[4.53758386,0.04052762,98.51034067],[4.53758425,0.04052938,98.51093327],[4.53758465,0.04053114,98.51152704],[4.53758504,0.0405329,98.51212197],[4.53758543,0.04053466,98.51271807],[4.53758582,0.04053642,98.51331531],[4.53758622,0.04053818,98.51391372],[4.53758661,0.04053994,98.51451327],[4.53758701,0.0405417,98.51511396],[4.5375874,0.04054346,98.5157158],[4.53758779,0.04054522,98.51631877],[4.53758819,0.04054698,98.51692287],[4.53758858,0.04054874,98.51752811],[4.53758897,0.0405505,98.51813447],[4.53758937,0.04055226,98.51874195],[4.53758976,0.04055402,98.51935054],[4.53759015,0.04055578,98.51996025],[4.53759055,0.04055754,98.52057108],[4.53759094,0.0405593,98.521183],[4.53759134,0.04056106,98.52179603],[4.53759173,0.04056282,98.52241016],[4.53759212,0.04056458,98.52302538],[4.53759252,0.04056634,98.52364169],[4.53759291,0.0405681,98.52425909],[4.5375933,0.04056986,98.52487757],[4.5375937,0.04057162,98.52549713],[4.53759409,0.04057338,98.52611777],[4.53759449,0.04057514,98.52673948],[4.53759488,0.0405769,98.52736225],[4.53759527,0.04057866,98.52798609],[4.53759567,0.04058041,98.52861099],[4.53759606,0.04058217,98.52923695],[4.53759646,0.04058393,98.52986396],[4.53759685,0.04058569,98.53049202],[4.53759724,0.04058745,98.53112113],[4.53759764,0.04058921,98.53175127],[4.53759803,0.04059097,98.53238246],[4.53759842,0.04059273,98.53301467],[4.53759882,0.04059449,98.53364792],[4.53759921,0.04059625,98.5342822],[4.53759961,0.04059801,98.5349175],[4.5376,0.04059977,98.5355538],[4.53760039,0.04060153,98.53619109],[4.53760079,0.04060329,98.53682933],[4.53760118,0.04060505,98.5374685],[4.53760157,0.04060681,98.53810857],[4.53760197,0.04060857,98.53874951],[4.53760236,0.04061033,98.5393913],[4.53760276,0.04061209,98.5400339],[4.53760315,0.04061385,98.5406773],[4.53760354,0.04061561,98.54132147],[4.53760393,0.04061737,98.54196639],[4.53760433,0.04061913,98.54261207],[4.53760472,0.0406209,98.54325853],[4.53760511,0.04062266,98.54390579],[4.53760551,0.04062442,98.54455385],[4.5376059,0.04062618,98.54520272],[4.53760629,0.04062794,98.54585242],[4.53760668,0.0406297,98.54650295],[4.53760708,0.04063146,98.54715433],[4.53760747,0.04063322,98.54780655],[4.53760786,0.04063498,98.54845964],[4.53760825,0.04063674,98.54911359],[4.53760864,0.0406385,98.54976843],[4.53760904,0.04064026,98.55042416],[4.53760943,0.04064202,98.55108078],[4.53760982,0.04064378,98.55173832],[4.53761021,0.04064554,98.55239677],[4.5376106,0.0406473,98.55305616],[4.537611,0.04064906,98.55371648],[4.53761139,0.04065082,98.55437774],[4.53761178,0.04065258,98.55503996],[4.53761217,0.04065434,98.55570315],[4.53761256,0.0406561,98.55636731],[4.53761295,0.04065786,98.55703246],[4.53761334,0.04065962,98.5576986],[4.53761374,0.04066139,98.55836574],[4.53761413,0.04066315,98.5590339],[4.53761452,0.04066491,98.55970307],[4.53761491,0.04066667,98.56037328],[4.5376153,0.04066843,98.56104453],[4.53761569,0.04067019,98.56171682],[4.53761608,0.04067195,98.56239018],[4.53761648,0.04067371,98.5630646],[4.53761687,0.04067547,98.5637401],[4.53761726,0.04067723,98.56441669],[4.53761765,0.04067899,98.56509437],[4.53761804,0.04068075,98.56577316],[4.53761843,0.04068251,98.56645306],[4.53761882,0.04068427,98.56713408],[4.53761921,0.04068603,98.56781623],[4.53761961,0.0406878,98.56849953],[4.53762,0.04068956,98.56918398],[4.53762039,0.04069132,98.56986958],[4.53762078,0.04069308,98.57055636],[4.53762117,0.04069484,98.57124431],[4.53762156,0.0406966,98.57193348],[4.53762195,0.04069836,98.5726239],[4.53762235,0.04070012,98.57331563],[4.53762274,0.04070188,98.57400872],[4.53762313,0.04070364,98.57470322],[4.53762352,0.0407054,98.57539919],[4.53762391,0.04070716,98.57609667],[4.53762431,0.04070892,98.57679571],[4.5376247,0.04071068,98.57749637],[4.53762509,0.04071244,98.57819869],[4.53762548,0.0407142,98.57890268],[4.53762588,0.04071596,98.57960835],[4.53762627,0.04071772,98.58031566],[4.53762666,0.04071948,98.5810246],[4.53762706,0.04072124,98.58173515],[4.53762745,0.040723,98.58244729],[4.53762785,0.04072476,98.58316101],[4.53762824,0.04072652,98.58387629],[4.53762863,0.04072828,98.58459312],[4.53762903,0.04073004,98.58531147],[4.53762942,0.0407318,98.58603132],[4.53762982,0.04073356,98.58675267],[4.53763021,0.04073532,98.58747549],[4.53763061,0.04073708,98.58819977],[4.537631,0.04073884,98.58892548],[4.5376314,0.0407406,98.58965262],[4.53763179,0.04074236,98.59038117],[4.53763219,0.04074412,98.5911111],[4.53763259,0.04074588,98.5918424],[4.53763298,0.04074764,98.59257506],[4.53763338,0.0407494,98.59330905],[4.53763377,0.04075116,98.59404437],[4.53763417,0.04075292,98.59478099],[4.53763456,0.04075468,98.59551889],[4.53763496,0.04075644,98.59625806],[4.53763536,0.0407582,98.59699849],[4.53763575,0.04075996,98.59774015],[4.53763615,0.04076172,98.59848303],[4.53763655,0.04076348,98.59922712],[4.53763694,0.04076524,98.59997239],[4.53763734,0.040767,98.60071882],[4.53763774,0.04076876,98.60146641],[4.53763813,0.04077052,98.60221514],[4.53763853,0.04077228,98.60296498],[4.53763892,0.04077404,98.60371593],[4.53763932,0.0407758,98.60446796],[4.53763972,0.04077756,98.60522106],[4.53764011,0.04077932,98.60597521],[4.53764051,0.04078108,98.6067304],[4.53764091,0.04078284,98.60748661],[4.5376413,0.0407846,98.60824382],[4.5376417,0.04078636,98.60900202],[4.53764209,0.04078812,98.60976121],[4.53764249,0.04078988,98.61052135],[4.53764289,0.04079163,98.61128246],[4.53764328,0.04079339,98.6120445],[4.53764368,0.04079515,98.61280748],[4.53764407,0.04079691,98.61357137],[4.53764447,0.04079867,98.61433616],[4.53764487,0.04080043,98.61510185],[4.53764526,0.04080219,98.61586842],[4.53764566,0.04080395,98.61663586],[4.53764605,0.04080571,98.61740416],[4.53764645,0.04080747,98.6181733],[4.53764684,0.04080923,98.61894327],[4.53764724,0.04081099,98.61971406],[4.53764763,0.04081275,98.62048566],[4.53764803,0.04081451,98.62125805],[4.53764842,0.04081627,98.62203123],[4.53764882,0.04081803,98.62280517],[4.53764921,0.04081979,98.62357988],[4.5376496,0.04082155,98.62435533],[4.53765,0.04082331,98.62513152],[4.53765039,0.04082508,98.62590843],[4.53765079,0.04082684,98.62668605],[4.53765118,0.0408286,98.62746437],[4.53765157,0.04083036,98.62824337],[4.53750652,0.04086306,98.36121883]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":1,"type":"shoulder","predecessorId":1},{"successorId":2,"level":false,"id":2,"type":"border","predecessorId":2}],"roadId":"1003400","singleSide":false,"rightLanes":[{"successorId":-5,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":-5,"type":"none","predecessorId":-4},{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-4,"type":"shoulder","predecessorId":-3},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0},{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":0},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.53734788,0.04021701,98.06502578],[4.53734749,0.04021525,98.06451693],[4.5373471,0.0402135,98.06400377],[4.53734671,0.04021174,98.06348662],[4.53734631,0.04020998,98.06296585],[4.53734592,0.04020822,98.06244178],[4.53734552,0.04020646,98.06191475],[4.53734512,0.04020471,98.06138512],[4.53734472,0.04020295,98.06085322],[4.53734432,0.0402012,98.0603194],[4.53734391,0.04019944,98.059784],[4.53734351,0.04019768,98.05924736],[4.53734311,0.04019593,98.05870984],[4.5373427,0.04019417,98.05817177],[4.5373423,0.04019242,98.0576335],[4.53734189,0.04019066,98.05709538],[4.53734149,0.04018891,98.05655776],[4.53734108,0.04018715,98.05602096],[4.53734067,0.0401854,98.05548498],[4.53734027,0.04018364,98.05494946],[4.53733986,0.04018189,98.05441401],[4.53733945,0.04018013,98.05387827],[4.53733904,0.04017838,98.05334198],[4.53733864,0.04017662,98.0528053],[4.53733823,0.04017487,98.05226851],[4.53733782,0.04017311,98.0517319],[4.53733741,0.04017136,98.05119575],[4.537337,0.04016961,98.05066034],[4.53733659,0.04016785,98.05012596],[4.53733618,0.0401661,98.04959289],[4.53733577,0.04016434,98.04906141],[4.53733536,0.04016259,98.04853181],[4.53733495,0.04016084,98.04800437],[4.53733454,0.04015908,98.04747938],[4.53733413,0.04015733,98.04695713],[4.53733373,0.04015557,98.04643789],[4.53733332,0.04015382,98.04592196],[4.53733291,0.04015206,98.04540962],[4.53733251,0.04015031,98.04490116],[4.5373321,0.04014855,98.04439673],[4.5373317,0.0401468,98.04389639],[4.53733129,0.04014504,98.04340015],[4.53733089,0.04014329,98.04290808],[4.53733049,0.04014153,98.04242004],[4.53733009,0.04013978,98.04193528],[4.53732969,0.04013802,98.04145305],[4.53732929,0.04013626,98.04097325],[4.53732889,0.04013451,98.04049592],[4.53732849,0.04013275,98.04002114],[4.53732809,0.040131,98.03954894],[4.53732769,0.04012924,98.0390794],[4.53732729,0.04012748,98.03861256],[4.5373269,0.04012573,98.03814847],[4.5373265,0.04012397,98.0376872],[4.5373261,0.04012221,98.0372288],[4.53732571,0.04012046,98.03677333],[4.53732531,0.0401187,98.03632084],[4.53732492,0.04011694,98.03587139],[4.53732452,0.04011519,98.03542503],[4.53732413,0.04011343,98.03498182],[4.53732373,0.04011167,98.03454182],[4.53732334,0.04010991,98.03410508],[4.53732295,0.04010816,98.03367166],[4.53732256,0.0401064,98.03324162],[4.53732217,0.04010464,98.03281501],[4.53732178,0.04010288,98.03239188],[4.53732139,0.04010113,98.0319723],[4.537321,0.04009937,98.03155632],[4.53732061,0.04009761,98.031144],[4.53732022,0.04009585,98.03073539],[4.53731983,0.04009409,98.03033055],[4.53731945,0.04009233,98.02992938],[4.53731906,0.04009057,98.02953115],[4.53731868,0.04008882,98.02913497],[4.53731829,0.04008706,98.02873995],[4.5373179,0.0400853,98.02834529],[4.53731752,0.04008354,98.02795077],[4.53731713,0.04008178,98.02755634],[4.53731674,0.04008002,98.02716192],[4.53731636,0.04007826,98.02676748],[4.53731597,0.04007651,98.02637294],[4.53731558,0.04007475,98.02597824],[4.53731519,0.04007299,98.02558334],[4.5373148,0.04007123,98.02518816],[4.53731441,0.04006948,98.02479264],[4.53731402,0.04006772,98.02439674],[4.53731363,0.04006596,98.02400039],[4.53731323,0.0400642,98.02360352],[4.53731284,0.04006245,98.02320608],[4.53731245,0.04006069,98.02280802],[4.53731205,0.04005893,98.02240926],[4.53731166,0.04005718,98.02200975],[4.53731126,0.04005542,98.02160944],[4.53731086,0.04005366,98.02120825],[4.53731047,0.04005191,98.02080613],[4.53731007,0.04005015,98.0204031],[4.53730967,0.0400484,98.01999946],[4.53730927,0.04004664,98.01959561],[4.53730887,0.04004489,98.01919195],[4.53730847,0.04004313,98.01878889],[4.53730807,0.04004138,98.01838681],[4.53730767,0.04003962,98.01798614],[4.53730727,0.04003787,98.01758727],[4.53730687,0.04003611,98.0171906],[4.53730647,0.04003436,98.01679655],[4.53730607,0.0400326,98.01640551],[4.53730567,0.04003085,98.01601787],[4.53730527,0.04002909,98.01563342],[4.53730487,0.04002734,98.01525149],[4.53730448,0.04002558,98.01487195],[4.53730408,0.04002382,98.01449483],[4.53730368,0.04002207,98.01412013],[4.53730329,0.04002031,98.01374786],[4.53730289,0.04001856,98.01337803],[4.53730249,0.0400168,98.01301066],[4.5373021,0.04001505,98.01264574],[4.5373017,0.04001329,98.01228328],[4.53730131,0.04001153,98.01192331],[4.53730091,0.04000978,98.01156582],[4.53730052,0.04000802,98.01121082],[4.53730012,0.04000627,98.01085832],[4.53729973,0.04000451,98.01050834],[4.53729933,0.04000275,98.01016087],[4.53729894,0.040001,98.00981594],[4.53729855,0.03999924,98.00947354],[4.53729815,0.03999748,98.00913368],[4.53729776,0.03999573,98.00879651],[4.53729737,0.03999397,98.00846265],[4.53729698,0.03999221,98.00813273],[4.53729659,0.03999046,98.00780685],[4.5372962,0.0399887,98.00748501],[4.53729581,0.03998694,98.00716718],[4.53729542,0.03998519,98.00685334],[4.53729503,0.03998343,98.00654348],[4.53729465,0.03998167,98.00623757],[4.53729426,0.03997991,98.00593559],[4.53729388,0.03997816,98.00563754],[4.53729349,0.0399764,98.00534327],[4.53729311,0.03997464,98.00505222],[4.53729272,0.03997288,98.00476372],[4.53729234,0.03997112,98.00447712],[4.53729196,0.03996936,98.0041918],[4.53729157,0.03996761,98.00390713],[4.53729119,0.03996585,98.00362249],[4.5372908,0.03996409,98.00333723],[4.53729042,0.03996233,98.00305074],[4.53729003,0.03996057,98.00276238],[4.53728964,0.03995882,98.00247152],[4.53728925,0.03995706,98.00217753],[4.53728886,0.0399553,98.00187992],[4.53728847,0.03995355,98.0015788],[4.53728807,0.03995179,98.00127441],[4.53728768,0.03995004,98.00096699],[4.53728728,0.03994828,98.00065679],[4.53728688,0.03994653,98.00034405],[4.53728648,0.03994477,98.00002903],[4.53728608,0.03994302,97.99971197],[4.53728568,0.03994127,97.99939312],[4.53728528,0.03993951,97.99907272],[4.53728487,0.03993776,97.99875102],[4.53728447,0.03993601,97.99842827],[4.53728406,0.03993425,97.99810471],[4.53728366,0.0399325,97.9977806],[4.53728325,0.03993075,97.99745618],[4.53728284,0.03992899,97.99713171],[4.53728243,0.03992724,97.99680742],[4.53728203,0.03992549,97.99648359],[4.53728162,0.03992374,97.99616046],[4.53728121,0.03992199,97.99583832],[4.5372808,0.03992023,97.99551765],[4.53728039,0.03991848,97.99519892],[4.53727999,0.03991673,97.99488244],[4.53727958,0.03991498,97.99456835],[4.53727917,0.03991322,97.99425677],[4.53727876,0.03991147,97.9939478],[4.53727836,0.03990972,97.99364158],[4.53727795,0.03990797,97.99333819],[4.53727755,0.03990621,97.99303761],[4.53727714,0.03990446,97.99273976],[4.53727673,0.03990271,97.9924446],[4.53727633,0.03990096,97.99215206],[4.53727593,0.0398992,97.99186209],[4.53727552,0.03989745,97.99157462],[4.53727512,0.0398957,97.99128959],[4.53727471,0.03989394,97.99100694],[4.53727431,0.03989219,97.99072662],[4.53727391,0.03989044,97.99044856],[4.53727351,0.03988869,97.99017271],[4.5372731,0.03988693,97.98989899],[4.5372727,0.03988518,97.98962736],[4.5372723,0.03988343,97.98935776],[4.5372719,0.03988167,97.98909013],[4.53727149,0.03987992,97.98882444],[4.53727109,0.03987817,97.98856067],[4.53727069,0.03987641,97.98829878],[4.53727029,0.03987466,97.98803875],[4.53726989,0.03987291,97.98778054],[4.53726949,0.03987115,97.98752411],[4.53726909,0.0398694,97.98726945],[4.53726868,0.03986765,97.98701651],[4.53726828,0.03986589,97.98676527],[4.53726788,0.03986414,97.9865157],[4.53726748,0.03986239,97.98626775],[4.53726708,0.03986063,97.98602141],[4.53726668,0.03985888,97.98577664],[4.53726628,0.03985713,97.9855334],[4.53726588,0.03985537,97.98529167],[4.53726548,0.03985362,97.98505142],[4.53726508,0.03985187,97.9848126],[4.53726467,0.03985011,97.9845752],[4.53726427,0.03984836,97.98433917],[4.53726387,0.03984661,97.98410449],[4.53726347,0.03984485,97.98387112],[4.53726307,0.0398431,97.98363904],[4.53726267,0.03984135,97.9834082],[4.53726227,0.03983959,97.98317859],[4.53726187,0.03983784,97.98295019],[4.53726146,0.03983609,97.98272312],[4.53726106,0.03983433,97.98249754],[4.53726066,0.03983258,97.98227359],[4.53726026,0.03983083,97.9820514],[4.53725986,0.03982908,97.98183104],[4.53725946,0.03982732,97.98161255],[4.53725906,0.03982557,97.98139598],[4.53725866,0.03982382,97.98118138],[4.53725826,0.03982206,97.98096879],[4.53725785,0.03982031,97.98075827],[4.53725745,0.03981856,97.98054985],[4.53725705,0.0398168,97.98034358],[4.53725665,0.03981505,97.98013952],[4.53725626,0.0398133,97.9799377],[4.53725586,0.03981154,97.97973818],[4.53725546,0.03980979,97.979541],[4.53725506,0.03980804,97.97934621],[4.53725466,0.03980628,97.97915384],[4.53725426,0.03980453,97.97896394],[4.53725386,0.03980278,97.97877652],[4.53725347,0.03980102,97.97859162],[4.53725307,0.03979927,97.97840922],[4.53725267,0.03979752,97.97822923],[4.53725227,0.03979576,97.97805159],[4.53725188,0.03979401,97.97787622],[4.53725148,0.03979226,97.97770304],[4.53725109,0.0397905,97.97753197],[4.53725069,0.03978875,97.97736295],[4.53725029,0.03978699,97.97719588],[4.5372499,0.03978524,97.9770307],[4.5372495,0.03978349,97.97686733],[4.53724911,0.03978173,97.9767057],[4.53724871,0.03977998,97.97654571],[4.53724832,0.03977822,97.97638731],[4.53724792,0.03977647,97.97623041],[4.53724753,0.03977472,97.97607494],[4.53724713,0.03977296,97.97592074],[4.53724674,0.03977121,97.9757674],[4.53724634,0.03976945,97.97561442],[4.53724594,0.0397677,97.97546133],[4.53724555,0.03976595,97.9753077],[4.53724515,0.03976419,97.97515308],[4.53724475,0.03976244,97.97499706],[4.53724435,0.03976069,97.97483919],[4.53724395,0.03975894,97.97467913],[4.53724355,0.0397572,97.97451702],[4.53724315,0.03975545,97.97435307],[4.53724275,0.0397537,97.97418749],[4.53724234,0.03975194,97.97402051],[4.53724194,0.03975019,97.97385235],[4.53724153,0.03974844,97.97368323],[4.53724112,0.03974669,97.97351338],[4.53724071,0.03974494,97.973343],[4.53724031,0.03974319,97.97317233],[4.5372399,0.03974144,97.97300159],[4.53723949,0.03973969,97.97283099],[4.53723908,0.03973794,97.97266075],[4.53723867,0.03973619,97.97249111],[4.53723826,0.03973444,97.97232227],[4.53723785,0.03973269,97.97215446],[4.53723744,0.03973094,97.97198791],[4.53723703,0.03972918,97.97182283],[4.53723662,0.03972743,97.97165944],[4.53723621,0.03972568,97.97149796],[4.5372358,0.03972393,97.97133863],[4.53723539,0.03972218,97.97118167],[4.53723498,0.03972043,97.97102732],[4.53723457,0.03971868,97.97087563],[4.53723417,0.03971693,97.97072627],[4.53723376,0.03971518,97.97057901],[4.53723335,0.03971343,97.97043362],[4.53723294,0.03971168,97.9702899],[4.53723253,0.03970992,97.97014762],[4.53723213,0.03970817,97.97000658],[4.53723172,0.03970642,97.96986655],[4.53723131,0.03970467,97.96972733],[4.5372309,0.03970292,97.96958869],[4.53723049,0.03970117,97.96945043],[4.53723008,0.03969942,97.96931232],[4.53722967,0.03969767,97.96917442],[4.53722926,0.03969591,97.96903699],[4.53722885,0.03969416,97.9689003],[4.53722844,0.03969241,97.96876465],[4.53722803,0.03969066,97.9686303],[4.53722762,0.03968891,97.96849754],[4.53722721,0.03968716,97.96836665],[4.5372268,0.03968541,97.96823791],[4.53722639,0.03968366,97.96811159],[4.53722599,0.03968191,97.96798799],[4.53722558,0.03968015,97.96786738],[4.53722517,0.0396784,97.96775003],[4.53722476,0.03967665,97.96763623],[4.53722435,0.0396749,97.96752627],[4.53722395,0.03967315,97.96742041],[4.53722354,0.03967139,97.96731894],[4.53722314,0.03966964,97.96722211],[4.53722274,0.03966789,97.96712942],[4.53722234,0.03966613,97.96703965],[4.53722193,0.03966438,97.96695173],[4.53722153,0.03966263,97.96686538],[4.53722113,0.03966088,97.96678049],[4.53722073,0.03965912,97.96669694],[4.53722033,0.03965737,97.96661461],[4.53721992,0.03965562,97.96653337],[4.53721952,0.03965386,97.96645311],[4.53721912,0.03965211,97.9663737],[4.53721872,0.03965036,97.96629505],[4.53721831,0.0396486,97.96621718],[4.53721791,0.03964685,97.96614012],[4.53721751,0.0396451,97.96606391],[4.5372171,0.03964334,97.96598858],[4.5372167,0.03964159,97.96591417],[4.5372163,0.03963984,97.9658407],[4.53721589,0.03963808,97.96576822],[4.53721549,0.03963633,97.96569676],[4.53721509,0.03963458,97.96562636],[4.53721468,0.03963282,97.96555707],[4.53721428,0.03963107,97.96548896],[4.53721388,0.03962932,97.96542208],[4.53721347,0.03962756,97.96535649],[4.53721307,0.03962581,97.96529227],[4.53721266,0.03962406,97.96522945],[4.53721226,0.0396223,97.96516811],[4.53721186,0.03962055,97.96510831],[4.53721145,0.0396188,97.9650501],[4.53721105,0.03961704,97.96499354],[4.53721065,0.03961529,97.96493871],[4.53721024,0.03961354,97.96488564],[4.53720984,0.03961178,97.96483439],[4.53720944,0.03961003,97.96478463],[4.53720903,0.03960827,97.96473626],[4.53720863,0.03960652,97.96468936],[4.53720823,0.03960477,97.964644],[4.53720783,0.03960301,97.96460026],[4.53720742,0.03960126,97.96455822],[4.53720702,0.0395995,97.96451794],[4.53720662,0.03959775,97.96447951],[4.53720622,0.039596,97.964443],[4.53720581,0.03959424,97.96440848],[4.53720541,0.03959249,97.96437603],[4.53720501,0.03959073,97.96434573],[4.53720461,0.03958898,97.96431764],[4.53720421,0.03958722,97.96429185],[4.53720381,0.03958547,97.96426842],[4.53720341,0.03958372,97.96424744],[4.53720301,0.03958196,97.96422898],[4.53720261,0.03958021,97.96421312],[4.53720221,0.03957845,97.96419992],[4.53720181,0.03957669,97.96418946],[4.53720142,0.03957494,97.96418182],[4.53720102,0.03957318,97.96417708],[4.53720062,0.03957143,97.9641753],[4.53720023,0.03956967,97.96417657],[4.53719983,0.03956792,97.96418095],[4.53719944,0.03956616,97.96418846],[4.53719904,0.0395644,97.96419778],[4.53719865,0.03956265,97.96420624],[4.53719825,0.03956089,97.96421093],[4.53719785,0.03955914,97.96420821],[4.53719745,0.03955738,97.96419428],[4.53719704,0.03955563,97.96416603],[4.53719662,0.03955388,97.96412328],[4.53719621,0.03955213,97.96406678],[4.53719578,0.03955038,97.96399816],[4.53719536,0.03954863,97.96391927],[4.53719493,0.03954688,97.96383198],[4.5371945,0.03954513,97.96373812],[4.53719407,0.03954338,97.96363956],[4.53719363,0.03954164,97.96353815],[4.5371932,0.03953989,97.96343575],[4.53719276,0.03953814,97.9633342],[4.53719233,0.0395364,97.96323535],[4.53719189,0.03953465,97.96314078],[4.53719146,0.0395329,97.96305089],[4.53719103,0.03953115,97.96296582],[4.5371906,0.0395294,97.9628857],[4.53719017,0.03952766,97.96281068],[4.53718974,0.03952591,97.96274089],[4.53718932,0.03952416,97.96267645],[4.53718889,0.03952241,97.96261736],[4.53718847,0.03952066,97.96256295],[4.53718805,0.03951891,97.9625124],[4.53718762,0.03951716,97.96246492],[4.5371872,0.03951541,97.96241966],[4.53718678,0.03951366,97.96237584],[4.53718636,0.03951191,97.96233262],[4.53718593,0.03951016,97.96228933],[4.53718551,0.03950841,97.96224581],[4.53718509,0.03950666,97.96220202],[4.53718466,0.03950491,97.96215794],[4.53718424,0.03950316,97.96211354],[4.53718382,0.03950141,97.96206889],[4.53718339,0.03949966,97.96202419],[4.53718296,0.03949791,97.96197963],[4.53718254,0.03949616,97.96193537],[4.53718211,0.03949441,97.96189157],[4.53718169,0.03949266,97.96184836],[4.53718126,0.03949091,97.96180589],[4.53718083,0.03948916,97.96176428],[4.53718041,0.03948741,97.96172368],[4.53717998,0.03948566,97.96168422],[4.53717955,0.03948391,97.96164604],[4.53717913,0.03948216,97.96160928],[4.5371787,0.03948041,97.96157407],[4.53717828,0.03947866,97.96154054],[4.53717785,0.03947691,97.96150885],[4.53717743,0.03947516,97.96147912],[4.537177,0.03947341,97.96145148],[4.53717658,0.03947166,97.96142609],[4.53717615,0.03946991,97.96140307],[4.53717573,0.03946816,97.96138255],[4.5371753,0.03946641,97.96136469],[4.53717488,0.03946466,97.9613496],[4.53717446,0.03946291,97.96133737],[4.53717404,0.03946116,97.96132776],[4.53717361,0.0394594,97.96132052],[4.53717319,0.03945765,97.96131534],[4.53717277,0.0394559,97.96131197],[4.53717235,0.03945415,97.96131011],[4.53717193,0.0394524,97.96130948],[4.53717151,0.03945065,97.96130982],[4.53717109,0.0394489,97.96131083],[4.53717067,0.03944714,97.96131224],[4.53717025,0.03944539,97.96131378],[4.53716982,0.03944364,97.96131515],[4.5371694,0.03944189,97.9613161],[4.53716898,0.03944014,97.96131652],[4.53716856,0.03943839,97.96131648],[4.53716813,0.03943664,97.96131607],[4.53716771,0.03943489,97.96131538],[4.53716728,0.03943314,97.96131451],[4.53716686,0.03943139,97.96131355],[4.53716643,0.03942963,97.9613126],[4.53716601,0.03942788,97.96131175],[4.53716558,0.03942613,97.96131108],[4.53716516,0.03942438,97.9613107],[4.53716473,0.03942263,97.9613107],[4.5371643,0.03942088,97.96131117],[4.53716388,0.03941913,97.96131228],[4.53716345,0.03941738,97.96131427],[4.53716302,0.03941563,97.96131738],[4.5371626,0.03941388,97.96132184],[4.53716217,0.03941213,97.9613279],[4.53716174,0.03941038,97.9613358],[4.53716132,0.03940863,97.96134577],[4.53716089,0.03940688,97.96135806],[4.53716047,0.03940513,97.96137289],[4.53716004,0.03940338,97.96139035],[4.53715962,0.03940162,97.96141036],[4.5371592,0.03939987,97.96143286],[4.53715877,0.03939812,97.96145776],[4.53715835,0.03939637,97.96148498],[4.53715793,0.03939462,97.96151446],[4.53715751,0.03939287,97.96154613],[4.53715709,0.03939111,97.96157995],[4.53715667,0.03938936,97.96161588],[4.53715625,0.03938761,97.96165388],[4.53715582,0.03938586,97.96169389],[4.5371554,0.03938411,97.96173589],[4.53715499,0.03938235,97.96177982],[4.53715457,0.0393806,97.96182564],[4.53715415,0.03937885,97.96187332],[4.53715373,0.0393771,97.9619228],[4.53715331,0.03937534,97.96197402],[4.53715289,0.03937359,97.96202683],[4.53715247,0.03937184,97.96208104],[4.53715205,0.03937008,97.96213648],[4.53715164,0.03936833,97.96219296],[4.53715122,0.03936658,97.96225031],[4.5371508,0.03936483,97.96230834],[4.53715038,0.03936307,97.96236688],[4.53714996,0.03936132,97.96242575],[4.53714954,0.03935957,97.96248476],[4.53714912,0.03935781,97.96254375],[4.5371487,0.03935606,97.96260264],[4.53714828,0.03935431,97.96266147],[4.53714786,0.03935256,97.96272029],[4.53714744,0.0393508,97.96277913],[4.53714702,0.03934905,97.96283803],[4.5371466,0.0393473,97.96289703],[4.53714618,0.03934555,97.96295619],[4.53714576,0.03934379,97.96301553],[4.53714534,0.03934204,97.96307509],[4.53714491,0.03934029,97.96313493],[4.53714449,0.03933854,97.96319508],[4.53714407,0.03933678,97.96325558],[4.53714365,0.03933503,97.96331646],[4.53714322,0.03933328,97.96337778],[4.5371428,0.03933153,97.96343956],[4.53714238,0.03932978,97.96350182],[4.53714195,0.03932802,97.96356458],[4.53714153,0.03932627,97.96362785],[4.53714111,0.03932452,97.96369163],[4.53714068,0.03932277,97.96375579],[4.53714026,0.03932101,97.96382016],[4.53713984,0.03931926,97.96388457],[4.53713941,0.03931751,97.96394887],[4.53713899,0.03931576,97.96401289],[4.53713856,0.03931401,97.96407647],[4.53713814,0.03931226,97.96413945],[4.53713771,0.0393105,97.96420169],[4.53713728,0.03930875,97.96426318],[4.53713686,0.039307,97.96432394],[4.53713643,0.03930525,97.96438397],[4.537136,0.0393035,97.96444329],[4.53713557,0.03930175,97.96450191],[4.53713514,0.0393,97.96455986],[4.53713471,0.03929825,97.96461713],[4.53713428,0.03929649,97.9646737],[4.53713385,0.03929474,97.96472936],[4.53713342,0.03929299,97.9647839],[4.53713299,0.03929124,97.96483721],[4.53713255,0.03928949,97.96488933],[4.53713212,0.03928774,97.96494033],[4.53713169,0.03928599,97.96499024],[4.53713125,0.03928424,97.96503912],[4.53713082,0.03928249,97.96508703],[4.53713038,0.03928074,97.965134],[4.53712995,0.03927899,97.96518008],[4.53712951,0.03927725,97.96522534],[4.53712907,0.0392755,97.96526982],[4.53712863,0.03927375,97.96531357],[4.53712819,0.039272,97.96535663],[4.53712776,0.03927025,97.96539906],[4.53712732,0.0392685,97.96544092],[4.53712688,0.03926675,97.96548224],[4.53712644,0.039265,97.96552307],[4.537126,0.03926325,97.96556348],[4.53712555,0.03926151,97.96560351],[4.53712511,0.03925976,97.9656432],[4.53712467,0.03925801,97.96568261],[4.53712423,0.03925626,97.96572178],[4.53712379,0.03925451,97.96576077],[4.53712334,0.03925276,97.96579963],[4.5371229,0.03925102,97.96583841],[4.53712246,0.03924927,97.96587715],[4.53712201,0.03924752,97.96591591],[4.53712157,0.03924577,97.9659549],[4.53712113,0.03924402,97.96599446],[4.53712068,0.03924228,97.96603479],[4.53712024,0.03924053,97.96607593],[4.53711979,0.03923878,97.96611781],[4.53711935,0.03923703,97.96616026],[4.53711891,0.03923529,97.96620313],[4.53711846,0.03923354,97.96624624],[4.53711802,0.03923179,97.96628943],[4.53711757,0.03923004,97.96633253],[4.53711713,0.03922829,97.96637538],[4.53711668,0.03922655,97.96641781],[4.53711624,0.0392248,97.96645966],[4.53711579,0.03922305,97.96650076],[4.53711534,0.0392213,97.96654095],[4.53711489,0.03921956,97.96658005],[4.53711445,0.03921781,97.96661792],[4.537114,0.03921606,97.96665437],[4.53711355,0.03921432,97.96668925],[4.5371131,0.03921257,97.96672238],[4.53711264,0.03921082,97.96675362],[4.53711219,0.03920908,97.96678279],[4.53711174,0.03920733,97.96680972],[4.53711128,0.03920558,97.96683426],[4.53711083,0.03920384,97.96685623],[4.53711037,0.03920209,97.96687549],[4.53710991,0.03920035,97.96689185],[4.53710946,0.0391986,97.96690515],[4.537109,0.03919686,97.96691524],[4.53710853,0.03919512,97.96692195],[4.53710807,0.03919337,97.96692507],[4.53710761,0.03919163,97.96692416],[4.53710714,0.03918989,97.96691883],[4.53710667,0.03918814,97.96690889],[4.5371062,0.0391864,97.96689422],[4.53710573,0.03918466,97.9668747],[4.53710526,0.03918292,97.96685023],[4.53710478,0.03918118,97.96682068],[4.5371043,0.03917944,97.96678596],[4.53710383,0.0391777,97.96674621],[4.53710334,0.03917596,97.96670184],[4.53710286,0.03917422,97.96665326],[4.53710238,0.03917248,97.96660089],[4.53710189,0.03917074,97.96654514],[4.53710141,0.039169,97.96648643],[4.53710092,0.03916726,97.96642516],[4.53710043,0.03916553,97.96636175],[4.53709994,0.03916379,97.96629661],[4.53709945,0.03916206,97.96623016],[4.53709896,0.03916032,97.96616281],[4.53709847,0.03915858,97.96609497],[4.53709798,0.03915685,97.96602704],[4.53709749,0.03915511,97.96595945],[4.537097,0.03915338,97.9658926],[4.53709651,0.03915164,97.96582691],[4.53709602,0.03914991,97.96576277],[4.53709553,0.03914817,97.96570039],[4.53709504,0.03914644,97.96563977],[4.53709455,0.0391447,97.96558091],[4.53709406,0.03914296,97.96552378],[4.53709357,0.03914123,97.96546836],[4.53709308,0.03913949,97.96541465],[4.53709259,0.03913776,97.96536261],[4.5370921,0.03913602,97.96531224],[4.53709162,0.03913428,97.96526351],[4.53709113,0.03913255,97.96521641],[4.53709064,0.03913081,97.96517091],[4.53709015,0.03912908,97.96512701],[4.53708967,0.03912734,97.96508469],[4.53708918,0.0391256,97.96504391],[4.53708869,0.03912387,97.96500468],[4.53708821,0.03912213,97.96496697],[4.53708772,0.03912039,97.96493076],[4.53708723,0.03911866,97.96489603],[4.53708675,0.03911692,97.96486278],[4.53708626,0.03911519,97.96483097],[4.53708578,0.03911345,97.96480059],[4.53708529,0.03911171,97.96477163],[4.53708481,0.03910997,97.96474406],[4.53708432,0.03910824,97.96471788],[4.53708384,0.0391065,97.96469305],[4.53708335,0.03910476,97.96466957],[4.53708287,0.03910303,97.96464741],[4.53708238,0.03910129,97.96462656],[4.5370819,0.03909955,97.964607],[4.53708141,0.03909782,97.96458872],[4.53708093,0.03909608,97.96457168],[4.53708045,0.03909434,97.96455589],[4.53707996,0.0390926,97.96454132],[4.53707988,0.03909229,97.9645388],[4.53724438,0.03905247,98.29396748],[4.53724446,0.03905279,98.29394371],[4.53724488,0.03905454,98.29381326],[4.53724529,0.0390563,98.29368341],[4.53724571,0.03905805,98.29355416],[4.53724613,0.0390598,98.29342551],[4.53724655,0.03906156,98.29329745],[4.53724696,0.03906331,98.29316998],[4.53724738,0.03906507,98.29304311],[4.5372478,0.03906682,98.29291683],[4.53724821,0.03906858,98.29279114],[4.53724863,0.03907033,98.29266604],[4.53724905,0.03907209,98.29254151],[4.53724947,0.03907384,98.29241758],[4.53724988,0.0390756,98.29229422],[4.5372503,0.03907735,98.29217145],[4.53725072,0.03907911,98.29204925],[4.53725114,0.03908086,98.29192763],[4.53725155,0.03908262,98.29180658],[4.53725197,0.03908437,98.2916861],[4.53725239,0.03908612,98.2915662],[4.5372528,0.03908788,98.29144686],[4.53725322,0.03908963,98.29132809],[4.53725364,0.03909139,98.29120989],[4.53725405,0.03909314,98.29109225],[4.53725447,0.0390949,98.29097517],[4.53725489,0.03909665,98.29085865],[4.5372553,0.03909841,98.29074268],[4.53725572,0.03910016,98.29062728],[4.53725614,0.03910192,98.29051242],[4.53725655,0.03910367,98.29039812],[4.53725697,0.03910543,98.29028437],[4.53725739,0.03910718,98.29017117],[4.5372578,0.03910894,98.29005852],[4.53725822,0.03911069,98.28994641],[4.53725863,0.03911245,98.28983484],[4.53725905,0.0391142,98.28972381],[4.53725947,0.03911596,98.28961332],[4.53725988,0.03911771,98.28950338],[4.5372603,0.03911947,98.28939396],[4.53726071,0.03912122,98.28928508],[4.53726113,0.03912298,98.28917673],[4.53726154,0.03912473,98.28906891],[4.53726196,0.03912649,98.28896162],[4.53726237,0.03912824,98.28885486],[4.53726279,0.03913,98.28874862],[4.5372632,0.03913175,98.2886429],[4.53726362,0.03913351,98.28853771],[4.53726403,0.03913526,98.28843303],[4.53726445,0.03913702,98.28832887],[4.53726486,0.03913877,98.28822523],[4.53726528,0.03914053,98.28812209],[4.53726569,0.03914228,98.28801947],[4.53726611,0.03914404,98.28791736],[4.53726652,0.03914579,98.28781576],[4.53726693,0.03914755,98.28771466],[4.53726735,0.0391493,98.28761407],[4.53726776,0.03915106,98.28751397],[4.53726817,0.03915281,98.28741439],[4.53726859,0.03915457,98.28731532],[4.537269,0.03915632,98.28721677],[4.53726942,0.03915808,98.28711876],[4.53726983,0.03915983,98.28702129],[4.53727024,0.03916159,98.28692438],[4.53727065,0.03916334,98.28682804],[4.53727107,0.0391651,98.28673228],[4.53727148,0.03916685,98.28663711],[4.53727189,0.03916861,98.28654253],[4.5372723,0.03917036,98.28644857],[4.53727272,0.03917212,98.28635522],[4.53727313,0.03917387,98.28626251],[4.53727354,0.03917563,98.28617044],[4.53727395,0.03917739,98.28607902],[4.53727436,0.03917914,98.28598826],[4.53727478,0.0391809,98.28589818],[4.53727519,0.03918265,98.28580879],[4.5372756,0.03918441,98.28572011],[4.53727601,0.03918616,98.28563214],[4.53727642,0.03918792,98.28554492],[4.53727683,0.03918968,98.28545844],[4.53727725,0.03919143,98.28537273],[4.53727766,0.03919319,98.2852878],[4.53727807,0.03919494,98.28520367],[4.53727848,0.0391967,98.28512035],[4.53727889,0.03919845,98.28503785],[4.5372793,0.03920021,98.2849562],[4.53727971,0.03920197,98.2848754],[4.53728012,0.03920372,98.28479547],[4.53728053,0.03920548,98.28471643],[4.53728094,0.03920723,98.28463829],[4.53728135,0.03920899,98.28456107],[4.53728176,0.03921075,98.28448478],[4.53728217,0.0392125,98.28440944],[4.53728258,0.03921426,98.28433506],[4.53728299,0.03921601,98.28426166],[4.5372834,0.03921777,98.28418924],[4.53728381,0.03921953,98.28411784],[4.53728422,0.03922128,98.28404746],[4.53728463,0.03922304,98.28397812],[4.53728504,0.03922479,98.28390983],[4.53728545,0.03922655,98.28384261],[4.53728586,0.03922831,98.28377647],[4.53728627,0.03923006,98.28371143],[4.53728668,0.03923182,98.2836475],[4.53728709,0.03923358,98.28358471],[4.5372875,0.03923533,98.28352306],[4.53728791,0.03923709,98.28346256],[4.53728832,0.03923884,98.28340325],[4.53728873,0.0392406,98.28334512],[4.53728914,0.03924236,98.2832882],[4.53728955,0.03924411,98.2832325],[4.53728996,0.03924587,98.28317803],[4.53729037,0.03924763,98.28312482],[4.53729078,0.03924938,98.28307287],[4.53729119,0.03925114,98.2830222],[4.5372916,0.03925289,98.28297283],[4.53729201,0.03925465,98.28292478],[4.53729242,0.03925641,98.28287805],[4.53729283,0.03925816,98.28283266],[4.53729324,0.03925992,98.28278863],[4.53729365,0.03926168,98.28274598],[4.53729406,0.03926343,98.28270472],[4.53729447,0.03926519,98.28266485],[4.53729488,0.03926694,98.28262641],[4.53729529,0.0392687,98.2825894],[4.5372957,0.03927046,98.28255383],[4.53729611,0.03927221,98.2825197],[4.53729652,0.03927397,98.282487],[4.53729693,0.03927573,98.28245575],[4.53729734,0.03927748,98.28242594],[4.53729775,0.03927924,98.28239757],[4.53729816,0.03928099,98.28237065],[4.53729858,0.03928275,98.28234517],[4.53729899,0.03928451,98.28232114],[4.5372994,0.03928626,98.28229856],[4.53729981,0.03928802,98.28227744],[4.53730022,0.03928977,98.28225777],[4.53730063,0.03929153,98.28223955],[4.53730105,0.03929328,98.28222279],[4.53730146,0.03929504,98.28220748],[4.53730187,0.0392968,98.28219363],[4.53730228,0.03929855,98.28218124],[4.5373027,0.03930031,98.28217028],[4.53730311,0.03930206,98.28216074],[4.53730352,0.03930382,98.28215259],[4.53730393,0.03930557,98.28214582],[4.53730435,0.03930733,98.2821404],[4.53730476,0.03930909,98.28213632],[4.53730518,0.03931084,98.28213356],[4.53730559,0.0393126,98.28213209],[4.537306,0.03931435,98.2821319],[4.53730642,0.03931611,98.28213297],[4.53730683,0.03931786,98.28213528],[4.53730725,0.03931962,98.28213881],[4.53730766,0.03932137,98.28214354],[4.53730808,0.03932313,98.28214945],[4.53730849,0.03932488,98.28215651],[4.53730891,0.03932664,98.28216472],[4.53730932,0.03932839,98.28217405],[4.53730974,0.03933015,98.28218447],[4.53731015,0.0393319,98.28219598],[4.53731057,0.03933366,98.28220855],[4.53731098,0.03933541,98.28222216],[4.5373114,0.03933717,98.2822368],[4.53731181,0.03933892,98.28225243],[4.53731223,0.03934068,98.28226905],[4.53731265,0.03934243,98.28228663],[4.53731306,0.03934419,98.28230515],[4.53731348,0.03934594,98.2823246],[4.5373139,0.0393477,98.28234495],[4.53731431,0.03934945,98.28236618],[4.53731473,0.03935121,98.28238827],[4.53731514,0.03935296,98.28241121],[4.53731556,0.03935472,98.28243497],[4.53731598,0.03935647,98.28245954],[4.5373164,0.03935822,98.28248489],[4.53731681,0.03935998,98.282511],[4.53731723,0.03936173,98.28253786],[4.53731765,0.03936349,98.28256544],[4.53731806,0.03936524,98.28259373],[4.53731848,0.039367,98.2826227],[4.5373189,0.03936875,98.28265234],[4.53731932,0.03937051,98.28268262],[4.53731974,0.03937226,98.28271352],[4.53732015,0.03937402,98.28274503],[4.53732057,0.03937577,98.28277712],[4.53732099,0.03937753,98.28280977],[4.53732141,0.03937928,98.28284292],[4.53732183,0.03938104,98.2828765],[4.53732224,0.03938279,98.28291044],[4.53732266,0.03938455,98.28294469],[4.53732308,0.0393863,98.28297916],[4.5373235,0.03938805,98.28301381],[4.53732392,0.03938981,98.28304856],[4.53732433,0.03939156,98.28308334],[4.53732475,0.03939332,98.2831181],[4.53732517,0.03939507,98.28315275],[4.53732559,0.03939683,98.28318725],[4.537326,0.03939858,98.28322151],[4.53732642,0.03940034,98.28325549],[4.53732684,0.03940209,98.2832891],[4.53732726,0.03940385,98.28332228],[4.53732767,0.0394056,98.28335497],[4.53732809,0.03940736,98.2833871],[4.53732851,0.03940911,98.2834186],[4.53732892,0.03941087,98.28344941],[4.53732934,0.03941262,98.28347946],[4.53732975,0.03941438,98.28350869],[4.53733017,0.03941613,98.28353702],[4.53733058,0.03941789,98.2835644],[4.537331,0.03941964,98.28359075],[4.53733141,0.0394214,98.28361601],[4.53733183,0.03942316,98.28364012],[4.53733224,0.03942491,98.283663],[4.53733265,0.03942667,98.2836846],[4.53733307,0.03942842,98.28370491],[4.53733348,0.03943018,98.28372402],[4.53733389,0.03943194,98.283742],[4.5373343,0.03943369,98.28375893],[4.53733471,0.03943545,98.28377488],[4.53733512,0.03943721,98.28378992],[4.53733553,0.03943896,98.28380415],[4.53733594,0.03944072,98.28381763],[4.53733635,0.03944248,98.28383043],[4.53733676,0.03944423,98.28384264],[4.53733717,0.03944599,98.28385433],[4.53733758,0.03944775,98.28386558],[4.53733799,0.03944951,98.28387647],[4.53733839,0.03945126,98.28388706],[4.5373388,0.03945302,98.28389745],[4.53733921,0.03945478,98.2839077],[4.53733962,0.03945653,98.28391789],[4.53734002,0.03945829,98.28392809],[4.53734043,0.03946005,98.2839384],[4.53734084,0.03946181,98.28394887],[4.53734124,0.03946356,98.28395959],[4.53734165,0.03946532,98.28397064],[4.53734206,0.03946708,98.28398209],[4.53734246,0.03946884,98.28399403],[4.53734287,0.0394706,98.28400655],[4.53734328,0.03947235,98.28401977],[4.53734368,0.03947411,98.28403378],[4.53734409,0.03947587,98.28404868],[4.5373445,0.03947763,98.28406458],[4.53734491,0.03947938,98.28408157],[4.53734531,0.03948114,98.28409976],[4.53734572,0.0394829,98.28411925],[4.53734613,0.03948466,98.28414015],[4.53734653,0.03948641,98.28416255],[4.53734694,0.03948817,98.28418656],[4.53734735,0.03948993,98.28421227],[4.53734776,0.03949169,98.28423977],[4.53734817,0.03949344,98.28426905],[4.53734858,0.0394952,98.28430008],[4.53734899,0.03949696,98.28433281],[4.5373494,0.03949871,98.28436724],[4.53734981,0.03950047,98.28440331],[4.53735022,0.03950223,98.284441],[4.53735063,0.03950399,98.28448029],[4.53735104,0.03950574,98.28452114],[4.53735145,0.0395075,98.28456351],[4.53735186,0.03950926,98.28460738],[4.53735227,0.03951101,98.28465272],[4.53735268,0.03951277,98.28469949],[4.53735309,0.03951453,98.28474767],[4.5373535,0.03951628,98.28479722],[4.53735391,0.03951804,98.28484811],[4.53735432,0.0395198,98.28490032],[4.53735473,0.03952155,98.2849538],[4.53735514,0.03952331,98.28500854],[4.53735556,0.03952507,98.28506449],[4.53735597,0.03952682,98.28512163],[4.53735638,0.03952858,98.28517992],[4.53735679,0.03953034,98.28523934],[4.5373572,0.03953209,98.28529985],[4.53735761,0.03953385,98.28536143],[4.53735802,0.03953561,98.28542403],[4.53735843,0.03953736,98.28548764],[4.53735884,0.03953912,98.28555221],[4.53735926,0.03954088,98.28561773],[4.53735967,0.03954263,98.28568415],[4.53736008,0.03954439,98.28575144],[4.53736049,0.03954615,98.28581958],[4.5373609,0.0395479,98.28588853],[4.53736131,0.03954966,98.28595827],[4.53736172,0.03955142,98.28602875],[4.53736213,0.03955317,98.28609995],[4.53736254,0.03955493,98.28617185],[4.53736295,0.03955669,98.2862444],[4.53736336,0.03955845,98.28631758],[4.53736377,0.0395602,98.28639139],[4.53736418,0.03956196,98.28646585],[4.53736459,0.03956372,98.28654095],[4.537365,0.03956547,98.2866167],[4.53736541,0.03956723,98.28669311],[4.53736582,0.03956899,98.28677019],[4.53736623,0.03957075,98.28684794],[4.53736664,0.0395725,98.28692637],[4.53736705,0.03957426,98.28700549],[4.53736746,0.03957602,98.2870853],[4.53736787,0.03957777,98.2871658],[4.53736828,0.03957953,98.28724701],[4.53736869,0.03958129,98.28732893],[4.5373691,0.03958305,98.28741157],[4.53736951,0.0395848,98.28749493],[4.53736992,0.03958656,98.28757903],[4.53737033,0.03958832,98.28766386],[4.53737074,0.03959008,98.28774944],[4.53737114,0.03959183,98.28783576],[4.53737155,0.03959359,98.28792285],[4.53737196,0.03959535,98.28801069],[4.53737237,0.03959711,98.28809931],[4.53737278,0.03959886,98.2881887],[4.53737319,0.03960062,98.28827888],[4.5373736,0.03960238,98.28836985],[4.53737401,0.03960414,98.28846161],[4.53737442,0.03960589,98.28855417],[4.53737483,0.03960765,98.28864755],[4.53737524,0.03960941,98.28874174],[4.53737564,0.03961117,98.28883675],[4.53737605,0.03961292,98.28893259],[4.53737646,0.03961468,98.28902927],[4.53737687,0.03961644,98.28912678],[4.53737728,0.0396182,98.28922512],[4.53737769,0.03961995,98.28932427],[4.5373781,0.03962171,98.28942423],[4.53737851,0.03962347,98.28952497],[4.53737892,0.03962522,98.2896265],[4.53737933,0.03962698,98.28972879],[4.53737974,0.03962874,98.28983184],[4.53738015,0.0396305,98.28993564],[4.53738056,0.03963225,98.29004017],[4.53738097,0.03963401,98.29014543],[4.53738138,0.03963577,98.2902514],[4.53738179,0.03963753,98.29035807],[4.5373822,0.03963928,98.29046542],[4.53738261,0.03964104,98.29057346],[4.53738301,0.0396428,98.29068217],[4.53738342,0.03964456,98.29079153],[4.53738383,0.03964631,98.29090153],[4.53738424,0.03964807,98.29101217],[4.53738465,0.03964983,98.29112343],[4.53738506,0.03965159,98.2912353],[4.53738547,0.03965334,98.29134777],[4.53738588,0.0396551,98.29146083],[4.53738629,0.03965686,98.29157447],[4.5373867,0.03965862,98.29168867],[4.53738711,0.03966037,98.29180343],[4.53738752,0.03966213,98.29191873],[4.53738793,0.03966389,98.29203456],[4.53738834,0.03966565,98.29215091],[4.53738875,0.0396674,98.29226777],[4.53738916,0.03966916,98.29238513],[4.53738957,0.03967092,98.29250298],[4.53738998,0.03967268,98.29262131],[4.53739039,0.03967443,98.29274009],[4.5373908,0.03967619,98.29285934],[4.53739121,0.03967795,98.29297902],[4.53739162,0.03967971,98.29309914],[4.53739202,0.03968146,98.29321972],[4.53739243,0.03968322,98.29334077],[4.53739284,0.03968498,98.29346232],[4.53739325,0.03968674,98.2935844],[4.53739366,0.0396885,98.29370703],[4.53739407,0.03969025,98.29383022],[4.53739448,0.03969201,98.29395401],[4.53739488,0.03969377,98.29407842],[4.53739529,0.03969553,98.29420346],[4.5373957,0.03969728,98.29432917],[4.53739611,0.03969904,98.29445557],[4.53739652,0.0397008,98.29458269],[4.53739693,0.03970256,98.29471054],[4.53739733,0.03970432,98.29483915],[4.53739774,0.03970607,98.29496855],[4.53739815,0.03970783,98.29509876],[4.53739856,0.03970959,98.2952298],[4.53739896,0.03971135,98.29536169],[4.53739937,0.03971311,98.29549447],[4.53739978,0.03971486,98.29562816],[4.53740019,0.03971662,98.29576278],[4.53740059,0.03971838,98.29589835],[4.537401,0.03972014,98.29603489],[4.53740141,0.03972188,98.29617244],[4.53740181,0.03972364,98.29631102],[4.53740222,0.0397254,98.29645064],[4.53740263,0.03972716,98.29659134],[4.53740304,0.03972891,98.29673314],[4.53740344,0.03973067,98.29687606],[4.53740385,0.03973243,98.29702012],[4.53740426,0.03973419,98.29716536],[4.53740467,0.03973595,98.29731179],[4.53740507,0.03973771,98.29745944],[4.53740548,0.03973946,98.29760832],[4.53740589,0.03974122,98.29775848],[4.5374063,0.03974298,98.29790993],[4.5374067,0.03974474,98.29806268],[4.53740711,0.0397465,98.29821678],[4.53740752,0.03974825,98.29837224],[4.53740793,0.03975001,98.29852908],[4.53740834,0.03975177,98.29868734],[4.53740874,0.03975353,98.29884702],[4.53740915,0.03975529,98.29900817],[4.53740956,0.03975705,98.2991708],[4.53740997,0.0397588,98.29933493],[4.53741037,0.03976056,98.29950059],[4.53741078,0.03976232,98.2996678],[4.53741119,0.03976408,98.29983656],[4.5374116,0.03976584,98.30000687],[4.53741201,0.03976759,98.30017869],[4.53741242,0.03976935,98.30035201],[4.53741282,0.03977111,98.30052681],[4.53741323,0.03977287,98.30070308],[4.53741364,0.03977463,98.30088079],[4.53741405,0.03977638,98.30105992],[4.53741446,0.03977814,98.30124047],[4.53741487,0.0397799,98.30142241],[4.53741527,0.03978166,98.30160572],[4.53741568,0.03978342,98.30179038],[4.53741609,0.03978517,98.30197638],[4.5374165,0.03978693,98.30216369],[4.53741691,0.03978869,98.30235231],[4.53741731,0.03979045,98.3025422],[4.53741772,0.03979221,98.30273336],[4.53741813,0.03979396,98.30292576],[4.53741854,0.03979572,98.30311939],[4.53741895,0.03979748,98.30331422],[4.53741935,0.03979924,98.30351025],[4.53741976,0.039801,98.30370745],[4.53742017,0.03980275,98.3039058],[4.53742058,0.03980451,98.30410528],[4.53742098,0.03980627,98.30430589],[4.53742139,0.03980803,98.30450759],[4.5374218,0.03980979,98.30471037],[4.53742221,0.03981154,98.30491421],[4.53742261,0.0398133,98.3051191],[4.53742302,0.03981506,98.30532501],[4.53742343,0.03981682,98.30553194],[4.53742384,0.03981858,98.30573985],[4.53742424,0.03982033,98.30594873],[4.53742465,0.03982209,98.30615857],[4.53742506,0.03982385,98.30636934],[4.53742546,0.03982561,98.30658103],[4.53742587,0.03982737,98.30679362],[4.53742627,0.03982913,98.30700709],[4.53742668,0.03983088,98.30722142],[4.53742709,0.03983264,98.3074366],[4.53742749,0.0398344,98.3076526],[4.5374279,0.03983616,98.30786942],[4.5374283,0.03983792,98.30808702],[4.53742871,0.03983968,98.3083054],[4.53742911,0.03984144,98.30852453],[4.53742952,0.03984319,98.3087444],[4.53742992,0.03984495,98.30896498],[4.53743033,0.03984671,98.30918627],[4.53743073,0.03984847,98.30940828],[4.53743114,0.03985023,98.30963105],[4.53743154,0.03985199,98.30985464],[4.53743194,0.03985375,98.31007909],[4.53743235,0.0398555,98.31030445],[4.53743275,0.03985726,98.31053076],[4.53743316,0.03985902,98.31075808],[4.53743356,0.03986078,98.31098646],[4.53743396,0.03986254,98.31121593],[4.53743437,0.0398643,98.31144656],[4.53743477,0.03986606,98.31167838],[4.53743517,0.03986782,98.31191145],[4.53743558,0.03986958,98.31214581],[4.53743598,0.03987133,98.31238151],[4.53743638,0.03987309,98.3126186],[4.53743678,0.03987485,98.31285713],[4.53743719,0.03987661,98.31309714],[4.53743759,0.03987837,98.31333868],[4.53743799,0.03988013,98.3135818],[4.5374384,0.03988189,98.31382655],[4.5374388,0.03988365,98.31407297],[4.5374392,0.03988541,98.31432112],[4.53743961,0.03988716,98.31457103],[4.53744001,0.03988892,98.31482276],[4.53744041,0.03989068,98.31507636],[4.53744081,0.03989244,98.31533187],[4.53744122,0.0398942,98.31558933],[4.53744162,0.03989596,98.3158488],[4.53744202,0.03989772,98.31611034],[4.53744243,0.03989948,98.31637398],[4.53744283,0.03990124,98.31663978],[4.53744323,0.03990299,98.3169078],[4.53744364,0.03990475,98.3171781],[4.53744404,0.03990651,98.31745071],[4.53744444,0.03990827,98.31772569],[4.53744485,0.03991003,98.31800311],[4.53744525,0.03991179,98.318283],[4.53744565,0.03991355,98.31856542],[4.53744606,0.03991531,98.31885043],[4.53744646,0.03991706,98.31913807],[4.53744687,0.03991882,98.31942839],[4.53744727,0.03992058,98.31972136],[4.53744767,0.03992234,98.32001697],[4.53744808,0.0399241,98.32031518],[4.53744848,0.03992586,98.32061597],[4.53744888,0.03992762,98.32091932],[4.53744928,0.03992938,98.32122519],[4.53744969,0.03993113,98.32153355],[4.53745009,0.03993289,98.32184439],[4.53745049,0.03993465,98.32215767],[4.53745089,0.03993641,98.32247336],[4.5374513,0.03993817,98.32279145],[4.5374517,0.03993993,98.3231119],[4.5374521,0.03994169,98.32343468],[4.5374525,0.03994345,98.32375978],[4.5374529,0.03994521,98.32408715],[4.5374533,0.03994697,98.32441678],[4.5374537,0.03994873,98.32474864],[4.5374541,0.03995049,98.32508271],[4.5374545,0.03995225,98.32541894],[4.5374549,0.03995401,98.32575733],[4.53745529,0.03995577,98.32609784],[4.53745569,0.03995753,98.32644044],[4.53745609,0.03995928,98.32678511],[4.53745649,0.03996104,98.32713182],[4.53745689,0.0399628,98.32748054],[4.53745729,0.03996456,98.32783125],[4.53745769,0.03996632,98.32818393],[4.53745809,0.03996808,98.32853853],[4.53745849,0.03996984,98.32889504],[4.5374589,0.0399716,98.32925319],[4.5374593,0.03997336,98.32961256],[4.5374597,0.03997512,98.32997269],[4.5374601,0.03997688,98.33033313],[4.53746051,0.03997864,98.33069345],[4.53746091,0.03998039,98.33105318],[4.53746131,0.03998215,98.33141188],[4.53746172,0.03998391,98.33176911],[4.53746212,0.03998567,98.33212442],[4.53746252,0.03998743,98.33247736],[4.53746292,0.03998919,98.33282749],[4.53746333,0.03999095,98.33317437],[4.53746373,0.03999271,98.33351755],[4.53746413,0.03999446,98.33385658],[4.53746453,0.03999622,98.33419102],[4.53746493,0.03999798,98.33452045],[4.53746533,0.03999974,98.33484486],[4.53746573,0.0400015,98.33516462],[4.53746613,0.04000326,98.33548011],[4.53746653,0.04000502,98.33579172],[4.53746692,0.04000678,98.33609985],[4.53746732,0.04000854,98.33640487],[4.53746772,0.0400103,98.33670718],[4.53746812,0.04001206,98.33700716],[4.53746851,0.04001382,98.3373052],[4.53746891,0.04001558,98.33760168],[4.53746931,0.04001734,98.33789698],[4.5374697,0.0400191,98.3381915],[4.5374701,0.04002086,98.33848561],[4.53747049,0.04002262,98.3387797],[4.53747089,0.04002438,98.33907415],[4.53747129,0.04002614,98.33936935],[4.53747168,0.0400279,98.33966568],[4.53747208,0.04002966,98.33996351],[4.53747248,0.04003142,98.34026302],[4.53747288,0.04003318,98.34056421],[4.53747327,0.04003494,98.34086706],[4.53747367,0.0400367,98.34117156],[4.53747407,0.04003846,98.3414777],[4.53747446,0.04004022,98.34178547],[4.53747486,0.04004198,98.34209486],[4.53747526,0.04004374,98.34240585],[4.53747566,0.0400455,98.34271844],[4.53747605,0.04004726,98.34303262],[4.53747645,0.04004902,98.34334836],[4.53747685,0.04005078,98.34366567],[4.53747724,0.04005254,98.34398452],[4.53747764,0.0400543,98.34430491],[4.53747804,0.04005606,98.34462683],[4.53747843,0.04005782,98.34495026],[4.53747883,0.04005958,98.3452752],[4.53747923,0.04006134,98.34560163],[4.53747962,0.0400631,98.34592954],[4.53748002,0.04006486,98.34625892],[4.53748042,0.04006662,98.34658975],[4.53748081,0.04006838,98.34692203],[4.53748121,0.04007014,98.34725575],[4.53748161,0.0400719,98.34759089],[4.537482,0.04007366,98.34792745],[4.5374824,0.04007542,98.3482654],[4.53748279,0.04007718,98.34860474],[4.53748319,0.04007894,98.34894547],[4.53748359,0.0400807,98.34928756],[4.53748398,0.04008246,98.349631],[4.53748438,0.04008422,98.34997579],[4.53748477,0.04008598,98.35032192],[4.53748517,0.04008774,98.35066936],[4.53748557,0.0400895,98.35101812],[4.53748596,0.04009126,98.35136818],[4.53748636,0.04009302,98.35171952],[4.53748675,0.04009478,98.35207215],[4.53748715,0.04009654,98.35242603],[4.53748754,0.0400983,98.35278118],[4.53748794,0.04010006,98.35313757],[4.53748834,0.04010182,98.35349519],[4.53748873,0.04010358,98.35385403],[4.53748913,0.04010534,98.35421408],[4.53748952,0.0401071,98.35457533],[4.53748992,0.04010886,98.35493777],[4.53749031,0.04011062,98.35530138],[4.53749071,0.04011238,98.35566617],[4.5374911,0.04011414,98.3560321],[4.5374915,0.0401159,98.35639918],[4.53749189,0.04011766,98.3567674],[4.53749229,0.04011942,98.35713673],[4.53749268,0.04012118,98.35750718],[4.53749308,0.04012294,98.35787872],[4.53749347,0.0401247,98.35825136],[4.53749387,0.04012646,98.35862507],[4.53749426,0.04012822,98.35899985],[4.53749466,0.04012998,98.35937568],[4.53749505,0.04013174,98.35975256],[4.53749545,0.0401335,98.36013047],[4.53749584,0.04013526,98.36050941],[4.53749624,0.04013702,98.36088936],[4.53749663,0.04013878,98.36127031],[4.53749703,0.04014054,98.36165225],[4.53749742,0.0401423,98.36203517],[4.53749782,0.04014406,98.36241906],[4.53749821,0.04014583,98.36280391],[4.5374986,0.04014759,98.3631897],[4.537499,0.04014935,98.36357643],[4.53749939,0.04015111,98.36396409],[4.53749979,0.04015287,98.36435266],[4.53750018,0.04015463,98.36474214],[4.53750058,0.04015639,98.36513251],[4.53750097,0.04015815,98.36552376],[4.53750136,0.04015991,98.36591588],[4.53750176,0.04016167,98.36630887],[4.53750215,0.04016343,98.3667027],[4.53750255,0.04016519,98.36709738],[4.53750294,0.04016695,98.36749288],[4.53750333,0.04016871,98.36788921],[4.53750373,0.04017047,98.36828634],[4.53750412,0.04017223,98.36868427],[4.53750451,0.04017399,98.36908299],[4.53750491,0.04017575,98.36945629],[4.5375053,0.04017751,98.36877606],[4.5375057,0.04017927,98.36809767],[4.53750609,0.04018103,98.36742114],[4.53734788,0.04021701,98.06502578]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":1,"type":"shoulder","predecessorId":1},{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":2,"type":"none","predecessorId":2}],"roadId":"1003400","singleSide":false,"rightLanes":[{"successorId":-6,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":-5,"type":"none","predecessorId":-5},{"successorId":-5,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-4,"type":"shoulder","predecessorId":-4},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.53707988,0.03909229,97.9645388],[4.53707938,0.03909055,97.9644832],[4.53707888,0.03908882,97.96443095],[4.53707839,0.03908709,97.96439156],[4.5370779,0.03908535,97.96436509],[4.53707741,0.03908361,97.96434923],[4.53707693,0.03908188,97.9643417],[4.53707645,0.03908014,97.96434019],[4.53707597,0.0390784,97.9643424],[4.53707549,0.03907666,97.96434606],[4.537075,0.03907492,97.96434886],[4.53707452,0.03907319,97.96434853],[4.53707404,0.03907145,97.96434275],[4.53707355,0.03906971,97.96432959],[4.53707306,0.03906798,97.96431159],[4.53707257,0.03906624,97.96429463],[4.53707209,0.0390645,97.96428466],[4.5370716,0.03906277,97.96428756],[4.53707112,0.03906103,97.9643038],[4.53707065,0.03905929,97.96432637],[4.53707017,0.03905755,97.96434826],[4.53706969,0.03905581,97.96436245],[4.5370692,0.03905407,97.96436195],[4.53706871,0.03905234,97.96434744],[4.53706822,0.0390506,97.96433457],[4.53706774,0.03904886,97.96432581],[4.53706725,0.03904713,97.96432003],[4.53706676,0.03904539,97.96431612],[4.53706627,0.03904365,97.96431297],[4.53706579,0.03904192,97.96430946],[4.5370653,0.03904018,97.96430447],[4.53706481,0.03903845,97.9642969],[4.53706432,0.03903671,97.96428546],[4.53706382,0.03903497,97.96426722],[4.53706332,0.03903324,97.96423936],[4.53706282,0.03903151,97.96420153],[4.53706232,0.03902977,97.96415451],[4.53706181,0.03902804,97.96409912],[4.5370613,0.03902631,97.96403618],[4.53706079,0.03902458,97.96396649],[4.53706028,0.03902285,97.96389087],[4.53705976,0.03902112,97.96381014],[4.53705925,0.03901939,97.96372511],[4.53705873,0.03901766,97.96363672],[4.53705821,0.03901593,97.96354625],[4.53705769,0.0390142,97.96345501],[4.53705717,0.03901247,97.9633643],[4.53705665,0.03901074,97.963275],[4.53705613,0.03900902,97.9631877],[4.53705561,0.03900729,97.96310292],[4.53705509,0.03900556,97.96302122],[4.53705457,0.03900383,97.96294313],[4.53705406,0.0390021,97.96286903],[4.53705354,0.03900037,97.96279922],[4.53705303,0.03899864,97.96273345],[4.53705251,0.03899691,97.96267084],[4.537052,0.03899518,97.96261066],[4.53705149,0.03899344,97.96255249],[4.53705098,0.03899171,97.96249597],[4.53705046,0.03898998,97.96244075],[4.53704995,0.03898825,97.96238644],[4.53704944,0.03898652,97.96233259],[4.53704893,0.03898479,97.96227877],[4.53704841,0.03898306,97.96222454],[4.5370479,0.03898133,97.96216947],[4.53704739,0.0389796,97.96211325],[4.53704687,0.03897787,97.96205562],[4.53704636,0.03897614,97.96199634],[4.53704584,0.03897441,97.96193515],[4.53704533,0.03897268,97.96187174],[4.53704481,0.03897095,97.96180564],[4.53704429,0.03896922,97.96173638],[4.53704377,0.03896749,97.96166345],[4.53704325,0.03896576,97.96158638],[4.53704272,0.03896403,97.961505],[4.5370422,0.03896231,97.96141948],[4.53704167,0.03896058,97.96132998],[4.53704114,0.03895885,97.96123666],[4.53704061,0.03895713,97.96113964],[4.53704008,0.0389554,97.96103905],[4.53703955,0.03895367,97.96093499],[4.53703901,0.03895195,97.96082761],[4.53703848,0.03895022,97.96071703],[4.53703794,0.0389485,97.96060338],[4.5370374,0.03894677,97.96048679],[4.53703687,0.03894505,97.96036739],[4.53703633,0.03894332,97.9602453],[4.53703578,0.0389416,97.96012067],[4.53703524,0.03893988,97.95999378],[4.5370347,0.03893815,97.9598652],[4.53703416,0.03893643,97.95973551],[4.53703361,0.03893471,97.95960531],[4.53703307,0.03893298,97.95947518],[4.53703253,0.03893126,97.95934564],[4.53703198,0.03892954,97.95921695],[4.53703144,0.03892782,97.95908932],[4.53703089,0.03892609,97.95896295],[4.53703035,0.03892437,97.95883809],[4.53702981,0.03892265,97.95871518],[4.53702927,0.03892092,97.9585947],[4.53702872,0.0389192,97.95847709],[4.53702818,0.03891747,97.95836254],[4.53702764,0.03891575,97.95825122],[4.5370271,0.03891403,97.95814326],[4.53702657,0.0389123,97.9580385],[4.53702603,0.03891058,97.95793632],[4.53702549,0.03890885,97.95783605],[4.53702495,0.03890713,97.95773703],[4.53702442,0.0389054,97.9576386],[4.53702388,0.03890368,97.9575401],[4.53702334,0.03890196,97.957441],[4.5370228,0.03890023,97.95734111],[4.53702226,0.03889851,97.95724034],[4.53702172,0.03889678,97.95713858],[4.53702118,0.03889506,97.95703572],[4.53702064,0.03889334,97.95693167],[4.5370201,0.03889161,97.95682631],[4.53701956,0.03888989,97.95671956],[4.53701902,0.03888816,97.95661129],[4.53701848,0.03888644,97.95650142],[4.53701793,0.03888472,97.95638983],[4.53701739,0.038883,97.95627641],[4.53701684,0.03888127,97.95616088],[4.53701629,0.03887955,97.95604283],[4.53701575,0.03887783,97.95592221],[4.5370152,0.03887611,97.95579911],[4.53701465,0.03887439,97.95567362],[4.5370141,0.03887267,97.95554603],[4.53701354,0.03887094,97.95541665],[4.53701299,0.03886922,97.95528579],[4.53701244,0.0388675,97.95515375],[4.53701189,0.03886578,97.95502082],[4.53701133,0.03886406,97.95488709],[4.53701078,0.03886234,97.95475266],[4.53701022,0.03886062,97.9546176],[4.53700967,0.0388589,97.954482],[4.53700911,0.03885718,97.95434594],[4.53700856,0.03885546,97.95420949],[4.537008,0.03885374,97.95407275],[4.53700744,0.03885202,97.95393579],[4.53700689,0.0388503,97.95379869],[4.53700633,0.03884858,97.95366154],[4.53700577,0.03884686,97.95352442],[4.53700522,0.03884514,97.9533874],[4.53700466,0.03884342,97.95325058],[4.5370041,0.0388417,97.95311402],[4.53700354,0.03883998,97.95297788],[4.53700299,0.03883826,97.9528425],[4.53700243,0.03883655,97.95270831],[4.53700187,0.03883483,97.95257573],[4.53700131,0.03883311,97.95244516],[4.53700076,0.03883139,97.95231689],[4.5370002,0.03882967,97.95219111],[4.53699965,0.03882795,97.95206797],[4.53699909,0.03882623,97.95194757],[4.53699854,0.0388245,97.95182974],[4.53699799,0.03882278,97.95171425],[4.53699744,0.03882106,97.95160088],[4.53699688,0.03881934,97.95148939],[4.53699633,0.03881762,97.95137954],[4.53699578,0.0388159,97.95127112],[4.53699523,0.03881418,97.95116389],[4.53699468,0.03881246,97.95105762],[4.53699413,0.03881074,97.95095208],[4.53699358,0.03880902,97.95084705],[4.53699303,0.0388073,97.95074228],[4.53699247,0.03880558,97.95063756],[4.53699192,0.03880385,97.95053265],[4.53699137,0.03880213,97.95042733],[4.53699082,0.03880041,97.95032136],[4.53699027,0.03879869,97.95021451],[4.53698971,0.03879697,97.95010657],[4.53698916,0.03879525,97.94999729],[4.5369886,0.03879353,97.94988646],[4.53698805,0.03879181,97.94977384],[4.53698749,0.03879009,97.9496592],[4.53698693,0.03878837,97.94954232],[4.53698638,0.03878665,97.94942297],[4.53698582,0.03878493,97.94930092],[4.53698526,0.03878321,97.94917594],[4.53698469,0.0387815,97.94904781],[4.53698413,0.03877978,97.9489163],[4.53698357,0.03877806,97.94878117],[4.53698326,0.03877713,97.94870629],[4.53716765,0.03873233,98.32865246],[4.53716788,0.03873328,98.32852204],[4.53716831,0.03873504,98.32828181],[4.53716873,0.03873679,98.32804187],[4.53716915,0.03873854,98.32780222],[4.53716958,0.03874029,98.32756287],[4.53717,0.03874205,98.32732382],[4.53717043,0.0387438,98.32708508],[4.53717085,0.03874555,98.32684666],[4.53717127,0.0387473,98.32660855],[4.5371717,0.03874906,98.32637078],[4.53717212,0.03875081,98.32613333],[4.53717255,0.03875256,98.32589622],[4.53717297,0.03875432,98.32565945],[4.53717339,0.03875607,98.32542303],[4.53717382,0.03875782,98.32518696],[4.53717424,0.03875958,98.32495125],[4.53717466,0.03876133,98.32471591],[4.53717509,0.03876308,98.32448093],[4.53717551,0.03876483,98.32424633],[4.53717593,0.03876659,98.3240121],[4.53717636,0.03876834,98.32377826],[4.53717678,0.03877009,98.32354482],[4.5371772,0.03877185,98.32331177],[4.53717763,0.0387736,98.32307912],[4.53717805,0.03877535,98.32284688],[4.53717847,0.03877711,98.32261505],[4.53717889,0.03877886,98.32238363],[4.53717932,0.03878061,98.32215265],[4.53717974,0.03878237,98.32192209],[4.53718016,0.03878412,98.32169196],[4.53718058,0.03878587,98.32146228],[4.53718101,0.03878763,98.32123304],[4.53718143,0.03878938,98.32100425],[4.53718185,0.03879113,98.32077592],[4.53718227,0.03879289,98.32054805],[4.5371827,0.03879464,98.32032064],[4.53718312,0.03879639,98.32009371],[4.53718354,0.03879815,98.31986726],[4.53718396,0.0387999,98.31964129],[4.53718438,0.03880165,98.31941581],[4.5371848,0.03880341,98.31919083],[4.53718523,0.03880516,98.31896635],[4.53718565,0.03880691,98.31874237],[4.53718607,0.03880867,98.3185189],[4.53718649,0.03881042,98.31829595],[4.53718691,0.03881217,98.31807352],[4.53718733,0.03881393,98.31785162],[4.53718776,0.03881568,98.31763026],[4.53718818,0.03881743,98.31740943],[4.5371886,0.03881919,98.31718914],[4.53718902,0.03882094,98.31696941],[4.53718944,0.0388227,98.31675023],[4.53718986,0.03882445,98.31653161],[4.53719028,0.0388262,98.31631356],[4.53719071,0.03882796,98.31609609],[4.53719113,0.03882971,98.31587918],[4.53719155,0.03883146,98.31566287],[4.53719197,0.03883322,98.31544714],[4.53719239,0.03883497,98.315232],[4.53719281,0.03883672,98.31501747],[4.53719323,0.03883848,98.31480354],[4.53719365,0.03884023,98.31459022],[4.53719407,0.03884198,98.31437752],[4.53719449,0.03884374,98.31416544],[4.53719491,0.03884549,98.31395398],[4.53719534,0.03884725,98.31374317],[4.53719576,0.038849,98.31353299],[4.53719618,0.03885075,98.31332345],[4.5371966,0.03885251,98.31311456],[4.53719702,0.03885426,98.31290633],[4.53719744,0.03885601,98.31269877],[4.53719786,0.03885777,98.31249186],[4.53719828,0.03885952,98.31228564],[4.5371987,0.03886128,98.31208008],[4.53719912,0.03886303,98.31187522],[4.53719954,0.03886478,98.31167104],[4.53719996,0.03886654,98.31146755],[4.53720038,0.03886829,98.31126477],[4.5372008,0.03887004,98.3110627],[4.53720122,0.0388718,98.31086133],[4.53720164,0.03887355,98.31066068],[4.53720206,0.03887531,98.31046076],[4.53720248,0.03887706,98.31026156],[4.5372029,0.03887881,98.3100631],[4.53720332,0.03888057,98.30986538],[4.53720374,0.03888232,98.3096684],[4.53720416,0.03888407,98.30947218],[4.53720458,0.03888583,98.30927671],[4.537205,0.03888758,98.30908201],[4.53720542,0.03888934,98.30888807],[4.53720584,0.03889109,98.30869491],[4.53720626,0.03889284,98.30850253],[4.53720668,0.0388946,98.30831093],[4.5372071,0.03889635,98.30812011],[4.53720752,0.03889811,98.30793007],[4.53720794,0.03889986,98.30774081],[4.53720836,0.03890161,98.30755232],[4.53720878,0.03890337,98.30736461],[4.5372092,0.03890512,98.30717766],[4.53720962,0.03890687,98.30699148],[4.53721004,0.03890863,98.30680607],[4.53721046,0.03891038,98.30662142],[4.53721088,0.03891214,98.30643753],[4.5372113,0.03891389,98.30625439],[4.53721172,0.03891564,98.30607201],[4.53721214,0.0389174,98.30589039],[4.53721256,0.03891915,98.30570951],[4.53721298,0.03892091,98.30552938],[4.5372134,0.03892266,98.30535],[4.53721382,0.03892441,98.30517136],[4.53721424,0.03892617,98.30499346],[4.53721466,0.03892792,98.30481629],[4.53721508,0.03892967,98.30463986],[4.5372155,0.03893143,98.30446417],[4.53721592,0.03893318,98.3042892],[4.53721634,0.03893494,98.30411497],[4.53721676,0.03893669,98.30394145],[4.53721718,0.03893844,98.30376867],[4.5372176,0.0389402,98.3035966],[4.53721802,0.03894195,98.30342525],[4.53721844,0.03894371,98.30325461],[4.53721886,0.03894546,98.30308469],[4.53721928,0.03894721,98.30291548],[4.53721969,0.03894897,98.30274697],[4.53722011,0.03895072,98.30257918],[4.53722053,0.03895248,98.30241208],[4.53722095,0.03895423,98.30224569],[4.53722137,0.03895598,98.30207999],[4.53722179,0.03895774,98.30191499],[4.53722221,0.03895949,98.30175068],[4.53722263,0.03896125,98.30158706],[4.53722305,0.038963,98.30142413],[4.53722347,0.03896475,98.30126189],[4.53722389,0.03896651,98.30110033],[4.53722431,0.03896826,98.30093945],[4.53722472,0.03897002,98.30077924],[4.53722514,0.03897177,98.30061971],[4.53722556,0.03897352,98.30046086],[4.53722598,0.03897528,98.30030268],[4.5372264,0.03897703,98.30014516],[4.53722682,0.03897879,98.29998831],[4.53722724,0.03898054,98.29983212],[4.53722766,0.03898229,98.29967659],[4.53722808,0.03898405,98.29952172],[4.5372285,0.0389858,98.2993675],[4.53722891,0.03898756,98.29921394],[4.53722933,0.03898931,98.29906103],[4.53722975,0.03899106,98.29890876],[4.53723017,0.03899282,98.29875714],[4.53723059,0.03899457,98.29860616],[4.53723101,0.03899633,98.29845582],[4.53723143,0.03899808,98.29830612],[4.53723184,0.03899984,98.29815706],[4.53723226,0.03900159,98.29800862],[4.53723268,0.03900334,98.29786082],[4.5372331,0.0390051,98.29771364],[4.53723352,0.03900685,98.29756709],[4.53723394,0.03900861,98.29742116],[4.53723435,0.03901036,98.29727585],[4.53723477,0.03901212,98.29713115],[4.53723519,0.03901387,98.29698707],[4.53723561,0.03901562,98.29684361],[4.53723603,0.03901738,98.29670075],[4.53723645,0.03901913,98.29655849],[4.53723686,0.03902089,98.29641684],[4.53723728,0.03902264,98.2962758],[4.5372377,0.0390244,98.29613535],[4.53723812,0.03902615,98.2959955],[4.53723854,0.0390279,98.29585624],[4.53723895,0.03902966,98.29571757],[4.53723937,0.03903141,98.29557949],[4.53723979,0.03903317,98.29544199],[4.53724021,0.03903492,98.29530508],[4.53724062,0.03903668,98.29516875],[4.53724104,0.03903843,98.295033],[4.53724146,0.03904019,98.29489783],[4.53724188,0.03904194,98.29476322],[4.5372423,0.03904369,98.29462919],[4.53724271,0.03904545,98.29449572],[4.53724313,0.0390472,98.29436282],[4.53724355,0.03904896,98.29423048],[4.53724397,0.03905071,98.2940987],[4.53724438,0.03905247,98.29396748],[4.53707988,0.03909229,97.9645388]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":1,"type":"shoulder","predecessorId":1},{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":2,"type":"none","predecessorId":2}],"roadId":"1003400","singleSide":false,"rightLanes":[{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":-6,"type":"none","predecessorId":-5},{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-5,"type":"shoulder","predecessorId":-4},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-4,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"none","height":0.0},{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"broken","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":0},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.53263741,0.02355038,94.65671402],[4.53263697,0.02354947,94.65369187],[4.53263651,0.02354851,94.65073194],[4.53263601,0.02354751,94.64783788],[4.53263549,0.02354646,94.64501348],[4.53263495,0.02354538,94.64226261],[4.53263439,0.02354424,94.63958928],[4.53263381,0.02354306,94.63699756],[4.53263322,0.02354185,94.63449162],[4.53263262,0.0235406,94.63207164],[4.53263202,0.02353933,94.62972219],[4.53263141,0.02353805,94.62743311],[4.5326308,0.02353674,94.62519688],[4.53263017,0.02353541,94.62299875],[4.53262953,0.02353407,94.62082456],[4.53262888,0.02353272,94.61866121],[4.53262821,0.02353135,94.61649819],[4.53262752,0.02352997,94.61433644],[4.5326268,0.02352857,94.61217996],[4.53262607,0.02352716,94.61003737],[4.53262533,0.02352574,94.60792959],[4.53262458,0.0235243,94.60586068],[4.53262382,0.02352283,94.60382947],[4.53262305,0.02352135,94.60183471],[4.53262229,0.02351985,94.59986801],[4.53262152,0.02351832,94.59789819],[4.53262075,0.02351678,94.59590159],[4.53261996,0.02351521,94.59385822],[4.53261917,0.02351363,94.59176154],[4.53261837,0.02351203,94.58961836],[4.53261756,0.02351042,94.58743627],[4.53261674,0.02350878,94.58522305],[4.5326159,0.02350709,94.5829867],[4.53261507,0.02350545,94.5807354],[4.53261424,0.02350381,94.57847588],[4.53261342,0.02350217,94.57620876],[4.5326126,0.02350054,94.57393155],[4.53261178,0.02349892,94.5716356],[4.53261096,0.02349731,94.56931202],[4.53261014,0.0234957,94.56695594],[4.53260932,0.0234941,94.56456515],[4.53260851,0.02349251,94.56213755],[4.53260769,0.02349092,94.55967103],[4.53260688,0.02348934,94.55716349],[4.53260607,0.02348776,94.55461282],[4.53260526,0.02348619,94.55201693],[4.53260445,0.02348463,94.54582076],[4.53260364,0.02348307,94.53305912],[4.53260285,0.02348152,94.5113396],[4.53260205,0.02347997,94.48341545],[4.53260125,0.02347843,94.4803916],[4.53260046,0.0234769,94.47904804],[4.53259976,0.02347532,94.51885454],[4.53259888,0.02347384,94.52731885],[4.53259807,0.02347234,94.52467105],[4.53259727,0.02347084,94.52192255],[4.53259649,0.02346933,94.51907943],[4.53259573,0.02346783,94.51614782],[4.53259497,0.02346633,94.51313387],[4.53259422,0.02346483,94.51004378],[4.53259347,0.02346333,94.50688375],[4.53259272,0.02346185,94.50365998],[4.53259197,0.02346037,94.50037928],[4.53259122,0.02345889,94.4970484],[4.53259047,0.02345743,94.49367359],[4.53258972,0.02345597,94.49026105],[4.53258898,0.02345452,94.48681705],[4.53258823,0.02345307,94.48334783],[4.53258749,0.02345162,94.47985965],[4.53258674,0.02345016,94.47635884],[4.53258593,0.02344875,94.4728634],[4.5325851,0.02344734,94.46937955],[4.53258428,0.02344592,94.46590155],[4.53258346,0.02344451,94.46242364],[4.53258264,0.02344309,94.45894005],[4.53258182,0.02344168,94.45544497],[4.532581,0.02344026,94.45193255],[4.53258018,0.02343885,94.44839696],[4.53257936,0.02343743,94.44483258],[4.53257853,0.02343601,94.44123386],[4.53257771,0.0234346,94.43759551],[4.53257688,0.02343318,94.4339193],[4.53257605,0.02343176,94.4302138],[4.53257522,0.02343035,94.42648785],[4.53257439,0.02342893,94.42275034],[4.53257355,0.02342752,94.41901017],[4.5325727,0.02342611,94.41527628],[4.53257185,0.0234247,94.41155764],[4.532571,0.0234233,94.40786328],[4.53257014,0.02342189,94.40420224],[4.53256928,0.02342049,94.40058155],[4.53256841,0.02341909,94.39700221],[4.53256754,0.02341769,94.39346515],[4.53256669,0.02341635,94.3899714],[4.53256581,0.02341496,94.38652196],[4.53256493,0.02341358,94.38311784],[4.53256405,0.02341219,94.37976004],[4.53256316,0.02341081,94.37644955],[4.53256228,0.02340943,94.37318735],[4.53256139,0.02340805,94.36997442],[4.5325605,0.02340667,94.36681173],[4.5325596,0.02340529,94.36370023],[4.53255871,0.02340391,94.36064088],[4.53255782,0.02340254,94.35763461],[4.53255773,0.0234024,94.35735316],[4.53263993,0.02334684,94.46742628],[4.53264001,0.023347,94.46754585],[4.53264081,0.02334873,94.46885826],[4.53264161,0.02335046,94.47025602],[4.53264241,0.02335218,94.47173652],[4.53264321,0.02335391,94.47329716],[4.53264401,0.02335563,94.47493534],[4.53264481,0.02335735,94.47664846],[4.53264561,0.02335908,94.47843394],[4.53264641,0.0233608,94.48028917],[4.53264721,0.02336251,94.48221159],[4.53264801,0.02336423,94.48419861],[4.53264878,0.02336591,94.48624767],[4.53264958,0.02336763,94.48835619],[4.53265038,0.02336935,94.49052161],[4.53265118,0.02337107,94.49274137],[4.53265197,0.02337278,94.49501291],[4.53265277,0.0233745,94.49733369],[4.53265357,0.02337621,94.49970115],[4.53265436,0.02337792,94.50211277],[4.53265516,0.02337963,94.50456599],[4.53265595,0.02338134,94.50705829],[4.53265675,0.02338305,94.50958713],[4.53265754,0.02338476,94.51215],[4.53265833,0.02338647,94.51474438],[4.53265913,0.02338818,94.51736789],[4.53265992,0.02338988,94.52001828],[4.53266071,0.02339159,94.52269329],[4.5326615,0.02339329,94.52539061],[4.53266229,0.02339499,94.52810773],[4.53266309,0.0233967,94.53084205],[4.53266388,0.0233984,94.53359099],[4.53266467,0.0234001,94.53635198],[4.53266546,0.0234018,94.53912244],[4.53266625,0.0234035,94.5418998],[4.53266704,0.0234052,94.5446815],[4.53266783,0.0234069,94.54746494],[4.53266862,0.0234086,94.55024708],[4.53266941,0.0234103,94.55302466],[4.53267019,0.02341199,94.55579443],[4.53267098,0.02341368,94.55855317],[4.53267176,0.02341538,94.56129766],[4.53267255,0.02341707,94.56402469],[4.53267333,0.02341875,94.56673107],[4.53267411,0.02342044,94.56941361],[4.53267489,0.02342212,94.57206916],[4.53267567,0.0234238,94.57465372],[4.53267635,0.02342553,94.57680486],[4.53267704,0.02342725,94.57891711],[4.53267773,0.02342897,94.58098653],[4.53267842,0.02343068,94.5830092],[4.5326791,0.02343239,94.58498122],[4.53267978,0.0234341,94.5868987],[4.53268047,0.02343581,94.58875788],[4.53268115,0.02343752,94.59055696],[4.53268183,0.02343922,94.59229588],[4.53268251,0.02344092,94.59397463],[4.53268318,0.02344262,94.59559324],[4.53268386,0.02344432,94.59715175],[4.53268454,0.02344601,94.59865023],[4.53268521,0.0234477,94.60008875],[4.53268588,0.02344939,94.60146743],[4.53268656,0.02345108,94.60278638],[4.53268723,0.02345277,94.60404576],[4.53268789,0.02345445,94.60524575],[4.53268856,0.02345614,94.60638654],[4.53268923,0.02345782,94.60746836],[4.53268989,0.0234595,94.60849147],[4.53269056,0.02346118,94.6094562],[4.53269122,0.02346286,94.61036403],[4.53269188,0.02346453,94.61121763],[4.53269254,0.0234662,94.61201975],[4.5326932,0.02346788,94.61277314],[4.53269387,0.02346957,94.61348052],[4.53269454,0.02347124,94.61414459],[4.5326952,0.02347292,94.61476719],[4.53269588,0.0234746,94.61534922],[4.53269655,0.02347628,94.61589159],[4.53269723,0.02347797,94.61639521],[4.53269791,0.02347967,94.61686102],[4.53269859,0.02348138,94.61728997],[4.53269927,0.02348309,94.61768304],[4.53269995,0.0234848,94.61804124],[4.53270063,0.02348653,94.61836561],[4.53270131,0.02348826,94.61865725],[4.53270199,0.02349,94.61891878],[4.53270266,0.02349174,94.61915432],[4.53270333,0.02349349,94.61936799],[4.532704,0.02349525,94.61956383],[4.53270467,0.02349701,94.61974576],[4.53270534,0.02349878,94.6199176],[4.532706,0.02350055,94.62008306],[4.53270667,0.02350233,94.62024579],[4.53270733,0.02350412,94.62041079],[4.53270799,0.02350591,94.62058431],[4.53270865,0.02350771,94.62077234],[4.53270932,0.02350951,94.62098052],[4.53270998,0.02351131,94.6212141],[4.53271066,0.02351313,94.62147795],[4.53271134,0.02351496,94.62177648],[4.53271202,0.0235168,94.62211364],[4.53271271,0.02351866,94.6224929],[4.53271341,0.02352052,94.62291719],[4.53271411,0.0235224,94.62338888],[4.53271482,0.0235243,94.62390976],[4.53263741,0.02355038,94.65671402]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"rules":[{"value":"barred"}],"id":1,"type":"restricted","predecessorId":0}],"roadId":"1004100","singleSide":false,"rightLanes":[{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"id":-5,"type":"none","predecessorId":0},{"successorId":0,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":-4,"type":"border","predecessorId":0},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"id":-3,"type":"border","predecessorId":0},{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"type":"shoulder","predecessorId":0},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":0}]}},{"geometry":{"coordinates":[[[4.53423773,0.02829901,96.69265764],[4.53423721,0.02829729,96.69167893],[4.53423669,0.02829556,96.69070198],[4.53423617,0.02829384,96.68972667],[4.53423565,0.02829212,96.68875289],[4.53423513,0.02829039,96.6877805],[4.53423461,0.02828867,96.68680938],[4.53423409,0.02828695,96.68583942],[4.53423357,0.02828522,96.6848705],[4.53423305,0.0282835,96.68390249],[4.53423253,0.02828177,96.68293526],[4.53423201,0.02828005,96.68196871],[4.53423149,0.02827832,96.68100271],[4.53423097,0.0282766,96.68003713],[4.53423044,0.02827487,96.67907186],[4.53422992,0.02827315,96.67810678],[4.5342294,0.02827143,96.67714175],[4.53422888,0.0282697,96.67617667],[4.53422836,0.02826798,96.67521141],[4.53422784,0.02826625,96.67424585],[4.53422732,0.02826453,96.67327985],[4.5342268,0.0282628,96.6723133],[4.53422628,0.02826108,96.67134607],[4.53422575,0.02825935,96.67037802],[4.53422523,0.02825763,96.66940902],[4.53422471,0.02825591,96.66843895],[4.53422419,0.02825418,96.66746769],[4.53422367,0.02825246,96.66649509],[4.53422315,0.02825073,96.66552104],[4.53422263,0.02824901,96.66454541],[4.5342221,0.02824729,96.66356805],[4.53422158,0.02824556,96.66258886],[4.53422106,0.02824384,96.6616077],[4.53422054,0.02824212,96.66062444],[4.53422002,0.0282404,96.65963895],[4.5342195,0.02823868,96.6586511],[4.53421898,0.02823698,96.65767692],[4.53429705,0.02821276,96.8572359],[4.53429757,0.02821446,96.85784628],[4.5342981,0.02821618,96.85846433],[4.53429863,0.02821791,96.85908005],[4.53429916,0.02821964,96.85969358],[4.53429968,0.02822136,96.86030503],[4.53430021,0.02822309,96.86091454],[4.53430074,0.02822482,96.86152223],[4.53430127,0.02822654,96.86212825],[4.53430179,0.02822827,96.8627327],[4.53430232,0.02822999,96.86333573],[4.53430285,0.02823172,96.86393745],[4.53430337,0.02823344,96.86453801],[4.5343039,0.02823517,96.86513752],[4.53430443,0.02823689,96.86573612],[4.53430495,0.02823862,96.86633393],[4.53430548,0.02824034,96.86693108],[4.534306,0.02824207,96.86752771],[4.53430653,0.02824379,96.86812393],[4.53430706,0.02824552,96.86871988],[4.53430758,0.02824725,96.86931568],[4.53430811,0.02824897,96.86991145],[4.53430864,0.0282507,96.87050731],[4.53430916,0.02825242,96.87110338],[4.53430969,0.02825415,96.87169979],[4.53431021,0.02825587,96.87229665],[4.53431074,0.0282576,96.87289409],[4.53431127,0.02825932,96.87349223],[4.53431179,0.02826105,96.87409119],[4.53431232,0.02826278,96.87469109],[4.53431284,0.0282645,96.87529205],[4.53431337,0.02826623,96.87589419],[4.5343139,0.02826795,96.87649764],[4.53431442,0.02826968,96.87710252],[4.53431495,0.02827141,96.87770894],[4.53431547,0.02827313,96.87831704],[4.534316,0.02827486,96.87892692],[4.53423773,0.02829901,96.69265764]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":1,"type":"shoulder","predecessorId":1},{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":2,"type":"none","predecessorId":2}],"roadId":"3000470","singleSide":false,"rightLanes":[{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.53271484,0.02352429,94.63361523],[4.5327142,0.0235226,94.63235682],[4.53271357,0.02352091,94.63109732],[4.53271294,0.02351922,94.62983741],[4.5327123,0.02351753,94.62857773],[4.53271167,0.02351584,94.62731895],[4.53271103,0.02351415,94.62606173],[4.5327104,0.02351246,94.62480674],[4.53270976,0.02351077,94.62355463],[4.53270913,0.02350908,94.62230609],[4.53270849,0.02350739,94.62106177],[4.53270786,0.0235057,94.61982235],[4.53270723,0.02350401,94.61858851],[4.5327066,0.02350232,94.61736092],[4.53270597,0.02350062,94.61614027],[4.53270534,0.02349893,94.61492723],[4.53270472,0.02349724,94.6137217],[4.53270409,0.02349554,94.61252048],[4.53270346,0.02349385,94.61131963],[4.53270283,0.02349216,94.6101152],[4.5327022,0.02349047,94.60890323],[4.53270156,0.02348877,94.60767974],[4.53270092,0.02348709,94.60644076],[4.53270027,0.0234854,94.6051825],[4.53269961,0.02348372,94.60390528],[4.53269894,0.02348204,94.60261342],[4.53269827,0.02348036,94.60131141],[4.5326976,0.02347868,94.60000374],[4.53269692,0.023477,94.59869492],[4.53269624,0.02347532,94.59738947],[4.53269557,0.02347364,94.59609113],[4.53269489,0.02347197,94.59480064],[4.53269422,0.02347029,94.59351807],[4.53269354,0.02346861,94.59224349],[4.53269287,0.02346693,94.59097696],[4.5326922,0.02346525,94.58971853],[4.53269152,0.02346357,94.58846829],[4.53269085,0.02346189,94.58722629],[4.53269018,0.02346021,94.58599261],[4.53268951,0.02345853,94.58476732],[4.53268884,0.02345685,94.58355049],[4.53268817,0.02345517,94.5823422],[4.5326875,0.02345349,94.58114252],[4.53268683,0.02345181,94.57995153],[4.53268616,0.02345013,94.57876931],[4.53268549,0.02344845,94.57759594],[4.53268483,0.02344677,94.5764315],[4.53268416,0.02344509,94.57527608],[4.53268349,0.0234434,94.57412976],[4.53268282,0.02344172,94.57299263],[4.53268215,0.02344004,94.57186479],[4.53268149,0.02343836,94.57074631],[4.53268082,0.02343668,94.5696373],[4.53268015,0.023435,94.56853784],[4.53267948,0.02343332,94.56744805],[4.53267881,0.02343163,94.56636801],[4.53267814,0.02342995,94.56529783],[4.53267747,0.02342827,94.5642376],[4.53267681,0.02342659,94.56318745],[4.53267614,0.02342491,94.56214748],[4.53267544,0.02342324,94.56104616],[4.53267468,0.02342159,94.55973368],[4.53267391,0.02341994,94.55843252],[4.53267314,0.02341829,94.55714305],[4.53267238,0.02341664,94.55586564],[4.53267161,0.02341499,94.55460067],[4.53267084,0.02341334,94.55334853],[4.53267007,0.0234117,94.5521096],[4.53266931,0.02341005,94.55088425],[4.53266854,0.0234084,94.54967285],[4.53266777,0.02340675,94.54847575],[4.532667,0.0234051,94.54729333],[4.53266623,0.02340345,94.54612596],[4.53266546,0.0234018,94.544974],[4.5326647,0.02340015,94.54383785],[4.53266393,0.0233985,94.54271788],[4.53266316,0.02339686,94.54161448],[4.53266239,0.02339521,94.54052803],[4.53266162,0.02339356,94.53945896],[4.53266085,0.02339191,94.53840768],[4.53266008,0.02339026,94.53737467],[4.53265931,0.02338861,94.53636037],[4.53265855,0.02338696,94.53536525],[4.53265778,0.02338531,94.53438977],[4.53265701,0.02338366,94.53343439],[4.53265624,0.02338201,94.5324996],[4.53265547,0.02338036,94.53158586],[4.53265471,0.02337871,94.53069364],[4.53265394,0.02337707,94.52982343],[4.53265317,0.02337542,94.5289757],[4.5326524,0.02337377,94.52815094],[4.53265164,0.02337212,94.52734964],[4.53265087,0.02337047,94.52657228],[4.53265011,0.02336882,94.52581935],[4.53264934,0.02336717,94.52509134],[4.53264858,0.02336552,94.52438875],[4.53264781,0.02336387,94.52371208],[4.53264705,0.02336222,94.52306182],[4.53264629,0.02336057,94.52243848],[4.53264553,0.02335892,94.52184254],[4.53264476,0.02335727,94.52127452],[4.532644,0.02335562,94.52073492],[4.53264324,0.02335397,94.52022425],[4.53264248,0.02335232,94.51974298],[4.53264173,0.02335067,94.51929115],[4.53264097,0.02334902,94.51886833],[4.53264021,0.02334737,94.51847404],[4.53263945,0.02334572,94.51810781],[4.5326387,0.02334407,94.51776908],[4.53263794,0.02334242,94.51745627],[4.53263719,0.02334077,94.51716696],[4.53263643,0.02333912,94.51689874],[4.53263567,0.02333747,94.51664923],[4.53263491,0.02333582,94.51641609],[4.53263415,0.02333418,94.51619703],[4.53263339,0.02333253,94.51598981],[4.53263261,0.02333089,94.51579224],[4.53263184,0.02332925,94.51560216],[4.53263106,0.02332761,94.51541745],[4.53263027,0.02332597,94.51523701],[4.53262948,0.02332433,94.5150624],[4.53262868,0.0233227,94.51489554],[4.53262788,0.02332107,94.5147383],[4.53262708,0.02331944,94.51459248],[4.53262627,0.0233178,94.51445981],[4.53262547,0.02331617,94.51434193],[4.53262466,0.02331454,94.51424044],[4.53262386,0.02331291,94.51415683],[4.53262305,0.02331128,94.51409254],[4.53262226,0.02330965,94.51404892],[4.53262146,0.02330802,94.51402565],[4.53262067,0.02330638,94.51401923],[4.53261987,0.02330475,94.5140258],[4.53261908,0.02330312,94.51404161],[4.53261828,0.02330149,94.51406297],[4.53261749,0.02329986,94.51408629],[4.53261668,0.02329823,94.51410803],[4.53261587,0.0232966,94.51412476],[4.53261506,0.02329497,94.51413311],[4.53261424,0.02329335,94.51412982],[4.5326134,0.02329173,94.51411354],[4.53261257,0.02329012,94.51408583],[4.53261172,0.02328851,94.51404844],[4.53261087,0.02328689,94.51400302],[4.53261001,0.02328528,94.51395114],[4.53260915,0.02328368,94.51389428],[4.53260829,0.02328207,94.51383385],[4.53260743,0.02328046,94.51377114],[4.53260657,0.02327886,94.51370738],[4.5326057,0.02327725,94.51364372],[4.53260484,0.02327565,94.51358121],[4.53260398,0.02327404,94.51352083],[4.53260313,0.02327243,94.5134635],[4.53260254,0.02327073,94.51394306],[4.53260201,0.02326902,94.51450869],[4.53260148,0.0232673,94.51505709],[4.53260095,0.02326559,94.51558743],[4.53260042,0.02326388,94.51609888],[4.53259989,0.02326216,94.5165906],[4.53259936,0.02326045,94.51706177],[4.53259883,0.02325874,94.51751156],[4.5325983,0.02325702,94.51793914],[4.53259777,0.02325531,94.51834368],[4.53259724,0.0232536,94.51872436],[4.53259671,0.02325188,94.51908037],[4.53259617,0.02325017,94.51941087],[4.53259564,0.02324846,94.51971505],[4.53259511,0.02324674,94.51999209],[4.53259458,0.02324503,94.52024117],[4.53259406,0.02324332,94.52046149],[4.53259353,0.02324161,94.52065222],[4.532593,0.0232399,94.52081256],[4.53259247,0.02323819,94.52094169],[4.53259194,0.02323647,94.52103882],[4.53259141,0.02323476,94.52110313],[4.53259088,0.02323305,94.52113383],[4.53259035,0.02323134,94.52113011],[4.53258982,0.02322963,94.52109117],[4.53258981,0.0232296,94.52109012],[4.53269278,0.02319501,94.67364753],[4.53269279,0.02319504,94.67366197],[4.53269335,0.02319676,94.67445265],[4.53269392,0.02319848,94.67525682],[4.53269448,0.0232002,94.67607392],[4.53269505,0.02320191,94.67690337],[4.53269561,0.02320363,94.6777446],[4.53269617,0.02320535,94.67859705],[4.53269674,0.02320707,94.67946012],[4.5326973,0.02320878,94.68033324],[4.53269787,0.0232105,94.68121581],[4.53269843,0.02321222,94.68210724],[4.53269899,0.02321394,94.68300689],[4.53269956,0.02321565,94.68391416],[4.53270012,0.02321737,94.68482839],[4.53270068,0.02321909,94.68574895],[4.53270125,0.02322081,94.68667515],[4.53270181,0.02322252,94.68760632],[4.53270237,0.02322424,94.68854175],[4.53270294,0.02322596,94.68948073],[4.5327035,0.02322767,94.69042253],[4.53270406,0.02322939,94.69136674],[4.53270463,0.02323111,94.69231329],[4.53270519,0.02323282,94.69326212],[4.53270575,0.02323454,94.69421318],[4.53270631,0.02323626,94.69516642],[4.53270687,0.02323797,94.69612178],[4.53270744,0.02323969,94.69707922],[4.532708,0.02324141,94.6980387],[4.53270856,0.02324312,94.69900018],[4.53270912,0.02324484,94.69996363],[4.53270968,0.02324656,94.70092901],[4.53271024,0.02324827,94.7018963],[4.5327108,0.02324999,94.70286547],[4.53271135,0.02325171,94.7038365],[4.53271191,0.02325342,94.70480938],[4.53271247,0.02325514,94.70578411],[4.53271303,0.02325686,94.70676068],[4.53271359,0.02325857,94.70773908],[4.53271415,0.02326029,94.70871933],[4.53271471,0.02326201,94.7097014],[4.53271527,0.02326372,94.71068514],[4.53271582,0.02326544,94.71167037],[4.53271638,0.02326715,94.71265691],[4.53271694,0.02326887,94.71364457],[4.5327175,0.02327059,94.71463317],[4.53271806,0.0232723,94.71562252],[4.53271862,0.02327402,94.71661244],[4.53271918,0.02327573,94.71760272],[4.53271974,0.02327745,94.71859318],[4.5327203,0.02327916,94.71958363],[4.53272086,0.02328088,94.72057388],[4.53272142,0.02328259,94.72156372],[4.53272198,0.02328431,94.72255296],[4.53272254,0.02328602,94.72354141],[4.53272309,0.02328774,94.72452886],[4.53272365,0.02328945,94.72551511],[4.53272421,0.02329117,94.72649996],[4.53272477,0.02329288,94.72748321],[4.53272533,0.0232946,94.72846465],[4.53272589,0.02329631,94.72944408],[4.53272645,0.02329803,94.73042129],[4.532727,0.02329974,94.73139608],[4.53272756,0.02330145,94.73236823],[4.53272812,0.02330317,94.73333755],[4.53272868,0.02330488,94.73430384],[4.53272924,0.0233066,94.73526687],[4.53272979,0.02330831,94.73622644],[4.53273035,0.02331002,94.73718234],[4.53273091,0.02331174,94.73813437],[4.53273147,0.02331345,94.7390823],[4.53273203,0.02331517,94.74002593],[4.53273259,0.02331688,94.74096503],[4.53273314,0.02331859,94.74189936],[4.5327337,0.0233203,94.74282868],[4.53273426,0.02332202,94.74375272],[4.53273482,0.02332373,94.74467125],[4.53273538,0.02332544,94.74558417],[4.53273594,0.02332716,94.74649151],[4.5327365,0.02332887,94.74739333],[4.53273706,0.02333058,94.74828967],[4.53273762,0.02333229,94.7491806],[4.53273818,0.023334,94.75006616],[4.53273874,0.02333572,94.75094639],[4.5327393,0.02333743,94.75182136],[4.53273986,0.02333914,94.7526911],[4.53274042,0.02334085,94.75355567],[4.53274098,0.02334256,94.75441513],[4.53274154,0.02334427,94.75526951],[4.5327421,0.02334598,94.75611888],[4.53274266,0.0233477,94.75696328],[4.53274322,0.02334941,94.75780276],[4.53274378,0.02335112,94.75863745],[4.53274435,0.02335283,94.75946749],[4.53274491,0.02335454,94.76029307],[4.53274547,0.02335625,94.76111436],[4.53274603,0.02335796,94.76193153],[4.53274659,0.02335967,94.76274475],[4.53274715,0.02336138,94.7635542],[4.53274772,0.02336309,94.76436006],[4.53274828,0.0233648,94.7651625],[4.53274884,0.02336651,94.76596171],[4.5327494,0.02336822,94.76675786],[4.53274997,0.02336993,94.76755114],[4.53275053,0.02337164,94.76834172],[4.53275109,0.02337335,94.76912979],[4.53275165,0.02337506,94.76991552],[4.53275222,0.02337677,94.77069911],[4.53275278,0.02337848,94.77148074],[4.53275335,0.02338019,94.77226059],[4.53275391,0.0233819,94.77303884],[4.53275448,0.02338361,94.77381569],[4.53275504,0.02338532,94.77459131],[4.5327556,0.02338703,94.77536588],[4.53275617,0.02338874,94.77613955],[4.53275674,0.02339044,94.77691247],[4.5327573,0.02339215,94.77768479],[4.53275787,0.02339386,94.77845666],[4.53275843,0.02339557,94.77922824],[4.532759,0.02339728,94.77999968],[4.53275957,0.02339899,94.78077113],[4.53276014,0.0234007,94.78154274],[4.5327607,0.02340241,94.78231467],[4.53276127,0.02340412,94.78308707],[4.53276184,0.02340582,94.78386009],[4.53276241,0.02340753,94.78463389],[4.53276297,0.02340924,94.78540861],[4.53276354,0.02341095,94.78618441],[4.53276411,0.02341266,94.78696145],[4.53276468,0.02341437,94.78773987],[4.53276525,0.02341607,94.78851984],[4.53276582,0.02341778,94.78930149],[4.53276639,0.02341949,94.79008499],[4.53276696,0.0234212,94.79087048],[4.53276753,0.02342291,94.79165813],[4.5327681,0.02342461,94.79244807],[4.53276867,0.02342632,94.79324047],[4.53276924,0.02342803,94.79403548],[4.53276981,0.02342974,94.79483324],[4.53277038,0.02343144,94.79563392],[4.53277095,0.02343315,94.79643765],[4.53277152,0.02343486,94.79724461],[4.53277209,0.02343657,94.79805492],[4.53277266,0.02343828,94.79886876],[4.53277323,0.02343998,94.79968626],[4.5327738,0.02344169,94.80050759],[4.53277437,0.0234434,94.80133288],[4.53277494,0.02344511,94.8021623],[4.53277551,0.02344681,94.802996],[4.53277609,0.02344852,94.80383412],[4.53277666,0.02345023,94.80467681],[4.53277723,0.02345194,94.80552423],[4.5327778,0.02345364,94.80637652],[4.53277837,0.02345535,94.80723385],[4.53277894,0.02345706,94.80809634],[4.53277951,0.02345877,94.80896417],[4.53278008,0.02346048,94.80983747],[4.53278066,0.02346218,94.8107164],[4.53278123,0.02346389,94.81160111],[4.5327818,0.0234656,94.81249174],[4.53278237,0.02346731,94.81338845],[4.53278294,0.02346902,94.81429138],[4.53278351,0.02347072,94.81520069],[4.53278408,0.02347243,94.81611652],[4.53278465,0.02347414,94.81703903],[4.53278522,0.02347585,94.81796836],[4.53278579,0.02347756,94.81890466],[4.53278636,0.02347927,94.81984808],[4.53278694,0.02348097,94.82079877],[4.53278751,0.02348268,94.82175688],[4.53278808,0.02348439,94.82272256],[4.53278865,0.0234861,94.82369595],[4.53278922,0.02348781,94.82467722],[4.53278979,0.02348952,94.82566649],[4.53279036,0.02349123,94.82666393],[4.53279093,0.02349294,94.82766969],[4.53279149,0.02349465,94.82868391],[4.53279206,0.02349636,94.82970674],[4.53279263,0.02349807,94.83073834],[4.53271484,0.02352429,94.63361523]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":1,"type":"shoulder","predecessorId":0},{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":2,"type":"none","predecessorId":0}],"roadId":"1004200","singleSide":false,"rightLanes":[{"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"rules":[{"value":"barred"}],"id":-3,"type":"restricted","predecessorId":0},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":0},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":0}]}},{"geometry":{"coordinates":[[[4.532555,0.02324129,94.52109012],[4.53255374,0.02323984,94.52095261],[4.53255248,0.02323838,94.52077786],[4.53255122,0.02323692,94.52056507],[4.53254996,0.02323547,94.52031342],[4.5325487,0.02323401,94.52002213],[4.53254743,0.02323255,94.51969063],[4.53254617,0.0232311,94.51931921],[4.53254491,0.02322964,94.51890837],[4.53254365,0.02322819,94.51845862],[4.53254239,0.02322673,94.51797046],[4.53254112,0.02322527,94.51744439],[4.53254053,0.02322359,94.5168809],[4.53253996,0.0232219,94.51628051],[4.53253939,0.02322021,94.51564371],[4.53253883,0.02321852,94.514971],[4.53253826,0.02321683,94.5142629],[4.53253769,0.02321513,94.51351989],[4.53253712,0.02321344,94.51274249],[4.53253656,0.02321175,94.5119312],[4.53253599,0.02321005,94.51108652],[4.53253542,0.02320836,94.51020897],[4.53253486,0.02320667,94.50929906],[4.53253429,0.02320497,94.50835729],[4.53253372,0.02320328,94.50738418],[4.53253316,0.02320158,94.50638024],[4.53253259,0.02319989,94.50534599],[4.53253203,0.02319819,94.50428195],[4.53253146,0.0231965,94.50318863],[4.5325309,0.0231948,94.50206655],[4.53253033,0.0231931,94.50091624],[4.53252977,0.02319141,94.49973823],[4.53252921,0.02318971,94.49853305],[4.53252864,0.02318801,94.49730121],[4.53252808,0.02318631,94.49604327],[4.53252752,0.02318461,94.49475974],[4.53252696,0.02318292,94.49345118],[4.5325264,0.02318122,94.49211809],[4.53252584,0.02317952,94.49076091],[4.53252528,0.02317781,94.48938009],[4.53252472,0.02317611,94.4879761],[4.53252416,0.02317441,94.4865494],[4.53252361,0.02317271,94.48510046],[4.53252305,0.02317101,94.48362974],[4.53252249,0.02316931,94.4821377],[4.53252193,0.0231676,94.48062479],[4.53252138,0.0231659,94.47909149],[4.53252082,0.0231642,94.47753823],[4.53252027,0.02316249,94.47596547],[4.53251971,0.02316079,94.47437367],[4.53251915,0.02315908,94.47276327],[4.5325186,0.02315738,94.47113472],[4.53251804,0.02315567,94.46948846],[4.53251748,0.02315397,94.46782493],[4.53251693,0.02315226,94.46614457],[4.53251637,0.02315056,94.4644478],[4.53251581,0.02314885,94.46273507],[4.53251526,0.02314714,94.4610068],[4.5325147,0.02314544,94.45926341],[4.53251414,0.02314373,94.45750532],[4.53251358,0.02314203,94.45573293],[4.53251303,0.02314032,94.45394664],[4.53251247,0.02313861,94.45214679],[4.53251191,0.02313691,94.45033371],[4.53251134,0.0231352,94.44850774],[4.53251078,0.02313349,94.44666931],[4.53251022,0.02313179,94.44481899],[4.53250966,0.02313008,94.44295731],[4.53250909,0.02312837,94.44108484],[4.53250853,0.02312667,94.43920213],[4.53250796,0.02312496,94.43730973],[4.5325074,0.02312325,94.43540821],[4.53250683,0.02312155,94.43349812],[4.53250626,0.02311984,94.43158001],[4.5325057,0.02311813,94.42965445],[4.53250513,0.02311643,94.42772201],[4.53250456,0.02311472,94.42578323],[4.53250399,0.02311301,94.4238387],[4.53250342,0.02311131,94.42188896],[4.53250285,0.0231096,94.41993459],[4.53250228,0.02310789,94.41797615],[4.53250171,0.02310618,94.41601422],[4.53250114,0.02310448,94.41404937],[4.53250057,0.02310277,94.4120822],[4.5325,0.02310106,94.41011335],[4.53249943,0.02309935,94.40814343],[4.53249886,0.02309764,94.40617306],[4.53249829,0.02309593,94.40420288],[4.53249772,0.02309423,94.40223348],[4.53249715,0.02309252,94.4002654],[4.53249658,0.02309081,94.39829913],[4.532496,0.0230891,94.39633516],[4.53249543,0.02308739,94.394374],[4.53249486,0.02308568,94.39241614],[4.53249429,0.02308397,94.39046208],[4.53249372,0.02308226,94.38851231],[4.53249315,0.02308054,94.3865673],[4.53249258,0.02307883,94.38462752],[4.53249201,0.02307712,94.38269342],[4.53249144,0.02307541,94.38076546],[4.53249086,0.0230737,94.37884409],[4.53249029,0.02307199,94.37692977],[4.53248972,0.02307027,94.37502295],[4.53248915,0.02306856,94.37312407],[4.53248858,0.02306685,94.37123358],[4.532488,0.02306514,94.36935194],[4.53248743,0.02306342,94.36747958],[4.53248686,0.02306171,94.36561695],[4.53248629,0.02306,94.36376449],[4.53248571,0.02305828,94.36192265],[4.53248514,0.02305657,94.36009187],[4.53248457,0.02305486,94.35827258],[4.53248399,0.02305314,94.35646522],[4.53248342,0.02305143,94.35467023],[4.53248284,0.02304971,94.35288805],[4.53248227,0.023048,94.35111912],[4.53248169,0.02304628,94.34936386],[4.53248111,0.02304457,94.34762273],[4.53248054,0.02304286,94.34589621],[4.53247996,0.02304114,94.34418484],[4.53247938,0.02303943,94.3424891],[4.53247881,0.02303771,94.34080952],[4.53247823,0.023036,94.33914662],[4.53247765,0.02303428,94.33750089],[4.53247707,0.02303257,94.33587275],[4.53247649,0.02303085,94.33426215],[4.53247591,0.02302913,94.33266895],[4.53247533,0.02302742,94.33109303],[4.53247475,0.0230257,94.32953422],[4.53247417,0.02302399,94.32799241],[4.53247359,0.02302227,94.32646745],[4.53247301,0.02302056,94.3249592],[4.53247243,0.02301884,94.32346754],[4.53247185,0.02301713,94.32199232],[4.53247127,0.02301541,94.32053342],[4.53247069,0.0230137,94.31909069],[4.5324701,0.02301198,94.31766401],[4.53246952,0.02301027,94.31625325],[4.53246894,0.02300855,94.31485827],[4.53246836,0.02300684,94.31347894],[4.53246777,0.02300513,94.31211513],[4.53246719,0.02300341,94.31076672],[4.53246661,0.0230017,94.30943357],[4.53246603,0.02299999,94.30811556],[4.53246544,0.02299827,94.30681255],[4.53246486,0.02299656,94.30552443],[4.53246428,0.02299485,94.30425105],[4.53246369,0.02299313,94.3029923],[4.53246311,0.02299142,94.30174804],[4.53246252,0.02298971,94.30051814],[4.53246194,0.02298799,94.29930247],[4.53246135,0.02298628,94.29810089],[4.53246077,0.02298457,94.29691327],[4.53246019,0.02298286,94.2957395],[4.5324596,0.02298114,94.29457949],[4.53245902,0.02297943,94.29343318],[4.53245843,0.02297772,94.29230059],[4.53245785,0.02297601,94.29118172],[4.53245726,0.0229743,94.29007658],[4.53245668,0.02297258,94.28898518],[4.53245609,0.02297087,94.28790755],[4.53245551,0.02296916,94.28684368],[4.53245492,0.02296745,94.28579358],[4.53245434,0.02296574,94.28475728],[4.53245375,0.02296402,94.28373479],[4.53245317,0.02296231,94.2827261],[4.53245259,0.0229606,94.28173124],[4.53245201,0.02295889,94.28075022],[4.53245142,0.02295717,94.27978304],[4.53245084,0.02295546,94.27882971],[4.53245026,0.02295375,94.27789022],[4.53244968,0.02295204,94.27696451],[4.5324491,0.02295032,94.27605251],[4.53244852,0.02294861,94.27515409],[4.53244794,0.0229469,94.27426907],[4.53244737,0.02294518,94.27339723],[4.53244679,0.02294347,94.27253836],[4.53244621,0.02294175,94.27169227],[4.53244564,0.02294004,94.27085874],[4.53244506,0.02293833,94.27003757],[4.53244449,0.02293661,94.26922856],[4.53244391,0.0229349,94.2684315],[4.53244334,0.02293318,94.26764619],[4.53244276,0.02293147,94.26687241],[4.53244219,0.02292975,94.26610996],[4.53244162,0.02292804,94.26535864],[4.53244105,0.02292632,94.26461823],[4.53244047,0.02292461,94.26388853],[4.5324399,0.02292289,94.26316934],[4.53243933,0.02292118,94.26246045],[4.53243876,0.02291946,94.26176165],[4.53243819,0.02291775,94.26107273],[4.53243762,0.02291603,94.2603935],[4.53243705,0.02291432,94.25972374],[4.53243648,0.0229126,94.25906325],[4.53243591,0.02291089,94.25841182],[4.53243534,0.02290917,94.25776925],[4.53243477,0.02290746,94.25713534],[4.5324342,0.02290574,94.25650988],[4.53243363,0.02290403,94.25589266],[4.53243306,0.02290231,94.25528348],[4.53243249,0.0229006,94.25468214],[4.53243192,0.02289888,94.25408844],[4.53243135,0.02289717,94.25350217],[4.53243078,0.02289545,94.25292314],[4.53243022,0.02289374,94.25235113],[4.53242965,0.02289202,94.25178596],[4.53242908,0.02289031,94.25122741],[4.53242851,0.02288859,94.2506753],[4.53242794,0.02288688,94.25012941],[4.53242737,0.02288516,94.24958956],[4.5324268,0.02288345,94.24905554],[4.53242623,0.02288173,94.24852716],[4.53242566,0.02288002,94.24800423],[4.53242509,0.02287831,94.24748658],[4.53242452,0.02287659,94.24697403],[4.53242395,0.02287488,94.24646639],[4.53242338,0.02287316,94.24596351],[4.53242281,0.02287145,94.24546519],[4.53242224,0.02286974,94.24497126],[4.53242166,0.02286802,94.24448156],[4.53242109,0.02286631,94.24399591],[4.53242052,0.0228646,94.24351413],[4.53241995,0.02286288,94.24303606],[4.53241938,0.02286117,94.2425616],[4.5324188,0.02285946,94.24209064],[4.53241823,0.02285775,94.24162308],[4.53241766,0.02285603,94.24115882],[4.53241708,0.02285432,94.24069775],[4.53241651,0.02285261,94.24023976],[4.53241593,0.0228509,94.23978475],[4.53241536,0.02284919,94.2393326],[4.53241479,0.02284747,94.23888321],[4.53241421,0.02284576,94.23843646],[4.53241364,0.02284405,94.23799225],[4.53241306,0.02284234,94.23755048],[4.53241248,0.02284063,94.23711101],[4.53241191,0.02283892,94.23667376],[4.53241133,0.02283721,94.23623861],[4.53241076,0.0228355,94.23580544],[4.53241018,0.02283379,94.23537415],[4.5324096,0.02283208,94.23494462],[4.53240903,0.02283036,94.23451675],[4.53240845,0.02282865,94.23409042],[4.53240788,0.02282694,94.23366552],[4.5324073,0.02282523,94.23324193],[4.53240672,0.02282352,94.23281955],[4.53240614,0.02282181,94.23239826],[4.53240557,0.0228201,94.23197795],[4.53240499,0.02281839,94.2315585],[4.53240441,0.02281668,94.23113981],[4.53240384,0.02281497,94.23072174],[4.53240326,0.02281326,94.2303042],[4.53240268,0.02281156,94.22988707],[4.5324021,0.02280985,94.22947022],[4.53240153,0.02280814,94.22905355],[4.53240095,0.02280643,94.22863694],[4.53240037,0.02280472,94.22822027],[4.53239979,0.02280301,94.22780343],[4.53239922,0.0228013,94.22738629],[4.53239864,0.02279959,94.22696875],[4.53239806,0.02279788,94.22655068],[4.53239749,0.02279617,94.22613197],[4.53239691,0.02279446,94.22571249],[4.53239633,0.02279275,94.22529214],[4.53239575,0.02279104,94.22487078],[4.53239518,0.02278934,94.22444831],[4.5323946,0.02278763,94.2240246],[4.53239402,0.02278592,94.22359953],[4.53239345,0.02278421,94.22317299],[4.53239287,0.0227825,94.22274484],[4.53239229,0.02278079,94.22231498],[4.53239172,0.02277908,94.22188329],[4.53239114,0.02277737,94.22144963],[4.53239056,0.02277566,94.22101389],[4.53238999,0.02277396,94.22057604],[4.53238941,0.02277225,94.2201361],[4.53238884,0.02277054,94.21969412],[4.53238826,0.02276883,94.21925012],[4.53238769,0.02276712,94.21880411],[4.53238711,0.02276541,94.21835612],[4.53238654,0.0227637,94.21790617],[4.53238596,0.02276199,94.21745427],[4.53238539,0.02276029,94.21700045],[4.53238481,0.02275858,94.21654473],[4.53238424,0.02275687,94.21608712],[4.53238366,0.02275516,94.21562765],[4.53238309,0.02275345,94.21516634],[4.53238252,0.02275174,94.2147032],[4.53238194,0.02275003,94.21423827],[4.53238137,0.02274832,94.21377155],[4.5323808,0.02274661,94.21330306],[4.53238022,0.02274491,94.21283284],[4.53237965,0.0227432,94.2123609],[4.53237908,0.02274149,94.21188725],[4.5323785,0.02273978,94.21141192],[4.53237793,0.02273807,94.21093494],[4.53237736,0.02273636,94.21045631],[4.53237679,0.02273465,94.20997607],[4.53237622,0.02273294,94.20949423],[4.53237564,0.02273123,94.20901083],[4.53237507,0.02272953,94.20852589],[4.5323745,0.02272782,94.20803945],[4.53237393,0.02272611,94.20755153],[4.53237336,0.0227244,94.20706218],[4.53237279,0.02272269,94.20657142],[4.53237222,0.02272098,94.20607928],[4.53237165,0.02271927,94.20558579],[4.53237108,0.02271756,94.20509099],[4.53237051,0.02271585,94.20459491],[4.53236994,0.02271414,94.20409758],[4.53236937,0.02271243,94.20359902],[4.5323688,0.02271073,94.20309928],[4.53236823,0.02270902,94.20259837],[4.53236766,0.02270731,94.20209634],[4.5323671,0.0227056,94.20159321],[4.53236653,0.02270389,94.20108901],[4.53236596,0.02270218,94.20058377],[4.53236539,0.02270047,94.20007753],[4.53236483,0.02269876,94.19957031],[4.53236426,0.02269705,94.19906215],[4.53236369,0.02269534,94.198553],[4.53236313,0.02269363,94.19804277],[4.53236256,0.02269192,94.19753134],[4.53236199,0.02269021,94.19701862],[4.53236143,0.0226885,94.19650451],[4.53236086,0.02268679,94.1959889],[4.5323603,0.02268508,94.19547168],[4.53235973,0.02268337,94.19495276],[4.53235916,0.02268167,94.19443204],[4.5323586,0.02267996,94.19390941],[4.53235803,0.02267825,94.19338477],[4.53235746,0.02267654,94.19285803],[4.5323569,0.02267483,94.19232908],[4.53235633,0.02267312,94.19179782],[4.53235576,0.02267141,94.19126416],[4.53235519,0.02266971,94.19072799],[4.53235462,0.022668,94.19018921],[4.53235405,0.02266629,94.18964772],[4.53235348,0.02266458,94.18910343],[4.53235291,0.02266288,94.18855624],[4.53235234,0.02266117,94.18800604],[4.53235176,0.02265946,94.18745274],[4.53235119,0.02265776,94.18689623],[4.53235062,0.02265605,94.18633644],[4.53235004,0.02265435,94.1857735],[4.53234946,0.02265264,94.18520755],[4.53234889,0.02265094,94.18463876],[4.53234831,0.02264923,94.18406727],[4.53234773,0.02264753,94.18349324],[4.53234715,0.02264583,94.18291682],[4.53234657,0.02264412,94.18233816],[4.53234599,0.02264242,94.18175743],[4.53234541,0.02264072,94.18117476],[4.53234483,0.02263902,94.18059032],[4.53234425,0.02263731,94.18000425],[4.53234366,0.02263561,94.17941671],[4.53234308,0.02263391,94.17882785],[4.5323425,0.02263221,94.17823782],[4.53234192,0.0226305,94.17764677],[4.53234134,0.0226288,94.17705485],[4.53234075,0.0226271,94.17646221],[4.53234017,0.0226254,94.17586901],[4.53233959,0.0226237,94.1752754],[4.53233901,0.02262199,94.17468152],[4.53233843,0.02262029,94.17408751],[4.53233784,0.02261858,94.17349336],[4.53233726,0.02261688,94.17289904],[4.53233668,0.02261518,94.17230453],[4.5323361,0.02261348,94.1717098],[4.53233552,0.02261177,94.17111482],[4.53233494,0.02261007,94.17051957],[4.53233436,0.02260837,94.16992402],[4.53233378,0.02260667,94.16932815],[4.5323332,0.02260496,94.16873192],[4.53233261,0.02260326,94.16813531],[4.53233203,0.02260156,94.16753829],[4.53233145,0.02259986,94.16694084],[4.53233087,0.02259815,94.16634292],[4.53233029,0.02259645,94.16574452],[4.53232971,0.02259475,94.1651456],[4.53232913,0.02259305,94.16454615],[4.53232855,0.02259134,94.16394614],[4.53232797,0.02258964,94.16334554],[4.53232739,0.02258794,94.16274431],[4.53232681,0.02258624,94.16214242],[4.53232622,0.02258453,94.16153984],[4.53232564,0.02258283,94.16093652],[4.53232506,0.02258113,94.16033243],[4.53232448,0.02257943,94.15972754],[4.53232389,0.02257772,94.15912181],[4.53232331,0.02257602,94.1585152],[4.53232273,0.02257432,94.15790768],[4.53232215,0.02257262,94.15729921],[4.53232156,0.02257092,94.15668978],[4.53232098,0.02256922,94.15607949],[4.53232039,0.02256751,94.15546847],[4.53231981,0.02256581,94.15485684],[4.53231922,0.02256411,94.15424473],[4.53231864,0.02256241,94.15363225],[4.53231805,0.02256071,94.15301955],[4.53231747,0.02255901,94.15240673],[4.53231688,0.0225573,94.15179394],[4.5323163,0.0225556,94.1511813],[4.53231571,0.0225539,94.15056893],[4.53231513,0.0225522,94.14995697],[4.53231454,0.0225505,94.14934553],[4.53231396,0.0225488,94.14873475],[4.53231337,0.0225471,94.14812476],[4.53231279,0.02254539,94.14751569],[4.5323122,0.02254369,94.14690766],[4.53231162,0.02254199,94.14630081],[4.53231104,0.02254029,94.14569527],[4.53231045,0.02253858,94.14509116],[4.53230987,0.02253688,94.14448862],[4.53230929,0.02253518,94.14388778],[4.53230871,0.02253347,94.14328877],[4.53230813,0.02253177,94.1426917],[4.53230755,0.02253007,94.14209657],[4.53230697,0.02252836,94.14150336],[4.53230639,0.02252666,94.14091206],[4.53230582,0.02252495,94.14032263],[4.53230524,0.02252325,94.13973507],[4.53230466,0.02252155,94.13914933],[4.53230409,0.02251984,94.13856542],[4.53230351,0.02251813,94.13798329],[4.53230294,0.02251643,94.13740294],[4.53230236,0.02251472,94.13682434],[4.53230179,0.02251302,94.13624747],[4.53230122,0.02251131,94.1356723],[4.53230064,0.02250961,94.13509882],[4.53230007,0.0225079,94.134527],[4.5322995,0.02250619,94.13395682],[4.53229893,0.02250449,94.13338826],[4.53229835,0.02250278,94.1328213],[4.53229778,0.02250107,94.1322559],[4.53229721,0.02249937,94.13169206],[4.53229664,0.02249766,94.13112975],[4.53229607,0.02249595,94.13056894],[4.5322955,0.02249424,94.13000962],[4.53229493,0.02249254,94.12945175],[4.53229436,0.02249083,94.12889532],[4.53229379,0.02248912,94.1283403],[4.53229322,0.02248741,94.12778666],[4.53229266,0.02248571,94.12723439],[4.53229209,0.022484,94.12668346],[4.53229152,0.02248229,94.12613385],[4.53229095,0.02248058,94.12558553],[4.53229038,0.02247887,94.12503847],[4.53228981,0.02247717,94.12449266],[4.53228925,0.02247546,94.12394806],[4.53228868,0.02247375,94.12340467],[4.53228811,0.02247204,94.12286247],[4.53228754,0.02247033,94.12232145],[4.53228697,0.02246862,94.1217816],[4.53228641,0.02246692,94.12124291],[4.53228584,0.02246521,94.12070536],[4.53228527,0.0224635,94.12016894],[4.5322847,0.02246179,94.11963364],[4.53228413,0.02246008,94.11909944],[4.53228356,0.02245837,94.11856634],[4.532283,0.02245667,94.11803432],[4.53228243,0.02245496,94.11750336],[4.53228186,0.02245325,94.11697349],[4.53228129,0.02245154,94.11644472],[4.53228072,0.02244983,94.11591707],[4.53228015,0.02244812,94.11539056],[4.53227958,0.02244642,94.1148652],[4.53227902,0.02244471,94.11434102],[4.53227845,0.022443,94.11381802],[4.53227788,0.02244129,94.11329623],[4.53227731,0.02243958,94.11277565],[4.53227674,0.02243788,94.1122563],[4.53227617,0.02243617,94.1117382],[4.5322756,0.02243446,94.11122135],[4.53227503,0.02243275,94.11070578],[4.53227446,0.02243104,94.11019149],[4.53227389,0.02242933,94.1096785],[4.53227332,0.02242763,94.10916683],[4.53227275,0.02242592,94.10865649],[4.53227218,0.02242421,94.1081475],[4.53227161,0.0224225,94.10763986],[4.53227104,0.02242079,94.10713359],[4.53227047,0.02241909,94.10662872],[4.5322699,0.02241738,94.10612524],[4.53226933,0.02241567,94.10562318],[4.53226876,0.02241396,94.10512255],[4.53226819,0.02241225,94.10462337],[4.53226761,0.02241055,94.10412564],[4.53226704,0.02240884,94.10362938],[4.53226647,0.02240713,94.10313461],[4.5322659,0.02240542,94.10264134],[4.53226533,0.02240372,94.10214958],[4.53226476,0.02240201,94.10165935],[4.53226418,0.0224003,94.10117066],[4.53226361,0.02239859,94.10068353],[4.53226304,0.02239688,94.10019796],[4.53226247,0.02239518,94.09971398],[4.53226189,0.02239347,94.09923159],[4.53226132,0.02239176,94.09875082],[4.53226075,0.02239005,94.09827166],[4.53226018,0.02238835,94.09779415],[4.5322596,0.02238664,94.09731828],[4.53225903,0.02238493,94.09684408],[4.53225846,0.02238322,94.09637156],[4.53225788,0.02238152,94.09590073],[4.53225731,0.02237981,94.0954316],[4.53225674,0.0223781,94.09496419],[4.53225616,0.0223764,94.09449851],[4.53225559,0.02237469,94.09403457],[4.53225501,0.02237298,94.09357239],[4.53225444,0.02237127,94.09311199],[4.53225386,0.02236957,94.09265339],[4.53225329,0.02236786,94.0921966],[4.53225271,0.02236615,94.09174166],[4.53225214,0.02236445,94.09128859],[4.53225156,0.02236274,94.0908374],[4.53225099,0.02236103,94.09038812],[4.53225041,0.02235933,94.08994078],[4.53224984,0.02235762,94.08949539],[4.53224926,0.02235591,94.08905198],[4.53224868,0.0223542,94.08861057],[4.53224811,0.0223525,94.08817118],[4.53224753,0.02235079,94.08773382],[4.53224695,0.02234908,94.08729849],[4.53224638,0.02234738,94.08686522],[4.5322458,0.02234567,94.086434],[4.53224522,0.02234396,94.08600485],[4.53224465,0.02234226,94.08557778],[4.53224407,0.02234055,94.0851528],[4.53224349,0.02233885,94.08472992],[4.53224291,0.02233714,94.08430914],[4.53224234,0.02233543,94.08389049],[4.53224176,0.02233373,94.08347396],[4.53224118,0.02233202,94.08305958],[4.5322406,0.02233031,94.08264734],[4.53224002,0.02232861,94.08223726],[4.53223944,0.0223269,94.08182935],[4.53223886,0.0223252,94.08142362],[4.53223829,0.02232349,94.08102008],[4.53223771,0.02232178,94.08061873],[4.53223713,0.02232008,94.08021959],[4.53223655,0.02231837,94.07982267],[4.53223597,0.02231667,94.07942798],[4.53223539,0.02231496,94.07903552],[4.53223481,0.02231325,94.07864531],[4.53223423,0.02231155,94.07825735],[4.53223395,0.02230974,94.07787166],[4.53223392,0.02230784,94.07748824],[4.53223388,0.02230595,94.0771071],[4.53223384,0.02230406,94.07672826],[4.53223381,0.02230217,94.07635172],[4.53223377,0.02230027,94.0759775],[4.53223373,0.02229838,94.07560559],[4.53223369,0.02229649,94.07523604],[4.53223366,0.0222946,94.07486895],[4.53223362,0.02229271,94.07450446],[4.53223358,0.02229081,94.07414271],[4.53223354,0.02228892,94.07378383],[4.5322335,0.02228703,94.07342797],[4.53223346,0.02228514,94.07307525],[4.53223342,0.02228325,94.07272582],[4.53223338,0.02228136,94.07237981],[4.53223334,0.02227946,94.07203737],[4.5322333,0.02227757,94.07169863],[4.53223327,0.02227568,94.07136374],[4.53223323,0.02227379,94.07103283],[4.53223319,0.02227189,94.07070605],[4.53223316,0.02227,94.07038354],[4.53223313,0.02226811,94.07006544],[4.53223309,0.02226621,94.06975189],[4.53223306,0.02226432,94.06944303],[4.53223303,0.02226242,94.06913868],[4.532233,0.02226053,94.06883835],[4.53223297,0.02225863,94.06854155],[4.53223294,0.02225674,94.06824777],[4.53223292,0.02225484,94.06795652],[4.53223289,0.02225294,94.06766729],[4.53223286,0.02225105,94.06737958],[4.53223284,0.02224915,94.06709287],[4.53223281,0.02224725,94.06680666],[4.53223278,0.02224536,94.06652043],[4.53223276,0.02224346,94.06623367],[4.53223273,0.02224156,94.06594586],[4.5322327,0.02223967,94.06565649],[4.53223267,0.02223777,94.06536503],[4.53223264,0.02223588,94.06507111],[4.53223261,0.02223398,94.06477493],[4.53223258,0.02223209,94.06447685],[4.53223255,0.02223019,94.06417721],[4.53223252,0.0222283,94.06387637],[4.53223248,0.0222264,94.06357467],[4.53223245,0.02222451,94.06327248],[4.53223241,0.02222262,94.06297015],[4.53223238,0.02222072,94.06266804],[4.53223234,0.02221883,94.06236651],[4.5322323,0.02221694,94.06206592],[4.53223227,0.02221505,94.06176663],[4.53223223,0.02221315,94.061469],[4.53223219,0.02221126,94.06117341],[4.53223215,0.02220937,94.06088021],[4.53223212,0.02220747,94.06058977],[4.53223208,0.02220558,94.06030247],[4.53223204,0.02220369,94.06001867],[4.532232,0.0222018,94.05973874],[4.53223197,0.0221999,94.05946306],[4.53223193,0.02219801,94.05919199],[4.53223189,0.02219612,94.05892592],[4.53223186,0.02219423,94.05866522],[4.53223182,0.02219233,94.05841026],[4.53223178,0.02219044,94.05816142],[4.53223175,0.02218855,94.05791909],[4.53223171,0.02218665,94.05722502],[4.53223168,0.02218476,94.05608962],[4.53223164,0.02218286,94.05495667],[4.53223161,0.02218097,94.0538262],[4.53223158,0.02217908,94.05266111],[4.53223154,0.02217718,94.05079245],[4.53223151,0.02217537,94.04900345],[4.53233752,0.02213896,94.33152954],[4.53233808,0.02214059,94.33146479],[4.53233866,0.0221423,94.33139778],[4.53233923,0.02214401,94.33133141],[4.53233981,0.02214572,94.33126577],[4.53234039,0.02214743,94.33120093],[4.53234096,0.02214913,94.33113698],[4.53234154,0.02215084,94.33107399],[4.53234212,0.02215255,94.33101205],[4.5323427,0.02215426,94.33095124],[4.53234327,0.02215597,94.33089164],[4.53234385,0.02215767,94.33083333],[4.53234443,0.02215938,94.33077638],[4.532345,0.02216109,94.33072088],[4.53234558,0.0221628,94.3306669],[4.53234616,0.02216451,94.33061453],[4.53234673,0.02216621,94.33056385],[4.53234731,0.02216792,94.33051492],[4.53234789,0.02216963,94.33046783],[4.53234846,0.02217134,94.33042266],[4.53234904,0.02217305,94.33037949],[4.53234962,0.02217475,94.33033838],[4.53235019,0.02217646,94.33029943],[4.53235077,0.02217817,94.3302627],[4.53235135,0.02217988,94.33022828],[4.53235192,0.02218159,94.33019624],[4.5323525,0.02218329,94.33016665],[4.53235308,0.022185,94.33013959],[4.53235366,0.02218671,94.33011514],[4.53235423,0.02218842,94.33009338],[4.53235481,0.02219013,94.33007436],[4.53235539,0.02219183,94.33005818],[4.53235596,0.02219354,94.33004491],[4.53235654,0.02219525,94.33003461],[4.53235712,0.02219696,94.33002737],[4.5323577,0.02219867,94.33002325],[4.53235827,0.02220037,94.33002233],[4.53235885,0.02220208,94.33002469],[4.53235943,0.02220379,94.33003036],[4.53236,0.0222055,94.3300393],[4.53236058,0.02220721,94.33005145],[4.53236116,0.02220891,94.33006673],[4.53236174,0.02221062,94.33008506],[4.53236232,0.02221233,94.33010639],[4.53236289,0.02221404,94.33013063],[4.53236347,0.02221574,94.33015772],[4.53236405,0.02221745,94.3301876],[4.53236463,0.02221916,94.33022018],[4.53236521,0.02222087,94.3302554],[4.53236578,0.02222257,94.3302932],[4.53236636,0.02222428,94.33033349],[4.53236694,0.02222599,94.33037623],[4.53236752,0.0222277,94.33042133],[4.53236809,0.0222294,94.33046872],[4.53236867,0.02223111,94.33051836],[4.53236925,0.02223282,94.33057015],[4.53236983,0.02223453,94.33062405],[4.5323704,0.02223624,94.33067997],[4.53237098,0.02223794,94.33073786],[4.53237156,0.02223965,94.33079765],[4.53237214,0.02224136,94.33085928],[4.53237271,0.02224307,94.33092268],[4.53237329,0.02224478,94.33098778],[4.53237387,0.02224648,94.33105452],[4.53237444,0.02224819,94.33112284],[4.53237502,0.0222499,94.33119267],[4.5323756,0.02225161,94.33126395],[4.53237617,0.02225332,94.33133662],[4.53237675,0.02225502,94.33141061],[4.53237733,0.02225673,94.33148587],[4.5323779,0.02225844,94.33156232],[4.53237848,0.02226015,94.33163992],[4.53237905,0.02226186,94.3317186],[4.53237963,0.02226357,94.33179829],[4.5323802,0.02226528,94.33187896],[4.53238078,0.02226699,94.33196064],[4.53238135,0.02226869,94.33204336],[4.53238193,0.0222704,94.33212719],[4.5323825,0.02227211,94.33221217],[4.53238308,0.02227382,94.33229835],[4.53238365,0.02227553,94.33238577],[4.53238423,0.02227724,94.33247448],[4.5323848,0.02227895,94.33256454],[4.53238538,0.02228066,94.33265597],[4.53238595,0.02228237,94.33274885],[4.53238653,0.02228407,94.3328432],[4.5323871,0.02228578,94.33293907],[4.53238767,0.02228749,94.33303652],[4.53238825,0.0222892,94.33313559],[4.53238882,0.02229091,94.33323632],[4.5323894,0.02229262,94.33333876],[4.53238997,0.02229433,94.33344295],[4.53239055,0.02229604,94.33354895],[4.53239112,0.02229775,94.33365679],[4.5323917,0.02229945,94.33376653],[4.53239227,0.02230116,94.3338782],[4.53239285,0.02230287,94.33399185],[4.53239342,0.02230458,94.33410752],[4.532394,0.02230629,94.33422527],[4.53239458,0.022308,94.33434513],[4.53239515,0.02230971,94.33446714],[4.53239573,0.02231142,94.33459136],[4.5323963,0.02231313,94.33471782],[4.53239688,0.02231483,94.33484657],[4.53239745,0.02231654,94.33497765],[4.53239803,0.02231825,94.3351111],[4.53239861,0.02231996,94.33524698],[4.53239918,0.02232167,94.33538531],[4.53239976,0.02232338,94.33552614],[4.53240033,0.02232509,94.33566952],[4.53240091,0.02232679,94.33581548],[4.53240149,0.0223285,94.33596407],[4.53240206,0.02233021,94.33611533],[4.53240264,0.02233192,94.3362693],[4.53240322,0.02233363,94.33642602],[4.53240379,0.02233534,94.33658554],[4.53240437,0.02233704,94.33674789],[4.53240495,0.02233875,94.33691312],[4.53240552,0.02234046,94.33708126],[4.5324061,0.02234217,94.33725235],[4.53240668,0.02234388,94.33742645],[4.53240726,0.02234559,94.33760358],[4.53240783,0.02234729,94.33778378],[4.53240841,0.022349,94.33796711],[4.53240899,0.02235071,94.33815358],[4.53240957,0.02235242,94.33834326],[4.53241015,0.02235413,94.33853616],[4.53241072,0.02235583,94.33873234],[4.5324113,0.02235754,94.33893183],[4.53241188,0.02235925,94.33913467],[4.53241246,0.02236096,94.3393409],[4.53241304,0.02236267,94.33955056],[4.53241362,0.02236437,94.33976368],[4.53241419,0.02236608,94.33998031],[4.53241477,0.02236779,94.34020047],[4.53241535,0.0223695,94.34042422],[4.53241593,0.0223712,94.34065157],[4.53241651,0.02237291,94.34088248],[4.53241709,0.02237462,94.34111689],[4.53241767,0.02237633,94.34135476],[4.53241825,0.02237803,94.34159602],[4.53241883,0.02237974,94.34184062],[4.53241941,0.02238145,94.3420885],[4.53241999,0.02238316,94.34233962],[4.53242057,0.02238486,94.34259392],[4.53242115,0.02238657,94.34285134],[4.53242173,0.02238828,94.34311183],[4.53242231,0.02238999,94.34337535],[4.53242289,0.02239169,94.34364183],[4.53242347,0.0223934,94.34391122],[4.53242405,0.02239511,94.34418349],[4.53242463,0.02239682,94.34445856],[4.53242521,0.02239852,94.34473641],[4.53242579,0.02240023,94.34501696],[4.53242637,0.02240194,94.34530019],[4.53242694,0.02240365,94.34558602],[4.53242752,0.02240536,94.34587443],[4.5324281,0.02240706,94.34616535],[4.53242868,0.02240877,94.34645875],[4.53242926,0.02241048,94.34675456],[4.53242984,0.02241219,94.34705275],[4.53243041,0.0224139,94.34735326],[4.53243099,0.02241561,94.34765606],[4.53243157,0.02241731,94.34796116],[4.53243214,0.02241902,94.34826857],[4.53243272,0.02242073,94.3485783],[4.5324333,0.02242244,94.34889037],[4.53243387,0.02242415,94.3492048],[4.53243445,0.02242586,94.34952159],[4.53243502,0.02242757,94.34984077],[4.5324356,0.02242928,94.35016235],[4.53243618,0.02243099,94.35048635],[4.53243675,0.02243269,94.35081278],[4.53243732,0.0224344,94.35114165],[4.5324379,0.02243611,94.35147298],[4.53243847,0.02243782,94.35180679],[4.53243905,0.02243953,94.35214309],[4.53243962,0.02244124,94.35248189],[4.5324402,0.02244295,94.35282322],[4.53244077,0.02244466,94.35316708],[4.53244134,0.02244637,94.35351349],[4.53244192,0.02244808,94.35386246],[4.53244249,0.02244979,94.35421401],[4.53244306,0.0224515,94.35456816],[4.53244364,0.02245321,94.35492491],[4.53244421,0.02245492,94.35528429],[4.53244478,0.02245663,94.35564631],[4.53244536,0.02245834,94.35601098],[4.53244593,0.02246005,94.35637832],[4.5324465,0.02246176,94.35674834],[4.53244707,0.02246347,94.35712105],[4.53244765,0.02246518,94.35749648],[4.53244822,0.02246689,94.35787463],[4.53244879,0.0224686,94.35825552],[4.53244937,0.02247031,94.35863916],[4.53244994,0.02247202,94.35902558],[4.53245051,0.02247373,94.35941477],[4.53245108,0.02247544,94.35980677],[4.53245166,0.02247715,94.36020157],[4.53245223,0.02247886,94.3605992],[4.5324528,0.02248057,94.36099967],[4.53245338,0.02248228,94.361403],[4.53245395,0.02248399,94.36180919],[4.53245452,0.0224857,94.36221827],[4.53245509,0.02248741,94.36263024],[4.53245567,0.02248912,94.36304513],[4.53245624,0.02249083,94.36346294],[4.53245681,0.02249254,94.36388369],[4.53245739,0.02249425,94.36430739],[4.53245796,0.02249596,94.36473406],[4.53245854,0.02249767,94.36516371],[4.53245911,0.02249938,94.36559636],[4.53245968,0.02250109,94.36603201],[4.53246026,0.0225028,94.36647069],[4.53246083,0.02250451,94.36691241],[4.5324614,0.02250622,94.36735718],[4.53246198,0.02250793,94.36780501],[4.53246255,0.02250964,94.36825593],[4.53246313,0.02251135,94.36870993],[4.5324637,0.02251306,94.36916705],[4.53246427,0.02251477,94.36962728],[4.53246485,0.02251648,94.37009065],[4.53246542,0.02251819,94.37055717],[4.532466,0.0225199,94.37102685],[4.53246657,0.02252161,94.37149971],[4.53246715,0.02252332,94.37197576],[4.53246772,0.02252503,94.37245501],[4.5324683,0.02252674,94.37293748],[4.53246887,0.02252845,94.37342318],[4.53246945,0.02253016,94.37391212],[4.53247002,0.02253187,94.37440433],[4.5324706,0.02253358,94.37489981],[4.53247117,0.02253529,94.37539857],[4.53247175,0.022537,94.37590064],[4.53247232,0.02253871,94.37640601],[4.5324729,0.02254042,94.37691467],[4.53247347,0.02254213,94.37742664],[4.53247405,0.02254384,94.37794189],[4.53247462,0.02254554,94.37846042],[4.5324752,0.02254725,94.37898223],[4.53247577,0.02254896,94.37950731],[4.53247635,0.02255067,94.38003566],[4.53247692,0.02255238,94.38056727],[4.5324775,0.02255409,94.38110213],[4.53247808,0.0225558,94.38164024],[4.53247865,0.02255751,94.3821816],[4.53247923,0.02255922,94.3827262],[4.5324798,0.02256093,94.38327403],[4.53248038,0.02256264,94.38382509],[4.53248095,0.02256435,94.38437937],[4.53248153,0.02256606,94.38493687],[4.5324821,0.02256777,94.38549758],[4.53248268,0.02256948,94.3860615],[4.53248326,0.02257119,94.38662861],[4.53248383,0.0225729,94.38719893],[4.53248441,0.02257461,94.38777243],[4.53248498,0.02257632,94.38834912],[4.53248556,0.02257803,94.38892898],[4.53248613,0.02257974,94.38951202],[4.5324867,0.02258145,94.39009822],[4.53248728,0.02258316,94.39068759],[4.53248785,0.02258487,94.39128011],[4.53248843,0.02258658,94.39187578],[4.532489,0.02258829,94.39247459],[4.53248957,0.02259,94.39307654],[4.53249015,0.02259171,94.39368162],[4.53249072,0.02259342,94.39428982],[4.53249129,0.02259513,94.39490116],[4.53249187,0.02259684,94.39551567],[4.53249244,0.02259855,94.39613343],[4.53249301,0.02260026,94.39675449],[4.53249358,0.02260197,94.39737892],[4.53249416,0.02260368,94.39800678],[4.53249473,0.02260539,94.39863813],[4.5324953,0.0226071,94.39927303],[4.53249587,0.02260881,94.39991154],[4.53249645,0.02261052,94.40055373],[4.53249702,0.02261223,94.40119966],[4.53249759,0.02261394,94.4018494],[4.53249816,0.02261565,94.40250299],[4.53249874,0.02261736,94.40316051],[4.53249931,0.02261907,94.403822],[4.53249988,0.02262078,94.40448753],[4.53250045,0.02262249,94.40515715],[4.53250103,0.0226242,94.40583093],[4.5325016,0.02262591,94.40650892],[4.53250217,0.02262762,94.40719118],[4.53250275,0.02262933,94.40787777],[4.53250332,0.02263104,94.40856874],[4.53250389,0.02263275,94.40926416],[4.53250447,0.02263446,94.4099641],[4.53250504,0.02263617,94.41066859],[4.53250561,0.02263788,94.41137772],[4.53250619,0.02263959,94.41209153],[4.53250676,0.0226413,94.4128101],[4.53250734,0.02264301,94.41353347],[4.53250791,0.02264472,94.41426171],[4.53250848,0.02264643,94.41499489],[4.53250906,0.02264814,94.41573306],[4.53250963,0.02264985,94.41647629],[4.53251021,0.02265156,94.41722465],[4.53251078,0.02265326,94.41797818],[4.53251135,0.02265497,94.41873694],[4.53251193,0.02265668,94.41950087],[4.5325125,0.02265839,94.4202699],[4.53251307,0.0226601,94.42104395],[4.53251364,0.02266181,94.42182295],[4.53251422,0.02266352,94.42260682],[4.53251479,0.02266523,94.42339548],[4.53251536,0.02266694,94.42418886],[4.53251593,0.02266865,94.42498687],[4.5325165,0.02267036,94.42578945],[4.53251707,0.02267207,94.42659651],[4.53251764,0.02267378,94.42740799],[4.53251821,0.02267549,94.42822378],[4.53251878,0.0226772,94.42904383],[4.53251936,0.02267891,94.42986805],[4.53251993,0.02268062,94.43069635],[4.5325205,0.02268233,94.43152867],[4.53252107,0.02268404,94.43236491],[4.53252164,0.02268575,94.43320501],[4.53252221,0.02268746,94.43404886],[4.53252278,0.02268917,94.4348964],[4.53252335,0.02269088,94.43574754],[4.53252392,0.02269259,94.43660219],[4.5325245,0.0226943,94.43746027],[4.53252507,0.02269601,94.4383217],[4.53252564,0.02269772,94.43918638],[4.53252622,0.02269943,94.44005424],[4.53252679,0.02270114,94.44092518],[4.53252737,0.02270285,94.44179912],[4.53252794,0.02270456,94.44267596],[4.53252852,0.02270626,94.44355562],[4.53252909,0.02270797,94.444438],[4.53252967,0.02270968,94.44532304],[4.53253024,0.02271139,94.44621076],[4.53253082,0.0227131,94.44710119],[4.5325314,0.02271481,94.44799439],[4.53253197,0.02271651,94.44889039],[4.53253255,0.02271822,94.44978924],[4.53253312,0.02271993,94.45069099],[4.5325337,0.02272164,94.45159567],[4.53253428,0.02272334,94.45250334],[4.53253485,0.02272505,94.45341403],[4.53253543,0.02272676,94.45432779],[4.53253601,0.02272847,94.45524467],[4.53253658,0.02273018,94.45616467],[4.53253716,0.02273188,94.45708774],[4.53253774,0.02273359,94.45801387],[4.53253831,0.0227353,94.458943],[4.53253889,0.02273701,94.4598751],[4.53253947,0.02273871,94.46081015],[4.53254004,0.02274042,94.46174809],[4.53254062,0.02274213,94.46268891],[4.5325412,0.02274384,94.46363255],[4.53254177,0.02274554,94.464579],[4.53254235,0.02274725,94.46552821],[4.53254293,0.02274896,94.46648015],[4.5325435,0.02275067,94.4674348],[4.53254408,0.02275238,94.4683921],[4.53254465,0.02275408,94.46935205],[4.53254523,0.02275579,94.47031459],[4.5325458,0.0227575,94.4712797],[4.53254638,0.02275921,94.47224736],[4.53254695,0.02276092,94.47321752],[4.53254753,0.02276262,94.47419016],[4.5325481,0.02276433,94.47516525],[4.53254868,0.02276604,94.47614277],[4.53254925,0.02276775,94.47712267],[4.53254982,0.02276946,94.47810494],[4.5325504,0.02277117,94.47908955],[4.53255097,0.02277287,94.48007647],[4.53255154,0.02277458,94.4810657],[4.53255211,0.02277629,94.48205732],[4.53255269,0.022778,94.48305147],[4.53255326,0.02277971,94.48404826],[4.53255383,0.02278142,94.48504781],[4.5325544,0.02278313,94.48605025],[4.53255497,0.02278484,94.4870557],[4.53255554,0.02278655,94.4880643],[4.53255611,0.02278826,94.48907617],[4.53255668,0.02278997,94.49009145],[4.53255725,0.02279167,94.49111027],[4.53255782,0.02279338,94.49213276],[4.53255839,0.02279509,94.49315907],[4.53255897,0.0227968,94.49418934],[4.53255954,0.02279851,94.4952237],[4.53256011,0.02280022,94.4962623],[4.53256068,0.02280193,94.49730528],[4.53256125,0.02280364,94.49835279],[4.53256182,0.02280535,94.49940496],[4.53256239,0.02280706,94.50046169],[4.53256296,0.02280876,94.50152257],[4.53256354,0.02281047,94.50258723],[4.53256411,0.02281218,94.50365525],[4.53256468,0.02281389,94.50472624],[4.53256526,0.0228156,94.50579977],[4.53256583,0.0228173,94.50687546],[4.53256641,0.02281901,94.50795287],[4.53256698,0.02282072,94.5090316],[4.53256756,0.02282243,94.51011122],[4.53256813,0.02282414,94.51119131],[4.5325687,0.02282584,94.51227144],[4.53256928,0.02282755,94.51335118],[4.53256985,0.02282926,94.51443011],[4.53257043,0.02283097,94.51550778],[4.532571,0.02283267,94.51658377],[4.53257158,0.02283438,94.51765762],[4.53257215,0.02283609,94.5187289],[4.53257273,0.0228378,94.51979716],[4.5325733,0.0228395,94.52086195],[4.53257387,0.02284121,94.52192284],[4.53257445,0.02284292,94.52297937],[4.53257502,0.02284463,94.5240311],[4.53257559,0.02284633,94.52507758],[4.53257617,0.02284804,94.52611834],[4.53257674,0.02284975,94.52715295],[4.53257731,0.02285146,94.52818115],[4.53257788,0.02285317,94.52920352],[4.53257845,0.02285488,94.53022085],[4.53257901,0.02285659,94.53123396],[4.53257958,0.0228583,94.53224365],[4.53258015,0.02286001,94.53325074],[4.53258072,0.02286172,94.53425604],[4.53258128,0.02286343,94.53526039],[4.53258185,0.02286514,94.53626462],[4.53258242,0.02286685,94.53726955],[4.53258299,0.02286856,94.53827604],[4.53258355,0.02287026,94.53928491],[4.53258412,0.02287197,94.54029681],[4.53258469,0.02287368,94.54131149],[4.53258526,0.02287539,94.54232848],[4.53258583,0.0228771,94.5433473],[4.5325864,0.02287881,94.54436747],[4.53258697,0.02288052,94.54538852],[4.53258755,0.02288223,94.54640997],[4.53258812,0.02288393,94.54743132],[4.53258869,0.02288564,94.5484521],[4.53258926,0.02288735,94.54947182],[4.53258983,0.02288906,94.55048998],[4.5325904,0.02289077,94.5515061],[4.53259097,0.02289247,94.55251968],[4.53259154,0.02289418,94.55353023],[4.53259211,0.02289589,94.55453726],[4.53259269,0.0228976,94.55554027],[4.53259326,0.02289931,94.55653876],[4.53259383,0.02290102,94.55753225],[4.5325944,0.02290272,94.55852023],[4.53259497,0.02290443,94.5595022],[4.53259554,0.02290614,94.56047769],[4.53259611,0.02290785,94.56144649],[4.53259668,0.02290956,94.56240866],[4.53259725,0.02291127,94.56336428],[4.53259782,0.02291297,94.56431343],[4.53259839,0.02291468,94.5652562],[4.53259896,0.02291639,94.56619267],[4.53259953,0.0229181,94.56712292],[4.5326001,0.02291981,94.56804704],[4.53260067,0.02292151,94.56896512],[4.53260125,0.02292322,94.56987724],[4.53260182,0.02292493,94.57078348],[4.53260239,0.02292664,94.57168394],[4.53260296,0.02292835,94.5725787],[4.53260353,0.02293005,94.57346786],[4.5326041,0.02293176,94.57435149],[4.53260467,0.02293347,94.57522969],[4.53260524,0.02293518,94.57610255],[4.53260582,0.02293688,94.57697016],[4.53260639,0.02293859,94.5778326],[4.53260696,0.0229403,94.57868999],[4.53260753,0.02294201,94.57954245],[4.53260809,0.02294372,94.58039009],[4.53260866,0.02294543,94.58123302],[4.53260923,0.02294713,94.58207136],[4.5326098,0.02294884,94.58290521],[4.53261037,0.02295055,94.5837347],[4.53261094,0.02295226,94.58455992],[4.53261151,0.02295397,94.58538087],[4.53261208,0.02295568,94.58619743],[4.53261264,0.02295739,94.5870095],[4.53261321,0.02295909,94.58781695],[4.53261378,0.0229608,94.58861967],[4.53261435,0.02296251,94.58941753],[4.53261492,0.02296422,94.59021043],[4.53261549,0.02296593,94.59099824],[4.53261606,0.02296764,94.59178085],[4.53261663,0.02296934,94.59255813],[4.5326172,0.02297105,94.59332999],[4.53261777,0.02297276,94.59409629],[4.53261834,0.02297447,94.59485693],[4.53261891,0.02297618,94.59561179],[4.53261948,0.02297788,94.59636075],[4.53262005,0.02297959,94.59710371],[4.53262062,0.0229813,94.59784054],[4.53262119,0.02298301,94.59857114],[4.53262176,0.02298472,94.59929539],[4.53262233,0.02298642,94.60001321],[4.5326229,0.02298813,94.60072464],[4.53262347,0.02298984,94.60142975],[4.53262405,0.02299155,94.60212861],[4.53262462,0.02299325,94.6028213],[4.53262519,0.02299496,94.60350788],[4.53262576,0.02299667,94.60418843],[4.53262633,0.02299838,94.60486302],[4.53262691,0.02300008,94.60553172],[4.53262748,0.02300179,94.60619462],[4.53262805,0.0230035,94.60685182],[4.53262863,0.02300521,94.60750347],[4.5326292,0.02300692,94.60814972],[4.53262977,0.02300862,94.60879071],[4.53263035,0.02301033,94.60942658],[4.53263092,0.02301204,94.61005748],[4.53263149,0.02301375,94.61068356],[4.53263207,0.02301545,94.61130495],[4.53263264,0.02301716,94.6119218],[4.53263322,0.02301887,94.61253425],[4.53263379,0.02302058,94.61314244],[4.53263437,0.02302229,94.61374651],[4.53263494,0.02302399,94.6143466],[4.53263552,0.0230257,94.61494285],[4.53263609,0.02302741,94.6155354],[4.53263667,0.02302912,94.61612437],[4.53263725,0.02303082,94.61670992],[4.53263782,0.02303253,94.61729217],[4.5326384,0.02303424,94.61787125],[4.53263898,0.02303595,94.61844729],[4.53263955,0.02303765,94.61902038],[4.53264013,0.02303936,94.61959063],[4.53264071,0.02304107,94.62015813],[4.53264129,0.02304278,94.62072299],[4.53264186,0.02304449,94.6212853],[4.53264244,0.02304619,94.62184517],[4.53264302,0.0230479,94.62240269],[4.5326436,0.02304961,94.62295797],[4.53264418,0.02305132,94.6235111],[4.53264476,0.02305302,94.62406218],[4.53264534,0.02305473,94.62461131],[4.53264592,0.02305644,94.6251586],[4.5326465,0.02305815,94.62570414],[4.53264708,0.02305985,94.62624803],[4.53264766,0.02306156,94.62679036],[4.53264824,0.02306327,94.62733125],[4.53264882,0.02306498,94.62787079],[4.5326494,0.02306668,94.62840907],[4.53264998,0.02306839,94.62894619],[4.53265056,0.0230701,94.62948227],[4.53265114,0.02307181,94.63001738],[4.53265172,0.02307352,94.63055164],[4.5326523,0.02307522,94.63108514],[4.53265288,0.02307693,94.63161798],[4.53265347,0.02307864,94.63215027],[4.53265405,0.02308035,94.63268215],[4.53265463,0.02308206,94.63321376],[4.53265521,0.02308376,94.63374521],[4.53265579,0.02308547,94.63427664],[4.53265637,0.02308718,94.63480818],[4.53265695,0.02308889,94.63533996],[4.53265753,0.0230906,94.6358721],[4.53265812,0.02309231,94.63640473],[4.5326587,0.02309401,94.63693798],[4.53265928,0.02309572,94.63747195],[4.53265986,0.02309743,94.63800678],[4.53266044,0.02309914,94.63854256],[4.53266102,0.02310085,94.63907938],[4.53266161,0.02310256,94.63961735],[4.53266219,0.02310427,94.64015657],[4.53266277,0.02310597,94.64069714],[4.53266335,0.02310768,94.64123915],[4.53266393,0.02310939,94.6417827],[4.53266452,0.0231111,94.6423279],[4.5326651,0.02311281,94.64287483],[4.53266568,0.02311452,94.6434236],[4.53266626,0.02311623,94.64397431],[4.53266684,0.02311794,94.64452704],[4.53266742,0.02311965,94.64508191],[4.53266801,0.02312136,94.645639],[4.53266859,0.02312307,94.64619841],[4.53266917,0.02312478,94.64676024],[4.53266975,0.02312649,94.64732458],[4.53267033,0.0231282,94.64789154],[4.53267091,0.02312991,94.6484612],[4.53267149,0.02313162,94.64903366],[4.53267207,0.02313333,94.64960904],[4.53267265,0.02313504,94.65018747],[4.53267323,0.02313675,94.65076914],[4.53267381,0.02313846,94.6513542],[4.53267439,0.02314017,94.65194282],[4.53267497,0.02314188,94.65253516],[4.53267555,0.02314359,94.65313139],[4.53267613,0.0231453,94.65373168],[4.53267671,0.02314702,94.6543362],[4.53267729,0.02314873,94.6549451],[4.53267787,0.02315044,94.65555855],[4.53267844,0.02315215,94.65617672],[4.53267902,0.02315386,94.65679978],[4.5326796,0.02315558,94.65742789],[4.53268018,0.02315729,94.65806122],[4.53268075,0.023159,94.65869993],[4.53268133,0.02316071,94.65934419],[4.53268191,0.02316243,94.65999417],[4.53268248,0.02316414,94.66065003],[4.53268306,0.02316585,94.66131195],[4.53268363,0.02316757,94.66198008],[4.53268421,0.02316928,94.66265461],[4.53268478,0.023171,94.66333568],[4.53268536,0.02317271,94.66402349],[4.53268593,0.02317442,94.66471819],[4.5326865,0.02317614,94.66541995],[4.53268708,0.02317785,94.66612894],[4.53268765,0.02317957,94.66684534],[4.53268822,0.02318128,94.66756931],[4.53268879,0.023183,94.66830102],[4.53268936,0.02318471,94.66904066],[4.53268993,0.02318643,94.66978838],[4.5326905,0.02318815,94.67054431],[4.53269107,0.02318986,94.67130835],[4.53269164,0.02319158,94.67208033],[4.53269221,0.02319329,94.6728601],[4.53269278,0.02319501,94.67364753],[4.532555,0.02324129,94.52109012]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":1,"type":"shoulder","predecessorId":1},{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":2,"type":"none","predecessorId":2}],"roadId":"1004200","singleSide":false,"rightLanes":[{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":-4,"type":"none","predecessorId":0},{"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-3,"type":"stop","predecessorId":-3},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.53223153,0.02217536,94.04900345],[4.53223276,0.02217303,94.05433512],[4.53223399,0.02217071,94.05967777],[4.53223522,0.02216838,94.06503126],[4.53223644,0.02216605,94.07039542],[4.53223728,0.02216386,94.07458174],[4.53223705,0.02216203,94.07554193],[4.53223682,0.02216021,94.07650745],[4.53223658,0.02215838,94.07747829],[4.53223635,0.02215655,94.07845443],[4.53223612,0.02215473,94.07943584],[4.53223589,0.0221529,94.08042252],[4.53223566,0.02215108,94.08141443],[4.53223542,0.02214925,94.08241157],[4.53223519,0.02214742,94.0834139],[4.53223496,0.0221456,94.08442141],[4.53223473,0.02214377,94.08543408],[4.5322345,0.02214194,94.08645188],[4.53223426,0.02214012,94.0874748],[4.53223403,0.02213829,94.0885028],[4.5322338,0.02213647,94.08953587],[4.53223357,0.02213464,94.09057398],[4.53223331,0.02213282,94.09154549],[4.53223297,0.02213104,94.09225171],[4.53223262,0.02212925,94.09296267],[4.53223228,0.02212746,94.09367836],[4.53223194,0.02212567,94.09439876],[4.53223159,0.02212389,94.09512386],[4.53223125,0.0221221,94.09585365],[4.5322309,0.02212031,94.09658812],[4.53223056,0.02211852,94.09732724],[4.53223022,0.02211674,94.09807102],[4.53222987,0.02211495,94.09881943],[4.53222953,0.02211316,94.09957246],[4.53222918,0.02211137,94.1003301],[4.53222884,0.02210959,94.10109232],[4.53222849,0.0221078,94.10185912],[4.53222815,0.02210601,94.10263048],[4.5322278,0.02210422,94.10340639],[4.53222746,0.02210244,94.10418682],[4.53222712,0.02210065,94.10497177],[4.53222677,0.02209886,94.10576121],[4.53222643,0.02209707,94.10655513],[4.53222608,0.02209529,94.1073535],[4.53222574,0.0220935,94.10815633],[4.53222539,0.02209171,94.10896357],[4.53222505,0.02208992,94.10977523],[4.5322247,0.02208814,94.11059127],[4.53222436,0.02208635,94.11141169],[4.53222401,0.02208456,94.11223645],[4.53222367,0.02208277,94.11306555],[4.53222333,0.02208099,94.11389896],[4.53222298,0.0220792,94.11473667],[4.53222264,0.02207741,94.11557865],[4.53222229,0.02207563,94.11642488],[4.53222195,0.02207384,94.11727534],[4.5322216,0.02207205,94.11813001],[4.53222126,0.02207026,94.11898887],[4.53222091,0.02206848,94.1198519],[4.53222057,0.02206669,94.12071908],[4.53222022,0.0220649,94.12159038],[4.53221983,0.02206313,94.12232776],[4.53221936,0.02206139,94.12281287],[4.53221888,0.02205964,94.12330223],[4.53221841,0.0220579,94.12379584],[4.53221794,0.02205616,94.1242937],[4.53221746,0.02205442,94.1247958],[4.53221699,0.02205267,94.12530214],[4.53221651,0.02205093,94.12581272],[4.53221604,0.02204919,94.12632752],[4.53221557,0.02204744,94.12684656],[4.53221509,0.0220457,94.12736981],[4.53221462,0.02204396,94.12789729],[4.53221414,0.02204222,94.12842898],[4.53221367,0.02204047,94.12896488],[4.5322132,0.02203873,94.12950498],[4.53221272,0.02203699,94.13004929],[4.53221225,0.02203524,94.13059779],[4.53221177,0.0220335,94.13115049],[4.5322113,0.02203176,94.13170737],[4.53221082,0.02203002,94.13226843],[4.53221035,0.02202827,94.13283367],[4.53220988,0.02202653,94.13340308],[4.5322094,0.02202479,94.13397666],[4.53220893,0.02202304,94.13455439],[4.53220845,0.0220213,94.13513628],[4.53220798,0.02201956,94.13572232],[4.5322075,0.02201782,94.13631249],[4.53220703,0.02201607,94.13690681],[4.53220655,0.02201433,94.13750525],[4.53220608,0.02201259,94.13810782],[4.5322056,0.02201084,94.1387145],[4.53220513,0.0220091,94.13932529],[4.53220466,0.02200736,94.13994018],[4.53220418,0.02200562,94.14055917],[4.53220371,0.02200387,94.14118225],[4.53220323,0.02200213,94.14180941],[4.53220276,0.02200039,94.14244065],[4.53220228,0.02199865,94.14307595],[4.53220181,0.0219969,94.14371532],[4.53220133,0.02199516,94.14435873],[4.53220086,0.02199342,94.14500619],[4.53220038,0.02199168,94.14565769],[4.53219991,0.02198993,94.14631321],[4.53219943,0.02198819,94.14697276],[4.53219896,0.02198645,94.14763632],[4.53219848,0.02198471,94.14830388],[4.53219844,0.02198456,94.14836096],[4.53227612,0.02195783,94.34342722],[4.53227617,0.02195797,94.34341506],[4.53227675,0.02195968,94.34327268],[4.53227733,0.02196139,94.3431308],[4.53227791,0.02196309,94.3429894],[4.53227849,0.0219648,94.34284849],[4.53227907,0.02196651,94.34270807],[4.53227965,0.02196821,94.34256815],[4.53228023,0.02196992,94.34242872],[4.53228081,0.02197163,94.3422898],[4.53228139,0.02197334,94.34215137],[4.53228197,0.02197504,94.34201345],[4.53228255,0.02197675,94.34187603],[4.53228313,0.02197846,94.34173911],[4.53228371,0.02198016,94.3416027],[4.53228429,0.02198187,94.3414668],[4.53228487,0.02198358,94.34133141],[4.53228545,0.02198529,94.34119654],[4.53228603,0.02198699,94.34106217],[4.53228661,0.0219887,94.34092832],[4.53228719,0.02199041,94.34079499],[4.53228777,0.02199211,94.34066218],[4.53228835,0.02199382,94.34052989],[4.53228893,0.02199553,94.34039812],[4.5322895,0.02199724,94.34026687],[4.53229008,0.02199894,94.34013615],[4.53229066,0.02200065,94.34000595],[4.53229124,0.02200236,94.33987628],[4.53229182,0.02200406,94.33974715],[4.5322924,0.02200577,94.33961854],[4.53229298,0.02200748,94.33949047],[4.53229356,0.02200919,94.33936293],[4.53229414,0.02201089,94.33923592],[4.53229472,0.0220126,94.33910946],[4.5322953,0.02201431,94.33898353],[4.53229588,0.02201601,94.33885814],[4.53229646,0.02201772,94.3387333],[4.53229704,0.02201943,94.338609],[4.53229762,0.02202114,94.33848525],[4.5322982,0.02202284,94.33836204],[4.53229878,0.02202455,94.33823938],[4.53229936,0.02202626,94.33811727],[4.53229993,0.02202797,94.33799572],[4.53230051,0.02202967,94.33787472],[4.53230109,0.02203138,94.33775427],[4.53230167,0.02203309,94.33763438],[4.53230225,0.02203479,94.33751505],[4.53230283,0.0220365,94.33739628],[4.53230341,0.02203821,94.33727808],[4.53230399,0.02203992,94.33716044],[4.53230457,0.02204162,94.33704336],[4.53230515,0.02204333,94.33692685],[4.53230573,0.02204504,94.33681091],[4.53230631,0.02204675,94.33669555],[4.53230688,0.02204845,94.33658075],[4.53230746,0.02205016,94.33646654],[4.53230804,0.02205187,94.3363529],[4.53230862,0.02205358,94.33623984],[4.5323092,0.02205528,94.33612736],[4.53230978,0.02205699,94.33601546],[4.53231036,0.0220587,94.33590415],[4.53231094,0.02206041,94.33579343],[4.53231152,0.02206211,94.3356833],[4.53231209,0.02206382,94.33557376],[4.53231267,0.02206553,94.33546481],[4.53231325,0.02206723,94.33535646],[4.53231383,0.02206894,94.33524871],[4.53231441,0.02207065,94.33514156],[4.53231499,0.02207236,94.33503501],[4.53231557,0.02207406,94.33492906],[4.53231614,0.02207577,94.33482373],[4.53231672,0.02207748,94.334719],[4.5323173,0.02207919,94.33461489],[4.53231788,0.02208089,94.3345114],[4.53231846,0.0220826,94.33440857],[4.53231904,0.02208431,94.3343064],[4.53231961,0.02208602,94.33420493],[4.53232019,0.02208773,94.33410417],[4.53232077,0.02208943,94.33400416],[4.53232135,0.02209114,94.33390491],[4.53232193,0.02209285,94.33380644],[4.5323225,0.02209456,94.33370879],[4.53232308,0.02209626,94.33361197],[4.53232366,0.02209797,94.333516],[4.53232424,0.02209968,94.33342092],[4.53232482,0.02210139,94.33332673],[4.53232539,0.02210309,94.33323347],[4.53232597,0.0221048,94.33314116],[4.53232655,0.02210651,94.33304982],[4.53232713,0.02210822,94.33295948],[4.53232771,0.02210993,94.33287016],[4.53232828,0.02211163,94.33278187],[4.53232886,0.02211334,94.33269465],[4.53232944,0.02211505,94.33260851],[4.53233002,0.02211676,94.33252349],[4.53233059,0.02211846,94.33243959],[4.53233117,0.02212017,94.33235686],[4.53233175,0.02212188,94.3322753],[4.53233233,0.02212359,94.33219494],[4.5323329,0.0221253,94.33211581],[4.53233348,0.022127,94.33203792],[4.53233406,0.02212871,94.3319613],[4.53233464,0.02213042,94.33188598],[4.53233521,0.02213213,94.33181197],[4.53233579,0.02213383,94.3317393],[4.53233637,0.02213554,94.33166799],[4.53233695,0.02213725,94.33159806],[4.53233752,0.02213896,94.33152954],[4.53223153,0.02217536,94.04900345]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":1,"type":"shoulder","predecessorId":1},{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":2,"type":"none","predecessorId":2}],"roadId":"1004200","singleSide":false,"rightLanes":[{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"rules":[{"value":"barred"}],"id":-3,"type":"restricted","predecessorId":-3},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.53469285,0.03043239,97.65343948],[4.53469235,0.03043066,97.65226247],[4.53469185,0.03042892,97.65108477],[4.53469136,0.03042719,97.64990638],[4.53469086,0.03042546,97.6487273],[4.53469036,0.03042373,97.64754754],[4.53468987,0.030422,97.64636709],[4.53468937,0.03042027,97.64518596],[4.53468887,0.03041854,97.64400413],[4.53468838,0.03041681,97.64282162],[4.53468788,0.03041507,97.64163842],[4.53468739,0.03041334,97.64045453],[4.53468689,0.03041161,97.63926996],[4.53468639,0.03040988,97.6380847],[4.5346859,0.03040815,97.63689875],[4.5346854,0.03040642,97.63571211],[4.5346849,0.03040469,97.63452478],[4.53468441,0.03040295,97.63333677],[4.53468391,0.03040122,97.63214807],[4.53468341,0.03039949,97.63095868],[4.53468292,0.03039776,97.62976861],[4.53468242,0.03039603,97.62857785],[4.53468193,0.0303943,97.6273864],[4.53468143,0.03039257,97.62619426],[4.53468093,0.03039084,97.62500144],[4.53468044,0.0303891,97.62380792],[4.53467994,0.03038737,97.62261373],[4.53467945,0.03038564,97.62141884],[4.53467895,0.03038391,97.62022327],[4.53467845,0.03038218,97.61902701],[4.53467796,0.03038045,97.61783006],[4.53467746,0.03037872,97.61663243],[4.53467696,0.03037698,97.61543411],[4.53467647,0.03037525,97.61423511],[4.53467597,0.03037352,97.61303542],[4.53467548,0.03037179,97.61183504],[4.53467498,0.03037006,97.61063398],[4.53467448,0.03036833,97.60943223],[4.53467399,0.0303666,97.60822979],[4.53467349,0.03036487,97.60702667],[4.53467299,0.03036313,97.60582287],[4.5346725,0.0303614,97.60461838],[4.534672,0.03035967,97.6034132],[4.53467151,0.03035794,97.60220734],[4.53467101,0.03035621,97.60100079],[4.53467051,0.03035448,97.59979356],[4.53467002,0.03035275,97.59858565],[4.53466952,0.03035101,97.59737705],[4.53466902,0.03034928,97.59616777],[4.53466853,0.03034755,97.5949578],[4.53466803,0.03034582,97.59374715],[4.53466753,0.03034409,97.59253582],[4.53466704,0.03034236,97.5913238],[4.53466654,0.03034063,97.5901111],[4.53466604,0.0303389,97.58889772],[4.53466555,0.03033716,97.58768365],[4.53466505,0.03033543,97.5864689],[4.53466455,0.0303337,97.58525347],[4.53466406,0.03033197,97.58403736],[4.53466356,0.03033024,97.58282057],[4.53466306,0.03032851,97.58160309],[4.53466257,0.03032678,97.58038494],[4.53466207,0.03032504,97.5791661],[4.53466157,0.03032331,97.57794658],[4.53466108,0.03032158,97.57672638],[4.53466058,0.03031985,97.5755055],[4.53466008,0.03031812,97.57428394],[4.53465958,0.03031639,97.5730617],[4.53465909,0.03031466,97.57183878],[4.53465859,0.03031293,97.57061518],[4.53465809,0.03031119,97.56939091],[4.5346576,0.03030946,97.56816595],[4.5346571,0.03030773,97.56694031],[4.5346566,0.030306,97.565714],[4.5346561,0.03030427,97.56448701],[4.53465561,0.03030254,97.56325935],[4.53465511,0.03030081,97.56203105],[4.53465461,0.03029908,97.56080212],[4.53465411,0.03029735,97.55957259],[4.53465361,0.03029561,97.55834248],[4.53465312,0.03029388,97.5571118],[4.53465262,0.03029215,97.55588059],[4.53465212,0.03029042,97.55464887],[4.53465162,0.03028869,97.55341664],[4.53465113,0.03028696,97.55218391],[4.53465063,0.03028523,97.55095068],[4.53465013,0.0302835,97.54971693],[4.53464963,0.03028177,97.54848265],[4.53464913,0.03028003,97.54724785],[4.53464864,0.0302783,97.54601252],[4.53464814,0.03027657,97.54477664],[4.53464764,0.03027484,97.54354022],[4.53464714,0.03027311,97.54230324],[4.53464664,0.03027138,97.54106571],[4.53464615,0.03026965,97.5398276],[4.53464565,0.03026792,97.53858893],[4.53464515,0.03026619,97.53734967],[4.53464465,0.03026445,97.53610983],[4.53464415,0.03026272,97.53486939],[4.53464365,0.03026099,97.53362836],[4.53464316,0.03025926,97.53238672],[4.53464266,0.03025753,97.53114446],[4.53464216,0.0302558,97.52990159],[4.53464166,0.03025407,97.5286581],[4.53464116,0.03025234,97.52741397],[4.53464066,0.03025061,97.52616921],[4.53464016,0.03024887,97.5249238],[4.53463966,0.03024714,97.52367774],[4.53463916,0.03024541,97.52243102],[4.53463867,0.03024368,97.52118364],[4.53463817,0.03024195,97.51993559],[4.53463767,0.03024022,97.51868687],[4.53463717,0.03023849,97.51743746],[4.53463667,0.03023675,97.51618736],[4.53463617,0.03023502,97.51493657],[4.53463567,0.03023329,97.51368507],[4.53463517,0.03023156,97.51243287],[4.53463467,0.03022983,97.51117995],[4.53463417,0.0302281,97.50992631],[4.53463367,0.03022637,97.50867195],[4.53463316,0.03022463,97.50741685],[4.53463266,0.0302229,97.50616101],[4.53463216,0.03022117,97.50490442],[4.53463166,0.03021944,97.50364708],[4.53463116,0.03021771,97.50238898],[4.53463066,0.03021598,97.50113012],[4.53463016,0.03021425,97.49987048],[4.53462966,0.03021252,97.49861007],[4.53462915,0.03021078,97.49734888],[4.53462865,0.03020905,97.49608693],[4.53462815,0.03020732,97.49482422],[4.53462765,0.03020559,97.49356077],[4.53462715,0.03020386,97.49229658],[4.53462664,0.03020213,97.49103168],[4.53462614,0.0302004,97.48976607],[4.53462564,0.03019866,97.48849977],[4.53462513,0.03019693,97.48723278],[4.53462463,0.0301952,97.48596512],[4.53462413,0.03019347,97.4846968],[4.53462362,0.03019174,97.48342784],[4.53462312,0.03019001,97.48215824],[4.53462262,0.03018827,97.48088802],[4.53462211,0.03018654,97.47961719],[4.53462161,0.03018481,97.47834576],[4.53462111,0.03018308,97.47707374],[4.5346206,0.03018135,97.47580116],[4.5346201,0.03017962,97.474528],[4.53461959,0.03017789,97.4732543],[4.53461909,0.03017615,97.47198006],[4.53461859,0.03017442,97.4707053],[4.53461808,0.03017269,97.46943002],[4.53461758,0.03017096,97.46815425],[4.53461707,0.03016923,97.46687799],[4.53461657,0.0301675,97.46560126],[4.53461606,0.03016576,97.46432407],[4.53461556,0.03016403,97.46304643],[4.53461505,0.0301623,97.46176835],[4.53461455,0.03016057,97.46048986],[4.53461404,0.03015884,97.45921095],[4.53461354,0.0301571,97.45793165],[4.53461303,0.03015537,97.45665197],[4.53461253,0.03015364,97.45537192],[4.53461202,0.03015191,97.45409151],[4.53461152,0.03015018,97.45281076],[4.53461101,0.03014845,97.45152968],[4.53461051,0.03014671,97.45024827],[4.53461,0.03014498,97.44896657],[4.5346095,0.03014325,97.44768457],[4.53460899,0.03014152,97.44640229],[4.53460849,0.03013978,97.44511974],[4.53460798,0.03013805,97.44383694],[4.53460748,0.03013632,97.4425539],[4.53460697,0.03013459,97.44127065],[4.53460647,0.03013285,97.43998719],[4.53460596,0.03013112,97.43870356],[4.53460546,0.03012939,97.43741976],[4.53460495,0.03012766,97.43613583],[4.53460444,0.03012592,97.43485177],[4.53460394,0.03012419,97.43356762],[4.53460343,0.03012246,97.43228338],[4.53460293,0.03012073,97.43099908],[4.53460242,0.03011899,97.42971473],[4.53460192,0.03011726,97.42843036],[4.53460141,0.03011553,97.42714599],[4.53460091,0.03011379,97.42586164],[4.53460041,0.03011206,97.42457734],[4.5345999,0.03011033,97.42329311],[4.5345994,0.0301086,97.42200895],[4.53459889,0.03010686,97.42072481],[4.53459839,0.03010513,97.41944069],[4.53459788,0.0301034,97.41815654],[4.53459738,0.03010166,97.41687234],[4.53459687,0.03009993,97.41558807],[4.53459637,0.03009819,97.41430369],[4.53459587,0.03009646,97.41301917],[4.53459536,0.03009473,97.4117345],[4.53459486,0.03009299,97.41044964],[4.53459435,0.03009126,97.40916457],[4.53459385,0.03008953,97.40787926],[4.53459334,0.03008779,97.40659367],[4.53459284,0.03008606,97.40530779],[4.53459234,0.03008432,97.40402159],[4.53459183,0.03008259,97.40273503],[4.53459133,0.03008086,97.4014481],[4.53459082,0.03007912,97.40016075],[4.53459032,0.03007739,97.39887298],[4.53458981,0.03007565,97.39758474],[4.53458931,0.03007392,97.39629601],[4.5345888,0.03007219,97.39500677],[4.5345883,0.03007045,97.39371698],[4.53458779,0.03006872,97.39242662],[4.53458729,0.03006698,97.39113567],[4.53458678,0.03006525,97.38984408],[4.53458628,0.03006352,97.38855185],[4.53458577,0.03006178,97.3872592],[4.53458526,0.03006005,97.38596658],[4.53458476,0.03005831,97.38467445],[4.53458425,0.03005658,97.38338327],[4.53458375,0.03005484,97.38209351],[4.53458324,0.03005311,97.38080564],[4.53458274,0.03005137,97.37952012],[4.53458224,0.03004964,97.37823741],[4.53458174,0.0300479,97.37695797],[4.53458124,0.03004617,97.37568227],[4.53458074,0.03004443,97.37441078],[4.53458024,0.03004269,97.37314395],[4.53457975,0.03004096,97.37188225],[4.53457925,0.03003922,97.37062615],[4.53457876,0.03003748,97.3693761],[4.53457827,0.03003574,97.36813259],[4.53457779,0.03003401,97.3668961],[4.5345773,0.03003227,97.36566714],[4.53457682,0.03003053,97.36444621],[4.53457634,0.03002878,97.36323381],[4.53457587,0.03002704,97.36203044],[4.5345754,0.0300253,97.36083639],[4.53457493,0.03002356,97.35965117],[4.53457446,0.03002181,97.35847406],[4.534574,0.03002007,97.35730436],[4.53457353,0.03001833,97.35614135],[4.53457307,0.03001658,97.35498434],[4.53457262,0.03001484,97.3538326],[4.53457216,0.03001309,97.35268544],[4.5345717,0.03001134,97.35154215],[4.53457125,0.0300096,97.35040201],[4.53457079,0.03000785,97.34926433],[4.53457034,0.03000611,97.34812838],[4.53456989,0.03000436,97.34699347],[4.53456943,0.03000261,97.34585888],[4.53456898,0.03000087,97.34472391],[4.53456853,0.02999912,97.34358785],[4.53456807,0.02999738,97.34244999],[4.53456762,0.02999563,97.34130962],[4.53456716,0.02999389,97.34016603],[4.5345667,0.02999215,97.33901882],[4.53456624,0.0299904,97.33786883],[4.53456578,0.02998866,97.33671719],[4.53456532,0.02998692,97.33556503],[4.53456486,0.02998517,97.33441349],[4.5345644,0.02998343,97.3332637],[4.53456394,0.02998169,97.33211681],[4.53456348,0.02997995,97.33097394],[4.53456302,0.02997821,97.32983623],[4.53456257,0.02997646,97.32870482],[4.53456212,0.02997472,97.32758085],[4.53456167,0.02997297,97.32646545],[4.53456122,0.02997123,97.32535976],[4.53456077,0.02996948,97.32426491],[4.53456033,0.02996774,97.32318205],[4.5345599,0.02996599,97.3221123],[4.53455947,0.02996424,97.32105682],[4.53455904,0.02996249,97.32001673],[4.53455862,0.02996074,97.31899309],[4.5345582,0.02995898,97.3179852],[4.53455779,0.02995723,97.31699061],[4.53455738,0.02995547,97.31600678],[4.53455698,0.02995372,97.31503118],[4.53455657,0.02995196,97.31406127],[4.53455617,0.02995021,97.31309458],[4.53455577,0.02994845,97.31212991],[4.53455536,0.02994669,97.31116732],[4.53455496,0.02994494,97.31020694],[4.53455456,0.02994318,97.30924889],[4.53455416,0.02994142,97.30829328],[4.53455376,0.02993967,97.30734025],[4.53455336,0.02993791,97.30638988],[4.53455296,0.02993615,97.30544222],[4.53455257,0.0299344,97.30449734],[4.53455217,0.02993264,97.3035553],[4.53455177,0.02993088,97.30261614],[4.53455138,0.02992912,97.30167994],[4.53455098,0.02992737,97.30074673],[4.53455059,0.02992561,97.29981659],[4.5345502,0.02992385,97.29888958],[4.53454981,0.02992209,97.29796574],[4.53454942,0.02992034,97.29704513],[4.53454903,0.02991858,97.29612782],[4.53454864,0.02991682,97.29521386],[4.53454826,0.02991506,97.29430331],[4.53454787,0.0299133,97.29339622],[4.53454749,0.02991154,97.29249266],[4.5345471,0.02990978,97.29159268],[4.53454672,0.02990802,97.29069634],[4.53454634,0.02990626,97.2898037],[4.53454596,0.0299045,97.28891481],[4.53454559,0.02990274,97.28802974],[4.53454521,0.02990098,97.28714843],[4.53454483,0.02989922,97.28627048],[4.53454446,0.02989746,97.28539534],[4.53454409,0.0298957,97.28452249],[4.53454371,0.02989394,97.2836514],[4.53454334,0.02989217,97.28278154],[4.53454297,0.02989041,97.2819124],[4.5345426,0.02988865,97.28104343],[4.53454223,0.02988689,97.28017412],[4.53454186,0.02988513,97.27930394],[4.53454148,0.02988337,97.27843235],[4.53454111,0.02988161,97.27755883],[4.53454074,0.02987985,97.27668285],[4.53454036,0.02987809,97.27580388],[4.53453998,0.02987633,97.2749214],[4.53453961,0.02987457,97.27403488],[4.53453922,0.02987281,97.27314424],[4.53453884,0.02987106,97.27225113],[4.53453845,0.0298693,97.27135766],[4.53453807,0.02986754,97.2704659],[4.53453768,0.02986579,97.26957796],[4.5345373,0.02986403,97.26869592],[4.53453691,0.02986228,97.26782188],[4.53453653,0.02986052,97.26695793],[4.53453615,0.02985876,97.26610617],[4.53453577,0.02985701,97.26526868],[4.53453539,0.02985525,97.26444757],[4.53453502,0.02985349,97.26364492],[4.53453465,0.02985173,97.26286272],[4.53453429,0.02984997,97.26210001],[4.53453393,0.0298482,97.26135294],[4.53453358,0.02984644,97.26061751],[4.53453323,0.02984467,97.25988973],[4.53453289,0.02984291,97.2591656],[4.53453255,0.02984114,97.25844113],[4.53453221,0.02983937,97.2577123],[4.53453187,0.0298376,97.2569763],[4.53453153,0.02983583,97.25623488],[4.53453119,0.02983407,97.25549092],[4.53453085,0.0298323,97.25474731],[4.5345305,0.02983053,97.25400693],[4.53453016,0.02982877,97.25327267],[4.53452982,0.029827,97.25254742],[4.53452948,0.02982523,97.25183406],[4.53452914,0.02982346,97.25113547],[4.53452881,0.0298217,97.25045456],[4.53452847,0.02981993,97.24979344],[4.53452814,0.02981816,97.24915124],[4.53452781,0.02981639,97.24852628],[4.53452748,0.02981461,97.24791694],[4.53452716,0.02981284,97.24732156],[4.53452685,0.02981106,97.24673848],[4.53452654,0.02980928,97.24616607],[4.53452623,0.0298075,97.24560266],[4.53452593,0.02980572,97.24504662],[4.53452564,0.02980393,97.24449628],[4.53452534,0.02980215,97.24394999],[4.53452505,0.02980036,97.24340611],[4.53452477,0.02979857,97.24286298],[4.53452448,0.02979678,97.24231895],[4.53452419,0.02979499,97.24177236],[4.5345239,0.0297932,97.24122156],[4.53452361,0.02979141,97.24066532],[4.53452332,0.02978962,97.24010404],[4.53452303,0.02978784,97.23953856],[4.53452273,0.02978605,97.23896968],[4.53452243,0.02978426,97.2383982],[4.53452213,0.02978247,97.23782488],[4.53452183,0.02978068,97.23725049],[4.53452153,0.02977889,97.23667582],[4.53452122,0.02977711,97.23610162],[4.53452092,0.02977532,97.23552869],[4.53452061,0.02977353,97.23495778],[4.53452031,0.02977174,97.23438968],[4.53452,0.02976995,97.23382515],[4.5345197,0.02976816,97.23326498],[4.5345194,0.02976637,97.23270993],[4.5345191,0.02976458,97.23216078],[4.5345188,0.02976278,97.2316183],[4.53451851,0.02976099,97.23108327],[4.53451822,0.02975919,97.23055633],[4.53451793,0.02975739,97.2300351],[4.53451765,0.0297556,97.22951425],[4.53451736,0.0297538,97.22898834],[4.53451707,0.029752,97.22845191],[4.53451678,0.0297502,97.22789951],[4.53451648,0.02974841,97.22732571],[4.53451618,0.02974661,97.22672515],[4.53451586,0.02974482,97.22609249],[4.53451553,0.02974304,97.22542431],[4.53451519,0.02974125,97.22472481],[4.53451484,0.02973947,97.22400014],[4.53451449,0.02973769,97.22325641],[4.53451413,0.02973591,97.22249976],[4.53451377,0.02973413,97.22173632],[4.5345134,0.02973235,97.22097222],[4.53451304,0.02973057,97.2202136],[4.53451268,0.02972879,97.21946658],[4.53451232,0.02972701,97.21873549],[4.53451197,0.02972523,97.21801761],[4.53451161,0.02972345,97.21730856],[4.53451126,0.02972166,97.21660391],[4.53451091,0.02971988,97.21589927],[4.53451055,0.02971809,97.21519023],[4.53451019,0.02971631,97.21447239],[4.53450983,0.02971453,97.21374133],[4.53450946,0.02971275,97.21299265],[4.53450908,0.02971097,97.21222194],[4.53450869,0.0297092,97.2114263],[4.5345083,0.02970742,97.21060874],[4.53450789,0.02970565,97.20977372],[4.53450749,0.02970388,97.20892573],[4.53450708,0.02970211,97.20806926],[4.53450667,0.02970034,97.20720882],[4.53450626,0.02969857,97.2063489],[4.53450585,0.0296968,97.20549311],[4.53450544,0.02969503,97.20464173],[4.53450503,0.02969326,97.20379422],[4.53450463,0.02969149,97.20295003],[4.53450422,0.02968971,97.20210862],[4.53450382,0.02968794,97.20126945],[4.53450341,0.02968617,97.20043198],[4.53450301,0.02968439,97.19959567],[4.53450261,0.02968262,97.19875997],[4.5345022,0.02968084,97.19792435],[4.5345018,0.02967907,97.19708826],[4.53450139,0.02967729,97.19625116],[4.53450099,0.02967552,97.19541251],[4.53450058,0.02967374,97.19457176],[4.53450018,0.02967197,97.19372838],[4.53449977,0.02967019,97.19288182],[4.53449936,0.02966842,97.19203153],[4.53449895,0.02966664,97.19117698],[4.53449853,0.02966487,97.19031762],[4.53449812,0.02966309,97.18945292],[4.5344977,0.02966132,97.18858232],[4.53449729,0.02965954,97.18770528],[4.53449686,0.02965777,97.18682127],[4.53449644,0.029656,97.18592974],[4.53449601,0.02965423,97.18503014],[4.53449559,0.02965245,97.18412194],[4.53449515,0.02965068,97.18320459],[4.53449472,0.02964891,97.1822779],[4.53449428,0.02964714,97.18134278],[4.53449384,0.02964537,97.18040045],[4.5344934,0.02964361,97.1794521],[4.53449295,0.02964184,97.17849894],[4.53449251,0.02964008,97.17754216],[4.53449206,0.02963831,97.17658298],[4.53449161,0.02963654,97.17562258],[4.53449117,0.02963478,97.17466218],[4.53449072,0.02963301,97.17370298],[4.53449028,0.02963124,97.17274617],[4.53449024,0.02963111,97.17267337],[4.53459477,0.02960046,97.32070773],[4.53459481,0.0296006,97.32079431],[4.5345953,0.02960232,97.32193022],[4.53459578,0.02960405,97.3230659],[4.53459627,0.02960578,97.32420132],[4.53459675,0.0296075,97.32533646],[4.53459724,0.02960923,97.32647128],[4.53459772,0.02961095,97.32760578],[4.5345982,0.02961267,97.32873991],[4.53459869,0.0296144,97.32987366],[4.53459917,0.02961613,97.331007],[4.53459965,0.02961785,97.3321399],[4.53460014,0.02961958,97.33327234],[4.53460062,0.02962131,97.3344043],[4.53460111,0.02962304,97.33553574],[4.53460159,0.02962476,97.3366667],[4.53460207,0.02962649,97.33779719],[4.53460256,0.02962822,97.33892724],[4.53460304,0.02962995,97.34005686],[4.53460352,0.02963168,97.34118609],[4.53460401,0.02963341,97.34231493],[4.53460449,0.02963513,97.34344343],[4.53460497,0.02963686,97.34457159],[4.53460546,0.02963859,97.34569944],[4.53460594,0.02964032,97.34682701],[4.53460643,0.02964205,97.34795432],[4.53460691,0.02964378,97.34908138],[4.5346074,0.02964551,97.35020823],[4.53460788,0.02964724,97.35133488],[4.53460837,0.02964897,97.35246136],[4.53460885,0.0296507,97.3535877],[4.53460934,0.02965243,97.3547139],[4.53460983,0.02965416,97.35584],[4.53461032,0.02965589,97.35696602],[4.53461081,0.02965762,97.35809199],[4.5346113,0.02965934,97.35921791],[4.53461179,0.02966107,97.36034382],[4.53461228,0.0296628,97.36146975],[4.53461277,0.02966453,97.3625957],[4.53461326,0.02966626,97.36372171],[4.53461375,0.02966799,97.3648478],[4.53461425,0.02966972,97.36597399],[4.53461474,0.02967145,97.3671003],[4.53461524,0.02967318,97.36822676],[4.53461573,0.02967491,97.36935339],[4.53461623,0.02967664,97.37048021],[4.53461673,0.02967836,97.37160724],[4.53461723,0.02968009,97.37273451],[4.53461773,0.02968182,97.37386204],[4.53461823,0.02968355,97.37498985],[4.53461873,0.02968528,97.37611796],[4.53461923,0.02968701,97.3772464],[4.53461974,0.02968873,97.3783752],[4.53462024,0.02969046,97.37950436],[4.53462075,0.02969219,97.38063392],[4.53462125,0.02969392,97.3817639],[4.53462176,0.02969564,97.38289432],[4.53462227,0.02969737,97.3840252],[4.53462278,0.0296991,97.38515657],[4.53462329,0.02970083,97.38628844],[4.5346238,0.02970255,97.38742085],[4.53462431,0.02970428,97.38855381],[4.53462482,0.02970601,97.38968735],[4.53462534,0.02970773,97.39082148],[4.53462585,0.02970946,97.39195624],[4.53462636,0.02971119,97.39309164],[4.53462688,0.02971291,97.39422771],[4.53462739,0.02971464,97.39536446],[4.53462791,0.02971637,97.39650193],[4.53462843,0.02971809,97.39764013],[4.53462894,0.02971982,97.39877909],[4.53462946,0.02972155,97.39991883],[4.53462998,0.02972327,97.40105937],[4.5346305,0.029725,97.40220073],[4.53463101,0.02972673,97.40334295],[4.53463153,0.02972846,97.40448603],[4.53463205,0.02973018,97.40563],[4.53463257,0.02973191,97.40677489],[4.53463309,0.02973364,97.40792071],[4.53463361,0.02973536,97.40906749],[4.53463413,0.02973709,97.41021526],[4.53463465,0.02973882,97.41136403],[4.53463518,0.02974055,97.41251382],[4.5346357,0.02974227,97.41366467],[4.53463622,0.029744,97.41481659],[4.53463674,0.02974573,97.4159696],[4.53463726,0.02974746,97.41712372],[4.53463778,0.02974919,97.41827899],[4.5346383,0.02975091,97.41943543],[4.53463883,0.02975264,97.42059311],[4.53463935,0.02975437,97.42175211],[4.53463987,0.0297561,97.42291252],[4.53464039,0.02975783,97.42407441],[4.53464091,0.02975956,97.42523787],[4.53464143,0.02976129,97.42640296],[4.53464196,0.02976302,97.42756973],[4.53464248,0.02976474,97.42873824],[4.534643,0.02976647,97.42990854],[4.53464352,0.0297682,97.43108067],[4.53464404,0.02976993,97.4322547],[4.53464456,0.02977166,97.43343067],[4.53464509,0.02977339,97.43460863],[4.53464561,0.02977512,97.43578863],[4.53464613,0.02977686,97.43697073],[4.53464665,0.02977859,97.43815498],[4.53464717,0.02978032,97.43934143],[4.53464769,0.02978205,97.44053013],[4.53464821,0.02978378,97.44172113],[4.53464873,0.02978551,97.44291449],[4.53464925,0.02978724,97.44411025],[4.53464978,0.02978897,97.44530846],[4.5346503,0.0297907,97.44650919],[4.53465082,0.02979244,97.44771247],[4.53465134,0.02979417,97.44891837],[4.53465186,0.0297959,97.45012693],[4.53465238,0.02979763,97.4513382],[4.5346529,0.02979936,97.45255223],[4.53465342,0.02980109,97.45376908],[4.53465394,0.02980283,97.45498873],[4.53465446,0.02980456,97.4562111],[4.53465498,0.02980629,97.45743611],[4.53465549,0.02980802,97.45866368],[4.53465601,0.02980975,97.45989373],[4.53465653,0.02981149,97.46112618],[4.53465705,0.02981322,97.46236095],[4.53465757,0.02981495,97.46359796],[4.53465808,0.02981668,97.46483712],[4.5346586,0.02981841,97.46607837],[4.53465912,0.02982015,97.46732161],[4.53465963,0.02982188,97.46856677],[4.53466015,0.02982361,97.46981377],[4.53466066,0.02982534,97.47106253],[4.53466117,0.02982708,97.47231296],[4.53466169,0.02982881,97.47356499],[4.5346622,0.02983054,97.47481854],[4.53466271,0.02983228,97.47607352],[4.53466322,0.02983401,97.47732986],[4.53466373,0.02983574,97.47858748],[4.53466424,0.02983748,97.47984629],[4.53466475,0.02983921,97.48110622],[4.53466526,0.02984094,97.48236718],[4.53466577,0.02984268,97.4836291],[4.53466627,0.02984441,97.4848919],[4.53466678,0.02984615,97.48615549],[4.53466729,0.02984788,97.48741979],[4.53466779,0.02984961,97.48868474],[4.5346683,0.02985135,97.48995026],[4.5346688,0.02985308,97.49121632],[4.53466931,0.02985482,97.49248288],[4.53466981,0.02985655,97.4937499],[4.53467032,0.02985829,97.49501735],[4.53467082,0.02986002,97.49628518],[4.53467133,0.02986175,97.49755336],[4.53467183,0.02986349,97.49882185],[4.53467233,0.02986522,97.5000906],[4.53467284,0.02986696,97.50135959],[4.53467334,0.02986869,97.50262878],[4.53467385,0.02987043,97.50389811],[4.53467435,0.02987216,97.50516757],[4.53467485,0.0298739,97.50643711],[4.53467536,0.02987563,97.50770669],[4.53467586,0.02987736,97.50897627],[4.53467636,0.0298791,97.51024581],[4.53467687,0.02988083,97.51151528],[4.53467737,0.02988257,97.51278464],[4.53467787,0.0298843,97.51405386],[4.53467838,0.02988603,97.51532288],[4.53467888,0.02988777,97.51659169],[4.53467939,0.0298895,97.51786023],[4.53467989,0.02989123,97.51912847],[4.5346804,0.02989297,97.52039637],[4.5346809,0.0298947,97.5216639],[4.53468141,0.02989643,97.52293101],[4.53468191,0.02989816,97.52419767],[4.53468242,0.0298999,97.52546385],[4.53468293,0.02990163,97.52672949],[4.53468344,0.02990336,97.52799457],[4.53468395,0.02990509,97.52925905],[4.53468445,0.02990682,97.53052289],[4.53468496,0.02990856,97.53178606],[4.53468547,0.02991029,97.5330485],[4.53468598,0.02991202,97.5343102],[4.53468649,0.02991375,97.5355711],[4.534687,0.02991548,97.53683119],[4.53468751,0.02991721,97.53809051],[4.53468802,0.02991894,97.53934911],[4.53468852,0.02992068,97.54060707],[4.53468903,0.02992241,97.54186443],[4.53468954,0.02992414,97.54312126],[4.53469005,0.02992587,97.54437762],[4.53469056,0.0299276,97.54563355],[4.53469107,0.02992933,97.54688914],[4.53469158,0.02993106,97.54814442],[4.53469209,0.02993279,97.54939946],[4.53469259,0.02993452,97.55065433],[4.5346931,0.02993625,97.55190907],[4.53469361,0.02993798,97.55316375],[4.53469412,0.02993972,97.55441843],[4.53469463,0.02994145,97.55567316],[4.53469513,0.02994318,97.556928],[4.53469564,0.02994491,97.55818302],[4.53469615,0.02994664,97.55943827],[4.53469666,0.02994837,97.56069382],[4.53469716,0.0299501,97.56194971],[4.53469767,0.02995183,97.56320601],[4.53469818,0.02995356,97.56446278],[4.53469868,0.02995529,97.56572007],[4.53469919,0.02995702,97.56697795],[4.53469969,0.02995875,97.56823647],[4.5347002,0.02996049,97.56949569],[4.5347007,0.02996222,97.57075568],[4.53470121,0.02996395,97.57201648],[4.53470171,0.02996568,97.57327817],[4.53470221,0.02996741,97.57454079],[4.53470272,0.02996914,97.57580441],[4.53470322,0.02997087,97.57706908],[4.53470372,0.0299726,97.57833487],[4.53470422,0.02997434,97.57960183],[4.53470472,0.02997607,97.58087002],[4.53470522,0.0299778,97.58213951],[4.53470572,0.02997953,97.58341034],[4.53470622,0.02998126,97.58468257],[4.53470672,0.029983,97.58595628],[4.53470722,0.02998473,97.58723151],[4.53470772,0.02998646,97.58850832],[4.53470822,0.02998819,97.58978678],[4.53470872,0.02998992,97.59106694],[4.53470922,0.02999166,97.59234886],[4.53470972,0.02999339,97.59363259],[4.53471022,0.02999512,97.59491821],[4.53471071,0.02999685,97.59620576],[4.53471121,0.02999858,97.59749531],[4.53471171,0.03000031,97.59878691],[4.53471221,0.03000205,97.60008062],[4.53471271,0.03000378,97.60137651],[4.53471321,0.03000551,97.6026746],[4.53471371,0.03000724,97.60397484],[4.53471421,0.03000897,97.60527715],[4.53471471,0.0300107,97.60658145],[4.53471521,0.03001243,97.60788765],[4.53471571,0.03001416,97.60919567],[4.53471621,0.03001589,97.61050544],[4.53471671,0.03001762,97.61181686],[4.53471721,0.03001935,97.61312987],[4.53471771,0.03002108,97.61444437],[4.53471821,0.03002282,97.61576029],[4.53471872,0.03002455,97.61707754],[4.53471922,0.03002628,97.61839604],[4.53471972,0.03002801,97.61971572],[4.53472022,0.03002974,97.62103649],[4.53472072,0.03003147,97.62235826],[4.53472123,0.0300332,97.62368097],[4.53472173,0.03003493,97.62500452],[4.53472223,0.03003666,97.62632883],[4.53472273,0.03003839,97.62765383],[4.53472324,0.03004012,97.62897943],[4.53472374,0.03004185,97.63030555],[4.53472424,0.03004358,97.63163211],[4.53472475,0.03004531,97.63295903],[4.53472525,0.03004704,97.63428622],[4.53472575,0.03004877,97.63561361],[4.53472626,0.0300505,97.63694112],[4.53472676,0.03005223,97.63826865],[4.53472726,0.03005396,97.63959614],[4.53472777,0.03005569,97.64092349],[4.53472827,0.03005742,97.64225064],[4.53472877,0.03005915,97.64357749],[4.53472928,0.03006088,97.64490396],[4.53472978,0.03006261,97.64622998],[4.53473029,0.03006434,97.64755546],[4.53473079,0.03006607,97.64888033],[4.53473129,0.0300678,97.65020449],[4.5347318,0.03006953,97.65152787],[4.5347323,0.03007126,97.65285038],[4.5347328,0.03007299,97.65417196],[4.53473331,0.03007472,97.6554925],[4.53473381,0.03007645,97.65681194],[4.53473432,0.03007818,97.65813019],[4.53473482,0.03007991,97.65944716],[4.53473532,0.03008165,97.66076279],[4.53473583,0.03008338,97.66207697],[4.53473633,0.03008511,97.66338965],[4.53473683,0.03008684,97.66470072],[4.53473734,0.03008857,97.66601012],[4.53473784,0.0300903,97.66731776],[4.53473834,0.03009203,97.66862355],[4.53473885,0.03009376,97.66992742],[4.53473935,0.03009549,97.67122929],[4.53473985,0.03009722,97.67252913],[4.53474036,0.03009895,97.67382702],[4.53474086,0.03010068,97.67512298],[4.53474136,0.03010241,97.67641709],[4.53474187,0.03010414,97.6777094],[4.53474237,0.03010587,97.67899997],[4.53474287,0.03010761,97.68028887],[4.53474338,0.03010934,97.68157614],[4.53474388,0.03011107,97.68286185],[4.53474438,0.0301128,97.68414607],[4.53474489,0.03011453,97.68542884],[4.53474539,0.03011626,97.68671023],[4.5347459,0.03011799,97.68799031],[4.5347464,0.03011972,97.68926912],[4.53474691,0.03012145,97.69054672],[4.53474742,0.03012318,97.69182319],[4.53474792,0.03012491,97.69309858],[4.53474843,0.03012664,97.69437294],[4.53474894,0.03012837,97.69564634],[4.53474944,0.0301301,97.69691883],[4.53474995,0.03013183,97.69819048],[4.53475046,0.03013356,97.69946135],[4.53475097,0.03013529,97.70073149],[4.53475148,0.03013702,97.70200097],[4.53475199,0.03013875,97.70326985],[4.5347525,0.03014048,97.70453818],[4.534753,0.03014221,97.70580603],[4.53475351,0.03014393,97.70707345],[4.53475402,0.03014566,97.7083405],[4.53475453,0.03014739,97.70960725],[4.53475505,0.03014912,97.71087375],[4.53475556,0.03015085,97.71214007],[4.53475607,0.03015258,97.71340626],[4.53475658,0.03015431,97.71467239],[4.53475709,0.03015604,97.71593851],[4.5347576,0.03015777,97.71720468],[4.53475811,0.0301595,97.71847096],[4.53475862,0.03016122,97.71973742],[4.53475913,0.03016295,97.72100412],[4.53475965,0.03016468,97.72227111],[4.53476016,0.03016641,97.72353845],[4.53476067,0.03016814,97.7248062],[4.53476118,0.03016987,97.72607443],[4.53476169,0.0301716,97.72734319],[4.53476221,0.03017333,97.72861255],[4.53476272,0.03017506,97.72988256],[4.53476323,0.03017678,97.73115328],[4.53476374,0.03017851,97.73242478],[4.53476426,0.03018024,97.73369711],[4.53476477,0.03018197,97.73497034],[4.53476528,0.0301837,97.73624453],[4.53476579,0.03018543,97.73751973],[4.5347663,0.03018716,97.738796],[4.53476682,0.03018889,97.74007341],[4.53476733,0.03019062,97.74135202],[4.53476784,0.03019234,97.74263189],[4.53476835,0.03019407,97.74391308],[4.53476887,0.0301958,97.74519564],[4.53476938,0.03019753,97.74647962],[4.53476989,0.03019926,97.74776499],[4.53477041,0.03020099,97.74905169],[4.53477092,0.03020272,97.75033966],[4.53477143,0.03020445,97.75162886],[4.53477194,0.03020617,97.75291922],[4.53477246,0.0302079,97.75421069],[4.53477297,0.03020963,97.75550321],[4.53477349,0.03021136,97.75679674],[4.534774,0.03021309,97.75809121],[4.53477451,0.03021482,97.75938658],[4.53477503,0.03021655,97.76068278],[4.53477554,0.03021828,97.76197976],[4.53477606,0.03022,97.76327747],[4.53477657,0.03022173,97.76457585],[4.53477709,0.03022346,97.76587485],[4.5347776,0.03022519,97.7671744],[4.53477812,0.03022692,97.76847447],[4.53477863,0.03022865,97.76977499],[4.53477915,0.03023037,97.7710759],[4.53477966,0.0302321,97.77237716],[4.53478018,0.03023383,97.7736787],[4.53478069,0.03023556,97.77498048],[4.53478121,0.03023729,97.77628243],[4.53478173,0.03023902,97.7775845],[4.53478224,0.03024074,97.77888664],[4.53478276,0.03024247,97.78018879],[4.53478328,0.0302442,97.78149089],[4.53478379,0.03024593,97.7827929],[4.53478431,0.03024766,97.78409475],[4.53478483,0.03024938,97.78539639],[4.53478534,0.03025111,97.78669776],[4.53478586,0.03025284,97.78799882],[4.53478638,0.03025457,97.78929949],[4.53478689,0.0302563,97.79059974],[4.53478741,0.03025802,97.79189952],[4.53478793,0.03025975,97.79319885],[4.53478845,0.03026148,97.7944977],[4.53478897,0.03026321,97.79579608],[4.53478948,0.03026494,97.79709399],[4.53479,0.03026666,97.79839141],[4.53479052,0.03026839,97.79968836],[4.53479104,0.03027012,97.80098483],[4.53479155,0.03027185,97.8022808],[4.53479207,0.03027357,97.80357629],[4.53479259,0.0302753,97.80487128],[4.53479311,0.03027703,97.80616577],[4.53479362,0.03027876,97.80745976],[4.53479414,0.03028049,97.80875325],[4.53479465,0.03028221,97.81004623],[4.53479517,0.03028394,97.8113387],[4.53479569,0.03028567,97.81263065],[4.5347962,0.0302874,97.81392209],[4.53479672,0.03028913,97.815213],[4.53479723,0.03029086,97.8165034],[4.53479774,0.03029259,97.81779326],[4.53479826,0.03029432,97.81908259],[4.53479877,0.03029605,97.82037139],[4.53479928,0.03029777,97.82165966],[4.53479979,0.0302995,97.82294738],[4.5348003,0.03030123,97.82423455],[4.53480081,0.03030296,97.82552118],[4.53480132,0.03030469,97.82680726],[4.53480183,0.03030642,97.82809279],[4.53480234,0.03030816,97.82937775],[4.53480285,0.03030989,97.83066216],[4.53480336,0.03031162,97.831946],[4.53480386,0.03031335,97.83322927],[4.53480437,0.03031508,97.83451198],[4.53480487,0.03031681,97.8357941],[4.53480538,0.03031854,97.83707565],[4.53480588,0.03032027,97.83835662],[4.53480638,0.03032201,97.83963701],[4.53480689,0.03032374,97.8409168],[4.53480739,0.03032547,97.84219601],[4.53480789,0.0303272,97.84347462],[4.53480839,0.03032894,97.84475263],[4.53480889,0.03033067,97.84603004],[4.53480939,0.0303324,97.84730685],[4.53480989,0.03033414,97.84858305],[4.53481039,0.03033587,97.84985863],[4.53481089,0.0303376,97.8511336],[4.53481139,0.03033934,97.85240796],[4.53481188,0.03034107,97.85368169],[4.53481238,0.0303428,97.85495479],[4.53481288,0.03034454,97.85622727],[4.53481337,0.03034627,97.85749911],[4.53481387,0.03034801,97.85877032],[4.53481437,0.03034974,97.86004089],[4.53481486,0.03035148,97.86131081],[4.53481536,0.03035321,97.8625801],[4.53481586,0.03035494,97.86384873],[4.53481635,0.03035668,97.86511671],[4.53481685,0.03035841,97.86638403],[4.53481734,0.03036015,97.86765069],[4.53481784,0.03036188,97.86891669],[4.53481833,0.03036362,97.87018202],[4.53481883,0.03036535,97.87144668],[4.53481932,0.03036709,97.87271067],[4.53481982,0.03036882,97.87397399],[4.53482031,0.03037055,97.87523662],[4.53482081,0.03037229,97.87649856],[4.5348213,0.03037402,97.87775982],[4.5348218,0.03037576,97.87902039],[4.53482229,0.03037749,97.88028027],[4.53482279,0.03037923,97.88153945],[4.53482328,0.03038096,97.88279792],[4.53482378,0.0303827,97.88405569],[4.53482428,0.03038443,97.88531275],[4.53482477,0.03038616,97.8865691],[4.53482527,0.0303879,97.88782474],[4.53482576,0.03038963,97.88907965],[4.53482626,0.03039137,97.89033385],[4.53482676,0.0303931,97.89158731],[4.53469285,0.03043239,97.65343948]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":1,"type":"shoulder","predecessorId":0},{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":2,"type":"none","predecessorId":0}],"roadId":"1004700","singleSide":false,"rightLanes":[{"successorId":-3,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":-4,"type":"none","predecessorId":0},{"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-3,"type":"shoulder","predecessorId":0},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"entry","predecessorId":0},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":0}]}},{"geometry":{"coordinates":[[[4.53449024,0.02963111,97.17267337],[4.5344898,0.02962934,97.17172505],[4.53448936,0.02962758,97.1707865],[4.53448892,0.02962581,97.16985252],[4.53448849,0.02962404,97.16891791],[4.53448805,0.02962228,97.16797747],[4.5344876,0.02962051,97.167026],[4.53448716,0.02961875,97.1660583],[4.5344867,0.02961699,97.16506916],[4.53448624,0.02961523,97.16405359],[4.53448576,0.02961348,97.1630113],[4.53448528,0.02961173,97.16194674],[4.5344848,0.02960998,97.16086454],[4.53448431,0.02960823,97.15976934],[4.53448382,0.02960649,97.1586658],[4.53448332,0.02960474,97.15755854],[4.53448283,0.02960299,97.15645221],[4.53448234,0.02960125,97.15535059],[4.53448184,0.0295995,97.15425398],[4.53448136,0.02959776,97.15316185],[4.53448087,0.02959601,97.15207364],[4.53448038,0.02959427,97.15098879],[4.53447989,0.02959252,97.14990676],[4.53447941,0.02959078,97.14882701],[4.53447892,0.02958903,97.14774897],[4.53447844,0.02958729,97.1466721],[4.53447796,0.02958554,97.14559585],[4.53447747,0.0295838,97.14451966],[4.53447699,0.02958206,97.14344299],[4.5344765,0.02958031,97.14236539],[4.53447601,0.02957857,97.14128674],[4.53447553,0.02957683,97.14020707],[4.53447504,0.02957509,97.13912635],[4.53447455,0.02957335,97.13804459],[4.53447407,0.02957161,97.13696179],[4.53447358,0.02956987,97.13587795],[4.53447309,0.02956813,97.13479306],[4.5344726,0.02956639,97.13370712],[4.53447211,0.02956465,97.13262013],[4.53447162,0.02956292,97.13153209],[4.53447113,0.02956118,97.13044299],[4.53447063,0.02955944,97.12935283],[4.53447014,0.02955771,97.12826162],[4.53446965,0.02955597,97.12716934],[4.53446916,0.02955424,97.126076],[4.53446866,0.02955251,97.1249816],[4.53446817,0.02955077,97.12388613],[4.53446767,0.02954904,97.12278958],[4.53446717,0.02954731,97.12169197],[4.53446668,0.02954558,97.12059329],[4.53446618,0.02954385,97.11949353],[4.53446568,0.02954212,97.11839269],[4.53446518,0.02954039,97.11729079],[4.53446468,0.02953866,97.11618798],[4.53446418,0.02953693,97.1150846],[4.53446368,0.0295352,97.11398099],[4.53446317,0.02953347,97.1128775],[4.53446267,0.02953175,97.11177446],[4.53446217,0.02953002,97.11067221],[4.53446167,0.02952829,97.1095711],[4.53446117,0.02952657,97.10847146],[4.53446066,0.02952484,97.10737364],[4.53446016,0.02952312,97.10627798],[4.53445966,0.02952139,97.10518481],[4.53445916,0.02951967,97.10409448],[4.53445866,0.02951794,97.10300732],[4.53445816,0.02951622,97.10192367],[4.53445766,0.02951449,97.10084365],[4.53445716,0.02951277,97.09976716],[4.53445666,0.02951105,97.09869409],[4.53445616,0.02950932,97.09762435],[4.53445567,0.0295076,97.09655783],[4.53445517,0.02950588,97.09549443],[4.53445467,0.02950416,97.09443403],[4.53445418,0.02950243,97.09337655],[4.53445368,0.02950071,97.09232187],[4.53445319,0.02949899,97.09126989],[4.53445269,0.02949727,97.09022051],[4.5344522,0.02949555,97.08917363],[4.5344517,0.02949383,97.08812913],[4.53445121,0.02949211,97.08708693],[4.53445071,0.02949039,97.0860469],[4.53445022,0.02948867,97.08500895],[4.53444972,0.02948695,97.08397298],[4.53444923,0.02948523,97.08293889],[4.53444873,0.02948351,97.08190656],[4.53444824,0.02948179,97.08087589],[4.53444774,0.02948008,97.07984679],[4.53444725,0.02947836,97.07881915],[4.53444675,0.02947664,97.07779286],[4.53444625,0.02947492,97.07676782],[4.53444576,0.0294732,97.07574393],[4.53444526,0.02947149,97.07472109],[4.53444476,0.02946977,97.07369918],[4.53444426,0.02946805,97.07267812],[4.53444376,0.02946633,97.07165792],[4.53444326,0.02946461,97.07063873],[4.53444276,0.02946289,97.06962069],[4.53444226,0.02946117,97.06860393],[4.53444176,0.02945945,97.06758857],[4.53444126,0.02945773,97.06657465],[4.53444075,0.02945601,97.06556224],[4.53444025,0.02945429,97.06455139],[4.53443975,0.02945257,97.06354216],[4.53443924,0.02945085,97.06253461],[4.53443874,0.02944913,97.0615288],[4.53443824,0.02944741,97.06052478],[4.53443773,0.02944568,97.05952261],[4.53443723,0.02944396,97.05852235],[4.53443672,0.02944224,97.05752406],[4.53443622,0.02944052,97.05652779],[4.53443572,0.02943879,97.05553361],[4.53443521,0.02943707,97.05454156],[4.53443471,0.02943535,97.05355171],[4.5344342,0.02943362,97.05256411],[4.5344337,0.0294319,97.05157882],[4.53443319,0.02943017,97.0505959],[4.53443269,0.02942845,97.04961541],[4.53443218,0.02942672,97.0486374],[4.53443168,0.029425,97.04766194],[4.53443118,0.02942327,97.04668907],[4.53443067,0.02942154,97.04571885],[4.53443017,0.02941982,97.04475135],[4.53442966,0.02941809,97.04378662],[4.53442916,0.02941636,97.04282472],[4.53442866,0.02941463,97.04186569],[4.53442815,0.02941291,97.04090962],[4.53442765,0.02941118,97.03995653],[4.53442715,0.02940945,97.03900651],[4.53442665,0.02940772,97.03805959],[4.53442615,0.02940599,97.03711585],[4.53442565,0.02940426,97.03617529],[4.53442515,0.02940252,97.03523789],[4.53442465,0.02940079,97.03430365],[4.53442415,0.02939906,97.03337253],[4.53442365,0.02939733,97.03244453],[4.53442315,0.02939559,97.03151961],[4.53442265,0.02939386,97.03059776],[4.53442215,0.02939213,97.02967896],[4.53442165,0.02939039,97.02876319],[4.53442116,0.02938866,97.02785043],[4.53442066,0.02938692,97.02694066],[4.53442016,0.02938519,97.02603386],[4.53441967,0.02938345,97.02513002],[4.53441917,0.02938171,97.0242291],[4.53441868,0.02937998,97.0233311],[4.53441818,0.02937824,97.02243601],[4.53441769,0.0293765,97.02154383],[4.53441719,0.02937476,97.02065454],[4.5344167,0.02937302,97.01976814],[4.53441621,0.02937128,97.01888462],[4.53441571,0.02936954,97.01800396],[4.53441522,0.0293678,97.01712616],[4.53441473,0.02936606,97.01625121],[4.53441424,0.02936432,97.01537909],[4.53441375,0.02936258,97.01450981],[4.53441326,0.02936084,97.01364334],[4.53441277,0.02935909,97.01277968],[4.53441228,0.02935735,97.01191882],[4.53441179,0.02935561,97.01106075],[4.5344113,0.02935386,97.01020546],[4.53441081,0.02935212,97.00935271],[4.53441033,0.02935037,97.00850139],[4.53440984,0.02934863,97.00765015],[4.53440935,0.02934688,97.00679766],[4.53440886,0.02934514,97.00594258],[4.53440837,0.02934339,97.00508356],[4.53440787,0.02934165,97.00421928],[4.53440738,0.0293399,97.00334839],[4.53440688,0.02933816,97.00246956],[4.53440637,0.02933642,97.00158146],[4.53440587,0.02933467,97.00068275],[4.53440536,0.02933293,96.9997721],[4.53440484,0.02933119,96.99884879],[4.53440432,0.02932945,96.9979145],[4.5344038,0.02932771,96.99697154],[4.53440327,0.02932597,96.99602218],[4.53440275,0.02932424,96.99506873],[4.53440222,0.0293225,96.99411348],[4.53440169,0.02932076,96.9931587],[4.53440116,0.02931902,96.99220668],[4.53440064,0.02931728,96.99125972],[4.53440011,0.02931554,96.99032008],[4.53439959,0.0293138,96.98939005],[4.53439908,0.02931205,96.98847181],[4.53439857,0.02931031,96.98756554],[4.53439806,0.02930856,96.98666948],[4.53439755,0.02930681,96.98578175],[4.53439704,0.02930506,96.98490051],[4.53439654,0.02930331,96.9840239],[4.53439604,0.02930156,96.98315007],[4.53439554,0.02929981,96.98227715],[4.53439503,0.02929806,96.98140331],[4.53439453,0.02929631,96.98052669],[4.53439402,0.02929456,96.97964544],[4.53439352,0.02929281,96.97875772],[4.534393,0.02929106,96.97786168],[4.53439249,0.02928931,96.97695562],[4.53439197,0.02928757,96.97604123],[4.53439146,0.02928582,96.97512351],[4.53439094,0.02928407,96.9742076],[4.53439042,0.02928232,96.97329865],[4.53438991,0.02928057,96.97240179],[4.53438941,0.02927882,96.97152214],[4.53438891,0.02927707,96.97066484],[4.53438842,0.02927531,96.96983501],[4.53438795,0.02927355,96.96903743],[4.53438748,0.02927178,96.96826919],[4.53438702,0.02927002,96.96751976],[4.53438656,0.02926825,96.96677829],[4.5343861,0.02926649,96.96603575],[4.53438564,0.02926472,96.9652904],[4.53438518,0.02926296,96.96454231],[4.53438472,0.02926119,96.96379155],[4.53438426,0.02925943,96.9630382],[4.5343838,0.02925766,96.96228232],[4.53438334,0.0292559,96.96152402],[4.53438287,0.02925414,96.9607634],[4.53438241,0.02925237,96.96000055],[4.53438194,0.02925061,96.95923558],[4.53438148,0.02924885,96.95846857],[4.53438101,0.02924709,96.95769962],[4.53438055,0.02924532,96.95692884],[4.53438008,0.02924356,96.95615632],[4.53437961,0.0292418,96.95538216],[4.53437914,0.02924004,96.95460646],[4.53437868,0.02923828,96.95382931],[4.53437821,0.02923652,96.95305081],[4.53437774,0.02923475,96.95227105],[4.53437727,0.02923299,96.95149014],[4.5343768,0.02923123,96.95070818],[4.53437633,0.02922947,96.94992525],[4.53437586,0.02922771,96.94914146],[4.53437539,0.02922595,96.94835689],[4.53437492,0.02922419,96.94757166],[4.53437445,0.02922243,96.94678579],[4.53437398,0.02922067,96.94599927],[4.53437351,0.02921891,96.94521209],[4.53437304,0.02921715,96.94442423],[4.53437257,0.0292154,96.94363568],[4.5343721,0.02921364,96.94284641],[4.53437163,0.02921188,96.94205642],[4.53437115,0.02921012,96.94126568],[4.53437068,0.02920836,96.94047419],[4.53437021,0.0292066,96.93968192],[4.53436974,0.02920484,96.93888886],[4.53436927,0.02920308,96.93809499],[4.5343688,0.02920133,96.93730031],[4.53436832,0.02919957,96.93650478],[4.53436785,0.02919781,96.9357084],[4.53436738,0.02919605,96.93491115],[4.5343669,0.02919429,96.93411302],[4.53436643,0.02919254,96.93331398],[4.53436596,0.02919078,96.93251403],[4.53436548,0.02918902,96.93171315],[4.53436501,0.02918727,96.93091132],[4.53436453,0.02918551,96.93010852],[4.53436406,0.02918375,96.92930475],[4.53436359,0.029182,96.92849998],[4.53436311,0.02918024,96.9276942],[4.53436263,0.02917848,96.92688739],[4.53436216,0.02917673,96.92607955],[4.53436168,0.02917497,96.92527074],[4.53436121,0.02917321,96.92446113],[4.53436073,0.02917146,96.92365087],[4.53436025,0.0291697,96.92284013],[4.53435978,0.02916795,96.92202908],[4.5343593,0.02916619,96.92121787],[4.53435882,0.02916444,96.92040666],[4.53435835,0.02916268,96.91959563],[4.53435787,0.02916093,96.91878492],[4.5343574,0.02915917,96.9179747],[4.53435692,0.02915742,96.91716514],[4.53435645,0.02915566,96.9163564],[4.53435597,0.02915391,96.91554865],[4.5343555,0.02915215,96.91474208],[4.53435502,0.0291504,96.91393685],[4.53435455,0.02914864,96.91313314],[4.53435408,0.02914688,96.91233112],[4.5343536,0.02914513,96.91153097],[4.53435313,0.02914337,96.91073285],[4.53435266,0.02914162,96.90993696],[4.53435219,0.02913986,96.90914345],[4.53435173,0.0291381,96.90835245],[4.53435126,0.02913635,96.90756389],[4.53435079,0.02913459,96.90677765],[4.53435032,0.02913283,96.9059936],[4.53434986,0.02913108,96.90521163],[4.5343494,0.02912932,96.90443162],[4.53434893,0.02912756,96.90365344],[4.53434847,0.02912581,96.90287698],[4.53434801,0.02912405,96.9021021],[4.53434754,0.02912229,96.9013287],[4.53434708,0.02912054,96.90055666],[4.53434662,0.02911878,96.89978585],[4.53434616,0.02911702,96.89901615],[4.5343457,0.02911526,96.89824744],[4.53434524,0.02911351,96.89747961],[4.53434478,0.02911175,96.89671253],[4.53434432,0.02910999,96.89594608],[4.53434386,0.02910823,96.89518013],[4.5343434,0.02910648,96.89441451],[4.53434295,0.02910472,96.89364906],[4.53434249,0.02910296,96.89288363],[4.53434203,0.0291012,96.89211807],[4.53434157,0.02909945,96.8913522],[4.53434111,0.02909769,96.89058588],[4.53434065,0.02909593,96.88981894],[4.53434019,0.02909418,96.88905123],[4.53433973,0.02909242,96.8882826],[4.53433927,0.02909066,96.88751289],[4.53433881,0.02908891,96.88674197],[4.53433835,0.02908715,96.88596983],[4.53433789,0.0290854,96.88519654],[4.53433743,0.02908364,96.88442216],[4.53433697,0.02908188,96.88364676],[4.53433651,0.02908013,96.88287042],[4.53433604,0.02907837,96.8820932],[4.53433558,0.02907662,96.88131518],[4.53433512,0.02907486,96.88053642],[4.53433466,0.02907311,96.87975699],[4.53433419,0.02907135,96.87897697],[4.53433373,0.0290696,96.87819642],[4.53433327,0.02906785,96.87741542],[4.5343328,0.02906609,96.87663403],[4.53433234,0.02906434,96.87585232],[4.53433188,0.02906258,96.87507036],[4.53433141,0.02906083,96.87428823],[4.53433095,0.02905908,96.87350599],[4.53433049,0.02905732,96.8727237],[4.53433002,0.02905557,96.87194145],[4.53432956,0.02905381,96.8711593],[4.5343291,0.02905206,96.87037731],[4.53432863,0.02905031,96.86959557],[4.53432817,0.02904855,96.86881412],[4.53432771,0.0290468,96.86803306],[4.53432725,0.02904507,96.86725243],[4.53432679,0.02904332,96.86647232],[4.53432633,0.02904156,96.86569279],[4.53432586,0.02903981,96.86491391],[4.5343254,0.02903806,96.86413575],[4.53432494,0.0290363,96.86335838],[4.53432448,0.02903455,96.86258186],[4.53432402,0.0290328,96.86180626],[4.53432356,0.02903104,96.86103166],[4.5343231,0.02902929,96.86025812],[4.53432264,0.02902753,96.8594857],[4.53432218,0.02902578,96.85871453],[4.53432172,0.02902402,96.85794569],[4.53432127,0.02902227,96.85718123],[4.53432081,0.02902051,96.85642325],[4.53432036,0.02901876,96.85567384],[4.53431991,0.029017,96.85493511],[4.53431947,0.02901524,96.85420914],[4.53431903,0.02901348,96.85349802],[4.5343186,0.02901172,96.85280325],[4.53431817,0.02900996,96.85212397],[4.53431775,0.0290082,96.85145873],[4.53431734,0.02900643,96.85080611],[4.53431692,0.02900466,96.85016467],[4.53431651,0.0290029,96.84953297],[4.53431611,0.02900113,96.84890957],[4.5343157,0.02899936,96.84829305],[4.5343153,0.02899759,96.84768197],[4.5343149,0.02899582,96.8470749],[4.5343145,0.02899405,96.84647042],[4.5343141,0.02899228,96.84586708],[4.53431371,0.02899051,96.84526347],[4.53431331,0.02898875,96.84465816],[4.53431291,0.02898698,96.84404972],[4.5343125,0.02898521,96.84343673],[4.5343121,0.02898344,96.84281775],[4.5343118,0.02898212,96.8423516],[4.53441012,0.02895762,96.98299205],[4.53441039,0.02895893,96.98137169],[4.53441075,0.0289607,96.97977178],[4.53441111,0.02896246,96.98041896],[4.53441147,0.02896422,96.9810629],[4.53441182,0.02896599,96.98170398],[4.53441218,0.02896775,96.98234262],[4.53441254,0.02896952,96.9829792],[4.53441289,0.02897128,96.98361412],[4.53441325,0.02897305,96.98424779],[4.53441373,0.02897478,96.98488058],[4.53441421,0.02897652,96.98551292],[4.53441469,0.02897825,96.98614518],[4.53441518,0.02897998,96.98677778],[4.53441566,0.02898172,96.98741111],[4.53441615,0.02898345,96.98804557],[4.53441663,0.02898518,96.98868155],[4.53441712,0.02898691,96.98931946],[4.53441761,0.02898864,96.9899597],[4.5344181,0.02899038,96.99060267],[4.53441859,0.02899211,96.99124877],[4.53441908,0.02899384,96.9918984],[4.53441957,0.02899557,96.99255195],[4.53442006,0.0289973,96.99320984],[4.53442055,0.02899903,96.99387247],[4.53442104,0.02900077,96.99454022],[4.53442153,0.0290025,96.99521352],[4.53442202,0.02900423,96.99589276],[4.53442251,0.02900596,96.99657834],[4.534423,0.02900769,96.99727067],[4.5344235,0.02900942,96.99797016],[4.53442399,0.02901115,96.99867717],[4.53442448,0.02901288,96.99939157],[4.53442497,0.02901461,97.00011267],[4.53442546,0.02901635,97.00083978],[4.53442595,0.02901808,97.00157217],[4.53442644,0.02901981,97.00230917],[4.53442692,0.02902152,97.00305005],[4.53442741,0.02902325,97.00379411],[4.53442789,0.02902498,97.00454065],[4.53442838,0.02902671,97.00528897],[4.53442887,0.02902845,97.00603834],[4.53442935,0.02903018,97.00678807],[4.53442984,0.02903191,97.00753746],[4.53443033,0.02903364,97.00828578],[4.53443081,0.02903538,97.00903233],[4.5344313,0.02903711,97.0097764],[4.53443178,0.02903884,97.01051748],[4.53443227,0.02904057,97.01125584],[4.53443276,0.0290423,97.01199195],[4.53443325,0.02904404,97.01272628],[4.53443374,0.02904577,97.0134593],[4.53443423,0.0290475,97.01419147],[4.53443472,0.02904923,97.01492328],[4.53443521,0.02905096,97.0156552],[4.5344357,0.02905269,97.01638769],[4.53443619,0.02905442,97.01712122],[4.53443668,0.02905615,97.01785628],[4.53443717,0.02905788,97.01859333],[4.53443765,0.02905961,97.01933285],[4.53443813,0.02906135,97.02007532],[4.53443861,0.02906308,97.02082119],[4.53443909,0.02906481,97.02157096],[4.53443956,0.02906655,97.0223251],[4.53444003,0.02906828,97.02308408],[4.5344405,0.02907002,97.02384838],[4.53444096,0.02907176,97.02461847],[4.53444142,0.02907349,97.02539484],[4.53444188,0.02907523,97.0261778],[4.53444234,0.02907697,97.02696702],[4.53444279,0.02907871,97.02776203],[4.53444325,0.02908045,97.02856234],[4.5344437,0.02908219,97.02936746],[4.53444415,0.02908393,97.03017692],[4.5344446,0.02908567,97.03099022],[4.53444505,0.02908741,97.03180686],[4.5344455,0.02908915,97.03262632],[4.53444595,0.02909089,97.03344808],[4.5344464,0.02909263,97.0342716],[4.53444684,0.02909437,97.03509637],[4.53444729,0.02909611,97.03592184],[4.53444774,0.02909785,97.03674751],[4.53444818,0.02909959,97.03757283],[4.53444863,0.02910133,97.03839729],[4.53444908,0.02910307,97.03922034],[4.53444953,0.02910481,97.04004147],[4.53444998,0.02910655,97.04086013],[4.53445043,0.02910829,97.04167597],[4.53445088,0.02911003,97.04248924],[4.53445133,0.02911177,97.04330038],[4.53445178,0.02911351,97.0441098],[4.53445223,0.02911525,97.04491794],[4.53445268,0.02911698,97.04572521],[4.53445313,0.02911872,97.04653206],[4.53445358,0.02912046,97.0473389],[4.53445403,0.0291222,97.04814616],[4.53445448,0.02912394,97.04895427],[4.53445493,0.02912568,97.04976366],[4.53445537,0.02912742,97.05057476],[4.53445582,0.02912916,97.05138799],[4.53445627,0.0291309,97.0522038],[4.53445672,0.02913263,97.0530226],[4.53445717,0.02913437,97.05384483],[4.53445762,0.02913611,97.05467091],[4.53445806,0.02913785,97.05550129],[4.53445851,0.02913959,97.05633627],[4.53445895,0.02914133,97.05717571],[4.5344594,0.02914307,97.05801933],[4.53445985,0.02914481,97.05886685],[4.53446029,0.02914655,97.05971802],[4.53446074,0.02914829,97.06057256],[4.53446119,0.02915003,97.06143019],[4.53446163,0.02915177,97.06229065],[4.53446208,0.02915351,97.06315366],[4.53446253,0.02915524,97.06401895],[4.53446298,0.02915698,97.06488626],[4.53446343,0.02915872,97.06575529],[4.53446388,0.02916046,97.0666258],[4.53446438,0.02916218,97.06749749],[4.53446492,0.02916389,97.06837009],[4.53446546,0.02916561,97.06924334],[4.53446601,0.02916732,97.07011696],[4.53446655,0.02916903,97.07099067],[4.5344671,0.02917074,97.0718642],[4.53446764,0.02917245,97.07273728],[4.53446818,0.02917417,97.0736098],[4.53446872,0.02917588,97.07448177],[4.53446927,0.02917759,97.07535322],[4.53446981,0.0291793,97.0762242],[4.53447035,0.02918101,97.07709473],[4.53447089,0.02918273,97.07796485],[4.53447143,0.02918444,97.07883459],[4.53447198,0.02918615,97.07970398],[4.53447252,0.02918786,97.08057306],[4.53447306,0.02918957,97.08144185],[4.5344736,0.02919128,97.08231039],[4.53447414,0.029193,97.08317872],[4.53447468,0.02919471,97.08404686],[4.53447522,0.02919642,97.08491486],[4.53447575,0.02919813,97.08578273],[4.53447629,0.02919984,97.08665052],[4.53447683,0.02920156,97.08751826],[4.53447737,0.02920327,97.08838598],[4.5344779,0.02920498,97.08925372],[4.53447844,0.02920669,97.0901215],[4.53447898,0.0292084,97.09098936],[4.53447951,0.02921012,97.09185734],[4.53448005,0.02921183,97.09272546],[4.53448059,0.02921354,97.09359376],[4.53448112,0.02921525,97.09446228],[4.53448166,0.02921696,97.09533104],[4.53448219,0.02921868,97.09620009],[4.53448273,0.02922039,97.09706944],[4.53448326,0.0292221,97.09793915],[4.5344838,0.02922381,97.09880923],[4.53448434,0.02922552,97.09967973],[4.53448488,0.02922723,97.10055067],[4.53448542,0.02922894,97.10142209],[4.53448596,0.02923065,97.10229403],[4.5344865,0.02923236,97.10316652],[4.53448704,0.02923407,97.10403961],[4.53448758,0.02923578,97.10491334],[4.53448811,0.02923749,97.10578773],[4.53448864,0.0292392,97.10666278],[4.53448916,0.02924092,97.10753852],[4.53448967,0.02924263,97.10841495],[4.53449018,0.02924435,97.10929209],[4.53449068,0.02924607,97.11016996],[4.53449118,0.02924779,97.11104857],[4.53449167,0.02924952,97.11192793],[4.53449216,0.02925124,97.11280805],[4.53449264,0.02925296,97.11368896],[4.53449313,0.02925468,97.11457066],[4.53449361,0.02925641,97.11545317],[4.53449409,0.02925814,97.1163365],[4.53449457,0.02925986,97.11722067],[4.53449505,0.02926159,97.11810569],[4.53449553,0.02926332,97.11899157],[4.53449602,0.02926504,97.11987834],[4.5344965,0.02926677,97.12076599],[4.53449699,0.02926849,97.12165456],[4.53449748,0.02927022,97.12254405],[4.53449797,0.02927194,97.12343447],[4.53449846,0.02927367,97.12432584],[4.53449896,0.02927539,97.12521818],[4.53449945,0.02927712,97.12611149],[4.53449995,0.02927884,97.1270058],[4.53450044,0.02928057,97.12790112],[4.53450094,0.02928229,97.12879746],[4.53450144,0.02928402,97.12969483],[4.53450194,0.02928574,97.13059325],[4.53450244,0.02928746,97.13149274],[4.53450294,0.02928919,97.1323933],[4.53450344,0.02929091,97.13329496],[4.53450394,0.02929264,97.13419772],[4.53450445,0.02929436,97.13510161],[4.53450495,0.02929608,97.13600663],[4.53450545,0.02929781,97.1369128],[4.53450596,0.02929953,97.13782013],[4.53450646,0.02930126,97.13872865],[4.53450696,0.02930298,97.13963835],[4.53450747,0.02930471,97.14054927],[4.53450797,0.02930643,97.1414614],[4.53450847,0.02930816,97.14237478],[4.53450898,0.02930988,97.1432894],[4.53450948,0.02931161,97.14420528],[4.53450998,0.02931333,97.14512245],[4.53451048,0.02931506,97.14604091],[4.53451098,0.02931679,97.14696068],[4.53451148,0.02931851,97.14788177],[4.53451198,0.02932024,97.14880419],[4.53451248,0.02932197,97.14972797],[4.53451298,0.0293237,97.15065312],[4.53451348,0.02932543,97.15157964],[4.53451398,0.02932715,97.15250756],[4.53451448,0.02932888,97.15343689],[4.53451497,0.02933061,97.15436764],[4.53451547,0.02933234,97.15529983],[4.53451597,0.02933407,97.15623348],[4.53451647,0.0293358,97.15716859],[4.53451696,0.02933753,97.15810518],[4.53451746,0.02933926,97.15904327],[4.53451796,0.02934099,97.15998287],[4.53451846,0.02934272,97.160924],[4.53451896,0.02934445,97.16186666],[4.53451946,0.02934618,97.16281088],[4.53451996,0.02934791,97.16375667],[4.53452046,0.02934964,97.16470404],[4.53452096,0.02935137,97.16565301],[4.53452147,0.0293531,97.16660359],[4.53452197,0.02935483,97.16755579],[4.53452248,0.02935656,97.16850965],[4.53452299,0.02935829,97.16946519],[4.5345235,0.02936002,97.17042245],[4.53452401,0.02936175,97.17138143],[4.53452452,0.02936347,97.17234216],[4.53452503,0.0293652,97.17330466],[4.53452555,0.02936693,97.17426894],[4.53452606,0.02936866,97.17523502],[4.53452658,0.02937039,97.17620292],[4.53452709,0.02937212,97.17717266],[4.53452761,0.02937384,97.17814426],[4.53452812,0.02937557,97.17911772],[4.53452863,0.0293773,97.18009308],[4.53452915,0.02937903,97.18107036],[4.53452966,0.02938076,97.18204955],[4.53453017,0.02938249,97.1830307],[4.53453069,0.02938422,97.18401381],[4.5345312,0.02938595,97.1849989],[4.53453171,0.02938768,97.18598599],[4.53453222,0.02938941,97.18697511],[4.53453273,0.02939114,97.18796625],[4.53453324,0.02939288,97.18895946],[4.53453375,0.02939461,97.18995473],[4.53453426,0.02939634,97.1909521],[4.53453477,0.02939807,97.19195158],[4.53453528,0.02939981,97.19295318],[4.53453579,0.02940154,97.19395694],[4.5345363,0.02940327,97.19496285],[4.53453681,0.029405,97.19597095],[4.53453732,0.02940674,97.19698124],[4.53453783,0.02940847,97.19799376],[4.53453834,0.02941021,97.19900851],[4.53453885,0.02941194,97.20002552],[4.53453935,0.02941367,97.2010448],[4.53453986,0.02941541,97.20206637],[4.53454037,0.02941714,97.20309025],[4.53454088,0.02941888,97.20411645],[4.53454139,0.02942061,97.205145],[4.5345419,0.02942235,97.20617592],[4.53454241,0.02942408,97.20720922],[4.53454292,0.02942582,97.20824491],[4.53454343,0.02942755,97.20928303],[4.53454394,0.02942929,97.21032358],[4.53454445,0.02943102,97.21136658],[4.53454496,0.02943276,97.21241206],[4.53454547,0.0294345,97.21346001],[4.53454598,0.02943623,97.21451039],[4.5345465,0.02943797,97.21556318],[4.53454701,0.0294397,97.21661834],[4.53454752,0.02944144,97.21767584],[4.53454803,0.02944318,97.21873566],[4.53454855,0.02944491,97.21979776],[4.53454906,0.02944665,97.2208621],[4.53454957,0.02944838,97.22192866],[4.53455009,0.02945012,97.2229974],[4.5345506,0.02945186,97.22406829],[4.53455111,0.0294536,97.2251413],[4.53455163,0.02945533,97.2262164],[4.53455214,0.02945707,97.22729356],[4.53455266,0.0294588,97.22837274],[4.53455317,0.02946054,97.22945392],[4.53455369,0.02946228,97.23053705],[4.5345542,0.02946401,97.23162211],[4.53455471,0.02946575,97.23270907],[4.53455523,0.02946748,97.2337979],[4.53455574,0.02946922,97.23488856],[4.53455626,0.02947095,97.23598102],[4.53455677,0.02947268,97.23707524],[4.53455729,0.02947442,97.23817121],[4.5345578,0.02947615,97.23926888],[4.53455832,0.02947789,97.24036822],[4.53455883,0.02947962,97.24146921],[4.53455935,0.02948135,97.2425718],[4.53455987,0.02948308,97.24367597],[4.53456038,0.02948482,97.24478169],[4.5345609,0.02948655,97.24588892],[4.53456141,0.02948828,97.24699763],[4.53456193,0.02949001,97.24810779],[4.53456245,0.02949174,97.24921937],[4.53456296,0.02949348,97.25033233],[4.53456348,0.02949521,97.25144665],[4.534564,0.02949694,97.25256229],[4.53456451,0.02949867,97.25367921],[4.53456503,0.0295004,97.2547974],[4.53456555,0.02950213,97.25591681],[4.53456607,0.02950386,97.25703741],[4.53456658,0.02950559,97.25815917],[4.5345671,0.02950732,97.25928206],[4.53456762,0.02950905,97.26040605],[4.53456814,0.02951077,97.26153111],[4.53456866,0.0295125,97.2626572],[4.53456917,0.02951423,97.26378429],[4.53456969,0.02951596,97.26491235],[4.53457021,0.02951769,97.26604134],[4.53457073,0.02951941,97.26717124],[4.53457125,0.02952114,97.26830201],[4.53457177,0.02952287,97.26943363],[4.53457228,0.0295246,97.27056605],[4.5345728,0.02952632,97.27169925],[4.53457332,0.02952805,97.27283319],[4.53457384,0.02952978,97.27396785],[4.53457436,0.0295315,97.27510319],[4.53457488,0.02953323,97.27623917],[4.5345754,0.02953495,97.27737578],[4.53457591,0.02953668,97.27851296],[4.53457643,0.0295384,97.2796507],[4.53457695,0.02954013,97.28078896],[4.53457747,0.02954185,97.28192771],[4.53457799,0.02954358,97.28306692],[4.53457851,0.0295453,97.28420655],[4.53457903,0.02954703,97.28534657],[4.53457955,0.02954875,97.28648696],[4.53458006,0.02955048,97.28762767],[4.53458058,0.0295522,97.28876868],[4.5345811,0.02955392,97.28990995],[4.53458162,0.02955565,97.29105146],[4.53458214,0.02955737,97.29219317],[4.53458265,0.02955909,97.29333504],[4.53458317,0.02956081,97.29447706],[4.53458369,0.02956254,97.29561918],[4.5345842,0.02956426,97.29676137],[4.53458472,0.02956598,97.2979036],[4.53458523,0.02956771,97.29904584],[4.53458575,0.02956943,97.30018806],[4.53458626,0.02957115,97.30133022],[4.53458677,0.02957287,97.3024723],[4.53458728,0.0295746,97.30361426],[4.53458779,0.02957632,97.30475606],[4.5345883,0.02957804,97.30589769],[4.53458881,0.02957977,97.3070391],[4.53458931,0.02958149,97.30818027],[4.53458982,0.02958321,97.30932115],[4.53459032,0.02958494,97.31046173],[4.53459082,0.02958666,97.31160196],[4.53459132,0.02958839,97.31274183],[4.53459182,0.02959011,97.31388128],[4.53459232,0.02959184,97.3150203],[4.53459281,0.02959356,97.31615885],[4.53459331,0.02959529,97.3172969],[4.5345938,0.02959701,97.31843442],[4.53459429,0.02959874,97.31957137],[4.53459477,0.02960046,97.32070773],[4.53449024,0.02963111,97.17267337]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":1,"type":"shoulder","predecessorId":1},{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":2,"type":"none","predecessorId":2}],"roadId":"1004700","singleSide":false,"rightLanes":[{"successorId":-3,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":-3,"type":"none","predecessorId":-4},{"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"type":"shoulder","predecessorId":-3},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"entry","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.5343118,0.02898212,96.8423516],[4.53431139,0.02898035,96.84172308],[4.53431139,0.02898033,96.8417152],[4.53440975,0.02895583,96.99688415],[4.53440976,0.02895585,96.99036498],[4.53441012,0.02895762,96.98299205],[4.5343118,0.02898212,96.8423516]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"rules":[{"value":"barred"}],"id":1,"type":"restricted","predecessorId":1},{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":2,"type":"none","predecessorId":2}],"roadId":"1004700","singleSide":false,"rightLanes":[{"successorId":-3,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":-3,"type":"none","predecessorId":-3},{"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"type":"shoulder","predecessorId":-2},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"entry","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.53431139,0.02898033,96.8417152],[4.53431098,0.02897856,96.8410843],[4.53431057,0.0289768,96.84044904],[4.53431016,0.02897503,96.83980958],[4.53430975,0.02897326,96.83916608],[4.53430933,0.0289715,96.83851869],[4.53430892,0.02896973,96.83786756],[4.5343085,0.02896797,96.83721287],[4.53430809,0.0289662,96.83655477],[4.53430767,0.02896444,96.83589342],[4.53430725,0.02896267,96.83522897],[4.53430683,0.02896091,96.83456158],[4.53430641,0.02895914,96.83389141],[4.53430599,0.02895738,96.83321863],[4.53430557,0.02895561,96.83254338],[4.53430515,0.02895385,96.83186583],[4.53430472,0.02895209,96.83118612],[4.5343043,0.02895032,96.83050443],[4.53430388,0.02894856,96.82982091],[4.53430345,0.0289468,96.82913571],[4.53430303,0.02894503,96.82844899],[4.5343026,0.02894327,96.82776091],[4.53430217,0.02894151,96.82707163],[4.53430175,0.02893974,96.8263813],[4.53430132,0.02893798,96.82569008],[4.5343009,0.02893622,96.82499812],[4.53430047,0.02893445,96.82430559],[4.53430004,0.02893269,96.82361263],[4.53429962,0.02893093,96.82291942],[4.53429919,0.02892916,96.82222609],[4.53429876,0.0289274,96.82153281],[4.53429834,0.02892564,96.82083974],[4.53429791,0.02892387,96.82014702],[4.53429749,0.02892211,96.81945482],[4.53429706,0.02892035,96.8187633],[4.53429664,0.02891858,96.8180726],[4.53429622,0.02891682,96.81738289],[4.53429579,0.02891505,96.81669431],[4.53429537,0.02891329,96.81600703],[4.53429495,0.02891152,96.81532121],[4.53429453,0.02890976,96.81463698],[4.53429411,0.028908,96.81395453],[4.53429369,0.02890623,96.81327399],[4.53429327,0.02890446,96.81259552],[4.53429285,0.0289027,96.81191927],[4.53429244,0.02890093,96.81124527],[4.53429202,0.02889917,96.81057341],[4.53429161,0.0288974,96.80990356],[4.53429119,0.02889563,96.80923561],[4.53429078,0.02889387,96.80856945],[4.53429037,0.0288921,96.80790497],[4.53428996,0.02889033,96.80724204],[4.53428955,0.02888856,96.80658057],[4.53428914,0.0288868,96.80592044],[4.53428873,0.02888503,96.80526155],[4.53428832,0.02888326,96.8046038],[4.53428791,0.02888149,96.80394708],[4.53428751,0.02887972,96.8032913],[4.5342871,0.02887796,96.80263633],[4.53428669,0.02887619,96.8019821],[4.53428629,0.02887442,96.80132847],[4.53428588,0.02887265,96.80067537],[4.53428548,0.02887088,96.80002267],[4.53428507,0.02886911,96.79937028],[4.53428467,0.02886734,96.7987181],[4.53428426,0.02886557,96.79806601],[4.53428386,0.0288638,96.79741393],[4.53428346,0.02886204,96.79676178],[4.53428305,0.02886027,96.79610952],[4.53428265,0.0288585,96.79545711],[4.53428225,0.02885673,96.79480448],[4.53428184,0.02885496,96.79415161],[4.53428144,0.02885319,96.79349843],[4.53428104,0.02885142,96.79284489],[4.53428064,0.02884965,96.79219096],[4.53428023,0.02884788,96.79153658],[4.53427983,0.02884611,96.79088171],[4.53427943,0.02884434,96.79022629],[4.53427903,0.02884257,96.78957027],[4.53427863,0.0288408,96.7889136],[4.53427822,0.02883903,96.78825611],[4.53427782,0.02883726,96.78759765],[4.53427742,0.02883549,96.78693805],[4.53427702,0.02883372,96.78627713],[4.53427661,0.02883195,96.78561474],[4.53427621,0.02883018,96.78495069],[4.53427581,0.02882842,96.78428483],[4.53427541,0.02882665,96.78361699],[4.534275,0.02882488,96.782947],[4.5342746,0.02882311,96.78227474],[4.53427419,0.02882135,96.78160032],[4.53427379,0.02881958,96.78092391],[4.53427338,0.02881781,96.78024566],[4.53427298,0.02881604,96.77956575],[4.53427257,0.02881428,96.77888432],[4.53427216,0.02881251,96.77820154],[4.53427176,0.02881074,96.77751758],[4.53427135,0.02880897,96.7768326],[4.53427095,0.02880721,96.77614675],[4.53427054,0.02880544,96.7754602],[4.53427013,0.02880368,96.77477311],[4.53426973,0.02880191,96.77408565],[4.53426932,0.02880014,96.77339798],[4.53426891,0.02879838,96.77271025],[4.53426851,0.02879661,96.77202263],[4.5342681,0.02879485,96.77133529],[4.5342677,0.02879308,96.77064838],[4.5342673,0.02879131,96.76996206],[4.53426689,0.02878955,96.76927651],[4.53426649,0.02878778,96.76859188],[4.53426609,0.02878602,96.76790833],[4.53426569,0.02878425,96.76722603],[4.53426529,0.02878249,96.76654517],[4.53426489,0.02878072,96.76586601],[4.53426449,0.02877895,96.76518878],[4.53426409,0.02877719,96.76451372],[4.53426369,0.02877542,96.76384104],[4.5342633,0.02877366,96.76317096],[4.5342629,0.02877189,96.76250371],[4.53426251,0.02877012,96.76183952],[4.53426212,0.02876836,96.7611786],[4.53426173,0.02876659,96.76052119],[4.53426134,0.02876482,96.75986743],[4.53426095,0.02876306,96.75921715],[4.53426057,0.02876129,96.75857012],[4.53426018,0.02875952,96.75792609],[4.5342598,0.02875776,96.75728482],[4.53425942,0.02875599,96.75664607],[4.53425904,0.02875422,96.7560096],[4.53425866,0.02875245,96.75537516],[4.53425828,0.02875069,96.75474251],[4.5342579,0.02874892,96.75411141],[4.53425752,0.02874715,96.75348163],[4.53425715,0.02874538,96.7528529],[4.53425677,0.02874362,96.75222501],[4.53425639,0.02874185,96.75159769],[4.53425602,0.02874008,96.75097072],[4.53425564,0.02873831,96.75034384],[4.53425527,0.02873655,96.74971682],[4.53425489,0.02873478,96.74908941],[4.53425452,0.02873301,96.74846136],[4.53425414,0.02873125,96.74783244],[4.53425377,0.02872948,96.7472024],[4.53425339,0.02872771,96.746571],[4.53425302,0.02872595,96.74593799],[4.53425264,0.02872418,96.74530313],[4.53425226,0.02872242,96.74466617],[4.53425188,0.02872065,96.74402688],[4.53425151,0.02871889,96.743385],[4.53425113,0.02871712,96.74274021],[4.53425075,0.02871536,96.74209213],[4.53425036,0.0287136,96.74144036],[4.53424998,0.02871183,96.74078451],[4.5342496,0.02871007,96.74012419],[4.53424921,0.02870831,96.739459],[4.53424882,0.02870655,96.73878857],[4.53424844,0.02870479,96.7381126],[4.53424804,0.02870303,96.73743083],[4.53424765,0.02870127,96.73674301],[4.53424726,0.02869951,96.73604887],[4.53424686,0.02869775,96.73534825],[4.53424646,0.02869599,96.73464141],[4.53424606,0.02869423,96.7339287],[4.53424566,0.02869248,96.73321049],[4.53424525,0.02869072,96.73248713],[4.53424484,0.02868897,96.73175898],[4.53424444,0.02868721,96.7310264],[4.53424403,0.02868546,96.73028974],[4.53424362,0.0286837,96.72954937],[4.53424321,0.02868195,96.72880565],[4.53424279,0.02868019,96.72805892],[4.53424238,0.02867844,96.72730956],[4.53424197,0.02867669,96.72655793],[4.53424155,0.02867494,96.72580438],[4.53424114,0.02867318,96.72504927],[4.53424072,0.02867143,96.72429298],[4.53424031,0.02866968,96.72353585],[4.53423989,0.02866793,96.72277828],[4.53423948,0.02866618,96.72202069],[4.53423907,0.02866443,96.72126348],[4.53423865,0.02866268,96.72050709],[4.53423824,0.02866093,96.71975192],[4.53423782,0.02865917,96.7189984],[4.53423741,0.02865742,96.71824687],[4.534237,0.02865567,96.71749736],[4.53423659,0.02865392,96.71674986],[4.53423618,0.02865217,96.71600434],[4.53423577,0.02865041,96.71526077],[4.53423536,0.02864866,96.71451912],[4.53423496,0.02864691,96.71377936],[4.53423455,0.02864516,96.71304147],[4.53423414,0.02864341,96.71230541],[4.53423374,0.02864166,96.71157117],[4.53423334,0.02863991,96.71083871],[4.53423293,0.02863816,96.710108],[4.53423253,0.02863641,96.70937902],[4.53423213,0.02863466,96.7086517],[4.53423173,0.02863291,96.70792595],[4.53423133,0.02863116,96.70720166],[4.53423093,0.02862941,96.70647873],[4.53423053,0.02862766,96.70575704],[4.53423013,0.02862592,96.70503649],[4.53422973,0.02862417,96.70431697],[4.53422933,0.02862242,96.70359838],[4.53422893,0.02862067,96.70288061],[4.53422853,0.02861893,96.70216355],[4.53422813,0.02861718,96.7014471],[4.53422774,0.02861544,96.70073115],[4.53422734,0.02861369,96.70001563],[4.53422694,0.02861194,96.69930048],[4.53422655,0.0286102,96.69858562],[4.53422615,0.02860846,96.69787098],[4.53422575,0.02860671,96.69715651],[4.53422535,0.02860497,96.69644212],[4.53422496,0.02860322,96.69572784],[4.53422456,0.02860148,96.69501375],[4.53422416,0.02859974,96.69429993],[4.53422376,0.028598,96.6935865],[4.53422337,0.02859626,96.69287352],[4.53422297,0.02859451,96.6921611],[4.53422257,0.02859277,96.69144932],[4.53422218,0.02859103,96.69073828],[4.53422178,0.02858929,96.69002806],[4.53422138,0.02858755,96.68931877],[4.53422099,0.02858581,96.68861049],[4.53422059,0.02858407,96.68790332],[4.5342202,0.02858234,96.68719734],[4.5342198,0.0285806,96.68649266],[4.5342194,0.02857886,96.68578935],[4.53421901,0.02857712,96.68508753],[4.53421861,0.02857538,96.68438727],[4.53421822,0.02857365,96.68368868],[4.53421783,0.02857191,96.68299185],[4.53421743,0.02857017,96.68229688],[4.53421704,0.02856844,96.68160385],[4.53421665,0.0285667,96.68091274],[4.53421626,0.02856496,96.68022309],[4.53421586,0.02856323,96.67953429],[4.53421547,0.02856149,96.67884576],[4.53421508,0.02855976,96.6781569],[4.53421468,0.02855803,96.67746713],[4.53421429,0.02855629,96.67677584],[4.53421389,0.02855456,96.67608245],[4.5342135,0.02855283,96.67538641],[4.5342131,0.0285511,96.67468717],[4.5342127,0.02854937,96.67398415],[4.5342123,0.02854764,96.67327682],[4.53421189,0.02854591,96.6725646],[4.53421149,0.02854418,96.67184693],[4.53421108,0.02854245,96.67112325],[4.53421067,0.02854073,96.67039303],[4.53421026,0.028539,96.66965624],[4.53420984,0.02853728,96.66891341],[4.53420942,0.02853555,96.66816508],[4.534209,0.02853383,96.66741178],[4.53420858,0.02853211,96.66665406],[4.53420816,0.02853039,96.66589247],[4.53420773,0.02852867,96.66512754],[4.53420731,0.02852695,96.66435983],[4.53420688,0.02852523,96.66358988],[4.53420645,0.02852352,96.66281824],[4.53420602,0.0285218,96.66204546],[4.53420559,0.02852008,96.66127209],[4.53420516,0.02851837,96.66049869],[4.53420473,0.02851665,96.65972581],[4.5342043,0.02851493,96.658954],[4.53420387,0.02851322,96.65818382],[4.53420344,0.02851151,96.65741584],[4.53420301,0.02850979,96.65665061],[4.53420258,0.02850808,96.65588869],[4.53420215,0.02850639,96.65513064],[4.53420173,0.02850468,96.65437665],[4.5342013,0.02850296,96.65362663],[4.53420087,0.02850124,96.65288043],[4.53420044,0.02849952,96.65213781],[4.53420002,0.0284978,96.65139854],[4.53419959,0.02849608,96.65066235],[4.53419916,0.02849436,96.64992899],[4.53419874,0.02849263,96.6491982],[4.53419831,0.02849091,96.64846973],[4.53419789,0.02848918,96.64774333],[4.53419746,0.02848745,96.64701872],[4.53419703,0.02848572,96.64629565],[4.53419661,0.02848398,96.64557387],[4.53419618,0.02848225,96.64485312],[4.53419575,0.02848052,96.64413313],[4.53419533,0.02847878,96.64341364],[4.5341949,0.02847704,96.64269439],[4.53419447,0.0284753,96.64197512],[4.53419404,0.02847356,96.64125557],[4.53419362,0.02847182,96.64053546],[4.53419319,0.02847007,96.63981455],[4.53419276,0.02846833,96.63909255],[4.53419233,0.02846658,96.63836921],[4.5341919,0.02846483,96.63764425],[4.53419147,0.02846308,96.63691741],[4.53419103,0.02846133,96.63618845],[4.5341906,0.02845958,96.63545717],[4.53419017,0.02845783,96.63472335],[4.53418973,0.02845608,96.63398679],[4.5341893,0.02845432,96.63324738],[4.53418886,0.02845257,96.63250501],[4.53418842,0.02845081,96.63175952],[4.53418798,0.02844905,96.63101072],[4.53418754,0.02844729,96.63025846],[4.5341871,0.02844553,96.62950256],[4.53418666,0.02844376,96.62874286],[4.53418622,0.028442,96.62797917],[4.53418578,0.02844024,96.62721133],[4.53418534,0.02843847,96.62643917],[4.53418489,0.0284367,96.62566251],[4.53418444,0.02843493,96.62488118],[4.534184,0.02843316,96.624095],[4.53418355,0.02843139,96.62330381],[4.5341831,0.02842962,96.62250744],[4.53418265,0.02842785,96.6217058],[4.5341822,0.02842607,96.62089882],[4.53418175,0.0284243,96.62008643],[4.5341813,0.02842252,96.61926854],[4.53418084,0.02842074,96.61844509],[4.53418039,0.02841896,96.617616],[4.53417993,0.02841718,96.61678118],[4.53417948,0.0284154,96.61594058],[4.53417902,0.02841362,96.61509409],[4.53417856,0.02841184,96.61424166],[4.5341781,0.02841005,96.61338321],[4.53417764,0.02840826,96.6125191],[4.53417718,0.02840648,96.61165029],[4.53417672,0.02840469,96.61077785],[4.53417626,0.0284029,96.6099028],[4.5341758,0.0284011,96.60902619],[4.53417535,0.02839931,96.60814907],[4.53417489,0.02839751,96.60727227],[4.53417444,0.02839572,96.60639582],[4.53417399,0.02839392,96.60551959],[4.53417354,0.02839213,96.60464344],[4.53417309,0.02839035,96.60376697],[4.53417265,0.02838857,96.60288953],[4.53417221,0.02838679,96.60201045],[4.53417177,0.02838503,96.60112908],[4.53417133,0.02838326,96.60024475],[4.53417089,0.02838151,96.5993568],[4.53417045,0.02837975,96.59846454],[4.53417001,0.02837801,96.59756732],[4.53416958,0.02837627,96.59666444],[4.53416914,0.02837454,96.59575524],[4.5341687,0.02837281,96.59483903],[4.53416826,0.02837109,96.59391512],[4.53416782,0.02836937,96.59298324],[4.53416738,0.02836766,96.59204456],[4.53416693,0.02836596,96.59110052],[4.53416649,0.02836426,96.59015261],[4.53416605,0.02836257,96.58920232],[4.5341656,0.02836089,96.58825111],[4.53416516,0.02835921,96.5873005],[4.53416472,0.02835754,96.58635199],[4.53416428,0.02835587,96.58540755],[4.53416384,0.02835421,96.58446955],[4.5341634,0.02835255,96.58353925],[4.53416297,0.0283509,96.58261615],[4.53416253,0.02834926,96.58169959],[4.5341621,0.02834762,96.58078892],[4.53416167,0.02834598,96.57988349],[4.53416124,0.02834436,96.57898216],[4.5341608,0.02834274,96.57808224],[4.53416037,0.02834113,96.57718125],[4.53415994,0.02833952,96.57628047],[4.53415951,0.02833793,96.57538257],[4.53415908,0.02833636,96.57449026],[4.53415865,0.0283348,96.57360623],[4.53415823,0.02833325,96.57273321],[4.53415781,0.02833172,96.57187393],[4.5341574,0.0283302,96.57103113],[4.53415699,0.0283287,96.57020756],[4.53415658,0.02832721,96.569406],[4.53415619,0.02832573,96.56862923],[4.5341558,0.02832428,96.56789043],[4.53423771,0.02829901,96.69770012],[4.53423821,0.0283008,96.69833627],[4.53423872,0.02830261,96.6990075],[4.53423923,0.02830441,96.69970269],[4.53423973,0.02830621,96.70041969],[4.53424024,0.028308,96.70115633],[4.53424074,0.02830979,96.70191045],[4.53424125,0.02831158,96.70267992],[4.53424175,0.02831336,96.70346261],[4.53424225,0.02831515,96.7042564],[4.53424274,0.02831692,96.70505917],[4.53424324,0.0283187,96.70586882],[4.53424373,0.02832046,96.70668326],[4.53424422,0.02832223,96.70750182],[4.53424471,0.028324,96.70832751],[4.5342452,0.02832577,96.70916293],[4.53424568,0.02832754,96.71000894],[4.53424617,0.0283293,96.71086626],[4.53424666,0.02833106,96.71173562],[4.53424716,0.02833282,96.71261773],[4.53424765,0.02833458,96.71351316],[4.53424815,0.02833634,96.71442069],[4.53424864,0.0283381,96.71533801],[4.53424914,0.02833985,96.71626278],[4.53424964,0.0283416,96.71719267],[4.53425013,0.02834335,96.71812535],[4.53425063,0.0283451,96.71905852],[4.53425112,0.02834685,96.71998987],[4.53425161,0.0283486,96.72091737],[4.5342521,0.02835034,96.7218407],[4.53425259,0.02835209,96.72276028],[4.53425308,0.02835383,96.72367653],[4.53425356,0.02835558,96.72458989],[4.53425404,0.02835732,96.72550077],[4.53425452,0.02835906,96.72640958],[4.53425501,0.02836079,96.72731676],[4.53425549,0.02836253,96.72822271],[4.53425597,0.02836427,96.72912784],[4.53425645,0.028366,96.73003258],[4.53425693,0.02836773,96.73093733],[4.53425741,0.02836946,96.7318425],[4.53425789,0.02837119,96.73274849],[4.53425838,0.02837291,96.73365561],[4.53425887,0.02837463,96.73456337],[4.53425935,0.02837635,96.73547095],[4.53425984,0.02837807,96.73637753],[4.53426033,0.0283798,96.73728229],[4.53426082,0.02838152,96.73818443],[4.53426131,0.02838324,96.73908313],[4.5342618,0.02838496,96.73997759],[4.53426229,0.02838668,96.74086702],[4.53426278,0.02838841,96.7417506],[4.53426327,0.02839013,96.7426276],[4.53426376,0.02839186,96.7434979],[4.53426425,0.02839358,96.7443618],[4.53426474,0.02839531,96.74521961],[4.53426522,0.02839703,96.74607164],[4.53426571,0.02839876,96.74691821],[4.53426619,0.02840049,96.7477596],[4.53426668,0.02840221,96.7485961],[4.53426716,0.02840394,96.74942797],[4.53426765,0.02840567,96.7502555],[4.53426813,0.0284074,96.75107898],[4.53426862,0.02840913,96.75189866],[4.5342691,0.02841086,96.75271484],[4.53426959,0.02841259,96.75352778],[4.53427007,0.02841432,96.75433776],[4.53427055,0.02841605,96.75514505],[4.53427104,0.02841778,96.75594993],[4.53427152,0.02841951,96.75675266],[4.534272,0.02842125,96.75755351],[4.53427249,0.02842298,96.75835275],[4.53427297,0.02842471,96.75915065],[4.53427346,0.02842645,96.75994748],[4.53427394,0.02842818,96.76074351],[4.53427443,0.02842991,96.76153899],[4.53427491,0.02843165,96.76233419],[4.5342754,0.02843338,96.76312939],[4.53427588,0.02843512,96.76392478],[4.53427637,0.02843686,96.76472043],[4.53427686,0.02843859,96.76551639],[4.53427735,0.02844033,96.7663127],[4.53427783,0.02844206,96.76710942],[4.53427832,0.0284438,96.76790658],[4.53427881,0.02844554,96.76870423],[4.5342793,0.02844728,96.76950242],[4.53427979,0.02844901,96.77030119],[4.53428028,0.02845075,96.77110059],[4.53428077,0.02845249,96.77190066],[4.53428126,0.02845423,96.77270145],[4.53428175,0.02845597,96.773503],[4.53428224,0.02845771,96.77430536],[4.53428273,0.02845945,96.77510857],[4.53428323,0.02846119,96.77591267],[4.53428372,0.02846294,96.77671772],[4.53428421,0.02846468,96.77752376],[4.5342847,0.02846642,96.77833082],[4.53428519,0.02846816,96.77913896],[4.53428568,0.02846991,96.77994821],[4.53428618,0.02847165,96.78075863],[4.53428667,0.02847339,96.78157026],[4.53428716,0.02847514,96.78238314],[4.53428765,0.02847688,96.78319731],[4.53428814,0.02847863,96.78401282],[4.53428864,0.02848038,96.78482971],[4.53428913,0.02848212,96.785648],[4.53428962,0.02848387,96.78646761],[4.53429011,0.02848559,96.78728848],[4.5342906,0.02848734,96.78811052],[4.53429109,0.02848909,96.78893365],[4.53429158,0.02849084,96.78975779],[4.53429207,0.02849259,96.79058287],[4.53429256,0.02849434,96.79140881],[4.53429305,0.02849609,96.79223554],[4.53429353,0.02849784,96.79306296],[4.53429402,0.02849959,96.79389102],[4.53429451,0.02850134,96.79471962],[4.534295,0.02850309,96.7955487],[4.53429548,0.02850483,96.79637818],[4.53429597,0.02850658,96.79720798],[4.53429645,0.02850833,96.79803802],[4.53429694,0.02851008,96.79886824],[4.53429742,0.02851183,96.79969855],[4.5342979,0.02851358,96.80052889],[4.53429839,0.02851533,96.80135916],[4.53429887,0.02851708,96.80218937],[4.53429935,0.02851883,96.80301958],[4.53429983,0.02852058,96.80384986],[4.53430031,0.02852233,96.8046803],[4.53430079,0.02852408,96.80551097],[4.53430127,0.02852583,96.80634195],[4.53430175,0.02852758,96.80717332],[4.53430222,0.02852933,96.80800515],[4.5343027,0.02853108,96.80883752],[4.53430318,0.02853283,96.8096705],[4.53430366,0.02853458,96.81050419],[4.53430413,0.02853633,96.81133864],[4.53430461,0.02853808,96.81217397],[4.53430509,0.02853983,96.81301029],[4.53430556,0.02854158,96.81384772],[4.53430604,0.02854333,96.81468638],[4.53430651,0.02854508,96.81552639],[4.53430699,0.02854682,96.81636787],[4.53430746,0.02854857,96.81721092],[4.53430794,0.02855032,96.81805553],[4.53430842,0.02855207,96.8189017],[4.53430889,0.02855382,96.81974937],[4.53430937,0.02855557,96.82059851],[4.53430985,0.02855732,96.8214491],[4.53431032,0.02855907,96.82230109],[4.5343108,0.02856081,96.82315446],[4.53431127,0.02856256,96.82400918],[4.53431175,0.02856431,96.82486521],[4.53431223,0.02856606,96.82572252],[4.5343127,0.02856781,96.82658107],[4.53431318,0.02856955,96.82744084],[4.53431366,0.0285713,96.8283018],[4.53431413,0.02857305,96.8291639],[4.53431461,0.0285748,96.83002713],[4.53431509,0.02857654,96.83089144],[4.53431556,0.02857829,96.8317568],[4.53431604,0.02858004,96.83262319],[4.53431651,0.02858178,96.83349058],[4.53431699,0.02858353,96.83435892],[4.53431747,0.02858528,96.8352282],[4.53431794,0.02858702,96.83609837],[4.53431842,0.02858877,96.83696941],[4.5343189,0.02859052,96.83784129],[4.53431937,0.02859226,96.83871397],[4.53431985,0.02859401,96.83958742],[4.53432033,0.02859575,96.84046162],[4.5343208,0.0285975,96.84133654],[4.53432128,0.02859924,96.84221213],[4.53432176,0.02860099,96.84308837],[4.53432223,0.02860274,96.84396524],[4.53432271,0.02860448,96.8448427],[4.53432319,0.02860623,96.84572071],[4.53432366,0.02860797,96.84659926],[4.53432414,0.02860971,96.8474783],[4.53432462,0.02861146,96.84835781],[4.53432509,0.0286132,96.84923777],[4.53432557,0.02861495,96.85011813],[4.53432604,0.02861669,96.85099886],[4.53432652,0.02861844,96.85187989],[4.534327,0.02862018,96.85276111],[4.53432747,0.02862192,96.85364241],[4.53432795,0.02862367,96.85452373],[4.53432842,0.02862541,96.85540507],[4.5343289,0.02862715,96.85628643],[4.53432938,0.0286289,96.85716782],[4.53432985,0.02863065,96.85804926],[4.53433033,0.02863239,96.85893073],[4.5343308,0.02863413,96.85981225],[4.53433128,0.02863588,96.86069383],[4.53433175,0.02863762,96.86157546],[4.53433223,0.02863936,96.86245716],[4.5343327,0.0286411,96.86333893],[4.53433318,0.02864285,96.86422078],[4.53433365,0.02864459,96.86510272],[4.53433413,0.02864633,96.86598474],[4.5343346,0.02864808,96.86686685],[4.53433508,0.02864982,96.86774907],[4.53433555,0.02865156,96.86863139],[4.53433603,0.0286533,96.86951382],[4.5343365,0.02865505,96.87039637],[4.53433698,0.02865679,96.87127905],[4.53433745,0.02865853,96.87216185],[4.53433793,0.02866027,96.87304478],[4.5343384,0.02866201,96.87392786],[4.53433887,0.02866376,96.87481108],[4.53433935,0.0286655,96.87569446],[4.53433982,0.02866724,96.87657799],[4.5343403,0.02866898,96.87746168],[4.53434077,0.02867072,96.87834554],[4.53434125,0.02867247,96.87922958],[4.53434172,0.02867421,96.8801138],[4.5343422,0.02867595,96.8809982],[4.53434267,0.02867769,96.88188279],[4.53434315,0.02867943,96.88276758],[4.53434362,0.02868117,96.88365257],[4.5343441,0.02868292,96.88453777],[4.53434457,0.02868466,96.88542318],[4.53434505,0.0286864,96.88630881],[4.53434552,0.02868814,96.8871947],[4.534346,0.02868988,96.88808098],[4.53434647,0.02869162,96.8889677],[4.53434695,0.02869336,96.88985482],[4.53434742,0.0286951,96.8907423],[4.5343479,0.02869684,96.89163009],[4.53434838,0.02869858,96.89251812],[4.53434885,0.02870032,96.89340637],[4.53434933,0.02870206,96.89429476],[4.5343498,0.0287038,96.89518327],[4.53435028,0.02870554,96.89607182],[4.53435076,0.02870728,96.89696039],[4.53435123,0.02870902,96.89784891],[4.53435171,0.02871076,96.89873733],[4.53435218,0.0287125,96.89962561],[4.53435266,0.02871424,96.9005137],[4.53435314,0.02871598,96.90140154],[4.53435361,0.02871772,96.90228909],[4.53435409,0.02871946,96.9031763],[4.53435456,0.0287212,96.90406312],[4.53435504,0.02872294,96.90494949],[4.53435551,0.02872468,96.90583538],[4.53435599,0.02872642,96.90672072],[4.53435646,0.02872816,96.90760547],[4.53435694,0.0287299,96.90848959],[4.53435741,0.02873164,96.90937301],[4.53435789,0.02873337,96.91025569],[4.53435836,0.02873511,96.91113759],[4.53435883,0.02873685,96.91201865],[4.53435931,0.02873859,96.91289882],[4.53435978,0.02874033,96.91377805],[4.53436025,0.02874207,96.91465629],[4.53436072,0.02874381,96.9155335],[4.5343612,0.02874555,96.91640963],[4.53436167,0.02874729,96.91728461],[4.53436214,0.02874903,96.91815842],[4.53436261,0.02875076,96.91903098],[4.53436308,0.0287525,96.91990229],[4.53436355,0.02875424,96.92077243],[4.53436402,0.02875598,96.92164155],[4.53436449,0.02875772,96.92250979],[4.53436496,0.02875946,96.92337729],[4.53436543,0.0287612,96.92424418],[4.5343659,0.02876294,96.92511054],[4.53436637,0.02876467,96.92597638],[4.53436684,0.02876641,96.92684174],[4.5343673,0.02876815,96.92770664],[4.53436777,0.02876989,96.92857111],[4.53436824,0.02877163,96.92943517],[4.53436871,0.02877337,96.93029884],[4.53436918,0.0287751,96.93116216],[4.53436965,0.02877684,96.93202514],[4.53437012,0.02877858,96.93288782],[4.53437058,0.02878032,96.93375021],[4.53437105,0.02878206,96.93461234],[4.53437152,0.02878379,96.93547425],[4.53437199,0.02878553,96.93633594],[4.53437246,0.02878727,96.93719746],[4.53437293,0.02878901,96.93805881],[4.5343734,0.02879074,96.93892004],[4.53437386,0.02879248,96.93978116],[4.53437433,0.02879422,96.94064219],[4.5343748,0.02879595,96.94150317],[4.53437527,0.02879769,96.94236412],[4.53437574,0.02879943,96.94322506],[4.53437621,0.02880116,96.94408602],[4.53437668,0.0288029,96.94494702],[4.53437715,0.02880464,96.94580809],[4.53437761,0.02880636,96.94666925],[4.53437808,0.0288081,96.94753053],[4.53437855,0.02880983,96.94839195],[4.53437902,0.02881157,96.94925354],[4.5343795,0.0288133,96.95011532],[4.53437997,0.02881504,96.95097732],[4.53438044,0.02881678,96.95183955],[4.53438091,0.02881851,96.95270206],[4.53438138,0.02882025,96.95356486],[4.53438185,0.02882198,96.95442797],[4.53438232,0.02882372,96.95529142],[4.53438279,0.02882545,96.95615524],[4.53438327,0.02882719,96.95701945],[4.53438374,0.02882893,96.95788408],[4.53438421,0.02883066,96.95874914],[4.53438469,0.0288324,96.95961467],[4.53438516,0.02883413,96.96048069],[4.53438563,0.02883587,96.96134722],[4.53438611,0.0288376,96.96221429],[4.53438658,0.02883934,96.96308193],[4.53438706,0.02884107,96.96395012],[4.53438753,0.0288428,96.96481871],[4.53438801,0.02884454,96.96568755],[4.53438848,0.02884627,96.96655645],[4.53438896,0.02884801,96.96742526],[4.53438943,0.02884974,96.96829381],[4.53438991,0.02885148,96.96916195],[4.53439038,0.02885321,96.9700295],[4.53439086,0.02885495,96.97089631],[4.53439133,0.02885668,96.9717622],[4.53439181,0.02885842,96.97262702],[4.53439228,0.02886015,96.9734906],[4.53439275,0.02886188,96.97435278],[4.53439323,0.02886362,96.97521339],[4.5343937,0.02886535,96.97607227],[4.53439417,0.02886709,96.97692926],[4.53439464,0.02886882,96.97778418],[4.53439511,0.02887056,96.97863688],[4.53439558,0.0288723,96.97948719],[4.53439605,0.02887403,96.98033495],[4.53439652,0.02887577,96.98117999],[4.53439699,0.0288775,96.98202214],[4.53439745,0.02887924,96.98286125],[4.53439792,0.02888098,96.98369714],[4.53439838,0.02888271,96.98452965],[4.53439885,0.02888445,96.98535862],[4.53439931,0.02888619,96.98618388],[4.53439977,0.02888793,96.98700527],[4.53440023,0.02888966,96.98782282],[4.53440068,0.0288914,96.98863679],[4.53440114,0.02889314,96.98944746],[4.5344016,0.02889488,96.99025509],[4.53440205,0.02889662,96.99105997],[4.53440251,0.02889836,96.99186237],[4.53440296,0.0289001,96.99266256],[4.53440341,0.02890184,96.99346081],[4.53440386,0.02890358,96.99425741],[4.53440431,0.02890532,96.99505263],[4.53440476,0.02890706,96.99584674],[4.53440522,0.0289088,96.99664002],[4.53440567,0.02891054,96.99743274],[4.53440612,0.02891228,96.99822518],[4.53440657,0.02891402,96.99901761],[4.53440702,0.02891576,96.99981031],[4.53440747,0.0289175,97.00060355],[4.53440792,0.02891924,97.00139762],[4.53440837,0.02892098,97.00219278],[4.53440866,0.02892276,97.00251516],[4.53440872,0.0289246,97.00220572],[4.53440878,0.02892643,97.00189586],[4.53440884,0.02892827,97.00158558],[4.5344089,0.02893011,97.00127488],[4.53440896,0.02893194,97.00096377],[4.53440902,0.02893378,97.00065225],[4.53440908,0.02893562,97.00034033],[4.53440914,0.02893746,97.00002801],[4.5344092,0.02893929,96.9997153],[4.53440926,0.02894113,96.9994022],[4.53440932,0.02894297,96.99908872],[4.53440938,0.02894481,96.99877487],[4.53440944,0.02894664,96.99846064],[4.5344095,0.02894848,96.99814605],[4.53440956,0.02895032,96.9978311],[4.53440962,0.02895216,96.99751579],[4.53440968,0.028954,96.99720013],[4.53440974,0.02895583,96.99688415],[4.53431139,0.02898033,96.8417152]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"rules":[{"value":"barred"}],"id":1,"type":"restricted","predecessorId":1}],"roadId":"1004700","singleSide":false,"rightLanes":[{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":-3,"type":"none","predecessorId":-3},{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"type":"shoulder","predecessorId":-2},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"entry","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.53413895,0.02826181,96.54483368],[4.5341385,0.02826007,96.54398301],[4.53413804,0.02825833,96.54311075],[4.53413757,0.02825659,96.54222053],[4.53413709,0.02825485,96.54131597],[4.5341366,0.02825312,96.54040074],[4.53413611,0.02825138,96.53947852],[4.53413562,0.02824965,96.53855299],[4.53413512,0.02824792,96.53762786],[4.53413463,0.02824619,96.53670685],[4.53413413,0.02824446,96.53579368],[4.53413363,0.02824273,96.53489139],[4.53413314,0.02824099,96.53400009],[4.53413264,0.02823926,96.53311919],[4.53413215,0.02823753,96.53224809],[4.53413165,0.0282358,96.53138618],[4.53413116,0.02823406,96.53053286],[4.53413067,0.02823233,96.52968752],[4.53413017,0.02823059,96.52884956],[4.53412968,0.02822886,96.52801836],[4.53412919,0.02822713,96.5271933],[4.5341287,0.02822539,96.52637378],[4.53412821,0.02822366,96.52555917],[4.53412771,0.02822193,96.52474886],[4.53412722,0.02822019,96.52394234],[4.53412672,0.02821846,96.52313948],[4.53412623,0.02821673,96.5223403],[4.53412573,0.02821499,96.52154478],[4.53412524,0.02821326,96.52075293],[4.53412474,0.02821153,96.51996473],[4.53412425,0.0282098,96.51918018],[4.53412375,0.02820806,96.51839929],[4.53412325,0.02820633,96.51762204],[4.53412276,0.0282046,96.51684844],[4.53412226,0.02820287,96.51607848],[4.53412177,0.02820113,96.51531215],[4.53412127,0.0281994,96.51454946],[4.53412077,0.02819767,96.51379041],[4.53412028,0.02819594,96.51303498],[4.53411978,0.0281942,96.51228318],[4.53411928,0.02819247,96.51153501],[4.53411879,0.02819074,96.51079046],[4.53411829,0.02818901,96.51004953],[4.5341178,0.02818727,96.50931223],[4.5341173,0.02818554,96.50857854],[4.53411681,0.02818381,96.50784846],[4.53411631,0.02818207,96.507122],[4.53411581,0.02818034,96.50639916],[4.53411532,0.02817861,96.50567993],[4.53411482,0.02817688,96.50496428],[4.53411433,0.02817514,96.50425205],[4.53411383,0.02817341,96.50354307],[4.53411334,0.02817168,96.50283715],[4.53411284,0.02816994,96.5021341],[4.53411234,0.02816821,96.50143374],[4.53411185,0.02816648,96.5007359],[4.53411135,0.02816474,96.50004037],[4.53411085,0.02816301,96.49934699],[4.53411036,0.02816128,96.49865556],[4.53410986,0.02815955,96.4979659],[4.53410936,0.02815782,96.49727784],[4.53410886,0.02815608,96.49659118],[4.53410836,0.02815435,96.49590575],[4.53410786,0.02815262,96.49522135],[4.53410736,0.02815089,96.49453782],[4.53410686,0.02814916,96.49385501],[4.53410635,0.02814743,96.49317294],[4.53410585,0.0281457,96.49249169],[4.53410534,0.02814397,96.49181133],[4.53410484,0.02814224,96.49113193],[4.53410433,0.02814051,96.49045356],[4.53410383,0.02813878,96.48977629],[4.53410332,0.02813705,96.4891002],[4.53410281,0.02813532,96.48842535],[4.5341023,0.02813359,96.48775182],[4.53410179,0.02813186,96.48707968],[4.53410128,0.02813013,96.486409],[4.53410077,0.02812841,96.48573985],[4.53410026,0.02812668,96.48507231],[4.53409974,0.02812495,96.48440644],[4.53409923,0.02812322,96.48374236],[4.53409872,0.02812149,96.48308017],[4.5340982,0.02811977,96.48242],[4.53409769,0.02811804,96.48176197],[4.53409717,0.02811631,96.48110621],[4.53409666,0.02811459,96.48045285],[4.53409614,0.02811286,96.47980199],[4.53409563,0.02811113,96.47915377],[4.53409511,0.02810941,96.4785083],[4.5340946,0.02810768,96.47786572],[4.53409408,0.02810595,96.47722613],[4.53409357,0.02810422,96.47658967],[4.53409305,0.0281025,96.47595646],[4.53409253,0.02810077,96.47532661],[4.53409202,0.02809904,96.47470024],[4.5340915,0.02809732,96.47407749],[4.53409099,0.02809559,96.47345846],[4.53409047,0.02809386,96.47284328],[4.53408996,0.02809214,96.47223208],[4.53408945,0.02809041,96.47162496],[4.53408893,0.02808868,96.47102205],[4.53408842,0.02808695,96.47042346],[4.53408791,0.02808523,96.46982929],[4.53408739,0.0280835,96.46923946],[4.53408688,0.02808177,96.46865391],[4.53408637,0.02808004,96.46807258],[4.53408586,0.02807831,96.46749543],[4.53408535,0.02807659,96.4669224],[4.53408484,0.02807486,96.46635345],[4.53408433,0.02807313,96.46578854],[4.53408382,0.0280714,96.4652276],[4.53408331,0.02806967,96.4646706],[4.5340828,0.02806794,96.46411747],[4.53408229,0.02806621,96.46356819],[4.53408179,0.02806448,96.46302268],[4.53408128,0.02806275,96.46248092],[4.53408077,0.02806102,96.46194284],[4.53408026,0.0280593,96.4614084],[4.53407976,0.02805757,96.46087755],[4.53407925,0.02805584,96.46035023],[4.53407875,0.02805411,96.45982632],[4.53407824,0.02805238,96.4593056],[4.53407774,0.02805065,96.45878784],[4.53407723,0.02804892,96.45827283],[4.53407673,0.02804719,96.45776035],[4.53407622,0.02804546,96.45725018],[4.53407572,0.02804373,96.45674211],[4.53407521,0.02804199,96.45623591],[4.53407471,0.02804026,96.45573138],[4.5340742,0.02803853,96.45522829],[4.5340737,0.02803681,96.45472644],[4.53407319,0.02803508,96.45422561],[4.53407268,0.02803335,96.45372559],[4.53407218,0.02803162,96.45322617],[4.53407167,0.02802989,96.45272714],[4.53407116,0.02802816,96.45222828],[4.53407065,0.02802643,96.4517294],[4.53407014,0.0280247,96.45123028],[4.53406963,0.02802297,96.45073072],[4.53406912,0.02802124,96.45023051],[4.53406861,0.02801952,96.44972942],[4.53406809,0.02801779,96.44922715],[4.53406758,0.02801606,96.44872337],[4.53406706,0.02801433,96.44821776],[4.53406655,0.02801261,96.44770999],[4.53406603,0.02801088,96.4471998],[4.53406551,0.02800916,96.44668711],[4.53406499,0.02800743,96.44617189],[4.53406446,0.02800571,96.44565412],[4.53406394,0.02800398,96.44513377],[4.53406341,0.02800226,96.44461087],[4.53406289,0.02800054,96.44408565],[4.53406236,0.02799881,96.44355842],[4.53406183,0.02799709,96.44302944],[4.5340613,0.02799537,96.44249903],[4.53406077,0.02799365,96.44196745],[4.53406024,0.02799193,96.441435],[4.5340597,0.0279902,96.44090196],[4.53405917,0.02798848,96.44036861],[4.53405863,0.02798676,96.43983524],[4.5340581,0.02798504,96.43930213],[4.53405756,0.02798332,96.43876956],[4.53405703,0.0279816,96.43823781],[4.53405649,0.02797988,96.43770715],[4.53405596,0.02797816,96.43717786],[4.53405542,0.02797644,96.43665022],[4.53405489,0.02797472,96.43612446],[4.53405435,0.027973,96.43560068],[4.53405382,0.02797128,96.43507895],[4.53405328,0.02796956,96.43455932],[4.53405275,0.02796784,96.43404186],[4.53405221,0.02796611,96.43352663],[4.53405168,0.02796439,96.43301368],[4.53405114,0.02796267,96.43250309],[4.53405061,0.02796095,96.4319949],[4.53405008,0.02795923,96.43148917],[4.53404954,0.02795751,96.43098598],[4.53404901,0.02795579,96.43048536],[4.53404848,0.02795406,96.42998739],[4.53404795,0.02795234,96.42949211],[4.53404742,0.02795062,96.42899959],[4.53404689,0.0279489,96.42850982],[4.53404636,0.02794718,96.42802252],[4.53404583,0.02794545,96.42753736],[4.5340453,0.02794373,96.42705401],[4.53404477,0.02794201,96.42657226],[4.53404425,0.02794029,96.426092],[4.53404372,0.02793856,96.42561313],[4.53404319,0.02793684,96.42513556],[4.53404266,0.02793512,96.42465919],[4.53404213,0.02793339,96.42418392],[4.5340416,0.02793167,96.42370966],[4.53404108,0.02792995,96.4232363],[4.53404055,0.02792823,96.42276375],[4.53404002,0.0279265,96.42229192],[4.53403949,0.02792478,96.4218207],[4.53403896,0.02792306,96.42135001],[4.53403843,0.02792133,96.42087975],[4.53403791,0.02791961,96.42040982],[4.53403738,0.02791789,96.41994013],[4.53403685,0.02791617,96.41947058],[4.53403632,0.02791444,96.41900109],[4.53403579,0.02791272,96.41853156],[4.53403526,0.027911,96.4180619],[4.53403473,0.02790928,96.41759201],[4.5340342,0.02790756,96.4171218],[4.53403367,0.02790583,96.41665125],[4.53403313,0.02790411,96.41618063],[4.5340326,0.02790239,96.41571039],[4.53403207,0.02790067,96.41524095],[4.53403154,0.02789895,96.41477276],[4.53403101,0.02789722,96.41430613],[4.53403048,0.0278955,96.4138413],[4.53402995,0.02789378,96.4133785],[4.53402942,0.02789206,96.41291794],[4.53402889,0.02789033,96.41245985],[4.53402837,0.02788861,96.41200445],[4.53402784,0.02788689,96.41155195],[4.53402731,0.02788516,96.41110257],[4.53402679,0.02788344,96.41065653],[4.53402627,0.02788172,96.41021404],[4.53402574,0.02787999,96.40977532],[4.53402522,0.02787827,96.40934057],[4.5340247,0.02787654,96.40890991],[4.53402418,0.02787481,96.40848307],[4.53402367,0.02787309,96.40805966],[4.53402315,0.02787136,96.40763922],[4.53402264,0.02786963,96.40722128],[4.53402212,0.02786791,96.40680536],[4.53402161,0.02786618,96.40639099],[4.5340211,0.02786445,96.40597771],[4.53402058,0.02786273,96.40556504],[4.53402007,0.027861,96.40515253],[4.53401956,0.02785927,96.40473971],[4.53401904,0.02785754,96.40432613],[4.53401853,0.02785582,96.40391132],[4.53401801,0.02785409,96.40349484],[4.5340175,0.02785236,96.40307624],[4.53401698,0.02785064,96.40265506],[4.53401647,0.02784891,96.40223086],[4.53401595,0.02784718,96.4018032],[4.53401543,0.02784546,96.40137164],[4.53401491,0.02784373,96.40093574],[4.53401438,0.02784201,96.40049516],[4.53401386,0.02784028,96.40005001],[4.53401333,0.02783856,96.3996005],[4.5340128,0.02783684,96.39914692],[4.53401227,0.02783512,96.39868952],[4.53401174,0.02783339,96.39822859],[4.53401121,0.02783167,96.39776439],[4.53401068,0.02782995,96.39729718],[4.53401015,0.02782823,96.39682723],[4.53400961,0.02782651,96.39635479],[4.53400908,0.02782479,96.39588014],[4.53400854,0.02782307,96.39540353],[4.534008,0.02782135,96.39492522],[4.53400747,0.02781963,96.39444546],[4.53400693,0.02781791,96.39396451],[4.53400639,0.02781619,96.39348262],[4.53400585,0.02781447,96.39300004],[4.53400531,0.02781275,96.39251702],[4.53400478,0.02781103,96.39203369],[4.53400424,0.02780931,96.39155007],[4.5340037,0.02780759,96.39106617],[4.53400316,0.02780587,96.39058201],[4.53400263,0.02780415,96.3900976],[4.53400209,0.02780243,96.38961297],[4.53400155,0.02780071,96.38912812],[4.53400101,0.02779899,96.38864306],[4.53400048,0.02779727,96.38815782],[4.53399994,0.02779555,96.38767241],[4.5339994,0.02779383,96.38718683],[4.53399887,0.02779211,96.38670111],[4.53399833,0.02779039,96.38621525],[4.53399779,0.02778867,96.38572927],[4.53399726,0.02778695,96.38524318],[4.53399672,0.02778523,96.38475692],[4.53399619,0.02778351,96.38427046],[4.53399565,0.02778179,96.38378374],[4.53399512,0.02778007,96.38329671],[4.53399458,0.02777835,96.38280932],[4.53399405,0.02777663,96.38232152],[4.53399351,0.0277749,96.38183324],[4.53399298,0.02777318,96.38134445],[4.53399244,0.02777146,96.38085508],[4.53399191,0.02776974,96.3803651],[4.53399138,0.02776802,96.37987443],[4.53399084,0.0277663,96.37938305],[4.53399031,0.02776458,96.37889088],[4.53398977,0.02776286,96.37839789],[4.53398924,0.02776114,96.37790401],[4.53398871,0.02775942,96.37740921],[4.53398817,0.0277577,96.37691343],[4.53398764,0.02775597,96.37641661],[4.5339871,0.02775425,96.37591871],[4.53398657,0.02775253,96.37541969],[4.53398604,0.02775081,96.37491947],[4.5339855,0.02774909,96.37441801],[4.53398497,0.02774737,96.37391525],[4.53398443,0.02774565,96.37341114],[4.5339839,0.02774393,96.37290562],[4.53398337,0.02774221,96.37239863],[4.53398283,0.02774049,96.37189012],[4.5339823,0.02773876,96.37138003],[4.53398176,0.02773704,96.37086831],[4.53398123,0.02773532,96.3703549],[4.53398069,0.0277336,96.36983976],[4.53398016,0.02773188,96.36932281],[4.53397962,0.02773016,96.36880402],[4.53397909,0.02772844,96.36828333],[4.53397855,0.02772672,96.36776073],[4.53397802,0.027725,96.36723619],[4.53397748,0.02772328,96.36670971],[4.53397695,0.02772156,96.36618128],[4.53397641,0.02771984,96.36565088],[4.53397587,0.02771812,96.36511851],[4.53397534,0.0277164,96.36458414],[4.5339748,0.02771468,96.36404776],[4.53397427,0.02771296,96.36350937],[4.53397373,0.02771124,96.36296894],[4.53397319,0.02770952,96.36242647],[4.53397266,0.0277078,96.36188193],[4.53397212,0.02770608,96.36133532],[4.53397158,0.02770436,96.36078662],[4.53397104,0.02770264,96.36023582],[4.53397051,0.02770092,96.35968289],[4.53396997,0.0276992,96.35912783],[4.53396943,0.02769748,96.35857062],[4.53396889,0.02769576,96.35801125],[4.53396836,0.02769404,96.35744972],[4.53396782,0.02769232,96.35688605],[4.53396728,0.0276906,96.35632026],[4.53396674,0.02768888,96.35575237],[4.53396621,0.02768716,96.35518239],[4.53396567,0.02768544,96.35461034],[4.53396513,0.02768372,96.35403617],[4.53396459,0.027682,96.35345987],[4.53396406,0.02768028,96.35288139],[4.53396352,0.02767856,96.35230071],[4.53396298,0.02767684,96.3517178],[4.53396244,0.02767512,96.35113262],[4.53396191,0.0276734,96.35054516],[4.53396137,0.02767168,96.34995537],[4.53396083,0.02766996,96.34936323],[4.53396029,0.02766824,96.3487687],[4.53395976,0.02766652,96.34817177],[4.53395922,0.0276648,96.34757239],[4.53395868,0.02766308,96.34697054],[4.53395814,0.02766136,96.34636619],[4.53395761,0.02765964,96.3457593],[4.53395707,0.02765792,96.34514985],[4.53395653,0.0276562,96.34453781],[4.53395599,0.02765448,96.34392315],[4.53395546,0.02765276,96.34330583],[4.53395492,0.02765104,96.34268583],[4.53395438,0.02764932,96.34206312],[4.53395385,0.0276476,96.34143767],[4.53395331,0.02764589,96.34080944],[4.53395277,0.02764417,96.34017841],[4.53395223,0.02764245,96.33954454],[4.5339517,0.02764073,96.33890782],[4.53395116,0.02763901,96.3382682],[4.53395062,0.02763729,96.33762566],[4.53395008,0.02763557,96.33698016],[4.53394955,0.02763385,96.33633168],[4.53394901,0.02763213,96.33568019],[4.53394847,0.02763041,96.33502566],[4.53394793,0.02762869,96.33436806],[4.5339474,0.02762697,96.33370735],[4.53394686,0.02762525,96.33304351],[4.53394632,0.02762353,96.33237651],[4.53394579,0.02762181,96.33170631],[4.53394525,0.02762009,96.33103289],[4.53394471,0.02761837,96.33035622],[4.53394417,0.02761665,96.32967627],[4.53394364,0.02761493,96.32899301],[4.5339431,0.02761321,96.3283064],[4.53394256,0.02761149,96.32761642],[4.53394202,0.02760977,96.32692304],[4.53394149,0.02760805,96.32622623],[4.53394095,0.02760633,96.32552595],[4.53394041,0.02760461,96.32482218],[4.53393987,0.02760289,96.32411489],[4.53393934,0.02760117,96.32340405],[4.5339388,0.02759945,96.32268962],[4.53393826,0.02759773,96.32197159],[4.53393772,0.02759601,96.32124991],[4.53393718,0.02759429,96.32052456],[4.53393665,0.02759257,96.3197955],[4.53393611,0.02759085,96.31906272],[4.53393557,0.02758913,96.31832617],[4.53393503,0.02758741,96.31758582],[4.53393449,0.0275857,96.31684165],[4.53393396,0.02758398,96.3160936],[4.53393342,0.02758226,96.31534165],[4.53393288,0.02758054,96.31458576],[4.53393234,0.02757882,96.31382589],[4.5339318,0.0275771,96.313062],[4.53393127,0.02757538,96.31229406],[4.53393073,0.02757366,96.31152203],[4.53393019,0.02757194,96.31074588],[4.53392965,0.02757022,96.30996556],[4.53392911,0.0275685,96.30918104],[4.53392857,0.02756678,96.30839229],[4.53392803,0.02756506,96.30759927],[4.5339275,0.02756334,96.30680194],[4.53392696,0.02756162,96.30600026],[4.53392642,0.0275599,96.3051942],[4.53392588,0.02755819,96.30438371],[4.53392534,0.02755647,96.30356877],[4.5339248,0.02755475,96.30274934],[4.53392426,0.02755303,96.30192537],[4.53392372,0.02755131,96.30109684],[4.53392318,0.02754959,96.3002637],[4.53392264,0.02754787,96.29942592],[4.5339221,0.02754615,96.29858347],[4.53392156,0.02754443,96.29773635],[4.53392102,0.02754272,96.2968846],[4.53392048,0.027541,96.29602823],[4.53391994,0.02753928,96.29516726],[4.5339194,0.02753756,96.29430171],[4.53391886,0.02753584,96.2934316],[4.53391832,0.02753412,96.29255696],[4.53391778,0.0275324,96.2916778],[4.53391724,0.02753068,96.29079414],[4.5339167,0.02752897,96.28990601],[4.53391616,0.02752725,96.28901343],[4.53391562,0.02752553,96.28811641],[4.53391508,0.02752381,96.28721499],[4.53391454,0.02752209,96.28630917],[4.533914,0.02752037,96.28539898],[4.53391346,0.02751865,96.28448445],[4.53391292,0.02751693,96.2835656],[4.53391238,0.02751521,96.28264244],[4.53391184,0.02751349,96.28171501],[4.53391131,0.02751177,96.28078332],[4.53391077,0.02751006,96.27984737],[4.53391023,0.02750834,96.27890714],[4.53390969,0.02750662,96.2779626],[4.53390916,0.0275049,96.27701372],[4.53390862,0.02750318,96.27606048],[4.53390808,0.02750146,96.27510285],[4.53390755,0.02749974,96.27414081],[4.53390701,0.02749802,96.27317433],[4.53390648,0.0274963,96.27220339],[4.53390594,0.02749458,96.27122796],[4.53390541,0.02749286,96.27024801],[4.53390487,0.02749113,96.26926352],[4.53390434,0.02748941,96.26827447],[4.5339038,0.02748769,96.26728083],[4.53390327,0.02748597,96.26628257],[4.53390274,0.02748425,96.26527968],[4.5339022,0.02748253,96.26427212],[4.53390167,0.02748081,96.26325987],[4.53390114,0.02747909,96.26224292],[4.53390061,0.02747737,96.26122122],[4.53390008,0.02747565,96.26019477],[4.53389954,0.02747392,96.25916354],[4.53389901,0.0274722,96.25812749],[4.53389848,0.02747048,96.25708662],[4.53389795,0.02746876,96.25604089],[4.53389742,0.02746704,96.25499028],[4.53389689,0.02746532,96.25393478],[4.53389636,0.02746359,96.25287435],[4.53389583,0.02746187,96.25180897],[4.5338953,0.02746015,96.25073862],[4.53389478,0.02745843,96.24966329],[4.53389425,0.0274567,96.24858293],[4.53389372,0.02745498,96.24749755],[4.53389319,0.02745326,96.24640709],[4.53389266,0.02745154,96.24531146],[4.53389214,0.02744981,96.24421058],[4.53389161,0.02744809,96.24310432],[4.53389108,0.02744637,96.24199259],[4.53389056,0.02744464,96.24087529],[4.53389003,0.02744292,96.2397523],[4.5338895,0.0274412,96.23862356],[4.53388898,0.02743948,96.23748903],[4.53388845,0.02743775,96.23634867],[4.53388792,0.02743603,96.23520243],[4.5338874,0.02743431,96.23405027],[4.53388687,0.02743258,96.23289217],[4.53388634,0.02743086,96.23172807],[4.53388582,0.02742914,96.23055795],[4.53388529,0.02742741,96.22938175],[4.53388477,0.02742569,96.22819944],[4.53388424,0.02742397,96.22701097],[4.53388371,0.02742225,96.22581632],[4.53388319,0.02742052,96.22461543],[4.53388266,0.0274188,96.22340827],[4.53388214,0.02741708,96.2221948],[4.53388161,0.02741535,96.22097501],[4.53388108,0.02741363,96.21974904],[4.53388056,0.02741191,96.21851708],[4.53388003,0.02741018,96.2172793],[4.5338795,0.02740846,96.21603588],[4.53387898,0.02740674,96.214787],[4.53387845,0.02740502,96.21353284],[4.53387792,0.02740329,96.21227357],[4.5338774,0.02740157,96.21100937],[4.53387687,0.02739985,96.20974043],[4.53387634,0.02739812,96.20846691],[4.53387582,0.0273964,96.20718899],[4.53387529,0.02739468,96.20590685],[4.53387476,0.02739296,96.20462067],[4.53387424,0.02739123,96.20333062],[4.53387371,0.02738951,96.20203688],[4.53387318,0.02738779,96.20073961],[4.53387265,0.02738606,96.19943901],[4.53387213,0.02738434,96.19813524],[4.5338716,0.02738262,96.19682847],[4.53387107,0.0273809,96.19551889],[4.53387054,0.02737917,96.19420666],[4.53387001,0.02737745,96.19289195],[4.53386949,0.02737573,96.19157496],[4.53386896,0.02737401,96.19025583],[4.53386843,0.02737229,96.18893476],[4.5338679,0.02737056,96.1876119],[4.53386737,0.02736884,96.18628744],[4.53386684,0.02736712,96.18496154],[4.53386631,0.0273654,96.18363438],[4.53386578,0.02736368,96.18230614],[4.53386525,0.02736195,96.18097697],[4.53386472,0.02736023,96.17964705],[4.53386419,0.02735851,96.17831656],[4.53386366,0.02735679,96.17698566],[4.53386313,0.02735507,96.17565452],[4.5338626,0.02735335,96.17432332],[4.53386207,0.02735162,96.17299222],[4.53386153,0.0273499,96.1716614],[4.533861,0.02734818,96.17033103],[4.53386047,0.02734646,96.16900132],[4.53385994,0.02734474,96.16767248],[4.5338594,0.02734302,96.16634472],[4.53385887,0.0273413,96.16501826],[4.53385834,0.02733958,96.16369333],[4.53385781,0.02733786,96.16237013],[4.53385727,0.02733614,96.16104888],[4.53385674,0.02733442,96.15972982],[4.5338562,0.02733269,96.15841315],[4.53385567,0.02733097,96.1570991],[4.53385513,0.02732925,96.15578789],[4.5338546,0.02732753,96.15447974],[4.53385407,0.02732581,96.15317487],[4.53385353,0.02732409,96.1518735],[4.533853,0.02732237,96.15057585],[4.53385246,0.02732065,96.14928216],[4.53385193,0.02731893,96.14799263],[4.53385139,0.02731721,96.14670749],[4.53385086,0.02731549,96.14542697],[4.53385032,0.02731377,96.14415128],[4.53384979,0.02731205,96.14288066],[4.53384925,0.02731033,96.14161533],[4.53384871,0.02730861,96.14035551],[4.53384818,0.02730689,96.13910142],[4.53384764,0.02730517,96.13785329],[4.53384711,0.02730345,96.13661135],[4.53384657,0.02730173,96.13537581],[4.53384604,0.02730001,96.13414681],[4.5338455,0.02729829,96.13292451],[4.53384497,0.02729657,96.13170905],[4.53384443,0.02729485,96.13050056],[4.5338439,0.02729313,96.12929922],[4.53384336,0.02729141,96.1281052],[4.53384282,0.02728969,96.12691868],[4.53384229,0.02728797,96.12573982],[4.53384175,0.02728625,96.12456881],[4.53384122,0.02728453,96.12340581],[4.53384068,0.02728281,96.12225099],[4.53384014,0.02728109,96.12110454],[4.53383961,0.02727937,96.11996663],[4.53383907,0.02727765,96.11883742],[4.53383853,0.02727593,96.11771709],[4.533838,0.02727421,96.11660581],[4.53383746,0.02727249,96.11550376],[4.53383692,0.02727077,96.11441111],[4.53383639,0.02726905,96.11332803],[4.53383585,0.02726734,96.1122547],[4.53383531,0.02726562,96.11119128],[4.53383477,0.0272639,96.11013795],[4.53383424,0.02726218,96.10909489],[4.5338337,0.02726046,96.10806226],[4.53383316,0.02725874,96.10704024],[4.53383262,0.02725702,96.10602901],[4.53383208,0.0272553,96.10502876],[4.53383155,0.02725358,96.10403972],[4.53383101,0.02725186,96.10306213],[4.53383047,0.02725014,96.1020962],[4.53382993,0.02724843,96.10114218],[4.53382939,0.02724671,96.10020029],[4.53382885,0.02724499,96.09927076],[4.53382831,0.02724327,96.09835382],[4.53382777,0.02724155,96.09744969],[4.53382723,0.02723983,96.09655862],[4.53382669,0.02723811,96.09568084],[4.53382615,0.02723639,96.09481656],[4.53382561,0.02723468,96.09396603],[4.53382507,0.02723296,96.09312947],[4.53382453,0.02723124,96.09230712],[4.53382399,0.02722952,96.09149921],[4.53382345,0.0272278,96.09070596],[4.53382291,0.02722608,96.08992761],[4.53382237,0.02722436,96.0891644],[4.53382183,0.02722265,96.08841654],[4.53382129,0.02722093,96.08768427],[4.53382075,0.02721921,96.08696761],[4.53382022,0.02721749,96.08626638],[4.53381968,0.02721577,96.0855804],[4.53381914,0.02721405,96.08490948],[4.5338186,0.02721233,96.08425345],[4.53381806,0.02721061,96.08361212],[4.53381752,0.0272089,96.0829853],[4.53381698,0.02720718,96.0823728],[4.53381644,0.02720546,96.08177446],[4.5338159,0.02720374,96.08119006],[4.53381537,0.02720202,96.08061939],[4.53381483,0.0272003,96.08006221],[4.53381429,0.02719858,96.0795183],[4.53381375,0.02719686,96.07898743],[4.53381321,0.02719514,96.07846935],[4.53381268,0.02719342,96.07796386],[4.53381214,0.0271917,96.0774707],[4.5338116,0.02718998,96.07698965],[4.53381107,0.02718827,96.07652047],[4.53381053,0.02718655,96.07606295],[4.53380999,0.02718483,96.07561683],[4.53380946,0.02718311,96.0751819],[4.53380892,0.02718139,96.07475791],[4.53380839,0.02717967,96.07434465],[4.53380785,0.02717795,96.07394186],[4.53380731,0.02717623,96.07354933],[4.53380678,0.02717451,96.07316682],[4.53380624,0.02717279,96.0727941],[4.53380571,0.02717107,96.07243093],[4.53380517,0.02716935,96.07207709],[4.53380464,0.02716763,96.07173233],[4.5338041,0.02716591,96.07139643],[4.53380357,0.02716419,96.07106916],[4.53380303,0.02716247,96.07075026],[4.5338025,0.02716075,96.07043951],[4.53380196,0.02715903,96.07013667],[4.53380143,0.02715731,96.06984151],[4.5338009,0.02715559,96.06955377],[4.53380036,0.02715387,96.06927323],[4.53379983,0.02715215,96.06899966],[4.53379929,0.02715042,96.06873281],[4.53379876,0.0271487,96.06847244],[4.53379823,0.02714698,96.06821833],[4.53379769,0.02714526,96.06797023],[4.53379716,0.02714354,96.0677279],[4.53379663,0.02714182,96.06749112],[4.53379609,0.0271401,96.06725964],[4.53379556,0.02713838,96.06703323],[4.53379503,0.02713666,96.06681165],[4.53379449,0.02713494,96.06659467],[4.53379396,0.02713322,96.06638206],[4.53379343,0.0271315,96.06617356],[4.53379289,0.02712978,96.06596896],[4.53379236,0.02712806,96.06576801],[4.53379183,0.02712634,96.06557048],[4.5337913,0.02712462,96.06537614],[4.53379076,0.0271229,96.06518477],[4.53379023,0.02712117,96.06499612],[4.5337897,0.02711945,96.06480996],[4.53378916,0.02711773,96.06462608],[4.53378863,0.02711601,96.06444424],[4.5337881,0.02711429,96.0642642],[4.53378757,0.02711257,96.06408575],[4.53378703,0.02711085,96.06390864],[4.5337865,0.02710913,96.06373266],[4.53378597,0.02710741,96.06355759],[4.53378544,0.02710569,96.06338319],[4.5337849,0.02710397,96.06320924],[4.53378437,0.02710225,96.06303552],[4.53378384,0.02710053,96.06286181],[4.53378331,0.0270988,96.06268787],[4.53378277,0.02709708,96.06251349],[4.53378224,0.02709536,96.06233845],[4.53378171,0.02709364,96.06216251],[4.53378118,0.02709192,96.06198546],[4.53378065,0.0270902,96.06180708],[4.53378011,0.02708848,96.06162712],[4.53377958,0.02708676,96.06144539],[4.53377905,0.02708504,96.06126164],[4.53377852,0.02708332,96.06107566],[4.53377798,0.0270816,96.06088723],[4.53377745,0.02707988,96.06069612],[4.53377692,0.02707815,96.0605021],[4.53377639,0.02707643,96.06030496],[4.53377585,0.02707471,96.06010447],[4.53377532,0.02707299,96.05990041],[4.53377479,0.02707127,96.05969255],[4.53377425,0.02706955,96.05948068],[4.53377372,0.02706783,96.05926457],[4.53377319,0.02706611,96.059044],[4.53377266,0.02706439,96.05881873],[4.53377212,0.02706267,96.05858857],[4.53377159,0.02706095,96.05835327],[4.53377105,0.02705923,96.05811262],[4.53377052,0.02705751,96.05786639],[4.53376999,0.02705579,96.05761437],[4.53376945,0.02705407,96.05735632],[4.53376892,0.02705235,96.05709203],[4.53376838,0.02705063,96.05682128],[4.53376785,0.02704891,96.05654384],[4.53376731,0.02704719,96.0562595],[4.53376678,0.02704547,96.05596802],[4.53376624,0.02704375,96.05566919],[4.53376571,0.02704203,96.05536278],[4.53376517,0.02704031,96.05504858],[4.53376464,0.02703859,96.05472636],[4.5337641,0.02703687,96.0543959],[4.53376357,0.02703515,96.05405698],[4.53376303,0.02703343,96.05370937],[4.53376249,0.02703171,96.05335286],[4.53376195,0.02702999,96.05298722],[4.53376142,0.02702827,96.05261224],[4.53376088,0.02702655,96.05222768],[4.53376034,0.02702483,96.05183333],[4.5337598,0.02702312,96.05142896],[4.53375926,0.0270214,96.05101437],[4.53375873,0.02701968,96.05058931],[4.53375819,0.02701796,96.05015358],[4.53375765,0.02701624,96.04970694],[4.53375711,0.02701452,96.04924919],[4.53375657,0.0270128,96.04878009],[4.53375603,0.02701109,96.04829943],[4.53375549,0.02700937,96.04780699],[4.53375495,0.02700765,96.04730253],[4.53375441,0.02700593,96.04678585],[4.53375387,0.02700421,96.04625672],[4.53375333,0.02700249,96.04571492],[4.53375279,0.02700078,96.04516022],[4.53375225,0.02699906,96.04459241],[4.53375171,0.02699734,96.04401127],[4.53375117,0.02699562,96.04341657],[4.53375063,0.02699391,96.04280809],[4.5337501,0.02699219,96.04218561],[4.53374956,0.02699047,96.04154891],[4.53374902,0.02698875,96.04089776],[4.53374848,0.02698703,96.04023195],[4.53374794,0.02698531,96.03955125],[4.53374741,0.02698359,96.03885545],[4.53374687,0.02698187,96.03814431],[4.53374634,0.02698015,96.03741764],[4.5337458,0.02697843,96.03667539],[4.53374527,0.02697671,96.03591776],[4.53374473,0.02697499,96.03514492],[4.5337442,0.02697327,96.03435704],[4.53374367,0.02697155,96.03355432],[4.53374314,0.02696983,96.03273693],[4.53374261,0.02696811,96.03190505],[4.53374208,0.02696639,96.03105886],[4.53374155,0.02696466,96.03019854],[4.53374102,0.02696294,96.02932427],[4.53374049,0.02696122,96.02843624],[4.53373997,0.0269595,96.02753462],[4.53373944,0.02695777,96.02661959],[4.53373892,0.02695605,96.02569133],[4.53373839,0.02695433,96.02475002],[4.53373787,0.0269526,96.02379584],[4.53373735,0.02695088,96.02282898],[4.53373683,0.02694916,96.0218496],[4.5337363,0.02694743,96.02085789],[4.53373578,0.02694571,96.01985403],[4.53373526,0.02694398,96.01883819],[4.53373474,0.02694226,96.01781057],[4.53373422,0.02694053,96.01677132],[4.5337337,0.02693881,96.01572064],[4.53373319,0.02693708,96.01465869],[4.53373267,0.02693536,96.01358567],[4.53373215,0.02693363,96.01250174],[4.53373163,0.02693191,96.01140709],[4.53373111,0.02693018,96.01030192],[4.53373059,0.02692846,96.0091864],[4.53373008,0.02692673,96.00806074],[4.53372956,0.02692501,96.00692513],[4.53372904,0.02692328,96.00577974],[4.53372852,0.02692156,96.00462479],[4.533728,0.02691983,96.00346045],[4.53372748,0.0269181,96.00228692],[4.53372696,0.02691638,96.00110439],[4.53372644,0.02691465,95.99991305],[4.53372592,0.02691293,95.9987131],[4.5337254,0.02691121,95.99750471],[4.53372488,0.02690948,95.99628808],[4.53372436,0.02690776,95.99506337],[4.53372384,0.02690603,95.99383078],[4.53372332,0.02690431,95.99259048],[4.5337228,0.02690258,95.99134266],[4.53372228,0.02690086,95.9900875],[4.53372176,0.02689913,95.98882517],[4.53372124,0.02689741,95.98755587],[4.53372071,0.02689569,95.98627976],[4.53372019,0.02689396,95.98499704],[4.53371967,0.02689224,95.98370788],[4.53371915,0.02689051,95.98241247],[4.53371862,0.02688879,95.98111098],[4.5337181,0.02688707,95.9798036],[4.53371758,0.02688534,95.97849051],[4.53371706,0.02688362,95.97717189],[4.53371653,0.02688189,95.97584791],[4.53371601,0.02688017,95.97451878],[4.53371549,0.02687845,95.97318465],[4.53371496,0.02687672,95.97184572],[4.53371444,0.026875,95.97050217],[4.53371392,0.02687328,95.96915418],[4.53371339,0.02687155,95.96780192],[4.53371287,0.02686983,95.96644559],[4.53371235,0.0268681,95.96508535],[4.53371182,0.02686638,95.9637214],[4.5337113,0.02686466,95.96235392],[4.53371078,0.02686293,95.96098308],[4.53371025,0.02686121,95.95960907],[4.53370973,0.02685949,95.95823207],[4.5337092,0.02685776,95.95685225],[4.53370868,0.02685604,95.95546981],[4.53370816,0.02685432,95.95408492],[4.53370764,0.02685259,95.95269777],[4.53370711,0.02685087,95.95130853],[4.53370659,0.02684914,95.94991739],[4.53370607,0.02684742,95.94852453],[4.53370554,0.0268457,95.94713013],[4.53370502,0.02684397,95.94573437],[4.5337045,0.02684225,95.94433743],[4.53370398,0.02684052,95.94293951],[4.53370345,0.0268388,95.94154076],[4.53370293,0.02683707,95.94014139],[4.53370241,0.02683535,95.93874157],[4.53370189,0.02683363,95.93734148],[4.53370137,0.0268319,95.9359413],[4.53370085,0.02683018,95.93454122],[4.53370033,0.02682845,95.93314141],[4.53369981,0.02682673,95.93174207],[4.53369928,0.026825,95.93034337],[4.53369876,0.02682328,95.92894549],[4.53369824,0.02682155,95.92754861],[4.53369773,0.02681983,95.92615292],[4.53369721,0.0268181,95.9247586],[4.53369669,0.02681638,95.92336584],[4.53369617,0.02681465,95.9219748],[4.53369565,0.02681293,95.92058568],[4.53369513,0.0268112,95.91919866],[4.53369461,0.02680948,95.91781392],[4.53369409,0.02680775,95.91643164],[4.53369357,0.02680603,95.915052],[4.53369306,0.0268043,95.91367519],[4.53369254,0.02680258,95.91230139],[4.53369202,0.02680085,95.91093078],[4.5336915,0.02679913,95.90956355],[4.53369098,0.0267974,95.90819987],[4.53369046,0.02679568,95.90683992],[4.53368994,0.02679395,95.9054839],[4.53368942,0.02679223,95.90413199],[4.5336889,0.0267905,95.90278436],[4.53368838,0.02678878,95.9014412],[4.53368786,0.02678705,95.90010269],[4.53368734,0.02678533,95.89876902],[4.53368681,0.0267836,95.89744036],[4.53368629,0.02678188,95.89611691],[4.53368577,0.02678016,95.89479884],[4.53368524,0.02677843,95.89348633],[4.53368472,0.02677671,95.89217958],[4.53368419,0.02677498,95.89087875],[4.53368367,0.02677326,95.88958405],[4.53368314,0.02677154,95.88829564],[4.53368262,0.02676981,95.88701371],[4.5336821,0.02676809,95.88573845],[4.53368157,0.02676637,95.88447004],[4.53368105,0.02676464,95.88320866],[4.53368053,0.02676292,95.8819545],[4.53368001,0.02676119,95.88070774],[4.53367949,0.02675947,95.87946856],[4.53367898,0.02675774,95.87823714],[4.53367847,0.02675601,95.87701368],[4.53367796,0.02675428,95.87579835],[4.53367745,0.02675256,95.87459134],[4.53367694,0.02675083,95.87339279],[4.53367643,0.0267491,95.87220269],[4.53367591,0.02674737,95.87102099],[4.53367538,0.02674565,95.86984762],[4.53367485,0.02674393,95.86868254],[4.5336743,0.02674221,95.86752568],[4.53367405,0.02674143,95.86700215],[4.53382537,0.02669305,96.18698408],[4.53382562,0.02669384,96.18730152],[4.53382616,0.02669556,96.18799357],[4.5338267,0.02669728,96.1886779],[4.53382724,0.026699,96.18935476],[4.53382779,0.02670071,96.1900244],[4.53382833,0.02670243,96.19068708],[4.53382887,0.02670415,96.19134305],[4.53382942,0.02670587,96.19199258],[4.53382996,0.02670759,96.19263596],[4.5338305,0.02670931,96.19327351],[4.53383105,0.02671103,96.19390552],[4.53383159,0.02671275,96.19453231],[4.53383213,0.02671447,96.19515418],[4.53383267,0.02671619,96.19577144],[4.53383322,0.02671791,96.19638439],[4.53383376,0.02671963,96.19699332],[4.5338343,0.02672135,96.19759855],[4.53383484,0.02672307,96.19820036],[4.53383539,0.02672479,96.19879906],[4.53383593,0.02672651,96.19939493],[4.53383647,0.02672823,96.19998828],[4.53383701,0.02672995,96.20057938],[4.53383756,0.02673167,96.20116854],[4.5338381,0.02673339,96.20175603],[4.53383864,0.02673511,96.20234214],[4.53383918,0.02673683,96.20292715],[4.53383972,0.02673855,96.20351134],[4.53384027,0.02674027,96.204095],[4.53384081,0.02674199,96.20467839],[4.53384135,0.02674371,96.20526174],[4.53384189,0.02674543,96.20584515],[4.53384243,0.02674715,96.20642863],[4.53384298,0.02674887,96.20701223],[4.53384352,0.02675059,96.20759597],[4.53384406,0.02675231,96.2081799],[4.5338446,0.02675403,96.20876404],[4.53384514,0.02675575,96.20934844],[4.53384568,0.02675747,96.20993312],[4.53384623,0.02675919,96.21051812],[4.53384677,0.02676091,96.21110347],[4.53384731,0.02676263,96.21168921],[4.53384785,0.02676435,96.21227538],[4.53384839,0.02676607,96.21286199],[4.53384893,0.02676779,96.21344909],[4.53384947,0.02676951,96.21403671],[4.53385002,0.02677123,96.21462489],[4.53385056,0.02677295,96.21521366],[4.5338511,0.02677467,96.21580304],[4.53385164,0.02677639,96.21639308],[4.53385218,0.02677811,96.21698381],[4.53385272,0.02677983,96.21757525],[4.53385326,0.02678155,96.21816746],[4.5338538,0.02678327,96.21876044],[4.53385434,0.02678499,96.21935425],[4.53385489,0.02678671,96.21994891],[4.53385543,0.02678843,96.22054445],[4.53385597,0.02679015,96.22114092],[4.53385651,0.02679187,96.22173834],[4.53385705,0.02679359,96.22233674],[4.53385759,0.02679531,96.22293616],[4.53385813,0.02679703,96.22353663],[4.53385867,0.02679875,96.22413819],[4.53385921,0.02680047,96.22474087],[4.53385975,0.02680219,96.22534469],[4.53386029,0.02680391,96.22594971],[4.53386083,0.02680563,96.22655593],[4.53386137,0.02680735,96.22716339],[4.53386191,0.02680907,96.22777209],[4.53386245,0.02681079,96.22838203],[4.53386299,0.02681251,96.22899324],[4.53386353,0.02681423,96.22960571],[4.53386407,0.02681595,96.23021948],[4.53386461,0.02681767,96.23083453],[4.53386515,0.02681939,96.2314509],[4.53386569,0.02682111,96.23206859],[4.53386623,0.02682283,96.23268761],[4.53386677,0.02682455,96.23330798],[4.53386731,0.02682628,96.23392971],[4.53386785,0.026828,96.23455282],[4.53386839,0.02682972,96.23517731],[4.53386893,0.02683144,96.23580321],[4.53386947,0.02683316,96.23643054],[4.53387001,0.02683488,96.23705929],[4.53387055,0.0268366,96.2376895],[4.53387109,0.02683832,96.23832118],[4.53387163,0.02684004,96.23895435],[4.53387217,0.02684176,96.23958901],[4.53387271,0.02684348,96.24022519],[4.53387325,0.0268452,96.24086291],[4.53387378,0.02684692,96.24150218],[4.53387432,0.02684864,96.24214303],[4.53387486,0.02685037,96.24278546],[4.5338754,0.02685209,96.24342951],[4.53387594,0.02685381,96.24407518],[4.53387648,0.02685553,96.2447225],[4.53387702,0.02685725,96.24537148],[4.53387756,0.02685897,96.24602215],[4.5338781,0.02686069,96.24667453],[4.53387863,0.02686241,96.24732863],[4.53387917,0.02686413,96.24798448],[4.53387971,0.02686585,96.2486421],[4.53388025,0.02686757,96.24930151],[4.53388079,0.0268693,96.24996272],[4.53388133,0.02687102,96.25062577],[4.53388186,0.02687274,96.25129066],[4.5338824,0.02687446,96.25195743],[4.53388294,0.02687618,96.25262609],[4.53388348,0.0268779,96.25329667],[4.53388402,0.02687962,96.25396919],[4.53388455,0.02688134,96.25464366],[4.53388509,0.02688306,96.25532012],[4.53388563,0.02688479,96.25599859],[4.53388617,0.02688651,96.25667911],[4.53388671,0.02688823,96.25736176],[4.53388724,0.02688995,96.25804658],[4.53388778,0.02689167,96.25873363],[4.53388832,0.02689339,96.25942297],[4.53388886,0.02689511,96.26011466],[4.53388939,0.02689683,96.26080875],[4.53388993,0.02689856,96.2615053],[4.53389047,0.02690028,96.26220437],[4.53389101,0.026902,96.26290601],[4.53389154,0.02690372,96.26361027],[4.53389208,0.02690544,96.26431721],[4.53389262,0.02690716,96.26502689],[4.53389315,0.02690888,96.26573936],[4.53389369,0.02691061,96.26645468],[4.53389423,0.02691233,96.26717289],[4.53389477,0.02691405,96.26789406],[4.5338953,0.02691577,96.26861824],[4.53389584,0.02691749,96.26934548],[4.53389638,0.02691921,96.27007583],[4.53389691,0.02692093,96.27080935],[4.53389745,0.02692266,96.2715461],[4.53389799,0.02692438,96.27228612],[4.53389852,0.0269261,96.27302947],[4.53389906,0.02692782,96.2737762],[4.5338996,0.02692954,96.27452637],[4.53390013,0.02693126,96.27528003],[4.53390067,0.02693299,96.27603723],[4.53390121,0.02693471,96.27679797],[4.53390174,0.02693643,96.27756221],[4.53390228,0.02693815,96.27832992],[4.53390282,0.02693987,96.27910105],[4.53390335,0.02694159,96.27987555],[4.53390389,0.02694331,96.28065338],[4.53390443,0.02694504,96.28143451],[4.53390496,0.02694676,96.28221889],[4.5339055,0.02694848,96.28300647],[4.53390604,0.0269502,96.28379721],[4.53390657,0.02695192,96.28459108],[4.53390711,0.02695364,96.28538803],[4.53390765,0.02695536,96.28618801],[4.53390818,0.02695708,96.28699099],[4.53390872,0.0269588,96.28779692],[4.53390926,0.02696053,96.28860576],[4.53390979,0.02696225,96.28941747],[4.53391033,0.02696397,96.29023201],[4.53391087,0.02696569,96.29104933],[4.5339114,0.02696741,96.2918694],[4.53391194,0.02696913,96.29269217],[4.53391248,0.02697086,96.2935176],[4.53391301,0.02697258,96.29434565],[4.53391355,0.0269743,96.29517628],[4.53391409,0.02697602,96.29600944],[4.53391462,0.02697774,96.29684507],[4.53391516,0.02697946,96.29768311],[4.5339157,0.02698118,96.29852351],[4.53391624,0.02698291,96.2993662],[4.53391677,0.02698463,96.30021113],[4.53391731,0.02698635,96.30105823],[4.53391785,0.02698807,96.30190746],[4.53391839,0.02698979,96.30275875],[4.53391892,0.02699151,96.30361204],[4.53391946,0.02699323,96.30446728],[4.53392,0.02699496,96.3053244],[4.53392054,0.02699668,96.30618335],[4.53392107,0.0269984,96.30704406],[4.53392161,0.02700012,96.30790649],[4.53392215,0.02700184,96.30877057],[4.53392269,0.02700356,96.30963624],[4.53392322,0.02700528,96.31050345],[4.53392376,0.027007,96.31137213],[4.5339243,0.02700873,96.31224223],[4.53392484,0.02701045,96.31311369],[4.53392538,0.02701217,96.31398644],[4.53392591,0.02701389,96.31486043],[4.53392645,0.02701561,96.31573561],[4.53392699,0.02701733,96.31661191],[4.53392753,0.02701905,96.31748927],[4.53392807,0.02702077,96.31836763],[4.5339286,0.02702249,96.31924694],[4.53392914,0.02702422,96.32012714],[4.53392968,0.02702594,96.32100816],[4.53393022,0.02702766,96.32188995],[4.53393076,0.02702938,96.32277244],[4.53393129,0.0270311,96.32365559],[4.53393183,0.02703282,96.32453932],[4.53393237,0.02703454,96.32542358],[4.53393291,0.02703626,96.32630831],[4.53393345,0.02703799,96.32719345],[4.53393398,0.02703971,96.32807894],[4.53393452,0.02704143,96.32896473],[4.53393506,0.02704315,96.32985074],[4.5339356,0.02704487,96.33073692],[4.53393614,0.02704659,96.33162321],[4.53393667,0.02704831,96.33250956],[4.53393721,0.02705003,96.33339589],[4.53393775,0.02705175,96.33428216],[4.53393829,0.02705348,96.33516829],[4.53393882,0.0270552,96.33605424],[4.53393936,0.02705692,96.33693993],[4.5339399,0.02705864,96.33782532],[4.53394044,0.02706036,96.33871033],[4.53394098,0.02706208,96.33959492],[4.53394151,0.0270638,96.34047901],[4.53394205,0.02706552,96.34136255],[4.53394259,0.02706725,96.34224548],[4.53394313,0.02706897,96.34312774],[4.53394366,0.02707069,96.34400926],[4.5339442,0.02707241,96.34488999],[4.53394474,0.02707413,96.34576986],[4.53394528,0.02707585,96.34664882],[4.53394581,0.02707757,96.34752681],[4.53394635,0.02707929,96.34840376],[4.53394689,0.02708102,96.34927961],[4.53394743,0.02708274,96.3501543],[4.53394796,0.02708446,96.35102778],[4.5339485,0.02708618,96.35189997],[4.53394904,0.0270879,96.35277083],[4.53394958,0.02708962,96.35364029],[4.53395011,0.02709134,96.35450829],[4.53395065,0.02709307,96.3553748],[4.53395119,0.02709479,96.35623982],[4.53395172,0.02709651,96.35710335],[4.53395226,0.02709823,96.3579654],[4.5339528,0.02709995,96.35882597],[4.53395333,0.02710167,96.35968506],[4.53395387,0.0271034,96.36054268],[4.5339544,0.02710512,96.36139883],[4.53395494,0.02710684,96.36225352],[4.53395548,0.02710856,96.36310675],[4.53395601,0.02711028,96.36395852],[4.53395655,0.027112,96.36480886],[4.53395709,0.02711373,96.36565775],[4.53395762,0.02711545,96.36650522],[4.53395816,0.02711717,96.36735127],[4.53395869,0.02711889,96.3681959],[4.53395923,0.02712061,96.36903912],[4.53395977,0.02712233,96.36988095],[4.5339603,0.02712406,96.37072139],[4.53396084,0.02712578,96.37156045],[4.53396138,0.0271275,96.37239814],[4.53396191,0.02712922,96.37323447],[4.53396245,0.02713094,96.37406946],[4.53396298,0.02713266,96.3749031],[4.53396352,0.02713439,96.37573541],[4.53396406,0.02713611,96.37656641],[4.53396459,0.02713783,96.3773961],[4.53396513,0.02713955,96.37822449],[4.53396567,0.02714127,96.37905159],[4.5339662,0.02714299,96.37987741],[4.53396674,0.02714471,96.38070196],[4.53396728,0.02714644,96.38152526],[4.53396782,0.02714816,96.38234725],[4.53396835,0.02714988,96.38316786],[4.53396889,0.0271516,96.38398698],[4.53396943,0.02715332,96.38480452],[4.53396997,0.02715504,96.3856204],[4.5339705,0.02715676,96.38643451],[4.53397104,0.02715848,96.38724677],[4.53397158,0.02716021,96.38805707],[4.53397212,0.02716193,96.38886532],[4.53397266,0.02716365,96.38967143],[4.5339732,0.02716537,96.3904753],[4.53397373,0.02716709,96.39127683],[4.53397427,0.02716881,96.39207592],[4.53397481,0.02717053,96.39287248],[4.53397535,0.02717225,96.3936664],[4.53397589,0.02717397,96.3944576],[4.53397643,0.0271757,96.39524601],[4.53397696,0.02717742,96.39603164],[4.5339775,0.02717914,96.39681447],[4.53397804,0.02718086,96.39759451],[4.53397858,0.02718258,96.39837175],[4.53397912,0.0271843,96.39914619],[4.53397965,0.02718602,96.39991782],[4.53398019,0.02718774,96.40068665],[4.53398073,0.02718946,96.40145265],[4.53398127,0.02719118,96.40221584],[4.53398181,0.02719291,96.40297621],[4.53398234,0.02719463,96.40373375],[4.53398288,0.02719635,96.40448846],[4.53398342,0.02719807,96.40524034],[4.53398395,0.02719979,96.40598938],[4.53398449,0.02720151,96.40673558],[4.53398503,0.02720323,96.40747893],[4.53398557,0.02720496,96.40821944],[4.5339861,0.02720668,96.40895709],[4.53398664,0.0272084,96.40969189],[4.53398717,0.02721012,96.41042384],[4.53398771,0.02721184,96.41115293],[4.53398824,0.02721356,96.41187917],[4.53398878,0.02721529,96.41260254],[4.53398931,0.02721701,96.41332305],[4.53398985,0.02721873,96.4140407],[4.53399038,0.02722045,96.41475548],[4.53399092,0.02722218,96.41546741],[4.53399145,0.0272239,96.41617647],[4.53399199,0.02722562,96.41688268],[4.53399252,0.02722734,96.41758602],[4.53399305,0.02722907,96.41828651],[4.53399358,0.02723079,96.41898414],[4.53399412,0.02723251,96.41967893],[4.53399465,0.02723423,96.42037086],[4.53399518,0.02723596,96.42105995],[4.53399571,0.02723768,96.4217462],[4.53399625,0.0272394,96.42242961],[4.53399678,0.02724113,96.42311019],[4.53399731,0.02724285,96.42378795],[4.53399785,0.02724457,96.42446289],[4.53399838,0.02724629,96.42513502],[4.53399891,0.02724802,96.42580435],[4.53399945,0.02724974,96.42647089],[4.53399998,0.02725146,96.42713463],[4.53400051,0.02725318,96.4277956],[4.53400105,0.02725491,96.4284538],[4.53400158,0.02725663,96.42910925],[4.53400212,0.02725835,96.42976195],[4.53400265,0.02726007,96.43041191],[4.53400319,0.02726179,96.43105916],[4.53400373,0.02726351,96.43170369],[4.53400427,0.02726523,96.43234553],[4.5340048,0.02726696,96.43298468],[4.53400534,0.02726868,96.43362121],[4.53400588,0.0272704,96.43425521],[4.53400642,0.02727212,96.43488677],[4.53400696,0.02727384,96.435516],[4.5340075,0.02727556,96.43614297],[4.53400804,0.02727728,96.4367678],[4.53400858,0.027279,96.43739057],[4.53400912,0.02728072,96.43801138],[4.53400966,0.02728244,96.43863033],[4.5340102,0.02728416,96.4392475],[4.53401074,0.02728588,96.439863],[4.53401128,0.0272876,96.44047691],[4.53401182,0.02728932,96.44108932],[4.53401236,0.02729104,96.44170034],[4.5340129,0.02729276,96.44231005],[4.53401344,0.02729448,96.44291854],[4.53401398,0.02729621,96.44352591],[4.53401452,0.02729793,96.44413224],[4.53401505,0.02729965,96.44473764],[4.53401559,0.02730137,96.44534217],[4.53401613,0.02730309,96.44594594],[4.53401666,0.02730481,96.44654904],[4.5340172,0.02730653,96.44715156],[4.53401773,0.02730826,96.44775357],[4.53401827,0.02730998,96.44835517],[4.5340188,0.0273117,96.44895645],[4.53401934,0.02731342,96.4495575],[4.53401987,0.02731514,96.45015839],[4.5340204,0.02731687,96.45075922],[4.53402094,0.02731859,96.45136008],[4.53402147,0.02732031,96.45196103],[4.534022,0.02732204,96.45256218],[4.53402254,0.02732376,96.4531636],[4.53402307,0.02732548,96.45376538],[4.5340236,0.0273272,96.4543676],[4.53402413,0.02732893,96.45497034],[4.53402467,0.02733065,96.45557368],[4.5340252,0.02733237,96.45617771],[4.53402573,0.0273341,96.45678251],[4.53402626,0.02733582,96.45738815],[4.53402679,0.02733754,96.45799472],[4.53402733,0.02733926,96.4586023],[4.53402786,0.02734099,96.45921096],[4.53402839,0.02734271,96.45982078],[4.53402892,0.02734443,96.46043184],[4.53402946,0.02734616,96.46104423],[4.53402999,0.02734788,96.461658],[4.53403052,0.0273496,96.46227326],[4.53403106,0.02735132,96.46289006],[4.53403159,0.02735305,96.46350848],[4.53403212,0.02735477,96.46412861],[4.53403266,0.02735649,96.46475051],[4.53403319,0.02735821,96.46537426],[4.53403373,0.02735993,96.46599994],[4.53403426,0.02736166,96.46662762],[4.5340348,0.02736338,96.46725737],[4.53403534,0.0273651,96.46788926],[4.53403587,0.02736682,96.46852338],[4.53403641,0.02736854,96.46915978],[4.53403695,0.02737026,96.46979855],[4.53403749,0.02737198,96.4704397],[4.53403802,0.02737371,96.47108325],[4.53403856,0.02737543,96.47172924],[4.5340391,0.02737715,96.47237768],[4.53403964,0.02737887,96.47302858],[4.53404018,0.02738059,96.47368198],[4.53404071,0.02738231,96.4743379],[4.53404125,0.02738403,96.47499634],[4.53404179,0.02738575,96.47565734],[4.53404233,0.02738747,96.47632088],[4.53404287,0.02738919,96.47698694],[4.53404341,0.02739091,96.47765547],[4.53404395,0.02739264,96.47832646],[4.53404449,0.02739436,96.47899987],[4.53404502,0.02739608,96.47967566],[4.53404556,0.0273978,96.48035381],[4.5340461,0.02739952,96.48103428],[4.53404664,0.02740124,96.48171705],[4.53404717,0.02740296,96.48240209],[4.53404771,0.02740468,96.48308936],[4.53404824,0.02740641,96.48377884],[4.53404878,0.02740813,96.4844705],[4.53404932,0.02740985,96.48516431],[4.53404985,0.02741157,96.48586024],[4.53405038,0.02741329,96.48655826],[4.53405092,0.02741502,96.48725835],[4.53405145,0.02741674,96.48796048],[4.53405199,0.02741846,96.48866461],[4.53405252,0.02742018,96.48937073],[4.53405305,0.02742191,96.49007881],[4.53405359,0.02742363,96.49078881],[4.53405412,0.02742535,96.49150072],[4.53405465,0.02742707,96.49221451],[4.53405518,0.0274288,96.49293014],[4.53405572,0.02743052,96.4936476],[4.53405625,0.02743224,96.49436686],[4.53405678,0.02743396,96.4950879],[4.53405731,0.02743569,96.49581068],[4.53405784,0.02743741,96.49653519],[4.53405838,0.02743913,96.4972614],[4.53405891,0.02744086,96.49798928],[4.53405944,0.02744258,96.49871881],[4.53405997,0.0274443,96.49944997],[4.5340605,0.02744603,96.50018272],[4.53406103,0.02744775,96.50091706],[4.53406157,0.02744947,96.50165294],[4.5340621,0.02745119,96.50239036],[4.53406263,0.02745292,96.50312928],[4.53406316,0.02745464,96.50386968],[4.53406369,0.02745636,96.50461154],[4.53406423,0.02745809,96.50535484],[4.53406476,0.02745981,96.50609954],[4.53406529,0.02746153,96.50684564],[4.53406582,0.02746325,96.50759309],[4.53406636,0.02746498,96.5083419],[4.53406689,0.0274667,96.50909202],[4.53406742,0.02746842,96.50984343],[4.53406796,0.02747015,96.51059612],[4.53406849,0.02747187,96.51135006],[4.53406902,0.02747359,96.51210523],[4.53406955,0.02747531,96.5128616],[4.53407009,0.02747704,96.51361916],[4.53407062,0.02747876,96.51437787],[4.53407115,0.02748048,96.51513773],[4.53407169,0.0274822,96.5158987],[4.53407222,0.02748393,96.51666076],[4.53407276,0.02748565,96.51742389],[4.53407329,0.02748737,96.51818807],[4.53407382,0.02748909,96.51895328],[4.53407436,0.02749081,96.51971949],[4.53407489,0.02749254,96.52048668],[4.53407543,0.02749426,96.52125483],[4.53407596,0.02749598,96.52202391],[4.53407649,0.0274977,96.52279391],[4.53407703,0.02749943,96.52356481],[4.53407756,0.02750115,96.52433657],[4.5340781,0.02750287,96.52510918],[4.53407863,0.02750459,96.52588261],[4.53407917,0.02750631,96.52665685],[4.5340797,0.02750804,96.52743186],[4.53408023,0.02750976,96.52820764],[4.53408077,0.02751148,96.52898414],[4.5340813,0.0275132,96.52976136],[4.53408184,0.02751492,96.53053928],[4.53408237,0.02751665,96.53131785],[4.53408291,0.02751837,96.53209708],[4.53408344,0.02752009,96.53287692],[4.53408398,0.02752181,96.53365737],[4.53408451,0.02752354,96.53443839],[4.53408505,0.02752526,96.53521996],[4.53408558,0.02752698,96.53600206],[4.53408612,0.0275287,96.53678468],[4.53408665,0.02753042,96.53756777],[4.53408719,0.02753215,96.53835133],[4.53408772,0.02753387,96.53913532],[4.53408826,0.02753559,96.53991973],[4.53408879,0.02753731,96.54070453],[4.53408933,0.02753903,96.5414897],[4.53408986,0.02754076,96.54227521],[4.53409039,0.02754248,96.54306105],[4.53409093,0.0275442,96.54384717],[4.53409146,0.02754592,96.54463358],[4.534092,0.02754764,96.54542023],[4.53409253,0.02754937,96.5462071],[4.53409307,0.02755109,96.54699417],[4.5340936,0.02755281,96.54778142],[4.53409414,0.02755453,96.54856882],[4.53409467,0.02755625,96.54935635],[4.53409521,0.02755798,96.55014398],[4.53409574,0.0275597,96.55093169],[4.53409628,0.02756142,96.55171945],[4.53409681,0.02756314,96.55250723],[4.53409735,0.02756486,96.55329502],[4.53409788,0.02756659,96.55408279],[4.53409841,0.02756831,96.55487051],[4.53409895,0.02757003,96.5556582],[4.53409948,0.02757175,96.55644589],[4.53410002,0.02757347,96.55723358],[4.53410055,0.0275752,96.5580213],[4.53410109,0.02757692,96.55880907],[4.53410162,0.02757864,96.55959691],[4.53410215,0.02758036,96.56038483],[4.53410269,0.02758209,96.56117285],[4.53410322,0.02758381,96.561961],[4.53410376,0.02758553,96.5627493],[4.53410429,0.02758725,96.56353775],[4.53410482,0.02758897,96.56432639],[4.53410536,0.0275907,96.56511523],[4.53410589,0.02759242,96.56590429],[4.53410643,0.02759414,96.56669358],[4.53410696,0.02759586,96.56748314],[4.53410749,0.02759759,96.56827298],[4.53410803,0.02759931,96.56906311],[4.53410856,0.02760103,96.56985356],[4.53410909,0.02760275,96.57064435],[4.53410963,0.02760448,96.57143549],[4.53411016,0.0276062,96.57222701],[4.53411069,0.02760792,96.57301893],[4.53411123,0.02760964,96.57381126],[4.53411176,0.02761137,96.57460403],[4.53411229,0.02761309,96.57539725],[4.53411282,0.02761481,96.57619095],[4.53411336,0.02761653,96.57698514],[4.53411389,0.02761826,96.57777986],[4.53411442,0.02761998,96.5785751],[4.53411495,0.0276217,96.57937091],[4.53411549,0.02762343,96.5801673],[4.53411602,0.02762515,96.58096428],[4.53411655,0.02762687,96.58176188],[4.53411708,0.02762859,96.58256013],[4.53411761,0.02763032,96.58335903],[4.53411815,0.02763204,96.58415862],[4.53411868,0.02763376,96.58495892],[4.53411921,0.02763549,96.58575994],[4.53411974,0.02763721,96.58656171],[4.53412027,0.02763893,96.58736425],[4.53412081,0.02764065,96.58816758],[4.53412134,0.02764238,96.58897172],[4.53412187,0.0276441,96.5897767],[4.5341224,0.02764582,96.59058254],[4.53412293,0.02764755,96.59138926],[4.53412347,0.02764927,96.59219689],[4.534124,0.02765099,96.59300544],[4.53412453,0.02765271,96.59381494],[4.53412506,0.02765444,96.59462542],[4.5341256,0.02765616,96.59543685],[4.53412613,0.02765788,96.59624922],[4.53412666,0.0276596,96.59706254],[4.53412719,0.02766133,96.59787677],[4.53412773,0.02766305,96.59869192],[4.53412826,0.02766477,96.59950795],[4.53412879,0.02766649,96.60032488],[4.53412933,0.02766822,96.60114267],[4.53412986,0.02766994,96.60196132],[4.53413039,0.02767166,96.60278081],[4.53413093,0.02767339,96.60360113],[4.53413146,0.02767511,96.60442226],[4.53413199,0.02767683,96.60524419],[4.53413252,0.02767855,96.60606691],[4.53413306,0.02768028,96.6068904],[4.53413359,0.027682,96.60771464],[4.53413412,0.02768372,96.60853963],[4.53413466,0.02768544,96.60936534],[4.53413519,0.02768717,96.61019177],[4.53413572,0.02768889,96.6110189],[4.53413626,0.02769061,96.61184672],[4.53413679,0.02769233,96.6126752],[4.53413732,0.02769406,96.61350434],[4.53413785,0.02769578,96.61433412],[4.53413839,0.0276975,96.61516453],[4.53413892,0.02769922,96.61599555],[4.53413945,0.02770095,96.61682716],[4.53413999,0.02770267,96.61765936],[4.53414052,0.02770439,96.61849213],[4.53414105,0.02770611,96.61932545],[4.53414158,0.02770784,96.6201593],[4.53414211,0.02770956,96.62099369],[4.53414265,0.02771128,96.62182858],[4.53414318,0.02771301,96.62266397],[4.53414371,0.02771473,96.62349984],[4.53414424,0.02771645,96.62433619],[4.53414478,0.02771817,96.62517299],[4.53414531,0.0277199,96.62601024],[4.53414584,0.02772162,96.62684791],[4.53414637,0.02772334,96.627686],[4.5341469,0.02772506,96.6285245],[4.53414744,0.02772679,96.62936338],[4.53414797,0.02772851,96.63020263],[4.5341485,0.02773023,96.63104224],[4.53414903,0.02773196,96.6318822],[4.53414956,0.02773368,96.6327225],[4.5341501,0.0277354,96.63356311],[4.53415063,0.02773713,96.63440402],[4.53415116,0.02773885,96.63524522],[4.53415169,0.02774057,96.6360867],[4.53415222,0.02774229,96.63692843],[4.53415275,0.02774402,96.63777042],[4.53415329,0.02774574,96.63861263],[4.53415382,0.02774746,96.63945506],[4.53415435,0.02774919,96.64029769],[4.53415488,0.02775091,96.64114051],[4.53415541,0.02775263,96.64198351],[4.53415595,0.02775435,96.64282666],[4.53415648,0.02775608,96.64366996],[4.53415701,0.0277578,96.64451342],[4.53415754,0.02775952,96.64535704],[4.53415807,0.02776125,96.64620082],[4.53415861,0.02776297,96.64704477],[4.53415914,0.02776469,96.6478889],[4.53415967,0.02776641,96.6487332],[4.5341602,0.02776814,96.64957768],[4.53416073,0.02776986,96.65042234],[4.53416127,0.02777158,96.65126719],[4.5341618,0.0277733,96.65211223],[4.53416233,0.02777503,96.65295747],[4.53416286,0.02777675,96.65380291],[4.5341634,0.02777847,96.65464856],[4.53416393,0.0277802,96.65549442],[4.53416446,0.02778192,96.65634049],[4.53416499,0.02778364,96.65718678],[4.53416553,0.02778536,96.65803329],[4.53416606,0.02778709,96.65888003],[4.53416659,0.02778881,96.65972701],[4.53416712,0.02779053,96.66057422],[4.53416766,0.02779225,96.66142167],[4.53416819,0.02779398,96.66226937],[4.53416872,0.0277957,96.66311733],[4.53416925,0.02779742,96.66396554],[4.53416979,0.02779915,96.66481401],[4.53417032,0.02780087,96.66566275],[4.53417085,0.02780259,96.66651176],[4.53417138,0.02780431,96.66736105],[4.53417192,0.02780604,96.66821063],[4.53417245,0.02780776,96.66906049],[4.53417298,0.02780948,96.66991064],[4.53417351,0.0278112,96.67076109],[4.53417405,0.02781293,96.67161185],[4.53417458,0.02781465,96.67246291],[4.53417511,0.02781637,96.67331429],[4.53417565,0.02781809,96.67416599],[4.53417618,0.02781982,96.67501802],[4.53417671,0.02782154,96.67587038],[4.53417724,0.02782326,96.67672307],[4.53417778,0.02782498,96.67757611],[4.53417831,0.02782671,96.6784295],[4.53417884,0.02782843,96.67928324],[4.53417937,0.02783015,96.68013734],[4.53417991,0.02783188,96.6809918],[4.53418044,0.0278336,96.68184661],[4.53418097,0.02783532,96.68270177],[4.5341815,0.02783704,96.68355727],[4.53418204,0.02783877,96.6844131],[4.53418257,0.02784049,96.68526925],[4.5341831,0.02784221,96.68612572],[4.53418363,0.02784393,96.6869825],[4.53418417,0.02784566,96.68783959],[4.5341847,0.02784738,96.68869696],[4.53418523,0.0278491,96.68955463],[4.53418576,0.02785083,96.69041257],[4.53418629,0.02785255,96.69127079],[4.53418683,0.02785427,96.69212927],[4.53418736,0.02785599,96.69298801],[4.53418789,0.02785772,96.69384701],[4.53418842,0.02785944,96.69470624],[4.53418895,0.02786116,96.69556571],[4.53418948,0.02786289,96.69642541],[4.53419002,0.02786461,96.69728532],[4.53419055,0.02786633,96.69814545],[4.53419108,0.02786806,96.69900578],[4.53419161,0.02786978,96.69986631],[4.53419214,0.0278715,96.70072703],[4.53419267,0.02787322,96.70158793],[4.5341932,0.02787495,96.70244901],[4.53419374,0.02787667,96.70331024],[4.53419427,0.02787839,96.70417164],[4.5341948,0.02788012,96.70503319],[4.53419533,0.02788184,96.70589487],[4.53419586,0.02788356,96.70675669],[4.53419639,0.02788529,96.70761864],[4.53419692,0.02788701,96.7084807],[4.53419746,0.02788873,96.70934288],[4.53419799,0.02789045,96.71020515],[4.53419852,0.02789218,96.71106752],[4.53419905,0.0278939,96.71192997],[4.53419958,0.02789562,96.71279249],[4.53420012,0.02789735,96.71365509],[4.53420065,0.02789907,96.71451775],[4.53420118,0.02790079,96.71538045],[4.53420171,0.02790251,96.7162432],[4.53420224,0.02790424,96.71710599],[4.53420278,0.02790596,96.7179688],[4.53420331,0.02790768,96.71883162],[4.53420384,0.0279094,96.71969446],[4.53420438,0.02791113,96.7205573],[4.53420491,0.02791285,96.72142011],[4.53420544,0.02791457,96.72228282],[4.53420598,0.02791629,96.72314533],[4.53420651,0.02791802,96.72400755],[4.53420704,0.02791974,96.72486937],[4.53420758,0.02792146,96.72573071],[4.53420811,0.02792318,96.72659146],[4.53420865,0.02792491,96.72745153],[4.53420918,0.02792663,96.72831081],[4.53420971,0.02792835,96.72916922],[4.53421025,0.02793007,96.73002664],[4.53421078,0.02793179,96.73088299],[4.53421131,0.02793352,96.73173816],[4.53421185,0.02793524,96.73259205],[4.53421238,0.02793696,96.73344456],[4.53421291,0.02793868,96.73429559],[4.53421345,0.02794041,96.73514504],[4.53421398,0.02794213,96.73599281],[4.53421451,0.02794385,96.7368388],[4.53421505,0.02794557,96.7376829],[4.53421558,0.0279473,96.73852501],[4.53421611,0.02794902,96.73936502],[4.53421664,0.02795074,96.74020285],[4.53421717,0.02795247,96.74103837],[4.5342177,0.02795419,96.74187152],[4.53421824,0.02795591,96.74270231],[4.53421877,0.02795764,96.74353078],[4.5342193,0.02795936,96.74435698],[4.53421983,0.02796108,96.74518095],[4.53422036,0.0279628,96.74600273],[4.53422089,0.02796453,96.74682237],[4.53422142,0.02796625,96.74763991],[4.53422195,0.02796797,96.74845539],[4.53422248,0.0279697,96.74926886],[4.53422301,0.02797142,96.75008037],[4.53422354,0.02797314,96.75088995],[4.53422407,0.02797487,96.75169767],[4.5342246,0.02797659,96.75250355],[4.53422513,0.02797831,96.75330765],[4.53422566,0.02798004,96.75411001],[4.5342262,0.02798176,96.75491068],[4.53422673,0.02798348,96.7557097],[4.53422726,0.02798521,96.75650713],[4.53422779,0.02798693,96.75730301],[4.53422832,0.02798865,96.75809739],[4.53422885,0.02799038,96.75889031],[4.53422938,0.0279921,96.75968182],[4.53422991,0.02799382,96.76047198],[4.53423044,0.02799555,96.76126083],[4.53423097,0.02799727,96.76204842],[4.5342315,0.02799899,96.76283481],[4.53423203,0.02800072,96.76362004],[4.53423256,0.02800244,96.76440416],[4.53423309,0.02800416,96.76518724],[4.53423362,0.02800589,96.76596931],[4.53423416,0.02800761,96.76675042],[4.53423469,0.02800933,96.76753064],[4.53423522,0.02801106,96.76831001],[4.53423575,0.02801278,96.76908859],[4.53423628,0.0280145,96.76986642],[4.53423681,0.02801623,96.77064356],[4.53423734,0.02801795,96.77142007],[4.53423787,0.02801967,96.77219599],[4.5342384,0.0280214,96.77297137],[4.53423893,0.02802312,96.77374628],[4.53423946,0.02802484,96.77452076],[4.53423999,0.02802657,96.77529487],[4.53424052,0.02802829,96.77606865],[4.53424105,0.02803001,96.77684217],[4.53424158,0.02803174,96.77761548],[4.53424211,0.02803346,96.77838863],[4.53424264,0.02803518,96.77916167],[4.53424317,0.02803691,96.77993467],[4.5342437,0.02803863,96.78070766],[4.53424423,0.02804035,96.78148072],[4.53424476,0.02804208,96.78225388],[4.53424529,0.0280438,96.78302721],[4.53424582,0.02804552,96.78380076],[4.53424634,0.02804725,96.78457459],[4.53424687,0.02804897,96.78534874],[4.5342474,0.0280507,96.78612328],[4.53424793,0.02805242,96.78689825],[4.53424846,0.02805414,96.78767372],[4.53424899,0.02805587,96.78844973],[4.53424952,0.02805759,96.78922635],[4.53425005,0.02805931,96.79000362],[4.53425058,0.02806104,96.7907816],[4.53425111,0.02806276,96.79156035],[4.53425163,0.02806449,96.79233991],[4.53425216,0.02806621,96.79312035],[4.53425269,0.02806793,96.79390172],[4.53425322,0.02806966,96.79468407],[4.53425375,0.02807138,96.79546739],[4.53425428,0.02807311,96.79625163],[4.5342548,0.02807483,96.79703672],[4.53425533,0.02807655,96.7978226],[4.53425586,0.02807828,96.7986092],[4.53425639,0.02808,96.79939647],[4.53425692,0.02808173,96.80018433],[4.53425745,0.02808345,96.80097273],[4.53425797,0.02808517,96.80176159],[4.5342585,0.0280869,96.80255086],[4.53425903,0.02808862,96.80334047],[4.53425956,0.02809035,96.80413035],[4.53426009,0.02809207,96.80492044],[4.53426062,0.02809379,96.80571068],[4.53426114,0.02809552,96.806501],[4.53426167,0.02809724,96.80729133],[4.5342622,0.02809897,96.80808161],[4.53426273,0.02810069,96.80887178],[4.53426326,0.02810241,96.80966176],[4.53426378,0.02810414,96.8104515],[4.53426431,0.02810586,96.81124093],[4.53426484,0.02810759,96.81202998],[4.53426537,0.02810931,96.81281859],[4.5342659,0.02811103,96.81360668],[4.53426643,0.02811276,96.81439421],[4.53426695,0.02811448,96.81518109],[4.53426748,0.02811621,96.81596727],[4.53426801,0.02811793,96.81675267],[4.53426854,0.02811965,96.81753724],[4.53426907,0.02812138,96.8183209],[4.53426959,0.0281231,96.81910359],[4.53427012,0.02812483,96.81988525],[4.53427065,0.02812655,96.82066581],[4.53427118,0.02812827,96.8214452],[4.53427171,0.02813,96.82222336],[4.53427224,0.02813172,96.82300023],[4.53427276,0.02813345,96.82377573],[4.53427329,0.02813517,96.8245498],[4.53427382,0.02813689,96.82532238],[4.53427435,0.02813862,96.82609341],[4.53427488,0.02814034,96.8268628],[4.5342754,0.02814207,96.82763052],[4.53427593,0.02814379,96.82839647],[4.53427646,0.02814551,96.82916062],[4.53427699,0.02814724,96.82992288],[4.53427752,0.02814896,96.83068319],[4.53427804,0.02815069,96.83144149],[4.53427857,0.02815241,96.83219772],[4.5342791,0.02815414,96.83295181],[4.53427963,0.02815586,96.8337037],[4.53428016,0.02815758,96.83445333],[4.53428068,0.02815931,96.83520063],[4.53428121,0.02816103,96.83594554],[4.53428174,0.02816276,96.83668799],[4.53428227,0.02816448,96.83742793],[4.5342828,0.0281662,96.8381653],[4.53428332,0.02816793,96.83890008],[4.53428385,0.02816965,96.83963231],[4.53428438,0.02817138,96.84036204],[4.53428491,0.0281731,96.84108932],[4.53428544,0.02817483,96.84181418],[4.53428596,0.02817655,96.84253666],[4.53428649,0.02817827,96.84325681],[4.53428702,0.02818,96.84397467],[4.53428755,0.02818172,96.84469029],[4.53428808,0.02818345,96.8454037],[4.53428861,0.02818517,96.84611495],[4.53428913,0.02818689,96.84682409],[4.53428966,0.02818862,96.84753114],[4.53429019,0.02819034,96.84823617],[4.53429072,0.02819207,96.84893921],[4.53429125,0.02819379,96.8496403],[4.53429178,0.02819551,96.85033948],[4.5342923,0.02819724,96.8510368],[4.53429283,0.02819896,96.85173231],[4.53429336,0.02820069,96.85242603],[4.53429389,0.02820241,96.85311802],[4.53429442,0.02820414,96.85380832],[4.53429494,0.02820586,96.85449697],[4.53429547,0.02820758,96.85518401],[4.534296,0.02820931,96.85586948],[4.53429653,0.02821103,96.85655343],[4.53429705,0.02821276,96.8572359],[4.53413895,0.02826181,96.54483368]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":1,"type":"shoulder","predecessorId":0},{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":2,"type":"none","predecessorId":0}],"roadId":"1000100","singleSide":false,"rightLanes":[{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":-5,"type":"none","predecessorId":0},{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-4,"type":"shoulder","predecessorId":0},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"entry","predecessorId":0},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":0},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":0}]}},{"geometry":{"coordinates":[[[4.53367405,0.02674143,96.01700215],[4.5336735,0.02673972,96.01574157],[4.53367294,0.02673801,96.01448878],[4.53367239,0.02673629,96.01324372],[4.53367183,0.02673458,96.01200635],[4.53367128,0.02673286,96.01077662],[4.53367097,0.02673193,96.01010574],[4.53382235,0.02668351,96.1830712],[4.53382265,0.02668446,96.18346066],[4.5338232,0.02668618,96.18416953],[4.53382374,0.0266879,96.18487632],[4.53382428,0.02668962,96.18558102],[4.53382483,0.02669134,96.18628361],[4.53382537,0.02669305,96.18698408],[4.53367405,0.02674143,96.01700215]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":1,"type":"shoulder","predecessorId":1},{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":2,"type":"none","predecessorId":2}],"roadId":"1000100","singleSide":false,"rightLanes":[{"successorId":-7,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15},{"outer":0.15,"inner":0.025}],"id":-7,"type":"none","predecessorId":0},{"successorId":-6,"level":true,"heights":[{"outer":0.0,"inner":0.0},{"outer":0.15,"inner":0.15}],"id":-6,"type":"border","predecessorId":0},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-5,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"id":-5,"type":"border","predecessorId":0},{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-4,"type":"shoulder","predecessorId":0},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"entry","predecessorId":-3},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.53367097,0.02673193,96.01010574],[4.53367042,0.02673021,96.00901064],[4.53366986,0.0267285,96.00792417],[4.5336693,0.02672679,96.0068462],[4.53366875,0.02672507,96.00577662],[4.53366819,0.02672336,96.00471528],[4.53366764,0.02672164,96.00366208],[4.53366708,0.02671993,96.00261688],[4.53366653,0.02671822,96.00157955],[4.53366597,0.0267165,96.00054998],[4.53366542,0.02671479,95.99952803],[4.53366486,0.02671308,95.99851358],[4.53366431,0.02671136,95.9975065],[4.53366375,0.02670965,95.99650667],[4.53366319,0.02670794,95.99551395],[4.53366264,0.02670622,95.99452822],[4.53366208,0.02670451,95.99354934],[4.53366153,0.02670279,95.9925772],[4.53366097,0.02670108,95.99161166],[4.53366041,0.02669937,95.99065259],[4.53365985,0.02669766,95.98969987],[4.5336593,0.02669594,95.98875336],[4.53365874,0.02669423,95.98781287],[4.53365818,0.02669252,95.98687742],[4.53365762,0.0266908,95.98594764],[4.53365706,0.02668909,95.9850249],[4.53365651,0.02668738,95.98411056],[4.53365596,0.02668566,95.98320598],[4.53365542,0.02668394,95.98231141],[4.53365489,0.02668222,95.98142491],[4.53365437,0.0266805,95.9805462],[4.53365384,0.02667877,95.97967511],[4.53365333,0.02667705,95.9788115],[4.53365281,0.02667532,95.9779552],[4.5336523,0.02667359,95.97710607],[4.53365178,0.02667187,95.97626393],[4.53365127,0.02667014,95.97542865],[4.53365076,0.02666841,95.97460005],[4.53365024,0.02666668,95.97377799],[4.53364973,0.02666496,95.9729623],[4.53364921,0.02666323,95.97215283],[4.53364868,0.02666151,95.97134942],[4.53364815,0.02665979,95.9705519],[4.53364761,0.02665807,95.96976008],[4.53364707,0.02665635,95.96897368],[4.53364653,0.02665463,95.96819243],[4.53364598,0.02665292,95.96741607],[4.53364543,0.0266512,95.96664433],[4.53364487,0.02664949,95.96587695],[4.53364432,0.02664777,95.96511364],[4.53364376,0.02664606,95.96435416],[4.5336432,0.02664435,95.96359857],[4.53364264,0.02664264,95.96284755],[4.53364209,0.02664092,95.96210114],[4.53364153,0.02663921,95.96135933],[4.53364097,0.0266375,95.9606221],[4.53364041,0.02663578,95.95988946],[4.53363985,0.02663407,95.95916139],[4.5336393,0.02663236,95.95843789],[4.53363874,0.02663064,95.95771895],[4.53363818,0.02662893,95.95700456],[4.53363763,0.02662722,95.95629472],[4.53363707,0.0266255,95.95558942],[4.53363652,0.02662379,95.95488865],[4.53363596,0.02662208,95.95419241],[4.53363541,0.02662036,95.95350068],[4.53363485,0.02661865,95.95281346],[4.5336343,0.02661693,95.95213074],[4.53363375,0.02661522,95.95145252],[4.5336332,0.0266135,95.95077878],[4.53363265,0.02661179,95.95010953],[4.5336321,0.02661007,95.94944474],[4.53363155,0.02660835,95.94878442],[4.53363101,0.02660664,95.94812856],[4.53363046,0.02660492,95.94747714],[4.53362992,0.0266032,95.94683016],[4.53362937,0.02660149,95.94618761],[4.53362883,0.02659977,95.94554949],[4.53362829,0.02659805,95.94491578],[4.53362775,0.02659633,95.94428644],[4.53362721,0.02659461,95.94366127],[4.53362667,0.02659289,95.94304007],[4.53362614,0.02659117,95.94242259],[4.5336256,0.02658945,95.94180869],[4.53362507,0.02658773,95.94119828],[4.53362453,0.02658601,95.94059127],[4.533624,0.02658429,95.93998758],[4.53362347,0.02658257,95.93938711],[4.53362294,0.02658085,95.93878979],[4.5336224,0.02657913,95.93819552],[4.53362187,0.0265774,95.93760423],[4.53362134,0.02657568,95.93701581],[4.53362081,0.02657396,95.9364302],[4.53362028,0.02657224,95.9358473],[4.53361975,0.02657052,95.93526702],[4.53361922,0.0265688,95.93468928],[4.53361869,0.02656707,95.93411401],[4.53361816,0.02656535,95.9335411],[4.53361763,0.02656363,95.93297047],[4.5336171,0.02656191,95.93240204],[4.53361657,0.02656019,95.93183573],[4.53361604,0.02655847,95.93127145],[4.5336155,0.02655674,95.93070911],[4.53361497,0.02655502,95.93014863],[4.53361444,0.0265533,95.92958993],[4.53361391,0.02655158,95.92903291],[4.53361337,0.02654986,95.9284775],[4.53361284,0.02654814,95.92792361],[4.5336123,0.02654642,95.92737116],[4.53361177,0.0265447,95.92682006],[4.53361123,0.02654298,95.92627024],[4.5336107,0.02654126,95.92572162],[4.53361016,0.02653954,95.92517414],[4.53360962,0.02653782,95.92462772],[4.53360909,0.0265361,95.92408229],[4.53360855,0.02653438,95.92353778],[4.53360801,0.02653266,95.92299413],[4.53360747,0.02653094,95.92245127],[4.53360693,0.02652922,95.92190911],[4.53360639,0.0265275,95.9213676],[4.53360585,0.02652578,95.92082666],[4.53360531,0.02652407,95.92028623],[4.53360477,0.02652235,95.91974623],[4.53360422,0.02652063,95.91920659],[4.53360368,0.02651891,95.91866728],[4.53360313,0.0265172,95.91812842],[4.53360259,0.02651548,95.91759016],[4.53360204,0.02651376,95.91705264],[4.5336015,0.02651204,95.916516],[4.53360095,0.02651033,95.91598041],[4.5336004,0.02650861,95.915446],[4.53359985,0.0265069,95.91491292],[4.53359931,0.02650518,95.91438132],[4.53359876,0.02650346,95.9138513],[4.53359821,0.02650175,95.91332281],[4.53359766,0.02650003,95.91279578],[4.53359711,0.02649831,95.91227012],[4.53359656,0.0264966,95.91174575],[4.53359601,0.02649488,95.91122258],[4.53359546,0.02649317,95.91070053],[4.53359491,0.02649145,95.91017952],[4.53359436,0.02648974,95.90965946],[4.53359382,0.02648802,95.90914028],[4.53359327,0.0264863,95.90862189],[4.53359272,0.02648459,95.9081042],[4.53359217,0.02648287,95.90758714],[4.53359162,0.02648116,95.90707062],[4.53359107,0.02647944,95.90655457],[4.53359052,0.02647772,95.90603889],[4.53358997,0.02647601,95.90552351],[4.53358942,0.02647429,95.90500834],[4.53358887,0.02647258,95.90449331],[4.53358833,0.02647086,95.90397832],[4.53358778,0.02646914,95.90346331],[4.53358723,0.02646743,95.90294818],[4.53358668,0.02646571,95.90243283],[4.53358614,0.02646399,95.90191702],[4.53358559,0.02646228,95.90140051],[4.53358504,0.02646056,95.90088302],[4.5335845,0.02645884,95.9003643],[4.53358395,0.02645713,95.8998442],[4.5335834,0.02645541,95.89932268],[4.53358286,0.02645369,95.89879968],[4.53358231,0.02645198,95.89827518],[4.53358177,0.02645026,95.89774912],[4.53358122,0.02644854,95.89722146],[4.53358068,0.02644682,95.89669217],[4.53358013,0.02644511,95.89616119],[4.53357958,0.02644339,95.8956285],[4.53357904,0.02644167,95.89509403],[4.53357849,0.02643996,95.89455776],[4.53357795,0.02643824,95.89401964],[4.5335774,0.02643652,95.89347963],[4.53357686,0.0264348,95.89293768],[4.53357631,0.02643309,95.89239375],[4.53357576,0.02643137,95.8918478],[4.53357522,0.02642965,95.89129978],[4.53357467,0.02642794,95.89074966],[4.53357412,0.02642622,95.89019739],[4.53357358,0.0264245,95.88964292],[4.53357303,0.02642279,95.88908622],[4.53357248,0.02642107,95.88852724],[4.53357193,0.02641935,95.88796594],[4.53357138,0.02641764,95.88740227],[4.53357083,0.02641592,95.88683619],[4.53357029,0.02641421,95.88626766],[4.53356974,0.02641249,95.88569663],[4.53356919,0.02641077,95.88512306],[4.53356863,0.02640906,95.88454691],[4.53356808,0.02640734,95.88396814],[4.53356753,0.02640563,95.88338669],[4.53356698,0.02640391,95.88280253],[4.53356643,0.0264022,95.8822156],[4.53356587,0.02640048,95.88162576],[4.53356532,0.02639877,95.88103292],[4.53356476,0.02639706,95.88043697],[4.53356421,0.02639534,95.8798378],[4.53356365,0.02639363,95.87923531],[4.5335631,0.02639191,95.87862943],[4.53356254,0.0263902,95.87802025],[4.53356198,0.02638849,95.87740789],[4.53356142,0.02638677,95.87679248],[4.53356087,0.02638506,95.87617415],[4.53356031,0.02638335,95.87555302],[4.53355975,0.02638164,95.87492922],[4.53355919,0.02637992,95.87430286],[4.53355863,0.02637821,95.87367409],[4.53355807,0.0263765,95.87304301],[4.53355751,0.02637479,95.87240975],[4.53355695,0.02637307,95.87177444],[4.53355639,0.02637136,95.8711372],[4.53355583,0.02636965,95.87049815],[4.53355526,0.02636794,95.86985742],[4.5335547,0.02636622,95.86921513],[4.53355414,0.02636451,95.8685714],[4.53355358,0.0263628,95.86792635],[4.53355302,0.02636109,95.86728011],[4.53355246,0.02635937,95.8666328],[4.53355191,0.02635766,95.86598455],[4.53355135,0.02635595,95.86533546],[4.53355079,0.02635423,95.86468568],[4.53355023,0.02635252,95.86403532],[4.53354967,0.02635081,95.86338451],[4.53354912,0.02634909,95.86273333],[4.53354856,0.02634738,95.86208151],[4.53354801,0.02634566,95.86142873],[4.53354745,0.02634395,95.86077466],[4.5335469,0.02634224,95.86011899],[4.53354635,0.02634052,95.85946139],[4.5335458,0.0263388,95.85880154],[4.53354525,0.02633709,95.85813911],[4.5335447,0.02633537,95.85747378],[4.53354416,0.02633366,95.85680524],[4.53354361,0.02633194,95.85613315],[4.53354307,0.02633022,95.85545713],[4.53354252,0.0263285,95.85477657],[4.53354198,0.02632678,95.85409123],[4.53354144,0.02632507,95.85340134],[4.5335409,0.02632335,95.85270714],[4.53354035,0.02632163,95.85200886],[4.53353981,0.02631991,95.85130677],[4.53353928,0.02631819,95.85060108],[4.53353874,0.02631647,95.84989205],[4.5335382,0.02631475,95.84917992],[4.53353766,0.02631303,95.84846493],[4.53353712,0.02631131,95.84774732],[4.53353659,0.02630959,95.84702733],[4.53353605,0.02630787,95.84630519],[4.53353551,0.02630615,95.84558116],[4.53353498,0.02630443,95.84485546],[4.53353444,0.02630271,95.84412834],[4.53353391,0.02630099,95.84339988],[4.53353337,0.02629927,95.84267006],[4.53353283,0.02629755,95.84193881],[4.5335323,0.02629583,95.8412061],[4.53353176,0.02629411,95.84047186],[4.53353123,0.02629239,95.83973606],[4.53353069,0.02629067,95.83899865],[4.53353015,0.02628895,95.83825957],[4.53352961,0.02628723,95.83751878],[4.53352908,0.02628551,95.83677624],[4.53352854,0.02628379,95.83603188],[4.533528,0.02628207,95.83528567],[4.53352746,0.02628035,95.83453756],[4.53352691,0.02627863,95.83378756],[4.53352637,0.02627691,95.83303593],[4.53352583,0.0262752,95.83228299],[4.53352528,0.02627348,95.83152906],[4.53352474,0.02627176,95.83077446],[4.53352419,0.02627004,95.83001945],[4.53352364,0.02626833,95.82926398],[4.5335231,0.02626661,95.82850797],[4.53352255,0.02626489,95.82775131],[4.533522,0.02626318,95.8269939],[4.53352145,0.02626146,95.82623566],[4.5335209,0.02625975,95.82547647],[4.53352035,0.02625803,95.82471625],[4.5335198,0.02625631,95.82395488],[4.53351925,0.0262546,95.82319228],[4.5335187,0.02625288,95.82242835],[4.53351815,0.02625117,95.82166298],[4.5335176,0.02624945,95.82089608],[4.53351706,0.02624773,95.82012755],[4.53351651,0.02624602,95.81935729],[4.53351596,0.0262443,95.81858521],[4.53351541,0.02624258,95.81781119],[4.53351486,0.02624087,95.81703515],[4.53351432,0.02623915,95.81625699],[4.53351377,0.02623743,95.8154766],[4.53351323,0.02623572,95.81469389],[4.53351268,0.026234,95.81390875],[4.53351214,0.02623228,95.81312116],[4.5335116,0.02623056,95.8123313],[4.53351106,0.02622884,95.81153928],[4.53351052,0.02622712,95.81074514],[4.53350998,0.0262254,95.80994896],[4.53350944,0.02622368,95.80915078],[4.5335089,0.02622196,95.80835067],[4.53350836,0.02622024,95.80754868],[4.53350783,0.02621852,95.80674488],[4.53350729,0.0262168,95.80593932],[4.53350675,0.02621508,95.80513207],[4.53350622,0.02621336,95.80432318],[4.53350568,0.02621164,95.80351271],[4.53350515,0.02620992,95.80270072],[4.53350461,0.0262082,95.80188727],[4.53350407,0.02620648,95.80107243],[4.53350353,0.02620476,95.80025623],[4.53350299,0.02620304,95.79943876],[4.53350245,0.02620132,95.79862006],[4.53350191,0.0261996,95.79780019],[4.53350137,0.02619789,95.79697921],[4.53350083,0.02619617,95.79615719],[4.53350029,0.02619445,95.79533418],[4.53349975,0.02619273,95.79451024],[4.5334992,0.02619101,95.79368543],[4.53349866,0.02618929,95.7928598],[4.53349811,0.02618758,95.79203343],[4.53349757,0.02618586,95.79120636],[4.53349702,0.02618414,95.79037866],[4.53349648,0.02618242,95.78955039],[4.53349593,0.02618071,95.78872161],[4.53349538,0.02617899,95.78789234],[4.53349484,0.02617727,95.78706252],[4.53349429,0.02617556,95.78623203],[4.53349375,0.02617384,95.78540079],[4.5334932,0.02617212,95.78456867],[4.53349265,0.0261704,95.78373559],[4.53349211,0.02616869,95.78290155],[4.53349156,0.02616697,95.78206657],[4.53349102,0.02616525,95.78123065],[4.53349047,0.02616353,95.78039382],[4.53348992,0.02616182,95.77955609],[4.53348938,0.0261601,95.77871746],[4.53348883,0.02615838,95.77787797],[4.53348829,0.02615667,95.77703762],[4.53348774,0.02615495,95.77619643],[4.53348719,0.02615323,95.77535442],[4.53348665,0.02615151,95.77451159],[4.5334861,0.0261498,95.77366797],[4.53348555,0.02614808,95.77282357],[4.53348501,0.02614636,95.7719784],[4.53348446,0.02614465,95.77113249],[4.53348391,0.02614293,95.77028586],[4.53348337,0.02614121,95.76943852],[4.53348282,0.02613949,95.7685905],[4.53348228,0.02613778,95.76774183],[4.53348173,0.02613606,95.76689251],[4.53348118,0.02613434,95.76604258],[4.53348064,0.02613262,95.76519205],[4.53348009,0.02613091,95.76434095],[4.53347954,0.02612919,95.76348929],[4.533479,0.02612747,95.7626371],[4.53347845,0.02612576,95.76178437],[4.53347791,0.02612404,95.76093107],[4.53347736,0.02612232,95.76007716],[4.53347681,0.0261206,95.7592226],[4.53347627,0.02611889,95.75836736],[4.53347572,0.02611717,95.7575114],[4.53347517,0.02611545,95.75665469],[4.53347463,0.02611374,95.7557972],[4.53347408,0.02611202,95.75493888],[4.53347353,0.0261103,95.7540797],[4.53347299,0.02610858,95.75321963],[4.53347244,0.02610687,95.75235863],[4.53347189,0.02610515,95.75149665],[4.53347135,0.02610343,95.75063368],[4.5334708,0.02610172,95.74976966],[4.53347025,0.0261,95.74890457],[4.5334697,0.02609828,95.74803836],[4.53346916,0.02609657,95.747171],[4.53346861,0.02609485,95.74630245],[4.53346806,0.02609313,95.74543268],[4.53346751,0.02609142,95.74456165],[4.53346696,0.0260897,95.74368934],[4.53346641,0.02608798,95.74281577],[4.53346586,0.02608627,95.74194094],[4.53346531,0.02608455,95.74106485],[4.53346476,0.02608283,95.74018753],[4.53346421,0.02608112,95.73930897],[4.53346366,0.0260794,95.73842919],[4.53346311,0.02607769,95.73754819],[4.53346256,0.02607597,95.73666599],[4.53346201,0.02607426,95.73578259],[4.53346146,0.02607254,95.73489799],[4.5334609,0.02607082,95.73401222],[4.53346035,0.02606911,95.73312527],[4.5334598,0.02606739,95.73223715],[4.53345925,0.02606568,95.73134788],[4.53345869,0.02606396,95.73045746],[4.53345814,0.02606225,95.7295659],[4.53345759,0.02606053,95.72867321],[4.53345703,0.02605882,95.72777939],[4.53345648,0.0260571,95.72688448],[4.53345592,0.02605539,95.72598858],[4.53345537,0.02605368,95.72509181],[4.53345481,0.02605196,95.72419429],[4.53345426,0.02605025,95.72329615],[4.5334537,0.02604853,95.72239751],[4.53345315,0.02604682,95.7214985],[4.53345259,0.0260451,95.72059924],[4.53345204,0.02604339,95.71969985],[4.53345148,0.02604167,95.71880046],[4.53345093,0.02603996,95.71790118],[4.53345037,0.02603825,95.71700207],[4.53344982,0.02603653,95.71610318],[4.53344926,0.02603482,95.71520455],[4.53344871,0.0260331,95.71430622],[4.53344815,0.02603139,95.71340825],[4.5334476,0.02602967,95.71251069],[4.53344705,0.02602796,95.71161357],[4.53344649,0.02602624,95.71071694],[4.53344594,0.02602453,95.70982086],[4.53344538,0.02602281,95.70892536],[4.53344483,0.0260211,95.70803049],[4.53344428,0.02601938,95.70713631],[4.53344373,0.02601767,95.70624285],[4.53344317,0.02601595,95.70535017],[4.53344262,0.02601424,95.70445831],[4.53344207,0.02601252,95.70356732],[4.53344152,0.0260108,95.70267725],[4.53344096,0.02600909,95.70178814],[4.53344041,0.02600737,95.70090004],[4.53343986,0.02600566,95.70001299],[4.53343931,0.02600394,95.69912706],[4.53343876,0.02600223,95.69824227],[4.53343821,0.02600051,95.69735869],[4.53343766,0.02599879,95.69647636],[4.53343711,0.02599708,95.69559532],[4.53343656,0.02599536,95.69471562],[4.53343602,0.02599364,95.6938373],[4.53343547,0.02599193,95.6929604],[4.53343492,0.02599021,95.69208496],[4.53343437,0.02598849,95.69121102],[4.53343383,0.02598678,95.69033863],[4.53343328,0.02598506,95.68946783],[4.53343273,0.02598334,95.68859866],[4.53343219,0.02598162,95.68773115],[4.53343164,0.02597991,95.68686536],[4.5334311,0.02597819,95.68600132],[4.53343056,0.02597647,95.68513908],[4.53343001,0.02597475,95.68427868],[4.53342999,0.02597467,95.68423833],[4.53358181,0.02592552,95.85195471],[4.53358183,0.0259256,95.85198917],[4.53358238,0.02592732,95.85272347],[4.53358293,0.02592904,95.85345827],[4.53358348,0.02593076,95.85419352],[4.53358403,0.02593247,95.85492919],[4.53358458,0.02593419,95.85566525],[4.53358513,0.02593591,95.85640167],[4.53358568,0.02593762,95.85713841],[4.53358623,0.02593934,95.85787545],[4.53358678,0.02594106,95.85861275],[4.53358732,0.02594278,95.85935028],[4.53358787,0.02594449,95.86008801],[4.53358842,0.02594621,95.86082591],[4.53358897,0.02594793,95.86156394],[4.53358952,0.02594964,95.86230207],[4.53359007,0.02595136,95.86304027],[4.53359062,0.02595308,95.8637785],[4.53359117,0.0259548,95.86451673],[4.53359172,0.02595651,95.86525492],[4.53359227,0.02595823,95.86599302],[4.53359282,0.02595995,95.86673101],[4.53359337,0.02596166,95.86746884],[4.53359393,0.02596338,95.86820648],[4.53359448,0.0259651,95.86894389],[4.53359503,0.02596681,95.86968103],[4.53359558,0.02596853,95.87041787],[4.53359613,0.02597025,95.87115437],[4.53359668,0.02597197,95.87189048],[4.53359723,0.02597368,95.87262619],[4.53359778,0.0259754,95.87336144],[4.53359833,0.02597712,95.8740962],[4.53359888,0.02597883,95.87483043],[4.53359943,0.02598055,95.8755641],[4.53359998,0.02598227,95.87629718],[4.53360053,0.02598399,95.87702962],[4.53360108,0.0259857,95.87776138],[4.53360163,0.02598742,95.87849245],[4.53360218,0.02598914,95.87922276],[4.53360273,0.02599085,95.8799523],[4.53360327,0.02599257,95.88068103],[4.53360382,0.02599429,95.8814089],[4.53360437,0.02599601,95.88213589],[4.53360492,0.02599772,95.88286195],[4.53360547,0.02599944,95.88358706],[4.53360602,0.02600116,95.88431117],[4.53360657,0.02600287,95.88503426],[4.53360712,0.02600459,95.88575628],[4.53360767,0.02600631,95.88647721],[4.53360822,0.02600803,95.887197],[4.53360876,0.02600975,95.88791565],[4.53360931,0.02601146,95.8886332],[4.53360986,0.02601318,95.88934967],[4.53361041,0.0260149,95.89006508],[4.53361096,0.02601662,95.89077947],[4.5336115,0.02601833,95.89149286],[4.53361205,0.02602005,95.89220528],[4.5336126,0.02602177,95.89291676],[4.53361315,0.02602349,95.89362733],[4.53361369,0.02602521,95.89433701],[4.53361424,0.02602692,95.89504583],[4.53361479,0.02602864,95.89575382],[4.53361534,0.02603036,95.896461],[4.53361588,0.02603208,95.89716741],[4.53361643,0.02603379,95.89787308],[4.53361698,0.02603551,95.89857802],[4.53361752,0.02603723,95.89928226],[4.53361807,0.02603895,95.89998584],[4.53361862,0.02604067,95.90068878],[4.53361917,0.02604238,95.90139111],[4.53361971,0.0260441,95.90209285],[4.53362026,0.02604582,95.90279403],[4.53362081,0.02604754,95.90349468],[4.53362135,0.02604926,95.90419482],[4.5336219,0.02605097,95.90489448],[4.53362245,0.02605269,95.9055937],[4.533623,0.02605441,95.90629249],[4.53362354,0.02605613,95.90699088],[4.53362409,0.02605785,95.90768889],[4.53362464,0.02605957,95.90838657],[4.53362518,0.02606128,95.90908392],[4.53362573,0.026063,95.90978098],[4.53362628,0.02606472,95.91047778],[4.53362682,0.02606644,95.91117433],[4.53362737,0.02606816,95.91187067],[4.53362792,0.02606987,95.91256682],[4.53362846,0.02607159,95.91326281],[4.53362901,0.02607331,95.91395867],[4.53362956,0.02607503,95.91465442],[4.5336301,0.02607675,95.91535008],[4.53363065,0.02607847,95.91604568],[4.5336312,0.02608018,95.91674126],[4.53363174,0.0260819,95.91743682],[4.53363229,0.02608362,95.91813241],[4.53363283,0.02608534,95.91882804],[4.53363338,0.02608706,95.91952374],[4.53363393,0.02608877,95.92021954],[4.53363447,0.02609049,95.92091546],[4.53363502,0.02609221,95.92161153],[4.53363557,0.02609393,95.92230777],[4.53363611,0.02609565,95.92300421],[4.53363666,0.02609737,95.92370087],[4.5336372,0.02609908,95.92439778],[4.53363775,0.0261008,95.92509493],[4.5336383,0.02610252,95.92579234],[4.53363884,0.02610424,95.92649004],[4.53363939,0.02610596,95.92718802],[4.53363993,0.02610768,95.92788631],[4.53364048,0.02610939,95.92858492],[4.53364103,0.02611111,95.92928386],[4.53364157,0.02611283,95.92998315],[4.53364212,0.02611455,95.9306828],[4.53364266,0.02611627,95.93138283],[4.53364321,0.02611799,95.93208324],[4.53364376,0.02611971,95.93278406],[4.5336443,0.02612142,95.9334853],[4.53364485,0.02612314,95.93418697],[4.53364539,0.02612486,95.93488908],[4.53364594,0.02612658,95.93559165],[4.53364648,0.0261283,95.9362947],[4.53364703,0.02613002,95.93699823],[4.53364758,0.02613173,95.93770227],[4.53364812,0.02613345,95.93840681],[4.53364867,0.02613517,95.93911189],[4.53364921,0.02613689,95.93981751],[4.53364976,0.02613861,95.94052368],[4.5336503,0.02614033,95.94123043],[4.53365085,0.02614205,95.94193776],[4.53365139,0.02614376,95.94264568],[4.53365194,0.02614548,95.94335422],[4.53365248,0.0261472,95.94406338],[4.53365303,0.02614892,95.94477318],[4.53365358,0.02615064,95.94548363],[4.53365412,0.02615236,95.94619475],[4.53365467,0.02615408,95.94690655],[4.53365521,0.02615579,95.94761904],[4.53365576,0.02615751,95.94833223],[4.5336563,0.02615923,95.94904615],[4.53365685,0.02616095,95.94976081],[4.53365739,0.02616267,95.95047621],[4.53365794,0.02616439,95.95119237],[4.53365848,0.02616611,95.95190931],[4.53365903,0.02616783,95.95262703],[4.53365957,0.02616954,95.95334556],[4.53366012,0.02617126,95.95406491],[4.53366066,0.02617298,95.95478509],[4.53366121,0.0261747,95.95550611],[4.53366175,0.02617642,95.95622799],[4.53366229,0.02617814,95.95695073],[4.53366284,0.02617986,95.95767437],[4.53366338,0.02618158,95.9583989],[4.53366393,0.02618329,95.95912435],[4.53366447,0.02618501,95.95985072],[4.53366502,0.02618673,95.96057803],[4.53366556,0.02618845,95.96130629],[4.53366611,0.02619017,95.96203552],[4.53366665,0.02619189,95.96276574],[4.5336672,0.02619361,95.96349694],[4.53366774,0.02619533,95.96422916],[4.53366828,0.02619705,95.9649624],[4.53366883,0.02619877,95.96569667],[4.53366937,0.02620048,95.966432],[4.53366992,0.0262022,95.96716839],[4.53367046,0.02620392,95.96790585],[4.53367101,0.02620564,95.96864441],[4.53367155,0.02620736,95.96938403],[4.53367209,0.02620908,95.9701247],[4.53367264,0.0262108,95.97086639],[4.53367318,0.02621252,95.97160908],[4.53367373,0.02621424,95.97235274],[4.53367427,0.02621596,95.97309736],[4.53367481,0.02621767,95.97384291],[4.53367536,0.02621939,95.97458937],[4.5336759,0.02622111,95.97533671],[4.53367645,0.02622283,95.97608492],[4.53367699,0.02622455,95.97683397],[4.53367753,0.02622627,95.97758383],[4.53367808,0.02622799,95.97833448],[4.53367862,0.02622971,95.97908591],[4.53367916,0.02623143,95.97983809],[4.53367971,0.02623315,95.98059099],[4.53368025,0.02623487,95.98134459],[4.5336808,0.02623658,95.98209888],[4.53368134,0.0262383,95.98285382],[4.53368188,0.02624002,95.9836094],[4.53368243,0.02624174,95.98436559],[4.53368297,0.02624346,95.98512237],[4.53368351,0.02624518,95.98587972],[4.53368406,0.0262469,95.98663761],[4.5336846,0.02624862,95.98739602],[4.53368515,0.02625034,95.98815493],[4.53368569,0.02625206,95.98891432],[4.53368623,0.02625378,95.98967416],[4.53368678,0.0262555,95.99043444],[4.53368732,0.02625721,95.99119512],[4.53368786,0.02625893,95.99195618],[4.53368841,0.02626065,95.99271761],[4.53368895,0.02626237,95.99347938],[4.5336895,0.02626409,95.99424147],[4.53369004,0.02626581,95.99500385],[4.53369058,0.02626753,95.9957665],[4.53369113,0.02626925,95.9965294],[4.53369167,0.02627097,95.99729253],[4.53369221,0.02627269,95.99805586],[4.53369276,0.02627441,95.99881937],[4.5336933,0.02627612,95.99958304],[4.53369385,0.02627784,96.00034684],[4.53369439,0.02627956,96.00111075],[4.53369493,0.02628128,96.00187475],[4.53369548,0.026283,96.00263881],[4.53369602,0.02628472,96.00340292],[4.53369657,0.02628644,96.00416704],[4.53369711,0.02628816,96.00493115],[4.53369765,0.02628988,96.00569524],[4.5336982,0.0262916,96.00645927],[4.53369874,0.02629331,96.00722323],[4.53369929,0.02629503,96.00798709],[4.53369983,0.02629675,96.00875083],[4.53370038,0.02629847,96.00951442],[4.53370092,0.02630019,96.01027783],[4.53370147,0.02630191,96.01104106],[4.53370201,0.02630363,96.01180406],[4.53370255,0.02630535,96.01256682],[4.5337031,0.02630707,96.01332931],[4.53370364,0.02630879,96.01409152],[4.53370419,0.0263105,96.0148534],[4.53370473,0.02631222,96.01561495],[4.53370528,0.02631394,96.01637616],[4.53370582,0.02631566,96.01713708],[4.53370637,0.02631738,96.01789772],[4.53370691,0.0263191,96.01865813],[4.53370745,0.02632082,96.01941835],[4.533708,0.02632254,96.0201784],[4.53370854,0.02632426,96.02093832],[4.53370909,0.02632597,96.02169815],[4.53370963,0.02632769,96.02245792],[4.53371018,0.02632941,96.02321766],[4.53371072,0.02633113,96.02397741],[4.53371127,0.02633285,96.02473721],[4.53371181,0.02633457,96.02549708],[4.53371235,0.02633629,96.02625706],[4.5337129,0.02633801,96.02701719],[4.53371344,0.02633973,96.0277775],[4.53371399,0.02634145,96.02853803],[4.53371453,0.02634316,96.02929881],[4.53371507,0.02634488,96.03005988],[4.53371562,0.0263466,96.03082127],[4.53371616,0.02634832,96.03158301],[4.53371671,0.02635004,96.03234514],[4.53371725,0.02635176,96.0331077],[4.53371779,0.02635348,96.03387072],[4.53371834,0.0263552,96.03463423],[4.53371888,0.02635692,96.03539827],[4.53371943,0.02635864,96.03616285],[4.53371997,0.02636036,96.036928],[4.53372051,0.02636207,96.03769372],[4.53372106,0.02636379,96.03846005],[4.5337216,0.02636551,96.039227],[4.53372215,0.02636723,96.03999459],[4.53372269,0.02636895,96.04076284],[4.53372323,0.02637067,96.04153178],[4.53372378,0.02637239,96.04230142],[4.53372432,0.02637411,96.04307178],[4.53372486,0.02637583,96.04384289],[4.53372541,0.02637755,96.04461477],[4.53372595,0.02637927,96.04538743],[4.5337265,0.02638099,96.04616089],[4.53372704,0.0263827,96.04693519],[4.53372758,0.02638442,96.04771034],[4.53372813,0.02638614,96.04848636],[4.53372867,0.02638786,96.04926327],[4.53372922,0.02638958,96.0500411],[4.53372976,0.0263913,96.05081986],[4.5337303,0.02639302,96.05159959],[4.53373085,0.02639474,96.0523803],[4.53373139,0.02639646,96.05316201],[4.53373193,0.02639818,96.05394475],[4.53373248,0.0263999,96.05472854],[4.53373302,0.02640161,96.05551341],[4.53373357,0.02640333,96.05629937],[4.53373411,0.02640505,96.05708645],[4.53373465,0.02640677,96.05787467],[4.5337352,0.02640849,96.058664],[4.53373574,0.02641021,96.05945443],[4.53373629,0.02641193,96.06024592],[4.53373683,0.02641365,96.06103845],[4.53373737,0.02641537,96.06183199],[4.53373792,0.02641709,96.06262652],[4.53373846,0.02641881,96.063422],[4.533739,0.02642053,96.06421841],[4.53373955,0.02642224,96.06501571],[4.53374009,0.02642396,96.06581387],[4.53374064,0.02642568,96.06661287],[4.53374118,0.0264274,96.06741266],[4.53374173,0.02642912,96.06821323],[4.53374227,0.02643084,96.06901453],[4.53374281,0.02643256,96.06981654],[4.53374336,0.02643428,96.07061923],[4.5337439,0.026436,96.07142257],[4.53374445,0.02643772,96.07222652],[4.53374499,0.02643943,96.07303105],[4.53374553,0.02644115,96.07383614],[4.53374608,0.02644287,96.07464175],[4.53374662,0.02644459,96.07544784],[4.53374717,0.02644631,96.0762544],[4.53374771,0.02644803,96.07706138],[4.53374826,0.02644975,96.07786875],[4.5337488,0.02645147,96.07867649],[4.53374935,0.02645319,96.07948456],[4.53374989,0.02645491,96.08029292],[4.53375043,0.02645662,96.08110155],[4.53375098,0.02645834,96.08191042],[4.53375152,0.02646006,96.08271949],[4.53375207,0.02646178,96.08352873],[4.53375261,0.0264635,96.0843381],[4.53375316,0.02646522,96.08514759],[4.5337537,0.02646694,96.08595714],[4.53375425,0.02646866,96.08676673],[4.53375479,0.02647038,96.08757633],[4.53375534,0.0264721,96.08838591],[4.53375588,0.02647381,96.08919542],[4.53375642,0.02647553,96.09000485],[4.53375697,0.02647725,96.09081415],[4.53375751,0.02647897,96.09162329],[4.53375806,0.02648069,96.09243224],[4.5337586,0.02648241,96.09324097],[4.53375915,0.02648413,96.09404944],[4.53375969,0.02648585,96.09485762],[4.53376024,0.02648756,96.09566547],[4.53376078,0.02648928,96.09647297],[4.53376133,0.026491,96.09728008],[4.53376187,0.02649272,96.09808676],[4.53376242,0.02649444,96.09889298],[4.53376296,0.02649616,96.0996987],[4.53376351,0.02649788,96.1005039],[4.53376405,0.0264996,96.10130854],[4.5337646,0.02650132,96.10211259],[4.53376514,0.02650303,96.102916],[4.53376569,0.02650475,96.10371875],[4.53376623,0.02650647,96.10452079],[4.53376678,0.02650819,96.10532211],[4.53376732,0.02650991,96.10612265],[4.53376787,0.02651163,96.10692239],[4.53376841,0.02651335,96.10772129],[4.53376896,0.02651507,96.10851932],[4.5337695,0.02651678,96.10931643],[4.53377005,0.0265185,96.11011261],[4.53377059,0.02652022,96.1109078],[4.53377114,0.02652194,96.11170198],[4.53377168,0.02652366,96.11249511],[4.53377223,0.02652538,96.11328715],[4.53377277,0.0265271,96.11407807],[4.53377332,0.02652882,96.11486784],[4.53377386,0.02653054,96.11565642],[4.53377441,0.02653225,96.11644377],[4.53377495,0.02653397,96.11722986],[4.5337755,0.02653569,96.11801466],[4.53377604,0.02653741,96.11879812],[4.53377659,0.02653913,96.11958022],[4.53377713,0.02654085,96.12036091],[4.53377768,0.02654257,96.12114016],[4.53377822,0.02654429,96.12191795],[4.53377877,0.026546,96.12269427],[4.53377931,0.02654772,96.1234692],[4.53377986,0.02654944,96.12424277],[4.5337804,0.02655116,96.12501506],[4.53378095,0.02655288,96.12578612],[4.53378149,0.0265546,96.12655601],[4.53378204,0.02655632,96.12732479],[4.53378258,0.02655804,96.12809252],[4.53378313,0.02655976,96.12885925],[4.53378367,0.02656147,96.12962505],[4.53378422,0.02656319,96.13038998],[4.53378476,0.02656491,96.13115409],[4.53378531,0.02656663,96.13191744],[4.53378585,0.02656835,96.1326801],[4.5337864,0.02657007,96.13344212],[4.53378695,0.02657179,96.13420356],[4.53378749,0.0265735,96.13496449],[4.53378804,0.02657522,96.13572496],[4.53378858,0.02657694,96.13648504],[4.53378913,0.02657866,96.13724477],[4.53378967,0.02658038,96.13800423],[4.53379022,0.0265821,96.13876347],[4.53379077,0.02658382,96.13952255],[4.53379131,0.02658553,96.14028153],[4.53379186,0.02658725,96.14104047],[4.5337924,0.02658897,96.14179943],[4.53379295,0.02659069,96.14255847],[4.53379349,0.02659241,96.14331765],[4.53379404,0.02659413,96.14407703],[4.53379459,0.02659585,96.14483667],[4.53379513,0.02659756,96.14559662],[4.53379568,0.02659928,96.14635694],[4.53379622,0.026601,96.1471177],[4.53379677,0.02660272,96.14787895],[4.53379732,0.02660444,96.14864073],[4.53379786,0.02660616,96.14940298],[4.53379841,0.02660788,96.15016565],[4.53379895,0.02660959,96.15092866],[4.5337995,0.02661131,96.15169194],[4.53380004,0.02661303,96.15245542],[4.53380059,0.02661475,96.15321903],[4.53380113,0.02661647,96.15398271],[4.53380168,0.02661819,96.15474637],[4.53380223,0.02661991,96.15550995],[4.53380277,0.02662163,96.15627339],[4.53380332,0.02662334,96.1570366],[4.53380386,0.02662506,96.15779952],[4.53380441,0.02662678,96.15856208],[4.53380495,0.0266285,96.1593242],[4.53380549,0.02663022,96.16008581],[4.53380604,0.02663194,96.16084685],[4.53380658,0.02663366,96.16160725],[4.53380713,0.02663538,96.16236693],[4.53380767,0.0266371,96.16312582],[4.53380822,0.02663881,96.16388387],[4.53380876,0.02664053,96.16464099],[4.53380931,0.02664225,96.16539713],[4.53380985,0.02664397,96.16615221],[4.53381039,0.02664569,96.16690616],[4.53381094,0.02664741,96.16765893],[4.53381148,0.02664913,96.16841043],[4.53381203,0.02665085,96.1691606],[4.53381257,0.02665257,96.16990937],[4.53381311,0.02665429,96.17065668],[4.53381366,0.02665601,96.17140245],[4.5338142,0.02665773,96.17214662],[4.53381475,0.02665944,96.17288912],[4.53381529,0.02666116,96.17362988],[4.53381583,0.02666288,96.17436884],[4.53381638,0.0266646,96.17510592],[4.53381692,0.02666632,96.17584107],[4.53381746,0.02666804,96.17657421],[4.53381801,0.02666976,96.17730527],[4.53381855,0.02667148,96.1780342],[4.53381909,0.0266732,96.17876092],[4.53381964,0.02667492,96.17948536],[4.53382018,0.02667664,96.18020747],[4.53382072,0.02667836,96.18092717],[4.53382127,0.02668008,96.1816444],[4.53382181,0.0266818,96.1823591],[4.53382235,0.02668351,96.1830712],[4.53367097,0.02673193,96.01010574]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":1,"type":"shoulder","predecessorId":1},{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":2,"type":"none","predecessorId":2}],"roadId":"1000100","singleSide":false,"rightLanes":[{"successorId":-7,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"id":-7,"type":"none","predecessorId":-7},{"successorId":-6,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":-6,"type":"border","predecessorId":-6},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-5,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"id":-5,"type":"border","predecessorId":-5},{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-4,"type":"shoulder","predecessorId":-4},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"entry","predecessorId":-3},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.53342999,0.02597467,95.68423833],[4.53342944,0.02597295,95.68336341],[4.53342889,0.02597124,95.68248904],[4.53342834,0.02596952,95.6816152],[4.53342779,0.0259678,95.6807419],[4.53342724,0.02596609,95.67986914],[4.53342669,0.02596437,95.67899693],[4.53342614,0.02596265,95.67812525],[4.53342559,0.02596094,95.67725412],[4.53342505,0.02595922,95.67638353],[4.5334245,0.0259575,95.67551348],[4.53342395,0.02595579,95.67464398],[4.5334234,0.02595407,95.67377501],[4.53342285,0.02595235,95.67290659],[4.5334223,0.02595064,95.67203871],[4.53342175,0.02594892,95.67117138],[4.5334212,0.02594721,95.67030458],[4.53342065,0.02594549,95.66943834],[4.5334201,0.02594377,95.66857263],[4.53341955,0.02594206,95.66770747],[4.533419,0.02594034,95.66684285],[4.53341845,0.02593862,95.66597877],[4.5334179,0.02593691,95.66511524],[4.53341735,0.02593519,95.66425225],[4.5334168,0.02593347,95.6633898],[4.53341625,0.02593176,95.66252789],[4.5334157,0.02593004,95.66166653],[4.53341515,0.02592833,95.66080571],[4.5334146,0.02592661,95.65994543],[4.53341405,0.02592489,95.65908569],[4.5334135,0.02592318,95.6582265],[4.53341295,0.02592146,95.65736784],[4.5334124,0.02591975,95.65650973],[4.53341185,0.02591803,95.65565215],[4.5334113,0.02591631,95.65479512],[4.53341075,0.0259146,95.65393863],[4.5334102,0.02591288,95.65308267],[4.53340965,0.02591117,95.65222725],[4.5334091,0.02590945,95.65137238],[4.53340854,0.02590773,95.65051804],[4.53340799,0.02590602,95.64966424],[4.53340744,0.0259043,95.64881097],[4.53340689,0.02590259,95.64795825],[4.53340634,0.02590087,95.64710605],[4.53340579,0.02589916,95.6462544],[4.53340523,0.02589744,95.64540327],[4.53340468,0.02589572,95.64455266],[4.53340413,0.02589401,95.64370256],[4.53340358,0.02589229,95.64285302],[4.53340302,0.02589058,95.64200417],[4.53340247,0.02588886,95.64115614],[4.53340192,0.02588715,95.64030907],[4.53340136,0.02588543,95.63946308],[4.53340081,0.02588372,95.63861832],[4.53340026,0.025882,95.63777491],[4.53339971,0.02588029,95.63693298],[4.53339916,0.02587857,95.63609267],[4.5333986,0.02587685,95.63525412],[4.53339805,0.02587514,95.63441745],[4.5333975,0.02587342,95.6335828],[4.53339695,0.02587171,95.6327503],[4.5333964,0.02586999,95.63192009],[4.53339585,0.02586827,95.63109229],[4.5333953,0.02586656,95.63026706],[4.53339476,0.02586484,95.62944451],[4.53339421,0.02586312,95.62862479],[4.53339366,0.02586141,95.62780802],[4.53339311,0.02585969,95.62699435],[4.53339257,0.02585797,95.62618386],[4.53339202,0.02585625,95.62537642],[4.53339148,0.02585453,95.62457183],[4.53339094,0.02585282,95.62376991],[4.5333904,0.0258511,95.62297046],[4.53338985,0.02584938,95.62217328],[4.53338931,0.02584766,95.62137818],[4.53338877,0.02584594,95.62058483],[4.53338823,0.02584422,95.61979279],[4.53338769,0.0258425,95.6190016],[4.53338716,0.02584078,95.61821081],[4.53338662,0.02583906,95.61741996],[4.53338608,0.02583734,95.61662861],[4.53338554,0.02583562,95.61583629],[4.53338501,0.0258339,95.61504255],[4.53338447,0.02583218,95.61424694],[4.53338393,0.02583045,95.6134491],[4.5333834,0.02582873,95.61264912],[4.53338286,0.02582701,95.61184719],[4.53338233,0.02582529,95.6110435],[4.5333818,0.02582357,95.61023823],[4.53338126,0.02582185,95.60943159],[4.53338073,0.02582013,95.60862376],[4.53338019,0.02581841,95.60781493],[4.53337966,0.02581669,95.60700529],[4.53337913,0.02581496,95.60619504],[4.53337859,0.02581324,95.60538438],[4.53337806,0.02581152,95.60457348],[4.53337753,0.0258098,95.60376254],[4.53337699,0.02580808,95.60295176],[4.53337646,0.02580636,95.60214132],[4.53337592,0.02580463,95.60133141],[4.53337539,0.02580291,95.60052221],[4.53337485,0.02580119,95.59971392],[4.53337432,0.02579947,95.59890672],[4.53337378,0.02579775,95.5981008],[4.53337325,0.02579603,95.59729635],[4.53337271,0.02579431,95.59649355],[4.53337217,0.02579259,95.59569235],[4.53337164,0.02579087,95.59489252],[4.5333711,0.02578915,95.59409391],[4.53337056,0.02578743,95.59329646],[4.53337002,0.02578571,95.59250013],[4.53336948,0.02578399,95.59170488],[4.53336893,0.02578227,95.59091067],[4.53336839,0.02578055,95.59011745],[4.53336784,0.02577883,95.58932518],[4.5333673,0.02577712,95.58853383],[4.53336675,0.0257754,95.58774334],[4.53336621,0.02577368,95.58695367],[4.53336566,0.02577196,95.58616479],[4.53336511,0.02577025,95.58537664],[4.53336456,0.02576853,95.58458919],[4.53336402,0.02576681,95.5838024],[4.53336347,0.0257651,95.58301621],[4.53336292,0.02576338,95.58223059],[4.53336237,0.02576166,95.58144549],[4.53336182,0.02575995,95.58066089],[4.53336127,0.02575823,95.57987678],[4.53336072,0.02575651,95.57909316],[4.53336017,0.0257548,95.57831002],[4.53335962,0.02575308,95.57752735],[4.53335907,0.02575136,95.57674514],[4.53335853,0.02574965,95.57596339],[4.53335798,0.02574793,95.57518212],[4.53335743,0.02574621,95.5744015],[4.53335688,0.0257445,95.57362167],[4.53335633,0.02574278,95.57284267],[4.53335578,0.02574106,95.57206447],[4.53335523,0.02573935,95.57128707],[4.53335468,0.02573763,95.57051044],[4.53335413,0.02573591,95.56973459],[4.53335358,0.0257342,95.5689595],[4.53335303,0.02573248,95.56818516],[4.53335248,0.02573077,95.56741158],[4.53335193,0.02572905,95.56663873],[4.53335138,0.02572733,95.56586662],[4.53335083,0.02572562,95.56509524],[4.53335027,0.0257239,95.56432458],[4.53334972,0.02572219,95.56355463],[4.53334916,0.02572047,95.56278539],[4.53334861,0.02571876,95.56201684],[4.53334805,0.02571705,95.56124898],[4.53334749,0.02571533,95.56048181],[4.53334693,0.02571362,95.55971532],[4.53334637,0.02571191,95.55894948],[4.53334581,0.02571019,95.55818419],[4.53334525,0.02570848,95.55741919],[4.53334469,0.02570677,95.55665423],[4.53334413,0.02570506,95.55588908],[4.53334356,0.02570335,95.55512355],[4.533343,0.02570163,95.55435771],[4.53334243,0.02569992,95.55359168],[4.53334187,0.02569821,95.55282561],[4.5333413,0.0256965,95.55205962],[4.53334073,0.02569479,95.55129384],[4.53334016,0.02569308,95.55052841],[4.5333396,0.02569137,95.54976346],[4.53333903,0.02568966,95.54899912],[4.53333846,0.02568795,95.54823553],[4.53333789,0.02568624,95.54747281],[4.53333733,0.02568453,95.5467111],[4.53333676,0.02568282,95.54595052],[4.53333619,0.02568111,95.5451912],[4.53333563,0.02567939,95.54443328],[4.53333506,0.02567768,95.54367689],[4.5333345,0.02567597,95.54292215],[4.53333394,0.02567426,95.5421692],[4.53333337,0.02567255,95.54141816],[4.53333281,0.02567083,95.54066917],[4.53333225,0.02566912,95.53992236],[4.5333317,0.02566741,95.53917785],[4.53333114,0.02566569,95.53843577],[4.53333058,0.02566398,95.53769627],[4.53333003,0.02566226,95.53695945],[4.53332948,0.02566055,95.5362252],[4.53332893,0.02565883,95.5354932],[4.53332838,0.02565712,95.53476308],[4.53332783,0.0256554,95.5340345],[4.53332729,0.02565368,95.53330711],[4.53332674,0.02565196,95.53258056],[4.5333262,0.02565024,95.5318545],[4.53332566,0.02564853,95.53112858],[4.53332512,0.02564681,95.53040247],[4.53332458,0.02564509,95.52967584],[4.53332403,0.02564337,95.52894855],[4.53332349,0.02564165,95.52822065],[4.53332295,0.02563993,95.52749218],[4.53332241,0.02563821,95.52676317],[4.53332187,0.02563649,95.52603364],[4.53332133,0.02563477,95.52530357],[4.5333208,0.02563305,95.52457298],[4.53332026,0.02563133,95.52384186],[4.53331972,0.02562961,95.52311021],[4.53331918,0.02562789,95.52237802],[4.53331864,0.02562617,95.52164531],[4.5333181,0.02562445,95.52091207],[4.53331756,0.02562274,95.52017829],[4.53331702,0.02562102,95.51944399],[4.53331648,0.0256193,95.51870915],[4.53331594,0.02561758,95.51797378],[4.53331539,0.02561586,95.51723788],[4.53331485,0.02561414,95.51650144],[4.53331431,0.02561242,95.51576447],[4.53331377,0.0256107,95.51502696],[4.53331322,0.02560899,95.51428892],[4.53331268,0.02560727,95.51355035],[4.53331213,0.02560555,95.51281124],[4.53331158,0.02560383,95.51207166],[4.53331103,0.02560212,95.51133189],[4.53331049,0.0256004,95.5105923],[4.53330994,0.02559868,95.50985321],[4.53330939,0.02559697,95.50911481],[4.53330884,0.02559525,95.50837707],[4.53330829,0.02559354,95.50763996],[4.53330774,0.02559182,95.50690348],[4.53330719,0.0255901,95.50616759],[4.53330664,0.02558839,95.50543227],[4.53330609,0.02558667,95.5046975],[4.53330553,0.02558496,95.50396325],[4.53330498,0.02558324,95.5032295],[4.53330443,0.02558153,95.50249624],[4.53330388,0.02557981,95.50176343],[4.53330332,0.02557809,95.50103105],[4.53330277,0.02557638,95.50029908],[4.53330222,0.02557466,95.4995675],[4.53330167,0.02557295,95.49883628],[4.53330111,0.02557123,95.4981054],[4.53330056,0.02556952,95.49737484],[4.5333,0.02556781,95.49664458],[4.53329945,0.02556609,95.49591458],[4.5332989,0.02556438,95.49518484],[4.53329834,0.02556266,95.49445532],[4.53329779,0.02556095,95.493726],[4.53329723,0.02555923,95.49299687],[4.53329668,0.02555752,95.49226789],[4.53329612,0.0255558,95.49153905],[4.53329557,0.02555409,95.48671351],[4.53329501,0.02555237,95.47914782],[4.53329492,0.02555209,95.47753252],[4.53344647,0.02550283,95.67438492],[4.53344656,0.02550312,95.67451339],[4.53344711,0.02550484,95.67528484],[4.53344766,0.02550655,95.67605534],[4.53344821,0.02550827,95.67682488],[4.53344876,0.02550999,95.67759349],[4.53344931,0.02551171,95.67836116],[4.53344986,0.02551342,95.6791279],[4.53345041,0.02551514,95.67989373],[4.53345096,0.02551686,95.68065865],[4.53345151,0.02551857,95.68142267],[4.53345206,0.02552029,95.6821858],[4.53345261,0.02552201,95.68294805],[4.53345316,0.02552372,95.68370942],[4.53345371,0.02552544,95.68446993],[4.53345426,0.02552716,95.68522958],[4.53345481,0.02552888,95.68598839],[4.53345536,0.02553059,95.68674636],[4.53345591,0.02553231,95.68750349],[4.53345646,0.02553403,95.68825981],[4.53345701,0.02553574,95.68901531],[4.53345756,0.02553746,95.68977001],[4.53345811,0.02553918,95.69052391],[4.53345866,0.02554089,95.69127703],[4.53345921,0.02554261,95.69202937],[4.53345976,0.02554433,95.69278094],[4.53346031,0.02554605,95.69353174],[4.53346086,0.02554776,95.6942818],[4.53346141,0.02554948,95.69503111],[4.53346196,0.0255512,95.69577969],[4.53346251,0.02555291,95.69652754],[4.53346307,0.02555463,95.69727468],[4.53346362,0.02555635,95.69802111],[4.53346417,0.02555806,95.69876684],[4.53346472,0.02555978,95.69951187],[4.53346527,0.0255615,95.70025623],[4.53346582,0.02556321,95.70099991],[4.53346637,0.02556493,95.70174293],[4.53346692,0.02556665,95.7024853],[4.53346747,0.02556836,95.70322702],[4.53346802,0.02557008,95.7039681],[4.53346857,0.0255718,95.70470855],[4.53346912,0.02557352,95.70544838],[4.53346967,0.02557523,95.7061876],[4.53347022,0.02557695,95.70692622],[4.53347077,0.02557867,95.70766424],[4.53347132,0.02558038,95.70840168],[4.53347188,0.0255821,95.70913855],[4.53347243,0.02558382,95.70987485],[4.53347298,0.02558553,95.71061059],[4.53347353,0.02558725,95.71134578],[4.53347408,0.02558897,95.71208043],[4.53347463,0.02559068,95.71281456],[4.53347518,0.0255924,95.71354815],[4.53347573,0.02559412,95.71428124],[4.53347628,0.02559583,95.71501382],[4.53347683,0.02559755,95.71574591],[4.53347738,0.02559927,95.71647751],[4.53347793,0.02560098,95.71720863],[4.53347848,0.0256027,95.71793928],[4.53347903,0.02560442,95.71866948],[4.53347959,0.02560613,95.71939922],[4.53348014,0.02560785,95.72012852],[4.53348069,0.02560957,95.72085739],[4.53348124,0.02561129,95.72158583],[4.53348179,0.025613,95.72231386],[4.53348234,0.02561472,95.72304149],[4.53348289,0.02561644,95.72376872],[4.53348344,0.02561815,95.72449555],[4.53348399,0.02561987,95.72522201],[4.53348454,0.02562159,95.7259481],[4.53348509,0.0256233,95.72667383],[4.53348564,0.02562502,95.72739921],[4.53348619,0.02562674,95.72812424],[4.53348674,0.02562845,95.72884894],[4.5334873,0.02563017,95.72957331],[4.53348785,0.02563189,95.73029736],[4.5334884,0.0256336,95.73102109],[4.53348895,0.02563532,95.73174451],[4.5334895,0.02563704,95.73246762],[4.53349005,0.02563875,95.73319042],[4.5334906,0.02564047,95.73391292],[4.53349115,0.02564219,95.73463512],[4.5334917,0.0256439,95.73535703],[4.53349225,0.02564562,95.73607864],[4.5334928,0.02564734,95.73679997],[4.53349335,0.02564905,95.737521],[4.5334939,0.02565077,95.73824175],[4.53349445,0.02565249,95.73896221],[4.53349501,0.02565421,95.7396824],[4.53349556,0.02565592,95.7404023],[4.53349611,0.02565764,95.74112192],[4.53349666,0.02565936,95.74184127],[4.53349721,0.02566107,95.74256034],[4.53349776,0.02566279,95.74327914],[4.53349831,0.02566451,95.74399768],[4.53349886,0.02566622,95.74471594],[4.53349941,0.02566794,95.74543394],[4.53349996,0.02566966,95.74615168],[4.53350051,0.02567137,95.74686915],[4.53350106,0.02567309,95.74758637],[4.53350161,0.02567481,95.74830333],[4.53350216,0.02567652,95.74902004],[4.53350271,0.02567824,95.74973649],[4.53350326,0.02567996,95.7504527],[4.53350382,0.02568167,95.75116865],[4.53350437,0.02568339,95.75188436],[4.53350492,0.02568511,95.75259983],[4.53350547,0.02568682,95.75331505],[4.53350602,0.02568854,95.75403004],[4.53350657,0.02569026,95.75474479],[4.53350712,0.02569198,95.7554593],[4.53350767,0.02569369,95.75617358],[4.53350822,0.02569541,95.75688763],[4.53350877,0.02569713,95.75760146],[4.53350932,0.02569884,95.75831505],[4.53350987,0.02570056,95.75902842],[4.53351042,0.02570228,95.75974157],[4.53351097,0.02570399,95.7604545],[4.53351152,0.02570571,95.76116721],[4.53351207,0.02570743,95.76187971],[4.53351262,0.02570914,95.76259199],[4.53351317,0.02571086,95.76330407],[4.53351372,0.02571258,95.76401593],[4.53351427,0.02571429,95.76472759],[4.53351482,0.02571601,95.76543904],[4.53351537,0.02571773,95.76615029],[4.53351592,0.02571945,95.76686134],[4.53351647,0.02572116,95.76757219],[4.53351702,0.02572288,95.76828285],[4.53351757,0.0257246,95.76899331],[4.53351812,0.02572631,95.76970358],[4.53351868,0.02572803,95.77041366],[4.53351923,0.02572975,95.77112356],[4.53351978,0.02573146,95.77183326],[4.53352033,0.02573318,95.77254279],[4.53352088,0.0257349,95.77325214],[4.53352143,0.02573662,95.7739613],[4.53352198,0.02573833,95.77467029],[4.53352253,0.02574005,95.77537911],[4.53352308,0.02574177,95.77608775],[4.53352363,0.02574348,95.77679623],[4.53352418,0.0257452,95.77750453],[4.53352473,0.02574692,95.77821267],[4.53352527,0.02574863,95.77892065],[4.53352582,0.02575035,95.77962847],[4.53352637,0.02575207,95.78033612],[4.53352692,0.02575379,95.78104362],[4.53352747,0.0257555,95.78175097],[4.53352802,0.02575722,95.78245816],[4.53352857,0.02575894,95.7831652],[4.53352912,0.02576065,95.7838721],[4.53352967,0.02576237,95.78457885],[4.53353022,0.02576409,95.78528545],[4.53353077,0.02576581,95.78599191],[4.53353132,0.02576752,95.78669823],[4.53353187,0.02576924,95.78740442],[4.53353242,0.02577096,95.78811047],[4.53353297,0.02577267,95.78881638],[4.53353352,0.02577439,95.78952216],[4.53353407,0.02577611,95.79022782],[4.53353462,0.02577782,95.79093335],[4.53353517,0.02577954,95.79163875],[4.53353572,0.02578126,95.79234403],[4.53353627,0.02578298,95.79304919],[4.53353681,0.02578469,95.79375423],[4.53353736,0.02578641,95.79445916],[4.53353791,0.02578813,95.79516398],[4.53353846,0.02578984,95.79586871],[4.53353901,0.02579156,95.79657334],[4.53353956,0.02579328,95.79727788],[4.53354011,0.025795,95.79798235],[4.53354066,0.02579671,95.79868674],[4.53354121,0.02579843,95.79939106],[4.53354176,0.02580015,95.80009533],[4.5335423,0.02580187,95.80079953],[4.53354285,0.02580358,95.80150369],[4.5335434,0.0258053,95.80220781],[4.53354395,0.02580702,95.8029119],[4.5335445,0.02580874,95.80361595],[4.53354505,0.02581045,95.80431998],[4.5335456,0.02581217,95.805024],[4.53354615,0.02581389,95.805728],[4.53354669,0.0258156,95.806432],[4.53354724,0.02581732,95.80713601],[4.53354779,0.02581904,95.80784002],[4.53354834,0.02582076,95.80854405],[4.53354889,0.02582247,95.8092481],[4.53354944,0.02582419,95.80995217],[4.53354999,0.02582591,95.81065628],[4.53355054,0.02582763,95.81136043],[4.53355108,0.02582934,95.81206463],[4.53355163,0.02583106,95.81276888],[4.53355218,0.02583278,95.81347319],[4.53355273,0.0258345,95.81417756],[4.53355328,0.02583621,95.814882],[4.53355383,0.02583793,95.81558653],[4.53355438,0.02583965,95.81629113],[4.53355492,0.02584137,95.81699582],[4.53355547,0.02584308,95.81770061],[4.53355602,0.0258448,95.8184055],[4.53355657,0.02584652,95.8191105],[4.53355712,0.02584824,95.81981561],[4.53355767,0.02584995,95.82052084],[4.53355821,0.02585167,95.8212262],[4.53355876,0.02585339,95.82193169],[4.53355931,0.02585511,95.82263732],[4.53355986,0.02585682,95.82334311],[4.53356041,0.02585854,95.82404906],[4.53356096,0.02586026,95.82475518],[4.53356151,0.02586198,95.82546148],[4.53356205,0.02586369,95.82616797],[4.5335626,0.02586541,95.82687466],[4.53356315,0.02586713,95.82758156],[4.5335637,0.02586885,95.82828868],[4.53356425,0.02587056,95.82899602],[4.5335648,0.02587228,95.8297036],[4.53356535,0.025874,95.83041143],[4.53356589,0.02587572,95.83111954],[4.53356644,0.02587743,95.83182798],[4.53356699,0.02587915,95.83253679],[4.53356754,0.02588087,95.83324599],[4.53356809,0.02588259,95.83395564],[4.53356864,0.0258843,95.83466578],[4.53356919,0.02588602,95.83537643],[4.53356973,0.02588774,95.83608765],[4.53357028,0.02588946,95.83679947],[4.53357083,0.02589117,95.83751192],[4.53357138,0.02589289,95.83822506],[4.53357193,0.02589461,95.83893891],[4.53357248,0.02589633,95.83965352],[4.53357303,0.02589804,95.84036892],[4.53357358,0.02589976,95.84108516],[4.53357412,0.02590148,95.84180226],[4.53357467,0.0259032,95.84252028],[4.53357522,0.02590491,95.84323925],[4.53357577,0.02590663,95.8439592],[4.53357632,0.02590835,95.84468018],[4.53357687,0.02591007,95.84540223],[4.53357742,0.02591178,95.84612537],[4.53357796,0.0259135,95.84684966],[4.53357851,0.02591522,95.84757512],[4.53357906,0.02591694,95.84830179],[4.53357961,0.02591865,95.84902972],[4.53358016,0.02592037,95.84975894],[4.53358071,0.02592209,95.85048948],[4.53358126,0.02592381,95.8512214],[4.53358181,0.02592552,95.85195471],[4.53342999,0.02597467,95.68423833]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":1,"type":"shoulder","predecessorId":1},{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":2,"type":"none","predecessorId":2}],"roadId":"1000100","singleSide":false,"rightLanes":[{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"id":-7,"type":"none","predecessorId":-7},{"successorId":0,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":-6,"type":"border","predecessorId":-6},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-5,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"id":-5,"type":"border","predecessorId":-5},{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-4,"type":"shoulder","predecessorId":-4},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.53329492,0.02555209,95.47753252],[4.53329451,0.0255508,95.46819295],[4.53344606,0.02550155,95.67380568],[4.53344647,0.02550283,95.67438492],[4.53329492,0.02555209,95.47753252]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":1,"type":"shoulder","predecessorId":1},{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":2,"type":"none","predecessorId":2}],"roadId":"1000100","singleSide":false,"rightLanes":[{"successorId":-7,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"id":-7,"type":"none","predecessorId":0},{"successorId":0,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":-6,"type":"border","predecessorId":0},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"id":-5,"type":"border","predecessorId":-5},{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-4,"type":"shoulder","predecessorId":-4},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.53329451,0.0255508,95.4487602],[4.53329396,0.02554909,95.4477707],[4.53329341,0.02554737,95.44678178],[4.53329281,0.02554567,95.46595892],[4.53329224,0.02554396,95.47548211],[4.53329174,0.02554223,95.48500393],[4.5332912,0.02554051,95.48985493],[4.53329065,0.02553879,95.48917111],[4.5332901,0.02553707,95.48848665],[4.53328956,0.02553536,95.48780156],[4.53328901,0.02553364,95.48711582],[4.53328846,0.02553192,95.48642943],[4.53328792,0.02553021,95.48574238],[4.53328737,0.02552849,95.48505467],[4.53328682,0.02552677,95.48436629],[4.53328628,0.02552505,95.48367723],[4.53328573,0.02552334,95.4829875],[4.53328519,0.02552162,95.48229708],[4.53328464,0.0255199,95.48160597],[4.5332841,0.02551818,95.48091416],[4.53328355,0.02551647,95.48022165],[4.53328301,0.02551475,95.47952843],[4.53328246,0.02551303,95.4788345],[4.53328192,0.02551131,95.47813984],[4.53328137,0.0255096,95.47744446],[4.53328082,0.02550788,95.47674835],[4.53328027,0.02550616,95.4760515],[4.53327972,0.02550445,95.47535391],[4.53327917,0.02550273,95.47465558],[4.53327862,0.02550102,95.47395648],[4.53327807,0.0254993,95.47325663],[4.53327752,0.02549759,95.47255601],[4.53327696,0.02549587,95.47185463],[4.5332764,0.02549416,95.47115246],[4.53327585,0.02549244,95.47044952],[4.53327529,0.02549073,95.46974578],[4.53327473,0.02548902,95.46904126],[4.53327417,0.0254873,95.46833594],[4.53327362,0.02548559,95.46762981],[4.53327306,0.02548388,95.46692287],[4.5332725,0.02548216,95.46621512],[4.53327194,0.02548045,95.46550654],[4.53327138,0.02547874,95.46479715],[4.53327082,0.02547702,95.46408693],[4.53327026,0.02547531,95.4633759],[4.53326971,0.0254736,95.46266409],[4.53326915,0.02547188,95.4619515],[4.5332686,0.02547017,95.46123815],[4.53326804,0.02546845,95.46052406],[4.53326749,0.02546674,95.45980924],[4.53326694,0.02546502,95.45909371],[4.53326638,0.02546331,95.45837749],[4.53326583,0.02546159,95.45766058],[4.53326528,0.02545988,95.45694302],[4.53326473,0.02545816,95.4562248],[4.53326418,0.02545645,95.45550595],[4.53326363,0.02545473,95.45478649],[4.53326308,0.02545302,95.45406642],[4.53326253,0.0254513,95.45334577],[4.53326198,0.02544958,95.45262455],[4.53326143,0.02544787,95.45190277],[4.53326088,0.02544615,95.45118046],[4.53326033,0.02544443,95.45045763],[4.53325978,0.02544272,95.44973428],[4.53325923,0.025441,95.44901045],[4.53325868,0.02543929,95.44828614],[4.53325813,0.02543757,95.44756137],[4.53325758,0.02543585,95.44683616],[4.53325703,0.02543414,95.44611052],[4.53325649,0.02543242,95.44538447],[4.53325594,0.0254307,95.44465802],[4.53325539,0.02542899,95.44393119],[4.53325484,0.02542727,95.44320399],[4.53325429,0.02542556,95.44247644],[4.53325374,0.02542384,95.44174856],[4.53325319,0.02542213,95.44102035],[4.53325264,0.02542041,95.44029185],[4.5332523,0.02541935,95.43984364],[4.53340388,0.02537,95.61608841],[4.53340422,0.02537106,95.61652143],[4.53340477,0.02537278,95.61722288],[4.53340532,0.02537449,95.61792158],[4.53340588,0.02537621,95.61861807],[4.53340643,0.02537793,95.61931287],[4.53340698,0.02537964,95.62000653],[4.53340753,0.02538136,95.62069959],[4.53340808,0.02538308,95.62139257],[4.53340863,0.02538479,95.62208603],[4.53340918,0.02538651,95.62278049],[4.53340973,0.02538823,95.6234765],[4.53341028,0.02538994,95.62417459],[4.53341083,0.02539166,95.62487531],[4.53341139,0.02539338,95.62557919],[4.53341194,0.02539509,95.62628677],[4.53341249,0.02539681,95.6269986],[4.53341304,0.02539853,95.62771521],[4.53341359,0.02540024,95.62843715],[4.53341414,0.02540196,95.62916496],[4.53341469,0.02540368,95.62989918],[4.53341524,0.02540539,95.63064016],[4.53341579,0.02540711,95.63138755],[4.53341634,0.02540883,95.6321408],[4.5334169,0.02541054,95.63289936],[4.53341745,0.02541226,95.63366268],[4.533418,0.02541398,95.63443023],[4.53341855,0.02541569,95.63520144],[4.5334191,0.02541741,95.63597577],[4.53341965,0.02541913,95.63675268],[4.5334202,0.02542084,95.63753161],[4.53342075,0.02542256,95.63831202],[4.53342131,0.02542428,95.63909335],[4.53342186,0.02542599,95.63987505],[4.53342241,0.02542771,95.64065659],[4.53342296,0.02542943,95.6414374],[4.53342351,0.02543114,95.64221725],[4.53342406,0.02543286,95.64299615],[4.53342461,0.02543458,95.64377415],[4.53342516,0.0254363,95.64455127],[4.53342571,0.02543801,95.64532756],[4.53342626,0.02543973,95.64610305],[4.53342681,0.02544145,95.64687778],[4.53342736,0.02544316,95.64765179],[4.53342791,0.02544488,95.64842511],[4.53342846,0.0254466,95.64919779],[4.53342902,0.02544831,95.64996985],[4.53342957,0.02545003,95.65074134],[4.53343012,0.02545175,95.6515123],[4.53343067,0.02545347,95.65228276],[4.53343122,0.02545518,95.65305275],[4.53343177,0.0254569,95.65382232],[4.53343232,0.02545862,95.65459151],[4.53343287,0.02546033,95.65536035],[4.53343342,0.02546205,95.65612888],[4.53343397,0.02546377,95.65689713],[4.53343452,0.02546548,95.65766515],[4.53343507,0.0254672,95.65843297],[4.53343561,0.02546892,95.65920063],[4.53343616,0.02547064,95.65996816],[4.53343671,0.02547235,95.66073561],[4.53343726,0.02547407,95.66150301],[4.53343781,0.02547579,95.66227041],[4.53343836,0.0254775,95.66303782],[4.53343891,0.02547922,95.66380531],[4.53343946,0.02548094,95.66457289],[4.53344001,0.02548266,95.66534062],[4.53344056,0.02548437,95.66610853],[4.53344111,0.02548609,95.66687665],[4.53344166,0.02548781,95.66764502],[4.53344221,0.02548953,95.66841369],[4.53344276,0.02549124,95.66918268],[4.53344331,0.02549296,95.66995205],[4.53344386,0.02549468,95.67072181],[4.53344441,0.02549639,95.67149202],[4.53344496,0.02549811,95.67226271],[4.53344551,0.02549983,95.67303392],[4.53344606,0.02550155,95.67380568],[4.53329451,0.0255508,95.4487602]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":1,"type":"shoulder","predecessorId":1},{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":2,"type":"none","predecessorId":2}],"roadId":"1000100","singleSide":false,"rightLanes":[{"successorId":-7,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"id":-7,"type":"none","predecessorId":-7},{"successorId":-6,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":-6,"type":"border","predecessorId":0},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-5,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"id":-5,"type":"border","predecessorId":0},{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-4,"type":"shoulder","predecessorId":-4},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.5332523,0.02541935,95.43984364],[4.53325175,0.02541764,95.43912366],[4.5332512,0.02541592,95.43840448],[4.53325065,0.02541421,95.43768687],[4.5332501,0.02541249,95.43701161],[4.53324955,0.02541077,95.43707462],[4.53324927,0.02540989,95.43703258],[4.53340084,0.02536054,95.61220037],[4.53340113,0.02536142,95.61256166],[4.53340168,0.02536314,95.61326715],[4.53340223,0.02536485,95.61397257],[4.53340278,0.02536657,95.61467792],[4.53340333,0.02536829,95.6153832],[4.53340388,0.02537,95.61608841],[4.5332523,0.02541935,95.43984364]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":1,"type":"shoulder","predecessorId":1},{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":2,"type":"none","predecessorId":2}],"roadId":"1000100","singleSide":false,"rightLanes":[{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15},{"outer":0.15,"inner":0.025}],"id":-7,"type":"none","predecessorId":-7},{"successorId":-6,"level":true,"heights":[{"outer":0.15,"inner":0.15},{"outer":0.025,"inner":0.025}],"id":-6,"type":"border","predecessorId":-6},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-5,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"id":-5,"type":"border","predecessorId":-5},{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-4,"type":"shoulder","predecessorId":-4},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.53327501,0.02540151,95.43703258],[4.53327445,0.0253998,95.43633351],[4.53327389,0.02539809,95.43563527],[4.53327333,0.02539637,95.43493727],[4.53327277,0.02539466,95.43423951],[4.53327222,0.02539295,95.43354198],[4.53327166,0.02539123,95.43284468],[4.5332711,0.02538952,95.43214761],[4.53327054,0.02538781,95.43145077],[4.53326998,0.02538609,95.43075415],[4.53326943,0.02538438,95.43005775],[4.53326892,0.02538282,95.42942553],[4.53339483,0.02534181,95.60449918],[4.53339533,0.02534337,95.60514064],[4.53339588,0.02534509,95.60584694],[4.53339643,0.02534681,95.60655316],[4.53339699,0.02534852,95.60725931],[4.53339754,0.02535024,95.60796539],[4.53339809,0.02535196,95.6086714],[4.53339864,0.02535367,95.60937733],[4.53339919,0.02535539,95.6100832],[4.53339974,0.02535711,95.61078899],[4.53340029,0.02535882,95.61149472],[4.53340084,0.02536054,95.61220037],[4.53327501,0.02540151,95.43703258]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":1,"type":"shoulder","predecessorId":1},{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":2,"type":"none","predecessorId":2}],"roadId":"1000100","singleSide":false,"rightLanes":[{"successorId":-7,"level":true,"heights":[{"outer":0.15,"inner":0.025},{"outer":0.15,"inner":0.15}],"id":-7,"type":"border","predecessorId":0},{"successorId":-6,"level":true,"heights":[{"outer":0.025,"inner":0.025},{"outer":0.15,"inner":0.15}],"id":-6,"type":"border","predecessorId":-6},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-5,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"id":-5,"type":"border","predecessorId":-5},{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-4,"type":"shoulder","predecessorId":-4},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.53326892,0.02538282,95.42942553],[4.53326837,0.02538111,95.42873503],[4.53326781,0.02537939,95.42804474],[4.53326726,0.02537768,95.42735465],[4.5332667,0.02537596,95.42666478],[4.53326615,0.02537425,95.4259751],[4.5332656,0.02537253,95.42528563],[4.53326504,0.02537082,95.42459636],[4.53326449,0.0253691,95.42390728],[4.53326394,0.02536739,95.42321839],[4.53326338,0.02536567,95.4225297],[4.53326283,0.02536396,95.42184119],[4.53326227,0.02536225,95.42115286],[4.53326172,0.02536053,95.42046472],[4.53326117,0.02535882,95.41977676],[4.53326061,0.0253571,95.41908897],[4.53326006,0.02535539,95.41840136],[4.53326004,0.02535534,95.41838169],[4.53338598,0.0253143,95.63392391],[4.533386,0.02531435,95.63394544],[4.53338655,0.02531607,95.63469797],[4.5333871,0.02531779,95.63545041],[4.53338765,0.0253195,95.63620277],[4.5333882,0.02532122,95.63695503],[4.53338875,0.02532294,95.63770722],[4.53338931,0.02532465,95.63845931],[4.53338986,0.02532637,95.63921132],[4.53339041,0.02532809,95.63996324],[4.53339096,0.0253298,95.64071507],[4.53339151,0.02533152,95.64146681],[4.53339206,0.02533324,95.64221847],[4.53339261,0.02533495,95.64297003],[4.53339316,0.02533667,95.64372151],[4.53339372,0.02533839,95.64447289],[4.53339427,0.0253401,95.64522419],[4.53339482,0.02534182,95.64597539],[4.53326892,0.02538282,95.42942553]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":1,"type":"shoulder","predecessorId":1},{"successorId":2,"level":false,"id":2,"type":"border","predecessorId":2}],"roadId":"1000100","singleSide":false,"rightLanes":[{"successorId":-7,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":-7,"type":"border","predecessorId":-7},{"successorId":-6,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":-6,"type":"border","predecessorId":-6},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-5,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"id":-5,"type":"border","predecessorId":-5},{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-4,"type":"shoulder","predecessorId":-4},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.53326004,0.02535534,95.41838169],[4.53325949,0.02535362,95.41770683],[4.53325894,0.02535191,95.41703214],[4.53325839,0.02535019,95.41635761],[4.53325784,0.02534847,95.41568324],[4.53325729,0.02534676,95.41500902],[4.53325695,0.02534571,95.41459905],[4.5333829,0.02530467,95.67542372],[4.53338324,0.02530572,95.67586868],[4.53338379,0.02530743,95.67660032],[4.53338434,0.02530915,95.67733198],[4.53338489,0.02531087,95.67806366],[4.53338544,0.02531258,95.67879536],[4.53338599,0.0253143,95.67952707],[4.53326004,0.02535534,95.41838169]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":1,"level":true,"heights":[{"outer":0.0,"inner":0.0},{"outer":0.15,"inner":0.15}],"id":1,"type":"border","predecessorId":1},{"successorId":2,"level":true,"heights":[{"outer":0.15,"inner":0.15},{"outer":0.15,"inner":0.025}],"id":2,"type":"border","predecessorId":2}],"roadId":"1000100","singleSide":false,"rightLanes":[{"successorId":-7,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":-7,"type":"border","predecessorId":-7},{"successorId":-6,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":-6,"type":"border","predecessorId":-6},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-5,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"id":-5,"type":"border","predecessorId":-5},{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-4,"type":"shoulder","predecessorId":-4},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.53325695,0.02534571,95.41459905],[4.5332564,0.025344,95.4139195],[4.53325585,0.02534228,95.41324008],[4.53325529,0.02534057,95.41256079],[4.53325474,0.02533885,95.41188162],[4.53325419,0.02533714,95.41120259],[4.53325364,0.02533542,95.4105237],[4.53325308,0.02533371,95.40984496],[4.53325253,0.02533199,95.40916636],[4.53325198,0.02533028,95.40848791],[4.53325142,0.02532856,95.40780963],[4.53325087,0.02532685,95.4071315],[4.53325032,0.02532513,95.40645354],[4.53324977,0.02532342,95.40577576],[4.53324921,0.0253217,95.40509815],[4.53324866,0.02531999,95.40442071],[4.53324811,0.02531827,95.40374347],[4.53324755,0.02531656,95.40306641],[4.533247,0.02531484,95.40238955],[4.53324645,0.02531313,95.40171289],[4.53324589,0.02531141,95.40103643],[4.53324534,0.0253097,95.40036018],[4.53324479,0.02530798,95.39968413],[4.53324424,0.02530627,95.39900831],[4.53324368,0.02530455,95.39833271],[4.53324313,0.02530284,95.39765733],[4.53324258,0.02530112,95.39698218],[4.53324202,0.02529941,95.39630727],[4.53324147,0.02529769,95.39563259],[4.53324092,0.02529598,95.39495816],[4.53324037,0.02529426,95.39428397],[4.53323981,0.02529255,95.39361004],[4.53323926,0.02529083,95.39293636],[4.53323871,0.02528912,95.39226295],[4.53323815,0.0252874,95.3915898],[4.5332376,0.02528569,95.39091692],[4.53323705,0.02528397,95.39024431],[4.5332365,0.02528226,95.38957198],[4.53323594,0.02528054,95.38889994],[4.53323539,0.02527883,95.38822818],[4.53323484,0.02527711,95.38755671],[4.53323429,0.0252754,95.38688554],[4.53323373,0.02527368,95.38621467],[4.53323318,0.02527196,95.3855441],[4.53323263,0.02527025,95.38487385],[4.53323208,0.02526853,95.3842039],[4.53323152,0.02526682,95.38353428],[4.53323097,0.0252651,95.38286497],[4.53323042,0.02526339,95.38219599],[4.53322987,0.02526167,95.38152735],[4.53322932,0.02525996,95.38085903],[4.53322876,0.02525824,95.38019106],[4.53322821,0.02525653,95.37952342],[4.53322766,0.02525481,95.3788561],[4.53322711,0.0252531,95.37818909],[4.53322656,0.02525138,95.37752236],[4.53322601,0.02524967,95.37685592],[4.53322545,0.02524795,95.37618974],[4.5332249,0.02524623,95.3755238],[4.53322435,0.02524452,95.37485811],[4.5332238,0.0252428,95.37419263],[4.53322325,0.02524109,95.37352736],[4.5332227,0.02523937,95.37286229],[4.53322215,0.02523766,95.37219739],[4.5332216,0.02523594,95.37153266],[4.53322104,0.02523423,95.37086808],[4.53322049,0.02523251,95.37020365],[4.53321994,0.02523079,95.36953934],[4.53321939,0.02522908,95.36887517],[4.53321884,0.02522736,95.36821111],[4.53321829,0.02522565,95.36754716],[4.53321774,0.02522393,95.36688333],[4.53321719,0.02522222,95.36621959],[4.53321663,0.0252205,95.36555594],[4.53321608,0.02521879,95.36489237],[4.53321553,0.02521707,95.36422888],[4.53321498,0.02521535,95.36356546],[4.53321443,0.02521364,95.3629021],[4.53321388,0.02521192,95.3622388],[4.53321333,0.02521021,95.36157555],[4.53321278,0.02520849,95.36091233],[4.53321222,0.02520678,95.36024915],[4.53321167,0.02520506,95.359586],[4.53321112,0.02520335,95.35892287],[4.53321057,0.02520163,95.35825974],[4.53321002,0.02519991,95.35759663],[4.53320947,0.0251982,95.35693351],[4.53320892,0.02519648,95.35627038],[4.53320837,0.02519477,95.35560724],[4.53320781,0.02519305,95.35494407],[4.53320726,0.02519134,95.35428087],[4.53320671,0.02518962,95.35361764],[4.53320616,0.02518791,95.35295436],[4.53320561,0.02518619,95.35229102],[4.53320506,0.02518447,95.35162763],[4.53320451,0.02518276,95.35096418],[4.53320395,0.02518104,95.35030065],[4.5332034,0.02517933,95.34963704],[4.53320285,0.02517761,95.34897334],[4.5332023,0.0251759,95.34830955],[4.53320175,0.02517418,95.34764566],[4.5332012,0.02517247,95.34698166],[4.53320068,0.02517085,95.34635636],[4.53332653,0.02512972,95.60093314],[4.53332705,0.02513134,95.60162037],[4.53332761,0.02513305,95.60235027],[4.53332816,0.02513477,95.60308019],[4.53332872,0.02513648,95.60381012],[4.53332928,0.0251382,95.60454007],[4.53332983,0.02513991,95.60527003],[4.53333039,0.02514163,95.60600001],[4.53333094,0.02514334,95.60673001],[4.5333315,0.02514506,95.60746001],[4.53333205,0.02514678,95.60819004],[4.53333261,0.02514849,95.60892008],[4.53333316,0.02515021,95.60965014],[4.53333372,0.02515192,95.61038021],[4.53333427,0.02515364,95.6111103],[4.53333483,0.02515535,95.6118404],[4.53333538,0.02515707,95.61257052],[4.53333593,0.02515879,95.61330065],[4.53333649,0.0251605,95.6140308],[4.53333704,0.02516222,95.61476097],[4.5333376,0.02516393,95.61549115],[4.53333815,0.02516565,95.61622135],[4.53333871,0.02516736,95.61695157],[4.53333926,0.02516908,95.6176818],[4.53333982,0.0251708,95.61841204],[4.53334037,0.02517251,95.61914231],[4.53334092,0.02517423,95.61987259],[4.53334148,0.02517594,95.62060288],[4.53334203,0.02517766,95.62133319],[4.53334259,0.02517937,95.62206352],[4.53334314,0.02518109,95.62279386],[4.53334369,0.02518281,95.62352422],[4.53334425,0.02518452,95.6242546],[4.5333448,0.02518624,95.62498499],[4.53334535,0.02518795,95.6257154],[4.53334591,0.02518967,95.62644583],[4.53334646,0.02519139,95.62717627],[4.53334702,0.0251931,95.62790673],[4.53334757,0.02519482,95.6286372],[4.53334812,0.02519653,95.6293677],[4.53334868,0.02519825,95.63009821],[4.53334923,0.02519997,95.63082873],[4.53334978,0.02520168,95.63155927],[4.53335033,0.0252034,95.63228983],[4.53335089,0.02520511,95.63302041],[4.53335144,0.02520683,95.633751],[4.53335199,0.02520855,95.63448161],[4.53335255,0.02521026,95.63521223],[4.5333531,0.02521198,95.63594288],[4.53335365,0.0252137,95.63667354],[4.5333542,0.02521541,95.63740421],[4.53335476,0.02521713,95.63813491],[4.53335531,0.02521884,95.63886562],[4.53335586,0.02522056,95.63959635],[4.53335642,0.02522228,95.64032709],[4.53335697,0.02522399,95.64105786],[4.53335752,0.02522571,95.64178864],[4.53335807,0.02522743,95.64251943],[4.53335863,0.02522914,95.64325025],[4.53335918,0.02523086,95.64398108],[4.53335973,0.02523258,95.64471193],[4.53336028,0.02523429,95.64544279],[4.53336083,0.02523601,95.64617368],[4.53336139,0.02523772,95.64690458],[4.53336194,0.02523944,95.6476355],[4.53336249,0.02524116,95.64836643],[4.53336304,0.02524287,95.64909739],[4.5333636,0.02524459,95.64982836],[4.53336415,0.02524631,95.65055935],[4.5333647,0.02524802,95.65129035],[4.53336525,0.02524974,95.65202138],[4.5333658,0.02525146,95.65275242],[4.53336635,0.02525317,95.65348348],[4.53336691,0.02525489,95.65421456],[4.53336746,0.02525661,95.65494565],[4.53336801,0.02525832,95.65567677],[4.53336856,0.02526004,95.6564079],[4.53336911,0.02526176,95.65713905],[4.53336967,0.02526347,95.65787021],[4.53337022,0.02526519,95.6586014],[4.53337077,0.02526691,95.6593326],[4.53337132,0.02526862,95.66006382],[4.53337187,0.02527034,95.66079506],[4.53337242,0.02527205,95.66152632],[4.53337298,0.02527377,95.6622576],[4.53337353,0.02527549,95.66298889],[4.53337408,0.0252772,95.6637202],[4.53337463,0.02527892,95.66445153],[4.53337518,0.02528064,95.66518288],[4.53337573,0.02528235,95.66591425],[4.53337628,0.02528407,95.66664564],[4.53337684,0.02528579,95.66737704],[4.53337739,0.0252875,95.66810846],[4.53337794,0.02528922,95.66883991],[4.53337849,0.02529094,95.66957137],[4.53337904,0.02529265,95.67030284],[4.53337959,0.02529437,95.67103434],[4.53338014,0.02529609,95.67176586],[4.5333807,0.0252978,95.67249739],[4.53338125,0.02529952,95.67322895],[4.5333818,0.02530124,95.67396052],[4.53338235,0.02530295,95.67469211],[4.5333829,0.02530467,95.67542372],[4.53325695,0.02534571,95.41459905]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":0,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":1,"type":"border","predecessorId":1},{"successorId":0,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":2,"type":"border","predecessorId":2}],"roadId":"1000100","singleSide":false,"rightLanes":[{"successorId":-7,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":-7,"type":"border","predecessorId":-7},{"successorId":-6,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":-6,"type":"border","predecessorId":-6},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-5,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"id":-5,"type":"border","predecessorId":-5},{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-4,"type":"shoulder","predecessorId":-4},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.53320068,0.02517085,95.34635636],[4.53320012,0.02516914,95.34568737],[4.53319957,0.02516742,95.34501841],[4.53319902,0.02516571,95.34434946],[4.53319846,0.02516399,95.34368053],[4.53319791,0.02516228,95.34301162],[4.53319736,0.02516056,95.34234274],[4.53319681,0.02515885,95.34167389],[4.53319625,0.02515713,95.34100507],[4.5331957,0.02515542,95.34033629],[4.53319515,0.0251537,95.33966754],[4.53319459,0.02515199,95.33899884],[4.53319404,0.02515027,95.33833018],[4.53319349,0.02514856,95.33766156],[4.53319293,0.02514684,95.33699299],[4.53319238,0.02514513,95.33632447],[4.53319183,0.02514341,95.33565601],[4.53319127,0.0251417,95.33498761],[4.53319072,0.02513998,95.33431926],[4.53319017,0.02513827,95.33365098],[4.53318962,0.02513655,95.33298276],[4.53318906,0.02513484,95.33231461],[4.53318851,0.02513312,95.33164653],[4.53318796,0.02513141,95.33097853],[4.5331874,0.02512969,95.3303106],[4.53318687,0.02512805,95.32967114],[4.53331266,0.02508691,95.49418149],[4.53331319,0.02508855,95.49488189],[4.53331375,0.02509027,95.4956136],[4.5333143,0.02509198,95.49634551],[4.53331486,0.0250937,95.49707761],[4.53331542,0.02509542,95.49780989],[4.53331597,0.02509713,95.49854235],[4.53331653,0.02509885,95.49927499],[4.53331708,0.02510056,95.5000078],[4.53331764,0.02510228,95.50074077],[4.53331819,0.02510399,95.5014739],[4.53331875,0.02510571,95.50220718],[4.53331931,0.02510742,95.5029406],[4.53331986,0.02510914,95.50367417],[4.53332042,0.02511085,95.50440788],[4.53332097,0.02511257,95.50514172],[4.53332153,0.02511428,95.50587568],[4.53332208,0.025116,95.50660976],[4.53332264,0.02511771,95.50734396],[4.5333232,0.02511943,95.50807827],[4.53332375,0.02512115,95.50881268],[4.53332431,0.02512286,95.50954719],[4.53332486,0.02512458,95.51028179],[4.53332542,0.02512629,95.51101648],[4.53332598,0.02512801,95.51175125],[4.53332653,0.02512972,95.51248609],[4.53320068,0.02517085,95.34635636]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":1,"type":"shoulder","predecessorId":0},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":2,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"id":2,"type":"border","predecessorId":0},{"successorId":3,"level":true,"id":3,"type":"border","predecessorId":0},{"successorId":4,"level":true,"id":4,"type":"border","predecessorId":0}],"roadId":"1000100","singleSide":false,"rightLanes":[{"successorId":-7,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":-7,"type":"border","predecessorId":-7},{"successorId":-6,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":-6,"type":"border","predecessorId":-6},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-5,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"id":-5,"type":"border","predecessorId":-5},{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-4,"type":"shoulder","predecessorId":-4},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.53318687,0.02512805,95.32967114],[4.53318632,0.02512634,95.32899238],[4.53318576,0.02512462,95.32831371],[4.53318551,0.02512384,95.32800172],[4.53331129,0.02508269,95.49237888],[4.53331155,0.02508348,95.49271571],[4.53331211,0.0250852,95.49344849],[4.53331266,0.02508691,95.49418149],[4.53318687,0.02512805,95.32967114]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":1,"type":"shoulder","predecessorId":1},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"id":2,"type":"border","predecessorId":2},{"successorId":0,"level":true,"id":3,"type":"border","predecessorId":3},{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":4,"type":"none","predecessorId":4}],"roadId":"1000100","singleSide":false,"rightLanes":[{"successorId":-7,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":-7,"type":"border","predecessorId":-7},{"successorId":-6,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":-6,"type":"border","predecessorId":-6},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-5,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"id":-5,"type":"border","predecessorId":-5},{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-4,"type":"shoulder","predecessorId":-4},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.53318551,0.02512384,95.32800172],[4.53318495,0.02512212,95.32732237],[4.53318439,0.02512041,95.32664311],[4.53318384,0.02511869,95.32596395],[4.53318328,0.02511698,95.3252849],[4.53318273,0.02511527,95.32460595],[4.53318217,0.02511355,95.3239271],[4.53318161,0.02511184,95.32324837],[4.53318106,0.02511012,95.32256974],[4.5331805,0.02510841,95.32189124],[4.53317995,0.0251067,95.32121285],[4.53317939,0.02510498,95.32053458],[4.53317883,0.02510327,95.31985643],[4.53317828,0.02510155,95.31917841],[4.53317772,0.02509984,95.31850051],[4.53317717,0.02509813,95.31782275],[4.53317661,0.02509641,95.31714512],[4.53317606,0.0250947,95.31646763],[4.5331755,0.02509298,95.31579027],[4.53317495,0.02509127,95.31511303],[4.53317439,0.02508956,95.31443591],[4.53317384,0.02508784,95.3137589],[4.53317328,0.02508613,95.313082],[4.53317273,0.02508441,95.3124052],[4.53317217,0.0250827,95.31172849],[4.53317162,0.02508099,95.31105187],[4.53317106,0.02507927,95.31037534],[4.53317051,0.02507756,95.30969889],[4.53316995,0.02507584,95.3090225],[4.5331694,0.02507413,95.30834619],[4.53316884,0.02507241,95.30766993],[4.53316829,0.0250707,95.30699373],[4.53316773,0.02506898,95.30631757],[4.53316718,0.02506727,95.30564146],[4.53316667,0.02506569,95.30501989],[4.53329246,0.02502451,95.46604691],[4.53329297,0.02502608,95.46675612],[4.53329352,0.0250278,95.46752778],[4.53329408,0.02502951,95.46829973],[4.53329463,0.02503123,95.46907195],[4.53329519,0.02503295,95.46984445],[4.53329574,0.02503466,95.47061725],[4.53329629,0.02503638,95.47139033],[4.53329685,0.02503809,95.4721637],[4.5332974,0.02503981,95.47293737],[4.53329796,0.02504152,95.47371134],[4.53329851,0.02504324,95.47448561],[4.53329907,0.02504496,95.47526018],[4.53329962,0.02504667,95.47603506],[4.53330018,0.02504839,95.47681026],[4.53330073,0.0250501,95.47758577],[4.53330129,0.02505182,95.4783616],[4.53330184,0.02505353,95.47913775],[4.5333024,0.02505525,95.47991423],[4.53330296,0.02505696,95.48069103],[4.53330351,0.02505868,95.48146816],[4.53330407,0.02506039,95.4822456],[4.53330462,0.02506211,95.48302336],[4.53330518,0.02506383,95.48380142],[4.53330573,0.02506554,95.48457979],[4.53330629,0.02506726,95.48535845],[4.53330685,0.02506897,95.4861374],[4.5333074,0.02507069,95.48691664],[4.53330796,0.0250724,95.48769616],[4.53330851,0.02507412,95.48847596],[4.53330907,0.02507583,95.48925602],[4.53330963,0.02507755,95.49003635],[4.53331018,0.02507926,95.49081694],[4.53331074,0.02508098,95.49159779],[4.53331129,0.02508269,95.49237888],[4.53318551,0.02512384,95.32800172]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":1,"type":"shoulder","predecessorId":0},{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":2,"type":"none","predecessorId":0}],"roadId":"1000100","singleSide":false,"rightLanes":[{"successorId":0,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":-7,"type":"border","predecessorId":-7},{"successorId":-6,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":-6,"type":"border","predecessorId":-6},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-5,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"id":-5,"type":"border","predecessorId":-5},{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-4,"type":"shoulder","predecessorId":-4},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.53314251,0.02507361,95.30501989],[4.53314196,0.02507189,95.30434812],[4.53314141,0.02507018,95.30367503],[4.53314085,0.02506846,95.30300084],[4.5331403,0.02506675,95.30232579],[4.53313975,0.02506503,95.30165009],[4.5331392,0.02506332,95.30097399],[4.53313864,0.0250616,95.3002977],[4.53313809,0.02505989,95.29962146],[4.53313754,0.02505817,95.29894548],[4.53313698,0.02505646,95.29827],[4.53313643,0.02505474,95.29759525],[4.53313588,0.02505303,95.29692144],[4.53313532,0.02505131,95.2962488],[4.53313477,0.0250496,95.29557757],[4.53313422,0.02504788,95.29490797],[4.53313367,0.02504617,95.29424021],[4.53313313,0.02504445,95.29357454],[4.53313258,0.02504274,95.29291117],[4.53313203,0.02504102,95.29225032],[4.53313149,0.0250393,95.29159223],[4.53313095,0.02503758,95.29093694],[4.5331304,0.02503586,95.29028054],[4.53312986,0.02503415,95.2896154],[4.53312931,0.02503243,95.28893856],[4.53312876,0.02503072,95.28825195],[4.53312821,0.025029,95.2875577],[4.53312765,0.02502729,95.28685795],[4.53312709,0.02502558,95.28615482],[4.53312651,0.02502387,95.2854504],[4.53312591,0.02502217,95.28474586],[4.53312529,0.02502048,95.28404144],[4.53312467,0.02501879,95.28333733],[4.53312404,0.0250171,95.28263374],[4.53312342,0.02501541,95.28193086],[4.5331228,0.02501371,95.2812289],[4.53312221,0.02501201,95.28052761],[4.53312163,0.0250103,95.27981747],[4.53312106,0.0250086,95.27909198],[4.53312049,0.02500689,95.27835699],[4.53311993,0.02500517,95.27761886],[4.53311936,0.02500346,95.27688397],[4.5331188,0.02500175,95.27615641],[4.53311824,0.02500004,95.2754314],[4.53311767,0.02499833,95.27470543],[4.5331171,0.02499662,95.27397857],[4.53311654,0.02499491,95.27325102],[4.53311597,0.0249932,95.27252301],[4.5331154,0.02499149,95.27179473],[4.53311482,0.02498978,95.27106641],[4.53311425,0.02498808,95.27033825],[4.53311368,0.02498637,95.26961046],[4.53311311,0.02498466,95.26888326],[4.53311253,0.02498295,95.26815685],[4.53311196,0.02498124,95.26743145],[4.53311139,0.02497954,95.26670726],[4.53311082,0.02497783,95.26598449],[4.53311025,0.02497612,95.26526335],[4.53310967,0.02497441,95.26454382],[4.5331091,0.0249727,95.26382568],[4.53310853,0.02497099,95.26310869],[4.53310797,0.02496928,95.26239261],[4.5331074,0.02496758,95.26167722],[4.53310683,0.02496587,95.26096228],[4.53310626,0.02496416,95.26024755],[4.53310569,0.02496245,95.25953281],[4.53310512,0.02496074,95.25881795],[4.53310456,0.02495903,95.25810295],[4.53310399,0.02495732,95.25738783],[4.53310342,0.02495561,95.25667258],[4.53310286,0.0249539,95.25595722],[4.53310229,0.02495219,95.25524175],[4.53310172,0.02495048,95.25452616],[4.53310116,0.02494877,95.25381047],[4.53310059,0.02494706,95.25309468],[4.53310003,0.02494535,95.25237878],[4.53309946,0.02494363,95.25166275],[4.5330989,0.02494192,95.25094656],[4.53309834,0.02494021,95.25023019],[4.53309777,0.0249385,95.24951362],[4.53309721,0.02493679,95.2487968],[4.53309665,0.02493508,95.24807973],[4.53309609,0.02493337,95.24736237],[4.53309552,0.02493166,95.2466447],[4.53309496,0.02492994,95.24592668],[4.5330944,0.02492823,95.24520831],[4.53309384,0.02492652,95.24448954],[4.53309328,0.02492481,95.24377035],[4.53309272,0.0249231,95.24305071],[4.53309216,0.02492139,95.24233058],[4.5330916,0.02491967,95.24160991],[4.53309104,0.02491796,95.24088867],[4.53309048,0.02491625,95.24016682],[4.53308992,0.02491454,95.23944432],[4.53308936,0.02491282,95.23872114],[4.5330888,0.02491111,95.23799723],[4.53308825,0.0249094,95.23727256],[4.53308769,0.02490769,95.23654709],[4.53308713,0.02490597,95.23582078],[4.53308657,0.02490426,95.23509359],[4.53308601,0.02490255,95.23436548],[4.53308545,0.02490084,95.23363659],[4.5330849,0.02489912,95.23290718],[4.53308434,0.02489741,95.23217752],[4.53308378,0.0248957,95.2314479],[4.53308322,0.02489398,95.23071859],[4.53308267,0.02489227,95.22998987],[4.53308211,0.02489056,95.22926202],[4.53308155,0.02488884,95.22853531],[4.533081,0.02488713,95.22781001],[4.53308045,0.02488542,95.22708634],[4.53307989,0.0248837,95.22636417],[4.53307934,0.02488199,95.22564334],[4.53307879,0.02488027,95.22492364],[4.53307824,0.02487856,95.2242049],[4.53307769,0.02487684,95.22348694],[4.53307714,0.02487513,95.22276957],[4.53307659,0.02487341,95.22205261],[4.53307604,0.0248717,95.22133587],[4.53307549,0.02486998,95.22061917],[4.53307494,0.02486826,95.21990232],[4.53307439,0.02486655,95.21918515],[4.53307384,0.02486483,95.21846747],[4.53307329,0.02486312,95.2177491],[4.53307274,0.0248614,95.21702985],[4.53307219,0.02485969,95.21630954],[4.53307164,0.02485797,95.21558799],[4.53307108,0.02485626,95.21486501],[4.53307053,0.02485455,95.21414043],[4.53306997,0.02485283,95.21341418],[4.5330694,0.02485112,95.2126863],[4.53306884,0.02484941,95.21195683],[4.53306827,0.0248477,95.2112258],[4.53306769,0.024846,95.21049326],[4.53306712,0.02484429,95.20975926],[4.53306654,0.02484258,95.20902382],[4.53306596,0.02484088,95.20828698],[4.53306537,0.02483917,95.2075488],[4.53306479,0.02483747,95.2068093],[4.5330642,0.02483577,95.20606854],[4.53306361,0.02483406,95.20532654],[4.53306303,0.02483236,95.20458335],[4.53306244,0.02483066,95.203839],[4.53306185,0.02482895,95.20309355],[4.53306127,0.02482725,95.20234702],[4.53306068,0.02482555,95.20159946],[4.5330601,0.02482384,95.20085091],[4.53305952,0.02482214,95.2001014],[4.53305895,0.02482043,95.19935098],[4.53305837,0.02481872,95.19859969],[4.5330578,0.02481701,95.19784757],[4.53305724,0.0248153,95.1970947],[4.53305667,0.02481359,95.19634184],[4.53305611,0.02481188,95.19558944],[4.53305555,0.02481017,95.19483764],[4.53305499,0.02480846,95.19408657],[4.53305444,0.02480674,95.19333639],[4.53305388,0.02480503,95.19258724],[4.53305333,0.02480332,95.19183927],[4.53305277,0.02480161,95.19109262],[4.53305222,0.02479989,95.18971112],[4.53305167,0.02479818,95.18061959],[4.5330512,0.02479675,95.17147248],[4.53320244,0.02474693,95.34583137],[4.53320291,0.02474836,95.34644801],[4.53320347,0.02475008,95.34718539],[4.53320402,0.02475179,95.34792296],[4.53320458,0.0247535,95.34866071],[4.53320514,0.02475521,95.34939864],[4.5332057,0.02475693,95.35013675],[4.53320626,0.02475864,95.35087502],[4.53320681,0.02476036,95.35161344],[4.53320737,0.02476207,95.35235202],[4.53320793,0.02476379,95.35309074],[4.53320849,0.0247655,95.3538296],[4.53320905,0.02476722,95.35456859],[4.53320961,0.02476893,95.35530769],[4.53321017,0.02477065,95.35604691],[4.53321072,0.02477236,95.35678623],[4.53321128,0.02477407,95.35752564],[4.53321184,0.02477579,95.35826515],[4.5332124,0.0247775,95.35900473],[4.53321296,0.02477922,95.35974439],[4.53321352,0.02478093,95.36048411],[4.53321408,0.02478265,95.36122388],[4.53321464,0.02478436,95.36196371],[4.5332152,0.02478607,95.36270357],[4.53321575,0.02478779,95.36344347],[4.53321631,0.0247895,95.3641834],[4.53321687,0.02479122,95.36492333],[4.53321743,0.02479293,95.36566328],[4.53321799,0.02479465,95.36640323],[4.53321855,0.02479636,95.36714318],[4.53321911,0.02479808,95.3678831],[4.53321967,0.02479979,95.36862301],[4.53322022,0.0248015,95.36936288],[4.53322078,0.02480322,95.37010272],[4.53322134,0.02480493,95.37084251],[4.5332219,0.02480665,95.37158224],[4.53322246,0.02480836,95.37232191],[4.53322302,0.02481008,95.37306152],[4.53322358,0.02481179,95.37380106],[4.53322413,0.02481351,95.37454054],[4.53322469,0.02481522,95.37527995],[4.53322525,0.02481693,95.37601931],[4.53322581,0.02481865,95.37675859],[4.53322637,0.02482036,95.37749782],[4.53322693,0.02482208,95.37823698],[4.53322748,0.02482379,95.37897609],[4.53322804,0.02482551,95.37971513],[4.5332286,0.02482722,95.38045412],[4.53322916,0.02482894,95.38119304],[4.53322972,0.02483065,95.38193191],[4.53323027,0.02483237,95.38267071],[4.53323083,0.02483408,95.38340947],[4.53323139,0.0248358,95.38414816],[4.53323195,0.02483751,95.3848868],[4.5332325,0.02483923,95.38562538],[4.53323306,0.02484094,95.38636391],[4.53323362,0.02484265,95.38710238],[4.53323418,0.02484437,95.3878408],[4.53323473,0.02484608,95.38857916],[4.53323529,0.0248478,95.38931747],[4.53323585,0.02484951,95.39005573],[4.53323641,0.02485123,95.39079394],[4.53323696,0.02485294,95.39153209],[4.53323752,0.02485466,95.3922702],[4.53323808,0.02485637,95.39300826],[4.53323863,0.02485809,95.39374626],[4.53323919,0.0248598,95.39448422],[4.53323975,0.02486152,95.39522212],[4.5332403,0.02486323,95.39595998],[4.53324086,0.02486495,95.3966978],[4.53324142,0.02486666,95.39743556],[4.53324197,0.02486838,95.39817328],[4.53324253,0.02487009,95.39891095],[4.53324309,0.02487181,95.39964858],[4.53324364,0.02487353,95.40038617],[4.5332442,0.02487524,95.4011237],[4.53324475,0.02487696,95.4018612],[4.53324531,0.02487867,95.40259865],[4.53324587,0.02488039,95.40333606],[4.53324642,0.0248821,95.40407343],[4.53324698,0.02488382,95.40481075],[4.53324753,0.02488553,95.40554804],[4.53324809,0.02488725,95.40628528],[4.53324865,0.02488896,95.40702249],[4.5332492,0.02489068,95.40775965],[4.53324976,0.02489239,95.40849678],[4.53325031,0.02489411,95.40923386],[4.53325087,0.02489582,95.40997091],[4.53325142,0.02489754,95.41070792],[4.53325198,0.02489926,95.4114449],[4.53325253,0.02490097,95.41218184],[4.53325309,0.02490269,95.41291874],[4.53325364,0.0249044,95.41365561],[4.5332542,0.02490612,95.41439244],[4.53325475,0.02490783,95.41512924],[4.53325531,0.02490955,95.41586601],[4.53325586,0.02491127,95.41660278],[4.53325641,0.02491298,95.41733955],[4.53325697,0.0249147,95.41807635],[4.53325752,0.02491641,95.41881318],[4.53325808,0.02491813,95.41955008],[4.53325863,0.02491985,95.42028704],[4.53325919,0.02492156,95.4210241],[4.53325974,0.02492328,95.42176126],[4.53326029,0.02492499,95.42249855],[4.53326085,0.02492671,95.42323598],[4.5332614,0.02492842,95.42397356],[4.53326196,0.02493014,95.42471132],[4.53326251,0.02493186,95.42544926],[4.53326306,0.02493357,95.42618742],[4.53326362,0.02493529,95.42692579],[4.53326417,0.024937,95.42766441],[4.53326472,0.02493872,95.42840328],[4.53326528,0.02494044,95.42914242],[4.53326583,0.02494215,95.42988186],[4.53326639,0.02494387,95.4306216],[4.53326694,0.02494558,95.43136166],[4.53326749,0.0249473,95.43210207],[4.53326805,0.02494902,95.43284283],[4.5332686,0.02495073,95.43358397],[4.53326915,0.02495245,95.43432549],[4.53326971,0.02495416,95.43506743],[4.53327026,0.02495588,95.43580978],[4.53327082,0.0249576,95.43655258],[4.53327137,0.02495931,95.43729584],[4.53327192,0.02496103,95.43803957],[4.53327248,0.02496274,95.43878379],[4.53327303,0.02496446,95.43952852],[4.53327359,0.02496618,95.44027377],[4.53327414,0.02496789,95.44101957],[4.53327469,0.02496961,95.44176593],[4.53327525,0.02497132,95.44251286],[4.5332758,0.02497304,95.44326039],[4.53327636,0.02497476,95.44400853],[4.53327691,0.02497647,95.44475729],[4.53327747,0.02497819,95.4455067],[4.53327802,0.0249799,95.44625677],[4.53327858,0.02498162,95.44700752],[4.53327913,0.02498333,95.44775896],[4.53327969,0.02498505,95.44851112],[4.53328024,0.02498676,95.449264],[4.5332808,0.02498848,95.45001763],[4.53328135,0.0249902,95.45077203],[4.53328191,0.02499191,95.45152721],[4.53328246,0.02499363,95.45228318],[4.53328302,0.02499534,95.45303997],[4.53328357,0.02499706,95.45379759],[4.53328413,0.02499877,95.45455607],[4.53328468,0.02500049,95.45531541],[4.53328524,0.0250022,95.45607563],[4.53328579,0.02500392,95.45683676],[4.53328635,0.02500563,95.4575988],[4.53328691,0.02500735,95.45836178],[4.53328746,0.02500907,95.45912572],[4.53328802,0.02501078,95.45989062],[4.53328857,0.0250125,95.46065652],[4.53328913,0.02501421,95.46142342],[4.53328968,0.02501593,95.46219134],[4.53329024,0.02501764,95.4629603],[4.53329079,0.02501936,95.46373032],[4.53329135,0.02502107,95.46450142],[4.5332919,0.02502279,95.46527361],[4.53329246,0.02502451,95.46604691],[4.53314251,0.02507361,95.30501989]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":1,"type":"shoulder","predecessorId":1},{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":2,"type":"none","predecessorId":2}],"roadId":"1000100","singleSide":false,"rightLanes":[{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"id":-7,"type":"none","predecessorId":0},{"successorId":0,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":-6,"type":"border","predecessorId":-6},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-5,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"id":-5,"type":"border","predecessorId":-5},{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-4,"type":"shoulder","predecessorId":-4},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.5330512,0.02479675,95.17147248],[4.53305079,0.02479546,95.1617836],[4.53320202,0.02474564,95.34527823],[4.53320244,0.02474693,95.34583137],[4.5330512,0.02479675,95.17147248]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":1,"type":"shoulder","predecessorId":1},{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":2,"type":"none","predecessorId":2}],"roadId":"1000100","singleSide":false,"rightLanes":[{"successorId":-7,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"id":-7,"type":"none","predecessorId":0},{"successorId":0,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":-6,"type":"border","predecessorId":0},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"id":-5,"type":"border","predecessorId":-5},{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-4,"type":"shoulder","predecessorId":-4},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.53305079,0.02479546,95.1349302],[4.53305023,0.02479375,95.13229914],[4.53304968,0.02479203,95.12966738],[4.53304936,0.02479106,95.12816779],[4.53320059,0.02474123,95.34338515],[4.53320091,0.02474221,95.34380479],[4.53320146,0.02474393,95.34454147],[4.53320202,0.02474564,95.34527823],[4.53305079,0.02479546,95.1349302]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":1,"type":"shoulder","predecessorId":1},{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":2,"type":"none","predecessorId":2}],"roadId":"1000100","singleSide":false,"rightLanes":[{"successorId":-7,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"id":-7,"type":"none","predecessorId":-7},{"successorId":0,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":-6,"type":"border","predecessorId":0},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"id":-5,"type":"border","predecessorId":0},{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-4,"type":"shoulder","predecessorId":-4},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.53304936,0.02479106,95.16062152],[4.53304895,0.0247898,95.16899819],[4.53320018,0.02473997,95.3428438],[4.53320059,0.02474123,95.34338515],[4.53304936,0.02479106,95.16062152]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":1,"type":"shoulder","predecessorId":1},{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":2,"type":"none","predecessorId":2}],"roadId":"1000100","singleSide":false,"rightLanes":[{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"id":-7,"type":"none","predecessorId":-7},{"successorId":0,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":-6,"type":"border","predecessorId":0},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-5,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"id":-5,"type":"border","predecessorId":0},{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-4,"type":"shoulder","predecessorId":-4},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.53304895,0.0247898,95.16899819],[4.53304847,0.02478806,95.17958311],[4.53304784,0.02478637,95.18382727],[4.53304729,0.02478465,95.18309621],[4.53304673,0.02478294,95.18236458],[4.53304618,0.02478123,95.18163238],[4.53304562,0.02477951,95.18089962],[4.53304507,0.0247778,95.1801663],[4.53304451,0.02477609,95.17943243],[4.53304395,0.02477437,95.17869801],[4.5330434,0.02477266,95.17796306],[4.53304284,0.02477095,95.17722757],[4.53304228,0.02476923,95.17649156],[4.53304173,0.02476752,95.17575502],[4.53304117,0.02476581,95.17501796],[4.53304061,0.0247641,95.17428039],[4.53304005,0.02476238,95.17354232],[4.53303949,0.02476067,95.17280375],[4.53303894,0.02475896,95.17206468],[4.53303838,0.02475725,95.17132512],[4.53303782,0.02475553,95.17058508],[4.53303726,0.02475382,95.16984457],[4.5330367,0.02475211,95.16910358],[4.53303614,0.0247504,95.16836212],[4.53303558,0.02474868,95.1676202],[4.53303502,0.02474697,95.16687783],[4.53303446,0.02474526,95.16613501],[4.5330339,0.02474355,95.16539174],[4.53303334,0.02474184,95.16464804],[4.53303278,0.02474012,95.1639039],[4.53303222,0.02473841,95.16315933],[4.53303166,0.0247367,95.16241435],[4.5330311,0.02473499,95.16166894],[4.53303054,0.02473328,95.16092313],[4.53302998,0.02473156,95.16017691],[4.53302942,0.02472985,95.15943029],[4.53302886,0.02472814,95.15868328],[4.5330283,0.02472643,95.15793588],[4.53302773,0.02472472,95.1571881],[4.53302717,0.02472301,95.15643994],[4.53302661,0.02472129,95.15569141],[4.53302605,0.02471958,95.15494252],[4.53302549,0.02471787,95.15419326],[4.53302493,0.02471616,95.15344365],[4.53302437,0.02471445,95.15269369],[4.5330238,0.02471274,95.15194339],[4.53302324,0.02471103,95.15119275],[4.53302268,0.02470931,95.15044178],[4.53302212,0.0247076,95.14969048],[4.53302156,0.02470589,95.14893886],[4.533021,0.02470418,95.1481869],[4.53302043,0.02470247,95.14743461],[4.53301987,0.02470076,95.14668199],[4.53301931,0.02469904,95.14592902],[4.53301875,0.02469733,95.14517572],[4.53301819,0.02469562,95.14442207],[4.53301763,0.02469391,95.14366807],[4.53301706,0.0246922,95.14291372],[4.5330165,0.02469049,95.14215902],[4.53301594,0.02468878,95.14140396],[4.53301538,0.02468706,95.14064855],[4.53301482,0.02468535,95.13989277],[4.53301426,0.02468364,95.13913663],[4.53301369,0.02468193,95.13838013],[4.53301313,0.02468022,95.13762328],[4.53301257,0.02467851,95.13686607],[4.53301201,0.02467679,95.13610847],[4.53301145,0.02467508,95.1353505],[4.53301089,0.02467337,95.13459214],[4.53301033,0.02467166,95.1338334],[4.53300976,0.02466995,95.1330743],[4.5330092,0.02466824,95.13231482],[4.53300864,0.02466652,95.13155498],[4.53300808,0.02466481,95.13079479],[4.53300752,0.0246631,95.13003423],[4.53300696,0.02466139,95.12927332],[4.5330064,0.02465968,95.12851206],[4.53300584,0.02465796,95.12775046],[4.53300528,0.02465625,95.12698852],[4.53300472,0.02465454,95.12622623],[4.53300416,0.02465283,95.12546362],[4.53300359,0.02465112,95.12470067],[4.53300303,0.0246494,95.1239374],[4.53300247,0.02464769,95.1231738],[4.53300191,0.02464598,95.12240989],[4.53300135,0.02464427,95.12164566],[4.53300079,0.02464256,95.12088112],[4.53300023,0.02464084,95.12011628],[4.53299967,0.02463913,95.11935112],[4.53299911,0.02463742,95.11858567],[4.53299855,0.02463571,95.11781993],[4.53299799,0.024634,95.11705389],[4.53299743,0.02463228,95.11628757],[4.53299687,0.02463057,95.11552095],[4.53299631,0.02462886,95.11475406],[4.53299575,0.02462715,95.1139869],[4.53299519,0.02462543,95.11321945],[4.53299463,0.02462372,95.11245174],[4.53299408,0.02462201,95.11168377],[4.53299352,0.0246203,95.11091553],[4.53299296,0.02461858,95.11014704],[4.5329924,0.02461687,95.10937831],[4.53299184,0.02461516,95.10860937],[4.53299128,0.02461345,95.10784022],[4.53299072,0.02461173,95.1070709],[4.53299016,0.02461002,95.10630142],[4.5329896,0.02460831,95.10553179],[4.53298904,0.0246066,95.10476205],[4.53298848,0.02460488,95.10399221],[4.53298793,0.02460317,95.10322229],[4.53298737,0.02460146,95.10245231],[4.53298681,0.02459975,95.10168228],[4.53298625,0.02459803,95.10091224],[4.53298569,0.02459632,95.10014219],[4.53298513,0.02459461,95.09937216],[4.53298458,0.0245929,95.09860217],[4.53298402,0.02459118,95.09783221],[4.53298346,0.02458947,95.09706229],[4.5329829,0.02458776,95.0962924],[4.53298234,0.02458604,95.09552255],[4.53298179,0.02458433,95.09475272],[4.53298123,0.02458262,95.09398293],[4.53298067,0.0245809,95.09321316],[4.53298011,0.02457919,95.09244342],[4.53297956,0.02457748,95.09167371],[4.532979,0.02457577,95.09090403],[4.53297844,0.02457405,95.09013436],[4.53297788,0.02457234,95.08936472],[4.53297733,0.02457063,95.0885951],[4.53297677,0.02456891,95.08782551],[4.53297621,0.0245672,95.08705593],[4.53297566,0.02456549,95.08628636],[4.5329751,0.02456377,95.08551682],[4.53297454,0.02456206,95.08474729],[4.53297399,0.02456035,95.08397777],[4.53297343,0.02455863,95.08320827],[4.53297287,0.02455692,95.08243877],[4.53297231,0.02455521,95.08166929],[4.53297176,0.02455349,95.08089981],[4.5329712,0.02455178,95.08013034],[4.53297064,0.02455007,95.07936088],[4.53297009,0.02454835,95.07859142],[4.53296953,0.02454664,95.07782197],[4.53296897,0.02454493,95.07705251],[4.53296842,0.02454321,95.07628306],[4.53296786,0.0245415,95.07551361],[4.5329673,0.02453979,95.07474415],[4.53296675,0.02453807,95.0739747],[4.53296619,0.02453636,95.07320523],[4.53296563,0.02453465,95.07243576],[4.53296508,0.02453293,95.07166629],[4.53296452,0.02453122,95.0708968],[4.53296396,0.02452951,95.07012731],[4.5329634,0.02452779,95.0693578],[4.53296285,0.02452608,95.06858829],[4.53296229,0.02452437,95.06781882],[4.53296173,0.02452265,95.06704944],[4.53296118,0.02452094,95.06628018],[4.53296062,0.02451923,95.06551104],[4.53296006,0.02451751,95.06474201],[4.5329595,0.0245158,95.06397309],[4.53295895,0.02451409,95.06320428],[4.53295839,0.02451237,95.06243557],[4.53295783,0.02451066,95.06166697],[4.53295728,0.02450895,95.06089847],[4.53295672,0.02450723,95.06013005],[4.53295616,0.02450552,95.05936172],[4.5329556,0.02450381,95.05859348],[4.53295505,0.02450209,95.0578253],[4.53295449,0.02450038,95.0570572],[4.53295393,0.02449867,95.05628915],[4.53295337,0.02449696,95.05552117],[4.53295282,0.02449524,95.05475323],[4.53295226,0.02449353,95.05398535],[4.5329517,0.02449182,95.0532175],[4.53295114,0.0244901,95.05244969],[4.53295058,0.02448839,95.05168191],[4.53295002,0.02448668,95.05091415],[4.53294947,0.02448496,95.05014641],[4.53294891,0.02448325,95.04937869],[4.53294835,0.02448154,95.04861097],[4.53294779,0.02447983,95.04784325],[4.53294723,0.02447811,95.04707553],[4.53294667,0.0244764,95.0463078],[4.53294611,0.02447469,95.04554005],[4.53294555,0.02447298,95.04477228],[4.532945,0.02447126,95.04400448],[4.53294444,0.02446955,95.04323663],[4.53294388,0.02446784,95.0424687],[4.53294332,0.02446612,95.04170067],[4.53294276,0.02446441,95.04093254],[4.5329422,0.0244627,95.04016431],[4.53294164,0.02446099,95.03939596],[4.53294108,0.02445927,95.03862747],[4.53294052,0.02445756,95.03785884],[4.53293996,0.02445585,95.03709006],[4.5329394,0.02445414,95.0363211],[4.53293884,0.02445243,95.03555195],[4.53293828,0.02445071,95.03478261],[4.53293772,0.024449,95.03401306],[4.53293716,0.02444729,95.03324328],[4.5329366,0.02444558,95.03247327],[4.53293604,0.02444386,95.031703],[4.53293547,0.02444215,95.03093247],[4.53293491,0.02444044,95.03016167],[4.53293435,0.02443873,95.02939057],[4.53293379,0.02443702,95.02861917],[4.53293323,0.0244353,95.02784745],[4.53293267,0.02443359,95.02707541],[4.53293211,0.02443188,95.02630303],[4.53293154,0.02443017,95.02553034],[4.53293098,0.02442846,95.02475734],[4.53293042,0.02442675,95.02398405],[4.53292986,0.02442503,95.02321048],[4.53292929,0.02442332,95.02243664],[4.53292873,0.02442161,95.02166255],[4.53292817,0.0244199,95.02088823],[4.53292761,0.02441819,95.02011367],[4.53292704,0.02441648,95.0193389],[4.53292648,0.02441477,95.01856394],[4.53292592,0.02441305,95.01778878],[4.53292535,0.02441134,95.01701345],[4.53292479,0.02440963,95.01623795],[4.53292423,0.02440792,95.01546231],[4.53292366,0.02440621,95.01468653],[4.5329231,0.0244045,95.01391063],[4.53292254,0.02440279,95.01313462],[4.53292197,0.02440107,95.01235852],[4.53292141,0.02439936,95.01158233],[4.53292084,0.02439765,95.01080607],[4.53292028,0.02439594,95.01002975],[4.53291972,0.02439423,95.00925339],[4.53291915,0.02439252,95.008477],[4.53291859,0.02439081,95.00770059],[4.53291803,0.0243891,95.00692417],[4.53291746,0.02438738,95.00614776],[4.5329169,0.02438567,95.00537138],[4.53291634,0.02438396,95.00459503],[4.53291577,0.02438225,95.00381872],[4.53291521,0.02438054,95.00304249],[4.53291464,0.02437883,95.00226634],[4.53291408,0.02437712,95.0014903],[4.53291352,0.02437541,95.00071437],[4.53291295,0.02437369,94.99993857],[4.53291239,0.02437198,94.99916289],[4.53291183,0.02437027,94.99838732],[4.53291126,0.02436856,94.99761187],[4.5329107,0.02436685,94.99683653],[4.53291014,0.02436514,94.9960613],[4.53290957,0.02436343,94.99528619],[4.53290901,0.02436171,94.99451118],[4.53290845,0.02436,94.99373629],[4.53290788,0.02435829,94.9929615],[4.53290732,0.02435658,94.99218682],[4.53290676,0.02435487,94.99141224],[4.5329062,0.02435316,94.99063777],[4.53290563,0.02435145,94.9898634],[4.53290507,0.02434973,94.98908913],[4.53290451,0.02434802,94.98831496],[4.53290394,0.02434631,94.98754089],[4.53290338,0.0243446,94.98676692],[4.53290282,0.02434289,94.98599305],[4.53290226,0.02434118,94.98521926],[4.5329017,0.02433946,94.98444555],[4.53290113,0.02433775,94.98367191],[4.53290057,0.02433604,94.98289835],[4.53290001,0.02433433,94.98212487],[4.53289945,0.02433262,94.98135149],[4.53289889,0.0243309,94.98057825],[4.53289832,0.02432919,94.97980515],[4.53289776,0.02432748,94.97903224],[4.5328972,0.02432577,94.97825952],[4.53289664,0.02432406,94.97748703],[4.53289608,0.02432234,94.97671479],[4.53289552,0.02432063,94.97594281],[4.53289495,0.02431892,94.97517114],[4.53289439,0.02431721,94.97439978],[4.53289383,0.0243155,94.97362877],[4.53289327,0.02431378,94.97285812],[4.53289271,0.02431207,94.97208786],[4.53289215,0.02431036,94.97131802],[4.53289159,0.02430865,94.97054862],[4.53289103,0.02430693,94.96977967],[4.53289047,0.02430522,94.96901122],[4.53288991,0.02430351,94.96824327],[4.53288935,0.0243018,94.96747582],[4.53288879,0.02430008,94.96670889],[4.53288823,0.02429837,94.96594245],[4.53288767,0.02429666,94.96517652],[4.53288711,0.02429494,94.96441109],[4.53288655,0.02429323,94.96364616],[4.53288599,0.02429152,94.96288172],[4.53288544,0.02428981,94.96211777],[4.53288488,0.02428809,94.96135432],[4.53288432,0.02428638,94.96059136],[4.53288376,0.02428467,94.95982888],[4.5328832,0.02428295,94.95906689],[4.53288264,0.02428124,94.95830539],[4.53288209,0.02427953,94.95754436],[4.53288153,0.02427781,94.95678382],[4.53288097,0.0242761,94.95602375],[4.53288041,0.02427439,94.95526416],[4.53287985,0.02427267,94.95450504],[4.5328793,0.02427096,94.95374639],[4.53287874,0.02426925,94.95298821],[4.53287818,0.02426753,94.9522305],[4.53287762,0.02426582,94.95147325],[4.53287707,0.02426411,94.95071647],[4.53287651,0.02426239,94.94996015],[4.53287595,0.02426068,94.94920429],[4.53287539,0.02425897,94.94844888],[4.53287484,0.02425725,94.94769393],[4.53287428,0.02425554,94.94693943],[4.53287372,0.02425383,94.94618539],[4.53287317,0.02425211,94.94543179],[4.53287261,0.0242504,94.94467863],[4.53287205,0.02424868,94.94392593],[4.53287149,0.02424697,94.94317366],[4.53287094,0.02424526,94.94242184],[4.53287038,0.02424354,94.94167045],[4.53286982,0.02424183,94.9409195],[4.53286927,0.02424012,94.94016898],[4.53286871,0.0242384,94.9394189],[4.53286815,0.02423669,94.93866925],[4.5328676,0.02423497,94.93792002],[4.53286704,0.02423326,94.93717122],[4.53286648,0.02423155,94.93642284],[4.53286592,0.02422983,94.93567488],[4.53286537,0.02422812,94.93492735],[4.53286481,0.02422641,94.93418023],[4.53286425,0.02422469,94.93343352],[4.5328637,0.02422298,94.93268723],[4.53286314,0.02422127,94.93194135],[4.53286258,0.02421955,94.93119588],[4.53286202,0.02421784,94.93045082],[4.53286147,0.02421612,94.92970616],[4.53286091,0.02421441,94.9289619],[4.53286035,0.0242127,94.92821804],[4.5328598,0.02421098,94.92747459],[4.53285924,0.02420927,94.92673152],[4.53285868,0.02420756,94.92598886],[4.53285812,0.02420584,94.92026247],[4.53285757,0.02420413,94.90929662],[4.53285754,0.02420406,94.90880616],[4.53300884,0.02415368,95.09728159],[4.53300887,0.02415375,95.09731335],[4.53300943,0.02415546,95.09804919],[4.53300999,0.02415718,95.09878577],[4.53301055,0.02415889,95.09952303],[4.53301111,0.02416061,95.10026091],[4.53301167,0.02416232,95.10099936],[4.53301224,0.02416403,95.10173832],[4.5330128,0.02416575,95.10247774],[4.53301336,0.02416746,95.10321755],[4.53301392,0.02416917,95.1039577],[4.53301448,0.02417089,95.10469813],[4.53301504,0.0241726,95.10543879],[4.5330156,0.02417431,95.10617962],[4.53301616,0.02417603,95.10692056],[4.53301672,0.02417774,95.10766156],[4.53301728,0.02417945,95.10840257],[4.53301785,0.02418117,95.10914351],[4.53301841,0.02418288,95.10988434],[4.53301897,0.02418459,95.11062501],[4.53301953,0.02418631,95.11136545],[4.53302009,0.02418802,95.1121056],[4.53302065,0.02418974,95.11284542],[4.53302121,0.02419145,95.11358484],[4.53302177,0.02419316,95.11432381],[4.53302233,0.02419488,95.11506227],[4.53302289,0.02419659,95.11580017],[4.53302345,0.0241983,95.11653745],[4.53302401,0.02420002,95.11727405],[4.53302457,0.02420173,95.11800992],[4.53302513,0.02420344,95.118745],[4.53302569,0.02420516,95.11947923],[4.53302625,0.02420687,95.12021256],[4.53302681,0.02420859,95.12094493],[4.53302737,0.0242103,95.12167629],[4.53302793,0.02421201,95.12240658],[4.53302849,0.02421373,95.12313574],[4.53302905,0.02421544,95.12386372],[4.53302961,0.02421716,95.12459046],[4.53303017,0.02421887,95.1253159],[4.53303073,0.02422058,95.12604],[4.53303129,0.0242223,95.12676268],[4.53303185,0.02422401,95.12748391],[4.53303241,0.02422572,95.12820361],[4.53303297,0.02422744,95.12892175],[4.53303353,0.02422915,95.1296383],[4.53303409,0.02423087,95.13035332],[4.53303465,0.02423258,95.13106685],[4.53303521,0.02423429,95.13177893],[4.53303577,0.02423601,95.13248962],[4.53303633,0.02423772,95.13319894],[4.53303689,0.02423944,95.13390695],[4.53303745,0.02424115,95.13461369],[4.53303801,0.02424286,95.13531921],[4.53303857,0.02424458,95.13602355],[4.53303913,0.02424629,95.13672676],[4.53303969,0.02424801,95.13742887],[4.53304025,0.02424972,95.13812994],[4.53304081,0.02425143,95.13883001],[4.53304137,0.02425315,95.13952912],[4.53304193,0.02425486,95.14022732],[4.53304249,0.02425657,95.14092465],[4.53304305,0.02425829,95.14162115],[4.53304361,0.02426,95.14231688],[4.53304417,0.02426172,95.14301187],[4.53304473,0.02426343,95.14370617],[4.53304529,0.02426514,95.14439983],[4.53304585,0.02426686,95.14509288],[4.53304641,0.02426857,95.14578537],[4.53304697,0.02427029,95.14647735],[4.53304753,0.024272,95.14716886],[4.53304809,0.02427371,95.14785994],[4.53304865,0.02427543,95.14855065],[4.53304921,0.02427714,95.14924101],[4.53304977,0.02427885,95.14993108],[4.53305033,0.02428057,95.15062091],[4.53305089,0.02428228,95.15131053],[4.53305145,0.024284,95.15199998],[4.53305201,0.02428571,95.15268933],[4.53305257,0.02428742,95.15337859],[4.53305313,0.02428914,95.15406783],[4.53305369,0.02429085,95.15475709],[4.53305425,0.02429256,95.1554464],[4.53305481,0.02429428,95.15613582],[4.53305537,0.02429599,95.15682538],[4.53305593,0.02429771,95.15751513],[4.53305649,0.02429942,95.1582051],[4.53305705,0.02430113,95.15889534],[4.53305761,0.02430285,95.15958588],[4.53305817,0.02430456,95.16027676],[4.53305873,0.02430628,95.16096802],[4.53305929,0.02430799,95.16165969],[4.53305985,0.0243097,95.16235182],[4.53306041,0.02431142,95.16304444],[4.53306097,0.02431313,95.1637376],[4.53306153,0.02431484,95.16443133],[4.53306209,0.02431656,95.16512566],[4.53306265,0.02431827,95.16582064],[4.53306321,0.02431999,95.1665163],[4.53306377,0.0243217,95.16721268],[4.53306433,0.02432341,95.16790977],[4.53306489,0.02432513,95.16860756],[4.53306545,0.02432684,95.16930605],[4.53306601,0.02432856,95.17000523],[4.53306657,0.02433027,95.17070508],[4.53306713,0.02433198,95.17140561],[4.53306769,0.0243337,95.17210679],[4.53306825,0.02433541,95.17280862],[4.53306881,0.02433713,95.1735111],[4.53306937,0.02433884,95.1742142],[4.53306993,0.02434055,95.17491793],[4.53307049,0.02434227,95.17562228],[4.53307105,0.02434398,95.17632723],[4.53307161,0.02434569,95.17703278],[4.53307217,0.02434741,95.17773892],[4.53307273,0.02434912,95.17844563],[4.53307329,0.02435084,95.17915292],[4.53307385,0.02435255,95.17986077],[4.53307441,0.02435426,95.18056917],[4.53307497,0.02435598,95.18127811],[4.53307553,0.02435769,95.18198759],[4.53307609,0.0243594,95.18269759],[4.53307665,0.02436112,95.18340812],[4.53307721,0.02436283,95.18411915],[4.53307777,0.02436455,95.18483067],[4.53307833,0.02436626,95.18554269],[4.53307889,0.02436797,95.18625519],[4.53307945,0.02436969,95.18696817],[4.53308001,0.0243714,95.1876816],[4.53308057,0.02437311,95.1883955],[4.53308113,0.02437483,95.18910983],[4.53308169,0.02437654,95.18982461],[4.53308226,0.02437826,95.19053981],[4.53308282,0.02437997,95.19125544],[4.53308338,0.02438168,95.19197147],[4.53308394,0.0243834,95.19268791],[4.5330845,0.02438511,95.19340474],[4.53308506,0.02438683,95.19412195],[4.53308562,0.02438854,95.19483954],[4.53308618,0.02439025,95.1955575],[4.53308674,0.02439197,95.19627581],[4.5330873,0.02439368,95.19699448],[4.53308786,0.02439539,95.19771348],[4.53308842,0.02439711,95.19843282],[4.53308898,0.02439882,95.19915247],[4.53308954,0.02440054,95.19987245],[4.5330901,0.02440225,95.20059273],[4.53309066,0.02440396,95.2013133],[4.53309122,0.02440568,95.20203416],[4.53309178,0.02440739,95.20275531],[4.53309234,0.02440911,95.20347672],[4.5330929,0.02441082,95.20419839],[4.53309346,0.02441253,95.20492032],[4.53309402,0.02441425,95.20564248],[4.53309458,0.02441596,95.20636488],[4.53309514,0.02441767,95.20708749],[4.5330957,0.02441939,95.20781032],[4.53309626,0.0244211,95.20853334],[4.53309682,0.02442282,95.20925656],[4.53309738,0.02442453,95.20997996],[4.53309794,0.02442624,95.21070353],[4.5330985,0.02442796,95.21142726],[4.53309906,0.02442967,95.21215114],[4.53309962,0.02443139,95.21287516],[4.53310018,0.0244331,95.21359931],[4.53310074,0.02443481,95.21432359],[4.5331013,0.02443653,95.21504797],[4.53310186,0.02443824,95.21577246],[4.53310241,0.02443996,95.21649703],[4.53310297,0.02444167,95.21722169],[4.53310353,0.02444338,95.21794642],[4.53310409,0.0244451,95.21867122],[4.53310465,0.02444681,95.21939606],[4.53310521,0.02444853,95.22012095],[4.53310577,0.02445024,95.22084587],[4.53310633,0.02445195,95.22157081],[4.53310689,0.02445367,95.22229576],[4.53310745,0.02445538,95.22302072],[4.53310801,0.0244571,95.22374567],[4.53310857,0.02445881,95.2244706],[4.53310913,0.02446053,95.22519551],[4.53310969,0.02446224,95.22592038],[4.53311025,0.02446395,95.22664521],[4.5331108,0.02446567,95.22736998],[4.53311136,0.02446738,95.22809468],[4.53311192,0.0244691,95.22881933],[4.53311248,0.02447081,95.22954391],[4.53311304,0.02447252,95.23026841],[4.5331136,0.02447424,95.23099285],[4.53311416,0.02447595,95.2317172],[4.53311472,0.02447767,95.23244148],[4.53311528,0.02447938,95.23316567],[4.53311583,0.0244811,95.23388978],[4.53311639,0.02448281,95.23461379],[4.53311695,0.02448453,95.23533772],[4.53311751,0.02448624,95.23606155],[4.53311807,0.02448795,95.23678528],[4.53311863,0.02448967,95.23750891],[4.53311919,0.02449138,95.23823243],[4.53311975,0.0244931,95.23895584],[4.5331203,0.02449481,95.23967915],[4.53312086,0.02449653,95.24040234],[4.53312142,0.02449824,95.24112541],[4.53312198,0.02449995,95.24184836],[4.53312254,0.02450167,95.24257119],[4.5331231,0.02450338,95.24329389],[4.53312365,0.0245051,95.24401646],[4.53312421,0.02450681,95.24473889],[4.53312477,0.02450853,95.24546119],[4.53312533,0.02451024,95.24618336],[4.53312589,0.02451196,95.24690537],[4.53312645,0.02451367,95.24762725],[4.53312701,0.02451538,95.24834897],[4.53312756,0.0245171,95.24907055],[4.53312812,0.02451881,95.24979196],[4.53312868,0.02452053,95.25051322],[4.53312924,0.02452224,95.25123432],[4.5331298,0.02452396,95.25195526],[4.53313036,0.02452567,95.25267603],[4.53313091,0.02452739,95.25339663],[4.53313147,0.0245291,95.25411705],[4.53313203,0.02453081,95.2548373],[4.53313259,0.02453253,95.25555737],[4.53313315,0.02453424,95.25627725],[4.53313371,0.02453596,95.25699696],[4.53313426,0.02453767,95.25771647],[4.53313482,0.02453939,95.25843579],[4.53313538,0.0245411,95.25915491],[4.53313594,0.02454282,95.25987384],[4.5331365,0.02454453,95.26059257],[4.53313706,0.02454624,95.26131109],[4.53313762,0.02454796,95.26202941],[4.53313817,0.02454967,95.26274752],[4.53313873,0.02455139,95.26346541],[4.53313929,0.0245531,95.26418309],[4.53313985,0.02455482,95.26490055],[4.53314041,0.02455653,95.2656178],[4.53314097,0.02455825,95.26633485],[4.53314152,0.02455996,95.2670517],[4.53314208,0.02456167,95.26776838],[4.53314264,0.02456339,95.26848488],[4.5331432,0.0245651,95.26920121],[4.53314376,0.02456682,95.26991739],[4.53314432,0.02456853,95.27063341],[4.53314488,0.02457025,95.2713493],[4.53314543,0.02457196,95.27206506],[4.53314599,0.02457368,95.2727807],[4.53314655,0.02457539,95.27349622],[4.53314711,0.0245771,95.27421164],[4.53314767,0.02457882,95.27492697],[4.53314823,0.02458053,95.27564221],[4.53314878,0.02458225,95.27635737],[4.53314934,0.02458396,95.27707247],[4.5331499,0.02458568,95.2777875],[4.53315046,0.02458739,95.27850249],[4.53315102,0.02458911,95.27921743],[4.53315157,0.02459082,95.27993234],[4.53315213,0.02459253,95.28064723],[4.53315269,0.02459425,95.2813621],[4.53315325,0.02459596,95.28207696],[4.53315381,0.02459768,95.28279183],[4.53315437,0.02459939,95.2835067],[4.53315492,0.02460111,95.2842216],[4.53315548,0.02460282,95.28493652],[4.53315604,0.02460454,95.28565148],[4.5331566,0.02460625,95.28636649],[4.53315716,0.02460797,95.28708155],[4.53315772,0.02460968,95.28779667],[4.53315827,0.02461139,95.28851187],[4.53315883,0.02461311,95.28922715],[4.53315939,0.02461482,95.28994251],[4.53315995,0.02461654,95.29065798],[4.53316051,0.02461825,95.29137355],[4.53316107,0.02461997,95.29208924],[4.53316163,0.02462168,95.29280505],[4.53316218,0.0246234,95.293521],[4.53316274,0.02462511,95.29423708],[4.5331633,0.02462682,95.29495332],[4.53316386,0.02462854,95.29566972],[4.53316442,0.02463025,95.29638628],[4.53316498,0.02463197,95.29710302],[4.53316553,0.02463368,95.29781995],[4.53316609,0.0246354,95.29853707],[4.53316665,0.02463711,95.29925439],[4.53316721,0.02463883,95.29997193],[4.53316777,0.02464054,95.30068968],[4.53316833,0.02464225,95.30140766],[4.53316889,0.02464397,95.30212588],[4.53316944,0.02464568,95.30284435],[4.53317,0.0246474,95.30356307],[4.53317056,0.02464911,95.30428205],[4.53317112,0.02465083,95.30500131],[4.53317168,0.02465254,95.30572084],[4.53317224,0.02465426,95.30644067],[4.5331728,0.02465597,95.30716079],[4.53317336,0.02465768,95.30788122],[4.53317391,0.0246594,95.30860197],[4.53317447,0.02466111,95.30932303],[4.53317503,0.02466283,95.31004442],[4.53317559,0.02466454,95.31076613],[4.53317615,0.02466626,95.31148817],[4.53317671,0.02466797,95.31221052],[4.53317727,0.02466968,95.3129332],[4.53317783,0.0246714,95.31365621],[4.53317839,0.02467311,95.31437953],[4.53317895,0.02467483,95.31510318],[4.5331795,0.02467654,95.31582716],[4.53318006,0.02467826,95.31655145],[4.53318062,0.02467997,95.31727608],[4.53318118,0.02468168,95.31800102],[4.53318174,0.0246834,95.31872629],[4.5331823,0.02468511,95.31945189],[4.53318286,0.02468683,95.32017781],[4.53318342,0.02468854,95.32090406],[4.53318398,0.02469026,95.32163063],[4.53318454,0.02469197,95.32235753],[4.5331851,0.02469368,95.32308475],[4.53318565,0.0246954,95.3238123],[4.53318621,0.02469711,95.32454017],[4.53318677,0.02469883,95.32526838],[4.53318733,0.02470054,95.32599691],[4.53318789,0.02470226,95.32672576],[4.53318845,0.02470397,95.32745494],[4.53318901,0.02470568,95.32818445],[4.53318957,0.0247074,95.32891429],[4.53319013,0.02470911,95.32964446],[4.53319068,0.02471083,95.33037495],[4.53319124,0.02471254,95.33110577],[4.5331918,0.02471426,95.33183693],[4.53319236,0.02471597,95.33256841],[4.53319292,0.02471768,95.33330021],[4.53319348,0.0247194,95.33403235],[4.53319404,0.02472111,95.33476482],[4.5331946,0.02472283,95.33549762],[4.53319515,0.02472454,95.33623075],[4.53319571,0.02472626,95.33696421],[4.53319627,0.02472797,95.33769799],[4.53319683,0.02472969,95.33843211],[4.53319739,0.0247314,95.33916657],[4.53319795,0.02473311,95.33990135],[4.5331985,0.02473483,95.34063646],[4.53319906,0.02473654,95.34137191],[4.53319962,0.02473826,95.34210769],[4.53320018,0.02473997,95.3428438],[4.53304895,0.0247898,95.16899819]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":1,"type":"shoulder","predecessorId":1},{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":2,"type":"none","predecessorId":2}],"roadId":"1000100","singleSide":false,"rightLanes":[{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"id":-7,"type":"none","predecessorId":0},{"successorId":0,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":-6,"type":"border","predecessorId":0},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-5,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"id":-5,"type":"border","predecessorId":-5},{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-4,"type":"shoulder","predecessorId":-4},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.53285754,0.02420406,94.90880616],[4.53285712,0.02420277,94.89852339],[4.53300842,0.02415239,95.09672981],[4.53300884,0.02415368,95.09728159],[4.53285754,0.02420406,94.90880616]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":1,"type":"shoulder","predecessorId":1},{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":2,"type":"none","predecessorId":2}],"roadId":"1000100","singleSide":false,"rightLanes":[{"successorId":-7,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"id":-7,"type":"none","predecessorId":0},{"successorId":0,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":-6,"type":"border","predecessorId":0},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"id":-5,"type":"border","predecessorId":-5},{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-4,"type":"shoulder","predecessorId":-4},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.53285712,0.02420277,94.86234983],[4.53285657,0.02420106,94.86209563],[4.53285601,0.02419934,94.861842],[4.5328557,0.02419841,94.8617036],[4.53300699,0.02414803,95.0948569],[4.5330073,0.02414897,95.095259],[4.53300786,0.02415068,95.09599448],[4.53300842,0.02415239,95.09672981],[4.53285712,0.02420277,94.86234983]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":1,"type":"shoulder","predecessorId":1},{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":2,"type":"none","predecessorId":2}],"roadId":"1000100","singleSide":false,"rightLanes":[{"successorId":-7,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"id":-7,"type":"none","predecessorId":-7},{"successorId":0,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":-6,"type":"border","predecessorId":0},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"id":-5,"type":"border","predecessorId":0},{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-4,"type":"shoulder","predecessorId":-4},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.5328557,0.02419841,94.89632452],[4.53285528,0.02419712,94.90802404],[4.53300657,0.02414674,95.09430511],[4.53300699,0.02414803,95.0948569],[4.5328557,0.02419841,94.89632452]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":1,"type":"shoulder","predecessorId":1},{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":2,"type":"none","predecessorId":2}],"roadId":"1000100","singleSide":false,"rightLanes":[{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"id":-7,"type":"none","predecessorId":-7},{"successorId":0,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":-6,"type":"border","predecessorId":0},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-5,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"id":-5,"type":"border","predecessorId":0},{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-4,"type":"shoulder","predecessorId":-4},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.53285528,0.02419712,94.90802404],[4.53285473,0.02419541,94.91688025],[4.53285417,0.02419369,94.9204259],[4.53285361,0.02419198,94.91975703],[4.53285305,0.02419027,94.91908611],[4.53285248,0.02418856,94.91841285],[4.53285192,0.02418685,94.91773701],[4.53285135,0.02418514,94.9170583],[4.53285078,0.02418343,94.91637646],[4.53285021,0.02418172,94.91569124],[4.53284964,0.02418001,94.91500235],[4.53284907,0.0241783,94.91430953],[4.53284849,0.02417659,94.91361251],[4.53284792,0.02417488,94.91291104],[4.53284734,0.02417318,94.91220483],[4.53284677,0.02417147,94.91149363],[4.53284619,0.02416976,94.91077717],[4.53284561,0.02416806,94.91005518],[4.53284503,0.02416635,94.90932739],[4.53284445,0.02416464,94.90859354],[4.53284387,0.02416294,94.90785336],[4.53284329,0.02416123,94.90710658],[4.5328427,0.02415953,94.90635294],[4.53284212,0.02415782,94.90559218],[4.53284154,0.02415612,94.90482465],[4.53284096,0.02415441,94.90405323],[4.53284038,0.0241527,94.90328139],[4.5328398,0.024151,94.90251297],[4.53283923,0.02414929,94.90175267],[4.53283867,0.02414758,94.90100538],[4.53283811,0.02414586,94.90027577],[4.53283756,0.02414415,94.89956428],[4.53283702,0.02414243,94.89886709],[4.53283648,0.02414071,94.89818018],[4.53283595,0.02413899,94.89749954],[4.53283541,0.02413726,94.89682118],[4.53283488,0.02413554,94.89614107],[4.53283435,0.02413382,94.8954552],[4.53283382,0.0241321,94.89475973],[4.53283328,0.02413038,94.89405404],[4.53283275,0.02412866,94.89334077],[4.53283221,0.02412694,94.89262272],[4.53283168,0.02412522,94.89190265],[4.53283114,0.02412349,94.89118337],[4.53283061,0.02412177,94.89046764],[4.53283008,0.02412005,94.88975824],[4.53282955,0.02411833,94.88905796],[4.53282902,0.0241166,94.88836958],[4.5328285,0.02411488,94.88769586],[4.53282799,0.02411315,94.88703773],[4.53282747,0.02411142,94.88638867],[4.53282695,0.02410969,94.88574035],[4.53282643,0.02410797,94.88508442],[4.53282589,0.02410625,94.88441256],[4.53282535,0.02410453,94.88371643],[4.53282479,0.02410282,94.8829882],[4.53282421,0.02410111,94.88223135],[4.53282363,0.02409941,94.88146051],[4.53282304,0.0240977,94.88068988],[4.53282245,0.024096,94.87993056],[4.53282186,0.0240943,94.87918397],[4.53282127,0.02409259,94.87844905],[4.53282068,0.02409089,94.87772478],[4.53282009,0.02408919,94.87701013],[4.5328195,0.02408748,94.87630406],[4.53281892,0.02408578,94.87560553],[4.53281833,0.02408408,94.87491352],[4.53281775,0.02408237,94.87422699],[4.53281717,0.02408066,94.87354491],[4.53281659,0.02407896,94.87286625],[4.53281601,0.02407725,94.87218998],[4.53281544,0.02407554,94.87151506],[4.53281487,0.02407383,94.87084047],[4.5328143,0.02407213,94.87016518],[4.53281373,0.02407042,94.86948815],[4.53281316,0.02406871,94.86880842],[4.53281259,0.024067,94.86812573],[4.53281202,0.02406529,94.86744035],[4.53281145,0.02406358,94.86675256],[4.53281089,0.02406187,94.86606264],[4.53281032,0.02406016,94.86537087],[4.53280975,0.02405844,94.86467754],[4.53280918,0.02405673,94.86398291],[4.53280862,0.02405502,94.86328727],[4.53280805,0.02405331,94.8625909],[4.53280748,0.0240516,94.86189408],[4.53280691,0.02404989,94.86119709],[4.53280634,0.02404818,94.86050019],[4.53280578,0.02404647,94.85980369],[4.53280521,0.02404476,94.85910787],[4.53280464,0.02404305,94.85841302],[4.53280407,0.02404134,94.85771941],[4.53280351,0.02403963,94.85702731],[4.53280294,0.02403792,94.85633699],[4.53280238,0.02403621,94.8556487],[4.53280181,0.0240345,94.85496271],[4.53280125,0.02403279,94.85427902],[4.53280068,0.02403108,94.8535975],[4.53280012,0.02402936,94.85291799],[4.53279955,0.02402765,94.85224034],[4.53279899,0.02402594,94.85156443],[4.53279843,0.02402423,94.85089011],[4.53279787,0.02402252,94.85021726],[4.5327973,0.0240208,94.84954574],[4.53279674,0.02401909,94.84887544],[4.53279618,0.02401738,94.84820622],[4.53279562,0.02401567,94.84753794],[4.53279505,0.02401396,94.8468705],[4.53279449,0.02401224,94.84620374],[4.53279393,0.02401053,94.84553756],[4.53279337,0.02400882,94.84487181],[4.5327928,0.02400711,94.84420637],[4.53279224,0.0240054,94.84354111],[4.53279168,0.02400368,94.84287591],[4.53279111,0.02400197,94.84221064],[4.53279055,0.02400026,94.84154516],[4.53278998,0.02399855,94.84087935],[4.53278941,0.02399684,94.84021309],[4.53278885,0.02399513,94.83954624],[4.53278828,0.02399342,94.83887868],[4.53278771,0.02399171,94.83821029],[4.53278714,0.02399,94.83754097],[4.53278657,0.02398829,94.83687075],[4.532786,0.02398658,94.83619966],[4.53278543,0.02398487,94.83552774],[4.53278486,0.02398316,94.83485502],[4.53278429,0.02398145,94.83418156],[4.53278371,0.02397974,94.8335075],[4.53278314,0.02397803,94.83283309],[4.53278257,0.02397633,94.83215859],[4.53278199,0.02397462,94.83148426],[4.53278141,0.02397291,94.83081036],[4.53278084,0.0239712,94.83013714],[4.53278026,0.0239695,94.82946486],[4.53277968,0.02396779,94.82879378],[4.53277911,0.02396608,94.82812414],[4.53277853,0.02396437,94.82745622],[4.53277795,0.02396267,94.82679026],[4.53277737,0.02396096,94.82612652],[4.53277679,0.02395925,94.82546525],[4.53277622,0.02395755,94.82480671],[4.53277564,0.02395584,94.82415115],[4.53277506,0.02395413,94.82349883],[4.53277448,0.02395242,94.82284999],[4.53277391,0.02395072,94.8222049],[4.53277333,0.02394901,94.82156366],[4.53277276,0.0239473,94.82092599],[4.53277218,0.02394559,94.82029156],[4.5327716,0.02394389,94.81966],[4.53277103,0.02394218,94.81903095],[4.53277046,0.02394047,94.81840403],[4.53276988,0.02393876,94.81777886],[4.53276931,0.02393705,94.81715513],[4.53276874,0.02393534,94.81653247],[4.53276816,0.02393364,94.81591056],[4.53276759,0.02393193,94.81528904],[4.53276702,0.02393022,94.81466759],[4.53276645,0.02392851,94.81404587],[4.53276587,0.0239268,94.81342353],[4.5327653,0.02392509,94.81280023],[4.53276473,0.02392338,94.81217565],[4.53276416,0.02392167,94.81154944],[4.53276359,0.02391996,94.81092127],[4.53276302,0.02391825,94.81029081],[4.53276245,0.02391654,94.80965776],[4.53276189,0.02391483,94.80902239],[4.53276132,0.02391312,94.80838536],[4.53276075,0.02391141,94.8077471],[4.53276018,0.0239097,94.80710799],[4.53275962,0.02390799,94.80646844],[4.53275906,0.02390627,94.80582883],[4.53275849,0.02390456,94.80518956],[4.53275793,0.02390285,94.804551],[4.53275737,0.02390114,94.80391355],[4.53275681,0.02389942,94.80327759],[4.53275625,0.02389771,94.80264352],[4.5327557,0.023896,94.80201171],[4.53275514,0.02389428,94.80138256],[4.53275459,0.02389257,94.80075644],[4.53275403,0.02389085,94.80013372],[4.53275348,0.02388914,94.79951448],[4.53275293,0.02388742,94.79889861],[4.53275238,0.0238857,94.79828598],[4.53275182,0.02388399,94.79767646],[4.53275127,0.02388227,94.79706993],[4.53275072,0.02388056,94.79646628],[4.53275017,0.02387884,94.79586537],[4.53274962,0.02387712,94.79526709],[4.53274907,0.02387541,94.79467131],[4.53274852,0.02387369,94.79407792],[4.53274797,0.02387198,94.79348679],[4.53274741,0.02387026,94.79289779],[4.53274686,0.02386854,94.79231081],[4.53274631,0.02386683,94.79172565],[4.53274575,0.02386511,94.79114207],[4.5327452,0.0238634,94.79055984],[4.53274464,0.02386168,94.78997871],[4.53274409,0.02385997,94.78939845],[4.53274353,0.02385826,94.78881882],[4.53274297,0.02385654,94.78823958],[4.53274241,0.02385483,94.78766051],[4.53274185,0.02385311,94.7870815],[4.53274129,0.0238514,94.78650258],[4.53274073,0.02384969,94.78592381],[4.53274017,0.02384797,94.78534526],[4.53273961,0.02384626,94.78476702],[4.53273905,0.02384455,94.78418917],[4.53273849,0.02384284,94.78361177],[4.53273793,0.02384112,94.78303489],[4.53273737,0.02383941,94.78245859],[4.5327368,0.0238377,94.78188288],[4.53273624,0.02383599,94.78130781],[4.53273568,0.02383427,94.78073339],[4.53273512,0.02383256,94.78015967],[4.53273455,0.02383085,94.77958666],[4.53273399,0.02382914,94.77901441],[4.53273343,0.02382743,94.77844295],[4.53273287,0.02382571,94.7778723],[4.5327323,0.023824,94.7773025],[4.53273174,0.02382229,94.77673357],[4.53273118,0.02382058,94.77616555],[4.53273061,0.02381886,94.77559847],[4.53273005,0.02381715,94.77503235],[4.53272949,0.02381544,94.77446728],[4.53272893,0.02381373,94.77390335],[4.53272836,0.02381201,94.77334056],[4.5327278,0.0238103,94.77277894],[4.53272724,0.02380859,94.7722185],[4.53272668,0.02380688,94.77165925],[4.53272612,0.02380516,94.77110119],[4.53272555,0.02380345,94.77054435],[4.53272499,0.02380174,94.76998873],[4.53272443,0.02380003,94.76943434],[4.53272387,0.02379831,94.7688812],[4.53272331,0.0237966,94.76832931],[4.53272275,0.02379489,94.7677787],[4.53272219,0.02379317,94.76722936],[4.53272162,0.02379146,94.76668131],[4.53272106,0.02378975,94.76613457],[4.5327205,0.02378804,94.76558914],[4.53271994,0.02378632,94.76504503],[4.53271938,0.02378461,94.76450226],[4.53271882,0.0237829,94.76396084],[4.53271826,0.02378118,94.76342077],[4.5327177,0.02377947,94.76288208],[4.53271713,0.02377776,94.76234476],[4.53271657,0.02377605,94.76180884],[4.53271601,0.02377433,94.76127431],[4.53271545,0.02377262,94.76074121],[4.53271488,0.02377091,94.76020952],[4.53271432,0.0237692,94.75967927],[4.53271375,0.02376749,94.75915047],[4.53271319,0.02376578,94.75862312],[4.53271262,0.02376407,94.75809724],[4.53271205,0.02376236,94.75757284],[4.53271149,0.02376065,94.75704991],[4.53271092,0.02375894,94.75652819],[4.53271035,0.02375723,94.75600721],[4.53270978,0.02375552,94.75548661],[4.5327092,0.02375381,94.75496629],[4.53270863,0.0237521,94.75444627],[4.53270805,0.02375039,94.75392655],[4.53270748,0.02374869,94.75340715],[4.5327069,0.02374698,94.75288807],[4.53270632,0.02374527,94.75236932],[4.53270574,0.02374357,94.75185091],[4.53270516,0.02374186,94.75133284],[4.53270458,0.02374015,94.75081514],[4.532704,0.02373845,94.7502978],[4.53270342,0.02373674,94.74978083],[4.53270284,0.02373503,94.74926424],[4.53270226,0.02373332,94.74874805],[4.53270168,0.02373162,94.74823225],[4.5327011,0.02372991,94.74771687],[4.53270053,0.0237282,94.7472019],[4.53269995,0.02372649,94.74668735],[4.53269938,0.02372478,94.74617324],[4.5326988,0.02372307,94.74565958],[4.53269823,0.02372136,94.74514636],[4.53269766,0.02371965,94.74463361],[4.53269709,0.02371794,94.74412136],[4.53269653,0.02371623,94.74361001],[4.53269596,0.02371452,94.74309983],[4.5326954,0.02371281,94.74259095],[4.53269484,0.02371109,94.74208352],[4.53269428,0.02370938,94.7415777],[4.53269372,0.02370767,94.74107374],[4.53269317,0.02370596,94.74057189],[4.53269261,0.02370425,94.74007241],[4.53269206,0.02370253,94.73957555],[4.5326915,0.02370082,94.73908157],[4.53269095,0.02369911,94.73859072],[4.5326904,0.0236974,94.73810326],[4.53268985,0.02369568,94.73761943],[4.5326893,0.02369397,94.73713948],[4.53268875,0.02369226,94.73666367],[4.5326882,0.02369055,94.73619224],[4.53268766,0.02368884,94.73572544],[4.53268711,0.02368713,94.73526351],[4.53268656,0.02368542,94.7348067],[4.53268602,0.02368371,94.73435525],[4.53268547,0.023682,94.7339094],[4.53268492,0.02368029,94.73346938],[4.53268438,0.02367858,94.73303519],[4.53268383,0.02367687,94.73260605],[4.53268328,0.02367516,94.73218112],[4.53268273,0.02367345,94.73175952],[4.53268218,0.02367175,94.73134039],[4.53268163,0.02367004,94.73092289],[4.53268108,0.02366833,94.73050615],[4.53268052,0.02366663,94.73008934],[4.53267996,0.02366492,94.7296716],[4.53267941,0.02366321,94.72925212],[4.53267885,0.02366151,94.72883047],[4.53267828,0.0236598,94.72840664],[4.53267772,0.02365809,94.72798055],[4.53267716,0.02365639,94.72755203],[4.53267659,0.02365468,94.72712092],[4.53267603,0.02365297,94.72668707],[4.53267547,0.02365127,94.7262503],[4.5326749,0.02364956,94.72581047],[4.53267434,0.02364786,94.72536741],[4.53267377,0.02364615,94.7249209],[4.53267321,0.02364444,94.72447074],[4.53267265,0.02364274,94.72401673],[4.53267208,0.02364103,94.72355865],[4.53267152,0.02363932,94.72309631],[4.53267096,0.02363761,94.7226295],[4.5326704,0.0236359,94.72215802],[4.53266994,0.02363449,94.72176465],[4.53282095,0.02358365,94.84800206],[4.53282142,0.02358507,94.8486664],[4.53282199,0.02358678,94.8494695],[4.53282255,0.0235885,94.8502719],[4.53282311,0.02359021,94.85107361],[4.53282368,0.02359192,94.85187464],[4.53282424,0.02359364,94.85267498],[4.53282481,0.02359535,94.85347466],[4.53282537,0.02359706,94.85427367],[4.53282594,0.02359878,94.85507201],[4.5328265,0.02360049,94.8558697],[4.53282707,0.0236022,94.85666674],[4.53282763,0.02360392,94.85746313],[4.5328282,0.02360563,94.85825888],[4.53282876,0.02360734,94.859054],[4.53282933,0.02360906,94.85984849],[4.53282989,0.02361077,94.86064236],[4.53283046,0.02361249,94.86143561],[4.53283102,0.0236142,94.86222825],[4.53283158,0.02361591,94.86302029],[4.53283215,0.02361763,94.86381173],[4.53283271,0.02361934,94.86460257],[4.53283328,0.02362106,94.86539283],[4.53283384,0.02362277,94.86618251],[4.53283441,0.02362449,94.86697162],[4.53283497,0.0236262,94.86776015],[4.53283553,0.02362792,94.86854813],[4.5328361,0.02362963,94.86933555],[4.53283666,0.02363135,94.87012242],[4.53283723,0.02363306,94.87090875],[4.53283779,0.02363477,94.87169454],[4.53283835,0.02363649,94.8724798],[4.53283892,0.0236382,94.87326454],[4.53283948,0.02363992,94.87404876],[4.53284004,0.02364163,94.87483248],[4.53284061,0.02364335,94.87561568],[4.53284117,0.02364506,94.87639839],[4.53284173,0.02364677,94.87718061],[4.5328423,0.02364849,94.87796234],[4.53284286,0.0236502,94.8787436],[4.53284342,0.02365191,94.87952438],[4.53284399,0.02365363,94.8803047],[4.53284455,0.02365534,94.88108456],[4.53284511,0.02365705,94.88186398],[4.53284568,0.02365877,94.88264294],[4.53284624,0.02366048,94.88342147],[4.5328468,0.02366219,94.88419957],[4.53284737,0.0236639,94.88497725],[4.53284793,0.02366562,94.88575451],[4.53284849,0.02366733,94.88653136],[4.53284906,0.02366904,94.88730781],[4.53284962,0.02367076,94.88808386],[4.53285018,0.02367247,94.88885952],[4.53285075,0.02367418,94.88963481],[4.53285131,0.02367589,94.89040971],[4.53285187,0.0236776,94.89118425],[4.53285244,0.02367932,94.89195843],[4.532853,0.02368103,94.89273226],[4.53285356,0.02368274,94.89350574],[4.53285413,0.02368445,94.89427888],[4.53285469,0.02368617,94.89505169],[4.53285526,0.02368788,94.89582418],[4.53285582,0.02368959,94.89659635],[4.53285638,0.0236913,94.8973682],[4.53285695,0.02369301,94.89813976],[4.53285751,0.02369473,94.89891102],[4.53285808,0.02369644,94.899682],[4.53285864,0.02369815,94.90045269],[4.5328592,0.02369986,94.90122311],[4.53285977,0.02370158,94.90199327],[4.53286033,0.02370329,94.90276316],[4.5328609,0.023705,94.90353281],[4.53286146,0.02370671,94.90430221],[4.53286203,0.02370842,94.90507138],[4.53286259,0.02371014,94.90584032],[4.53286316,0.02371185,94.90660904],[4.53286372,0.02371356,94.90737754],[4.53286428,0.02371527,94.90814584],[4.53286485,0.02371699,94.90891394],[4.53286541,0.0237187,94.90968186],[4.53286598,0.02372041,94.91044958],[4.53286654,0.02372212,94.91121714],[4.53286711,0.02372383,94.91198453],[4.53286767,0.02372555,94.91275175],[4.53286824,0.02372726,94.91351883],[4.5328688,0.02372897,94.91428574],[4.53286937,0.02373068,94.91505249],[4.53286993,0.02373239,94.91581907],[4.5328705,0.02373411,94.91658548],[4.53287106,0.02373582,94.9173517],[4.53287163,0.02373753,94.91811773],[4.5328722,0.02373924,94.91888357],[4.53287276,0.02374095,94.91964921],[4.53287333,0.02374267,94.92041464],[4.53287389,0.02374438,94.92117985],[4.53287446,0.02374609,94.92194485],[4.53287502,0.0237478,94.92270962],[4.53287559,0.02374951,94.92347416],[4.53287615,0.02375123,94.92423846],[4.53287672,0.02375294,94.92500251],[4.53287728,0.02375465,94.92576631],[4.53287785,0.02375636,94.92652985],[4.53287842,0.02375807,94.92729313],[4.53287898,0.02375978,94.92805614],[4.53287955,0.0237615,94.92881887],[4.53288011,0.02376321,94.92958132],[4.53288068,0.02376492,94.93034347],[4.53288124,0.02376663,94.93110533],[4.53288181,0.02376834,94.93186688],[4.53288238,0.02377005,94.93262813],[4.53288294,0.02377177,94.93338905],[4.53288351,0.02377348,94.93414966],[4.53288407,0.02377519,94.93490994],[4.53288464,0.0237769,94.93566989],[4.5328852,0.02377861,94.9364295],[4.53288577,0.02378033,94.93718876],[4.53288634,0.02378204,94.93794768],[4.5328869,0.02378375,94.93870624],[4.53288747,0.02378546,94.93946445],[4.53288803,0.02378717,94.94022229],[4.5328886,0.02378888,94.94097976],[4.53288917,0.0237906,94.94173685],[4.53288973,0.02379231,94.94249356],[4.5328903,0.02379402,94.94324988],[4.53289086,0.02379573,94.94400581],[4.53289143,0.02379744,94.94476134],[4.532892,0.02379915,94.94551646],[4.53289256,0.02380087,94.94627117],[4.53289313,0.02380258,94.94702547],[4.53289369,0.02380429,94.94777935],[4.53289426,0.023806,94.9485328],[4.53289483,0.02380771,94.94928582],[4.53289539,0.02380942,94.95003839],[4.53289596,0.02381113,94.95079053],[4.53289653,0.02381285,94.95154221],[4.53289709,0.02381456,94.95229344],[4.53289766,0.02381627,94.95304421],[4.53289822,0.02381798,94.95379452],[4.53289879,0.02381969,94.95454441],[4.53289936,0.0238214,94.95529388],[4.53289992,0.02382312,94.95604298],[4.53290049,0.02382483,94.95679172],[4.53290106,0.02382654,94.95754012],[4.53290162,0.02382825,94.95828821],[4.53290219,0.02382996,94.95903601],[4.53290275,0.02383167,94.95978355],[4.53290332,0.02383339,94.96053084],[4.53290389,0.0238351,94.96127792],[4.53290445,0.02383681,94.96202481],[4.53290502,0.02383852,94.96277152],[4.53290559,0.02384023,94.9635181],[4.53290615,0.02384194,94.96426455],[4.53290672,0.02384366,94.9650109],[4.53290728,0.02384537,94.96575718],[4.53290785,0.02384708,94.96650341],[4.53290842,0.02384879,94.96724962],[4.53290898,0.0238505,94.96799582],[4.53290955,0.02385221,94.96874205],[4.53291012,0.02385393,94.96948833],[4.53291068,0.02385564,94.97023467],[4.53291125,0.02385735,94.97098112],[4.53291181,0.02385906,94.97172768],[4.53291238,0.02386077,94.97247439],[4.53291295,0.02386248,94.97322127],[4.53291351,0.02386419,94.97396835],[4.53291408,0.02386591,94.97471564],[4.53291464,0.02386762,94.97546317],[4.53291521,0.02386933,94.97621097],[4.53291578,0.02387104,94.97695906],[4.53291634,0.02387275,94.97770747],[4.53291691,0.02387447,94.97845622],[4.53291747,0.02387618,94.97920534],[4.53291804,0.02387789,94.97995484],[4.53291861,0.0238796,94.98070473],[4.53291917,0.02388131,94.981455],[4.53291974,0.02388302,94.98220566],[4.5329203,0.02388474,94.98295669],[4.53292087,0.02388645,94.9837081],[4.53292143,0.02388816,94.98445988],[4.532922,0.02388987,94.98521203],[4.53292256,0.02389158,94.98596454],[4.53292313,0.0238933,94.98671742],[4.5329237,0.02389501,94.98747065],[4.53292426,0.02389672,94.98822424],[4.53292483,0.02389843,94.98897819],[4.53292539,0.02390014,94.98973248],[4.53292596,0.02390185,94.99048712],[4.53292652,0.02390357,94.99124211],[4.53292709,0.02390528,94.99199743],[4.53292765,0.02390699,94.99275309],[4.53292822,0.0239087,94.99350908],[4.53292878,0.02391041,94.99426541],[4.53292935,0.02391213,94.99502205],[4.53292991,0.02391384,94.99577903],[4.53293048,0.02391555,94.99653632],[4.53293104,0.02391726,94.99729393],[4.53293161,0.02391897,94.99805185],[4.53293217,0.02392069,94.99881008],[4.53293274,0.0239224,94.99956861],[4.5329333,0.02392411,95.00032745],[4.53293387,0.02392582,95.00108659],[4.53293443,0.02392754,95.00184602],[4.532935,0.02392925,95.00260575],[4.53293556,0.02393096,95.00336576],[4.53293613,0.02393267,95.00412606],[4.53293669,0.02393438,95.00488664],[4.53293726,0.0239361,95.00564749],[4.53293782,0.02393781,95.00640862],[4.53293839,0.02393952,95.00717003],[4.53293895,0.02394123,95.00793169],[4.53293952,0.02394294,95.00869363],[4.53294008,0.02394466,95.00945582],[4.53294064,0.02394637,95.01021827],[4.53294121,0.02394808,95.01098097],[4.53294177,0.02394979,95.01174391],[4.53294234,0.02395151,95.01250711],[4.5329429,0.02395322,95.01327054],[4.53294347,0.02395493,95.01403422],[4.53294403,0.02395664,95.01479812],[4.5329446,0.02395835,95.01556226],[4.53294516,0.02396007,95.01632663],[4.53294573,0.02396178,95.01709121],[4.53294629,0.02396349,95.01785602],[4.53294686,0.0239652,95.01862104],[4.53294742,0.02396692,95.01938627],[4.53294798,0.02396863,95.02015171],[4.53294855,0.02397034,95.02091735],[4.53294911,0.02397205,95.0216832],[4.53294968,0.02397376,95.02244924],[4.53295024,0.02397548,95.02321547],[4.53295081,0.02397719,95.02398189],[4.53295137,0.0239789,95.0247485],[4.53295194,0.02398061,95.02551529],[4.5329525,0.02398233,95.02628225],[4.53295306,0.02398404,95.02704939],[4.53295363,0.02398575,95.02781669],[4.53295419,0.02398746,95.02858416],[4.53295476,0.02398917,95.0293518],[4.53295532,0.02399089,95.03011959],[4.53295589,0.0239926,95.03088753],[4.53295645,0.02399431,95.03165563],[4.53295702,0.02399602,95.03242387],[4.53295758,0.02399774,95.03319225],[4.53295814,0.02399945,95.03396068],[4.53295871,0.02400116,95.03472872],[4.53295927,0.02400287,95.03549584],[4.53295984,0.02400459,95.03626151],[4.5329604,0.0240063,95.03702519],[4.53296097,0.02400801,95.03778637],[4.53296153,0.02400972,95.03854449],[4.53296209,0.02401143,95.03929904],[4.53296266,0.02401315,95.04004949],[4.53296322,0.02401486,95.04079529],[4.53296379,0.02401657,95.04153593],[4.53296435,0.02401828,95.04227086],[4.53296492,0.02402,95.04299957],[4.53296548,0.02402171,95.04372199],[4.53296604,0.02402342,95.04443845],[4.53296661,0.02402513,95.04514932],[4.53296717,0.02402684,95.04585499],[4.53296773,0.02402856,95.0465558],[4.5329683,0.02403027,95.04725214],[4.53296886,0.02403198,95.04794436],[4.53296943,0.02403369,95.04863285],[4.53296999,0.02403541,95.04931797],[4.53297056,0.02403712,95.05000009],[4.53297112,0.02403883,95.05067958],[4.53297168,0.02404054,95.0513568],[4.53297225,0.02404226,95.05203214],[4.53297281,0.02404397,95.05270596],[4.53297338,0.02404568,95.05337863],[4.53297394,0.02404739,95.05405052],[4.53297451,0.02404911,95.05472201],[4.53297507,0.02405082,95.05539346],[4.53297563,0.02405253,95.05606525],[4.5329762,0.02405424,95.05673774],[4.53297676,0.02405595,95.05741131],[4.53297733,0.02405767,95.05808633],[4.53297789,0.02405938,95.05876316],[4.53297846,0.02406109,95.05944189],[4.53297902,0.0240628,95.06012234],[4.53297959,0.02406451,95.06080432],[4.53298016,0.02406623,95.06148764],[4.53298072,0.02406794,95.0621721],[4.53298129,0.02406965,95.06285751],[4.53298186,0.02407136,95.06354368],[4.53298242,0.02407307,95.06423042],[4.53298299,0.02407478,95.06491753],[4.53298355,0.0240765,95.06560483],[4.53298412,0.02407821,95.06629211],[4.53298469,0.02407992,95.06697919],[4.53298525,0.02408163,95.06766588],[4.53298581,0.02408334,95.06835198],[4.53298638,0.02408506,95.0690373],[4.53298694,0.02408677,95.06972165],[4.5329875,0.02408848,95.07040483],[4.53298807,0.0240902,95.07108665],[4.53298863,0.02409191,95.07176692],[4.53298919,0.02409362,95.07244545],[4.53298975,0.02409534,95.07312204],[4.5329903,0.02409705,95.07379662],[4.53299086,0.02409877,95.0744696],[4.53299142,0.02410048,95.07514152],[4.53299197,0.0241022,95.0758129],[4.53299253,0.02410391,95.07648428],[4.53299308,0.02410563,95.07715618],[4.53299364,0.02410734,95.07782915],[4.53299419,0.02410906,95.0785037],[4.53299475,0.02411077,95.07918039],[4.5329953,0.02411249,95.07985972],[4.53299586,0.0241142,95.08054225],[4.53299642,0.02411592,95.08122851],[4.53299697,0.02411763,95.08191903],[4.53299753,0.02411935,95.08261434],[4.53299809,0.02412106,95.08331498],[4.53299865,0.02412278,95.08402148],[4.53299922,0.02412449,95.08473436],[4.53299978,0.0241262,95.0854535],[4.53300035,0.02412791,95.0861782],[4.53300091,0.02412963,95.08690772],[4.53300148,0.02413134,95.08764131],[4.53300205,0.02413305,95.08837824],[4.53300261,0.02413476,95.08911777],[4.53300318,0.02413647,95.08985915],[4.53300375,0.02413818,95.09060166],[4.53300431,0.02413989,95.09134455],[4.53300488,0.02414161,95.09208707],[4.53300544,0.02414332,95.0928285],[4.53300601,0.02414503,95.09356809],[4.53300657,0.02414674,95.09430511],[4.53285528,0.02419712,94.90802404]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":1,"type":"shoulder","predecessorId":1},{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":2,"type":"none","predecessorId":2}],"roadId":"1000100","singleSide":false,"rightLanes":[{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"id":-7,"type":"none","predecessorId":0},{"successorId":0,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":-6,"type":"border","predecessorId":0},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"id":-5,"type":"border","predecessorId":-5},{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-4,"type":"shoulder","predecessorId":-4},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0},{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.5369552,0.0386912,97.93660679],[4.53695509,0.03869087,97.93660826],[4.53695492,0.03869033,97.93664705],[4.5369547,0.03868959,97.93671694],[4.53695441,0.03868865,97.93681166],[4.53695406,0.0386875,97.93692485],[4.53695365,0.03868616,97.93705011],[4.53695317,0.03868462,97.93718096],[4.53695263,0.03868289,97.93731087],[4.53695208,0.03868115,97.93743322],[4.53695153,0.03867942,97.93754137],[4.53695097,0.03867769,97.93763055],[4.5369504,0.03867596,97.93770354],[4.53694983,0.03867424,97.937765],[4.53694926,0.03867252,97.93781962],[4.53694868,0.0386708,97.93787211],[4.53694811,0.03866908,97.93792586],[4.53694754,0.03866736,97.93798223],[4.53694696,0.03866564,97.93804227],[4.53694639,0.03866393,97.93810702],[4.53694582,0.03866221,97.93817728],[4.53694526,0.0386605,97.93825283],[4.53694469,0.03865878,97.93833319],[4.53694413,0.03865707,97.93841788],[4.53694357,0.03865535,97.93850641],[4.53694302,0.03865364,97.9385983],[4.53694246,0.03865193,97.93869305],[4.53694191,0.03865022,97.93879017],[4.53694136,0.03864851,97.93888914],[4.53694081,0.0386468,97.93898948],[4.53694026,0.03864509,97.93909071],[4.53693971,0.03864338,97.93919267],[4.53693917,0.03864167,97.9392952],[4.53693862,0.03863996,97.93939817],[4.53693808,0.03863826,97.93950145],[4.53693754,0.03863655,97.93960489],[4.53693699,0.03863485,97.93970837],[4.53693645,0.03863315,97.93981176],[4.53693591,0.03863145,97.93991495],[4.53693537,0.03862975,97.94001788],[4.53693483,0.03862805,97.94012059],[4.53693429,0.03862635,97.9402232],[4.53693374,0.03862465,97.94032577],[4.5369332,0.03862296,97.94042841],[4.53693266,0.03862127,97.9405312],[4.53693212,0.03861957,97.94063424],[4.53693158,0.03861788,97.94073761],[4.53693104,0.03861619,97.94084142],[4.5369305,0.0386145,97.94094574],[4.53692996,0.0386128,97.94105066],[4.53692942,0.03861111,97.94115628],[4.53692888,0.03860942,97.94126267],[4.53692833,0.03860773,97.94136992],[4.53692779,0.03860604,97.94147812],[4.53692725,0.03860435,97.94158734],[4.53692671,0.03860266,97.94169769],[4.53692616,0.03860097,97.94180918],[4.53692562,0.03859928,97.94192183],[4.53692508,0.03859759,97.94203563],[4.53692453,0.03859589,97.94215057],[4.53692399,0.0385942,97.94226665],[4.53692345,0.03859251,97.94238386],[4.5369229,0.03859082,97.9425022],[4.53692236,0.03858912,97.94262167],[4.53692181,0.03858743,97.94274225],[4.53692127,0.03858574,97.94286394],[4.53692072,0.03858404,97.94298673],[4.53692018,0.03858235,97.94311063],[4.53691963,0.03858066,97.94323572],[4.53691909,0.03857896,97.94336215],[4.53691854,0.03857727,97.94349012],[4.536918,0.03857557,97.94361979],[4.53691745,0.03857387,97.94375132],[4.53691691,0.03857218,97.94388478],[4.53691636,0.03857048,97.94402023],[4.53691581,0.03856879,97.94415773],[4.53691527,0.03856709,97.94429732],[4.53691472,0.03856539,97.94443907],[4.53691418,0.03856369,97.94458304],[4.53691364,0.03856199,97.9447293],[4.53691309,0.0385603,97.94487794],[4.53691255,0.0385586,97.94502903],[4.536912,0.0385569,97.94518263],[4.53691146,0.0385552,97.94533884],[4.53691091,0.0385535,97.94549772],[4.53691037,0.03855179,97.94565935],[4.53690983,0.03855009,97.9458238],[4.53690929,0.03854839,97.94599115],[4.53690874,0.03854669,97.94616139],[4.5369082,0.03854499,97.94633421],[4.53690766,0.03854328,97.9465092],[4.53690712,0.03854158,97.94668597],[4.53690658,0.03853987,97.94686417],[4.53690604,0.03853817,97.94704372],[4.53690549,0.03853646,97.94722457],[4.53690495,0.03853476,97.94740669],[4.53690441,0.03853305,97.94759004],[4.53690387,0.03853135,97.94777458],[4.53690333,0.03852964,97.94796029],[4.53690279,0.03852793,97.94814711],[4.53690224,0.03852623,97.94833502],[4.5369017,0.03852452,97.94852398],[4.53690116,0.03852281,97.94871392],[4.53690062,0.0385211,97.94890478],[4.53690008,0.0385194,97.94909649],[4.53689954,0.03851769,97.94928901],[4.53689899,0.03851598,97.94948226],[4.53689845,0.03851427,97.94967618],[4.53689791,0.03851256,97.9498707],[4.53689737,0.03851085,97.95006576],[4.53689682,0.03850914,97.95026131],[4.53689628,0.03850743,97.95045727],[4.53689574,0.03850572,97.95065358],[4.53689519,0.03850401,97.95085017],[4.53689465,0.03850229,97.95104699],[4.53689411,0.03850059,97.95124401],[4.53689357,0.03849888,97.95144137],[4.53689302,0.03849717,97.95163913],[4.53689248,0.03849546,97.95183731],[4.53689193,0.03849375,97.95203599],[4.53689139,0.03849203,97.95223518],[4.53689085,0.03849032,97.95243496],[4.5368903,0.03848861,97.95263535],[4.53688976,0.0384869,97.95283642],[4.53688922,0.03848518,97.95303819],[4.53688867,0.03848347,97.95324072],[4.53688813,0.03848176,97.95344406],[4.53688759,0.03848005,97.95364825],[4.53688704,0.03847833,97.95385333],[4.5368865,0.03847662,97.95405936],[4.53688596,0.03847491,97.95426637],[4.53688541,0.03847319,97.95447442],[4.53688487,0.03847148,97.95468355],[4.53688433,0.03846977,97.95489381],[4.53688379,0.03846805,97.95510524],[4.53688324,0.03846634,97.95531791],[4.5368827,0.03846462,97.95553185],[4.53688216,0.03846291,97.95574712],[4.53688162,0.03846119,97.95596373],[4.53688108,0.03845948,97.95618159],[4.53688054,0.03845776,97.95640058],[4.53688,0.03845605,97.95662059],[4.53687945,0.03845433,97.95684148],[4.53687891,0.03845261,97.95706314],[4.53687837,0.0384509,97.95728545],[4.53687783,0.03844918,97.95750828],[4.53687729,0.03844747,97.95773151],[4.53687675,0.03844575,97.95795503],[4.53687621,0.03844403,97.95817875],[4.53687567,0.03844232,97.95840262],[4.53687513,0.0384406,97.9586266],[4.53687459,0.03843888,97.95885065],[4.53687405,0.03843717,97.95907471],[4.53687351,0.03843545,97.95929874],[4.53687297,0.03843373,97.9595227],[4.53687243,0.03843201,97.95974655],[4.53687189,0.0384303,97.95997024],[4.53687135,0.03842858,97.96019374],[4.5368708,0.03842686,97.96041701],[4.53687026,0.03842514,97.96064002],[4.53686972,0.03842343,97.96086272],[4.53686918,0.03842171,97.96108508],[4.53686864,0.03841999,97.96130708],[4.5368681,0.03841827,97.96152872],[4.53686755,0.03841656,97.96175001],[4.53686701,0.03841484,97.96197094],[4.53686647,0.03841312,97.96219153],[4.53686593,0.0384114,97.96241177],[4.53686538,0.03840968,97.96263166],[4.53686484,0.03840796,97.96285122],[4.5368643,0.03840625,97.96307043],[4.53686375,0.03840453,97.96328931],[4.53686321,0.03840281,97.96350786],[4.53686267,0.03840109,97.96372607],[4.53686212,0.03839937,97.96394396],[4.53686158,0.03839765,97.96416153],[4.53686104,0.03839593,97.96437877],[4.53686049,0.03839421,97.9645957],[4.53685995,0.0383925,97.96481231],[4.5368594,0.03839078,97.96502861],[4.53685886,0.03838906,97.9652446],[4.53685832,0.03838734,97.96546028],[4.53685777,0.03838562,97.96567566],[4.53685723,0.0383839,97.96589074],[4.53685668,0.03838218,97.96610553],[4.53685614,0.03838046,97.96632005],[4.53685559,0.03837874,97.9665343],[4.53685505,0.03837702,97.96674829],[4.5368545,0.0383753,97.96696205],[4.53685396,0.03837358,97.96717559],[4.53685341,0.03837186,97.96738891],[4.53685287,0.03837014,97.96760204],[4.53685232,0.03836842,97.96781498],[4.53685177,0.0383667,97.96802776],[4.53685123,0.03836498,97.96824039],[4.53685068,0.03836326,97.96845293],[4.53685014,0.03836154,97.96866542],[4.53684959,0.03835982,97.9688779],[4.53684905,0.03835809,97.96909042],[4.5368485,0.03835637,97.96930303],[4.53684795,0.03835465,97.96951578],[4.53684741,0.03835293,97.9697287],[4.53684686,0.03835121,97.96994184],[4.53684632,0.03834949,97.97015524],[4.53684577,0.03834776,97.97036896],[4.53684523,0.03834604,97.97058302],[4.53684468,0.03834431,97.97079747],[4.53684413,0.03834259,97.97101234],[4.53684359,0.03834087,97.97122767],[4.53684304,0.03833915,97.9714435],[4.5368425,0.03833742,97.97165985],[4.53684196,0.0383357,97.97187678],[4.53684141,0.03833398,97.9720943],[4.53684087,0.03833225,97.97231247],[4.53684032,0.03833053,97.97253132],[4.53683978,0.0383288,97.97275087],[4.53683924,0.03832708,97.97297118],[4.53683869,0.03832535,97.97319227],[4.53683815,0.03832363,97.97341417],[4.53683761,0.0383219,97.97363693],[4.53683706,0.03832018,97.97386059],[4.53683652,0.03831845,97.97408516],[4.53683598,0.03831673,97.9743107],[4.53683544,0.038315,97.97453723],[4.5368349,0.03831327,97.97476479],[4.53683435,0.03831155,97.97499341],[4.53683381,0.03830982,97.97522313],[4.53683327,0.03830809,97.97545398],[4.53683273,0.03830636,97.975686],[4.53683219,0.03830464,97.97591921],[4.53683165,0.03830291,97.97615365],[4.53683112,0.03830118,97.97638934],[4.53683058,0.03829945,97.97662632],[4.53683004,0.03829772,97.97686462],[4.5368295,0.03829599,97.97710427],[4.53682897,0.03829426,97.9773453],[4.53682843,0.03829253,97.97758774],[4.53682789,0.0382908,97.97783161],[4.53682736,0.03828907,97.97807696],[4.53682682,0.03828734,97.97832381],[4.53682629,0.03828561,97.97857216],[4.53682575,0.03828388,97.97882195],[4.53682522,0.03828215,97.97907308],[4.53682469,0.03828041,97.97932544],[4.53682415,0.03827868,97.97957895],[4.53682362,0.03827695,97.97983351],[4.53682309,0.03827522,97.98008902],[4.53682256,0.03827348,97.9803454],[4.53682202,0.03827175,97.98060254],[4.53682149,0.03827001,97.98086035],[4.53682096,0.03826828,97.98111874],[4.53682043,0.03826655,97.98137761],[4.5368199,0.03826481,97.98163688],[4.53681937,0.03826308,97.98189645],[4.53681884,0.03826134,97.98215623],[4.53681831,0.03825961,97.98241613],[4.53681778,0.03825787,97.98267605],[4.53681725,0.03825614,97.98293591],[4.53681672,0.0382544,97.98319561],[4.53681619,0.03825266,97.98345507],[4.53681566,0.03825093,97.9837142],[4.53681513,0.03824919,97.9839729],[4.5368146,0.03824745,97.98423109],[4.53681407,0.03824572,97.98448869],[4.53681354,0.03824398,97.98474559],[4.53681301,0.03824224,97.98500172],[4.53681248,0.03824051,97.98525699],[4.53681195,0.03823877,97.98551131],[4.53681192,0.03823866,97.98552696],[4.53692693,0.03820202,98.23141893],[4.53692699,0.03820212,98.23151466],[4.53692797,0.03820369,98.23306897],[4.53692895,0.03820527,98.23462606],[4.53692993,0.03820685,98.23618588],[4.5369309,0.03820843,98.2377484],[4.53693188,0.03821,98.23931359],[4.53693286,0.03821158,98.24088142],[4.53693384,0.03821315,98.24245185],[4.53693482,0.03821473,98.24402485],[4.5369358,0.03821631,98.24560037],[4.53693678,0.03821788,98.24717839],[4.53693776,0.03821946,98.24875887],[4.53693874,0.03822103,98.25034176],[4.53693972,0.03822261,98.25192704],[4.5369407,0.03822419,98.25351467],[4.53694169,0.03822576,98.25510459],[4.53694267,0.03822734,98.25669679],[4.53694365,0.03822891,98.25829121],[4.53694463,0.03823049,98.25988782],[4.53694532,0.03823216,98.26046842],[4.53694579,0.03823389,98.26030925],[4.53694627,0.03823563,98.26014775],[4.53694674,0.03823737,98.25998393],[4.53694722,0.03823911,98.25981778],[4.53694769,0.03824084,98.25964933],[4.53694817,0.03824258,98.25947858],[4.53694864,0.03824432,98.25930553],[4.53694912,0.03824606,98.2591302],[4.53694959,0.0382478,98.2589526],[4.53695007,0.03824953,98.25877273],[4.53695054,0.03825127,98.25859062],[4.53695102,0.03825301,98.25840625],[4.53695149,0.03825475,98.25821966],[4.53695197,0.03825649,98.25803084],[4.53695244,0.03825823,98.2578398],[4.53695292,0.03825996,98.25764657],[4.53695339,0.0382617,98.25745115],[4.53695387,0.03826344,98.25725354],[4.53695434,0.03826518,98.25705377],[4.53695482,0.03826692,98.25685185],[4.53695529,0.03826866,98.25664778],[4.53695577,0.0382704,98.25644158],[4.53695624,0.03827214,98.25623325],[4.53695672,0.03827388,98.25602282],[4.53695719,0.03827561,98.2558103],[4.53695767,0.03827735,98.25559568],[4.53695814,0.03827909,98.25537898],[4.53695862,0.03828083,98.25516022],[4.53695909,0.03828257,98.2549394],[4.53695957,0.03828431,98.25471653],[4.53696004,0.03828605,98.25449163],[4.53696052,0.03828779,98.25426471],[4.536961,0.03828953,98.25403578],[4.53696147,0.03829127,98.25380484],[4.53696195,0.03829301,98.25357192],[4.53696242,0.03829475,98.25333703],[4.5369629,0.03829649,98.25310017],[4.53696338,0.03829822,98.25286136],[4.53696385,0.03829996,98.25262061],[4.53696433,0.0383017,98.25237793],[4.53696481,0.03830344,98.25213335],[4.53696528,0.03830518,98.25188686],[4.53696576,0.03830693,98.25163849],[4.53696624,0.03830867,98.25138825],[4.53696672,0.03831041,98.25113615],[4.53696719,0.03831215,98.2508822],[4.53696767,0.03831388,98.25062642],[4.53696815,0.03831562,98.25036883],[4.53696863,0.03831736,98.25010943],[4.5369691,0.0383191,98.24984825],[4.53696958,0.03832084,98.24958529],[4.53697006,0.03832258,98.24932057],[4.53697054,0.03832432,98.2490541],[4.53697102,0.03832606,98.24878591],[4.5369715,0.0383278,98.248516],[4.53697198,0.03832954,98.24824439],[4.53697246,0.03833127,98.2479711],[4.53697294,0.03833301,98.24769614],[4.53697342,0.03833475,98.24741953],[4.5369739,0.03833649,98.24714127],[4.53697438,0.03833823,98.24686134],[4.53697486,0.03833997,98.24657969],[4.53697534,0.03834171,98.24629628],[4.53697582,0.03834345,98.24601107],[4.5369763,0.03834518,98.24572401],[4.53697679,0.03834692,98.24543507],[4.53697727,0.03834866,98.2451442],[4.53697775,0.0383504,98.24485137],[4.53697823,0.03835214,98.24455655],[4.53697872,0.03835388,98.24425971],[4.5369792,0.03835562,98.24396081],[4.53697968,0.03835735,98.24365982],[4.53698016,0.03835909,98.24335671],[4.53698065,0.03836083,98.24305144],[4.53698113,0.03836257,98.24274399],[4.53698161,0.03836431,98.24243432],[4.5369821,0.03836605,98.2421224],[4.53698258,0.03836778,98.24180819],[4.53698307,0.03836952,98.24149166],[4.53698355,0.03837126,98.24117279],[4.53698403,0.038373,98.24085154],[4.53698452,0.03837474,98.24052787],[4.536985,0.03837648,98.24020175],[4.53698549,0.03837822,98.23987315],[4.53698597,0.03837995,98.23954205],[4.53698646,0.03838169,98.23920839],[4.53698694,0.03838343,98.23887217],[4.53698742,0.03838517,98.23853333],[4.53698791,0.03838691,98.23819186],[4.53698839,0.03838865,98.23784771],[4.53698888,0.03839038,98.23750085],[4.53698936,0.03839212,98.23715126],[4.53698985,0.03839386,98.2367989],[4.53699033,0.0383956,98.23644374],[4.53699082,0.03839734,98.23608575],[4.5369913,0.03839908,98.23572489],[4.53699179,0.03840082,98.23536115],[4.53699227,0.03840256,98.23499449],[4.53699276,0.03840429,98.2346249],[4.53699324,0.03840603,98.23425234],[4.53699373,0.03840777,98.2338768],[4.53699421,0.03840951,98.23349825],[4.53699469,0.03841125,98.23311666],[4.53699518,0.03841299,98.23273202],[4.53699566,0.03841473,98.23234429],[4.53699615,0.03841647,98.23195349],[4.53699663,0.03841821,98.23155963],[4.53699712,0.03841995,98.23116271],[4.5369976,0.03842168,98.23076276],[4.53699808,0.03842342,98.23035978],[4.53699857,0.03842516,98.22995378],[4.53699905,0.0384269,98.22954479],[4.53699954,0.03842864,98.2291328],[4.53700002,0.03843038,98.22871784],[4.53700051,0.03843212,98.22829991],[4.53700099,0.03843386,98.22787902],[4.53700147,0.0384356,98.2274552],[4.53700196,0.03843734,98.22702846],[4.53700244,0.03843908,98.22659879],[4.53700293,0.03844082,98.22616623],[4.53700341,0.03844256,98.22573078],[4.53700389,0.0384443,98.22529245],[4.53700438,0.03844604,98.22485126],[4.53700486,0.03844778,98.22440722],[4.53700535,0.03844952,98.22396034],[4.53700583,0.03845126,98.22351064],[4.53700632,0.03845299,98.22305813],[4.5370068,0.03845473,98.22260282],[4.53700729,0.03845647,98.22214472],[4.53700777,0.03845821,98.22168386],[4.53700826,0.03845995,98.22122023],[4.53700874,0.03846169,98.22075386],[4.53700923,0.03846343,98.22028475],[4.53700971,0.03846516,98.21981293],[4.53701019,0.0384669,98.2193384],[4.53701068,0.03846864,98.21886117],[4.53701116,0.03847038,98.21838127],[4.53701165,0.03847212,98.21789869],[4.53701213,0.03847386,98.21741344],[4.53701262,0.0384756,98.21692554],[4.53701311,0.03847734,98.21643499],[4.53701359,0.03847908,98.2159418],[4.53701408,0.03848082,98.21544597],[4.53701456,0.03848256,98.21494751],[4.53701505,0.0384843,98.21444644],[4.53701554,0.03848604,98.21394275],[4.53701602,0.03848778,98.21343646],[4.53701651,0.03848953,98.21292757],[4.537017,0.03849127,98.21241609],[4.53701748,0.03849301,98.21190203],[4.53701797,0.03849475,98.21138539],[4.53701846,0.03849649,98.21086618],[4.53701894,0.03849823,98.21034442],[4.53701943,0.03849997,98.20982009],[4.53701992,0.03850171,98.20929322],[4.5370204,0.03850345,98.20876381],[4.53702089,0.03850519,98.20823187],[4.53702138,0.03850693,98.20769739],[4.53702187,0.03850867,98.2071604],[4.53702235,0.03851041,98.20662089],[4.53702284,0.03851215,98.20607888],[4.53702333,0.03851389,98.20553436],[4.53702382,0.03851563,98.20498734],[4.5370243,0.03851737,98.20443784],[4.53702479,0.03851911,98.20388585],[4.53702528,0.03852085,98.20333138],[4.53702577,0.03852259,98.20277444],[4.53702626,0.03852433,98.20221504],[4.53702675,0.03852607,98.20165317],[4.53702723,0.03852781,98.20108885],[4.53702772,0.03852956,98.20052207],[4.53702821,0.0385313,98.19995285],[4.5370287,0.03853304,98.19938119],[4.53702919,0.03853478,98.19880713],[4.53702968,0.03853652,98.19823069],[4.53703017,0.03853826,98.19765188],[4.53703065,0.03854,98.19707074],[4.53703114,0.03854174,98.19648729],[4.53703163,0.03854348,98.19590156],[4.53703212,0.03854522,98.19531355],[4.53703261,0.03854696,98.19472331],[4.5370331,0.0385487,98.19413085],[4.53703359,0.03855044,98.19353616],[4.53703408,0.03855218,98.1929392],[4.53703457,0.03855392,98.19233993],[4.53703506,0.03855566,98.1917383],[4.53703555,0.0385574,98.19113428],[4.53703604,0.03855914,98.19052781],[4.53703653,0.03856089,98.18991886],[4.53703702,0.03856263,98.18930738],[4.53703751,0.03856437,98.18869333],[4.537038,0.03856611,98.18807666],[4.53703849,0.03856785,98.18745733],[4.53703898,0.03856959,98.1868353],[4.53703947,0.03857133,98.18621048],[4.53703996,0.03857307,98.18558273],[4.53704045,0.03857481,98.18495193],[4.53704094,0.03857655,98.18431795],[4.53704143,0.03857829,98.18368064],[4.53704193,0.03858005,98.18303989],[4.53704242,0.03858179,98.18239556],[4.53704291,0.03858353,98.18174752],[4.53704339,0.03858527,98.18109564],[4.53704388,0.03858701,98.18043979],[4.53704437,0.03858875,98.17977984],[4.53704486,0.03859049,98.17911567],[4.53704534,0.03859223,98.17844715],[4.53704583,0.03859397,98.17777416],[4.53704632,0.03859571,98.17709656],[4.5370468,0.03859744,98.17641423],[4.53704729,0.03859918,98.17572708],[4.53704777,0.03860092,98.17503514],[4.53704825,0.03860266,98.17433849],[4.53704874,0.0386044,98.17363719],[4.53704922,0.03860614,98.17293131],[4.53704971,0.03860788,98.17222092],[4.53705019,0.03860962,98.17150609],[4.53705067,0.03861136,98.17078688],[4.53705115,0.0386131,98.17006337],[4.53705164,0.03861483,98.16933561],[4.53705212,0.03861657,98.16860369],[4.5370526,0.03861831,98.16786765],[4.53705309,0.03862005,98.16712757],[4.53705357,0.03862179,98.1663835],[4.53705405,0.03862352,98.16563552],[4.53705454,0.03862526,98.16488369],[4.53705502,0.038627,98.16412807],[4.5370555,0.03862873,98.16336873],[4.53705599,0.03863047,98.16260585],[4.53705647,0.03863221,98.16183935],[4.53705696,0.03863394,98.16106815],[4.53705744,0.03863568,98.16029092],[4.53705793,0.03863741,98.15950633],[4.53705841,0.03863915,98.15871307],[4.53705889,0.03864089,98.15790981],[4.53705937,0.03864262,98.15709529],[4.53705985,0.03864436,98.1562682],[4.53706032,0.0386461,98.15542729],[4.5370608,0.03864784,98.15457313],[4.53706127,0.03864958,98.15371381],[4.53706175,0.03865132,98.15285929],[4.53706224,0.03865309,98.15201942],[4.53706274,0.03865489,98.15120397],[4.53706326,0.03865672,98.1504226],[4.53706379,0.03865859,98.1496849],[4.53706432,0.03866049,98.14900031],[4.53706487,0.03866242,98.14837822],[4.53706542,0.03866439,98.14782787],[4.5369552,0.0386912,97.93660679]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"rules":[{"value":"barred"}],"id":1,"type":"restricted","predecessorId":0}],"roadId":"1000400","singleSide":false,"rightLanes":[{"successorId":-4,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":-4,"type":"none","predecessorId":0},{"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-3,"type":"shoulder","predecessorId":0},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":0},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"broken","height":0.0},{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":0}]}},{"geometry":{"coordinates":[[[4.53681192,0.03823866,97.98552696],[4.53681139,0.03823693,97.98577991],[4.53681086,0.03823519,97.98603293],[4.53681074,0.03823478,97.98609238],[4.5369259,0.03819812,98.21531247],[4.53692601,0.03819853,98.2162665],[4.53692648,0.03820028,98.22033236],[4.53692694,0.03820202,98.23141893],[4.53681192,0.03823866,97.98552696]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"rules":[{"value":"barred"}],"id":1,"type":"restricted","predecessorId":1},{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":2,"type":"none","predecessorId":0}],"roadId":"1000400","singleSide":false,"rightLanes":[{"successorId":-4,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":-4,"type":"none","predecessorId":-4},{"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-3,"type":"shoulder","predecessorId":-3},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-2},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.53681074,0.03823478,97.98609238],[4.53681021,0.03823304,97.98634425],[4.53680967,0.03823131,97.98659557],[4.53680914,0.03822957,97.98684633],[4.53680861,0.03822783,97.98709655],[4.53680808,0.03822609,97.98734623],[4.53680755,0.03822435,97.98759537],[4.53680702,0.03822262,97.98784398],[4.53680649,0.03822088,97.98809205],[4.53680596,0.03821914,97.98833959],[4.53680543,0.0382174,97.98858661],[4.5368049,0.03821566,97.98883311],[4.53680437,0.03821392,97.98907909],[4.53680384,0.03821218,97.98932456],[4.53680331,0.03821044,97.98956952],[4.53680278,0.0382087,97.98981397],[4.53680225,0.03820696,97.99005791],[4.53680172,0.03820522,97.99030136],[4.53680119,0.03820348,97.99054431],[4.53680066,0.03820174,97.99078677],[4.53680013,0.0382,97.99102875],[4.5367996,0.03819826,97.99127024],[4.53679907,0.03819652,97.99151124],[4.53679853,0.03819478,97.99175177],[4.536798,0.03819304,97.99199183],[4.53679747,0.0381913,97.99223142],[4.53679694,0.03818955,97.99247054],[4.53679641,0.03818781,97.9927092],[4.53679588,0.03818607,97.99294741],[4.53679535,0.03818433,97.99318516],[4.53679482,0.03818259,97.99342249],[4.53679429,0.03818084,97.99365952],[4.53679376,0.0381791,97.99389634],[4.53679323,0.03817736,97.99413306],[4.53679271,0.03817562,97.99436977],[4.53679218,0.03817387,97.99460657],[4.53679165,0.03817213,97.99484356],[4.53679112,0.03817038,97.99508083],[4.53679059,0.03816864,97.99531849],[4.53679006,0.0381669,97.99555663],[4.53678953,0.03816515,97.99579534],[4.53678901,0.03816341,97.99603472],[4.53678848,0.03816166,97.99627488],[4.53678795,0.03815992,97.99651589],[4.53678743,0.03815817,97.99675786],[4.5367869,0.03815642,97.99700088],[4.53678638,0.03815468,97.99724505],[4.53678586,0.03815293,97.99749041],[4.53678533,0.03815118,97.99773703],[4.53678481,0.03814944,97.99798497],[4.53678429,0.03814769,97.99823428],[4.53678377,0.03814594,97.99848502],[4.53678325,0.0381442,97.99873725],[4.53678273,0.03814246,97.99899101],[4.53678221,0.03814071,97.99924636],[4.53678169,0.03813896,97.99950337],[4.53678118,0.03813721,97.99976208],[4.53678066,0.03813546,98.00002254],[4.53678014,0.03813371,98.00028482],[4.53677963,0.03813196,98.00054897],[4.53677911,0.03813021,98.00081504],[4.5367786,0.03812846,98.00108307],[4.53677809,0.03812671,98.00135305],[4.53677758,0.03812496,98.00162488],[4.53677707,0.03812321,98.00189843],[4.53677656,0.03812146,98.00217362],[4.53677605,0.0381197,98.00245033],[4.53677554,0.03811795,98.00272845],[4.53677503,0.0381162,98.0030079],[4.53677453,0.03811445,98.00328855],[4.53677402,0.0381127,98.00357031],[4.53677352,0.03811094,98.00385308],[4.53677301,0.03810919,98.00413675],[4.53677251,0.03810744,98.00442122],[4.536772,0.03810568,98.00470639],[4.5367715,0.03810393,98.00499216],[4.536771,0.03810218,98.00527843],[4.53677049,0.03810042,98.0055651],[4.53676999,0.03809867,98.00585207],[4.53676949,0.03809692,98.00613924],[4.53676899,0.03809516,98.00642652],[4.53676849,0.03809341,98.0067138],[4.53676799,0.03809166,98.00700099],[4.53676749,0.0380899,98.00728799],[4.53676699,0.03808815,98.00757471],[4.53676648,0.0380864,98.00786105],[4.53676598,0.03808464,98.00814691],[4.53676548,0.03808289,98.00843219],[4.53676498,0.03808113,98.00871681],[4.53676448,0.03807938,98.00900067],[4.53676398,0.03807763,98.00928368],[4.53676348,0.03807587,98.00956574],[4.53676298,0.03807412,98.00984675],[4.53676248,0.03807237,98.01012664],[4.53676198,0.03807061,98.01040529],[4.53676148,0.03806886,98.01068263],[4.53676098,0.0380671,98.01095856],[4.53676048,0.03806535,98.01123299],[4.53675998,0.0380636,98.01150582],[4.53675948,0.03806184,98.01177698],[4.53675897,0.03806009,98.01204639],[4.53675847,0.03805834,98.0123141],[4.53675797,0.03805659,98.01258019],[4.53675746,0.03805483,98.01284473],[4.53675696,0.03805308,98.01310779],[4.53675646,0.03805133,98.01336945],[4.53675595,0.03804958,98.01362978],[4.53675545,0.03804782,98.01388885],[4.53675494,0.03804607,98.01414673],[4.53675444,0.03804432,98.01440351],[4.53675393,0.03804257,98.01465929],[4.53675343,0.03804081,98.0149142],[4.53675293,0.03803906,98.01516834],[4.53675242,0.03803731,98.01542185],[4.53675192,0.03803556,98.01567484],[4.53675141,0.03803381,98.01592742],[4.53675091,0.03803205,98.01617972],[4.5367504,0.0380303,98.01643184],[4.5367499,0.03802855,98.0166839],[4.53674939,0.0380268,98.01693602],[4.53674889,0.03802505,98.01718832],[4.53674839,0.03802329,98.0174409],[4.53674788,0.03802154,98.01769387],[4.53674738,0.03801979,98.01794737],[4.53674688,0.03801804,98.01820149],[4.53674637,0.03801628,98.01845635],[4.53674587,0.03801453,98.01871208],[4.53674537,0.03801278,98.01896884],[4.53674487,0.03801102,98.01922668],[4.53674437,0.03800927,98.01948563],[4.53674387,0.03800752,98.01974568],[4.53674337,0.03800576,98.02000683],[4.53674287,0.03800401,98.02026907],[4.53674238,0.03800226,98.02053241],[4.53674188,0.0380005,98.02079686],[4.53674138,0.03799875,98.0210624],[4.53674089,0.03799699,98.02132904],[4.53674039,0.03799524,98.02159677],[4.53673989,0.03799348,98.02186561],[4.5367394,0.03799173,98.02213555],[4.53673891,0.03798997,98.02240659],[4.53673841,0.03798822,98.02267872],[4.53673792,0.03798646,98.02295196],[4.53673743,0.03798471,98.0232263],[4.53673693,0.03798295,98.02350174],[4.53673644,0.0379812,98.02377828],[4.53673595,0.03797944,98.02405592],[4.53673546,0.03797768,98.02433466],[4.53673497,0.03797593,98.02461451],[4.53673448,0.03797417,98.02489547],[4.53673399,0.03797242,98.02517752],[4.53673351,0.03797066,98.02546069],[4.53673302,0.0379689,98.02574496],[4.53673253,0.03796715,98.02603034],[4.53673204,0.03796539,98.02631684],[4.53673156,0.03796363,98.02660446],[4.53673107,0.03796187,98.02689319],[4.53673059,0.03796012,98.02718295],[4.5367301,0.03795836,98.02747365],[4.53672962,0.0379566,98.0277652],[4.53672914,0.03795484,98.0280575],[4.53672865,0.03795309,98.02835046],[4.53672817,0.03795133,98.02864399],[4.53672769,0.03794957,98.028938],[4.5367272,0.03794781,98.02923238],[4.53672672,0.03794605,98.02952706],[4.53672624,0.0379443,98.02982195],[4.53672576,0.03794254,98.030117],[4.53672528,0.03794078,98.03041216],[4.53672479,0.03793902,98.03070741],[4.53672431,0.03793726,98.03100271],[4.53672383,0.0379355,98.031298],[4.53672335,0.03793375,98.03159327],[4.53672287,0.03793199,98.03188846],[4.53672239,0.03793023,98.03218351],[4.5367219,0.03792847,98.03247838],[4.53672142,0.03792671,98.03277297],[4.53672094,0.03792495,98.03306723],[4.53672046,0.0379232,98.03336107],[4.53671998,0.03792144,98.03365446],[4.5367195,0.03791968,98.03394735],[4.53671902,0.03791792,98.03423975],[4.53671853,0.03791616,98.03453164],[4.53671805,0.0379144,98.03482302],[4.53671757,0.03791265,98.03511387],[4.53671709,0.03791089,98.03540418],[4.5367166,0.03790913,98.03569395],[4.53671612,0.03790737,98.03598316],[4.53671564,0.03790561,98.0362718],[4.53671516,0.03790386,98.03655986],[4.53671467,0.0379021,98.03684733],[4.53671419,0.03790034,98.03713421],[4.53671371,0.03789858,98.03742047],[4.53671322,0.03789683,98.03770612],[4.53671274,0.03789507,98.03799113],[4.53671226,0.03789331,98.0382755],[4.53671177,0.03789155,98.03855922],[4.53671129,0.0378898,98.03884227],[4.5367108,0.03788804,98.03912465],[4.53671033,0.03788632,98.03940635],[4.53670985,0.03788457,98.03968734],[4.53670936,0.03788281,98.03996763],[4.53670888,0.03788106,98.04024719],[4.53670839,0.0378793,98.040526],[4.5367079,0.03787754,98.04080402],[4.53670742,0.03787579,98.04108123],[4.53670693,0.03787403,98.04135759],[4.53670645,0.03787228,98.04163308],[4.53670596,0.03787052,98.04190773],[4.53670547,0.03786877,98.04218188],[4.53670498,0.03786701,98.0424559],[4.5367045,0.03786526,98.04273021],[4.53670401,0.03786351,98.04300519],[4.53670352,0.03786175,98.04328124],[4.53670304,0.03786,98.04355876],[4.53670255,0.03785824,98.04383817],[4.53670207,0.03785649,98.04411986],[4.53670158,0.03785473,98.04440425],[4.5367011,0.03785298,98.04469175],[4.53670062,0.03785122,98.04498276],[4.53670014,0.03784947,98.04527769],[4.53669966,0.03784771,98.04557695],[4.53669919,0.03784596,98.04588094],[4.53669871,0.0378442,98.04619008],[4.53669824,0.03784244,98.04650466],[4.53669777,0.03784069,98.04682455],[4.5366973,0.03783893,98.0471495],[4.53669683,0.03783717,98.04747927],[4.53669636,0.03783541,98.04781361],[4.5366959,0.03783366,98.04815228],[4.53669543,0.0378319,98.04849503],[4.53669497,0.03783014,98.04884162],[4.53669451,0.03782838,98.0491918],[4.53669405,0.03782662,98.04954533],[4.53669359,0.03782486,98.04990196],[4.53669313,0.0378231,98.05026144],[4.53669268,0.03782134,98.05062354],[4.53669222,0.03781958,98.050988],[4.53669176,0.03781782,98.05135459],[4.53669131,0.03781606,98.05172305],[4.53669085,0.0378143,98.05209313],[4.5366904,0.03781254,98.05246461],[4.53668994,0.03781078,98.05283722],[4.53668949,0.03780902,98.05321072],[4.53668903,0.03780727,98.05358486],[4.53668858,0.03780551,98.05395942],[4.53668813,0.03780375,98.05433417],[4.53668767,0.03780199,98.05470888],[4.53668722,0.03780023,98.05508335],[4.53668676,0.03779847,98.05545735],[4.53668631,0.03779671,98.05583068],[4.53668585,0.03779495,98.05620312],[4.53668539,0.0377932,98.05657451],[4.53668494,0.03779144,98.05694494],[4.53668448,0.03778968,98.05731453],[4.53668402,0.03778792,98.05768343],[4.53668356,0.03778617,98.05805178],[4.5366831,0.03778441,98.0584197],[4.53668265,0.03778265,98.05878734],[4.53668219,0.0377809,98.05915484],[4.53668173,0.03777914,98.05952233],[4.53668127,0.03777739,98.05988995],[4.53668081,0.03777563,98.06025784],[4.53668035,0.03777387,98.06062614],[4.53667989,0.03777212,98.06099498],[4.53667943,0.03777036,98.0613645],[4.53667897,0.03776861,98.06173485],[4.53667851,0.03776685,98.06210615],[4.53667805,0.0377651,98.06247855],[4.53667759,0.03776334,98.06285219],[4.53667713,0.03776159,98.0632272],[4.53667667,0.03775983,98.06360372],[4.53667621,0.03775808,98.0639819],[4.53667575,0.03775632,98.06436188],[4.5366753,0.03775457,98.06474376],[4.53667484,0.03775281,98.06512756],[4.53667438,0.03775106,98.06551329],[4.53667393,0.0377493,98.06590091],[4.53667347,0.03774755,98.06629043],[4.53667301,0.03774579,98.06668181],[4.53667256,0.03774404,98.06707504],[4.5366721,0.03774228,98.06747009],[4.53667165,0.03774053,98.06786695],[4.53667119,0.03773877,98.0682656],[4.53667074,0.03773702,98.068666],[4.53667028,0.03773526,98.06906815],[4.53666983,0.03773351,98.06947202],[4.53666938,0.03773175,98.06987759],[4.53666892,0.03773,98.07028483],[4.53666847,0.03772824,98.07069374],[4.53666802,0.03772649,98.07110428],[4.53666757,0.03772474,98.07151644],[4.53666711,0.03772298,98.0719302],[4.53666666,0.03772123,98.07234553],[4.53666621,0.03771947,98.07276241],[4.53666576,0.03771772,98.07318082],[4.53666531,0.03771596,98.07360074],[4.53666486,0.03771421,98.07402215],[4.5366644,0.03771246,98.07444503],[4.53666395,0.0377107,98.07486935],[4.5366635,0.03770895,98.0752951],[4.53666305,0.03770719,98.07572225],[4.5366626,0.03770544,98.07615076],[4.53666215,0.03770369,98.0765806],[4.5366617,0.03770193,98.07701174],[4.53666125,0.03770018,98.07744414],[4.5366608,0.03769843,98.07787778],[4.53666035,0.03769667,98.07831262],[4.5366599,0.03769492,98.07874862],[4.53665945,0.03769317,98.07918576],[4.536659,0.03769142,98.07962399],[4.53665855,0.03768966,98.08006329],[4.5366581,0.03768791,98.08050363],[4.53665764,0.03768616,98.08094496],[4.53665719,0.03768441,98.08138726],[4.53665674,0.03768265,98.0818305],[4.53665629,0.0376809,98.08227466],[4.53665584,0.03767915,98.0827197],[4.53665539,0.0376774,98.08316562],[4.53665494,0.03767565,98.08361237],[4.53665449,0.0376739,98.08405994],[4.53665403,0.03767215,98.0845083],[4.53665358,0.03767039,98.08495742],[4.53665313,0.03766864,98.08540729],[4.53665268,0.03766689,98.08585787],[4.53665222,0.03766514,98.08630914],[4.53665177,0.03766339,98.08676107],[4.53665132,0.03766164,98.08721364],[4.53665086,0.03765989,98.08766683],[4.53665041,0.03765814,98.0881206],[4.53664996,0.03765639,98.08857494],[4.5366495,0.03765464,98.08902981],[4.53664905,0.03765289,98.08948519],[4.53664859,0.03765115,98.08994106],[4.53664814,0.0376494,98.09039739],[4.53664768,0.03764765,98.09085416],[4.53664722,0.0376459,98.09131133],[4.53664677,0.03764415,98.09176888],[4.53664631,0.0376424,98.09222679],[4.53664585,0.03764066,98.09268503],[4.5366454,0.03763891,98.09314358],[4.53664494,0.03763716,98.0936024],[4.53664448,0.03763542,98.09406148],[4.53664402,0.03763367,98.09452078],[4.53664356,0.03763192,98.09498029],[4.5366431,0.03763018,98.09543997],[4.53664264,0.03762843,98.09589979],[4.53664218,0.03762668,98.09635974],[4.53664172,0.03762494,98.09681979],[4.53664125,0.03762319,98.0972799],[4.53664079,0.03762145,98.09774007],[4.53664033,0.0376197,98.09820032],[4.53663987,0.03761796,98.09866078],[4.5366394,0.03761622,98.09912155],[4.53663894,0.03761447,98.09958276],[4.53663847,0.03761273,98.10004453],[4.53663801,0.03761098,98.10050695],[4.53663754,0.03760924,98.10097014],[4.53663707,0.0376075,98.10143423],[4.53663661,0.03760575,98.10189931],[4.53663614,0.03760401,98.1023655],[4.53663567,0.03760226,98.10283291],[4.53663521,0.03760052,98.10330166],[4.53663474,0.03759878,98.10377187],[4.53663427,0.03759703,98.10424363],[4.5366338,0.03759529,98.10471707],[4.53663334,0.03759355,98.1051923],[4.53663287,0.0375918,98.10566944],[4.5366324,0.03759006,98.10614859],[4.53663194,0.03758832,98.10662988],[4.53663147,0.03758657,98.10711341],[4.536631,0.03758483,98.10759931],[4.53663054,0.03758309,98.10808768],[4.53663007,0.03758134,98.10857864],[4.5366296,0.0375796,98.10907231],[4.53662914,0.03757785,98.1095688],[4.53662867,0.03757611,98.11006822],[4.53662821,0.03757437,98.1105707],[4.53662774,0.03757262,98.11107634],[4.53662728,0.03757088,98.11158527],[4.53662681,0.03756913,98.1120976],[4.53662635,0.03756739,98.11261344],[4.53662589,0.03756565,98.11313292],[4.53662543,0.0375639,98.11365614],[4.53662496,0.03756216,98.11418322],[4.5366245,0.03756041,98.11471429],[4.53662404,0.03755867,98.11524945],[4.53662358,0.03755692,98.11578884],[4.53662313,0.03755517,98.11633249],[4.53662267,0.03755343,98.11688022],[4.53662221,0.03755168,98.11743177],[4.53662175,0.03754994,98.11798686],[4.5366213,0.03754819,98.11854524],[4.53662084,0.03754644,98.11910665],[4.53662039,0.0375447,98.11967082],[4.53661993,0.03754295,98.12023749],[4.53661947,0.0375412,98.12080639],[4.53661902,0.03753946,98.12137727],[4.53661856,0.03753771,98.12194986],[4.53661811,0.03753597,98.12252388],[4.53661765,0.03753422,98.12309909],[4.53661719,0.03753247,98.12367522],[4.53661674,0.03753073,98.12425199],[4.53661628,0.03752898,98.12482915],[4.53661582,0.03752724,98.12540643],[4.53661536,0.03752549,98.12598371],[4.5366149,0.03752375,98.12656147],[4.53661444,0.037522,98.12714036],[4.53661398,0.03752026,98.127721],[4.53661352,0.03751851,98.12830402],[4.53661306,0.03751676,98.12889006],[4.5366126,0.03751502,98.12947976],[4.53661214,0.03751327,98.13007375],[4.53661169,0.03751153,98.13067266],[4.53661123,0.03750978,98.13127714],[4.53661077,0.03750804,98.13188782],[4.53661032,0.03750629,98.13250533],[4.53660987,0.03750454,98.13313031],[4.53660942,0.03750279,98.13376341],[4.53660897,0.03750105,98.13440498],[4.53660852,0.0374993,98.13505436],[4.53660808,0.03749755,98.13571059],[4.53660764,0.0374958,98.13637276],[4.53660719,0.03749405,98.1370399],[4.53660675,0.0374923,98.13771109],[4.53660631,0.03749055,98.13838539],[4.53660587,0.0374888,98.13906184],[4.53660543,0.03748705,98.13973953],[4.53660499,0.0374853,98.14041751],[4.53660454,0.03748355,98.14109484],[4.5366041,0.0374818,98.14177058],[4.53660365,0.03748005,98.14244383],[4.5366032,0.03747831,98.14311467],[4.53660275,0.03747656,98.14378411],[4.5366023,0.03747481,98.14445321],[4.53660185,0.03747306,98.14512305],[4.5366014,0.03747132,98.14579467],[4.53660095,0.03746957,98.14646915],[4.5366005,0.03746782,98.14714756],[4.53660005,0.03746607,98.14783094],[4.5365996,0.03746433,98.14852038],[4.53659915,0.03746258,98.14921693],[4.53659871,0.03746083,98.14992166],[4.53659827,0.03745908,98.15063562],[4.53659783,0.03745733,98.1513599],[4.53659739,0.03745558,98.15209553],[4.53659696,0.03745383,98.1528436],[4.53659653,0.03745207,98.15360516],[4.5365961,0.03745032,98.15438127],[4.53659568,0.03744856,98.15517293],[4.53659526,0.03744681,98.15597968],[4.53659485,0.03744505,98.15679962],[4.53659444,0.03744329,98.15763076],[4.53659403,0.03744154,98.15847114],[4.53659362,0.03743978,98.15931876],[4.53659322,0.03743802,98.16017166],[4.53659281,0.03743626,98.16102785],[4.5365924,0.0374345,98.16188536],[4.536592,0.03743274,98.16274222],[4.53659159,0.03743098,98.16359645],[4.53659118,0.03742923,98.16444608],[4.53659076,0.03742747,98.16528913],[4.53659034,0.03742571,98.16612364],[4.53658992,0.03742396,98.16694764],[4.5365895,0.03742221,98.16775969],[4.53658906,0.03742045,98.16856045],[4.53658863,0.0374187,98.16935107],[4.53658819,0.03741695,98.17013271],[4.53658774,0.0374152,98.17090652],[4.5365873,0.03741346,98.17167367],[4.53658685,0.03741171,98.1724353],[4.5365864,0.03740996,98.17319257],[4.53658594,0.03740822,98.17394634],[4.53658549,0.03740647,98.17469721],[4.53658503,0.03740472,98.17544578],[4.53658457,0.03740298,98.17619265],[4.53658411,0.03740123,98.1769384],[4.53658365,0.03739949,98.17768365],[4.53658319,0.03739774,98.17842897],[4.53658273,0.037396,98.17917497],[4.53658226,0.03739426,98.17992223],[4.5365818,0.03739251,98.18067134],[4.53658134,0.03739077,98.18142291],[4.53658087,0.03738902,98.18217752],[4.53658041,0.03738728,98.18293575],[4.53657995,0.03738553,98.18369821],[4.53657948,0.03738379,98.18446536],[4.53657902,0.03738204,98.18523726],[4.53657856,0.0373803,98.1860139],[4.5365781,0.03737855,98.18679522],[4.53657764,0.03737681,98.1875812],[4.53657718,0.03737506,98.18837182],[4.53657673,0.03737332,98.18916702],[4.53657627,0.03737157,98.18996679],[4.53657581,0.03736983,98.1907711],[4.53657536,0.03736808,98.19157989],[4.5365749,0.03736633,98.19239316],[4.53657444,0.03736459,98.19321086],[4.53657399,0.03736284,98.19403296],[4.53657354,0.0373611,98.19485942],[4.53657308,0.03735935,98.19569023],[4.53657263,0.0373576,98.19652533],[4.53657218,0.03735585,98.19736471],[4.53657172,0.03735411,98.19820832],[4.53657127,0.03735236,98.19905612],[4.53657082,0.03735061,98.19990791],[4.53657037,0.03734887,98.20076351],[4.53656992,0.03734712,98.2016227],[4.53656947,0.03734537,98.20248529],[4.53656902,0.03734362,98.20335108],[4.53656857,0.03734188,98.20421986],[4.53656811,0.03734013,98.20509143],[4.53656766,0.03733838,98.2059656],[4.53656721,0.03733663,98.20684216],[4.53656676,0.03733489,98.20772093],[4.53656631,0.03733314,98.20860169],[4.53656586,0.03733139,98.20948426],[4.5365654,0.03732964,98.21036843],[4.53656495,0.0373279,98.21125401],[4.5365645,0.03732615,98.21214081],[4.53656404,0.0373244,98.21302863],[4.53656359,0.03732266,98.21391728],[4.53656313,0.03732091,98.21480657],[4.53656268,0.03731916,98.2156963],[4.53656222,0.03731742,98.21658629],[4.53656176,0.03731567,98.21747634],[4.5365613,0.03731393,98.21836631],[4.53656084,0.03731218,98.21925626],[4.53656038,0.03731044,98.22014628],[4.53655991,0.03730869,98.22103647],[4.53655945,0.03730695,98.22192694],[4.53655898,0.0373052,98.22281778],[4.53655852,0.03730346,98.22370908],[4.53655805,0.03730172,98.22460095],[4.53655758,0.03729997,98.22549348],[4.53655711,0.03729823,98.22638678],[4.53655664,0.03729649,98.22728094],[4.53655617,0.03729474,98.22817606],[4.5365557,0.037293,98.22907224],[4.53655523,0.03729126,98.22996957],[4.53655476,0.03728952,98.23086816],[4.53655429,0.03728777,98.2317681],[4.53655381,0.03728603,98.23266949],[4.53655334,0.03728429,98.23357242],[4.53655286,0.03728255,98.234477],[4.53655239,0.03728081,98.23538332],[4.53655191,0.03727907,98.23629147],[4.53655143,0.03727732,98.23720156],[4.53655096,0.03727558,98.23811368],[4.53655048,0.03727384,98.23902792],[4.53655,0.0372721,98.23994439],[4.53654952,0.03727036,98.24086318],[4.53654904,0.03726862,98.24178438],[4.53654856,0.03726688,98.24270809],[4.53654809,0.03726514,98.2436344],[4.53654761,0.0372634,98.24456342],[4.53654713,0.03726166,98.24549522],[4.53654664,0.03725992,98.24642992],[4.53654616,0.03725818,98.24736759],[4.53654568,0.03725644,98.24830834],[4.5365452,0.0372547,98.24925226],[4.53654472,0.03725296,98.25019944],[4.53654424,0.03725122,98.25114997],[4.53654376,0.03724948,98.25210395],[4.53654328,0.03724774,98.25306146],[4.5365428,0.037246,98.2540226],[4.53654232,0.03724426,98.25498746],[4.53654184,0.03724252,98.25595613],[4.53654135,0.03724078,98.2569287],[4.53654087,0.03723904,98.25790526],[4.53654039,0.0372373,98.2588859],[4.53654006,0.03723607,98.2595775],[4.53667014,0.03720307,98.4590996],[4.53667044,0.0372043,98.45853248],[4.53667087,0.03720605,98.45772515],[4.5366713,0.0372078,98.45691751],[4.53667173,0.03720955,98.45610958],[4.53667216,0.0372113,98.45530139],[4.53667258,0.03721305,98.45449294],[4.53667301,0.0372148,98.45368427],[4.53667344,0.03721656,98.45287538],[4.53667387,0.03721831,98.45206631],[4.53667429,0.03722006,98.45125707],[4.53667472,0.03722181,98.45044769],[4.53667515,0.03722356,98.44963817],[4.53667557,0.03722531,98.44882855],[4.536676,0.03722706,98.44801885],[4.53667643,0.03722882,98.44720908],[4.53667685,0.03723057,98.44639927],[4.53667728,0.03723232,98.44558944],[4.53667771,0.03723407,98.4447796],[4.53667813,0.03723582,98.44396979],[4.53667856,0.03723757,98.44316002],[4.53667898,0.03723933,98.44235032],[4.53667941,0.03724108,98.4415407],[4.53667983,0.03724283,98.44073118],[4.53668026,0.03724458,98.4399218],[4.53668069,0.03724633,98.43911257],[4.53668111,0.03724808,98.43830351],[4.53668154,0.03724983,98.43749464],[4.53668196,0.03725159,98.43668599],[4.53668239,0.03725334,98.43587758],[4.53668282,0.03725509,98.43506943],[4.53668324,0.03725684,98.43426156],[4.53668367,0.03725859,98.433454],[4.53668409,0.03726034,98.43264677],[4.53668452,0.0372621,98.43183988],[4.53668495,0.03726385,98.43103337],[4.53668538,0.0372656,98.43022726],[4.5366858,0.03726735,98.42942156],[4.53668623,0.0372691,98.4286163],[4.53668666,0.03727085,98.4278115],[4.53668709,0.0372726,98.42700719],[4.53668752,0.03727435,98.42620339],[4.53668794,0.03727611,98.42540012],[4.53668837,0.03727786,98.4245974],[4.5366888,0.03727961,98.42379526],[4.53668923,0.03728136,98.42299372],[4.53668966,0.03728311,98.4221928],[4.53669009,0.03728486,98.42139253],[4.53669053,0.03728661,98.42059293],[4.53669096,0.03728836,98.41979401],[4.53669139,0.03729011,98.41899581],[4.53669182,0.03729186,98.41819835],[4.53669226,0.03729361,98.41740165],[4.53669269,0.03729536,98.41660573],[4.53669312,0.03729711,98.41581061],[4.53669356,0.03729886,98.41501633],[4.53669399,0.03730061,98.4142229],[4.53669443,0.03730236,98.41343034],[4.53669487,0.03730411,98.41263869],[4.5366953,0.03730585,98.41184795],[4.53669574,0.0373076,98.41105816],[4.53669618,0.03730935,98.41026934],[4.53669662,0.0373111,98.40948151],[4.53669706,0.03731285,98.40869469],[4.5366975,0.0373146,98.40790891],[4.53669794,0.03731634,98.4071242],[4.53669838,0.03731809,98.40634056],[4.53669882,0.03731984,98.40555804],[4.53669926,0.03732159,98.40477664],[4.53669971,0.03732334,98.4039964],[4.53670015,0.03732508,98.40321733],[4.5367006,0.03732683,98.40243947],[4.53670104,0.03732858,98.40166282],[4.53670149,0.03733032,98.40088743],[4.53670193,0.03733207,98.4001133],[4.53670238,0.03733382,98.39934046],[4.53670283,0.03733556,98.39856894],[4.53670328,0.03733731,98.39779876],[4.53670373,0.03733905,98.39702994],[4.53670417,0.0373408,98.3962625],[4.53670462,0.03734255,98.39549647],[4.53670508,0.03734429,98.39473186],[4.53670553,0.03734604,98.39396863],[4.53670598,0.03734778,98.39320674],[4.53670643,0.03734953,98.39244614],[4.53670688,0.03735127,98.39168678],[4.53670734,0.03735302,98.39092861],[4.53670779,0.03735476,98.39017159],[4.53670824,0.03735651,98.38941567],[4.5367087,0.03735825,98.3886608],[4.53670915,0.03736,98.38790692],[4.53670961,0.03736174,98.38715401],[4.53671006,0.03736349,98.386402],[4.53671052,0.03736523,98.38565084],[4.53671097,0.03736698,98.38490049],[4.53671143,0.03736872,98.38415091],[4.53671188,0.03737046,98.38340203],[4.53671234,0.03737221,98.38265382],[4.53671279,0.03737395,98.38190623],[4.53671325,0.0373757,98.38115919],[4.53671371,0.03737744,98.38041268],[4.53671416,0.03737919,98.37966663],[4.53671462,0.03738093,98.37892101],[4.53671507,0.03738267,98.37817575],[4.53671553,0.03738442,98.37743081],[4.53671598,0.03738616,98.37668615],[4.53671644,0.03738791,98.37594171],[4.53671689,0.03738965,98.37519749],[4.53671735,0.03739139,98.37445354],[4.5367178,0.03739314,98.37370988],[4.53671826,0.03739488,98.37296658],[4.53671871,0.03739663,98.37222367],[4.53671917,0.03739837,98.3714812],[4.53671962,0.03740012,98.37073922],[4.53672008,0.03740186,98.36999777],[4.53672053,0.03740361,98.3692569],[4.53672098,0.03740535,98.36851665],[4.53672144,0.0374071,98.36777708],[4.53672189,0.03740884,98.36703821],[4.53672235,0.03741058,98.36630011],[4.5367228,0.03741233,98.36556281],[4.53672325,0.03741407,98.36482637],[4.53672371,0.03741582,98.36409083],[4.53672416,0.03741756,98.36335623],[4.53672461,0.03741931,98.36262262],[4.53672506,0.03742105,98.36189005],[4.53672552,0.0374228,98.36115856],[4.53672597,0.03742454,98.36042819],[4.53672642,0.03742629,98.35969901],[4.53672688,0.03742803,98.35897104],[4.53672733,0.03742978,98.35824434],[4.53672778,0.03743152,98.35751895],[4.53672823,0.03743327,98.35679491],[4.53672869,0.03743501,98.35607228],[4.53672914,0.03743676,98.3553511],[4.53672959,0.0374385,98.35463142],[4.53673005,0.03744025,98.35391328],[4.5367305,0.03744199,98.35319672],[4.53673095,0.03744374,98.35248179],[4.53673141,0.03744548,98.35176855],[4.53673186,0.03744723,98.35105702],[4.53673231,0.03744897,98.35034727],[4.53673277,0.03745072,98.34963933],[4.53673322,0.03745246,98.34893325],[4.53673367,0.0374542,98.34822908],[4.53673413,0.03745595,98.34752686],[4.53673458,0.03745769,98.34682663],[4.53673504,0.03745944,98.34612845],[4.53673549,0.03746118,98.34543236],[4.53673595,0.03746293,98.34473839],[4.5367364,0.03746467,98.34404661],[4.53673686,0.03746641,98.34335705],[4.53673731,0.03746816,98.34266976],[4.53673777,0.0374699,98.34198477],[4.53673822,0.03747165,98.34130215],[4.53673868,0.03747339,98.34062193],[4.53673914,0.03747514,98.33994416],[4.53673959,0.03747688,98.33926888],[4.53674005,0.03747862,98.33859614],[4.53674051,0.03748037,98.33792598],[4.53674097,0.03748211,98.33725842],[4.53674142,0.03748385,98.33659335],[4.53674188,0.0374856,98.33593066],[4.53674234,0.03748734,98.33527022],[4.5367428,0.03748908,98.33461189],[4.53674326,0.03749083,98.33395555],[4.53674372,0.03749257,98.33330107],[4.53674418,0.03749431,98.33264833],[4.53674464,0.03749606,98.33199719],[4.5367451,0.0374978,98.33134754],[4.53674556,0.03749954,98.33069924],[4.53674601,0.03750129,98.33005216],[4.53674647,0.03750303,98.32940619],[4.53674693,0.03750477,98.32876119],[4.53674739,0.03750652,98.32811703],[4.53674785,0.03750826,98.3274736],[4.53674831,0.03751,98.32683076],[4.53674877,0.03751175,98.32618839],[4.53674922,0.03751349,98.32554637],[4.53674968,0.03751523,98.32490456],[4.53675014,0.03751698,98.32426284],[4.5367506,0.03751872,98.32362109],[4.53675105,0.03752046,98.32297919],[4.53675151,0.03752221,98.322337],[4.53675196,0.03752395,98.3216944],[4.53675242,0.0375257,98.32105127],[4.53675287,0.03752744,98.32040748],[4.53675333,0.03752919,98.31976291],[4.53675378,0.03753093,98.31911744],[4.53675423,0.03753268,98.31847094],[4.53675468,0.03753442,98.31782329],[4.53675514,0.03753617,98.31717436],[4.53675559,0.03753791,98.31652404],[4.53675604,0.03753966,98.31587219],[4.53675649,0.0375414,98.3152187],[4.53675694,0.03754315,98.31456344],[4.53675738,0.03754489,98.3139063],[4.53675783,0.03754664,98.31324715],[4.53675828,0.03754839,98.31258587],[4.53675873,0.03755013,98.31192253],[4.53675917,0.03755188,98.31125736],[4.53675962,0.03755362,98.31059062],[4.53676007,0.03755537,98.30992253],[4.53676051,0.03755712,98.30925336],[4.53676096,0.03755886,98.30858334],[4.53676141,0.03756061,98.30791271],[4.53676185,0.03756236,98.30724172],[4.5367623,0.0375641,98.30657062],[4.53676275,0.03756585,98.30589964],[4.5367632,0.03756759,98.30522902],[4.53676364,0.03756934,98.30455901],[4.53676409,0.03757109,98.30388986],[4.53676454,0.03757283,98.30322179],[4.53676499,0.03757458,98.30255506],[4.53676544,0.03757632,98.3018899],[4.53676589,0.03757807,98.30122655],[4.53676635,0.03757981,98.30056525],[4.5367668,0.03758156,98.29990624],[4.53676725,0.0375833,98.29924977],[4.53676771,0.03758505,98.29859606],[4.53676816,0.03758679,98.29794535],[4.53676862,0.03758853,98.29729787],[4.53676908,0.03759028,98.29665386],[4.53676954,0.03759202,98.29601355],[4.53677,0.03759376,98.29537718],[4.53677046,0.03759551,98.29474496],[4.53677092,0.03759725,98.29411715],[4.53677139,0.03759899,98.29349396],[4.53677185,0.03760073,98.29287562],[4.53677231,0.03760247,98.29226238],[4.53677278,0.03760421,98.29165445],[4.53677324,0.03760596,98.29105207],[4.5367737,0.0376077,98.29045547],[4.53677416,0.03760944,98.28986488],[4.53677461,0.03761118,98.28928052],[4.53677507,0.03761293,98.2887026],[4.53677552,0.03761467,98.2881309],[4.53677596,0.03761642,98.28756476],[4.53677641,0.03761817,98.2870035],[4.53677685,0.03761991,98.28644643],[4.53677729,0.03762166,98.28589288],[4.53677774,0.03762341,98.28534217],[4.53677818,0.03762515,98.28479363],[4.53677862,0.0376269,98.28424659],[4.53677906,0.03762865,98.28370072],[4.5367795,0.03763039,98.28315602],[4.53677994,0.03763214,98.28261249],[4.53678038,0.03763389,98.28207016],[4.53678082,0.03763563,98.28152902],[4.53678126,0.03763738,98.28098908],[4.53678171,0.03763913,98.28045037],[4.53678215,0.03764087,98.27991289],[4.53678259,0.03764262,98.27937665],[4.53678303,0.03764436,98.27884165],[4.53678348,0.03764611,98.27830792],[4.53678392,0.03764785,98.27777546],[4.53678436,0.0376496,98.27724428],[4.53678481,0.03765135,98.27671439],[4.53678525,0.03765309,98.2761858],[4.53678569,0.03765484,98.27565853],[4.53678614,0.03765658,98.27513258],[4.53678658,0.03765833,98.27460796],[4.53678702,0.03766007,98.27408469],[4.53678746,0.03766182,98.27356277],[4.53678791,0.03766357,98.27304222],[4.53678835,0.03766531,98.27252304],[4.53678879,0.03766706,98.27200524],[4.53678923,0.0376688,98.27148884],[4.53678968,0.03767055,98.27097385],[4.53679012,0.03767229,98.27046027],[4.53679056,0.03767404,98.26994812],[4.536791,0.03767578,98.26943741],[4.53679144,0.03767753,98.26892814],[4.53679188,0.03767928,98.26842033],[4.53679232,0.03768102,98.26791398],[4.53679276,0.03768277,98.26740912],[4.53679321,0.03768451,98.26690574],[4.53679365,0.03768626,98.26640386],[4.53679409,0.037688,98.26590349],[4.53679453,0.03768975,98.26540463],[4.53679497,0.03769149,98.26490731],[4.53679541,0.03769324,98.26441152],[4.53679585,0.03769498,98.26391728],[4.53679629,0.03769673,98.2634246],[4.53679673,0.03769847,98.26293349],[4.53679717,0.03770022,98.26244396],[4.53679761,0.03770196,98.26195602],[4.53679805,0.03770371,98.26146967],[4.53679849,0.03770546,98.26098497],[4.53679893,0.0377072,98.26050199],[4.53679937,0.03770894,98.2600208],[4.53679982,0.03771069,98.25954148],[4.53680026,0.03771243,98.2590641],[4.5368007,0.03771418,98.25858874],[4.53680114,0.03771592,98.25811547],[4.53680158,0.03771767,98.25764436],[4.53680202,0.03771941,98.2571755],[4.53680246,0.03772116,98.25670896],[4.5368029,0.0377229,98.2562448],[4.53680335,0.03772465,98.25578311],[4.53680379,0.03772639,98.25532396],[4.53680423,0.03772813,98.25486742],[4.53680467,0.03772988,98.25441357],[4.53680511,0.03773162,98.25396249],[4.53680556,0.03773337,98.25351423],[4.536806,0.03773511,98.25306889],[4.53680644,0.03773685,98.25262647],[4.53680689,0.0377386,98.25218695],[4.53680733,0.03774034,98.2517503],[4.53680777,0.03774208,98.25131647],[4.53680822,0.03774383,98.25088545],[4.53680866,0.03774557,98.25045719],[4.5368091,0.03774731,98.25003167],[4.53680955,0.03774906,98.24960885],[4.53680999,0.0377508,98.2491887],[4.53681043,0.03775254,98.24877118],[4.53681088,0.03775429,98.24835627],[4.53681132,0.03775603,98.24794393],[4.53681176,0.03775777,98.24753413],[4.53681221,0.03775952,98.24712684],[4.53681265,0.03776126,98.24672203],[4.53681309,0.037763,98.24631966],[4.53681354,0.03776475,98.2459197],[4.53681398,0.03776649,98.24552212],[4.53681443,0.03776823,98.24512688],[4.53681487,0.03776997,98.24473397],[4.53681531,0.03777172,98.24434333],[4.53681576,0.03777346,98.24395495],[4.5368162,0.0377752,98.24356879],[4.53681664,0.03777694,98.24318482],[4.53681709,0.03777869,98.24280302],[4.53681753,0.03778043,98.24242337],[4.53681797,0.03778217,98.24204587],[4.53681842,0.03778391,98.24167049],[4.53681886,0.03778566,98.24129722],[4.5368193,0.0377874,98.24092603],[4.53681974,0.03778914,98.24055693],[4.53682019,0.03779088,98.24018988],[4.53682063,0.03779263,98.23982487],[4.53682107,0.03779437,98.23946189],[4.53682152,0.03779611,98.23910092],[4.53682196,0.03779785,98.23874195],[4.5368224,0.0377996,98.23838495],[4.53682284,0.03780134,98.23802991],[4.53682329,0.03780308,98.23767682],[4.53682373,0.03780482,98.23732565],[4.53682417,0.03780657,98.2369764],[4.53682461,0.03780831,98.23662905],[4.53682505,0.03781005,98.23628357],[4.5368255,0.03781179,98.23593996],[4.53682594,0.03781354,98.2355982],[4.53682638,0.03781528,98.23525826],[4.53682682,0.03781702,98.23492015],[4.53682726,0.03781876,98.23458383],[4.5368277,0.0378205,98.23424929],[4.53682815,0.03782225,98.23391652],[4.53682859,0.03782399,98.23358549],[4.53682903,0.03782573,98.2332562],[4.53682947,0.03782747,98.23292863],[4.53682991,0.03782922,98.23260276],[4.53683035,0.03783096,98.23227857],[4.53683079,0.0378327,98.23195604],[4.53683124,0.03783444,98.23163517],[4.53683168,0.03783618,98.23131593],[4.53683212,0.03783793,98.2309983],[4.53683256,0.03783967,98.23068228],[4.536833,0.03784141,98.23036783],[4.53683344,0.03784315,98.23005495],[4.53683388,0.03784489,98.22974359],[4.53683432,0.03784664,98.2294337],[4.53683476,0.03784838,98.22912523],[4.53683521,0.03785012,98.22881814],[4.53683565,0.03785186,98.22851237],[4.53683608,0.03785356,98.22820785],[4.53683652,0.0378553,98.22790451],[4.53683696,0.03785704,98.22760229],[4.5368374,0.03785879,98.22730113],[4.53683784,0.03786053,98.22700095],[4.53683828,0.03786227,98.22670169],[4.53683872,0.03786402,98.22640329],[4.53683917,0.03786576,98.22610567],[4.53683961,0.0378675,98.22580878],[4.53684005,0.03786924,98.22551253],[4.53684049,0.03787099,98.22521687],[4.53684093,0.03787273,98.22492173],[4.53684137,0.03787447,98.22462704],[4.5368418,0.03787622,98.22433273],[4.53684224,0.03787796,98.22403873],[4.53684268,0.03787971,98.22374499],[4.53684311,0.03788145,98.22345141],[4.53684355,0.03788319,98.22315799],[4.53684398,0.03788494,98.22286561],[4.53684442,0.03788668,98.22257609],[4.53684485,0.03788843,98.2222913],[4.53684528,0.03789017,98.22201311],[4.53684572,0.03789192,98.22174338],[4.53684616,0.03789366,98.22148399],[4.5368466,0.0378954,98.22123681],[4.53684705,0.03789714,98.22100367],[4.5368475,0.03789888,98.22078485],[4.53684795,0.03790062,98.22057912],[4.5368484,0.03790236,98.22038517],[4.53684886,0.0379041,98.2202017],[4.53684932,0.03790584,98.22002741],[4.53684977,0.03790758,98.21986097],[4.53685023,0.03790932,98.21970108],[4.53685069,0.03791105,98.21954643],[4.53685115,0.03791279,98.21939569],[4.53685161,0.03791453,98.21924756],[4.53685207,0.03791627,98.2191007],[4.53685252,0.037918,98.21895383],[4.53685298,0.03791974,98.21880637],[4.53685343,0.03792148,98.21865845],[4.53685388,0.03792322,98.21851027],[4.53685433,0.03792496,98.21836198],[4.53685478,0.0379267,98.21821377],[4.53685523,0.03792844,98.21806581],[4.53685568,0.03793019,98.21791828],[4.53685612,0.03793193,98.21777135],[4.53685657,0.03793367,98.2176252],[4.53685701,0.03793541,98.21748001],[4.53685746,0.03793715,98.21733596],[4.5368579,0.0379389,98.21719319],[4.53685834,0.03794064,98.21705187],[4.53685878,0.03794238,98.21691215],[4.53685923,0.03794412,98.21677417],[4.53685967,0.03794586,98.2166381],[4.53686011,0.03794761,98.21650407],[4.53686055,0.03794935,98.21637225],[4.536861,0.03795109,98.21624275],[4.53686144,0.03795283,98.21611554],[4.53686188,0.03795458,98.21599053],[4.53686232,0.03795632,98.21586765],[4.53686277,0.03795806,98.21574683],[4.53686321,0.0379598,98.21562798],[4.53686366,0.03796155,98.21551104],[4.5368641,0.03796329,98.21539592],[4.53686454,0.03796503,98.21528254],[4.53686499,0.03796677,98.21517083],[4.53686544,0.03796851,98.21506072],[4.53686588,0.03797025,98.21495211],[4.53686633,0.037972,98.21484495],[4.53686678,0.03797374,98.21473913],[4.53686722,0.03797548,98.2146346],[4.53686767,0.03797722,98.21453126],[4.53686812,0.03797896,98.21442904],[4.53686857,0.0379807,98.21432786],[4.53686902,0.03798244,98.21422764],[4.53686947,0.03798418,98.21412831],[4.53686991,0.03798592,98.21402977],[4.53687036,0.03798766,98.21393195],[4.53687081,0.0379894,98.21383477],[4.53687126,0.03799115,98.21373815],[4.53687171,0.03799289,98.21364201],[4.53687216,0.03799463,98.21354626],[4.53687261,0.03799637,98.21345082],[4.53687306,0.03799811,98.21335562],[4.53687351,0.03799985,98.21326056],[4.53687396,0.03800159,98.21316558],[4.53687441,0.03800333,98.21307057],[4.53687486,0.03800507,98.21297547],[4.5368753,0.03800681,98.21288019],[4.53687575,0.03800855,98.21278483],[4.5368762,0.0380103,98.21268967],[4.53687665,0.03801204,98.21259499],[4.53687709,0.03801378,98.21250108],[4.53687754,0.03801552,98.21240824],[4.53687799,0.03801726,98.21231674],[4.53687844,0.038019,98.2122269],[4.53687888,0.03802074,98.21213899],[4.53687933,0.03802249,98.21205332],[4.53687978,0.03802423,98.21197019],[4.53688023,0.03802597,98.21188989],[4.53688068,0.03802771,98.21181272],[4.53688113,0.03802945,98.21173899],[4.53688158,0.03803119,98.211669],[4.53688203,0.03803293,98.21160305],[4.53688248,0.03803467,98.21154144],[4.53688294,0.03803641,98.21148449],[4.53688339,0.03803815,98.21143251],[4.53688385,0.03803989,98.21138579],[4.5368843,0.03804163,98.21134465],[4.53688476,0.03804337,98.21130902],[4.53688522,0.03804511,98.21127849],[4.53688568,0.03804684,98.21125265],[4.53688614,0.03804858,98.21123106],[4.5368866,0.03805032,98.21121329],[4.53688706,0.03805206,98.21119892],[4.53688753,0.03805379,98.2111875],[4.53688799,0.03805553,98.21117861],[4.53688845,0.03805727,98.21117181],[4.53688892,0.03805901,98.21116666],[4.53688938,0.03806074,98.21116271],[4.53688984,0.03806248,98.21115953],[4.53689031,0.03806422,98.21115668],[4.53689077,0.03806595,98.2111537],[4.53689123,0.03806769,98.21115015],[4.5368917,0.03806943,98.21114558],[4.53689216,0.03807117,98.21113954],[4.53689262,0.0380729,98.21113158],[4.53689308,0.03807464,98.21112123],[4.53689354,0.03807638,98.21110804],[4.53689401,0.03807812,98.21109156],[4.53689447,0.03807986,98.21107134],[4.53689493,0.03808159,98.21104756],[4.53689538,0.03808333,98.21102101],[4.53689584,0.03808507,98.2109925],[4.5368963,0.03808681,98.21096286],[4.53689676,0.03808855,98.21093291],[4.53689722,0.03809029,98.21090348],[4.53689768,0.03809203,98.21087541],[4.53689814,0.03809376,98.21084954],[4.5368986,0.0380955,98.2108267],[4.53689906,0.03809724,98.21080775],[4.53689952,0.03809898,98.21079353],[4.53689998,0.03810072,98.2107849],[4.53690044,0.03810246,98.21078271],[4.5369009,0.0381042,98.21078783],[4.53690136,0.03810593,98.21080112],[4.53690183,0.03810767,98.21082346],[4.53690229,0.0381094,98.21085568],[4.53690275,0.03811113,98.21089791],[4.53690322,0.03811287,98.21094955],[4.53690368,0.03811461,98.21100995],[4.53690415,0.03811635,98.21107849],[4.53690461,0.03811808,98.21115452],[4.53690507,0.03811982,98.21123739],[4.53690554,0.03812156,98.21132647],[4.536906,0.0381233,98.21142108],[4.53690646,0.03812504,98.2115206],[4.53690693,0.03812678,98.21162435],[4.53690739,0.03812852,98.21173168],[4.53690785,0.03813026,98.21184192],[4.53690831,0.03813199,98.21195441],[4.53690878,0.03813373,98.21206849],[4.53690924,0.03813547,98.21218347],[4.5369097,0.03813721,98.21229869],[4.53691017,0.03813895,98.21241347],[4.53691063,0.03814069,98.21252713],[4.53691109,0.03814243,98.21263898],[4.53691155,0.03814417,98.21274846],[4.53691202,0.03814591,98.21285553],[4.53691248,0.03814765,98.21296025],[4.53691294,0.03814939,98.21306269],[4.53691341,0.03815113,98.21316293],[4.53691387,0.03815287,98.21326103],[4.53691433,0.03815461,98.21335708],[4.53691479,0.03815635,98.21345114],[4.53691526,0.03815809,98.21354328],[4.53691572,0.03815983,98.2136336],[4.53691618,0.03816157,98.21372215],[4.53691665,0.03816331,98.21380901],[4.53691711,0.03816505,98.21389426],[4.53691757,0.03816679,98.21397798],[4.53691803,0.03816853,98.21406025],[4.5369185,0.03817027,98.21414113],[4.53691896,0.03817201,98.21422071],[4.53691942,0.03817375,98.21429907],[4.53691989,0.03817549,98.21437628],[4.53692035,0.03817723,98.21445243],[4.53692081,0.03817897,98.21452759],[4.53692128,0.03818071,98.21460184],[4.53692174,0.03818245,98.21467527],[4.5369222,0.0381842,98.21474795],[4.53692266,0.03818594,98.21481997],[4.53692313,0.03818768,98.21489141],[4.53692359,0.03818942,98.21496235],[4.53692405,0.03819116,98.21503287],[4.53692452,0.0381929,98.21510306],[4.53692498,0.03819464,98.215173],[4.53692544,0.03819638,98.21524278],[4.5369259,0.03819812,98.21531247],[4.53681074,0.03823478,97.98609238]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":1,"type":"shoulder","predecessorId":1},{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":2,"type":"none","predecessorId":2}],"roadId":"1000400","singleSide":false,"rightLanes":[{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":-4,"type":"none","predecessorId":-4},{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-3,"type":"shoulder","predecessorId":-3},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-2},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.53274319,0.02360983,94.66552576],[4.53274263,0.02360812,94.66462634],[4.53274206,0.02360641,94.66376111],[4.53274149,0.0236047,94.6629287],[4.53274093,0.02360299,94.66212772],[4.53274036,0.02360128,94.66135681],[4.5327398,0.02359957,94.66061459],[4.53273923,0.02359786,94.65989968],[4.53273866,0.02359615,94.65921071],[4.5327381,0.02359444,94.6585463],[4.53273753,0.02359273,94.65790507],[4.53273696,0.02359102,94.65728564],[4.5327364,0.02358931,94.65668665],[4.53273583,0.0235876,94.65610671],[4.53273526,0.02358589,94.65554444],[4.53273469,0.02358418,94.65499848],[4.53273413,0.02358247,94.65446744],[4.53273356,0.02358076,94.65394995],[4.53273299,0.02357905,94.65344464],[4.53273243,0.02357734,94.65295012],[4.53273186,0.02357563,94.65246502],[4.53273129,0.02357392,94.65198796],[4.53273072,0.02357221,94.65151757],[4.53273016,0.02357049,94.65105247],[4.53272959,0.02356878,94.65059128],[4.53272902,0.02356707,94.65013263],[4.53272846,0.02356536,94.64967502],[4.53272789,0.02356365,94.64921649],[4.53272732,0.02356194,94.64875495],[4.53272675,0.02356023,94.64828831],[4.53272619,0.02355852,94.64781448],[4.53272562,0.02355681,94.64733138],[4.53272505,0.0235551,94.64683692],[4.53272448,0.02355339,94.64632901],[4.53272392,0.02355167,94.64580557],[4.53272335,0.02354996,94.64526451],[4.53272278,0.02354825,94.64470375],[4.53272221,0.02354654,94.64412119],[4.53272165,0.02354483,94.64351475],[4.53272108,0.02354312,94.64288235],[4.53272051,0.02354141,94.64222189],[4.53271994,0.0235397,94.64153129],[4.53271938,0.02353798,94.64080846],[4.53271881,0.02353627,94.64005132],[4.53271824,0.02353456,94.63925777],[4.53271767,0.02353285,94.63842574],[4.53271711,0.02353114,94.63755314],[4.53271654,0.02352942,94.63663787],[4.53271597,0.02352771,94.63567786],[4.53271541,0.023526,94.63467101],[4.53271484,0.02352429,94.63361523],[4.53271484,0.02352429,94.63361523],[4.53279263,0.02349807,94.83073834],[4.53279263,0.02349807,94.83073834],[4.5327932,0.02349978,94.83150156],[4.53279376,0.02350149,94.83221583],[4.53279433,0.0235032,94.83288326],[4.5327949,0.02350491,94.83350592],[4.53279546,0.02350662,94.8340859],[4.53279603,0.02350834,94.8346253],[4.5327966,0.02351005,94.83512619],[4.53279716,0.02351176,94.83559066],[4.53279773,0.02351347,94.83602081],[4.53279829,0.02351518,94.83641871],[4.53279886,0.02351689,94.83678646],[4.53279943,0.0235186,94.83712614],[4.53279999,0.02352031,94.83743983],[4.53280056,0.02352202,94.83772963],[4.53280113,0.02352374,94.83799762],[4.53280169,0.02352545,94.83824589],[4.53280226,0.02352716,94.83847652],[4.53280283,0.02352887,94.83869161],[4.53280339,0.02353058,94.83889323],[4.53280396,0.02353229,94.83908348],[4.53280453,0.023534,94.83926444],[4.53280509,0.02353572,94.8394382],[4.53280566,0.02353743,94.83960685],[4.53280623,0.02353914,94.83977247],[4.53280679,0.02354085,94.83993714],[4.53280736,0.02354256,94.84010285],[4.53280793,0.02354427,94.84027108],[4.53280849,0.02354599,94.8404432],[4.53280906,0.0235477,94.8406206],[4.53280963,0.02354941,94.84080466],[4.53281019,0.02355112,94.84099674],[4.53281076,0.02355283,94.84119822],[4.53281132,0.02355454,94.84141049],[4.53281189,0.02355626,94.84163491],[4.53281246,0.02355797,94.84187286],[4.53281302,0.02355968,94.84212573],[4.53281359,0.02356139,94.84239488],[4.53281416,0.0235631,94.84268169],[4.53281472,0.02356481,94.84298754],[4.53281529,0.02356653,94.84331381],[4.53281586,0.02356824,94.84366186],[4.53281642,0.02356995,94.84403309],[4.53281699,0.02357166,94.84442885],[4.53281756,0.02357338,94.84485054],[4.53281812,0.02357509,94.84529953],[4.53281869,0.0235768,94.84577718],[4.53281926,0.02357851,94.84628489],[4.53281982,0.02358023,94.84682402],[4.53282039,0.02358194,94.84739595],[4.53282095,0.02358365,94.84800206],[4.53274319,0.02360983,94.66552576]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":1,"type":"shoulder","predecessorId":1},{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":2,"type":"none","predecessorId":2}],"roadId":"3000430","singleSide":false,"rightLanes":[{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.5341558,0.02832429,96.56789043],[4.53415534,0.02832256,96.56735559],[4.53415488,0.02832083,96.56680275],[4.53415441,0.0283191,96.56623297],[4.53415395,0.02831737,96.5656473],[4.53415348,0.02831564,96.56504681],[4.53415301,0.02831391,96.56443255],[4.53415255,0.02831217,96.56380558],[4.53415208,0.02831044,96.56316695],[4.53415161,0.0283087,96.56251772],[4.53415114,0.02830696,96.56185896],[4.53415068,0.02830523,96.56119172],[4.53415021,0.02830349,96.56051706],[4.53414974,0.02830175,96.55983603],[4.53414927,0.02830001,96.5591497],[4.5341488,0.02829827,96.55845911],[4.53414833,0.02829653,96.55776534],[4.53414786,0.02829479,96.55706944],[4.53414739,0.02829305,96.55637245],[4.53414692,0.02829131,96.55567544],[4.53414645,0.02828957,96.55497939],[4.53414598,0.02828783,96.55428527],[4.53414551,0.02828609,96.55359407],[4.53414504,0.02828435,96.55290676],[4.53414457,0.02828261,96.55222433],[4.5341441,0.02828087,96.55154775],[4.53414363,0.02827913,96.55087801],[4.53414316,0.02827738,96.55021607],[4.53414269,0.02827564,96.54956292],[4.53414222,0.0282739,96.54891954],[4.53414174,0.02827215,96.54828691],[4.53414127,0.02827041,96.547666],[4.5341408,0.02826867,96.5470578],[4.53414033,0.02826692,96.54646328],[4.53413986,0.02826518,96.54588342],[4.53413939,0.02826343,96.54531921],[4.53413895,0.02826181,96.54481181],[4.53421896,0.02823699,96.65765505],[4.53421944,0.02823858,96.658586],[4.53421997,0.02824031,96.65960868],[4.53422049,0.02824203,96.66064783],[4.53422101,0.02824376,96.66170247],[4.53422153,0.02824548,96.66277164],[4.53422205,0.02824721,96.66385434],[4.53422257,0.02824893,96.66494961],[4.5342231,0.02825066,96.66605645],[4.53422362,0.02825238,96.6671739],[4.53422414,0.02825411,96.66830098],[4.53422466,0.02825584,96.6694367],[4.53422519,0.02825756,96.67058009],[4.53422571,0.02825929,96.67173016],[4.53422623,0.02826101,96.67288595],[4.53422675,0.02826274,96.67404646],[4.53422727,0.02826446,96.67521073],[4.5342278,0.02826619,96.67637776],[4.53422832,0.02826792,96.6775466],[4.53422884,0.02826964,96.67871623],[4.53422936,0.02827137,96.67988563],[4.53422989,0.0282731,96.68105373],[4.53423041,0.02827482,96.68221947],[4.53423093,0.02827655,96.6833818],[4.53423145,0.02827828,96.68453965],[4.53423197,0.02828,96.68569198],[4.5342325,0.02828173,96.68683772],[4.53423302,0.02828346,96.68797582],[4.53423354,0.02828518,96.68910521],[4.53423406,0.02828691,96.69022485],[4.53423458,0.02828864,96.69133366],[4.5342351,0.02829037,96.6924306],[4.53423562,0.0282921,96.6935146],[4.53423615,0.02829383,96.69458461],[4.53423667,0.02829556,96.69563957],[4.53423719,0.02829729,96.69667843],[4.53423771,0.02829902,96.69770012],[4.5341558,0.02832429,96.56789043]]],"type":"Polygon"},"type":"feature","properties":{"roadId":"3000480","singleSide":false,"rightLanes":[{"successorId":-5,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":-3,"type":"none","predecessorId":-3},{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"type":"shoulder","predecessorId":-2},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"entry","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.53706545,0.03866439,98.15405543],[4.53706496,0.03866265,98.15443558],[4.53706447,0.03866092,98.1548162],[4.53706398,0.03865918,98.15519727],[4.53706349,0.03865744,98.15557875],[4.537063,0.03865571,98.15596062],[4.53706251,0.03865397,98.15634286],[4.53706203,0.03865223,98.15672544],[4.53706154,0.03865049,98.15710833],[4.53706105,0.03864876,98.15749151],[4.53706056,0.03864702,98.15787495],[4.53706008,0.03864528,98.15825862],[4.53705959,0.03864355,98.15864251],[4.5370591,0.03864181,98.15902659],[4.53705862,0.03864007,98.15941083],[4.53705813,0.03863833,98.15979521],[4.53705765,0.0386366,98.16017971],[4.53705716,0.03863486,98.16056429],[4.53705668,0.03863312,98.16094894],[4.53705619,0.03863138,98.16133364],[4.53705571,0.03862965,98.16171835],[4.53705522,0.03862791,98.16210306],[4.53705474,0.03862617,98.16248774],[4.53705425,0.03862443,98.16287237],[4.53705377,0.0386227,98.16325692],[4.53705328,0.03862096,98.16364138],[4.5370528,0.03861922,98.16402572],[4.53705232,0.03861748,98.16440992],[4.53705183,0.03861574,98.16479395],[4.53705135,0.03861401,98.1651778],[4.53705086,0.03861227,98.16556144],[4.53705038,0.03861053,98.16594485],[4.5370499,0.03860879,98.166328],[4.53704941,0.03860706,98.16671089],[4.53704893,0.03860532,98.16709347],[4.53704845,0.03860358,98.16747574],[4.53704796,0.03860184,98.16785767],[4.53704748,0.0386001,98.16823924],[4.537047,0.03859837,98.16862042],[4.53704651,0.03859663,98.16900121],[4.53704603,0.03859489,98.16938157],[4.53704555,0.03859315,98.16976148],[4.53704506,0.03859141,98.17014093],[4.53704458,0.03858968,98.1705199],[4.5370441,0.03858794,98.17089835],[4.53704361,0.0385862,98.17127628],[4.53704313,0.03858446,98.17165366],[4.53704265,0.03858272,98.17203047],[4.53704216,0.03858099,98.1724067],[4.53704168,0.03857925,98.17278231],[4.53704119,0.03857751,98.17315729],[4.53704071,0.03857577,98.17353162],[4.53704023,0.03857404,98.17390528],[4.53703974,0.0385723,98.17427826],[4.53703926,0.03857056,98.17465052],[4.53703877,0.03856882,98.17502205],[4.53703829,0.03856708,98.17539283],[4.53703781,0.03856535,98.17576284],[4.53703732,0.03856361,98.17613206],[4.53703684,0.03856187,98.17650048],[4.53703635,0.03856013,98.17686806],[4.53703587,0.0385584,98.17723479],[4.53703538,0.03855666,98.1776007],[4.53703489,0.03855492,98.17796584],[4.53703441,0.03855318,98.17833022],[4.53703392,0.03855145,98.17869387],[4.53703344,0.03854971,98.1790568],[4.53703295,0.03854797,98.17941904],[4.53703247,0.03854624,98.1797806],[4.53703198,0.0385445,98.18014149],[4.53703149,0.03854276,98.18050174],[4.53703101,0.03854102,98.18086137],[4.53703052,0.03853929,98.18122039],[4.53703003,0.03853755,98.18157882],[4.53702955,0.03853581,98.18193668],[4.53702906,0.03853408,98.18229398],[4.53702857,0.03853234,98.18265076],[4.53702809,0.0385306,98.18300701],[4.5370276,0.03852886,98.18336277],[4.53702711,0.03852713,98.18371804],[4.53702662,0.03852539,98.18407286],[4.53702614,0.03852365,98.18442723],[4.53702565,0.03852192,98.18478118],[4.53702516,0.03852018,98.18513472],[4.53702468,0.03851844,98.18548788],[4.53702419,0.03851671,98.18584066],[4.5370237,0.03851497,98.1861931],[4.53702321,0.03851323,98.1865452],[4.53702273,0.0385115,98.18689699],[4.53702224,0.03850976,98.18724849],[4.53702175,0.03850802,98.18759972],[4.53702126,0.03850629,98.18795069],[4.53702078,0.03850455,98.18830142],[4.53702029,0.03850281,98.18865193],[4.5370198,0.03850107,98.18900225],[4.53701931,0.03849934,98.18935238],[4.53701883,0.0384976,98.18970236],[4.53701834,0.03849586,98.1900522],[4.53701785,0.03849413,98.19040191],[4.53701737,0.03849239,98.19075153],[4.53701688,0.03849065,98.19110106],[4.53701639,0.03848892,98.19145053],[4.5370159,0.03848718,98.19179996],[4.53701542,0.03848544,98.19214936],[4.53701493,0.03848371,98.19249877],[4.53701444,0.03848197,98.19284819],[4.53701396,0.03848023,98.19319764],[4.53701347,0.03847849,98.19354716],[4.53701298,0.03847676,98.19389675],[4.5370125,0.03847502,98.19424644],[4.53701201,0.03847328,98.19459625],[4.53701152,0.03847155,98.1949462],[4.53701104,0.03846981,98.19529631],[4.53701055,0.03846807,98.19564659],[4.53701007,0.03846633,98.19599708],[4.53700958,0.0384646,98.19634779],[4.53700909,0.03846286,98.19669874],[4.53700861,0.03846112,98.19704996],[4.53700812,0.03845939,98.19740146],[4.53700764,0.03845765,98.19775326],[4.53700715,0.03845591,98.19810538],[4.53700667,0.03845417,98.19845779],[4.53700618,0.03845244,98.19881045],[4.5370057,0.0384507,98.1991633],[4.53700521,0.03844896,98.19951632],[4.53700473,0.03844722,98.19986947],[4.53700424,0.03844549,98.20022269],[4.53700376,0.03844375,98.20057596],[4.53700327,0.03844201,98.20092922],[4.53700279,0.03844027,98.20128244],[4.53700231,0.03843854,98.20163557],[4.53700182,0.0384368,98.2019886],[4.53700134,0.03843506,98.20234153],[4.53700085,0.03843332,98.2026944],[4.53700037,0.03843159,98.20304721],[4.53699988,0.03842985,98.20339999],[4.5369994,0.03842811,98.20375274],[4.53699891,0.03842637,98.20410549],[4.53699843,0.03842464,98.20445825],[4.53699794,0.0384229,98.20481104],[4.53699746,0.03842116,98.20516387],[4.53699697,0.03841942,98.20551677],[4.53699649,0.03841769,98.20586975],[4.536996,0.03841595,98.20622284],[4.53699552,0.03841421,98.20657606],[4.53699503,0.03841247,98.20692943],[4.53699455,0.03841074,98.20728297],[4.53699407,0.038409,98.20763671],[4.53699358,0.03840726,98.20799068],[4.5369931,0.03840552,98.20834489],[4.53699261,0.03840379,98.20869936],[4.53699213,0.03840205,98.20905413],[4.53699164,0.03840031,98.20940921],[4.53699116,0.03839857,98.20976463],[4.53699067,0.03839684,98.21012041],[4.53699019,0.0383951,98.21047657],[4.53698971,0.03839336,98.21083314],[4.53698922,0.03839162,98.21119014],[4.53698874,0.03838989,98.2115476],[4.53698826,0.03838815,98.21190554],[4.53698777,0.03838641,98.21226398],[4.53698729,0.03838467,98.21262295],[4.5369868,0.03838293,98.21298247],[4.53698632,0.0383812,98.21334256],[4.53698584,0.03837946,98.21370326],[4.53698536,0.03837772,98.21406458],[4.53698487,0.03837598,98.21442656],[4.53698439,0.03837425,98.2147892],[4.53698391,0.03837251,98.21515255],[4.53698342,0.03837077,98.21551662],[4.53698294,0.03836903,98.21588144],[4.53698246,0.03836729,98.21624703],[4.53698198,0.03836556,98.21661343],[4.5369815,0.03836382,98.21698064],[4.53698102,0.03836208,98.21734871],[4.53698053,0.03836034,98.21771765],[4.53698005,0.0383586,98.2180875],[4.53697957,0.03835686,98.21845827],[4.53697909,0.03835513,98.21882999],[4.53697861,0.03835339,98.21920269],[4.53697813,0.03835165,98.21957639],[4.53697765,0.03834991,98.21995113],[4.53697717,0.03834817,98.22032696],[4.53697669,0.03834643,98.2207039],[4.53697621,0.03834469,98.22108195],[4.53697573,0.03834296,98.22146109],[4.53697525,0.03834122,98.22184133],[4.53697477,0.03833948,98.22222265],[4.53697429,0.03833774,98.22260505],[4.53697382,0.038336,98.22298852],[4.53697334,0.03833426,98.22337305],[4.53697286,0.03833252,98.22375864],[4.53697238,0.03833078,98.22414527],[4.5369719,0.03832904,98.22453294],[4.53697143,0.03832731,98.22492165],[4.53697095,0.03832557,98.22531139],[4.53697047,0.03832383,98.22570214],[4.53696999,0.03832209,98.22609391],[4.53696952,0.03832035,98.22648668],[4.53696904,0.03831861,98.22688045],[4.53696856,0.03831687,98.22727522],[4.53696809,0.03831513,98.22767096],[4.53696761,0.03831339,98.22806768],[4.53696714,0.03831165,98.22846537],[4.53696666,0.03830991,98.22886403],[4.53696618,0.03830817,98.22926364],[4.53696571,0.03830643,98.22966419],[4.53696523,0.03830469,98.23006569],[4.53696476,0.03830295,98.23046812],[4.53696428,0.03830121,98.23087148],[4.5369638,0.03829947,98.23127576],[4.53696333,0.03829774,98.23168095],[4.53696285,0.038296,98.23208704],[4.53696238,0.03829426,98.23249404],[4.5369619,0.03829252,98.23290192],[4.53696143,0.03829078,98.23331069],[4.53696095,0.03828904,98.23372033],[4.53696048,0.0382873,98.23413085],[4.53696,0.03828556,98.23454222],[4.53695952,0.03828382,98.23495445],[4.53695905,0.03828208,98.23536753],[4.53695857,0.03828034,98.23578145],[4.5369581,0.0382786,98.2361962],[4.53695762,0.03827686,98.23661177],[4.53695715,0.03827512,98.23702817],[4.53695667,0.03827338,98.23744538],[4.5369562,0.03827164,98.23786339],[4.53695572,0.0382699,98.2382822],[4.53695525,0.03826816,98.2387018],[4.53695477,0.03826642,98.23912218],[4.5369543,0.03826468,98.23954333],[4.53695382,0.03826294,98.23996526],[4.53695334,0.0382612,98.24038795],[4.53695287,0.03825946,98.24081139],[4.53695239,0.03825772,98.24123557],[4.53695192,0.03825599,98.2416605],[4.53695144,0.03825425,98.24208615],[4.53695096,0.03825251,98.24251254],[4.53695049,0.03825077,98.24293964],[4.53695001,0.03824903,98.24336745],[4.53694953,0.03824729,98.24379596],[4.53694906,0.03824555,98.24422517],[4.53694858,0.03824381,98.24465506],[4.5369481,0.03824207,98.24508561],[4.53694763,0.03824033,98.2455168],[4.53694715,0.03823859,98.24594863],[4.53694667,0.03823685,98.24638108],[4.53694619,0.03823511,98.24681412],[4.53694572,0.03823337,98.24724774],[4.53694524,0.03823164,98.24768193],[4.53694439,0.03822999,98.246982],[4.53694338,0.03822838,98.24582159],[4.53694238,0.03822677,98.24466079],[4.53694138,0.03822516,98.24349962],[4.53694038,0.03822355,98.24233811],[4.53693937,0.03822194,98.24117629],[4.53693837,0.03822033,98.2400142],[4.53693737,0.03821872,98.23885187],[4.53693636,0.03821711,98.23768932],[4.53693536,0.0382155,98.23652659],[4.53693436,0.03821389,98.23536371],[4.53693336,0.03821228,98.23420073],[4.53693235,0.03821067,98.23303766],[4.53693135,0.03820906,98.23187454],[4.53693035,0.03820744,98.23071142],[4.53692935,0.03820583,98.22954832],[4.53692834,0.03820422,98.22838528],[4.53692734,0.03820261,98.22722234],[4.53692697,0.03820201,98.22678856],[4.53703275,0.03817608,98.50952094],[4.53703291,0.03817673,98.50925029],[4.53703333,0.03817848,98.50852539],[4.53703376,0.03818024,98.50780143],[4.53703418,0.03818199,98.50707838],[4.53703461,0.03818374,98.50635623],[4.53703504,0.03818549,98.50563496],[4.53703546,0.03818725,98.50491456],[4.53703589,0.038189,98.50419501],[4.53703631,0.03819075,98.50347628],[4.53703674,0.0381925,98.50275836],[4.53703717,0.03819425,98.50204124],[4.53703759,0.03819601,98.5013249],[4.53703802,0.03819776,98.50060932],[4.53703845,0.03819951,98.49989448],[4.53703887,0.03820126,98.49918036],[4.5370393,0.03820302,98.49846695],[4.53703972,0.03820477,98.49775423],[4.53704015,0.03820652,98.49704219],[4.53704058,0.03820827,98.4963308],[4.537041,0.03821003,98.49562005],[4.53704143,0.03821178,98.49490993],[4.53704185,0.03821353,98.49420041],[4.53704228,0.03821528,98.49349148],[4.53704271,0.03821704,98.49278312],[4.53704313,0.03821879,98.49207532],[4.53704356,0.03822054,98.49136805],[4.53704399,0.03822229,98.49066131],[4.53704441,0.03822405,98.48995508],[4.53704484,0.0382258,98.48924933],[4.53704527,0.03822755,98.48854405],[4.53704569,0.0382293,98.48783921],[4.53704612,0.03823106,98.48713478],[4.53704654,0.03823281,98.48643074],[4.53704697,0.03823456,98.48572707],[4.5370474,0.03823631,98.48502373],[4.53704782,0.03823807,98.48432071],[4.53704825,0.03823982,98.48361798],[4.53704868,0.03824157,98.48291551],[4.5370491,0.03824332,98.48221328],[4.53704953,0.03824508,98.48151127],[4.53704996,0.03824683,98.48080945],[4.53705038,0.03824858,98.4801078],[4.53705081,0.03825033,98.47940629],[4.53705123,0.03825209,98.4787049],[4.53705166,0.03825384,98.47800361],[4.53705209,0.03825559,98.47730238],[4.53705251,0.03825734,98.4766012],[4.53705294,0.03825909,98.47590005],[4.53705337,0.03826085,98.47519889],[4.53705379,0.0382626,98.47449771],[4.53705422,0.03826435,98.47379648],[4.53705464,0.0382661,98.47309518],[4.53705507,0.03826786,98.47239379],[4.53705549,0.03826961,98.47169228],[4.53705592,0.03827136,98.47099062],[4.53705635,0.03827311,98.47028881],[4.53705677,0.03827487,98.4695868],[4.5370572,0.03827662,98.46888459],[4.53705762,0.03827837,98.46818214],[4.53705805,0.03828013,98.46747944],[4.53705847,0.03828188,98.46677645],[4.5370589,0.03828363,98.4660732],[4.53705933,0.03828538,98.46536972],[4.53705975,0.03828714,98.46466604],[4.53706018,0.03828889,98.4639622],[4.5370606,0.03829064,98.46325824],[4.53706103,0.03829239,98.46255419],[4.53706145,0.03829415,98.4618501],[4.53706188,0.0382959,98.461146],[4.5370623,0.03829765,98.46044193],[4.53706273,0.0382994,98.45973792],[4.53706315,0.03830116,98.45903401],[4.53706358,0.03830291,98.45833024],[4.537064,0.03830466,98.45762665],[4.53706443,0.03830641,98.45692327],[4.53706486,0.03830817,98.45622014],[4.53706528,0.03830992,98.45551729],[4.53706571,0.03831167,98.45481476],[4.53706613,0.03831343,98.4541126],[4.53706656,0.03831518,98.45341082],[4.53706698,0.03831693,98.45270948],[4.53706741,0.03831868,98.4520086],[4.53706783,0.03832044,98.45130823],[4.53706826,0.03832219,98.45060839],[4.53706869,0.03832394,98.44990913],[4.53706911,0.03832569,98.44921047],[4.53706954,0.03832745,98.44851247],[4.53706996,0.0383292,98.44781514],[4.53707039,0.03833095,98.44711853],[4.53707081,0.0383327,98.44642268],[4.53707124,0.03833446,98.44572761],[4.53707167,0.03833621,98.44503336],[4.53707209,0.03833796,98.44433997],[4.53707252,0.03833971,98.44364748],[4.53707294,0.03834147,98.44295591],[4.53707337,0.03834322,98.44226531],[4.5370738,0.03834497,98.4415757],[4.53707422,0.03834672,98.44088713],[4.53707465,0.03834848,98.44019962],[4.53707507,0.03835023,98.43951322],[4.5370755,0.03835198,98.43882795],[4.53707592,0.03835373,98.43814386],[4.53707635,0.03835549,98.43746097],[4.53707678,0.03835724,98.43677932],[4.5370772,0.03835899,98.43609895],[4.53707763,0.03836074,98.43541988],[4.53707805,0.0383625,98.43474216],[4.53707848,0.03836425,98.43406581],[4.53707891,0.038366,98.43339088],[4.53707933,0.03836775,98.43271739],[4.53707976,0.03836951,98.43204538],[4.53708018,0.03837126,98.43137488],[4.53708061,0.03837301,98.43070592],[4.53708103,0.03837476,98.43003855],[4.53708146,0.03837652,98.42937279],[4.53708189,0.03837827,98.42870868],[4.53708231,0.03838002,98.42804625],[4.53708274,0.03838177,98.42738554],[4.53708316,0.03838353,98.42672657],[4.53708359,0.03838528,98.42606938],[4.53708402,0.03838703,98.42541401],[4.53708444,0.03838878,98.42476048],[4.53708487,0.03839054,98.42410884],[4.53708529,0.03839229,98.42345911],[4.53708572,0.03839404,98.42281133],[4.53708614,0.03839579,98.42216553],[4.53708657,0.03839755,98.42152174],[4.537087,0.0383993,98.42088],[4.53708742,0.03840105,98.42024034],[4.53708785,0.0384028,98.41960279],[4.53708827,0.03840456,98.41896741],[4.5370887,0.03840631,98.41833421],[4.53708913,0.03840806,98.41770318],[4.53708955,0.03840981,98.4170743],[4.53708998,0.03841157,98.41644756],[4.5370904,0.03841332,98.41582293],[4.53709083,0.03841507,98.41520038],[4.53709126,0.03841682,98.41457991],[4.53709168,0.03841858,98.41396148],[4.53709211,0.03842033,98.41334508],[4.53709253,0.03842208,98.41273069],[4.53709296,0.03842383,98.41211828],[4.53709338,0.03842559,98.41150784],[4.53709381,0.03842734,98.41089934],[4.53709424,0.03842909,98.41029276],[4.53709466,0.03843084,98.40968809],[4.53709509,0.0384326,98.40908531],[4.53709551,0.03843435,98.40848438],[4.53709594,0.0384361,98.4078853],[4.53709637,0.03843785,98.40728804],[4.53709679,0.03843961,98.40669258],[4.53709722,0.03844136,98.40609891],[4.53709764,0.03844311,98.405507],[4.53709807,0.03844486,98.40491683],[4.53709849,0.03844662,98.40432838],[4.53709892,0.03844837,98.40374164],[4.53709935,0.03845012,98.40315658],[4.53709977,0.03845187,98.40257318],[4.5371002,0.03845363,98.40199143],[4.53710062,0.03845538,98.4014113],[4.53710105,0.03845713,98.40083277],[4.53710147,0.03845888,98.40025583],[4.5371019,0.03846064,98.39968045],[4.53710233,0.03846239,98.39910662],[4.53710275,0.03846414,98.39853431],[4.53710318,0.03846589,98.39796351],[4.5371036,0.03846765,98.3973942],[4.53710403,0.0384694,98.39682635],[4.53710445,0.03847115,98.39625995],[4.53710488,0.0384729,98.39569498],[4.5371053,0.03847466,98.39513142],[4.53710573,0.03847641,98.39456925],[4.53710615,0.03847816,98.39400845],[4.53710658,0.03847992,98.393449],[4.537107,0.03848167,98.39289088],[4.53710743,0.03848342,98.39233408],[4.53710785,0.03848517,98.39177856],[4.53710828,0.03848693,98.39122432],[4.5371087,0.03848868,98.39067134],[4.53710913,0.03849043,98.39011959],[4.53710955,0.03849218,98.38956905],[4.53710998,0.03849394,98.38901972],[4.5371104,0.03849569,98.38847155],[4.53711083,0.03849744,98.38792455],[4.53711125,0.0384992,98.38737868],[4.53711168,0.03850095,98.38683394],[4.5371121,0.0385027,98.38629029],[4.53711252,0.03850445,98.38574772],[4.53711295,0.03850621,98.38520622],[4.53711337,0.03850796,98.38466575],[4.5371138,0.03850971,98.38412631],[4.53711422,0.03851147,98.38358786],[4.53711465,0.03851322,98.3830504],[4.53711507,0.03851497,98.38251391],[4.53711549,0.03851672,98.38197835],[4.53711592,0.03851848,98.38144372],[4.53711634,0.03852023,98.38090999],[4.53711676,0.03852198,98.38037715],[4.53711719,0.03852374,98.37984517],[4.53711761,0.03852549,98.37931403],[4.53711804,0.03852724,98.37878372],[4.53711846,0.038529,98.37825421],[4.53711888,0.03853075,98.37772548],[4.5371193,0.0385325,98.37719752],[4.53711973,0.03853426,98.3766703],[4.53712015,0.03853601,98.37614384],[4.53712057,0.03853776,98.37561818],[4.537121,0.03853951,98.37509335],[4.53712142,0.03854127,98.37456939],[4.53712184,0.03854302,98.37404636],[4.53712227,0.03854477,98.37352429],[4.53712269,0.03854653,98.37300323],[4.53712311,0.03854828,98.37248321],[4.53712353,0.03855003,98.37196427],[4.53712396,0.03855179,98.37144647],[4.53712438,0.03855354,98.37092983],[4.5371248,0.03855529,98.37041441],[4.53712522,0.03855705,98.36990023],[4.53712565,0.0385588,98.36938735],[4.53712607,0.03856055,98.36887581],[4.53712649,0.03856231,98.36836564],[4.53712691,0.03856406,98.36785689],[4.53712734,0.03856581,98.3673496],[4.53712776,0.03856757,98.36684382],[4.53712818,0.03856932,98.36633957],[4.5371286,0.03857107,98.36583691],[4.53712903,0.03857283,98.36533587],[4.53712945,0.03857458,98.3648365],[4.53712987,0.03857633,98.36433885],[4.53713029,0.03857809,98.36384294],[4.53713072,0.03857984,98.36334882],[4.53713114,0.03858159,98.36285654],[4.53713156,0.03858335,98.36236614],[4.53713199,0.0385851,98.36187765],[4.53713241,0.03858685,98.36139113],[4.53713283,0.03858861,98.3609066],[4.53713325,0.03859036,98.36042412],[4.53713368,0.03859211,98.35994373],[4.5371341,0.03859387,98.35946547],[4.53713452,0.03859562,98.35898938],[4.53713495,0.03859737,98.35851551],[4.53713537,0.03859912,98.35804389],[4.53713579,0.03860088,98.35757457],[4.53713622,0.03860263,98.35710759],[4.53713664,0.03860438,98.356643],[4.53713706,0.03860614,98.35618084],[4.53713749,0.03860789,98.35572115],[4.53713791,0.03860964,98.35526397],[4.53713834,0.0386114,98.35480935],[4.53713876,0.03861315,98.35435734],[4.53713918,0.0386149,98.35390797],[4.53713961,0.03861665,98.3534613],[4.53714003,0.03861841,98.35301736],[4.53714046,0.03862016,98.35257619],[4.53714088,0.03862191,98.35213785],[4.53714131,0.03862367,98.35170238],[4.53714173,0.03862542,98.35126982],[4.53714216,0.03862717,98.35084022],[4.53714258,0.03862892,98.35041363],[4.53714301,0.03863068,98.34999008],[4.53714343,0.03863243,98.34956963],[4.53714386,0.03863418,98.34915231],[4.53714429,0.03863593,98.34873819],[4.53714471,0.03863769,98.3483273],[4.53714514,0.03863944,98.34791968],[4.53714556,0.03864119,98.3475154],[4.53714599,0.03864294,98.34711448],[4.53714642,0.03864469,98.34671699],[4.53706545,0.03866439,98.15405543]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":1,"type":"shoulder","predecessorId":0},{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":2,"type":"none","predecessorId":0}],"roadId":"1004600","singleSide":false,"rightLanes":[{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"rules":[{"value":"barred"}],"id":-3,"type":"restricted","predecessorId":0},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":0},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":0}]}},{"geometry":{"coordinates":[[[4.53692694,0.03820202,98.23403648],[4.53692648,0.03820028,98.24270479],[4.53692606,0.03819871,98.24653286],[4.53703194,0.03817275,98.51090017],[4.53703232,0.03817432,98.51024693],[4.53703275,0.03817608,98.50952094],[4.53692694,0.03820202,98.23403648]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":1,"type":"shoulder","predecessorId":1},{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":2,"type":"none","predecessorId":2}],"roadId":"1004600","singleSide":false,"rightLanes":[{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":-4,"type":"none","predecessorId":0},{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"rules":[{"value":"barred"}],"id":-3,"type":"restricted","predecessorId":0},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.53692606,0.03819871,98.39653286],[4.5369256,0.03819697,98.39712081],[4.53692514,0.03819523,98.39771174],[4.53692468,0.03819348,98.39830563],[4.53692421,0.03819174,98.39890247],[4.53692375,0.03819,98.39950225],[4.53692329,0.03818825,98.40010496],[4.53692283,0.03818651,98.40071059],[4.53692237,0.03818477,98.40131912],[4.5369219,0.03818303,98.40193054],[4.53692144,0.03818128,98.40254485],[4.53692098,0.03817954,98.40316202],[4.53692052,0.0381778,98.40378204],[4.53692006,0.03817605,98.40440488],[4.5369196,0.03817431,98.4050305],[4.53691914,0.03817257,98.40565888],[4.53691868,0.03817083,98.40628999],[4.53691822,0.03816908,98.40692381],[4.53691776,0.03816734,98.4075603],[4.53691729,0.0381656,98.40819943],[4.53691683,0.03816385,98.40884117],[4.53691637,0.03816211,98.4094855],[4.53691591,0.03816037,98.41013239],[4.53691545,0.03815862,98.41078181],[4.53691499,0.03815688,98.41143372],[4.53691453,0.03815514,98.4120881],[4.53691407,0.03815339,98.41274492],[4.53691361,0.03815165,98.41340415],[4.53691315,0.03814991,98.41406576],[4.53691269,0.03814817,98.41472972],[4.53691223,0.03814642,98.415396],[4.53691177,0.03814468,98.41606458],[4.53691131,0.03814294,98.41673541],[4.53691085,0.03814119,98.41740848],[4.53691038,0.03813945,98.41808374],[4.53690992,0.03813771,98.41876118],[4.53690946,0.03813596,98.41944076],[4.536909,0.03813422,98.42012246],[4.53690854,0.03813248,98.42080623],[4.53690808,0.03813074,98.42149206],[4.53690762,0.03812899,98.42217991],[4.53690715,0.03812725,98.42286975],[4.53690669,0.03812551,98.42356155],[4.53690623,0.03812377,98.42425528],[4.53690577,0.03812202,98.42495091],[4.53690531,0.03812028,98.42564841],[4.53690484,0.03811854,98.42634775],[4.53690438,0.0381168,98.4270489],[4.53690392,0.03811505,98.42775183],[4.53690345,0.03811331,98.4284565],[4.53690299,0.03811157,98.4291629],[4.53690253,0.03810983,98.42987098],[4.53690206,0.03810808,98.43058071],[4.5369016,0.03810634,98.43129208],[4.53690113,0.0381046,98.43200503],[4.53690067,0.03810286,98.43271956],[4.5369002,0.03810112,98.43343563],[4.53689974,0.03809937,98.43415324],[4.53689927,0.03809763,98.43487235],[4.53689881,0.03809589,98.43559295],[4.53689834,0.03809415,98.43631502],[4.53689787,0.03809241,98.43703854],[4.53689741,0.03809067,98.4377635],[4.53689694,0.03808892,98.43848986],[4.53689647,0.03808718,98.43921762],[4.53689601,0.03808544,98.43994675],[4.53689554,0.0380837,98.44067724],[4.53689507,0.03808196,98.44140906],[4.53689461,0.03808022,98.44214219],[4.53689414,0.03807848,98.44287662],[4.53689367,0.03807673,98.44361232],[4.5368932,0.03807499,98.44434928],[4.53689274,0.03807325,98.44508748],[4.53689227,0.03807151,98.44582689],[4.5368918,0.03806977,98.44656748],[4.53689134,0.03806803,98.44730924],[4.53689087,0.03806629,98.44805212],[4.53689041,0.03806454,98.44879612],[4.53688994,0.0380628,98.44954123],[4.53688947,0.03806106,98.45028748],[4.53688901,0.03805932,98.45103485],[4.53688854,0.03805758,98.45178338],[4.53688808,0.03805583,98.45253307],[4.53688762,0.03805409,98.45328392],[4.53688715,0.03805235,98.45403596],[4.53688669,0.03805061,98.45478918],[4.53688623,0.03804887,98.45554361],[4.53688577,0.03804712,98.45629925],[4.5368853,0.03804538,98.45705611],[4.53688484,0.03804364,98.4578142],[4.53688438,0.03804189,98.45857354],[4.53688392,0.03804015,98.45933414],[4.53688347,0.03803841,98.460096],[4.53688301,0.03803666,98.46085914],[4.53688255,0.03803492,98.46162356],[4.53688209,0.03803318,98.46238928],[4.53688164,0.03803143,98.46315632],[4.53688118,0.03802969,98.46392467],[4.53688073,0.03802794,98.46469435],[4.53688028,0.0380262,98.46546538],[4.53687982,0.03802445,98.46623775],[4.53687937,0.03802271,98.4670115],[4.53687892,0.03802096,98.46778661],[4.53687847,0.03801922,98.46856311],[4.53687802,0.03801747,98.46934101],[4.53687757,0.03801573,98.47012031],[4.53687712,0.03801398,98.47090103],[4.53687667,0.03801224,98.47168318],[4.53687622,0.03801049,98.47246677],[4.53687577,0.03800874,98.47325181],[4.53687533,0.038007,98.47403831],[4.53687488,0.03800525,98.47482628],[4.53687443,0.03800351,98.47561574],[4.53687398,0.03800176,98.47640669],[4.53687354,0.03800001,98.47719915],[4.53687309,0.03799827,98.47799312],[4.53687264,0.03799652,98.47878862],[4.5368722,0.03799477,98.47958565],[4.53687175,0.03799303,98.48038424],[4.53687131,0.03799128,98.48118438],[4.53687086,0.03798953,98.48198609],[4.53687041,0.03798779,98.48278939],[4.53686997,0.03798604,98.48359428],[4.53686952,0.03798429,98.48440077],[4.53686908,0.03798255,98.48520887],[4.53686863,0.0379808,98.4860186],[4.53686818,0.03797906,98.48682997],[4.53686774,0.03797731,98.48764298],[4.53686729,0.03797556,98.48845765],[4.53686684,0.03797382,98.48927397],[4.5368664,0.03797207,98.49009192],[4.53686595,0.03797032,98.49091149],[4.5368655,0.03796858,98.49173265],[4.53686505,0.03796683,98.49255538],[4.53686461,0.03796509,98.49337967],[4.53686416,0.03796334,98.49420549],[4.53686371,0.03796159,98.49503283],[4.53686326,0.03795985,98.49586166],[4.53686282,0.0379581,98.49669197],[4.53686237,0.03795635,98.49752373],[4.53686192,0.03795461,98.49835692],[4.53686147,0.03795286,98.49919153],[4.53686103,0.03795112,98.50002751],[4.53686058,0.03794937,98.50086483],[4.53686013,0.03794763,98.50170348],[4.53685968,0.03794588,98.50254341],[4.53685923,0.03794413,98.50338459],[4.53685878,0.03794239,98.504227],[4.53685833,0.03794064,98.50507061],[4.53685789,0.0379389,98.50591538],[4.53685744,0.03793715,98.50676129],[4.53685699,0.0379354,98.50760832],[4.53685654,0.03793366,98.50845645],[4.53685609,0.03793191,98.50930565],[4.53685564,0.03793017,98.5101559],[4.53685519,0.03792842,98.51100719],[4.53685474,0.03792668,98.51185948],[4.5368543,0.03792493,98.51271276],[4.53685385,0.03792318,98.51356701],[4.5368534,0.03792144,98.5144222],[4.53685295,0.03791969,98.51527832],[4.5368525,0.03791795,98.51613534],[4.53685205,0.0379162,98.51699324],[4.5368516,0.03791446,98.517852],[4.53685116,0.03791271,98.51871159],[4.53685071,0.03791096,98.519572],[4.53685026,0.03790922,98.52043321],[4.53684981,0.03790747,98.52129518],[4.53684937,0.03790573,98.52215791],[4.53684892,0.03790398,98.52302137],[4.53684847,0.03790223,98.52388554],[4.53684802,0.03790049,98.52475039],[4.53684758,0.03789874,98.52561591],[4.53684713,0.03789699,98.52648207],[4.53684669,0.03789525,98.52734886],[4.53684624,0.0378935,98.52821625],[4.53684579,0.03789175,98.52908422],[4.53684535,0.03789001,98.52995278],[4.5368449,0.03788826,98.53082193],[4.53684446,0.03788652,98.53169169],[4.53684401,0.03788477,98.53256206],[4.53684357,0.03788302,98.53343306],[4.53684312,0.03788128,98.53430468],[4.53684268,0.03787953,98.53517695],[4.53684223,0.03787778,98.53604986],[4.53684179,0.03787603,98.53692342],[4.53684135,0.03787429,98.53779765],[4.5368409,0.03787254,98.53867256],[4.53684046,0.03787079,98.53954814],[4.53684001,0.03786905,98.54042441],[4.53683957,0.0378673,98.54130138],[4.53683913,0.03786555,98.54217905],[4.53683868,0.03786381,98.54305744],[4.53683824,0.03786206,98.54393655],[4.5368378,0.03786031,98.54481639],[4.53683736,0.03785856,98.54569697],[4.53683691,0.03785682,98.5465783],[4.53683647,0.03785507,98.54746039],[4.53683603,0.03785332,98.54834323],[4.53683559,0.03785158,98.54922686],[4.53683514,0.03784983,98.55011126],[4.5368347,0.03784808,98.55099645],[4.53683426,0.03784633,98.55188244],[4.53683382,0.03784459,98.55276923],[4.53683337,0.03784284,98.55365684],[4.53683293,0.03784109,98.55454528],[4.53683249,0.03783934,98.55543454],[4.53683205,0.0378376,98.55632464],[4.53683161,0.03783585,98.55721559],[4.53683116,0.0378341,98.5581074],[4.53683072,0.03783235,98.55900007],[4.53683028,0.03783061,98.55989361],[4.53682984,0.03782886,98.56078803],[4.53682939,0.03782711,98.56168334],[4.53682895,0.03782537,98.56257955],[4.53682851,0.03782362,98.56347667],[4.53682807,0.03782187,98.56437469],[4.53682763,0.03782012,98.56527364],[4.53682718,0.03781838,98.56617352],[4.53682674,0.03781663,98.56707434],[4.5368263,0.03781488,98.5679761],[4.53682585,0.03781313,98.56887882],[4.53682541,0.03781139,98.56978251],[4.53682497,0.03780964,98.57068717],[4.53682453,0.03780789,98.57159282],[4.53682408,0.03780615,98.57249948],[4.53682364,0.0378044,98.57340716],[4.5368232,0.03780265,98.57431587],[4.53682275,0.03780091,98.57522562],[4.53682231,0.03779916,98.57613644],[4.53682187,0.03779741,98.57704832],[4.53682142,0.03779566,98.57796128],[4.53682098,0.03779392,98.57887535],[4.53682054,0.03779217,98.57979052],[4.53682009,0.03779042,98.58070681],[4.53681965,0.03778868,98.5816242],[4.5368192,0.03778693,98.58254268],[4.53681876,0.03778518,98.58346225],[4.53681832,0.03778344,98.58438289],[4.53681787,0.03778169,98.5853046],[4.53681743,0.03777994,98.58622737],[4.53681698,0.0377782,98.58715119],[4.53681654,0.03777645,98.58807604],[4.5368161,0.0377747,98.58900193],[4.53681565,0.03777296,98.58992884],[4.53681521,0.03777121,98.59085677],[4.53681476,0.03776946,98.5917857],[4.53681432,0.03776772,98.59271563],[4.53681387,0.03776597,98.59364658],[4.53681343,0.03776422,98.59457854],[4.53681299,0.03776247,98.5955115],[4.53681254,0.03776073,98.59644545],[4.5368121,0.03775898,98.59738037],[4.53681165,0.03775723,98.59831626],[4.53681121,0.03775549,98.59925311],[4.53681077,0.03775374,98.60019091],[4.53681032,0.03775199,98.60112963],[4.53680988,0.03775025,98.60206928],[4.53680943,0.0377485,98.60300984],[4.53680899,0.03774675,98.6039513],[4.53680855,0.03774501,98.60489365],[4.5368081,0.03774326,98.60583688],[4.53680766,0.03774151,98.60678097],[4.53680721,0.03773977,98.60772592],[4.53680677,0.03773802,98.60867171],[4.53680633,0.03773627,98.60961834],[4.53680588,0.03773453,98.61056579],[4.53680544,0.03773278,98.61151404],[4.53680499,0.03773103,98.6124631],[4.53680455,0.03772929,98.61341295],[4.53680411,0.03772754,98.61436358],[4.53680366,0.03772579,98.61531497],[4.53680322,0.03772404,98.61626712],[4.53680278,0.0377223,98.61722002],[4.53680233,0.03772055,98.61817364],[4.53680189,0.0377188,98.61912799],[4.53680145,0.03771706,98.62008305],[4.53680101,0.03771531,98.62103882],[4.53680056,0.03771356,98.62199527],[4.53680012,0.03771182,98.6229524],[4.53679968,0.03771007,98.62391019],[4.53679923,0.03770832,98.62486865],[4.53679879,0.03770657,98.62582775],[4.53679835,0.03770483,98.62678748],[4.53679791,0.03770308,98.62774784],[4.53679746,0.03770133,98.6287088],[4.53679702,0.03769959,98.62967038],[4.53679658,0.03769784,98.63063254],[4.53679614,0.03769609,98.63159528],[4.5367957,0.03769434,98.63255859],[4.53679526,0.0376926,98.63352246],[4.53679481,0.03769085,98.63448687],[4.53679437,0.0376891,98.63545182],[4.53679393,0.03768735,98.63641729],[4.53679349,0.03768561,98.63738328],[4.53679305,0.03768386,98.63834978],[4.53679261,0.03768211,98.63931676],[4.53679217,0.03768036,98.64028423],[4.53679173,0.03767862,98.64125216],[4.53679128,0.03767687,98.64222056],[4.53679084,0.03767512,98.6431894],[4.5367904,0.03767337,98.64415869],[4.53678996,0.03767163,98.6451284],[4.53678952,0.03766988,98.64609852],[4.53678908,0.03766813,98.64706906],[4.53678864,0.03766638,98.64803998],[4.5367882,0.03766464,98.64901129],[4.53678776,0.03766289,98.64998298],[4.53678732,0.03766114,98.65095502],[4.53678687,0.03765939,98.65192742],[4.53678643,0.03765765,98.65290016],[4.53678599,0.0376559,98.65387323],[4.53678555,0.03765415,98.65484661],[4.53678511,0.03765241,98.65582031],[4.53678467,0.03765066,98.6567943],[4.53678422,0.03764891,98.65776858],[4.53678378,0.03764716,98.65874314],[4.53678334,0.03764542,98.65971796],[4.53678289,0.03764367,98.66069304],[4.53678245,0.03764192,98.66166836],[4.53678201,0.03764018,98.66264391],[4.53678156,0.03763843,98.66361969],[4.53678112,0.03763668,98.66459568],[4.53678068,0.03763494,98.66557187],[4.53678023,0.03763319,98.66654825],[4.53677979,0.03763144,98.66752482],[4.53677934,0.0376297,98.66850155],[4.53677889,0.03762795,98.66947844],[4.53677845,0.0376262,98.67045548],[4.536778,0.03762446,98.67143266],[4.53677755,0.03762271,98.67240999],[4.53677711,0.03762097,98.67338748],[4.53677666,0.03761922,98.67436512],[4.53677621,0.03761747,98.67534291],[4.53677576,0.03761573,98.67632087],[4.53677531,0.03761398,98.677299],[4.53677486,0.03761224,98.67827729],[4.53677442,0.03761049,98.67925576],[4.53677397,0.03760875,98.68023441],[4.53677352,0.037607,98.68121324],[4.53677307,0.03760526,98.68219228],[4.53677261,0.03760351,98.68317151],[4.53677216,0.03760177,98.68415095],[4.53677171,0.03760002,98.68513061],[4.53677126,0.03759828,98.68611049],[4.53677081,0.03759653,98.6870906],[4.53677036,0.03759479,98.68807095],[4.53676991,0.03759304,98.68905154],[4.53676945,0.0375913,98.69003238],[4.536769,0.03758955,98.69101348],[4.53676855,0.03758781,98.69199484],[4.5367681,0.03758606,98.69297648],[4.53676765,0.03758432,98.69395839],[4.53676719,0.03758258,98.69494059],[4.53676674,0.03758083,98.69592308],[4.53676629,0.03757909,98.69690587],[4.53676583,0.03757734,98.69788897],[4.53676538,0.0375756,98.69887237],[4.53676493,0.03757385,98.6998561],[4.53676448,0.03757211,98.70084015],[4.53676402,0.03757036,98.70182452],[4.53676357,0.03756862,98.70280921],[4.53676312,0.03756688,98.70379422],[4.53676266,0.03756513,98.70477955],[4.53676221,0.03756339,98.7057652],[4.53676175,0.03756164,98.70675116],[4.5367613,0.0375599,98.70773744],[4.53676085,0.03755815,98.70872404],[4.53676039,0.03755641,98.70971095],[4.53675994,0.03755467,98.71069817],[4.53675949,0.03755292,98.7116857],[4.53675903,0.03755118,98.71267354],[4.53675858,0.03754943,98.7136617],[4.53675812,0.03754769,98.71465016],[4.53675767,0.03754595,98.71563893],[4.53675722,0.0375442,98.71662801],[4.53675676,0.03754246,98.71761739],[4.53675631,0.03754071,98.71860708],[4.53675585,0.03753897,98.71959707],[4.5367554,0.03753722,98.72058737],[4.53675494,0.03753548,98.72157797],[4.53675449,0.03753374,98.72256887],[4.53675404,0.03753199,98.72356007],[4.53675358,0.03753025,98.72455156],[4.53675313,0.0375285,98.72554336],[4.53675267,0.03752676,98.72653545],[4.53675222,0.03752502,98.72752784],[4.53675176,0.03752327,98.72852053],[4.53675131,0.03752153,98.72951351],[4.53675085,0.03751978,98.73050678],[4.5367504,0.03751804,98.73150035],[4.53674994,0.0375163,98.7324942],[4.53674949,0.03751455,98.73348835],[4.53674904,0.03751281,98.73448278],[4.53674858,0.03751106,98.7354775],[4.53674813,0.03750932,98.73647251],[4.53674767,0.03750758,98.73746781],[4.53674722,0.03750583,98.73846339],[4.53674676,0.03750409,98.73945925],[4.53674631,0.03750235,98.7404554],[4.53674585,0.0375006,98.74145183],[4.5367454,0.03749886,98.74244854],[4.53674494,0.03749711,98.74344553],[4.53674449,0.03749537,98.7444428],[4.53674403,0.03749363,98.74544034],[4.53674358,0.03749188,98.74643817],[4.53674312,0.03749014,98.74743626],[4.53674267,0.03748839,98.74843464],[4.53674221,0.03748665,98.74943328],[4.53674176,0.03748491,98.7504322],[4.5367413,0.03748316,98.75143139],[4.53674085,0.03748142,98.75243085],[4.5367404,0.03747967,98.75343058],[4.53673994,0.03747793,98.75443058],[4.53673949,0.03747619,98.75543084],[4.53673903,0.03747444,98.75643137],[4.53673858,0.0374727,98.75743217],[4.53673812,0.03747095,98.75843323],[4.53673767,0.03746921,98.75943455],[4.53673722,0.03746747,98.76043614],[4.53673676,0.03746572,98.761438],[4.53673631,0.03746398,98.76244015],[4.53673585,0.03746223,98.7634426],[4.5367354,0.03746049,98.76444537],[4.53673495,0.03745875,98.76544848],[4.53673449,0.037457,98.76645193],[4.53673404,0.03745526,98.76745574],[4.53673358,0.03745351,98.76845991],[4.53673313,0.03745177,98.76946444],[4.53673268,0.03745003,98.77046935],[4.53673222,0.03744828,98.77147462],[4.53673177,0.03744654,98.77248028],[4.53673131,0.03744479,98.77348632],[4.53673086,0.03744305,98.77449275],[4.53673041,0.0374413,98.77549957],[4.53672995,0.03743956,98.77650679],[4.5367295,0.03743782,98.7775144],[4.53672905,0.03743607,98.7785224],[4.5367286,0.03743433,98.77953077],[4.53672814,0.03743259,98.7805395],[4.53672769,0.03743084,98.78154855],[4.53672724,0.0374291,98.78255793],[4.53672678,0.03742735,98.7835676],[4.53672633,0.03742561,98.78457756],[4.53672588,0.03742387,98.78558778],[4.53672542,0.03742212,98.78659826],[4.53672497,0.03742038,98.78760897],[4.53672452,0.03741863,98.78861989],[4.53672406,0.03741689,98.78963103],[4.53672361,0.03741514,98.79064237],[4.53672316,0.0374134,98.79165391],[4.53672271,0.03741166,98.79266564],[4.53672225,0.03740991,98.79367755],[4.5367218,0.03740817,98.79468965],[4.53672135,0.03740642,98.79570191],[4.53672089,0.03740468,98.79671435],[4.53672044,0.03740293,98.79772695],[4.53671999,0.03740119,98.7987397],[4.53671953,0.03739945,98.79975259],[4.53671908,0.0373977,98.80076564],[4.53671863,0.03739596,98.80177881],[4.53671817,0.03739421,98.80279212],[4.53671772,0.03739247,98.80380555],[4.53671727,0.03739073,98.8048191],[4.53671681,0.03738898,98.80583276],[4.53671636,0.03738724,98.80684653],[4.5367159,0.03738549,98.8078604],[4.53671545,0.03738375,98.80887435],[4.536715,0.03738201,98.8098884],[4.53671454,0.03738026,98.81090251],[4.53671409,0.03737852,98.81191667],[4.53671363,0.03737677,98.81293088],[4.53671318,0.03737503,98.8139451],[4.53671273,0.03737329,98.81495932],[4.53671227,0.03737154,98.81597354],[4.53671182,0.0373698,98.81698772],[4.53671136,0.03736805,98.81800187],[4.53671091,0.03736631,98.81901595],[4.53671045,0.03736457,98.82002996],[4.53671,0.03736282,98.82104388],[4.53670954,0.03736108,98.82205769],[4.53670908,0.03735934,98.82307138],[4.53670863,0.03735759,98.82408493],[4.53670817,0.03735585,98.82509833],[4.53670772,0.03735411,98.82611155],[4.53670726,0.03735236,98.82712459],[4.5367068,0.03735062,98.82813743],[4.53670635,0.03734888,98.82915005],[4.53670589,0.03734713,98.83016244],[4.53670543,0.03734539,98.83117457],[4.53670498,0.03734365,98.83218645],[4.53670452,0.0373419,98.83319804],[4.53670406,0.03734016,98.83420934],[4.53670361,0.03733842,98.83522032],[4.53670315,0.03733667,98.83623099],[4.5367027,0.03733493,98.83724134],[4.53670224,0.03733318,98.83825137],[4.53670179,0.03733144,98.83926109],[4.53670134,0.03732969,98.84027051],[4.53670089,0.03732795,98.84127961],[4.53670044,0.0373262,98.8422884],[4.53669999,0.03732446,98.8432969],[4.53669955,0.03732271,98.84430508],[4.5366991,0.03732097,98.84531297],[4.53669866,0.03731922,98.84632056],[4.53669822,0.03731747,98.84732785],[4.53669778,0.03731572,98.84833485],[4.53669734,0.03731398,98.84934155],[4.53669691,0.03731223,98.85034796],[4.53669647,0.03731048,98.85135409],[4.53669604,0.03730873,98.85235992],[4.53669561,0.03730698,98.85336547],[4.53669517,0.03730523,98.85437074],[4.53669474,0.03730348,98.85537572],[4.53669431,0.03730173,98.85638043],[4.53669389,0.03729998,98.85738485],[4.53669346,0.03729823,98.858389],[4.53669303,0.03729648,98.85939288],[4.5366926,0.03729473,98.86039648],[4.53669218,0.03729298,98.86139982],[4.53669175,0.03729123,98.86240288],[4.53669132,0.03728948,98.86340568],[4.5366909,0.03728772,98.86440821],[4.53669047,0.03728597,98.86541048],[4.53669005,0.03728422,98.86641249],[4.53668962,0.03728247,98.86741424],[4.5366892,0.03728072,98.86841574],[4.53668877,0.03727897,98.86941698],[4.53668835,0.03727722,98.87041798],[4.53668792,0.03727547,98.87141873],[4.53668749,0.03727372,98.87241923],[4.53668707,0.03727196,98.8734195],[4.53668664,0.03727021,98.87441953],[4.53668621,0.03726846,98.87541932],[4.53668578,0.03726671,98.87641889],[4.53668536,0.03726496,98.87741822],[4.53668493,0.03726321,98.87841733],[4.5366845,0.03726146,98.87941622],[4.53668407,0.03725971,98.88041488],[4.53668364,0.03725796,98.88141333],[4.53668321,0.03725621,98.88241157],[4.53668278,0.03725446,98.88340959],[4.53668235,0.03725271,98.8844074],[4.53668192,0.03725096,98.88540501],[4.53668149,0.03724921,98.88640242],[4.53668106,0.03724746,98.88739962],[4.53668062,0.03724571,98.88839663],[4.53668019,0.03724396,98.88939345],[4.53667976,0.03724221,98.89039007],[4.53667933,0.03724046,98.8913865],[4.5366789,0.03723871,98.89238275],[4.53667846,0.03723696,98.89337883],[4.53667803,0.03723521,98.89437476],[4.5366776,0.03723347,98.89537057],[4.53667717,0.03723172,98.89636628],[4.53667674,0.03722997,98.89736193],[4.5366763,0.03722822,98.89835753],[4.53667587,0.03722647,98.8993531],[4.53667544,0.03722472,98.90034868],[4.53667501,0.03722297,98.90134426],[4.53667458,0.03722122,98.90233986],[4.53667414,0.03721947,98.90333545],[4.53667371,0.03721772,98.90433101],[4.53667328,0.03721597,98.90532654],[4.53667285,0.03721422,98.90632202],[4.53667242,0.03721247,98.90731743],[4.53667199,0.03721072,98.90831277],[4.53667156,0.03720897,98.909308],[4.53667113,0.03720722,98.91030313],[4.5366707,0.03720547,98.91129814],[4.53667027,0.03720372,98.912293],[4.53666984,0.03720197,98.91328772],[4.53666941,0.03720022,98.91428227],[4.53666898,0.03719847,98.91527663],[4.53666855,0.03719672,98.91627081],[4.53666812,0.03719497,98.91726477],[4.53666769,0.03719322,98.91825851],[4.53666726,0.03719147,98.91925201],[4.53666683,0.03718972,98.92024525],[4.5366664,0.03718797,98.92123823],[4.53666597,0.03718622,98.92223093],[4.53666554,0.03718447,98.92322333],[4.53666511,0.03718272,98.92421543],[4.53666469,0.03718097,98.92520719],[4.53666426,0.03717922,98.92619862],[4.53666383,0.03717747,98.9271897],[4.5366634,0.03717572,98.92818041],[4.53666297,0.03717397,98.92917074],[4.53666254,0.03717222,98.93016067],[4.53666211,0.03717047,98.93115019],[4.53666168,0.03716872,98.93213929],[4.53666125,0.03716697,98.93312795],[4.53666083,0.03716521,98.93411616],[4.5366604,0.03716346,98.9351039],[4.53665997,0.03716171,98.93609116],[4.53665954,0.03715996,98.93707793],[4.53665911,0.03715821,98.93806419],[4.53665868,0.03715646,98.93904992],[4.53665825,0.03715471,98.94003511],[4.53665782,0.03715296,98.94101976],[4.53665739,0.03715121,98.94200383],[4.53665696,0.03714946,98.94298733],[4.53665653,0.03714771,98.94397024],[4.53665611,0.03714596,98.94495261],[4.53665568,0.03714421,98.94593447],[4.53665525,0.03714246,98.94691587],[4.53665482,0.03714071,98.94789686],[4.53665439,0.03713896,98.94887748],[4.53665396,0.03713721,98.94985776],[4.53665353,0.03713546,98.95083773],[4.5366531,0.03713371,98.95181737],[4.53665267,0.03713196,98.9527967],[4.53665224,0.03713021,98.9537757],[4.5366518,0.03712846,98.95475438],[4.53665137,0.03712671,98.95573275],[4.53665094,0.03712496,98.9567108],[4.53665051,0.03712321,98.95768853],[4.53665008,0.03712146,98.95866595],[4.53664965,0.03711971,98.95964305],[4.53664922,0.03711796,98.96061984],[4.53664879,0.03711621,98.96159631],[4.53664836,0.03711446,98.96257247],[4.53664793,0.03711271,98.96354832],[4.53664749,0.03711096,98.96452387],[4.53664706,0.03710921,98.9654991],[4.53664663,0.03710746,98.96647402],[4.5366462,0.03710571,98.96744863],[4.53664577,0.03710397,98.96842294],[4.53664533,0.03710222,98.96939694],[4.5366449,0.03710047,98.97037064],[4.53664447,0.03709872,98.97134403],[4.53664404,0.03709697,98.97231712],[4.5366436,0.03709522,98.97328991],[4.53664317,0.03709347,98.97426239],[4.53664274,0.03709172,98.97523457],[4.5366423,0.03708997,98.97620645],[4.53664187,0.03708822,98.97717804],[4.53664143,0.03708647,98.97814932],[4.536641,0.03708472,98.97912031],[4.53664057,0.03708298,98.980091],[4.53664013,0.03708123,98.9810614],[4.5366397,0.03707948,98.9820315],[4.53663926,0.03707773,98.9830013],[4.53663883,0.03707598,98.98397082],[4.53663839,0.03707423,98.98494004],[4.53663795,0.03707248,98.98590897],[4.53663752,0.03707073,98.98687762],[4.53663708,0.03706899,98.98784598],[4.53663665,0.03706724,98.98881405],[4.53663621,0.03706549,98.98978184],[4.53663577,0.03706374,98.99074935],[4.53663534,0.03706199,98.99171657],[4.5366349,0.03706024,98.99268352],[4.53663446,0.0370585,98.99365019],[4.53663403,0.03705675,98.99461659],[4.53663359,0.037055,98.99558271],[4.53663315,0.03705325,98.99654855],[4.53663271,0.0370515,98.99751413],[4.53663228,0.03704975,98.99847943],[4.53663184,0.03704801,98.99944447],[4.5366314,0.03704626,99.00040923],[4.53663096,0.03704451,99.00137368],[4.53663052,0.03704276,99.00233777],[4.53663009,0.03704101,99.00330146],[4.53662965,0.03703927,99.00426471],[4.53662921,0.03703752,99.00522746],[4.53662877,0.03703577,99.00618968],[4.53662833,0.03703402,99.00715131],[4.53662789,0.03703227,99.00811232],[4.53662745,0.03703053,99.00907267],[4.53662701,0.03702878,99.01003235],[4.53662657,0.03702703,99.01099136],[4.53662613,0.03702528,99.01194971],[4.53662569,0.03702354,99.01290739],[4.53662525,0.03702179,99.01386443],[4.53662481,0.03702004,99.0148208],[4.53662437,0.03701829,99.01577654],[4.53662393,0.03701655,99.01673162],[4.53662349,0.0370148,99.01768607],[4.53662305,0.03701305,99.01863989],[4.53662261,0.03701131,99.01959307],[4.53662217,0.03700956,99.02054563],[4.53662173,0.03700781,99.02149757],[4.53662129,0.03700606,99.02244888],[4.53662084,0.03700432,99.02339959],[4.5366204,0.03700257,99.02434968],[4.53661996,0.03700082,99.02529917],[4.53661952,0.03699907,99.02624805],[4.53661908,0.03699733,99.02719634],[4.53661864,0.03699558,99.02814404],[4.53661819,0.03699383,99.02909115],[4.53661775,0.03699209,99.03003767],[4.53661731,0.03699034,99.03098362],[4.53661687,0.03698859,99.03192898],[4.53661643,0.03698685,99.03287378],[4.53661598,0.0369851,99.033818],[4.53661554,0.03698335,99.03476167],[4.5366151,0.0369816,99.03570477],[4.53661466,0.03697986,99.03664731],[4.53661422,0.03697811,99.03758927],[4.53661377,0.03697636,99.03853067],[4.53661333,0.03697462,99.0394715],[4.53661289,0.03697287,99.04041176],[4.53661245,0.03697112,99.04135144],[4.53661201,0.03696938,99.04229054],[4.53661156,0.03696763,99.04322906],[4.53661112,0.03696588,99.044167],[4.53661068,0.03696413,99.04510435],[4.53661024,0.03696239,99.04604112],[4.5366098,0.03696064,99.0469773],[4.53660935,0.03695889,99.04791289],[4.53660891,0.03695715,99.04884788],[4.53660847,0.0369554,99.04978228],[4.53660803,0.03695365,99.05071609],[4.53660759,0.0369519,99.05164929],[4.53660715,0.03695016,99.05258189],[4.53660671,0.03694841,99.05351389],[4.53660626,0.03694666,99.05444527],[4.53660582,0.03694492,99.05537606],[4.53660538,0.03694317,99.05630623],[4.53660494,0.03694142,99.05723579],[4.5366045,0.03693967,99.05816473],[4.53660406,0.03693793,99.05909305],[4.53660362,0.03693618,99.06002076],[4.53660318,0.03693443,99.06094784],[4.53660274,0.03693268,99.06187431],[4.5366023,0.03693094,99.06280014],[4.53660186,0.03692919,99.06372535],[4.53660142,0.03692744,99.06464992],[4.53660098,0.03692569,99.06557387],[4.53660054,0.03692395,99.06649718],[4.5366001,0.0369222,99.06741985],[4.53659966,0.03692045,99.06834188],[4.53659922,0.0369187,99.06926328],[4.53659878,0.03691696,99.07018403],[4.53659834,0.03691521,99.07110413],[4.5365979,0.03691346,99.07202359],[4.53659746,0.03691171,99.07294239],[4.53659702,0.03690996,99.07386055],[4.53659658,0.03690822,99.07477805],[4.53659615,0.03690647,99.07569489],[4.53659571,0.03690472,99.07661107],[4.53659527,0.03690297,99.0775266],[4.53659483,0.03690123,99.07844146],[4.53659439,0.03689948,99.07935566],[4.53659396,0.03689773,99.08026918],[4.53659352,0.03689598,99.08118204],[4.53659308,0.03689423,99.08209423],[4.53659264,0.03689248,99.08300574],[4.53659221,0.03689074,99.08391653],[4.53659177,0.03688899,99.08482656],[4.53659133,0.03688724,99.08573579],[4.53659089,0.03688549,99.08664418],[4.53659046,0.03688374,99.08755168],[4.53659002,0.03688199,99.08845825],[4.53658958,0.03688025,99.08936385],[4.53658915,0.0368785,99.09026843],[4.53658871,0.03687675,99.09117196],[4.53658827,0.036875,99.09207439],[4.53658784,0.03687325,99.09297568],[4.5365874,0.0368715,99.09387584],[4.53658696,0.03686976,99.09477486],[4.53658652,0.03686801,99.09567276],[4.53658609,0.03686626,99.09656954],[4.53658565,0.03686451,99.09746521],[4.53658521,0.03686276,99.09835977],[4.53658478,0.03686102,99.09925324],[4.53658434,0.03685927,99.1001456],[4.5365839,0.03685752,99.10103688],[4.53658346,0.03685577,99.10192708],[4.53658303,0.03685402,99.1028162],[4.53658259,0.03685227,99.10370425],[4.53658215,0.03685053,99.10459124],[4.53658172,0.03684878,99.10547718],[4.53658128,0.03684703,99.10636207],[4.53658084,0.03684528,99.10724592],[4.5365804,0.03684353,99.10812875],[4.53657997,0.03684178,99.10901056],[4.53657953,0.03684004,99.10989137],[4.53657909,0.03683829,99.11077117],[4.53657866,0.03683654,99.11164999],[4.53657822,0.03683479,99.11252783],[4.53657778,0.03683304,99.11340469],[4.53657735,0.03683129,99.1142806],[4.53657691,0.03682955,99.11515555],[4.53657647,0.0368278,99.11602956],[4.53657604,0.03682605,99.11690264],[4.5365756,0.0368243,99.1177748],[4.53657516,0.03682255,99.11864606],[4.53657473,0.0368208,99.11951645],[4.53657429,0.03681906,99.12038599],[4.53657385,0.03681731,99.1212547],[4.53657342,0.03681556,99.1221226],[4.53657298,0.03681381,99.12298972],[4.53657254,0.03681206,99.12385607],[4.53657211,0.03681031,99.12472167],[4.53657167,0.03680856,99.12558656],[4.53657124,0.03680682,99.12645075],[4.5365708,0.03680507,99.12731426],[4.53657037,0.03680332,99.12817712],[4.53656993,0.03680157,99.12903935],[4.5365695,0.03679982,99.12990097],[4.53656906,0.03679807,99.13076199],[4.53656863,0.03679632,99.13162241],[4.53656819,0.03679457,99.1324822],[4.53656776,0.03679282,99.13334135],[4.53656732,0.03679108,99.13419983],[4.53656689,0.03678933,99.13505763],[4.53656646,0.03678758,99.13591472],[4.53656602,0.03678583,99.1367711],[4.53656559,0.03678408,99.13762673],[4.53656516,0.03678233,99.1384816],[4.53656472,0.03678058,99.13933568],[4.53656429,0.03677883,99.14018897],[4.53656386,0.03677708,99.14104145],[4.53656342,0.03677533,99.14189311],[4.53656299,0.03677358,99.14274398],[4.53656256,0.03677183,99.14359407],[4.53656212,0.03677008,99.14444338],[4.53656169,0.03676833,99.14529194],[4.53656126,0.03676659,99.14613975],[4.53656083,0.03676484,99.14698682],[4.53656039,0.03676309,99.14783317],[4.53655996,0.03676134,99.14867881],[4.53655953,0.03675959,99.14952375],[4.5365591,0.03675784,99.15036798],[4.53655867,0.03675609,99.15121149],[4.53655823,0.03675434,99.15205427],[4.5365578,0.03675259,99.1528963],[4.53655737,0.03675084,99.15373757],[4.53655694,0.03674909,99.15457807],[4.53655651,0.03674734,99.15541778],[4.53655608,0.03674559,99.15625668],[4.53655564,0.03674384,99.15709478],[4.53655521,0.03674209,99.15793204],[4.53655478,0.03674034,99.15876846],[4.53655435,0.03673859,99.15960403],[4.53655392,0.03673684,99.16043872],[4.53655349,0.03673509,99.16127254],[4.53655306,0.03673334,99.16210547],[4.53655263,0.03673159,99.1629375],[4.53655219,0.03672984,99.16376863],[4.53655176,0.03672809,99.16459883],[4.53655133,0.03672634,99.16542811],[4.5365509,0.03672459,99.16625646],[4.53655047,0.03672284,99.16708385],[4.53655004,0.03672109,99.16791029],[4.53654961,0.03671934,99.16873577],[4.53654917,0.03671759,99.16956027],[4.53654874,0.03671584,99.17038379],[4.53654831,0.03671409,99.17120631],[4.53654788,0.03671234,99.17202783],[4.53654745,0.03671059,99.17284833],[4.53654701,0.03670884,99.17366781],[4.53654658,0.0367071,99.17448626],[4.53654615,0.03670535,99.17530366],[4.53654572,0.0367036,99.17612002],[4.53654529,0.03670185,99.17693531],[4.53654485,0.0367001,99.17774952],[4.53654442,0.03669835,99.17856266],[4.53654399,0.0366966,99.1793747],[4.53654356,0.03669485,99.18018564],[4.53654312,0.0366931,99.18099547],[4.53654269,0.03669135,99.18180418],[4.53654226,0.0366896,99.18261176],[4.53654182,0.03668785,99.18341819],[4.53654139,0.0366861,99.18422348],[4.53654096,0.03668435,99.1850276],[4.53654052,0.0366826,99.18583055],[4.53654009,0.03668085,99.18663232],[4.53653965,0.03667911,99.1874329],[4.53653922,0.03667736,99.18823226],[4.53653879,0.03667561,99.18903042],[4.53653835,0.03667386,99.18982734],[4.53653792,0.03667211,99.19062303],[4.53653748,0.03667036,99.19141746],[4.53653705,0.03666861,99.19221063],[4.53653661,0.03666686,99.19300253],[4.53653618,0.03666511,99.19379314],[4.53653574,0.03666337,99.19458246],[4.53653531,0.03666162,99.19537048],[4.53653487,0.03665987,99.19615723],[4.53653443,0.03665812,99.19694272],[4.536534,0.03665637,99.19772699],[4.53653356,0.03665462,99.19851005],[4.53653313,0.03665287,99.19929194],[4.53653269,0.03665112,99.20007266],[4.53653225,0.03664938,99.20085226],[4.53653182,0.03664763,99.20163075],[4.53653138,0.03664588,99.20240818],[4.53653094,0.03664413,99.20318456],[4.53653051,0.03664238,99.20395994],[4.53653007,0.03664063,99.20473435],[4.53652963,0.03663889,99.20550782],[4.53652919,0.03663714,99.20628038],[4.53652876,0.03663539,99.20705206],[4.53652832,0.03663364,99.20782288],[4.53652788,0.03663189,99.20859286],[4.53652745,0.03663014,99.209362],[4.53652701,0.0366284,99.21013032],[4.53652657,0.03662665,99.21089784],[4.53652613,0.0366249,99.21166458],[4.5365257,0.03662315,99.21243055],[4.53652526,0.0366214,99.21319578],[4.53652482,0.03661965,99.2139603],[4.53652439,0.03661791,99.21472411],[4.53652395,0.03661616,99.21548726],[4.53652351,0.03661441,99.21624974],[4.53652308,0.03661266,99.21701155],[4.53652264,0.03661091,99.21777269],[4.5365222,0.03660916,99.21853316],[4.53652177,0.03660742,99.21929295],[4.53652133,0.03660567,99.22005206],[4.53652089,0.03660392,99.22081048],[4.53652046,0.03660217,99.22156822],[4.53652002,0.03660042,99.22232527],[4.53651958,0.03659867,99.22308162],[4.53651915,0.03659692,99.22383727],[4.53651871,0.03659518,99.22459222],[4.53651827,0.03659343,99.22534647],[4.53651784,0.03659168,99.2261],[4.5365174,0.03658993,99.22685283],[4.53651696,0.03658818,99.22760494],[4.53651653,0.03658643,99.22835632],[4.53651609,0.03658468,99.22910699],[4.53651566,0.03658294,99.22985692],[4.53651522,0.03658119,99.23060613],[4.53651478,0.03657944,99.2313546],[4.53651435,0.03657769,99.23210233],[4.53651391,0.03657594,99.23284932],[4.53651347,0.03657419,99.23359557],[4.53651304,0.03657244,99.23434106],[4.5365126,0.0365707,99.2350858],[4.53651217,0.03656895,99.23582979],[4.53651173,0.0365672,99.23657301],[4.53651129,0.03656545,99.23731547],[4.53651086,0.0365637,99.23805715],[4.53651042,0.03656195,99.23879807],[4.53650998,0.0365602,99.2395382],[4.53650955,0.03655846,99.24027756],[4.53650911,0.03655671,99.24101613],[4.53650868,0.03655496,99.24175391],[4.53650824,0.03655321,99.2424909],[4.5365078,0.03655146,99.24322709],[4.53650737,0.03654971,99.24396248],[4.53650693,0.03654796,99.24469706],[4.53650649,0.03654622,99.24543084],[4.53650606,0.03654447,99.2461638],[4.53650562,0.03654272,99.24689594],[4.53650519,0.03654097,99.24762726],[4.53650475,0.03653922,99.24835775],[4.53650431,0.03653747,99.24908741],[4.53650388,0.03653573,99.24981624],[4.53650344,0.03653398,99.25054423],[4.536503,0.03653223,99.25127137],[4.53650257,0.03653048,99.25199767],[4.53650213,0.03652873,99.25272311],[4.53650169,0.03652698,99.25344769],[4.53650126,0.03652523,99.25417142],[4.53650082,0.03652349,99.25489427],[4.53650038,0.03652174,99.25561626],[4.53649995,0.03651999,99.25633737],[4.53649951,0.03651824,99.2570576],[4.53649907,0.03651649,99.25777695],[4.53649864,0.03651474,99.2584954],[4.5364982,0.036513,99.25921297],[4.53649776,0.03651125,99.25992963],[4.53649732,0.0365095,99.2606454],[4.53649689,0.03650775,99.26136025],[4.53649645,0.036506,99.26207419],[4.53649601,0.03650425,99.26278722],[4.53649557,0.03650251,99.26349932],[4.53649514,0.03650076,99.26421049],[4.53649495,0.03650002,99.26451101],[4.53660912,0.03647059,99.38096137],[4.53660931,0.03647132,99.38057892],[4.53660976,0.03647307,99.37967457],[4.53661021,0.03647482,99.37877006],[4.53661065,0.03647657,99.3778654],[4.5366111,0.03647831,99.37696059],[4.53661154,0.03648006,99.37605563],[4.53661199,0.03648181,99.37515054],[4.53661244,0.03648356,99.37424533],[4.53661288,0.0364853,99.37334],[4.53661333,0.03648705,99.37243456],[4.53661378,0.0364888,99.37152902],[4.53661422,0.03649055,99.37062338],[4.53661467,0.03649229,99.36971765],[4.53661512,0.03649404,99.36881184],[4.53661556,0.03649579,99.36790596],[4.53661601,0.03649754,99.36700001],[4.53661646,0.03649928,99.366094],[4.53661691,0.03650103,99.36518795],[4.53661735,0.03650278,99.36428184],[4.5366178,0.03650453,99.36337571],[4.53661825,0.03650627,99.36246954],[4.53661869,0.03650802,99.36156335],[4.53661914,0.03650977,99.36065714],[4.53661959,0.03651152,99.35975093],[4.53662003,0.03651326,99.35884472],[4.53662048,0.03651501,99.35793851],[4.53662093,0.03651676,99.35703232],[4.53662138,0.03651851,99.35612615],[4.53662182,0.03652025,99.35522001],[4.53662227,0.036522,99.35431391],[4.53662272,0.03652375,99.35340785],[4.53662316,0.0365255,99.35250184],[4.53662361,0.03652724,99.35159588],[4.53662406,0.03652899,99.35068999],[4.53662451,0.03653074,99.34978418],[4.53662495,0.03653248,99.34887844],[4.5366254,0.03653423,99.34797279],[4.53662585,0.03653598,99.34706723],[4.53662629,0.03653773,99.34616178],[4.53662674,0.03653947,99.34525643],[4.53662719,0.03654122,99.34435119],[4.53662764,0.03654297,99.34344608],[4.53662808,0.03654472,99.34254109],[4.53662853,0.03654646,99.34163625],[4.53662898,0.03654821,99.34073154],[4.53662943,0.03654996,99.33982699],[4.53662987,0.03655171,99.33892259],[4.53663032,0.03655345,99.33801836],[4.53663077,0.0365552,99.3371143],[4.53663121,0.03655695,99.33621042],[4.53663166,0.03655869,99.33530672],[4.53663211,0.03656044,99.33440322],[4.53663256,0.03656219,99.33349991],[4.536633,0.03656394,99.33259681],[4.53663345,0.03656568,99.33169393],[4.5366339,0.03656743,99.33079127],[4.53663434,0.03656918,99.32988883],[4.53663479,0.03657093,99.32898663],[4.53663524,0.03657267,99.32808467],[4.53663569,0.03657442,99.32718296],[4.53663613,0.03657617,99.3262815],[4.53663658,0.03657792,99.32538031],[4.53663703,0.03657966,99.32447939],[4.53663747,0.03658141,99.32357874],[4.53663792,0.03658316,99.32267838],[4.53663837,0.0365849,99.32177831],[4.53663882,0.03658665,99.32087854],[4.53663926,0.0365884,99.31997907],[4.53663971,0.03659015,99.31907992],[4.53664016,0.03659189,99.31818108],[4.5366406,0.03659364,99.31728257],[4.53664105,0.03659539,99.31638439],[4.5366415,0.03659714,99.31548653],[4.53664195,0.03659888,99.31458896],[4.53664239,0.03660063,99.31369165],[4.53664284,0.03660238,99.31279457],[4.53664329,0.03660413,99.31189768],[4.53664373,0.03660587,99.31100096],[4.53664418,0.03660762,99.31010436],[4.53664463,0.03660937,99.30920787],[4.53664507,0.03661112,99.30831145],[4.53664552,0.03661286,99.30741506],[4.53664597,0.03661461,99.30651867],[4.53664642,0.03661636,99.30562226],[4.53664686,0.03661811,99.30472579],[4.53664731,0.03661985,99.30382924],[4.53664775,0.0366216,99.30293256],[4.5366482,0.03662335,99.30203572],[4.53664865,0.0366251,99.30113871],[4.53664909,0.03662684,99.30024148],[4.53664954,0.03662859,99.299344],[4.53664998,0.03663034,99.29844625],[4.53665043,0.03663209,99.29754819],[4.53665088,0.03663383,99.29664979],[4.53665132,0.03663558,99.29575102],[4.53665177,0.03663733,99.29485188],[4.53665221,0.03663908,99.29395237],[4.53665265,0.03664083,99.29305249],[4.5366531,0.03664257,99.29215225],[4.53665354,0.03664432,99.29125165],[4.53665399,0.03664607,99.29035069],[4.53665443,0.03664782,99.28944939],[4.53665487,0.03664957,99.28854774],[4.53665532,0.03665132,99.28764574],[4.53665576,0.03665306,99.28674341],[4.5366562,0.03665481,99.28584074],[4.53665665,0.03665656,99.28493775],[4.53665709,0.03665831,99.28403442],[4.53665753,0.03666006,99.28313078],[4.53665797,0.03666181,99.28222682],[4.53665841,0.03666355,99.28132254],[4.53665886,0.0366653,99.28041795],[4.5366593,0.03666705,99.27951305],[4.53665974,0.0366688,99.27860786],[4.53666018,0.03667055,99.27770236],[4.53666062,0.0366723,99.27679657],[4.53666106,0.03667405,99.27589049],[4.5366615,0.0366758,99.27498412],[4.53666195,0.03667755,99.27407747],[4.53666239,0.03667929,99.27317054],[4.53666283,0.03668104,99.27226334],[4.53666327,0.03668279,99.27135586],[4.53666371,0.03668454,99.27044812],[4.53666415,0.03668629,99.26954012],[4.53666459,0.03668804,99.26863185],[4.53666503,0.03668979,99.26772333],[4.53666547,0.03669154,99.26681456],[4.53666591,0.03669329,99.26590554],[4.53666634,0.03669504,99.26499627],[4.53666678,0.03669679,99.26408676],[4.53666722,0.03669854,99.26317702],[4.53666766,0.03670029,99.26226705],[4.5366681,0.03670204,99.26135684],[4.53666854,0.03670378,99.26044642],[4.53666898,0.03670553,99.25953577],[4.53666942,0.03670728,99.2586249],[4.53666986,0.03670903,99.25771382],[4.53667029,0.03671078,99.25680253],[4.53667073,0.03671253,99.25589103],[4.53667117,0.03671428,99.25497933],[4.53667161,0.03671603,99.25406743],[4.53667205,0.03671778,99.25315534],[4.53667249,0.03671953,99.25224306],[4.53667292,0.03672128,99.25133058],[4.53667336,0.03672303,99.25041793],[4.5366738,0.03672478,99.24950509],[4.53667424,0.03672653,99.24859208],[4.53667468,0.03672828,99.2476789],[4.53667511,0.03673003,99.24676555],[4.53667555,0.03673178,99.24585203],[4.53667599,0.03673353,99.24493835],[4.53667643,0.03673528,99.24402447],[4.53667687,0.03673703,99.24311039],[4.53667731,0.03673878,99.24219607],[4.53667774,0.03674053,99.24128149],[4.53667818,0.03674228,99.24036664],[4.53667862,0.03674403,99.2394515],[4.53667906,0.03674578,99.23853603],[4.5366795,0.03674752,99.23762022],[4.53667994,0.03674927,99.23670405],[4.53668038,0.03675102,99.23578749],[4.53668081,0.03675277,99.23487052],[4.53668125,0.03675452,99.23395313],[4.53668169,0.03675627,99.23303528],[4.53668213,0.03675802,99.23211697],[4.53668257,0.03675977,99.23119816],[4.53668301,0.03676152,99.23027884],[4.53668345,0.03676327,99.22935898],[4.53668388,0.03676502,99.22843856],[4.53668432,0.03676677,99.22751756],[4.53668476,0.03676852,99.22659596],[4.5366852,0.03677027,99.22567374],[4.53668564,0.03677202,99.22475087],[4.53668608,0.03677377,99.22382734],[4.53668652,0.03677552,99.22290312],[4.53668695,0.03677727,99.22197819],[4.53668739,0.03677902,99.22105253],[4.53668783,0.03678077,99.22012613],[4.53668827,0.03678252,99.21919894],[4.53668871,0.03678426,99.21827097],[4.53668915,0.03678601,99.21734218],[4.53668959,0.03678776,99.21641255],[4.53669003,0.03678951,99.21548206],[4.53669046,0.03679126,99.2145507],[4.5366909,0.03679301,99.21361843],[4.53669134,0.03679476,99.21268524],[4.53669178,0.03679651,99.21175111],[4.53669222,0.03679826,99.21081602],[4.53669266,0.03680001,99.20987998],[4.53669309,0.03680176,99.20894302],[4.53669353,0.03680351,99.20800516],[4.53669397,0.03680526,99.20706642],[4.53669441,0.03680701,99.20612683],[4.53669485,0.03680876,99.20518639],[4.53669529,0.03681051,99.20424513],[4.53669573,0.03681226,99.20330308],[4.53669617,0.03681401,99.20236025],[4.5366966,0.03681576,99.20141667],[4.53669704,0.03681751,99.20047236],[4.53669748,0.03681926,99.19952733],[4.53669792,0.036821,99.19858161],[4.53669836,0.03682275,99.19763522],[4.5366988,0.0368245,99.19668817],[4.53669924,0.03682625,99.19574051],[4.53669968,0.036828,99.19479223],[4.53670012,0.03682975,99.19384338],[4.53670056,0.0368315,99.19289397],[4.536701,0.03683325,99.19194403],[4.53670144,0.036835,99.19099358],[4.53670188,0.03683675,99.19004265],[4.53670232,0.0368385,99.18909126],[4.53670275,0.03684025,99.18813943],[4.53670319,0.036842,99.18718719],[4.53670363,0.03684375,99.18623456],[4.53670407,0.03684549,99.18528156],[4.53670451,0.03684724,99.18432822],[4.53670495,0.03684899,99.18337456],[4.53670539,0.03685074,99.18242061],[4.53670583,0.03685249,99.18146639],[4.53670627,0.03685424,99.18051192],[4.53670671,0.03685599,99.17955723],[4.53670716,0.03685774,99.17860234],[4.5367076,0.03685949,99.17764727],[4.53670804,0.03686124,99.17669205],[4.53670848,0.03686299,99.1757367],[4.53670892,0.03686473,99.17478124],[4.53670936,0.03686648,99.1738257],[4.5367098,0.03686823,99.1728701],[4.53671024,0.03686998,99.17191447],[4.53671068,0.03687173,99.17095883],[4.53671112,0.03687348,99.1700032],[4.53671156,0.03687523,99.1690476],[4.536712,0.03687698,99.16809206],[4.53671244,0.03687873,99.16713661],[4.53671289,0.03688048,99.16618126],[4.53671333,0.03688222,99.16522604],[4.53671377,0.03688397,99.16427097],[4.53671421,0.03688572,99.16331608],[4.53671465,0.03688747,99.16236139],[4.53671509,0.03688922,99.16140692],[4.53671553,0.03689097,99.1604527],[4.53671598,0.03689272,99.15949875],[4.53671642,0.03689447,99.1585451],[4.53671686,0.03689621,99.15759175],[4.5367173,0.03689796,99.15663875],[4.53671774,0.03689971,99.15568608],[4.53671819,0.03690146,99.15473375],[4.53671863,0.03690321,99.15378174],[4.53671907,0.03690496,99.15283005],[4.53671951,0.03690671,99.15187869],[4.53671995,0.03690845,99.15092764],[4.5367204,0.0369102,99.14997691],[4.53672084,0.03691195,99.14902648],[4.53672128,0.0369137,99.14807635],[4.53672172,0.03691545,99.14712653],[4.53672217,0.0369172,99.146177],[4.53672261,0.03691895,99.14522776],[4.53672305,0.03692069,99.14427881],[4.53672349,0.03692244,99.14333015],[4.53672394,0.03692419,99.14238176],[4.53672438,0.03692594,99.14143365],[4.53672482,0.03692769,99.14048581],[4.53672526,0.03692944,99.13953824],[4.53672571,0.03693119,99.13859094],[4.53672615,0.03693293,99.13764389],[4.53672659,0.03693468,99.1366971],[4.53672703,0.03693643,99.13575056],[4.53672748,0.03693818,99.13480427],[4.53672792,0.03693993,99.13385822],[4.53672836,0.03694168,99.13291241],[4.5367288,0.03694343,99.13196684],[4.53672925,0.03694517,99.1310215],[4.53672969,0.03694692,99.13007639],[4.53673013,0.03694867,99.1291315],[4.53673057,0.03695042,99.12818683],[4.53673102,0.03695217,99.12724238],[4.53673146,0.03695392,99.12629814],[4.5367319,0.03695567,99.12535411],[4.53673234,0.03695741,99.12441029],[4.53673278,0.03695916,99.12346666],[4.53673323,0.03696091,99.12252324],[4.53673367,0.03696266,99.12158],[4.53673411,0.03696441,99.12063696],[4.53673455,0.03696616,99.1196941],[4.53673499,0.03696791,99.11875142],[4.53673544,0.03696965,99.11780892],[4.53673588,0.0369714,99.11686659],[4.53673632,0.03697315,99.11592443],[4.53673676,0.0369749,99.11498244],[4.5367372,0.03697665,99.11404061],[4.53673764,0.0369784,99.11309893],[4.53673808,0.03698015,99.11215741],[4.53673853,0.0369819,99.11121604],[4.53673897,0.03698365,99.11027482],[4.53673941,0.03698539,99.10933374],[4.53673985,0.03698714,99.1083928],[4.53674029,0.03698889,99.10745199],[4.53674073,0.03699064,99.10651132],[4.53674117,0.03699239,99.10557077],[4.53674161,0.03699414,99.10463034],[4.53674205,0.03699589,99.10369004],[4.53674249,0.03699764,99.10274985],[4.53674293,0.03699939,99.10180977],[4.53674337,0.03700114,99.1008698],[4.53674381,0.03700288,99.09992994],[4.53674425,0.03700463,99.09899018],[4.53674469,0.03700638,99.09805053],[4.53674513,0.03700813,99.09711099],[4.53674557,0.03700988,99.09617155],[4.53674601,0.03701163,99.09523221],[4.53674645,0.03701338,99.09429297],[4.53674689,0.03701513,99.09335384],[4.53674732,0.03701688,99.09241481],[4.53674776,0.03701863,99.09147587],[4.5367482,0.03702038,99.09053704],[4.53674864,0.03702213,99.0895983],[4.53674908,0.03702388,99.08865966],[4.53674952,0.03702563,99.08772112],[4.53674995,0.03702738,99.08678267],[4.53675039,0.03702913,99.08584432],[4.53675083,0.03703088,99.08490605],[4.53675126,0.03703263,99.08396789],[4.5367517,0.03703438,99.08302981],[4.53675214,0.03703613,99.08209182],[4.53675258,0.03703788,99.08115393],[4.53675301,0.03703963,99.08021612],[4.53675345,0.03704138,99.0792784],[4.53675388,0.03704313,99.07834076],[4.53675432,0.03704488,99.07740321],[4.53675476,0.03704663,99.07646575],[4.53675519,0.03704838,99.07552837],[4.53675563,0.03705013,99.07459108],[4.53675606,0.03705188,99.07365386],[4.5367565,0.03705363,99.07271673],[4.53675693,0.03705538,99.07177968],[4.53675737,0.03705713,99.07084271],[4.5367578,0.03705888,99.06990582],[4.53675824,0.03706063,99.06896901],[4.53675867,0.03706238,99.06803228],[4.53675911,0.03706413,99.06709564],[4.53675954,0.03706588,99.06615907],[4.53675998,0.03706763,99.06522258],[4.53676041,0.03706938,99.06428617],[4.53676084,0.03707113,99.06334984],[4.53676128,0.03707289,99.06241358],[4.53676171,0.03707464,99.06147741],[4.53676215,0.03707639,99.06054131],[4.53676258,0.03707814,99.05960529],[4.53676301,0.03707989,99.05866935],[4.53676345,0.03708164,99.05773348],[4.53676388,0.03708339,99.05679769],[4.53676431,0.03708514,99.05586198],[4.53676475,0.03708689,99.05492635],[4.53676518,0.03708864,99.05399079],[4.53676561,0.03709039,99.0530553],[4.53676604,0.03709214,99.05211989],[4.53676648,0.0370939,99.05118456],[4.53676691,0.03709565,99.0502493],[4.53676734,0.0370974,99.04931411],[4.53676778,0.03709915,99.048379],[4.53676821,0.0371009,99.04744396],[4.53676864,0.03710265,99.046509],[4.53676907,0.0371044,99.0455741],[4.53676951,0.03710615,99.04463929],[4.53676994,0.0371079,99.04370454],[4.53677037,0.03710966,99.04276987],[4.5367708,0.03711141,99.04183526],[4.53677123,0.03711316,99.04090073],[4.53677167,0.03711491,99.03996627],[4.5367721,0.03711666,99.03903189],[4.53677253,0.03711841,99.03809757],[4.53677296,0.03712016,99.03716332],[4.5367734,0.03712191,99.03622915],[4.53677383,0.03712366,99.03529504],[4.53677426,0.03712542,99.034361],[4.53677469,0.03712717,99.03342703],[4.53677512,0.03712892,99.03249314],[4.53677556,0.03713067,99.03155931],[4.53677599,0.03713242,99.03062554],[4.53677642,0.03713417,99.02969185],[4.53677685,0.03713592,99.02875822],[4.53677728,0.03713767,99.02782467],[4.53677772,0.03713942,99.02689117],[4.53677815,0.03714118,99.02595775],[4.53677858,0.03714293,99.02502439],[4.53677901,0.03714468,99.0240911],[4.53677944,0.03714643,99.02315787],[4.53677988,0.03714818,99.02222471],[4.53678031,0.03714993,99.02129162],[4.53678074,0.03715168,99.02035859],[4.53678117,0.03715343,99.01942562],[4.53678161,0.03715519,99.01849272],[4.53678204,0.03715694,99.01755988],[4.53678247,0.03715869,99.01662711],[4.5367829,0.03716044,99.01569439],[4.53678334,0.03716219,99.01476173],[4.53678377,0.03716394,99.01382912],[4.5367842,0.03716569,99.01289654],[4.53678463,0.03716744,99.01196401],[4.53678507,0.03716919,99.01103151],[4.5367855,0.03717094,99.01009903],[4.53678593,0.0371727,99.00916658],[4.53678636,0.03717445,99.00823414],[4.5367868,0.0371762,99.00730171],[4.53678723,0.03717795,99.00636929],[4.53678766,0.0371797,99.00543686],[4.5367881,0.03718145,99.00450444],[4.53678853,0.0371832,99.003572],[4.53678896,0.03718495,99.00263955],[4.53678939,0.0371867,99.00170707],[4.53678983,0.03718845,99.00077457],[4.53679026,0.0371902,98.99984204],[4.53679069,0.03719196,98.99890947],[4.53679113,0.03719371,98.99797685],[4.53679156,0.03719546,98.99704419],[4.536792,0.03719721,98.99611148],[4.53679243,0.03719896,98.99517871],[4.53679286,0.03720071,98.99424587],[4.5367933,0.03720246,98.99331296],[4.53679373,0.03720421,98.99237998],[4.53679416,0.03720596,98.99144692],[4.5367946,0.03720771,98.99051377],[4.53679503,0.03720946,98.98958053],[4.53679547,0.03721121,98.9886472],[4.5367959,0.03721296,98.98771376],[4.53679634,0.03721471,98.98678021],[4.53679677,0.03721647,98.98584655],[4.53679721,0.03721822,98.98491278],[4.53679764,0.03721997,98.98397888],[4.53679807,0.03722172,98.98304484],[4.53679851,0.03722347,98.98211068],[4.53679894,0.03722522,98.98117637],[4.53679938,0.03722697,98.98024192],[4.53679981,0.03722872,98.97930732],[4.53680025,0.03723047,98.97837255],[4.53680068,0.03723222,98.97743763],[4.53680112,0.03723397,98.97650254],[4.53680155,0.03723572,98.97556727],[4.53680199,0.03723747,98.97463183],[4.53680243,0.03723922,98.9736962],[4.53680286,0.03724097,98.97276038],[4.5368033,0.03724272,98.97182436],[4.53680373,0.03724447,98.97088815],[4.53680417,0.03724622,98.96995172],[4.5368046,0.03724797,98.96901509],[4.53680504,0.03724972,98.96807823],[4.53680547,0.03725147,98.96714115],[4.53680591,0.03725322,98.96620384],[4.53680634,0.03725497,98.9652663],[4.53680678,0.03725672,98.96432851],[4.53680721,0.03725847,98.96339048],[4.53680765,0.03726023,98.9624522],[4.53680808,0.03726198,98.96151365],[4.53680852,0.03726373,98.96057485],[4.53680895,0.03726548,98.95963577],[4.53680939,0.03726723,98.95869642],[4.53680982,0.03726898,98.95775679],[4.53681026,0.03727073,98.95681689],[4.53681069,0.03727248,98.95587672],[4.53681113,0.03727423,98.9549363],[4.53681156,0.03727598,98.95399565],[4.536812,0.03727773,98.95305478],[4.53681243,0.03727948,98.9521137],[4.53681287,0.03728123,98.95117243],[4.5368133,0.03728298,98.95023099],[4.53681373,0.03728473,98.94928938],[4.53681417,0.03728648,98.94834762],[4.5368146,0.03728823,98.94740572],[4.53681504,0.03728998,98.9464637],[4.53681547,0.03729173,98.94552158],[4.53681591,0.03729349,98.94457936],[4.53681634,0.03729524,98.94363707],[4.53681677,0.03729699,98.94269471],[4.53681721,0.03729874,98.9417523],[4.53681764,0.03730049,98.94080986],[4.53681808,0.03730224,98.93986739],[4.53681851,0.03730399,98.93892492],[4.53681894,0.03730574,98.93798246],[4.53681938,0.03730749,98.93704001],[4.53681981,0.03730924,98.93609761],[4.53682025,0.03731099,98.93515525],[4.53682068,0.03731274,98.93421296],[4.53682111,0.03731449,98.93327074],[4.53682155,0.03731624,98.93232862],[4.53682198,0.03731799,98.93138661],[4.53682242,0.03731975,98.93044472],[4.53682285,0.0373215,98.92950297],[4.53682328,0.03732325,98.92856137],[4.53682372,0.037325,98.92761994],[4.53682415,0.03732675,98.92667868],[4.53682458,0.0373285,98.92573762],[4.53682502,0.03733025,98.92479677],[4.53682545,0.037332,98.92385614],[4.53682589,0.03733375,98.92291576],[4.53682632,0.0373355,98.92197562],[4.53682675,0.03733725,98.92103575],[4.53682719,0.037339,98.92009617],[4.53682762,0.03734075,98.91915688],[4.53682805,0.03734251,98.9182179],[4.53682849,0.03734426,98.91727925],[4.53682892,0.03734601,98.91634094],[4.53682936,0.03734776,98.91540299],[4.53682979,0.03734951,98.91446541],[4.53683022,0.03735126,98.91352821],[4.53683066,0.03735301,98.91259141],[4.53683109,0.03735476,98.91165503],[4.53683152,0.03735651,98.91071907],[4.53683196,0.03735826,98.90978355],[4.53683239,0.03736001,98.90884848],[4.53683283,0.03736176,98.90791385],[4.53683326,0.03736351,98.90697967],[4.53683369,0.03736526,98.90604595],[4.53683413,0.03736701,98.90511268],[4.53683456,0.03736877,98.90417989],[4.536835,0.03737052,98.90324757],[4.53683543,0.03737227,98.90231572],[4.53683586,0.03737402,98.90138435],[4.5368363,0.03737577,98.90045347],[4.53683673,0.03737752,98.89952308],[4.53683717,0.03737927,98.89859318],[4.5368376,0.03738102,98.89766378],[4.53683803,0.03738277,98.89673489],[4.53683847,0.03738452,98.89580651],[4.5368389,0.03738627,98.89487865],[4.53683934,0.03738802,98.8939513],[4.53683977,0.03738977,98.89302448],[4.53684021,0.03739152,98.89209819],[4.53684064,0.03739328,98.89117244],[4.53684107,0.03739503,98.89024722],[4.53684151,0.03739678,98.88932255],[4.53684194,0.03739853,98.88839843],[4.53684237,0.03740028,98.88747486],[4.53684281,0.03740203,98.88655185],[4.53684324,0.03740378,98.88562941],[4.53684368,0.03740553,98.88470754],[4.53684411,0.03740728,98.88378622],[4.53684454,0.03740903,98.88286545],[4.53684498,0.03741078,98.88194519],[4.53684541,0.03741253,98.88102542],[4.53684585,0.03741428,98.88010613],[4.53684628,0.03741603,98.87918728],[4.53684671,0.03741778,98.87826886],[4.53684715,0.03741953,98.87735084],[4.53684758,0.03742128,98.8764332],[4.53684801,0.03742303,98.87551592],[4.53684845,0.03742478,98.87459898],[4.53684888,0.03742654,98.87368234],[4.53684932,0.03742829,98.872766],[4.53684975,0.03743004,98.87184992],[4.53685018,0.03743179,98.87093409],[4.53685062,0.03743354,98.87001848],[4.53685105,0.03743529,98.86910306],[4.53685148,0.03743704,98.86818782],[4.53685192,0.03743879,98.86727273],[4.53685235,0.03744054,98.86635777],[4.53685278,0.03744229,98.86544293],[4.53685321,0.03744404,98.86452818],[4.53685365,0.03744579,98.86361353],[4.53685408,0.03744755,98.86269897],[4.53685451,0.0374493,98.8617845],[4.53685495,0.03745105,98.8608701],[4.53685538,0.0374528,98.85995577],[4.53685581,0.03745455,98.85904151],[4.53685624,0.0374563,98.8581273],[4.53685668,0.03745805,98.85721314],[4.53685711,0.0374598,98.85629903],[4.53685754,0.03746155,98.85538495],[4.53685797,0.03746331,98.8544709],[4.5368584,0.03746506,98.85355688],[4.53685884,0.03746681,98.85264288],[4.53685927,0.03746856,98.85172888],[4.5368597,0.03747031,98.85081489],[4.53686013,0.03747206,98.84990089],[4.53686056,0.03747381,98.84898689],[4.53686099,0.03747556,98.84807287],[4.53686143,0.03747732,98.84715882],[4.53686186,0.03747907,98.84624475],[4.53686229,0.03748082,98.84533063],[4.53686272,0.03748257,98.84441648],[4.53686315,0.03748432,98.84350227],[4.53686358,0.03748607,98.84258801],[4.53686401,0.03748782,98.84167368],[4.53686445,0.03748958,98.84075928],[4.53686488,0.03749133,98.83984481],[4.53686531,0.03749308,98.83893024],[4.53686574,0.03749483,98.83801559],[4.53686617,0.03749658,98.83710084],[4.5368666,0.03749833,98.83618599],[4.53686703,0.03750008,98.83527102],[4.53686746,0.03750183,98.83435593],[4.53686789,0.03750359,98.83344072],[4.53686833,0.03750534,98.83252537],[4.53686876,0.03750709,98.83160989],[4.53686919,0.03750884,98.83069426],[4.53686962,0.03751059,98.82977847],[4.53687005,0.03751234,98.82886253],[4.53687048,0.0375141,98.82794642],[4.53687091,0.03751585,98.82703013],[4.53687134,0.0375176,98.82611366],[4.53687177,0.03751935,98.82519701],[4.5368722,0.0375211,98.82428015],[4.53687263,0.03752285,98.8233631],[4.53687306,0.0375246,98.82244584],[4.53687349,0.03752636,98.82152836],[4.53687392,0.03752811,98.82061065],[4.53687435,0.03752986,98.81969272],[4.53687478,0.03753161,98.81877455],[4.53687521,0.03753336,98.81785614],[4.53687565,0.03753511,98.8169375],[4.53687608,0.03753687,98.81601866],[4.53687651,0.03753862,98.81509963],[4.53687694,0.03754037,98.81418043],[4.53687737,0.03754212,98.81326108],[4.5368778,0.03754387,98.8123416],[4.53687823,0.03754562,98.811422],[4.53687866,0.03754737,98.81050232],[4.53687909,0.03754913,98.80958256],[4.53687952,0.03755088,98.80866274],[4.53687995,0.03755263,98.80774289],[4.53688038,0.03755438,98.80682303],[4.53688081,0.03755613,98.80590316],[4.53688124,0.03755788,98.80498332],[4.53688167,0.03755964,98.80406352],[4.5368821,0.03756139,98.80314378],[4.53688253,0.03756314,98.80222412],[4.53688296,0.03756489,98.80130456],[4.53688339,0.03756664,98.80038512],[4.53688382,0.03756839,98.79946581],[4.53688426,0.03757014,98.79854666],[4.53688469,0.0375719,98.79762769],[4.53688512,0.03757365,98.79670891],[4.53688555,0.0375754,98.79579035],[4.53688598,0.03757715,98.79487202],[4.53688641,0.0375789,98.79395395],[4.53688684,0.03758065,98.79303615],[4.53688727,0.0375824,98.79211864],[4.5368877,0.03758416,98.79120145],[4.53688813,0.03758591,98.79028459],[4.53688857,0.03758766,98.78936806],[4.536889,0.03758941,98.78845189],[4.53688943,0.03759116,98.78753606],[4.53688986,0.03759291,98.78662059],[4.53689029,0.03759466,98.78570548],[4.53689072,0.03759641,98.78479075],[4.53689116,0.03759817,98.78387638],[4.53689159,0.03759992,98.78296239],[4.53689202,0.03760167,98.78204879],[4.53689245,0.03760342,98.78113558],[4.53689288,0.03760517,98.78022277],[4.53689331,0.03760692,98.77931035],[4.53689375,0.03760867,98.77839834],[4.53689418,0.03761042,98.77748675],[4.53689461,0.03761218,98.77657557],[4.53689504,0.03761393,98.77566482],[4.53689547,0.03761568,98.77475449],[4.53689591,0.03761743,98.7738446],[4.53689634,0.03761918,98.77293515],[4.53689677,0.03762093,98.77202615],[4.5368972,0.03762268,98.77111759],[4.53689763,0.03762443,98.7702095],[4.53689807,0.03762618,98.76930187],[4.5368985,0.03762794,98.7683947],[4.53689893,0.03762969,98.76748801],[4.53689936,0.03763144,98.7665818],[4.53689979,0.03763319,98.76567607],[4.53690023,0.03763494,98.76477083],[4.53690066,0.03763669,98.76386609],[4.53690109,0.03763844,98.76296186],[4.53690152,0.03764019,98.76205812],[4.53690195,0.03764194,98.76115491],[4.53690239,0.0376437,98.76025221],[4.53690282,0.03764545,98.75935004],[4.53690325,0.0376472,98.75844839],[4.53690368,0.03764895,98.75754729],[4.53690412,0.0376507,98.75664672],[4.53690455,0.03765245,98.75574671],[4.53690498,0.0376542,98.75484724],[4.53690541,0.03765595,98.75394834],[4.53690584,0.03765771,98.75305],[4.53690628,0.03765946,98.75215223],[4.53690671,0.03766121,98.75125503],[4.53690714,0.03766296,98.75035842],[4.53690757,0.03766471,98.74946239],[4.536908,0.03766646,98.74856696],[4.53690844,0.03766821,98.74767213],[4.53690887,0.03766996,98.7467779],[4.5369093,0.03767171,98.74588428],[4.53690973,0.03767347,98.74499128],[4.53691016,0.03767522,98.7440989],[4.53691059,0.03767697,98.74320715],[4.53691103,0.03767872,98.74231603],[4.53691146,0.03768047,98.74142555],[4.53691189,0.03768222,98.74053572],[4.53691232,0.03768397,98.73964653],[4.53691275,0.03768572,98.73875801],[4.53691319,0.03768747,98.73787014],[4.53691362,0.03768923,98.73698295],[4.53691405,0.03769098,98.73609643],[4.53691448,0.03769273,98.73521058],[4.53691491,0.03769448,98.73432543],[4.53691534,0.03769623,98.73344096],[4.53691578,0.03769798,98.73255719],[4.53691621,0.03769973,98.73167413],[4.53691664,0.03770148,98.73079177],[4.53691707,0.03770324,98.72991013],[4.5369175,0.03770499,98.72902921],[4.53691793,0.03770674,98.72814902],[4.53691836,0.03770849,98.72726956],[4.5369188,0.03771024,98.72639083],[4.53691923,0.03771199,98.72551285],[4.53691966,0.03771374,98.72463562],[4.53692009,0.03771549,98.72375915],[4.53692052,0.03771725,98.72288343],[4.53692095,0.037719,98.72200848],[4.53692138,0.03772075,98.72113431],[4.53692181,0.0377225,98.72026092],[4.53692225,0.03772425,98.71938831],[4.53692268,0.037726,98.71851649],[4.53692311,0.03772775,98.71764546],[4.53692354,0.03772951,98.71677524],[4.53692397,0.03773126,98.71590582],[4.5369244,0.03773301,98.71503717],[4.53692483,0.03773476,98.71416929],[4.53692526,0.03773651,98.71330215],[4.53692569,0.03773826,98.71243574],[4.53692612,0.03774001,98.71157005],[4.53692655,0.03774177,98.71070505],[4.53692698,0.03774352,98.70984073],[4.53692741,0.03774527,98.70897707],[4.53692784,0.03774702,98.70811406],[4.53692827,0.03774877,98.70725169],[4.5369287,0.03775052,98.70638997],[4.53692913,0.03775228,98.70552888],[4.53692956,0.03775403,98.70466841],[4.53692999,0.03775578,98.70380857],[4.53693042,0.03775753,98.70294934],[4.53693085,0.03775928,98.70209072],[4.53693128,0.03776103,98.70123269],[4.53693171,0.03776279,98.70037527],[4.53693214,0.03776454,98.69951843],[4.53693257,0.03776629,98.69866217],[4.536933,0.03776804,98.69780649],[4.53693343,0.03776979,98.69695137],[4.53693386,0.03777154,98.69609682],[4.53693429,0.0377733,98.69524283],[4.53693472,0.03777505,98.69438938],[4.53693515,0.0377768,98.69353648],[4.53693558,0.03777855,98.69268412],[4.536936,0.0377803,98.69183228],[4.53693643,0.03778206,98.69098097],[4.53693686,0.03778381,98.69013018],[4.53693729,0.03778556,98.6892799],[4.53693772,0.03778731,98.68843012],[4.53693815,0.03778906,98.68758084],[4.53693858,0.03779081,98.68673205],[4.53693901,0.03779257,98.68588375],[4.53693943,0.03779432,98.68503593],[4.53693986,0.03779607,98.68418857],[4.53694029,0.03779782,98.68334169],[4.53694072,0.03779957,98.68249526],[4.53694115,0.03780133,98.68164928],[4.53694158,0.03780308,98.68080375],[4.536942,0.03780483,98.67995866],[4.53694243,0.03780658,98.679114],[4.53694286,0.03780833,98.67826977],[4.53694329,0.03781009,98.67742595],[4.53694372,0.03781184,98.67658255],[4.53694415,0.03781359,98.67573956],[4.53694457,0.03781534,98.67489696],[4.536945,0.0378171,98.67405476],[4.53694543,0.03781885,98.67321294],[4.53694586,0.0378206,98.67237151],[4.53694629,0.03782235,98.67153045],[4.53694671,0.0378241,98.67068975],[4.53694714,0.03782586,98.66984942],[4.53694757,0.03782761,98.66900943],[4.536948,0.03782936,98.6681698],[4.53694843,0.03783111,98.6673305],[4.53694885,0.03783286,98.66649154],[4.53694928,0.03783462,98.66565291],[4.53694971,0.03783637,98.66481459],[4.53695014,0.03783812,98.66397659],[4.53695057,0.03783987,98.66313889],[4.53695099,0.03784162,98.6623015],[4.53695142,0.03784338,98.6614644],[4.53695185,0.03784513,98.66062759],[4.53695228,0.03784688,98.65979105],[4.53695271,0.03784863,98.65895479],[4.53695313,0.03785038,98.6581188],[4.53695356,0.03785214,98.65728307],[4.53695399,0.03785389,98.65644759],[4.53695442,0.03785564,98.65561235],[4.53695485,0.03785739,98.65477736],[4.53695528,0.03785914,98.6539426],[4.5369557,0.0378609,98.65310807],[4.53695613,0.03786265,98.65227376],[4.53695656,0.0378644,98.65143966],[4.53695699,0.03786615,98.65060577],[4.53695742,0.0378679,98.64977208],[4.53695785,0.03786966,98.64893858],[4.53695827,0.03787141,98.64810527],[4.5369587,0.03787316,98.64727214],[4.53695913,0.03787491,98.64643918],[4.53695956,0.03787666,98.64560639],[4.53695999,0.03787842,98.64477376],[4.53696042,0.03788017,98.64394129],[4.53696085,0.03788192,98.64310896],[4.53696127,0.03788367,98.64227677],[4.5369617,0.03788542,98.64144471],[4.53696213,0.03788718,98.64061278],[4.53696256,0.03788893,98.63978099],[4.53696299,0.03789068,98.63894935],[4.53696342,0.03789243,98.63811787],[4.53696385,0.03789418,98.63728656],[4.53696427,0.03789594,98.63645544],[4.5369647,0.03789769,98.63562451],[4.53696513,0.03789944,98.63479378],[4.53696556,0.03790119,98.63396327],[4.53696599,0.03790294,98.63313298],[4.53696642,0.03790469,98.63230294],[4.53696685,0.03790645,98.63147314],[4.53696728,0.0379082,98.63064361],[4.53696771,0.03790995,98.62981435],[4.53696813,0.0379117,98.62898537],[4.53696856,0.03791345,98.62815669],[4.53696899,0.03791521,98.62732831],[4.53696942,0.03791696,98.62650025],[4.53696985,0.03791871,98.62567252],[4.53697028,0.03792046,98.62484513],[4.53697071,0.03792221,98.62401809],[4.53697114,0.03792396,98.62319141],[4.53697157,0.03792572,98.62236511],[4.536972,0.03792747,98.62153919],[4.53697243,0.03792922,98.62071367],[4.53697286,0.03793097,98.61988855],[4.53697329,0.03793272,98.61906384],[4.53697372,0.03793447,98.61823953],[4.53697415,0.03793623,98.61741564],[4.53697458,0.03793798,98.61659215],[4.536975,0.03793973,98.61576907],[4.53697543,0.03794148,98.6149464],[4.53697586,0.03794323,98.61412414],[4.53697629,0.03794498,98.61330229],[4.53697672,0.03794674,98.61248086],[4.53697715,0.03794849,98.61165984],[4.53697758,0.03795024,98.61083923],[4.53697801,0.03795199,98.61001904],[4.53697844,0.03795374,98.60919927],[4.53697887,0.03795549,98.60837991],[4.5369793,0.03795725,98.60756097],[4.53697973,0.037959,98.60674245],[4.53698016,0.03796075,98.60592435],[4.53698059,0.0379625,98.60510667],[4.53698102,0.03796425,98.60428941],[4.53698146,0.037966,98.60347258],[4.53698189,0.03796775,98.60265616],[4.53698232,0.03796951,98.60184017],[4.53698275,0.03797126,98.60102461],[4.53698318,0.03797301,98.60020947],[4.53698361,0.03797476,98.59939476],[4.53698404,0.03797651,98.59858047],[4.53698447,0.03797826,98.59776662],[4.5369849,0.03798002,98.59695319],[4.53698533,0.03798177,98.59614019],[4.53698576,0.03798352,98.59532762],[4.53698619,0.03798527,98.59451549],[4.53698662,0.03798702,98.59370379],[4.53698705,0.03798877,98.59289252],[4.53698748,0.03799052,98.59208168],[4.53698791,0.03799228,98.59127128],[4.53698834,0.03799403,98.59046132],[4.53698877,0.03799578,98.58965179],[4.5369892,0.03799753,98.5888427],[4.53698963,0.03799928,98.58803405],[4.53699006,0.03800103,98.58722584],[4.53699049,0.03800278,98.58641808],[4.53699092,0.03800454,98.58561075],[4.53699135,0.03800629,98.58480386],[4.53699178,0.03800804,98.58399742],[4.53699221,0.03800979,98.58319142],[4.53699264,0.03801154,98.58238587],[4.53699307,0.03801329,98.58158076],[4.5369935,0.03801505,98.5807761],[4.53699393,0.0380168,98.57997188],[4.53699436,0.03801855,98.57916812],[4.53699479,0.0380203,98.5783648],[4.53699522,0.03802205,98.57756194],[4.53699565,0.0380238,98.57675952],[4.53699608,0.03802555,98.57595756],[4.53699651,0.03802731,98.57515605],[4.53699694,0.03802906,98.574355],[4.53699737,0.03803081,98.57355439],[4.5369978,0.03803256,98.57275425],[4.53699823,0.03803431,98.57195456],[4.53699866,0.03803606,98.57115533],[4.53699909,0.03803782,98.57035656],[4.53699952,0.03803957,98.56955824],[4.53699995,0.03804132,98.56876039],[4.53700038,0.03804307,98.567963],[4.53700081,0.03804482,98.56716607],[4.53700124,0.03804657,98.5663696],[4.53700167,0.03804833,98.56557359],[4.5370021,0.03805008,98.56477805],[4.53700253,0.03805183,98.56398298],[4.53700296,0.03805358,98.56318837],[4.53700338,0.03805533,98.56239423],[4.53700381,0.03805708,98.56160056],[4.53700424,0.03805884,98.56080736],[4.53700467,0.03806059,98.56001463],[4.5370051,0.03806234,98.55922237],[4.53700553,0.03806409,98.55843058],[4.53700596,0.03806584,98.55763926],[4.53700638,0.0380676,98.55684842],[4.53700681,0.03806935,98.55605805],[4.53700724,0.0380711,98.55526815],[4.53700767,0.03807285,98.55447874],[4.5370081,0.0380746,98.5536898],[4.53700852,0.03807636,98.55290134],[4.53700895,0.03807811,98.55211336],[4.53700938,0.03807986,98.55132586],[4.53700981,0.03808161,98.55053885],[4.53701023,0.03808337,98.54975235],[4.53701066,0.03808512,98.5489664],[4.53701109,0.03808687,98.54818101],[4.53701151,0.03808862,98.54739621],[4.53701194,0.03809037,98.54661202],[4.53701237,0.03809213,98.54582848],[4.53701279,0.03809388,98.54504559],[4.53701322,0.03809563,98.5442634],[4.53701364,0.03809738,98.54348192],[4.53701407,0.03809914,98.54270118],[4.5370145,0.03810089,98.5419212],[4.53701492,0.03810264,98.54114202],[4.53701535,0.03810439,98.54036364],[4.53701577,0.03810615,98.5395861],[4.5370162,0.0381079,98.53880943],[4.53701663,0.03810965,98.53803364],[4.53701705,0.03811141,98.53725876],[4.53701748,0.03811316,98.53648482],[4.5370179,0.03811491,98.53571184],[4.53701833,0.03811666,98.53493985],[4.53701875,0.03811842,98.53416886],[4.53701918,0.03812017,98.53339891],[4.5370196,0.03812192,98.53263002],[4.53702003,0.03812367,98.5318622],[4.53702045,0.03812543,98.5310955],[4.53702088,0.03812718,98.53032992],[4.5370213,0.03812893,98.5295655],[4.53702173,0.03813068,98.52880225],[4.53702215,0.03813244,98.52804021],[4.53702258,0.03813419,98.5272794],[4.537023,0.03813594,98.52651983],[4.53702343,0.0381377,98.52576154],[4.53702385,0.03813945,98.52500455],[4.53702428,0.0381412,98.52424888],[4.5370247,0.03814295,98.52349455],[4.53702513,0.03814471,98.52274159],[4.53702555,0.03814646,98.52199003],[4.53702598,0.03814821,98.52123988],[4.53702641,0.03814996,98.52049116],[4.53702683,0.03815172,98.51974391],[4.53702726,0.03815347,98.51899815],[4.53702768,0.03815522,98.51825389],[4.53702811,0.03815698,98.51751117],[4.53702853,0.03815873,98.51677001],[4.53702896,0.03816048,98.51603043],[4.53702938,0.03816223,98.51529247],[4.53702981,0.03816399,98.51455615],[4.53703023,0.03816574,98.51382151],[4.53703066,0.03816749,98.51308856],[4.53703109,0.03816924,98.51235733],[4.53703151,0.038171,98.51162786],[4.53703194,0.03817275,98.51090017],[4.53692606,0.03819871,98.39653286]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":1,"type":"shoulder","predecessorId":1},{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":2,"type":"none","predecessorId":2}],"roadId":"1004600","singleSide":false,"rightLanes":[{"successorId":-6,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"id":-6,"type":"none","predecessorId":0},{"successorId":-5,"level":true,"heights":[{"outer":0.15,"inner":0.025}],"id":-5,"type":"border","predecessorId":0},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"id":-4,"type":"border","predecessorId":0},{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-3,"type":"stop","predecessorId":0},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.53649495,0.03650002,99.26451101],[4.53649451,0.03649827,99.26522096],[4.53649408,0.03649652,99.2659302],[4.53649364,0.03649477,99.26663877],[4.5364932,0.03649302,99.26734672],[4.53649276,0.03649128,99.26805408],[4.53649233,0.03648953,99.26876088],[4.53649189,0.03648778,99.26946717],[4.53649145,0.03648603,99.27017298],[4.53649101,0.03648428,99.27087836],[4.53649058,0.03648253,99.27158333],[4.53649014,0.03648079,99.27228795],[4.5364897,0.03647904,99.27299224],[4.53648927,0.03647729,99.27369623],[4.53648883,0.03647554,99.27439993],[4.53648839,0.03647379,99.27510335],[4.53648796,0.03647204,99.27580648],[4.53648752,0.0364703,99.27650932],[4.53648708,0.03646855,99.27721188],[4.53648664,0.0364668,99.27791416],[4.53648621,0.03646505,99.27861616],[4.53648577,0.0364633,99.27931789],[4.53648533,0.03646155,99.28001933],[4.5364849,0.03645981,99.28072051],[4.53648446,0.03645807,99.28142141],[4.53648403,0.03645632,99.28212204],[4.53648359,0.03645457,99.2828224],[4.53648315,0.03645282,99.28352249],[4.53648272,0.03645107,99.28422231],[4.53648228,0.03644932,99.28492188],[4.53648184,0.03644758,99.28562118],[4.53648141,0.03644583,99.28632021],[4.53648097,0.03644408,99.28701899],[4.53648053,0.03644233,99.28771752],[4.53648009,0.03644058,99.28841578],[4.53647966,0.03643883,99.28911379],[4.53647922,0.03643709,99.28981155],[4.53647878,0.03643534,99.29050906],[4.53647834,0.03643359,99.29120632],[4.53647791,0.03643184,99.29190332],[4.53647747,0.03643009,99.29260009],[4.53647703,0.03642835,99.2932966],[4.53647659,0.0364266,99.29399288],[4.53647615,0.03642485,99.29468891],[4.53647571,0.0364231,99.2953847],[4.53647528,0.03642135,99.29608025],[4.53647484,0.03641961,99.29677557],[4.5364744,0.03641786,99.29747065],[4.53647396,0.03641611,99.29816549],[4.53647352,0.03641436,99.2988601],[4.53647308,0.03641261,99.29955448],[4.53647264,0.03641087,99.30024863],[4.5364722,0.03640912,99.30094254],[4.53647176,0.03640737,99.30163624],[4.53647132,0.03640562,99.3023297],[4.53647088,0.03640388,99.30302294],[4.53647043,0.03640213,99.30371596],[4.53646999,0.03640038,99.30440875],[4.53646955,0.03639864,99.30510132],[4.53646911,0.03639689,99.30579368],[4.53646867,0.03639514,99.30648581],[4.53646822,0.03639339,99.30717773],[4.53646778,0.03639165,99.30786943],[4.53646734,0.0363899,99.30856092],[4.53646689,0.03638815,99.30925219],[4.53646645,0.03638641,99.30994326],[4.53646601,0.03638466,99.31063411],[4.53646556,0.03638291,99.31132475],[4.53646512,0.03638117,99.31201519],[4.53646467,0.03637942,99.31270541],[4.53646423,0.03637768,99.31339543],[4.53646378,0.03637593,99.31408525],[4.53646334,0.03637418,99.31477486],[4.53646289,0.03637244,99.31546423],[4.53646244,0.03637069,99.31615333],[4.536462,0.03636895,99.31684217],[4.53646155,0.0363672,99.31753075],[4.5364611,0.03636545,99.31821906],[4.53646066,0.03636371,99.31890711],[4.53646021,0.03636196,99.31959491],[4.53645976,0.03636022,99.32028245],[4.53645931,0.03635847,99.32096972],[4.53645887,0.03635673,99.32165675],[4.53645842,0.03635498,99.32234352],[4.53645797,0.03635323,99.32303004],[4.53645752,0.03635149,99.32371631],[4.53645707,0.03634974,99.32440233],[4.53645662,0.036348,99.3250881],[4.53645618,0.03634625,99.32577363],[4.53645573,0.03634451,99.32645891],[4.53645528,0.03634276,99.32714394],[4.53645483,0.03634102,99.32782874],[4.53645438,0.03633927,99.32851329],[4.53645393,0.03633753,99.32919761],[4.53645348,0.03633578,99.32988168],[4.53645303,0.03633404,99.33056552],[4.53645258,0.03633229,99.33124913],[4.53645213,0.03633055,99.3319325],[4.53645168,0.0363288,99.33261563],[4.53645123,0.03632706,99.33329854],[4.53645078,0.03632531,99.33398121],[4.53645033,0.03632357,99.33466366],[4.53644988,0.03632182,99.33534587],[4.53644943,0.03632008,99.33602787],[4.53644898,0.03631833,99.33670963],[4.53644853,0.03631659,99.33739117],[4.53644808,0.03631484,99.3380725],[4.53644763,0.0363131,99.33875361],[4.53644718,0.03631135,99.33943453],[4.53644673,0.03630961,99.34011526],[4.53644628,0.03630786,99.34079581],[4.53644583,0.03630612,99.34147618],[4.53644538,0.03630437,99.3421564],[4.53644493,0.03630263,99.34283647],[4.53644448,0.03630088,99.3435164],[4.53644403,0.03629914,99.34419619],[4.53644358,0.03629739,99.34487587],[4.53644312,0.03629565,99.34555543],[4.53644267,0.0362939,99.3462349],[4.53644222,0.03629216,99.34691427],[4.53644177,0.03629041,99.34759356],[4.53644132,0.03628867,99.34827278],[4.53644087,0.03628692,99.34895194],[4.53644042,0.03628518,99.34963104],[4.53643997,0.03628343,99.3503101],[4.53643953,0.03628168,99.35098911],[4.53643908,0.03627994,99.35166809],[4.53643863,0.03627819,99.35234704],[4.53643818,0.03627645,99.35302596],[4.53643773,0.0362747,99.35370487],[4.53643728,0.03627296,99.35438377],[4.53643683,0.03627121,99.35506266],[4.53643638,0.03626947,99.35574155],[4.53643593,0.03626772,99.35642044],[4.53643548,0.03626598,99.35709935],[4.53643503,0.03626423,99.35777828],[4.53643458,0.03626249,99.35845723],[4.53643414,0.03626074,99.35913621],[4.53643369,0.036259,99.35981522],[4.53643324,0.03625725,99.36049428],[4.53643279,0.0362555,99.36117339],[4.53643234,0.03625376,99.36185255],[4.53643189,0.03625201,99.36253177],[4.53643144,0.03625027,99.36321106],[4.536431,0.03624852,99.36389042],[4.53643055,0.03624678,99.36456986],[4.5364301,0.03624503,99.36524939],[4.53642965,0.03624329,99.36592902],[4.5364292,0.03624154,99.36660878],[4.53642875,0.0362398,99.36728871],[4.53642831,0.03623805,99.36796883],[4.53642786,0.0362363,99.36864918],[4.53642741,0.03623456,99.36932979],[4.53642696,0.03623281,99.37001066],[4.53642651,0.03623107,99.37069181],[4.53642606,0.03622932,99.37137324],[4.53642562,0.03622758,99.37205494],[4.53642517,0.03622583,99.37273693],[4.53642472,0.03622408,99.3734192],[4.53642427,0.03622234,99.37410176],[4.53642383,0.03622059,99.37478462],[4.53642338,0.03621885,99.37546777],[4.53642293,0.0362171,99.37615122],[4.53642248,0.03621536,99.37683497],[4.53642203,0.03621361,99.37751902],[4.53642159,0.03621186,99.37820339],[4.53642114,0.03621012,99.37888807],[4.53642069,0.03620837,99.37957306],[4.53642024,0.03620663,99.38025837],[4.53641979,0.03620488,99.38094401],[4.53641935,0.03620314,99.38162996],[4.5364189,0.03620139,99.38231625],[4.53641845,0.03619965,99.38300287],[4.536418,0.0361979,99.38368982],[4.53641756,0.03619615,99.38437711],[4.53641711,0.03619441,99.38506474],[4.53641666,0.03619266,99.38575271],[4.53641621,0.03619092,99.38644103],[4.53641576,0.03618917,99.38712971],[4.53641532,0.03618743,99.38781873],[4.53641487,0.03618568,99.38850812],[4.53641442,0.03618393,99.38919786],[4.53641397,0.03618219,99.38988797],[4.53641352,0.03618044,99.39057844],[4.53641308,0.0361787,99.39126928],[4.53641263,0.03617695,99.3919605],[4.53641218,0.03617521,99.39265209],[4.53641173,0.03617346,99.39334406],[4.53641128,0.03617171,99.39403641],[4.53641083,0.03616997,99.39472915],[4.53641039,0.03616822,99.39542228],[4.53640994,0.03616648,99.3961158],[4.53640949,0.03616473,99.39680972],[4.53640904,0.03616299,99.39750403],[4.53640859,0.03616124,99.39819874],[4.53640814,0.0361595,99.39889386],[4.53640769,0.03615775,99.39958939],[4.53640725,0.03615601,99.40028533],[4.5364068,0.03615426,99.40098168],[4.53640635,0.03615251,99.40167845],[4.5364059,0.03615077,99.40237564],[4.53640545,0.03614902,99.40307326],[4.536405,0.03614728,99.4037713],[4.53640455,0.03614553,99.40446977],[4.5364041,0.03614379,99.40516868],[4.53640365,0.03614204,99.40586802],[4.5364032,0.0361403,99.4065678],[4.53640276,0.03613855,99.40726802],[4.53640231,0.03613681,99.40796868],[4.53640186,0.03613506,99.40866978],[4.53640141,0.03613331,99.40937132],[4.53640096,0.03613157,99.4100733],[4.53640051,0.03612982,99.41077574],[4.53640006,0.03612808,99.41147865],[4.53639961,0.03612633,99.41218205],[4.53639916,0.03612459,99.41288597],[4.53639871,0.03612284,99.41359042],[4.53639826,0.0361211,99.41429541],[4.53639781,0.03611935,99.41500096],[4.53639736,0.03611761,99.41570707],[4.53639691,0.03611586,99.41641375],[4.53639646,0.03611412,99.41712102],[4.53639601,0.03611237,99.41782888],[4.53639556,0.03611063,99.41853734],[4.53639511,0.03610888,99.41924641],[4.53639466,0.03610714,99.41995609],[4.53639421,0.03610539,99.42066641],[4.53639376,0.03610365,99.42137736],[4.53639331,0.0361019,99.42208897],[4.53639286,0.03610016,99.42280123],[4.53639241,0.03609841,99.42351415],[4.53639196,0.03609667,99.42422775],[4.53639151,0.03609492,99.42494203],[4.53639106,0.03609317,99.42565701],[4.53639061,0.03609143,99.42637269],[4.53639016,0.03608968,99.42708908],[4.53638971,0.03608794,99.4278062],[4.53638926,0.03608619,99.42852404],[4.53638881,0.03608445,99.42924263],[4.53638836,0.0360827,99.42996196],[4.53638791,0.03608096,99.43068206],[4.53638746,0.03607921,99.43140292],[4.53638701,0.03607747,99.43212456],[4.53638656,0.03607572,99.43284698],[4.53638611,0.03607398,99.4335702],[4.53638566,0.03607223,99.43429423],[4.53638521,0.03607049,99.43501907],[4.53638476,0.03606874,99.43574473],[4.53638431,0.036067,99.43647123],[4.53638386,0.03606525,99.43719857],[4.53638341,0.03606351,99.43792676],[4.53638296,0.03606176,99.43865581],[4.53638251,0.03606002,99.43938574],[4.53638206,0.03605827,99.44011654],[4.53638161,0.03605653,99.44084823],[4.53638116,0.03605478,99.44158081],[4.5363807,0.03605304,99.44231431],[4.53638025,0.03605129,99.44304872],[4.5363798,0.03604955,99.44378405],[4.53637935,0.0360478,99.44452033],[4.5363789,0.03604606,99.44525754],[4.53637845,0.03604431,99.44599571],[4.536378,0.03604257,99.44673484],[4.53637755,0.03604082,99.44747493],[4.5363771,0.03603908,99.448216],[4.53637665,0.03603733,99.44895805],[4.5363762,0.03603559,99.44970108],[4.53637575,0.03603384,99.4504451],[4.5363753,0.03603209,99.45119012],[4.53637485,0.03603035,99.45193613],[4.5363744,0.0360286,99.45268315],[4.53637395,0.03602686,99.45343119],[4.5363735,0.03602511,99.45418024],[4.53637305,0.03602337,99.45493031],[4.5363726,0.03602162,99.45568141],[4.53637215,0.03601988,99.45643355],[4.5363717,0.03601813,99.45718672],[4.53637125,0.03601639,99.45794094],[4.5363708,0.03601464,99.45869621],[4.53637035,0.0360129,99.45945254],[4.5363699,0.03601115,99.46020992],[4.53636945,0.03600941,99.46096837],[4.536369,0.03600766,99.4617279],[4.53636855,0.03600592,99.4624885],[4.5363681,0.03600417,99.46325019],[4.53636766,0.03600243,99.46401296],[4.53636721,0.03600068,99.46477683],[4.53636676,0.03599893,99.46554179],[4.53636631,0.03599719,99.46630786],[4.53636586,0.03599544,99.46707505],[4.53636541,0.0359937,99.46784334],[4.53636496,0.03599195,99.46861276],[4.53636451,0.03599021,99.46938329],[4.53636406,0.03598846,99.47015494],[4.53636361,0.03598672,99.47092772],[4.53636316,0.03598497,99.47170162],[4.53636271,0.03598323,99.47247664],[4.53636226,0.03598148,99.4732528],[4.53636181,0.03597974,99.47403008],[4.53636136,0.03597799,99.47480849],[4.53636091,0.03597625,99.47558804],[4.53636046,0.0359745,99.47636872],[4.53636001,0.03597275,99.47715054],[4.53635956,0.03597101,99.4779335],[4.53635911,0.03596926,99.47871759],[4.53635866,0.03596752,99.47950283],[4.53635821,0.03596577,99.48028921],[4.53635776,0.03596403,99.48107672],[4.53635731,0.03596228,99.48186536],[4.53635686,0.03596054,99.4826551],[4.53635641,0.03595879,99.48344591],[4.53635596,0.03595705,99.48423778],[4.53635552,0.0359553,99.48503068],[4.53635507,0.03595356,99.48582459],[4.53635462,0.03595181,99.4866195],[4.53635417,0.03595006,99.48741538],[4.53635372,0.03594832,99.48821221],[4.53635327,0.03594657,99.48900997],[4.53635282,0.03594483,99.48980863],[4.53635237,0.03594308,99.49060819],[4.53635192,0.03594134,99.49140861],[4.53635147,0.03593959,99.49220987],[4.53635102,0.03593785,99.49301195],[4.53635057,0.0359361,99.49381484],[4.53635012,0.03593436,99.49461851],[4.53634967,0.03593261,99.49542294],[4.53634922,0.03593087,99.49622811],[4.53634877,0.03592912,99.497034],[4.53634831,0.03592738,99.49784059],[4.53634786,0.03592563,99.49864785],[4.53634741,0.03592389,99.49945577],[4.53634696,0.03592214,99.50026432],[4.53634651,0.0359204,99.50107348],[4.53634606,0.03591865,99.50188323],[4.53634561,0.03591691,99.50269355],[4.53634516,0.03591516,99.50350442],[4.53634471,0.03591342,99.5043158],[4.53634426,0.03591167,99.5051277],[4.53634381,0.03590993,99.50594007],[4.53634336,0.03590818,99.50675292],[4.53634291,0.03590644,99.50756621],[4.53634246,0.03590469,99.50837994],[4.536342,0.03590295,99.50919408],[4.53634155,0.0359012,99.51000863],[4.5363411,0.03589946,99.51082355],[4.53634065,0.03589771,99.51163883],[4.5363402,0.03589597,99.51245445],[4.53633975,0.03589422,99.5132704],[4.5363393,0.03589248,99.51408667],[4.53633884,0.03589073,99.51490322],[4.53633839,0.03588899,99.51572004],[4.53633794,0.03588724,99.51653712],[4.53633749,0.0358855,99.51735444],[4.53633704,0.03588375,99.51817198],[4.53633659,0.03588201,99.51898971],[4.53633613,0.03588026,99.51980764],[4.53633568,0.03587852,99.52062573],[4.53633523,0.03587677,99.52144397],[4.53633478,0.03587503,99.52226234],[4.53633432,0.03587328,99.52308082],[4.53633387,0.03587154,99.5238994],[4.53633342,0.03586979,99.52471806],[4.53633297,0.03586805,99.52553678],[4.53633252,0.0358663,99.52635554],[4.53633206,0.03586456,99.52717433],[4.53633161,0.03586281,99.52799312],[4.53633116,0.03586107,99.52881191],[4.53633071,0.03585933,99.52963066],[4.53633025,0.03585758,99.53044937],[4.5363298,0.03585584,99.53126802],[4.53632935,0.03585409,99.53208659],[4.5363289,0.03585235,99.53290505],[4.53632844,0.0358506,99.5337234],[4.53632799,0.03584886,99.53454162],[4.53632754,0.03584711,99.53535969],[4.53632708,0.03584537,99.53617758],[4.53632663,0.03584362,99.53699529],[4.53632618,0.03584188,99.53781279],[4.53632573,0.03584013,99.53863008],[4.53632527,0.03583839,99.53944712],[4.53632482,0.03583665,99.5402639],[4.53632437,0.0358349,99.54108041],[4.53632391,0.03583316,99.54189662],[4.53632346,0.03583141,99.54271253],[4.53632301,0.03582967,99.54352811],[4.53632256,0.03582792,99.54434334],[4.5363221,0.03582618,99.54515822],[4.53632165,0.03582443,99.54597272],[4.5363212,0.03582269,99.54678683],[4.53632074,0.03582094,99.54760053],[4.53632029,0.0358192,99.5484138],[4.53631984,0.03581746,99.54922663],[4.53631938,0.03581571,99.55003899],[4.53631893,0.03581397,99.55085089],[4.53631848,0.03581222,99.55166229],[4.53631802,0.03581048,99.55247317],[4.53631757,0.03580873,99.55328354],[4.53631712,0.03580699,99.55409336],[4.53631667,0.03580524,99.55490262],[4.53631621,0.0358035,99.5557113],[4.53631576,0.03580175,99.55651939],[4.53631531,0.03580001,99.55732687],[4.53631485,0.03579827,99.55813372],[4.5363144,0.03579652,99.55893994],[4.53631395,0.03579478,99.55974549],[4.53631349,0.03579303,99.56055036],[4.53631304,0.03579129,99.56135454],[4.53631259,0.03578954,99.56215801],[4.53631213,0.0357878,99.56296075],[4.53631168,0.03578605,99.56376275],[4.53631123,0.03578431,99.56456399],[4.53631077,0.03578256,99.56536446],[4.53631032,0.03578082,99.56616412],[4.53630987,0.03577908,99.56696298],[4.53630942,0.03577733,99.56776101],[4.53630896,0.03577559,99.5685582],[4.53630851,0.03577384,99.56935453],[4.53630806,0.0357721,99.57014998],[4.5363076,0.03577035,99.57094453],[4.53630715,0.03576861,99.57173818],[4.5363067,0.03576686,99.5725309],[4.53630625,0.03576512,99.57332267],[4.53630579,0.03576337,99.57411348],[4.53630534,0.03576163,99.57490332],[4.53630489,0.03575988,99.57569216],[4.53630443,0.03575814,99.57647998],[4.53630398,0.0357564,99.57726678],[4.53630353,0.03575465,99.57805254],[4.53630308,0.03575291,99.57883723],[4.53630262,0.03575116,99.57962085],[4.53630217,0.03574942,99.58040337],[4.53630172,0.03574767,99.58118478],[4.53630127,0.03574593,99.58196506],[4.53630081,0.03574418,99.5827442],[4.53630036,0.03574244,99.58352217],[4.53629991,0.03574069,99.58429896],[4.53629946,0.03573895,99.58507456],[4.536299,0.0357372,99.58584895],[4.53629855,0.03573546,99.5866221],[4.5362981,0.03573371,99.58739402],[4.53629765,0.03573197,99.58816466],[4.53629719,0.03573022,99.58893403],[4.53629674,0.03572848,99.5897021],[4.53629629,0.03572673,99.59046886],[4.53629584,0.03572499,99.59123429],[4.53629538,0.03572325,99.59199836],[4.53629493,0.0357215,99.59276106],[4.53629448,0.03571976,99.59352236],[4.53629403,0.03571801,99.59428223],[4.53629357,0.03571627,99.59504065],[4.53629312,0.03571452,99.59579761],[4.53629267,0.03571278,99.59655307],[4.53629222,0.03571103,99.59730701],[4.53629176,0.03570929,99.59805942],[4.53629131,0.03570754,99.59881026],[4.53629086,0.0357058,99.59955951],[4.53629041,0.03570405,99.60030715],[4.53628996,0.03570231,99.60105316],[4.5362895,0.03570057,99.60179751],[4.53628905,0.03569882,99.60254018],[4.5362886,0.03569708,99.60328115],[4.53628815,0.03569533,99.60402039],[4.53628769,0.03569359,99.60475788],[4.53628724,0.03569184,99.6054936],[4.53628679,0.0356901,99.60622752],[4.53628633,0.03568835,99.60695963],[4.53628588,0.03568661,99.60768989],[4.53628543,0.03568486,99.60841829],[4.53628498,0.03568312,99.60914479],[4.53628452,0.03568137,99.60986939],[4.53628407,0.03567963,99.61059206],[4.53628362,0.03567788,99.61131276],[4.53628316,0.03567614,99.61203149],[4.53628271,0.0356744,99.61274821],[4.53628226,0.03567265,99.61346291],[4.5362818,0.03567091,99.61417556],[4.53628135,0.03566916,99.61488615],[4.5362809,0.03566742,99.61559466],[4.53628044,0.03566567,99.61630108],[4.53627999,0.03566393,99.61700542],[4.53627954,0.03566218,99.61770765],[4.53627908,0.03566044,99.61840778],[4.53627863,0.0356587,99.61910579],[4.53627818,0.03565695,99.61980167],[4.53627772,0.03565521,99.62049542],[4.53627727,0.03565346,99.62118703],[4.53627681,0.03565172,99.62187648],[4.53627636,0.03564997,99.62256377],[4.53627591,0.03564823,99.62324889],[4.53627545,0.03564649,99.62393183],[4.536275,0.03564474,99.62461259],[4.53627454,0.035643,99.62529114],[4.53627409,0.03564125,99.62596749],[4.53627364,0.03563951,99.62664163],[4.53627318,0.03563776,99.62731354],[4.53627273,0.03563602,99.62798322],[4.53627227,0.03563428,99.62865065],[4.53627182,0.03563253,99.62931584],[4.53627136,0.03563079,99.62997876],[4.53627091,0.03562904,99.63063941],[4.53627045,0.0356273,99.63129779],[4.53627,0.03562556,99.63195388],[4.53626955,0.03562381,99.63260767],[4.53626909,0.03562207,99.63325915],[4.53626864,0.03562032,99.63390832],[4.53626818,0.03561858,99.63455516],[4.53626773,0.03561683,99.63519967],[4.53626727,0.03561509,99.63584183],[4.53626682,0.03561335,99.63648165],[4.53626636,0.0356116,99.6371191],[4.53626591,0.03560986,99.63775417],[4.53626545,0.03560811,99.63838687],[4.536265,0.03560637,99.63901717],[4.53626454,0.03560463,99.63964508],[4.53626409,0.03560288,99.64027057],[4.53626364,0.03560114,99.64089365],[4.53626318,0.03559939,99.64151429],[4.53626273,0.03559765,99.64213249],[4.53626227,0.03559591,99.64274825],[4.53626182,0.03559416,99.64336154],[4.53626136,0.03559242,99.64397236],[4.53626091,0.03559067,99.64458071],[4.53626045,0.03558893,99.64518656],[4.53626,0.03558719,99.64578992],[4.53625954,0.03558544,99.6463908],[4.53625909,0.0355837,99.6469892],[4.53625863,0.03558195,99.64758516],[4.53625818,0.03558021,99.64817869],[4.53625773,0.03557846,99.64876982],[4.53625727,0.03557672,99.64935855],[4.53625682,0.03557498,99.64994492],[4.53625636,0.03557323,99.65052894],[4.53625591,0.03557149,99.65111063],[4.53625545,0.03556974,99.65169001],[4.536255,0.035568,99.6522671],[4.53625455,0.03556626,99.65284193],[4.53625409,0.03556451,99.6534145],[4.53625364,0.03556277,99.65398484],[4.53625318,0.03556102,99.65455297],[4.53625273,0.03555928,99.65511891],[4.53625228,0.03555753,99.65568267],[4.53625182,0.03555579,99.65624424],[4.53625137,0.03555405,99.65680362],[4.53625092,0.0355523,99.65736081],[4.53625046,0.03555056,99.65791581],[4.53625001,0.03554881,99.6584686],[4.53624955,0.03554707,99.65901919],[4.5362491,0.03554532,99.65956757],[4.53624865,0.03554358,99.66011374],[4.53624819,0.03554184,99.66065769],[4.53624774,0.03554009,99.66119943],[4.53624729,0.03553835,99.66173893],[4.53624683,0.0355366,99.66227621],[4.53624638,0.03553486,99.66281126],[4.53624593,0.03553311,99.66334407],[4.53624547,0.03553137,99.66387464],[4.53624502,0.03552962,99.66440297],[4.53624457,0.03552788,99.66492905],[4.53624411,0.03552614,99.66545288],[4.53624366,0.03552439,99.66597445],[4.53624321,0.03552265,99.66649376],[4.53624275,0.0355209,99.66701082],[4.5362423,0.03551916,99.6675256],[4.53624185,0.03551741,99.66803812],[4.53624139,0.03551567,99.66854836],[4.53624094,0.03551393,99.66905632],[4.53624049,0.03551218,99.669562],[4.53624003,0.03551044,99.6700654],[4.53623958,0.03550869,99.67056651],[4.53623913,0.03550695,99.67106532],[4.53623867,0.0355052,99.67156184],[4.53623822,0.03550346,99.67205606],[4.53623776,0.03550172,99.67254797],[4.53623731,0.03549997,99.67303758],[4.53623686,0.03549823,99.67352488],[4.5362364,0.03549648,99.67400986],[4.53623595,0.03549474,99.67449253],[4.53623549,0.035493,99.67497287],[4.53623504,0.03549125,99.67545088],[4.53623458,0.03548951,99.67592657],[4.53623413,0.03548776,99.67639992],[4.53623367,0.03548602,99.67687094],[4.53623322,0.03548428,99.67733962],[4.53623276,0.03548253,99.67780595],[4.53623231,0.03548079,99.67826993],[4.53623185,0.03547904,99.67873156],[4.5362314,0.0354773,99.67919084],[4.53623094,0.03547556,99.67964776],[4.53623048,0.03547381,99.68010231],[4.53623003,0.03547207,99.6805545],[4.53622957,0.03547033,99.68100432],[4.53622911,0.03546858,99.68145176],[4.53622866,0.03546684,99.68189682],[4.5362282,0.0354651,99.68233951],[4.53622774,0.03546335,99.6827798],[4.53622729,0.03546161,99.68321771],[4.53622683,0.03545987,99.68365322],[4.53622637,0.03545812,99.68408634],[4.53622591,0.03545638,99.68451705],[4.53622545,0.03545464,99.68494536],[4.536225,0.03545289,99.68537126],[4.53622454,0.03545115,99.68579476],[4.53622408,0.03544941,99.68621587],[4.53622362,0.03544767,99.68663461],[4.53622316,0.03544592,99.687051],[4.5362227,0.03544418,99.68746505],[4.53622224,0.03544244,99.68787679],[4.53622178,0.03544069,99.68828622],[4.53622132,0.03543895,99.68869336],[4.53622086,0.03543721,99.68909823],[4.5362204,0.03543547,99.68950085],[4.53621994,0.03543372,99.68990123],[4.53621948,0.03543198,99.6902994],[4.53621902,0.03543024,99.69069535],[4.53621856,0.0354285,99.69108912],[4.5362181,0.03542676,99.69148073],[4.53621764,0.03542501,99.69187017],[4.53621718,0.03542327,99.69225748],[4.53621672,0.03542153,99.69264267],[4.53621625,0.03541979,99.69302576],[4.53621579,0.03541804,99.69340675],[4.53621533,0.0354163,99.69378569],[4.53621487,0.03541456,99.69416258],[4.53621441,0.03541282,99.69453744],[4.53621395,0.03541108,99.69491029],[4.53621348,0.03540933,99.69528116],[4.53621302,0.03540759,99.69565005],[4.53621256,0.03540585,99.69601698],[4.5362121,0.03540411,99.69638198],[4.53621164,0.03540237,99.69674504],[4.53621117,0.03540062,99.69710619],[4.53621071,0.03539888,99.69746545],[4.53621025,0.03539714,99.69782282],[4.53620979,0.0353954,99.69817833],[4.53620932,0.03539366,99.69853199],[4.53620886,0.03539192,99.69888381],[4.5362084,0.03539017,99.69923381],[4.53620794,0.03538843,99.69958201],[4.53620747,0.03538669,99.69992843],[4.53620701,0.03538495,99.70027306],[4.53620655,0.03538321,99.70061594],[4.53620608,0.03538146,99.70095708],[4.53620562,0.03537972,99.70129649],[4.53620516,0.03537798,99.70163419],[4.5362047,0.03537624,99.7019702],[4.53620423,0.0353745,99.70230452],[4.53620377,0.03537276,99.70263718],[4.53620331,0.03537101,99.70296819],[4.53620284,0.03536927,99.70329757],[4.53620238,0.03536753,99.70362533],[4.53620192,0.03536579,99.70395149],[4.53620146,0.03536405,99.70427606],[4.53620099,0.03536231,99.70459906],[4.53620053,0.03536056,99.70492051],[4.53620007,0.03535882,99.70524041],[4.5361996,0.03535708,99.7055588],[4.53619914,0.03535534,99.70587567],[4.53619868,0.0353536,99.70619105],[4.53619822,0.03535185,99.70650496],[4.53619775,0.03535011,99.70681741],[4.53619729,0.03534837,99.70712841],[4.53619683,0.03534663,99.70743798],[4.53619637,0.03534489,99.70774614],[4.53619591,0.03534315,99.7080529],[4.53619544,0.0353414,99.70835828],[4.53619498,0.03533966,99.70866229],[4.53619452,0.03533792,99.70896496],[4.53619406,0.03533618,99.70926629],[4.5361936,0.03533444,99.7095663],[4.53619313,0.03533269,99.70986501],[4.53619267,0.03533095,99.71016244],[4.53619221,0.03532921,99.71045859],[4.53619175,0.03532747,99.71075349],[4.53619129,0.03532573,99.71104716],[4.53619083,0.03532398,99.7113396],[4.53619037,0.03532224,99.71163084],[4.53618991,0.0353205,99.71192087],[4.53618944,0.03531876,99.7122097],[4.53618898,0.03531701,99.71249733],[4.53618852,0.03531527,99.71278376],[4.53618806,0.03531353,99.71306899],[4.5361876,0.03531179,99.71335303],[4.53618714,0.03531004,99.71363587],[4.53618668,0.0353083,99.71391753],[4.53618622,0.03530656,99.71419799],[4.53618576,0.03530482,99.71447727],[4.5361853,0.03530307,99.71475536],[4.53618484,0.03530133,99.71503226],[4.53618439,0.03529959,99.71530798],[4.53618393,0.03529785,99.71558252],[4.53618347,0.0352961,99.71585588],[4.53618301,0.03529436,99.71612806],[4.53618255,0.03529262,99.71639906],[4.53618209,0.03529088,99.71666889],[4.53618163,0.03528913,99.71693754],[4.53618117,0.03528739,99.71720502],[4.53618071,0.03528565,99.71747133],[4.53618025,0.03528391,99.71773648],[4.5361798,0.03528216,99.71800045],[4.53617934,0.03528042,99.71826326],[4.53617888,0.03527868,99.7185249],[4.53617842,0.03527693,99.71878539],[4.53617796,0.03527519,99.71904471],[4.5361775,0.03527345,99.71930286],[4.53617705,0.03527171,99.71955987],[4.53617659,0.03526996,99.71981571],[4.53617613,0.03526822,99.7200704],[4.53617567,0.03526648,99.72032393],[4.53617521,0.03526473,99.72057631],[4.53617476,0.03526299,99.72082754],[4.5361743,0.03526125,99.72107762],[4.53617384,0.0352595,99.72132655],[4.53617338,0.03525776,99.72157434],[4.53617293,0.03525602,99.72182099],[4.53617247,0.03525428,99.72206649],[4.53617201,0.03525253,99.72231086],[4.53617155,0.03525079,99.7225541],[4.5361711,0.03524905,99.72279622],[4.53617064,0.0352473,99.72303721],[4.53617018,0.03524556,99.72327708],[4.53616973,0.03524382,99.72351584],[4.53616927,0.03524207,99.72375348],[4.53616881,0.03524033,99.72399002],[4.53616835,0.03523859,99.72422544],[4.5361679,0.03523684,99.72445976],[4.53616744,0.0352351,99.72469298],[4.53616698,0.03523336,99.7249251],[4.53616653,0.03523161,99.72515612],[4.53616607,0.03522987,99.72538605],[4.53616561,0.03522813,99.72561489],[4.53616516,0.03522638,99.72584264],[4.5361647,0.03522464,99.72606931],[4.53616424,0.0352229,99.7262949],[4.53616379,0.03522115,99.7265194],[4.53616333,0.03521941,99.72674283],[4.53616287,0.03521767,99.72696519],[4.53616242,0.03521592,99.72718647],[4.53616196,0.03521418,99.72740669],[4.5361615,0.03521244,99.72762584],[4.53616105,0.0352107,99.72784392],[4.53616059,0.03520895,99.72806095],[4.53616013,0.03520721,99.72827692],[4.53615968,0.03520547,99.72849183],[4.53615922,0.03520372,99.7287057],[4.53615876,0.03520198,99.72891851],[4.53615831,0.03520024,99.72913027],[4.53615785,0.03519849,99.729341],[4.53615739,0.03519675,99.72955068],[4.53615694,0.03519501,99.72975932],[4.53615648,0.03519326,99.72996692],[4.53615602,0.03519152,99.73017349],[4.53615557,0.03518978,99.73037903],[4.53615511,0.03518803,99.73058354],[4.53615466,0.03518629,99.73078702],[4.5361542,0.03518455,99.73098948],[4.53615374,0.0351828,99.73119092],[4.53615329,0.03518106,99.73139134],[4.53615283,0.03517932,99.73159074],[4.53615237,0.03517757,99.73178913],[4.53615192,0.03517583,99.73198651],[4.53615146,0.03517409,99.73218287],[4.536151,0.03517234,99.73237823],[4.53615055,0.0351706,99.73257259],[4.53615009,0.03516886,99.73276595],[4.53614963,0.03516711,99.7329583],[4.53614918,0.03516537,99.73314966],[4.53614872,0.03516363,99.73334002],[4.53614826,0.03516188,99.73352939],[4.53614781,0.03516014,99.7337178],[4.53614735,0.0351584,99.73390526],[4.53614689,0.03515665,99.73409181],[4.53614644,0.03515491,99.73427745],[4.53614598,0.03515317,99.73446223],[4.53614552,0.03515142,99.73464616],[4.53614507,0.03514968,99.73482928],[4.53614461,0.03514794,99.73501159],[4.53614415,0.03514619,99.73519314],[4.53614369,0.03514445,99.73537393],[4.53614324,0.03514271,99.73555401],[4.53614278,0.03514097,99.73573339],[4.53614232,0.03513922,99.7359121],[4.53614187,0.03513748,99.73609016],[4.53614141,0.03513574,99.7362676],[4.53614095,0.03513399,99.73644444],[4.53614049,0.03513225,99.73662071],[4.53614004,0.03513051,99.73679643],[4.53613958,0.03512876,99.73697163],[4.53613912,0.03512702,99.73714634],[4.53613866,0.03512528,99.73732057],[4.53613821,0.03512354,99.73749436],[4.53613775,0.03512179,99.73766773],[4.53613729,0.03512005,99.7378407],[4.53613683,0.03511831,99.73801331],[4.53613638,0.03511656,99.73818557],[4.53613592,0.03511482,99.73835751],[4.53613546,0.03511308,99.73852916],[4.536135,0.03511134,99.73870054],[4.53613455,0.03510959,99.73887168],[4.53613409,0.03510785,99.7390426],[4.53613363,0.03510611,99.73921334],[4.53613317,0.03510436,99.7393839],[4.53613271,0.03510262,99.73955434],[4.53613226,0.03510088,99.73972465],[4.5361318,0.03509913,99.73989489],[4.53613134,0.03509739,99.74006506],[4.53613088,0.03509565,99.74023519],[4.53613043,0.03509391,99.74040532],[4.53612997,0.03509216,99.74057546],[4.53612951,0.03509042,99.74074565],[4.53612905,0.03508868,99.7409159],[4.53612859,0.03508693,99.74108621],[4.53612814,0.03508519,99.74125657],[4.53612768,0.03508345,99.74142698],[4.53612722,0.03508171,99.74159742],[4.53612676,0.03507996,99.74176788],[4.53612631,0.03507822,99.74193836],[4.53612585,0.03507648,99.74210884],[4.53612539,0.03507473,99.74227933],[4.53612493,0.03507299,99.7424498],[4.53612447,0.03507125,99.74262024],[4.53612402,0.03506951,99.74279066],[4.53612356,0.03506776,99.74296104],[4.5361231,0.03506602,99.74313137],[4.53612264,0.03506428,99.74330164],[4.53612218,0.03506254,99.74347184],[4.53612172,0.03506079,99.74364196],[4.53612127,0.03505905,99.743812],[4.53612081,0.03505731,99.74398194],[4.53612035,0.03505556,99.74415177],[4.53611989,0.03505382,99.74432148],[4.53611943,0.03505208,99.74449107],[4.53611898,0.03505034,99.74466052],[4.53611852,0.03504859,99.74482983],[4.53611806,0.03504685,99.74499898],[4.5361176,0.03504511,99.74516796],[4.53611714,0.03504337,99.74533677],[4.53611668,0.03504162,99.74550539],[4.53611623,0.03503988,99.74567382],[4.53611577,0.03503814,99.74584204],[4.53611531,0.03503639,99.74601005],[4.53611485,0.03503465,99.74617783],[4.53611439,0.03503291,99.74634537],[4.53611393,0.03503117,99.74651266],[4.53611347,0.03502942,99.7466797],[4.53611301,0.03502768,99.74684648],[4.53611256,0.03502594,99.74701299],[4.5361121,0.0350242,99.74717922],[4.53611164,0.03502245,99.74734516],[4.53611118,0.03502071,99.74751082],[4.53611072,0.03501897,99.74767616],[4.53611026,0.03501723,99.7478412],[4.5361098,0.03501549,99.74800592],[4.53610934,0.03501375,99.74817031],[4.53610888,0.035012,99.74833435],[4.53610843,0.03501026,99.74849804],[4.53610797,0.03500852,99.74866137],[4.53610751,0.03500678,99.74882436],[4.53610705,0.03500503,99.74898701],[4.53610659,0.03500329,99.74914934],[4.53610613,0.03500155,99.74931136],[4.53610567,0.03499981,99.74947308],[4.53610521,0.03499806,99.74963452],[4.53610475,0.03499632,99.74979567],[4.53610429,0.03499458,99.74995657],[4.53610383,0.03499284,99.75011721],[4.53610337,0.03499109,99.7502776],[4.53610291,0.03498935,99.75043777],[4.53610245,0.03498761,99.75059772],[4.53610199,0.03498587,99.75075746],[4.53610154,0.03498412,99.75091701],[4.53610108,0.03498238,99.75107637],[4.53610062,0.03498064,99.75123555],[4.53610016,0.0349789,99.75139458],[4.5360997,0.03497715,99.75155344],[4.53609924,0.03497541,99.75171217],[4.53609878,0.03497367,99.75187076],[4.53609832,0.03497193,99.75202923],[4.53609786,0.03497018,99.75218758],[4.5360974,0.03496844,99.75234583],[4.53609694,0.0349667,99.75250399],[4.53609649,0.03496496,99.75266206],[4.53609603,0.03496321,99.75282007],[4.53609557,0.03496147,99.75297801],[4.53609511,0.03495973,99.75313589],[4.53609465,0.03495799,99.75329374],[4.53609419,0.03495624,99.75345156],[4.53609373,0.0349545,99.75360935],[4.53609327,0.03495276,99.75376713],[4.53609281,0.03495102,99.75392491],[4.53609235,0.03494927,99.7540827],[4.5360919,0.03494753,99.75424051],[4.53609144,0.03494579,99.75439835],[4.53609098,0.03494405,99.75455623],[4.53609052,0.0349423,99.75471417],[4.53609006,0.03494056,99.75487216],[4.5360896,0.03493882,99.75503022],[4.53608914,0.03493707,99.75518837],[4.53608869,0.03493533,99.7553466],[4.53608823,0.03493359,99.75550494],[4.53608777,0.03493185,99.75566339],[4.53608731,0.0349301,99.75582197],[4.53608685,0.03492836,99.75598068],[4.53608639,0.03492662,99.75613953],[4.53608593,0.03492488,99.75629853],[4.53608548,0.03492313,99.7564577],[4.53608502,0.03492139,99.75661705],[4.53608456,0.03491965,99.75677658],[4.5360841,0.0349179,99.7569363],[4.53608364,0.03491616,99.75709623],[4.53608318,0.03491442,99.75725638],[4.53608272,0.03491268,99.75741676],[4.53608227,0.03491093,99.75757737],[4.53608181,0.03490919,99.75773823],[4.53608135,0.03490745,99.75789935],[4.53608089,0.03490571,99.75806074],[4.53608043,0.03490396,99.7582224],[4.53607997,0.03490222,99.75838436],[4.53607952,0.03490048,99.75854661],[4.53607906,0.03489873,99.75870918],[4.5360786,0.03489699,99.75887207],[4.53607814,0.03489525,99.75903528],[4.53607768,0.03489351,99.75919885],[4.53607723,0.03489176,99.75936276],[4.53607677,0.03489002,99.75952703],[4.53607631,0.03488828,99.75969168],[4.53607585,0.03488653,99.75985672],[4.53607539,0.03488479,99.76002215],[4.53607493,0.03488305,99.76018798],[4.53607448,0.03488131,99.76035423],[4.53607402,0.03487956,99.7605209],[4.53607356,0.03487782,99.76068801],[4.5360731,0.03487608,99.76085557],[4.53607264,0.03487433,99.76102359],[4.53607219,0.03487259,99.76119207],[4.53607173,0.03487085,99.76136103],[4.53607127,0.0348691,99.76153049],[4.53607081,0.03486736,99.76170044],[4.53607035,0.03486562,99.7618709],[4.5360699,0.03486388,99.76204189],[4.53606944,0.03486213,99.7622134],[4.53606898,0.03486039,99.76238546],[4.53606852,0.03485865,99.76255807],[4.53606807,0.0348569,99.76273124],[4.53606761,0.03485516,99.76290499],[4.53606715,0.03485342,99.76307932],[4.53606669,0.03485167,99.76325425],[4.53606623,0.03484993,99.76342978],[4.53606578,0.03484819,99.76360593],[4.53606532,0.03484645,99.76378271],[4.53606486,0.0348447,99.76396012],[4.5360644,0.03484296,99.76413818],[4.53606395,0.03484122,99.7643169],[4.53606349,0.03483947,99.76449629],[4.53606303,0.03483773,99.76467636],[4.53606257,0.03483599,99.76485712],[4.53606212,0.03483424,99.76503858],[4.53606166,0.0348325,99.76522075],[4.5360612,0.03483076,99.76540364],[4.53606074,0.03482901,99.76558727],[4.53606028,0.03482727,99.76577164],[4.53605983,0.03482553,99.76595676],[4.53605937,0.03482379,99.76614265],[4.53605891,0.03482204,99.76632931],[4.53605845,0.0348203,99.76651676],[4.536058,0.03481856,99.76670501],[4.53605754,0.03481681,99.76689406],[4.53605708,0.03481507,99.76708393],[4.53605662,0.03481333,99.76727461],[4.53605617,0.03481158,99.76746609],[4.53605571,0.03480984,99.76765837],[4.53605525,0.0348081,99.76785144],[4.53605479,0.03480635,99.7680453],[4.53605434,0.03480461,99.76823993],[4.53605388,0.03480287,99.76843534],[4.53605342,0.03480112,99.76863151],[4.53605296,0.03479938,99.76882843],[4.53605251,0.03479764,99.76902612],[4.53605205,0.03479589,99.76922454],[4.53605159,0.03479415,99.7694237],[4.53605113,0.03479241,99.7696236],[4.53605068,0.03479067,99.76982422],[4.53605022,0.03478892,99.77002556],[4.53604976,0.03478718,99.77022761],[4.5360493,0.03478544,99.77043036],[4.53604884,0.03478369,99.77063382],[4.53604839,0.03478195,99.77083796],[4.53604793,0.03478021,99.7710428],[4.53604747,0.03477846,99.77124833],[4.53604701,0.03477672,99.77145455],[4.53604656,0.03477498,99.77166146],[4.5360461,0.03477323,99.77186907],[4.53604564,0.03477149,99.77207736],[4.53604518,0.03476975,99.77228635],[4.53604472,0.034768,99.77249603],[4.53604427,0.03476626,99.7727064],[4.53604381,0.03476452,99.77291746],[4.53604335,0.03476277,99.77312922],[4.53604289,0.03476103,99.77334166],[4.53604244,0.03475929,99.7735548],[4.53604198,0.03475755,99.77376863],[4.53604152,0.0347558,99.77398315],[4.53604106,0.03475406,99.77419836],[4.5360406,0.03475232,99.77441426],[4.53604015,0.03475057,99.77463086],[4.53603969,0.03474883,99.77484814],[4.53603923,0.03474709,99.77506612],[4.53603877,0.03474534,99.77528479],[4.53603831,0.0347436,99.77550415],[4.53603786,0.03474186,99.7757242],[4.5360374,0.03474011,99.77594494],[4.53603694,0.03473837,99.77616637],[4.53603648,0.03473663,99.77638849],[4.53603602,0.03473488,99.7766113],[4.53603557,0.03473314,99.7768348],[4.53603511,0.0347314,99.77705899],[4.53603465,0.03472965,99.77728387],[4.53603419,0.03472791,99.77750944],[4.53603373,0.03472617,99.7777357],[4.53603328,0.03472443,99.77796265],[4.53603282,0.03472268,99.77819028],[4.53603236,0.03472094,99.7784186],[4.5360319,0.0347192,99.77864762],[4.53603144,0.03471745,99.77887731],[4.53603099,0.03471571,99.7791077],[4.53603053,0.03471397,99.77933877],[4.53603007,0.03471222,99.77957053],[4.53602961,0.03471048,99.77980298],[4.53602916,0.03470874,99.78003611],[4.5360287,0.03470699,99.78026993],[4.53602824,0.03470525,99.78050443],[4.53602778,0.03470351,99.78073961],[4.53602733,0.03470176,99.78097548],[4.53602687,0.03470002,99.78121203],[4.53602641,0.03469828,99.78144927],[4.53602595,0.03469653,99.78168719],[4.5360255,0.03469479,99.78192579],[4.53602504,0.03469305,99.78216507],[4.53602458,0.0346913,99.78240503],[4.53602413,0.03468956,99.78264567],[4.53602367,0.03468782,99.78288699],[4.53602321,0.03468607,99.78312899],[4.53602276,0.03468433,99.78337167],[4.5360223,0.03468258,99.78361502],[4.53602184,0.03468084,99.78385906],[4.53602139,0.0346791,99.78410376],[4.53602093,0.03467735,99.78434915],[4.53602047,0.03467561,99.78459521],[4.53602002,0.03467387,99.78484194],[4.53601956,0.03467212,99.78508934],[4.53601911,0.03467038,99.78533742],[4.53601865,0.03466863,99.78558617],[4.53601819,0.03466689,99.78583559],[4.53601774,0.03466515,99.78608567],[4.53601728,0.0346634,99.7863364],[4.53601683,0.03466166,99.78658777],[4.53601637,0.03465991,99.78683977],[4.53601592,0.03465817,99.78709237],[4.53601546,0.03465643,99.78734557],[4.53601501,0.03465468,99.78759936],[4.53601455,0.03465294,99.78785372],[4.5360141,0.03465119,99.78810864],[4.53601364,0.03464945,99.7883641],[4.53601319,0.03464771,99.78862009],[4.53601274,0.03464596,99.78887661],[4.53601228,0.03464422,99.78913363],[4.53601183,0.03464247,99.78939114],[4.53601137,0.03464073,99.78964913],[4.53601092,0.03463898,99.78990759],[4.53601046,0.03463724,99.79016651],[4.53601001,0.0346355,99.79042586],[4.53600955,0.03463375,99.79068564],[4.5360091,0.03463201,99.79094584],[4.53600864,0.03463026,99.79120644],[4.53600819,0.03462852,99.79146742],[4.53600773,0.03462677,99.79172878],[4.53600728,0.03462503,99.79199051],[4.53600683,0.03462329,99.79225258],[4.53600637,0.03462154,99.79251499],[4.53600592,0.0346198,99.7927777],[4.53600546,0.03461805,99.79304069],[4.53600501,0.03461631,99.79330395],[4.53600455,0.03461457,99.79356746],[4.53600409,0.03461282,99.79383119],[4.53600364,0.03461108,99.79409513],[4.53600318,0.03460933,99.79435925],[4.53600273,0.03460759,99.79462353],[4.53600227,0.03460585,99.79488795],[4.53600181,0.0346041,99.7951525],[4.53600136,0.03460236,99.79541715],[4.5360009,0.03460062,99.79568188],[4.53600044,0.03459887,99.79594667],[4.53599999,0.03459713,99.7962115],[4.53599953,0.03459538,99.79647635],[4.53599907,0.03459364,99.79674121],[4.53599862,0.0345919,99.79700604],[4.53599816,0.03459015,99.79727084],[4.5359977,0.03458841,99.79753558],[4.53599724,0.03458667,99.79780024],[4.53599678,0.03458492,99.79806479],[4.53599632,0.03458318,99.79832923],[4.53599586,0.03458144,99.79859353],[4.5359954,0.0345797,99.79885768],[4.53599494,0.03457795,99.79912164],[4.53599448,0.03457621,99.79938541],[4.53599402,0.03457447,99.79964895],[4.53599356,0.03457272,99.79991226],[4.5359931,0.03457098,99.80017532],[4.53599264,0.03456924,99.8004381],[4.53599217,0.0345675,99.80070058],[4.53599171,0.03456576,99.80096274],[4.53599125,0.03456401,99.80122457],[4.53599079,0.03456227,99.80148605],[4.53599032,0.03456053,99.80174715],[4.53598986,0.03455879,99.80200786],[4.53598939,0.03455705,99.80226816],[4.53598893,0.0345553,99.80252803],[4.53598847,0.03455356,99.80278744],[4.535988,0.03455182,99.80304639],[4.53598753,0.03455008,99.80330485],[4.53598707,0.03454834,99.8035628],[4.5359866,0.0345466,99.80382023],[4.53598614,0.03454486,99.80407711],[4.53598567,0.03454311,99.80433343],[4.5359852,0.03454137,99.80458916],[4.53598474,0.03453963,99.80484429],[4.53598427,0.03453789,99.80509881],[4.5359838,0.03453615,99.8053527],[4.53598333,0.03453441,99.80560595],[4.53598287,0.03453267,99.80585856],[4.5359824,0.03453093,99.80611052],[4.53598193,0.03452919,99.80636182],[4.53598146,0.03452745,99.80661247],[4.53598099,0.03452571,99.80686246],[4.53598052,0.03452397,99.80711177],[4.53598005,0.03452223,99.80736042],[4.53597958,0.03452049,99.80760839],[4.53597911,0.03451875,99.80785568],[4.53597864,0.03451701,99.80810229],[4.53597817,0.03451527,99.8083482],[4.5359777,0.03451353,99.80859343],[4.53597723,0.03451179,99.80883795],[4.53597676,0.03451005,99.80908177],[4.53597629,0.03450831,99.80932488],[4.53597582,0.03450657,99.80956728],[4.53597535,0.03450483,99.80980896],[4.53597488,0.03450309,99.81004992],[4.53597441,0.03450135,99.81029015],[4.53597394,0.03449961,99.81052965],[4.53597346,0.03449787,99.81076843],[4.53597299,0.03449613,99.81100648],[4.53597252,0.03449439,99.81124381],[4.53597205,0.03449265,99.81148041],[4.53597158,0.03449091,99.81171628],[4.53597111,0.03448917,99.81195143],[4.53597063,0.03448743,99.81218586],[4.53597016,0.03448569,99.81241957],[4.53596969,0.03448395,99.81265256],[4.53596922,0.03448221,99.81288482],[4.53596875,0.03448047,99.81311637],[4.53596828,0.03447873,99.81334719],[4.5359678,0.03447699,99.8135773],[4.53596733,0.03447525,99.81380669],[4.53596686,0.03447351,99.81403536],[4.53596639,0.03447177,99.81426332],[4.53596592,0.03447003,99.81449055],[4.53596545,0.03446829,99.81471708],[4.53596498,0.03446655,99.81494288],[4.53596451,0.03446481,99.81516798],[4.53596403,0.03446307,99.81539236],[4.53596356,0.03446133,99.81561602],[4.53596309,0.03445959,99.81583897],[4.53596262,0.03445785,99.81606121],[4.53596215,0.03445611,99.81628274],[4.53596168,0.03445437,99.81650355],[4.53596121,0.03445263,99.81672366],[4.53596074,0.03445089,99.81694305],[4.53596027,0.03444915,99.81716173],[4.5359598,0.03444741,99.8173797],[4.53595933,0.03444567,99.81759696],[4.53595886,0.03444392,99.81781351],[4.5359584,0.03444218,99.81802935],[4.53595793,0.03444044,99.81824449],[4.53595746,0.0344387,99.81845891],[4.53595699,0.03443696,99.81867262],[4.53595652,0.03443522,99.81888563],[4.53595605,0.03443348,99.81909793],[4.53595558,0.03443174,99.81930952],[4.53595512,0.03443,99.8195204],[4.53595465,0.03442826,99.81973057],[4.53595418,0.03442652,99.81994003],[4.53595371,0.03442478,99.82014879],[4.53595324,0.03442304,99.82035684],[4.53595277,0.0344213,99.82056418],[4.53595231,0.03441955,99.82077081],[4.53595184,0.03441781,99.82097674],[4.53595137,0.03441607,99.82118196],[4.5359509,0.03441433,99.82138647],[4.53595043,0.03441259,99.82159027],[4.53594997,0.03441085,99.82179336],[4.5359495,0.03440911,99.82199575],[4.53594903,0.03440737,99.82219743],[4.53594856,0.03440563,99.8223984],[4.53594809,0.03440389,99.82259867],[4.53594762,0.03440215,99.82279823],[4.53594715,0.03440041,99.82299709],[4.53594669,0.03439866,99.82319524],[4.53594622,0.03439692,99.82339268],[4.53594575,0.03439518,99.82358942],[4.53594528,0.03439344,99.82378546],[4.53594481,0.0343917,99.82398079],[4.53594434,0.03438996,99.82417542],[4.53594387,0.03438822,99.82436935],[4.5359434,0.03438648,99.82456257],[4.53594293,0.03438474,99.8247551],[4.53594246,0.034383,99.82494691],[4.53594199,0.03438126,99.82513803],[4.53594152,0.03437952,99.82532844],[4.53594105,0.03437778,99.82551815],[4.53594058,0.03437604,99.82570716],[4.53594011,0.0343743,99.82589547],[4.53593964,0.03437256,99.82608307],[4.53593916,0.03437082,99.82626997],[4.53593869,0.03436908,99.82645617],[4.53593822,0.03436734,99.82664167],[4.53593775,0.0343656,99.82682647],[4.53593728,0.03436386,99.82701056],[4.5359368,0.03436212,99.82719395],[4.53593633,0.03436038,99.82737664],[4.53593586,0.03435864,99.82755863],[4.53593539,0.0343569,99.82773991],[4.53593491,0.03435516,99.82792049],[4.53593444,0.03435342,99.82810037],[4.53593397,0.03435168,99.82827954],[4.5359335,0.03434994,99.82845801],[4.53593302,0.0343482,99.82863577],[4.53593255,0.03434646,99.82881282],[4.53593207,0.03434472,99.82898914],[4.5359316,0.03434298,99.82916473],[4.53593113,0.03434124,99.82933959],[4.53593065,0.0343395,99.8295137],[4.53593018,0.03433777,99.82968705],[4.5359297,0.03433603,99.82985965],[4.53592923,0.03433429,99.83003147],[4.53592875,0.03433255,99.83020252],[4.53592828,0.03433081,99.83037278],[4.5359278,0.03432907,99.83054226],[4.53592733,0.03432733,99.83071093],[4.53592685,0.03432559,99.8308788],[4.53592638,0.03432385,99.83104585],[4.5359259,0.03432211,99.83121208],[4.53592543,0.03432037,99.83137748],[4.53592495,0.03431864,99.83154204],[4.53592448,0.0343169,99.83170576],[4.535924,0.03431516,99.83186863],[4.53592352,0.03431342,99.83203064],[4.53592305,0.03431168,99.83219177],[4.53592257,0.03430994,99.83235204],[4.53592209,0.0343082,99.83251142],[4.53592162,0.03430647,99.83266991],[4.53592114,0.03430473,99.8328275],[4.53592066,0.03430299,99.83298419],[4.53592018,0.03430125,99.83313997],[4.53591971,0.03429951,99.83329482],[4.53591923,0.03429777,99.83344875],[4.53591875,0.03429603,99.83360174],[4.53591827,0.0342943,99.83375379],[4.5359178,0.03429256,99.83390489],[4.53591732,0.03429082,99.83405503],[4.53591684,0.03428908,99.83420421],[4.53591636,0.03428734,99.83435241],[4.53591588,0.0342856,99.83449963],[4.53591541,0.03428387,99.83464586],[4.53591493,0.03428213,99.8347911],[4.53591445,0.03428039,99.83493534],[4.53591397,0.03427865,99.83507856],[4.53591349,0.03427691,99.83522077],[4.53591301,0.03427518,99.83536195],[4.53591254,0.03427344,99.8355021],[4.53591206,0.0342717,99.83564121],[4.53591158,0.03426996,99.83577927],[4.5359111,0.03426822,99.83591628],[4.53591062,0.03426649,99.83605223],[4.53591014,0.03426475,99.8361871],[4.53590966,0.03426301,99.8363209],[4.53590918,0.03426127,99.83645361],[4.5359087,0.03425953,99.83658523],[4.53590822,0.0342578,99.83671575],[4.53590774,0.03425606,99.83684516],[4.53590727,0.03425432,99.83697345],[4.53590679,0.03425258,99.83710063],[4.53590631,0.03425084,99.83722668],[4.53590583,0.03424911,99.83735158],[4.53590535,0.03424737,99.83747535],[4.53590487,0.03424563,99.83759796],[4.53590439,0.03424389,99.83771941],[4.53590391,0.03424216,99.8378397],[4.53590343,0.03424042,99.83795881],[4.53590295,0.03423868,99.83807674],[4.53590247,0.03423694,99.83819349],[4.53590199,0.03423521,99.83830903],[4.53590151,0.03423347,99.83842338],[4.53590103,0.03423173,99.83853651],[4.53590055,0.03422999,99.83864842],[4.53590007,0.03422826,99.83875911],[4.53589959,0.03422652,99.83886856],[4.53589911,0.03422478,99.83897678],[4.53589863,0.03422304,99.83908374],[4.53589815,0.0342213,99.83918945],[4.53589767,0.03421957,99.8392939],[4.53589719,0.03421783,99.83939708],[4.53589671,0.03421609,99.83949898],[4.53589623,0.03421435,99.83959958],[4.53589575,0.03421262,99.83969888],[4.53589527,0.03421088,99.83979685],[4.53589479,0.03420914,99.83989349],[4.53589431,0.0342074,99.83998877],[4.53589383,0.03420567,99.84008268],[4.53589335,0.03420393,99.84017522],[4.53589286,0.03420219,99.84026635],[4.53589238,0.03420045,99.84035607],[4.5358919,0.03419872,99.84044437],[4.53589142,0.03419698,99.84053122],[4.53589094,0.03419524,99.84061662],[4.53589046,0.03419351,99.84070055],[4.53588998,0.03419177,99.84078299],[4.5358895,0.03419003,99.84086394],[4.53588902,0.03418829,99.84094337],[4.53588854,0.03418656,99.84102127],[4.53588806,0.03418482,99.84109762],[4.53588758,0.03418308,99.84117242],[4.5358871,0.03418134,99.84124565],[4.53588662,0.03417961,99.84131729],[4.53588613,0.03417787,99.84138733],[4.53588565,0.03417613,99.84145576],[4.53588517,0.0341744,99.84152255],[4.53588469,0.03417266,99.8415877],[4.53588421,0.03417092,99.84165119],[4.53588396,0.03417002,99.84168354],[4.53599897,0.03413873,99.91624483],[4.53599921,0.03413963,99.91629442],[4.53599968,0.03414137,99.91639067],[4.53600014,0.03414312,99.91648792],[4.53600061,0.03414486,99.91658605],[4.53600108,0.0341466,99.91668492],[4.53600154,0.03414834,99.91678439],[4.53600201,0.03415008,99.91688433],[4.53600247,0.03415183,99.91698459],[4.53600294,0.03415357,99.91708504],[4.53600341,0.03415531,99.91718554],[4.53600387,0.03415705,99.91728596],[4.53600434,0.03415879,99.91738615],[4.53600481,0.03416054,99.91748598],[4.53600528,0.03416228,99.9175853],[4.53600574,0.03416402,99.91768398],[4.53600621,0.03416576,99.91778187],[4.53600668,0.0341675,99.91787884],[4.53600714,0.03416925,99.91797474],[4.53600761,0.03417099,99.91806943],[4.53600808,0.03417273,99.91816277],[4.53600854,0.03417447,99.91825462],[4.53600901,0.03417621,99.91834484],[4.53600948,0.03417795,99.91843327],[4.53600994,0.0341797,99.91851978],[4.53601041,0.03418144,99.91860422],[4.53601087,0.03418318,99.91868646],[4.53601134,0.03418492,99.91876633],[4.53601181,0.03418667,99.9188437],[4.53601227,0.03418841,99.91891842],[4.53601274,0.03419015,99.91899034],[4.5360132,0.03419189,99.9190593],[4.53601366,0.03419364,99.91912515],[4.53601413,0.03419538,99.91918773],[4.53601459,0.03419712,99.9192469],[4.53601505,0.03419886,99.91930263],[4.53601552,0.03420061,99.91935506],[4.53601598,0.03420235,99.91940432],[4.53601644,0.03420409,99.91945055],[4.5360169,0.03420584,99.91949388],[4.53601736,0.03420758,99.91953445],[4.53601782,0.03420932,99.91957238],[4.53601829,0.03421107,99.91960782],[4.53601875,0.03421281,99.9196409],[4.53601921,0.03421455,99.91967177],[4.53601967,0.03421629,99.91970054],[4.53602013,0.03421804,99.91972737],[4.5360206,0.03421978,99.91975239],[4.53602106,0.03422152,99.91977574],[4.53602152,0.03422327,99.91979756],[4.53602198,0.03422501,99.91981799],[4.53602245,0.03422675,99.91983716],[4.53602291,0.0342285,99.91985523],[4.53602337,0.03423024,99.91987231],[4.53602384,0.03423198,99.91988857],[4.5360243,0.03423372,99.91990414],[4.53602476,0.03423547,99.91991916],[4.53602523,0.03423721,99.91993378],[4.53602569,0.03423895,99.91994813],[4.53602615,0.03424069,99.91996237],[4.53602662,0.03424244,99.91997663],[4.53602708,0.03424418,99.919991],[4.53602755,0.03424592,99.92000549],[4.53602801,0.03424766,99.92002012],[4.53602848,0.03424941,99.92003491],[4.53602894,0.03425115,99.92004988],[4.53602941,0.03425289,99.92006504],[4.53602987,0.03425463,99.92008042],[4.53603034,0.03425638,99.92009602],[4.5360308,0.03425812,99.92011187],[4.53603127,0.03425986,99.92012799],[4.53603174,0.0342616,99.92014439],[4.5360322,0.03426334,99.92016108],[4.53603267,0.03426509,99.9201781],[4.53603313,0.03426683,99.92019545],[4.5360336,0.03426857,99.92021316],[4.53603407,0.03427031,99.92023124],[4.53603453,0.03427205,99.92024972],[4.536035,0.0342738,99.9202686],[4.53603546,0.03427554,99.92028791],[4.53603593,0.03427728,99.92030767],[4.5360364,0.03427902,99.92032789],[4.53603686,0.03428076,99.9203486],[4.53603733,0.0342825,99.92036981],[4.5360378,0.03428425,99.92039155],[4.53603826,0.03428599,99.92041382],[4.53603873,0.03428773,99.92043666],[4.5360392,0.03428947,99.92046007],[4.53603967,0.03429121,99.92048408],[4.53604013,0.03429295,99.92050871],[4.5360406,0.0342947,99.92053398],[4.53604107,0.03429644,99.9205599],[4.53604154,0.03429818,99.9205865],[4.536042,0.03429992,99.9206138],[4.53604247,0.03430166,99.92064181],[4.53604294,0.0343034,99.92067055],[4.53604341,0.03430515,99.92070005],[4.53604387,0.03430689,99.92073031],[4.53604434,0.03430863,99.92076131],[4.53604481,0.03431037,99.92079299],[4.53604528,0.03431211,99.92082531],[4.53604575,0.03431385,99.92085822],[4.53604621,0.03431559,99.92089169],[4.53604668,0.03431734,99.92092565],[4.53604715,0.03431908,99.92096008],[4.53604762,0.03432082,99.92099492],[4.53604809,0.03432256,99.92103012],[4.53604856,0.0343243,99.92106564],[4.53604903,0.03432604,99.92110143],[4.5360495,0.03432778,99.92113746],[4.53604996,0.03432952,99.92117366],[4.53605043,0.03433127,99.92120999],[4.5360509,0.03433301,99.92124641],[4.53605137,0.03433475,99.92128287],[4.53605184,0.03433649,99.92131931],[4.53605231,0.03433823,99.92135571],[4.53605278,0.03433997,99.92139199],[4.53605325,0.03434171,99.92142813],[4.53605372,0.03434345,99.92146406],[4.53605419,0.03434519,99.92149974],[4.53605466,0.03434694,99.92153513],[4.53605513,0.03434868,99.92157017],[4.5360556,0.03435042,99.92160482],[4.53605607,0.03435216,99.92163902],[4.53605654,0.0343539,99.92167273],[4.53605701,0.03435564,99.9217059],[4.53605748,0.03435738,99.92173847],[4.53605795,0.03435912,99.92177041],[4.53605842,0.03436086,99.92180165],[4.53605889,0.0343626,99.92183215],[4.53605936,0.03436434,99.92186186],[4.53605983,0.03436609,99.92189073],[4.5360603,0.03436783,99.92191871],[4.53606077,0.03436957,99.92194574],[4.53606124,0.03437131,99.92197181],[4.53606171,0.03437305,99.9219969],[4.53606218,0.03437479,99.92202101],[4.53606265,0.03437653,99.92204415],[4.53606312,0.03437827,99.9220663],[4.53606359,0.03438001,99.92208747],[4.53606406,0.03438175,99.92210765],[4.53606453,0.03438349,99.92212684],[4.536065,0.03438524,99.92214504],[4.53606547,0.03438698,99.92216223],[4.53606594,0.03438872,99.92217843],[4.53606642,0.03439046,99.92219363],[4.53606689,0.0343922,99.92220782],[4.53606736,0.03439394,99.922221],[4.53606783,0.03439568,99.92223316],[4.5360683,0.03439742,99.92224431],[4.53606877,0.03439916,99.92225445],[4.53606924,0.0344009,99.92226356],[4.53606971,0.03440264,99.92227165],[4.53607018,0.03440438,99.92227871],[4.53607066,0.03440612,99.92228474],[4.53607113,0.03440786,99.92228974],[4.5360716,0.0344096,99.9222937],[4.53607207,0.03441134,99.92229662],[4.53607254,0.03441309,99.9222985],[4.53607301,0.03441483,99.92229934],[4.53607348,0.03441657,99.92229913],[4.53607395,0.03441831,99.92229786],[4.53607442,0.03442005,99.92229554],[4.53607489,0.03442179,99.92229217],[4.53607536,0.03442353,99.92228773],[4.53607584,0.03442527,99.92228224],[4.53607631,0.03442701,99.92227567],[4.53607678,0.03442875,99.92226804],[4.53607725,0.03443049,99.92225933],[4.53607772,0.03443223,99.92224955],[4.53607819,0.03443398,99.9222387],[4.53607865,0.03443572,99.92222676],[4.53607912,0.03443746,99.92221374],[4.53607959,0.0344392,99.92219964],[4.53608006,0.03444094,99.92218446],[4.53608053,0.03444268,99.92216821],[4.536081,0.03444442,99.92215087],[4.53608147,0.03444616,99.92213246],[4.53608194,0.03444791,99.92211297],[4.5360824,0.03444965,99.92209241],[4.53608287,0.03445139,99.92207076],[4.53608334,0.03445313,99.92204805],[4.53608381,0.03445487,99.92202425],[4.53608427,0.03445661,99.92199939],[4.53608474,0.03445836,99.92197345],[4.53608521,0.0344601,99.92194643],[4.53608567,0.03446184,99.92191835],[4.53608614,0.03446358,99.92188919],[4.5360866,0.03446532,99.92185896],[4.53608707,0.03446707,99.92182766],[4.53608754,0.03446881,99.9217953],[4.536088,0.03447055,99.92176186],[4.53608846,0.03447229,99.92172735],[4.53608893,0.03447404,99.92169178],[4.53608939,0.03447578,99.92165515],[4.53608986,0.03447752,99.92161744],[4.53609032,0.03447926,99.92157868],[4.53609078,0.03448101,99.92153885],[4.53609125,0.03448275,99.92149795],[4.53609171,0.03448449,99.921456],[4.53609217,0.03448624,99.92141298],[4.53609263,0.03448798,99.9213689],[4.53609309,0.03448972,99.92132377],[4.53609356,0.03449147,99.92127758],[4.53609402,0.03449321,99.92123033],[4.53609448,0.03449495,99.92118202],[4.53609494,0.0344967,99.92113266],[4.5360954,0.03449844,99.92108224],[4.53609586,0.03450018,99.92103077],[4.53609632,0.03450193,99.92097825],[4.53609679,0.03450367,99.92092468],[4.53609725,0.03450541,99.92087006],[4.53609771,0.03450716,99.92081439],[4.53609817,0.0345089,99.92075767],[4.53609863,0.03451064,99.92069991],[4.53609909,0.03451239,99.9206411],[4.53609955,0.03451413,99.92058125],[4.53610001,0.03451588,99.92052037],[4.53610047,0.03451762,99.92045846],[4.53610093,0.03451936,99.92039552],[4.53610139,0.03452111,99.92033157],[4.53610185,0.03452285,99.9202666],[4.53610231,0.03452459,99.92020063],[4.53610277,0.03452634,99.92013365],[4.53610323,0.03452808,99.92006568],[4.53610369,0.03452982,99.9199967],[4.53610415,0.03453157,99.91992671],[4.53610461,0.03453331,99.91985571],[4.53610507,0.03453506,99.91978368],[4.53610553,0.0345368,99.91971061],[4.53610599,0.03453854,99.91963651],[4.53610645,0.03454029,99.91956136],[4.53610691,0.03454203,99.91948515],[4.53610737,0.03454377,99.91940788],[4.53610783,0.03454552,99.91932954],[4.5361083,0.03454726,99.91925012],[4.53610876,0.034549,99.91916962],[4.53610922,0.03455075,99.91908803],[4.53610968,0.03455249,99.91900533],[4.53611014,0.03455423,99.91892153],[4.5361106,0.03455598,99.91883661],[4.53611106,0.03455772,99.91875057],[4.53611152,0.03455946,99.91866339],[4.53611199,0.03456121,99.91857508],[4.53611245,0.03456295,99.91848563],[4.53611291,0.03456469,99.91839502],[4.53611337,0.03456644,99.91830325],[4.53611383,0.03456818,99.91821032],[4.5361143,0.03456992,99.9181162],[4.53611476,0.03457167,99.91802091],[4.53611522,0.03457341,99.91792442],[4.53611569,0.03457515,99.91782673],[4.53611615,0.0345769,99.91772784],[4.53611661,0.03457864,99.91762774],[4.53611707,0.03458038,99.91752641],[4.53611754,0.03458212,99.91742386],[4.536118,0.03458387,99.91732006],[4.53611846,0.03458561,99.91721503],[4.53611893,0.03458735,99.91710874],[4.53611939,0.0345891,99.91700119],[4.53611985,0.03459084,99.91689238],[4.53612032,0.03459258,99.91678229],[4.53612078,0.03459432,99.91667092],[4.53612124,0.03459607,99.91655827],[4.5361217,0.03459781,99.91644431],[4.53612217,0.03459955,99.91632907],[4.53612263,0.0346013,99.91621263],[4.53612309,0.03460304,99.9160951],[4.53612355,0.03460478,99.91597659],[4.53612401,0.03460653,99.91585722],[4.53612448,0.03460827,99.91573708],[4.53612494,0.03461001,99.91561629],[4.5361254,0.03461176,99.91549496],[4.53612586,0.0346135,99.9153732],[4.53612632,0.03461524,99.91525111],[4.53612678,0.03461699,99.91512882],[4.53612725,0.03461873,99.91500642],[4.53612771,0.03462047,99.91488404],[4.53612817,0.03462222,99.91476178],[4.53612863,0.03462396,99.91463976],[4.53612909,0.0346257,99.91451808],[4.53612955,0.03462745,99.91439685],[4.53613001,0.03462919,99.9142762],[4.53613048,0.03463093,99.91415623],[4.53613094,0.03463268,99.91403706],[4.5361314,0.03463442,99.91391879],[4.53613186,0.03463616,99.91380154],[4.53613232,0.03463791,99.91368543],[4.53613279,0.03463965,99.91357056],[4.53613325,0.03464139,99.91345706],[4.53613371,0.03464314,99.91334503],[4.53613418,0.03464488,99.91323458],[4.53613464,0.03464662,99.91312584],[4.5361351,0.03464836,99.91301887],[4.53613557,0.03465011,99.91291356],[4.53613603,0.03465185,99.91280975],[4.53613649,0.03465359,99.91270729],[4.53613696,0.03465534,99.91260603],[4.53613742,0.03465708,99.9125058],[4.53613789,0.03465882,99.91240644],[4.53613835,0.03466056,99.91230781],[4.53613881,0.03466231,99.91220973],[4.53613928,0.03466405,99.91211206],[4.53613974,0.03466579,99.91201463],[4.5361402,0.03466754,99.91191729],[4.53614067,0.03466928,99.91181987],[4.53614113,0.03467102,99.91172221],[4.53614159,0.03467276,99.91162417],[4.53614206,0.03467451,99.91152565],[4.53614252,0.03467625,99.91142662],[4.53614298,0.03467799,99.91132707],[4.53614344,0.03467974,99.91122697],[4.53614391,0.03468148,99.91112632],[4.53614437,0.03468322,99.91102508],[4.53614483,0.03468497,99.91092325],[4.53614529,0.03468671,99.91082079],[4.53614576,0.03468845,99.9107177],[4.53614622,0.0346902,99.91061395],[4.53614668,0.03469194,99.91050952],[4.53614714,0.03469368,99.91040439],[4.53614761,0.03469543,99.91029855],[4.53614807,0.03469717,99.91019197],[4.53614853,0.03469891,99.91008463],[4.536149,0.03470065,99.90997652],[4.53614946,0.0347024,99.90986761],[4.53614992,0.03470414,99.90975789],[4.53615038,0.03470588,99.90964733],[4.53615085,0.03470763,99.90953592],[4.53615131,0.03470937,99.90942363],[4.53615178,0.03471111,99.90931045],[4.53615224,0.03471285,99.90919635],[4.5361527,0.0347146,99.90908132],[4.53615317,0.03471634,99.90896533],[4.53615363,0.03471808,99.90884837],[4.53615409,0.03471983,99.90873041],[4.53615456,0.03472157,99.90861144],[4.53615502,0.03472331,99.90849144],[4.53615549,0.03472505,99.90837038],[4.53615595,0.0347268,99.90824824],[4.53615642,0.03472854,99.90812502],[4.53615688,0.03473028,99.90800067],[4.53615734,0.03473202,99.90787519],[4.53615781,0.03473377,99.90774856],[4.53615827,0.03473551,99.90762075],[4.53615874,0.03473725,99.90749175],[4.5361592,0.034739,99.90736153],[4.53615967,0.03474074,99.90723007],[4.53616013,0.03474248,99.90709736],[4.53616059,0.03474422,99.90696338],[4.53616106,0.03474597,99.90682809],[4.53616152,0.03474771,99.90669149],[4.53616199,0.03474945,99.90655356],[4.53616245,0.03475119,99.90641426],[4.53616292,0.03475294,99.90627359],[4.53616338,0.03475468,99.90613153],[4.53616384,0.03475642,99.90598804],[4.53616431,0.03475817,99.90584312],[4.53616477,0.03475991,99.90569674],[4.53616524,0.03476165,99.90554888],[4.5361657,0.03476339,99.90539952],[4.53616616,0.03476514,99.90524865],[4.53616663,0.03476688,99.90509623],[4.53616709,0.03476862,99.90494226],[4.53616755,0.03477036,99.90478671],[4.53616802,0.03477211,99.90462956],[4.53616848,0.03477385,99.90447083],[4.53616894,0.03477559,99.90431051],[4.53616941,0.03477734,99.90414863],[4.53616987,0.03477908,99.90398518],[4.53617033,0.03478082,99.90382019],[4.5361708,0.03478257,99.90365366],[4.53617126,0.03478431,99.90348561],[4.53617172,0.03478605,99.90331603],[4.53617219,0.03478779,99.90314494],[4.53617265,0.03478954,99.90297235],[4.53617311,0.03479128,99.90279828],[4.53617357,0.03479302,99.90262272],[4.53617404,0.03479477,99.90244569],[4.5361745,0.03479651,99.90226721],[4.53617496,0.03479825,99.90208727],[4.53617542,0.0348,99.9019059],[4.53617589,0.03480174,99.9017231],[4.53617635,0.03480348,99.90153889],[4.53617681,0.03480523,99.90135327],[4.53617727,0.03480697,99.90116625],[4.53617774,0.03480871,99.90097785],[4.5361782,0.03481046,99.90078808],[4.53617866,0.0348122,99.90059694],[4.53617912,0.03481394,99.90040445],[4.53617958,0.03481569,99.90021062],[4.53618005,0.03481743,99.90001546],[4.53618051,0.03481917,99.89981898],[4.53618097,0.03482092,99.89962119],[4.53618143,0.03482266,99.8994221],[4.53618189,0.0348244,99.89922173],[4.53618236,0.03482615,99.89902007],[4.53618282,0.03482789,99.89881715],[4.53618328,0.03482963,99.89861298],[4.53618374,0.03483138,99.89840755],[4.5361842,0.03483312,99.8982009],[4.53618466,0.03483486,99.89799302],[4.53618513,0.03483661,99.89778393],[4.53618559,0.03483835,99.89757364],[4.53618605,0.03484009,99.89736216],[4.53618651,0.03484184,99.89714949],[4.53618697,0.03484358,99.89693566],[4.53618743,0.03484532,99.89672067],[4.5361879,0.03484707,99.89650453],[4.53618836,0.03484881,99.89628726],[4.53618882,0.03485056,99.89606886],[4.53618928,0.0348523,99.89584934],[4.53618974,0.03485404,99.89562872],[4.5361902,0.03485579,99.895407],[4.53619066,0.03485753,99.89518421],[4.53619113,0.03485927,99.89496034],[4.53619159,0.03486102,99.8947354],[4.53619205,0.03486276,99.89450942],[4.53619251,0.0348645,99.8942824],[4.53619297,0.03486625,99.89405435],[4.53619343,0.03486799,99.89382528],[4.53619389,0.03486973,99.8935952],[4.53619435,0.03487148,99.89336412],[4.53619482,0.03487322,99.89313206],[4.53619528,0.03487496,99.892899],[4.53619574,0.03487671,99.89266496],[4.5361962,0.03487845,99.89242994],[4.53619666,0.0348802,99.89219393],[4.53619712,0.03488194,99.89195693],[4.53619758,0.03488368,99.89171896],[4.53619804,0.03488543,99.89148002],[4.53619851,0.03488717,99.89124009],[4.53619897,0.03488891,99.89099919],[4.53619943,0.03489066,99.89075732],[4.53619989,0.0348924,99.89051448],[4.53620035,0.03489414,99.89027068],[4.53620081,0.03489589,99.8900259],[4.53620127,0.03489763,99.88978017],[4.53620173,0.03489937,99.88953346],[4.5362022,0.03490112,99.8892858],[4.53620266,0.03490286,99.88903718],[4.53620312,0.03490461,99.88878761],[4.53620358,0.03490635,99.88853708],[4.53620404,0.03490809,99.88828559],[4.5362045,0.03490984,99.88803316],[4.53620496,0.03491158,99.88777977],[4.53620542,0.03491332,99.88752544],[4.53620588,0.03491507,99.88727016],[4.53620634,0.03491681,99.88701394],[4.5362068,0.03491856,99.88675678],[4.53620726,0.0349203,99.88649867],[4.53620773,0.03492204,99.88623963],[4.53620819,0.03492379,99.88597966],[4.53620865,0.03492553,99.88571875],[4.53620911,0.03492727,99.8854569],[4.53620957,0.03492902,99.88519413],[4.53621003,0.03493076,99.88493043],[4.53621049,0.03493251,99.8846658],[4.53621095,0.03493425,99.88440024],[4.53621141,0.03493599,99.88413377],[4.53621187,0.03493774,99.88386637],[4.53621233,0.03493948,99.88359805],[4.53621279,0.03494122,99.88332882],[4.53621325,0.03494297,99.88305867],[4.53621371,0.03494471,99.8827876],[4.53621417,0.03494646,99.88251563],[4.53621463,0.0349482,99.88224275],[4.53621509,0.03494994,99.88196895],[4.53621555,0.03495169,99.88169426],[4.53621601,0.03495343,99.88141865],[4.53621647,0.03495518,99.88114215],[4.53621693,0.03495692,99.88086474],[4.53621739,0.03495866,99.88058644],[4.53621785,0.03496041,99.88030724],[4.53621831,0.03496215,99.88002715],[4.53621877,0.0349639,99.87974616],[4.53621923,0.03496564,99.87946428],[4.53621969,0.03496739,99.87918151],[4.53622014,0.03496913,99.87889786],[4.5362206,0.03497087,99.87861332],[4.53622106,0.03497262,99.87832789],[4.53622152,0.03497436,99.87804159],[4.53622198,0.03497611,99.87775441],[4.53622244,0.03497785,99.87746634],[4.5362229,0.03497959,99.8771774],[4.53622336,0.03498134,99.87688759],[4.53622382,0.03498308,99.87659691],[4.53622428,0.03498483,99.87630535],[4.53622474,0.03498657,99.87601293],[4.53622519,0.03498831,99.87571964],[4.53622565,0.03499006,99.87542548],[4.53622611,0.0349918,99.87513047],[4.53622657,0.03499355,99.87483459],[4.53622703,0.03499529,99.87453785],[4.53622749,0.03499703,99.87424026],[4.53622795,0.03499878,99.87394181],[4.5362284,0.03500052,99.8736425],[4.53622886,0.03500227,99.87334235],[4.53622932,0.03500401,99.87304134],[4.53622978,0.03500576,99.8727395],[4.53623024,0.0350075,99.87243681],[4.5362307,0.03500924,99.87213328],[4.53623115,0.03501099,99.87182893],[4.53623161,0.03501273,99.87152375],[4.53623207,0.03501448,99.87121775],[4.53623253,0.03501622,99.87091093],[4.53623299,0.03501797,99.8706033],[4.53623345,0.03501971,99.87029486],[4.5362339,0.03502146,99.86998561],[4.53623436,0.0350232,99.86967557],[4.53623482,0.03502494,99.86936472],[4.53623528,0.03502669,99.86905308],[4.53623574,0.03502843,99.86874065],[4.53623619,0.03503018,99.86842743],[4.53623665,0.03503192,99.86811343],[4.53623711,0.03503367,99.86779864],[4.53623757,0.03503541,99.86748307],[4.53623803,0.03503716,99.86716672],[4.53623848,0.0350389,99.8668496],[4.53623894,0.03504065,99.8665317],[4.5362394,0.03504239,99.86621304],[4.53623986,0.03504413,99.86589361],[4.53624032,0.03504588,99.86557342],[4.53624077,0.03504762,99.86525246],[4.53624123,0.03504937,99.86493075],[4.53624169,0.03505111,99.86460828],[4.53624215,0.03505286,99.86428507],[4.53624261,0.0350546,99.8639611],[4.53624306,0.03505635,99.86363638],[4.53624352,0.03505809,99.86331093],[4.53624398,0.03505984,99.86298473],[4.53624444,0.03506158,99.86265779],[4.5362449,0.03506332,99.86233012],[4.53624535,0.03506507,99.86200172],[4.53624581,0.03506681,99.86167259],[4.53624627,0.03506856,99.86134273],[4.53624673,0.0350703,99.86101215],[4.53624718,0.03507205,99.86068084],[4.53624764,0.03507379,99.86034882],[4.5362481,0.03507554,99.86001608],[4.53624856,0.03507728,99.85968264],[4.53624902,0.03507903,99.85934848],[4.53624947,0.03508077,99.85901361],[4.53624993,0.03508251,99.85867804],[4.53625039,0.03508426,99.85834177],[4.53625085,0.035086,99.8580048],[4.53625131,0.03508775,99.85766714],[4.53625176,0.03508949,99.85732878],[4.53625222,0.03509124,99.85698973],[4.53625268,0.03509298,99.85665],[4.53625314,0.03509473,99.85630958],[4.53625359,0.03509647,99.85596848],[4.53625405,0.03509821,99.8556267],[4.53625451,0.03509996,99.85528424],[4.53625497,0.0351017,99.85494111],[4.53625543,0.03510345,99.85459731],[4.53625588,0.03510519,99.85425285],[4.53625634,0.03510694,99.85390771],[4.5362568,0.03510868,99.85356192],[4.53625726,0.03511043,99.85321546],[4.53625772,0.03511217,99.85286835],[4.53625817,0.03511392,99.85252058],[4.53625863,0.03511566,99.85217217],[4.53625909,0.0351174,99.8518231],[4.53625955,0.03511915,99.85147339],[4.53626001,0.03512089,99.85112303],[4.53626046,0.03512264,99.85077204],[4.53626092,0.03512438,99.8504204],[4.53626138,0.03512613,99.85006813],[4.53626184,0.03512787,99.84971523],[4.5362623,0.03512962,99.8493617],[4.53626275,0.03513136,99.84900754],[4.53626321,0.0351331,99.84865276],[4.53626367,0.03513485,99.84829736],[4.53626413,0.03513659,99.84794134],[4.53626459,0.03513834,99.8475847],[4.53626505,0.03514008,99.84722745],[4.5362655,0.03514183,99.84686959],[4.53626596,0.03514357,99.84651112],[4.53626642,0.03514532,99.84615205],[4.53626688,0.03514706,99.84579237],[4.53626734,0.0351488,99.8454321],[4.5362678,0.03515055,99.84507122],[4.53626825,0.03515229,99.84470976],[4.53626871,0.03515404,99.8443477],[4.53626917,0.03515578,99.84398505],[4.53626963,0.03515753,99.84362182],[4.53627009,0.03515927,99.843258],[4.53627055,0.03516101,99.8428936],[4.536271,0.03516276,99.84252862],[4.53627146,0.0351645,99.84216305],[4.53627192,0.03516625,99.8417969],[4.53627238,0.03516799,99.84143016],[4.53627284,0.03516974,99.84106283],[4.5362733,0.03517148,99.8406949],[4.53627376,0.03517322,99.84032638],[4.53627421,0.03517497,99.83995727],[4.53627467,0.03517671,99.83958755],[4.53627513,0.03517846,99.83921724],[4.53627559,0.0351802,99.83884632],[4.53627605,0.03518195,99.8384748],[4.53627651,0.03518369,99.83810267],[4.53627697,0.03518543,99.83772994],[4.53627743,0.03518718,99.83735659],[4.53627788,0.03518892,99.83698264],[4.53627834,0.03519067,99.83660807],[4.5362788,0.03519241,99.83623288],[4.53627926,0.03519416,99.83585708],[4.53627972,0.0351959,99.83548066],[4.53628018,0.03519764,99.83510362],[4.53628064,0.03519939,99.83472596],[4.5362811,0.03520113,99.83434767],[4.53628155,0.03520288,99.83396876],[4.53628201,0.03520462,99.83358921],[4.53628247,0.03520637,99.83320904],[4.53628293,0.03520811,99.83282824],[4.53628339,0.03520985,99.83244681],[4.53628385,0.0352116,99.83206474],[4.53628431,0.03521334,99.83168204],[4.53628476,0.03521509,99.83129869],[4.53628522,0.03521683,99.83091471],[4.53628568,0.03521858,99.83053009],[4.53628614,0.03522032,99.83014482],[4.5362866,0.03522206,99.82975891],[4.53628706,0.03522381,99.82937235],[4.53628752,0.03522555,99.82898513],[4.53628798,0.0352273,99.82859726],[4.53628843,0.03522904,99.82820872],[4.53628889,0.03523079,99.82781951],[4.53628935,0.03523253,99.82742963],[4.53628981,0.03523427,99.82703906],[4.53629027,0.03523602,99.82664781],[4.53629073,0.03523776,99.82625587],[4.53629118,0.03523951,99.82586323],[4.53629164,0.03524125,99.82546989],[4.5362921,0.035243,99.82507585],[4.53629256,0.03524474,99.82468109],[4.53629302,0.03524648,99.82428562],[4.53629348,0.03524823,99.82388943],[4.53629393,0.03524997,99.82349251],[4.53629439,0.03525172,99.82309486],[4.53629485,0.03525346,99.82269647],[4.53629531,0.03525521,99.82229734],[4.53629577,0.03525695,99.82189747],[4.53629622,0.0352587,99.82149684],[4.53629668,0.03526044,99.82109546],[4.53629714,0.03526218,99.82069331],[4.5362976,0.03526393,99.8202904],[4.53629805,0.03526567,99.81988672],[4.53629851,0.03526742,99.81948227],[4.53629897,0.03526916,99.81907703],[4.53629943,0.03527091,99.81867101],[4.53629988,0.03527265,99.8182642],[4.53630034,0.0352744,99.81785659],[4.5363008,0.03527614,99.81744818],[4.53630125,0.03527789,99.81703897],[4.53630171,0.03527963,99.81662894],[4.53630217,0.03528138,99.81621811],[4.53630262,0.03528312,99.81580645],[4.53630308,0.03528487,99.81539397],[4.53630354,0.03528661,99.81498066],[4.53630399,0.03528836,99.81456652],[4.53630445,0.0352901,99.81415154],[4.53630491,0.03529184,99.81373571],[4.53630536,0.03529359,99.81331904],[4.53630582,0.03529533,99.81290152],[4.53630628,0.03529708,99.81248314],[4.53630673,0.03529882,99.81206389],[4.53630719,0.03530057,99.81164378],[4.53630764,0.03530231,99.8112228],[4.5363081,0.03530406,99.81080095],[4.53630856,0.0353058,99.81037821],[4.53630901,0.03530755,99.80995459],[4.53630947,0.03530929,99.80953008],[4.53630992,0.03531104,99.80910467],[4.53631038,0.03531278,99.80867837],[4.53631084,0.03531453,99.80825116],[4.53631129,0.03531627,99.80782307],[4.53631175,0.03531802,99.8073941],[4.5363122,0.03531976,99.80696426],[4.53631266,0.03532151,99.80653356],[4.53631311,0.03532325,99.806102],[4.53631357,0.035325,99.8056696],[4.53631402,0.03532674,99.80523636],[4.53631448,0.03532849,99.80480229],[4.53631494,0.03533023,99.8043674],[4.53631539,0.03533198,99.8039317],[4.53631585,0.03533372,99.80349519],[4.5363163,0.03533547,99.80305789],[4.53631676,0.03533721,99.80261981],[4.53631721,0.03533896,99.80218095],[4.53631767,0.0353407,99.80174131],[4.53631813,0.03534245,99.80130092],[4.53631858,0.03534419,99.80085977],[4.53631904,0.03534594,99.80041788],[4.5363195,0.03534768,99.79997526],[4.53631995,0.03534943,99.7995319],[4.53632041,0.03535117,99.79908783],[4.53632086,0.03535292,99.79864304],[4.53632132,0.03535466,99.79819755],[4.53632178,0.03535641,99.79775137],[4.53632223,0.03535815,99.7973045],[4.53632269,0.0353599,99.79685695],[4.53632315,0.03536164,99.79640873],[4.53632361,0.03536339,99.79595985],[4.53632406,0.03536513,99.79551031],[4.53632452,0.03536688,99.79506013],[4.53632498,0.03536862,99.79460931],[4.53632543,0.03537036,99.79415786],[4.53632589,0.03537211,99.79370579],[4.53632635,0.03537385,99.79325311],[4.53632681,0.0353756,99.79279982],[4.53632726,0.03537734,99.79234593],[4.53632772,0.03537909,99.79189146],[4.53632818,0.03538083,99.7914364],[4.53632864,0.03538258,99.79098077],[4.5363291,0.03538432,99.79052457],[4.53632955,0.03538607,99.79006782],[4.53633001,0.03538781,99.78961051],[4.53633047,0.03538955,99.78915267],[4.53633093,0.0353913,99.78869429],[4.53633138,0.03539304,99.78823539],[4.53633184,0.03539479,99.78777597],[4.5363323,0.03539653,99.78731606],[4.53633276,0.03539828,99.78685565],[4.53633322,0.03540002,99.78639476],[4.53633367,0.03540177,99.7859334],[4.53633413,0.03540351,99.78547158],[4.53633459,0.03540525,99.78500932],[4.53633505,0.035407,99.78454662],[4.53633551,0.03540874,99.78408349],[4.53633596,0.03541049,99.78361995],[4.53633642,0.03541223,99.78315601],[4.53633688,0.03541398,99.78269167],[4.53633734,0.03541572,99.78222695],[4.5363378,0.03541746,99.78176187],[4.53633825,0.03541921,99.78129642],[4.53633871,0.03542095,99.78083062],[4.53633917,0.0354227,99.78036449],[4.53633963,0.03542444,99.77989803],[4.53634009,0.03542619,99.77943125],[4.53634054,0.03542793,99.77896417],[4.536341,0.03542968,99.7784968],[4.53634146,0.03543142,99.77802914],[4.53634192,0.03543316,99.77756121],[4.53634238,0.03543491,99.77709302],[4.53634283,0.03543665,99.77662458],[4.53634329,0.0354384,99.7761559],[4.53634375,0.03544014,99.77568699],[4.53634421,0.03544189,99.77521786],[4.53634466,0.03544363,99.77474853],[4.53634512,0.03544538,99.77427901],[4.53634558,0.03544712,99.7738093],[4.53634604,0.03544886,99.77333941],[4.53634649,0.03545061,99.77286936],[4.53634695,0.03545235,99.77239917],[4.53634741,0.0354541,99.77192883],[4.53634787,0.03545584,99.77145836],[4.53634832,0.03545759,99.77098777],[4.53634878,0.03545933,99.77051708],[4.53634924,0.03546108,99.77004629],[4.5363497,0.03546282,99.76957541],[4.53635015,0.03546457,99.76910444],[4.53635061,0.03546631,99.7686334],[4.53635107,0.03546805,99.76816227],[4.53635152,0.0354698,99.76769108],[4.53635198,0.03547154,99.76721981],[4.53635244,0.03547329,99.76674848],[4.53635289,0.03547503,99.76627708],[4.53635335,0.03547678,99.76580563],[4.53635381,0.03547852,99.76533412],[4.53635426,0.03548027,99.76486257],[4.53635472,0.03548201,99.76439096],[4.53635517,0.03548376,99.76391931],[4.53635563,0.0354855,99.76344763],[4.53635609,0.03548725,99.76297591],[4.53635654,0.03548899,99.76250416],[4.536357,0.03549074,99.76203238],[4.53635745,0.03549248,99.76156058],[4.53635791,0.03549423,99.76108876],[4.53635836,0.03549597,99.76061692],[4.53635882,0.03549772,99.76014508],[4.53635927,0.03549946,99.75967323],[4.53635973,0.03550121,99.75920138],[4.53636018,0.03550295,99.75872953],[4.53636064,0.0355047,99.75825768],[4.53636109,0.03550644,99.75778585],[4.53636155,0.03550819,99.75731402],[4.536362,0.03550993,99.75684222],[4.53636246,0.03551168,99.75637044],[4.53636291,0.03551342,99.75589869],[4.53636337,0.03551517,99.75542697],[4.53636382,0.03551692,99.75495529],[4.53636428,0.03551866,99.75448364],[4.53636473,0.03552041,99.75401204],[4.53636519,0.03552215,99.75354049],[4.53636564,0.0355239,99.75306899],[4.5363661,0.03552564,99.75259755],[4.53636655,0.03552739,99.75212612],[4.536367,0.03552913,99.75165467],[4.53636746,0.03553088,99.75118317],[4.53636791,0.03553262,99.75071157],[4.53636837,0.03553437,99.75023984],[4.53636882,0.03553611,99.74976794],[4.53636928,0.03553786,99.74929583],[4.53636973,0.0355396,99.74882348],[4.53637019,0.03554135,99.74835083],[4.53637064,0.03554309,99.74787787],[4.5363711,0.03554484,99.74740454],[4.53637155,0.03554658,99.7469308],[4.53637201,0.03554833,99.74645663],[4.53637246,0.03555007,99.74598198],[4.53637291,0.03555182,99.74550682],[4.53637337,0.03555357,99.74503109],[4.53637382,0.03555531,99.74455477],[4.53637428,0.03555706,99.74407782],[4.53637473,0.0355588,99.74360019],[4.53637518,0.03556055,99.74312185],[4.53637564,0.03556229,99.74264275],[4.53637609,0.03556404,99.74216284],[4.53637654,0.03556578,99.74168208],[4.536377,0.03556753,99.74120041],[4.53637745,0.03556927,99.7407178],[4.5363779,0.03557102,99.74023419],[4.53637836,0.03557277,99.73974955],[4.53637881,0.03557451,99.73926381],[4.53637926,0.03557626,99.73877695],[4.53637971,0.035578,99.7382889],[4.53638016,0.03557975,99.73779962],[4.53638061,0.0355815,99.73730906],[4.53638107,0.03558324,99.73681717],[4.53638152,0.03558499,99.73632392],[4.53638197,0.03558673,99.73582924],[4.53638242,0.03558848,99.73533309],[4.53638287,0.03559023,99.73483542],[4.53638332,0.03559197,99.73433619],[4.53638377,0.03559372,99.73383535],[4.53638422,0.03559547,99.73333293],[4.53638467,0.03559721,99.73282897],[4.53638512,0.03559896,99.7323235],[4.53638556,0.03560071,99.73181656],[4.53638601,0.03560245,99.73130818],[4.53638646,0.0356042,99.73079841],[4.53638691,0.03560595,99.73028727],[4.53638736,0.03560769,99.72977481],[4.53638781,0.03560944,99.72926105],[4.53638825,0.03561119,99.72874605],[4.5363887,0.03561294,99.72822984],[4.53638915,0.03561468,99.72771244],[4.5363896,0.03561643,99.72719391],[4.53639004,0.03561818,99.72667428],[4.53639049,0.03561992,99.72615358],[4.53639094,0.03562167,99.72563185],[4.53639139,0.03562342,99.72510913],[4.53639183,0.03562517,99.72458546],[4.53639228,0.03562691,99.72406088],[4.53639273,0.03562866,99.72353542],[4.53639318,0.03563041,99.72300913],[4.53639362,0.03563215,99.72248204],[4.53639407,0.0356339,99.72195418],[4.53639452,0.03563565,99.72142561],[4.53639497,0.03563739,99.72089635],[4.53639541,0.03563914,99.72036645],[4.53639586,0.03564089,99.71983594],[4.53639631,0.03564264,99.71930487],[4.53639676,0.03564438,99.71877328],[4.53639721,0.03564613,99.7182412],[4.53639765,0.03564788,99.71770868],[4.5363981,0.03564962,99.71717575],[4.53639855,0.03565137,99.71664247],[4.536399,0.03565312,99.71610887],[4.53639945,0.03565486,99.71557498],[4.5363999,0.03565661,99.71504082],[4.53640035,0.03565836,99.71450637],[4.5364008,0.0356601,99.71397165],[4.53640125,0.03566185,99.71343665],[4.5364017,0.0356636,99.71290136],[4.53640215,0.03566534,99.71236579],[4.5364026,0.03566709,99.71182994],[4.53640305,0.03566884,99.7112938],[4.5364035,0.03567058,99.71075737],[4.53640395,0.03567233,99.71022066],[4.5364044,0.03567407,99.70968366],[4.53640485,0.03567582,99.70914638],[4.5364053,0.03567757,99.7086088],[4.53640575,0.03567931,99.70807094],[4.5364062,0.03568106,99.70753278],[4.53640665,0.03568281,99.70699434],[4.5364071,0.03568455,99.7064556],[4.53640755,0.0356863,99.70591657],[4.536408,0.03568804,99.70537725],[4.53640846,0.03568979,99.70483763],[4.53640891,0.03569153,99.70429772],[4.53640936,0.03569328,99.70375751],[4.53640981,0.03569503,99.70321701],[4.53641026,0.03569677,99.70267622],[4.53641071,0.03569852,99.70213512],[4.53641117,0.03570026,99.70159373],[4.53641162,0.03570201,99.70105204],[4.53641207,0.03570376,99.70051006],[4.53641252,0.0357055,99.69996777],[4.53641298,0.03570725,99.69942519],[4.53641343,0.03570899,99.69888231],[4.53641388,0.03571074,99.69833913],[4.53641433,0.03571249,99.69779564],[4.53641479,0.03571423,99.69725186],[4.53641524,0.03571598,99.69670778],[4.53641569,0.03571772,99.69616339],[4.53641614,0.03571947,99.69561871],[4.5364166,0.03572121,99.69507372],[4.53641705,0.03572296,99.69452843],[4.5364175,0.03572471,99.69398284],[4.53641795,0.03572645,99.69343695],[4.53641841,0.0357282,99.69289075],[4.53641886,0.03572994,99.69234425],[4.53641931,0.03573169,99.69179745],[4.53641977,0.03573343,99.69125034],[4.53642022,0.03573518,99.69070293],[4.53642067,0.03573692,99.69015522],[4.53642112,0.03573867,99.6896072],[4.53642158,0.03574042,99.68905888],[4.53642203,0.03574216,99.68851026],[4.53642248,0.03574391,99.68796133],[4.53642294,0.03574565,99.6874121],[4.53642339,0.0357474,99.68686256],[4.53642384,0.03574914,99.68631272],[4.5364243,0.03575089,99.68576257],[4.53642475,0.03575264,99.68521212],[4.5364252,0.03575438,99.68466136],[4.53642565,0.03575613,99.6841103],[4.53642611,0.03575787,99.68355893],[4.53642656,0.03575962,99.68300726],[4.53642701,0.03576136,99.68245529],[4.53642747,0.03576311,99.681903],[4.53642792,0.03576486,99.68135042],[4.53642837,0.0357666,99.68079753],[4.53642882,0.03576835,99.68024432],[4.53642928,0.03577009,99.6796908],[4.53642973,0.03577184,99.67913693],[4.53643018,0.03577358,99.67858272],[4.53643064,0.03577533,99.67802814],[4.53643109,0.03577708,99.67747319],[4.53643154,0.03577882,99.67691785],[4.53643199,0.03578057,99.67636211],[4.53643245,0.03578231,99.67580595],[4.5364329,0.03578406,99.67524937],[4.53643335,0.0357858,99.67469234],[4.53643381,0.03578755,99.67413486],[4.53643426,0.0357893,99.67357692],[4.53643471,0.03579104,99.67301849],[4.53643516,0.03579279,99.67245957],[4.53643562,0.03579453,99.67190014],[4.53643607,0.03579628,99.6713402],[4.53643652,0.03579802,99.67077971],[4.53643698,0.03579977,99.67021869],[4.53643743,0.03580151,99.6696571],[4.53643788,0.03580326,99.66909493],[4.53643833,0.03580501,99.66853218],[4.53643879,0.03580675,99.66796882],[4.53643924,0.0358085,99.66740485],[4.53643969,0.03581024,99.66684025],[4.53644014,0.03581199,99.66627501],[4.5364406,0.03581374,99.66570911],[4.53644105,0.03581548,99.66514254],[4.5364415,0.03581723,99.66457528],[4.53644196,0.03581897,99.66400733],[4.53644241,0.03582072,99.66343866],[4.53644286,0.03582246,99.66286927],[4.53644331,0.03582421,99.66229913],[4.53644377,0.03582596,99.66172824],[4.53644422,0.0358277,99.66115658],[4.53644467,0.03582945,99.66058414],[4.53644512,0.03583119,99.6600109],[4.53644557,0.03583294,99.65943685],[4.53644603,0.03583468,99.65886197],[4.53644648,0.03583643,99.65828625],[4.53644693,0.03583818,99.65770968],[4.53644738,0.03583992,99.65713223],[4.53644784,0.03584167,99.6565539],[4.53644829,0.03584341,99.65597468],[4.53644874,0.03584516,99.65539454],[4.53644919,0.03584691,99.65481347],[4.53644964,0.03584865,99.65423145],[4.53645009,0.0358504,99.65364848],[4.53645055,0.03585214,99.65306454],[4.536451,0.03585389,99.65247961],[4.53645145,0.03585564,99.65189368],[4.5364519,0.03585738,99.65130674],[4.53645235,0.03585913,99.65071876],[4.5364528,0.03586087,99.65012973],[4.53645326,0.03586262,99.64953965],[4.53645371,0.03586437,99.64894848],[4.53645416,0.03586611,99.64835623],[4.53645461,0.03586786,99.64776287],[4.53645506,0.0358696,99.64716838],[4.53645551,0.03587135,99.64657276],[4.53645596,0.0358731,99.64597599],[4.53645641,0.03587484,99.64537805],[4.53645686,0.03587659,99.64477893],[4.53645731,0.03587834,99.64417861],[4.53645777,0.03588008,99.64357707],[4.53645822,0.03588183,99.64297431],[4.53645867,0.03588357,99.64237031],[4.53645912,0.03588532,99.64176504],[4.53645957,0.03588707,99.6411585],[4.53646002,0.03588881,99.64055068],[4.53646047,0.03589056,99.63994158],[4.53646092,0.03589231,99.63933121],[4.53646137,0.03589405,99.63871955],[4.53646182,0.0358958,99.63810662],[4.53646227,0.03589755,99.63749241],[4.53646272,0.03589929,99.63687693],[4.53646317,0.03590104,99.63626017],[4.53646362,0.03590279,99.63564214],[4.53646407,0.03590453,99.63502283],[4.53646452,0.03590628,99.63440224],[4.53646497,0.03590803,99.63378038],[4.53646542,0.03590977,99.63315724],[4.53646586,0.03591152,99.63253282],[4.53646631,0.03591327,99.63190713],[4.53646676,0.03591501,99.63128017],[4.53646721,0.03591676,99.63065192],[4.53646766,0.0359185,99.63002241],[4.53646811,0.03592025,99.62939161],[4.53646856,0.035922,99.62875954],[4.53646901,0.03592374,99.6281262],[4.53646946,0.03592549,99.62749158],[4.53646991,0.03592724,99.62685568],[4.53647036,0.03592898,99.62621851],[4.53647081,0.03593073,99.62558007],[4.53647126,0.03593248,99.62494035],[4.53647171,0.03593422,99.62429935],[4.53647216,0.03593597,99.62365709],[4.5364726,0.03593772,99.62301354],[4.53647305,0.03593946,99.62236873],[4.5364735,0.03594121,99.62172266],[4.53647395,0.03594296,99.62107534],[4.5364744,0.0359447,99.62042676],[4.53647485,0.03594645,99.61977695],[4.5364753,0.0359482,99.6191259],[4.53647575,0.03594994,99.61847362],[4.5364762,0.03595169,99.61782012],[4.53647665,0.03595344,99.61716541],[4.5364771,0.03595519,99.61650949],[4.53647755,0.03595693,99.61585237],[4.53647799,0.03595868,99.61519406],[4.53647844,0.03596043,99.61453456],[4.53647889,0.03596217,99.61387388],[4.53647934,0.03596392,99.61321202],[4.53647979,0.03596567,99.61254901],[4.53648024,0.03596741,99.61188483],[4.53648069,0.03596916,99.6112195],[4.53648114,0.03597091,99.61055303],[4.53648159,0.03597265,99.60988541],[4.53648204,0.0359744,99.60921667],[4.53648249,0.03597614,99.6085468],[4.53648294,0.03597789,99.60787582],[4.53648339,0.03597964,99.60720372],[4.53648384,0.03598138,99.60653053],[4.53648428,0.03598313,99.60585623],[4.53648473,0.03598488,99.60518085],[4.53648518,0.03598662,99.60450438],[4.53648563,0.03598837,99.60382684],[4.53648608,0.03599012,99.60314823],[4.53648653,0.03599186,99.60246856],[4.53648698,0.03599361,99.60178783],[4.53648743,0.03599536,99.60110606],[4.53648788,0.0359971,99.60042324],[4.53648833,0.03599885,99.5997394],[4.53648878,0.0360006,99.59905452],[4.53648923,0.03600234,99.59836863],[4.53648968,0.03600409,99.59768172],[4.53649013,0.03600584,99.59699381],[4.53649058,0.03600758,99.5963049],[4.53649103,0.03600933,99.595615],[4.53649148,0.03601108,99.59492412],[4.53649193,0.03601282,99.59423226],[4.53649238,0.03601457,99.59353942],[4.53649283,0.03601632,99.59284563],[4.53649328,0.03601806,99.59215087],[4.53649373,0.03601981,99.59145516],[4.53649418,0.03602155,99.5907585],[4.53649463,0.0360233,99.59006088],[4.53649508,0.03602505,99.58936232],[4.53649553,0.03602679,99.58866282],[4.53649598,0.03602854,99.58796238],[4.53649644,0.03603029,99.58726101],[4.53649689,0.03603203,99.5865587],[4.53649734,0.03603378,99.58585546],[4.53649779,0.03603552,99.5851513],[4.53649824,0.03603727,99.58444621],[4.53649869,0.03603902,99.58374021],[4.53649914,0.03604076,99.58303329],[4.53649959,0.03604251,99.58232546],[4.53650004,0.03604426,99.58161672],[4.53650049,0.036046,99.58090708],[4.53650095,0.03604775,99.58019652],[4.5365014,0.03604949,99.57948505],[4.53650185,0.03605124,99.57877262],[4.5365023,0.03605299,99.57805923],[4.53650275,0.03605473,99.57734484],[4.5365032,0.03605648,99.57662944],[4.53650365,0.03605823,99.575913],[4.53650411,0.03605997,99.5751955],[4.53650456,0.03606172,99.57447692],[4.53650501,0.03606346,99.57375724],[4.53650546,0.03606521,99.57303642],[4.53650591,0.03606696,99.57231446],[4.53650636,0.0360687,99.57159132],[4.53650681,0.03607045,99.57086698],[4.53650727,0.03607219,99.57014143],[4.53650772,0.03607394,99.56941464],[4.53650817,0.03607569,99.56868658],[4.53650862,0.03607743,99.56795724],[4.53650907,0.03607918,99.56722659],[4.53650952,0.03608092,99.56649461],[4.53650997,0.03608267,99.56576128],[4.53651042,0.03608442,99.56502657],[4.53651087,0.03608616,99.56429047],[4.53651132,0.03608791,99.56355294],[4.53651177,0.03608966,99.56281397],[4.53651223,0.0360914,99.56207354],[4.53651268,0.03609315,99.56133162],[4.53651313,0.0360949,99.56058819],[4.53651358,0.03609664,99.55984323],[4.53651403,0.03609839,99.55909672],[4.53651448,0.03610014,99.55834863],[4.53651493,0.03610188,99.55759895],[4.53651537,0.03610363,99.55684764],[4.53651582,0.03610538,99.5560947],[4.53651627,0.03610712,99.55534012],[4.53651672,0.03610887,99.55458389],[4.53651717,0.03611062,99.55382602],[4.53651762,0.03611236,99.5530665],[4.53651807,0.03611411,99.55230532],[4.53651852,0.03611586,99.55154249],[4.53651896,0.0361176,99.55077799],[4.53651941,0.03611935,99.55001183],[4.53651986,0.0361211,99.549244],[4.53652031,0.03612284,99.54847451],[4.53652076,0.03612459,99.54770338],[4.5365212,0.03612634,99.54693063],[4.53652165,0.03612809,99.54615629],[4.5365221,0.03612983,99.54538037],[4.53652254,0.03613158,99.54460289],[4.53652299,0.03613333,99.54382388],[4.53652344,0.03613507,99.54304335],[4.53652388,0.03613682,99.54226133],[4.53652433,0.03613857,99.54147784],[4.53652478,0.03614032,99.5406929],[4.53652522,0.03614206,99.53990652],[4.53652567,0.03614381,99.53911874],[4.53652612,0.03614556,99.53832957],[4.53652656,0.03614731,99.53753903],[4.53652701,0.03614905,99.53674714],[4.53652745,0.0361508,99.53595392],[4.5365279,0.03615255,99.5351594],[4.53652835,0.0361543,99.53436359],[4.53652879,0.03615604,99.53356652],[4.53652924,0.03615779,99.53276821],[4.53652968,0.03615954,99.53196867],[4.53653013,0.03616129,99.53116794],[4.53653058,0.03616304,99.53036602],[4.53653102,0.03616478,99.52956294],[4.53653147,0.03616653,99.52875872],[4.53653191,0.03616828,99.52795338],[4.53653236,0.03617003,99.52714694],[4.5365328,0.03617177,99.52633942],[4.53653325,0.03617352,99.52553085],[4.5365337,0.03617527,99.52472124],[4.53653414,0.03617702,99.52391061],[4.53653459,0.03617876,99.52309899],[4.53653503,0.03618051,99.5222864],[4.53653548,0.03618226,99.52147285],[4.53653593,0.03618401,99.52065836],[4.53653637,0.03618575,99.51984296],[4.53653682,0.0361875,99.51902667],[4.53653727,0.03618925,99.51820951],[4.53653771,0.036191,99.51739149],[4.53653816,0.03619274,99.51657264],[4.53653861,0.03619449,99.51575298],[4.53653905,0.03619624,99.51493253],[4.5365395,0.03619799,99.51411131],[4.53653995,0.03619973,99.51328934],[4.53654039,0.03620148,99.51246664],[4.53654084,0.03620323,99.51164322],[4.53654129,0.03620497,99.51081912],[4.53654174,0.03620672,99.50999435],[4.53654218,0.03620847,99.50916891],[4.53654263,0.03621022,99.50834281],[4.53654308,0.03621196,99.50751604],[4.53654353,0.03621371,99.50668858],[4.53654398,0.03621546,99.50586044],[4.53654443,0.0362172,99.5050316],[4.53654487,0.03621895,99.50420205],[4.53654532,0.0362207,99.5033718],[4.53654577,0.03622244,99.50254082],[4.53654622,0.03622419,99.50170912],[4.53654667,0.03622594,99.50087668],[4.53654712,0.03622768,99.5000435],[4.53654757,0.03622943,99.49920957],[4.53654802,0.03623118,99.49837491],[4.53654847,0.03623292,99.49753952],[4.53654891,0.03623467,99.49670344],[4.53654936,0.03623642,99.49586666],[4.53654981,0.03623816,99.4950292],[4.53655026,0.03623991,99.49419108],[4.53655071,0.03624166,99.49335231],[4.53655116,0.0362434,99.49251291],[4.53655161,0.03624515,99.49167289],[4.53655206,0.0362469,99.49083226],[4.53655251,0.03624864,99.48999104],[4.53655296,0.03625039,99.48914925],[4.53655341,0.03625214,99.48830689],[4.53655386,0.03625389,99.48746399],[4.5365543,0.03625563,99.48662055],[4.53655475,0.03625738,99.4857766],[4.5365552,0.03625913,99.48493214],[4.53655565,0.03626087,99.48408719],[4.5365561,0.03626262,99.48324176],[4.53655655,0.03626437,99.48239587],[4.536557,0.03626611,99.48154953],[4.53655745,0.03626786,99.48070275],[4.5365579,0.03626961,99.47985556],[4.53655835,0.03627135,99.47900795],[4.5365588,0.0362731,99.47815996],[4.53655924,0.03627485,99.47731159],[4.53655969,0.03627659,99.47646285],[4.53656014,0.03627834,99.47561376],[4.53656059,0.03628009,99.47476433],[4.53656104,0.03628183,99.47391458],[4.53656149,0.03628358,99.47306453],[4.53656194,0.03628533,99.47221417],[4.53656239,0.03628707,99.47136353],[4.53656283,0.03628882,99.47051263],[4.53656328,0.03629057,99.46966147],[4.53656373,0.03629232,99.46881007],[4.53656418,0.03629406,99.46795844],[4.53656463,0.03629581,99.4671066],[4.53656507,0.03629756,99.46625455],[4.53656552,0.0362993,99.46540232],[4.53656597,0.03630105,99.46454992],[4.53656642,0.0363028,99.46369735],[4.53656687,0.03630454,99.46284464],[4.53656731,0.03630629,99.4619918],[4.53656776,0.03630804,99.46113883],[4.53656821,0.03630979,99.46028576],[4.53656866,0.03631153,99.4594326],[4.5365691,0.03631328,99.45857935],[4.53656955,0.03631503,99.45772604],[4.53657,0.03631678,99.45687267],[4.53657044,0.03631852,99.45601926],[4.53657089,0.03632027,99.45516583],[4.53657134,0.03632202,99.45431238],[4.53657178,0.03632377,99.45345893],[4.53657223,0.03632551,99.45260549],[4.53657267,0.03632726,99.45175208],[4.53657312,0.03632901,99.45089871],[4.53657357,0.03633076,99.4500454],[4.53657401,0.0363325,99.44919217],[4.53657446,0.03633425,99.44833902],[4.5365749,0.036336,99.44748597],[4.53657535,0.03633775,99.44663305],[4.53657579,0.03633949,99.44578025],[4.53657624,0.03634124,99.4449276],[4.53657668,0.03634299,99.44407511],[4.53657713,0.03634474,99.4432228],[4.53657757,0.03634649,99.44237071],[4.53657802,0.03634823,99.44151889],[4.53657846,0.03634998,99.4406674],[4.5365789,0.03635173,99.43981627],[4.53657935,0.03635348,99.43896557],[4.53657979,0.03635523,99.43811535],[4.53658024,0.03635697,99.43726565],[4.53658068,0.03635872,99.43641652],[4.53658112,0.03636047,99.43556802],[4.53658157,0.03636222,99.4347202],[4.53658201,0.03636397,99.4338731],[4.53658245,0.03636572,99.43302677],[4.5365829,0.03636746,99.43218127],[4.53658334,0.03636921,99.43133665],[4.53658378,0.03637096,99.43049295],[4.53658423,0.03637271,99.42965022],[4.53658467,0.03637446,99.42880842],[4.53658511,0.03637621,99.42796743],[4.53658556,0.03637795,99.42712713],[4.536586,0.0363797,99.42628739],[4.53658645,0.03638145,99.42544808],[4.53658689,0.0363832,99.42460909],[4.53658733,0.03638495,99.42377029],[4.53658778,0.03638669,99.42293155],[4.53658822,0.03638844,99.42209276],[4.53658866,0.03639019,99.42125379],[4.53658911,0.03639194,99.42041452],[4.53658955,0.03639369,99.41957483],[4.53658999,0.03639544,99.41873459],[4.53659044,0.03639718,99.41789368],[4.53659088,0.03639893,99.41705199],[4.53659133,0.03640068,99.41620939],[4.53659177,0.03640243,99.41536577],[4.53659221,0.03640418,99.41452099],[4.53659266,0.03640592,99.41367495],[4.5365931,0.03640767,99.41282753],[4.53659355,0.03640942,99.41197859],[4.53659399,0.03641117,99.41112804],[4.53659443,0.03641292,99.41027574],[4.53659488,0.03641466,99.40942158],[4.53659532,0.03641641,99.40856545],[4.53659577,0.03641816,99.40770722],[4.53659621,0.03641991,99.40684678],[4.53659666,0.03642166,99.40598401],[4.5365971,0.0364234,99.40511879],[4.53659754,0.03642515,99.40425102],[4.53659799,0.0364269,99.40338056],[4.53659843,0.03642865,99.40250732],[4.53659888,0.0364304,99.40163117],[4.53659932,0.03643213,99.400752],[4.53659977,0.03643388,99.39986975],[4.53660021,0.03643563,99.39898456],[4.53660066,0.03643738,99.39809664],[4.5366011,0.03643913,99.39720619],[4.53660155,0.03644087,99.39631341],[4.53660199,0.03644262,99.3954185],[4.53660244,0.03644437,99.39452166],[4.53660288,0.03644612,99.39362308],[4.53660333,0.03644787,99.39272297],[4.53660377,0.03644961,99.39182153],[4.53660422,0.03645136,99.39091895],[4.53660466,0.03645311,99.39001539],[4.53660511,0.03645486,99.38911102],[4.53660556,0.0364566,99.388206],[4.536606,0.03645835,99.38730049],[4.53660645,0.0364601,99.38639464],[4.53660689,0.03646185,99.38548862],[4.53660734,0.0364636,99.38458258],[4.53660779,0.03646534,99.38367668],[4.53660823,0.03646709,99.38277107],[4.53660868,0.03646884,99.38186592],[4.53660912,0.03647059,99.38096137],[4.53649495,0.03650002,99.26451101]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":1,"type":"shoulder","predecessorId":1},{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":2,"type":"none","predecessorId":2}],"roadId":"1004600","singleSide":false,"rightLanes":[{"successorId":-6,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"id":-6,"type":"none","predecessorId":-6},{"successorId":-5,"level":true,"heights":[{"outer":0.15,"inner":0.025}],"id":-5,"type":"border","predecessorId":-5},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-4,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"id":-4,"type":"border","predecessorId":0},{"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-3,"type":"stop","predecessorId":0},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.53588396,0.03417002,99.84168354],[4.53588348,0.03416828,99.84174466],[4.53588318,0.03416719,99.84178233],[4.53599821,0.03413589,99.94938569],[4.5359985,0.03413699,99.94943885],[4.53599896,0.03413873,99.94952346],[4.53588396,0.03417002,99.84168354]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":1,"type":"shoulder","predecessorId":1},{"successorId":0,"level":false,"id":2,"type":"border","predecessorId":2}],"roadId":"1004600","singleSide":false,"rightLanes":[{"successorId":-6,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"id":-6,"type":"none","predecessorId":-6},{"successorId":-5,"level":true,"heights":[{"outer":0.15,"inner":0.025}],"id":-5,"type":"border","predecessorId":-5},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-4,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"id":-4,"type":"border","predecessorId":-4},{"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-3,"type":"stop","predecessorId":-3},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.53588318,0.03416719,99.84178233],[4.5358827,0.03416545,99.84184138],[4.53588221,0.03416372,99.84189904],[4.53588173,0.03416198,99.8419553],[4.53588125,0.03416024,99.84201013],[4.53588091,0.03415899,99.8420486],[4.53599602,0.03412767,100.06567898],[4.53599636,0.03412892,100.06574184],[4.53599682,0.03413066,100.06582921],[4.53599729,0.0341324,100.06591633],[4.53599775,0.03413415,100.06600321],[4.53599822,0.03413589,100.06608983],[4.53588318,0.03416719,99.84178233]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":1,"type":"shoulder","predecessorId":0},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":2,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"id":2,"type":"border","predecessorId":0},{"successorId":3,"level":true,"heights":[{"outer":0.0,"inner":0.0},{"outer":0.15,"inner":0.15}],"id":3,"type":"border","predecessorId":0},{"successorId":4,"level":true,"heights":[{"outer":0.15,"inner":0.15},{"outer":0.15,"inner":0.025}],"id":4,"type":"border","predecessorId":0}],"roadId":"1004600","singleSide":false,"rightLanes":[{"successorId":-6,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"id":-6,"type":"none","predecessorId":-6},{"successorId":-5,"level":true,"heights":[{"outer":0.15,"inner":0.025}],"id":-5,"type":"border","predecessorId":-5},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-4,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"id":-4,"type":"border","predecessorId":-4},{"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-3,"type":"stop","predecessorId":-3},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.53588091,0.03415899,99.8420486],[4.53588043,0.03415726,99.84209702],[4.53587995,0.03415552,99.842144],[4.53587947,0.03415378,99.84218952],[4.53587898,0.03415205,99.84223357],[4.5358785,0.03415031,99.84227614],[4.53587802,0.03414857,99.84231722],[4.53587754,0.03414683,99.8423568],[4.53587706,0.0341451,99.84239487],[4.53587658,0.03414336,99.84243141],[4.5358761,0.03414162,99.84246641],[4.53587562,0.03413988,99.84249986],[4.53587514,0.03413815,99.84253176],[4.53587466,0.03413641,99.84256208],[4.53587418,0.03413467,99.84259081],[4.5358737,0.03413294,99.84261795],[4.53587321,0.0341312,99.84264349],[4.53587294,0.03413022,99.84265719],[4.53598833,0.03409881,100.06421625],[4.53598859,0.03409979,100.06426746],[4.53598906,0.03410153,100.06435791],[4.53598952,0.03410327,100.06444804],[4.53598999,0.03410502,100.06453786],[4.53599045,0.03410676,100.06462738],[4.53599092,0.0341085,100.0647166],[4.53599138,0.03411024,100.06480551],[4.53599185,0.03411199,100.06489413],[4.53599231,0.03411373,100.06498246],[4.53599277,0.03411547,100.0650705],[4.53599324,0.03411721,100.06515826],[4.5359937,0.03411896,100.06524573],[4.53599417,0.0341207,100.06533292],[4.53599463,0.03412244,100.06541984],[4.5359951,0.03412418,100.06550649],[4.53599556,0.03412593,100.06559287],[4.53599602,0.03412767,100.06567898],[4.53588091,0.03415899,99.8420486]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":1,"type":"shoulder","predecessorId":1},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"id":2,"type":"border","predecessorId":2},{"successorId":2,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":3,"type":"border","predecessorId":3},{"successorId":3,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":4,"type":"border","predecessorId":4}],"roadId":"1004600","singleSide":false,"rightLanes":[{"successorId":-6,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"id":-6,"type":"none","predecessorId":-6},{"successorId":-5,"level":true,"heights":[{"outer":0.15,"inner":0.025}],"id":-5,"type":"border","predecessorId":-5},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-4,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"id":-4,"type":"border","predecessorId":-4},{"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-3,"type":"stop","predecessorId":-3},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.53587294,0.03413022,99.84265719],[4.53587246,0.03412848,99.84268195],[4.53587198,0.03412674,99.84270508],[4.5358715,0.03412501,99.84272655],[4.53587102,0.03412327,99.84274636],[4.53587081,0.03412249,99.84275471],[4.53598626,0.03409105,100.06382116],[4.53598647,0.03409184,100.06386132],[4.53598694,0.03409358,100.06395055],[4.5359874,0.03409532,100.06403944],[4.53598787,0.03409706,100.06412801],[4.53598833,0.03409881,100.06421625],[4.53587294,0.03413022,99.84265719]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":1,"type":"shoulder","predecessorId":0},{"successorId":2,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":2,"type":"border","predecessorId":3},{"successorId":3,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":3,"type":"border","predecessorId":4}],"roadId":"1004600","singleSide":false,"rightLanes":[{"successorId":-6,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"id":-6,"type":"none","predecessorId":-6},{"successorId":-5,"level":true,"heights":[{"outer":0.15,"inner":0.025}],"id":-5,"type":"border","predecessorId":-5},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-4,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"id":-4,"type":"border","predecessorId":-4},{"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-3,"type":"stop","predecessorId":-3},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.53587081,0.03412249,99.84275471],[4.53587033,0.03412075,99.84277488],[4.53586985,0.03411901,99.84279337],[4.53586937,0.03411728,99.8428102],[4.53586889,0.03411554,99.84282535],[4.53586841,0.0341138,99.84283882],[4.53586793,0.03411206,99.84285062],[4.53586745,0.03411033,99.84286074],[4.53586697,0.03410859,99.84286918],[4.53586649,0.03410685,99.84287593],[4.53586601,0.03410511,99.842881],[4.53586553,0.03410338,99.84288438],[4.53586505,0.03410164,99.84288608],[4.53586457,0.0340999,99.84288607],[4.53586409,0.03409816,99.84288438],[4.53586361,0.03409643,99.84288099],[4.53586313,0.03409469,99.8428759],[4.53586265,0.03409295,99.84286913],[4.53586265,0.03409294,99.84286909],[4.53597835,0.03406142,100.06241982],[4.53597835,0.03406143,100.06242029],[4.53597882,0.03406318,100.06250599],[4.53597928,0.03406492,100.06259127],[4.53597975,0.03406666,100.06267611],[4.53598022,0.0340684,100.06276052],[4.53598068,0.03407014,100.0628445],[4.53598115,0.03407189,100.06292806],[4.53598161,0.03407363,100.06301121],[4.53598208,0.03407537,100.06309395],[4.53598254,0.03407711,100.06317629],[4.53598301,0.03407886,100.06325823],[4.53598347,0.0340806,100.06333977],[4.53598394,0.03408234,100.06342094],[4.5359844,0.03408408,100.06350172],[4.53598487,0.03408583,100.06358213],[4.53598533,0.03408757,100.06366216],[4.5359858,0.03408931,100.06374184],[4.53598626,0.03409105,100.06382116],[4.53587081,0.03412249,99.84275471]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":1,"type":"shoulder","predecessorId":1},{"successorId":2,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":2,"type":"border","predecessorId":2},{"successorId":3,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":3,"type":"border","predecessorId":3}],"roadId":"1004600","singleSide":false,"rightLanes":[{"successorId":-6,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":-6,"type":"border","predecessorId":-6},{"successorId":-5,"level":true,"heights":[{"outer":0.15,"inner":0.025}],"id":-5,"type":"border","predecessorId":-5},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"id":-4,"type":"border","predecessorId":-4},{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-3,"type":"stop","predecessorId":-3},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.53586265,0.03409294,99.84286909],[4.53586218,0.0340912,99.84286315],[4.5358617,0.03408946,99.84285553],[4.53586123,0.03408772,99.84284625],[4.53586076,0.03408598,99.84283531],[4.53586029,0.03408425,99.84282271],[4.53585997,0.03408307,99.84281324],[4.5359757,0.03405153,100.0619719],[4.53597602,0.03405271,100.0620261],[4.53597648,0.03405446,100.06210569],[4.53597695,0.0340562,100.06218486],[4.53597742,0.03405794,100.0622636],[4.53597788,0.03405968,100.06234193],[4.53597835,0.03406142,100.06241982],[4.53586265,0.03409294,99.84286909]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":1,"type":"shoulder","predecessorId":1},{"successorId":2,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":2,"type":"border","predecessorId":2},{"successorId":3,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":3,"type":"border","predecessorId":3}],"roadId":"1004600","singleSide":false,"rightLanes":[{"successorId":-6,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":-6,"type":"border","predecessorId":-6},{"successorId":-5,"level":true,"heights":[{"outer":0.15,"inner":0.025}],"id":-5,"type":"border","predecessorId":-5},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-4,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"id":-4,"type":"border","predecessorId":0},{"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-3,"type":"stop","predecessorId":0},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.53585997,0.03408307,99.84281324],[4.5358595,0.03408132,99.84279893],[4.53585903,0.03407958,99.84278397],[4.53585857,0.03407784,99.84276834],[4.5358581,0.0340761,99.84275201],[4.53585763,0.03407436,99.84273497],[4.53585716,0.03407262,99.84271721],[4.53585669,0.03407088,99.84269869],[4.53585622,0.03406914,99.84267941],[4.53585575,0.0340674,99.84265934],[4.53585528,0.03406566,99.84263847],[4.53585481,0.03406392,99.84261678],[4.53585434,0.03406218,99.84259424],[4.53585387,0.03406044,99.84257085],[4.5358534,0.0340587,99.84254658],[4.53585293,0.03405696,99.84252142],[4.53585246,0.03405522,99.84249535],[4.53585199,0.03405348,99.84246834],[4.53585152,0.03405174,99.84244038],[4.53585105,0.03405,99.84241146],[4.53585058,0.03404826,99.84238156],[4.53585011,0.03404652,99.84235065],[4.53584964,0.03404478,99.84231872],[4.53584917,0.03404304,99.84228575],[4.5358487,0.0340413,99.84225173],[4.53584823,0.03403956,99.84221663],[4.53584776,0.03403782,99.84218045],[4.53584729,0.03403608,99.84214315],[4.53584681,0.03403434,99.84210472],[4.53584634,0.0340326,99.84206516],[4.53584587,0.03403086,99.84202443],[4.5358454,0.03402912,99.84198252],[4.53584493,0.03402739,99.84193941],[4.53584446,0.03402565,99.84189509],[4.53584399,0.03402391,99.84184954],[4.53584352,0.03402217,99.84180274],[4.53584305,0.03402043,99.84175467],[4.53584258,0.03401869,99.84170532],[4.53584211,0.03401695,99.84165466],[4.53584164,0.03401521,99.84160269],[4.53584117,0.03401347,99.84154938],[4.5358407,0.03401173,99.84149471],[4.53584022,0.03400999,99.84143868],[4.53583975,0.03400825,99.84138125],[4.53583928,0.03400651,99.84132242],[4.53583881,0.03400477,99.84126217],[4.53583835,0.03400303,99.84120048],[4.53583788,0.03400129,99.84113733],[4.53583741,0.03399955,99.8410727],[4.53583694,0.03399781,99.84100658],[4.53583647,0.03399607,99.84093895],[4.535836,0.03399433,99.8408698],[4.53583553,0.03399259,99.8407991],[4.53583506,0.03399085,99.84072684],[4.53583459,0.03398911,99.840653],[4.53583412,0.03398737,99.84057756],[4.53583365,0.03398563,99.84050054],[4.53583318,0.03398389,99.84042193],[4.53583271,0.03398215,99.84034176],[4.53583224,0.03398041,99.84026006],[4.53583177,0.03397867,99.84017683],[4.5358313,0.03397693,99.8400921],[4.53583083,0.03397519,99.84000588],[4.53583037,0.03397345,99.83991819],[4.5358299,0.03397171,99.83982906],[4.53582943,0.03396997,99.83973849],[4.53582896,0.03396823,99.83964651],[4.53582849,0.03396649,99.83955313],[4.53582802,0.03396475,99.83945838],[4.53582755,0.03396301,99.83936227],[4.53582708,0.03396127,99.83926482],[4.53582661,0.03395953,99.83916604],[4.53582614,0.03395779,99.83906596],[4.53582567,0.03395605,99.8389646],[4.53582521,0.03395431,99.83886196],[4.53582474,0.03395257,99.83875808],[4.53582427,0.03395083,99.83865296],[4.5358238,0.03394909,99.83854663],[4.53582333,0.03394735,99.83843911],[4.53582286,0.03394561,99.8383304],[4.53582239,0.03394387,99.83822054],[4.53582192,0.03394213,99.83810954],[4.53582146,0.03394038,99.83799741],[4.53582099,0.03393864,99.83788418],[4.53582052,0.0339369,99.83776986],[4.53582005,0.03393516,99.83765447],[4.53581958,0.03393342,99.83753804],[4.53581912,0.03393168,99.83742057],[4.53581865,0.03392994,99.83730208],[4.53581818,0.0339282,99.8371826],[4.53581771,0.03392646,99.83706214],[4.53581724,0.03392472,99.83694072],[4.53581678,0.03392298,99.83681836],[4.53581631,0.03392124,99.83669508],[4.53581584,0.0339195,99.83657089],[4.53581537,0.03391776,99.8364458],[4.53581491,0.03391602,99.83631983],[4.53581444,0.03391428,99.83619299],[4.53581397,0.03391254,99.83606529],[4.53581351,0.0339108,99.83593673],[4.53581304,0.03390906,99.83580734],[4.53581257,0.03390732,99.83567712],[4.5358121,0.03390558,99.83554609],[4.53581164,0.03390384,99.83541425],[4.53581117,0.0339021,99.83528161],[4.5358107,0.03390035,99.8351482],[4.53581024,0.03389861,99.83501401],[4.53580977,0.03389687,99.83487907],[4.53580931,0.03389513,99.83474338],[4.53580884,0.03389339,99.83460696],[4.53580837,0.03389165,99.83446981],[4.53580791,0.03388991,99.83433194],[4.53580744,0.03388817,99.83419338],[4.53580697,0.03388643,99.83405413],[4.53580651,0.03388469,99.8339142],[4.53580604,0.03388295,99.8337736],[4.53580558,0.03388121,99.83363235],[4.53580511,0.03387947,99.83349045],[4.53580464,0.03387773,99.83334793],[4.53580418,0.03387598,99.83320478],[4.53580371,0.03387424,99.83306103],[4.53580325,0.0338725,99.83291666],[4.53580278,0.03387076,99.83277166],[4.53580231,0.03386902,99.83262602],[4.53580185,0.03386728,99.83247972],[4.53580138,0.03386554,99.83233274],[4.53580092,0.0338638,99.83218506],[4.53580045,0.03386206,99.83203666],[4.53579999,0.03386032,99.83188754],[4.53579952,0.03385858,99.83173766],[4.53579905,0.03385684,99.83158702],[4.53579859,0.0338551,99.8314356],[4.53579812,0.03385335,99.83128337],[4.53579765,0.03385161,99.83113033],[4.53579719,0.03384987,99.83097645],[4.53579672,0.03384813,99.83082171],[4.53579625,0.03384639,99.83066611],[4.53579579,0.03384465,99.83050962],[4.53579532,0.03384291,99.83035223],[4.53579485,0.03384117,99.83019391],[4.53579439,0.03383943,99.83003465],[4.53579392,0.03383769,99.82987444],[4.53579345,0.03383595,99.82971325],[4.53579298,0.03383421,99.82955109],[4.53579251,0.03383247,99.82938793],[4.53579205,0.03383073,99.82922377],[4.53579158,0.03382899,99.8290586],[4.53579111,0.03382725,99.82889241],[4.53579064,0.03382551,99.82872519],[4.53579017,0.03382377,99.82855693],[4.5357897,0.03382203,99.82838761],[4.53578923,0.03382029,99.82821723],[4.53578876,0.03381855,99.82804578],[4.53578829,0.03381681,99.82787325],[4.53578782,0.03381507,99.82769963],[4.53578735,0.03381333,99.8275249],[4.53578688,0.03381159,99.82734906],[4.53578641,0.03380985,99.8271721],[4.53578594,0.03380811,99.826994],[4.53578547,0.03380637,99.82681476],[4.535785,0.03380463,99.82663437],[4.53578453,0.0338029,99.82645281],[4.53578406,0.03380116,99.82627008],[4.53578359,0.03379942,99.82608616],[4.53578312,0.03379768,99.82590105],[4.53578265,0.03379594,99.82571473],[4.53578218,0.0337942,99.82552719],[4.53578171,0.03379246,99.82533842],[4.53578123,0.03379072,99.82514842],[4.53578076,0.03378898,99.82495718],[4.53578029,0.03378724,99.82476468],[4.53577982,0.0337855,99.82457092],[4.53577935,0.03378376,99.82437591],[4.53577888,0.03378203,99.82417962],[4.5357784,0.03378029,99.82398206],[4.53577793,0.03377855,99.82378324],[4.53577746,0.03377681,99.82358317],[4.53577699,0.03377507,99.82338185],[4.53577652,0.03377333,99.8231793],[4.53577604,0.03377159,99.82297553],[4.53577557,0.03376985,99.82277055],[4.5357751,0.03376811,99.82256437],[4.53577463,0.03376638,99.822357],[4.53577416,0.03376464,99.82214846],[4.53577368,0.0337629,99.82193875],[4.53577321,0.03376116,99.82172788],[4.53577274,0.03375942,99.82151587],[4.53577227,0.03375768,99.82130273],[4.53577179,0.03375594,99.82108847],[4.53577132,0.0337542,99.82087309],[4.53577085,0.03375246,99.82065661],[4.53577038,0.03375073,99.82043905],[4.5357699,0.03374899,99.8202204],[4.53576943,0.03374725,99.82000069],[4.53576896,0.03374551,99.81977992],[4.53576848,0.03374377,99.81955811],[4.53576801,0.03374203,99.81933526],[4.53576754,0.03374029,99.81911139],[4.53576707,0.03373856,99.81888651],[4.53576659,0.03373682,99.81866062],[4.53576612,0.03373508,99.81843375],[4.53576565,0.03373334,99.8182059],[4.53576517,0.0337316,99.81797707],[4.5357647,0.03372986,99.81774729],[4.53576422,0.03372813,99.81751657],[4.53576375,0.03372639,99.81728491],[4.53576328,0.03372465,99.81705233],[4.5357628,0.03372291,99.81681883],[4.53576233,0.03372117,99.81658443],[4.53576185,0.03371943,99.81634915],[4.53576138,0.0337177,99.81611298],[4.5357609,0.03371596,99.81587595],[4.53576043,0.03371422,99.81563806],[4.53575996,0.03371248,99.81539932],[4.53575948,0.03371074,99.81515975],[4.53575901,0.03370901,99.81491936],[4.53575853,0.03370727,99.81467815],[4.53575805,0.03370553,99.81443615],[4.53575758,0.03370379,99.81419336],[4.5357571,0.03370205,99.81394978],[4.53575663,0.03370032,99.81370544],[4.53575615,0.03369858,99.81346035],[4.53575568,0.03369684,99.81321451],[4.5357552,0.0336951,99.81296794],[4.53575472,0.03369337,99.81272065],[4.53575425,0.03369163,99.81247265],[4.53575377,0.03368989,99.81222395],[4.53575329,0.03368815,99.81197456],[4.53575282,0.03368642,99.8117245],[4.53575234,0.03368468,99.81147377],[4.53575186,0.03368294,99.81122239],[4.53575138,0.0336812,99.81097037],[4.53575091,0.03367947,99.81071772],[4.53575043,0.03367773,99.81046445],[4.53574995,0.03367599,99.81021057],[4.53574947,0.03367426,99.8099561],[4.53574899,0.03367252,99.80970105],[4.53574852,0.03367078,99.80944542],[4.53574804,0.03366904,99.80918923],[4.53574756,0.03366731,99.80893249],[4.53574708,0.03366557,99.80867522],[4.53574661,0.03366383,99.80841742],[4.53574613,0.03366209,99.8081591],[4.53574565,0.03366036,99.80790028],[4.53574518,0.03365862,99.80764097],[4.5357447,0.03365688,99.80738119],[4.53574422,0.03365514,99.80712093],[4.53574375,0.03365341,99.80686022],[4.53574327,0.03365167,99.80659906],[4.5357428,0.03364993,99.80633747],[4.53574233,0.03364819,99.80607546],[4.53574185,0.03364645,99.80581305],[4.53574138,0.03364472,99.80555023],[4.53574091,0.03364298,99.80528703],[4.53574044,0.03364124,99.80502346],[4.53573997,0.0336395,99.80475952],[4.5357395,0.03363776,99.80449524],[4.53573903,0.03363602,99.80423061],[4.53573856,0.03363428,99.80396565],[4.53573809,0.03363254,99.80370037],[4.53573762,0.0336308,99.80343479],[4.53573716,0.03362906,99.80316891],[4.53573669,0.03362732,99.80290274],[4.53573623,0.03362558,99.8026363],[4.53573576,0.03362384,99.80236959],[4.5357353,0.0336221,99.80210262],[4.53573483,0.03362036,99.80183542],[4.53573437,0.03361862,99.80156798],[4.5357339,0.03361688,99.80130032],[4.53573344,0.03361514,99.80103245],[4.53573298,0.0336134,99.80076438],[4.53573251,0.03361166,99.80049612],[4.53573205,0.03360992,99.80022768],[4.53573159,0.03360817,99.79995908],[4.53573112,0.03360643,99.79969032],[4.53573066,0.03360469,99.79942142],[4.5357302,0.03360295,99.79915238],[4.53572974,0.03360121,99.79888322],[4.53572927,0.03359947,99.79861395],[4.53572881,0.03359773,99.79834457],[4.53572835,0.03359599,99.79807511],[4.53572789,0.03359424,99.79780557],[4.53572742,0.0335925,99.79753596],[4.53572696,0.03359076,99.7972663],[4.5357265,0.03358902,99.79699659],[4.53572603,0.03358728,99.79672685],[4.5357259,0.03358677,99.79664749],[4.53584135,0.03355484,100.02790119],[4.53584149,0.03355535,100.02793446],[4.53584197,0.03355709,100.02804906],[4.53584244,0.03355883,100.02816595],[4.53584292,0.03356057,100.02828508],[4.5358434,0.03356231,100.02840638],[4.53584387,0.03356405,100.02852977],[4.53584435,0.03356579,100.0286552],[4.53584483,0.03356753,100.02878259],[4.53584531,0.03356927,100.02891188],[4.53584579,0.03357101,100.029043],[4.53584627,0.03357275,100.02917589],[4.53584675,0.03357448,100.02931047],[4.53584723,0.03357622,100.02944668],[4.53584771,0.03357796,100.02958447],[4.53584818,0.0335797,100.02972375],[4.53584866,0.03358144,100.02986446],[4.53584914,0.03358318,100.03000655],[4.53584962,0.03358492,100.03014993],[4.53585009,0.03358666,100.03029456],[4.53585057,0.0335884,100.03044035],[4.53585104,0.03359014,100.03058725],[4.53585152,0.03359188,100.0307352],[4.53585199,0.03359362,100.03088412],[4.53585247,0.03359536,100.03103395],[4.53585294,0.0335971,100.03118463],[4.53585341,0.03359884,100.03133609],[4.53585388,0.03360058,100.03148827],[4.53585435,0.03360232,100.0316411],[4.53585483,0.03360406,100.03179452],[4.5358553,0.0336058,100.03194847],[4.53585577,0.03360754,100.03210288],[4.53585624,0.03360928,100.03225769],[4.53585671,0.03361102,100.03241283],[4.53585718,0.03361277,100.03256824],[4.53585765,0.03361451,100.03272386],[4.53585812,0.03361625,100.03287962],[4.53585859,0.03361799,100.03303545],[4.53585906,0.03361973,100.0331913],[4.53585953,0.03362147,100.03334709],[4.53586,0.03362321,100.03350277],[4.53586047,0.03362496,100.03365827],[4.53586094,0.0336267,100.03381352],[4.53586141,0.03362844,100.03396847],[4.53586188,0.03363018,100.03412305],[4.53586235,0.03363192,100.03427719],[4.53586282,0.03363366,100.03443085],[4.53586329,0.0336354,100.03458402],[4.53586376,0.03363715,100.0347367],[4.53586423,0.03363889,100.0348889],[4.5358647,0.03364063,100.03504062],[4.53586517,0.03364237,100.03519187],[4.53586564,0.03364411,100.03534266],[4.5358661,0.03364585,100.03549299],[4.53586657,0.0336476,100.03564287],[4.53586704,0.03364934,100.0357923],[4.53586751,0.03365108,100.03594128],[4.53586798,0.03365282,100.03608983],[4.53586845,0.03365456,100.03623794],[4.53586892,0.0336563,100.03638562],[4.53586939,0.03365805,100.03653289],[4.53586986,0.03365979,100.03667973],[4.53587033,0.03366153,100.03682617],[4.5358708,0.03366327,100.0369722],[4.53587127,0.03366501,100.03711783],[4.53587174,0.03366675,100.03726306],[4.53587221,0.03366849,100.0374079],[4.53587268,0.03367023,100.03755236],[4.53587315,0.03367198,100.03769643],[4.53587362,0.03367372,100.03784013],[4.53587409,0.03367546,100.03798346],[4.53587456,0.0336772,100.03812643],[4.53587503,0.03367894,100.03826904],[4.53587551,0.03368068,100.03841129],[4.53587598,0.03368242,100.0385532],[4.53587645,0.03368416,100.03869476],[4.53587692,0.0336859,100.03883598],[4.53587739,0.03368765,100.03897687],[4.53587786,0.03368939,100.03911743],[4.53587833,0.03369113,100.03925766],[4.53587881,0.03369287,100.03939756],[4.53587928,0.03369461,100.03953714],[4.53587975,0.03369635,100.03967639],[4.53588022,0.03369809,100.0398153],[4.53588069,0.03369983,100.03995388],[4.53588116,0.03370157,100.04009212],[4.53588164,0.03370331,100.04023003],[4.53588211,0.03370505,100.0403676],[4.53588258,0.03370679,100.04050484],[4.53588305,0.03370854,100.04064173],[4.53588352,0.03371028,100.04077828],[4.535884,0.03371202,100.04091448],[4.53588447,0.03371376,100.04105035],[4.53588494,0.0337155,100.04118586],[4.53588541,0.03371724,100.04132103],[4.53588588,0.03371898,100.04145585],[4.53588636,0.03372072,100.04159033],[4.53588683,0.03372246,100.04172445],[4.5358873,0.0337242,100.04185821],[4.53588777,0.03372594,100.04199163],[4.53588825,0.03372768,100.04212469],[4.53588872,0.03372942,100.04225739],[4.53588919,0.03373116,100.04238973],[4.53588966,0.03373291,100.04252172],[4.53589013,0.03373465,100.04265334],[4.5358906,0.03373639,100.0427846],[4.53589108,0.03373813,100.0429155],[4.53589155,0.03373987,100.04304604],[4.53589202,0.03374161,100.0431762],[4.53589249,0.03374335,100.04330601],[4.53589296,0.03374509,100.04343544],[4.53589343,0.03374683,100.0435645],[4.53589391,0.03374857,100.04369319],[4.53589438,0.03375031,100.04382151],[4.53589485,0.03375205,100.04394946],[4.53589532,0.0337538,100.04407703],[4.53589579,0.03375554,100.04420422],[4.53589626,0.03375728,100.04433104],[4.53589673,0.03375902,100.04445747],[4.5358972,0.03376076,100.04458353],[4.53589768,0.0337625,100.04470921],[4.53589815,0.03376424,100.04483451],[4.53589862,0.03376598,100.04495943],[4.53589909,0.03376772,100.04508398],[4.53589956,0.03376946,100.04520817],[4.53590003,0.03377121,100.04533199],[4.5359005,0.03377295,100.04545545],[4.53590097,0.03377469,100.04557855],[4.53590144,0.03377643,100.0457013],[4.53590191,0.03377817,100.04582369],[4.53590238,0.03377991,100.04594574],[4.53590285,0.03378165,100.04606744],[4.53590332,0.03378339,100.0461888],[4.53590379,0.03378514,100.04630982],[4.53590426,0.03378688,100.0464305],[4.53590473,0.03378862,100.04655085],[4.5359052,0.03379036,100.04667087],[4.53590567,0.0337921,100.04679056],[4.53590614,0.03379384,100.04690993],[4.53590661,0.03379558,100.04702898],[4.53590708,0.03379732,100.04714772],[4.53590755,0.03379907,100.04726614],[4.53590802,0.03380081,100.04738425],[4.53590849,0.03380255,100.04750206],[4.53590896,0.03380429,100.04761956],[4.53590943,0.03380603,100.04773677],[4.5359099,0.03380777,100.04785368],[4.53591037,0.03380951,100.04797029],[4.53591084,0.03381126,100.04808662],[4.53591131,0.033813,100.04820266],[4.53591177,0.03381474,100.04831842],[4.53591224,0.03381648,100.0484339],[4.53591271,0.03381822,100.04854911],[4.53591318,0.03381996,100.04866404],[4.53591365,0.0338217,100.04877871],[4.53591412,0.03382345,100.04889311],[4.53591459,0.03382519,100.04900725],[4.53591506,0.03382693,100.04912113],[4.53591553,0.03382867,100.04923475],[4.535916,0.03383041,100.04934812],[4.53591646,0.03383215,100.04946125],[4.53591693,0.0338339,100.04957413],[4.5359174,0.03383564,100.04968677],[4.53591787,0.03383738,100.04979917],[4.53591834,0.03383912,100.04991133],[4.53591881,0.03384086,100.05002326],[4.53591928,0.0338426,100.05013497],[4.53591975,0.03384434,100.05024645],[4.53592022,0.03384609,100.05035771],[4.53592068,0.03384783,100.05046875],[4.53592115,0.03384957,100.05057958],[4.53592162,0.03385131,100.05069019],[4.53592209,0.03385305,100.0508006],[4.53592256,0.03385479,100.0509108],[4.53592303,0.03385653,100.0510208],[4.5359235,0.03385828,100.05113061],[4.53592397,0.03386002,100.05124022],[4.53592444,0.03386176,100.05134964],[4.5359249,0.0338635,100.05145887],[4.53592537,0.03386524,100.05156791],[4.53592584,0.03386698,100.05167678],[4.53592631,0.03386873,100.05178546],[4.53592678,0.03387047,100.05189398],[4.53592725,0.03387221,100.05200232],[4.53592772,0.03387395,100.05211049],[4.53592819,0.03387569,100.0522185],[4.53592866,0.03387743,100.05232635],[4.53592913,0.03387917,100.05243405],[4.5359296,0.03388091,100.05254158],[4.53593007,0.03388266,100.05264897],[4.53593054,0.0338844,100.05275621],[4.53593101,0.03388614,100.05286331],[4.53593148,0.03388788,100.05297026],[4.53593195,0.03388962,100.05307708],[4.53593242,0.03389136,100.05318377],[4.53593289,0.0338931,100.05329031],[4.53593336,0.03389484,100.05339672],[4.53593383,0.03389659,100.05350299],[4.5359343,0.03389833,100.05360911],[4.53593477,0.03390007,100.05371509],[4.53593524,0.03390181,100.05382091],[4.53593571,0.03390355,100.05392657],[4.53593618,0.03390529,100.05403207],[4.53593665,0.03390703,100.05413741],[4.53593712,0.03390877,100.05424258],[4.53593759,0.03391051,100.05434759],[4.53593806,0.03391225,100.05445242],[4.53593853,0.033914,100.05455707],[4.535939,0.03391574,100.05466154],[4.53593947,0.03391748,100.05476583],[4.53593995,0.03391922,100.05486993],[4.53594042,0.03392096,100.05497384],[4.53594089,0.0339227,100.05507756],[4.53594136,0.03392444,100.05518108],[4.53594183,0.03392618,100.05528439],[4.5359423,0.03392792,100.05538751],[4.53594277,0.03392966,100.05549041],[4.53594325,0.0339314,100.0555931],[4.53594372,0.03393314,100.05569558],[4.53594419,0.03393489,100.05579784],[4.53594466,0.03393663,100.05589988],[4.53594513,0.03393837,100.0560017],[4.5359456,0.03394011,100.05610328],[4.53594608,0.03394185,100.05620463],[4.53594655,0.03394359,100.05630575],[4.53594702,0.03394533,100.05640663],[4.53594749,0.03394707,100.05650727],[4.53594796,0.03394881,100.05660766],[4.53594843,0.03395055,100.0567078],[4.53594891,0.03395229,100.0568077],[4.53594938,0.03395403,100.05690733],[4.53594985,0.03395577,100.05700671],[4.53595032,0.03395751,100.05710582],[4.53595079,0.03395925,100.05720467],[4.53595126,0.033961,100.05730325],[4.53595174,0.03396274,100.05740155],[4.53595221,0.03396448,100.05749958],[4.53595268,0.03396622,100.05759733],[4.53595315,0.03396796,100.05769479],[4.53595362,0.0339697,100.05779197],[4.53595409,0.03397144,100.05788886],[4.53595457,0.03397318,100.05798546],[4.53595504,0.03397492,100.05808176],[4.53595551,0.03397666,100.05817776],[4.53595598,0.0339784,100.05827345],[4.53595645,0.03398014,100.05836884],[4.53595692,0.03398188,100.05846392],[4.53595739,0.03398362,100.05855868],[4.53595786,0.03398537,100.05865313],[4.53595834,0.03398711,100.05874725],[4.53595881,0.03398885,100.05884105],[4.53595928,0.03399059,100.05893452],[4.53595975,0.03399233,100.05902766],[4.53596022,0.03399407,100.05912047],[4.53596069,0.03399581,100.05921293],[4.53596116,0.03399755,100.05930506],[4.53596163,0.03399929,100.05939684],[4.5359621,0.03400103,100.05948827],[4.53596257,0.03400277,100.05957935],[4.53596304,0.03400451,100.05967007],[4.53596351,0.03400626,100.05976043],[4.53596398,0.034008,100.05985043],[4.53596445,0.03400974,100.05994006],[4.53596492,0.03401148,100.06002933],[4.53596539,0.03401322,100.06011822],[4.53596586,0.03401496,100.06020673],[4.53596633,0.0340167,100.06029486],[4.5359668,0.03401844,100.0603826],[4.53596727,0.03402018,100.06046996],[4.53596774,0.03402193,100.06055693],[4.53596821,0.03402367,100.0606435],[4.53596868,0.03402541,100.06072967],[4.53596915,0.03402715,100.06081544],[4.53596962,0.03402889,100.06090081],[4.53597009,0.03403063,100.06098576],[4.53597056,0.03403237,100.0610703],[4.53597102,0.03403412,100.06115443],[4.53597149,0.03403586,100.06123813],[4.53597196,0.0340376,100.06132141],[4.53597243,0.03403934,100.06140426],[4.5359729,0.03404108,100.06148667],[4.53597336,0.03404282,100.06156866],[4.53597383,0.03404457,100.0616502],[4.5359743,0.03404631,100.0617313],[4.53597477,0.03404805,100.06181195],[4.53597523,0.03404979,100.06189215],[4.5359757,0.03405153,100.0619719],[4.53585997,0.03408307,99.84281324]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":1,"type":"shoulder","predecessorId":1},{"successorId":3,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":2,"type":"border","predecessorId":2},{"successorId":4,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":3,"type":"border","predecessorId":3}],"roadId":"1004600","singleSide":false,"rightLanes":[{"successorId":-6,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":-6,"type":"border","predecessorId":-6},{"successorId":-5,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":-5,"type":"border","predecessorId":-5},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-4,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"id":-4,"type":"border","predecessorId":-4},{"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-3,"type":"stop","predecessorId":-3},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.5357259,0.03358677,99.79664749],[4.53572543,0.03358503,99.79637817],[4.53572497,0.03358329,99.79610838],[4.5357245,0.03358155,99.79583813],[4.53572404,0.0335798,99.79556741],[4.53572358,0.03357806,99.79529623],[4.53572311,0.03357632,99.79502459],[4.53572265,0.03357458,99.7947525],[4.53572218,0.03357284,99.79447997],[4.53572172,0.0335711,99.79420698],[4.53572126,0.03356936,99.79393356],[4.53572079,0.03356762,99.79365969],[4.53572033,0.03356588,99.79338539],[4.53571986,0.03356414,99.79311066],[4.53571942,0.03356248,99.79284973],[4.53583473,0.03353057,100.02631102],[4.53583518,0.03353222,100.02642088],[4.53583565,0.03353396,100.02653645],[4.53583613,0.0335357,100.02665173],[4.5358366,0.03353744,100.02676673],[4.53583708,0.03353918,100.02688145],[4.53583755,0.03354092,100.02699589],[4.53583803,0.03354266,100.02711004],[4.5358385,0.0335444,100.02722391],[4.53583898,0.03354614,100.02733749],[4.53583945,0.03354788,100.0274508],[4.53583993,0.03354962,100.02756382],[4.5358404,0.03355136,100.02767656],[4.53584088,0.0335531,100.02778902],[4.53584135,0.03355484,100.02790119],[4.5357259,0.03358677,99.79664749]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":1,"type":"shoulder","predecessorId":0},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":2,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"id":2,"type":"border","predecessorId":0},{"successorId":3,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":3,"type":"border","predecessorId":2},{"successorId":4,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":4,"type":"border","predecessorId":3}],"roadId":"1004600","singleSide":false,"rightLanes":[{"successorId":-6,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":-6,"type":"border","predecessorId":-6},{"successorId":-5,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":-5,"type":"border","predecessorId":-5},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-4,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"id":-4,"type":"border","predecessorId":-4},{"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-3,"type":"stop","predecessorId":-3},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.53571942,0.03356248,99.79284973],[4.53571896,0.03356074,99.7925752],[4.5357185,0.033559,99.79229445],[4.53571803,0.03355726,99.79201327],[4.53571757,0.03355552,99.79173168],[4.53571711,0.03355378,99.79144966],[4.53571664,0.03355204,99.79116814],[4.53583187,0.03352014,100.02561901],[4.53583235,0.03352187,100.02573474],[4.53583282,0.03352361,100.02585057],[4.5358333,0.03352535,100.0259661],[4.53583378,0.03352709,100.02608136],[4.53583425,0.03352883,100.02619633],[4.53583473,0.03353057,100.02631102],[4.53571942,0.03356248,99.79284973]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":1,"type":"shoulder","predecessorId":1},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"id":2,"type":"border","predecessorId":2},{"successorId":0,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":3,"type":"border","predecessorId":3},{"successorId":0,"level":true,"heights":[{"outer":0.15,"inner":0.025},{"outer":0.15,"inner":0.15}],"id":4,"type":"border","predecessorId":4}],"roadId":"1004600","singleSide":false,"rightLanes":[{"successorId":-6,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":-6,"type":"border","predecessorId":-6},{"successorId":-5,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":-5,"type":"border","predecessorId":-5},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-4,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"id":-4,"type":"border","predecessorId":-4},{"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-3,"type":"stop","predecessorId":-3},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.53571664,0.03355204,99.79116814],[4.53571618,0.0335503,99.79087935],[4.53571572,0.03354856,99.79059014],[4.53571526,0.03354682,99.79030053],[4.5357148,0.03354508,99.79001052],[4.53571433,0.03354334,99.78972011],[4.53571387,0.03354159,99.78942929],[4.53571341,0.03353985,99.78913809],[4.53571295,0.03353811,99.7888465],[4.53571249,0.03353637,99.78855451],[4.53571202,0.03353463,99.78826215],[4.53571156,0.03353289,99.78796941],[4.5357111,0.03353114,99.78767629],[4.53571064,0.0335294,99.7873828],[4.53571018,0.03352766,99.78708894],[4.53570971,0.03352592,99.78679472],[4.53570925,0.03352418,99.78650013],[4.53570879,0.03352244,99.78620519],[4.53570833,0.03352069,99.78590989],[4.53570787,0.03351895,99.78561424],[4.5357074,0.03351721,99.78531824],[4.53570694,0.03351547,99.7850219],[4.53570648,0.03351373,99.78472522],[4.53570602,0.03351199,99.7844282],[4.53570555,0.03351025,99.78413084],[4.53570509,0.0335085,99.78383316],[4.53570463,0.03350676,99.78353515],[4.53570417,0.03350502,99.78323682],[4.53570371,0.03350328,99.78293817],[4.53570324,0.03350154,99.7826392],[4.53570278,0.0334998,99.78233992],[4.53570267,0.03349937,99.78226605],[4.53581749,0.03346752,99.86857196],[4.53581761,0.03346794,99.86863092],[4.53581809,0.03346968,99.86886969],[4.53581856,0.03347142,99.86910806],[4.53581904,0.03347316,99.86934602],[4.53581951,0.0334749,99.86958358],[4.53581999,0.03347664,99.86982073],[4.53582047,0.03347838,99.87005748],[4.53582094,0.03348012,99.87029382],[4.53582142,0.03348186,99.87052976],[4.53582189,0.0334836,99.8707653],[4.53582237,0.03348534,99.87100043],[4.53582284,0.03348708,99.87123517],[4.53582332,0.03348882,99.87146949],[4.53582379,0.03349056,99.87170342],[4.53582427,0.0334923,99.87193695],[4.53582474,0.03349404,99.87217007],[4.53582522,0.03349578,99.8724028],[4.5358257,0.03349752,99.87263512],[4.53582617,0.03349926,99.87286704],[4.53582665,0.033501,99.87309856],[4.53582712,0.03350274,99.87332969],[4.5358276,0.03350448,99.87356041],[4.53582807,0.03350622,99.87379073],[4.53582855,0.03350796,99.87402066],[4.53582902,0.0335097,99.87425019],[4.5358295,0.03351144,99.87447932],[4.53582997,0.03351318,99.87470805],[4.53583045,0.03351492,99.87493638],[4.53583092,0.03351666,99.87516432],[4.5358314,0.0335184,99.87539186],[4.53583187,0.03352014,99.87561901],[4.53571664,0.03355204,99.79116814]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":1,"type":"shoulder","predecessorId":0},{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":2,"type":"none","predecessorId":0}],"roadId":"1004600","singleSide":false,"rightLanes":[{"successorId":-6,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":-6,"type":"border","predecessorId":-6},{"successorId":-5,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":-5,"type":"border","predecessorId":-5},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-4,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"id":-4,"type":"border","predecessorId":-4},{"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-3,"type":"stop","predecessorId":-3},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.53570267,0.03349937,99.78226605],[4.53570221,0.03349762,99.78197014],[4.53570175,0.03349588,99.78167402],[4.53570129,0.03349414,99.78137767],[4.53570083,0.0334924,99.78108111],[4.53570037,0.03349065,99.78078431],[4.53569991,0.03348891,99.78048728],[4.53569945,0.03348717,99.78019002],[4.53569899,0.03348543,99.77989252],[4.53569854,0.03348368,99.77959477],[4.53569808,0.03348194,99.77929678],[4.53569762,0.0334802,99.77899854],[4.53569716,0.03347845,99.77870004],[4.53569671,0.03347671,99.77840128],[4.53569625,0.03347497,99.77810226],[4.53569579,0.03347323,99.77780297],[4.53569533,0.03347148,99.77750341],[4.53569488,0.03346974,99.77720357],[4.53569442,0.033468,99.77690346],[4.53569396,0.03346625,99.77660306],[4.5356935,0.03346451,99.77630236],[4.53569304,0.03346277,99.77600136],[4.53569258,0.03346103,99.77570005],[4.53569212,0.03345928,99.77539843],[4.53569166,0.03345754,99.77509649],[4.5356912,0.0334558,99.77479421],[4.53569074,0.03345406,99.77449159],[4.53569028,0.03345232,99.77418863],[4.53568981,0.03345057,99.77388532],[4.53568935,0.03344883,99.77358164],[4.53568889,0.03344709,99.7732776],[4.53568842,0.03344535,99.77297318],[4.53568795,0.03344361,99.77266838],[4.53568749,0.03344187,99.77236319],[4.53568702,0.03344013,99.7720576],[4.53568655,0.03343839,99.7717516],[4.53568608,0.03343665,99.7714452],[4.53568561,0.03343491,99.77113837],[4.53568514,0.03343317,99.77083111],[4.53568467,0.03343143,99.77052342],[4.53568419,0.03342969,99.77021528],[4.53568372,0.03342795,99.7699067],[4.53568324,0.03342622,99.76959765],[4.53568277,0.03342448,99.76928814],[4.53568229,0.03342274,99.76897816],[4.53568181,0.033421,99.76866768],[4.53568133,0.03341927,99.76835671],[4.53568086,0.03341753,99.76804523],[4.53568038,0.03341579,99.76773323],[4.5356799,0.03341405,99.76742071],[4.53567942,0.03341232,99.76710764],[4.53567894,0.03341058,99.76679403],[4.53567845,0.03340884,99.76647985],[4.53567797,0.03340711,99.76616511],[4.53567749,0.03340537,99.76584978],[4.53567701,0.03340363,99.76553386],[4.53567653,0.0334019,99.76521734],[4.53567604,0.03340016,99.76490019],[4.53567556,0.03339843,99.76458241],[4.53567508,0.03339669,99.76426397],[4.5356746,0.03339495,99.76394487],[4.53567411,0.03339322,99.76362507],[4.53567363,0.03339148,99.76330456],[4.53567315,0.03338975,99.76298334],[4.53567266,0.03338801,99.76266137],[4.53567218,0.03338627,99.76233864],[4.5356717,0.03338454,99.76201514],[4.53567121,0.0333828,99.76169084],[4.53567073,0.03338107,99.76136575],[4.53567025,0.03337933,99.76103985],[4.53566976,0.03337759,99.76071317],[4.53566928,0.03337586,99.76038572],[4.5356688,0.03337412,99.76005751],[4.53566831,0.03337238,99.75972856],[4.53566783,0.03337065,99.75939887],[4.53566735,0.03336891,99.75906847],[4.53566687,0.03336718,99.75873736],[4.53566638,0.03336544,99.75840556],[4.5356659,0.0333637,99.75807308],[4.53566542,0.03336197,99.75773993],[4.53566494,0.03336023,99.75740613],[4.53566445,0.03335849,99.7570717],[4.53566397,0.03335676,99.75673663],[4.53566349,0.03335502,99.75640095],[4.53566301,0.03335329,99.75606467],[4.53566252,0.03335155,99.75572781],[4.53566204,0.03334981,99.75539037],[4.53566156,0.03334808,99.75505238],[4.53566108,0.03334634,99.75471384],[4.5356606,0.0333446,99.75437476],[4.53566011,0.03334287,99.75403517],[4.53565963,0.03334113,99.75369507],[4.53565915,0.03333939,99.75335448],[4.53565867,0.03333766,99.75301341],[4.53565818,0.03333592,99.75267188],[4.5356577,0.03333418,99.7523299],[4.53565722,0.03333245,99.75198748],[4.53565674,0.03333071,99.75164464],[4.53565626,0.03332897,99.75130138],[4.53565578,0.03332724,99.75095773],[4.53565529,0.0333255,99.7506137],[4.53565481,0.03332377,99.7502693],[4.53565433,0.03332203,99.74992455],[4.53565385,0.03332029,99.74957945],[4.53565337,0.03331856,99.74923403],[4.53565288,0.03331682,99.7488883],[4.5356524,0.03331508,99.74854226],[4.53565192,0.03331335,99.74819595],[4.53565144,0.03331161,99.74784936],[4.53565096,0.03330987,99.74750251],[4.53565047,0.03330814,99.74715542],[4.53564999,0.0333064,99.74680811],[4.53564951,0.03330466,99.74646058],[4.53564903,0.03330293,99.74611284],[4.53564855,0.03330119,99.74576493],[4.53564807,0.03329945,99.74541687],[4.53564759,0.03329772,99.74506866],[4.5356471,0.03329598,99.74472033],[4.53564662,0.03329424,99.74437188],[4.53564614,0.0332925,99.74402328],[4.53564566,0.03329077,99.74367451],[4.53564518,0.03328903,99.74332553],[4.5356447,0.03328729,99.74297632],[4.53564422,0.03328556,99.74262684],[4.53564374,0.03328382,99.74227707],[4.53564326,0.03328208,99.74192699],[4.53564278,0.03328035,99.7415766],[4.5356423,0.03327861,99.74122587],[4.53564182,0.03327687,99.7408748],[4.53564134,0.03327513,99.74052337],[4.53564086,0.0332734,99.74017157],[4.53564038,0.03327166,99.73981939],[4.53563989,0.03326992,99.73946681],[4.53563941,0.03326819,99.73911382],[4.53563893,0.03326645,99.73876041],[4.53563845,0.03326471,99.73840657],[4.53563797,0.03326297,99.73805227],[4.53563749,0.03326124,99.73769752],[4.53563701,0.0332595,99.73734229],[4.53563653,0.03325776,99.73698658],[4.53563605,0.03325602,99.73663036],[4.53563557,0.03325429,99.73627363],[4.53563509,0.03325255,99.73591637],[4.53563461,0.03325081,99.73555858],[4.53563413,0.03324908,99.73520023],[4.53563365,0.03324734,99.73484131],[4.53563317,0.0332456,99.73448181],[4.53563269,0.03324386,99.73412172],[4.53563221,0.03324213,99.73376103],[4.53563173,0.03324039,99.73339972],[4.53563125,0.03323865,99.73303777],[4.53563077,0.03323691,99.73267518],[4.53563029,0.03323518,99.73231193],[4.53562981,0.03323344,99.731948],[4.53562933,0.0332317,99.73158339],[4.53562885,0.03322997,99.73121808],[4.53562837,0.03322823,99.73085206],[4.53562789,0.03322649,99.73048532],[4.53562741,0.03322475,99.73011783],[4.53562693,0.03322302,99.7297496],[4.53562645,0.03322128,99.72938059],[4.53562597,0.03321954,99.72901081],[4.53562549,0.0332178,99.72864023],[4.53562501,0.03321607,99.72826885],[4.53562453,0.03321433,99.72789665],[4.53562405,0.03321259,99.72752362],[4.53562357,0.03321086,99.72714974],[4.53562309,0.03320912,99.726775],[4.53562261,0.03320738,99.72639938],[4.53562213,0.03320564,99.72602288],[4.53562165,0.03320391,99.72564548],[4.53562116,0.03320217,99.72526716],[4.53562068,0.03320043,99.72488792],[4.5356202,0.0331987,99.72450773],[4.53561972,0.03319696,99.72412659],[4.53561924,0.03319522,99.72374448],[4.53561876,0.03319349,99.72336141],[4.53561828,0.03319175,99.7229774],[4.53561779,0.03319001,99.72259247],[4.53561731,0.03318827,99.72220664],[4.53561683,0.03318654,99.72181994],[4.53561635,0.0331848,99.72143239],[4.53561587,0.03318306,99.72104401],[4.53561538,0.03318133,99.72065482],[4.5356149,0.03317959,99.72026484],[4.53561442,0.03317785,99.71987408],[4.53561394,0.03317612,99.71948254],[4.53561346,0.03317438,99.71909023],[4.53561298,0.03317264,99.71869715],[4.53561249,0.03317091,99.71830331],[4.53561201,0.03316917,99.71790872],[4.53561153,0.03316743,99.71751338],[4.53561105,0.03316569,99.71711729],[4.53561057,0.03316396,99.71672048],[4.53561009,0.03316222,99.71632293],[4.53560961,0.03316048,99.71592467],[4.53560913,0.03315874,99.71552568],[4.53560865,0.03315701,99.71512599],[4.53560817,0.03315527,99.7147256],[4.53560769,0.03315353,99.71432452],[4.53560721,0.03315179,99.71392276],[4.53560673,0.03315006,99.71352032],[4.53560625,0.03314832,99.7131172],[4.53560578,0.03314658,99.71271341],[4.5356053,0.03314484,99.71230893],[4.53560482,0.0331431,99.71190378],[4.53560435,0.03314136,99.71149796],[4.53560387,0.03313963,99.71109146],[4.5356034,0.03313789,99.71068429],[4.53560292,0.03313615,99.71027646],[4.53560245,0.03313441,99.70986795],[4.53560197,0.03313267,99.70945878],[4.5356015,0.03313093,99.70904894],[4.53560103,0.03312919,99.70863843],[4.53560055,0.03312745,99.70822726],[4.53560008,0.03312571,99.70781543],[4.53559961,0.03312397,99.70740294],[4.53559914,0.03312223,99.70698979],[4.53559867,0.03312049,99.70657599],[4.5355982,0.03311875,99.70616152],[4.53559773,0.03311701,99.70574639],[4.53559726,0.03311527,99.70533059],[4.53559679,0.03311353,99.7049141],[4.53559632,0.03311179,99.70449693],[4.53559585,0.03311005,99.70407905],[4.53559538,0.03310831,99.70366047],[4.53559491,0.03310657,99.70324117],[4.53559444,0.03310483,99.70282115],[4.53559398,0.03310308,99.70240039],[4.53559351,0.03310134,99.70197889],[4.53559304,0.0330996,99.70155664],[4.53559257,0.03309786,99.70113363],[4.5355921,0.03309612,99.70070986],[4.53559164,0.03309438,99.70028531],[4.53559117,0.03309264,99.69985997],[4.5355907,0.0330909,99.69943384],[4.53559023,0.03308916,99.6990069],[4.53558976,0.03308742,99.69857916],[4.53558929,0.03308567,99.6981506],[4.53558883,0.03308393,99.69772121],[4.53558836,0.03308219,99.69729098],[4.53558789,0.03308045,99.6968599],[4.53558742,0.03307871,99.69642797],[4.53558695,0.03307697,99.69599518],[4.53558648,0.03307523,99.69556152],[4.53558601,0.03307349,99.69512698],[4.53558554,0.03307175,99.69469155],[4.53558507,0.03307001,99.69425522],[4.5355846,0.03306827,99.69381798],[4.53558414,0.03306653,99.69337983],[4.53558367,0.03306479,99.69294076],[4.5355832,0.03306305,99.69250075],[4.53558273,0.0330613,99.69205981],[4.53558226,0.03305956,99.69161791],[4.53558179,0.03305782,99.69117505],[4.53558132,0.03305608,99.69073123],[4.53558085,0.03305434,99.69028643],[4.53558038,0.0330526,99.68984065],[4.53557991,0.03305086,99.68939387],[4.53557944,0.03304912,99.68894609],[4.53557896,0.03304738,99.6884973],[4.53557849,0.03304564,99.68804749],[4.53557802,0.0330439,99.68759665],[4.53557755,0.03304216,99.68714477],[4.53557708,0.03304042,99.68669185],[4.53557661,0.03303868,99.68623787],[4.53557614,0.03303694,99.68578282],[4.53557567,0.0330352,99.68532672],[4.5355752,0.03303346,99.68486956],[4.53557473,0.03303172,99.68441137],[4.53557426,0.03302998,99.68395217],[4.53557379,0.03302824,99.68349198],[4.53557332,0.0330265,99.6830308],[4.53557285,0.03302476,99.68256865],[4.53557238,0.03302302,99.68210553],[4.5355719,0.03302127,99.68164143],[4.53557143,0.03301953,99.68117634],[4.53557096,0.03301779,99.68071027],[4.53557049,0.03301605,99.68024321],[4.53557002,0.03301431,99.67977516],[4.53556955,0.03301257,99.67930611],[4.53556908,0.03301083,99.67883606],[4.53556861,0.03300909,99.67836501],[4.53556814,0.03300735,99.67789295],[4.53556767,0.03300561,99.67741988],[4.5355672,0.03300387,99.67694579],[4.53556673,0.03300213,99.67647069],[4.53556626,0.03300039,99.67599458],[4.53556579,0.03299865,99.67551747],[4.53556532,0.03299691,99.67503936],[4.53556485,0.03299517,99.67456027],[4.53556438,0.03299342,99.6740802],[4.53556391,0.03299168,99.67359915],[4.53556345,0.03298994,99.67311715],[4.53556298,0.0329882,99.67263419],[4.53556251,0.03298646,99.67215028],[4.53556204,0.03298472,99.67166544],[4.53556157,0.03298298,99.67117966],[4.5355611,0.03298124,99.67069296],[4.53556063,0.0329795,99.67020534],[4.53556016,0.03297776,99.66971681],[4.5355597,0.03297601,99.66922737],[4.53555923,0.03297427,99.66873701],[4.53555876,0.03297253,99.66824573],[4.53555829,0.03297079,99.66775354],[4.53555782,0.03296905,99.66726044],[4.53555735,0.03296731,99.66676641],[4.53555689,0.03296557,99.66627148],[4.53555642,0.03296383,99.66577563],[4.53555595,0.03296209,99.66527886],[4.53555548,0.03296034,99.66478118],[4.53555501,0.0329586,99.66428258],[4.53555454,0.03295686,99.66378306],[4.53555407,0.03295512,99.66328264],[4.53555361,0.03295338,99.66278129],[4.53555314,0.03295164,99.66227903],[4.53555267,0.0329499,99.66177586],[4.5355522,0.03294816,99.66127177],[4.53555173,0.03294642,99.66076676],[4.53555126,0.03294467,99.66026084],[4.53555079,0.03294293,99.659754],[4.53555032,0.03294119,99.65924623],[4.53554985,0.03293945,99.65873751],[4.53554938,0.03293771,99.65822782],[4.53554891,0.03293597,99.65771714],[4.53554844,0.03293423,99.65720545],[4.53554797,0.03293249,99.65669273],[4.5355475,0.03293075,99.65617895],[4.53554703,0.03292901,99.65566411],[4.53554656,0.03292727,99.65514817],[4.53554609,0.03292553,99.65463113],[4.53554562,0.03292379,99.65411295],[4.53554515,0.03292205,99.65359362],[4.53554467,0.03292031,99.65307313],[4.5355442,0.03291857,99.65255143],[4.53554373,0.03291683,99.65202853],[4.53554326,0.03291509,99.6515044],[4.53554278,0.03291335,99.65097901],[4.53554231,0.03291161,99.65045235],[4.53554184,0.03290987,99.6499244],[4.53554136,0.03290813,99.64939514],[4.53554089,0.03290639,99.64886454],[4.53554041,0.03290465,99.64833259],[4.53553994,0.03290291,99.64779927],[4.53553946,0.03290117,99.64726455],[4.53553899,0.03289943,99.64672842],[4.53553851,0.03289769,99.64619085],[4.53553804,0.03289595,99.64565183],[4.53553756,0.03289421,99.64511134],[4.53553708,0.03289248,99.64456936],[4.53553661,0.03289074,99.64402592],[4.53553613,0.032889,99.64348102],[4.53553565,0.03288726,99.64293466],[4.53553517,0.03288552,99.64238686],[4.53553469,0.03288378,99.64183763],[4.53553422,0.03288205,99.64128698],[4.53553374,0.03288031,99.64073492],[4.53553326,0.03287857,99.64018146],[4.53553278,0.03287683,99.6396266],[4.5355323,0.03287509,99.63907036],[4.53553182,0.03287335,99.63851274],[4.53553134,0.03287162,99.63795376],[4.53553086,0.03286988,99.63739343],[4.53553038,0.03286814,99.63683175],[4.5355299,0.0328664,99.63626874],[4.53552942,0.03286467,99.63570441],[4.53552894,0.03286293,99.63513876],[4.53552846,0.03286119,99.6345718],[4.53552798,0.03285945,99.63400355],[4.5355275,0.03285772,99.63343402],[4.53552702,0.03285598,99.6328632],[4.53552654,0.03285424,99.63229113],[4.53552605,0.0328525,99.63171779],[4.53552557,0.03285077,99.63114322],[4.53552509,0.03284903,99.6305674],[4.53552461,0.03284729,99.62999036],[4.53552413,0.03284555,99.6294121],[4.53552365,0.03284382,99.62883264],[4.53552316,0.03284208,99.62825198],[4.53552268,0.03284034,99.62767013],[4.5355222,0.03283861,99.6270871],[4.53552172,0.03283687,99.62650291],[4.53552124,0.03283513,99.62591756],[4.53552076,0.03283339,99.62533106],[4.53552027,0.03283166,99.62474343],[4.53551979,0.03282992,99.62415467],[4.53551931,0.03282818,99.62356479],[4.53551883,0.03282644,99.6229738],[4.53551835,0.03282471,99.62238171],[4.53551786,0.03282297,99.62178853],[4.53551738,0.03282123,99.62119426],[4.5355169,0.0328195,99.62059888],[4.53551642,0.03281776,99.62000241],[4.53551594,0.03281602,99.61940483],[4.53551545,0.03281428,99.61880616],[4.53551497,0.03281255,99.6182064],[4.53551449,0.03281081,99.61760556],[4.53551401,0.03280907,99.61700367],[4.53551353,0.03280734,99.61640074],[4.53551305,0.0328056,99.61579679],[4.53551257,0.03280386,99.61519184],[4.53551208,0.03280212,99.61458586],[4.5355116,0.03280039,99.61397885],[4.53551112,0.03279865,99.6133708],[4.53551064,0.03279691,99.6127617],[4.53551016,0.03279517,99.61215153],[4.53550968,0.03279344,99.61154029],[4.5355092,0.0327917,99.61092796],[4.53550872,0.03278996,99.61031453],[4.53550824,0.03278822,99.6097],[4.53550776,0.03278649,99.60908435],[4.53550728,0.03278475,99.60846756],[4.5355068,0.03278301,99.60784964],[4.53550632,0.03278127,99.60723056],[4.53550584,0.03277954,99.60661032],[4.53550536,0.0327778,99.60598891],[4.53550488,0.03277606,99.60536631],[4.5355044,0.03277432,99.60474252],[4.53550392,0.03277258,99.60411751],[4.53550344,0.03277085,99.60349129],[4.53550296,0.03276911,99.60286384],[4.53550248,0.03276737,99.60223515],[4.535502,0.03276563,99.60160521],[4.53550152,0.0327639,99.600974],[4.53550104,0.03276216,99.60034153],[4.53550056,0.03276042,99.59970776],[4.53550008,0.03275868,99.59907271],[4.5354996,0.03275695,99.59843634],[4.53549912,0.03275521,99.59779866],[4.53549865,0.03275347,99.59715965],[4.53549817,0.03275173,99.59651929],[4.53549769,0.03274999,99.59587759],[4.53549721,0.03274826,99.59523453],[4.53549673,0.03274652,99.59459009],[4.53549625,0.03274478,99.59394427],[4.53549577,0.03274304,99.59329705],[4.53549529,0.0327413,99.59264843],[4.53549481,0.03273957,99.59199839],[4.53549433,0.03273783,99.59134692],[4.53549385,0.03273609,99.59069401],[4.53549337,0.03273435,99.59003966],[4.5354929,0.03273262,99.58938384],[4.53549242,0.03273088,99.58872654],[4.53549194,0.03272914,99.58806777],[4.53549146,0.0327274,99.5874075],[4.53549098,0.03272566,99.58674572],[4.5354905,0.03272393,99.58608243],[4.53549002,0.03272219,99.5854176],[4.53548954,0.03272045,99.58475124],[4.53548906,0.03271871,99.58408333],[4.53548858,0.03271698,99.58341386],[4.5354881,0.03271524,99.58274281],[4.53548762,0.0327135,99.58207019],[4.53548714,0.03271176,99.58139597],[4.53548667,0.03271002,99.58072017],[4.53548619,0.03270829,99.58004279],[4.53548571,0.03270655,99.57936384],[4.53548523,0.03270481,99.5786833],[4.53548475,0.03270307,99.5780012],[4.53548427,0.03270134,99.57731753],[4.53548379,0.0326996,99.57663229],[4.53548331,0.03269786,99.57594549],[4.53548283,0.03269612,99.57525714],[4.53548235,0.03269439,99.57456722],[4.53548187,0.03269265,99.57387576],[4.53548139,0.03269091,99.57318273],[4.53548091,0.03268917,99.57248815],[4.53548043,0.03268744,99.57179198],[4.53547995,0.0326857,99.57109423],[4.53547947,0.03268396,99.5703949],[4.53547899,0.03268222,99.56969396],[4.53547851,0.03268049,99.56899141],[4.53547803,0.03267875,99.56828725],[4.53547755,0.03267701,99.56758148],[4.53547707,0.03267527,99.56687411],[4.53547659,0.03267354,99.56616517],[4.53547612,0.0326718,99.56545467],[4.53547564,0.03267006,99.56474262],[4.53547516,0.03266832,99.56402901],[4.53547468,0.03266658,99.56331386],[4.5354742,0.03266485,99.56259715],[4.53547372,0.03266311,99.56187888],[4.53547324,0.03266137,99.56115907],[4.53547276,0.03265963,99.56043771],[4.53547228,0.0326579,99.5597148],[4.5354718,0.03265616,99.55899035],[4.53547132,0.03265442,99.55826434],[4.53547084,0.03265268,99.55753679],[4.53547036,0.03265095,99.5568077],[4.53546988,0.03264921,99.55607706],[4.5354694,0.03264747,99.55534488],[4.53546892,0.03264573,99.55461115],[4.53546844,0.032644,99.55387588],[4.53546796,0.03264226,99.55313907],[4.53546748,0.03264052,99.55240072],[4.535467,0.03263878,99.55166083],[4.53546652,0.03263705,99.55091941],[4.53546604,0.03263531,99.55017644],[4.53546557,0.03263357,99.54943194],[4.53546509,0.03263183,99.5486859],[4.53546461,0.0326301,99.54793832],[4.53546413,0.03262836,99.54718921],[4.53546365,0.03262662,99.54643857],[4.53546317,0.03262488,99.54568639],[4.53546269,0.03262315,99.54493269],[4.53546221,0.03262141,99.54417744],[4.53546173,0.03261967,99.54342067],[4.53546125,0.03261793,99.54266237],[4.53546077,0.0326162,99.54190254],[4.53546029,0.03261446,99.54114119],[4.53545981,0.03261272,99.5403783],[4.53545933,0.03261098,99.53961388],[4.53545885,0.03260925,99.53884794],[4.53545838,0.03260751,99.53808047],[4.5354579,0.03260577,99.53731147],[4.53545742,0.03260403,99.53654095],[4.53545694,0.0326023,99.53576889],[4.53545646,0.03260056,99.53499531],[4.53545598,0.03259882,99.5342202],[4.5354555,0.03259708,99.53344356],[4.53545502,0.03259535,99.53266539],[4.53545454,0.03259361,99.53188569],[4.53545406,0.03259187,99.53110448],[4.53545358,0.03259013,99.53032175],[4.53545309,0.0325884,99.52953752],[4.53545261,0.03258666,99.52875178],[4.53545213,0.03258492,99.52796455],[4.53545165,0.03258319,99.52717584],[4.53545117,0.03258145,99.52638563],[4.53545069,0.03257971,99.52559393],[4.53545021,0.03257798,99.52480074],[4.53544973,0.03257624,99.52400604],[4.53544924,0.0325745,99.52320983],[4.53544876,0.03257277,99.52241215],[4.53544828,0.03257103,99.52161298],[4.5354478,0.03256929,99.52081236],[4.53544732,0.03256756,99.52001029],[4.53544683,0.03256582,99.51920679],[4.53544635,0.03256408,99.51840186],[4.53544587,0.03256235,99.51759553],[4.53544538,0.03256061,99.5167878],[4.5354449,0.03255887,99.51597869],[4.53544442,0.03255714,99.51516821],[4.53544393,0.0325554,99.51435638],[4.53544345,0.03255367,99.51354321],[4.53544296,0.03255193,99.5127287],[4.53544248,0.03255019,99.51191289],[4.53544199,0.03254846,99.51109577],[4.53544151,0.03254672,99.51027736],[4.53544102,0.03254499,99.50945767],[4.53544054,0.03254325,99.50863673],[4.53544005,0.03254151,99.50781453],[4.53543957,0.03253978,99.50699109],[4.53543908,0.03253804,99.5061664],[4.5354386,0.03253631,99.50534046],[4.53543811,0.03253457,99.50451327],[4.53543763,0.03253284,99.50368483],[4.53543714,0.0325311,99.50285515],[4.53543666,0.03252936,99.50202421],[4.53543617,0.03252763,99.50119203],[4.53543568,0.03252589,99.5003586],[4.5354352,0.03252416,99.49952392],[4.53543471,0.03252242,99.49868799],[4.53543422,0.03252069,99.4978508],[4.53543374,0.03251895,99.49701237],[4.53543325,0.03251722,99.49617269],[4.53543277,0.03251548,99.49533176],[4.53543228,0.03251375,99.49448958],[4.53543179,0.03251201,99.49364615],[4.5354313,0.03251027,99.49280147],[4.53543082,0.03250854,99.49195554],[4.53543033,0.0325068,99.49110836],[4.53542984,0.03250507,99.49025994],[4.53542936,0.03250333,99.48941029],[4.53542887,0.0325016,99.48855943],[4.53542838,0.03249986,99.48770735],[4.53542789,0.03249813,99.48685407],[4.53542741,0.03249639,99.48599961],[4.53542692,0.03249466,99.48514396],[4.53542643,0.03249292,99.48428714],[4.53542594,0.03249119,99.48342916],[4.53542546,0.03248945,99.48257002],[4.53542497,0.03248772,99.48170975],[4.53542448,0.03248598,99.48084834],[4.53542399,0.03248425,99.47998579],[4.53542351,0.03248251,99.47912207],[4.53542302,0.03248078,99.47825708],[4.53542253,0.03247904,99.47739072],[4.53542204,0.03247731,99.4765229],[4.53542156,0.03247557,99.47565351],[4.53542107,0.03247384,99.47478245],[4.53542058,0.0324721,99.47390964],[4.53542009,0.03247037,99.47303497],[4.5354196,0.03246864,99.47215833],[4.53541911,0.0324669,99.47127964],[4.53541862,0.03246517,99.4703988],[4.53541813,0.03246343,99.46951571],[4.53541764,0.0324617,99.46863026],[4.53541715,0.03245996,99.46774237],[4.53541666,0.03245823,99.46685193],[4.53541617,0.0324565,99.46595914],[4.53541568,0.03245476,99.46506447],[4.53541519,0.03245303,99.46416845],[4.5354147,0.03245129,99.46327183],[4.5354142,0.03244956,99.46237542],[4.53541371,0.03244783,99.46148002],[4.53541323,0.03244609,99.46058643],[4.53541274,0.03244436,99.45969547],[4.53541225,0.03244262,99.45880792],[4.53541177,0.03244089,99.45792461],[4.53541128,0.03243915,99.4570453],[4.5354108,0.03243741,99.45616576],[4.53541032,0.03243568,99.45528072],[4.53540983,0.03243394,99.45438491],[4.53540934,0.03243221,99.45347308],[4.53540884,0.03243048,99.45253898],[4.53540833,0.03242875,99.45157331],[4.53540782,0.03242702,99.45058619],[4.53540731,0.03242529,99.44960807],[4.53540681,0.03242356,99.448674],[4.53540634,0.03242182,99.44783391],[4.53540591,0.03242007,99.4470854],[4.53540548,0.03241832,99.44636352],[4.53540499,0.03241658,99.44544617],[4.5354043,0.03241491,99.44390538],[4.53540384,0.03241316,99.44307131],[4.53540346,0.0324114,99.44250304],[4.53540296,0.03240967,99.44154537],[4.53540244,0.03240794,99.44052278],[4.53540194,0.03240621,99.43957458],[4.53540147,0.03240447,99.43868555],[4.53540099,0.03240273,99.43779336],[4.5354005,0.032401,99.43687175],[4.53540001,0.03239926,99.43593045],[4.53539951,0.03239753,99.43498083],[4.53539902,0.0323958,99.43403388],[4.53539853,0.03239406,99.43309376],[4.53539804,0.03239233,99.43215839],[4.53539755,0.0323906,99.43122547],[4.53539706,0.03238886,99.43029271],[4.53539658,0.03238713,99.42935787],[4.53539609,0.03238539,99.42841994],[4.5353956,0.03238366,99.42747917],[4.53539511,0.03238192,99.42653593],[4.53539462,0.03238019,99.4255906],[4.53539413,0.03237845,99.42464359],[4.53539364,0.03237672,99.42369529],[4.53539315,0.03237499,99.42274608],[4.53539266,0.03237325,99.42179636],[4.53539217,0.03237152,99.42084651],[4.53539168,0.03236978,99.41989664],[4.5353912,0.03236805,99.41894662],[4.53539071,0.03236631,99.4179963],[4.53539022,0.03236458,99.41704554],[4.53538973,0.03236284,99.41609419],[4.53538925,0.03236111,99.41514211],[4.53538876,0.03235937,99.41418916],[4.53538827,0.03235764,99.41323517],[4.53538778,0.0323559,99.41228002],[4.5353873,0.03235417,99.41132356],[4.53538681,0.03235243,99.41036564],[4.53538632,0.0323507,99.40940613],[4.53538584,0.03234896,99.40844493],[4.53538535,0.03234723,99.40748195],[4.53538486,0.03234549,99.40651723],[4.53538437,0.03234376,99.40555079],[4.53538388,0.03234203,99.40458266],[4.5353834,0.03234029,99.40361288],[4.53538291,0.03233856,99.40264146],[4.53538242,0.03233682,99.40166845],[4.53538193,0.03233509,99.40069387],[4.53538144,0.03233335,99.39971775],[4.53538095,0.03233162,99.39874013],[4.53538046,0.03232988,99.39776104],[4.53537998,0.03232815,99.3967805],[4.53537949,0.03232642,99.39579855],[4.535379,0.03232468,99.39481521],[4.53537851,0.03232295,99.39383052],[4.53537802,0.03232121,99.39284451],[4.53537753,0.03231948,99.39185721],[4.53537704,0.03231774,99.39086864],[4.53537655,0.03231601,99.38987883],[4.53537606,0.03231428,99.38888778],[4.53537557,0.03231254,99.38789553],[4.53537508,0.03231081,99.38690212],[4.5353746,0.03230907,99.38590762],[4.53537411,0.03230734,99.38491205],[4.53537362,0.0323056,99.38391549],[4.53537313,0.03230387,99.38291798],[4.53537264,0.03230214,99.38191956],[4.53537215,0.0323004,99.38092029],[4.53537166,0.03229867,99.3799202],[4.53537118,0.03229693,99.37891927],[4.53537069,0.0322952,99.3779175],[4.5353702,0.03229346,99.37691488],[4.53536971,0.03229173,99.37591137],[4.53536922,0.03228999,99.37490698],[4.53536874,0.03228826,99.37390169],[4.53536825,0.03228652,99.37289548],[4.53536776,0.03228479,99.37188833],[4.53536727,0.03228305,99.37088025],[4.53536679,0.03228132,99.3698712],[4.5353663,0.03227959,99.36886119],[4.53536581,0.03227785,99.36785018],[4.53536533,0.03227612,99.36683817],[4.53536484,0.03227438,99.36582515],[4.53536435,0.03227265,99.3648111],[4.53536386,0.03227091,99.36379601],[4.53536338,0.03226918,99.36277986],[4.53536289,0.03226744,99.36176264],[4.5353624,0.03226571,99.3607443],[4.53536192,0.03226397,99.35972484],[4.53536143,0.03226224,99.35870423],[4.53536094,0.0322605,99.35768244],[4.53536046,0.03225877,99.35665945],[4.53535997,0.03225703,99.35563524],[4.53535949,0.0322553,99.35460978],[4.535359,0.03225356,99.35358304],[4.53535851,0.03225183,99.35255501],[4.53535803,0.03225009,99.35152566],[4.53535754,0.03224836,99.35049496],[4.53535705,0.03224662,99.34946289],[4.53535657,0.03224489,99.34842943],[4.53535608,0.03224315,99.34739455],[4.53535559,0.03224142,99.34635823],[4.5353551,0.03223968,99.34532045],[4.53535462,0.03223795,99.34428117],[4.53535413,0.03223621,99.34324039],[4.53535364,0.03223448,99.34219806],[4.53535316,0.03223275,99.34115418],[4.53535267,0.03223101,99.34010871],[4.53535218,0.03222928,99.33906163],[4.53535169,0.03222754,99.33801292],[4.53535121,0.03222581,99.33696257],[4.53535072,0.03222407,99.33591061],[4.53535023,0.03222234,99.33485708],[4.53534974,0.0322206,99.33380202],[4.53534925,0.03221887,99.33274546],[4.53534877,0.03221713,99.33168743],[4.53534828,0.0322154,99.33062796],[4.53534779,0.03221367,99.32956711],[4.5353473,0.03221193,99.32850491],[4.53534681,0.0322102,99.3274414],[4.53534632,0.03220846,99.32637663],[4.53534583,0.03220673,99.32531062],[4.53534535,0.03220499,99.32424343],[4.53534486,0.03220326,99.32317509],[4.53534437,0.03220152,99.32210564],[4.53534388,0.03219979,99.32103506],[4.53534339,0.03219806,99.31996336],[4.53534291,0.03219632,99.31889051],[4.53534242,0.03219459,99.3178165],[4.53534193,0.03219285,99.31674134],[4.53534144,0.03219112,99.31566501],[4.53534095,0.03218938,99.31458751],[4.53534047,0.03218765,99.31350883],[4.53533998,0.03218591,99.31242895],[4.53533949,0.03218418,99.31134788],[4.535339,0.03218244,99.31026561],[4.53533851,0.03218071,99.30918212],[4.53533803,0.03217898,99.30809742],[4.53533754,0.03217724,99.30701149],[4.53533705,0.03217551,99.30592432],[4.53533656,0.03217377,99.30483591],[4.53533607,0.03217204,99.30374626],[4.53533559,0.0321703,99.30265535],[4.5353351,0.03216857,99.30156317],[4.53533461,0.03216683,99.30046973],[4.53533412,0.0321651,99.299375],[4.53533363,0.03216336,99.29827899],[4.53533315,0.03216163,99.29718169],[4.53533266,0.0321599,99.29608309],[4.53533217,0.03215816,99.29498318],[4.53533168,0.03215643,99.29388195],[4.53533119,0.03215469,99.2927794],[4.5353307,0.03215296,99.29167552],[4.53533022,0.03215122,99.29057031],[4.53532973,0.03214949,99.28946375],[4.53532924,0.03214775,99.28835584],[4.53532875,0.03214602,99.28724656],[4.53532826,0.03214429,99.28613593],[4.53532777,0.03214255,99.28502392],[4.53532728,0.03214082,99.28391052],[4.5353268,0.03213908,99.28279574],[4.53532631,0.03213735,99.28167956],[4.53532582,0.03213561,99.28056198],[4.53532533,0.03213388,99.27944299],[4.53532484,0.03213215,99.27832258],[4.53532435,0.03213041,99.27720075],[4.53532386,0.03212868,99.27607753],[4.53532337,0.03212694,99.27495296],[4.53532288,0.03212521,99.27382704],[4.53532239,0.03212348,99.27269981],[4.5353219,0.03212174,99.27157127],[4.53532141,0.03212001,99.27044143],[4.53532092,0.03211827,99.26931032],[4.53532043,0.03211654,99.26817794],[4.53531994,0.03211481,99.26704431],[4.53531945,0.03211307,99.26590944],[4.53531896,0.03211134,99.26477333],[4.53531847,0.0321096,99.263636],[4.53531798,0.03210787,99.26249745],[4.53531749,0.03210614,99.2613577],[4.535317,0.0321044,99.26021675],[4.53531651,0.03210267,99.25907461],[4.53531602,0.03210094,99.25793129],[4.53531553,0.0320992,99.2567868],[4.53531504,0.03209747,99.25564115],[4.53531454,0.03209573,99.25449436],[4.53531405,0.032094,99.25334641],[4.53531356,0.03209227,99.25219734],[4.53531307,0.03209053,99.25104714],[4.53531258,0.0320888,99.24989583],[4.5353121,0.03208706,99.24874341],[4.53531161,0.03208533,99.2475899],[4.53531112,0.03208359,99.2464353],[4.53531063,0.03208186,99.24527962],[4.53531014,0.03208013,99.24412288],[4.53530965,0.03207839,99.24296507],[4.53530916,0.03207666,99.24180622],[4.53530867,0.03207492,99.24064632],[4.53530819,0.03207319,99.23948539],[4.5353077,0.03207145,99.23832344],[4.53530721,0.03206972,99.23716048],[4.53530672,0.03206798,99.23599651],[4.53530624,0.03206625,99.23483155],[4.53530575,0.03206451,99.2336656],[4.53530526,0.03206278,99.23249868],[4.53530478,0.03206104,99.23133079],[4.53530429,0.03205931,99.23016194],[4.53530381,0.03205757,99.22899214],[4.53530332,0.03205584,99.2278214],[4.53530284,0.0320541,99.22664973],[4.53530235,0.03205237,99.22547714],[4.53530187,0.03205063,99.22430364],[4.53530139,0.0320489,99.22312923],[4.5353009,0.03204716,99.22195393],[4.53530042,0.03204542,99.22077775],[4.53529994,0.03204369,99.21960069],[4.53529945,0.03204195,99.21842276],[4.53529897,0.03204021,99.21724398],[4.53529849,0.03203848,99.21606435],[4.53529801,0.03203674,99.21488389],[4.53529753,0.03203501,99.21370259],[4.53529704,0.03203327,99.21252048],[4.53529656,0.03203153,99.21133756],[4.53529608,0.0320298,99.21015382],[4.5352956,0.03202806,99.20896926],[4.53529512,0.03202632,99.20778387],[4.53529464,0.03202459,99.20659764],[4.53529416,0.03202285,99.20541058],[4.53529368,0.03202111,99.20422268],[4.53529321,0.03201937,99.20303393],[4.53529273,0.03201764,99.20184432],[4.53529225,0.0320159,99.20065386],[4.53529177,0.03201416,99.19946254],[4.53529129,0.03201242,99.19827035],[4.53529081,0.03201069,99.19707729],[4.53529033,0.03200895,99.19588336],[4.53528986,0.03200721,99.19468854],[4.53528938,0.03200548,99.19349284],[4.5352889,0.03200374,99.19229625],[4.53528842,0.032002,99.19109877],[4.53528795,0.03200026,99.18990038],[4.53528747,0.03199852,99.1887011],[4.53528699,0.03199679,99.1875009],[4.53528651,0.03199505,99.18629979],[4.53528604,0.03199331,99.18509776],[4.53528556,0.03199157,99.18389481],[4.53528508,0.03198984,99.18269093],[4.53528461,0.0319881,99.18148612],[4.53528413,0.03198636,99.18028038],[4.53528365,0.03198462,99.17907369],[4.53528317,0.03198289,99.17786605],[4.5352827,0.03198115,99.17665746],[4.53528222,0.03197941,99.17544792],[4.53528174,0.03197767,99.17423741],[4.53528127,0.03197593,99.17302594],[4.53528079,0.0319742,99.1718135],[4.53528031,0.03197246,99.17060007],[4.53527983,0.03197072,99.16938566],[4.53527936,0.03196898,99.16817026],[4.53527888,0.03196725,99.16695386],[4.5352784,0.03196551,99.16573644],[4.53527793,0.03196377,99.16451801],[4.53527745,0.03196203,99.16329856],[4.53527697,0.0319603,99.16207808],[4.53527649,0.03195856,99.16085656],[4.53527601,0.03195682,99.159634],[4.53527554,0.03195508,99.15841038],[4.53527506,0.03195335,99.1571857],[4.53527458,0.03195161,99.15595996],[4.5352741,0.03194987,99.15473314],[4.53527362,0.03194813,99.15350525],[4.53527314,0.0319464,99.15227626],[4.53527266,0.03194466,99.15104618],[4.53527218,0.03194292,99.14981499],[4.5352717,0.03194119,99.1485827],[4.53527122,0.03193945,99.14734928],[4.53527074,0.03193771,99.14611475],[4.53527026,0.03193597,99.14487912],[4.53526978,0.03193424,99.14364239],[4.5352693,0.0319325,99.14240457],[4.53526882,0.03193076,99.14116568],[4.53526834,0.03192903,99.13992574],[4.53526786,0.03192729,99.13868474],[4.53526737,0.03192556,99.13744273],[4.53526689,0.03192382,99.13619973],[4.53526641,0.03192208,99.13495576],[4.53526593,0.03192035,99.13371084],[4.53526544,0.03191861,99.13246501],[4.53526496,0.03191688,99.1312183],[4.53526448,0.03191514,99.12997071],[4.53526399,0.0319134,99.12872229],[4.53526351,0.03191167,99.12747306],[4.53526302,0.03190993,99.12622303],[4.53526254,0.0319082,99.12497224],[4.53526205,0.03190646,99.1237207],[4.53526157,0.03190472,99.12246844],[4.53526109,0.03190299,99.12121546],[4.5352606,0.03190125,99.11996179],[4.53526012,0.03189952,99.11870745],[4.53525963,0.03189778,99.11745247],[4.53525914,0.03189605,99.11619685],[4.53525866,0.03189431,99.11494062],[4.53525817,0.03189258,99.1136838],[4.53525769,0.03189084,99.1124264],[4.5352572,0.03188911,99.11116845],[4.53525672,0.03188737,99.10990997],[4.53525623,0.03188564,99.10865098],[4.53525574,0.0318839,99.10739149],[4.53525526,0.03188217,99.10613153],[4.53525477,0.03188043,99.10487111],[4.53525428,0.0318787,99.10361026],[4.5352538,0.03187696,99.10234899],[4.53525331,0.03187523,99.10108732],[4.53525282,0.03187349,99.09982528],[4.53525234,0.03187176,99.09856288],[4.53525185,0.03187002,99.09730015],[4.53525136,0.03186829,99.0960371],[4.53525087,0.03186655,99.09477375],[4.53525039,0.03186482,99.09351012],[4.5352499,0.03186308,99.09224624],[4.53524941,0.03186135,99.09098211],[4.53524892,0.03185961,99.08971777],[4.53524843,0.03185788,99.08845323],[4.53524795,0.03185614,99.0871885],[4.53524746,0.03185441,99.08592362],[4.53524697,0.03185267,99.0846586],[4.53524648,0.03185094,99.08339346],[4.53524599,0.0318492,99.08212821],[4.5352455,0.03184747,99.08086289],[4.53524502,0.03184574,99.0795975],[4.53524453,0.031844,99.07833208],[4.53524404,0.03184227,99.07706663],[4.53524355,0.03184053,99.07580118],[4.53524306,0.0318388,99.07453575],[4.53524257,0.03183706,99.07327035],[4.53524208,0.03183533,99.07200502],[4.53524159,0.03183359,99.07073976],[4.5352411,0.03183186,99.0694746],[4.53524062,0.03183013,99.06820955],[4.53524013,0.03182839,99.06694464],[4.53523964,0.03182666,99.06567989],[4.53523915,0.03182492,99.06441531],[4.53523866,0.03182319,99.06315094],[4.53523817,0.03182145,99.06188677],[4.53523768,0.03181972,99.06062285],[4.53523719,0.03181799,99.05935917],[4.5352367,0.03181625,99.05809578],[4.53523621,0.03181452,99.05683268],[4.53523572,0.03181278,99.05556991],[4.53523523,0.03181105,99.05430749],[4.53523474,0.03180931,99.05304544],[4.53523426,0.03180758,99.05178381],[4.53523377,0.03180585,99.05052261],[4.53523328,0.03180411,99.04926187],[4.53523279,0.03180238,99.04800162],[4.5352323,0.03180064,99.04674189],[4.53523181,0.03179891,99.0454827],[4.53523132,0.03179717,99.04422409],[4.53523083,0.03179544,99.04296607],[4.53523034,0.0317937,99.04170868],[4.53522986,0.03179197,99.04045195],[4.53522937,0.03179024,99.03919588],[4.53522888,0.0317885,99.03794049],[4.53522839,0.03178677,99.03668578],[4.5352279,0.03178503,99.03543175],[4.53522741,0.0317833,99.03417841],[4.53522693,0.03178156,99.03292576],[4.53522644,0.03177983,99.0316738],[4.53522595,0.03177809,99.03042251],[4.53522546,0.03177636,99.02917187],[4.53522498,0.03177462,99.02792189],[4.53522449,0.03177289,99.02667253],[4.535224,0.03177115,99.0254238],[4.53522352,0.03176942,99.02417566],[4.53522303,0.03176768,99.02292812],[4.53522254,0.03176595,99.02168115],[4.53522206,0.03176421,99.02043474],[4.53522157,0.03176248,99.01918888],[4.53522109,0.03176074,99.01794356],[4.5352206,0.03175901,99.01669876],[4.53522012,0.03175727,99.01545446],[4.53521963,0.03175553,99.01421065],[4.53521915,0.0317538,99.01296733],[4.53521866,0.03175206,99.01172448],[4.53521818,0.03175033,99.0104821],[4.5352177,0.03174859,99.00924018],[4.53521721,0.03174685,99.00799872],[4.53521673,0.03174512,99.0067577],[4.53521625,0.03174338,99.00551713],[4.53521576,0.03174165,99.00427699],[4.53521528,0.03173991,99.00303729],[4.53521479,0.03173818,99.001798],[4.5352143,0.03173644,99.00055913],[4.53521382,0.03173471,98.99932066],[4.53521333,0.03173297,98.9980826],[4.53521283,0.03173124,98.99684494],[4.53521234,0.0317295,98.99560766],[4.53521185,0.03172777,98.99437076],[4.53521135,0.03172604,98.99313424],[4.53521085,0.03172431,98.99189808],[4.53521035,0.03172258,98.99066229],[4.53520985,0.03172085,98.98942685],[4.53520934,0.03171912,98.98819176],[4.53520884,0.03171739,98.98695702],[4.53520833,0.03171566,98.9857226],[4.53520782,0.03171393,98.98448851],[4.53520731,0.0317122,98.98325475],[4.5352068,0.03171047,98.98202129],[4.53520629,0.03170874,98.98078815],[4.53520577,0.03170702,98.9795553],[4.53520526,0.03170529,98.97832275],[4.53520475,0.03170356,98.97709049],[4.53520423,0.03170184,98.9758585],[4.53520372,0.03170011,98.97462679],[4.5352032,0.03169838,98.97339535],[4.53520269,0.03169665,98.97216416],[4.53520217,0.03169493,98.97093323],[4.53520166,0.0316932,98.96970254],[4.53520114,0.03169147,98.9684721],[4.53520063,0.03168975,98.96724188],[4.53520011,0.03168802,98.96601189],[4.5351996,0.03168629,98.96478212],[4.53519909,0.03168456,98.96355256],[4.53519858,0.03168284,98.96232321],[4.53519807,0.03168111,98.96109406],[4.53519756,0.03167938,98.95986509],[4.53519705,0.03167765,98.95863632],[4.53519654,0.03167592,98.95740772],[4.53519603,0.03167419,98.95617929],[4.53519552,0.03167247,98.95495103],[4.53519501,0.03167074,98.95372292],[4.5351945,0.03166901,98.95249497],[4.53519399,0.03166728,98.95126716],[4.53519348,0.03166555,98.95003949],[4.53519297,0.03166382,98.94881195],[4.53519246,0.03166209,98.94758453],[4.53519196,0.03166036,98.94635722],[4.53519145,0.03165864,98.94513001],[4.53519094,0.03165691,98.94390289],[4.53519043,0.03165518,98.94267586],[4.53518992,0.03165345,98.94144893],[4.53518941,0.03165172,98.94022211],[4.5351889,0.03164999,98.9389954],[4.53518839,0.03164826,98.9377688],[4.53518788,0.03164653,98.93654233],[4.53518737,0.03164481,98.93531603],[4.53518686,0.03164308,98.93408991],[4.53518635,0.03164135,98.93286399],[4.53518584,0.03163962,98.93163832],[4.53518533,0.03163789,98.9304129],[4.53518482,0.03163617,98.92918776],[4.53518431,0.03163444,98.92796294],[4.53518379,0.03163271,98.92673844],[4.53518328,0.03163098,98.9255143],[4.53518277,0.03162926,98.92429055],[4.53518225,0.03162753,98.9230672],[4.53518174,0.0316258,98.92184429],[4.53518122,0.03162407,98.92062183],[4.53518071,0.03162235,98.91939985],[4.53518019,0.03162062,98.91817838],[4.53517968,0.03161889,98.91695744],[4.53517916,0.03161717,98.91573705],[4.53517865,0.03161544,98.91451725],[4.53517814,0.03161371,98.91329805],[4.53517762,0.03161198,98.91207948],[4.53517711,0.03161026,98.91086156],[4.5351766,0.03160853,98.90964433],[4.53517609,0.0316068,98.90842779],[4.53517558,0.03160507,98.90721199],[4.53517507,0.03160334,98.90599694],[4.53517457,0.03160161,98.90478267],[4.53517406,0.03159988,98.90356921],[4.53517356,0.03159815,98.90235656],[4.53517306,0.03159642,98.90114477],[4.53517256,0.03159469,98.89993384],[4.53517206,0.03159296,98.89872381],[4.53517156,0.03159123,98.89751469],[4.53517106,0.03158949,98.8963065],[4.53517057,0.03158776,98.89509928],[4.53517007,0.03158603,98.89389303],[4.53516958,0.0315843,98.89268778],[4.53516909,0.03158256,98.89148355],[4.53516859,0.03158083,98.89028037],[4.5351681,0.03157909,98.88907826],[4.53516761,0.03157736,98.88787724],[4.53516712,0.03157563,98.88667732],[4.53516663,0.03157389,98.88547854],[4.53516614,0.03157216,98.88428091],[4.53516565,0.03157042,98.88308447],[4.53516516,0.03156869,98.88188921],[4.53516467,0.03156696,98.88069518],[4.53516418,0.03156522,98.87950239],[4.53516369,0.03156349,98.87831087],[4.5351632,0.03156175,98.87712063],[4.53516271,0.03156002,98.8759317],[4.53516222,0.03155828,98.8747441],[4.53516173,0.03155655,98.87355785],[4.53516124,0.03155482,98.87237296],[4.53516075,0.03155308,98.87118946],[4.53516026,0.03155135,98.87000736],[4.53515977,0.03154961,98.86882669],[4.53515928,0.03154788,98.86764744],[4.53515879,0.03154615,98.86646966],[4.5351583,0.03154441,98.86529334],[4.53515781,0.03154268,98.86411853],[4.53515732,0.03154094,98.86294525],[4.53515682,0.03153921,98.86177355],[4.53515633,0.03153748,98.86060345],[4.53515584,0.03153574,98.85943496],[4.53515535,0.03153401,98.8582681],[4.53515486,0.03153228,98.85710287],[4.53515437,0.03153055,98.85593931],[4.53515387,0.03152881,98.85477741],[4.53515338,0.03152708,98.8536172],[4.53515289,0.03152535,98.85245868],[4.5351524,0.03152361,98.85130187],[4.5351519,0.03152188,98.85014679],[4.53515141,0.03152014,98.84899344],[4.53515092,0.03151841,98.84784185],[4.53515043,0.03151668,98.84669203],[4.53514993,0.03151494,98.84554398],[4.53514944,0.03151321,98.84439773],[4.53514895,0.03151148,98.84325329],[4.53514846,0.03150974,98.84211064],[4.53514796,0.03150801,98.84096979],[4.53514747,0.03150628,98.83983072],[4.53514698,0.03150454,98.83869343],[4.53514649,0.03150281,98.8375579],[4.535146,0.03150108,98.83642414],[4.5351455,0.03149934,98.83529214],[4.53514501,0.03149761,98.83416188],[4.53514452,0.03149588,98.83303336],[4.53514403,0.03149414,98.83190657],[4.53514354,0.03149241,98.8307815],[4.53514304,0.03149067,98.82965816],[4.53514255,0.03148894,98.82853651],[4.53514206,0.03148721,98.82741655],[4.53514157,0.03148547,98.82629826],[4.53514108,0.03148374,98.82518162],[4.53514058,0.03148201,98.8240666],[4.53514009,0.03148027,98.82295319],[4.5351396,0.03147854,98.82184137],[4.53513911,0.0314768,98.82073112],[4.53513862,0.03147507,98.81962242],[4.53513813,0.03147334,98.81851524],[4.53513764,0.0314716,98.81740958],[4.53513714,0.03146987,98.8163054],[4.53513665,0.03146814,98.8152027],[4.53513616,0.0314664,98.81410146],[4.53513567,0.03146467,98.81300166],[4.53513518,0.03146293,98.8119033],[4.53513469,0.0314612,98.81080636],[4.5351342,0.03145947,98.80971084],[4.53513371,0.03145773,98.80861671],[4.53513321,0.031456,98.80752397],[4.53513272,0.03145426,98.80643261],[4.53513223,0.03145253,98.80534261],[4.53513174,0.0314508,98.80425396],[4.53513125,0.03144906,98.80316666],[4.53513076,0.03144733,98.80208068],[4.53513027,0.0314456,98.80099602],[4.53512978,0.03144386,98.79991267],[4.53512929,0.03144213,98.79883061],[4.53512879,0.03144039,98.79774983],[4.5351283,0.03143866,98.79667032],[4.53512781,0.03143693,98.79559207],[4.53512732,0.03143519,98.79451506],[4.53512683,0.03143346,98.79343928],[4.53512634,0.03143172,98.79236472],[4.53512585,0.03142999,98.79129136],[4.53512536,0.03142826,98.7902192],[4.53512487,0.03142652,98.78914821],[4.53512437,0.03142479,98.7880784],[4.53512388,0.03142305,98.78700973],[4.53512339,0.03142132,98.78594221],[4.5351229,0.03141959,98.78487581],[4.53512241,0.03141785,98.78381054],[4.53512192,0.03141612,98.78274636],[4.53512143,0.03141439,98.78168327],[4.53512094,0.03141265,98.78062126],[4.53512044,0.03141092,98.77956032],[4.53511995,0.03140918,98.7785004],[4.53511946,0.03140745,98.77744149],[4.53511897,0.03140572,98.77638356],[4.53511848,0.03140398,98.77532659],[4.53511799,0.03140225,98.77427055],[4.53511749,0.03140052,98.77321542],[4.535117,0.03139878,98.77216119],[4.53511651,0.03139705,98.77110782],[4.53511602,0.03139531,98.77005529],[4.53511553,0.03139358,98.76900358],[4.53511503,0.03139185,98.76795268],[4.53511454,0.03139011,98.76690255],[4.53511405,0.03138838,98.76585317],[4.53511356,0.03138665,98.76480454],[4.53511306,0.03138491,98.76375665],[4.53511257,0.03138318,98.76270949],[4.53511208,0.03138145,98.76166304],[4.53511158,0.03137971,98.7606173],[4.53511109,0.03137798,98.75957227],[4.5351106,0.03137625,98.75852793],[4.5351101,0.03137451,98.75748427],[4.53510961,0.03137278,98.75644129],[4.53510912,0.03137105,98.75539898],[4.53510862,0.03136932,98.75435732],[4.53510813,0.03136758,98.75331632],[4.53510763,0.03136585,98.75227595],[4.53510714,0.03136412,98.75123622],[4.53510665,0.03136238,98.75019711],[4.53510615,0.03136065,98.74915861],[4.53510566,0.03135892,98.74812072],[4.53510516,0.03135718,98.74708343],[4.53510467,0.03135545,98.74604673],[4.53510417,0.03135372,98.74501061],[4.53510368,0.03135199,98.74397505],[4.53510318,0.03135025,98.74294007],[4.53510269,0.03134852,98.74190563],[4.53510219,0.03134679,98.74087175],[4.5351017,0.03134506,98.7398384],[4.5351012,0.03134332,98.73880558],[4.53510071,0.03134159,98.73777328],[4.53510021,0.03133986,98.73674149],[4.53509972,0.03133812,98.73571021],[4.53509922,0.03133639,98.73467942],[4.53509873,0.03133466,98.73364911],[4.53509823,0.03133293,98.73261929],[4.53509774,0.03133119,98.73158993],[4.53509724,0.03132946,98.73056103],[4.53509675,0.03132773,98.72953259],[4.53509625,0.031326,98.72850459],[4.53509575,0.03132426,98.72747702],[4.53509526,0.03132253,98.72644989],[4.53509476,0.0313208,98.72542317],[4.53509427,0.03131906,98.72439686],[4.53509377,0.03131733,98.72337095],[4.53509328,0.0313156,98.72234543],[4.53509278,0.03131387,98.7213203],[4.53509229,0.03131213,98.72029555],[4.53509179,0.0313104,98.71927116],[4.5350913,0.03130867,98.71824713],[4.5350908,0.03130694,98.71722346],[4.53509031,0.0313052,98.71620012],[4.53508981,0.03130347,98.71517712],[4.53508931,0.03130174,98.71415445],[4.53508882,0.03130001,98.71313209],[4.53508832,0.03129827,98.71211004],[4.53508783,0.03129654,98.7110883],[4.53508733,0.03129481,98.71006684],[4.53508684,0.03129308,98.70904567],[4.53508634,0.03129134,98.70802481],[4.53508585,0.03128961,98.70700429],[4.53508535,0.03128788,98.70598414],[4.53508486,0.03128614,98.7049644],[4.53508436,0.03128441,98.70394509],[4.53508387,0.03128268,98.70292625],[4.53508337,0.03128095,98.70190792],[4.53508288,0.03127921,98.70089012],[4.53508238,0.03127748,98.69987289],[4.53508189,0.03127575,98.69885625],[4.5350814,0.03127401,98.6978402],[4.5350809,0.03127228,98.69682474],[4.53508041,0.03127055,98.69580985],[4.53507992,0.03126881,98.69479554],[4.53507942,0.03126708,98.6937818],[4.53507893,0.03126535,98.69276862],[4.53507844,0.03126361,98.691756],[4.53507795,0.03126188,98.69074393],[4.53507745,0.03126015,98.6897324],[4.53507696,0.03125841,98.68872141],[4.53507647,0.03125668,98.68771096],[4.53507598,0.03125495,98.68670104],[4.53507549,0.03125321,98.68569163],[4.53507499,0.03125148,98.68468275],[4.5350745,0.03124974,98.68367438],[4.53507401,0.03124801,98.68266651],[4.53507352,0.03124628,98.68165914],[4.53507303,0.03124454,98.68065226],[4.53507254,0.03124281,98.67964588],[4.53507205,0.03124108,98.67863997],[4.53507156,0.03123934,98.67763455],[4.53507106,0.03123761,98.67662959],[4.53507057,0.03123587,98.6756251],[4.53507008,0.03123414,98.67462106],[4.53506959,0.03123241,98.67361748],[4.5350691,0.03123067,98.67261435],[4.53506861,0.03122894,98.67161166],[4.53506812,0.0312272,98.6706094],[4.53506763,0.03122547,98.66960757],[4.53506714,0.03122374,98.66860617],[4.53506664,0.031222,98.66760518],[4.53506615,0.03122027,98.66660461],[4.53506566,0.03121853,98.66560444],[4.53506517,0.0312168,98.66460467],[4.53506468,0.03121507,98.66360529],[4.53506419,0.03121333,98.66260631],[4.53506369,0.0312116,98.6616077],[4.5350632,0.03120987,98.66060947],[4.53506271,0.03120813,98.65961161],[4.53506222,0.0312064,98.6586141],[4.53506173,0.03120467,98.65761694],[4.53506123,0.03120293,98.65662009],[4.53506074,0.0312012,98.65562356],[4.53506025,0.03119947,98.65462732],[4.53505975,0.03119773,98.65363136],[4.53505926,0.031196,98.65263566],[4.53505877,0.03119427,98.65164018],[4.53505827,0.03119253,98.65064485],[4.53505778,0.0311908,98.64964956],[4.53505728,0.03118907,98.64865423],[4.53505679,0.03118733,98.64765881],[4.53505629,0.0311856,98.64666328],[4.5350558,0.03118387,98.64566765],[4.5350553,0.03118214,98.64467189],[4.5350548,0.03118041,98.64367601],[4.5350543,0.03117867,98.64267999],[4.53505381,0.03117694,98.64168383],[4.53505331,0.03117521,98.64068751],[4.53505281,0.03117348,98.63969103],[4.53505231,0.03117175,98.63869438],[4.53505181,0.03117001,98.63769755],[4.53505131,0.03116828,98.63670053],[4.53505081,0.03116655,98.63570331],[4.53505031,0.03116482,98.63470588],[4.53504981,0.03116309,98.63370824],[4.53504931,0.03116136,98.63271038],[4.53504881,0.03115963,98.63171228],[4.5350483,0.0311579,98.63071395],[4.5350478,0.03115617,98.62971536],[4.5350473,0.03115444,98.62871652],[4.53504679,0.03115271,98.62771741],[4.53504629,0.03115098,98.62671802],[4.53504579,0.03114925,98.62571835],[4.53504528,0.03114752,98.62471839],[4.53504478,0.03114579,98.62371813],[4.53504427,0.03114406,98.62271755],[4.53504377,0.03114233,98.62171666],[4.53504326,0.0311406,98.62071544],[4.53504276,0.03113887,98.61971389],[4.53504225,0.03113714,98.61871199],[4.53504174,0.03113541,98.61770974],[4.53504124,0.03113368,98.61670712],[4.53504073,0.03113195,98.61570414],[4.53504022,0.03113022,98.61470078],[4.53503971,0.03112849,98.61369703],[4.53503921,0.03112676,98.61269288],[4.5350387,0.03112503,98.61168833],[4.53503819,0.0311233,98.61068337],[4.53503768,0.03112158,98.60967799],[4.53503717,0.03111985,98.60867217],[4.53503666,0.03111812,98.60766592],[4.53503615,0.03111639,98.60665922],[4.53503564,0.03111466,98.60565207],[4.53503513,0.03111293,98.60464447],[4.53503462,0.0311112,98.60363652],[4.53503411,0.03110948,98.60262827],[4.5350336,0.03110775,98.60161981],[4.53503309,0.03110602,98.60061112],[4.53503258,0.03110429,98.59960218],[4.53503207,0.03110256,98.59859299],[4.53503156,0.03110084,98.59758352],[4.53503105,0.03109911,98.59657377],[4.53503054,0.03109738,98.59556371],[4.53503003,0.03109565,98.59455334],[4.53502951,0.03109392,98.59354266],[4.535029,0.0310922,98.59253165],[4.53502849,0.03109047,98.5915203],[4.53502798,0.03108874,98.59050862],[4.53502747,0.03108701,98.58949658],[4.53502696,0.03108528,98.58848419],[4.53502645,0.03108356,98.58747143],[4.53502593,0.03108183,98.5864583],[4.53502542,0.0310801,98.58544479],[4.53502491,0.03107837,98.58443088],[4.5350244,0.03107664,98.58341658],[4.53502389,0.03107492,98.58240187],[4.53502338,0.03107319,98.58138674],[4.53502287,0.03107146,98.58037119],[4.53502236,0.03106973,98.57935521],[4.53502184,0.031068,98.57833879],[4.53502133,0.03106627,98.57732193],[4.53502082,0.03106455,98.5763046],[4.53502031,0.03106282,98.57528682],[4.53501981,0.03106109,98.57426856],[4.5350193,0.03105936,98.57324982],[4.53501879,0.03105763,98.57223059],[4.53501828,0.0310559,98.57121087],[4.53501778,0.03105417,98.57019064],[4.53501727,0.03105244,98.56916989],[4.53501677,0.03105071,98.56814863],[4.53501627,0.03104898,98.56712684],[4.53501576,0.03104725,98.56610451],[4.53501526,0.03104552,98.56508164],[4.53501476,0.03104379,98.56405821],[4.53501427,0.03104206,98.56303422],[4.53501377,0.03104032,98.56200966],[4.53501328,0.03103859,98.56098453],[4.53501278,0.03103686,98.5599588],[4.53501229,0.03103512,98.55893249],[4.5350118,0.03103339,98.55790557],[4.53501131,0.03103166,98.55687804],[4.53501082,0.03102992,98.55584989],[4.53501033,0.03102819,98.55482112],[4.53500984,0.03102645,98.55379171],[4.53500935,0.03102472,98.55276166],[4.53500887,0.03102298,98.55173095],[4.53500838,0.03102125,98.55069959],[4.5350079,0.03101951,98.54966756],[4.53500741,0.03101778,98.54863486],[4.53500693,0.03101604,98.54760147],[4.53500644,0.0310143,98.54656739],[4.53500596,0.03101257,98.54553262],[4.53500548,0.03101083,98.54449713],[4.535005,0.03100909,98.54346093],[4.53500451,0.03100736,98.54242401],[4.53500403,0.03100562,98.54138635],[4.53500355,0.03100389,98.54034795],[4.53500306,0.03100215,98.53930881],[4.53500258,0.03100041,98.53826891],[4.5350021,0.03099868,98.53722824],[4.53500162,0.03099694,98.53618681],[4.53500113,0.0309952,98.53514459],[4.53500065,0.03099347,98.53410159],[4.53500017,0.03099173,98.53305776],[4.53499968,0.03098999,98.53201304],[4.5349992,0.03098826,98.53096733],[4.53499872,0.03098652,98.52992055],[4.53499823,0.03098479,98.52887263],[4.53499775,0.03098305,98.52782353],[4.53499726,0.03098131,98.52677324],[4.53499678,0.03097958,98.52572177],[4.53499629,0.03097784,98.52466914],[4.53499581,0.03097611,98.52361534],[4.53499532,0.03097437,98.52256039],[4.53499484,0.03097264,98.52150429],[4.53499435,0.0309709,98.52044705],[4.53499386,0.03096917,98.51938866],[4.53499337,0.03096743,98.51832915],[4.53499289,0.0309657,98.51726851],[4.5349924,0.03096396,98.51620676],[4.53499191,0.03096223,98.51514389],[4.53499142,0.03096049,98.51407991],[4.53499093,0.03095876,98.51301483],[4.53499044,0.03095703,98.51194866],[4.53498995,0.03095529,98.5108814],[4.53498946,0.03095356,98.50981305],[4.53498896,0.03095182,98.50874363],[4.53498847,0.03095009,98.50767313],[4.53498798,0.03094836,98.50660157],[4.53498749,0.03094662,98.50552895],[4.53498699,0.03094489,98.50445527],[4.5349865,0.03094316,98.50338054],[4.534986,0.03094142,98.50230477],[4.53498551,0.03093969,98.50122796],[4.53498501,0.03093796,98.50015012],[4.53498452,0.03093623,98.49907125],[4.53498402,0.03093449,98.49799136],[4.53498352,0.03093276,98.49691045],[4.53498302,0.03093103,98.49582854],[4.53498253,0.0309293,98.49474561],[4.53498203,0.03092757,98.49366169],[4.53498153,0.03092583,98.49257677],[4.53498103,0.0309241,98.49149086],[4.53498053,0.03092237,98.49040396],[4.53498003,0.03092064,98.48931609],[4.53497952,0.03091891,98.48822724],[4.53497902,0.03091718,98.48713742],[4.53497852,0.03091545,98.48604663],[4.53497801,0.03091372,98.48495483],[4.53497751,0.03091199,98.48386195],[4.534977,0.03091026,98.48276795],[4.5349765,0.03090853,98.48167278],[4.53497599,0.0309068,98.48057638],[4.53497548,0.03090507,98.47947871],[4.53497498,0.03090334,98.47837977],[4.53497447,0.03090161,98.47727955],[4.53497396,0.03089989,98.47617805],[4.53497345,0.03089816,98.47507525],[4.53497294,0.03089643,98.47397116],[4.53497243,0.0308947,98.47286577],[4.53497192,0.03089297,98.47175907],[4.5349714,0.03089124,98.47065106],[4.53497089,0.03088952,98.46954173],[4.53497038,0.03088779,98.46843107],[4.53496986,0.03088606,98.46731909],[4.53496935,0.03088433,98.46620578],[4.53496884,0.03088261,98.46509112],[4.53496832,0.03088088,98.46397512],[4.53496781,0.03087915,98.46285777],[4.53496729,0.03087743,98.46173906],[4.53496678,0.0308757,98.46061899],[4.53496626,0.03087397,98.45949755],[4.53496575,0.03087225,98.45837474],[4.53496523,0.03087052,98.45725055],[4.53496471,0.03086879,98.45612498],[4.5349642,0.03086707,98.45499802],[4.53496368,0.03086534,98.45386966],[4.53496317,0.03086361,98.4527399],[4.53496265,0.03086189,98.45160874],[4.53496213,0.03086016,98.45047616],[4.53496162,0.03085843,98.44934217],[4.5349611,0.03085671,98.44820676],[4.53496058,0.03085498,98.44706991],[4.53496007,0.03085325,98.44593163],[4.53495955,0.03085153,98.44479192],[4.53495903,0.0308498,98.44365076],[4.53495852,0.03084807,98.44250815],[4.534958,0.03084635,98.44136408],[4.53495749,0.03084462,98.44021855],[4.53495697,0.03084289,98.43907155],[4.53495646,0.03084117,98.43792309],[4.53495594,0.03083944,98.43677315],[4.53495543,0.03083771,98.43562173],[4.53495491,0.03083599,98.43446885],[4.5349544,0.03083426,98.43331449],[4.53495389,0.03083253,98.43215866],[4.53495337,0.0308308,98.43100135],[4.53495286,0.03082908,98.42984255],[4.53495235,0.03082735,98.42868226],[4.53495184,0.03082562,98.42752047],[4.53495133,0.03082389,98.42635717],[4.53495082,0.03082216,98.42519236],[4.53495031,0.03082044,98.42402603],[4.5349498,0.03081871,98.42285816],[4.53494929,0.03081698,98.42168876],[4.53494878,0.03081525,98.42051781],[4.53494827,0.03081352,98.4193453],[4.53494776,0.03081179,98.41817122],[4.53494726,0.03081006,98.41699557],[4.53494675,0.03080833,98.41581834],[4.53494624,0.0308066,98.41463952],[4.53494574,0.03080487,98.4134591],[4.53494523,0.03080314,98.41227707],[4.53494473,0.03080141,98.41109343],[4.53494422,0.03079968,98.40990816],[4.53494372,0.03079795,98.40872126],[4.53494321,0.03079622,98.40753272],[4.53494271,0.03079449,98.40634253],[4.53494221,0.03079276,98.40515068],[4.5349417,0.03079103,98.40395717],[4.5349412,0.0307893,98.40276198],[4.5349407,0.03078757,98.40156511],[4.5349402,0.03078584,98.40036654],[4.53493969,0.03078411,98.39916628],[4.53493919,0.03078238,98.39796431],[4.53493869,0.03078065,98.39676062],[4.53493819,0.03077892,98.39555521],[4.53493769,0.03077719,98.39434807],[4.53493718,0.03077546,98.39313918],[4.53493668,0.03077373,98.39192854],[4.53493618,0.03077199,98.39071615],[4.53493568,0.03077026,98.38950199],[4.53493518,0.03076853,98.38828605],[4.53493468,0.0307668,98.38706833],[4.53493418,0.03076507,98.38584882],[4.53493368,0.03076334,98.38462751],[4.53493317,0.03076161,98.3834044],[4.53493267,0.03075988,98.38217946],[4.53493217,0.03075815,98.3809527],[4.53493167,0.03075642,98.37972411],[4.53493117,0.03075469,98.37849368],[4.53493067,0.03075295,98.3772614],[4.53493017,0.03075122,98.37602726],[4.53492966,0.03074949,98.37479125],[4.53492916,0.03074776,98.37355337],[4.53492866,0.03074603,98.37231361],[4.53492816,0.0307443,98.37107195],[4.53492765,0.03074257,98.3698284],[4.53492715,0.03074084,98.36858294],[4.53492665,0.03073911,98.36733556],[4.53492615,0.03073738,98.36608626],[4.53492564,0.03073565,98.36483503],[4.53492514,0.03073392,98.36358186],[4.53492464,0.03073219,98.36232674],[4.53492413,0.03073046,98.36106966],[4.53492363,0.03072873,98.35981062],[4.53492312,0.030727,98.3585496],[4.53492262,0.03072527,98.3572866],[4.53492212,0.03072354,98.35602161],[4.53492161,0.03072181,98.35475462],[4.53492111,0.03072008,98.35348562],[4.53492061,0.03071835,98.35221461],[4.5349201,0.03071662,98.35094157],[4.5349196,0.03071488,98.3496665],[4.5349191,0.03071315,98.34838939],[4.5349186,0.03071142,98.34711021],[4.53491809,0.03070969,98.34582896],[4.53491759,0.03070796,98.34454564],[4.53491709,0.03070623,98.34326022],[4.53491659,0.0307045,98.34197269],[4.53491609,0.03070277,98.34068305],[4.53491559,0.03070104,98.33939128],[4.53491509,0.03069931,98.33809737],[4.53491459,0.03069758,98.3368013],[4.53491409,0.03069584,98.33550307],[4.53491359,0.03069411,98.33420267],[4.53491309,0.03069238,98.33290007],[4.53491259,0.03069065,98.33159528],[4.5349121,0.03068892,98.33028827],[4.5349116,0.03068718,98.32897904],[4.5349111,0.03068545,98.32766757],[4.53491061,0.03068372,98.32635386],[4.53491012,0.03068198,98.32503788],[4.53490962,0.03068025,98.32371963],[4.53490913,0.03067852,98.32239909],[4.53490864,0.03067678,98.32107626],[4.53490815,0.03067505,98.31975113],[4.53490766,0.03067332,98.31842369],[4.53490717,0.03067158,98.31709395],[4.53490668,0.03066985,98.3157619],[4.53490619,0.03066811,98.31442754],[4.5349057,0.03066638,98.31309085],[4.53490521,0.03066464,98.31175182],[4.53490473,0.03066291,98.31041043],[4.53490424,0.03066117,98.30906667],[4.53490376,0.03065944,98.30772051],[4.53490327,0.0306577,98.30637195],[4.53490279,0.03065596,98.30502097],[4.5349023,0.03065423,98.30366754],[4.53490182,0.03065249,98.30231166],[4.53490133,0.03065076,98.30095331],[4.53490084,0.03064902,98.29959247],[4.53490036,0.03064729,98.29822913],[4.53489987,0.03064555,98.29686326],[4.53489939,0.03064381,98.29549485],[4.5348989,0.03064208,98.2941239],[4.53489842,0.03064034,98.29275037],[4.53489793,0.03063861,98.29137427],[4.53489744,0.03063687,98.28999559],[4.53489695,0.03063514,98.28861432],[4.53489647,0.0306334,98.28723048],[4.53489598,0.03063167,98.28584404],[4.53489549,0.03062993,98.28445501],[4.534895,0.0306282,98.28306338],[4.53489451,0.03062646,98.28166916],[4.53489402,0.03062473,98.28027233],[4.53489353,0.030623,98.27887289],[4.53489304,0.03062126,98.27747084],[4.53489255,0.03061953,98.27606618],[4.53489206,0.03061779,98.27465891],[4.53489157,0.03061606,98.27324901],[4.53489108,0.03061432,98.27183648],[4.53489059,0.03061259,98.27042133],[4.5348901,0.03061086,98.26900355],[4.53488961,0.03060912,98.26758313],[4.53488913,0.03060739,98.26616008],[4.53488864,0.03060565,98.26473438],[4.53488815,0.03060392,98.26330604],[4.53488766,0.03060218,98.26187505],[4.53488717,0.03060045,98.26044142],[4.53488668,0.03059871,98.25900512],[4.53488619,0.03059698,98.25756617],[4.5348857,0.03059524,98.25612456],[4.53488521,0.03059351,98.25468028],[4.53488472,0.03059177,98.25323334],[4.53488424,0.03059004,98.25178373],[4.53488375,0.0305883,98.25033144],[4.53488326,0.03058657,98.24887648],[4.53488277,0.03058483,98.24741884],[4.53488229,0.0305831,98.24595851],[4.5348818,0.03058136,98.2444955],[4.53488132,0.03057963,98.24302981],[4.53488083,0.0305779,98.24156142],[4.53488035,0.03057616,98.24009033],[4.53487986,0.03057443,98.23861656],[4.53487938,0.03057269,98.23714008],[4.5348789,0.03057095,98.23566094],[4.53487842,0.03056922,98.23417918],[4.53487793,0.03056748,98.23269485],[4.53487745,0.03056574,98.231208],[4.53487697,0.03056401,98.22971866],[4.53487649,0.03056227,98.2282269],[4.534876,0.03056053,98.22673276],[4.53487552,0.0305588,98.22523628],[4.53487503,0.03055706,98.22373752],[4.53487453,0.03055533,98.22223653],[4.53487404,0.0305536,98.22073336],[4.53487354,0.03055187,98.21922808],[4.53487304,0.03055014,98.21772072],[4.53487253,0.03054841,98.21621134],[4.53487201,0.03054668,98.21470001],[4.5348715,0.03054495,98.21318676],[4.53487098,0.03054323,98.21167166],[4.53487046,0.0305415,98.21015476],[4.53486993,0.03053978,98.20863611],[4.5348694,0.03053806,98.20711577],[4.53486888,0.03053633,98.20559378],[4.53486835,0.03053461,98.20407018],[4.53486782,0.03053289,98.20254503],[4.53486728,0.03053117,98.20101837],[4.53486675,0.03052944,98.19949024],[4.53486622,0.03052772,98.19796067],[4.53486569,0.030526,98.19642971],[4.53486516,0.03052428,98.19489738],[4.53486463,0.03052255,98.19336373],[4.53486411,0.03052083,98.19182878],[4.53486358,0.03051911,98.19029256],[4.53486305,0.03051738,98.18875512],[4.53486252,0.03051566,98.18721648],[4.534862,0.03051394,98.18567668],[4.53486147,0.03051221,98.18413575],[4.53486095,0.03051049,98.18259373],[4.53486043,0.03050876,98.18105064],[4.5348599,0.03050704,98.17950652],[4.53485938,0.03050531,98.17796141],[4.53485886,0.03050359,98.17641533],[4.53485834,0.03050186,98.17486833],[4.53485782,0.03050014,98.17332042],[4.5348573,0.03049841,98.17177165],[4.53485679,0.03049669,98.17022204],[4.53485627,0.03049496,98.16867164],[4.53485575,0.03049323,98.16712047],[4.53485524,0.03049151,98.16556856],[4.53485472,0.03048978,98.16401595],[4.53485421,0.03048805,98.16246266],[4.5348537,0.03048632,98.16090874],[4.53485319,0.0304846,98.15935421],[4.53485267,0.03048287,98.15779911],[4.53485217,0.03048114,98.15624346],[4.53485166,0.03047941,98.1546873],[4.53485115,0.03047768,98.15313066],[4.53485064,0.03047595,98.15157357],[4.53485013,0.03047422,98.15001607],[4.53484963,0.03047249,98.14845818],[4.53484912,0.03047076,98.14689993],[4.53484862,0.03046903,98.14534136],[4.53484812,0.0304673,98.1437825],[4.53484761,0.03046557,98.14222338],[4.53484711,0.03046384,98.14066403],[4.53484661,0.03046211,98.13910448],[4.53484611,0.03046038,98.13754477],[4.53484561,0.03045865,98.13598491],[4.5348451,0.03045692,98.13442495],[4.5348446,0.03045519,98.13286491],[4.5348441,0.03045346,98.13130483],[4.5348436,0.03045172,98.12974473],[4.53484311,0.03044999,98.12818465],[4.53484261,0.03044826,98.12662462],[4.53484211,0.03044653,98.12506466],[4.53484161,0.0304448,98.1235048],[4.53484111,0.03044307,98.1219451],[4.53484061,0.03044133,98.12038558],[4.53484011,0.0304396,98.11882632],[4.53483961,0.03043787,98.11726735],[4.53483912,0.03043614,98.11570874],[4.53483862,0.03043441,98.11415053],[4.53483812,0.03043268,98.11259278],[4.53483762,0.03043094,98.11103555],[4.53483712,0.03042921,98.10947889],[4.53483662,0.03042748,98.10792284],[4.53483612,0.03042575,98.10636747],[4.53483563,0.03042402,98.10481284],[4.53483513,0.03042228,98.10325898],[4.53483463,0.03042055,98.10170596],[4.53483413,0.03041882,98.10015383],[4.53483363,0.03041709,98.09860265],[4.53483313,0.03041536,98.09705247],[4.53483264,0.03041362,98.09550334],[4.53483214,0.03041189,98.09395533],[4.53483164,0.03041016,98.09240847],[4.53483114,0.03040843,98.09086284],[4.53483064,0.0304067,98.08931848],[4.53483014,0.03040497,98.08777544],[4.53482965,0.03040323,98.08623379],[4.53482915,0.0304015,98.08469358],[4.53482865,0.03039977,98.08315485],[4.53482815,0.03039804,98.08161766],[4.53482765,0.03039631,98.08008204],[4.53482716,0.03039457,98.07854806],[4.53482666,0.03039284,98.07701576],[4.53482616,0.03039111,98.07548519],[4.53482566,0.03038938,98.07395639],[4.53482516,0.03038765,98.07242941],[4.53482466,0.03038591,98.07090431],[4.53482417,0.03038418,98.06938112],[4.53482367,0.03038245,98.06785989],[4.53482317,0.03038072,98.06634067],[4.53482267,0.03037899,98.06482351],[4.53482217,0.03037725,98.06330843],[4.53482168,0.03037552,98.0617955],[4.53482118,0.03037379,98.06028475],[4.53482068,0.03037206,98.05877623],[4.53482018,0.03037033,98.05726999],[4.53481968,0.03036859,98.05576606],[4.53481918,0.03036686,98.05426449],[4.53481869,0.03036513,98.05276533],[4.53481819,0.0303634,98.05126862],[4.53481769,0.03036167,98.04977441],[4.53481719,0.03035994,98.04828274],[4.53481669,0.0303582,98.04679365],[4.53481619,0.03035647,98.04530719],[4.53481569,0.03035474,98.0438234],[4.53481519,0.03035301,98.04234234],[4.53481469,0.03035128,98.04086403],[4.5348142,0.03034955,98.03938854],[4.5348137,0.03034781,98.03791589],[4.5348132,0.03034608,98.03644614],[4.5348127,0.03034435,98.03497934],[4.5348122,0.03034262,98.03351552],[4.5348117,0.03034089,98.03205474],[4.5348112,0.03033916,98.03059706],[4.53481069,0.03033743,98.02914252],[4.53481019,0.03033569,98.02769119],[4.53480969,0.03033396,98.0262431],[4.53480919,0.03033223,98.02479831],[4.53480869,0.0303305,98.02335688],[4.53480819,0.03032877,98.02191886],[4.53480768,0.03032704,98.0204843],[4.53480718,0.03032531,98.01905325],[4.53480668,0.03032358,98.01762577],[4.53480617,0.03032185,98.0162019],[4.53480567,0.03032012,98.01478168],[4.53480516,0.03031839,98.01336517],[4.53480466,0.03031666,98.01195239],[4.53480415,0.03031493,98.01054338],[4.53480365,0.0303132,98.00913819],[4.53480314,0.03031147,98.00773685],[4.53480264,0.03030974,98.0063394],[4.53480213,0.03030801,98.00494588],[4.53480162,0.03030628,98.00355634],[4.53480111,0.03030455,98.0021708],[4.5348006,0.03030282,98.00078931],[4.5348001,0.03030109,97.99941191],[4.53479959,0.03029937,97.99803863],[4.53479908,0.03029764,97.99666952],[4.53479857,0.03029591,97.99530461],[4.53479805,0.03029418,97.99394395],[4.53479754,0.03029245,97.99258756],[4.53479703,0.03029073,97.9912355],[4.53479652,0.030289,97.98988779],[4.53479601,0.03028727,97.98854449],[4.53479549,0.03028554,97.98720562],[4.53479498,0.03028381,97.98587122],[4.53479447,0.03028209,97.98454134],[4.53479395,0.03028036,97.98321602],[4.53479344,0.03027863,97.98189528],[4.53479292,0.03027691,97.98057918],[4.53479241,0.03027518,97.97926774],[4.53479189,0.03027345,97.97796102],[4.53479138,0.03027172,97.97665903],[4.53479086,0.03027,97.97536184],[4.53479035,0.03026827,97.97406947],[4.53478983,0.03026654,97.97278196],[4.53478932,0.03026482,97.97149935],[4.5347888,0.03026309,97.97022168],[4.53478829,0.03026136,97.96894899],[4.53478777,0.03025964,97.96768131],[4.53478726,0.03025791,97.9664187],[4.53478674,0.03025618,97.96516117],[4.53478622,0.03025446,97.96390878],[4.53478571,0.03025273,97.96266156],[4.53478519,0.030251,97.96141955],[4.53478468,0.03024927,97.96018279],[4.53478416,0.03024755,97.95895132],[4.53478365,0.03024582,97.95772517],[4.53478313,0.03024409,97.95650439],[4.53478262,0.03024237,97.95528901],[4.5347821,0.03024064,97.95407907],[4.53478159,0.03023891,97.95287461],[4.53478107,0.03023719,97.95167568],[4.53478056,0.03023546,97.9504823],[4.53478004,0.03023373,97.94929452],[4.53477953,0.03023201,97.94811237],[4.53477901,0.03023028,97.9469359],[4.5347785,0.03022855,97.94576514],[4.53477798,0.03022682,97.94460014],[4.53477747,0.0302251,97.94344092],[4.53477695,0.03022337,97.94228754],[4.53477644,0.03022164,97.94114002],[4.53477592,0.03021992,97.93999841],[4.53477541,0.03021819,97.93886275],[4.53477489,0.03021646,97.93773308],[4.53477438,0.03021474,97.93660943],[4.53477386,0.03021301,97.93549184],[4.53477335,0.03021128,97.93438036],[4.53477283,0.03020955,97.93327502],[4.53477232,0.03020783,97.93217586],[4.53477181,0.0302061,97.93108293],[4.53477129,0.03020437,97.92999626],[4.53477078,0.03020264,97.9289159],[4.53477026,0.03020092,97.92784191],[4.53476975,0.03019919,97.92677434],[4.53476924,0.03019746,97.92571324],[4.53476872,0.03019574,97.92465866],[4.53476821,0.03019401,97.92361066],[4.5347677,0.03019228,97.92256928],[4.53476718,0.03019055,97.92153457],[4.53476667,0.03018882,97.92050659],[4.53476616,0.0301871,97.91948539],[4.53476564,0.03018537,97.91847102],[4.53476513,0.03018364,97.91746348],[4.53476462,0.03018191,97.9164627],[4.53476411,0.03018019,97.91546857],[4.53476359,0.03017846,97.91448102],[4.53476308,0.03017673,97.91349996],[4.53476257,0.030175,97.91252528],[4.53476206,0.03017327,97.9115569],[4.53476155,0.03017155,97.91059473],[4.53476104,0.03016982,97.90963867],[4.53476053,0.03016809,97.90868864],[4.53476002,0.03016636,97.90774455],[4.53475951,0.03016463,97.9068063],[4.534759,0.0301629,97.9058738],[4.53475849,0.03016118,97.90494696],[4.53475798,0.03015945,97.9040257],[4.53475747,0.03015772,97.90310991],[4.53475696,0.03015599,97.90219951],[4.53475645,0.03015426,97.9012944],[4.53475594,0.03015253,97.9003945],[4.53475543,0.0301508,97.89949971],[4.53475492,0.03014907,97.89860994],[4.53475441,0.03014735,97.8977251],[4.53475391,0.03014562,97.8968451],[4.5347534,0.03014389,97.89596985],[4.53475289,0.03014216,97.89509925],[4.53475239,0.03014043,97.89423321],[4.53475188,0.0301387,97.89337165],[4.53475137,0.03013697,97.89251446],[4.53475087,0.03013524,97.89166156],[4.53475036,0.03013351,97.89081285],[4.53474986,0.03013178,97.88996824],[4.53474935,0.03013005,97.88912763],[4.53474885,0.03012832,97.88829092],[4.53474834,0.03012659,97.887458],[4.53474784,0.03012486,97.88662878],[4.53474733,0.03012313,97.88580316],[4.53474683,0.0301214,97.88498103],[4.53474632,0.03011967,97.88416229],[4.53474582,0.03011794,97.88334685],[4.53474532,0.03011621,97.8825346],[4.53474481,0.03011448,97.88172545],[4.53474431,0.03011275,97.88091928],[4.53474381,0.03011102,97.88011601],[4.5347433,0.03010928,97.87931553],[4.5347428,0.03010755,97.87851774],[4.5347423,0.03010582,97.87772255],[4.5347418,0.03010409,97.87692984],[4.53474129,0.03010236,97.87613952],[4.53474079,0.03010063,97.87535148],[4.53474029,0.0300989,97.87456564],[4.53473979,0.03009717,97.87378189],[4.53473929,0.03009544,97.87300012],[4.53473879,0.03009371,97.87222024],[4.53473828,0.03009198,97.87144214],[4.53473778,0.03009024,97.87066573],[4.53473728,0.03008851,97.86989091],[4.53473678,0.03008678,97.86911757],[4.53473628,0.03008505,97.86834562],[4.53473578,0.03008332,97.86757495],[4.53473528,0.03008159,97.86680546],[4.53473478,0.03007986,97.86603706],[4.53473428,0.03007812,97.86526964],[4.53473378,0.03007639,97.8645031],[4.53473328,0.03007466,97.86373735],[4.53473278,0.03007293,97.86297228],[4.53473228,0.0300712,97.86220779],[4.53473178,0.03006947,97.86144378],[4.53473128,0.03006774,97.86068016],[4.53473078,0.030066,97.85991683],[4.53473028,0.03006427,97.85915371],[4.53472978,0.03006254,97.8583907],[4.53472928,0.03006081,97.85762772],[4.53472878,0.03005908,97.85686467],[4.53472828,0.03005735,97.85610147],[4.53472778,0.03005562,97.85533803],[4.53472728,0.03005388,97.85457426],[4.53472678,0.03005215,97.85381007],[4.53472628,0.03005042,97.85304535],[4.53472578,0.03004869,97.85228003],[4.53472528,0.03004696,97.85151399],[4.53472478,0.03004523,97.85074714],[4.53472428,0.03004349,97.84997938],[4.53472378,0.03004176,97.84921062],[4.53472328,0.03004003,97.84844076],[4.53472278,0.0300383,97.8476697],[4.53472228,0.03003657,97.84689734],[4.53472178,0.03003484,97.84612359],[4.53472128,0.03003311,97.84534834],[4.53472078,0.03003137,97.8445715],[4.53472028,0.03002964,97.84379297],[4.53471978,0.03002791,97.84301266],[4.53471928,0.03002618,97.84223046],[4.53471878,0.03002445,97.84144628],[4.53471828,0.03002272,97.84066002],[4.53471777,0.03002098,97.83987158],[4.53471727,0.03001925,97.83908087],[4.53471677,0.03001752,97.83828779],[4.53471627,0.03001579,97.83749223],[4.53471577,0.03001406,97.83669411],[4.53471527,0.03001233,97.83589332],[4.53471477,0.0300106,97.83508976],[4.53471427,0.03000887,97.83428335],[4.53471377,0.03000713,97.83347398],[4.53471327,0.0300054,97.83266163],[4.53471277,0.03000367,97.83184632],[4.53471226,0.03000194,97.83102805],[4.53471176,0.03000021,97.83020683],[4.53471126,0.02999848,97.82938268],[4.53471076,0.02999675,97.82855561],[4.53471026,0.02999502,97.82772562],[4.53470975,0.02999329,97.82689272],[4.53470925,0.02999156,97.82605693],[4.53470875,0.02998982,97.82521826],[4.53470824,0.02998809,97.82437672],[4.53470774,0.02998636,97.82353231],[4.53470724,0.02998463,97.82268505],[4.53470673,0.0299829,97.82183494],[4.53470623,0.02998117,97.82098201],[4.53470573,0.02997944,97.82012626],[4.53470522,0.02997771,97.81926769],[4.53470472,0.02997598,97.81840633],[4.53470421,0.02997425,97.81754217],[4.53470371,0.02997252,97.81667524],[4.5347032,0.02997079,97.81580553],[4.5347027,0.02996906,97.81493307],[4.53470219,0.02996733,97.81405787],[4.53470169,0.0299656,97.81317994],[4.53470118,0.02996387,97.81229932],[4.53470067,0.02996214,97.81141601],[4.53470017,0.02996041,97.81053004],[4.53469966,0.02995868,97.80964141],[4.53469916,0.02995695,97.80875015],[4.53469865,0.02995522,97.80785627],[4.53469814,0.02995349,97.8069598],[4.53469764,0.02995176,97.80606073],[4.53469713,0.02995003,97.80515911],[4.53469662,0.0299483,97.80425493],[4.53469612,0.02994657,97.80334821],[4.53469561,0.02994484,97.80243898],[4.5346951,0.02994311,97.80152725],[4.5346946,0.02994139,97.80061303],[4.53469409,0.02993966,97.79969634],[4.53469358,0.02993793,97.79877718],[4.53469308,0.0299362,97.79785555],[4.53469257,0.02993447,97.79693143],[4.53469206,0.02993274,97.79600483],[4.53469156,0.02993101,97.79507573],[4.53469105,0.02992928,97.79414414],[4.53469055,0.02992755,97.79321004],[4.53469004,0.02992582,97.79227343],[4.53468953,0.02992409,97.79133431],[4.53468903,0.02992236,97.79039267],[4.53468852,0.02992063,97.78944851],[4.53468802,0.0299189,97.78850182],[4.53468751,0.02991717,97.78755259],[4.534687,0.02991544,97.78660082],[4.5346865,0.02991371,97.78564651],[4.53468599,0.02991198,97.78468966],[4.53468549,0.02991025,97.78373025],[4.53468498,0.02990852,97.78276828],[4.53468448,0.02990679,97.78180376],[4.53468397,0.02990506,97.78083667],[4.53468347,0.02990333,97.77986701],[4.53468296,0.0299016,97.77889478],[4.53468246,0.02989987,97.77791997],[4.53468195,0.02989814,97.77694258],[4.53468145,0.02989641,97.77596261],[4.53468095,0.02989468,97.77498005],[4.53468044,0.02989295,97.7739949],[4.53467994,0.02989122,97.77300715],[4.53467943,0.02988949,97.77201681],[4.53467893,0.02988776,97.77102387],[4.53467843,0.02988602,97.77002834],[4.53467792,0.02988429,97.76903021],[4.53467742,0.02988256,97.76802948],[4.53467691,0.02988083,97.76702615],[4.53467641,0.0298791,97.76602023],[4.53467591,0.02987737,97.76501172],[4.5346754,0.02987564,97.76400061],[4.5346749,0.02987391,97.7629869],[4.5346744,0.02987218,97.7619706],[4.53467389,0.02987045,97.76095171],[4.53467339,0.02986872,97.75993022],[4.53467288,0.02986699,97.75890614],[4.53467238,0.02986526,97.75787947],[4.53467188,0.02986353,97.7568502],[4.53467137,0.0298618,97.75581834],[4.53467087,0.02986007,97.75478389],[4.53467036,0.02985834,97.75374685],[4.53466986,0.02985661,97.75270722],[4.53466935,0.02985488,97.751665],[4.53466885,0.02985315,97.75062019],[4.53466834,0.02985142,97.7495728],[4.53466784,0.02984969,97.74852281],[4.53466733,0.02984796,97.74747025],[4.53466683,0.02984623,97.74641512],[4.53466632,0.0298445,97.74535741],[4.53466581,0.02984277,97.74429715],[4.53466531,0.02984104,97.74323432],[4.5346648,0.02983931,97.74216895],[4.53466429,0.02983758,97.74110103],[4.53466379,0.02983585,97.74003057],[4.53466328,0.02983412,97.73895758],[4.53466277,0.02983239,97.73788206],[4.53466226,0.02983066,97.73680402],[4.53466175,0.02982893,97.73572346],[4.53466124,0.0298272,97.73464039],[4.53466073,0.02982548,97.73355482],[4.53466022,0.02982375,97.73246677],[4.53465971,0.02982202,97.73137626],[4.5346592,0.02982029,97.73028336],[4.53465869,0.02981856,97.72918811],[4.53465818,0.02981683,97.72809055],[4.53465766,0.02981511,97.72699074],[4.53465715,0.02981338,97.72588873],[4.53465664,0.02981165,97.72478455],[4.53465612,0.02980992,97.72367827],[4.53465561,0.0298082,97.72256993],[4.5346551,0.02980647,97.72145958],[4.53465458,0.02980474,97.72034726],[4.53465407,0.02980301,97.71923302],[4.53465355,0.02980129,97.71811691],[4.53465304,0.02979956,97.71699898],[4.53465252,0.02979783,97.71587928],[4.53465201,0.0297961,97.71475784],[4.53465149,0.02979438,97.71363468],[4.53465098,0.02979265,97.7125098],[4.53465046,0.02979092,97.71138321],[4.53464995,0.0297892,97.71025491],[4.53464943,0.02978747,97.70912491],[4.53464891,0.02978574,97.70799321],[4.5346484,0.02978402,97.70685982],[4.53464788,0.02978229,97.70572475],[4.53464736,0.02978056,97.70458799],[4.53464684,0.02977884,97.70344956],[4.53464633,0.02977711,97.70230946],[4.53464581,0.02977538,97.7011677],[4.53464529,0.02977366,97.70002427],[4.53464477,0.02977193,97.69887919],[4.53464425,0.02977021,97.69773246],[4.53464373,0.02976848,97.69658409],[4.53464321,0.02976675,97.69543408],[4.53464269,0.02976503,97.69428244],[4.53464217,0.0297633,97.69312917],[4.53464165,0.02976158,97.69197428],[4.53464113,0.02975985,97.69081777],[4.53464061,0.02975813,97.68965965],[4.53464009,0.0297564,97.68849993],[4.53463957,0.02975468,97.68733861],[4.53463905,0.02975295,97.68617569],[4.53463853,0.02975123,97.68501118],[4.534638,0.0297495,97.6838451],[4.53463748,0.02974778,97.68267743],[4.53463696,0.02974605,97.68150819],[4.53463643,0.02974433,97.68033739],[4.53463591,0.0297426,97.67916502],[4.53463539,0.02974088,97.6779911],[4.53463486,0.02973915,97.67681564],[4.53463434,0.02973743,97.67563862],[4.53463381,0.0297357,97.67446007],[4.53463329,0.02973398,97.67327999],[4.53463276,0.02973226,97.67209838],[4.53463223,0.02973053,97.67091524],[4.53463171,0.02972881,97.6697306],[4.53463118,0.02972708,97.66854444],[4.53463066,0.02972536,97.66735677],[4.53463013,0.02972364,97.66616761],[4.53462961,0.02972191,97.66497696],[4.53462909,0.02972019,97.66378481],[4.53462856,0.02971846,97.66259119],[4.53462804,0.02971674,97.66139609],[4.53462752,0.02971501,97.66019951],[4.534627,0.02971329,97.65900148],[4.53462648,0.02971156,97.65780198],[4.53462596,0.02970983,97.65660103],[4.53462544,0.02970811,97.65539863],[4.53462493,0.02970638,97.6541948],[4.53462441,0.02970465,97.65298959],[4.5346239,0.02970293,97.65178306],[4.53462339,0.0297012,97.65057524],[4.53462288,0.02969947,97.64936612],[4.53462237,0.02969774,97.64815572],[4.53462186,0.02969601,97.64694404],[4.53462136,0.02969428,97.64573107],[4.53462086,0.02969255,97.64451684],[4.53462036,0.02969082,97.64330133],[4.53461986,0.02968908,97.64208456],[4.53461936,0.02968735,97.64086652],[4.53461887,0.02968562,97.63964723],[4.53461837,0.02968389,97.63842669],[4.53461788,0.02968215,97.63720489],[4.53461739,0.02968042,97.63598185],[4.5346169,0.02967868,97.63475757],[4.53461641,0.02967695,97.63353206],[4.53461592,0.02967521,97.63230531],[4.53461543,0.02967348,97.63107733],[4.53461494,0.02967175,97.62984812],[4.53461445,0.02967001,97.62861768],[4.53461396,0.02966828,97.62738601],[4.53461347,0.02966654,97.62615312],[4.53461298,0.02966481,97.624919],[4.53461249,0.02966307,97.62368365],[4.534612,0.02966134,97.62244707],[4.5346115,0.0296596,97.62120927],[4.53461101,0.02965787,97.61997024],[4.53461052,0.02965614,97.61872998],[4.53461003,0.0296544,97.6174885],[4.53460953,0.02965267,97.6162458],[4.53460904,0.02965094,97.61500187],[4.53460855,0.0296492,97.61375671],[4.53460805,0.02964747,97.61251034],[4.53460756,0.02964573,97.61126273],[4.53460707,0.029644,97.61001391],[4.53460657,0.02964227,97.60876386],[4.53460608,0.02964053,97.60751259],[4.53460559,0.0296388,97.60626009],[4.5346051,0.02963707,97.60500638],[4.5346046,0.02963533,97.60375144],[4.53460411,0.0296336,97.60249527],[4.53460362,0.02963186,97.60123789],[4.53460313,0.02963013,97.5999793],[4.53460264,0.0296284,97.59871955],[4.53460215,0.02962666,97.59745871],[4.53460166,0.02962493,97.5961968],[4.53460117,0.02962319,97.5949339],[4.53460068,0.02962146,97.59367006],[4.53460019,0.02961972,97.59240532],[4.5345997,0.02961799,97.59113974],[4.53459922,0.02961625,97.58987338],[4.53459873,0.02961451,97.58860628],[4.53459824,0.02961278,97.58733851],[4.53459776,0.02961104,97.58607009],[4.53459727,0.02960931,97.58480107],[4.53459679,0.02960757,97.58353144],[4.5345963,0.02960584,97.58226122],[4.53459581,0.0296041,97.58099043],[4.53459533,0.02960236,97.57971907],[4.53459484,0.02960063,97.57844717],[4.53459435,0.0295989,97.57717472],[4.53459385,0.02959716,97.57590175],[4.53459336,0.02959543,97.57462826],[4.53459286,0.0295937,97.57335427],[4.53459237,0.02959196,97.5720798],[4.53459187,0.02959023,97.57080485],[4.53459136,0.0295885,97.56952944],[4.53459086,0.02958677,97.56825358],[4.53459035,0.02958504,97.56697728],[4.53458983,0.02958331,97.56570056],[4.53458932,0.02958159,97.56442342],[4.5345888,0.02957986,97.56314589],[4.53458828,0.02957814,97.56186798],[4.53458777,0.02957641,97.56058969],[4.53458725,0.02957468,97.55931104],[4.53458673,0.02957296,97.55803204],[4.53458621,0.02957123,97.55675272],[4.53458569,0.02956951,97.55547306],[4.53458517,0.02956778,97.55419308],[4.53458465,0.02956605,97.55291278],[4.53458413,0.02956433,97.55163214],[4.53458362,0.0295626,97.55035118],[4.5345831,0.02956088,97.54906989],[4.53458258,0.02955915,97.54778827],[4.53458207,0.02955742,97.54650632],[4.53458155,0.0295557,97.54522403],[4.53458104,0.02955397,97.54394142],[4.53458052,0.02955224,97.54265846],[4.53458001,0.02955052,97.54137517],[4.53457949,0.02954879,97.54009155],[4.53457898,0.02954706,97.53880758],[4.53457846,0.02954533,97.53752327],[4.53457795,0.02954361,97.53623863],[4.53457743,0.02954188,97.53495364],[4.53457692,0.02954015,97.5336683],[4.53457641,0.02953843,97.53238263],[4.53457589,0.0295367,97.5310966],[4.53457538,0.02953497,97.52981023],[4.53457487,0.02953324,97.5285235],[4.53457435,0.02953152,97.52723643],[4.53457384,0.02952979,97.525949],[4.53457333,0.02952806,97.52466122],[4.53457281,0.02952633,97.52337308],[4.5345723,0.02952461,97.52208459],[4.53457179,0.02952288,97.52079573],[4.53457127,0.02952115,97.51950652],[4.53457076,0.02951942,97.51821694],[4.53457025,0.0295177,97.516927],[4.53456973,0.02951597,97.51563669],[4.53456922,0.02951424,97.51434601],[4.5345687,0.02951251,97.51305496],[4.53456819,0.02951079,97.51176356],[4.53456768,0.02950906,97.51047181],[4.53456716,0.02950733,97.50917973],[4.53456665,0.02950561,97.50788732],[4.53456614,0.02950388,97.5065946],[4.53456562,0.02950215,97.50530159],[4.53456511,0.02950042,97.50400829],[4.53456459,0.0294987,97.50271471],[4.53456408,0.02949697,97.50142088],[4.53456357,0.02949524,97.50012679],[4.53456305,0.02949352,97.49883247],[4.53456254,0.02949179,97.49753791],[4.53456202,0.02949006,97.49624315],[4.53456151,0.02948833,97.49494818],[4.53456099,0.02948661,97.49365302],[4.53456048,0.02948488,97.49235769],[4.53455997,0.02948315,97.49106219],[4.53455945,0.02948143,97.48976653],[4.53455894,0.0294797,97.48847073],[4.53455842,0.02947797,97.48717481],[4.53455791,0.02947625,97.48587876],[4.53455739,0.02947452,97.48458261],[4.53455688,0.02947279,97.48328636],[4.53455636,0.02947106,97.48199004],[4.53455585,0.02946934,97.48069364],[4.53455533,0.02946761,97.47939718],[4.53455482,0.02946588,97.47810068],[4.5345543,0.02946416,97.47680415],[4.53455379,0.02946243,97.47550759],[4.53455327,0.0294607,97.47421103],[4.53455276,0.02945898,97.47291447],[4.53455224,0.02945725,97.47161792],[4.53455173,0.02945552,97.4703214],[4.53455121,0.0294538,97.46902492],[4.5345507,0.02945207,97.46772849],[4.53455018,0.02945034,97.46643212],[4.53454967,0.02944862,97.46513583],[4.53454915,0.02944689,97.46383963],[4.53454864,0.02944516,97.46254352],[4.53454812,0.02944344,97.46124753],[4.53454761,0.02944171,97.45995166],[4.53454709,0.02943998,97.45865593],[4.53454658,0.02943826,97.45736035],[4.53454606,0.02943653,97.45606493],[4.53454555,0.0294348,97.45476968],[4.53454503,0.02943308,97.45347461],[4.53454452,0.02943135,97.45217974],[4.534544,0.02942962,97.45088509],[4.53454349,0.0294279,97.44959065],[4.53454297,0.02942617,97.44829645],[4.53454246,0.02942444,97.4470025],[4.53454195,0.02942271,97.4457088],[4.53454143,0.02942099,97.44441537],[4.53454092,0.02941926,97.44312223],[4.5345404,0.02941753,97.44182938],[4.53453989,0.02941581,97.44053685],[4.53453938,0.02941408,97.43924463],[4.53453886,0.02941235,97.43795274],[4.53453835,0.02941062,97.4366612],[4.53453784,0.0294089,97.43537001],[4.53453733,0.02940717,97.4340792],[4.53453682,0.02940544,97.43278876],[4.5345363,0.02940371,97.43149872],[4.53453579,0.02940199,97.43020909],[4.53453528,0.02940026,97.42891987],[4.53453477,0.02939853,97.42763109],[4.53453426,0.0293968,97.42634275],[4.53453375,0.02939507,97.42505486],[4.53453324,0.02939335,97.42376745],[4.53453273,0.02939162,97.42248051],[4.53453222,0.02938989,97.42119407],[4.53453171,0.02938816,97.41990813],[4.5345312,0.02938643,97.41862271],[4.53453069,0.0293847,97.41733782],[4.53453019,0.02938298,97.41605347],[4.53452968,0.02938125,97.41476968],[4.53452917,0.02937952,97.41348646],[4.53452866,0.02937779,97.41220382],[4.53452816,0.02937606,97.41092176],[4.53452765,0.02937433,97.40964032],[4.53452714,0.0293726,97.40835949],[4.53452664,0.02937087,97.40707929],[4.53452613,0.02936914,97.40579974],[4.53452563,0.02936741,97.40452083],[4.53452513,0.02936568,97.40324259],[4.53452462,0.02936395,97.40196503],[4.53452412,0.02936222,97.40068816],[4.53452362,0.02936049,97.39941199],[4.53452312,0.02935876,97.39813653],[4.53452261,0.02935703,97.3968618],[4.53452211,0.0293553,97.3955878],[4.53452161,0.02935357,97.39431455],[4.53452111,0.02935184,97.39304205],[4.53452061,0.02935011,97.39177031],[4.53452011,0.02934837,97.39049933],[4.53451961,0.02934664,97.38922911],[4.53451912,0.02934491,97.38795966],[4.53451862,0.02934318,97.38669097],[4.53451812,0.02934145,97.38542307],[4.53451762,0.02933971,97.38415594],[4.53451713,0.02933798,97.3828896],[4.53451663,0.02933625,97.38162405],[4.53451614,0.02933452,97.38035928],[4.53451564,0.02933279,97.37909532],[4.53451514,0.02933105,97.37783215],[4.53451465,0.02932932,97.37656978],[4.53451415,0.02932759,97.37530823],[4.53451366,0.02932586,97.37404748],[4.53451316,0.02932412,97.37278755],[4.53451267,0.02932239,97.37152844],[4.53451217,0.02932066,97.37027015],[4.53451168,0.02931893,97.36901267],[4.53451118,0.02931719,97.36775602],[4.53451069,0.02931546,97.36650017],[4.53451019,0.02931373,97.36524512],[4.5345097,0.029312,97.36399087],[4.5345092,0.02931026,97.3627374],[4.5345087,0.02930853,97.36148473],[4.53450821,0.0293068,97.36023283],[4.53450771,0.02930507,97.35898171],[4.53450721,0.02930333,97.35773135],[4.53450672,0.0293016,97.35648175],[4.53450622,0.02929987,97.35523291],[4.53450572,0.02929814,97.35398482],[4.53450522,0.02929641,97.35273748],[4.53450472,0.02929468,97.35149087],[4.53450422,0.02929295,97.35024499],[4.53450372,0.02929121,97.34899984],[4.53450322,0.02928948,97.34775541],[4.53450272,0.02928775,97.34651169],[4.53450222,0.02928602,97.34526867],[4.53450172,0.02928429,97.34402635],[4.53450122,0.02928256,97.34278472],[4.53450073,0.02928083,97.34154376],[4.53450023,0.0292791,97.34030348],[4.53449973,0.02927736,97.33906386],[4.53449923,0.02927563,97.33782491],[4.53449874,0.0292739,97.33658663],[4.53449824,0.02927217,97.33534902],[4.53449775,0.02927043,97.33411209],[4.53449725,0.0292687,97.33287584],[4.53449676,0.02926697,97.33164027],[4.53449627,0.02926523,97.33040538],[4.53449578,0.0292635,97.32917118],[4.53449529,0.02926177,97.32793767],[4.5344948,0.02926003,97.32670486],[4.53449431,0.0292583,97.32547273],[4.53449383,0.02925656,97.32424131],[4.53449334,0.02925483,97.32301059],[4.53449285,0.02925309,97.32178056],[4.53449236,0.02925136,97.32055125],[4.53449187,0.02924962,97.31932264],[4.53449138,0.02924789,97.31809475],[4.53449087,0.02924616,97.31686757],[4.53449037,0.02924443,97.3156411],[4.53448985,0.02924271,97.31441536],[4.53448933,0.02924098,97.31319034],[4.5344888,0.02923926,97.31196604],[4.53448827,0.02923754,97.31074248],[4.53448773,0.02923582,97.30951964],[4.53448718,0.0292341,97.30829754],[4.53448664,0.02923239,97.30707617],[4.53448609,0.02923067,97.30585555],[4.53448555,0.02922895,97.30463566],[4.534485,0.02922723,97.30341652],[4.53448446,0.02922552,97.30219813],[4.53448392,0.0292238,97.3009805],[4.53448338,0.02922208,97.29976361],[4.53448284,0.02922036,97.29854748],[4.5344823,0.02921864,97.29733211],[4.53448176,0.02921692,97.29611751],[4.53448122,0.0292152,97.29490367],[4.53448068,0.02921349,97.2936906],[4.53448014,0.02921177,97.2924783],[4.5344796,0.02921005,97.29126677],[4.53447906,0.02920833,97.29005603],[4.53447852,0.02920661,97.28884606],[4.53447797,0.02920489,97.28763687],[4.53447743,0.02920317,97.28642847],[4.53447689,0.02920146,97.28522087],[4.53447635,0.02919974,97.28401405],[4.53447581,0.02919802,97.28280803],[4.53447527,0.0291963,97.2816028],[4.53447473,0.02919458,97.28039838],[4.53447418,0.02919286,97.27919476],[4.53447364,0.02919115,97.27799195],[4.5344731,0.02918943,97.27678995],[4.53447256,0.02918771,97.27558876],[4.53447201,0.02918599,97.27438839],[4.53447147,0.02918428,97.27318884],[4.53447093,0.02918256,97.27199011],[4.53447038,0.02918084,97.2707922],[4.53446984,0.02917912,97.26959513],[4.53446929,0.02917741,97.26839888],[4.53446875,0.02917569,97.26720347],[4.53446821,0.02917397,97.2660089],[4.53446766,0.02917225,97.26481516],[4.53446712,0.02917054,97.26362228],[4.53446657,0.02916882,97.26243023],[4.53446603,0.0291671,97.26123904],[4.53446549,0.02916538,97.2600487],[4.53446494,0.02916367,97.25885922],[4.5344644,0.02916195,97.25767059],[4.53446391,0.02916021,97.25648283],[4.53446346,0.02915847,97.25529593],[4.534463,0.02915672,97.25410991],[4.53446255,0.02915498,97.25292475],[4.53446209,0.02915323,97.25174047],[4.53446164,0.02915149,97.25055706],[4.53446118,0.02914975,97.24937454],[4.53446073,0.029148,97.2481929],[4.53446027,0.02914626,97.24701215],[4.53445982,0.02914451,97.24583229],[4.53445936,0.02914277,97.24465332],[4.5344589,0.02914102,97.24347525],[4.53445845,0.02913928,97.24229808],[4.53445799,0.02913753,97.24112181],[4.53445754,0.02913579,97.23994645],[4.53445708,0.02913405,97.238772],[4.53445663,0.0291323,97.23759845],[4.53445617,0.02913056,97.2364258],[4.53445572,0.02912881,97.23525405],[4.53445526,0.02912707,97.23408319],[4.53445481,0.02912532,97.23291322],[4.53445436,0.02912358,97.23174414],[4.5344539,0.02912183,97.23057595],[4.53445345,0.02912009,97.22940863],[4.534453,0.02911834,97.2282422],[4.53445255,0.0291166,97.22707663],[4.53445209,0.02911485,97.22591194],[4.53445164,0.02911311,97.22474811],[4.53445119,0.02911136,97.22358514],[4.53445074,0.02910961,97.22242302],[4.53445029,0.02910787,97.22126176],[4.53444984,0.02910612,97.22010133],[4.5344494,0.02910437,97.21894175],[4.53444895,0.02910263,97.21778301],[4.5344485,0.02910088,97.21662509],[4.53444805,0.02909913,97.215468],[4.53444761,0.02909739,97.21431173],[4.53444716,0.02909564,97.21315627],[4.53444672,0.02909389,97.21200162],[4.53444627,0.02909214,97.21084778],[4.53444582,0.0290904,97.20969474],[4.53444538,0.02908865,97.20854251],[4.53444493,0.0290869,97.20739108],[4.53444448,0.02908516,97.20624045],[4.53444403,0.02908341,97.20509064],[4.53444358,0.02908167,97.20394164],[4.53444312,0.02907992,97.20279346],[4.53444267,0.02907818,97.20164609],[4.53444221,0.02907643,97.20049955],[4.53444175,0.02907469,97.19935383],[4.53444129,0.02907294,97.19820893],[4.53444083,0.0290712,97.19706487],[4.53444037,0.02906946,97.19592164],[4.5344399,0.02906772,97.19477924],[4.53443943,0.02906598,97.19363768],[4.53443895,0.02906424,97.19249696],[4.53443848,0.0290625,97.19135708],[4.534438,0.02906077,97.19021805],[4.53443752,0.02905903,97.18907986],[4.53443703,0.02905729,97.18794253],[4.53443655,0.02905556,97.18680604],[4.53443606,0.02905382,97.18567042],[4.53443557,0.02905209,97.18453565],[4.53443508,0.02905036,97.18340175],[4.53443459,0.02904862,97.18226871],[4.5344341,0.02904689,97.18113653],[4.53443361,0.02904516,97.18000523],[4.53443312,0.02904342,97.17887479],[4.53443262,0.02904169,97.17774523],[4.53443213,0.02903996,97.17661655],[4.53443163,0.02903823,97.17548875],[4.53443114,0.02903649,97.17436184],[4.53443065,0.02903476,97.17323581],[4.53443015,0.02903303,97.17211066],[4.53442966,0.02903129,97.17098641],[4.53442917,0.02902956,97.16986305],[4.53442868,0.02902783,97.16874059],[4.53442819,0.02902609,97.16761903],[4.5344277,0.02902436,97.16649837],[4.53442721,0.02902263,97.16537862],[4.53442672,0.02902089,97.16425977],[4.53442623,0.02901916,97.16314184],[4.53442574,0.02901742,97.16202482],[4.53442525,0.02901569,97.16090871],[4.53442476,0.02901396,97.15979352],[4.53442428,0.02901222,97.15867926],[4.53442379,0.02901049,97.15756592],[4.5344233,0.02900875,97.1564535],[4.53442282,0.02900702,97.15534202],[4.53442233,0.02900528,97.15423147],[4.53442184,0.02900355,97.15312185],[4.53442136,0.02900181,97.15201318],[4.53442087,0.02900008,97.15090544],[4.53442039,0.02899834,97.14979865],[4.5344199,0.02899661,97.1486928],[4.53441942,0.02899487,97.14758791],[4.53441893,0.02899314,97.14648396],[4.53441845,0.0289914,97.14538097],[4.53441796,0.02898966,97.14427894],[4.53441747,0.02898793,97.14317787],[4.53441699,0.0289862,97.14207776],[4.5344165,0.02898447,97.14097862],[4.53441602,0.02898273,97.13988045],[4.53441553,0.028981,97.13878325],[4.53441504,0.02897926,97.13768703],[4.53441456,0.02897753,97.13659178],[4.53441407,0.02897579,97.13549751],[4.53441358,0.02897406,97.13440423],[4.53441315,0.02897231,97.13331193],[4.53441278,0.02897053,97.13222062],[4.53441277,0.02897045,97.13217057],[4.53451733,0.02893833,97.22251778],[4.53451735,0.02893841,97.2225645],[4.53451787,0.02894014,97.22358293],[4.53451839,0.02894186,97.22460196],[4.53451891,0.02894359,97.2256216],[4.53451943,0.02894532,97.22664185],[4.53451995,0.02894704,97.22766269],[4.53452048,0.02894877,97.22868414],[4.534521,0.0289505,97.22970618],[4.53452152,0.02895222,97.23072881],[4.53452204,0.02895395,97.23175205],[4.53452256,0.02895567,97.23277587],[4.53452308,0.0289574,97.23380028],[4.5345236,0.02895912,97.23482528],[4.53452412,0.02896085,97.23585086],[4.53452464,0.02896258,97.23687703],[4.53452516,0.02896431,97.23790379],[4.53452568,0.02896603,97.23893112],[4.5345262,0.02896776,97.23995903],[4.53452672,0.02896949,97.24098751],[4.53452724,0.02897121,97.24201658],[4.53452776,0.02897294,97.24304621],[4.53452828,0.02897467,97.24407641],[4.5345288,0.02897639,97.24510718],[4.53452932,0.02897812,97.24613852],[4.53452984,0.02897985,97.24717043],[4.53453036,0.02898158,97.24820289],[4.53453088,0.0289833,97.24923592],[4.5345314,0.02898503,97.25026951],[4.53453192,0.02898676,97.25130365],[4.53453244,0.02898848,97.25233835],[4.53453296,0.02899021,97.2533736],[4.53453348,0.02899194,97.25440941],[4.534534,0.02899366,97.25544576],[4.53453452,0.02899539,97.25648266],[4.53453504,0.02899712,97.25752011],[4.53453556,0.02899885,97.2585581],[4.53453608,0.02900057,97.25959663],[4.5345366,0.0290023,97.2606357],[4.53453712,0.02900403,97.26167531],[4.53453764,0.02900575,97.26271546],[4.53453816,0.02900748,97.26375614],[4.53453868,0.02900921,97.26479735],[4.5345392,0.02901094,97.26583909],[4.53453972,0.02901266,97.26688137],[4.53454024,0.02901439,97.26792416],[4.53454076,0.02901612,97.26896749],[4.53454128,0.02901784,97.27001133],[4.5345418,0.02901957,97.2710557],[4.53454232,0.0290213,97.27210058],[4.53454284,0.02902303,97.27314598],[4.53454336,0.02902475,97.2741919],[4.53454388,0.02902648,97.27523833],[4.5345444,0.02902821,97.27628527],[4.53454492,0.02902993,97.27733272],[4.53454544,0.02903166,97.27838068],[4.53454596,0.02903339,97.27942914],[4.53454648,0.02903512,97.28047811],[4.534547,0.02903684,97.28152757],[4.53454751,0.02903857,97.28257754],[4.53454803,0.0290403,97.28362801],[4.53454855,0.02904202,97.28467897],[4.53454907,0.02904375,97.28573042],[4.53454959,0.02904548,97.28678237],[4.53455011,0.02904721,97.28783481],[4.53455063,0.02904893,97.28888774],[4.53455115,0.02905066,97.28994115],[4.53455167,0.02905239,97.29099505],[4.53455219,0.02905411,97.29204943],[4.53455271,0.02905584,97.29310429],[4.53455323,0.02905757,97.29415963],[4.53455375,0.0290593,97.29521544],[4.53455427,0.02906102,97.29627173],[4.53455479,0.02906275,97.2973285],[4.53455531,0.02906448,97.29838573],[4.53455583,0.02906621,97.29944344],[4.53455635,0.02906793,97.30050161],[4.53455687,0.02906966,97.30156025],[4.53455739,0.02907139,97.30261935],[4.53455791,0.02907311,97.30367891],[4.53455843,0.02907484,97.30473894],[4.53455894,0.02907657,97.30579942],[4.53455946,0.02907829,97.30686036],[4.53455998,0.02908002,97.30792175],[4.5345605,0.02908175,97.30898359],[4.53456102,0.02908348,97.31004588],[4.53456154,0.0290852,97.31110863],[4.53456206,0.02908693,97.31217182],[4.53456258,0.02908866,97.31323545],[4.5345631,0.02909038,97.31429953],[4.53456362,0.02909211,97.31536404],[4.53456414,0.02909384,97.316429],[4.53456466,0.02909557,97.31749439],[4.53456518,0.02909729,97.31856022],[4.5345657,0.02909902,97.31962649],[4.53456622,0.02910075,97.32069318],[4.53456674,0.02910247,97.3217603],[4.53456726,0.0291042,97.32282785],[4.53456778,0.02910593,97.32389583],[4.5345683,0.02910765,97.32496421],[4.53456882,0.02910938,97.326033],[4.53456934,0.02911111,97.32710218],[4.53456986,0.02911284,97.32817175],[4.53457038,0.02911456,97.3292417],[4.5345709,0.02911629,97.33031202],[4.53457142,0.02911802,97.33138271],[4.53457194,0.02911974,97.33245374],[4.53457246,0.02912147,97.33352513],[4.53457298,0.0291232,97.33459684],[4.5345735,0.02912492,97.33566889],[4.53457402,0.02912665,97.33674126],[4.53457454,0.02912838,97.33781394],[4.53457506,0.02913011,97.33888693],[4.53457558,0.02913183,97.33996021],[4.5345761,0.02913356,97.34103378],[4.53457662,0.02913529,97.34210763],[4.53457714,0.02913701,97.34318174],[4.53457766,0.02913874,97.34425613],[4.53457818,0.02914047,97.34533076],[4.5345787,0.02914219,97.34640565],[4.53457922,0.02914392,97.34748077],[4.53457974,0.02914565,97.34855613],[4.53458026,0.02914738,97.34963173],[4.53458078,0.0291491,97.35070757],[4.5345813,0.02915083,97.35178363],[4.53458182,0.02915256,97.35285993],[4.53458234,0.02915428,97.35393647],[4.53458286,0.02915601,97.35501323],[4.53458338,0.02915774,97.35609023],[4.5345839,0.02915946,97.35716745],[4.53458442,0.02916119,97.3582449],[4.53458494,0.02916292,97.35932258],[4.53458546,0.02916465,97.36040048],[4.53458598,0.02916637,97.36147861],[4.5345865,0.0291681,97.36255696],[4.53458702,0.02916983,97.36363553],[4.53458754,0.02917155,97.36471433],[4.53458805,0.02917328,97.36579335],[4.53458857,0.02917501,97.36687258],[4.53458909,0.02917673,97.36795203],[4.53458961,0.02917846,97.3690317],[4.53459013,0.02918019,97.37011159],[4.53459065,0.02918192,97.37119169],[4.53459117,0.02918364,97.37227201],[4.53459169,0.02918537,97.37335254],[4.53459221,0.0291871,97.37443328],[4.53459273,0.02918882,97.37551423],[4.53459325,0.02919055,97.37659539],[4.53459377,0.02919228,97.37767676],[4.53459428,0.02919401,97.37875834],[4.5345948,0.02919573,97.37984012],[4.53459532,0.02919746,97.38092211],[4.53459584,0.02919919,97.38200431],[4.53459636,0.02920092,97.38308671],[4.53459688,0.02920264,97.38416931],[4.5345974,0.02920437,97.38525211],[4.53459792,0.0292061,97.38633512],[4.53459843,0.02920782,97.38741832],[4.53459895,0.02920955,97.38850172],[4.53459947,0.02921128,97.38958532],[4.53459999,0.02921301,97.39066912],[4.53460051,0.02921473,97.39175311],[4.53460103,0.02921646,97.3928373],[4.53460154,0.02921819,97.39392168],[4.53460206,0.02921992,97.39500625],[4.53460258,0.02922164,97.39609102],[4.5346031,0.02922337,97.39717597],[4.53460362,0.0292251,97.39826112],[4.53460414,0.02922683,97.39934645],[4.53460465,0.02922855,97.40043197],[4.53460517,0.02923028,97.40151768],[4.53460569,0.02923201,97.40260357],[4.53460621,0.02923374,97.40368965],[4.53460672,0.02923546,97.40477591],[4.53460724,0.02923719,97.40586236],[4.53460776,0.02923892,97.40694898],[4.53460828,0.02924065,97.40803579],[4.53460879,0.02924237,97.40912278],[4.53460931,0.0292441,97.41020994],[4.53460983,0.02924583,97.41129729],[4.53461035,0.02924756,97.41238481],[4.53461086,0.02924929,97.41347251],[4.53461138,0.02925101,97.41456041],[4.5346119,0.02925274,97.41564852],[4.53461242,0.02925447,97.41673683],[4.53461293,0.0292562,97.41782537],[4.53461345,0.02925792,97.41891415],[4.53461397,0.02925965,97.42000316],[4.53461448,0.02926138,97.42109242],[4.534615,0.02926311,97.42218194],[4.53461552,0.02926484,97.42327173],[4.53461603,0.02926656,97.42436178],[4.53461655,0.02926829,97.4254521],[4.53461707,0.02927002,97.42654271],[4.53461758,0.02927175,97.4276336],[4.5346181,0.02927347,97.42872479],[4.53461862,0.0292752,97.42981627],[4.53461913,0.02927693,97.43090806],[4.53461965,0.02927866,97.43200016],[4.53462017,0.02928039,97.43309257],[4.53462068,0.02928211,97.43418531],[4.5346212,0.02928384,97.43527838],[4.53462172,0.02928557,97.43637178],[4.53462223,0.0292873,97.43746552],[4.53462275,0.02928903,97.43855961],[4.53462327,0.02929075,97.43965405],[4.53462378,0.02929248,97.44074885],[4.5346243,0.02929421,97.44184402],[4.53462482,0.02929594,97.44293957],[4.53462533,0.02929766,97.44403551],[4.53462585,0.02929939,97.44513183],[4.53462637,0.02930112,97.44622857],[4.53462688,0.02930285,97.44732571],[4.5346274,0.02930458,97.44842327],[4.53462792,0.0293063,97.44952126],[4.53462843,0.02930803,97.45061968],[4.53462895,0.02930976,97.45171855],[4.53462947,0.02931149,97.45281787],[4.53462998,0.02931322,97.45391765],[4.5346305,0.02931494,97.4550179],[4.53463102,0.02931667,97.45611862],[4.53463153,0.0293184,97.45721983],[4.53463205,0.02932013,97.45832153],[4.53463257,0.02932185,97.45942373],[4.53463308,0.02932358,97.46052644],[4.5346336,0.02932531,97.46162966],[4.53463412,0.02932704,97.46273338],[4.53463463,0.02932876,97.46383762],[4.53463515,0.02933049,97.46494237],[4.53463567,0.02933222,97.46604763],[4.53463619,0.02933395,97.46715341],[4.5346367,0.02933568,97.46825969],[4.53463722,0.0293374,97.46936648],[4.53463774,0.02933913,97.47047379],[4.53463826,0.02934086,97.47158161],[4.53463877,0.02934259,97.47268994],[4.53463929,0.02934431,97.47379878],[4.53463981,0.02934604,97.47490813],[4.53464033,0.02934777,97.476018],[4.53464084,0.0293495,97.47712837],[4.53464136,0.02935122,97.47823927],[4.53464188,0.02935295,97.47935067],[4.5346424,0.02935468,97.48046259],[4.53464291,0.02935641,97.48157502],[4.53464343,0.02935813,97.48268796],[4.53464395,0.02935986,97.48380142],[4.53464447,0.02936159,97.48491539],[4.53464498,0.02936332,97.48602987],[4.5346455,0.02936504,97.48714487],[4.53464602,0.02936677,97.48826038],[4.53464654,0.0293685,97.48937641],[4.53464705,0.02937023,97.49049295],[4.53464757,0.02937195,97.49161001],[4.53464809,0.02937368,97.49272758],[4.53464861,0.02937541,97.49384567],[4.53464913,0.02937714,97.49496428],[4.53464964,0.02937886,97.4960834],[4.53465016,0.02938059,97.49720303],[4.53465068,0.02938232,97.49832318],[4.5346512,0.02938405,97.49944385],[4.53465172,0.02938577,97.50056503],[4.53465223,0.0293875,97.50168674],[4.53465275,0.02938923,97.50280895],[4.53465327,0.02939095,97.50393169],[4.53465379,0.02939268,97.50505494],[4.53465431,0.02939441,97.50617871],[4.53465482,0.02939614,97.507303],[4.53465534,0.02939786,97.50842781],[4.53465586,0.02939959,97.50955314],[4.53465638,0.02940132,97.51067898],[4.5346569,0.02940305,97.51180534],[4.53465741,0.02940477,97.51293223],[4.53465793,0.0294065,97.51405963],[4.53465845,0.02940823,97.51518755],[4.53465897,0.02940996,97.516316],[4.53465949,0.02941168,97.51744496],[4.53466001,0.02941341,97.51857444],[4.53466052,0.02941514,97.51970445],[4.53466104,0.02941686,97.52083497],[4.53466156,0.02941859,97.52196602],[4.53466208,0.02942032,97.52309759],[4.5346626,0.02942205,97.52422968],[4.53466312,0.02942377,97.5253623],[4.53466363,0.0294255,97.52649543],[4.53466415,0.02942723,97.5276291],[4.53466467,0.02942896,97.52876328],[4.53466519,0.02943068,97.52989799],[4.53466571,0.02943241,97.53103322],[4.53466622,0.02943414,97.53216897],[4.53466674,0.02943586,97.53330524],[4.53466726,0.02943759,97.53444201],[4.53466778,0.02943932,97.53557929],[4.5346683,0.02944105,97.53671706],[4.53466882,0.02944277,97.53785531],[4.53466933,0.0294445,97.53899405],[4.53466985,0.02944623,97.54013326],[4.53467037,0.02944795,97.54127293],[4.53467089,0.02944968,97.54241307],[4.53467141,0.02945141,97.54355366],[4.53467193,0.02945314,97.5446947],[4.53467244,0.02945486,97.54583618],[4.53467296,0.02945659,97.5469781],[4.53467348,0.02945832,97.54812044],[4.534674,0.02946005,97.54926321],[4.53467451,0.02946177,97.55040638],[4.53467503,0.0294635,97.55154997],[4.53467555,0.02946523,97.55269396],[4.53467607,0.02946696,97.55383835],[4.53467659,0.02946868,97.55498313],[4.5346771,0.02947041,97.55612829],[4.53467762,0.02947214,97.55727382],[4.53467814,0.02947387,97.55841973],[4.53467865,0.02947559,97.559566],[4.53467917,0.02947732,97.56071263],[4.53467969,0.02947905,97.56185961],[4.53468021,0.02948078,97.56300694],[4.53468072,0.0294825,97.56415461],[4.53468124,0.02948423,97.56530261],[4.53468176,0.02948596,97.56645094],[4.53468227,0.02948769,97.56759959],[4.53468279,0.02948941,97.56874855],[4.5346833,0.02949114,97.56989782],[4.53468382,0.02949287,97.5710474],[4.53468434,0.0294946,97.57219727],[4.53468485,0.02949633,97.57334744],[4.53468537,0.02949805,97.57449788],[4.53468588,0.02949978,97.57564861],[4.5346864,0.02950151,97.57679961],[4.53468691,0.02950324,97.57795088],[4.53468743,0.02950497,97.57910241],[4.53468794,0.0295067,97.58025419],[4.53468846,0.02950842,97.58140623],[4.53468897,0.02951015,97.58255851],[4.53468948,0.02951188,97.58371108],[4.53469,0.02951361,97.58486395],[4.53469051,0.02951534,97.58601718],[4.53469103,0.02951707,97.58717079],[4.53469154,0.02951879,97.58832482],[4.53469205,0.02952052,97.58947931],[4.53469257,0.02952225,97.59063428],[4.53469308,0.02952398,97.59178978],[4.53469359,0.02952571,97.59294584],[4.53469411,0.02952744,97.5941025],[4.53469462,0.02952917,97.59525979],[4.53469513,0.0295309,97.59641774],[4.53469564,0.02953263,97.59757639],[4.53469616,0.02953435,97.59873577],[4.53469667,0.02953608,97.59989592],[4.53469718,0.02953781,97.60105687],[4.5346977,0.02953954,97.60221866],[4.53469821,0.02954127,97.60338131],[4.53469872,0.029543,97.60454483],[4.53469923,0.02954473,97.60570926],[4.53469975,0.02954646,97.60687461],[4.53470026,0.02954818,97.6080409],[4.53470077,0.02954991,97.60920815],[4.53470129,0.02955164,97.61037638],[4.5347018,0.02955337,97.61154561],[4.53470231,0.0295551,97.61271587],[4.53470283,0.02955683,97.61388716],[4.53470334,0.02955856,97.61505952],[4.53470385,0.02956028,97.61623295],[4.53470437,0.02956201,97.61740749],[4.53470488,0.02956374,97.61858315],[4.5347054,0.02956547,97.61975995],[4.53470591,0.0295672,97.62093791],[4.53470642,0.02956893,97.62211704],[4.53470694,0.02957065,97.6232973],[4.53470745,0.02957238,97.62447863],[4.53470797,0.02957411,97.62566099],[4.53470848,0.02957584,97.62684432],[4.534709,0.02957757,97.62802857],[4.53470951,0.0295793,97.6292137],[4.53471003,0.02958102,97.63039963],[4.53471054,0.02958275,97.63158634],[4.53471106,0.02958448,97.63277376],[4.53471157,0.02958621,97.63396184],[4.53471209,0.02958794,97.63515054],[4.5347126,0.02958967,97.63633979],[4.53471311,0.02959139,97.63752956],[4.53471363,0.02959312,97.63871978],[4.53471414,0.02959485,97.63991042],[4.53471465,0.02959658,97.64110141],[4.53471517,0.02959831,97.64229271],[4.53471568,0.02960004,97.64348427],[4.53471619,0.02960177,97.64467608],[4.53471671,0.02960349,97.64586813],[4.53471722,0.02960522,97.64706044],[4.53471773,0.02960695,97.64825299],[4.53471824,0.02960868,97.6494458],[4.53471875,0.02961041,97.65063887],[4.53471926,0.02961214,97.65183219],[4.53471978,0.02961387,97.65302577],[4.53472029,0.0296156,97.65421962],[4.5347208,0.02961733,97.65541373],[4.53472131,0.02961906,97.6566081],[4.53472182,0.02962079,97.65780274],[4.53472233,0.02962252,97.65899764],[4.53472284,0.02962425,97.66019282],[4.53472335,0.02962598,97.66138827],[4.53472386,0.02962771,97.662584],[4.53472437,0.02962944,97.66378],[4.53472488,0.02963116,97.66497628],[4.53472539,0.02963289,97.66617283],[4.5347259,0.02963462,97.66736967],[4.53472641,0.02963635,97.6685668],[4.53472692,0.02963808,97.6697642],[4.53472743,0.02963981,97.6709619],[4.53472793,0.02964154,97.67215988],[4.53472844,0.02964327,97.67335815],[4.53472895,0.029645,97.67455671],[4.53472946,0.02964673,97.67575557],[4.53472997,0.02964846,97.67695472],[4.53473048,0.02965019,97.67815417],[4.53473099,0.02965192,97.67935391],[4.5347315,0.02965365,97.68055396],[4.53473201,0.02965538,97.68175431],[4.53473252,0.02965711,97.68295496],[4.53473303,0.02965884,97.68415591],[4.53473354,0.02966057,97.68535717],[4.53473405,0.0296623,97.68655873],[4.53473456,0.02966403,97.68776061],[4.53473507,0.02966576,97.68896279],[4.53473557,0.02966749,97.69016529],[4.53473608,0.02966922,97.6913681],[4.53473659,0.02967095,97.69257122],[4.5347371,0.02967268,97.69377464],[4.53473761,0.02967441,97.69497831],[4.53473812,0.02967614,97.69618215],[4.53473864,0.02967787,97.69738612],[4.53473915,0.0296796,97.69859016],[4.53473966,0.02968132,97.69979422],[4.53474017,0.02968305,97.70099831],[4.53474068,0.02968478,97.70220246],[4.53474119,0.02968651,97.70340669],[4.5347417,0.02968824,97.70461103],[4.53474221,0.02968997,97.70581549],[4.53474272,0.0296917,97.70702011],[4.53474323,0.02969343,97.70822491],[4.53474374,0.02969516,97.70942991],[4.53474425,0.02969689,97.71063514],[4.53474476,0.02969862,97.71184062],[4.53474528,0.02970035,97.71304637],[4.53474579,0.02970208,97.71425242],[4.5347463,0.02970381,97.7154588],[4.53474681,0.02970553,97.71666553],[4.53474732,0.02970726,97.71787262],[4.53474784,0.02970899,97.71908012],[4.53474835,0.02971072,97.72028803],[4.53474886,0.02971245,97.72149639],[4.53474938,0.02971418,97.72270522],[4.53474989,0.02971591,97.72391454],[4.5347504,0.02971764,97.72512438],[4.53475092,0.02971936,97.72633476],[4.53475143,0.02972109,97.7275457],[4.53475194,0.02972282,97.72875724],[4.53475246,0.02972455,97.72996939],[4.53475297,0.02972628,97.73118217],[4.53475349,0.02972801,97.73239562],[4.534754,0.02972973,97.73360976],[4.53475452,0.02973146,97.73482461],[4.53475503,0.02973319,97.7360402],[4.53475555,0.02973492,97.73725654],[4.53475606,0.02973665,97.73847368],[4.53475658,0.02973837,97.73969162],[4.53475709,0.0297401,97.74091039],[4.53475761,0.02974183,97.74213003],[4.53475813,0.02974356,97.74335055],[4.53475864,0.02974528,97.74457198],[4.53475916,0.02974701,97.74579434],[4.53475968,0.02974874,97.74701766],[4.53476019,0.02975047,97.74824196],[4.53476071,0.02975219,97.74946727],[4.53476123,0.02975392,97.75069362],[4.53476175,0.02975565,97.75192102],[4.53476227,0.02975738,97.75314948],[4.53476278,0.0297591,97.75437896],[4.5347633,0.02976083,97.75560944],[4.53476382,0.02976256,97.75684087],[4.53476434,0.02976428,97.75807324],[4.53476486,0.02976601,97.7593065],[4.53476538,0.02976774,97.76054062],[4.5347659,0.02976947,97.76177558],[4.53476641,0.02977119,97.76301133],[4.53476693,0.02977292,97.76424785],[4.53476745,0.02977465,97.76548511],[4.53476797,0.02977637,97.76672307],[4.53476849,0.0297781,97.7679617],[4.53476901,0.02977983,97.76920096],[4.53476952,0.02978155,97.77044083],[4.53477004,0.02978328,97.77168127],[4.53477056,0.02978501,97.77292225],[4.53477108,0.02978674,97.77416372],[4.5347716,0.02978846,97.77540567],[4.53477211,0.02979019,97.77664806],[4.53477263,0.02979192,97.77789085],[4.53477315,0.02979365,97.77913402],[4.53477366,0.02979537,97.78037758],[4.53477418,0.0297971,97.78162152],[4.53477469,0.02979883,97.78286585],[4.53477521,0.02980056,97.78411058],[4.53477572,0.02980229,97.78535571],[4.53477624,0.02980401,97.78660123],[4.53477675,0.02980574,97.78784717],[4.53477726,0.02980747,97.78909351],[4.53477778,0.0298092,97.79034027],[4.53477829,0.02981093,97.79158745],[4.5347788,0.02981266,97.79283504],[4.53477931,0.02981439,97.79408307],[4.53477983,0.02981612,97.79533154],[4.53478034,0.02981785,97.79658053],[4.53478085,0.02981957,97.79783007],[4.53478136,0.0298213,97.79908023],[4.53478187,0.02982303,97.80033106],[4.53478238,0.02982476,97.8015826],[4.53478289,0.02982649,97.80283493],[4.5347834,0.02982822,97.80408808],[4.53478391,0.02982995,97.80534213],[4.53478441,0.02983168,97.80659711],[4.53478492,0.02983341,97.80785309],[4.53478543,0.02983514,97.80911012],[4.53478594,0.02983687,97.81036826],[4.53478645,0.0298386,97.81162756],[4.53478695,0.02984033,97.81288809],[4.53478746,0.02984207,97.81414989],[4.53478797,0.0298438,97.81541303],[4.53478847,0.02984553,97.81667756],[4.53478898,0.02984726,97.81794355],[4.53478949,0.02984899,97.81921104],[4.53478999,0.02985072,97.8204801],[4.5347905,0.02985245,97.82175078],[4.53479101,0.02985418,97.82302315],[4.53479151,0.02985591,97.82429727],[4.53479202,0.02985764,97.82557319],[4.53479253,0.02985937,97.82685098],[4.53479303,0.0298611,97.82813064],[4.53479354,0.02986283,97.82941216],[4.53479405,0.02986456,97.83069549],[4.53479456,0.02986629,97.83198062],[4.53479506,0.02986802,97.8332675],[4.53479557,0.02986975,97.83455611],[4.53479608,0.02987148,97.83584641],[4.53479659,0.02987321,97.83713838],[4.5347971,0.02987494,97.83843198],[4.53479761,0.02987667,97.83972717],[4.53479811,0.0298784,97.84102394],[4.53479862,0.02988013,97.84232224],[4.53479913,0.02988186,97.84362204],[4.53479964,0.02988359,97.84492331],[4.53480015,0.02988532,97.84622601],[4.53480066,0.02988705,97.84753013],[4.53480117,0.02988878,97.84883561],[4.53480168,0.02989051,97.85014243],[4.53480219,0.02989224,97.85145056],[4.5348027,0.02989397,97.85275995],[4.53480321,0.0298957,97.85407058],[4.53480372,0.02989743,97.85538242],[4.53480423,0.02989916,97.85669542],[4.53480474,0.02990089,97.85800956],[4.53480525,0.02990262,97.85932479],[4.53480576,0.02990435,97.86064109],[4.53480627,0.02990608,97.86195842],[4.53480678,0.02990781,97.86327674],[4.53480729,0.02990954,97.86459601],[4.5348078,0.02991127,97.86591618],[4.53480831,0.029913,97.86723717],[4.53480882,0.02991473,97.86855894],[4.53480933,0.02991646,97.86988143],[4.53480984,0.02991819,97.87120456],[4.53481035,0.02991991,97.87252829],[4.53481086,0.02992164,97.87385256],[4.53481137,0.02992337,97.87517729],[4.53481189,0.0299251,97.87650242],[4.5348124,0.02992683,97.8778279],[4.53481291,0.02992856,97.87915366],[4.53481342,0.02993029,97.88047964],[4.53481393,0.02993202,97.88180577],[4.53481444,0.02993375,97.88313198],[4.53481495,0.02993548,97.88445822],[4.53481546,0.02993721,97.8857844],[4.53481597,0.02993894,97.88711048],[4.53481648,0.02994067,97.88843638],[4.53481698,0.0299424,97.88976207],[4.53481749,0.02994413,97.89108759],[4.534818,0.02994586,97.89241295],[4.53481851,0.02994759,97.89373819],[4.53481902,0.02994932,97.89506332],[4.53481953,0.02995105,97.89638837],[4.53482004,0.02995278,97.89771337],[4.53482055,0.02995451,97.89903834],[4.53482106,0.02995624,97.90036331],[4.53482157,0.02995797,97.9016883],[4.53482207,0.0299597,97.90301334],[4.53482258,0.02996143,97.90433846],[4.53482309,0.02996316,97.90566367],[4.5348236,0.02996489,97.90698902],[4.53482411,0.02996662,97.90831451],[4.53482462,0.02996835,97.90964019],[4.53482513,0.02997008,97.91096608],[4.53482564,0.02997181,97.9122922],[4.53482615,0.02997354,97.91361858],[4.53482666,0.02997527,97.91494526],[4.53482717,0.029977,97.91627224],[4.53482768,0.02997873,97.91759953],[4.53482819,0.02998046,97.91892712],[4.5348287,0.02998219,97.92025502],[4.53482921,0.02998392,97.92158322],[4.53482972,0.02998564,97.92291172],[4.53483023,0.02998737,97.92424053],[4.53483074,0.0299891,97.92556963],[4.53483125,0.02999083,97.92689903],[4.53483176,0.02999256,97.92822873],[4.53483227,0.02999429,97.92955873],[4.53483278,0.02999602,97.93088902],[4.53483329,0.02999775,97.93221962],[4.5348338,0.02999948,97.93355052],[4.53483431,0.03000121,97.93488173],[4.53483482,0.03000294,97.93621323],[4.53483533,0.03000467,97.93754505],[4.53483584,0.0300064,97.93887717],[4.53483636,0.03000813,97.94020961],[4.53483687,0.03000986,97.94154236],[4.53483738,0.03001159,97.94287543],[4.53483789,0.03001332,97.94420882],[4.5348384,0.03001505,97.94554254],[4.53483891,0.03001678,97.94687659],[4.53483942,0.03001851,97.94821098],[4.53483993,0.03002023,97.9495457],[4.53484044,0.03002196,97.95088077],[4.53484095,0.03002369,97.9522162],[4.53484146,0.03002542,97.95355198],[4.53484197,0.03002715,97.95488812],[4.53484248,0.03002888,97.95622464],[4.53484299,0.03003061,97.95756153],[4.5348435,0.03003234,97.95889881],[4.53484401,0.03003407,97.96023646],[4.53484452,0.0300358,97.96157442],[4.53484503,0.03003753,97.96291265],[4.53484554,0.03003926,97.96425111],[4.53484605,0.03004099,97.96558976],[4.53484656,0.03004272,97.96692857],[4.53484707,0.03004445,97.96826749],[4.53484758,0.03004618,97.96960649],[4.53484809,0.03004791,97.97094553],[4.5348486,0.03004964,97.97228457],[4.53484911,0.03005137,97.97362357],[4.53484962,0.0300531,97.9749625],[4.53485013,0.03005483,97.97630131],[4.53485064,0.03005656,97.97763997],[4.53485115,0.03005829,97.97897844],[4.53485166,0.03006002,97.98031667],[4.53485217,0.03006175,97.98165464],[4.53485267,0.03006348,97.9829923],[4.53485318,0.03006521,97.98432961],[4.53485369,0.03006694,97.98566653],[4.5348542,0.03006867,97.98700303],[4.53485471,0.0300704,97.98833906],[4.53485522,0.03007213,97.98967458],[4.53485573,0.03007386,97.99100956],[4.53485624,0.03007559,97.99234395],[4.53485674,0.03007732,97.99367772],[4.53485725,0.03007905,97.99501082],[4.53485776,0.03008078,97.99634321],[4.53485827,0.03008251,97.99767486],[4.53485878,0.03008424,97.99900572],[4.53485929,0.03008597,98.00033575],[4.53485979,0.0300877,98.00166491],[4.5348603,0.03008943,98.00299316],[4.53486081,0.03009116,98.00432046],[4.53486132,0.03009289,98.00564677],[4.53486182,0.03009462,98.00697205],[4.53486233,0.03009635,98.00829625],[4.53486284,0.03009808,98.00961934],[4.53486335,0.03009981,98.01094127],[4.53486385,0.03010154,98.01226201],[4.53486436,0.03010327,98.0135815],[4.53486487,0.030105,98.01489971],[4.53486538,0.03010673,98.0162166],[4.53486588,0.03010846,98.01753213],[4.53486639,0.03011019,98.01884626],[4.5348669,0.03011192,98.02015898],[4.5348674,0.03011365,98.02147026],[4.53486791,0.03011539,98.02278007],[4.53486842,0.03011712,98.02408838],[4.53486892,0.03011885,98.02539518],[4.53486943,0.03012058,98.02670044],[4.53486993,0.03012231,98.02800413],[4.53487044,0.03012404,98.02930622],[4.53487095,0.03012577,98.0306067],[4.53487145,0.0301275,98.03190553],[4.53487196,0.03012923,98.0332027],[4.53487246,0.03013096,98.03449817],[4.53487297,0.03013269,98.03579192],[4.53487348,0.03013442,98.03708392],[4.53487398,0.03013615,98.03837416],[4.53487449,0.03013789,98.0396626],[4.53487499,0.03013962,98.04094923],[4.5348755,0.03014135,98.04223401],[4.534876,0.03014308,98.04351692],[4.53487651,0.03014481,98.04479794],[4.53487702,0.03014654,98.04607703],[4.53487752,0.03014827,98.04735419],[4.53487803,0.03015,98.04862937],[4.53487853,0.03015173,98.04990257],[4.53487904,0.03015346,98.05117374],[4.53487954,0.0301552,98.0524429],[4.53488005,0.03015693,98.05371007],[4.53488055,0.03015866,98.05497525],[4.53488106,0.03016039,98.05623846],[4.53488156,0.03016212,98.05749971],[4.53488207,0.03016385,98.05875903],[4.53488258,0.03016558,98.06001642],[4.53488308,0.03016731,98.06127189],[4.53488359,0.03016904,98.06252547],[4.53488409,0.03017077,98.06377717],[4.5348846,0.03017251,98.06502698],[4.5348851,0.03017424,98.06627493],[4.53488561,0.03017597,98.06752103],[4.53488611,0.0301777,98.06876528],[4.53488662,0.03017943,98.0700077],[4.53488712,0.03018116,98.07124829],[4.53488763,0.03018289,98.07248708],[4.53488813,0.03018462,98.07372406],[4.53488864,0.03018635,98.07495925],[4.53488914,0.03018809,98.07619266],[4.53488965,0.03018982,98.0774243],[4.53489015,0.03019155,98.07865418],[4.53489066,0.03019328,98.07988232],[4.53489116,0.03019501,98.08110871],[4.53489167,0.03019674,98.08233338],[4.53489217,0.03019847,98.08355634],[4.53489268,0.0302002,98.08477758],[4.53489319,0.03020193,98.08599713],[4.53489369,0.03020367,98.087215],[4.5348942,0.0302054,98.08843119],[4.5348947,0.03020713,98.08964572],[4.53489521,0.03020886,98.0908586],[4.53489571,0.03021059,98.09206983],[4.53489622,0.03021232,98.09327943],[4.53489672,0.03021405,98.09448741],[4.53489723,0.03021578,98.09569378],[4.53489773,0.03021751,98.09689855],[4.53489824,0.03021924,98.09810173],[4.53489874,0.03022098,98.09930333],[4.53489925,0.03022271,98.10050336],[4.53489976,0.03022444,98.10170183],[4.53490026,0.03022617,98.10289875],[4.53490077,0.0302279,98.10409414],[4.53490127,0.03022963,98.105288],[4.53490178,0.03023136,98.10648034],[4.53490228,0.03023309,98.10767118],[4.53490279,0.03023482,98.10886052],[4.53490329,0.03023655,98.11004838],[4.5349038,0.03023829,98.11123476],[4.53490431,0.03024002,98.11241968],[4.53490481,0.03024175,98.11360314],[4.53490532,0.03024348,98.11478516],[4.53490582,0.03024521,98.11596575],[4.53490633,0.03024694,98.11714492],[4.53490683,0.03024867,98.11832267],[4.53490734,0.0302504,98.11949903],[4.53490785,0.03025213,98.12067399],[4.53490835,0.03025386,98.12184757],[4.53490886,0.03025559,98.12301978],[4.53490936,0.03025732,98.12419063],[4.53490987,0.03025906,98.12536013],[4.53491038,0.03026079,98.1265283],[4.53491088,0.03026252,98.12769513],[4.53491139,0.03026425,98.12886065],[4.5349119,0.03026598,98.13002486],[4.5349124,0.03026771,98.13118777],[4.53491291,0.03026944,98.1323494],[4.53491341,0.03027117,98.13350975],[4.53491392,0.0302729,98.13466883],[4.53491443,0.03027463,98.13582666],[4.53491493,0.03027636,98.13698324],[4.53491544,0.03027809,98.13813859],[4.53491595,0.03027982,98.13929271],[4.53491645,0.03028156,98.14044562],[4.53491696,0.03028329,98.14159732],[4.53491747,0.03028502,98.14274781],[4.53491797,0.03028675,98.14389711],[4.53491848,0.03028848,98.14504522],[4.53491899,0.03029021,98.14619215],[4.5349195,0.03029194,98.14733791],[4.53492,0.03029367,98.1484825],[4.53492051,0.0302954,98.14962594],[4.53492102,0.03029713,98.15076822],[4.53492152,0.03029886,98.15190936],[4.53492203,0.03030059,98.15304936],[4.53492254,0.03030232,98.15418823],[4.53492305,0.03030405,98.15532598],[4.53492355,0.03030578,98.15646262],[4.53492406,0.03030751,98.15759815],[4.53492457,0.03030924,98.15873258],[4.53492508,0.03031097,98.15986592],[4.53492558,0.0303127,98.16099818],[4.53492609,0.03031443,98.16212936],[4.5349266,0.03031616,98.16325947],[4.53492711,0.0303179,98.16438852],[4.53492761,0.03031963,98.16551651],[4.53492812,0.03032136,98.16664346],[4.53492863,0.03032309,98.16776937],[4.53492914,0.03032482,98.16889425],[4.53492965,0.03032655,98.17001811],[4.53493015,0.03032828,98.17114095],[4.53493066,0.03033001,98.17226279],[4.53493117,0.03033174,98.17338362],[4.53493168,0.03033347,98.17450347],[4.53493219,0.0303352,98.17562233],[4.5349327,0.03033693,98.17674021],[4.5349332,0.03033866,98.17785712],[4.53493371,0.03034039,98.17897308],[4.53493422,0.03034212,98.18008808],[4.53493473,0.03034385,98.18120214],[4.53493524,0.03034558,98.18231526],[4.53493575,0.03034731,98.18342745],[4.53493625,0.03034904,98.18453873],[4.53493676,0.03035077,98.18564909],[4.53493727,0.0303525,98.18675854],[4.53493778,0.03035423,98.1878671],[4.53493829,0.03035596,98.18897478],[4.5349388,0.03035769,98.19008156],[4.5349393,0.03035942,98.19118747],[4.53493981,0.03036115,98.1922925],[4.53494032,0.03036288,98.19339667],[4.53494083,0.03036461,98.1945],[4.53494134,0.03036634,98.1956025],[4.53494184,0.03036807,98.19670418],[4.53494235,0.0303698,98.19780506],[4.53494286,0.03037153,98.19890516],[4.53494337,0.03037326,98.20000448],[4.53494388,0.03037499,98.20110306],[4.53494438,0.03037672,98.20220089],[4.53494489,0.03037845,98.203298],[4.5349454,0.03038018,98.2043944],[4.53494591,0.03038191,98.20549011],[4.53494641,0.03038364,98.20658514],[4.53494692,0.03038537,98.2076795],[4.53494743,0.0303871,98.20877321],[4.53494794,0.03038884,98.20986629],[4.53494844,0.03039057,98.21095875],[4.53494895,0.0303923,98.21205061],[4.53494946,0.03039403,98.21314188],[4.53494997,0.03039576,98.21423257],[4.53495047,0.03039749,98.2153227],[4.53495098,0.03039922,98.21641229],[4.53495149,0.03040095,98.21750135],[4.534952,0.03040268,98.21858989],[4.5349525,0.03040441,98.21967793],[4.53495301,0.03040614,98.22076548],[4.53495352,0.03040787,98.22185257],[4.53495402,0.0304096,98.22293919],[4.53495453,0.03041133,98.22402538],[4.53495504,0.03041306,98.22511113],[4.53495554,0.03041479,98.22619648],[4.53495605,0.03041652,98.22728142],[4.53495656,0.03041826,98.22836598],[4.53495706,0.03041999,98.22945018],[4.53495757,0.03042172,98.23053402],[4.53495807,0.03042345,98.23161754],[4.53495858,0.03042518,98.23270073],[4.53495909,0.03042691,98.23378362],[4.53495959,0.03042864,98.23486623],[4.5349601,0.03043037,98.23594856],[4.5349606,0.0304321,98.23703064],[4.53496111,0.03043383,98.23811249],[4.53496161,0.03043556,98.23919411],[4.53496212,0.0304373,98.24027553],[4.53496262,0.03043903,98.24135676],[4.53496313,0.03044076,98.24243782],[4.53496363,0.03044249,98.24351872],[4.53496414,0.03044422,98.24459947],[4.53496464,0.03044595,98.2456801],[4.53496515,0.03044768,98.24676062],[4.53496565,0.03044941,98.24784105],[4.53496616,0.03045114,98.2489214],[4.53496666,0.03045288,98.25000168],[4.53496717,0.03045461,98.25108192],[4.53496767,0.03045634,98.25216213],[4.53496818,0.03045807,98.25324232],[4.53496868,0.0304598,98.25432251],[4.53496918,0.03046153,98.25540271],[4.53496969,0.03046326,98.25648295],[4.53497019,0.030465,98.25756323],[4.5349707,0.03046673,98.25864358],[4.5349712,0.03046846,98.259724],[4.5349717,0.03047019,98.26080452],[4.53497221,0.03047192,98.26188516],[4.53497271,0.03047365,98.26296594],[4.53497321,0.03047539,98.26404686],[4.53497371,0.03047712,98.26512795],[4.53497422,0.03047885,98.26620923],[4.53497472,0.03048058,98.26729071],[4.53497522,0.03048231,98.26837242],[4.53497573,0.03048405,98.26945437],[4.53497623,0.03048578,98.27053657],[4.53497673,0.03048751,98.27161905],[4.53497723,0.03048924,98.27270182],[4.53497774,0.03049097,98.27378489],[4.53497824,0.03049271,98.2748683],[4.53497874,0.03049444,98.27595205],[4.53497924,0.03049617,98.27703616],[4.53497974,0.0304979,98.27812066],[4.53498025,0.03049963,98.27920554],[4.53498075,0.03050137,98.28029084],[4.53498125,0.0305031,98.28137657],[4.53498175,0.03050483,98.28246275],[4.53498225,0.03050656,98.2835494],[4.53498275,0.03050829,98.28463652],[4.53498325,0.03051003,98.28572416],[4.53498376,0.03051176,98.28681233],[4.53498426,0.03051349,98.28790107],[4.53498476,0.03051522,98.28899041],[4.53498526,0.03051696,98.29008037],[4.53498576,0.03051869,98.291171],[4.53498626,0.03052042,98.2922623],[4.53498676,0.03052215,98.29335433],[4.53498726,0.03052389,98.29444709],[4.53498776,0.03052562,98.29554063],[4.53498827,0.03052735,98.29663497],[4.53498877,0.03052908,98.29773014],[4.53498927,0.03053081,98.29882617],[4.53498977,0.03053255,98.29992309],[4.53499027,0.03053428,98.30102093],[4.53499077,0.03053601,98.3021197],[4.53499127,0.03053774,98.30321945],[4.53499177,0.03053948,98.3043202],[4.53499227,0.03054121,98.30542198],[4.53499277,0.03054294,98.30652481],[4.53499328,0.03054467,98.30762864],[4.53499378,0.0305464,98.30873346],[4.53499428,0.03054813,98.30983922],[4.53499478,0.03054986,98.31094588],[4.53499528,0.0305516,98.31205341],[4.53499578,0.03055333,98.31316177],[4.53499628,0.03055506,98.31427092],[4.53499679,0.03055679,98.31538083],[4.53499729,0.03055852,98.31649146],[4.53499779,0.03056026,98.31760278],[4.53499829,0.03056199,98.31871475],[4.5349988,0.03056372,98.31982733],[4.5349993,0.03056545,98.3209405],[4.5349998,0.03056718,98.32205421],[4.5350003,0.03056892,98.32316843],[4.5350008,0.03057065,98.32428314],[4.53500131,0.03057238,98.32539828],[4.53500181,0.03057411,98.32651384],[4.53500231,0.03057584,98.32762977],[4.53500281,0.03057758,98.32874604],[4.53500332,0.03057931,98.32986262],[4.53500382,0.03058104,98.33097948],[4.53500432,0.03058277,98.33209658],[4.53500482,0.0305845,98.33321389],[4.53500533,0.03058624,98.33433138],[4.53500583,0.03058797,98.33544902],[4.53500633,0.0305897,98.33656677],[4.53500683,0.03059143,98.3376846],[4.53500734,0.03059316,98.33880248],[4.53500784,0.0305949,98.33992038],[4.53500834,0.03059663,98.34103826],[4.53500884,0.03059836,98.3421561],[4.53500935,0.03060009,98.34327386],[4.53500985,0.03060182,98.34439151],[4.53501035,0.03060356,98.34550902],[4.53501085,0.03060529,98.34662636],[4.53501135,0.03060702,98.3477435],[4.53501186,0.03060875,98.34886041],[4.53501236,0.03061049,98.34997705],[4.53501286,0.03061222,98.3510934],[4.53501336,0.03061395,98.35220943],[4.53501386,0.03061568,98.35332513],[4.53501436,0.03061741,98.35444055],[4.53501487,0.03061915,98.35555572],[4.53501537,0.03062088,98.35667067],[4.53501587,0.03062261,98.35778544],[4.53501637,0.03062434,98.35890006],[4.53501687,0.03062607,98.36001457],[4.53501737,0.03062781,98.361129],[4.53501788,0.03062954,98.36224338],[4.53501838,0.03063127,98.36335775],[4.53501888,0.030633,98.36447215],[4.53501938,0.03063474,98.3655866],[4.53501988,0.03063647,98.36670114],[4.53502039,0.0306382,98.36781581],[4.53502089,0.03063993,98.36893061],[4.53502139,0.03064166,98.37004558],[4.53502189,0.0306434,98.37116073],[4.5350224,0.03064513,98.37227607],[4.5350229,0.03064686,98.37339163],[4.5350234,0.03064859,98.37450741],[4.5350239,0.03065032,98.37562345],[4.53502441,0.03065205,98.37673975],[4.53502491,0.03065379,98.37785634],[4.53502541,0.03065552,98.37897323],[4.53502592,0.03065725,98.38009042],[4.53502642,0.03065898,98.38120795],[4.53502692,0.03066071,98.38232583],[4.53502743,0.03066245,98.38344407],[4.53502793,0.03066418,98.38456268],[4.53502843,0.03066591,98.38568168],[4.53502894,0.03066764,98.38680109],[4.53502944,0.03066937,98.38792093],[4.53502994,0.0306711,98.3890412],[4.53503045,0.03067284,98.39016192],[4.53503095,0.03067457,98.39128311],[4.53503145,0.0306763,98.39240478],[4.53503196,0.03067803,98.39352695],[4.53503246,0.03067976,98.39464963],[4.53503296,0.03068149,98.39577283],[4.53503347,0.03068323,98.39689658],[4.53503397,0.03068496,98.39802088],[4.53503448,0.03068669,98.39914575],[4.53503498,0.03068842,98.40027121],[4.53503548,0.03069015,98.40139726],[4.53503599,0.03069188,98.40252393],[4.53503649,0.03069361,98.40365123],[4.535037,0.03069535,98.40477917],[4.5350375,0.03069708,98.40590777],[4.535038,0.03069881,98.40703704],[4.53503851,0.03070054,98.408167],[4.53503901,0.03070227,98.40929765],[4.53503952,0.030704,98.41042902],[4.53504002,0.03070573,98.41156113],[4.53504052,0.03070747,98.41269397],[4.53504103,0.0307092,98.41382757],[4.53504153,0.03071093,98.41496195],[4.53504204,0.03071266,98.41609711],[4.53504254,0.03071439,98.41723307],[4.53504304,0.03071612,98.41836985],[4.53504355,0.03071786,98.41950745],[4.53504405,0.03071959,98.4206459],[4.53504456,0.03072132,98.42178521],[4.53504506,0.03072305,98.42292539],[4.53504556,0.03072478,98.42406646],[4.53504607,0.03072651,98.42520842],[4.53504657,0.03072824,98.42635131],[4.53504708,0.03072998,98.42749512],[4.53504758,0.03073171,98.42863987],[4.53504808,0.03073344,98.42978559],[4.53504859,0.03073517,98.43093227],[4.53504909,0.0307369,98.43207995],[4.5350496,0.03073863,98.4332286],[4.5350501,0.03074036,98.43437822],[4.53505061,0.0307421,98.43552878],[4.53505111,0.03074383,98.43668027],[4.53505162,0.03074556,98.43783266],[4.53505212,0.03074729,98.43898593],[4.53505263,0.03074902,98.44014007],[4.53505313,0.03075075,98.44129505],[4.53505364,0.03075248,98.44245086],[4.53505414,0.03075421,98.44360746],[4.53505465,0.03075595,98.44476486],[4.53505515,0.03075768,98.44592302],[4.53505566,0.03075941,98.44708192],[4.53505616,0.03076114,98.44824155],[4.53505667,0.03076287,98.44940188],[4.53505717,0.0307646,98.4505629],[4.53505768,0.03076633,98.45172459],[4.53505818,0.03076806,98.45288692],[4.53505869,0.03076979,98.45404988],[4.5350592,0.03077152,98.45521345],[4.5350597,0.03077326,98.45637761],[4.53506021,0.03077499,98.45754234],[4.53506071,0.03077672,98.45870762],[4.53506122,0.03077845,98.45987343],[4.53506172,0.03078018,98.46103974],[4.53506223,0.03078191,98.46220656],[4.53506273,0.03078364,98.46337384],[4.53506324,0.03078537,98.46454158],[4.53506374,0.0307871,98.46570975],[4.53506425,0.03078884,98.46687833],[4.53506476,0.03079057,98.46804732],[4.53506526,0.0307923,98.46921667],[4.53506577,0.03079403,98.47038639],[4.53506627,0.03079576,98.47155644],[4.53506678,0.03079749,98.4727268],[4.53506728,0.03079922,98.47389746],[4.53506779,0.03080095,98.47506839],[4.53506829,0.03080268,98.47623956],[4.5350688,0.03080442,98.47741097],[4.5350693,0.03080615,98.47858257],[4.53506981,0.03080788,98.47975436],[4.53507031,0.03080961,98.48092631],[4.53507081,0.03081134,98.4820984],[4.53507132,0.03081307,98.48327064],[4.53507182,0.0308148,98.48444302],[4.53507233,0.03081654,98.48561556],[4.53507283,0.03081827,98.48678826],[4.53507334,0.03082,98.48796112],[4.53507384,0.03082173,98.48913416],[4.53507434,0.03082346,98.49030737],[4.53507485,0.03082519,98.49148076],[4.53507535,0.03082692,98.49265434],[4.53507585,0.03082866,98.49382811],[4.53507636,0.03083039,98.49500208],[4.53507686,0.03083212,98.49617625],[4.53507736,0.03083385,98.49735064],[4.53507787,0.03083558,98.49852524],[4.53507837,0.03083732,98.49970005],[4.53507887,0.03083905,98.5008751],[4.53507938,0.03084078,98.50205037],[4.53507988,0.03084251,98.50322588],[4.53508038,0.03084424,98.50440163],[4.53508088,0.03084597,98.50557763],[4.53508138,0.03084771,98.50675389],[4.53508189,0.03084944,98.5079304],[4.53508239,0.03085117,98.50910717],[4.53508289,0.0308529,98.51028421],[4.53508339,0.03085464,98.51146153],[4.53508389,0.03085637,98.51263913],[4.53508439,0.0308581,98.51381701],[4.53508489,0.03085983,98.51499519],[4.53508539,0.03086157,98.51617366],[4.53508589,0.0308633,98.51735243],[4.53508639,0.03086503,98.51853152],[4.53508689,0.03086676,98.51971091],[4.53508739,0.0308685,98.52089062],[4.53508789,0.03087023,98.52207066],[4.53508839,0.03087196,98.52325102],[4.53508889,0.03087369,98.52443173],[4.53508939,0.03087543,98.52561277],[4.53508989,0.03087716,98.5267942],[4.53509039,0.03087889,98.52797606],[4.53509089,0.03088063,98.52915841],[4.53509139,0.03088236,98.5303413],[4.53509188,0.03088409,98.53152478],[4.53509238,0.03088583,98.53270891],[4.53509288,0.03088756,98.53389374],[4.53509338,0.03088929,98.53507933],[4.53509388,0.03089103,98.53626572],[4.53509437,0.03089276,98.53745296],[4.53509487,0.03089449,98.53864108],[4.53509537,0.03089623,98.53983004],[4.53509587,0.03089796,98.54101981],[4.53509636,0.03089969,98.54221035],[4.53509686,0.03090143,98.54340163],[4.53509736,0.03090316,98.54459363],[4.53509786,0.03090489,98.54578629],[4.53509836,0.03090663,98.54697961],[4.53509885,0.03090836,98.54817353],[4.53509935,0.03091009,98.54936803],[4.53509985,0.03091183,98.55056307],[4.53510035,0.03091356,98.55175863],[4.53510085,0.03091529,98.55295467],[4.53510134,0.03091703,98.55415115],[4.53510184,0.03091876,98.55534804],[4.53510234,0.03092049,98.55654531],[4.53510284,0.03092223,98.55774293],[4.53510334,0.03092396,98.55894085],[4.53510384,0.03092569,98.56013906],[4.53510433,0.03092742,98.56133751],[4.53510483,0.03092916,98.56253617],[4.53510533,0.03093089,98.563735],[4.53510583,0.03093262,98.56493398],[4.53510633,0.03093436,98.56613307],[4.53510683,0.03093609,98.56733223],[4.53510733,0.03093782,98.56853143],[4.53510783,0.03093955,98.56973064],[4.53510833,0.03094129,98.57092982],[4.53510883,0.03094302,98.57212893],[4.53510933,0.03094475,98.57332794],[4.53510983,0.03094648,98.57452683],[4.53511034,0.03094822,98.57572554],[4.53511084,0.03094995,98.57692405],[4.53511134,0.03095168,98.57812233],[4.53511184,0.03095341,98.57932032],[4.53511234,0.03095514,98.58051801],[4.53511284,0.03095688,98.58171536],[4.53511335,0.03095861,98.58291233],[4.53511385,0.03096034,98.58410888],[4.53511435,0.03096207,98.58530497],[4.53511485,0.0309638,98.58650052],[4.53511536,0.03096554,98.58769543],[4.53511586,0.03096727,98.58888972],[4.53511636,0.030969,98.59008342],[4.53511687,0.03097073,98.59127657],[4.53511737,0.03097246,98.5924692],[4.53511787,0.0309742,98.59366134],[4.53511837,0.03097593,98.59485304],[4.53511888,0.03097766,98.59604433],[4.53511938,0.03097939,98.59723523],[4.53511988,0.03098112,98.5984258],[4.53512039,0.03098285,98.59961606],[4.53512089,0.03098459,98.60080605],[4.53512139,0.03098632,98.6019958],[4.5351219,0.03098805,98.60318536],[4.5351224,0.03098978,98.60437476],[4.5351229,0.03099151,98.60556402],[4.53512341,0.03099325,98.60675321],[4.53512391,0.03099498,98.60794233],[4.53512441,0.03099671,98.60913144],[4.53512492,0.03099844,98.61032058],[4.53512542,0.03100017,98.61150977],[4.53512592,0.0310019,98.61269905],[4.53512643,0.03100363,98.61388847],[4.53512693,0.03100537,98.61507805],[4.53512743,0.0310071,98.61626784],[4.53512794,0.03100883,98.61745788],[4.53512844,0.03101056,98.6186482],[4.53512895,0.03101229,98.61983883],[4.53512945,0.03101402,98.62102983],[4.53512996,0.03101575,98.62222122],[4.53513046,0.03101749,98.62341304],[4.53513097,0.03101922,98.62460534],[4.53513147,0.03102095,98.62579815],[4.53513198,0.03102268,98.62699151],[4.53513248,0.03102441,98.62818545],[4.53513299,0.03102614,98.62938003],[4.53513349,0.03102787,98.63057527],[4.535134,0.0310296,98.63177122],[4.5351345,0.03103134,98.63296791],[4.53513501,0.03103307,98.63416539],[4.53513551,0.0310348,98.63536369],[4.53513602,0.03103653,98.63656286],[4.53513653,0.03103826,98.63776293],[4.53513703,0.03103999,98.63896395],[4.53513754,0.03104172,98.64016592],[4.53513805,0.03104345,98.64136882],[4.53513855,0.03104518,98.64257263],[4.53513906,0.03104691,98.64377733],[4.53513957,0.03104864,98.64498289],[4.53514008,0.03105037,98.64618928],[4.53514058,0.0310521,98.64739649],[4.53514109,0.03105383,98.64860449],[4.5351416,0.03105556,98.64981325],[4.5351421,0.0310573,98.65102276],[4.53514261,0.03105903,98.65223299],[4.53514312,0.03106076,98.65344391],[4.53514363,0.03106249,98.6546555],[4.53514413,0.03106422,98.65586774],[4.53514464,0.03106595,98.6570806],[4.53514514,0.03106768,98.65829406],[4.53514565,0.03106941,98.65950809],[4.53514616,0.03107114,98.66072267],[4.53514666,0.03107287,98.66193777],[4.53514717,0.0310746,98.66315338],[4.53514767,0.03107633,98.66436945],[4.53514818,0.03107807,98.66558598],[4.53514868,0.0310798,98.66680293],[4.53514919,0.03108153,98.66802028],[4.53514969,0.03108326,98.66923801],[4.53515019,0.03108499,98.67045615],[4.5351507,0.03108672,98.67167478],[4.5351512,0.03108846,98.67289394],[4.5351517,0.03109019,98.67411371],[4.5351522,0.03109192,98.67533414],[4.53515271,0.03109365,98.67655531],[4.53515321,0.03109538,98.67777727],[4.53515371,0.03109712,98.67900009],[4.53515421,0.03109885,98.68022381],[4.53515471,0.03110058,98.68144841],[4.53515521,0.03110231,98.68267384],[4.53515571,0.03110405,98.68390006],[4.53515621,0.03110578,98.68512703],[4.53515671,0.03110751,98.68635468],[4.53515722,0.03110924,98.68758299],[4.53515772,0.03111098,98.68881189],[4.53515822,0.03111271,98.69004135],[4.53515872,0.03111444,98.69127132],[4.53515922,0.03111617,98.69250175],[4.53515972,0.03111791,98.6937326],[4.53516022,0.03111964,98.69496381],[4.53516071,0.03112137,98.69619534],[4.53516121,0.0311231,98.69742714],[4.53516171,0.03112484,98.69865917],[4.53516221,0.03112657,98.69989137],[4.53516271,0.0311283,98.7011237],[4.53516321,0.03113004,98.70235611],[4.53516371,0.03113177,98.70358854],[4.53516421,0.0311335,98.70482096],[4.5351647,0.03113524,98.70605331],[4.5351652,0.03113697,98.70728554],[4.5351657,0.0311387,98.7085176],[4.5351662,0.03114044,98.70974947],[4.5351667,0.03114217,98.71098115],[4.53516719,0.0311439,98.71221262],[4.53516769,0.03114564,98.71344389],[4.53516819,0.03114737,98.71467496],[4.53516868,0.0311491,98.71590581],[4.53516918,0.03115084,98.71713646],[4.53516968,0.03115257,98.71836689],[4.53517017,0.0311543,98.71959709],[4.53517067,0.03115604,98.72082708],[4.53517117,0.03115777,98.72205684],[4.53517166,0.03115951,98.72328638],[4.53517216,0.03116124,98.72451568],[4.53517266,0.03116297,98.72574474],[4.53517315,0.03116471,98.72697357],[4.53517365,0.03116644,98.72820209],[4.53517414,0.03116817,98.72943023],[4.53517464,0.03116991,98.73065792],[4.53517514,0.03117164,98.73188506],[4.53517563,0.03117338,98.73311158],[4.53517613,0.03117511,98.7343374],[4.53517663,0.03117684,98.73556243],[4.53517712,0.03117858,98.73678659],[4.53517762,0.03118031,98.73800981],[4.53517812,0.03118204,98.73923201],[4.53517861,0.03118378,98.74045321],[4.53517911,0.03118551,98.74167343],[4.5351796,0.03118725,98.74289272],[4.5351801,0.03118898,98.7441111],[4.5351806,0.03119071,98.74532859],[4.53518109,0.03119245,98.74654524],[4.53518159,0.03119418,98.74776108],[4.53518208,0.03119592,98.74897613],[4.53518258,0.03119765,98.75019042],[4.53518308,0.03119938,98.75140399],[4.53518357,0.03120112,98.75261688],[4.53518407,0.03120285,98.7538291],[4.53518457,0.03120458,98.75504071],[4.53518506,0.03120632,98.75625171],[4.53518556,0.03120805,98.75746216],[4.53518606,0.03120978,98.75867208],[4.53518656,0.03121152,98.75988151],[4.53518706,0.03121325,98.76109047],[4.53518756,0.03121498,98.762299],[4.53518806,0.03121672,98.76350714],[4.53518856,0.03121845,98.76471491],[4.53518905,0.03122018,98.76592236],[4.53518955,0.03122191,98.76712951],[4.53519005,0.03122365,98.7683364],[4.53519055,0.03122538,98.76954306],[4.53519105,0.03122711,98.77074952],[4.53519155,0.03122884,98.77195583],[4.53519205,0.03123058,98.77316201],[4.53519255,0.03123231,98.7743681],[4.53519305,0.03123404,98.77557414],[4.53519356,0.03123577,98.77678015],[4.53519406,0.03123751,98.77798618],[4.53519456,0.03123924,98.77919225],[4.53519506,0.03124097,98.78039841],[4.53519556,0.0312427,98.78160469],[4.53519606,0.03124444,98.78281112],[4.53519656,0.03124617,98.78401774],[4.53519706,0.0312479,98.78522459],[4.53519756,0.03124964,98.7864317],[4.53519806,0.03125137,98.78763911],[4.53519856,0.0312531,98.78884685],[4.53519906,0.03125483,98.79005496],[4.53519956,0.03125657,98.79126348],[4.53520006,0.0312583,98.79247245],[4.53520056,0.03126003,98.79368189],[4.53520105,0.03126177,98.79489185],[4.53520155,0.0312635,98.79610237],[4.53520205,0.03126523,98.79731354],[4.53520255,0.03126696,98.79852543],[4.53520305,0.0312687,98.79973813],[4.53520355,0.03127043,98.8009517],[4.53520404,0.03127216,98.80216624],[4.53520454,0.0312739,98.80338181],[4.53520504,0.03127563,98.80459851],[4.53520554,0.03127736,98.80581641],[4.53520603,0.0312791,98.8070356],[4.53520653,0.03128083,98.80825615],[4.53520703,0.03128256,98.80947815],[4.53520752,0.0312843,98.81070167],[4.53520802,0.03128603,98.8119268],[4.53520852,0.03128777,98.81315363],[4.53520902,0.0312895,98.81438223],[4.53520952,0.03129123,98.81561269],[4.53521001,0.03129296,98.81684509],[4.53521051,0.0312947,98.81807949],[4.53521101,0.03129643,98.81931581],[4.53521151,0.03129816,98.82055396],[4.53521201,0.0312999,98.82179385],[4.53521251,0.03130163,98.82303536],[4.53521301,0.03130336,98.82427841],[4.53521351,0.0313051,98.8255229],[4.53521401,0.03130683,98.82676872],[4.53521451,0.03130856,98.82801577],[4.53521501,0.03131029,98.82926396],[4.53521551,0.03131203,98.83051318],[4.53521601,0.03131376,98.83176334],[4.53521651,0.03131549,98.83301433],[4.53521701,0.03131722,98.83426604],[4.53521751,0.03131896,98.83551838],[4.53521801,0.03132069,98.83677125],[4.53521851,0.03132242,98.83802454],[4.53521901,0.03132416,98.83927815],[4.5352195,0.03132589,98.84053197],[4.53522,0.03132762,98.8417859],[4.5352205,0.03132935,98.84303984],[4.535221,0.03133109,98.84429368],[4.5352215,0.03133282,98.84554732],[4.53522199,0.03133455,98.84680066],[4.53522249,0.03133629,98.84805358],[4.53522299,0.03133802,98.84930606],[4.53522348,0.03133976,98.85055812],[4.53522398,0.03134149,98.85180981],[4.53522448,0.03134322,98.85306117],[4.53522497,0.03134496,98.85431222],[4.53522547,0.03134669,98.85556302],[4.53522596,0.03134843,98.85681359],[4.53522646,0.03135016,98.85806397],[4.53522695,0.03135189,98.8593142],[4.53522744,0.03135363,98.86056432],[4.53522794,0.03135536,98.86181437],[4.53522843,0.0313571,98.86306438],[4.53522892,0.03135883,98.86431439],[4.53522942,0.03136057,98.86556445],[4.53522991,0.0313623,98.86681459],[4.5352304,0.03136404,98.86806485],[4.5352309,0.03136577,98.86931526],[4.53523139,0.03136751,98.87056587],[4.53523188,0.03136924,98.87181672],[4.53523238,0.03137097,98.87306784],[4.53523287,0.03137271,98.87431927],[4.53523336,0.03137444,98.87557106],[4.53523386,0.03137618,98.87682324],[4.53523435,0.03137791,98.87807585],[4.53523484,0.03137965,98.87932893],[4.53523534,0.03138138,98.88058252],[4.53523583,0.03138312,98.88183662],[4.53523632,0.03138485,98.88309126],[4.53523682,0.03138659,98.88434645],[4.53523731,0.03138832,98.8856022],[4.53523781,0.03139005,98.88685853],[4.5352383,0.03139179,98.88811545],[4.5352388,0.03139352,98.88937298],[4.53523929,0.03139526,98.89063114],[4.53523979,0.03139699,98.89188993],[4.53524028,0.03139873,98.89314937],[4.53524078,0.03140046,98.89440949],[4.53524127,0.03140219,98.89567028],[4.53524177,0.03140393,98.89693178],[4.53524227,0.03140566,98.89819398],[4.53524277,0.03140739,98.89945691],[4.53524326,0.03140913,98.9007204],[4.53524376,0.03141086,98.90198415],[4.53524426,0.03141259,98.90324784],[4.53524476,0.03141433,98.90451114],[4.53524526,0.03141606,98.90577373],[4.53524576,0.03141779,98.90703529],[4.53524626,0.03141952,98.90829549],[4.53524676,0.03142126,98.90955401],[4.53524725,0.03142299,98.91081052],[4.53524775,0.03142472,98.9120647],[4.53524825,0.03142646,98.91331622],[4.53524875,0.03142819,98.91456476],[4.53524925,0.03142992,98.91580998],[4.53524974,0.03143166,98.91705156],[4.53525024,0.03143339,98.91828918],[4.53525073,0.03143513,98.91952281],[4.53525123,0.03143686,98.92075269],[4.53525172,0.03143859,98.92197909],[4.53525221,0.03144033,98.92320227],[4.53525271,0.03144206,98.9244225],[4.5352532,0.0314438,98.92564004],[4.53525369,0.03144553,98.92685516],[4.53525418,0.03144727,98.92806811],[4.53525468,0.031449,98.92927918],[4.53525517,0.03145074,98.93048862],[4.53525566,0.03145247,98.9316967],[4.53525615,0.03145421,98.93290369],[4.53525664,0.03145594,98.93410986],[4.53525714,0.03145768,98.93531548],[4.53525763,0.03145941,98.93652081],[4.53525812,0.03146115,98.93772614],[4.53525862,0.03146288,98.93893173],[4.53525911,0.03146462,98.94013786],[4.5352596,0.03146635,98.9413448],[4.5352601,0.03146809,98.94255278],[4.53526059,0.03146982,98.94376181],[4.53526109,0.03147155,98.94497185],[4.53526159,0.03147329,98.94618287],[4.53526208,0.03147502,98.94739482],[4.53526258,0.03147675,98.94860766],[4.53526308,0.03147849,98.94982136],[4.53526358,0.03148022,98.95103588],[4.53526408,0.03148195,98.95225117],[4.53526458,0.03148369,98.95346719],[4.53526508,0.03148542,98.95468392],[4.53526558,0.03148715,98.9559013],[4.53526608,0.03148888,98.95711929],[4.53526658,0.03149062,98.95833786],[4.53526708,0.03149235,98.95955697],[4.53526758,0.03149408,98.96077657],[4.53526808,0.03149581,98.96199663],[4.53526858,0.03149755,98.96321711],[4.53526907,0.03149928,98.96443795],[4.53526957,0.03150101,98.96565914],[4.53527007,0.03150274,98.96688061],[4.53527057,0.03150447,98.96810234],[4.53527107,0.03150621,98.96932428],[4.53527157,0.03150794,98.97054639],[4.53527207,0.03150967,98.97176864],[4.53527257,0.03151141,98.97299097],[4.53527307,0.03151314,98.97421335],[4.53527357,0.03151487,98.97543574],[4.53527407,0.03151661,98.97665813],[4.53527457,0.03151834,98.97788051],[4.53527506,0.03152007,98.97910289],[4.53527556,0.03152181,98.98032526],[4.53527606,0.03152354,98.98154762],[4.53527656,0.03152527,98.98276999],[4.53527705,0.03152701,98.98399236],[4.53527755,0.03152874,98.98521473],[4.53527804,0.03153047,98.9864371],[4.53527854,0.03153221,98.98765946],[4.53527904,0.03153394,98.98888181],[4.53527953,0.03153568,98.99010416],[4.53528003,0.03153741,98.99132649],[4.53528052,0.03153914,98.99254881],[4.53528102,0.03154088,98.99377111],[4.53528151,0.03154261,98.99499339],[4.53528201,0.03154435,98.99621565],[4.5352825,0.03154608,98.99743788],[4.535283,0.03154781,98.99866009],[4.53528349,0.03154955,98.99988226],[4.53528399,0.03155128,99.0011044],[4.53528448,0.03155302,99.00232651],[4.53528497,0.03155475,99.00354858],[4.53528547,0.03155649,99.00477061],[4.53528596,0.03155822,99.0059926],[4.53528645,0.03155996,99.00721454],[4.53528695,0.03156169,99.00843643],[4.53528744,0.03156343,99.00965828],[4.53528793,0.03156516,99.01088007],[4.53528843,0.03156689,99.0121018],[4.53528892,0.03156863,99.01332348],[4.53528941,0.03157036,99.0145451],[4.53528991,0.0315721,99.01576665],[4.5352904,0.03157383,99.01698814],[4.53529089,0.03157557,99.01820956],[4.53529138,0.0315773,99.01943091],[4.53529188,0.03157904,99.02065219],[4.53529237,0.03158077,99.02187339],[4.53529286,0.03158251,99.02309451],[4.53529335,0.03158424,99.02431555],[4.53529385,0.03158598,99.02553651],[4.53529434,0.03158771,99.02675738],[4.53529483,0.03158945,99.02797817],[4.53529532,0.03159118,99.02919886],[4.53529582,0.03159292,99.03041946],[4.53529631,0.03159465,99.03163997],[4.5352968,0.03159639,99.03286037],[4.53529729,0.03159812,99.03408068],[4.53529779,0.03159986,99.03530088],[4.53529828,0.03160159,99.03652097],[4.53529877,0.03160333,99.03774096],[4.53529926,0.03160506,99.03896084],[4.53529976,0.0316068,99.0401806],[4.53530025,0.03160853,99.04140025],[4.53530074,0.03161027,99.04261977],[4.53530123,0.031612,99.04383918],[4.53530173,0.03161374,99.04505846],[4.53530222,0.03161547,99.04627762],[4.53530271,0.03161721,99.04749664],[4.53530321,0.03161894,99.04871554],[4.5353037,0.03162067,99.0499343],[4.53530419,0.03162241,99.05115293],[4.53530469,0.03162414,99.05237141],[4.53530518,0.03162588,99.05358976],[4.53530567,0.03162761,99.05480796],[4.53530617,0.03162935,99.05602601],[4.53530666,0.03163108,99.05724392],[4.53530715,0.03163282,99.05846167],[4.53530765,0.03163455,99.05967925],[4.53530814,0.03163629,99.06089664],[4.53530863,0.03163802,99.06211384],[4.53530913,0.03163976,99.06333082],[4.53530962,0.03164149,99.06454757],[4.53531011,0.03164323,99.06576408],[4.5353106,0.03164496,99.06698033],[4.5353111,0.03164669,99.06819634],[4.53531159,0.03164843,99.06941216],[4.53531208,0.03165016,99.07062783],[4.53531258,0.0316519,99.0718434],[4.53531307,0.03165363,99.07305892],[4.53531356,0.03165537,99.07427445],[4.53531405,0.0316571,99.07549002],[4.53531455,0.03165884,99.07670569],[4.53531504,0.03166057,99.0779215],[4.53531553,0.03166231,99.0791375],[4.53531602,0.03166404,99.08035375],[4.53531651,0.03166578,99.08157029],[4.53531701,0.03166751,99.08278716],[4.5353175,0.03166925,99.08400442],[4.53531799,0.03167098,99.08522211],[4.53531848,0.03167272,99.08644029],[4.53531897,0.03167445,99.08765899],[4.53531947,0.03167619,99.08887828],[4.53531996,0.03167792,99.09009819],[4.53532045,0.03167966,99.09131877],[4.53532094,0.03168139,99.09254008],[4.53532143,0.03168313,99.09376216],[4.53532193,0.03168486,99.09498506],[4.53532242,0.0316866,99.09620883],[4.53532291,0.03168833,99.09743351],[4.5353234,0.03169007,99.09865916],[4.53532389,0.0316918,99.09988582],[4.53532439,0.03169354,99.10111353],[4.53532488,0.03169527,99.10234236],[4.53532537,0.03169701,99.10357233],[4.53532586,0.03169874,99.10480352],[4.53532635,0.03170048,99.10603595],[4.53532685,0.03170221,99.10726968],[4.53532734,0.03170395,99.10850475],[4.53532783,0.03170568,99.10974121],[4.53532832,0.03170742,99.11097901],[4.53532882,0.03170915,99.11221812],[4.53532931,0.03171089,99.11345849],[4.5353298,0.03171262,99.11470007],[4.53533029,0.03171436,99.11594282],[4.53533079,0.03171609,99.11718669],[4.53533128,0.03171783,99.11843163],[4.53533177,0.03171956,99.11967761],[4.53533226,0.0317213,99.12092457],[4.53533276,0.03172303,99.12217248],[4.53533325,0.03172477,99.12342128],[4.53533374,0.0317265,99.12467093],[4.53533424,0.03172824,99.12592138],[4.53533473,0.03172997,99.1271726],[4.53533522,0.03173171,99.12842452],[4.53533571,0.03173344,99.12967712],[4.53533621,0.03173518,99.13093034],[4.5353367,0.03173691,99.13218414],[4.53533719,0.03173865,99.13343847],[4.53533768,0.03174038,99.13469329],[4.53533818,0.03174212,99.13594855],[4.53533867,0.03174385,99.13720421],[4.53533916,0.03174559,99.13846023],[4.53533965,0.03174732,99.13971654],[4.53534015,0.03174906,99.14097312],[4.53534064,0.03175079,99.14222992],[4.53534113,0.03175253,99.14348689],[4.53534162,0.03175426,99.14474398],[4.53534212,0.031756,99.14600116],[4.53534261,0.03175773,99.14725837],[4.5353431,0.03175947,99.14851558],[4.53534359,0.0317612,99.14977273],[4.53534409,0.03176293,99.15102978],[4.53534458,0.03176467,99.15228668],[4.53534507,0.0317664,99.1535434],[4.53534556,0.03176814,99.15479989],[4.53534606,0.03176987,99.1560561],[4.53534655,0.03177161,99.15731198],[4.53534704,0.03177334,99.15856749],[4.53534753,0.03177508,99.1598226],[4.53534803,0.03177681,99.16107724],[4.53534852,0.03177855,99.16233139],[4.53534901,0.03178028,99.16358503],[4.5353495,0.03178202,99.16483814],[4.53534999,0.03178375,99.16609073],[4.53535049,0.03178549,99.16734277],[4.53535098,0.03178722,99.16859428],[4.53535147,0.03178896,99.16984524],[4.53535196,0.03179069,99.17109566],[4.53535246,0.03179243,99.17234553],[4.53535295,0.03179416,99.17359485],[4.53535344,0.0317959,99.17484363],[4.53535393,0.03179763,99.17609185],[4.53535442,0.03179937,99.17733952],[4.53535492,0.0318011,99.17858664],[4.53535541,0.03180284,99.1798332],[4.5353559,0.03180457,99.18107921],[4.53535639,0.03180631,99.18232466],[4.53535689,0.03180804,99.18356955],[4.53535738,0.03180978,99.18481388],[4.53535787,0.03181151,99.18605765],[4.53535836,0.03181325,99.18730086],[4.53535885,0.03181498,99.1885435],[4.53535935,0.03181672,99.18978557],[4.53535984,0.03181845,99.19102708],[4.53536033,0.03182019,99.19226802],[4.53536082,0.03182192,99.19350839],[4.53536131,0.03182366,99.19474819],[4.53536181,0.03182539,99.19598741],[4.5353623,0.03182713,99.19722606],[4.53536279,0.03182886,99.19846414],[4.53536328,0.0318306,99.19970164],[4.53536377,0.03183233,99.20093856],[4.53536426,0.03183407,99.2021749],[4.53536476,0.03183581,99.20341066],[4.53536525,0.03183754,99.20464583],[4.53536574,0.03183928,99.20588043],[4.53536623,0.03184101,99.20711443],[4.53536672,0.03184275,99.20834786],[4.53536721,0.03184448,99.20958069],[4.5353677,0.03184622,99.21081294],[4.53536819,0.03184795,99.21204459],[4.53536868,0.03184969,99.21327565],[4.53536917,0.03185142,99.21450612],[4.53536966,0.03185316,99.215736],[4.53537015,0.0318549,99.21696527],[4.53537064,0.03185663,99.21819395],[4.53537113,0.03185837,99.21942204],[4.53537162,0.0318601,99.22064952],[4.53537211,0.03186184,99.2218764],[4.5353726,0.03186357,99.22310268],[4.53537309,0.03186531,99.22432835],[4.53537358,0.03186705,99.22555342],[4.53537407,0.03186878,99.22677788],[4.53537456,0.03187052,99.22800174],[4.53537504,0.03187225,99.22922498],[4.53537553,0.03187399,99.23044762],[4.53537602,0.03187573,99.23166964],[4.53537651,0.03187746,99.23289104],[4.535377,0.0318792,99.23411184],[4.53537748,0.03188093,99.23533201],[4.53537797,0.03188267,99.23655157],[4.53537846,0.03188441,99.23777051],[4.53537895,0.03188614,99.23898883],[4.53537943,0.03188788,99.24020653],[4.53537992,0.03188962,99.2414236],[4.53538041,0.03189135,99.24264005],[4.53538089,0.03189309,99.24385588],[4.53538138,0.03189483,99.24507108],[4.53538186,0.03189656,99.24628565],[4.53538235,0.0318983,99.24749958],[4.53538284,0.03190004,99.24871289],[4.53538332,0.03190177,99.24992557],[4.53538381,0.03190351,99.25113761],[4.53538429,0.03190525,99.25234901],[4.53538478,0.03190698,99.25355978],[4.53538527,0.03190872,99.25476989],[4.53538575,0.03191046,99.25597936],[4.53538624,0.03191219,99.25718817],[4.53538672,0.03191393,99.25839633],[4.53538721,0.03191567,99.25960382],[4.53538769,0.03191741,99.26081064],[4.53538818,0.03191914,99.26201679],[4.53538866,0.03192088,99.26322226],[4.53538915,0.03192262,99.26442705],[4.53538963,0.03192435,99.26563115],[4.53539012,0.03192609,99.26683456],[4.53539061,0.03192783,99.26803728],[4.53539109,0.03192956,99.2692393],[4.53539158,0.0319313,99.27044061],[4.53539206,0.03193304,99.27164122],[4.53539255,0.03193478,99.27284111],[4.53539303,0.03193651,99.27404028],[4.53539352,0.03193825,99.27523873],[4.535394,0.03193999,99.27643646],[4.53539449,0.03194172,99.27763346],[4.53539498,0.03194346,99.27882971],[4.53539546,0.0319452,99.28002523],[4.53539595,0.03194693,99.28122001],[4.53539643,0.03194867,99.28241403],[4.53539692,0.03195041,99.28360729],[4.53539741,0.03195214,99.28479979],[4.53539789,0.03195388,99.28599151],[4.53539838,0.03195562,99.28718246],[4.53539887,0.03195735,99.28837261],[4.53539935,0.03195909,99.28956198],[4.53539984,0.03196083,99.29075054],[4.53540033,0.03196256,99.29193829],[4.53540081,0.0319643,99.29312523],[4.5354013,0.03196604,99.29431135],[4.53540179,0.03196777,99.29549664],[4.53540227,0.03196951,99.2966811],[4.53540276,0.03197124,99.29786471],[4.53540325,0.03197298,99.29904748],[4.53540374,0.03197472,99.30022938],[4.53540422,0.03197645,99.30141043],[4.53540471,0.03197819,99.3025906],[4.5354052,0.03197993,99.3037699],[4.53540569,0.03198166,99.30494831],[4.53540617,0.0319834,99.30612583],[4.53540666,0.03198514,99.30730246],[4.53540715,0.03198687,99.30847823],[4.53540763,0.03198861,99.30965315],[4.53540812,0.03199035,99.31082727],[4.53540861,0.03199208,99.31200061],[4.5354091,0.03199382,99.31317321],[4.53540958,0.03199555,99.3143451],[4.53541007,0.03199729,99.3155163],[4.53541056,0.03199903,99.31668685],[4.53541105,0.03200076,99.31785678],[4.53541154,0.0320025,99.31902611],[4.53541202,0.03200424,99.32019489],[4.53541251,0.03200597,99.32136314],[4.535413,0.03200771,99.32253088],[4.53541349,0.03200944,99.32369815],[4.53541398,0.03201118,99.32486498],[4.53541446,0.03201292,99.32603139],[4.53541495,0.03201465,99.32719741],[4.53541544,0.03201639,99.32836308],[4.53541593,0.03201812,99.32952841],[4.53541642,0.03201986,99.33069344],[4.53541691,0.0320216,99.3318582],[4.5354174,0.03202333,99.33302271],[4.53541789,0.03202507,99.334187],[4.53541838,0.0320268,99.3353511],[4.53541887,0.03202854,99.33651504],[4.53541935,0.03203028,99.33767885],[4.53541984,0.03203201,99.33884256],[4.53542034,0.03203375,99.34000619],[4.53542083,0.03203548,99.34116977],[4.53542132,0.03203722,99.34233333],[4.53542181,0.03203895,99.34349691],[4.5354223,0.03204069,99.34466052],[4.53542279,0.03204242,99.34582419],[4.53542328,0.03204416,99.34698797],[4.53542377,0.03204589,99.34815183],[4.53542426,0.03204763,99.34931577],[4.53542476,0.03204936,99.35047974],[4.53542525,0.0320511,99.35164373],[4.53542574,0.03205283,99.35280771],[4.53542623,0.03205457,99.35397164],[4.53542673,0.0320563,99.35513551],[4.53542722,0.03205804,99.35629928],[4.53542771,0.03205977,99.35746293],[4.5354282,0.03206151,99.35862643],[4.5354287,0.03206324,99.35978975],[4.53542919,0.03206498,99.36095286],[4.53542968,0.03206671,99.36211575],[4.53543018,0.03206845,99.36327837],[4.53543067,0.03207018,99.36444071],[4.53543117,0.03207192,99.36560273],[4.53543166,0.03207365,99.36676441],[4.53543215,0.03207539,99.36792572],[4.53543265,0.03207712,99.36908664],[4.53543314,0.03207885,99.37024713],[4.53543363,0.03208059,99.37140717],[4.53543413,0.03208232,99.37256673],[4.53543462,0.03208406,99.37372578],[4.53543511,0.03208579,99.3748843],[4.53543561,0.03208753,99.37604227],[4.5354361,0.03208926,99.37719964],[4.53543659,0.032091,99.3783564],[4.53543709,0.03209273,99.37951251],[4.53543758,0.03209447,99.38066795],[4.53543807,0.0320962,99.3818227],[4.53543857,0.03209794,99.38297672],[4.53543906,0.03209967,99.38412995],[4.53543955,0.03210141,99.38528236],[4.53544005,0.03210314,99.3864339],[4.53544054,0.03210488,99.38758451],[4.53544103,0.03210661,99.38873415],[4.53544152,0.03210835,99.38988278],[4.53544201,0.03211008,99.39103034],[4.53544251,0.03211182,99.39217679],[4.535443,0.03211355,99.39332211],[4.53544349,0.03211529,99.3944663],[4.53544398,0.03211702,99.39560937],[4.53544447,0.03211876,99.39675134],[4.53544496,0.03212049,99.39789221],[4.53544545,0.03212223,99.39903199],[4.53544594,0.03212396,99.40017069],[4.53544643,0.0321257,99.40130831],[4.53544692,0.03212743,99.40244487],[4.53544741,0.03212917,99.40358037],[4.5354479,0.03213091,99.40471483],[4.53544839,0.03213264,99.40584824],[4.53544888,0.03213438,99.40698063],[4.53544937,0.03213611,99.40811199],[4.53544986,0.03213785,99.40924235],[4.53545035,0.03213959,99.41037169],[4.53545084,0.03214132,99.41150005],[4.53545133,0.03214306,99.41262741],[4.53545182,0.03214479,99.4137538],[4.53545231,0.03214653,99.41487922],[4.53545279,0.03214827,99.41600368],[4.53545328,0.03215,99.41712718],[4.53545377,0.03215174,99.41824975],[4.53545426,0.03215347,99.41937137],[4.53545475,0.03215521,99.42049208],[4.53545524,0.03215695,99.42161186],[4.53545572,0.03215868,99.42273074],[4.53545621,0.03216042,99.42384871],[4.5354567,0.03216215,99.4249658],[4.53545719,0.03216389,99.426082],[4.53545767,0.03216563,99.42719733],[4.53545816,0.03216736,99.4283118],[4.53545865,0.0321691,99.42942541],[4.53545914,0.03217084,99.43053817],[4.53545962,0.03217257,99.43165009],[4.53546011,0.03217431,99.43276119],[4.5354606,0.03217605,99.43387146],[4.53546109,0.03217778,99.43498093],[4.53546157,0.03217952,99.43608959],[4.53546206,0.03218126,99.43719745],[4.53546255,0.03218299,99.43830453],[4.53546304,0.03218473,99.43941084],[4.53546352,0.03218646,99.44051637],[4.53546401,0.0321882,99.44162115],[4.5354645,0.03218994,99.44272518],[4.53546498,0.03219167,99.44382847],[4.53546547,0.03219341,99.44493102],[4.53546596,0.03219515,99.44603284],[4.53546645,0.03219688,99.44713388],[4.53546693,0.03219862,99.4482341],[4.53546742,0.03220036,99.44933351],[4.53546791,0.03220209,99.45043209],[4.53546839,0.03220383,99.45152984],[4.53546888,0.03220557,99.45262674],[4.53546937,0.0322073,99.4537228],[4.53546986,0.03220904,99.454818],[4.53547034,0.03221077,99.45591233],[4.53547083,0.03221251,99.45700579],[4.53547132,0.03221425,99.45809838],[4.53547181,0.03221598,99.45919007],[4.53547229,0.03221772,99.46028088],[4.53547278,0.03221946,99.46137078],[4.53547327,0.03222119,99.46245977],[4.53547375,0.03222293,99.46354784],[4.53547424,0.03222467,99.46463499],[4.53547473,0.0322264,99.4657212],[4.53547521,0.03222814,99.46680648],[4.5354757,0.03222988,99.46789081],[4.53547619,0.03223161,99.46897418],[4.53547668,0.03223335,99.47005659],[4.53547716,0.03223509,99.47113803],[4.53547765,0.03223682,99.47221849],[4.53547814,0.03223856,99.47329796],[4.53547862,0.0322403,99.47437645],[4.53547911,0.03224203,99.47545393],[4.5354796,0.03224377,99.4765304],[4.53548008,0.03224551,99.47760586],[4.53548057,0.03224724,99.47868029],[4.53548106,0.03224898,99.47975369],[4.53548154,0.03225071,99.48082605],[4.53548203,0.03225245,99.48189737],[4.53548251,0.03225419,99.48296763],[4.535483,0.03225592,99.48403682],[4.53548349,0.03225766,99.48510495],[4.53548397,0.0322594,99.486172],[4.53548446,0.03226113,99.48723797],[4.53548495,0.03226287,99.48830284],[4.53548543,0.03226461,99.48936662],[4.53548592,0.03226634,99.49042928],[4.5354864,0.03226808,99.49149083],[4.53548689,0.03226982,99.49255125],[4.53548738,0.03227155,99.49361049],[4.53548786,0.03227329,99.49466848],[4.53548835,0.03227503,99.49572515],[4.53548883,0.03227677,99.49678046],[4.53548932,0.0322785,99.49783441],[4.5354898,0.03228024,99.49888702],[4.53549029,0.03228198,99.49993827],[4.53549077,0.03228371,99.50098818],[4.53549126,0.03228545,99.50203675],[4.53549174,0.03228719,99.50308398],[4.53549223,0.03228892,99.50412987],[4.53549271,0.03229066,99.50517444],[4.5354932,0.0322924,99.50621767],[4.53549368,0.03229414,99.50725959],[4.53549417,0.03229587,99.50830018],[4.53549465,0.03229761,99.50933945],[4.53549514,0.03229935,99.51037741],[4.53549562,0.03230109,99.51141405],[4.5354961,0.03230282,99.51244939],[4.53549659,0.03230456,99.51348343],[4.53549707,0.0323063,99.51451616],[4.53549756,0.03230804,99.5155476],[4.53549804,0.03230977,99.51657774],[4.53549852,0.03231151,99.5176066],[4.53549901,0.03231325,99.51863416],[4.53549949,0.03231499,99.51966045],[4.53549997,0.03231672,99.52068545],[4.53550046,0.03231846,99.52170918],[4.53550094,0.0323202,99.52273165],[4.53550142,0.03232194,99.52375289],[4.53550191,0.03232367,99.52477291],[4.53550239,0.03232541,99.52579175],[4.53550287,0.03232715,99.52680942],[4.53550335,0.03232889,99.52782595],[4.53550384,0.03233062,99.52884137],[4.53550432,0.03233236,99.52985569],[4.5355048,0.0323341,99.53086893],[4.53550529,0.03233584,99.53188113],[4.53550577,0.03233757,99.53289231],[4.53550625,0.03233931,99.53390248],[4.53550674,0.03234105,99.53491167],[4.53550722,0.03234279,99.53591992],[4.5355077,0.03234452,99.53692723],[4.53550819,0.03234626,99.53793361],[4.53550867,0.032348,99.53893903],[4.53550915,0.03234974,99.53994347],[4.53550964,0.03235147,99.5409469],[4.53551012,0.03235321,99.54194929],[4.53551061,0.03235495,99.54295063],[4.53551109,0.03235669,99.54395088],[4.53551157,0.03235842,99.54495003],[4.53551206,0.03236016,99.54594803],[4.53551254,0.0323619,99.54694488],[4.53551302,0.03236363,99.54794054],[4.53551351,0.03236537,99.54893498],[4.53551399,0.03236711,99.54992819],[4.53551448,0.03236885,99.55092013],[4.53551496,0.03237058,99.55191078],[4.53551544,0.03237232,99.55290012],[4.53551593,0.03237406,99.55388811],[4.53551641,0.0323758,99.55487473],[4.53551689,0.03237753,99.55585997],[4.53551738,0.03237927,99.55684378],[4.53551786,0.03238101,99.55782615],[4.53551834,0.03238275,99.55880704],[4.53551883,0.03238448,99.55978644],[4.53551931,0.03238622,99.56076432],[4.5355198,0.03238796,99.56174064],[4.53552028,0.0323897,99.56271539],[4.53552076,0.03239143,99.56368854],[4.53552125,0.03239317,99.56466007],[4.53552173,0.03239491,99.56562994],[4.53552221,0.03239664,99.56659813],[4.5355227,0.03239838,99.56756462],[4.53552318,0.03240012,99.56852938],[4.53552366,0.03240186,99.56949238],[4.53552415,0.03240359,99.57045359],[4.53552463,0.03240533,99.571413],[4.53552512,0.03240707,99.57237057],[4.5355256,0.03240881,99.57332628],[4.53552608,0.03241054,99.57428011],[4.53552657,0.03241228,99.57523202],[4.53552705,0.03241402,99.57618198],[4.53552753,0.03241576,99.57712999],[4.53552802,0.03241749,99.578076],[4.5355285,0.03241923,99.57901999],[4.53552899,0.03242097,99.57996194],[4.53552947,0.03242271,99.58090182],[4.53552995,0.03242444,99.5818396],[4.53553044,0.03242618,99.58277526],[4.53553092,0.03242792,99.58370876],[4.53553141,0.03242965,99.5846401],[4.53553189,0.03243139,99.58556923],[4.53553237,0.03243313,99.58649613],[4.53553286,0.03243487,99.58742078],[4.53553334,0.0324366,99.58834315],[4.53553383,0.03243834,99.58926321],[4.53553431,0.03244008,99.59018095],[4.53553479,0.03244181,99.59109633],[4.53553528,0.03244355,99.59200934],[4.53553576,0.03244529,99.59291993],[4.53553625,0.03244703,99.5938281],[4.53553673,0.03244876,99.59473381],[4.53553722,0.0324505,99.59563704],[4.5355377,0.03245224,99.59653777],[4.53553819,0.03245397,99.59743596],[4.53553867,0.03245571,99.59833159],[4.53553916,0.03245745,99.59922464],[4.53553964,0.03245919,99.60011509],[4.53554012,0.03246092,99.6010029],[4.53554061,0.03246266,99.60188805],[4.53554109,0.0324644,99.60277051],[4.53554158,0.03246613,99.60365027],[4.53554206,0.03246787,99.60452729],[4.53554255,0.03246961,99.60540156],[4.53554303,0.03247135,99.60627303],[4.53554351,0.03247308,99.6071417],[4.535544,0.03247482,99.60800753],[4.53554448,0.03247656,99.6088705],[4.53554496,0.0324783,99.60973058],[4.53554545,0.03248003,99.61058775],[4.53554593,0.03248177,99.61144201],[4.53554641,0.03248351,99.61229336],[4.53554689,0.03248525,99.61314184],[4.53554738,0.03248698,99.6139875],[4.53554786,0.03248872,99.61483038],[4.53554834,0.03249046,99.61567052],[4.53554882,0.0324922,99.61650796],[4.5355493,0.03249394,99.61734275],[4.53554978,0.03249567,99.61817492],[4.53555026,0.03249741,99.61900453],[4.53555074,0.03249915,99.6198316],[4.53555122,0.03250089,99.62065619],[4.5355517,0.03250263,99.62147834],[4.53555218,0.03250436,99.62229809],[4.53555266,0.0325061,99.62311548],[4.53555314,0.03250784,99.62393055],[4.53555362,0.03250958,99.62474335],[4.5355541,0.03251132,99.62555392],[4.53555458,0.03251306,99.6263623],[4.53555506,0.0325148,99.62716854],[4.53555554,0.03251653,99.62797267],[4.53555602,0.03251827,99.62877474],[4.5355565,0.03252001,99.6295748],[4.53555697,0.03252175,99.63037288],[4.53555745,0.03252349,99.63116902],[4.53555793,0.03252523,99.63196328],[4.53555841,0.03252697,99.63275568],[4.53555889,0.03252871,99.63354629],[4.53555936,0.03253044,99.63433513],[4.53555984,0.03253218,99.63512225],[4.53556032,0.03253392,99.6359077],[4.5355608,0.03253566,99.63669151],[4.53556128,0.0325374,99.63747373],[4.53556175,0.03253914,99.6382544],[4.53556223,0.03254088,99.63903356],[4.53556271,0.03254262,99.63981126],[4.53556319,0.03254436,99.64058755],[4.53556366,0.0325461,99.64136245],[4.53556414,0.03254783,99.64213602],[4.53556462,0.03254957,99.6429083],[4.53556509,0.03255131,99.64367933],[4.53556557,0.03255305,99.64444915],[4.53556605,0.03255479,99.64521781],[4.53556653,0.03255653,99.64598535],[4.535567,0.03255827,99.64675181],[4.53556748,0.03256001,99.64751723],[4.53556796,0.03256175,99.64828167],[4.53556844,0.03256349,99.64904512],[4.53556891,0.03256522,99.64980756],[4.53556939,0.03256696,99.65056899],[4.53556987,0.0325687,99.65132937],[4.53557035,0.03257044,99.65208871],[4.53557082,0.03257218,99.65284697],[4.5355713,0.03257392,99.65360415],[4.53557178,0.03257566,99.65436022],[4.53557226,0.0325774,99.65511518],[4.53557274,0.03257914,99.655869],[4.53557322,0.03258087,99.65662167],[4.53557369,0.03258261,99.65737318],[4.53557417,0.03258435,99.6581235],[4.53557465,0.03258609,99.65887263],[4.53557513,0.03258783,99.65962054],[4.53557561,0.03258957,99.66036722],[4.53557609,0.03259131,99.66111265],[4.53557657,0.03259304,99.66185682],[4.53557705,0.03259478,99.66259971],[4.53557753,0.03259652,99.66334131],[4.53557801,0.03259826,99.66408159],[4.53557849,0.0326,99.66482055],[4.53557897,0.03260174,99.66555816],[4.53557945,0.03260347,99.66629441],[4.53557993,0.03260521,99.66702929],[4.53558041,0.03260695,99.66776277],[4.53558089,0.03260869,99.66849484],[4.53558137,0.03261043,99.6692255],[4.53558185,0.03261217,99.6699547],[4.53558233,0.0326139,99.67068246],[4.53558281,0.03261564,99.67140874],[4.53558329,0.03261738,99.67213352],[4.53558377,0.03261912,99.67285681],[4.53558425,0.03262085,99.67357857],[4.53558474,0.03262259,99.67429879],[4.53558522,0.03262433,99.67501746],[4.5355857,0.03262607,99.67573456],[4.53558618,0.03262781,99.67645007],[4.53558666,0.03262954,99.67716398],[4.53558715,0.03263128,99.67787626],[4.53558763,0.03263302,99.67858692],[4.53558811,0.03263476,99.67929592],[4.5355886,0.03263649,99.68000325],[4.53558908,0.03263823,99.6807089],[4.53558956,0.03263997,99.68141285],[4.53559005,0.0326417,99.68211508],[4.53559053,0.03264344,99.68281557],[4.53559101,0.03264518,99.68351432],[4.5355915,0.03264692,99.6842113],[4.53559198,0.03264865,99.6849065],[4.53559247,0.03265039,99.68559991],[4.53559295,0.03265213,99.6862915],[4.53559344,0.03265386,99.68698125],[4.53559392,0.0326556,99.68766916],[4.5355944,0.03265734,99.68835521],[4.53559489,0.03265907,99.68903938],[4.53559537,0.03266081,99.68972165],[4.53559586,0.03266255,99.69040202],[4.53559634,0.03266429,99.69108045],[4.53559683,0.03266602,99.69175692],[4.53559731,0.03266776,99.6924314],[4.5355978,0.0326695,99.6931039],[4.53559829,0.03267123,99.69377441],[4.53559877,0.03267297,99.69444297],[4.53559926,0.03267471,99.69510958],[4.53559974,0.03267644,99.69577426],[4.53560023,0.03267818,99.69643704],[4.53560071,0.03267992,99.69709791],[4.5356012,0.03268165,99.69775691],[4.53560168,0.03268339,99.69841404],[4.53560217,0.03268513,99.69906933],[4.53560265,0.03268686,99.69972278],[4.53560313,0.0326886,99.70037442],[4.53560362,0.03269034,99.70102426],[4.5356041,0.03269207,99.70167232],[4.53560459,0.03269381,99.70231861],[4.53560507,0.03269555,99.70296315],[4.53560556,0.03269728,99.70360596],[4.53560604,0.03269902,99.70424704],[4.53560653,0.03270076,99.70488643],[4.53560701,0.0327025,99.70552413],[4.5356075,0.03270423,99.70616016],[4.53560798,0.03270597,99.70679454],[4.53560847,0.03270771,99.70742728],[4.53560895,0.03270944,99.70805839],[4.53560943,0.03271118,99.70868791],[4.53560992,0.03271292,99.70931583],[4.5356104,0.03271465,99.70994218],[4.53561089,0.03271639,99.71056697],[4.53561137,0.03271813,99.71119022],[4.53561185,0.03271987,99.71181195],[4.53561234,0.0327216,99.71243217],[4.53561282,0.03272334,99.7130509],[4.5356133,0.03272508,99.71366815],[4.53561379,0.03272681,99.71428394],[4.53561427,0.03272855,99.71489828],[4.53561475,0.03273029,99.7155112],[4.53561524,0.03273203,99.71612271],[4.53561572,0.03273376,99.71673282],[4.5356162,0.0327355,99.71734155],[4.53561669,0.03273724,99.71794891],[4.53561717,0.03273898,99.71855493],[4.53561765,0.03274071,99.71915962],[4.53561814,0.03274245,99.71976299],[4.53561862,0.03274419,99.72036506],[4.5356191,0.03274593,99.72096585],[4.53561958,0.03274766,99.72156537],[4.53562006,0.0327494,99.72216364],[4.53562055,0.03275114,99.72276067],[4.53562103,0.03275288,99.72335649],[4.53562151,0.03275461,99.7239511],[4.53562199,0.03275635,99.72454452],[4.53562247,0.03275809,99.72513678],[4.53562295,0.03275983,99.72572787],[4.53562344,0.03276156,99.72631783],[4.53562392,0.0327633,99.72690666],[4.5356244,0.03276504,99.72749437],[4.53562488,0.03276678,99.72808094],[4.53562536,0.03276852,99.72866636],[4.53562584,0.03277025,99.7292506],[4.53562632,0.03277199,99.72983366],[4.5356268,0.03277373,99.73041551],[4.53562728,0.03277547,99.73099614],[4.53562776,0.03277721,99.73157554],[4.53562824,0.03277894,99.73215368],[4.53562872,0.03278068,99.73273056],[4.5356292,0.03278242,99.73330616],[4.53562968,0.03278416,99.73388048],[4.53563016,0.0327859,99.73445351],[4.53563064,0.03278764,99.73502525],[4.53563112,0.03278937,99.73559571],[4.53563159,0.03279111,99.73616487],[4.53563207,0.03279285,99.73673273],[4.53563255,0.03279459,99.7372993],[4.53563303,0.03279633,99.73786456],[4.53563351,0.03279807,99.73842853],[4.53563399,0.03279981,99.73899118],[4.53563447,0.03280154,99.73955253],[4.53563494,0.03280328,99.74011257],[4.53563542,0.03280502,99.74067129],[4.5356359,0.03280676,99.7412287],[4.53563638,0.0328085,99.74178479],[4.53563686,0.03281024,99.74233956],[4.53563734,0.03281198,99.742893],[4.53563781,0.03281371,99.74344512],[4.53563829,0.03281545,99.74399591],[4.53563877,0.03281719,99.74454537],[4.53563925,0.03281893,99.74509349],[4.53563972,0.03282067,99.74564028],[4.5356402,0.03282241,99.74618573],[4.53564068,0.03282415,99.74672983],[4.53564116,0.03282589,99.74727259],[4.53564163,0.03282762,99.74781401],[4.53564211,0.03282936,99.74835407],[4.53564259,0.0328311,99.74889279],[4.53564307,0.03283284,99.74943015],[4.53564354,0.03283458,99.74996615],[4.53564402,0.03283632,99.75050079],[4.5356445,0.03283806,99.75103407],[4.53564498,0.0328398,99.75156599],[4.53564546,0.03284153,99.75209654],[4.53564593,0.03284327,99.75262572],[4.53564641,0.03284501,99.75315352],[4.53564689,0.03284675,99.75367996],[4.53564737,0.03284849,99.75420501],[4.53564784,0.03285023,99.75472869],[4.53564832,0.03285197,99.75525098],[4.5356488,0.03285371,99.75577189],[4.53564928,0.03285544,99.75629141],[4.53564976,0.03285718,99.75680954],[4.53565024,0.03285892,99.75732628],[4.53565071,0.03286066,99.75784162],[4.53565119,0.0328624,99.75835557],[4.53565167,0.03286414,99.75886811],[4.53565215,0.03286588,99.75937919],[4.53565263,0.03286761,99.75988876],[4.53565311,0.03286935,99.76039676],[4.53565359,0.03287109,99.76090313],[4.53565407,0.03287283,99.76140782],[4.53565455,0.03287457,99.76191078],[4.53565502,0.03287631,99.76241194],[4.5356555,0.03287804,99.76291124],[4.53565598,0.03287978,99.76340864],[4.53565646,0.03288152,99.76390408],[4.53565694,0.03288326,99.7643975],[4.53565742,0.032885,99.76488884],[4.5356579,0.03288673,99.76537805],[4.53565838,0.03288847,99.76586507],[4.53565886,0.03289021,99.76634985],[4.53565934,0.03289195,99.76683233],[4.53565982,0.03289369,99.76731245],[4.5356603,0.03289543,99.76779017],[4.53566077,0.03289716,99.76826541],[4.53566125,0.0328989,99.76873813],[4.53566173,0.03290064,99.76920827],[4.53566221,0.03290238,99.76967578],[4.53566269,0.03290412,99.77014062],[4.53566317,0.03290586,99.77060284],[4.53566364,0.0329076,99.77106249],[4.53566412,0.03290933,99.77151965],[4.5356646,0.03291107,99.77197438],[4.53566508,0.03291281,99.77242676],[4.53566555,0.03291455,99.77287682],[4.53566603,0.03291629,99.77332464],[4.53566651,0.03291803,99.77377024],[4.53566698,0.03291977,99.77421368],[4.53566746,0.03292151,99.77465499],[4.53566794,0.03292325,99.77509424],[4.53566841,0.03292498,99.77553145],[4.53566889,0.03292672,99.77596668],[4.53566937,0.03292846,99.77639997],[4.53566984,0.0329302,99.77683138],[4.53567032,0.03293194,99.77726093],[4.53567079,0.03293368,99.77768868],[4.53567127,0.03293542,99.77811468],[4.53567175,0.03293716,99.77853896],[4.53567222,0.0329389,99.77896158],[4.5356727,0.03294064,99.77938257],[4.53567317,0.03294238,99.77980199],[4.53567365,0.03294412,99.78021988],[4.53567413,0.03294585,99.78063629],[4.5356746,0.03294759,99.78105125],[4.53567508,0.03294933,99.78146482],[4.53567555,0.03295107,99.78187704],[4.53567603,0.03295281,99.78228795],[4.53567651,0.03295455,99.7826976],[4.53567698,0.03295629,99.78310603],[4.53567746,0.03295803,99.7835133],[4.53567793,0.03295977,99.78391944],[4.53567841,0.03296151,99.78432449],[4.53567889,0.03296325,99.78472851],[4.53567936,0.03296498,99.78513153],[4.53567984,0.03296672,99.78553357],[4.53568032,0.03296846,99.78593463],[4.53568079,0.0329702,99.78633471],[4.53568127,0.03297194,99.78673383],[4.53568175,0.03297368,99.78713198],[4.53568223,0.03297542,99.78752918],[4.5356827,0.03297716,99.78792544],[4.53568318,0.0329789,99.78832074],[4.53568366,0.03298063,99.78871512],[4.53568413,0.03298237,99.78910856],[4.53568461,0.03298411,99.78950108],[4.53568509,0.03298585,99.78989268],[4.53568557,0.03298759,99.79028336],[4.53568604,0.03298933,99.79067314],[4.53568652,0.03299107,99.79106203],[4.535687,0.03299281,99.79145001],[4.53568748,0.03299455,99.79183711],[4.53568795,0.03299628,99.79222333],[4.53568843,0.03299802,99.79260868],[4.53568891,0.03299976,99.79299315],[4.53568939,0.0330015,99.79337676],[4.53568987,0.03300324,99.79375951],[4.53569034,0.03300498,99.79414142],[4.53569082,0.03300672,99.79452247],[4.5356913,0.03300846,99.79490271],[4.53569178,0.03301019,99.79528217],[4.53569225,0.03301193,99.79566086],[4.53569273,0.03301367,99.79603884],[4.53569321,0.03301541,99.79641613],[4.53569369,0.03301715,99.79679275],[4.53569416,0.03301889,99.79716875],[4.53569464,0.03302063,99.79754416],[4.53569512,0.03302237,99.79791901],[4.5356956,0.0330241,99.79829333],[4.53569607,0.03302584,99.79866715],[4.53569655,0.03302758,99.7990405],[4.53569703,0.03302932,99.79941342],[4.53569751,0.03303106,99.79978594],[4.53569799,0.0330328,99.80015809],[4.53569846,0.03303454,99.8005299],[4.53569894,0.03303628,99.8009014],[4.53569942,0.03303801,99.80127263],[4.5356999,0.03303975,99.80164362],[4.53570038,0.03304149,99.8020144],[4.53570085,0.03304323,99.802385],[4.53570133,0.03304497,99.80275545],[4.53570181,0.03304671,99.80312578],[4.53570229,0.03304845,99.80349603],[4.53570277,0.03305018,99.8038662],[4.53570325,0.03305192,99.80423628],[4.53570373,0.03305366,99.80460623],[4.5357042,0.0330554,99.80497605],[4.53570468,0.03305714,99.80534572],[4.53570516,0.03305888,99.80571521],[4.53570564,0.03306062,99.8060845],[4.53570612,0.03306235,99.80645358],[4.5357066,0.03306409,99.80682242],[4.53570708,0.03306583,99.80719101],[4.53570756,0.03306757,99.80755933],[4.53570803,0.03306931,99.80792736],[4.53570851,0.03307105,99.80829508],[4.53570899,0.03307278,99.80866247],[4.53570947,0.03307452,99.8090295],[4.53570995,0.03307626,99.80939617],[4.53571043,0.033078,99.80976245],[4.53571091,0.03307974,99.81012832],[4.53571139,0.03308148,99.81049377],[4.53571187,0.03308322,99.81085877],[4.53571234,0.03308495,99.81122331],[4.53571282,0.03308669,99.81158736],[4.5357133,0.03308843,99.81195091],[4.53571378,0.03309017,99.81231393],[4.53571426,0.03309191,99.81267642],[4.53571474,0.03309365,99.81303835],[4.53571522,0.03309538,99.81339969],[4.5357157,0.03309712,99.81376044],[4.53571618,0.03309886,99.81412057],[4.53571666,0.0331006,99.81448006],[4.53571714,0.03310234,99.8148389],[4.53571761,0.03310408,99.81519707],[4.53571809,0.03310582,99.81555454],[4.53571857,0.03310755,99.8159113],[4.53571905,0.03310929,99.81626733],[4.53571953,0.03311103,99.81662261],[4.53572001,0.03311277,99.81697713],[4.53572049,0.03311451,99.81733085],[4.53572097,0.03311625,99.81768377],[4.53572145,0.03311798,99.81803587],[4.53572193,0.03311972,99.81838712],[4.53572241,0.03312146,99.81873751],[4.53572289,0.0331232,99.81908702],[4.53572337,0.03312494,99.81943563],[4.53572385,0.03312668,99.8197833],[4.53572433,0.03312841,99.82012999],[4.53572481,0.03313015,99.82047566],[4.53572529,0.03313189,99.82082027],[4.53572577,0.03313363,99.82116377],[4.53572625,0.03313537,99.82150612],[4.53572673,0.03313711,99.82184727],[4.53572721,0.03313884,99.82218719],[4.53572769,0.03314058,99.82252583],[4.53572817,0.03314232,99.82286314],[4.53572865,0.03314406,99.8231991],[4.53572913,0.0331458,99.82353365],[4.5357296,0.03314753,99.82386674],[4.53573008,0.03314927,99.82419835],[4.53573056,0.03315101,99.82452843],[4.53573104,0.03315275,99.82485692],[4.53573152,0.03315449,99.82518381],[4.535732,0.03315623,99.82550903],[4.53573248,0.03315797,99.82583255],[4.53573296,0.0331597,99.82615432],[4.53573344,0.03316144,99.82647431],[4.53573392,0.03316318,99.82679247],[4.5357344,0.03316492,99.82710877],[4.53573488,0.03316666,99.82742315],[4.53573536,0.0331684,99.82773558],[4.53573583,0.03317014,99.82804601],[4.53573631,0.03317187,99.82835441],[4.53573679,0.03317361,99.82866074],[4.53573727,0.03317535,99.82896494],[4.53573775,0.03317709,99.82926699],[4.53573822,0.03317883,99.82956683],[4.5357387,0.03318057,99.82986443],[4.53573918,0.03318231,99.83015975],[4.53573966,0.03318405,99.83045274],[4.53574013,0.03318579,99.83074337],[4.53574061,0.03318752,99.8310316],[4.53574109,0.03318926,99.83131745],[4.53574156,0.033191,99.83160102],[4.53574204,0.03319274,99.83188241],[4.53574252,0.03319448,99.83216171],[4.53574299,0.03319622,99.83243903],[4.53574347,0.03319796,99.83271446],[4.53574395,0.0331997,99.8329881],[4.53574442,0.03320144,99.83326004],[4.5357449,0.03320318,99.83353038],[4.53574538,0.03320492,99.83379923],[4.53574585,0.03320666,99.83406667],[4.53574633,0.0332084,99.8343328],[4.53574681,0.03321013,99.83459773],[4.53574728,0.03321187,99.83486154],[4.53574776,0.03321361,99.83512433],[4.53574824,0.03321535,99.8353862],[4.53574872,0.03321709,99.83564724],[4.53574919,0.03321883,99.83590756],[4.53574967,0.03322057,99.83616724],[4.53575015,0.03322231,99.83642639],[4.53575063,0.03322405,99.83668507],[4.53575111,0.03322578,99.8369433],[4.53575159,0.03322752,99.83720106],[4.53575207,0.03322926,99.83745834],[4.53575255,0.033231,99.83771513],[4.53575303,0.03323274,99.83797142],[4.53575351,0.03323448,99.83822718],[4.53575399,0.03323621,99.83848241],[4.53575447,0.03323795,99.83873711],[4.53575495,0.03323969,99.83899124],[4.53575543,0.03324143,99.83924481],[4.53575591,0.03324317,99.83949779],[4.53575639,0.03324491,99.83975018],[4.53575687,0.03324664,99.84000197],[4.53575735,0.03324838,99.84025314],[4.53575783,0.03325012,99.84050367],[4.53575831,0.03325186,99.84075357],[4.53575879,0.0332536,99.84100281],[4.53575927,0.03325533,99.84125138],[4.53575975,0.03325707,99.84149928],[4.53576023,0.03325881,99.84174652],[4.53576071,0.03326055,99.84199311],[4.53576119,0.03326229,99.84223904],[4.53576168,0.03326402,99.84248433],[4.53576216,0.03326576,99.84272898],[4.53576264,0.0332675,99.842973],[4.53576311,0.03326924,99.84321638],[4.53576359,0.03327098,99.84345915],[4.53576407,0.03327272,99.84370129],[4.53576455,0.03327446,99.84394282],[4.53576503,0.03327619,99.84418374],[4.53576551,0.03327793,99.84442406],[4.53576599,0.03327967,99.84466379],[4.53576647,0.03328141,99.84490292],[4.53576695,0.03328315,99.84514147],[4.53576743,0.03328489,99.84537943],[4.53576791,0.03328663,99.84561682],[4.53576838,0.03328836,99.84585364],[4.53576886,0.0332901,99.84608989],[4.53576934,0.03329184,99.84632559],[4.53576982,0.03329358,99.84656073],[4.5357703,0.03329532,99.84679532],[4.53577077,0.03329706,99.84702937],[4.53577125,0.0332988,99.84726288],[4.53577173,0.03330054,99.84749586],[4.53577221,0.03330228,99.84772831],[4.53577269,0.03330402,99.84796023],[4.53577316,0.03330575,99.84819165],[4.53577364,0.03330749,99.84842254],[4.53577412,0.03330923,99.84865294],[4.5357746,0.03331097,99.84888283],[4.53577507,0.03331271,99.84911222],[4.53577555,0.03331445,99.84934113],[4.53577603,0.03331619,99.84956955],[4.5357765,0.03331793,99.84979749],[4.53577698,0.03331967,99.85002495],[4.53577746,0.03332141,99.85025195],[4.53577794,0.03332315,99.85047848],[4.53577841,0.03332488,99.85070455],[4.53577889,0.03332662,99.85093017],[4.53577937,0.03332836,99.85115533],[4.53577984,0.0333301,99.85138006],[4.53578032,0.03333184,99.85160435],[4.5357808,0.03333358,99.8518282],[4.53578128,0.03333532,99.85205163],[4.53578175,0.03333706,99.85227463],[4.53578223,0.0333388,99.85249721],[4.53578271,0.03334054,99.85271934],[4.53578318,0.03334228,99.85294098],[4.53578366,0.03334402,99.85316211],[4.53578414,0.03334576,99.85338267],[4.53578461,0.03334749,99.85360265],[4.53578509,0.03334923,99.853822],[4.53578557,0.03335097,99.8540407],[4.53578605,0.03335271,99.8542587],[4.53578652,0.03335445,99.85447598],[4.535787,0.03335619,99.85469249],[4.53578748,0.03335793,99.85490821],[4.53578795,0.03335967,99.85512311],[4.53578843,0.03336141,99.85533714],[4.53578891,0.03336315,99.85555028],[4.53578939,0.03336489,99.85576249],[4.53578986,0.03336663,99.85597373],[4.53579034,0.03336837,99.85618398],[4.53579082,0.0333701,99.8563932],[4.53579129,0.03337184,99.85660136],[4.53579177,0.03337358,99.85680842],[4.53579225,0.03337532,99.85701434],[4.53579273,0.03337706,99.85721909],[4.5357932,0.0333788,99.85742263],[4.53579368,0.03338054,99.85762492],[4.53579416,0.03338228,99.85782591],[4.53579464,0.03338402,99.85802557],[4.53579511,0.03338576,99.85822386],[4.53579559,0.0333875,99.85842074],[4.53579607,0.03338924,99.85861617],[4.53579654,0.03339098,99.85881027],[4.53579702,0.03339271,99.85900329],[4.5357975,0.03339445,99.85919548],[4.53579798,0.03339619,99.85938709],[4.53579845,0.03339793,99.85957839],[4.53579893,0.03339967,99.85976962],[4.53579941,0.03340141,99.85996104],[4.53579988,0.03340315,99.86015291],[4.53580036,0.03340489,99.86034547],[4.53580083,0.03340663,99.86053899],[4.53580131,0.03340837,99.86073371],[4.53580179,0.03341011,99.86092989],[4.53580226,0.03341185,99.86112777],[4.53580274,0.03341359,99.86132762],[4.53580322,0.03341533,99.86152967],[4.53580369,0.03341707,99.86173419],[4.53580417,0.03341881,99.86194141],[4.53580464,0.03342055,99.86215159],[4.53580512,0.03342229,99.86236498],[4.53580559,0.03342403,99.86258183],[4.53580607,0.03342577,99.86280229],[4.53580655,0.0334275,99.86302622],[4.53580702,0.03342924,99.86325336],[4.5358075,0.03343098,99.86348347],[4.53580797,0.03343272,99.86371631],[4.53580845,0.03343446,99.86395163],[4.53580893,0.0334362,99.86418919],[4.5358094,0.03343794,99.86442875],[4.53580988,0.03343968,99.86467007],[4.53581035,0.03344142,99.8649129],[4.53581083,0.03344316,99.86515699],[4.53581131,0.0334449,99.86540211],[4.53581178,0.03344664,99.86564802],[4.53581226,0.03344838,99.86589446],[4.53581274,0.03345012,99.8661412],[4.53581321,0.03345186,99.86638799],[4.53581369,0.0334536,99.8666346],[4.53581416,0.03345534,99.86688078],[4.53581464,0.03345708,99.86712629],[4.53581512,0.03345882,99.8673709],[4.53581559,0.03346056,99.86761436],[4.53581607,0.0334623,99.86785643],[4.53581654,0.03346404,99.86809688],[4.53581702,0.03346578,99.86833547],[4.53581749,0.03346752,99.86857196],[4.53570267,0.03349937,99.78226605]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":1,"type":"shoulder","predecessorId":1},{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":2,"type":"none","predecessorId":2}],"roadId":"1004600","singleSide":false,"rightLanes":[{"successorId":-6,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"id":-6,"type":"none","predecessorId":-6},{"successorId":-5,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":-5,"type":"border","predecessorId":-5},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-4,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"id":-4,"type":"border","predecessorId":-4},{"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-3,"type":"stop","predecessorId":-3},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.53441277,0.02897045,97.13217057],[4.5344124,0.02896868,97.13108056],[4.53441204,0.02896691,97.12999143],[4.53441167,0.02896514,97.12890318],[4.53441131,0.02896336,97.12781579],[4.53441094,0.02896159,97.12672928],[4.53441058,0.02895982,97.12564363],[4.53441036,0.02895877,97.1250049],[4.53451389,0.02892695,97.21582253],[4.5345142,0.02892797,97.21641991],[4.53451472,0.0289297,97.21743501],[4.53451524,0.02893142,97.2184506],[4.53451576,0.02893315,97.21946667],[4.53451628,0.02893488,97.22048322],[4.5345168,0.0289366,97.22150026],[4.53451733,0.02893833,97.22251778],[4.53441277,0.02897045,97.13217057]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":1,"type":"shoulder","predecessorId":1},{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":2,"type":"none","predecessorId":2}],"roadId":"1004600","singleSide":false,"rightLanes":[{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.025},{"outer":0.15,"inner":0.15}],"id":-6,"type":"none","predecessorId":-6},{"successorId":0,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"id":-5,"type":"border","predecessorId":-5},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"id":-4,"type":"border","predecessorId":-4},{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"rules":[{"value":"barred"}],"id":-3,"type":"restricted","predecessorId":-3},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.53441036,0.02895877,96.9750049],[4.53441,0.028957,96.96955709],[4.53440976,0.02895583,96.96114451],[4.53451303,0.02892409,97.21413996],[4.53451337,0.02892523,97.21480866],[4.53451389,0.02892695,97.21582253],[4.53441036,0.02895877,96.9750049]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":1,"type":"shoulder","predecessorId":1},{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":2,"type":"none","predecessorId":2}],"roadId":"1004600","singleSide":false,"rightLanes":[{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":-4,"type":"none","predecessorId":0},{"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"rules":[{"value":"barred"}],"id":-3,"type":"restricted","predecessorId":0},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.53440978,0.02895583,96.96114451],[4.53440971,0.02895396,96.96135059],[4.53440965,0.0289521,96.96155868],[4.53440959,0.02895023,96.96176875],[4.53440952,0.02894836,96.96198077],[4.53440946,0.0289465,96.96219474],[4.5344094,0.02894463,96.96241062],[4.53440934,0.02894277,96.96262839],[4.53440928,0.0289409,96.96284804],[4.53440921,0.02893904,96.96306954],[4.53440915,0.02893717,96.96329287],[4.53440909,0.0289353,96.96351801],[4.53440903,0.02893344,96.96374493],[4.53440896,0.02893157,96.96397362],[4.5344089,0.02892971,96.96420405],[4.53440884,0.02892784,96.9644362],[4.53440878,0.02892597,96.96467005],[4.53440872,0.02892411,96.96490558],[4.53440866,0.02892224,96.96514277],[4.53440826,0.02892048,96.96443692],[4.5344078,0.02891873,96.96357349],[4.53440735,0.02891699,96.96271207],[4.5344069,0.02891524,96.96185248],[4.53440645,0.02891349,96.9609945],[4.53440599,0.02891175,96.96013794],[4.53440554,0.02891,96.9592826],[4.53440509,0.02890826,96.95842827],[4.53440464,0.02890651,96.95757476],[4.53440418,0.02890476,96.95672185],[4.53440373,0.02890302,96.95586934],[4.53440328,0.02890127,96.95501704],[4.53440282,0.02889953,96.95416474],[4.53440237,0.02889778,96.95331224],[4.53440191,0.02889604,96.95245933],[4.53440146,0.02889429,96.95160581],[4.534401,0.02889254,96.95075148],[4.53440055,0.0288908,96.94989613],[4.53440009,0.02888905,96.94903956],[4.53439963,0.02888731,96.94818157],[4.53439917,0.02888557,96.94732197],[4.53439871,0.02888382,96.94646077],[4.53439825,0.02888208,96.94559804],[4.53439779,0.02888034,96.94473384],[4.53439733,0.02887859,96.94386822],[4.53439686,0.02887685,96.94300126],[4.5343964,0.02887511,96.94213302],[4.53439593,0.02887336,96.94126357],[4.53439547,0.02887162,96.94039296],[4.534395,0.02886988,96.93952126],[4.53439453,0.02886814,96.93864854],[4.53439406,0.0288664,96.93777486],[4.53439359,0.02886465,96.93690028],[4.53439312,0.02886291,96.93602488],[4.53439265,0.02886117,96.9351487],[4.53439218,0.02885943,96.93427183],[4.53439171,0.02885769,96.93339432],[4.53439124,0.02885595,96.93251624],[4.53439077,0.02885421,96.93163765],[4.5343903,0.02885247,96.93075862],[4.53438982,0.02885073,96.92987921],[4.53438935,0.02884899,96.92899949],[4.53438887,0.02884725,96.92811953],[4.5343884,0.02884551,96.92723943],[4.53438792,0.02884377,96.92635929],[4.53438745,0.02884203,96.92547923],[4.53438697,0.02884029,96.92459936],[4.5343865,0.02883855,96.9237198],[4.53438602,0.02883681,96.92284064],[4.53438554,0.02883507,96.92196201],[4.53438507,0.02883333,96.921084],[4.53438459,0.02883159,96.92020675],[4.53438412,0.02882985,96.91933035],[4.53438364,0.02882811,96.91845491],[4.53438316,0.02882638,96.91758056],[4.53438269,0.02882464,96.91670739],[4.53438221,0.0288229,96.91583553],[4.53438173,0.02882116,96.91496507],[4.53438126,0.02881942,96.91409615],[4.53438078,0.02881768,96.91322886],[4.53438031,0.02881594,96.91236332],[4.53437983,0.0288142,96.91149963],[4.53437936,0.02881246,96.91063786],[4.53437888,0.02881072,96.90977796],[4.53437841,0.02880898,96.9089199],[4.53437793,0.02880724,96.90806364],[4.53437746,0.0288055,96.90720916],[4.53437699,0.02880376,96.9063564],[4.53437651,0.02880202,96.90550533],[4.53437604,0.02880028,96.90465592],[4.53437557,0.02879853,96.90380812],[4.5343751,0.02879679,96.90296191],[4.53437462,0.02879505,96.90211724],[4.53437415,0.02879331,96.90127408],[4.53437368,0.02879157,96.90043239],[4.53437321,0.02878983,96.89959213],[4.53437274,0.02878809,96.89875327],[4.53437226,0.02878635,96.89791577],[4.53437179,0.02878461,96.89707959],[4.53437132,0.02878286,96.89624469],[4.53437085,0.02878112,96.89541104],[4.53437038,0.02877938,96.8945786],[4.53436991,0.02877764,96.89374733],[4.53436944,0.0287759,96.8929172],[4.53436897,0.02877416,96.89208816],[4.5343685,0.02877242,96.89126019],[4.53436803,0.02877067,96.89043323],[4.53436755,0.02876893,96.88960726],[4.53436708,0.02876719,96.8887822],[4.53436661,0.02876545,96.88795798],[4.53436614,0.02876371,96.8871345],[4.53436567,0.02876197,96.88631168],[4.5343652,0.02876022,96.8854894],[4.53436473,0.02875848,96.88466758],[4.53436426,0.02875674,96.88384613],[4.53436379,0.028755,96.88302494],[4.53436331,0.02875326,96.88220395],[4.53436284,0.02875152,96.88138316],[4.53436237,0.02874978,96.88056256],[4.5343619,0.02874804,96.8797422],[4.53436142,0.02874629,96.87892209],[4.53436095,0.02874455,96.87810224],[4.53436048,0.02874281,96.87728268],[4.53436,0.02874107,96.87646342],[4.53435953,0.02873933,96.87564449],[4.53435905,0.02873759,96.87482591],[4.53435858,0.02873585,96.87400769],[4.53435811,0.02873411,96.87318986],[4.53435763,0.02873237,96.87237244],[4.53435716,0.02873063,96.87155543],[4.53435668,0.02872889,96.87073888],[4.53435621,0.02872715,96.86992278],[4.53435573,0.02872541,96.86910717],[4.53435526,0.02872367,96.86829206],[4.53435478,0.02872193,96.86747748],[4.5343543,0.02872019,96.86666344],[4.53435383,0.02871845,96.86584996],[4.53435335,0.0287167,96.86503707],[4.53435288,0.02871496,96.86422477],[4.5343524,0.02871322,96.8634131],[4.53435192,0.02871148,96.86260207],[4.53435145,0.02870974,96.8617917],[4.53435097,0.028708,96.86098202],[4.53435049,0.02870626,96.86017303],[4.53435002,0.02870452,96.85936477],[4.53434954,0.02870278,96.85855725],[4.53434906,0.02870104,96.85775049],[4.53434859,0.0286993,96.85694451],[4.53434811,0.02869756,96.85613933],[4.53434763,0.02869582,96.85533498],[4.53434716,0.02869408,96.85453152],[4.53434668,0.02869234,96.85372904],[4.5343462,0.0286906,96.85292761],[4.53434573,0.02868886,96.85212729],[4.53434525,0.02868712,96.85132814],[4.53434477,0.02868538,96.8505302],[4.5343443,0.02868364,96.8497335],[4.53434382,0.0286819,96.84893807],[4.53434334,0.02868016,96.84814393],[4.53434287,0.02867842,96.84735112],[4.53434239,0.02867668,96.84655968],[4.53434192,0.02867494,96.84576962],[4.53434144,0.0286732,96.84498098],[4.53434097,0.02867146,96.84419373],[4.53434049,0.02866972,96.84340785],[4.53434002,0.02866798,96.84262329],[4.53433954,0.02866623,96.84184003],[4.53433907,0.02866449,96.84105805],[4.53433859,0.02866275,96.8402773],[4.53433812,0.02866101,96.83949777],[4.53433764,0.02865927,96.83871941],[4.53433717,0.02865753,96.83794221],[4.53433669,0.02865579,96.83716612],[4.53433622,0.02865405,96.83639115],[4.53433575,0.0286523,96.83561729],[4.53433527,0.02865056,96.83484452],[4.5343348,0.02864882,96.83407285],[4.53433432,0.02864708,96.83330227],[4.53433385,0.02864534,96.83253277],[4.53433338,0.0286436,96.83176435],[4.5343329,0.02864186,96.830997],[4.53433243,0.02864012,96.83023071],[4.53433196,0.02863837,96.82946548],[4.53433148,0.02863663,96.82870131],[4.53433101,0.02863489,96.82793818],[4.53433054,0.02863315,96.82717609],[4.53433006,0.02863141,96.82641503],[4.53432959,0.02862967,96.825655],[4.53432912,0.02862792,96.824896],[4.53432864,0.02862618,96.82413801],[4.53432817,0.02862444,96.82338103],[4.5343277,0.0286227,96.82262505],[4.53432722,0.02862096,96.82187008],[4.53432675,0.02861922,96.82111609],[4.53432628,0.02861747,96.8203631],[4.53432581,0.02861573,96.81961108],[4.53432533,0.02861399,96.81886004],[4.53432486,0.02861225,96.81810996],[4.53432439,0.02861051,96.81736083],[4.53432391,0.02860876,96.8166126],[4.53432344,0.02860702,96.81586522],[4.53432297,0.02860528,96.81511866],[4.5343225,0.02860354,96.81437287],[4.53432202,0.0286018,96.8136278],[4.53432155,0.02860005,96.81288342],[4.53432108,0.02859831,96.81213966],[4.5343206,0.02859657,96.8113965],[4.53432013,0.02859483,96.81065389],[4.53431966,0.02859309,96.80991182],[4.53431918,0.02859135,96.80917031],[4.53431871,0.0285896,96.80842938],[4.53431824,0.02858786,96.80768906],[4.53431776,0.02858612,96.80694936],[4.53431729,0.02858438,96.80621032],[4.53431682,0.02858264,96.80547195],[4.53431634,0.0285809,96.80473428],[4.53431587,0.02857916,96.80399733],[4.53431539,0.02857741,96.80326112],[4.53431492,0.02857567,96.80252562],[4.53431445,0.02857393,96.80179083],[4.53431397,0.02857219,96.80105671],[4.5343135,0.02857045,96.80032324],[4.53431302,0.02856871,96.79959041],[4.53431255,0.02856697,96.79885819],[4.53431207,0.02856523,96.79812655],[4.5343116,0.02856348,96.79739548],[4.53431113,0.02856174,96.79666495],[4.53431065,0.02856,96.79593495],[4.53431018,0.02855826,96.79520544],[4.5343097,0.02855652,96.79447641],[4.53430923,0.02855478,96.79374784],[4.53430875,0.02855304,96.7930197],[4.53430827,0.0285513,96.79229197],[4.5343078,0.02854956,96.79156464],[4.53430732,0.02854782,96.79083766],[4.53430685,0.02854608,96.79011104],[4.53430637,0.02854434,96.78938474],[4.53430589,0.0285426,96.78865874],[4.53430542,0.02854086,96.78793301],[4.53430494,0.02853912,96.78720755],[4.53430446,0.02853738,96.78648232],[4.53430399,0.02853564,96.78575731],[4.53430351,0.0285339,96.78503248],[4.53430303,0.02853216,96.78430779],[4.53430255,0.02853042,96.78358322],[4.53430207,0.02852868,96.78285872],[4.5343016,0.02852694,96.78213426],[4.53430112,0.0285252,96.7814098],[4.53430064,0.02852346,96.78068531],[4.53430016,0.02852172,96.77996074],[4.53429968,0.02851998,96.77923607],[4.5342992,0.02851824,96.77851125],[4.53429872,0.0285165,96.77778625],[4.53429823,0.02851477,96.77706111],[4.53429775,0.02851303,96.77633586],[4.53429727,0.02851129,96.77561054],[4.53429679,0.02850955,96.77488517],[4.53429631,0.02850781,96.7741598],[4.53429582,0.02850608,96.77343447],[4.53429534,0.02850434,96.77270921],[4.53429486,0.0285026,96.77198405],[4.53429437,0.02850086,96.77125904],[4.53429389,0.02849912,96.77053421],[4.5342934,0.02849739,96.7698096],[4.53429292,0.02849565,96.76908524],[4.53429244,0.02849391,96.76836118],[4.53429195,0.02849218,96.76763743],[4.53429147,0.02849044,96.76691406],[4.53429098,0.0284887,96.76619108],[4.53429049,0.02848696,96.76546854],[4.53429001,0.02848523,96.76474647],[4.53428952,0.02848349,96.76402491],[4.53428904,0.02848175,96.76330389],[4.53428855,0.02848002,96.76258346],[4.53428807,0.02847828,96.76186364],[4.53428758,0.02847654,96.76114449],[4.53428709,0.02847481,96.76042602],[4.53428661,0.02847307,96.75970828],[4.53428612,0.02847133,96.7589913],[4.53428563,0.0284696,96.75827513],[4.53428515,0.02846786,96.75755979],[4.53428466,0.02846612,96.75684533],[4.53428417,0.02846439,96.75613178],[4.53428369,0.02846265,96.75541917],[4.5342832,0.02846092,96.75470755],[4.53428271,0.02845918,96.75399695],[4.53428223,0.02845744,96.75328738],[4.53428174,0.02845571,96.75257884],[4.53428125,0.02845397,96.75187133],[4.53428077,0.02845223,96.75116487],[4.53428028,0.0284505,96.75045946],[4.53427979,0.02844876,96.7497551],[4.53427931,0.02844703,96.7490518],[4.53427882,0.02844529,96.74834957],[4.53427833,0.02844355,96.74764841],[4.53427785,0.02844182,96.74694833],[4.53427736,0.02844008,96.74624933],[4.53427687,0.02843834,96.74555142],[4.53427639,0.02843661,96.7448546],[4.5342759,0.02843487,96.74415889],[4.53427542,0.02843314,96.74346428],[4.53427493,0.0284314,96.74277078],[4.53427444,0.02842966,96.7420784],[4.53427396,0.02842793,96.74138715],[4.53427347,0.02842619,96.74069702],[4.53427299,0.02842445,96.74000803],[4.5342725,0.02842272,96.73932018],[4.53427201,0.02842098,96.73863347],[4.53427153,0.02841925,96.73794791],[4.53427104,0.02841751,96.73726345],[4.53427056,0.02841577,96.73658005],[4.53427007,0.02841404,96.73589765],[4.53426958,0.0284123,96.7352162],[4.5342691,0.02841056,96.73453565],[4.53426861,0.02840883,96.73385595],[4.53426813,0.02840709,96.73317706],[4.53426764,0.02840536,96.73249892],[4.53426715,0.02840362,96.73182151],[4.53426667,0.02840188,96.7311448],[4.53426618,0.02840015,96.73046876],[4.53426569,0.02839841,96.72979337],[4.53426521,0.02839668,96.72911861],[4.53426472,0.02839494,96.72844449],[4.53426423,0.02839321,96.72777102],[4.53426375,0.02839147,96.72709823],[4.53426326,0.02838973,96.72642612],[4.53426277,0.028388,96.72575472],[4.53426228,0.02838626,96.72508405],[4.5342618,0.02838453,96.72441411],[4.53426131,0.02838279,96.72374493],[4.53426082,0.02838106,96.72307653],[4.53426033,0.02837932,96.72240891],[4.53425984,0.02837759,96.7217421],[4.53425936,0.02837585,96.72107611],[4.53425887,0.02837412,96.72041097],[4.53425838,0.02837238,96.71974668],[4.53425789,0.02837065,96.71908326],[4.5342574,0.02836891,96.71842073],[4.53425692,0.02836718,96.71775912],[4.53425643,0.02836544,96.71709842],[4.53425594,0.02836371,96.71643866],[4.53425545,0.02836197,96.71577987],[4.53425496,0.02836024,96.71512204],[4.53425447,0.0283585,96.71446521],[4.53425398,0.02835677,96.71380938],[4.53425349,0.02835503,96.71315457],[4.53425301,0.0283533,96.71250081],[4.53425252,0.02835156,96.7118481],[4.53425203,0.02834983,96.71119647],[4.53425154,0.02834809,96.71054593],[4.53425105,0.02834636,96.70989649],[4.53425056,0.02834463,96.70924818],[4.53425007,0.02834289,96.708601],[4.53424958,0.02834116,96.70795499],[4.5342491,0.02833942,96.70731014],[4.53424861,0.02833769,96.70666649],[4.53424812,0.02833595,96.70602404],[4.53424763,0.02833422,96.70538282],[4.53424714,0.02833248,96.70474283],[4.53424665,0.02833075,96.7041041],[4.53424616,0.02832902,96.70346665],[4.53424568,0.02832728,96.70283048],[4.53424519,0.02832555,96.70219562],[4.5342447,0.02832381,96.70156208],[4.53424421,0.02832208,96.70092988],[4.53424372,0.02832034,96.70029904],[4.53424324,0.02831861,96.69966956],[4.53424275,0.02831687,96.69904148],[4.53424226,0.02831514,96.6984148],[4.53424177,0.02831341,96.69778954],[4.53424128,0.02831167,96.69716572],[4.5342408,0.02830994,96.69654335],[4.53424031,0.0283082,96.69592246],[4.53423982,0.02830647,96.69530305],[4.53423933,0.02830473,96.69468514],[4.53423885,0.028303,96.69406875],[4.53423836,0.02830126,96.6934539],[4.53423787,0.02829953,96.69284061],[4.53423773,0.02829901,96.69265764],[4.534316,0.02827486,96.87892692],[4.53431616,0.02827538,96.87914546],[4.53431668,0.0282771,96.87987778],[4.53431721,0.02827883,96.88061162],[4.53431773,0.02828055,96.88134697],[4.53431826,0.02828228,96.88208381],[4.53431879,0.028284,96.88282214],[4.53431932,0.02828573,96.88356193],[4.53431984,0.02828745,96.88430317],[4.53432037,0.02828918,96.88504585],[4.5343209,0.02829091,96.88578995],[4.53432142,0.02829263,96.88653547],[4.53432195,0.02829436,96.88728238],[4.53432248,0.02829608,96.88803067],[4.53432301,0.02829781,96.88878033],[4.53432353,0.02829953,96.88953135],[4.53432406,0.02830126,96.8902837],[4.53432459,0.02830298,96.89103739],[4.53432512,0.02830471,96.89179238],[4.53432564,0.02830643,96.89254868],[4.53432617,0.02830816,96.89330626],[4.5343267,0.02830988,96.89406511],[4.53432723,0.02831161,96.89482521],[4.53432776,0.02831333,96.89558656],[4.53432828,0.02831506,96.89634913],[4.53432881,0.02831678,96.89711292],[4.53432934,0.02831851,96.89787791],[4.53432987,0.02832023,96.89864409],[4.5343304,0.02832195,96.89941144],[4.53433092,0.02832368,96.90017994],[4.53433145,0.0283254,96.90094959],[4.53433198,0.02832713,96.90172037],[4.53433251,0.02832885,96.90249226],[4.53433304,0.02833058,96.90326526],[4.53433356,0.0283323,96.90403934],[4.53433409,0.02833403,96.9048145],[4.53433462,0.02833575,96.90559071],[4.53433515,0.02833748,96.90636797],[4.53433567,0.0283392,96.90714626],[4.5343362,0.02834093,96.90792557],[4.53433673,0.02834265,96.90870588],[4.53433726,0.02834438,96.90948717],[4.53433778,0.0283461,96.91026944],[4.53433831,0.02834783,96.91105267],[4.53433884,0.02834955,96.91183685],[4.53433937,0.02835128,96.91262196],[4.53433989,0.028353,96.91340798],[4.53434042,0.02835472,96.91419491],[4.53434095,0.02835645,96.91498272],[4.53434148,0.02835817,96.91577141],[4.534342,0.0283599,96.91656096],[4.53434253,0.02836162,96.91735136],[4.53434306,0.02836335,96.91814259],[4.53434358,0.02836507,96.91893463],[4.53434411,0.0283668,96.91972748],[4.53434463,0.02836852,96.92052112],[4.53434516,0.02837025,96.92131553],[4.53434569,0.02837197,96.9221107],[4.53434621,0.0283737,96.92290662],[4.53434674,0.02837542,96.92370327],[4.53434726,0.02837715,96.92450064],[4.53434779,0.02837887,96.92529871],[4.53434831,0.0283806,96.92609748],[4.53434884,0.02838232,96.92689692],[4.53434936,0.02838405,96.92769706],[4.53434989,0.02838577,96.92849791],[4.53435041,0.0283875,96.92929946],[4.53435094,0.02838922,96.93010173],[4.53435146,0.02839095,96.93090473],[4.53435199,0.02839268,96.93170846],[4.53435251,0.0283944,96.93251294],[4.53435303,0.02839613,96.93331816],[4.53435356,0.02839785,96.93412415],[4.53435408,0.02839958,96.9349309],[4.5343546,0.0284013,96.93573842],[4.53435513,0.02840303,96.93654673],[4.53435565,0.02840475,96.93735583],[4.53435617,0.02840648,96.93816573],[4.5343567,0.02840821,96.93897644],[4.53435722,0.02840993,96.93978796],[4.53435774,0.02841166,96.9406003],[4.53435826,0.02841338,96.94141348],[4.53435879,0.02841511,96.9422275],[4.53435931,0.02841683,96.94304236],[4.53435983,0.02841856,96.94385808],[4.53436035,0.02842029,96.94467467],[4.53436088,0.02842201,96.94549213],[4.5343614,0.02842374,96.94631047],[4.53436192,0.02842546,96.94712969],[4.53436244,0.02842719,96.94794982],[4.53436296,0.02842892,96.94877085],[4.53436348,0.02843064,96.94959279],[4.534364,0.02843237,96.95041565],[4.53436452,0.02843409,96.95123945],[4.53436505,0.02843582,96.95206418],[4.53436557,0.02843755,96.95288985],[4.53436609,0.02843927,96.95371649],[4.53436661,0.028441,96.95454412],[4.53436713,0.02844273,96.95537277],[4.53436765,0.02844445,96.9562025],[4.53436817,0.02844618,96.95703332],[4.53436869,0.0284479,96.9578653],[4.53436921,0.02844963,96.95869845],[4.53436973,0.02845136,96.95953282],[4.53437025,0.02845308,96.96036845],[4.53437077,0.02845481,96.96120538],[4.53437129,0.02845654,96.96204364],[4.53437181,0.02845826,96.96288328],[4.53437233,0.02845999,96.96372432],[4.53437285,0.02846171,96.96456682],[4.53437337,0.02846344,96.9654108],[4.53437389,0.02846517,96.96625631],[4.53437441,0.02846689,96.96710338],[4.53437493,0.02846862,96.96795205],[4.53437545,0.02847035,96.96880233],[4.53437597,0.02847207,96.96965418],[4.53437649,0.0284738,96.97050757],[4.53437701,0.02847552,96.97136247],[4.53437753,0.02847725,96.97221886],[4.53437805,0.02847898,96.97307669],[4.53437857,0.0284807,96.97393594],[4.53437909,0.02848243,96.97479657],[4.53437961,0.02848415,96.97565856],[4.53438014,0.02848588,96.97652188],[4.53438066,0.02848761,96.97738648],[4.53438118,0.02848933,96.97825235],[4.5343817,0.02849106,96.97911944],[4.53438222,0.02849278,96.97998773],[4.53438274,0.02849451,96.98085719],[4.53438326,0.02849623,96.98172778],[4.53438378,0.02849796,96.98259947],[4.5343843,0.02849969,96.98347224],[4.53438483,0.02850141,96.98434604],[4.53438535,0.02850314,96.98522085],[4.53438587,0.02850486,96.98609664],[4.53438639,0.02850659,96.98697338],[4.53438691,0.02850831,96.98785103],[4.53438743,0.02851004,96.98872956],[4.53438795,0.02851176,96.98960894],[4.53438848,0.02851349,96.99048914],[4.534389,0.02851521,96.99137013],[4.53438952,0.02851694,96.99225187],[4.53439004,0.02851867,96.99313434],[4.53439056,0.02852039,96.9940175],[4.53439109,0.02852212,96.99490132],[4.53439161,0.02852384,96.99578578],[4.53439213,0.02852557,96.99667083],[4.53439265,0.02852729,96.99755645],[4.53439317,0.02852902,96.9984426],[4.5343937,0.02853074,96.99932926],[4.53439422,0.02853247,97.00021638],[4.53439474,0.02853419,97.00110395],[4.53439526,0.02853592,97.00199193],[4.53439579,0.02853764,97.00288028],[4.53439631,0.02853937,97.00376899],[4.53439683,0.02854109,97.004658],[4.53439735,0.02854282,97.0055473],[4.53439788,0.02854454,97.00643685],[4.5343984,0.02854627,97.00732661],[4.53439892,0.02854799,97.00821657],[4.53439945,0.02854972,97.00910668],[4.53439997,0.02855144,97.00999691],[4.53440049,0.02855317,97.01088725],[4.53440101,0.02855489,97.01177768],[4.53440154,0.02855662,97.01266824],[4.53440206,0.02855834,97.01355895],[4.53440258,0.02856007,97.01444982],[4.53440311,0.02856179,97.01534088],[4.53440363,0.02856352,97.01623213],[4.53440415,0.02856524,97.0171236],[4.53440468,0.02856697,97.01801531],[4.5344052,0.02856869,97.01890727],[4.53440572,0.02857041,97.0197995],[4.53440625,0.02857214,97.02069202],[4.53440677,0.02857386,97.02158485],[4.53440729,0.02857559,97.022478],[4.53440782,0.02857731,97.02337149],[4.53440834,0.02857904,97.02426534],[4.53440886,0.02858076,97.02515957],[4.53440939,0.02858249,97.0260542],[4.53440991,0.02858421,97.02694924],[4.53441044,0.02858594,97.02784471],[4.53441096,0.02858766,97.02874064],[4.53441148,0.02858938,97.02963702],[4.53441201,0.02859111,97.0305339],[4.53441253,0.02859283,97.03143128],[4.53441306,0.02859456,97.03232918],[4.53441358,0.02859628,97.03322762],[4.5344141,0.02859801,97.03412661],[4.53441463,0.02859973,97.03502618],[4.53441515,0.02860146,97.03592634],[4.53441568,0.02860318,97.03682711],[4.5344162,0.0286049,97.03772852],[4.53441673,0.02860663,97.03863056],[4.53441725,0.02860835,97.03953328],[4.53441778,0.02861008,97.04043667],[4.5344183,0.0286118,97.04134076],[4.53441882,0.02861353,97.04224557],[4.53441935,0.02861525,97.04315112],[4.53441987,0.02861697,97.04405742],[4.5344204,0.0286187,97.04496449],[4.53442092,0.02862042,97.04587235],[4.53442145,0.02862215,97.04678102],[4.53442197,0.02862387,97.04769052],[4.5344225,0.0286256,97.04860085],[4.53442302,0.02862732,97.04951205],[4.53442355,0.02862904,97.05042413],[4.53442408,0.02863077,97.0513371],[4.5344246,0.02863249,97.05225098],[4.53442513,0.02863422,97.0531658],[4.53442565,0.02863594,97.05408157],[4.53442618,0.02863766,97.05499831],[4.5344267,0.02863939,97.05591603],[4.53442723,0.02864111,97.05683475],[4.53442775,0.02864284,97.0577545],[4.53442828,0.02864456,97.05867529],[4.53442881,0.02864629,97.05959713],[4.53442933,0.02864801,97.06052005],[4.53442986,0.02864973,97.06144406],[4.53443038,0.02865146,97.06236913],[4.53443091,0.02865318,97.06329522],[4.53443144,0.02865491,97.06422224],[4.53443196,0.02865663,97.06515015],[4.53443249,0.02865835,97.06607888],[4.53443301,0.02866008,97.06700837],[4.53443354,0.0286618,97.06793854],[4.53443406,0.02866353,97.06886935],[4.53443459,0.02866525,97.06980072],[4.53443511,0.02866698,97.0707326],[4.53443564,0.0286687,97.07166492],[4.53443616,0.02867042,97.07259761],[4.53443669,0.02867215,97.07353064],[4.53443721,0.02867387,97.07446396],[4.53443774,0.0286756,97.07539759],[4.53443826,0.02867732,97.0763315],[4.53443878,0.02867905,97.07726569],[4.53443931,0.02868077,97.07820015],[4.53443983,0.0286825,97.07913487],[4.53444035,0.02868422,97.08006985],[4.53444088,0.02868595,97.08100507],[4.5344414,0.02868767,97.08194053],[4.53444192,0.0286894,97.08287622],[4.53444244,0.02869113,97.08381213],[4.53444297,0.02869285,97.08474825],[4.53444349,0.02869458,97.08568457],[4.53444401,0.0286963,97.08662108],[4.53444453,0.02869803,97.08755778],[4.53444505,0.02869975,97.08849466],[4.53444557,0.02870148,97.0894317],[4.5344461,0.0287032,97.09036891],[4.53444662,0.02870493,97.09130626],[4.53444714,0.02870666,97.09224376],[4.53444766,0.02870838,97.09318139],[4.53444818,0.02871011,97.09411915],[4.53444871,0.02871183,97.09505703],[4.53444923,0.02871356,97.09599501],[4.53444975,0.02871528,97.0969331],[4.53445027,0.02871701,97.09787128],[4.53445079,0.02871873,97.09880954],[4.53445132,0.02872046,97.09974787],[4.53445184,0.02872219,97.10068627],[4.53445236,0.02872391,97.10162473],[4.53445288,0.02872564,97.10256324],[4.53445341,0.02872736,97.10350179],[4.53445393,0.02872909,97.10444038],[4.53445445,0.02873081,97.10537899],[4.53445497,0.02873254,97.10631761],[4.5344555,0.02873426,97.10725624],[4.53445602,0.02873599,97.10819491],[4.53445654,0.02873771,97.10913367],[4.53445706,0.02873944,97.11007257],[4.53445759,0.02874117,97.11101165],[4.53445811,0.02874289,97.1119509],[4.53445863,0.02874462,97.11289036],[4.53445915,0.02874634,97.11383004],[4.53445968,0.02874807,97.11476996],[4.5344602,0.02874979,97.11571013],[4.53446072,0.02875152,97.11665057],[4.53446125,0.02875324,97.11759129],[4.53446177,0.02875497,97.11853232],[4.53446229,0.02875669,97.11947367],[4.53446282,0.02875842,97.12041536],[4.53446334,0.02876014,97.1213574],[4.53446386,0.02876187,97.12229982],[4.53446439,0.02876359,97.12324262],[4.53446491,0.02876532,97.12418582],[4.53446543,0.02876705,97.12512945],[4.53446596,0.02876877,97.12607351],[4.53446648,0.0287705,97.12701803],[4.534467,0.02877222,97.12796302],[4.53446753,0.02877395,97.1289085],[4.53446805,0.02877567,97.12985448],[4.53446857,0.0287774,97.13080099],[4.5344691,0.02877912,97.13174804],[4.53446962,0.02878085,97.13269564],[4.53447014,0.02878257,97.13364381],[4.53447067,0.0287843,97.13459257],[4.53447119,0.02878602,97.13554194],[4.53447172,0.02878775,97.13649193],[4.53447224,0.02878947,97.13744256],[4.53447276,0.0287912,97.13839384],[4.53447329,0.02879293,97.1393458],[4.53447381,0.02879465,97.14029844],[4.53447433,0.02879638,97.14125179],[4.53447486,0.0287981,97.14220586],[4.53447538,0.02879983,97.14316068],[4.53447591,0.02880155,97.14411624],[4.53447643,0.02880328,97.14507258],[4.53447695,0.028805,97.14602971],[4.53447748,0.02880673,97.14698764],[4.534478,0.02880845,97.1479464],[4.53447852,0.02881018,97.14890599],[4.53447905,0.0288119,97.14986644],[4.53447957,0.02881363,97.15082776],[4.5344801,0.02881535,97.15178996],[4.53448062,0.02881708,97.15275307],[4.53448114,0.02881881,97.15371711],[4.53448167,0.02882053,97.15468207],[4.53448219,0.02882226,97.155648],[4.53448272,0.02882398,97.15661488],[4.53448324,0.02882571,97.1575827],[4.53448376,0.02882743,97.15855148],[4.53448429,0.02882916,97.15952119],[4.53448481,0.02883088,97.16049183],[4.53448533,0.02883261,97.1614634],[4.53448586,0.02883433,97.16243589],[4.53448638,0.02883606,97.1634093],[4.5344869,0.02883779,97.16438362],[4.53448743,0.02883951,97.16535884],[4.53448795,0.02884124,97.16633496],[4.53448847,0.02884296,97.16731198],[4.534489,0.02884469,97.16828989],[4.53448952,0.02884641,97.16926868],[4.53449004,0.02884814,97.17024835],[4.53449057,0.02884986,97.17122889],[4.53449109,0.02885159,97.1722103],[4.53449161,0.02885332,97.17319257],[4.53449214,0.02885504,97.17417569],[4.53449266,0.02885677,97.17515967],[4.53449318,0.02885849,97.17614449],[4.53449371,0.02886022,97.17713015],[4.53449423,0.02886195,97.17811664],[4.53449475,0.02886367,97.17910397],[4.53449527,0.0288654,97.18009211],[4.5344958,0.02886712,97.18108108],[4.53449632,0.02886885,97.18207085],[4.53449684,0.02887057,97.18306144],[4.53449736,0.0288723,97.18405282],[4.53449789,0.02887403,97.185045],[4.53449841,0.02887575,97.18603797],[4.53449893,0.02887748,97.18703173],[4.53449945,0.0288792,97.18802626],[4.53449998,0.02888093,97.18902157],[4.5345005,0.02888266,97.19001765],[4.53450102,0.02888438,97.19101449],[4.53450154,0.02888611,97.19201209],[4.53450207,0.02888784,97.19301044],[4.53450259,0.02888956,97.19400954],[4.53450311,0.02889129,97.19500938],[4.53450363,0.02889301,97.19600995],[4.53450415,0.02889474,97.19701126],[4.53450468,0.02889647,97.19801329],[4.5345052,0.02889819,97.19901604],[4.53450572,0.02889992,97.20001951],[4.53450624,0.02890164,97.20102368],[4.53450676,0.02890337,97.20202856],[4.53450729,0.0289051,97.20303413],[4.53450781,0.02890682,97.2040404],[4.53450833,0.02890855,97.20504735],[4.53450885,0.02891028,97.20605499],[4.53450937,0.028912,97.2070633],[4.5345099,0.02891373,97.20807228],[4.53451042,0.02891546,97.20908193],[4.53451094,0.02891718,97.21009224],[4.53451146,0.02891891,97.2111032],[4.53451198,0.02892063,97.21211481],[4.5345125,0.02892236,97.21312707],[4.53451303,0.02892409,97.21413996],[4.53440978,0.02895583,96.96114451]]],"type":"Polygon"},"type":"feature","properties":{"leftLanes":[{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":1,"type":"shoulder","predecessorId":1},{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":2,"type":"none","predecessorId":2}],"roadId":"1004600","singleSide":false,"rightLanes":[{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"rules":[{"value":"barred"}],"id":-3,"type":"restricted","predecessorId":-3},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1}]}},{"geometry":{"coordinates":[[[4.53698326,0.03877713,97.94868424],[4.5369827,0.03877541,97.94843076],[4.53698213,0.03877369,97.9481755],[4.53698156,0.03877197,97.94791847],[4.536981,0.03877025,97.94765964],[4.53698043,0.03876853,97.94739903],[4.53697986,0.03876681,97.94713663],[4.5369793,0.0387651,97.94687242],[4.53697873,0.03876338,97.94660641],[4.53697816,0.03876166,97.94633859],[4.53697759,0.03875994,97.94606896],[4.53697702,0.03875822,97.94579753],[4.53697645,0.03875651,97.94552428],[4.53697588,0.03875479,97.94524923],[4.53697532,0.03875307,97.94497236],[4.53697475,0.03875135,97.94469369],[4.53697418,0.03874964,97.94441321],[4.53697361,0.03874792,97.94413093],[4.53697304,0.0387462,97.94384685],[4.53697248,0.03874448,97.94356098],[4.53697191,0.03874276,97.94327332],[4.53697134,0.03874105,97.94298388],[4.53697078,0.03873933,97.94269266],[4.53697021,0.03873761,97.94239967],[4.53696964,0.03873589,97.94210492],[4.53696908,0.03873417,97.94180854],[4.53696852,0.03873246,97.94151118],[4.53696795,0.03873074,97.94121384],[4.53696739,0.03872902,97.94091763],[4.53696683,0.0387273,97.94062366],[4.53696627,0.03872558,97.94033302],[4.53696571,0.03872386,97.94004682],[4.53696515,0.03872214,97.93976603],[4.5369646,0.03872042,97.93949152],[4.53696404,0.0387187,97.93922413],[4.53696349,0.03871698,97.93896471],[4.53696293,0.03871526,97.93871412],[4.53696238,0.03871354,97.93847321],[4.53696182,0.03871182,97.93824282],[4.53696127,0.0387101,97.9380238],[4.53696072,0.03870838,97.93781699],[4.53696016,0.03870666,97.93762325],[4.53695961,0.03870494,97.93744342],[4.53695906,0.03870322,97.93727834],[4.53695851,0.0387015,97.93712885],[4.53695796,0.03869978,97.9369958],[4.53695741,0.03869806,97.93688003],[4.53695685,0.03869634,97.93678238],[4.5369563,0.03869462,97.93670369],[4.53695575,0.0386929,97.93664479],[4.5369552,0.0386912,97.93660679],[4.53706542,0.03866439,98.14782787],[4.53706585,0.03866613,98.14725313],[4.53706627,0.03866788,98.14670005],[4.5370667,0.03866963,98.14617286],[4.53706713,0.03867139,98.14567008],[4.53706756,0.03867314,98.14519024],[4.53706799,0.03867489,98.14473185],[4.53706842,0.03867664,98.14429345],[4.53706886,0.03867839,98.14387354],[4.53706929,0.03868014,98.14347067],[4.53706973,0.03868189,98.14308336],[4.53707016,0.03868364,98.14271014],[4.5370706,0.03868539,98.14234955],[4.53707103,0.03868714,98.14200011],[4.53707147,0.03868889,98.14166036],[4.5370719,0.03869064,98.14132884],[4.53707233,0.03869239,98.14100409],[4.53707277,0.03869414,98.14068464],[4.5370732,0.03869589,98.14036905],[4.53707364,0.03869764,98.14005585],[4.53707407,0.0386994,98.13974358],[4.5370745,0.03870115,98.1394308],[4.53707493,0.0387029,98.13911605],[4.53707536,0.03870465,98.13879788],[4.53707579,0.0387064,98.13847485],[4.53707621,0.03870815,98.13814551],[4.53707664,0.03870991,98.13780861],[4.53707706,0.03871166,98.13746385],[4.53707749,0.03871341,98.13711165],[4.53707791,0.03871516,98.13675251],[4.53707833,0.03871692,98.13638697],[4.53707874,0.03871867,98.13601552],[4.53707916,0.03872043,98.1356387],[4.53707958,0.03872218,98.135257],[4.53707999,0.03872394,98.13487096],[4.53708041,0.03872569,98.13448108],[4.53708082,0.03872745,98.13408786],[4.53708123,0.0387292,98.13369183],[4.53708164,0.03873096,98.13329348],[4.53708206,0.03873271,98.13289332],[4.53708247,0.03873447,98.13249186],[4.53708288,0.03873623,98.1320896],[4.53708329,0.03873798,98.13168705],[4.5370837,0.03873974,98.1312847],[4.53708412,0.03874149,98.13088305],[4.53708453,0.03874325,98.1304826],[4.53708494,0.038745,98.13008386],[4.53708535,0.03874676,98.12968731],[4.53708577,0.03874851,98.12929344],[4.53708618,0.03875027,98.12890276],[4.5370866,0.03875202,98.12851575],[4.53698326,0.03877713,97.94868424]]],"type":"Polygon"},"type":"feature","properties":{"roadId":"3000170","singleSide":false,"rightLanes":[{"successorId":-4,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"id":-4,"type":"none","predecessorId":-6},{"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-3,"type":"shoulder","predecessorId":-5},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-4},{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3}]}}],"type":"FeatureCollection"}
\ No newline at end of file
diff --git a/asset/media/3d_preview/lanes.json b/asset/media/3d_preview/lanes.json
deleted file mode 100644
index aeb4016..0000000
--- a/asset/media/3d_preview/lanes.json
+++ /dev/null
@@ -1 +0,0 @@
-{"features":[{"geometry":{"coordinates":[[[4.53266994,0.02363449,94.72174826],[4.53266938,0.02363277,94.72072009],[4.53266882,0.02363106,94.71968043],[4.53266826,0.02362935,94.71863145],[4.5326677,0.02362763,94.71757532],[4.53266713,0.02362592,94.71651425],[4.53266657,0.02362421,94.71545045],[4.53266599,0.0236225,94.71438616],[4.53266541,0.02362079,94.71332361],[4.53266482,0.02361909,94.71226508],[4.53266422,0.02361739,94.71121128],[4.53266362,0.02361569,94.71015669],[4.53266301,0.02361399,94.70909415],[4.5326624,0.0236123,94.70801756],[4.53266177,0.02361061,94.70692522],[4.53266114,0.02360892,94.70581656],[4.5326605,0.02360723,94.70469099],[4.53265986,0.02360554,94.70354791],[4.53265922,0.02360386,94.70238673],[4.53265857,0.02360217,94.70120682],[4.53265793,0.02360049,94.70000758],[4.53265729,0.0235988,94.69878833],[4.53265665,0.02359711,94.69754729],[4.53265601,0.02359543,94.69628175],[4.53265537,0.02359374,94.69499333],[4.53265473,0.02359205,94.69368796],[4.53265409,0.02359037,94.69236954],[4.53265345,0.02358868,94.69103894],[4.53265281,0.023587,94.68969666],[4.53265216,0.02358531,94.68834323],[4.5326515,0.02358363,94.68697919],[4.53265083,0.02358196,94.68560509],[4.53265014,0.02358029,94.68422151],[4.53264945,0.02357862,94.68282905],[4.53264874,0.02357695,94.681429],[4.53264803,0.02357529,94.68002539],[4.53264731,0.02357363,94.67862298],[4.5326466,0.02357197,94.67722472],[4.5326459,0.0235703,94.67582621],[4.5326452,0.02356864,94.67442114],[4.53264451,0.02356697,94.67300317],[4.53264383,0.0235653,94.67156592],[4.53264314,0.02356363,94.67010297],[4.53264247,0.02356196,94.66860783],[4.53264179,0.02356028,94.66707402],[4.53264111,0.02355861,94.66549496],[4.53264041,0.02355695,94.66386407],[4.5326397,0.02355529,94.66217471],[4.53263897,0.02355363,94.6604202],[4.5326382,0.02355199,94.65859382],[4.53263741,0.02355038,94.65671402],[4.53267579,0.02353745,94.65671402],[4.53267652,0.02353908,94.65859382],[4.53267726,0.02354073,94.6604202],[4.53267798,0.02354239,94.66217471],[4.53267868,0.02354406,94.66386407],[4.53267938,0.02354572,94.66549496],[4.53268007,0.02354739,94.66707402],[4.53268075,0.02354906,94.66860783],[4.53268143,0.02355074,94.67010297],[4.5326821,0.02355241,94.67156592],[4.53268278,0.02355409,94.67300317],[4.53268345,0.02355576,94.67442114],[4.53268412,0.02355744,94.67582621],[4.5326848,0.02355911,94.67722472],[4.53268548,0.02356078,94.67862298],[4.53268617,0.02356245,94.68002539],[4.53268686,0.02356412,94.681429],[4.53268755,0.02356579,94.68282905],[4.53268824,0.02356746,94.68422151],[4.53268894,0.02356913,94.68560509],[4.53268963,0.0235708,94.68697919],[4.53269032,0.02357247,94.68834323],[4.53269101,0.02357414,94.68969666],[4.53269169,0.02357581,94.69103894],[4.53269237,0.02357748,94.69236954],[4.53269304,0.02357916,94.69368796],[4.53269371,0.02358083,94.69499333],[4.53269438,0.02358251,94.69628175],[4.53269503,0.0235842,94.69754729],[4.53269568,0.02358588,94.69878833],[4.53269631,0.02358757,94.70000758],[4.53269694,0.02358926,94.70120682],[4.53269757,0.02359095,94.70238673],[4.53269818,0.02359265,94.70354791],[4.53269879,0.02359434,94.70469099],[4.53269939,0.02359604,94.70581656],[4.53269999,0.02359774,94.70692522],[4.53270058,0.02359945,94.70801756],[4.53270116,0.02360115,94.70909415],[4.53270174,0.02360286,94.71015669],[4.53270232,0.02360457,94.71121128],[4.53270289,0.02360628,94.71226508],[4.53270347,0.02360798,94.71332361],[4.53270405,0.02360969,94.71438616],[4.53270463,0.0236114,94.71545045],[4.53270521,0.0236131,94.71651425],[4.53270579,0.02361481,94.71757532],[4.53270637,0.02361652,94.71863145],[4.53270695,0.02361823,94.71968043],[4.53270753,0.02361993,94.72072009],[4.5327081,0.02362164,94.72174826],[4.53266994,0.02363449,94.72174826]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-5,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"roadId":"3000440","id":-5,"type":"none","predecessorId":-7,"sOffset":0.0}},{"geometry":{"coordinates":[[[4.5327081,0.02362164,94.72174826],[4.53270753,0.02361993,94.72072009],[4.53270695,0.02361823,94.71968043],[4.53270637,0.02361652,94.71863145],[4.53270579,0.02361481,94.71757532],[4.53270521,0.0236131,94.71651425],[4.53270463,0.0236114,94.71545045],[4.53270405,0.02360969,94.71438616],[4.53270347,0.02360798,94.71332361],[4.53270289,0.02360628,94.71226508],[4.53270232,0.02360457,94.71121128],[4.53270174,0.02360286,94.71015669],[4.53270116,0.02360115,94.70909415],[4.53270058,0.02359945,94.70801756],[4.53269999,0.02359774,94.70692522],[4.53269939,0.02359604,94.70581656],[4.53269879,0.02359434,94.70469099],[4.53269818,0.02359265,94.70354791],[4.53269757,0.02359095,94.70238673],[4.53269694,0.02358926,94.70120682],[4.53269631,0.02358757,94.70000758],[4.53269568,0.02358588,94.69878833],[4.53269503,0.0235842,94.69754729],[4.53269438,0.02358251,94.69628175],[4.53269371,0.02358083,94.69499333],[4.53269304,0.02357916,94.69368796],[4.53269237,0.02357748,94.69236954],[4.53269169,0.02357581,94.69103894],[4.53269101,0.02357414,94.68969666],[4.53269032,0.02357247,94.68834323],[4.53268963,0.0235708,94.68697919],[4.53268894,0.02356913,94.68560509],[4.53268824,0.02356746,94.68422151],[4.53268755,0.02356579,94.68282905],[4.53268686,0.02356412,94.681429],[4.53268617,0.02356245,94.68002539],[4.53268548,0.02356078,94.67862298],[4.5326848,0.02355911,94.67722472],[4.53268412,0.02355744,94.67582621],[4.53268345,0.02355576,94.67442114],[4.53268278,0.02355409,94.67300317],[4.5326821,0.02355241,94.67156592],[4.53268143,0.02355074,94.67010297],[4.53268075,0.02354906,94.66860783],[4.53268007,0.02354739,94.66707402],[4.53267938,0.02354572,94.66549496],[4.53267868,0.02354406,94.66386407],[4.53267798,0.02354239,94.66217471],[4.53267726,0.02354073,94.6604202],[4.53267652,0.02353908,94.65859382],[4.53267579,0.02353745,94.65671402],[4.53267707,0.02353702,94.65671402],[4.53267781,0.02353864,94.65859382],[4.53267855,0.0235403,94.6604202],[4.53267927,0.02354196,94.66217471],[4.53267998,0.02354362,94.66386407],[4.53268067,0.02354529,94.66549496],[4.53268136,0.02354696,94.66707402],[4.53268205,0.02354863,94.66860783],[4.53268272,0.0235503,94.67010297],[4.5326834,0.02355198,94.67156592],[4.53268407,0.02355365,94.67300317],[4.53268474,0.02355533,94.67442114],[4.53268541,0.023557,94.67582621],[4.53268609,0.02355868,94.67722472],[4.53268677,0.02356035,94.67862298],[4.53268745,0.02356202,94.68002539],[4.53268814,0.02356369,94.681429],[4.53268883,0.02356536,94.68282905],[4.53268952,0.02356703,94.68422151],[4.53269022,0.0235687,94.68560509],[4.53269091,0.02357037,94.68697919],[4.5326916,0.02357204,94.68834323],[4.53269228,0.02357371,94.68969666],[4.53269297,0.02357538,94.69103894],[4.53269364,0.02357705,94.69236954],[4.53269432,0.02357873,94.69368796],[4.53269499,0.02358041,94.69499333],[4.53269565,0.02358208,94.69628175],[4.53269631,0.02358377,94.69754729],[4.53269696,0.02358545,94.69878833],[4.5326976,0.02358714,94.70000758],[4.53269823,0.02358883,94.70120682],[4.53269885,0.02359052,94.70238673],[4.53269947,0.02359221,94.70354791],[4.53270008,0.02359391,94.70469099],[4.53270069,0.02359561,94.70581656],[4.53270129,0.02359731,94.70692522],[4.53270188,0.02359901,94.70801756],[4.53270247,0.02360071,94.70909415],[4.53270306,0.02360242,94.71015669],[4.53270364,0.02360412,94.71121128],[4.53270423,0.02360583,94.71226508],[4.53270481,0.02360753,94.71332361],[4.5327054,0.02360924,94.71438616],[4.53270599,0.02361094,94.71545045],[4.53270659,0.02361264,94.71651425],[4.53270718,0.02361435,94.71757532],[4.53270777,0.02361605,94.71863145],[4.53270836,0.02361775,94.71968043],[4.53270895,0.02361946,94.72072009],[4.53270954,0.02362116,94.72174826],[4.5327081,0.02362164,94.72174826]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-4,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"3000440","id":-4,"type":"border","predecessorId":-6,"sOffset":0.0}},{"geometry":{"coordinates":[[[4.53270954,0.02362116,94.57174826],[4.53270895,0.02361946,94.57072009],[4.53270836,0.02361775,94.56968043],[4.53270777,0.02361605,94.56863145],[4.53270718,0.02361435,94.56757532],[4.53270659,0.02361264,94.56651425],[4.53270599,0.02361094,94.56545045],[4.5327054,0.02360924,94.56438616],[4.53270481,0.02360753,94.56332361],[4.53270423,0.02360583,94.56226508],[4.53270364,0.02360412,94.56121128],[4.53270306,0.02360242,94.56015669],[4.53270247,0.02360071,94.55909415],[4.53270188,0.02359901,94.55801756],[4.53270129,0.02359731,94.55692522],[4.53270069,0.02359561,94.55581656],[4.53270008,0.02359391,94.55469099],[4.53269947,0.02359221,94.55354791],[4.53269885,0.02359052,94.55238673],[4.53269823,0.02358883,94.55120682],[4.5326976,0.02358714,94.55000758],[4.53269696,0.02358545,94.54878833],[4.53269631,0.02358377,94.54754729],[4.53269565,0.02358208,94.54628175],[4.53269499,0.02358041,94.54499333],[4.53269432,0.02357873,94.54368796],[4.53269364,0.02357705,94.54236954],[4.53269297,0.02357538,94.54103894],[4.53269228,0.02357371,94.53969666],[4.5326916,0.02357204,94.53834323],[4.53269091,0.02357037,94.53697919],[4.53269022,0.0235687,94.53560509],[4.53268952,0.02356703,94.53422151],[4.53268883,0.02356536,94.53282905],[4.53268814,0.02356369,94.531429],[4.53268745,0.02356202,94.53002539],[4.53268677,0.02356035,94.52862298],[4.53268609,0.02355868,94.52722472],[4.53268541,0.023557,94.52582621],[4.53268474,0.02355533,94.52442114],[4.53268407,0.02355365,94.52300317],[4.5326834,0.02355198,94.52156592],[4.53268272,0.0235503,94.52010297],[4.53268205,0.02354863,94.51860783],[4.53268136,0.02354696,94.51707402],[4.53268067,0.02354529,94.51549496],[4.53267998,0.02354362,94.51386407],[4.53267927,0.02354196,94.51217471],[4.53267855,0.0235403,94.5104202],[4.53267781,0.02353864,94.50859382],[4.53267707,0.02353702,94.50671402],[4.53268013,0.02353599,94.51621299],[4.53268083,0.02353763,94.51795039],[4.53268154,0.02353929,94.51968246],[4.53268225,0.02354095,94.52138625],[4.53268296,0.02354261,94.52306177],[4.53268367,0.02354428,94.52470908],[4.53268438,0.02354594,94.52632822],[4.53268509,0.0235476,94.52791925],[4.53268579,0.02354927,94.52948224],[4.5326865,0.02355093,94.53101729],[4.5326872,0.0235526,94.53252449],[4.5326879,0.02355426,94.53400394],[4.53268859,0.02355593,94.53545575],[4.53268928,0.0235576,94.53688006],[4.53268997,0.02355927,94.538277],[4.53269065,0.02356095,94.53964672],[4.53269132,0.02356262,94.54098939],[4.53269199,0.0235643,94.54230516],[4.53269266,0.02356597,94.54359489],[4.53269332,0.02356765,94.54486212],[4.53269397,0.02356934,94.54611106],[4.53269463,0.02357102,94.54734589],[4.53269527,0.0235727,94.54857078],[4.53269592,0.02357439,94.54978986],[4.53269657,0.02357607,94.55100724],[4.53269722,0.02357775,94.55222703],[4.53269787,0.02357944,94.55345292],[4.53269852,0.02358112,94.55468553],[4.53269917,0.0235828,94.5559232],[4.53269982,0.02358448,94.55716421],[4.53270048,0.02358617,94.5584068],[4.53270113,0.02358785,94.55964814],[4.53270178,0.02358953,94.56088432],[4.53270243,0.02359122,94.56211142],[4.53270307,0.0235929,94.56332555],[4.53270371,0.02359459,94.56452285],[4.53270434,0.02359628,94.5656995],[4.53270496,0.02359797,94.56685169],[4.53270558,0.02359967,94.56797567],[4.53270618,0.02360137,94.56906883],[4.53270677,0.02360307,94.57013299],[4.53270736,0.02360477,94.57117108],[4.53270794,0.02360648,94.57218601],[4.53270851,0.02360819,94.57318062],[4.53270907,0.0236099,94.57415776],[4.53270964,0.02361161,94.57512024],[4.5327102,0.02361333,94.57607085],[4.53271076,0.02361504,94.57701233],[4.53271131,0.02361676,94.57794742],[4.53271187,0.02361847,94.57887881],[4.53271243,0.02362019,94.57980918],[4.53270954,0.02362116,94.57174826]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"3000440","id":-3,"type":"border","predecessorId":-5,"sOffset":0.0}},{"geometry":{"coordinates":[[[4.53271243,0.02362019,94.57980918],[4.53271187,0.02361847,94.57887881],[4.53271131,0.02361676,94.57794742],[4.53271076,0.02361504,94.57701233],[4.5327102,0.02361333,94.57607085],[4.53270964,0.02361161,94.57512024],[4.53270907,0.0236099,94.57415776],[4.53270851,0.02360819,94.57318062],[4.53270794,0.02360648,94.57218601],[4.53270736,0.02360477,94.57117108],[4.53270677,0.02360307,94.57013299],[4.53270618,0.02360137,94.56906883],[4.53270558,0.02359967,94.56797567],[4.53270496,0.02359797,94.56685169],[4.53270434,0.02359628,94.5656995],[4.53270371,0.02359459,94.56452285],[4.53270307,0.0235929,94.56332555],[4.53270243,0.02359122,94.56211142],[4.53270178,0.02358953,94.56088432],[4.53270113,0.02358785,94.55964814],[4.53270048,0.02358617,94.5584068],[4.53269982,0.02358448,94.55716421],[4.53269917,0.0235828,94.5559232],[4.53269852,0.02358112,94.55468553],[4.53269787,0.02357944,94.55345292],[4.53269722,0.02357775,94.55222703],[4.53269657,0.02357607,94.55100724],[4.53269592,0.02357439,94.54978986],[4.53269527,0.0235727,94.54857078],[4.53269463,0.02357102,94.54734589],[4.53269397,0.02356934,94.54611106],[4.53269332,0.02356765,94.54486212],[4.53269266,0.02356597,94.54359489],[4.53269199,0.0235643,94.54230516],[4.53269132,0.02356262,94.54098939],[4.53269065,0.02356095,94.53964672],[4.53268997,0.02355927,94.538277],[4.53268928,0.0235576,94.53688006],[4.53268859,0.02355593,94.53545575],[4.5326879,0.02355426,94.53400394],[4.5326872,0.0235526,94.53252449],[4.5326865,0.02355093,94.53101729],[4.53268579,0.02354927,94.52948224],[4.53268509,0.0235476,94.52791925],[4.53268438,0.02354594,94.52632822],[4.53268367,0.02354428,94.52470908],[4.53268296,0.02354261,94.52306177],[4.53268225,0.02354095,94.52138625],[4.53268154,0.02353929,94.51968246],[4.53268083,0.02353763,94.51795039],[4.53268013,0.02353599,94.51621299],[4.53268133,0.02353558,94.51993667],[4.53268202,0.02353723,94.52161724],[4.53268271,0.0235389,94.52328097],[4.53268339,0.02354057,94.52490759],[4.53268408,0.02354224,94.52649914],[4.53268476,0.02354391,94.52805764],[4.53268544,0.02354558,94.52958512],[4.53268612,0.02354725,94.5310836],[4.5326868,0.02354893,94.5325551],[4.53268748,0.0235506,94.53400162],[4.53268815,0.02355228,94.53542517],[4.53268883,0.02355395,94.53682775],[4.5326895,0.02355563,94.53821136],[4.53269017,0.0235573,94.53957797],[4.53269085,0.02355898,94.54092957],[4.53269152,0.02356065,94.54226815],[4.53269219,0.02356233,94.54359568],[4.53269286,0.023564,94.54491411],[4.53269354,0.02356568,94.54622542],[4.53269421,0.02356735,94.54753157],[4.53269489,0.02356903,94.5488345],[4.53269556,0.0235707,94.55013615],[4.53269624,0.02357238,94.55143848],[4.53269692,0.02357405,94.55274342],[4.5326976,0.02357572,94.5540529],[4.53269829,0.02357739,94.55536884],[4.53269897,0.02357907,94.5566928],[4.53269966,0.02358074,94.55802327],[4.53270034,0.02358241,94.55935648],[4.53270103,0.02358408,94.56068862],[4.53270172,0.02358575,94.56201589],[4.5327024,0.02358742,94.56333456],[4.53270307,0.0235891,94.56464089],[4.53270375,0.02359077,94.56593119],[4.53270441,0.02359245,94.56720179],[4.53270507,0.02359413,94.56844905],[4.53270572,0.02359581,94.56966937],[4.53270636,0.0235975,94.57085918],[4.53270699,0.02359919,94.57201493],[4.5327076,0.02360089,94.57313422],[4.53270821,0.02360259,94.5742191],[4.5327088,0.02360429,94.57527272],[4.53270938,0.02360599,94.57629816],[4.53270996,0.0236077,94.57729852],[4.53271053,0.02360941,94.57827684],[4.5327111,0.02361112,94.57923612],[4.53271166,0.02361284,94.58017937],[4.53271222,0.02361455,94.58110955],[4.53271277,0.02361627,94.58202957],[4.53271333,0.02361798,94.58294234],[4.53271388,0.0236197,94.58385073],[4.53271243,0.02362019,94.57980918]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"3000440","id":-2,"type":"shoulder","predecessorId":-4,"sOffset":0.0}},{"geometry":{"coordinates":[[[4.53271388,0.0236197,94.58385073],[4.53271333,0.02361798,94.58294234],[4.53271277,0.02361627,94.58202957],[4.53271222,0.02361455,94.58110955],[4.53271166,0.02361284,94.58017937],[4.5327111,0.02361112,94.57923612],[4.53271053,0.02360941,94.57827684],[4.53270996,0.0236077,94.57729852],[4.53270938,0.02360599,94.57629816],[4.5327088,0.02360429,94.57527272],[4.53270821,0.02360259,94.5742191],[4.5327076,0.02360089,94.57313422],[4.53270699,0.02359919,94.57201493],[4.53270636,0.0235975,94.57085918],[4.53270572,0.02359581,94.56966937],[4.53270507,0.02359413,94.56844905],[4.53270441,0.02359245,94.56720179],[4.53270375,0.02359077,94.56593119],[4.53270307,0.0235891,94.56464089],[4.5327024,0.02358742,94.56333456],[4.53270172,0.02358575,94.56201589],[4.53270103,0.02358408,94.56068862],[4.53270034,0.02358241,94.55935648],[4.53269966,0.02358074,94.55802327],[4.53269897,0.02357907,94.5566928],[4.53269829,0.02357739,94.55536884],[4.5326976,0.02357572,94.5540529],[4.53269692,0.02357405,94.55274342],[4.53269624,0.02357238,94.55143848],[4.53269556,0.0235707,94.55013615],[4.53269489,0.02356903,94.5488345],[4.53269421,0.02356735,94.54753157],[4.53269354,0.02356568,94.54622542],[4.53269286,0.023564,94.54491411],[4.53269219,0.02356233,94.54359568],[4.53269152,0.02356065,94.54226815],[4.53269085,0.02355898,94.54092957],[4.53269017,0.0235573,94.53957797],[4.5326895,0.02355563,94.53821136],[4.53268883,0.02355395,94.53682775],[4.53268815,0.02355228,94.53542517],[4.53268748,0.0235506,94.53400162],[4.5326868,0.02354893,94.5325551],[4.53268612,0.02354725,94.5310836],[4.53268544,0.02354558,94.52958512],[4.53268476,0.02354391,94.52805764],[4.53268408,0.02354224,94.52649914],[4.53268339,0.02354057,94.52490759],[4.53268271,0.0235389,94.52328097],[4.53268202,0.02353723,94.52161724],[4.53268133,0.02353558,94.51993667],[4.53271482,0.0235243,94.62390976],[4.53271538,0.02352599,94.62499658],[4.53271595,0.0235277,94.6260689],[4.53271651,0.02352941,94.62711362],[4.53271708,0.02353112,94.62813209],[4.53271765,0.02353283,94.62912566],[4.53271822,0.02353454,94.63009569],[4.53271878,0.02353625,94.63104351],[4.53271935,0.02353797,94.63197048],[4.53271992,0.02353968,94.63287795],[4.53272049,0.02354139,94.63376728],[4.53272105,0.0235431,94.6346398],[4.53272162,0.02354481,94.63549688],[4.53272219,0.02354652,94.63633986],[4.53272276,0.02354823,94.63717009],[4.53272332,0.02354995,94.63798893],[4.53272389,0.02355166,94.63879772],[4.53272446,0.02355337,94.63959781],[4.53272503,0.02355508,94.64039056],[4.53272559,0.02355679,94.64117731],[4.53272616,0.0235585,94.64195942],[4.53272673,0.02356021,94.64273823],[4.53272729,0.02356192,94.6435151],[4.53272786,0.02356364,94.64429137],[4.53272843,0.02356535,94.6450684],[4.532729,0.02356706,94.64584754],[4.53272956,0.02356877,94.64662986],[4.53273013,0.02357048,94.64741528],[4.5327307,0.02357219,94.64820345],[4.53273127,0.0235739,94.648994],[4.53273183,0.02357561,94.64978659],[4.5327324,0.02357733,94.65058084],[4.53273297,0.02357904,94.6513764],[4.53273353,0.02358075,94.6521729],[4.5327341,0.02358246,94.65297],[4.53273467,0.02358417,94.65376732],[4.53273524,0.02358588,94.6545645],[4.5327358,0.02358759,94.65536119],[4.53273637,0.0235893,94.65615703],[4.53273694,0.02359102,94.65695165],[4.5327375,0.02359273,94.6577447],[4.53273807,0.02359444,94.65853582],[4.53273864,0.02359615,94.65932464],[4.53273921,0.02359786,94.6601108],[4.53273977,0.02359957,94.66089395],[4.53274034,0.02360128,94.66167373],[4.53274091,0.02360299,94.66244977],[4.53274147,0.0236047,94.66322172],[4.53274204,0.02360641,94.6639892],[4.53274261,0.02360813,94.66475188],[4.53274318,0.02360984,94.66550938],[4.53271388,0.0236197,94.58385073]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"3000440","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3,"sOffset":0.0}},{"geometry":{"coordinates":[[[4.5375973,0.04127599,98.57058451],[4.53759692,0.04127423,98.56967809],[4.53759655,0.04127246,98.56877257],[4.53759618,0.0412707,98.56786786],[4.53759581,0.04126894,98.56696391],[4.53759543,0.04126718,98.56606064],[4.53759506,0.04126542,98.56515798],[4.53759469,0.04126365,98.56425586],[4.53759432,0.04126189,98.56335421],[4.53759395,0.04126013,98.56245296],[4.53759357,0.04125837,98.56155205],[4.5375932,0.0412566,98.5606514],[4.53759283,0.04125484,98.55975094],[4.53759246,0.04125308,98.5588506],[4.53759209,0.04125132,98.55795032],[4.53759171,0.04124956,98.55705003],[4.53759134,0.04124779,98.55614965],[4.53759097,0.04124603,98.55524912],[4.5375906,0.04124427,98.55434837],[4.53759022,0.04124251,98.55344732],[4.53758985,0.04124075,98.55254592],[4.53758948,0.04123898,98.55164409],[4.5375891,0.04123722,98.55074177],[4.53758873,0.04123546,98.54983888],[4.53758836,0.0412337,98.54893535],[4.53758798,0.04123194,98.54803113],[4.5375876,0.04123018,98.54712613],[4.53758723,0.04122842,98.5462203],[4.53758685,0.04122665,98.54531356],[4.53758648,0.04122489,98.54440584],[4.5375861,0.04122313,98.54349709],[4.53758572,0.04122137,98.54258722],[4.53758534,0.04121961,98.54167618],[4.53758496,0.04121785,98.54076391],[4.53758458,0.04121609,98.53985044],[4.5375842,0.04121433,98.53893584],[4.53758382,0.04121257,98.53802015],[4.53758344,0.04121081,98.53710343],[4.53758306,0.04120905,98.53618574],[4.53758268,0.04120729,98.53526711],[4.53758229,0.04120553,98.53434762],[4.53758191,0.04120377,98.53342731],[4.53758153,0.04120201,98.53250623],[4.53758114,0.04120025,98.53158444],[4.53758076,0.04119849,98.53066198],[4.53758037,0.04119673,98.52973892],[4.53757999,0.04119497,98.52881531],[4.5375796,0.04119321,98.5278912],[4.53757922,0.04119145,98.52696663],[4.53757883,0.0411897,98.52604168],[4.53757844,0.04118794,98.52511637],[4.53757806,0.04118618,98.52419078],[4.53757767,0.04118442,98.52326495],[4.53757728,0.04118266,98.52233893],[4.5375769,0.0411809,98.52141278],[4.53757651,0.04117914,98.52048654],[4.53757612,0.04117738,98.51956028],[4.53757573,0.04117562,98.51863404],[4.53757534,0.04117387,98.51770787],[4.53757496,0.04117211,98.51678183],[4.53757457,0.04117035,98.51585597],[4.53757418,0.04116859,98.51493035],[4.53757379,0.04116683,98.514005],[4.5375734,0.04116507,98.51307999],[4.53757301,0.04116331,98.51215537],[4.53757263,0.04116156,98.51123118],[4.53757224,0.0411598,98.51030749],[4.53757185,0.04115804,98.50938433],[4.53757146,0.04115628,98.50846177],[4.53757107,0.04115452,98.50753986],[4.53757068,0.04115276,98.50661865],[4.5375703,0.041151,98.50569818],[4.53756991,0.04114924,98.50477852],[4.53756952,0.04114749,98.50385972],[4.53756913,0.04114573,98.50294185],[4.53756875,0.04114397,98.50202499],[4.53756836,0.04114221,98.5011092],[4.53756797,0.04114045,98.50019456],[4.53756759,0.04113869,98.49928115],[4.5375672,0.04113693,98.49836902],[4.53756681,0.04113517,98.49745826],[4.53756643,0.04113341,98.49654893],[4.53756604,0.04113165,98.49564111],[4.53756566,0.04112989,98.49473485],[4.53756528,0.04112813,98.49383011],[4.53756489,0.04112638,98.49292685],[4.53756451,0.04112462,98.492025],[4.53756412,0.04112286,98.49112454],[4.53756374,0.0411211,98.49022539],[4.53756336,0.04111934,98.48932752],[4.53756298,0.04111758,98.48843086],[4.5375626,0.04111582,98.48753538],[4.53756221,0.04111406,98.48664101],[4.53756183,0.04111229,98.48574771],[4.53756145,0.04111053,98.48485543],[4.53756107,0.04110877,98.48396411],[4.53756069,0.04110701,98.48307371],[4.53756031,0.04110525,98.48218417],[4.53755993,0.04110349,98.48129545],[4.53755955,0.04110173,98.48040749],[4.53755917,0.04109997,98.47952024],[4.53755879,0.04109821,98.47863366],[4.53755841,0.04109645,98.47774769],[4.53755803,0.04109469,98.47686227],[4.53755765,0.04109293,98.47597737],[4.53755727,0.04109117,98.47509293],[4.53755689,0.04108941,98.4742089],[4.53755651,0.04108765,98.47332523],[4.53755613,0.04108589,98.47244187],[4.53755575,0.04108413,98.47155876],[4.53755537,0.04108237,98.47067586],[4.53755499,0.04108061,98.46979312],[4.53755461,0.04107884,98.46891049],[4.53755422,0.04107708,98.46802792],[4.53755384,0.04107532,98.46714535],[4.53755346,0.04107356,98.46626273],[4.53755308,0.0410718,98.46538002],[4.5375527,0.04107004,98.46449717],[4.53755232,0.04106828,98.46361412],[4.53755193,0.04106652,98.46273082],[4.53755155,0.04106476,98.46184723],[4.53755117,0.041063,98.46096328],[4.53755079,0.04106124,98.46007895],[4.5375504,0.04105948,98.45919416],[4.53755002,0.04105772,98.45830888],[4.53754963,0.04105596,98.45742304],[4.53754925,0.0410542,98.45653661],[4.53754886,0.04105244,98.45564954],[4.53754848,0.04105068,98.45476178],[4.53754809,0.04104893,98.45387329],[4.53754771,0.04104717,98.45298403],[4.53754732,0.04104541,98.45209395],[4.53754693,0.04104365,98.45120302],[4.53754654,0.04104189,98.45031119],[4.53754615,0.04104013,98.44941841],[4.53754576,0.04103837,98.44852465],[4.53754537,0.04103661,98.44762987],[4.53754498,0.04103485,98.44673413],[4.53754459,0.0410331,98.44583749],[4.5375442,0.04103134,98.44494002],[4.53754381,0.04102958,98.44404179],[4.53754341,0.04102782,98.44314286],[4.53754302,0.04102606,98.44224329],[4.53754263,0.04102431,98.44134316],[4.53754223,0.04102255,98.44044253],[4.53754184,0.04102079,98.43954146],[4.53754145,0.04101903,98.43864003],[4.53754105,0.04101728,98.4377383],[4.53754065,0.04101552,98.43683633],[4.53754026,0.04101376,98.43593419],[4.53753986,0.04101201,98.43503195],[4.53753947,0.04101025,98.43412968],[4.53753907,0.04100849,98.43322743],[4.53753867,0.04100673,98.43232528],[4.53753828,0.04100498,98.4314233],[4.53753788,0.04100322,98.43052154],[4.53753748,0.04100146,98.42962008],[4.53753709,0.04099971,98.42871898],[4.53753669,0.04099795,98.42781831],[4.53753629,0.04099619,98.42691814],[4.5375359,0.04099443,98.42601853],[4.5375355,0.04099268,98.42511954],[4.5375351,0.04099092,98.42422125],[4.53753471,0.04098916,98.42332372],[4.53753431,0.04098741,98.42242701],[4.53753391,0.04098565,98.4215312],[4.53753352,0.04098389,98.42063635],[4.53753312,0.04098213,98.41974253],[4.53753272,0.04098038,98.4188498],[4.53753233,0.04097862,98.41795824],[4.53753193,0.04097686,98.4170679],[4.53753154,0.04097511,98.41617886],[4.53753114,0.04097335,98.41529118],[4.53753075,0.04097159,98.41440494],[4.53753035,0.04096983,98.4135202],[4.53752996,0.04096808,98.41263703],[4.53752957,0.04096632,98.41175549],[4.53752917,0.04096456,98.41087563],[4.53752878,0.0409628,98.40999736],[4.53752839,0.04096104,98.40912054],[4.537528,0.04095929,98.40824506],[4.5375276,0.04095753,98.4073708],[4.53752721,0.04095577,98.40649763],[4.53752682,0.04095401,98.40562543],[4.53752643,0.04095225,98.40475408],[4.53752604,0.04095049,98.40388345],[4.53752565,0.04094874,98.40301342],[4.53752526,0.04094698,98.40214387],[4.53752486,0.04094522,98.40127468],[4.53752447,0.04094346,98.40040572],[4.53752408,0.0409417,98.3995369],[4.53752369,0.04093994,98.39866821],[4.5375233,0.04093819,98.39779969],[4.5375229,0.04093643,98.39693135],[4.53752251,0.04093467,98.39606324],[4.53752212,0.04093291,98.39519537],[4.53752173,0.04093115,98.39432777],[4.53752133,0.0409294,98.39346046],[4.53752094,0.04092764,98.39259349],[4.53752055,0.04092588,98.39172687],[4.53752015,0.04092412,98.39086062],[4.53751976,0.04092236,98.38999479],[4.53751937,0.04092061,98.38912938],[4.53751897,0.04091885,98.38826444],[4.53751858,0.04091709,98.38739999],[4.53751819,0.04091533,98.38653605],[4.53751779,0.04091357,98.38567265],[4.5375174,0.04091182,98.38480983],[4.53751701,0.04091006,98.3839476],[4.53751661,0.0409083,98.38308599],[4.53751622,0.04090654,98.38222504],[4.53751583,0.04090478,98.38136476],[4.53751543,0.04090303,98.38050519],[4.53751504,0.04090127,98.37964635],[4.53751465,0.04089951,98.37878827],[4.53751425,0.04089775,98.37793098],[4.53751386,0.04089599,98.3770745],[4.53751347,0.04089424,98.37621887],[4.53751307,0.04089248,98.3753641],[4.53751268,0.04089072,98.37451024],[4.53751229,0.04088896,98.37365729],[4.53751189,0.0408872,98.3728053],[4.5375115,0.04088544,98.37195429],[4.53751111,0.04088369,98.37110429],[4.53751072,0.04088193,98.37025532],[4.53751032,0.04088017,98.36940741],[4.53750993,0.04087841,98.36856059],[4.53750954,0.04087665,98.36771489],[4.53750915,0.04087489,98.36687033],[4.53750876,0.04087313,98.36602695],[4.53750837,0.04087138,98.36518477],[4.53750798,0.04086962,98.36434381],[4.53750758,0.04086786,98.36350412],[4.53750719,0.0408661,98.3626657],[4.5375068,0.04086434,98.3618286],[4.53750652,0.04086306,98.36121883],[4.53755025,0.0408532,98.36121883],[4.53755054,0.04085448,98.3618286],[4.53755093,0.04085624,98.3626657],[4.53755132,0.040858,98.36350412],[4.53755171,0.04085976,98.36434381],[4.5375521,0.04086152,98.36518477],[4.53755249,0.04086328,98.36602695],[4.53755288,0.04086504,98.36687033],[4.53755327,0.0408668,98.36771489],[4.53755367,0.04086856,98.36856059],[4.53755406,0.04087032,98.36940741],[4.53755445,0.04087207,98.37025532],[4.53755484,0.04087383,98.37110429],[4.53755524,0.04087559,98.37195429],[4.53755563,0.04087735,98.3728053],[4.53755602,0.04087911,98.37365729],[4.53755641,0.04088087,98.37451024],[4.53755681,0.04088263,98.3753641],[4.5375572,0.04088439,98.37621887],[4.53755759,0.04088615,98.3770745],[4.53755799,0.04088791,98.37793098],[4.53755838,0.04088966,98.37878827],[4.53755877,0.04089142,98.37964635],[4.53755917,0.04089318,98.38050519],[4.53755956,0.04089494,98.38136476],[4.53755996,0.0408967,98.38222504],[4.53756035,0.04089846,98.38308599],[4.53756074,0.04090022,98.3839476],[4.53756114,0.04090198,98.38480983],[4.53756153,0.04090373,98.38567265],[4.53756192,0.04090549,98.38653605],[4.53756232,0.04090725,98.38739999],[4.53756271,0.04090901,98.38826444],[4.5375631,0.04091077,98.38912938],[4.5375635,0.04091253,98.38999479],[4.53756389,0.04091429,98.39086062],[4.53756429,0.04091604,98.39172687],[4.53756468,0.0409178,98.39259349],[4.53756507,0.04091956,98.39346046],[4.53756546,0.04092132,98.39432777],[4.53756586,0.04092308,98.39519537],[4.53756625,0.04092484,98.39606324],[4.53756664,0.0409266,98.39693135],[4.53756704,0.04092836,98.39779969],[4.53756743,0.04093012,98.39866821],[4.53756782,0.04093187,98.3995369],[4.53756821,0.04093363,98.40040572],[4.5375686,0.04093539,98.40127468],[4.537569,0.04093715,98.40214387],[4.53756939,0.04093891,98.40301342],[4.53756978,0.04094067,98.40388345],[4.53757017,0.04094243,98.40475408],[4.53757056,0.04094419,98.40562543],[4.53757095,0.04094595,98.40649763],[4.53757134,0.04094771,98.4073708],[4.53757174,0.04094946,98.40824506],[4.53757213,0.04095122,98.40912054],[4.53757252,0.04095298,98.40999736],[4.53757291,0.04095474,98.41087563],[4.53757331,0.0409565,98.41175549],[4.5375737,0.04095826,98.41263703],[4.5375741,0.04096002,98.4135202],[4.53757449,0.04096178,98.41440494],[4.53757488,0.04096353,98.41529118],[4.53757528,0.04096529,98.41617886],[4.53757568,0.04096705,98.4170679],[4.53757607,0.04096881,98.41795824],[4.53757647,0.04097057,98.4188498],[4.53757686,0.04097232,98.41974253],[4.53757726,0.04097408,98.42063635],[4.53757766,0.04097584,98.4215312],[4.53757805,0.0409776,98.42242701],[4.53757845,0.04097936,98.42332372],[4.53757885,0.04098111,98.42422125],[4.53757924,0.04098287,98.42511954],[4.53757964,0.04098463,98.42601853],[4.53758004,0.04098639,98.42691814],[4.53758044,0.04098814,98.42781831],[4.53758083,0.0409899,98.42871898],[4.53758123,0.04099166,98.42962008],[4.53758163,0.04099342,98.43052154],[4.53758202,0.04099518,98.4314233],[4.53758242,0.04099693,98.43232528],[4.53758282,0.04099869,98.43322743],[4.53758321,0.04100045,98.43412968],[4.53758361,0.04100221,98.43503195],[4.53758401,0.04100397,98.43593419],[4.5375844,0.04100572,98.43683633],[4.5375848,0.04100748,98.4377383],[4.53758519,0.04100924,98.43864003],[4.53758559,0.041011,98.43954146],[4.53758598,0.04101276,98.44044253],[4.53758637,0.04101452,98.44134316],[4.53758677,0.04101627,98.44224329],[4.53758716,0.04101803,98.44314286],[4.53758755,0.04101979,98.44404179],[4.53758795,0.04102155,98.44494002],[4.53758834,0.04102331,98.44583749],[4.53758873,0.04102507,98.44673413],[4.53758912,0.04102683,98.44762987],[4.53758951,0.04102859,98.44852465],[4.5375899,0.04103035,98.44941841],[4.53759029,0.04103211,98.45031119],[4.53759068,0.04103387,98.45120302],[4.53759107,0.04103563,98.45209395],[4.53759145,0.04103739,98.45298403],[4.53759184,0.04103915,98.45387329],[4.53759223,0.04104091,98.45476178],[4.53759261,0.04104267,98.45564954],[4.537593,0.04104443,98.45653661],[4.53759338,0.04104619,98.45742304],[4.53759377,0.04104795,98.45830888],[4.53759415,0.04104971,98.45919416],[4.53759454,0.04105147,98.46007895],[4.53759492,0.04105323,98.46096328],[4.5375953,0.04105499,98.46184723],[4.53759569,0.04105675,98.46273082],[4.53759607,0.04105851,98.46361412],[4.53759645,0.04106027,98.46449717],[4.53759683,0.04106203,98.46538002],[4.53759721,0.0410638,98.46626273],[4.5375976,0.04106556,98.46714535],[4.53759798,0.04106732,98.46802792],[4.53759836,0.04106908,98.46891049],[4.53759874,0.04107084,98.46979312],[4.53759912,0.0410726,98.47067586],[4.5375995,0.04107436,98.47155876],[4.53759988,0.04107612,98.47244187],[4.53760026,0.04107789,98.47332523],[4.53760064,0.04107965,98.4742089],[4.53760102,0.04108141,98.47509293],[4.5376014,0.04108317,98.47597737],[4.53760178,0.04108493,98.47686227],[4.53760216,0.04108669,98.47774769],[4.53760254,0.04108845,98.47863366],[4.53760292,0.04109022,98.47952024],[4.5376033,0.04109198,98.48040749],[4.53760368,0.04109374,98.48129545],[4.53760407,0.0410955,98.48218417],[4.53760445,0.04109726,98.48307371],[4.53760483,0.04109902,98.48396411],[4.53760521,0.04110078,98.48485543],[4.53760559,0.04110255,98.48574771],[4.53760597,0.04110431,98.48664101],[4.53760635,0.04110607,98.48753538],[4.53760673,0.04110783,98.48843086],[4.53760712,0.04110959,98.48932752],[4.5376075,0.04111135,98.49022539],[4.53760788,0.04111311,98.49112454],[4.53760827,0.04111487,98.492025],[4.53760865,0.04111663,98.49292685],[4.53760903,0.04111839,98.49383011],[4.53760942,0.04112015,98.49473485],[4.5376098,0.04112191,98.49564111],[4.53761019,0.04112367,98.49654893],[4.53761057,0.04112543,98.49745826],[4.53761096,0.04112719,98.49836902],[4.53761135,0.04112896,98.49928115],[4.53761173,0.04113072,98.50019456],[4.53761212,0.04113247,98.5011092],[4.53761251,0.04113423,98.50202499],[4.53761289,0.04113599,98.50294185],[4.53761328,0.04113775,98.50385972],[4.53761367,0.04113951,98.50477852],[4.53761406,0.04114127,98.50569818],[4.53761445,0.04114303,98.50661865],[4.53761483,0.04114479,98.50753986],[4.53761522,0.04114655,98.50846177],[4.53761561,0.04114831,98.50938433],[4.537616,0.04115007,98.51030749],[4.53761639,0.04115183,98.51123118],[4.53761678,0.04115359,98.51215537],[4.53761717,0.04115535,98.51307999],[4.53761755,0.04115711,98.514005],[4.53761794,0.04115887,98.51493035],[4.53761833,0.04116063,98.51585597],[4.53761872,0.04116239,98.51678183],[4.53761911,0.04116415,98.51770787],[4.5376195,0.04116591,98.51863404],[4.53761988,0.04116767,98.51956028],[4.53762027,0.04116943,98.52048654],[4.53762066,0.04117119,98.52141278],[4.53762105,0.04117295,98.52233893],[4.53762144,0.04117471,98.52326495],[4.53762182,0.04117647,98.52419078],[4.53762221,0.04117823,98.52511637],[4.5376226,0.04117999,98.52604168],[4.53762298,0.04118175,98.52696663],[4.53762337,0.04118351,98.5278912],[4.53762375,0.04118527,98.52881531],[4.53762414,0.04118703,98.52973892],[4.53762453,0.04118879,98.53066198],[4.53762491,0.04119055,98.53158444],[4.53762529,0.04119231,98.53250623],[4.53762568,0.04119407,98.53342731],[4.53762606,0.04119583,98.53434762],[4.53762644,0.04119759,98.53526711],[4.53762683,0.04119935,98.53618574],[4.53762721,0.04120111,98.53710343],[4.53762759,0.04120287,98.53802015],[4.53762797,0.04120463,98.53893584],[4.53762835,0.04120639,98.53985044],[4.53762873,0.04120816,98.54076391],[4.53762911,0.04120992,98.54167618],[4.53762949,0.04121168,98.54258722],[4.53762987,0.04121344,98.54349709],[4.53763025,0.0412152,98.54440584],[4.53763062,0.04121696,98.54531356],[4.537631,0.04121873,98.5462203],[4.53763138,0.04122049,98.54712613],[4.53763175,0.04122225,98.54803113],[4.53763213,0.04122401,98.54893535],[4.5376325,0.04122578,98.54983888],[4.53763287,0.04122754,98.55074177],[4.53763325,0.0412293,98.55164409],[4.53763362,0.04123106,98.55254592],[4.537634,0.04123283,98.55344732],[4.53763437,0.04123459,98.55434837],[4.53763474,0.04123635,98.55524912],[4.53763511,0.04123812,98.55614965],[4.53763549,0.04123988,98.55705003],[4.53763586,0.04124164,98.55795032],[4.53763623,0.0412434,98.5588506],[4.5376366,0.04124517,98.55975094],[4.53763698,0.04124693,98.5606514],[4.53763735,0.04124869,98.56155205],[4.53763772,0.04125046,98.56245296],[4.53763809,0.04125222,98.56335421],[4.53763846,0.04125398,98.56425586],[4.53763884,0.04125575,98.56515798],[4.53763921,0.04125751,98.56606064],[4.53763958,0.04125927,98.56696391],[4.53763995,0.04126103,98.56786786],[4.53764033,0.0412628,98.56877257],[4.5376407,0.04126456,98.56967809],[4.53764107,0.04126632,98.57058451],[4.5375973,0.04127599,98.57058451]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-5,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1003400","id":-4,"type":"none","predecessorId":0,"sOffset":0.0}},{"geometry":{"coordinates":[[[4.53764107,0.04126632,98.57058451],[4.5376407,0.04126456,98.56967809],[4.53764033,0.0412628,98.56877257],[4.53763995,0.04126103,98.56786786],[4.53763958,0.04125927,98.56696391],[4.53763921,0.04125751,98.56606064],[4.53763884,0.04125575,98.56515798],[4.53763846,0.04125398,98.56425586],[4.53763809,0.04125222,98.56335421],[4.53763772,0.04125046,98.56245296],[4.53763735,0.04124869,98.56155205],[4.53763698,0.04124693,98.5606514],[4.5376366,0.04124517,98.55975094],[4.53763623,0.0412434,98.5588506],[4.53763586,0.04124164,98.55795032],[4.53763549,0.04123988,98.55705003],[4.53763511,0.04123812,98.55614965],[4.53763474,0.04123635,98.55524912],[4.53763437,0.04123459,98.55434837],[4.537634,0.04123283,98.55344732],[4.53763362,0.04123106,98.55254592],[4.53763325,0.0412293,98.55164409],[4.53763287,0.04122754,98.55074177],[4.5376325,0.04122578,98.54983888],[4.53763213,0.04122401,98.54893535],[4.53763175,0.04122225,98.54803113],[4.53763138,0.04122049,98.54712613],[4.537631,0.04121873,98.5462203],[4.53763062,0.04121696,98.54531356],[4.53763025,0.0412152,98.54440584],[4.53762987,0.04121344,98.54349709],[4.53762949,0.04121168,98.54258722],[4.53762911,0.04120992,98.54167618],[4.53762873,0.04120816,98.54076391],[4.53762835,0.04120639,98.53985044],[4.53762797,0.04120463,98.53893584],[4.53762759,0.04120287,98.53802015],[4.53762721,0.04120111,98.53710343],[4.53762683,0.04119935,98.53618574],[4.53762644,0.04119759,98.53526711],[4.53762606,0.04119583,98.53434762],[4.53762568,0.04119407,98.53342731],[4.53762529,0.04119231,98.53250623],[4.53762491,0.04119055,98.53158444],[4.53762453,0.04118879,98.53066198],[4.53762414,0.04118703,98.52973892],[4.53762375,0.04118527,98.52881531],[4.53762337,0.04118351,98.5278912],[4.53762298,0.04118175,98.52696663],[4.5376226,0.04117999,98.52604168],[4.53762221,0.04117823,98.52511637],[4.53762182,0.04117647,98.52419078],[4.53762144,0.04117471,98.52326495],[4.53762105,0.04117295,98.52233893],[4.53762066,0.04117119,98.52141278],[4.53762027,0.04116943,98.52048654],[4.53761988,0.04116767,98.51956028],[4.5376195,0.04116591,98.51863404],[4.53761911,0.04116415,98.51770787],[4.53761872,0.04116239,98.51678183],[4.53761833,0.04116063,98.51585597],[4.53761794,0.04115887,98.51493035],[4.53761755,0.04115711,98.514005],[4.53761717,0.04115535,98.51307999],[4.53761678,0.04115359,98.51215537],[4.53761639,0.04115183,98.51123118],[4.537616,0.04115007,98.51030749],[4.53761561,0.04114831,98.50938433],[4.53761522,0.04114655,98.50846177],[4.53761483,0.04114479,98.50753986],[4.53761445,0.04114303,98.50661865],[4.53761406,0.04114127,98.50569818],[4.53761367,0.04113951,98.50477852],[4.53761328,0.04113775,98.50385972],[4.53761289,0.04113599,98.50294185],[4.53761251,0.04113423,98.50202499],[4.53761212,0.04113247,98.5011092],[4.53761173,0.04113072,98.50019456],[4.53761135,0.04112896,98.49928115],[4.53761096,0.04112719,98.49836902],[4.53761057,0.04112543,98.49745826],[4.53761019,0.04112367,98.49654893],[4.5376098,0.04112191,98.49564111],[4.53760942,0.04112015,98.49473485],[4.53760903,0.04111839,98.49383011],[4.53760865,0.04111663,98.49292685],[4.53760827,0.04111487,98.492025],[4.53760788,0.04111311,98.49112454],[4.5376075,0.04111135,98.49022539],[4.53760712,0.04110959,98.48932752],[4.53760673,0.04110783,98.48843086],[4.53760635,0.04110607,98.48753538],[4.53760597,0.04110431,98.48664101],[4.53760559,0.04110255,98.48574771],[4.53760521,0.04110078,98.48485543],[4.53760483,0.04109902,98.48396411],[4.53760445,0.04109726,98.48307371],[4.53760407,0.0410955,98.48218417],[4.53760368,0.04109374,98.48129545],[4.5376033,0.04109198,98.48040749],[4.53760292,0.04109022,98.47952024],[4.53760254,0.04108845,98.47863366],[4.53760216,0.04108669,98.47774769],[4.53760178,0.04108493,98.47686227],[4.5376014,0.04108317,98.47597737],[4.53760102,0.04108141,98.47509293],[4.53760064,0.04107965,98.4742089],[4.53760026,0.04107789,98.47332523],[4.53759988,0.04107612,98.47244187],[4.5375995,0.04107436,98.47155876],[4.53759912,0.0410726,98.47067586],[4.53759874,0.04107084,98.46979312],[4.53759836,0.04106908,98.46891049],[4.53759798,0.04106732,98.46802792],[4.5375976,0.04106556,98.46714535],[4.53759721,0.0410638,98.46626273],[4.53759683,0.04106203,98.46538002],[4.53759645,0.04106027,98.46449717],[4.53759607,0.04105851,98.46361412],[4.53759569,0.04105675,98.46273082],[4.5375953,0.04105499,98.46184723],[4.53759492,0.04105323,98.46096328],[4.53759454,0.04105147,98.46007895],[4.53759415,0.04104971,98.45919416],[4.53759377,0.04104795,98.45830888],[4.53759338,0.04104619,98.45742304],[4.537593,0.04104443,98.45653661],[4.53759261,0.04104267,98.45564954],[4.53759223,0.04104091,98.45476178],[4.53759184,0.04103915,98.45387329],[4.53759145,0.04103739,98.45298403],[4.53759107,0.04103563,98.45209395],[4.53759068,0.04103387,98.45120302],[4.53759029,0.04103211,98.45031119],[4.5375899,0.04103035,98.44941841],[4.53758951,0.04102859,98.44852465],[4.53758912,0.04102683,98.44762987],[4.53758873,0.04102507,98.44673413],[4.53758834,0.04102331,98.44583749],[4.53758795,0.04102155,98.44494002],[4.53758755,0.04101979,98.44404179],[4.53758716,0.04101803,98.44314286],[4.53758677,0.04101627,98.44224329],[4.53758637,0.04101452,98.44134316],[4.53758598,0.04101276,98.44044253],[4.53758559,0.041011,98.43954146],[4.53758519,0.04100924,98.43864003],[4.5375848,0.04100748,98.4377383],[4.5375844,0.04100572,98.43683633],[4.53758401,0.04100397,98.43593419],[4.53758361,0.04100221,98.43503195],[4.53758321,0.04100045,98.43412968],[4.53758282,0.04099869,98.43322743],[4.53758242,0.04099693,98.43232528],[4.53758202,0.04099518,98.4314233],[4.53758163,0.04099342,98.43052154],[4.53758123,0.04099166,98.42962008],[4.53758083,0.0409899,98.42871898],[4.53758044,0.04098814,98.42781831],[4.53758004,0.04098639,98.42691814],[4.53757964,0.04098463,98.42601853],[4.53757924,0.04098287,98.42511954],[4.53757885,0.04098111,98.42422125],[4.53757845,0.04097936,98.42332372],[4.53757805,0.0409776,98.42242701],[4.53757766,0.04097584,98.4215312],[4.53757726,0.04097408,98.42063635],[4.53757686,0.04097232,98.41974253],[4.53757647,0.04097057,98.4188498],[4.53757607,0.04096881,98.41795824],[4.53757568,0.04096705,98.4170679],[4.53757528,0.04096529,98.41617886],[4.53757488,0.04096353,98.41529118],[4.53757449,0.04096178,98.41440494],[4.5375741,0.04096002,98.4135202],[4.5375737,0.04095826,98.41263703],[4.53757331,0.0409565,98.41175549],[4.53757291,0.04095474,98.41087563],[4.53757252,0.04095298,98.40999736],[4.53757213,0.04095122,98.40912054],[4.53757174,0.04094946,98.40824506],[4.53757134,0.04094771,98.4073708],[4.53757095,0.04094595,98.40649763],[4.53757056,0.04094419,98.40562543],[4.53757017,0.04094243,98.40475408],[4.53756978,0.04094067,98.40388345],[4.53756939,0.04093891,98.40301342],[4.537569,0.04093715,98.40214387],[4.5375686,0.04093539,98.40127468],[4.53756821,0.04093363,98.40040572],[4.53756782,0.04093187,98.3995369],[4.53756743,0.04093012,98.39866821],[4.53756704,0.04092836,98.39779969],[4.53756664,0.0409266,98.39693135],[4.53756625,0.04092484,98.39606324],[4.53756586,0.04092308,98.39519537],[4.53756546,0.04092132,98.39432777],[4.53756507,0.04091956,98.39346046],[4.53756468,0.0409178,98.39259349],[4.53756429,0.04091604,98.39172687],[4.53756389,0.04091429,98.39086062],[4.5375635,0.04091253,98.38999479],[4.5375631,0.04091077,98.38912938],[4.53756271,0.04090901,98.38826444],[4.53756232,0.04090725,98.38739999],[4.53756192,0.04090549,98.38653605],[4.53756153,0.04090373,98.38567265],[4.53756114,0.04090198,98.38480983],[4.53756074,0.04090022,98.3839476],[4.53756035,0.04089846,98.38308599],[4.53755996,0.0408967,98.38222504],[4.53755956,0.04089494,98.38136476],[4.53755917,0.04089318,98.38050519],[4.53755877,0.04089142,98.37964635],[4.53755838,0.04088966,98.37878827],[4.53755799,0.04088791,98.37793098],[4.53755759,0.04088615,98.3770745],[4.5375572,0.04088439,98.37621887],[4.53755681,0.04088263,98.3753641],[4.53755641,0.04088087,98.37451024],[4.53755602,0.04087911,98.37365729],[4.53755563,0.04087735,98.3728053],[4.53755524,0.04087559,98.37195429],[4.53755484,0.04087383,98.37110429],[4.53755445,0.04087207,98.37025532],[4.53755406,0.04087032,98.36940741],[4.53755367,0.04086856,98.36856059],[4.53755327,0.0408668,98.36771489],[4.53755288,0.04086504,98.36687033],[4.53755249,0.04086328,98.36602695],[4.5375521,0.04086152,98.36518477],[4.53755171,0.04085976,98.36434381],[4.53755132,0.040858,98.36350412],[4.53755093,0.04085624,98.3626657],[4.53755054,0.04085448,98.3618286],[4.53755025,0.0408532,98.36121883],[4.53757043,0.04084865,98.41440462],[4.53757077,0.04084992,98.41514811],[4.53757123,0.04085166,98.41616028],[4.53757169,0.04085341,98.41716442],[4.53757215,0.04085515,98.4181607],[4.5375726,0.0408569,98.41914929],[4.53757305,0.04085865,98.42013037],[4.53757349,0.04086039,98.42110412],[4.53757394,0.04086214,98.42207072],[4.53757438,0.04086389,98.42303035],[4.53757481,0.04086564,98.42398317],[4.53757525,0.04086739,98.42492937],[4.53757568,0.04086914,98.42586913],[4.53757611,0.04087089,98.42680261],[4.53757653,0.04087264,98.42772999],[4.53757696,0.0408744,98.42865146],[4.53757738,0.04087615,98.42956718],[4.5375778,0.0408779,98.43047732],[4.53757822,0.04087966,98.43138208],[4.53757863,0.04088141,98.43228161],[4.53757904,0.04088316,98.43317609],[4.53757945,0.04088492,98.4340657],[4.53757986,0.04088668,98.43495061],[4.53758027,0.04088843,98.43583099],[4.53758067,0.04089019,98.43670702],[4.53758107,0.04089195,98.43757888],[4.53758147,0.0408937,98.43844673],[4.53758187,0.04089546,98.43931074],[4.53758227,0.04089722,98.44017109],[4.53758266,0.04089898,98.44102796],[4.53758306,0.04090074,98.44188151],[4.53758345,0.0409025,98.44273192],[4.53758384,0.04090426,98.44357936],[4.53758423,0.04090602,98.444424],[4.53758462,0.04090778,98.44526601],[4.53758501,0.04090954,98.44610556],[4.53758539,0.0409113,98.44694283],[4.53758578,0.04091306,98.44777799],[4.53758616,0.04091482,98.44861121],[4.53758654,0.04091658,98.44944265],[4.53758693,0.04091834,98.45027249],[4.53758731,0.04092011,98.45110091],[4.53758769,0.04092187,98.45192806],[4.53758807,0.04092363,98.45275413],[4.53758845,0.04092539,98.45357927],[4.53758882,0.04092715,98.45440367],[4.5375892,0.04092892,98.45522749],[4.53758958,0.04093068,98.4560509],[4.53758996,0.04093244,98.45687407],[4.53759033,0.0409342,98.45769717],[4.53759071,0.04093597,98.45852038],[4.53759109,0.04093773,98.45934385],[4.53759146,0.04093949,98.46016776],[4.53759184,0.04094126,98.46099228],[4.53759222,0.04094302,98.46181758],[4.53759259,0.04094478,98.46264382],[4.53759297,0.04094654,98.46347118],[4.53759335,0.04094831,98.46429982],[4.53759372,0.04095007,98.46512992],[4.5375941,0.04095183,98.46596163],[4.53759448,0.0409536,98.46679511],[4.53759486,0.04095536,98.46763036],[4.53759523,0.04095712,98.46846735],[4.53759561,0.04095888,98.46930607],[4.53759599,0.04096064,98.47014649],[4.53759637,0.04096241,98.47098859],[4.53759675,0.04096417,98.47183235],[4.53759713,0.04096593,98.47267774],[4.53759751,0.04096769,98.47352475],[4.53759789,0.04096945,98.47437336],[4.53759828,0.04097122,98.47522354],[4.53759866,0.04097298,98.47607527],[4.53759904,0.04097474,98.47692853],[4.53759942,0.0409765,98.4777833],[4.53759981,0.04097826,98.47863957],[4.53760019,0.04098002,98.4794973],[4.53760057,0.04098178,98.48035649],[4.53760096,0.04098355,98.4812171],[4.53760134,0.04098531,98.48207912],[4.53760172,0.04098707,98.48294253],[4.53760211,0.04098883,98.4838073],[4.53760249,0.04099059,98.48467343],[4.53760288,0.04099235,98.48554088],[4.53760326,0.04099411,98.48640963],[4.53760365,0.04099587,98.48727967],[4.53760403,0.04099763,98.48815098],[4.53760442,0.04099939,98.48902354],[4.53760481,0.04100116,98.48989731],[4.53760519,0.04100292,98.4907723],[4.53760558,0.04100468,98.49164846],[4.53760596,0.04100644,98.49252579],[4.53760635,0.0410082,98.49340427],[4.53760674,0.04100996,98.49428386],[4.53760713,0.04101172,98.49516456],[4.53760751,0.04101348,98.49604635],[4.5376079,0.04101524,98.49692919],[4.53760829,0.041017,98.49781308],[4.53760868,0.04101876,98.49869799],[4.53760906,0.04102052,98.4995839],[4.53760945,0.04102228,98.5004708],[4.53760984,0.04102404,98.50135865],[4.53761023,0.0410258,98.50224745],[4.53761062,0.04102756,98.50313717],[4.537611,0.04102932,98.50402779],[4.53761139,0.04103108,98.50491929],[4.53761178,0.04103284,98.50581165],[4.53761217,0.0410346,98.50670485],[4.53761256,0.04103636,98.50759887],[4.53761295,0.04103812,98.50849369],[4.53761334,0.04103988,98.50938929],[4.53761373,0.04104164,98.51028565],[4.53761411,0.0410434,98.51118275],[4.5376145,0.04104516,98.51208058],[4.53761489,0.04104692,98.51297912],[4.53761528,0.04104868,98.51387836],[4.53761567,0.04105044,98.5147783],[4.53761606,0.0410522,98.51567891],[4.53761645,0.04105396,98.51658018],[4.53761684,0.04105572,98.51748211],[4.53761723,0.04105748,98.51838467],[4.53761762,0.04105924,98.51928786],[4.537618,0.041061,98.52019167],[4.53761839,0.04106276,98.52109607],[4.53761878,0.04106452,98.52200107],[4.53761917,0.04106628,98.52290664],[4.53761956,0.04106804,98.52381277],[4.53761995,0.0410698,98.52471946],[4.53762034,0.04107156,98.52562668],[4.53762073,0.04107332,98.52653443],[4.53762112,0.04107508,98.52744269],[4.5376215,0.04107684,98.52835145],[4.53762189,0.0410786,98.5292607],[4.53762228,0.04108036,98.53017042],[4.53762267,0.04108212,98.53108061],[4.53762306,0.04108388,98.53199125],[4.53762345,0.04108564,98.53290232],[4.53762384,0.0410874,98.53381382],[4.53762422,0.04108916,98.53472573],[4.53762461,0.04109092,98.53563804],[4.537625,0.04109268,98.53655073],[4.53762539,0.04109444,98.5374638],[4.53762578,0.0410962,98.53837724],[4.53762616,0.04109796,98.53929102],[4.53762655,0.04109972,98.54020513],[4.53762694,0.04110148,98.54111957],[4.53762733,0.04110324,98.54203432],[4.53762771,0.041105,98.54294937],[4.5376281,0.04110676,98.5438647],[4.53762849,0.04110852,98.54478031],[4.53762887,0.04111028,98.54569618],[4.53762926,0.04111204,98.54661229],[4.53762965,0.0411138,98.54752864],[4.53763003,0.04111556,98.54844521],[4.53763042,0.04111732,98.54936199],[4.53763081,0.04111909,98.55027896],[4.53763119,0.04112085,98.55119612],[4.53763158,0.04112261,98.55211345],[4.53763196,0.04112437,98.55303093],[4.53763235,0.04112613,98.55394856],[4.53763274,0.04112789,98.55486632],[4.53763312,0.04112965,98.55578421],[4.53763351,0.04113141,98.55670219],[4.53763389,0.04113317,98.55762028],[4.53763428,0.04113493,98.55853844],[4.53763466,0.04113669,98.55945667],[4.53763504,0.04113845,98.56037496],[4.53763543,0.04114021,98.56129333],[4.53763581,0.04114198,98.56221178],[4.53763619,0.04114374,98.56313031],[4.53763658,0.0411455,98.56404893],[4.53763696,0.04114726,98.56496766],[4.53763734,0.04114902,98.56588649],[4.53763773,0.04115078,98.56680544],[4.53763811,0.04115254,98.56772451],[4.53763849,0.0411543,98.5686437],[4.53763887,0.04115607,98.56956303],[4.53763926,0.04115783,98.57048251],[4.53763964,0.04115959,98.57140213],[4.53764002,0.04116135,98.57232191],[4.5376404,0.04116311,98.57324186],[4.53764078,0.04116487,98.57416197],[4.53764117,0.04116663,98.57508226],[4.53764155,0.0411684,98.57600274],[4.53764193,0.04117016,98.57692341],[4.53764231,0.04117192,98.57784427],[4.53764269,0.04117368,98.57876535],[4.53764307,0.04117544,98.57968663],[4.53764345,0.0411772,98.58060814],[4.53764383,0.04117897,98.58152987],[4.53764421,0.04118073,98.58245184],[4.53764459,0.04118249,98.58337405],[4.53764497,0.04118425,98.58429651],[4.53764535,0.04118601,98.58521922],[4.53764573,0.04118778,98.5861422],[4.53764611,0.04118954,98.58706545],[4.53764649,0.0411913,98.58798897],[4.53764687,0.04119306,98.58891277],[4.53764725,0.04119482,98.58983687],[4.53764763,0.04119659,98.59076127],[4.53764801,0.04119835,98.59168597],[4.53764839,0.04120011,98.59261098],[4.53764877,0.04120187,98.59353631],[4.53764915,0.04120363,98.59446197],[4.53764952,0.0412054,98.59538797],[4.5376499,0.04120716,98.5963143],[4.53765028,0.04120892,98.59724098],[4.53765066,0.04121068,98.59816802],[4.53765104,0.04121244,98.59909542],[4.53765142,0.04121421,98.60002319],[4.5376518,0.04121597,98.60095134],[4.53765218,0.04121773,98.60187987],[4.53765255,0.04121949,98.60280879],[4.53765293,0.04122125,98.60373811],[4.53765331,0.04122302,98.60466783],[4.53765369,0.04122478,98.60559797],[4.53765407,0.04122654,98.60652853],[4.53765445,0.0412283,98.60745952],[4.53765482,0.04123007,98.60839094],[4.5376552,0.04123183,98.6093228],[4.53765558,0.04123359,98.61025511],[4.53765596,0.04123535,98.61118788],[4.53765634,0.04123711,98.61212111],[4.53765671,0.04123888,98.61305482],[4.53765709,0.04124064,98.613989],[4.53765747,0.0412424,98.61492367],[4.53765785,0.04124416,98.61585883],[4.53765823,0.04124593,98.61679449],[4.5376586,0.04124769,98.61773066],[4.53765898,0.04124945,98.61866735],[4.53765936,0.04125121,98.61960455],[4.53765974,0.04125297,98.62054229],[4.53766012,0.04125474,98.62148057],[4.53766049,0.0412565,98.62241939],[4.53766087,0.04125826,98.62335876],[4.53766125,0.04126002,98.6242987],[4.53766163,0.04126179,98.6252392],[4.53764107,0.04126632,98.57058451]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1003400","id":-3,"type":"stop","predecessorId":0,"sOffset":0.0}},{"geometry":{"coordinates":[[[4.53766163,0.04126179,98.6252392],[4.53766125,0.04126002,98.6242987],[4.53766087,0.04125826,98.62335876],[4.53766049,0.0412565,98.62241939],[4.53766012,0.04125474,98.62148057],[4.53765974,0.04125297,98.62054229],[4.53765936,0.04125121,98.61960455],[4.53765898,0.04124945,98.61866735],[4.5376586,0.04124769,98.61773066],[4.53765823,0.04124593,98.61679449],[4.53765785,0.04124416,98.61585883],[4.53765747,0.0412424,98.61492367],[4.53765709,0.04124064,98.613989],[4.53765671,0.04123888,98.61305482],[4.53765634,0.04123711,98.61212111],[4.53765596,0.04123535,98.61118788],[4.53765558,0.04123359,98.61025511],[4.5376552,0.04123183,98.6093228],[4.53765482,0.04123007,98.60839094],[4.53765445,0.0412283,98.60745952],[4.53765407,0.04122654,98.60652853],[4.53765369,0.04122478,98.60559797],[4.53765331,0.04122302,98.60466783],[4.53765293,0.04122125,98.60373811],[4.53765255,0.04121949,98.60280879],[4.53765218,0.04121773,98.60187987],[4.5376518,0.04121597,98.60095134],[4.53765142,0.04121421,98.60002319],[4.53765104,0.04121244,98.59909542],[4.53765066,0.04121068,98.59816802],[4.53765028,0.04120892,98.59724098],[4.5376499,0.04120716,98.5963143],[4.53764952,0.0412054,98.59538797],[4.53764915,0.04120363,98.59446197],[4.53764877,0.04120187,98.59353631],[4.53764839,0.04120011,98.59261098],[4.53764801,0.04119835,98.59168597],[4.53764763,0.04119659,98.59076127],[4.53764725,0.04119482,98.58983687],[4.53764687,0.04119306,98.58891277],[4.53764649,0.0411913,98.58798897],[4.53764611,0.04118954,98.58706545],[4.53764573,0.04118778,98.5861422],[4.53764535,0.04118601,98.58521922],[4.53764497,0.04118425,98.58429651],[4.53764459,0.04118249,98.58337405],[4.53764421,0.04118073,98.58245184],[4.53764383,0.04117897,98.58152987],[4.53764345,0.0411772,98.58060814],[4.53764307,0.04117544,98.57968663],[4.53764269,0.04117368,98.57876535],[4.53764231,0.04117192,98.57784427],[4.53764193,0.04117016,98.57692341],[4.53764155,0.0411684,98.57600274],[4.53764117,0.04116663,98.57508226],[4.53764078,0.04116487,98.57416197],[4.5376404,0.04116311,98.57324186],[4.53764002,0.04116135,98.57232191],[4.53763964,0.04115959,98.57140213],[4.53763926,0.04115783,98.57048251],[4.53763887,0.04115607,98.56956303],[4.53763849,0.0411543,98.5686437],[4.53763811,0.04115254,98.56772451],[4.53763773,0.04115078,98.56680544],[4.53763734,0.04114902,98.56588649],[4.53763696,0.04114726,98.56496766],[4.53763658,0.0411455,98.56404893],[4.53763619,0.04114374,98.56313031],[4.53763581,0.04114198,98.56221178],[4.53763543,0.04114021,98.56129333],[4.53763504,0.04113845,98.56037496],[4.53763466,0.04113669,98.55945667],[4.53763428,0.04113493,98.55853844],[4.53763389,0.04113317,98.55762028],[4.53763351,0.04113141,98.55670219],[4.53763312,0.04112965,98.55578421],[4.53763274,0.04112789,98.55486632],[4.53763235,0.04112613,98.55394856],[4.53763196,0.04112437,98.55303093],[4.53763158,0.04112261,98.55211345],[4.53763119,0.04112085,98.55119612],[4.53763081,0.04111909,98.55027896],[4.53763042,0.04111732,98.54936199],[4.53763003,0.04111556,98.54844521],[4.53762965,0.0411138,98.54752864],[4.53762926,0.04111204,98.54661229],[4.53762887,0.04111028,98.54569618],[4.53762849,0.04110852,98.54478031],[4.5376281,0.04110676,98.5438647],[4.53762771,0.041105,98.54294937],[4.53762733,0.04110324,98.54203432],[4.53762694,0.04110148,98.54111957],[4.53762655,0.04109972,98.54020513],[4.53762616,0.04109796,98.53929102],[4.53762578,0.0410962,98.53837724],[4.53762539,0.04109444,98.5374638],[4.537625,0.04109268,98.53655073],[4.53762461,0.04109092,98.53563804],[4.53762422,0.04108916,98.53472573],[4.53762384,0.0410874,98.53381382],[4.53762345,0.04108564,98.53290232],[4.53762306,0.04108388,98.53199125],[4.53762267,0.04108212,98.53108061],[4.53762228,0.04108036,98.53017042],[4.53762189,0.0410786,98.5292607],[4.5376215,0.04107684,98.52835145],[4.53762112,0.04107508,98.52744269],[4.53762073,0.04107332,98.52653443],[4.53762034,0.04107156,98.52562668],[4.53761995,0.0410698,98.52471946],[4.53761956,0.04106804,98.52381277],[4.53761917,0.04106628,98.52290664],[4.53761878,0.04106452,98.52200107],[4.53761839,0.04106276,98.52109607],[4.537618,0.041061,98.52019167],[4.53761762,0.04105924,98.51928786],[4.53761723,0.04105748,98.51838467],[4.53761684,0.04105572,98.51748211],[4.53761645,0.04105396,98.51658018],[4.53761606,0.0410522,98.51567891],[4.53761567,0.04105044,98.5147783],[4.53761528,0.04104868,98.51387836],[4.53761489,0.04104692,98.51297912],[4.5376145,0.04104516,98.51208058],[4.53761411,0.0410434,98.51118275],[4.53761373,0.04104164,98.51028565],[4.53761334,0.04103988,98.50938929],[4.53761295,0.04103812,98.50849369],[4.53761256,0.04103636,98.50759887],[4.53761217,0.0410346,98.50670485],[4.53761178,0.04103284,98.50581165],[4.53761139,0.04103108,98.50491929],[4.537611,0.04102932,98.50402779],[4.53761062,0.04102756,98.50313717],[4.53761023,0.0410258,98.50224745],[4.53760984,0.04102404,98.50135865],[4.53760945,0.04102228,98.5004708],[4.53760906,0.04102052,98.4995839],[4.53760868,0.04101876,98.49869799],[4.53760829,0.041017,98.49781308],[4.5376079,0.04101524,98.49692919],[4.53760751,0.04101348,98.49604635],[4.53760713,0.04101172,98.49516456],[4.53760674,0.04100996,98.49428386],[4.53760635,0.0410082,98.49340427],[4.53760596,0.04100644,98.49252579],[4.53760558,0.04100468,98.49164846],[4.53760519,0.04100292,98.4907723],[4.53760481,0.04100116,98.48989731],[4.53760442,0.04099939,98.48902354],[4.53760403,0.04099763,98.48815098],[4.53760365,0.04099587,98.48727967],[4.53760326,0.04099411,98.48640963],[4.53760288,0.04099235,98.48554088],[4.53760249,0.04099059,98.48467343],[4.53760211,0.04098883,98.4838073],[4.53760172,0.04098707,98.48294253],[4.53760134,0.04098531,98.48207912],[4.53760096,0.04098355,98.4812171],[4.53760057,0.04098178,98.48035649],[4.53760019,0.04098002,98.4794973],[4.53759981,0.04097826,98.47863957],[4.53759942,0.0409765,98.4777833],[4.53759904,0.04097474,98.47692853],[4.53759866,0.04097298,98.47607527],[4.53759828,0.04097122,98.47522354],[4.53759789,0.04096945,98.47437336],[4.53759751,0.04096769,98.47352475],[4.53759713,0.04096593,98.47267774],[4.53759675,0.04096417,98.47183235],[4.53759637,0.04096241,98.47098859],[4.53759599,0.04096064,98.47014649],[4.53759561,0.04095888,98.46930607],[4.53759523,0.04095712,98.46846735],[4.53759486,0.04095536,98.46763036],[4.53759448,0.0409536,98.46679511],[4.5375941,0.04095183,98.46596163],[4.53759372,0.04095007,98.46512992],[4.53759335,0.04094831,98.46429982],[4.53759297,0.04094654,98.46347118],[4.53759259,0.04094478,98.46264382],[4.53759222,0.04094302,98.46181758],[4.53759184,0.04094126,98.46099228],[4.53759146,0.04093949,98.46016776],[4.53759109,0.04093773,98.45934385],[4.53759071,0.04093597,98.45852038],[4.53759033,0.0409342,98.45769717],[4.53758996,0.04093244,98.45687407],[4.53758958,0.04093068,98.4560509],[4.5375892,0.04092892,98.45522749],[4.53758882,0.04092715,98.45440367],[4.53758845,0.04092539,98.45357927],[4.53758807,0.04092363,98.45275413],[4.53758769,0.04092187,98.45192806],[4.53758731,0.04092011,98.45110091],[4.53758693,0.04091834,98.45027249],[4.53758654,0.04091658,98.44944265],[4.53758616,0.04091482,98.44861121],[4.53758578,0.04091306,98.44777799],[4.53758539,0.0409113,98.44694283],[4.53758501,0.04090954,98.44610556],[4.53758462,0.04090778,98.44526601],[4.53758423,0.04090602,98.444424],[4.53758384,0.04090426,98.44357936],[4.53758345,0.0409025,98.44273192],[4.53758306,0.04090074,98.44188151],[4.53758266,0.04089898,98.44102796],[4.53758227,0.04089722,98.44017109],[4.53758187,0.04089546,98.43931074],[4.53758147,0.0408937,98.43844673],[4.53758107,0.04089195,98.43757888],[4.53758067,0.04089019,98.43670702],[4.53758027,0.04088843,98.43583099],[4.53757986,0.04088668,98.43495061],[4.53757945,0.04088492,98.4340657],[4.53757904,0.04088316,98.43317609],[4.53757863,0.04088141,98.43228161],[4.53757822,0.04087966,98.43138208],[4.5375778,0.0408779,98.43047732],[4.53757738,0.04087615,98.42956718],[4.53757696,0.0408744,98.42865146],[4.53757653,0.04087264,98.42772999],[4.53757611,0.04087089,98.42680261],[4.53757568,0.04086914,98.42586913],[4.53757525,0.04086739,98.42492937],[4.53757481,0.04086564,98.42398317],[4.53757438,0.04086389,98.42303035],[4.53757394,0.04086214,98.42207072],[4.53757349,0.04086039,98.42110412],[4.53757305,0.04085865,98.42013037],[4.5375726,0.0408569,98.41914929],[4.53757215,0.04085515,98.4181607],[4.53757169,0.04085341,98.41716442],[4.53757123,0.04085166,98.41616028],[4.53757077,0.04084992,98.41514811],[4.53757043,0.04084865,98.41440462],[4.5376034,0.04084122,98.50128433],[4.53760369,0.0408425,98.50187695],[4.53760408,0.04084426,98.50269005],[4.53760447,0.04084602,98.50350391],[4.53760487,0.04084778,98.50431852],[4.53760526,0.04084954,98.50513389],[4.53760566,0.0408513,98.50595002],[4.53760605,0.04085306,98.5067669],[4.53760644,0.04085482,98.50758453],[4.53760684,0.04085658,98.50840292],[4.53760723,0.04085834,98.50922205],[4.53760762,0.0408601,98.51004194],[4.53760802,0.04086186,98.51086258],[4.53760841,0.04086362,98.51168397],[4.5376088,0.04086538,98.51250611],[4.5376092,0.04086713,98.513329],[4.53760959,0.04086889,98.51415263],[4.53760998,0.04087065,98.51497701],[4.53761038,0.04087241,98.51580213],[4.53761077,0.04087417,98.516628],[4.53761116,0.04087593,98.51745462],[4.53761156,0.04087769,98.51828197],[4.53761195,0.04087945,98.51911007],[4.53761234,0.04088121,98.51993891],[4.53761273,0.04088297,98.5207685],[4.53761313,0.04088473,98.52159882],[4.53761352,0.04088649,98.52242988],[4.53761391,0.04088825,98.52326168],[4.5376143,0.04089001,98.52409421],[4.5376147,0.04089177,98.52492748],[4.53761509,0.04089353,98.52576149],[4.53761548,0.04089529,98.52659624],[4.53761587,0.04089705,98.52743171],[4.53761626,0.04089881,98.52826792],[4.53761666,0.04090057,98.52910487],[4.53761705,0.04090233,98.52994254],[4.53761744,0.04090409,98.53078095],[4.53761783,0.04090585,98.53162008],[4.53761822,0.04090761,98.53245995],[4.53761862,0.04090937,98.53330054],[4.53761901,0.04091113,98.53414186],[4.5376194,0.04091289,98.53498391],[4.53761979,0.04091465,98.53582668],[4.53762018,0.04091641,98.53667018],[4.53762057,0.04091817,98.5375144],[4.53762096,0.04091993,98.53835934],[4.53762136,0.04092169,98.53920501],[4.53762175,0.04092345,98.5400514],[4.53762214,0.04092521,98.54089851],[4.53762253,0.04092697,98.54174634],[4.53762292,0.04092873,98.54259489],[4.53762331,0.04093049,98.54344415],[4.5376237,0.04093225,98.54429414],[4.53762409,0.04093401,98.54514484],[4.53762448,0.04093577,98.54599626],[4.53762487,0.04093753,98.54684839],[4.53762526,0.04093929,98.54770123],[4.53762566,0.04094105,98.54855479],[4.53762605,0.04094281,98.54940906],[4.53762644,0.04094457,98.55026405],[4.53762683,0.04094634,98.55111974],[4.53762722,0.0409481,98.55197614],[4.53762761,0.04094986,98.55283325],[4.537628,0.04095162,98.55369107],[4.53762839,0.04095338,98.5545496],[4.53762878,0.04095514,98.55540883],[4.53762917,0.0409569,98.55626877],[4.53762956,0.04095866,98.55712941],[4.53762995,0.04096042,98.55799076],[4.53763034,0.04096218,98.55885281],[4.53763072,0.04096394,98.55971556],[4.53763111,0.0409657,98.56057902],[4.5376315,0.04096746,98.56144318],[4.53763189,0.04096922,98.56230805],[4.53763228,0.04097098,98.56317361],[4.53763267,0.04097274,98.56403989],[4.53763306,0.0409745,98.56490687],[4.53763345,0.04097626,98.56577455],[4.53763384,0.04097802,98.56664294],[4.53763423,0.04097979,98.56751203],[4.53763462,0.04098155,98.56838183],[4.537635,0.04098331,98.56925234],[4.53763539,0.04098507,98.57012355],[4.53763578,0.04098683,98.57099547],[4.53763617,0.04098859,98.5718681],[4.53763656,0.04099035,98.57274144],[4.53763695,0.04099211,98.57361548],[4.53763734,0.04099387,98.57449023],[4.53763772,0.04099563,98.57536569],[4.53763811,0.04099739,98.57624186],[4.5376385,0.04099915,98.57711874],[4.53763889,0.04100091,98.57799632],[4.53763928,0.04100267,98.57887462],[4.53763966,0.04100444,98.57975362],[4.53764005,0.0410062,98.58063334],[4.53764044,0.04100796,98.58151376],[4.53764083,0.04100972,98.5823949],[4.53764122,0.04101148,98.58327674],[4.5376416,0.04101324,98.5841593],[4.53764199,0.041015,98.58504257],[4.53764238,0.04101676,98.58592655],[4.53764277,0.04101852,98.58681124],[4.53764315,0.04102028,98.58769664],[4.53764354,0.04102205,98.58858276],[4.53764393,0.04102381,98.58946959],[4.53764431,0.04102557,98.59035713],[4.5376447,0.04102733,98.59124538],[4.53764509,0.04102909,98.59213435],[4.53764548,0.04103085,98.59302403],[4.53764586,0.04103261,98.59391442],[4.53764625,0.04103437,98.59480553],[4.53764664,0.04103613,98.59569735],[4.53764702,0.04103789,98.59658989],[4.53764741,0.04103966,98.59748314],[4.5376478,0.04104142,98.5983771],[4.53764818,0.04104318,98.59927178],[4.53764857,0.04104494,98.60016718],[4.53764896,0.0410467,98.60106329],[4.53764934,0.04104846,98.60196012],[4.53764973,0.04105022,98.60285766],[4.53765011,0.04105198,98.60375592],[4.5376505,0.04105375,98.6046549],[4.53765089,0.04105551,98.60555459],[4.53765127,0.04105727,98.606455],[4.53765166,0.04105903,98.60735613],[4.53765204,0.04106079,98.60825797],[4.53765243,0.04106255,98.60916053],[4.53765282,0.04106431,98.61006381],[4.5376532,0.04106607,98.61096781],[4.53765359,0.04106784,98.61187253],[4.53765397,0.0410696,98.61277796],[4.53765436,0.04107136,98.61368411],[4.53765475,0.04107312,98.61459099],[4.53765513,0.04107488,98.61549858],[4.53765552,0.04107664,98.61640689],[4.5376559,0.0410784,98.61731592],[4.53765629,0.04108017,98.61822567],[4.53765667,0.04108193,98.61913614],[4.53765706,0.04108369,98.62004733],[4.53765744,0.04108545,98.62095924],[4.53765783,0.04108721,98.62187187],[4.53765821,0.04108897,98.62278522],[4.5376586,0.04109073,98.62369929],[4.53765898,0.0410925,98.62461409],[4.53765937,0.04109426,98.6255296],[4.53765975,0.04109602,98.62644584],[4.53766014,0.04109778,98.6273628],[4.53766052,0.04109954,98.62828048],[4.53766091,0.0411013,98.62919888],[4.53766129,0.04110307,98.63011801],[4.53766168,0.04110483,98.63103786],[4.53766206,0.04110659,98.63195843],[4.53766245,0.04110835,98.63287972],[4.53766283,0.04111011,98.63380174],[4.53766321,0.04111187,98.63472448],[4.5376636,0.04111363,98.63564794],[4.53766398,0.0411154,98.63657213],[4.53766437,0.04111716,98.63749705],[4.53766475,0.04111892,98.63842268],[4.53766514,0.04112068,98.63934905],[4.53766552,0.04112244,98.64027613],[4.5376659,0.0411242,98.64120394],[4.53766629,0.04112597,98.64213248],[4.53766667,0.04112773,98.64306174],[4.53766706,0.04112949,98.64399173],[4.53766744,0.04113125,98.64492244],[4.53766782,0.04113301,98.64585388],[4.53766821,0.04113477,98.64678605],[4.53766859,0.04113654,98.64771894],[4.53766898,0.0411383,98.64865255],[4.53766936,0.04114006,98.6495869],[4.53766974,0.04114182,98.65052197],[4.53767013,0.04114358,98.65145777],[4.53767051,0.04114535,98.65239429],[4.53767089,0.04114711,98.65333155],[4.53767128,0.04114887,98.65426953],[4.53767166,0.04115063,98.65520824],[4.53767204,0.04115239,98.65614768],[4.53767243,0.04115415,98.65708784],[4.53767281,0.04115592,98.65802873],[4.53767319,0.04115768,98.65897036],[4.53767358,0.04115944,98.65991271],[4.53767396,0.0411612,98.66085579],[4.53767434,0.04116296,98.6617996],[4.53767473,0.04116473,98.66274414],[4.53767511,0.04116649,98.66368941],[4.53767549,0.04116825,98.66463541],[4.53767587,0.04117001,98.66558214],[4.53767626,0.04117177,98.6665296],[4.53767664,0.04117354,98.66747779],[4.53767702,0.0411753,98.66842671],[4.53767741,0.04117706,98.66937636],[4.53767779,0.04117882,98.67032674],[4.53767817,0.04118058,98.67127786],[4.53767855,0.04118235,98.6722297],[4.53767894,0.04118411,98.67318228],[4.53767932,0.04118587,98.67413559],[4.5376797,0.04118763,98.67508963],[4.53768009,0.04118939,98.67604441],[4.53768047,0.04119116,98.67699992],[4.53768085,0.04119292,98.67795616],[4.53768123,0.04119468,98.67891313],[4.53768162,0.04119644,98.67987084],[4.537682,0.0411982,98.68082928],[4.53768238,0.04119997,98.68178845],[4.53768276,0.04120173,98.68274836],[4.53768314,0.04120349,98.683709],[4.53768353,0.04120525,98.68467037],[4.53768391,0.04120701,98.68563248],[4.53768429,0.04120878,98.68659533],[4.53768467,0.04121054,98.68755891],[4.53768506,0.0412123,98.68852323],[4.53768544,0.04121406,98.68948828],[4.53768582,0.04121582,98.69045406],[4.5376862,0.04121759,98.69142059],[4.53768658,0.04121935,98.69238784],[4.53768697,0.04122111,98.69335584],[4.53768735,0.04122287,98.69432457],[4.53768773,0.04122463,98.69529404],[4.53768811,0.0412264,98.69626425],[4.53768849,0.04122816,98.69723519],[4.53768887,0.04122992,98.69820687],[4.53768926,0.04123168,98.69917929],[4.53768964,0.04123345,98.70015244],[4.53769002,0.04123521,98.70112634],[4.5376904,0.04123697,98.70210097],[4.53769078,0.04123873,98.70307634],[4.53769117,0.04124049,98.70405245],[4.53769155,0.04124226,98.7050293],[4.53769193,0.04124402,98.70600689],[4.53769231,0.04124578,98.70698522],[4.53769269,0.04124754,98.70796429],[4.53769307,0.04124931,98.7089441],[4.53769345,0.04125107,98.70992465],[4.53769384,0.04125283,98.71090594],[4.53769422,0.04125459,98.71188797],[4.53766163,0.04126179,98.6252392]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1003400","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":0,"sOffset":0.0}},{"geometry":{"coordinates":[[[4.53769422,0.04125459,98.71188797],[4.53769384,0.04125283,98.71090594],[4.53769345,0.04125107,98.70992465],[4.53769307,0.04124931,98.7089441],[4.53769269,0.04124754,98.70796429],[4.53769231,0.04124578,98.70698522],[4.53769193,0.04124402,98.70600689],[4.53769155,0.04124226,98.7050293],[4.53769117,0.04124049,98.70405245],[4.53769078,0.04123873,98.70307634],[4.5376904,0.04123697,98.70210097],[4.53769002,0.04123521,98.70112634],[4.53768964,0.04123345,98.70015244],[4.53768926,0.04123168,98.69917929],[4.53768887,0.04122992,98.69820687],[4.53768849,0.04122816,98.69723519],[4.53768811,0.0412264,98.69626425],[4.53768773,0.04122463,98.69529404],[4.53768735,0.04122287,98.69432457],[4.53768697,0.04122111,98.69335584],[4.53768658,0.04121935,98.69238784],[4.5376862,0.04121759,98.69142059],[4.53768582,0.04121582,98.69045406],[4.53768544,0.04121406,98.68948828],[4.53768506,0.0412123,98.68852323],[4.53768467,0.04121054,98.68755891],[4.53768429,0.04120878,98.68659533],[4.53768391,0.04120701,98.68563248],[4.53768353,0.04120525,98.68467037],[4.53768314,0.04120349,98.683709],[4.53768276,0.04120173,98.68274836],[4.53768238,0.04119997,98.68178845],[4.537682,0.0411982,98.68082928],[4.53768162,0.04119644,98.67987084],[4.53768123,0.04119468,98.67891313],[4.53768085,0.04119292,98.67795616],[4.53768047,0.04119116,98.67699992],[4.53768009,0.04118939,98.67604441],[4.5376797,0.04118763,98.67508963],[4.53767932,0.04118587,98.67413559],[4.53767894,0.04118411,98.67318228],[4.53767855,0.04118235,98.6722297],[4.53767817,0.04118058,98.67127786],[4.53767779,0.04117882,98.67032674],[4.53767741,0.04117706,98.66937636],[4.53767702,0.0411753,98.66842671],[4.53767664,0.04117354,98.66747779],[4.53767626,0.04117177,98.6665296],[4.53767587,0.04117001,98.66558214],[4.53767549,0.04116825,98.66463541],[4.53767511,0.04116649,98.66368941],[4.53767473,0.04116473,98.66274414],[4.53767434,0.04116296,98.6617996],[4.53767396,0.0411612,98.66085579],[4.53767358,0.04115944,98.65991271],[4.53767319,0.04115768,98.65897036],[4.53767281,0.04115592,98.65802873],[4.53767243,0.04115415,98.65708784],[4.53767204,0.04115239,98.65614768],[4.53767166,0.04115063,98.65520824],[4.53767128,0.04114887,98.65426953],[4.53767089,0.04114711,98.65333155],[4.53767051,0.04114535,98.65239429],[4.53767013,0.04114358,98.65145777],[4.53766974,0.04114182,98.65052197],[4.53766936,0.04114006,98.6495869],[4.53766898,0.0411383,98.64865255],[4.53766859,0.04113654,98.64771894],[4.53766821,0.04113477,98.64678605],[4.53766782,0.04113301,98.64585388],[4.53766744,0.04113125,98.64492244],[4.53766706,0.04112949,98.64399173],[4.53766667,0.04112773,98.64306174],[4.53766629,0.04112597,98.64213248],[4.5376659,0.0411242,98.64120394],[4.53766552,0.04112244,98.64027613],[4.53766514,0.04112068,98.63934905],[4.53766475,0.04111892,98.63842268],[4.53766437,0.04111716,98.63749705],[4.53766398,0.0411154,98.63657213],[4.5376636,0.04111363,98.63564794],[4.53766321,0.04111187,98.63472448],[4.53766283,0.04111011,98.63380174],[4.53766245,0.04110835,98.63287972],[4.53766206,0.04110659,98.63195843],[4.53766168,0.04110483,98.63103786],[4.53766129,0.04110307,98.63011801],[4.53766091,0.0411013,98.62919888],[4.53766052,0.04109954,98.62828048],[4.53766014,0.04109778,98.6273628],[4.53765975,0.04109602,98.62644584],[4.53765937,0.04109426,98.6255296],[4.53765898,0.0410925,98.62461409],[4.5376586,0.04109073,98.62369929],[4.53765821,0.04108897,98.62278522],[4.53765783,0.04108721,98.62187187],[4.53765744,0.04108545,98.62095924],[4.53765706,0.04108369,98.62004733],[4.53765667,0.04108193,98.61913614],[4.53765629,0.04108017,98.61822567],[4.5376559,0.0410784,98.61731592],[4.53765552,0.04107664,98.61640689],[4.53765513,0.04107488,98.61549858],[4.53765475,0.04107312,98.61459099],[4.53765436,0.04107136,98.61368411],[4.53765397,0.0410696,98.61277796],[4.53765359,0.04106784,98.61187253],[4.5376532,0.04106607,98.61096781],[4.53765282,0.04106431,98.61006381],[4.53765243,0.04106255,98.60916053],[4.53765204,0.04106079,98.60825797],[4.53765166,0.04105903,98.60735613],[4.53765127,0.04105727,98.606455],[4.53765089,0.04105551,98.60555459],[4.5376505,0.04105375,98.6046549],[4.53765011,0.04105198,98.60375592],[4.53764973,0.04105022,98.60285766],[4.53764934,0.04104846,98.60196012],[4.53764896,0.0410467,98.60106329],[4.53764857,0.04104494,98.60016718],[4.53764818,0.04104318,98.59927178],[4.5376478,0.04104142,98.5983771],[4.53764741,0.04103966,98.59748314],[4.53764702,0.04103789,98.59658989],[4.53764664,0.04103613,98.59569735],[4.53764625,0.04103437,98.59480553],[4.53764586,0.04103261,98.59391442],[4.53764548,0.04103085,98.59302403],[4.53764509,0.04102909,98.59213435],[4.5376447,0.04102733,98.59124538],[4.53764431,0.04102557,98.59035713],[4.53764393,0.04102381,98.58946959],[4.53764354,0.04102205,98.58858276],[4.53764315,0.04102028,98.58769664],[4.53764277,0.04101852,98.58681124],[4.53764238,0.04101676,98.58592655],[4.53764199,0.041015,98.58504257],[4.5376416,0.04101324,98.5841593],[4.53764122,0.04101148,98.58327674],[4.53764083,0.04100972,98.5823949],[4.53764044,0.04100796,98.58151376],[4.53764005,0.0410062,98.58063334],[4.53763966,0.04100444,98.57975362],[4.53763928,0.04100267,98.57887462],[4.53763889,0.04100091,98.57799632],[4.5376385,0.04099915,98.57711874],[4.53763811,0.04099739,98.57624186],[4.53763772,0.04099563,98.57536569],[4.53763734,0.04099387,98.57449023],[4.53763695,0.04099211,98.57361548],[4.53763656,0.04099035,98.57274144],[4.53763617,0.04098859,98.5718681],[4.53763578,0.04098683,98.57099547],[4.53763539,0.04098507,98.57012355],[4.537635,0.04098331,98.56925234],[4.53763462,0.04098155,98.56838183],[4.53763423,0.04097979,98.56751203],[4.53763384,0.04097802,98.56664294],[4.53763345,0.04097626,98.56577455],[4.53763306,0.0409745,98.56490687],[4.53763267,0.04097274,98.56403989],[4.53763228,0.04097098,98.56317361],[4.53763189,0.04096922,98.56230805],[4.5376315,0.04096746,98.56144318],[4.53763111,0.0409657,98.56057902],[4.53763072,0.04096394,98.55971556],[4.53763034,0.04096218,98.55885281],[4.53762995,0.04096042,98.55799076],[4.53762956,0.04095866,98.55712941],[4.53762917,0.0409569,98.55626877],[4.53762878,0.04095514,98.55540883],[4.53762839,0.04095338,98.5545496],[4.537628,0.04095162,98.55369107],[4.53762761,0.04094986,98.55283325],[4.53762722,0.0409481,98.55197614],[4.53762683,0.04094634,98.55111974],[4.53762644,0.04094457,98.55026405],[4.53762605,0.04094281,98.54940906],[4.53762566,0.04094105,98.54855479],[4.53762526,0.04093929,98.54770123],[4.53762487,0.04093753,98.54684839],[4.53762448,0.04093577,98.54599626],[4.53762409,0.04093401,98.54514484],[4.5376237,0.04093225,98.54429414],[4.53762331,0.04093049,98.54344415],[4.53762292,0.04092873,98.54259489],[4.53762253,0.04092697,98.54174634],[4.53762214,0.04092521,98.54089851],[4.53762175,0.04092345,98.5400514],[4.53762136,0.04092169,98.53920501],[4.53762096,0.04091993,98.53835934],[4.53762057,0.04091817,98.5375144],[4.53762018,0.04091641,98.53667018],[4.53761979,0.04091465,98.53582668],[4.5376194,0.04091289,98.53498391],[4.53761901,0.04091113,98.53414186],[4.53761862,0.04090937,98.53330054],[4.53761822,0.04090761,98.53245995],[4.53761783,0.04090585,98.53162008],[4.53761744,0.04090409,98.53078095],[4.53761705,0.04090233,98.52994254],[4.53761666,0.04090057,98.52910487],[4.53761626,0.04089881,98.52826792],[4.53761587,0.04089705,98.52743171],[4.53761548,0.04089529,98.52659624],[4.53761509,0.04089353,98.52576149],[4.5376147,0.04089177,98.52492748],[4.5376143,0.04089001,98.52409421],[4.53761391,0.04088825,98.52326168],[4.53761352,0.04088649,98.52242988],[4.53761313,0.04088473,98.52159882],[4.53761273,0.04088297,98.5207685],[4.53761234,0.04088121,98.51993891],[4.53761195,0.04087945,98.51911007],[4.53761156,0.04087769,98.51828197],[4.53761116,0.04087593,98.51745462],[4.53761077,0.04087417,98.516628],[4.53761038,0.04087241,98.51580213],[4.53760998,0.04087065,98.51497701],[4.53760959,0.04086889,98.51415263],[4.5376092,0.04086713,98.513329],[4.5376088,0.04086538,98.51250611],[4.53760841,0.04086362,98.51168397],[4.53760802,0.04086186,98.51086258],[4.53760762,0.0408601,98.51004194],[4.53760723,0.04085834,98.50922205],[4.53760684,0.04085658,98.50840292],[4.53760644,0.04085482,98.50758453],[4.53760605,0.04085306,98.5067669],[4.53760566,0.0408513,98.50595002],[4.53760526,0.04084954,98.50513389],[4.53760487,0.04084778,98.50431852],[4.53760447,0.04084602,98.50350391],[4.53760408,0.04084426,98.50269005],[4.53760369,0.0408425,98.50187695],[4.5376034,0.04084122,98.50128433],[4.53763505,0.04083408,98.58469331],[4.53763533,0.04083537,98.5852705],[4.53763573,0.04083713,98.58606258],[4.53763612,0.04083889,98.58685558],[4.53763651,0.04084065,98.58764948],[4.53763691,0.04084241,98.58844429],[4.5376373,0.04084417,98.58924002],[4.53763769,0.04084593,98.59003665],[4.53763809,0.04084769,98.59083419],[4.53763848,0.04084945,98.59163264],[4.53763887,0.04085121,98.59243201],[4.53763927,0.04085297,98.59323228],[4.53763966,0.04085473,98.59403345],[4.53764005,0.04085649,98.59483554],[4.53764045,0.04085825,98.59563854],[4.53764084,0.04086001,98.59644244],[4.53764123,0.04086177,98.59724725],[4.53764162,0.04086353,98.59805297],[4.53764202,0.04086529,98.5988596],[4.53764241,0.04086705,98.59966713],[4.5376428,0.04086881,98.60047557],[4.5376432,0.04087057,98.60128492],[4.53764359,0.04087233,98.60209517],[4.53764398,0.04087409,98.60290633],[4.53764437,0.04087585,98.6037184],[4.53764476,0.04087761,98.60453137],[4.53764516,0.04087937,98.60534525],[4.53764555,0.04088113,98.60616003],[4.53764594,0.04088289,98.60697572],[4.53764633,0.04088465,98.60779231],[4.53764672,0.04088641,98.6086098],[4.53764712,0.04088818,98.60942821],[4.53764751,0.04088994,98.61024751],[4.5376479,0.0408917,98.61106772],[4.53764829,0.04089346,98.61188884],[4.53764868,0.04089522,98.61271085],[4.53764907,0.04089698,98.61353377],[4.53764947,0.04089874,98.6143576],[4.53764986,0.0409005,98.61518232],[4.53765025,0.04090226,98.61600795],[4.53765064,0.04090402,98.61683448],[4.53765103,0.04090578,98.61766191],[4.53765142,0.04090754,98.61849025],[4.53765181,0.0409093,98.61931948],[4.5376522,0.04091106,98.62014962],[4.53765259,0.04091282,98.62098066],[4.53765299,0.04091459,98.6218126],[4.53765338,0.04091635,98.62264544],[4.53765377,0.04091811,98.62347918],[4.53765416,0.04091987,98.62431382],[4.53765455,0.04092163,98.62514936],[4.53765494,0.04092339,98.6259858],[4.53765533,0.04092515,98.62682314],[4.53765572,0.04092691,98.62766138],[4.53765611,0.04092867,98.62850052],[4.5376565,0.04093043,98.62934055],[4.53765689,0.04093219,98.63018149],[4.53765728,0.04093395,98.63102332],[4.53765767,0.04093572,98.63186605],[4.53765806,0.04093748,98.63270968],[4.53765845,0.04093924,98.6335542],[4.53765884,0.040941,98.63439962],[4.53765923,0.04094276,98.63524594],[4.53765962,0.04094452,98.63609316],[4.53766001,0.04094628,98.63694127],[4.5376604,0.04094804,98.63779027],[4.53766079,0.0409498,98.63864018],[4.53766118,0.04095157,98.63949097],[4.53766157,0.04095333,98.64034267],[4.53766195,0.04095509,98.64119526],[4.53766234,0.04095685,98.64204874],[4.53766273,0.04095861,98.64290312],[4.53766312,0.04096037,98.6437584],[4.53766351,0.04096213,98.64461458],[4.5376639,0.04096389,98.64547165],[4.53766429,0.04096566,98.64632963],[4.53766468,0.04096742,98.64718851],[4.53766507,0.04096918,98.64804828],[4.53766545,0.04097094,98.64890897],[4.53766584,0.0409727,98.64977055],[4.53766623,0.04097446,98.65063304],[4.53766662,0.04097622,98.65149644],[4.53766701,0.04097798,98.65236074],[4.5376674,0.04097975,98.65322595],[4.53766778,0.04098151,98.65409207],[4.53766817,0.04098327,98.65495909],[4.53766856,0.04098503,98.65582703],[4.53766895,0.04098679,98.65669588],[4.53766934,0.04098855,98.65756564],[4.53766972,0.04099032,98.65843631],[4.53767011,0.04099208,98.65930789],[4.5376705,0.04099384,98.66018039],[4.53767089,0.0409956,98.6610538],[4.53767127,0.04099736,98.66192813],[4.53767166,0.04099912,98.66280338],[4.53767205,0.04100088,98.66367954],[4.53767244,0.04100265,98.66455662],[4.53767282,0.04100441,98.66543462],[4.53767321,0.04100617,98.66631354],[4.5376736,0.04100793,98.66719338],[4.53767398,0.04100969,98.66807415],[4.53767437,0.04101145,98.66895583],[4.53767476,0.04101322,98.66983844],[4.53767515,0.04101498,98.67072198],[4.53767553,0.04101674,98.67160643],[4.53767592,0.0410185,98.67249182],[4.53767631,0.04102026,98.67337813],[4.53767669,0.04102203,98.67426537],[4.53767708,0.04102379,98.67515354],[4.53767747,0.04102555,98.67604264],[4.53767785,0.04102731,98.67693266],[4.53767824,0.04102907,98.67782362],[4.53767862,0.04103083,98.67871551],[4.53767901,0.0410326,98.67960833],[4.5376794,0.04103436,98.68050209],[4.53767978,0.04103612,98.68139678],[4.53768017,0.04103788,98.6822924],[4.53768056,0.04103964,98.68318897],[4.53768094,0.04104141,98.68408646],[4.53768133,0.04104317,98.6849849],[4.53768171,0.04104493,98.68588427],[4.5376821,0.04104669,98.68678458],[4.53768248,0.04104845,98.68768584],[4.53768287,0.04105022,98.68858803],[4.53768326,0.04105198,98.68949117],[4.53768364,0.04105374,98.69039524],[4.53768403,0.0410555,98.69130026],[4.53768441,0.04105726,98.69220623],[4.5376848,0.04105903,98.69311314],[4.53768518,0.04106079,98.694021],[4.53768557,0.04106255,98.6949298],[4.53768595,0.04106431,98.69583955],[4.53768634,0.04106607,98.69675024],[4.53768672,0.04106784,98.69766189],[4.53768711,0.0410696,98.69857449],[4.53768749,0.04107136,98.69948803],[4.53768788,0.04107312,98.70040253],[4.53768826,0.04107488,98.70131798],[4.53768865,0.04107665,98.70223438],[4.53768903,0.04107841,98.70315174],[4.53768942,0.04108017,98.70407005],[4.5376898,0.04108193,98.70498931],[4.53769019,0.0410837,98.70590954],[4.53769057,0.04108546,98.70683072],[4.53769096,0.04108722,98.70775285],[4.53769134,0.04108898,98.70867595],[4.53769173,0.04109074,98.7096],[4.53769211,0.04109251,98.71052502],[4.53769249,0.04109427,98.71145099],[4.53769288,0.04109603,98.71237793],[4.53769326,0.04109779,98.71330583],[4.53769365,0.04109956,98.71423469],[4.53769403,0.04110132,98.71516452],[4.53769442,0.04110308,98.71609531],[4.5376948,0.04110484,98.71702707],[4.53769518,0.04110661,98.71795979],[4.53769557,0.04110837,98.71889348],[4.53769595,0.04111013,98.71982814],[4.53769633,0.04111189,98.72076377],[4.53769672,0.04111366,98.72170037],[4.5376971,0.04111542,98.72263793],[4.53769749,0.04111718,98.72357647],[4.53769787,0.04111894,98.72451598],[4.53769825,0.04112071,98.72545647],[4.53769864,0.04112247,98.72639792],[4.53769902,0.04112423,98.72734035],[4.5376994,0.04112599,98.72828376],[4.53769979,0.04112776,98.72922814],[4.53770017,0.04112952,98.7301735],[4.53770055,0.04113128,98.73111984],[4.53770094,0.04113304,98.73206715],[4.53770132,0.04113481,98.73301544],[4.5377017,0.04113657,98.73396472],[4.53770209,0.04113833,98.73491497],[4.53770247,0.04114009,98.73586621],[4.53770285,0.04114186,98.73681842],[4.53770324,0.04114362,98.73777162],[4.53770362,0.04114538,98.73872581],[4.537704,0.04114714,98.73968098],[4.53770438,0.04114891,98.74063713],[4.53770477,0.04115067,98.74159427],[4.53770515,0.04115243,98.7425524],[4.53770553,0.04115419,98.74351151],[4.53770592,0.04115596,98.74447161],[4.5377063,0.04115772,98.74543271],[4.53770668,0.04115948,98.74639479],[4.53770706,0.04116124,98.74735786],[4.53770745,0.04116301,98.74832193],[4.53770783,0.04116477,98.74928699],[4.53770821,0.04116653,98.75025304],[4.53770859,0.0411683,98.75122008],[4.53770898,0.04117006,98.75218812],[4.53770936,0.04117182,98.75315715],[4.53770974,0.04117358,98.75412719],[4.53771012,0.04117535,98.75509821],[4.53771051,0.04117711,98.75607024],[4.53771089,0.04117887,98.75704327],[4.53771127,0.04118064,98.75801729],[4.53771165,0.0411824,98.75899232],[4.53771203,0.04118416,98.75996834],[4.53771242,0.04118592,98.76094537],[4.5377128,0.04118769,98.7619234],[4.53771318,0.04118945,98.76290244],[4.53771356,0.04119121,98.76388247],[4.53771394,0.04119297,98.76486352],[4.53771433,0.04119474,98.76584557],[4.53771471,0.0411965,98.76682863],[4.53771509,0.04119826,98.76781269],[4.53771547,0.04120003,98.76879776],[4.53771585,0.04120179,98.76978384],[4.53771624,0.04120355,98.77077094],[4.53771662,0.04120531,98.77175904],[4.537717,0.04120708,98.77274815],[4.53771738,0.04120884,98.77373828],[4.53771776,0.0412106,98.77472942],[4.53771814,0.04121237,98.77572157],[4.53771853,0.04121413,98.77671474],[4.53771891,0.04121589,98.77770893],[4.53771929,0.04121766,98.77870413],[4.53771967,0.04121942,98.77970035],[4.53772005,0.04122118,98.78069758],[4.53772043,0.04122294,98.78169584],[4.53772081,0.04122471,98.78269511],[4.5377212,0.04122647,98.78369541],[4.53772158,0.04122823,98.78469672],[4.53772196,0.04123,98.78569906],[4.53772234,0.04123176,98.78670243],[4.53772272,0.04123352,98.78770681],[4.5377231,0.04123529,98.78871222],[4.53772348,0.04123705,98.78971866],[4.53772386,0.04123881,98.79072612],[4.53772425,0.04124057,98.79173461],[4.53772463,0.04124234,98.79274413],[4.53772501,0.0412441,98.79375468],[4.53772539,0.04124586,98.79476625],[4.53772577,0.04124763,98.79577886],[4.53769422,0.04125459,98.71188797]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1003400","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":0,"sOffset":0.0}},{"geometry":{"coordinates":[[[4.53772577,0.04124763,98.79577886],[4.53772539,0.04124586,98.79476625],[4.53772501,0.0412441,98.79375468],[4.53772463,0.04124234,98.79274413],[4.53772425,0.04124057,98.79173461],[4.53772386,0.04123881,98.79072612],[4.53772348,0.04123705,98.78971866],[4.5377231,0.04123529,98.78871222],[4.53772272,0.04123352,98.78770681],[4.53772234,0.04123176,98.78670243],[4.53772196,0.04123,98.78569906],[4.53772158,0.04122823,98.78469672],[4.5377212,0.04122647,98.78369541],[4.53772081,0.04122471,98.78269511],[4.53772043,0.04122294,98.78169584],[4.53772005,0.04122118,98.78069758],[4.53771967,0.04121942,98.77970035],[4.53771929,0.04121766,98.77870413],[4.53771891,0.04121589,98.77770893],[4.53771853,0.04121413,98.77671474],[4.53771814,0.04121237,98.77572157],[4.53771776,0.0412106,98.77472942],[4.53771738,0.04120884,98.77373828],[4.537717,0.04120708,98.77274815],[4.53771662,0.04120531,98.77175904],[4.53771624,0.04120355,98.77077094],[4.53771585,0.04120179,98.76978384],[4.53771547,0.04120003,98.76879776],[4.53771509,0.04119826,98.76781269],[4.53771471,0.0411965,98.76682863],[4.53771433,0.04119474,98.76584557],[4.53771394,0.04119297,98.76486352],[4.53771356,0.04119121,98.76388247],[4.53771318,0.04118945,98.76290244],[4.5377128,0.04118769,98.7619234],[4.53771242,0.04118592,98.76094537],[4.53771203,0.04118416,98.75996834],[4.53771165,0.0411824,98.75899232],[4.53771127,0.04118064,98.75801729],[4.53771089,0.04117887,98.75704327],[4.53771051,0.04117711,98.75607024],[4.53771012,0.04117535,98.75509821],[4.53770974,0.04117358,98.75412719],[4.53770936,0.04117182,98.75315715],[4.53770898,0.04117006,98.75218812],[4.53770859,0.0411683,98.75122008],[4.53770821,0.04116653,98.75025304],[4.53770783,0.04116477,98.74928699],[4.53770745,0.04116301,98.74832193],[4.53770706,0.04116124,98.74735786],[4.53770668,0.04115948,98.74639479],[4.5377063,0.04115772,98.74543271],[4.53770592,0.04115596,98.74447161],[4.53770553,0.04115419,98.74351151],[4.53770515,0.04115243,98.7425524],[4.53770477,0.04115067,98.74159427],[4.53770438,0.04114891,98.74063713],[4.537704,0.04114714,98.73968098],[4.53770362,0.04114538,98.73872581],[4.53770324,0.04114362,98.73777162],[4.53770285,0.04114186,98.73681842],[4.53770247,0.04114009,98.73586621],[4.53770209,0.04113833,98.73491497],[4.5377017,0.04113657,98.73396472],[4.53770132,0.04113481,98.73301544],[4.53770094,0.04113304,98.73206715],[4.53770055,0.04113128,98.73111984],[4.53770017,0.04112952,98.7301735],[4.53769979,0.04112776,98.72922814],[4.5376994,0.04112599,98.72828376],[4.53769902,0.04112423,98.72734035],[4.53769864,0.04112247,98.72639792],[4.53769825,0.04112071,98.72545647],[4.53769787,0.04111894,98.72451598],[4.53769749,0.04111718,98.72357647],[4.5376971,0.04111542,98.72263793],[4.53769672,0.04111366,98.72170037],[4.53769633,0.04111189,98.72076377],[4.53769595,0.04111013,98.71982814],[4.53769557,0.04110837,98.71889348],[4.53769518,0.04110661,98.71795979],[4.5376948,0.04110484,98.71702707],[4.53769442,0.04110308,98.71609531],[4.53769403,0.04110132,98.71516452],[4.53769365,0.04109956,98.71423469],[4.53769326,0.04109779,98.71330583],[4.53769288,0.04109603,98.71237793],[4.53769249,0.04109427,98.71145099],[4.53769211,0.04109251,98.71052502],[4.53769173,0.04109074,98.7096],[4.53769134,0.04108898,98.70867595],[4.53769096,0.04108722,98.70775285],[4.53769057,0.04108546,98.70683072],[4.53769019,0.0410837,98.70590954],[4.5376898,0.04108193,98.70498931],[4.53768942,0.04108017,98.70407005],[4.53768903,0.04107841,98.70315174],[4.53768865,0.04107665,98.70223438],[4.53768826,0.04107488,98.70131798],[4.53768788,0.04107312,98.70040253],[4.53768749,0.04107136,98.69948803],[4.53768711,0.0410696,98.69857449],[4.53768672,0.04106784,98.69766189],[4.53768634,0.04106607,98.69675024],[4.53768595,0.04106431,98.69583955],[4.53768557,0.04106255,98.6949298],[4.53768518,0.04106079,98.694021],[4.5376848,0.04105903,98.69311314],[4.53768441,0.04105726,98.69220623],[4.53768403,0.0410555,98.69130026],[4.53768364,0.04105374,98.69039524],[4.53768326,0.04105198,98.68949117],[4.53768287,0.04105022,98.68858803],[4.53768248,0.04104845,98.68768584],[4.5376821,0.04104669,98.68678458],[4.53768171,0.04104493,98.68588427],[4.53768133,0.04104317,98.6849849],[4.53768094,0.04104141,98.68408646],[4.53768056,0.04103964,98.68318897],[4.53768017,0.04103788,98.6822924],[4.53767978,0.04103612,98.68139678],[4.5376794,0.04103436,98.68050209],[4.53767901,0.0410326,98.67960833],[4.53767862,0.04103083,98.67871551],[4.53767824,0.04102907,98.67782362],[4.53767785,0.04102731,98.67693266],[4.53767747,0.04102555,98.67604264],[4.53767708,0.04102379,98.67515354],[4.53767669,0.04102203,98.67426537],[4.53767631,0.04102026,98.67337813],[4.53767592,0.0410185,98.67249182],[4.53767553,0.04101674,98.67160643],[4.53767515,0.04101498,98.67072198],[4.53767476,0.04101322,98.66983844],[4.53767437,0.04101145,98.66895583],[4.53767398,0.04100969,98.66807415],[4.5376736,0.04100793,98.66719338],[4.53767321,0.04100617,98.66631354],[4.53767282,0.04100441,98.66543462],[4.53767244,0.04100265,98.66455662],[4.53767205,0.04100088,98.66367954],[4.53767166,0.04099912,98.66280338],[4.53767127,0.04099736,98.66192813],[4.53767089,0.0409956,98.6610538],[4.5376705,0.04099384,98.66018039],[4.53767011,0.04099208,98.65930789],[4.53766972,0.04099032,98.65843631],[4.53766934,0.04098855,98.65756564],[4.53766895,0.04098679,98.65669588],[4.53766856,0.04098503,98.65582703],[4.53766817,0.04098327,98.65495909],[4.53766778,0.04098151,98.65409207],[4.5376674,0.04097975,98.65322595],[4.53766701,0.04097798,98.65236074],[4.53766662,0.04097622,98.65149644],[4.53766623,0.04097446,98.65063304],[4.53766584,0.0409727,98.64977055],[4.53766545,0.04097094,98.64890897],[4.53766507,0.04096918,98.64804828],[4.53766468,0.04096742,98.64718851],[4.53766429,0.04096566,98.64632963],[4.5376639,0.04096389,98.64547165],[4.53766351,0.04096213,98.64461458],[4.53766312,0.04096037,98.6437584],[4.53766273,0.04095861,98.64290312],[4.53766234,0.04095685,98.64204874],[4.53766195,0.04095509,98.64119526],[4.53766157,0.04095333,98.64034267],[4.53766118,0.04095157,98.63949097],[4.53766079,0.0409498,98.63864018],[4.5376604,0.04094804,98.63779027],[4.53766001,0.04094628,98.63694127],[4.53765962,0.04094452,98.63609316],[4.53765923,0.04094276,98.63524594],[4.53765884,0.040941,98.63439962],[4.53765845,0.04093924,98.6335542],[4.53765806,0.04093748,98.63270968],[4.53765767,0.04093572,98.63186605],[4.53765728,0.04093395,98.63102332],[4.53765689,0.04093219,98.63018149],[4.5376565,0.04093043,98.62934055],[4.53765611,0.04092867,98.62850052],[4.53765572,0.04092691,98.62766138],[4.53765533,0.04092515,98.62682314],[4.53765494,0.04092339,98.6259858],[4.53765455,0.04092163,98.62514936],[4.53765416,0.04091987,98.62431382],[4.53765377,0.04091811,98.62347918],[4.53765338,0.04091635,98.62264544],[4.53765299,0.04091459,98.6218126],[4.53765259,0.04091282,98.62098066],[4.5376522,0.04091106,98.62014962],[4.53765181,0.0409093,98.61931948],[4.53765142,0.04090754,98.61849025],[4.53765103,0.04090578,98.61766191],[4.53765064,0.04090402,98.61683448],[4.53765025,0.04090226,98.61600795],[4.53764986,0.0409005,98.61518232],[4.53764947,0.04089874,98.6143576],[4.53764907,0.04089698,98.61353377],[4.53764868,0.04089522,98.61271085],[4.53764829,0.04089346,98.61188884],[4.5376479,0.0408917,98.61106772],[4.53764751,0.04088994,98.61024751],[4.53764712,0.04088818,98.60942821],[4.53764672,0.04088641,98.6086098],[4.53764633,0.04088465,98.60779231],[4.53764594,0.04088289,98.60697572],[4.53764555,0.04088113,98.60616003],[4.53764516,0.04087937,98.60534525],[4.53764476,0.04087761,98.60453137],[4.53764437,0.04087585,98.6037184],[4.53764398,0.04087409,98.60290633],[4.53764359,0.04087233,98.60209517],[4.5376432,0.04087057,98.60128492],[4.5376428,0.04086881,98.60047557],[4.53764241,0.04086705,98.59966713],[4.53764202,0.04086529,98.5988596],[4.53764162,0.04086353,98.59805297],[4.53764123,0.04086177,98.59724725],[4.53764084,0.04086001,98.59644244],[4.53764045,0.04085825,98.59563854],[4.53764005,0.04085649,98.59483554],[4.53763966,0.04085473,98.59403345],[4.53763927,0.04085297,98.59323228],[4.53763887,0.04085121,98.59243201],[4.53763848,0.04084945,98.59163264],[4.53763809,0.04084769,98.59083419],[4.53763769,0.04084593,98.59003665],[4.5376373,0.04084417,98.58924002],[4.53763691,0.04084241,98.58844429],[4.53763651,0.04084065,98.58764948],[4.53763612,0.04083889,98.58685558],[4.53763573,0.04083713,98.58606258],[4.53763533,0.04083537,98.5852705],[4.53763505,0.04083408,98.58469331],[4.53763628,0.0408338,98.58794492],[4.53763657,0.04083509,98.58851395],[4.53763695,0.04083685,98.58929415],[4.53763734,0.04083861,98.59007453],[4.53763773,0.04084037,98.59085513],[4.53763812,0.04084213,98.591636],[4.53763851,0.04084389,98.59241719],[4.5376389,0.04084566,98.59319877],[4.53763928,0.04084742,98.59398077],[4.53763967,0.04084918,98.59476326],[4.53764006,0.04085094,98.59554628],[4.53764045,0.0408527,98.59632989],[4.53764083,0.04085446,98.59711413],[4.53764122,0.04085623,98.59789906],[4.53764161,0.04085799,98.59868473],[4.53764199,0.04085975,98.5994712],[4.53764238,0.04086151,98.60025851],[4.53764277,0.04086327,98.60104671],[4.53764315,0.04086503,98.60183586],[4.53764354,0.0408668,98.602626],[4.53764392,0.04086856,98.6034172],[4.53764431,0.04087032,98.60420949],[4.5376447,0.04087208,98.60500294],[4.53764508,0.04087384,98.60579759],[4.53764547,0.0408756,98.60659349],[4.53764586,0.04087737,98.6073907],[4.53764624,0.04087913,98.60818927],[4.53764663,0.04088089,98.60898924],[4.53764702,0.04088265,98.60979067],[4.5376474,0.04088441,98.61059361],[4.53764779,0.04088618,98.61139811],[4.53764818,0.04088794,98.61220422],[4.53764856,0.0408897,98.613012],[4.53764895,0.04089146,98.61382148],[4.53764934,0.04089322,98.61463273],[4.53764973,0.04089498,98.6154458],[4.53765012,0.04089674,98.61626073],[4.53765051,0.04089851,98.61707758],[4.53765089,0.04090027,98.61789639],[4.53765128,0.04090203,98.61871722],[4.53765167,0.04090379,98.61954012],[4.53765207,0.04090555,98.62036514],[4.53765246,0.04090731,98.62119233],[4.53765285,0.04090907,98.62202174],[4.53765324,0.04091083,98.62285342],[4.53765363,0.04091259,98.6236874],[4.53765402,0.04091435,98.62452364],[4.53765442,0.04091611,98.62536206],[4.53765481,0.04091787,98.6262026],[4.5376552,0.04091963,98.62704518],[4.5376556,0.04092139,98.62788975],[4.53765599,0.04092315,98.62873623],[4.53765639,0.04092491,98.62958456],[4.53765678,0.04092667,98.63043467],[4.53765718,0.04092843,98.63128648],[4.53765757,0.04093019,98.63213994],[4.53765797,0.04093195,98.63299497],[4.53765836,0.04093371,98.63385151],[4.53765876,0.04093547,98.63470949],[4.53765916,0.04093723,98.63556884],[4.53765955,0.04093899,98.63642949],[4.53765995,0.04094075,98.63729138],[4.53766034,0.04094251,98.63815444],[4.53766074,0.04094427,98.6390186],[4.53766114,0.04094603,98.63988379],[4.53766153,0.04094779,98.64074996],[4.53766193,0.04094955,98.64161702],[4.53766233,0.04095131,98.64248491],[4.53766272,0.04095307,98.64335357],[4.53766312,0.04095483,98.64422293],[4.53766351,0.04095659,98.64509292],[4.53766391,0.04095835,98.64596347],[4.5376643,0.04096011,98.64683453],[4.5376647,0.04096187,98.64770602],[4.53766509,0.04096363,98.64857787],[4.53766549,0.04096539,98.64945003],[4.53766588,0.04096715,98.65032243],[4.53766627,0.04096891,98.65119499],[4.53766667,0.04097067,98.65206766],[4.53766706,0.04097243,98.65294037],[4.53766745,0.04097419,98.65381304],[4.53766785,0.04097595,98.65468563],[4.53766824,0.04097771,98.65555805],[4.53766863,0.04097947,98.65643025],[4.53766902,0.04098123,98.65730218],[4.53766941,0.04098299,98.65817387],[4.5376698,0.04098475,98.65904539],[4.53767019,0.04098651,98.65991678],[4.53767058,0.04098828,98.6607881],[4.53767096,0.04099004,98.66165942],[4.53767135,0.0409918,98.66253078],[4.53767174,0.04099356,98.66340225],[4.53767213,0.04099532,98.66427387],[4.53767251,0.04099708,98.66514571],[4.5376729,0.04099885,98.66601782],[4.53767328,0.04100061,98.66689025],[4.53767367,0.04100237,98.66776307],[4.53767406,0.04100413,98.66863633],[4.53767444,0.04100589,98.66951008],[4.53767483,0.04100766,98.67038439],[4.53767521,0.04100942,98.6712593],[4.5376756,0.04101118,98.67213488],[4.53767598,0.04101294,98.67301117],[4.53767636,0.04101471,98.67388825],[4.53767675,0.04101647,98.67476615],[4.53767713,0.04101823,98.67564494],[4.53767752,0.04101999,98.67652467],[4.5376779,0.04102175,98.67740538],[4.53767828,0.04102352,98.67828706],[4.53767867,0.04102528,98.67916972],[4.53767905,0.04102704,98.68005337],[4.53767944,0.0410288,98.680938],[4.53767982,0.04103057,98.68182363],[4.5376802,0.04103233,98.68271025],[4.53768059,0.04103409,98.68359787],[4.53768097,0.04103585,98.6844865],[4.53768136,0.04103762,98.68537613],[4.53768174,0.04103938,98.68626677],[4.53768212,0.04104114,98.68715842],[4.53768251,0.0410429,98.68805109],[4.53768289,0.04104467,98.68894478],[4.53768327,0.04104643,98.6898395],[4.53768366,0.04104819,98.69073524],[4.53768404,0.04104995,98.69163202],[4.53768442,0.04105172,98.69252983],[4.53768481,0.04105348,98.69342868],[4.53768519,0.04105524,98.69432857],[4.53768558,0.041057,98.69522951],[4.53768596,0.04105877,98.6961315],[4.53768634,0.04106053,98.69703455],[4.53768673,0.04106229,98.69793865],[4.53768711,0.04106405,98.69884381],[4.53768749,0.04106582,98.69975004],[4.53768788,0.04106758,98.70065734],[4.53768826,0.04106934,98.70156571],[4.53768864,0.0410711,98.70247515],[4.53768903,0.04107287,98.70338567],[4.53768941,0.04107463,98.70429728],[4.53768979,0.04107639,98.70520998],[4.53769018,0.04107815,98.70612376],[4.53769056,0.04107992,98.70703864],[4.53769094,0.04108168,98.70795462],[4.53769133,0.04108344,98.70887169],[4.53769171,0.0410852,98.70978988],[4.53769209,0.04108697,98.71070917],[4.53769248,0.04108873,98.71162958],[4.53769286,0.04109049,98.7125511],[4.53769324,0.04109225,98.71347374],[4.53769363,0.04109402,98.71439751],[4.53769401,0.04109578,98.7153224],[4.53769439,0.04109754,98.71624843],[4.53769478,0.04109931,98.71717558],[4.53769516,0.04110107,98.71810388],[4.53769554,0.04110283,98.71903332],[4.53769593,0.04110459,98.71996388],[4.53769631,0.04110636,98.72089558],[4.53769669,0.04110812,98.7218284],[4.53769708,0.04110988,98.72276235],[4.53769746,0.04111164,98.72369742],[4.53769784,0.04111341,98.72463361],[4.53769823,0.04111517,98.72557091],[4.53769861,0.04111693,98.72650933],[4.53769899,0.04111869,98.72744886],[4.53769938,0.04112046,98.7283895],[4.53769976,0.04112222,98.72933124],[4.53770014,0.04112398,98.73027408],[4.53770053,0.04112574,98.73121802],[4.53770091,0.04112751,98.73216306],[4.53770129,0.04112927,98.73310919],[4.53770168,0.04113103,98.73405642],[4.53770206,0.04113279,98.73500473],[4.53770245,0.04113456,98.73595412],[4.53770283,0.04113632,98.7369046],[4.53770321,0.04113808,98.73785616],[4.5377036,0.04113984,98.73880879],[4.53770398,0.04114161,98.7397625],[4.53770436,0.04114337,98.74071728],[4.53770475,0.04114513,98.74167312],[4.53770513,0.04114689,98.74263004],[4.53770551,0.04114866,98.74358801],[4.5377059,0.04115042,98.74454704],[4.53770628,0.04115218,98.74550713],[4.53770666,0.04115394,98.74646828],[4.53770705,0.04115571,98.74743047],[4.53770743,0.04115747,98.74839371],[4.53770781,0.04115923,98.749358],[4.5377082,0.04116099,98.75032333],[4.53770858,0.04116276,98.7512897],[4.53770896,0.04116452,98.75225711],[4.53770935,0.04116628,98.75322555],[4.53770973,0.04116804,98.75419502],[4.53771011,0.04116981,98.75516552],[4.53771049,0.04117157,98.75613705],[4.53771088,0.04117333,98.7571096],[4.53771126,0.04117509,98.75808317],[4.53771164,0.04117686,98.75905775],[4.53771203,0.04117862,98.76003335],[4.53771241,0.04118038,98.76100996],[4.53771279,0.04118215,98.76198758],[4.53771317,0.04118391,98.7629662],[4.53771356,0.04118567,98.76394582],[4.53771394,0.04118743,98.76492645],[4.53771432,0.0411892,98.76590807],[4.53771471,0.04119096,98.76689068],[4.53771509,0.04119272,98.76787429],[4.53771547,0.04119448,98.76885888],[4.53771585,0.04119625,98.76984446],[4.53771624,0.04119801,98.77083102],[4.53771662,0.04119977,98.77181856],[4.537717,0.04120154,98.77280708],[4.53771738,0.0412033,98.77379656],[4.53771777,0.04120506,98.77478702],[4.53771815,0.04120682,98.77577845],[4.53771853,0.04120859,98.77677084],[4.53771891,0.04121035,98.77776419],[4.53771929,0.04121211,98.77875851],[4.53771968,0.04121388,98.77975377],[4.53772006,0.04121564,98.78074999],[4.53772044,0.0412174,98.78174716],[4.53772082,0.04121916,98.78274528],[4.5377212,0.04122093,98.78374434],[4.53772158,0.04122269,98.78474434],[4.53772197,0.04122445,98.78574528],[4.53772235,0.04122622,98.78674715],[4.53772273,0.04122798,98.78774996],[4.53772311,0.04122974,98.78875369],[4.53772349,0.0412315,98.78975835],[4.53772387,0.04123327,98.79076393],[4.53772425,0.04123503,98.79177044],[4.53772464,0.04123679,98.79277786],[4.53772502,0.04123856,98.79378619],[4.5377254,0.04124032,98.79479543],[4.53772578,0.04124208,98.79580559],[4.53772616,0.04124385,98.79681664],[4.53772654,0.04124561,98.7978286],[4.53772692,0.04124737,98.79884146],[4.53772577,0.04124763,98.79577886]]],"type":"Polygon"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1003400","id":1,"type":"shoulder","predecessorId":0,"sOffset":0.0}},{"geometry":{"coordinates":[[[4.53772692,0.04124737,98.79884146],[4.53772654,0.04124561,98.7978286],[4.53772616,0.04124385,98.79681664],[4.53772578,0.04124208,98.79580559],[4.5377254,0.04124032,98.79479543],[4.53772502,0.04123856,98.79378619],[4.53772464,0.04123679,98.79277786],[4.53772425,0.04123503,98.79177044],[4.53772387,0.04123327,98.79076393],[4.53772349,0.0412315,98.78975835],[4.53772311,0.04122974,98.78875369],[4.53772273,0.04122798,98.78774996],[4.53772235,0.04122622,98.78674715],[4.53772197,0.04122445,98.78574528],[4.53772158,0.04122269,98.78474434],[4.5377212,0.04122093,98.78374434],[4.53772082,0.04121916,98.78274528],[4.53772044,0.0412174,98.78174716],[4.53772006,0.04121564,98.78074999],[4.53771968,0.04121388,98.77975377],[4.53771929,0.04121211,98.77875851],[4.53771891,0.04121035,98.77776419],[4.53771853,0.04120859,98.77677084],[4.53771815,0.04120682,98.77577845],[4.53771777,0.04120506,98.77478702],[4.53771738,0.0412033,98.77379656],[4.537717,0.04120154,98.77280708],[4.53771662,0.04119977,98.77181856],[4.53771624,0.04119801,98.77083102],[4.53771585,0.04119625,98.76984446],[4.53771547,0.04119448,98.76885888],[4.53771509,0.04119272,98.76787429],[4.53771471,0.04119096,98.76689068],[4.53771432,0.0411892,98.76590807],[4.53771394,0.04118743,98.76492645],[4.53771356,0.04118567,98.76394582],[4.53771317,0.04118391,98.7629662],[4.53771279,0.04118215,98.76198758],[4.53771241,0.04118038,98.76100996],[4.53771203,0.04117862,98.76003335],[4.53771164,0.04117686,98.75905775],[4.53771126,0.04117509,98.75808317],[4.53771088,0.04117333,98.7571096],[4.53771049,0.04117157,98.75613705],[4.53771011,0.04116981,98.75516552],[4.53770973,0.04116804,98.75419502],[4.53770935,0.04116628,98.75322555],[4.53770896,0.04116452,98.75225711],[4.53770858,0.04116276,98.7512897],[4.5377082,0.04116099,98.75032333],[4.53770781,0.04115923,98.749358],[4.53770743,0.04115747,98.74839371],[4.53770705,0.04115571,98.74743047],[4.53770666,0.04115394,98.74646828],[4.53770628,0.04115218,98.74550713],[4.5377059,0.04115042,98.74454704],[4.53770551,0.04114866,98.74358801],[4.53770513,0.04114689,98.74263004],[4.53770475,0.04114513,98.74167312],[4.53770436,0.04114337,98.74071728],[4.53770398,0.04114161,98.7397625],[4.5377036,0.04113984,98.73880879],[4.53770321,0.04113808,98.73785616],[4.53770283,0.04113632,98.7369046],[4.53770245,0.04113456,98.73595412],[4.53770206,0.04113279,98.73500473],[4.53770168,0.04113103,98.73405642],[4.53770129,0.04112927,98.73310919],[4.53770091,0.04112751,98.73216306],[4.53770053,0.04112574,98.73121802],[4.53770014,0.04112398,98.73027408],[4.53769976,0.04112222,98.72933124],[4.53769938,0.04112046,98.7283895],[4.53769899,0.04111869,98.72744886],[4.53769861,0.04111693,98.72650933],[4.53769823,0.04111517,98.72557091],[4.53769784,0.04111341,98.72463361],[4.53769746,0.04111164,98.72369742],[4.53769708,0.04110988,98.72276235],[4.53769669,0.04110812,98.7218284],[4.53769631,0.04110636,98.72089558],[4.53769593,0.04110459,98.71996388],[4.53769554,0.04110283,98.71903332],[4.53769516,0.04110107,98.71810388],[4.53769478,0.04109931,98.71717558],[4.53769439,0.04109754,98.71624843],[4.53769401,0.04109578,98.7153224],[4.53769363,0.04109402,98.71439751],[4.53769324,0.04109225,98.71347374],[4.53769286,0.04109049,98.7125511],[4.53769248,0.04108873,98.71162958],[4.53769209,0.04108697,98.71070917],[4.53769171,0.0410852,98.70978988],[4.53769133,0.04108344,98.70887169],[4.53769094,0.04108168,98.70795462],[4.53769056,0.04107992,98.70703864],[4.53769018,0.04107815,98.70612376],[4.53768979,0.04107639,98.70520998],[4.53768941,0.04107463,98.70429728],[4.53768903,0.04107287,98.70338567],[4.53768864,0.0410711,98.70247515],[4.53768826,0.04106934,98.70156571],[4.53768788,0.04106758,98.70065734],[4.53768749,0.04106582,98.69975004],[4.53768711,0.04106405,98.69884381],[4.53768673,0.04106229,98.69793865],[4.53768634,0.04106053,98.69703455],[4.53768596,0.04105877,98.6961315],[4.53768558,0.041057,98.69522951],[4.53768519,0.04105524,98.69432857],[4.53768481,0.04105348,98.69342868],[4.53768442,0.04105172,98.69252983],[4.53768404,0.04104995,98.69163202],[4.53768366,0.04104819,98.69073524],[4.53768327,0.04104643,98.6898395],[4.53768289,0.04104467,98.68894478],[4.53768251,0.0410429,98.68805109],[4.53768212,0.04104114,98.68715842],[4.53768174,0.04103938,98.68626677],[4.53768136,0.04103762,98.68537613],[4.53768097,0.04103585,98.6844865],[4.53768059,0.04103409,98.68359787],[4.5376802,0.04103233,98.68271025],[4.53767982,0.04103057,98.68182363],[4.53767944,0.0410288,98.680938],[4.53767905,0.04102704,98.68005337],[4.53767867,0.04102528,98.67916972],[4.53767828,0.04102352,98.67828706],[4.5376779,0.04102175,98.67740538],[4.53767752,0.04101999,98.67652467],[4.53767713,0.04101823,98.67564494],[4.53767675,0.04101647,98.67476615],[4.53767636,0.04101471,98.67388825],[4.53767598,0.04101294,98.67301117],[4.5376756,0.04101118,98.67213488],[4.53767521,0.04100942,98.6712593],[4.53767483,0.04100766,98.67038439],[4.53767444,0.04100589,98.66951008],[4.53767406,0.04100413,98.66863633],[4.53767367,0.04100237,98.66776307],[4.53767328,0.04100061,98.66689025],[4.5376729,0.04099885,98.66601782],[4.53767251,0.04099708,98.66514571],[4.53767213,0.04099532,98.66427387],[4.53767174,0.04099356,98.66340225],[4.53767135,0.0409918,98.66253078],[4.53767096,0.04099004,98.66165942],[4.53767058,0.04098828,98.6607881],[4.53767019,0.04098651,98.65991678],[4.5376698,0.04098475,98.65904539],[4.53766941,0.04098299,98.65817387],[4.53766902,0.04098123,98.65730218],[4.53766863,0.04097947,98.65643025],[4.53766824,0.04097771,98.65555805],[4.53766785,0.04097595,98.65468563],[4.53766745,0.04097419,98.65381304],[4.53766706,0.04097243,98.65294037],[4.53766667,0.04097067,98.65206766],[4.53766627,0.04096891,98.65119499],[4.53766588,0.04096715,98.65032243],[4.53766549,0.04096539,98.64945003],[4.53766509,0.04096363,98.64857787],[4.5376647,0.04096187,98.64770602],[4.5376643,0.04096011,98.64683453],[4.53766391,0.04095835,98.64596347],[4.53766351,0.04095659,98.64509292],[4.53766312,0.04095483,98.64422293],[4.53766272,0.04095307,98.64335357],[4.53766233,0.04095131,98.64248491],[4.53766193,0.04094955,98.64161702],[4.53766153,0.04094779,98.64074996],[4.53766114,0.04094603,98.63988379],[4.53766074,0.04094427,98.6390186],[4.53766034,0.04094251,98.63815444],[4.53765995,0.04094075,98.63729138],[4.53765955,0.04093899,98.63642949],[4.53765916,0.04093723,98.63556884],[4.53765876,0.04093547,98.63470949],[4.53765836,0.04093371,98.63385151],[4.53765797,0.04093195,98.63299497],[4.53765757,0.04093019,98.63213994],[4.53765718,0.04092843,98.63128648],[4.53765678,0.04092667,98.63043467],[4.53765639,0.04092491,98.62958456],[4.53765599,0.04092315,98.62873623],[4.5376556,0.04092139,98.62788975],[4.5376552,0.04091963,98.62704518],[4.53765481,0.04091787,98.6262026],[4.53765442,0.04091611,98.62536206],[4.53765402,0.04091435,98.62452364],[4.53765363,0.04091259,98.6236874],[4.53765324,0.04091083,98.62285342],[4.53765285,0.04090907,98.62202174],[4.53765246,0.04090731,98.62119233],[4.53765207,0.04090555,98.62036514],[4.53765167,0.04090379,98.61954012],[4.53765128,0.04090203,98.61871722],[4.53765089,0.04090027,98.61789639],[4.53765051,0.04089851,98.61707758],[4.53765012,0.04089674,98.61626073],[4.53764973,0.04089498,98.6154458],[4.53764934,0.04089322,98.61463273],[4.53764895,0.04089146,98.61382148],[4.53764856,0.0408897,98.613012],[4.53764818,0.04088794,98.61220422],[4.53764779,0.04088618,98.61139811],[4.5376474,0.04088441,98.61059361],[4.53764702,0.04088265,98.60979067],[4.53764663,0.04088089,98.60898924],[4.53764624,0.04087913,98.60818927],[4.53764586,0.04087737,98.6073907],[4.53764547,0.0408756,98.60659349],[4.53764508,0.04087384,98.60579759],[4.5376447,0.04087208,98.60500294],[4.53764431,0.04087032,98.60420949],[4.53764392,0.04086856,98.6034172],[4.53764354,0.0408668,98.602626],[4.53764315,0.04086503,98.60183586],[4.53764277,0.04086327,98.60104671],[4.53764238,0.04086151,98.60025851],[4.53764199,0.04085975,98.5994712],[4.53764161,0.04085799,98.59868473],[4.53764122,0.04085623,98.59789906],[4.53764083,0.04085446,98.59711413],[4.53764045,0.0408527,98.59632989],[4.53764006,0.04085094,98.59554628],[4.53763967,0.04084918,98.59476326],[4.53763928,0.04084742,98.59398077],[4.5376389,0.04084566,98.59319877],[4.53763851,0.04084389,98.59241719],[4.53763812,0.04084213,98.591636],[4.53763773,0.04084037,98.59085513],[4.53763734,0.04083861,98.59007453],[4.53763695,0.04083685,98.58929415],[4.53763657,0.04083509,98.58851395],[4.53763628,0.0408338,98.58794492],[4.53765157,0.04083036,98.62824337],[4.53765186,0.04083164,98.62881197],[4.53765225,0.0408334,98.62959186],[4.53765264,0.04083516,98.63037222],[4.53765304,0.04083692,98.63115307],[4.53765343,0.04083868,98.63193441],[4.53765382,0.04084044,98.63271628],[4.53765421,0.0408422,98.63349869],[4.5376546,0.04084397,98.63428165],[4.537655,0.04084573,98.63506518],[4.53765539,0.04084749,98.63584931],[4.53765578,0.04084925,98.63663404],[4.53765617,0.04085101,98.6374194],[4.53765656,0.04085277,98.63820541],[4.53765695,0.04085453,98.63899207],[4.53765734,0.04085629,98.63977942],[4.53765773,0.04085805,98.64056746],[4.53765812,0.04085981,98.64135621],[4.53765851,0.04086158,98.6421457],[4.5376589,0.04086334,98.64293594],[4.53765929,0.0408651,98.64372694],[4.53765968,0.04086686,98.64451873],[4.53766006,0.04086862,98.64531132],[4.53766045,0.04087038,98.64610472],[4.53766084,0.04087214,98.64689897],[4.53766123,0.04087391,98.64769407],[4.53766162,0.04087567,98.64849003],[4.53766201,0.04087743,98.64928689],[4.5376624,0.04087919,98.65008465],[4.53766278,0.04088095,98.65088334],[4.53766317,0.04088271,98.65168297],[4.53766356,0.04088448,98.65248355],[4.53766395,0.04088624,98.65328511],[4.53766434,0.040888,98.65408766],[4.53766472,0.04088976,98.65489122],[4.53766511,0.04089152,98.65569581],[4.5376655,0.04089328,98.65650145],[4.53766589,0.04089505,98.65730814],[4.53766627,0.04089681,98.65811591],[4.53766666,0.04089857,98.65892482],[4.53766705,0.04090033,98.65973495],[4.53766744,0.04090209,98.66054638],[4.53766783,0.04090386,98.66135921],[4.53766821,0.04090562,98.66217353],[4.5376686,0.04090738,98.66298942],[4.53766899,0.04090914,98.66380695],[4.53766938,0.0409109,98.66462611],[4.53766977,0.04091266,98.66544687],[4.53767016,0.04091442,98.6662692],[4.53767054,0.04091619,98.66709306],[4.53767093,0.04091795,98.66791844],[4.53767132,0.04091971,98.66874529],[4.53767171,0.04092147,98.66957359],[4.5376721,0.04092323,98.67040331],[4.53767249,0.04092499,98.67123441],[4.53767288,0.04092675,98.67206686],[4.53767327,0.04092852,98.67290064],[4.53767366,0.04093028,98.67373572],[4.53767405,0.04093204,98.67457206],[4.53767444,0.0409338,98.67540963],[4.53767483,0.04093556,98.67624841],[4.53767522,0.04093732,98.67708836],[4.53767561,0.04093908,98.67792945],[4.537676,0.04094085,98.67877165],[4.53767639,0.04094261,98.67961493],[4.53767678,0.04094437,98.68045927],[4.53767717,0.04094613,98.68130463],[4.53767755,0.04094789,98.68215097],[4.53767794,0.04094965,98.68299828],[4.53767833,0.04095141,98.68384652],[4.53767872,0.04095318,98.68469566],[4.53767911,0.04095494,98.68554567],[4.5376795,0.0409567,98.68639652],[4.53767989,0.04095846,98.68724819],[4.53768028,0.04096022,98.68810064],[4.53768067,0.04096198,98.68895385],[4.53768105,0.04096375,98.68980779],[4.53768144,0.04096551,98.69066242],[4.53768183,0.04096727,98.69151772],[4.53768222,0.04096903,98.69237366],[4.5376826,0.04097079,98.69323021],[4.53768299,0.04097256,98.69408734],[4.53768338,0.04097432,98.69494502],[4.53768376,0.04097608,98.69580323],[4.53768415,0.04097784,98.69666195],[4.53768454,0.0409796,98.69752126],[4.53768492,0.04098137,98.69838125],[4.53768531,0.04098313,98.69924202],[4.53768569,0.04098489,98.70010365],[4.53768608,0.04098665,98.70096624],[4.53768647,0.04098842,98.70182988],[4.53768685,0.04099018,98.70269466],[4.53768724,0.04099194,98.70356062],[4.53768762,0.0409937,98.70442778],[4.53768801,0.04099546,98.70529619],[4.53768839,0.04099723,98.70616586],[4.53768878,0.04099899,98.70703682],[4.53768916,0.04100075,98.70790912],[4.53768955,0.04100251,98.70878277],[4.53768994,0.04100428,98.70965782],[4.53769032,0.04100604,98.71053428],[4.53769071,0.0410078,98.71141219],[4.53769109,0.04100956,98.71229159],[4.53769148,0.04101133,98.71317249],[4.53769187,0.04101309,98.71405493],[4.53769225,0.04101485,98.71493895],[4.53769264,0.04101661,98.71582456],[4.53769303,0.04101837,98.71671178],[4.53769341,0.04102014,98.71760059],[4.5376938,0.0410219,98.71849095],[4.53769419,0.04102366,98.71938286],[4.53769457,0.04102542,98.72027628],[4.53769496,0.04102718,98.7211712],[4.53769535,0.04102895,98.72206759],[4.53769574,0.04103071,98.72296544],[4.53769612,0.04103247,98.72386472],[4.53769651,0.04103423,98.7247654],[4.5376969,0.04103599,98.72566747],[4.53769729,0.04103776,98.7265709],[4.53769768,0.04103952,98.72747568],[4.53769806,0.04104128,98.72838178],[4.53769845,0.04104304,98.72928917],[4.53769884,0.0410448,98.73019785],[4.53769923,0.04104656,98.73110778],[4.53769962,0.04104833,98.73201894],[4.5377,0.04105009,98.73293131],[4.53770039,0.04105185,98.73384487],[4.53770078,0.04105361,98.7347596],[4.53770117,0.04105537,98.73567547],[4.53770156,0.04105714,98.73659247],[4.53770194,0.0410589,98.73751057],[4.53770233,0.04106066,98.73842975],[4.53770272,0.04106242,98.73934999],[4.53770311,0.04106418,98.74027126],[4.5377035,0.04106594,98.74119355],[4.53770388,0.04106771,98.74211682],[4.53770427,0.04106947,98.74304107],[4.53770466,0.04107123,98.74396627],[4.53770505,0.04107299,98.74489239],[4.53770543,0.04107475,98.74581941],[4.53770582,0.04107652,98.74674732],[4.53770621,0.04107828,98.74767609],[4.53770659,0.04108004,98.74860569],[4.53770698,0.0410818,98.74953612],[4.53770737,0.04108356,98.75046733],[4.53770775,0.04108533,98.75139932],[4.53770814,0.04108709,98.75233205],[4.53770853,0.04108885,98.75326554],[4.53770891,0.04109061,98.75419978],[4.5377093,0.04109238,98.75513479],[4.53770968,0.04109414,98.75607059],[4.53771007,0.0410959,98.75700718],[4.53771045,0.04109766,98.75794458],[4.53771084,0.04109943,98.75888281],[4.53771122,0.04110119,98.75982185],[4.53771161,0.04110295,98.76076173],[4.53771199,0.04110471,98.76170244],[4.53771238,0.04110648,98.76264399],[4.53771276,0.04110824,98.7635864],[4.53771314,0.04111,98.76452966],[4.53771353,0.04111176,98.76547378],[4.53771391,0.04111353,98.76641878],[4.5377143,0.04111529,98.76736465],[4.53771468,0.04111705,98.7683114],[4.53771506,0.04111882,98.76925905],[4.53771545,0.04112058,98.77020758],[4.53771583,0.04112234,98.77115703],[4.53771621,0.0411241,98.77210737],[4.53771659,0.04112587,98.77305864],[4.53771698,0.04112763,98.77401083],[4.53771736,0.04112939,98.77496394],[4.53771774,0.04113116,98.77591799],[4.53771813,0.04113292,98.77687298],[4.53771851,0.04113468,98.77782892],[4.53771889,0.04113645,98.77878582],[4.53771927,0.04113821,98.77974367],[4.53771965,0.04113997,98.7807025],[4.53772004,0.04114174,98.78166229],[4.53772042,0.0411435,98.78262307],[4.5377208,0.04114526,98.78358484],[4.53772118,0.04114702,98.7845476],[4.53772156,0.04114879,98.78551136],[4.53772195,0.04115055,98.78647613],[4.53772233,0.04115231,98.78744191],[4.53772271,0.04115408,98.78840871],[4.53772309,0.04115584,98.78937653],[4.53772347,0.0411576,98.7903454],[4.53772385,0.04115937,98.7913153],[4.53772423,0.04116113,98.79228624],[4.53772461,0.0411629,98.79325824],[4.53772499,0.04116466,98.7942313],[4.53772538,0.04116642,98.79520543],[4.53772576,0.04116819,98.79618063],[4.53772614,0.04116995,98.79715691],[4.53772652,0.04117171,98.79813427],[4.5377269,0.04117348,98.79911273],[4.53772728,0.04117524,98.80009228],[4.53772766,0.041177,98.80107294],[4.53772804,0.04117877,98.80205472],[4.53772842,0.04118053,98.80303761],[4.5377288,0.04118229,98.80402163],[4.53772918,0.04118406,98.80500678],[4.53772956,0.04118582,98.80599307],[4.53772994,0.04118758,98.8069805],[4.53773032,0.04118935,98.80796909],[4.5377307,0.04119111,98.80895884],[4.53773108,0.04119287,98.80994975],[4.53773146,0.04119464,98.81094184],[4.53773184,0.0411964,98.8119351],[4.53773222,0.04119817,98.81292955],[4.5377326,0.04119993,98.81392519],[4.53773298,0.04120169,98.81492203],[4.53773336,0.04120346,98.81592008],[4.53773374,0.04120522,98.81691934],[4.53773412,0.04120698,98.81791982],[4.5377345,0.04120875,98.81892152],[4.53773488,0.04121051,98.81992446],[4.53773526,0.04121227,98.82092864],[4.53773564,0.04121404,98.82193406],[4.53773602,0.0412158,98.82294074],[4.53773641,0.04121757,98.82394868],[4.53773679,0.04121933,98.82495788],[4.53773717,0.04122109,98.82596836],[4.53773755,0.04122286,98.82698012],[4.53773793,0.04122462,98.82799316],[4.53773831,0.04122638,98.8290075],[4.53773869,0.04122815,98.83002314],[4.53773907,0.04122991,98.83104009],[4.53773945,0.04123167,98.83205835],[4.53773983,0.04123344,98.83307794],[4.53774021,0.0412352,98.83409885],[4.53774059,0.04123697,98.8351211],[4.53774097,0.04123873,98.8361447],[4.53774135,0.04124049,98.83716964],[4.53774173,0.04124226,98.83819594],[4.53774211,0.04124402,98.8392236],[4.53772692,0.04124737,98.79884146]]],"type":"Polygon"},"type":"feature","properties":{"successorId":2,"level":false,"roadId":"1003400","id":2,"type":"border","predecessorId":0,"sOffset":0.0}},{"geometry":{"coordinates":[[[4.53750652,0.04086306,98.36121883],[4.53750613,0.0408613,98.36038553],[4.53750574,0.04085954,98.35955298],[4.53750535,0.04085778,98.35872112],[4.53750496,0.04085602,98.35788992],[4.53750457,0.04085426,98.35705932],[4.53750418,0.0408525,98.35622927],[4.53750379,0.04085074,98.35539974],[4.5375034,0.04084898,98.35457065],[4.53750301,0.04084722,98.35374198],[4.53750262,0.04084546,98.35291367],[4.53750223,0.04084371,98.35208567],[4.53750185,0.04084195,98.35125793],[4.53750145,0.04084019,98.35043041],[4.53750106,0.04083843,98.34960305],[4.53750067,0.04083667,98.34877581],[4.53750028,0.04083491,98.34794864],[4.53749989,0.04083315,98.34712148],[4.5374995,0.04083139,98.3462943],[4.53749911,0.04082963,98.34546703],[4.53749872,0.04082787,98.34463964],[4.53749833,0.04082612,98.34381207],[4.53749793,0.04082436,98.34298427],[4.53749754,0.0408226,98.34215619],[4.53749715,0.04082084,98.3413278],[4.53749675,0.04081908,98.34049936],[4.53749636,0.04081732,98.33967105],[4.53749597,0.04081556,98.33884298],[4.53749557,0.04081381,98.33801527],[4.53749518,0.04081205,98.33718804],[4.53749478,0.04081029,98.33636141],[4.53749439,0.04080853,98.3355355],[4.537494,0.04080677,98.33471043],[4.5374936,0.04080501,98.33388631],[4.53749321,0.04080326,98.33306327],[4.53749281,0.0408015,98.33224144],[4.53749242,0.04079974,98.33142099],[4.53749203,0.04079798,98.3306021],[4.53749164,0.04079622,98.32978495],[4.53749124,0.04079446,98.32896972],[4.53749085,0.0407927,98.32815643],[4.53749046,0.04079094,98.32734445],[4.53749007,0.04078919,98.326533],[4.53748968,0.04078743,98.32572136],[4.53748928,0.04078567,98.32490939],[4.53748889,0.04078391,98.32409736],[4.5374885,0.04078215,98.32328555],[4.5374881,0.04078039,98.32247423],[4.53748771,0.04077863,98.32166367],[4.53748732,0.04077687,98.32085415],[4.53748693,0.04077511,98.32004595],[4.53748653,0.04077336,98.31923935],[4.53748614,0.0407716,98.31843461],[4.53748575,0.04076984,98.31763201],[4.53748536,0.04076808,98.31683184],[4.53748497,0.04076632,98.31603436],[4.53748458,0.04076456,98.31523986],[4.53748419,0.0407628,98.3144486],[4.5374838,0.04076104,98.31366037],[4.53748342,0.04075928,98.31287392],[4.53748303,0.04075752,98.31208845],[4.53748264,0.04075576,98.31130367],[4.53748225,0.040754,98.31051936],[4.53748187,0.04075224,98.30973527],[4.53748148,0.04075048,98.30895116],[4.53748109,0.04074872,98.30816678],[4.5374807,0.04074696,98.30738189],[4.53748031,0.0407452,98.3065962],[4.53747992,0.04074344,98.30580947],[4.53747953,0.04074168,98.30502142],[4.53747914,0.04073992,98.30423177],[4.53747875,0.04073816,98.30344028],[4.53747835,0.0407364,98.30264666],[4.53747796,0.04073464,98.30185065],[4.53747756,0.04073289,98.30105236],[4.53747716,0.04073113,98.30025255],[4.53747677,0.04072937,98.29945241],[4.53747637,0.04072761,98.2986537],[4.53747597,0.04072585,98.29785826],[4.53747558,0.04072409,98.29706792],[4.53747519,0.04072234,98.29628451],[4.5374748,0.04072058,98.29550988],[4.53747441,0.04071881,98.29474586],[4.53747403,0.04071705,98.29399342],[4.53747365,0.04071529,98.29324683],[4.53747326,0.04071353,98.29249713],[4.53747288,0.04071177,98.29173528],[4.53747248,0.04071001,98.29095226],[4.53747208,0.04070825,98.29013901],[4.53747166,0.0407065,98.28928805],[4.53747122,0.04070475,98.28840194],[4.53747078,0.040703,98.28748722],[4.53747032,0.04070126,98.28655045],[4.53746987,0.04069951,98.2855982],[4.5374694,0.04069777,98.28463705],[4.53746894,0.04069603,98.28367359],[4.53746848,0.04069428,98.28271441],[4.53746802,0.04069254,98.2817653],[4.53746756,0.0406908,98.28082652],[4.53746711,0.04068905,98.27989606],[4.53746666,0.0406873,98.27897192],[4.53746621,0.04068556,98.27805208],[4.53746576,0.04068381,98.27713454],[4.53746531,0.04068206,98.27621727],[4.53746486,0.04068032,98.27529828],[4.53746441,0.04067857,98.27437593],[4.53746395,0.04067683,98.27344897],[4.53746349,0.04067508,98.27251617],[4.53746304,0.04067334,98.27157627],[4.53746257,0.04067159,98.27062802],[4.53746211,0.04066985,98.26967019],[4.53746164,0.04066811,98.26870151],[4.53746116,0.04066637,98.26772065],[4.53746068,0.04066463,98.26672588],[4.53746019,0.04066289,98.26571537],[4.5374597,0.04066116,98.26468731],[4.5374592,0.04065942,98.26364031],[4.53745869,0.04065769,98.2625756],[4.53745818,0.04065595,98.26149528],[4.53745766,0.04065422,98.26040145],[4.53745713,0.04065249,98.25929622],[4.53745661,0.04065076,98.25818169],[4.53745608,0.04064904,98.25705996],[4.53745555,0.04064731,98.25593316],[4.53745501,0.04064558,98.25480338],[4.53745448,0.04064385,98.25367274],[4.53745395,0.04064213,98.25254336],[4.53745342,0.0406404,98.25141736],[4.53745289,0.04063867,98.25029682],[4.53745236,0.04063694,98.24918257],[4.53745183,0.04063521,98.24807385],[4.53745131,0.04063348,98.24696975],[4.53745078,0.04063175,98.24586939],[4.53745026,0.04063002,98.24477189],[4.53744974,0.04062829,98.24367634],[4.53744922,0.04062656,98.24258187],[4.5374487,0.04062483,98.24148756],[4.53744817,0.0406231,98.24039257],[4.53744765,0.04062137,98.23929611],[4.53744713,0.04061964,98.23819742],[4.5374466,0.04061791,98.23709574],[4.53744608,0.04061618,98.23599032],[4.53744555,0.04061445,98.23488037],[4.53744502,0.04061272,98.23376531],[4.53744449,0.04061099,98.23264547],[4.53744395,0.04060927,98.23152148],[4.53744342,0.04060754,98.23039401],[4.53744288,0.04060581,98.22926369],[4.53744235,0.04060408,98.22813117],[4.53744181,0.04060236,98.22699701],[4.53744127,0.04060063,98.22586178],[4.53744074,0.0405989,98.22472603],[4.5374402,0.04059718,98.22359032],[4.53743966,0.04059545,98.22245521],[4.53743912,0.04059372,98.22132126],[4.53743859,0.040592,98.22018904],[4.53743805,0.04059027,98.2190591],[4.53743751,0.04058854,98.21793201],[4.53743698,0.04058681,98.21680833],[4.53743645,0.04058509,98.21568863],[4.53743592,0.04058336,98.21457348],[4.53743539,0.04058163,98.21346344],[4.53743486,0.0405799,98.21235908],[4.53743434,0.04057817,98.21126098],[4.53743381,0.04057644,98.21016969],[4.53743329,0.04057471,98.20908579],[4.53743278,0.04057298,98.2080097],[4.53743226,0.04057124,98.20694091],[4.53743175,0.04056951,98.20587865],[4.53743124,0.04056778,98.20482211],[4.53743073,0.04056604,98.20377052],[4.53743022,0.04056431,98.20272306],[4.53742972,0.04056258,98.20167895],[4.53742921,0.04056084,98.20063739],[4.5374287,0.04055911,98.19959758],[4.5374282,0.04055737,98.19855873],[4.53742769,0.04055564,98.19752003],[4.53742719,0.0405539,98.19648067],[4.53742668,0.04055217,98.19543986],[4.53742618,0.04055044,98.19439677],[4.53742567,0.0405487,98.19335059],[4.53742516,0.04054697,98.1923005],[4.53742464,0.04054524,98.19124568],[4.53742413,0.0405435,98.19018531],[4.53742361,0.04054177,98.18911856],[4.53742309,0.04054004,98.18804476],[4.53742257,0.04053831,98.18696645],[4.53742205,0.04053658,98.18588968],[4.53742153,0.04053485,98.18482064],[4.53742102,0.04053311,98.18376554],[4.53742051,0.04053138,98.18273059],[4.53742002,0.04052964,98.18172201],[4.53741953,0.0405279,98.18074605],[4.53741906,0.04052616,98.17980896],[4.5374186,0.04052442,98.17891557],[4.53741816,0.04052267,98.17806277],[4.53741773,0.04052092,98.17724464],[4.53741731,0.04051916,98.17645528],[4.53741689,0.04051741,98.17568877],[4.53741648,0.04051565,98.17493917],[4.53741608,0.04051389,98.17420054],[4.53741568,0.04051214,98.17346691],[4.53741527,0.04051038,98.17273234],[4.53741487,0.04050862,98.17199092],[4.53741446,0.04050686,98.17123981],[4.53741404,0.04050511,98.17048008],[4.53741363,0.04050335,98.16971306],[4.53741321,0.0405016,98.16894008],[4.53741279,0.04049985,98.16816248],[4.53741236,0.04049809,98.16738154],[4.53741194,0.04049634,98.16659841],[4.53741152,0.04049459,98.16581423],[4.53741109,0.04049283,98.16503011],[4.53741067,0.04049108,98.1642472],[4.53741024,0.04048933,98.16346663],[4.53740982,0.04048757,98.16268953],[4.5374094,0.04048582,98.16191638],[4.53740897,0.04048407,98.1611468],[4.53740855,0.04048231,98.16038036],[4.53740813,0.04048056,98.15961667],[4.53740771,0.0404788,98.15885535],[4.53740729,0.04047705,98.15809598],[4.53740687,0.04047529,98.15733817],[4.53740645,0.04047354,98.15658154],[4.53740603,0.04047179,98.15582566],[4.53740561,0.04047003,98.15507015],[4.53740519,0.04046828,98.15431461],[4.53740477,0.04046652,98.15355864],[4.53740435,0.04046477,98.15280182],[4.53740393,0.04046302,98.15204377],[4.5374035,0.04046126,98.15128408],[4.53740308,0.04045951,98.15052234],[4.53740265,0.04045775,98.14975815],[4.53740223,0.040456,98.14899113],[4.5374018,0.04045425,98.14822169],[4.53740137,0.0404525,98.14745124],[4.53740094,0.04045074,98.14668126],[4.53740051,0.04044899,98.14591322],[4.53740008,0.04044724,98.14514859],[4.53739966,0.04044549,98.14438887],[4.53739923,0.04044373,98.14363554],[4.53739881,0.04044198,98.14289008],[4.53739839,0.04044023,98.14215398],[4.53739797,0.04043847,98.14142873],[4.53739756,0.04043671,98.14071583],[4.53739716,0.04043496,98.14001678],[4.53739675,0.0404332,98.13933308],[4.53739636,0.04043144,98.1386663],[4.53739596,0.04042968,98.1380177],[4.53739558,0.04042792,98.13738654],[4.5373952,0.04042615,98.13677137],[4.53739482,0.04042439,98.13617074],[4.53739445,0.04042263,98.13558321],[4.53739409,0.04042086,98.13500731],[4.53739372,0.04041909,98.13444161],[4.53739336,0.04041733,98.13388463],[4.537393,0.04041556,98.13333492],[4.53739264,0.04041379,98.13279102],[4.53739229,0.04041202,98.13225145],[4.53739193,0.04041025,98.13171447],[4.53739157,0.04040849,98.13117678],[4.53739121,0.04040672,98.13063445],[4.53739085,0.04040495,98.13008351],[4.53739048,0.04040318,98.12952001],[4.53739011,0.04040142,98.12893996],[4.53738973,0.04039966,98.12833939],[4.53738934,0.0403979,98.12771442],[4.53738894,0.04039614,98.12706585],[4.53738854,0.04039438,98.12640039],[4.53738813,0.04039262,98.12572515],[4.53738772,0.04039087,98.12504668],[4.53738732,0.04038911,98.12436709],[4.53738691,0.04038735,98.12368628],[4.53738649,0.0403856,98.12300414],[4.53738608,0.04038384,98.12232066],[4.53738567,0.04038209,98.12163593],[4.53738526,0.04038033,98.12095009],[4.53738484,0.04037858,98.12026325],[4.53738443,0.04037682,98.11957555],[4.53738401,0.04037507,98.11888711],[4.5373836,0.04037331,98.11819807],[4.53738318,0.04037156,98.11750855],[4.53738276,0.04036981,98.11681869],[4.53738235,0.04036805,98.1161286],[4.53738193,0.0403663,98.11543841],[4.53738151,0.04036454,98.11474825],[4.53738109,0.04036279,98.11405824],[4.53738068,0.04036103,98.11336852],[4.53738026,0.04035928,98.11267922],[4.53737984,0.04035753,98.11199053],[4.53737942,0.04035577,98.11130262],[4.537379,0.04035402,98.11061568],[4.53737858,0.04035227,98.10992988],[4.53737816,0.04035051,98.1092454],[4.53737775,0.04034876,98.10856243],[4.53737733,0.040347,98.10788114],[4.53737691,0.04034525,98.10720171],[4.53737649,0.0403435,98.10652419],[4.53737607,0.04034174,98.10584858],[4.53737566,0.04033999,98.10517497],[4.53737524,0.04033824,98.1045035],[4.53737482,0.04033648,98.10383428],[4.53737441,0.04033473,98.10316745],[4.53737399,0.04033297,98.10250313],[4.53737358,0.04033122,98.10184144],[4.53737317,0.04032946,98.10118252],[4.53737275,0.04032771,98.10052647],[4.53737234,0.04032595,98.09987344],[4.53737193,0.0403242,98.09922355],[4.53737152,0.04032244,98.09857691],[4.5373711,0.04032069,98.09793367],[4.53737069,0.04031893,98.09729394],[4.53737029,0.04031718,98.09665785],[4.53736988,0.04031542,98.09602554],[4.53736947,0.04031367,98.09539711],[4.53736906,0.04031191,98.09477263],[4.53736866,0.04031015,98.09415205],[4.53736826,0.0403084,98.09353529],[4.53736785,0.04030664,98.09292231],[4.53736745,0.04030488,98.09231305],[4.53736705,0.04030313,98.09170744],[4.53736665,0.04030137,98.09110543],[4.53736625,0.04029961,98.09050696],[4.53736585,0.04029785,98.08991197],[4.53736545,0.0402961,98.08932039],[4.53736505,0.04029434,98.08873187],[4.53736465,0.04029258,98.088146],[4.53736426,0.04029082,98.08756269],[4.53736386,0.04028906,98.0869819],[4.53736346,0.04028731,98.08640361],[4.53736307,0.04028555,98.08582778],[4.53736267,0.04028379,98.08525436],[4.53736228,0.04028203,98.08468333],[4.53736188,0.04028027,98.08411464],[4.53736149,0.04027851,98.08354826],[4.5373611,0.04027675,98.08298415],[4.5373607,0.040275,98.08242228],[4.53736031,0.04027324,98.08186261],[4.53735992,0.04027148,98.08130509],[4.53735953,0.04026972,98.08074971],[4.53735913,0.04026796,98.08019641],[4.53735874,0.0402662,98.07964516],[4.53735835,0.04026444,98.07909592],[4.53735796,0.04026268,98.07854866],[4.53735757,0.04026092,98.07800333],[4.53735718,0.04025916,98.07745991],[4.53735679,0.04025741,98.07691835],[4.5373564,0.04025565,98.07637862],[4.53735601,0.04025389,98.07584075],[4.53735562,0.04025213,98.07530507],[4.53735523,0.04025037,98.07477196],[4.53735484,0.04024861,98.07424165],[4.53735445,0.04024685,98.07371402],[4.53735406,0.04024509,98.07318892],[4.53735367,0.04024333,98.07266618],[4.53735329,0.04024157,98.07214566],[4.5373529,0.04023981,98.07162719],[4.53735251,0.04023805,98.07111063],[4.53735212,0.04023629,98.07059581],[4.53735174,0.04023453,98.07008257],[4.53735135,0.04023277,98.06957077],[4.53735096,0.04023101,98.06906024],[4.53735058,0.04022925,98.06855082],[4.53735019,0.04022749,98.06804236],[4.5373498,0.04022573,98.06753471],[4.53734942,0.04022397,98.06702769],[4.53734903,0.04022221,98.06652116],[4.53734864,0.04022045,98.06601495],[4.53734825,0.04021869,98.06550891],[4.53734788,0.04021701,98.06502578],[4.53739161,0.04020707,98.06502578],[4.53739198,0.04020875,98.06550891],[4.53739237,0.04021051,98.06601495],[4.53739275,0.04021227,98.06652116],[4.53739314,0.04021403,98.06702769],[4.53739353,0.04021579,98.06753471],[4.53739392,0.04021755,98.06804236],[4.5373943,0.04021931,98.06855082],[4.53739469,0.04022107,98.06906024],[4.53739508,0.04022283,98.06957077],[4.53739546,0.04022459,98.07008257],[4.53739585,0.04022635,98.07059581],[4.53739624,0.04022811,98.07111063],[4.53739662,0.04022987,98.07162719],[4.53739701,0.04023163,98.07214566],[4.5373974,0.04023339,98.07266618],[4.53739779,0.04023515,98.07318892],[4.53739817,0.04023691,98.07371402],[4.53739856,0.04023867,98.07424165],[4.53739895,0.04024043,98.07477196],[4.53739934,0.04024219,98.07530507],[4.53739973,0.04024395,98.07584075],[4.53740012,0.04024571,98.07637862],[4.53740051,0.04024747,98.07691835],[4.5374009,0.04024923,98.07745991],[4.53740129,0.04025099,98.07800333],[4.53740169,0.04025275,98.07854866],[4.53740208,0.04025451,98.07909592],[4.53740247,0.04025627,98.07964516],[4.53740286,0.04025803,98.08019641],[4.53740325,0.04025979,98.08074971],[4.53740365,0.04026155,98.08130509],[4.53740404,0.04026331,98.08186261],[4.53740443,0.04026507,98.08242228],[4.53740483,0.04026683,98.08298415],[4.53740522,0.04026859,98.08354826],[4.53740561,0.04027034,98.08411464],[4.53740601,0.0402721,98.08468333],[4.5374064,0.04027386,98.08525436],[4.5374068,0.04027562,98.08582778],[4.53740719,0.04027738,98.08640361],[4.53740759,0.04027914,98.0869819],[4.53740799,0.0402809,98.08756269],[4.53740838,0.04028265,98.088146],[4.53740878,0.04028441,98.08873187],[4.53740918,0.04028617,98.08932039],[4.53740958,0.04028793,98.08991197],[4.53740998,0.04028969,98.09050696],[4.53741038,0.04029145,98.09110543],[4.53741078,0.0402932,98.09170744],[4.53741118,0.04029496,98.09231305],[4.53741158,0.04029672,98.09292231],[4.53741199,0.04029847,98.09353529],[4.53741239,0.04030023,98.09415205],[4.5374128,0.04030199,98.09477263],[4.5374132,0.04030374,98.09539711],[4.53741361,0.0403055,98.09602554],[4.53741402,0.04030726,98.09665785],[4.53741443,0.04030901,98.09729394],[4.53741484,0.04031077,98.09793367],[4.53741525,0.04031252,98.09857691],[4.53741566,0.04031428,98.09922355],[4.53741607,0.04031603,98.09987344],[4.53741649,0.04031779,98.10052647],[4.5374169,0.04031954,98.10118252],[4.53741731,0.0403213,98.10184144],[4.53741773,0.04032305,98.10250313],[4.53741814,0.04032481,98.10316745],[4.53741856,0.04032656,98.10383428],[4.53741898,0.04032832,98.1045035],[4.53741939,0.04033007,98.10517497],[4.53741981,0.04033183,98.10584858],[4.53742023,0.04033358,98.10652419],[4.53742065,0.04033533,98.10720171],[4.53742106,0.04033709,98.10788114],[4.53742148,0.04033884,98.10856243],[4.5374219,0.0403406,98.1092454],[4.53742232,0.04034235,98.10992988],[4.53742274,0.0403441,98.11061568],[4.53742316,0.04034586,98.11130262],[4.53742358,0.04034761,98.11199053],[4.53742399,0.04034936,98.11267922],[4.53742441,0.04035112,98.11336852],[4.53742483,0.04035287,98.11405824],[4.53742525,0.04035463,98.11474825],[4.53742567,0.04035638,98.11543841],[4.53742608,0.04035813,98.1161286],[4.5374265,0.04035989,98.11681869],[4.53742692,0.04036164,98.11750855],[4.53742733,0.0403634,98.11819807],[4.53742775,0.04036515,98.11888711],[4.53742817,0.04036691,98.11957555],[4.53742858,0.04036866,98.12026325],[4.53742899,0.04037042,98.12095009],[4.53742941,0.04037217,98.12163593],[4.53742982,0.04037393,98.12232066],[4.53743023,0.04037568,98.12300414],[4.53743064,0.04037744,98.12368628],[4.53743105,0.0403792,98.12436709],[4.53743146,0.04038095,98.12504668],[4.53743187,0.04038271,98.12572515],[4.53743228,0.04038447,98.12640039],[4.53743268,0.04038622,98.12706585],[4.53743308,0.04038798,98.12771442],[4.53743347,0.04038974,98.12833939],[4.53743385,0.04039151,98.12893996],[4.53743422,0.04039327,98.12952001],[4.53743459,0.04039504,98.13008351],[4.53743495,0.0403968,98.13063445],[4.53743531,0.04039857,98.13117678],[4.53743566,0.04040034,98.13171447],[4.53743602,0.04040211,98.13225145],[4.53743638,0.04040388,98.13279102],[4.53743673,0.04040564,98.13333492],[4.53743709,0.04040741,98.13388463],[4.53743746,0.04040918,98.13444161],[4.53743782,0.04041095,98.13500731],[4.53743819,0.04041271,98.13558321],[4.53743856,0.04041448,98.13617074],[4.53743893,0.04041624,98.13677137],[4.53743931,0.040418,98.13738654],[4.5374397,0.04041977,98.1380177],[4.53744009,0.04042153,98.1386663],[4.53744048,0.04042329,98.13933308],[4.53744089,0.04042504,98.14001678],[4.53744129,0.0404268,98.14071583],[4.53744171,0.04042856,98.14142873],[4.53744212,0.04043031,98.14215398],[4.53744254,0.04043207,98.14289008],[4.53744296,0.04043382,98.14363554],[4.53744339,0.04043557,98.14438887],[4.53744381,0.04043733,98.14514859],[4.53744424,0.04043908,98.14591322],[4.53744467,0.04044083,98.14668126],[4.5374451,0.04044258,98.14745124],[4.53744553,0.04044434,98.14822169],[4.53744595,0.04044609,98.14899113],[4.53744638,0.04044784,98.14975815],[4.53744681,0.0404496,98.15052234],[4.53744723,0.04045135,98.15128408],[4.53744766,0.0404531,98.15204377],[4.53744808,0.04045486,98.15280182],[4.5374485,0.04045661,98.15355864],[4.53744892,0.04045836,98.15431461],[4.53744934,0.04046012,98.15507015],[4.53744976,0.04046187,98.15582566],[4.53745018,0.04046362,98.15658154],[4.5374506,0.04046538,98.15733817],[4.53745102,0.04046713,98.15809598],[4.53745144,0.04046889,98.15885535],[4.53745186,0.04047064,98.15961667],[4.53745229,0.04047239,98.16038036],[4.53745271,0.04047415,98.1611468],[4.53745313,0.0404759,98.16191638],[4.53745356,0.04047765,98.16268953],[4.53745398,0.04047941,98.16346663],[4.53745441,0.04048116,98.1642472],[4.53745483,0.04048291,98.16503011],[4.53745526,0.04048467,98.16581423],[4.53745569,0.04048642,98.16659841],[4.53745611,0.04048817,98.16738154],[4.53745654,0.04048992,98.16816248],[4.53745696,0.04049168,98.16894008],[4.53745738,0.04049343,98.16971306],[4.5374578,0.04049518,98.17048008],[4.53745822,0.04049694,98.17123981],[4.53745863,0.0404987,98.17199092],[4.53745904,0.04050045,98.17273234],[4.53745944,0.04050221,98.17346691],[4.53745985,0.04050397,98.17420054],[4.53746026,0.04050572,98.17493917],[4.53746067,0.04050748,98.17568877],[4.53746108,0.04050923,98.17645528],[4.53746151,0.04051099,98.17724464],[4.53746194,0.04051274,98.17806277],[4.53746239,0.04051449,98.17891557],[4.53746285,0.04051623,98.17980896],[4.53746332,0.04051797,98.18074605],[4.53746381,0.04051971,98.18172201],[4.53746431,0.04052145,98.18273059],[4.53746482,0.04052318,98.18376554],[4.53746533,0.04052491,98.18482064],[4.53746586,0.04052664,98.18588968],[4.53746638,0.04052837,98.18696645],[4.5374669,0.0405301,98.18804476],[4.53746742,0.04053183,98.18911856],[4.53746794,0.04053357,98.19018531],[4.53746846,0.0405353,98.19124568],[4.53746898,0.04053703,98.1923005],[4.53746949,0.04053876,98.19335059],[4.53747,0.0405405,98.19439677],[4.53747051,0.04054223,98.19543986],[4.53747102,0.04054396,98.19648067],[4.53747153,0.0405457,98.19752003],[4.53747203,0.04054743,98.19855873],[4.53747254,0.04054917,98.19959758],[4.53747305,0.0405509,98.20063739],[4.53747356,0.04055263,98.20167895],[4.53747406,0.04055437,98.20272306],[4.53747457,0.0405561,98.20377052],[4.53747508,0.04055783,98.20482211],[4.5374756,0.04055957,98.20587865],[4.53747611,0.0405613,98.20694091],[4.53747663,0.04056303,98.2080097],[4.53747715,0.04056476,98.20908579],[4.53747767,0.04056649,98.21016969],[4.53747819,0.04056822,98.21126098],[4.53747872,0.04056995,98.21235908],[4.53747925,0.04057168,98.21346344],[4.53747978,0.04057341,98.21457348],[4.53748031,0.04057514,98.21568863],[4.53748084,0.04057687,98.21680833],[4.53748137,0.0405786,98.21793201],[4.53748191,0.04058032,98.2190591],[4.53748245,0.04058205,98.22018904],[4.53748298,0.04058378,98.22132126],[4.53748352,0.0405855,98.22245521],[4.53748406,0.04058723,98.22359032],[4.53748459,0.04058896,98.22472603],[4.53748513,0.04059069,98.22586178],[4.53748567,0.04059241,98.22699701],[4.5374862,0.04059414,98.22813117],[4.53748674,0.04059587,98.22926369],[4.53748728,0.0405976,98.23039401],[4.53748781,0.04059932,98.23152148],[4.53748834,0.04060105,98.23264547],[4.53748887,0.04060278,98.23376531],[4.5374894,0.04060451,98.23488037],[4.53748993,0.04060624,98.23599032],[4.53749045,0.04060797,98.23709574],[4.53749097,0.0406097,98.23819742],[4.53749149,0.04061143,98.23929611],[4.53749201,0.04061316,98.24039257],[4.53749253,0.04061489,98.24148756],[4.53749305,0.04061662,98.24258187],[4.53749357,0.04061835,98.24367634],[4.53749409,0.04062008,98.24477189],[4.53749461,0.04062182,98.24586939],[4.53749513,0.04062355,98.24696975],[4.53749566,0.04062528,98.24807385],[4.53749618,0.04062701,98.24918257],[4.5374967,0.04062874,98.25029682],[4.53749723,0.04063047,98.25141736],[4.53749776,0.04063219,98.25254336],[4.53749829,0.04063392,98.25367274],[4.53749882,0.04063565,98.25480338],[4.53749935,0.04063738,98.25593316],[4.53749988,0.04063911,98.25705996],[4.53750041,0.04064084,98.25818169],[4.53750093,0.04064257,98.25929622],[4.53750145,0.0406443,98.26040145],[4.53750197,0.04064603,98.26149528],[4.53750248,0.04064776,98.2625756],[4.53750298,0.0406495,98.26364031],[4.53750348,0.04065123,98.26468731],[4.53750397,0.04065297,98.26571537],[4.53750446,0.04065471,98.26672588],[4.53750493,0.04065645,98.26772065],[4.53750541,0.04065819,98.26870151],[4.53750587,0.04065993,98.26967019],[4.53750634,0.04066168,98.27062802],[4.5375068,0.04066342,98.27157627],[4.53750726,0.04066517,98.27251617],[4.53750771,0.04066691,98.27344897],[4.53750816,0.04066866,98.27437593],[4.53750861,0.04067041,98.27529828],[4.53750906,0.04067215,98.27621727],[4.53750951,0.0406739,98.27713454],[4.53750996,0.04067565,98.27805208],[4.5375104,0.04067739,98.27897192],[4.53751085,0.04067914,98.27989606],[4.5375113,0.04068089,98.28082652],[4.53751176,0.04068263,98.2817653],[4.53751222,0.04068438,98.28271441],[4.53751268,0.04068612,98.28367359],[4.53751314,0.04068787,98.28463705],[4.5375136,0.04068961,98.2855982],[4.53751406,0.04069135,98.28655045],[4.53751451,0.0406931,98.28748722],[4.53751496,0.04069485,98.28840194],[4.53751539,0.0406966,98.28928805],[4.53751581,0.04069835,98.29013901],[4.53751621,0.04070011,98.29095226],[4.53751661,0.04070187,98.29173528],[4.53751699,0.04070363,98.29249713],[4.53751737,0.04070539,98.29324683],[4.53751775,0.04070715,98.29399342],[4.53751813,0.04070892,98.29474586],[4.53751852,0.04071068,98.29550988],[4.53751891,0.04071244,98.29628451],[4.5375193,0.0407142,98.29706792],[4.5375197,0.04071596,98.29785826],[4.53752009,0.04071772,98.2986537],[4.53752049,0.04071947,98.29945241],[4.53752089,0.04072123,98.30025255],[4.53752128,0.04072299,98.30105236],[4.53752168,0.04072475,98.30185065],[4.53752207,0.04072651,98.30264666],[4.53752247,0.04072827,98.30344028],[4.53752286,0.04073003,98.30423177],[4.53752325,0.04073179,98.30502142],[4.53752364,0.04073355,98.30580947],[4.53752403,0.04073531,98.3065962],[4.53752442,0.04073707,98.30738189],[4.53752481,0.04073883,98.30816678],[4.5375252,0.04074059,98.30895116],[4.53752558,0.04074235,98.30973527],[4.53752597,0.04074411,98.31051936],[4.53752636,0.04074587,98.31130367],[4.53752675,0.04074763,98.31208845],[4.53752713,0.04074939,98.31287392],[4.53752752,0.04075115,98.31366037],[4.53752791,0.04075291,98.3144486],[4.5375283,0.04075467,98.31523986],[4.53752869,0.04075643,98.31603436],[4.53752908,0.04075819,98.31683184],[4.53752947,0.04075995,98.31763201],[4.53752986,0.04076171,98.31843461],[4.53753025,0.04076347,98.31923935],[4.53753064,0.04076523,98.32004595],[4.53753104,0.04076699,98.32085415],[4.53753143,0.04076875,98.32166367],[4.53753182,0.04077051,98.32247423],[4.53753222,0.04077227,98.32328555],[4.53753261,0.04077403,98.32409736],[4.537533,0.04077579,98.32490939],[4.5375334,0.04077755,98.32572136],[4.53753379,0.04077931,98.326533],[4.53753418,0.04078106,98.32734445],[4.53753457,0.04078282,98.32815643],[4.53753496,0.04078458,98.32896972],[4.53753536,0.04078634,98.32978495],[4.53753575,0.0407881,98.3306021],[4.53753614,0.04078986,98.33142099],[4.53753654,0.04079162,98.33224144],[4.53753693,0.04079338,98.33306327],[4.53753732,0.04079514,98.33388631],[4.53753772,0.0407969,98.33471043],[4.53753811,0.04079866,98.3355355],[4.53753851,0.04080041,98.33636141],[4.5375389,0.04080217,98.33718804],[4.5375393,0.04080393,98.33801527],[4.53753969,0.04080569,98.33884298],[4.53754009,0.04080745,98.33967105],[4.53754048,0.04080921,98.34049936],[4.53754087,0.04081097,98.3413278],[4.53754127,0.04081273,98.34215619],[4.53754166,0.04081449,98.34298427],[4.53754205,0.04081625,98.34381207],[4.53754245,0.040818,98.34463964],[4.53754284,0.04081976,98.34546703],[4.53754323,0.04082152,98.3462943],[4.53754362,0.04082328,98.34712148],[4.53754401,0.04082504,98.34794864],[4.5375444,0.0408268,98.34877581],[4.53754479,0.04082856,98.34960305],[4.53754518,0.04083032,98.35043041],[4.53754557,0.04083208,98.35125793],[4.53754596,0.04083384,98.35208567],[4.53754635,0.0408356,98.35291367],[4.53754674,0.04083736,98.35374198],[4.53754713,0.04083912,98.35457065],[4.53754752,0.04084088,98.35539974],[4.53754791,0.04084264,98.35622927],[4.5375483,0.0408444,98.35705932],[4.53754869,0.04084616,98.35788992],[4.53754908,0.04084792,98.35872112],[4.53754947,0.04084968,98.35955298],[4.53754986,0.04085144,98.36038553],[4.53755025,0.0408532,98.36121883],[4.53750652,0.04086306,98.36121883]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-5,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1003400","id":-5,"type":"none","predecessorId":-4,"sOffset":46.9458860069}},{"geometry":{"coordinates":[[[4.53755025,0.0408532,98.36121883],[4.53754986,0.04085144,98.36038553],[4.53754947,0.04084968,98.35955298],[4.53754908,0.04084792,98.35872112],[4.53754869,0.04084616,98.35788992],[4.5375483,0.0408444,98.35705932],[4.53754791,0.04084264,98.35622927],[4.53754752,0.04084088,98.35539974],[4.53754713,0.04083912,98.35457065],[4.53754674,0.04083736,98.35374198],[4.53754635,0.0408356,98.35291367],[4.53754596,0.04083384,98.35208567],[4.53754557,0.04083208,98.35125793],[4.53754518,0.04083032,98.35043041],[4.53754479,0.04082856,98.34960305],[4.5375444,0.0408268,98.34877581],[4.53754401,0.04082504,98.34794864],[4.53754362,0.04082328,98.34712148],[4.53754323,0.04082152,98.3462943],[4.53754284,0.04081976,98.34546703],[4.53754245,0.040818,98.34463964],[4.53754205,0.04081625,98.34381207],[4.53754166,0.04081449,98.34298427],[4.53754127,0.04081273,98.34215619],[4.53754087,0.04081097,98.3413278],[4.53754048,0.04080921,98.34049936],[4.53754009,0.04080745,98.33967105],[4.53753969,0.04080569,98.33884298],[4.5375393,0.04080393,98.33801527],[4.5375389,0.04080217,98.33718804],[4.53753851,0.04080041,98.33636141],[4.53753811,0.04079866,98.3355355],[4.53753772,0.0407969,98.33471043],[4.53753732,0.04079514,98.33388631],[4.53753693,0.04079338,98.33306327],[4.53753654,0.04079162,98.33224144],[4.53753614,0.04078986,98.33142099],[4.53753575,0.0407881,98.3306021],[4.53753536,0.04078634,98.32978495],[4.53753496,0.04078458,98.32896972],[4.53753457,0.04078282,98.32815643],[4.53753418,0.04078106,98.32734445],[4.53753379,0.04077931,98.326533],[4.5375334,0.04077755,98.32572136],[4.537533,0.04077579,98.32490939],[4.53753261,0.04077403,98.32409736],[4.53753222,0.04077227,98.32328555],[4.53753182,0.04077051,98.32247423],[4.53753143,0.04076875,98.32166367],[4.53753104,0.04076699,98.32085415],[4.53753064,0.04076523,98.32004595],[4.53753025,0.04076347,98.31923935],[4.53752986,0.04076171,98.31843461],[4.53752947,0.04075995,98.31763201],[4.53752908,0.04075819,98.31683184],[4.53752869,0.04075643,98.31603436],[4.5375283,0.04075467,98.31523986],[4.53752791,0.04075291,98.3144486],[4.53752752,0.04075115,98.31366037],[4.53752713,0.04074939,98.31287392],[4.53752675,0.04074763,98.31208845],[4.53752636,0.04074587,98.31130367],[4.53752597,0.04074411,98.31051936],[4.53752558,0.04074235,98.30973527],[4.5375252,0.04074059,98.30895116],[4.53752481,0.04073883,98.30816678],[4.53752442,0.04073707,98.30738189],[4.53752403,0.04073531,98.3065962],[4.53752364,0.04073355,98.30580947],[4.53752325,0.04073179,98.30502142],[4.53752286,0.04073003,98.30423177],[4.53752247,0.04072827,98.30344028],[4.53752207,0.04072651,98.30264666],[4.53752168,0.04072475,98.30185065],[4.53752128,0.04072299,98.30105236],[4.53752089,0.04072123,98.30025255],[4.53752049,0.04071947,98.29945241],[4.53752009,0.04071772,98.2986537],[4.5375197,0.04071596,98.29785826],[4.5375193,0.0407142,98.29706792],[4.53751891,0.04071244,98.29628451],[4.53751852,0.04071068,98.29550988],[4.53751813,0.04070892,98.29474586],[4.53751775,0.04070715,98.29399342],[4.53751737,0.04070539,98.29324683],[4.53751699,0.04070363,98.29249713],[4.53751661,0.04070187,98.29173528],[4.53751621,0.04070011,98.29095226],[4.53751581,0.04069835,98.29013901],[4.53751539,0.0406966,98.28928805],[4.53751496,0.04069485,98.28840194],[4.53751451,0.0406931,98.28748722],[4.53751406,0.04069135,98.28655045],[4.5375136,0.04068961,98.2855982],[4.53751314,0.04068787,98.28463705],[4.53751268,0.04068612,98.28367359],[4.53751222,0.04068438,98.28271441],[4.53751176,0.04068263,98.2817653],[4.5375113,0.04068089,98.28082652],[4.53751085,0.04067914,98.27989606],[4.5375104,0.04067739,98.27897192],[4.53750996,0.04067565,98.27805208],[4.53750951,0.0406739,98.27713454],[4.53750906,0.04067215,98.27621727],[4.53750861,0.04067041,98.27529828],[4.53750816,0.04066866,98.27437593],[4.53750771,0.04066691,98.27344897],[4.53750726,0.04066517,98.27251617],[4.5375068,0.04066342,98.27157627],[4.53750634,0.04066168,98.27062802],[4.53750587,0.04065993,98.26967019],[4.53750541,0.04065819,98.26870151],[4.53750493,0.04065645,98.26772065],[4.53750446,0.04065471,98.26672588],[4.53750397,0.04065297,98.26571537],[4.53750348,0.04065123,98.26468731],[4.53750298,0.0406495,98.26364031],[4.53750248,0.04064776,98.2625756],[4.53750197,0.04064603,98.26149528],[4.53750145,0.0406443,98.26040145],[4.53750093,0.04064257,98.25929622],[4.53750041,0.04064084,98.25818169],[4.53749988,0.04063911,98.25705996],[4.53749935,0.04063738,98.25593316],[4.53749882,0.04063565,98.25480338],[4.53749829,0.04063392,98.25367274],[4.53749776,0.04063219,98.25254336],[4.53749723,0.04063047,98.25141736],[4.5374967,0.04062874,98.25029682],[4.53749618,0.04062701,98.24918257],[4.53749566,0.04062528,98.24807385],[4.53749513,0.04062355,98.24696975],[4.53749461,0.04062182,98.24586939],[4.53749409,0.04062008,98.24477189],[4.53749357,0.04061835,98.24367634],[4.53749305,0.04061662,98.24258187],[4.53749253,0.04061489,98.24148756],[4.53749201,0.04061316,98.24039257],[4.53749149,0.04061143,98.23929611],[4.53749097,0.0406097,98.23819742],[4.53749045,0.04060797,98.23709574],[4.53748993,0.04060624,98.23599032],[4.5374894,0.04060451,98.23488037],[4.53748887,0.04060278,98.23376531],[4.53748834,0.04060105,98.23264547],[4.53748781,0.04059932,98.23152148],[4.53748728,0.0405976,98.23039401],[4.53748674,0.04059587,98.22926369],[4.5374862,0.04059414,98.22813117],[4.53748567,0.04059241,98.22699701],[4.53748513,0.04059069,98.22586178],[4.53748459,0.04058896,98.22472603],[4.53748406,0.04058723,98.22359032],[4.53748352,0.0405855,98.22245521],[4.53748298,0.04058378,98.22132126],[4.53748245,0.04058205,98.22018904],[4.53748191,0.04058032,98.2190591],[4.53748137,0.0405786,98.21793201],[4.53748084,0.04057687,98.21680833],[4.53748031,0.04057514,98.21568863],[4.53747978,0.04057341,98.21457348],[4.53747925,0.04057168,98.21346344],[4.53747872,0.04056995,98.21235908],[4.53747819,0.04056822,98.21126098],[4.53747767,0.04056649,98.21016969],[4.53747715,0.04056476,98.20908579],[4.53747663,0.04056303,98.2080097],[4.53747611,0.0405613,98.20694091],[4.5374756,0.04055957,98.20587865],[4.53747508,0.04055783,98.20482211],[4.53747457,0.0405561,98.20377052],[4.53747406,0.04055437,98.20272306],[4.53747356,0.04055263,98.20167895],[4.53747305,0.0405509,98.20063739],[4.53747254,0.04054917,98.19959758],[4.53747203,0.04054743,98.19855873],[4.53747153,0.0405457,98.19752003],[4.53747102,0.04054396,98.19648067],[4.53747051,0.04054223,98.19543986],[4.53747,0.0405405,98.19439677],[4.53746949,0.04053876,98.19335059],[4.53746898,0.04053703,98.1923005],[4.53746846,0.0405353,98.19124568],[4.53746794,0.04053357,98.19018531],[4.53746742,0.04053183,98.18911856],[4.5374669,0.0405301,98.18804476],[4.53746638,0.04052837,98.18696645],[4.53746586,0.04052664,98.18588968],[4.53746533,0.04052491,98.18482064],[4.53746482,0.04052318,98.18376554],[4.53746431,0.04052145,98.18273059],[4.53746381,0.04051971,98.18172201],[4.53746332,0.04051797,98.18074605],[4.53746285,0.04051623,98.17980896],[4.53746239,0.04051449,98.17891557],[4.53746194,0.04051274,98.17806277],[4.53746151,0.04051099,98.17724464],[4.53746108,0.04050923,98.17645528],[4.53746067,0.04050748,98.17568877],[4.53746026,0.04050572,98.17493917],[4.53745985,0.04050397,98.17420054],[4.53745944,0.04050221,98.17346691],[4.53745904,0.04050045,98.17273234],[4.53745863,0.0404987,98.17199092],[4.53745822,0.04049694,98.17123981],[4.5374578,0.04049518,98.17048008],[4.53745738,0.04049343,98.16971306],[4.53745696,0.04049168,98.16894008],[4.53745654,0.04048992,98.16816248],[4.53745611,0.04048817,98.16738154],[4.53745569,0.04048642,98.16659841],[4.53745526,0.04048467,98.16581423],[4.53745483,0.04048291,98.16503011],[4.53745441,0.04048116,98.1642472],[4.53745398,0.04047941,98.16346663],[4.53745356,0.04047765,98.16268953],[4.53745313,0.0404759,98.16191638],[4.53745271,0.04047415,98.1611468],[4.53745229,0.04047239,98.16038036],[4.53745186,0.04047064,98.15961667],[4.53745144,0.04046889,98.15885535],[4.53745102,0.04046713,98.15809598],[4.5374506,0.04046538,98.15733817],[4.53745018,0.04046362,98.15658154],[4.53744976,0.04046187,98.15582566],[4.53744934,0.04046012,98.15507015],[4.53744892,0.04045836,98.15431461],[4.5374485,0.04045661,98.15355864],[4.53744808,0.04045486,98.15280182],[4.53744766,0.0404531,98.15204377],[4.53744723,0.04045135,98.15128408],[4.53744681,0.0404496,98.15052234],[4.53744638,0.04044784,98.14975815],[4.53744595,0.04044609,98.14899113],[4.53744553,0.04044434,98.14822169],[4.5374451,0.04044258,98.14745124],[4.53744467,0.04044083,98.14668126],[4.53744424,0.04043908,98.14591322],[4.53744381,0.04043733,98.14514859],[4.53744339,0.04043557,98.14438887],[4.53744296,0.04043382,98.14363554],[4.53744254,0.04043207,98.14289008],[4.53744212,0.04043031,98.14215398],[4.53744171,0.04042856,98.14142873],[4.53744129,0.0404268,98.14071583],[4.53744089,0.04042504,98.14001678],[4.53744048,0.04042329,98.13933308],[4.53744009,0.04042153,98.1386663],[4.5374397,0.04041977,98.1380177],[4.53743931,0.040418,98.13738654],[4.53743893,0.04041624,98.13677137],[4.53743856,0.04041448,98.13617074],[4.53743819,0.04041271,98.13558321],[4.53743782,0.04041095,98.13500731],[4.53743746,0.04040918,98.13444161],[4.53743709,0.04040741,98.13388463],[4.53743673,0.04040564,98.13333492],[4.53743638,0.04040388,98.13279102],[4.53743602,0.04040211,98.13225145],[4.53743566,0.04040034,98.13171447],[4.53743531,0.04039857,98.13117678],[4.53743495,0.0403968,98.13063445],[4.53743459,0.04039504,98.13008351],[4.53743422,0.04039327,98.12952001],[4.53743385,0.04039151,98.12893996],[4.53743347,0.04038974,98.12833939],[4.53743308,0.04038798,98.12771442],[4.53743268,0.04038622,98.12706585],[4.53743228,0.04038447,98.12640039],[4.53743187,0.04038271,98.12572515],[4.53743146,0.04038095,98.12504668],[4.53743105,0.0403792,98.12436709],[4.53743064,0.04037744,98.12368628],[4.53743023,0.04037568,98.12300414],[4.53742982,0.04037393,98.12232066],[4.53742941,0.04037217,98.12163593],[4.53742899,0.04037042,98.12095009],[4.53742858,0.04036866,98.12026325],[4.53742817,0.04036691,98.11957555],[4.53742775,0.04036515,98.11888711],[4.53742733,0.0403634,98.11819807],[4.53742692,0.04036164,98.11750855],[4.5374265,0.04035989,98.11681869],[4.53742608,0.04035813,98.1161286],[4.53742567,0.04035638,98.11543841],[4.53742525,0.04035463,98.11474825],[4.53742483,0.04035287,98.11405824],[4.53742441,0.04035112,98.11336852],[4.53742399,0.04034936,98.11267922],[4.53742358,0.04034761,98.11199053],[4.53742316,0.04034586,98.11130262],[4.53742274,0.0403441,98.11061568],[4.53742232,0.04034235,98.10992988],[4.5374219,0.0403406,98.1092454],[4.53742148,0.04033884,98.10856243],[4.53742106,0.04033709,98.10788114],[4.53742065,0.04033533,98.10720171],[4.53742023,0.04033358,98.10652419],[4.53741981,0.04033183,98.10584858],[4.53741939,0.04033007,98.10517497],[4.53741898,0.04032832,98.1045035],[4.53741856,0.04032656,98.10383428],[4.53741814,0.04032481,98.10316745],[4.53741773,0.04032305,98.10250313],[4.53741731,0.0403213,98.10184144],[4.5374169,0.04031954,98.10118252],[4.53741649,0.04031779,98.10052647],[4.53741607,0.04031603,98.09987344],[4.53741566,0.04031428,98.09922355],[4.53741525,0.04031252,98.09857691],[4.53741484,0.04031077,98.09793367],[4.53741443,0.04030901,98.09729394],[4.53741402,0.04030726,98.09665785],[4.53741361,0.0403055,98.09602554],[4.5374132,0.04030374,98.09539711],[4.5374128,0.04030199,98.09477263],[4.53741239,0.04030023,98.09415205],[4.53741199,0.04029847,98.09353529],[4.53741158,0.04029672,98.09292231],[4.53741118,0.04029496,98.09231305],[4.53741078,0.0402932,98.09170744],[4.53741038,0.04029145,98.09110543],[4.53740998,0.04028969,98.09050696],[4.53740958,0.04028793,98.08991197],[4.53740918,0.04028617,98.08932039],[4.53740878,0.04028441,98.08873187],[4.53740838,0.04028265,98.088146],[4.53740799,0.0402809,98.08756269],[4.53740759,0.04027914,98.0869819],[4.53740719,0.04027738,98.08640361],[4.5374068,0.04027562,98.08582778],[4.5374064,0.04027386,98.08525436],[4.53740601,0.0402721,98.08468333],[4.53740561,0.04027034,98.08411464],[4.53740522,0.04026859,98.08354826],[4.53740483,0.04026683,98.08298415],[4.53740443,0.04026507,98.08242228],[4.53740404,0.04026331,98.08186261],[4.53740365,0.04026155,98.08130509],[4.53740325,0.04025979,98.08074971],[4.53740286,0.04025803,98.08019641],[4.53740247,0.04025627,98.07964516],[4.53740208,0.04025451,98.07909592],[4.53740169,0.04025275,98.07854866],[4.53740129,0.04025099,98.07800333],[4.5374009,0.04024923,98.07745991],[4.53740051,0.04024747,98.07691835],[4.53740012,0.04024571,98.07637862],[4.53739973,0.04024395,98.07584075],[4.53739934,0.04024219,98.07530507],[4.53739895,0.04024043,98.07477196],[4.53739856,0.04023867,98.07424165],[4.53739817,0.04023691,98.07371402],[4.53739779,0.04023515,98.07318892],[4.5373974,0.04023339,98.07266618],[4.53739701,0.04023163,98.07214566],[4.53739662,0.04022987,98.07162719],[4.53739624,0.04022811,98.07111063],[4.53739585,0.04022635,98.07059581],[4.53739546,0.04022459,98.07008257],[4.53739508,0.04022283,98.06957077],[4.53739469,0.04022107,98.06906024],[4.5373943,0.04021931,98.06855082],[4.53739392,0.04021755,98.06804236],[4.53739353,0.04021579,98.06753471],[4.53739314,0.04021403,98.06702769],[4.53739275,0.04021227,98.06652116],[4.53739237,0.04021051,98.06601495],[4.53739198,0.04020875,98.06550891],[4.53739161,0.04020707,98.06502578],[4.53739559,0.04020616,98.07711735],[4.53739597,0.04020784,98.07760663],[4.53739636,0.0402096,98.07811979],[4.53739675,0.04021136,98.07863374],[4.53739714,0.04021312,98.07914857],[4.53739753,0.04021488,98.07966439],[4.53739793,0.04021664,98.08018128],[4.53739832,0.0402184,98.08069933],[4.53739871,0.04022016,98.08121865],[4.5373991,0.04022192,98.08173931],[4.53739949,0.04022368,98.08226142],[4.53739988,0.04022543,98.08278507],[4.53740028,0.04022719,98.08331034],[4.53740067,0.04022895,98.08383734],[4.53740106,0.04023071,98.08436615],[4.53740145,0.04023247,98.08489686],[4.53740185,0.04023423,98.08542957],[4.53740224,0.04023599,98.08596437],[4.53740263,0.04023775,98.08650135],[4.53740303,0.04023951,98.0870406],[4.53740342,0.04024127,98.08758217],[4.53740381,0.04024303,98.08812579],[4.53740421,0.04024478,98.088671],[4.5374046,0.04024654,98.08921741],[4.537405,0.0402483,98.08976491],[4.53740539,0.04025006,98.09031349],[4.53740579,0.04025182,98.09086312],[4.53740618,0.04025358,98.09141377],[4.53740657,0.04025534,98.09196541],[4.53740697,0.0402571,98.09251803],[4.53740736,0.04025886,98.09307159],[4.53740776,0.04026062,98.09362607],[4.53740815,0.04026237,98.09418145],[4.53740854,0.04026413,98.09473769],[4.53740894,0.04026589,98.09529478],[4.53740933,0.04026765,98.09585269],[4.53740972,0.04026941,98.09641139],[4.53741012,0.04027117,98.09697085],[4.53741051,0.04027293,98.09753106],[4.5374109,0.04027469,98.09809198],[4.53741129,0.04027645,98.0986536],[4.53741169,0.04027821,98.09921588],[4.53741208,0.04027997,98.0997788],[4.53741247,0.04028173,98.10034234],[4.53741286,0.04028349,98.10090646],[4.53741326,0.04028525,98.1014712],[4.53741365,0.04028701,98.1020369],[4.53741404,0.04028877,98.10260385],[4.53741443,0.04029053,98.10317207],[4.53741482,0.04029229,98.10374155],[4.53741521,0.04029405,98.10431228],[4.53741561,0.04029581,98.10488427],[4.537416,0.04029756,98.10545752],[4.53741639,0.04029932,98.10603202],[4.53741678,0.04030108,98.10660777],[4.53741717,0.04030284,98.10718476],[4.53741757,0.0403046,98.10776301],[4.53741796,0.04030636,98.1083425],[4.53741835,0.04030812,98.10892324],[4.53741874,0.04030988,98.10950522],[4.53741913,0.04031164,98.11008844],[4.53741953,0.0403134,98.1106729],[4.53741992,0.04031516,98.1112586],[4.53742031,0.04031692,98.11184553],[4.5374207,0.04031868,98.1124337],[4.53742109,0.04032044,98.1130231],[4.53742149,0.0403222,98.11361373],[4.53742188,0.04032396,98.11420559],[4.53742227,0.04032572,98.11479867],[4.53742266,0.04032748,98.11539299],[4.53742306,0.04032924,98.11598852],[4.53742345,0.040331,98.11658528],[4.53742384,0.04033276,98.11718326],[4.53742423,0.04033452,98.11778246],[4.53742463,0.04033628,98.11838304],[4.53742502,0.04033804,98.11898505],[4.53742541,0.0403398,98.11958845],[4.53742581,0.04034156,98.12019317],[4.5374262,0.04034332,98.12079915],[4.53742659,0.04034508,98.12140634],[4.53742699,0.04034684,98.12201467],[4.53742738,0.0403486,98.1226241],[4.53742777,0.04035036,98.12323456],[4.53742816,0.04035212,98.12384599],[4.53742856,0.04035388,98.12445833],[4.53742895,0.04035564,98.12507154],[4.53742934,0.0403574,98.12568554],[4.53742974,0.04035916,98.12630029],[4.53743013,0.04036092,98.12691572],[4.53743052,0.04036268,98.12753177],[4.53743091,0.04036444,98.1281484],[4.53743131,0.0403662,98.12876554],[4.5374317,0.04036796,98.12938312],[4.53743209,0.04036972,98.13000108],[4.53743248,0.04037148,98.13061936],[4.53743287,0.04037324,98.13123791],[4.53743326,0.040375,98.13185667],[4.53743365,0.04037676,98.13247559],[4.53743404,0.04037852,98.13309478],[4.53743443,0.04038028,98.1337144],[4.53743482,0.04038204,98.13433461],[4.53743521,0.0403838,98.1349556],[4.5374356,0.04038556,98.13557754],[4.53743599,0.04038732,98.13620058],[4.53743638,0.04038908,98.1368249],[4.53743677,0.04039084,98.13745068],[4.53743716,0.0403926,98.13807807],[4.53743755,0.04039436,98.13870725],[4.53743794,0.04039612,98.13933838],[4.53743834,0.04039788,98.13997164],[4.53743873,0.04039965,98.14060718],[4.53743912,0.04040141,98.14124516],[4.53743951,0.04040317,98.14188558],[4.53743991,0.04040493,98.14252842],[4.5374403,0.04040669,98.14317369],[4.53744069,0.04040845,98.14382135],[4.53744109,0.0404102,98.1444714],[4.53744148,0.04041196,98.14512383],[4.53744188,0.04041372,98.14577861],[4.53744227,0.04041548,98.14643574],[4.53744267,0.04041724,98.1470952],[4.53744307,0.040419,98.14775697],[4.53744347,0.04042076,98.14842104],[4.53744386,0.04042252,98.1490874],[4.53744426,0.04042428,98.14975604],[4.53744466,0.04042604,98.15042697],[4.53744506,0.0404278,98.15110027],[4.53744546,0.04042956,98.15177603],[4.53744586,0.04043131,98.15245434],[4.53744626,0.04043307,98.1531353],[4.53744666,0.04043483,98.15381898],[4.53744706,0.04043659,98.15450547],[4.53744747,0.04043835,98.15519488],[4.53744787,0.0404401,98.15588727],[4.53744827,0.04044186,98.15658274],[4.53744868,0.04044362,98.15728138],[4.53744909,0.04044538,98.15798328],[4.53744949,0.04044713,98.15868852],[4.5374499,0.04044889,98.15939719],[4.53745031,0.04045065,98.16010937],[4.53745072,0.04045241,98.16082516],[4.53745113,0.04045416,98.16154464],[4.53745154,0.04045592,98.16226789],[4.53745195,0.04045768,98.16299501],[4.53745237,0.04045943,98.16372607],[4.53745278,0.04046119,98.16446118],[4.5374532,0.04046294,98.1652004],[4.53745361,0.0404647,98.16594383],[4.53745403,0.04046645,98.16669155],[4.53745445,0.0404682,98.16744365],[4.53745487,0.04046996,98.16820021],[4.53745529,0.04047171,98.16896132],[4.53745572,0.04047347,98.16972707],[4.53745614,0.04047522,98.17049753],[4.53745657,0.04047697,98.17127281],[4.537457,0.04047872,98.17205305],[4.53745742,0.04048048,98.17283843],[4.53745785,0.04048223,98.17362911],[4.53745829,0.04048398,98.17442527],[4.53745872,0.04048573,98.17522712],[4.53745916,0.04048748,98.17603483],[4.53745959,0.04048923,98.1768486],[4.53746003,0.04049098,98.17766858],[4.53746047,0.04049273,98.17849481],[4.53746092,0.04049448,98.17932727],[4.53746136,0.04049623,98.18016592],[4.53746181,0.04049797,98.18101074],[4.53746226,0.04049972,98.1818617],[4.53746271,0.04050147,98.18271878],[4.53746316,0.04050321,98.18358196],[4.53746362,0.04050496,98.18445119],[4.53746407,0.04050671,98.18532647],[4.53746453,0.04050845,98.18620776],[4.53746499,0.0405102,98.18709503],[4.53746545,0.04051194,98.18798827],[4.53746592,0.04051369,98.18888744],[4.53746638,0.04051543,98.18979252],[4.53746685,0.04051717,98.19070348],[4.53746732,0.04051891,98.1916203],[4.53746779,0.04052066,98.19254295],[4.53746826,0.0405224,98.1934714],[4.53746874,0.04052414,98.19440564],[4.53746921,0.04052588,98.19534563],[4.53746969,0.04052762,98.19629134],[4.53747017,0.04052936,98.19724276],[4.53747065,0.0405311,98.19819986],[4.53747114,0.04053284,98.19916258],[4.53747162,0.04053458,98.20013091],[4.53747211,0.04053632,98.2011048],[4.5374726,0.04053806,98.20208421],[4.53747309,0.0405398,98.20306911],[4.53747358,0.04054153,98.20405947],[4.53747408,0.04054327,98.20505524],[4.53747457,0.04054501,98.20605638],[4.53747507,0.04054674,98.20706287],[4.53747557,0.04054848,98.20807464],[4.53747607,0.04055021,98.20909166],[4.53747657,0.04055195,98.21011388],[4.53747707,0.04055368,98.21114124],[4.53747758,0.04055542,98.21217371],[4.53747809,0.04055715,98.21321124],[4.53747859,0.04055889,98.21425378],[4.5374791,0.04056062,98.21530129],[4.53747962,0.04056235,98.21635371],[4.53748013,0.04056409,98.217411],[4.53748064,0.04056582,98.21847313],[4.53748116,0.04056755,98.21954003],[4.53748168,0.04056928,98.22061167],[4.5374822,0.04057101,98.221688],[4.53748272,0.04057274,98.22276897],[4.53748324,0.04057447,98.22385454],[4.53748376,0.0405762,98.22494466],[4.53748429,0.04057793,98.22603929],[4.53748482,0.04057966,98.22713839],[4.53748534,0.04058139,98.2282419],[4.53748587,0.04058312,98.22934978],[4.5374864,0.04058485,98.23046199],[4.53748694,0.04058658,98.23157848],[4.53748747,0.04058831,98.23269921],[4.537488,0.04059003,98.23382414],[4.53748854,0.04059176,98.23495321],[4.53748908,0.04059349,98.23608639],[4.53748961,0.04059522,98.23722362],[4.53749015,0.04059694,98.23836485],[4.5374907,0.04059867,98.23950996],[4.53749124,0.04060039,98.24065881],[4.53749178,0.04060212,98.24181125],[4.53749232,0.04060385,98.24296715],[4.53749287,0.04060557,98.24412636],[4.53749342,0.0406073,98.24528875],[4.53749396,0.04060902,98.24645418],[4.53749451,0.04061075,98.24762251],[4.53749506,0.04061247,98.2487936],[4.53749561,0.04061419,98.24996732],[4.53749616,0.04061592,98.25114353],[4.53749671,0.04061764,98.25232222],[4.53749726,0.04061937,98.25350337],[4.53749782,0.04062109,98.254687],[4.53749837,0.04062281,98.25587309],[4.53749892,0.04062454,98.25706165],[4.53749948,0.04062626,98.25825267],[4.53750003,0.04062798,98.25944616],[4.53750059,0.0406297,98.26064212],[4.53750115,0.04063143,98.26184055],[4.5375017,0.04063315,98.26304143],[4.53750226,0.04063487,98.26424479],[4.53750282,0.04063659,98.26545061],[4.53750338,0.04063832,98.26665889],[4.53750394,0.04064004,98.26786963],[4.5375045,0.04064176,98.26908284],[4.53750506,0.04064348,98.27029851],[4.53750563,0.0406452,98.27151663],[4.53750619,0.04064692,98.2727372],[4.53750675,0.04064864,98.2739602],[4.53750732,0.04065036,98.27518562],[4.53750788,0.04065208,98.27641345],[4.53750845,0.0406538,98.27764368],[4.53750902,0.04065553,98.27887629],[4.53750959,0.04065725,98.28011127],[4.53751015,0.04065897,98.28134851],[4.53751072,0.04066068,98.28258753],[4.53751129,0.0406624,98.28382774],[4.53751186,0.04066412,98.28506858],[4.53751243,0.04066584,98.28630946],[4.537513,0.04066756,98.28754982],[4.53751357,0.04066928,98.28878907],[4.53751413,0.040671,98.29002665],[4.5375147,0.04067272,98.29126239],[4.53751527,0.04067444,98.29249648],[4.53751583,0.04067617,98.29372912],[4.53751639,0.04067789,98.29496053],[4.53751696,0.04067961,98.29619092],[4.53751752,0.04068133,98.2974205],[4.53751809,0.04068305,98.29864947],[4.53751865,0.04068477,98.29987806],[4.53751921,0.04068649,98.30110646],[4.53751977,0.04068821,98.30233488],[4.53752033,0.04068993,98.30356354],[4.5375209,0.04069165,98.30479264],[4.53752146,0.04069338,98.3060224],[4.53752202,0.0406951,98.307253],[4.53752258,0.04069682,98.30848468],[4.53752315,0.04069854,98.30971771],[4.53752371,0.04070026,98.31095263],[4.53752427,0.04070198,98.31218997],[4.53752484,0.0407037,98.31343029],[4.53752541,0.04070542,98.31467414],[4.53752597,0.04070714,98.31592204],[4.53752654,0.04070886,98.31717385],[4.53752711,0.04071058,98.31842877],[4.53752768,0.0407123,98.31968595],[4.53752825,0.04071402,98.32094457],[4.53752882,0.04071574,98.32220379],[4.53752939,0.04071746,98.32346277],[4.53752996,0.04071918,98.3247207],[4.53753053,0.0407209,98.32597679],[4.5375311,0.04072262,98.32723086],[4.53753167,0.04072434,98.32848307],[4.53753224,0.04072606,98.32973356],[4.5375328,0.04072778,98.3309825],[4.53753337,0.0407295,98.33223003],[4.53753393,0.04073122,98.33347631],[4.5375345,0.04073294,98.33472149],[4.53753506,0.04073466,98.33596572],[4.53753562,0.04073638,98.33720917],[4.53753618,0.0407381,98.33845197],[4.53753675,0.04073982,98.33969427],[4.53753731,0.04074155,98.34093621],[4.53753787,0.04074327,98.3421779],[4.53753843,0.04074499,98.34341948],[4.53753899,0.04074671,98.34466109],[4.53753955,0.04074843,98.34590286],[4.53754012,0.04075015,98.34714551],[4.53754068,0.04075187,98.34839015],[4.53754124,0.04075359,98.34963691],[4.5375418,0.04075532,98.35088539],[4.53754237,0.04075704,98.35213522],[4.53754293,0.04075876,98.35338599],[4.53754349,0.04076048,98.35463733],[4.53754406,0.0407622,98.35588886],[4.53754462,0.04076392,98.35714018],[4.53754518,0.04076564,98.35839091],[4.53754574,0.04076736,98.35964066],[4.5375463,0.04076908,98.36088907],[4.53754686,0.04077081,98.36213573],[4.53754742,0.04077253,98.36338027],[4.53754798,0.04077425,98.3646223],[4.53754854,0.04077597,98.36586146],[4.5375491,0.04077769,98.36709775],[4.53754965,0.04077942,98.36833181],[4.5375502,0.04078114,98.3695643],[4.53755076,0.04078286,98.37079575],[4.53755131,0.04078459,98.37202602],[4.53755186,0.04078631,98.37325483],[4.53755241,0.04078803,98.3744819],[4.53755296,0.04078976,98.37570693],[4.53755351,0.04079148,98.37692964],[4.53755406,0.04079321,98.37814975],[4.53755461,0.04079493,98.37936697],[4.53755515,0.04079666,98.38058102],[4.5375557,0.04079838,98.38179161],[4.53755624,0.04080011,98.38299845],[4.53755678,0.04080183,98.38420127],[4.53755732,0.04080356,98.38539978],[4.53755786,0.04080529,98.3865937],[4.53755839,0.04080701,98.38778275],[4.53755892,0.04080874,98.38896658],[4.53755945,0.04081047,98.39014478],[4.53755998,0.0408122,98.39131721],[4.53756051,0.04081393,98.39248376],[4.53756103,0.04081566,98.39364431],[4.53756155,0.04081739,98.39479876],[4.53756207,0.04081912,98.39594698],[4.53756258,0.04082085,98.39708887],[4.53756309,0.04082258,98.3982243],[4.5375636,0.04082432,98.39935317],[4.53756411,0.04082605,98.40047537],[4.53756462,0.04082778,98.40159077],[4.53756512,0.04082952,98.40269927],[4.53756562,0.04083126,98.40380075],[4.53756611,0.04083299,98.4048951],[4.5375666,0.04083473,98.4059822],[4.53756709,0.04083647,98.40706194],[4.53756758,0.0408382,98.40813422],[4.53756806,0.04083994,98.40919891],[4.53756854,0.04084168,98.4102559],[4.53756902,0.04084342,98.41130508],[4.53756949,0.04084516,98.41234633],[4.53756996,0.04084691,98.41337955],[4.53757043,0.04084865,98.41440462],[4.53755025,0.0408532,98.36121883]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1003400","id":-4,"type":"shoulder","predecessorId":-3,"sOffset":46.9458860069}},{"geometry":{"coordinates":[[[4.53757043,0.04084865,98.41440462],[4.53756996,0.04084691,98.41337955],[4.53756949,0.04084516,98.41234633],[4.53756902,0.04084342,98.41130508],[4.53756854,0.04084168,98.4102559],[4.53756806,0.04083994,98.40919891],[4.53756758,0.0408382,98.40813422],[4.53756709,0.04083647,98.40706194],[4.5375666,0.04083473,98.4059822],[4.53756611,0.04083299,98.4048951],[4.53756562,0.04083126,98.40380075],[4.53756512,0.04082952,98.40269927],[4.53756462,0.04082778,98.40159077],[4.53756411,0.04082605,98.40047537],[4.5375636,0.04082432,98.39935317],[4.53756309,0.04082258,98.3982243],[4.53756258,0.04082085,98.39708887],[4.53756207,0.04081912,98.39594698],[4.53756155,0.04081739,98.39479876],[4.53756103,0.04081566,98.39364431],[4.53756051,0.04081393,98.39248376],[4.53755998,0.0408122,98.39131721],[4.53755945,0.04081047,98.39014478],[4.53755892,0.04080874,98.38896658],[4.53755839,0.04080701,98.38778275],[4.53755786,0.04080529,98.3865937],[4.53755732,0.04080356,98.38539978],[4.53755678,0.04080183,98.38420127],[4.53755624,0.04080011,98.38299845],[4.5375557,0.04079838,98.38179161],[4.53755515,0.04079666,98.38058102],[4.53755461,0.04079493,98.37936697],[4.53755406,0.04079321,98.37814975],[4.53755351,0.04079148,98.37692964],[4.53755296,0.04078976,98.37570693],[4.53755241,0.04078803,98.3744819],[4.53755186,0.04078631,98.37325483],[4.53755131,0.04078459,98.37202602],[4.53755076,0.04078286,98.37079575],[4.5375502,0.04078114,98.3695643],[4.53754965,0.04077942,98.36833181],[4.5375491,0.04077769,98.36709775],[4.53754854,0.04077597,98.36586146],[4.53754798,0.04077425,98.3646223],[4.53754742,0.04077253,98.36338027],[4.53754686,0.04077081,98.36213573],[4.5375463,0.04076908,98.36088907],[4.53754574,0.04076736,98.35964066],[4.53754518,0.04076564,98.35839091],[4.53754462,0.04076392,98.35714018],[4.53754406,0.0407622,98.35588886],[4.53754349,0.04076048,98.35463733],[4.53754293,0.04075876,98.35338599],[4.53754237,0.04075704,98.35213522],[4.5375418,0.04075532,98.35088539],[4.53754124,0.04075359,98.34963691],[4.53754068,0.04075187,98.34839015],[4.53754012,0.04075015,98.34714551],[4.53753955,0.04074843,98.34590286],[4.53753899,0.04074671,98.34466109],[4.53753843,0.04074499,98.34341948],[4.53753787,0.04074327,98.3421779],[4.53753731,0.04074155,98.34093621],[4.53753675,0.04073982,98.33969427],[4.53753618,0.0407381,98.33845197],[4.53753562,0.04073638,98.33720917],[4.53753506,0.04073466,98.33596572],[4.5375345,0.04073294,98.33472149],[4.53753393,0.04073122,98.33347631],[4.53753337,0.0407295,98.33223003],[4.5375328,0.04072778,98.3309825],[4.53753224,0.04072606,98.32973356],[4.53753167,0.04072434,98.32848307],[4.5375311,0.04072262,98.32723086],[4.53753053,0.0407209,98.32597679],[4.53752996,0.04071918,98.3247207],[4.53752939,0.04071746,98.32346277],[4.53752882,0.04071574,98.32220379],[4.53752825,0.04071402,98.32094457],[4.53752768,0.0407123,98.31968595],[4.53752711,0.04071058,98.31842877],[4.53752654,0.04070886,98.31717385],[4.53752597,0.04070714,98.31592204],[4.53752541,0.04070542,98.31467414],[4.53752484,0.0407037,98.31343029],[4.53752427,0.04070198,98.31218997],[4.53752371,0.04070026,98.31095263],[4.53752315,0.04069854,98.30971771],[4.53752258,0.04069682,98.30848468],[4.53752202,0.0406951,98.307253],[4.53752146,0.04069338,98.3060224],[4.5375209,0.04069165,98.30479264],[4.53752033,0.04068993,98.30356354],[4.53751977,0.04068821,98.30233488],[4.53751921,0.04068649,98.30110646],[4.53751865,0.04068477,98.29987806],[4.53751809,0.04068305,98.29864947],[4.53751752,0.04068133,98.2974205],[4.53751696,0.04067961,98.29619092],[4.53751639,0.04067789,98.29496053],[4.53751583,0.04067617,98.29372912],[4.53751527,0.04067444,98.29249648],[4.5375147,0.04067272,98.29126239],[4.53751413,0.040671,98.29002665],[4.53751357,0.04066928,98.28878907],[4.537513,0.04066756,98.28754982],[4.53751243,0.04066584,98.28630946],[4.53751186,0.04066412,98.28506858],[4.53751129,0.0406624,98.28382774],[4.53751072,0.04066068,98.28258753],[4.53751015,0.04065897,98.28134851],[4.53750959,0.04065725,98.28011127],[4.53750902,0.04065553,98.27887629],[4.53750845,0.0406538,98.27764368],[4.53750788,0.04065208,98.27641345],[4.53750732,0.04065036,98.27518562],[4.53750675,0.04064864,98.2739602],[4.53750619,0.04064692,98.2727372],[4.53750563,0.0406452,98.27151663],[4.53750506,0.04064348,98.27029851],[4.5375045,0.04064176,98.26908284],[4.53750394,0.04064004,98.26786963],[4.53750338,0.04063832,98.26665889],[4.53750282,0.04063659,98.26545061],[4.53750226,0.04063487,98.26424479],[4.5375017,0.04063315,98.26304143],[4.53750115,0.04063143,98.26184055],[4.53750059,0.0406297,98.26064212],[4.53750003,0.04062798,98.25944616],[4.53749948,0.04062626,98.25825267],[4.53749892,0.04062454,98.25706165],[4.53749837,0.04062281,98.25587309],[4.53749782,0.04062109,98.254687],[4.53749726,0.04061937,98.25350337],[4.53749671,0.04061764,98.25232222],[4.53749616,0.04061592,98.25114353],[4.53749561,0.04061419,98.24996732],[4.53749506,0.04061247,98.2487936],[4.53749451,0.04061075,98.24762251],[4.53749396,0.04060902,98.24645418],[4.53749342,0.0406073,98.24528875],[4.53749287,0.04060557,98.24412636],[4.53749232,0.04060385,98.24296715],[4.53749178,0.04060212,98.24181125],[4.53749124,0.04060039,98.24065881],[4.5374907,0.04059867,98.23950996],[4.53749015,0.04059694,98.23836485],[4.53748961,0.04059522,98.23722362],[4.53748908,0.04059349,98.23608639],[4.53748854,0.04059176,98.23495321],[4.537488,0.04059003,98.23382414],[4.53748747,0.04058831,98.23269921],[4.53748694,0.04058658,98.23157848],[4.5374864,0.04058485,98.23046199],[4.53748587,0.04058312,98.22934978],[4.53748534,0.04058139,98.2282419],[4.53748482,0.04057966,98.22713839],[4.53748429,0.04057793,98.22603929],[4.53748376,0.0405762,98.22494466],[4.53748324,0.04057447,98.22385454],[4.53748272,0.04057274,98.22276897],[4.5374822,0.04057101,98.221688],[4.53748168,0.04056928,98.22061167],[4.53748116,0.04056755,98.21954003],[4.53748064,0.04056582,98.21847313],[4.53748013,0.04056409,98.217411],[4.53747962,0.04056235,98.21635371],[4.5374791,0.04056062,98.21530129],[4.53747859,0.04055889,98.21425378],[4.53747809,0.04055715,98.21321124],[4.53747758,0.04055542,98.21217371],[4.53747707,0.04055368,98.21114124],[4.53747657,0.04055195,98.21011388],[4.53747607,0.04055021,98.20909166],[4.53747557,0.04054848,98.20807464],[4.53747507,0.04054674,98.20706287],[4.53747457,0.04054501,98.20605638],[4.53747408,0.04054327,98.20505524],[4.53747358,0.04054153,98.20405947],[4.53747309,0.0405398,98.20306911],[4.5374726,0.04053806,98.20208421],[4.53747211,0.04053632,98.2011048],[4.53747162,0.04053458,98.20013091],[4.53747114,0.04053284,98.19916258],[4.53747065,0.0405311,98.19819986],[4.53747017,0.04052936,98.19724276],[4.53746969,0.04052762,98.19629134],[4.53746921,0.04052588,98.19534563],[4.53746874,0.04052414,98.19440564],[4.53746826,0.0405224,98.1934714],[4.53746779,0.04052066,98.19254295],[4.53746732,0.04051891,98.1916203],[4.53746685,0.04051717,98.19070348],[4.53746638,0.04051543,98.18979252],[4.53746592,0.04051369,98.18888744],[4.53746545,0.04051194,98.18798827],[4.53746499,0.0405102,98.18709503],[4.53746453,0.04050845,98.18620776],[4.53746407,0.04050671,98.18532647],[4.53746362,0.04050496,98.18445119],[4.53746316,0.04050321,98.18358196],[4.53746271,0.04050147,98.18271878],[4.53746226,0.04049972,98.1818617],[4.53746181,0.04049797,98.18101074],[4.53746136,0.04049623,98.18016592],[4.53746092,0.04049448,98.17932727],[4.53746047,0.04049273,98.17849481],[4.53746003,0.04049098,98.17766858],[4.53745959,0.04048923,98.1768486],[4.53745916,0.04048748,98.17603483],[4.53745872,0.04048573,98.17522712],[4.53745829,0.04048398,98.17442527],[4.53745785,0.04048223,98.17362911],[4.53745742,0.04048048,98.17283843],[4.537457,0.04047872,98.17205305],[4.53745657,0.04047697,98.17127281],[4.53745614,0.04047522,98.17049753],[4.53745572,0.04047347,98.16972707],[4.53745529,0.04047171,98.16896132],[4.53745487,0.04046996,98.16820021],[4.53745445,0.0404682,98.16744365],[4.53745403,0.04046645,98.16669155],[4.53745361,0.0404647,98.16594383],[4.5374532,0.04046294,98.1652004],[4.53745278,0.04046119,98.16446118],[4.53745237,0.04045943,98.16372607],[4.53745195,0.04045768,98.16299501],[4.53745154,0.04045592,98.16226789],[4.53745113,0.04045416,98.16154464],[4.53745072,0.04045241,98.16082516],[4.53745031,0.04045065,98.16010937],[4.5374499,0.04044889,98.15939719],[4.53744949,0.04044713,98.15868852],[4.53744909,0.04044538,98.15798328],[4.53744868,0.04044362,98.15728138],[4.53744827,0.04044186,98.15658274],[4.53744787,0.0404401,98.15588727],[4.53744747,0.04043835,98.15519488],[4.53744706,0.04043659,98.15450547],[4.53744666,0.04043483,98.15381898],[4.53744626,0.04043307,98.1531353],[4.53744586,0.04043131,98.15245434],[4.53744546,0.04042956,98.15177603],[4.53744506,0.0404278,98.15110027],[4.53744466,0.04042604,98.15042697],[4.53744426,0.04042428,98.14975604],[4.53744386,0.04042252,98.1490874],[4.53744347,0.04042076,98.14842104],[4.53744307,0.040419,98.14775697],[4.53744267,0.04041724,98.1470952],[4.53744227,0.04041548,98.14643574],[4.53744188,0.04041372,98.14577861],[4.53744148,0.04041196,98.14512383],[4.53744109,0.0404102,98.1444714],[4.53744069,0.04040845,98.14382135],[4.5374403,0.04040669,98.14317369],[4.53743991,0.04040493,98.14252842],[4.53743951,0.04040317,98.14188558],[4.53743912,0.04040141,98.14124516],[4.53743873,0.04039965,98.14060718],[4.53743834,0.04039788,98.13997164],[4.53743794,0.04039612,98.13933838],[4.53743755,0.04039436,98.13870725],[4.53743716,0.0403926,98.13807807],[4.53743677,0.04039084,98.13745068],[4.53743638,0.04038908,98.1368249],[4.53743599,0.04038732,98.13620058],[4.5374356,0.04038556,98.13557754],[4.53743521,0.0403838,98.1349556],[4.53743482,0.04038204,98.13433461],[4.53743443,0.04038028,98.1337144],[4.53743404,0.04037852,98.13309478],[4.53743365,0.04037676,98.13247559],[4.53743326,0.040375,98.13185667],[4.53743287,0.04037324,98.13123791],[4.53743248,0.04037148,98.13061936],[4.53743209,0.04036972,98.13000108],[4.5374317,0.04036796,98.12938312],[4.53743131,0.0403662,98.12876554],[4.53743091,0.04036444,98.1281484],[4.53743052,0.04036268,98.12753177],[4.53743013,0.04036092,98.12691572],[4.53742974,0.04035916,98.12630029],[4.53742934,0.0403574,98.12568554],[4.53742895,0.04035564,98.12507154],[4.53742856,0.04035388,98.12445833],[4.53742816,0.04035212,98.12384599],[4.53742777,0.04035036,98.12323456],[4.53742738,0.0403486,98.1226241],[4.53742699,0.04034684,98.12201467],[4.53742659,0.04034508,98.12140634],[4.5374262,0.04034332,98.12079915],[4.53742581,0.04034156,98.12019317],[4.53742541,0.0403398,98.11958845],[4.53742502,0.04033804,98.11898505],[4.53742463,0.04033628,98.11838304],[4.53742423,0.04033452,98.11778246],[4.53742384,0.04033276,98.11718326],[4.53742345,0.040331,98.11658528],[4.53742306,0.04032924,98.11598852],[4.53742266,0.04032748,98.11539299],[4.53742227,0.04032572,98.11479867],[4.53742188,0.04032396,98.11420559],[4.53742149,0.0403222,98.11361373],[4.53742109,0.04032044,98.1130231],[4.5374207,0.04031868,98.1124337],[4.53742031,0.04031692,98.11184553],[4.53741992,0.04031516,98.1112586],[4.53741953,0.0403134,98.1106729],[4.53741913,0.04031164,98.11008844],[4.53741874,0.04030988,98.10950522],[4.53741835,0.04030812,98.10892324],[4.53741796,0.04030636,98.1083425],[4.53741757,0.0403046,98.10776301],[4.53741717,0.04030284,98.10718476],[4.53741678,0.04030108,98.10660777],[4.53741639,0.04029932,98.10603202],[4.537416,0.04029756,98.10545752],[4.53741561,0.04029581,98.10488427],[4.53741521,0.04029405,98.10431228],[4.53741482,0.04029229,98.10374155],[4.53741443,0.04029053,98.10317207],[4.53741404,0.04028877,98.10260385],[4.53741365,0.04028701,98.1020369],[4.53741326,0.04028525,98.1014712],[4.53741286,0.04028349,98.10090646],[4.53741247,0.04028173,98.10034234],[4.53741208,0.04027997,98.0997788],[4.53741169,0.04027821,98.09921588],[4.53741129,0.04027645,98.0986536],[4.5374109,0.04027469,98.09809198],[4.53741051,0.04027293,98.09753106],[4.53741012,0.04027117,98.09697085],[4.53740972,0.04026941,98.09641139],[4.53740933,0.04026765,98.09585269],[4.53740894,0.04026589,98.09529478],[4.53740854,0.04026413,98.09473769],[4.53740815,0.04026237,98.09418145],[4.53740776,0.04026062,98.09362607],[4.53740736,0.04025886,98.09307159],[4.53740697,0.0402571,98.09251803],[4.53740657,0.04025534,98.09196541],[4.53740618,0.04025358,98.09141377],[4.53740579,0.04025182,98.09086312],[4.53740539,0.04025006,98.09031349],[4.537405,0.0402483,98.08976491],[4.5374046,0.04024654,98.08921741],[4.53740421,0.04024478,98.088671],[4.53740381,0.04024303,98.08812579],[4.53740342,0.04024127,98.08758217],[4.53740303,0.04023951,98.0870406],[4.53740263,0.04023775,98.08650135],[4.53740224,0.04023599,98.08596437],[4.53740185,0.04023423,98.08542957],[4.53740145,0.04023247,98.08489686],[4.53740106,0.04023071,98.08436615],[4.53740067,0.04022895,98.08383734],[4.53740028,0.04022719,98.08331034],[4.53739988,0.04022543,98.08278507],[4.53739949,0.04022368,98.08226142],[4.5373991,0.04022192,98.08173931],[4.53739871,0.04022016,98.08121865],[4.53739832,0.0402184,98.08069933],[4.53739793,0.04021664,98.08018128],[4.53739753,0.04021488,98.07966439],[4.53739714,0.04021312,98.07914857],[4.53739675,0.04021136,98.07863374],[4.53739636,0.0402096,98.07811979],[4.53739597,0.04020784,98.07760663],[4.53739559,0.04020616,98.07711735],[4.53742625,0.04019919,98.17009974],[4.53742664,0.04020087,98.17060709],[4.53742705,0.04020262,98.17113783],[4.53742745,0.04020438,98.1716678],[4.53742786,0.04020613,98.17219687],[4.53742827,0.04020789,98.17272496],[4.53742868,0.04020965,98.17325196],[4.53742908,0.0402114,98.17377776],[4.53742949,0.04021316,98.17430225],[4.53742989,0.04021492,98.17482534],[4.53743029,0.04021667,98.17534691],[4.53743069,0.04021843,98.17586687],[4.5374311,0.04022019,98.17638511],[4.5374315,0.04022195,98.17690153],[4.53743189,0.04022371,98.17741601],[4.53743229,0.04022546,98.17792847],[4.53743269,0.04022722,98.17843879],[4.53743309,0.04022898,98.17894688],[4.53743348,0.04023074,98.17945263],[4.53743387,0.0402325,98.17995593],[4.53743427,0.04023426,98.18045669],[4.53743466,0.04023602,98.18095481],[4.53743505,0.04023778,98.18145019],[4.53743543,0.04023954,98.1819428],[4.53743582,0.0402413,98.18243291],[4.53743621,0.04024306,98.18292084],[4.53743659,0.04024482,98.18340694],[4.53743698,0.04024659,98.18389153],[4.53743736,0.04024835,98.18437494],[4.53743774,0.04025011,98.18485751],[4.53743812,0.04025187,98.18533958],[4.5374385,0.04025363,98.18582146],[4.53743889,0.0402554,98.18630349],[4.53743927,0.04025716,98.186786],[4.53743965,0.04025892,98.18726932],[4.53744003,0.04026068,98.18775378],[4.53744041,0.04026244,98.18823971],[4.53744079,0.04026421,98.18872743],[4.53744117,0.04026597,98.18921727],[4.53744155,0.04026773,98.18970956],[4.53744194,0.04026949,98.19020462],[4.53744232,0.04027126,98.19070278],[4.5374427,0.04027302,98.19120437],[4.53744309,0.04027478,98.1917097],[4.53744347,0.04027654,98.19221911],[4.53744386,0.0402783,98.19273292],[4.53744425,0.04028006,98.19325144],[4.53744464,0.04028182,98.1937747],[4.53744503,0.04028358,98.19430249],[4.53744542,0.04028534,98.19483457],[4.53744581,0.0402871,98.19537069],[4.5374462,0.04028886,98.19591061],[4.5374466,0.04029062,98.1964541],[4.53744699,0.04029238,98.19700091],[4.53744739,0.04029414,98.19755082],[4.53744779,0.0402959,98.19810357],[4.53744818,0.04029766,98.19865894],[4.53744858,0.04029942,98.19921669],[4.53744898,0.04030118,98.19977657],[4.53744937,0.04030293,98.20033836],[4.53744977,0.04030469,98.20090181],[4.53745017,0.04030645,98.20146669],[4.53745057,0.04030821,98.20203277],[4.53745097,0.04030997,98.20259982],[4.53745136,0.04031173,98.20316758],[4.53745176,0.04031349,98.20373585],[4.53745216,0.04031524,98.20430437],[4.53745256,0.040317,98.20487291],[4.53745295,0.04031876,98.20544125],[4.53745335,0.04032052,98.20600915],[4.53745374,0.04032228,98.20657637],[4.53745414,0.04032404,98.20714269],[4.53745453,0.0403258,98.20770788],[4.53745493,0.04032756,98.2082717],[4.53745532,0.04032932,98.20883412],[4.53745571,0.04033108,98.20939523],[4.5374561,0.04033284,98.20995517],[4.53745649,0.0403346,98.21051406],[4.53745688,0.04033636,98.21107203],[4.53745727,0.04033812,98.21162919],[4.53745766,0.04033988,98.21218567],[4.53745804,0.04034164,98.21274158],[4.53745843,0.04034341,98.21329706],[4.53745882,0.04034517,98.21385223],[4.5374592,0.04034693,98.2144072],[4.53745959,0.04034869,98.2149621],[4.53745998,0.04035045,98.21551705],[4.53746036,0.04035221,98.21607218],[4.53746075,0.04035397,98.21662759],[4.53746113,0.04035574,98.21718342],[4.53746151,0.0403575,98.21773978],[4.5374619,0.04035926,98.21829679],[4.53746228,0.04036102,98.21885456],[4.53746267,0.04036278,98.21941321],[4.53746305,0.04036455,98.21997286],[4.53746344,0.04036631,98.22053362],[4.53746382,0.04036807,98.22109561],[4.5374642,0.04036983,98.22165896],[4.53746459,0.04037159,98.22222377],[4.53746497,0.04037336,98.22279018],[4.53746536,0.04037512,98.22335829],[4.53746574,0.04037688,98.22392822],[4.53746613,0.04037864,98.22450009],[4.53746651,0.0403804,98.22507402],[4.5374669,0.04038216,98.22565012],[4.53746729,0.04038393,98.22622852],[4.53746767,0.04038569,98.22680932],[4.53746806,0.04038745,98.22739265],[4.53746845,0.04038921,98.22797861],[4.53746884,0.04039097,98.22856734],[4.53746923,0.04039273,98.22915893],[4.53746962,0.04039449,98.22975348],[4.53747001,0.04039625,98.23035096],[4.5374704,0.04039801,98.23095129],[4.53747079,0.04039977,98.23155441],[4.53747118,0.04040153,98.23216025],[4.53747158,0.04040329,98.23276876],[4.53747197,0.04040505,98.23337986],[4.53747237,0.04040681,98.23399349],[4.53747276,0.04040857,98.23460958],[4.53747316,0.04041033,98.23522807],[4.53747355,0.04041209,98.23584889],[4.53747395,0.04041385,98.23647198],[4.53747434,0.04041561,98.23709727],[4.53747474,0.04041737,98.2377247],[4.53747514,0.04041913,98.23835421],[4.53747554,0.04042089,98.23898572],[4.53747593,0.04042265,98.23961918],[4.53747633,0.04042441,98.24025452],[4.53747673,0.04042616,98.24089168],[4.53747713,0.04042792,98.24153059],[4.53747753,0.04042968,98.24217119],[4.53747793,0.04043144,98.24281341],[4.53747833,0.0404332,98.24345719],[4.53747873,0.04043496,98.24410247],[4.53747913,0.04043672,98.24474919],[4.53747953,0.04043848,98.24539727],[4.53747993,0.04044023,98.24604666],[4.53748033,0.04044199,98.2466973],[4.53748073,0.04044375,98.24734911],[4.53748113,0.04044551,98.24800204],[4.53748153,0.04044727,98.24865603],[4.53748193,0.04044903,98.24931101],[4.53748233,0.04045079,98.24996691],[4.53748273,0.04045255,98.25062368],[4.53748313,0.0404543,98.25128126],[4.53748353,0.04045606,98.25193958],[4.53748393,0.04045782,98.25259858],[4.53748433,0.04045958,98.25325819],[4.53748473,0.04046134,98.25391836],[4.53748513,0.0404631,98.25457902],[4.53748553,0.04046486,98.25524011],[4.53748593,0.04046661,98.25590157],[4.53748633,0.04046837,98.25656334],[4.53748673,0.04047013,98.25722537],[4.53748713,0.04047189,98.25788766],[4.53748753,0.04047365,98.25855023],[4.53748793,0.04047541,98.2592131],[4.53748833,0.04047717,98.25987633],[4.53748872,0.04047893,98.26053995],[4.53748912,0.04048068,98.26120401],[4.53748952,0.04048244,98.26186855],[4.53748992,0.0404842,98.2625336],[4.53749031,0.04048596,98.26319917],[4.53749071,0.04048772,98.26386529],[4.53749111,0.04048948,98.26453196],[4.5374915,0.04049124,98.2651992],[4.5374919,0.040493,98.26586704],[4.5374923,0.04049476,98.26653547],[4.53749269,0.04049652,98.26720452],[4.53749309,0.04049828,98.2678742],[4.53749349,0.04050004,98.26854453],[4.53749388,0.04050179,98.26921552],[4.53749428,0.04050355,98.26988719],[4.53749468,0.04050531,98.27055955],[4.53749507,0.04050707,98.27123262],[4.53749547,0.04050883,98.2719064],[4.53749586,0.04051059,98.27258093],[4.53749626,0.04051235,98.27325621],[4.53749666,0.04051411,98.27393225],[4.53749705,0.04051587,98.27460908],[4.53749745,0.04051763,98.2752867],[4.53749784,0.04051939,98.27596513],[4.53749824,0.04052115,98.27664439],[4.53749863,0.04052291,98.27732449],[4.53749903,0.04052467,98.27800544],[4.53749943,0.04052643,98.27868726],[4.53749982,0.04052819,98.27936997],[4.53750022,0.04052994,98.28005357],[4.53750061,0.0405317,98.28073809],[4.53750101,0.04053346,98.28142354],[4.5375014,0.04053522,98.28210993],[4.5375018,0.04053698,98.28279727],[4.53750219,0.04053874,98.28348559],[4.53750259,0.0405405,98.28417489],[4.53750299,0.04054226,98.28486517],[4.53750338,0.04054402,98.28555644],[4.53750378,0.04054578,98.2862487],[4.53750417,0.04054754,98.28694195],[4.53750457,0.0405493,98.28763621],[4.53750496,0.04055106,98.28833147],[4.53750536,0.04055282,98.28902774],[4.53750576,0.04055458,98.28972502],[4.53750615,0.04055633,98.29042331],[4.53750655,0.04055809,98.29112263],[4.53750694,0.04055985,98.29182296],[4.53750734,0.04056161,98.29252433],[4.53750774,0.04056337,98.29322672],[4.53750813,0.04056513,98.29393014],[4.53750853,0.04056689,98.29463461],[4.53750892,0.04056865,98.29534011],[4.53750932,0.04057041,98.29604667],[4.53750972,0.04057217,98.29675427],[4.53751011,0.04057393,98.29746292],[4.53751051,0.04057569,98.29817263],[4.53751091,0.04057744,98.2988834],[4.5375113,0.0405792,98.29959523],[4.5375117,0.04058096,98.30030813],[4.5375121,0.04058272,98.30102211],[4.53751249,0.04058448,98.30173715],[4.53751289,0.04058624,98.30245328],[4.53751329,0.040588,98.30317049],[4.53751368,0.04058976,98.30388878],[4.53751408,0.04059152,98.30460815],[4.53751448,0.04059328,98.30532852],[4.53751488,0.04059503,98.30604979],[4.53751527,0.04059679,98.30677188],[4.53751567,0.04059855,98.30749468],[4.53751607,0.04060031,98.30821812],[4.53751646,0.04060207,98.3089421],[4.53751686,0.04060383,98.30966652],[4.53751726,0.04060559,98.3103913],[4.53751765,0.04060735,98.31111634],[4.53751805,0.04060911,98.31184155],[4.53751844,0.04061087,98.31256685],[4.53751884,0.04061263,98.31329213],[4.53751924,0.04061438,98.31401732],[4.53751963,0.04061614,98.31474232],[4.53752002,0.0406179,98.31546703],[4.53752042,0.04061966,98.31619138],[4.53752081,0.04062142,98.31691526],[4.5375212,0.04062318,98.31763859],[4.5375216,0.04062494,98.31836128],[4.53752199,0.0406267,98.31908324],[4.53752238,0.04062846,98.31980438],[4.53752277,0.04063022,98.32052461],[4.53752316,0.04063198,98.32124384],[4.53752355,0.04063374,98.32196198],[4.53752394,0.04063551,98.32267895],[4.53752432,0.04063727,98.32339465],[4.53752471,0.04063903,98.32410898],[4.5375251,0.04064079,98.32482187],[4.53752548,0.04064255,98.32553321],[4.53752586,0.04064431,98.32624289],[4.53752625,0.04064607,98.32695083],[4.53752663,0.04064784,98.32765692],[4.53752701,0.0406496,98.32836106],[4.53752739,0.04065136,98.32906314],[4.53752777,0.04065313,98.32976307],[4.53752815,0.04065489,98.33046075],[4.53752852,0.04065665,98.33115608],[4.5375289,0.04065842,98.33184896],[4.53752927,0.04066018,98.33253929],[4.53752964,0.04066194,98.33322696],[4.53753002,0.04066371,98.33391189],[4.53753039,0.04066547,98.33459396],[4.53753075,0.04066724,98.3352731],[4.53753112,0.040669,98.3359496],[4.53753149,0.04067077,98.33662412],[4.53753185,0.04067254,98.33729734],[4.53753222,0.0406743,98.33796995],[4.53753258,0.04067607,98.33864263],[4.53753295,0.04067783,98.33931605],[4.53753331,0.0406796,98.33999091],[4.53753368,0.04068137,98.34066786],[4.53753404,0.04068313,98.3413476],[4.53753441,0.0406849,98.34203079],[4.53753478,0.04068666,98.34271811],[4.53753515,0.04068843,98.34341024],[4.53753552,0.04069019,98.34410785],[4.53753589,0.04069196,98.34481161],[4.53753626,0.04069372,98.34552219],[4.53753664,0.04069548,98.34624026],[4.53753702,0.04069725,98.3469665],[4.53753741,0.04069901,98.34770156],[4.53753779,0.04070077,98.34844612],[4.53753818,0.04070253,98.34920084],[4.53753857,0.04070429,98.34996637],[4.53753897,0.04070605,98.35074267],[4.53753937,0.04070781,98.35152905],[4.53753978,0.04070956,98.35232481],[4.53754018,0.04071132,98.35312921],[4.53754059,0.04071308,98.35394155],[4.537541,0.04071483,98.35476109],[4.53754142,0.04071659,98.35558714],[4.53754183,0.04071834,98.35641897],[4.53754225,0.04072009,98.35725587],[4.53754267,0.04072185,98.35809713],[4.53754309,0.0407236,98.35894203],[4.53754351,0.04072535,98.35978987],[4.53754393,0.04072711,98.36063993],[4.53754435,0.04072886,98.36149152],[4.53754477,0.04073061,98.36234391],[4.53754519,0.04073237,98.3631964],[4.53754562,0.04073412,98.3640483],[4.53754604,0.04073587,98.36489888],[4.53754645,0.04073763,98.36574744],[4.53754687,0.04073938,98.36659326],[4.53754729,0.04074114,98.3674356],[4.5375477,0.04074289,98.36827374],[4.53754811,0.04074465,98.36910697],[4.53754852,0.0407464,98.36993457],[4.53754893,0.04074816,98.37075641],[4.53754933,0.04074992,98.3715729],[4.53754974,0.04075167,98.37238445],[4.53755014,0.04075343,98.37319152],[4.53755054,0.04075519,98.37399452],[4.53755093,0.04075695,98.37479389],[4.53755133,0.04075871,98.37559005],[4.53755172,0.04076047,98.37638345],[4.53755212,0.04076223,98.37717449],[4.53755251,0.04076398,98.37796362],[4.5375529,0.04076574,98.37875126],[4.53755329,0.0407675,98.37953784],[4.53755368,0.04076926,98.38032378],[4.53755407,0.04077103,98.38110951],[4.53755446,0.04077279,98.38189546],[4.53755485,0.04077455,98.38268204],[4.53755524,0.04077631,98.38346969],[4.53755563,0.04077807,98.38425883],[4.53755602,0.04077983,98.38504988],[4.53755641,0.04078159,98.3858431],[4.5375568,0.04078335,98.38663813],[4.53755719,0.04078511,98.38743443],[4.53755758,0.04078687,98.38823145],[4.53755797,0.04078863,98.38902867],[4.53755836,0.04079039,98.38982555],[4.53755875,0.04079215,98.39062156],[4.53755914,0.04079391,98.39141617],[4.53755953,0.04079567,98.39220884],[4.53755992,0.04079743,98.39299904],[4.5375603,0.04079919,98.39378624],[4.53756069,0.04080095,98.39456991],[4.53756107,0.04080271,98.39534952],[4.53756145,0.04080447,98.39612455],[4.53756183,0.04080624,98.39689446],[4.5375622,0.040808,98.39765876],[4.53756257,0.04080976,98.39841736],[4.53756294,0.04081153,98.39917062],[4.53756331,0.04081329,98.3999189],[4.53756368,0.04081506,98.40066258],[4.53756404,0.04081683,98.40140201],[4.53756441,0.04081859,98.40213758],[4.53756477,0.04082036,98.40286964],[4.53756513,0.04082213,98.40359857],[4.53756548,0.04082389,98.40432472],[4.53756584,0.04082566,98.40504848],[4.5375662,0.04082743,98.4057702],[4.53756655,0.0408292,98.40649025],[4.53756691,0.04083096,98.40720899],[4.53756726,0.04083273,98.40792679],[4.53756761,0.0408345,98.40864401],[4.53756796,0.04083627,98.40936102],[4.53756832,0.04083804,98.41007818],[4.53756867,0.04083981,98.41079586],[4.53756902,0.04084157,98.41151441],[4.53756937,0.04084334,98.4122342],[4.53756973,0.04084511,98.41295559],[4.53757008,0.04084688,98.41367894],[4.53757043,0.04084865,98.41440462],[4.53757043,0.04084865,98.41440462]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0},{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1003400","id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":0,"sOffset":46.9458860069}},{"geometry":{"coordinates":[[[4.53757043,0.04084865,98.41440462],[4.53757008,0.04084688,98.41367894],[4.53756973,0.04084511,98.41295559],[4.53756937,0.04084334,98.4122342],[4.53756902,0.04084157,98.41151441],[4.53756867,0.04083981,98.41079586],[4.53756832,0.04083804,98.41007818],[4.53756796,0.04083627,98.40936102],[4.53756761,0.0408345,98.40864401],[4.53756726,0.04083273,98.40792679],[4.53756691,0.04083096,98.40720899],[4.53756655,0.0408292,98.40649025],[4.5375662,0.04082743,98.4057702],[4.53756584,0.04082566,98.40504848],[4.53756548,0.04082389,98.40432472],[4.53756513,0.04082213,98.40359857],[4.53756477,0.04082036,98.40286964],[4.53756441,0.04081859,98.40213758],[4.53756404,0.04081683,98.40140201],[4.53756368,0.04081506,98.40066258],[4.53756331,0.04081329,98.3999189],[4.53756294,0.04081153,98.39917062],[4.53756257,0.04080976,98.39841736],[4.5375622,0.040808,98.39765876],[4.53756183,0.04080624,98.39689446],[4.53756145,0.04080447,98.39612455],[4.53756107,0.04080271,98.39534952],[4.53756069,0.04080095,98.39456991],[4.5375603,0.04079919,98.39378624],[4.53755992,0.04079743,98.39299904],[4.53755953,0.04079567,98.39220884],[4.53755914,0.04079391,98.39141617],[4.53755875,0.04079215,98.39062156],[4.53755836,0.04079039,98.38982555],[4.53755797,0.04078863,98.38902867],[4.53755758,0.04078687,98.38823145],[4.53755719,0.04078511,98.38743443],[4.5375568,0.04078335,98.38663813],[4.53755641,0.04078159,98.3858431],[4.53755602,0.04077983,98.38504988],[4.53755563,0.04077807,98.38425883],[4.53755524,0.04077631,98.38346969],[4.53755485,0.04077455,98.38268204],[4.53755446,0.04077279,98.38189546],[4.53755407,0.04077103,98.38110951],[4.53755368,0.04076926,98.38032378],[4.53755329,0.0407675,98.37953784],[4.5375529,0.04076574,98.37875126],[4.53755251,0.04076398,98.37796362],[4.53755212,0.04076223,98.37717449],[4.53755172,0.04076047,98.37638345],[4.53755133,0.04075871,98.37559005],[4.53755093,0.04075695,98.37479389],[4.53755054,0.04075519,98.37399452],[4.53755014,0.04075343,98.37319152],[4.53754974,0.04075167,98.37238445],[4.53754933,0.04074992,98.3715729],[4.53754893,0.04074816,98.37075641],[4.53754852,0.0407464,98.36993457],[4.53754811,0.04074465,98.36910697],[4.5375477,0.04074289,98.36827374],[4.53754729,0.04074114,98.3674356],[4.53754687,0.04073938,98.36659326],[4.53754645,0.04073763,98.36574744],[4.53754604,0.04073587,98.36489888],[4.53754562,0.04073412,98.3640483],[4.53754519,0.04073237,98.3631964],[4.53754477,0.04073061,98.36234391],[4.53754435,0.04072886,98.36149152],[4.53754393,0.04072711,98.36063993],[4.53754351,0.04072535,98.35978987],[4.53754309,0.0407236,98.35894203],[4.53754267,0.04072185,98.35809713],[4.53754225,0.04072009,98.35725587],[4.53754183,0.04071834,98.35641897],[4.53754142,0.04071659,98.35558714],[4.537541,0.04071483,98.35476109],[4.53754059,0.04071308,98.35394155],[4.53754018,0.04071132,98.35312921],[4.53753978,0.04070956,98.35232481],[4.53753937,0.04070781,98.35152905],[4.53753897,0.04070605,98.35074267],[4.53753857,0.04070429,98.34996637],[4.53753818,0.04070253,98.34920084],[4.53753779,0.04070077,98.34844612],[4.53753741,0.04069901,98.34770156],[4.53753702,0.04069725,98.3469665],[4.53753664,0.04069548,98.34624026],[4.53753626,0.04069372,98.34552219],[4.53753589,0.04069196,98.34481161],[4.53753552,0.04069019,98.34410785],[4.53753515,0.04068843,98.34341024],[4.53753478,0.04068666,98.34271811],[4.53753441,0.0406849,98.34203079],[4.53753404,0.04068313,98.3413476],[4.53753368,0.04068137,98.34066786],[4.53753331,0.0406796,98.33999091],[4.53753295,0.04067783,98.33931605],[4.53753258,0.04067607,98.33864263],[4.53753222,0.0406743,98.33796995],[4.53753185,0.04067254,98.33729734],[4.53753149,0.04067077,98.33662412],[4.53753112,0.040669,98.3359496],[4.53753075,0.04066724,98.3352731],[4.53753039,0.04066547,98.33459396],[4.53753002,0.04066371,98.33391189],[4.53752964,0.04066194,98.33322696],[4.53752927,0.04066018,98.33253929],[4.5375289,0.04065842,98.33184896],[4.53752852,0.04065665,98.33115608],[4.53752815,0.04065489,98.33046075],[4.53752777,0.04065313,98.32976307],[4.53752739,0.04065136,98.32906314],[4.53752701,0.0406496,98.32836106],[4.53752663,0.04064784,98.32765692],[4.53752625,0.04064607,98.32695083],[4.53752586,0.04064431,98.32624289],[4.53752548,0.04064255,98.32553321],[4.5375251,0.04064079,98.32482187],[4.53752471,0.04063903,98.32410898],[4.53752432,0.04063727,98.32339465],[4.53752394,0.04063551,98.32267895],[4.53752355,0.04063374,98.32196198],[4.53752316,0.04063198,98.32124384],[4.53752277,0.04063022,98.32052461],[4.53752238,0.04062846,98.31980438],[4.53752199,0.0406267,98.31908324],[4.5375216,0.04062494,98.31836128],[4.5375212,0.04062318,98.31763859],[4.53752081,0.04062142,98.31691526],[4.53752042,0.04061966,98.31619138],[4.53752002,0.0406179,98.31546703],[4.53751963,0.04061614,98.31474232],[4.53751924,0.04061438,98.31401732],[4.53751884,0.04061263,98.31329213],[4.53751844,0.04061087,98.31256685],[4.53751805,0.04060911,98.31184155],[4.53751765,0.04060735,98.31111634],[4.53751726,0.04060559,98.3103913],[4.53751686,0.04060383,98.30966652],[4.53751646,0.04060207,98.3089421],[4.53751607,0.04060031,98.30821812],[4.53751567,0.04059855,98.30749468],[4.53751527,0.04059679,98.30677188],[4.53751488,0.04059503,98.30604979],[4.53751448,0.04059328,98.30532852],[4.53751408,0.04059152,98.30460815],[4.53751368,0.04058976,98.30388878],[4.53751329,0.040588,98.30317049],[4.53751289,0.04058624,98.30245328],[4.53751249,0.04058448,98.30173715],[4.5375121,0.04058272,98.30102211],[4.5375117,0.04058096,98.30030813],[4.5375113,0.0405792,98.29959523],[4.53751091,0.04057744,98.2988834],[4.53751051,0.04057569,98.29817263],[4.53751011,0.04057393,98.29746292],[4.53750972,0.04057217,98.29675427],[4.53750932,0.04057041,98.29604667],[4.53750892,0.04056865,98.29534011],[4.53750853,0.04056689,98.29463461],[4.53750813,0.04056513,98.29393014],[4.53750774,0.04056337,98.29322672],[4.53750734,0.04056161,98.29252433],[4.53750694,0.04055985,98.29182296],[4.53750655,0.04055809,98.29112263],[4.53750615,0.04055633,98.29042331],[4.53750576,0.04055458,98.28972502],[4.53750536,0.04055282,98.28902774],[4.53750496,0.04055106,98.28833147],[4.53750457,0.0405493,98.28763621],[4.53750417,0.04054754,98.28694195],[4.53750378,0.04054578,98.2862487],[4.53750338,0.04054402,98.28555644],[4.53750299,0.04054226,98.28486517],[4.53750259,0.0405405,98.28417489],[4.53750219,0.04053874,98.28348559],[4.5375018,0.04053698,98.28279727],[4.5375014,0.04053522,98.28210993],[4.53750101,0.04053346,98.28142354],[4.53750061,0.0405317,98.28073809],[4.53750022,0.04052994,98.28005357],[4.53749982,0.04052819,98.27936997],[4.53749943,0.04052643,98.27868726],[4.53749903,0.04052467,98.27800544],[4.53749863,0.04052291,98.27732449],[4.53749824,0.04052115,98.27664439],[4.53749784,0.04051939,98.27596513],[4.53749745,0.04051763,98.2752867],[4.53749705,0.04051587,98.27460908],[4.53749666,0.04051411,98.27393225],[4.53749626,0.04051235,98.27325621],[4.53749586,0.04051059,98.27258093],[4.53749547,0.04050883,98.2719064],[4.53749507,0.04050707,98.27123262],[4.53749468,0.04050531,98.27055955],[4.53749428,0.04050355,98.26988719],[4.53749388,0.04050179,98.26921552],[4.53749349,0.04050004,98.26854453],[4.53749309,0.04049828,98.2678742],[4.53749269,0.04049652,98.26720452],[4.5374923,0.04049476,98.26653547],[4.5374919,0.040493,98.26586704],[4.5374915,0.04049124,98.2651992],[4.53749111,0.04048948,98.26453196],[4.53749071,0.04048772,98.26386529],[4.53749031,0.04048596,98.26319917],[4.53748992,0.0404842,98.2625336],[4.53748952,0.04048244,98.26186855],[4.53748912,0.04048068,98.26120401],[4.53748872,0.04047893,98.26053995],[4.53748833,0.04047717,98.25987633],[4.53748793,0.04047541,98.2592131],[4.53748753,0.04047365,98.25855023],[4.53748713,0.04047189,98.25788766],[4.53748673,0.04047013,98.25722537],[4.53748633,0.04046837,98.25656334],[4.53748593,0.04046661,98.25590157],[4.53748553,0.04046486,98.25524011],[4.53748513,0.0404631,98.25457902],[4.53748473,0.04046134,98.25391836],[4.53748433,0.04045958,98.25325819],[4.53748393,0.04045782,98.25259858],[4.53748353,0.04045606,98.25193958],[4.53748313,0.0404543,98.25128126],[4.53748273,0.04045255,98.25062368],[4.53748233,0.04045079,98.24996691],[4.53748193,0.04044903,98.24931101],[4.53748153,0.04044727,98.24865603],[4.53748113,0.04044551,98.24800204],[4.53748073,0.04044375,98.24734911],[4.53748033,0.04044199,98.2466973],[4.53747993,0.04044023,98.24604666],[4.53747953,0.04043848,98.24539727],[4.53747913,0.04043672,98.24474919],[4.53747873,0.04043496,98.24410247],[4.53747833,0.0404332,98.24345719],[4.53747793,0.04043144,98.24281341],[4.53747753,0.04042968,98.24217119],[4.53747713,0.04042792,98.24153059],[4.53747673,0.04042616,98.24089168],[4.53747633,0.04042441,98.24025452],[4.53747593,0.04042265,98.23961918],[4.53747554,0.04042089,98.23898572],[4.53747514,0.04041913,98.23835421],[4.53747474,0.04041737,98.2377247],[4.53747434,0.04041561,98.23709727],[4.53747395,0.04041385,98.23647198],[4.53747355,0.04041209,98.23584889],[4.53747316,0.04041033,98.23522807],[4.53747276,0.04040857,98.23460958],[4.53747237,0.04040681,98.23399349],[4.53747197,0.04040505,98.23337986],[4.53747158,0.04040329,98.23276876],[4.53747118,0.04040153,98.23216025],[4.53747079,0.04039977,98.23155441],[4.5374704,0.04039801,98.23095129],[4.53747001,0.04039625,98.23035096],[4.53746962,0.04039449,98.22975348],[4.53746923,0.04039273,98.22915893],[4.53746884,0.04039097,98.22856734],[4.53746845,0.04038921,98.22797861],[4.53746806,0.04038745,98.22739265],[4.53746767,0.04038569,98.22680932],[4.53746729,0.04038393,98.22622852],[4.5374669,0.04038216,98.22565012],[4.53746651,0.0403804,98.22507402],[4.53746613,0.04037864,98.22450009],[4.53746574,0.04037688,98.22392822],[4.53746536,0.04037512,98.22335829],[4.53746497,0.04037336,98.22279018],[4.53746459,0.04037159,98.22222377],[4.5374642,0.04036983,98.22165896],[4.53746382,0.04036807,98.22109561],[4.53746344,0.04036631,98.22053362],[4.53746305,0.04036455,98.21997286],[4.53746267,0.04036278,98.21941321],[4.53746228,0.04036102,98.21885456],[4.5374619,0.04035926,98.21829679],[4.53746151,0.0403575,98.21773978],[4.53746113,0.04035574,98.21718342],[4.53746075,0.04035397,98.21662759],[4.53746036,0.04035221,98.21607218],[4.53745998,0.04035045,98.21551705],[4.53745959,0.04034869,98.2149621],[4.5374592,0.04034693,98.2144072],[4.53745882,0.04034517,98.21385223],[4.53745843,0.04034341,98.21329706],[4.53745804,0.04034164,98.21274158],[4.53745766,0.04033988,98.21218567],[4.53745727,0.04033812,98.21162919],[4.53745688,0.04033636,98.21107203],[4.53745649,0.0403346,98.21051406],[4.5374561,0.04033284,98.20995517],[4.53745571,0.04033108,98.20939523],[4.53745532,0.04032932,98.20883412],[4.53745493,0.04032756,98.2082717],[4.53745453,0.0403258,98.20770788],[4.53745414,0.04032404,98.20714269],[4.53745374,0.04032228,98.20657637],[4.53745335,0.04032052,98.20600915],[4.53745295,0.04031876,98.20544125],[4.53745256,0.040317,98.20487291],[4.53745216,0.04031524,98.20430437],[4.53745176,0.04031349,98.20373585],[4.53745136,0.04031173,98.20316758],[4.53745097,0.04030997,98.20259982],[4.53745057,0.04030821,98.20203277],[4.53745017,0.04030645,98.20146669],[4.53744977,0.04030469,98.20090181],[4.53744937,0.04030293,98.20033836],[4.53744898,0.04030118,98.19977657],[4.53744858,0.04029942,98.19921669],[4.53744818,0.04029766,98.19865894],[4.53744779,0.0402959,98.19810357],[4.53744739,0.04029414,98.19755082],[4.53744699,0.04029238,98.19700091],[4.5374466,0.04029062,98.1964541],[4.5374462,0.04028886,98.19591061],[4.53744581,0.0402871,98.19537069],[4.53744542,0.04028534,98.19483457],[4.53744503,0.04028358,98.19430249],[4.53744464,0.04028182,98.1937747],[4.53744425,0.04028006,98.19325144],[4.53744386,0.0402783,98.19273292],[4.53744347,0.04027654,98.19221911],[4.53744309,0.04027478,98.1917097],[4.5374427,0.04027302,98.19120437],[4.53744232,0.04027126,98.19070278],[4.53744194,0.04026949,98.19020462],[4.53744155,0.04026773,98.18970956],[4.53744117,0.04026597,98.18921727],[4.53744079,0.04026421,98.18872743],[4.53744041,0.04026244,98.18823971],[4.53744003,0.04026068,98.18775378],[4.53743965,0.04025892,98.18726932],[4.53743927,0.04025716,98.186786],[4.53743889,0.0402554,98.18630349],[4.5374385,0.04025363,98.18582146],[4.53743812,0.04025187,98.18533958],[4.53743774,0.04025011,98.18485751],[4.53743736,0.04024835,98.18437494],[4.53743698,0.04024659,98.18389153],[4.53743659,0.04024482,98.18340694],[4.53743621,0.04024306,98.18292084],[4.53743582,0.0402413,98.18243291],[4.53743543,0.04023954,98.1819428],[4.53743505,0.04023778,98.18145019],[4.53743466,0.04023602,98.18095481],[4.53743427,0.04023426,98.18045669],[4.53743387,0.0402325,98.17995593],[4.53743348,0.04023074,98.17945263],[4.53743309,0.04022898,98.17894688],[4.53743269,0.04022722,98.17843879],[4.53743229,0.04022546,98.17792847],[4.53743189,0.04022371,98.17741601],[4.5374315,0.04022195,98.17690153],[4.5374311,0.04022019,98.17638511],[4.53743069,0.04021843,98.17586687],[4.53743029,0.04021667,98.17534691],[4.53742989,0.04021492,98.17482534],[4.53742949,0.04021316,98.17430225],[4.53742908,0.0402114,98.17377776],[4.53742868,0.04020965,98.17325196],[4.53742827,0.04020789,98.17272496],[4.53742786,0.04020613,98.17219687],[4.53742745,0.04020438,98.1716678],[4.53742705,0.04020262,98.17113783],[4.53742664,0.04020087,98.17060709],[4.53742625,0.04019919,98.17009974],[4.53745792,0.04019199,98.26618392],[4.5374583,0.04019367,98.26660989],[4.53745869,0.04019543,98.26705731],[4.53745908,0.04019719,98.26750601],[4.53745948,0.04019895,98.26795598],[4.53745987,0.04020071,98.26840721],[4.53746026,0.04020247,98.26885971],[4.53746066,0.04020423,98.26931347],[4.53746105,0.04020598,98.26976847],[4.53746144,0.04020774,98.27022473],[4.53746184,0.0402095,98.27068222],[4.53746223,0.04021126,98.27114096],[4.53746262,0.04021302,98.27160092],[4.53746302,0.04021478,98.27206211],[4.53746341,0.04021654,98.27252453],[4.5374638,0.0402183,98.27298816],[4.5374642,0.04022006,98.27345301],[4.53746459,0.04022182,98.27391907],[4.53746499,0.04022358,98.27438633],[4.53746538,0.04022534,98.27485478],[4.53746577,0.0402271,98.27532444],[4.53746617,0.04022886,98.27579529],[4.53746656,0.04023062,98.27626733],[4.53746695,0.04023238,98.27674056],[4.53746735,0.04023414,98.27721498],[4.53746774,0.0402359,98.27769059],[4.53746814,0.04023766,98.27816739],[4.53746853,0.04023942,98.27864538],[4.53746892,0.04024118,98.27912454],[4.53746932,0.04024294,98.27960489],[4.53746971,0.0402447,98.28008642],[4.53747011,0.04024646,98.28056913],[4.5374705,0.04024822,98.28105302],[4.53747089,0.04024998,98.28153808],[4.53747129,0.04025174,98.28202432],[4.53747168,0.0402535,98.28251173],[4.53747208,0.04025526,98.28300031],[4.53747247,0.04025702,98.28349006],[4.53747286,0.04025878,98.28398098],[4.53747326,0.04026053,98.28447306],[4.53747365,0.04026229,98.28496631],[4.53747405,0.04026405,98.28546072],[4.53747444,0.04026581,98.2859563],[4.53747484,0.04026757,98.28645303],[4.53747523,0.04026933,98.28695093],[4.53747562,0.04027109,98.28744998],[4.53747602,0.04027285,98.28795019],[4.53747641,0.04027461,98.28845155],[4.53747681,0.04027637,98.28895406],[4.5374772,0.04027813,98.28945773],[4.5374776,0.04027989,98.28996254],[4.53747799,0.04028165,98.29046851],[4.53747839,0.04028341,98.29097561],[4.53747878,0.04028517,98.29148387],[4.53747918,0.04028693,98.29199326],[4.53747957,0.04028869,98.2925038],[4.53747996,0.04029045,98.29301548],[4.53748036,0.04029221,98.2935283],[4.53748075,0.04029397,98.29404226],[4.53748115,0.04029573,98.29455735],[4.53748154,0.04029749,98.29507357],[4.53748194,0.04029925,98.29559093],[4.53748233,0.04030101,98.29610942],[4.53748273,0.04030276,98.29662903],[4.53748312,0.04030452,98.29714978],[4.53748352,0.04030628,98.29767165],[4.53748391,0.04030804,98.29819465],[4.53748431,0.0403098,98.29871877],[4.5374847,0.04031156,98.29924401],[4.5374851,0.04031332,98.29977037],[4.53748549,0.04031508,98.30029786],[4.53748589,0.04031684,98.30082645],[4.53748628,0.0403186,98.30135617],[4.53748668,0.04032036,98.301887],[4.53748707,0.04032212,98.30241894],[4.53748747,0.04032388,98.30295199],[4.53748786,0.04032564,98.30348616],[4.53748826,0.0403274,98.30402143],[4.53748865,0.04032916,98.3045578],[4.53748905,0.04033092,98.30509529],[4.53748944,0.04033268,98.30563387],[4.53748984,0.04033444,98.30617356],[4.53749023,0.0403362,98.30671435],[4.53749063,0.04033795,98.30725624],[4.53749102,0.04033971,98.30779922],[4.53749142,0.04034147,98.30834331],[4.53749181,0.04034323,98.30888848],[4.53749221,0.04034499,98.30943475],[4.5374926,0.04034675,98.30998211],[4.537493,0.04034851,98.31053057],[4.5374934,0.04035027,98.31108011],[4.53749379,0.04035203,98.31163073],[4.53749419,0.04035379,98.31218243],[4.53749458,0.04035555,98.31273519],[4.53749498,0.04035731,98.31328902],[4.53749537,0.04035907,98.31384392],[4.53749577,0.04036083,98.31439987],[4.53749616,0.04036259,98.31495688],[4.53749656,0.04036435,98.31551494],[4.53749696,0.04036611,98.31607406],[4.53749735,0.04036787,98.31663423],[4.53749775,0.04036962,98.31719544],[4.53749814,0.04037138,98.31775771],[4.53749854,0.04037314,98.31832101],[4.53749893,0.0403749,98.31888536],[4.53749933,0.04037666,98.31945074],[4.53749972,0.04037842,98.32001716],[4.53750012,0.04038018,98.32058462],[4.53750052,0.04038194,98.3211531],[4.53750091,0.0403837,98.32172262],[4.53750131,0.04038546,98.32229316],[4.5375017,0.04038722,98.32286473],[4.5375021,0.04038898,98.32343732],[4.53750249,0.04039074,98.32401093],[4.53750289,0.0403925,98.32458556],[4.53750329,0.04039426,98.3251612],[4.53750368,0.04039602,98.32573786],[4.53750408,0.04039778,98.32631553],[4.53750447,0.04039953,98.3268942],[4.53750487,0.04040129,98.32747389],[4.53750526,0.04040305,98.32805457],[4.53750566,0.04040481,98.32863626],[4.53750606,0.04040657,98.32921895],[4.53750645,0.04040833,98.32980263],[4.53750685,0.04041009,98.33038731],[4.53750724,0.04041185,98.33097298],[4.53750764,0.04041361,98.33155965],[4.53750803,0.04041537,98.3321473],[4.53750843,0.04041713,98.33273593],[4.53750883,0.04041889,98.33332555],[4.53750922,0.04042065,98.33391615],[4.53750962,0.04042241,98.33450773],[4.53751001,0.04042417,98.33510029],[4.53751041,0.04042593,98.33569382],[4.5375108,0.04042769,98.33628832],[4.5375112,0.04042945,98.33688379],[4.5375116,0.0404312,98.33748023],[4.53751199,0.04043296,98.33807764],[4.53751239,0.04043473,98.33867601],[4.53751278,0.04043649,98.33927533],[4.53751318,0.04043824,98.33987562],[4.53751358,0.04044,98.34047687],[4.53751397,0.04044176,98.34107907],[4.53751437,0.04044352,98.34168222],[4.53751476,0.04044528,98.34228632],[4.53751516,0.04044704,98.34289137],[4.53751555,0.0404488,98.34349736],[4.53751595,0.04045056,98.3441043],[4.53751635,0.04045232,98.34471217],[4.53751674,0.04045408,98.34532099],[4.53751714,0.04045584,98.34593074],[4.53751753,0.0404576,98.34654143],[4.53751793,0.04045936,98.34715305],[4.53751832,0.04046112,98.3477656],[4.53751872,0.04046288,98.34837908],[4.53751912,0.04046464,98.34899348],[4.53751951,0.0404664,98.3496088],[4.53751991,0.04046816,98.35022506],[4.5375203,0.04046991,98.35084227],[4.5375207,0.04047167,98.35146045],[4.53752109,0.04047343,98.35207964],[4.53752149,0.04047519,98.35269985],[4.53752188,0.04047695,98.35332109],[4.53752228,0.04047871,98.35394337],[4.53752268,0.04048047,98.35456667],[4.53752307,0.04048223,98.35519099],[4.53752347,0.04048399,98.35581633],[4.53752386,0.04048575,98.35644268],[4.53752426,0.04048751,98.35707003],[4.53752465,0.04048927,98.3576984],[4.53752505,0.04049103,98.35832776],[4.53752545,0.04049279,98.35895811],[4.53752584,0.04049455,98.35958946],[4.53752624,0.04049631,98.36022179],[4.53752663,0.04049807,98.36085511],[4.53752703,0.04049982,98.3614894],[4.53752743,0.04050158,98.36212467],[4.53752782,0.04050334,98.3627609],[4.53752822,0.0405051,98.3633981],[4.53752861,0.04050686,98.36403626],[4.53752901,0.04050862,98.36467537],[4.53752941,0.04051038,98.36531544],[4.5375298,0.04051214,98.36595645],[4.5375302,0.0405139,98.36659841],[4.53753059,0.04051566,98.3672413],[4.53753099,0.04051742,98.36788513],[4.53753138,0.04051918,98.36852989],[4.53753178,0.04052094,98.36917558],[4.53753218,0.0405227,98.36982219],[4.53753257,0.04052446,98.37046971],[4.53753297,0.04052621,98.37111815],[4.53753336,0.04052797,98.37176749],[4.53753376,0.04052973,98.37241774],[4.53753415,0.04053149,98.37306889],[4.53753455,0.04053325,98.37372094],[4.53753495,0.04053501,98.37437388],[4.53753534,0.04053677,98.37502771],[4.53753574,0.04053853,98.37568242],[4.53753613,0.04054029,98.376338],[4.53753653,0.04054205,98.37699447],[4.53753692,0.04054381,98.3776518],[4.53753732,0.04054557,98.37831],[4.53753771,0.04054733,98.37896907],[4.53753811,0.04054909,98.37962899],[4.53753851,0.04055085,98.38028977],[4.5375389,0.04055261,98.38095139],[4.5375393,0.04055437,98.38161386],[4.53753969,0.04055612,98.38227718],[4.53754009,0.04055788,98.38294133],[4.53754048,0.04055964,98.38360631],[4.53754088,0.0405614,98.38427213],[4.53754127,0.04056316,98.38493876],[4.53754167,0.04056492,98.38560622],[4.53754206,0.04056668,98.3862745],[4.53754246,0.04056844,98.38694359],[4.53754285,0.0405702,98.38761349],[4.53754325,0.04057196,98.38828419],[4.53754364,0.04057372,98.38895569],[4.53754404,0.04057548,98.38962799],[4.53754443,0.04057724,98.39030108],[4.53754483,0.040579,98.39097496],[4.53754522,0.04058076,98.39164963],[4.53754562,0.04058252,98.39232507],[4.53754601,0.04058428,98.39300129],[4.5375464,0.04058604,98.39367828],[4.5375468,0.0405878,98.39435604],[4.53754719,0.04058956,98.39503457],[4.53754759,0.04059132,98.39571385],[4.53754798,0.04059308,98.39639389],[4.53754837,0.04059484,98.39707468],[4.53754877,0.0405966,98.39775622],[4.53754916,0.04059836,98.3984385],[4.53754956,0.04060011,98.39912152],[4.53754995,0.04060187,98.39980528],[4.53755034,0.04060363,98.40048977],[4.53755074,0.04060539,98.40117499],[4.53755113,0.04060715,98.40186093],[4.53755152,0.04060891,98.40254759],[4.53755192,0.04061067,98.40323496],[4.53755231,0.04061243,98.40392305],[4.5375527,0.04061419,98.40461185],[4.5375531,0.04061595,98.40530135],[4.53755349,0.04061771,98.40599154],[4.53755388,0.04061947,98.40668244],[4.53755428,0.04062123,98.40737403],[4.53755467,0.04062299,98.4080663],[4.53755506,0.04062475,98.40875926],[4.53755545,0.04062651,98.4094529],[4.53755585,0.04062827,98.41014721],[4.53755624,0.04063003,98.4108422],[4.53755663,0.04063179,98.41153785],[4.53755702,0.04063355,98.41223416],[4.53755741,0.04063531,98.41293115],[4.53755781,0.04063707,98.41362882],[4.5375582,0.04063883,98.41432719],[4.53755859,0.04064059,98.41502626],[4.53755898,0.04064236,98.41572606],[4.53755937,0.04064412,98.41642659],[4.53755976,0.04064588,98.41712786],[4.53756016,0.04064764,98.41782989],[4.53756055,0.0406494,98.41853269],[4.53756094,0.04065116,98.41923627],[4.53756133,0.04065292,98.41994064],[4.53756172,0.04065468,98.42064581],[4.53756211,0.04065644,98.4213518],[4.5375625,0.0406582,98.42205862],[4.53756289,0.04065996,98.42276627],[4.53756328,0.04066172,98.42347478],[4.53756368,0.04066348,98.42418415],[4.53756407,0.04066524,98.42489439],[4.53756446,0.040667,98.42560552],[4.53756485,0.04066876,98.42631754],[4.53756524,0.04067052,98.42703047],[4.53756563,0.04067228,98.42774433],[4.53756602,0.04067404,98.42845911],[4.53756641,0.0406758,98.42917484],[4.5375668,0.04067756,98.42989153],[4.53756719,0.04067932,98.43060918],[4.53756758,0.04068108,98.4313278],[4.53756797,0.04068284,98.43204742],[4.53756837,0.0406846,98.43276804],[4.53756876,0.04068636,98.43348967],[4.53756915,0.04068812,98.43421233],[4.53756954,0.04068988,98.43493602],[4.53756993,0.04069164,98.43566076],[4.53757032,0.04069341,98.43638655],[4.53757071,0.04069517,98.43711341],[4.5375711,0.04069693,98.43784136],[4.53757149,0.04069869,98.4385704],[4.53757189,0.04070045,98.43930054],[4.53757228,0.04070221,98.44003179],[4.53757267,0.04070397,98.44076418],[4.53757306,0.04070573,98.44149769],[4.53757345,0.04070749,98.44223236],[4.53757384,0.04070925,98.44296819],[4.53757423,0.04071101,98.44370519],[4.53757463,0.04071277,98.44444337],[4.53757502,0.04071453,98.44518274],[4.53757541,0.04071629,98.44592332],[4.5375758,0.04071805,98.44666511],[4.53757619,0.04071981,98.44740813],[4.53757659,0.04072157,98.44815239],[4.53757698,0.04072333,98.4488979],[4.53757737,0.04072509,98.44964467],[4.53757776,0.04072685,98.45039271],[4.53757816,0.04072861,98.45114203],[4.53757855,0.04073037,98.45189263],[4.53757894,0.04073213,98.45264451],[4.53757934,0.04073389,98.45339764],[4.53757973,0.04073565,98.45415202],[4.53758012,0.04073741,98.45490764],[4.53758052,0.04073917,98.45566448],[4.53758091,0.04074093,98.45642253],[4.5375813,0.04074269,98.45718179],[4.5375817,0.04074445,98.45794223],[4.53758209,0.04074621,98.45870386],[4.53758249,0.04074796,98.45946665],[4.53758288,0.04074972,98.4602306],[4.53758327,0.04075148,98.46099569],[4.53758367,0.04075324,98.46176191],[4.53758406,0.040755,98.46252926],[4.53758446,0.04075676,98.46329772],[4.53758485,0.04075852,98.46406727],[4.53758525,0.04076028,98.46483791],[4.53758564,0.04076204,98.46560963],[4.53758604,0.0407638,98.46638242],[4.53758643,0.04076556,98.46715626],[4.53758683,0.04076732,98.46793114],[4.53758722,0.04076908,98.46870705],[4.53758762,0.04077084,98.46948398],[4.53758801,0.0407726,98.47026192],[4.53758841,0.04077436,98.47104086],[4.5375888,0.04077612,98.47182079],[4.5375892,0.04077788,98.47260169],[4.53758959,0.04077964,98.47338355],[4.53758999,0.04078139,98.47416637],[4.53759038,0.04078315,98.47495013],[4.53759078,0.04078491,98.47573482],[4.53759117,0.04078667,98.47652043],[4.53759157,0.04078843,98.47730694],[4.53759196,0.04079019,98.47809436],[4.53759236,0.04079195,98.47888266],[4.53759275,0.04079371,98.47967184],[4.53759314,0.04079547,98.48046188],[4.53759354,0.04079723,98.48125278],[4.53759393,0.04079899,98.48204453],[4.53759433,0.04080075,98.48283713],[4.53759472,0.04080251,98.48363057],[4.53759512,0.04080427,98.48442483],[4.53759551,0.04080603,98.48521992],[4.53759591,0.04080779,98.48601583],[4.5375963,0.04080954,98.48681255],[4.5375967,0.0408113,98.48761007],[4.53759709,0.04081306,98.48840839],[4.53759749,0.04081482,98.4892075],[4.53759788,0.04081658,98.49000739],[4.53759828,0.04081834,98.49080806],[4.53759867,0.0408201,98.4916095],[4.53759906,0.04082186,98.4924117],[4.53759946,0.04082362,98.49321466],[4.53759985,0.04082538,98.49401837],[4.53760025,0.04082714,98.49482282],[4.53760064,0.0408289,98.495628],[4.53760104,0.04083066,98.49643392],[4.53760143,0.04083242,98.49724055],[4.53760182,0.04083418,98.49804791],[4.53760222,0.04083594,98.49885597],[4.53760261,0.0408377,98.49966473],[4.537603,0.04083946,98.50047419],[4.5376034,0.04084122,98.50128433],[4.53757043,0.04084865,98.41440462]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1003400","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2,"sOffset":46.9458860069}},{"geometry":{"coordinates":[[[4.5376034,0.04084122,98.50128433],[4.537603,0.04083946,98.50047419],[4.53760261,0.0408377,98.49966473],[4.53760222,0.04083594,98.49885597],[4.53760182,0.04083418,98.49804791],[4.53760143,0.04083242,98.49724055],[4.53760104,0.04083066,98.49643392],[4.53760064,0.0408289,98.495628],[4.53760025,0.04082714,98.49482282],[4.53759985,0.04082538,98.49401837],[4.53759946,0.04082362,98.49321466],[4.53759906,0.04082186,98.4924117],[4.53759867,0.0408201,98.4916095],[4.53759828,0.04081834,98.49080806],[4.53759788,0.04081658,98.49000739],[4.53759749,0.04081482,98.4892075],[4.53759709,0.04081306,98.48840839],[4.5375967,0.0408113,98.48761007],[4.5375963,0.04080954,98.48681255],[4.53759591,0.04080779,98.48601583],[4.53759551,0.04080603,98.48521992],[4.53759512,0.04080427,98.48442483],[4.53759472,0.04080251,98.48363057],[4.53759433,0.04080075,98.48283713],[4.53759393,0.04079899,98.48204453],[4.53759354,0.04079723,98.48125278],[4.53759314,0.04079547,98.48046188],[4.53759275,0.04079371,98.47967184],[4.53759236,0.04079195,98.47888266],[4.53759196,0.04079019,98.47809436],[4.53759157,0.04078843,98.47730694],[4.53759117,0.04078667,98.47652043],[4.53759078,0.04078491,98.47573482],[4.53759038,0.04078315,98.47495013],[4.53758999,0.04078139,98.47416637],[4.53758959,0.04077964,98.47338355],[4.5375892,0.04077788,98.47260169],[4.5375888,0.04077612,98.47182079],[4.53758841,0.04077436,98.47104086],[4.53758801,0.0407726,98.47026192],[4.53758762,0.04077084,98.46948398],[4.53758722,0.04076908,98.46870705],[4.53758683,0.04076732,98.46793114],[4.53758643,0.04076556,98.46715626],[4.53758604,0.0407638,98.46638242],[4.53758564,0.04076204,98.46560963],[4.53758525,0.04076028,98.46483791],[4.53758485,0.04075852,98.46406727],[4.53758446,0.04075676,98.46329772],[4.53758406,0.040755,98.46252926],[4.53758367,0.04075324,98.46176191],[4.53758327,0.04075148,98.46099569],[4.53758288,0.04074972,98.4602306],[4.53758249,0.04074796,98.45946665],[4.53758209,0.04074621,98.45870386],[4.5375817,0.04074445,98.45794223],[4.5375813,0.04074269,98.45718179],[4.53758091,0.04074093,98.45642253],[4.53758052,0.04073917,98.45566448],[4.53758012,0.04073741,98.45490764],[4.53757973,0.04073565,98.45415202],[4.53757934,0.04073389,98.45339764],[4.53757894,0.04073213,98.45264451],[4.53757855,0.04073037,98.45189263],[4.53757816,0.04072861,98.45114203],[4.53757776,0.04072685,98.45039271],[4.53757737,0.04072509,98.44964467],[4.53757698,0.04072333,98.4488979],[4.53757659,0.04072157,98.44815239],[4.53757619,0.04071981,98.44740813],[4.5375758,0.04071805,98.44666511],[4.53757541,0.04071629,98.44592332],[4.53757502,0.04071453,98.44518274],[4.53757463,0.04071277,98.44444337],[4.53757423,0.04071101,98.44370519],[4.53757384,0.04070925,98.44296819],[4.53757345,0.04070749,98.44223236],[4.53757306,0.04070573,98.44149769],[4.53757267,0.04070397,98.44076418],[4.53757228,0.04070221,98.44003179],[4.53757189,0.04070045,98.43930054],[4.53757149,0.04069869,98.4385704],[4.5375711,0.04069693,98.43784136],[4.53757071,0.04069517,98.43711341],[4.53757032,0.04069341,98.43638655],[4.53756993,0.04069164,98.43566076],[4.53756954,0.04068988,98.43493602],[4.53756915,0.04068812,98.43421233],[4.53756876,0.04068636,98.43348967],[4.53756837,0.0406846,98.43276804],[4.53756797,0.04068284,98.43204742],[4.53756758,0.04068108,98.4313278],[4.53756719,0.04067932,98.43060918],[4.5375668,0.04067756,98.42989153],[4.53756641,0.0406758,98.42917484],[4.53756602,0.04067404,98.42845911],[4.53756563,0.04067228,98.42774433],[4.53756524,0.04067052,98.42703047],[4.53756485,0.04066876,98.42631754],[4.53756446,0.040667,98.42560552],[4.53756407,0.04066524,98.42489439],[4.53756368,0.04066348,98.42418415],[4.53756328,0.04066172,98.42347478],[4.53756289,0.04065996,98.42276627],[4.5375625,0.0406582,98.42205862],[4.53756211,0.04065644,98.4213518],[4.53756172,0.04065468,98.42064581],[4.53756133,0.04065292,98.41994064],[4.53756094,0.04065116,98.41923627],[4.53756055,0.0406494,98.41853269],[4.53756016,0.04064764,98.41782989],[4.53755976,0.04064588,98.41712786],[4.53755937,0.04064412,98.41642659],[4.53755898,0.04064236,98.41572606],[4.53755859,0.04064059,98.41502626],[4.5375582,0.04063883,98.41432719],[4.53755781,0.04063707,98.41362882],[4.53755741,0.04063531,98.41293115],[4.53755702,0.04063355,98.41223416],[4.53755663,0.04063179,98.41153785],[4.53755624,0.04063003,98.4108422],[4.53755585,0.04062827,98.41014721],[4.53755545,0.04062651,98.4094529],[4.53755506,0.04062475,98.40875926],[4.53755467,0.04062299,98.4080663],[4.53755428,0.04062123,98.40737403],[4.53755388,0.04061947,98.40668244],[4.53755349,0.04061771,98.40599154],[4.5375531,0.04061595,98.40530135],[4.5375527,0.04061419,98.40461185],[4.53755231,0.04061243,98.40392305],[4.53755192,0.04061067,98.40323496],[4.53755152,0.04060891,98.40254759],[4.53755113,0.04060715,98.40186093],[4.53755074,0.04060539,98.40117499],[4.53755034,0.04060363,98.40048977],[4.53754995,0.04060187,98.39980528],[4.53754956,0.04060011,98.39912152],[4.53754916,0.04059836,98.3984385],[4.53754877,0.0405966,98.39775622],[4.53754837,0.04059484,98.39707468],[4.53754798,0.04059308,98.39639389],[4.53754759,0.04059132,98.39571385],[4.53754719,0.04058956,98.39503457],[4.5375468,0.0405878,98.39435604],[4.5375464,0.04058604,98.39367828],[4.53754601,0.04058428,98.39300129],[4.53754562,0.04058252,98.39232507],[4.53754522,0.04058076,98.39164963],[4.53754483,0.040579,98.39097496],[4.53754443,0.04057724,98.39030108],[4.53754404,0.04057548,98.38962799],[4.53754364,0.04057372,98.38895569],[4.53754325,0.04057196,98.38828419],[4.53754285,0.0405702,98.38761349],[4.53754246,0.04056844,98.38694359],[4.53754206,0.04056668,98.3862745],[4.53754167,0.04056492,98.38560622],[4.53754127,0.04056316,98.38493876],[4.53754088,0.0405614,98.38427213],[4.53754048,0.04055964,98.38360631],[4.53754009,0.04055788,98.38294133],[4.53753969,0.04055612,98.38227718],[4.5375393,0.04055437,98.38161386],[4.5375389,0.04055261,98.38095139],[4.53753851,0.04055085,98.38028977],[4.53753811,0.04054909,98.37962899],[4.53753771,0.04054733,98.37896907],[4.53753732,0.04054557,98.37831],[4.53753692,0.04054381,98.3776518],[4.53753653,0.04054205,98.37699447],[4.53753613,0.04054029,98.376338],[4.53753574,0.04053853,98.37568242],[4.53753534,0.04053677,98.37502771],[4.53753495,0.04053501,98.37437388],[4.53753455,0.04053325,98.37372094],[4.53753415,0.04053149,98.37306889],[4.53753376,0.04052973,98.37241774],[4.53753336,0.04052797,98.37176749],[4.53753297,0.04052621,98.37111815],[4.53753257,0.04052446,98.37046971],[4.53753218,0.0405227,98.36982219],[4.53753178,0.04052094,98.36917558],[4.53753138,0.04051918,98.36852989],[4.53753099,0.04051742,98.36788513],[4.53753059,0.04051566,98.3672413],[4.5375302,0.0405139,98.36659841],[4.5375298,0.04051214,98.36595645],[4.53752941,0.04051038,98.36531544],[4.53752901,0.04050862,98.36467537],[4.53752861,0.04050686,98.36403626],[4.53752822,0.0405051,98.3633981],[4.53752782,0.04050334,98.3627609],[4.53752743,0.04050158,98.36212467],[4.53752703,0.04049982,98.3614894],[4.53752663,0.04049807,98.36085511],[4.53752624,0.04049631,98.36022179],[4.53752584,0.04049455,98.35958946],[4.53752545,0.04049279,98.35895811],[4.53752505,0.04049103,98.35832776],[4.53752465,0.04048927,98.3576984],[4.53752426,0.04048751,98.35707003],[4.53752386,0.04048575,98.35644268],[4.53752347,0.04048399,98.35581633],[4.53752307,0.04048223,98.35519099],[4.53752268,0.04048047,98.35456667],[4.53752228,0.04047871,98.35394337],[4.53752188,0.04047695,98.35332109],[4.53752149,0.04047519,98.35269985],[4.53752109,0.04047343,98.35207964],[4.5375207,0.04047167,98.35146045],[4.5375203,0.04046991,98.35084227],[4.53751991,0.04046816,98.35022506],[4.53751951,0.0404664,98.3496088],[4.53751912,0.04046464,98.34899348],[4.53751872,0.04046288,98.34837908],[4.53751832,0.04046112,98.3477656],[4.53751793,0.04045936,98.34715305],[4.53751753,0.0404576,98.34654143],[4.53751714,0.04045584,98.34593074],[4.53751674,0.04045408,98.34532099],[4.53751635,0.04045232,98.34471217],[4.53751595,0.04045056,98.3441043],[4.53751555,0.0404488,98.34349736],[4.53751516,0.04044704,98.34289137],[4.53751476,0.04044528,98.34228632],[4.53751437,0.04044352,98.34168222],[4.53751397,0.04044176,98.34107907],[4.53751358,0.04044,98.34047687],[4.53751318,0.04043824,98.33987562],[4.53751278,0.04043649,98.33927533],[4.53751239,0.04043473,98.33867601],[4.53751199,0.04043296,98.33807764],[4.5375116,0.0404312,98.33748023],[4.5375112,0.04042945,98.33688379],[4.5375108,0.04042769,98.33628832],[4.53751041,0.04042593,98.33569382],[4.53751001,0.04042417,98.33510029],[4.53750962,0.04042241,98.33450773],[4.53750922,0.04042065,98.33391615],[4.53750883,0.04041889,98.33332555],[4.53750843,0.04041713,98.33273593],[4.53750803,0.04041537,98.3321473],[4.53750764,0.04041361,98.33155965],[4.53750724,0.04041185,98.33097298],[4.53750685,0.04041009,98.33038731],[4.53750645,0.04040833,98.32980263],[4.53750606,0.04040657,98.32921895],[4.53750566,0.04040481,98.32863626],[4.53750526,0.04040305,98.32805457],[4.53750487,0.04040129,98.32747389],[4.53750447,0.04039953,98.3268942],[4.53750408,0.04039778,98.32631553],[4.53750368,0.04039602,98.32573786],[4.53750329,0.04039426,98.3251612],[4.53750289,0.0403925,98.32458556],[4.53750249,0.04039074,98.32401093],[4.5375021,0.04038898,98.32343732],[4.5375017,0.04038722,98.32286473],[4.53750131,0.04038546,98.32229316],[4.53750091,0.0403837,98.32172262],[4.53750052,0.04038194,98.3211531],[4.53750012,0.04038018,98.32058462],[4.53749972,0.04037842,98.32001716],[4.53749933,0.04037666,98.31945074],[4.53749893,0.0403749,98.31888536],[4.53749854,0.04037314,98.31832101],[4.53749814,0.04037138,98.31775771],[4.53749775,0.04036962,98.31719544],[4.53749735,0.04036787,98.31663423],[4.53749696,0.04036611,98.31607406],[4.53749656,0.04036435,98.31551494],[4.53749616,0.04036259,98.31495688],[4.53749577,0.04036083,98.31439987],[4.53749537,0.04035907,98.31384392],[4.53749498,0.04035731,98.31328902],[4.53749458,0.04035555,98.31273519],[4.53749419,0.04035379,98.31218243],[4.53749379,0.04035203,98.31163073],[4.5374934,0.04035027,98.31108011],[4.537493,0.04034851,98.31053057],[4.5374926,0.04034675,98.30998211],[4.53749221,0.04034499,98.30943475],[4.53749181,0.04034323,98.30888848],[4.53749142,0.04034147,98.30834331],[4.53749102,0.04033971,98.30779922],[4.53749063,0.04033795,98.30725624],[4.53749023,0.0403362,98.30671435],[4.53748984,0.04033444,98.30617356],[4.53748944,0.04033268,98.30563387],[4.53748905,0.04033092,98.30509529],[4.53748865,0.04032916,98.3045578],[4.53748826,0.0403274,98.30402143],[4.53748786,0.04032564,98.30348616],[4.53748747,0.04032388,98.30295199],[4.53748707,0.04032212,98.30241894],[4.53748668,0.04032036,98.301887],[4.53748628,0.0403186,98.30135617],[4.53748589,0.04031684,98.30082645],[4.53748549,0.04031508,98.30029786],[4.5374851,0.04031332,98.29977037],[4.5374847,0.04031156,98.29924401],[4.53748431,0.0403098,98.29871877],[4.53748391,0.04030804,98.29819465],[4.53748352,0.04030628,98.29767165],[4.53748312,0.04030452,98.29714978],[4.53748273,0.04030276,98.29662903],[4.53748233,0.04030101,98.29610942],[4.53748194,0.04029925,98.29559093],[4.53748154,0.04029749,98.29507357],[4.53748115,0.04029573,98.29455735],[4.53748075,0.04029397,98.29404226],[4.53748036,0.04029221,98.2935283],[4.53747996,0.04029045,98.29301548],[4.53747957,0.04028869,98.2925038],[4.53747918,0.04028693,98.29199326],[4.53747878,0.04028517,98.29148387],[4.53747839,0.04028341,98.29097561],[4.53747799,0.04028165,98.29046851],[4.5374776,0.04027989,98.28996254],[4.5374772,0.04027813,98.28945773],[4.53747681,0.04027637,98.28895406],[4.53747641,0.04027461,98.28845155],[4.53747602,0.04027285,98.28795019],[4.53747562,0.04027109,98.28744998],[4.53747523,0.04026933,98.28695093],[4.53747484,0.04026757,98.28645303],[4.53747444,0.04026581,98.2859563],[4.53747405,0.04026405,98.28546072],[4.53747365,0.04026229,98.28496631],[4.53747326,0.04026053,98.28447306],[4.53747286,0.04025878,98.28398098],[4.53747247,0.04025702,98.28349006],[4.53747208,0.04025526,98.28300031],[4.53747168,0.0402535,98.28251173],[4.53747129,0.04025174,98.28202432],[4.53747089,0.04024998,98.28153808],[4.5374705,0.04024822,98.28105302],[4.53747011,0.04024646,98.28056913],[4.53746971,0.0402447,98.28008642],[4.53746932,0.04024294,98.27960489],[4.53746892,0.04024118,98.27912454],[4.53746853,0.04023942,98.27864538],[4.53746814,0.04023766,98.27816739],[4.53746774,0.0402359,98.27769059],[4.53746735,0.04023414,98.27721498],[4.53746695,0.04023238,98.27674056],[4.53746656,0.04023062,98.27626733],[4.53746617,0.04022886,98.27579529],[4.53746577,0.0402271,98.27532444],[4.53746538,0.04022534,98.27485478],[4.53746499,0.04022358,98.27438633],[4.53746459,0.04022182,98.27391907],[4.5374642,0.04022006,98.27345301],[4.5374638,0.0402183,98.27298816],[4.53746341,0.04021654,98.27252453],[4.53746302,0.04021478,98.27206211],[4.53746262,0.04021302,98.27160092],[4.53746223,0.04021126,98.27114096],[4.53746184,0.0402095,98.27068222],[4.53746144,0.04020774,98.27022473],[4.53746105,0.04020598,98.26976847],[4.53746066,0.04020423,98.26931347],[4.53746026,0.04020247,98.26885971],[4.53745987,0.04020071,98.26840721],[4.53745948,0.04019895,98.26795598],[4.53745908,0.04019719,98.26750601],[4.53745869,0.04019543,98.26705731],[4.5374583,0.04019367,98.26660989],[4.53745792,0.04019199,98.26618392],[4.53748942,0.04018482,98.36173293],[4.5374898,0.0401865,98.3621239],[4.53749019,0.04018826,98.36253446],[4.53749058,0.04019002,98.3629461],[4.53749097,0.04019178,98.36335883],[4.53749137,0.04019354,98.36377264],[4.53749176,0.0401953,98.36418753],[4.53749215,0.04019707,98.36460352],[4.53749254,0.04019883,98.36502059],[4.53749294,0.04020059,98.36543876],[4.53749333,0.04020235,98.36585802],[4.53749372,0.04020411,98.36627837],[4.53749411,0.04020587,98.36669982],[4.53749451,0.04020763,98.36712236],[4.5374949,0.04020939,98.36754601],[4.53749529,0.04021115,98.36797075],[4.53749568,0.04021291,98.3683966],[4.53749608,0.04021467,98.36882356],[4.53749647,0.04021643,98.36925161],[4.53749686,0.04021819,98.36968078],[4.53749725,0.04021995,98.37011106],[4.53749765,0.04022171,98.37054245],[4.53749804,0.04022347,98.37097497],[4.53749843,0.04022523,98.37140861],[4.53749882,0.04022699,98.37184338],[4.53749922,0.04022875,98.37227928],[4.53749961,0.04023051,98.37271633],[4.5375,0.04023227,98.37315452],[4.53750039,0.04023403,98.37359386],[4.53750079,0.04023579,98.37403435],[4.53750118,0.04023755,98.37447601],[4.53750157,0.04023931,98.37491883],[4.53750197,0.04024107,98.37536281],[4.53750236,0.04024283,98.37580797],[4.53750275,0.04024459,98.37625431],[4.53750315,0.04024635,98.37670183],[4.53750354,0.04024811,98.37715054],[4.53750393,0.04024987,98.37760044],[4.53750432,0.04025163,98.37805154],[4.53750472,0.04025339,98.37850384],[4.53750511,0.04025515,98.37895734],[4.5375055,0.04025691,98.37941206],[4.5375059,0.04025867,98.37986799],[4.53750629,0.04026043,98.38032514],[4.53750669,0.04026219,98.38078351],[4.53750708,0.04026395,98.38124312],[4.53750747,0.04026571,98.38170396],[4.53750787,0.04026747,98.38216604],[4.53750826,0.04026923,98.38262936],[4.53750865,0.04027099,98.38309393],[4.53750905,0.04027275,98.38355975],[4.53750944,0.04027451,98.38402683],[4.53750984,0.04027627,98.38449517],[4.53751023,0.04027803,98.38496478],[4.53751062,0.04027979,98.38543565],[4.53751102,0.04028155,98.3859078],[4.53751141,0.04028331,98.38638124],[4.53751181,0.04028507,98.38685595],[4.5375122,0.04028683,98.38733196],[4.5375126,0.04028859,98.38780925],[4.53751299,0.04029035,98.38828785],[4.53751339,0.04029211,98.38876775],[4.53751378,0.04029387,98.38924895],[4.53751418,0.04029563,98.38973147],[4.53751457,0.04029739,98.3902153],[4.53751497,0.04029915,98.39070045],[4.53751536,0.04030091,98.39118693],[4.53751576,0.04030267,98.39167473],[4.53751615,0.04030443,98.39216387],[4.53751655,0.04030619,98.39265435],[4.53751694,0.04030795,98.39314617],[4.53751734,0.04030971,98.39363933],[4.53751774,0.04031147,98.39413385],[4.53751813,0.04031323,98.39462972],[4.53751853,0.04031499,98.39512696],[4.53751892,0.04031675,98.39562555],[4.53751932,0.04031851,98.39612552],[4.53751972,0.04032026,98.39662685],[4.53752011,0.04032202,98.39712957],[4.53752051,0.04032378,98.39763367],[4.53752091,0.04032554,98.39813915],[4.5375213,0.0403273,98.39864602],[4.5375217,0.04032906,98.39915429],[4.5375221,0.04033082,98.39966396],[4.5375225,0.04033258,98.40017503],[4.53752289,0.04033434,98.4006875],[4.53752329,0.0403361,98.40120139],[4.53752369,0.04033786,98.4017167],[4.53752409,0.04033961,98.40223342],[4.53752449,0.04034137,98.40275157],[4.53752488,0.04034313,98.40327115],[4.53752528,0.04034489,98.40379216],[4.53752568,0.04034665,98.4043146],[4.53752608,0.04034841,98.40483843],[4.53752648,0.04035017,98.40536365],[4.53752688,0.04035193,98.40589025],[4.53752728,0.04035368,98.40641819],[4.53752768,0.04035544,98.40694748],[4.53752808,0.0403572,98.40747808],[4.53752848,0.04035896,98.40800999],[4.53752887,0.04036072,98.40854318],[4.53752927,0.04036248,98.40907764],[4.53752967,0.04036424,98.40961335],[4.53753007,0.04036599,98.41015031],[4.53753047,0.04036775,98.41068848],[4.53753087,0.04036951,98.41122785],[4.53753127,0.04037127,98.41176841],[4.53753167,0.04037303,98.41231014],[4.53753207,0.04037479,98.41285302],[4.53753247,0.04037655,98.41339705],[4.53753287,0.0403783,98.41394219],[4.53753327,0.04038006,98.41448843],[4.53753367,0.04038182,98.41503576],[4.53753408,0.04038358,98.41558417],[4.53753448,0.04038534,98.41613363],[4.53753488,0.0403871,98.41668413],[4.53753528,0.04038885,98.41723565],[4.53753568,0.04039061,98.41778817],[4.53753608,0.04039237,98.41834169],[4.53753648,0.04039413,98.41889618],[4.53753688,0.04039589,98.41945162],[4.53753728,0.04039765,98.42000801],[4.53753768,0.0403994,98.42056532],[4.53753808,0.04040116,98.42112355],[4.53753848,0.04040292,98.42168266],[4.53753888,0.04040468,98.42224265],[4.53753928,0.04040644,98.42280351],[4.53753968,0.0404082,98.42336521],[4.53754008,0.04040995,98.42392773],[4.53754048,0.04041171,98.42449107],[4.53754088,0.04041347,98.42505521],[4.53754128,0.04041523,98.42562013],[4.53754168,0.04041699,98.42618581],[4.53754208,0.04041875,98.42675225],[4.53754248,0.0404205,98.42731941],[4.53754288,0.04042226,98.4278873],[4.53754328,0.04042402,98.42845589],[4.53754368,0.04042578,98.42902516],[4.53754408,0.04042754,98.42959511],[4.53754448,0.0404293,98.43016571],[4.53754488,0.04043106,98.43073695],[4.53754528,0.04043282,98.43130881],[4.53754567,0.04043458,98.43188129],[4.53754607,0.04043633,98.43245435],[4.53754647,0.04043809,98.433028],[4.53754687,0.04043985,98.4336022],[4.53754727,0.04044161,98.43417695],[4.53754767,0.04044337,98.43475224],[4.53754806,0.04044513,98.43532804],[4.53754846,0.04044689,98.43590433],[4.53754886,0.04044865,98.43648112],[4.53754926,0.0404504,98.43705837],[4.53754965,0.04045216,98.43763608],[4.53755005,0.04045392,98.43821423],[4.53755045,0.04045568,98.4387928],[4.53755085,0.04045744,98.43937178],[4.53755124,0.0404592,98.43995115],[4.53755164,0.04046096,98.44053091],[4.53755203,0.04046272,98.44111106],[4.53755243,0.04046448,98.44169163],[4.53755283,0.04046624,98.44227261],[4.53755322,0.040468,98.44285402],[4.53755362,0.04046976,98.44343588],[4.53755401,0.04047152,98.44401819],[4.53755441,0.04047327,98.44460096],[4.5375548,0.04047503,98.4451842],[4.5375552,0.04047679,98.44576793],[4.53755559,0.04047855,98.44635216],[4.53755598,0.04048031,98.44693689],[4.53755638,0.04048207,98.44752215],[4.53755677,0.04048383,98.44810793],[4.53755717,0.04048559,98.44869426],[4.53755756,0.04048735,98.44928113],[4.53755795,0.04048911,98.44986857],[4.53755835,0.04049087,98.45045658],[4.53755874,0.04049263,98.45104518],[4.53755913,0.04049439,98.45163437],[4.53755952,0.04049615,98.45222417],[4.53755992,0.04049791,98.45281459],[4.53756031,0.04049967,98.45340563],[4.5375607,0.04050143,98.45399731],[4.53756109,0.04050319,98.45458964],[4.53756149,0.04050495,98.45518263],[4.53756188,0.04050671,98.4557763],[4.53756227,0.04050847,98.45637064],[4.53756266,0.04051023,98.45696568],[4.53756305,0.04051199,98.45756142],[4.53756345,0.04051375,98.45815787],[4.53756384,0.04051552,98.45875505],[4.53756423,0.04051728,98.45935297],[4.53756462,0.04051904,98.45995163],[4.53756501,0.0405208,98.46055104],[4.5375654,0.04052256,98.46115123],[4.53756579,0.04052432,98.46175219],[4.53756618,0.04052608,98.46235394],[4.53756658,0.04052784,98.46295648],[4.53756697,0.0405296,98.46355984],[4.53756736,0.04053136,98.46416402],[4.53756775,0.04053312,98.46476903],[4.53756814,0.04053488,98.46537487],[4.53756853,0.04053664,98.46598157],[4.53756892,0.0405384,98.46658913],[4.53756931,0.04054016,98.46719756],[4.5375697,0.04054192,98.46780688],[4.53757009,0.04054368,98.46841709],[4.53757048,0.04054544,98.4690282],[4.53757087,0.0405472,98.46964022],[4.53757126,0.04054897,98.47025317],[4.53757165,0.04055073,98.47086705],[4.53757204,0.04055249,98.47148188],[4.53757243,0.04055425,98.47209766],[4.53757282,0.04055601,98.4727144],[4.53757321,0.04055777,98.47333212],[4.5375736,0.04055953,98.47395083],[4.53757399,0.04056129,98.47457053],[4.53757438,0.04056305,98.47519124],[4.53757477,0.04056481,98.47581296],[4.53757516,0.04056657,98.47643571],[4.53757555,0.04056833,98.4770595],[4.53757594,0.04057009,98.47768433],[4.53757633,0.04057185,98.47831022],[4.53757672,0.04057362,98.47893717],[4.53757711,0.04057538,98.4795652],[4.5375775,0.04057714,98.48019432],[4.53757789,0.0405789,98.48082454],[4.53757828,0.04058066,98.48145586],[4.53757867,0.04058242,98.4820883],[4.53757907,0.04058418,98.48272186],[4.53757946,0.04058594,98.48335656],[4.53757985,0.0405877,98.48399241],[4.53758024,0.04058946,98.48462941],[4.53758063,0.04059122,98.48526758],[4.53758102,0.04059298,98.48590693],[4.53758141,0.04059474,98.48654747],[4.5375818,0.0405965,98.4871892],[4.53758219,0.04059826,98.48783213],[4.53758258,0.04060002,98.48847628],[4.53758297,0.04060179,98.48912166],[4.53758336,0.04060355,98.48976827],[4.53758375,0.04060531,98.49041613],[4.53758414,0.04060707,98.49106524],[4.53758454,0.04060883,98.49171562],[4.53758493,0.04061059,98.49236727],[4.53758532,0.04061235,98.49302021],[4.53758571,0.04061411,98.49367444],[4.5375861,0.04061587,98.49432998],[4.53758649,0.04061763,98.49498682],[4.53758688,0.04061939,98.495645],[4.53758728,0.04062115,98.4963045],[4.53758767,0.04062291,98.49696535],[4.53758806,0.04062467,98.49762754],[4.53758845,0.04062643,98.49829108],[4.53758885,0.04062819,98.49895595],[4.53758924,0.04062995,98.49962216],[4.53758963,0.04063171,98.5002897],[4.53759002,0.04063347,98.50095856],[4.53759042,0.04063523,98.50162874],[4.53759081,0.04063699,98.50230023],[4.5375912,0.04063875,98.50297303],[4.5375916,0.04064051,98.50364713],[4.53759199,0.04064227,98.50432253],[4.53759238,0.04064403,98.50499923],[4.53759278,0.04064579,98.50567721],[4.53759317,0.04064755,98.50635648],[4.53759356,0.04064931,98.50703702],[4.53759396,0.04065107,98.50771884],[4.53759435,0.04065283,98.50840193],[4.53759474,0.04065459,98.50908628],[4.53759514,0.04065635,98.50977189],[4.53759553,0.04065811,98.51045876],[4.53759593,0.04065987,98.51114688],[4.53759632,0.04066163,98.51183624],[4.53759671,0.04066339,98.51252684],[4.53759711,0.04066515,98.51321867],[4.5375975,0.04066691,98.51391174],[4.5375979,0.04066867,98.51460603],[4.53759829,0.04067043,98.51530154],[4.53759869,0.04067219,98.51599827],[4.53759908,0.04067395,98.5166962],[4.53759948,0.04067571,98.51739535],[4.53759987,0.04067747,98.51809569],[4.53760027,0.04067923,98.51879724],[4.53760066,0.04068099,98.51949997],[4.53760106,0.04068275,98.52020389],[4.53760145,0.04068451,98.520909],[4.53760185,0.04068627,98.52161528],[4.53760224,0.04068803,98.52232273],[4.53760264,0.04068979,98.52303136],[4.53760303,0.04069155,98.52374115],[4.53760343,0.04069331,98.52445209],[4.53760382,0.04069507,98.52516419],[4.53760422,0.04069683,98.52587744],[4.53760461,0.04069859,98.52659184],[4.53760501,0.04070034,98.52730737],[4.5376054,0.0407021,98.52802404],[4.5376058,0.04070386,98.52874184],[4.5376062,0.04070562,98.52946077],[4.53760659,0.04070738,98.53018082],[4.53760699,0.04070914,98.53090198],[4.53760738,0.0407109,98.53162426],[4.53760778,0.04071266,98.53234765],[4.53760817,0.04071442,98.53307214],[4.53760857,0.04071618,98.53379773],[4.53760897,0.04071794,98.53452441],[4.53760936,0.0407197,98.53525218],[4.53760976,0.04072146,98.53598103],[4.53761015,0.04072322,98.53671097],[4.53761055,0.04072498,98.53744198],[4.53761094,0.04072674,98.53817406],[4.53761134,0.0407285,98.53890721],[4.53761174,0.04073026,98.53964142],[4.53761213,0.04073202,98.54037669],[4.53761253,0.04073378,98.54111302],[4.53761292,0.04073554,98.54185039],[4.53761332,0.0407373,98.5425888],[4.53761372,0.04073905,98.54332825],[4.53761411,0.04074081,98.54406874],[4.53761451,0.04074257,98.54481026],[4.5376149,0.04074433,98.5455528],[4.5376153,0.04074609,98.54629637],[4.53761569,0.04074785,98.54704095],[4.53761609,0.04074961,98.54778655],[4.53761649,0.04075137,98.54853315],[4.53761688,0.04075313,98.54928076],[4.53761728,0.04075489,98.55002936],[4.53761767,0.04075665,98.55077896],[4.53761807,0.04075841,98.55152955],[4.53761847,0.04076017,98.55228113],[4.53761886,0.04076193,98.55303369],[4.53761926,0.04076369,98.55378722],[4.53761965,0.04076545,98.55454173],[4.53762005,0.04076721,98.5552972],[4.53762044,0.04076897,98.55605364],[4.53762084,0.04077073,98.55681104],[4.53762123,0.04077249,98.55756939],[4.53762163,0.04077425,98.55832869],[4.53762203,0.04077601,98.55908894],[4.53762242,0.04077777,98.55985013],[4.53762282,0.04077953,98.56061226],[4.53762321,0.04078128,98.56137532],[4.53762361,0.04078304,98.5621393],[4.537624,0.0407848,98.56290422],[4.5376244,0.04078656,98.56367005],[4.53762479,0.04078832,98.5644368],[4.53762519,0.04079008,98.56520446],[4.53762558,0.04079184,98.56597305],[4.53762598,0.0407936,98.56674254],[4.53762637,0.04079536,98.56751296],[4.53762677,0.04079712,98.56828429],[4.53762716,0.04079888,98.56905653],[4.53762756,0.04080064,98.56982969],[4.53762795,0.0408024,98.57060376],[4.53762835,0.04080416,98.57137875],[4.53762874,0.04080592,98.57215465],[4.53762914,0.04080768,98.57293147],[4.53762953,0.04080944,98.5737092],[4.53762992,0.0408112,98.57448785],[4.53763032,0.04081296,98.57526741],[4.53763071,0.04081472,98.57604788],[4.53763111,0.04081648,98.57682927],[4.5376315,0.04081824,98.57761156],[4.5376319,0.04082,98.57839478],[4.53763229,0.04082176,98.5791789],[4.53763268,0.04082352,98.57996394],[4.53763308,0.04082528,98.58074989],[4.53763347,0.04082704,98.58153675],[4.53763387,0.0408288,98.58232452],[4.53763426,0.04083056,98.5831132],[4.53763465,0.04083232,98.5839028],[4.53763505,0.04083408,98.58469331],[4.5376034,0.04084122,98.50128433]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1003400","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1,"sOffset":46.9458860069}},{"geometry":{"coordinates":[[[4.53763505,0.04083408,98.58469331],[4.53763465,0.04083232,98.5839028],[4.53763426,0.04083056,98.5831132],[4.53763387,0.0408288,98.58232452],[4.53763347,0.04082704,98.58153675],[4.53763308,0.04082528,98.58074989],[4.53763268,0.04082352,98.57996394],[4.53763229,0.04082176,98.5791789],[4.5376319,0.04082,98.57839478],[4.5376315,0.04081824,98.57761156],[4.53763111,0.04081648,98.57682927],[4.53763071,0.04081472,98.57604788],[4.53763032,0.04081296,98.57526741],[4.53762992,0.0408112,98.57448785],[4.53762953,0.04080944,98.5737092],[4.53762914,0.04080768,98.57293147],[4.53762874,0.04080592,98.57215465],[4.53762835,0.04080416,98.57137875],[4.53762795,0.0408024,98.57060376],[4.53762756,0.04080064,98.56982969],[4.53762716,0.04079888,98.56905653],[4.53762677,0.04079712,98.56828429],[4.53762637,0.04079536,98.56751296],[4.53762598,0.0407936,98.56674254],[4.53762558,0.04079184,98.56597305],[4.53762519,0.04079008,98.56520446],[4.53762479,0.04078832,98.5644368],[4.5376244,0.04078656,98.56367005],[4.537624,0.0407848,98.56290422],[4.53762361,0.04078304,98.5621393],[4.53762321,0.04078128,98.56137532],[4.53762282,0.04077953,98.56061226],[4.53762242,0.04077777,98.55985013],[4.53762203,0.04077601,98.55908894],[4.53762163,0.04077425,98.55832869],[4.53762123,0.04077249,98.55756939],[4.53762084,0.04077073,98.55681104],[4.53762044,0.04076897,98.55605364],[4.53762005,0.04076721,98.5552972],[4.53761965,0.04076545,98.55454173],[4.53761926,0.04076369,98.55378722],[4.53761886,0.04076193,98.55303369],[4.53761847,0.04076017,98.55228113],[4.53761807,0.04075841,98.55152955],[4.53761767,0.04075665,98.55077896],[4.53761728,0.04075489,98.55002936],[4.53761688,0.04075313,98.54928076],[4.53761649,0.04075137,98.54853315],[4.53761609,0.04074961,98.54778655],[4.53761569,0.04074785,98.54704095],[4.5376153,0.04074609,98.54629637],[4.5376149,0.04074433,98.5455528],[4.53761451,0.04074257,98.54481026],[4.53761411,0.04074081,98.54406874],[4.53761372,0.04073905,98.54332825],[4.53761332,0.0407373,98.5425888],[4.53761292,0.04073554,98.54185039],[4.53761253,0.04073378,98.54111302],[4.53761213,0.04073202,98.54037669],[4.53761174,0.04073026,98.53964142],[4.53761134,0.0407285,98.53890721],[4.53761094,0.04072674,98.53817406],[4.53761055,0.04072498,98.53744198],[4.53761015,0.04072322,98.53671097],[4.53760976,0.04072146,98.53598103],[4.53760936,0.0407197,98.53525218],[4.53760897,0.04071794,98.53452441],[4.53760857,0.04071618,98.53379773],[4.53760817,0.04071442,98.53307214],[4.53760778,0.04071266,98.53234765],[4.53760738,0.0407109,98.53162426],[4.53760699,0.04070914,98.53090198],[4.53760659,0.04070738,98.53018082],[4.5376062,0.04070562,98.52946077],[4.5376058,0.04070386,98.52874184],[4.5376054,0.0407021,98.52802404],[4.53760501,0.04070034,98.52730737],[4.53760461,0.04069859,98.52659184],[4.53760422,0.04069683,98.52587744],[4.53760382,0.04069507,98.52516419],[4.53760343,0.04069331,98.52445209],[4.53760303,0.04069155,98.52374115],[4.53760264,0.04068979,98.52303136],[4.53760224,0.04068803,98.52232273],[4.53760185,0.04068627,98.52161528],[4.53760145,0.04068451,98.520909],[4.53760106,0.04068275,98.52020389],[4.53760066,0.04068099,98.51949997],[4.53760027,0.04067923,98.51879724],[4.53759987,0.04067747,98.51809569],[4.53759948,0.04067571,98.51739535],[4.53759908,0.04067395,98.5166962],[4.53759869,0.04067219,98.51599827],[4.53759829,0.04067043,98.51530154],[4.5375979,0.04066867,98.51460603],[4.5375975,0.04066691,98.51391174],[4.53759711,0.04066515,98.51321867],[4.53759671,0.04066339,98.51252684],[4.53759632,0.04066163,98.51183624],[4.53759593,0.04065987,98.51114688],[4.53759553,0.04065811,98.51045876],[4.53759514,0.04065635,98.50977189],[4.53759474,0.04065459,98.50908628],[4.53759435,0.04065283,98.50840193],[4.53759396,0.04065107,98.50771884],[4.53759356,0.04064931,98.50703702],[4.53759317,0.04064755,98.50635648],[4.53759278,0.04064579,98.50567721],[4.53759238,0.04064403,98.50499923],[4.53759199,0.04064227,98.50432253],[4.5375916,0.04064051,98.50364713],[4.5375912,0.04063875,98.50297303],[4.53759081,0.04063699,98.50230023],[4.53759042,0.04063523,98.50162874],[4.53759002,0.04063347,98.50095856],[4.53758963,0.04063171,98.5002897],[4.53758924,0.04062995,98.49962216],[4.53758885,0.04062819,98.49895595],[4.53758845,0.04062643,98.49829108],[4.53758806,0.04062467,98.49762754],[4.53758767,0.04062291,98.49696535],[4.53758728,0.04062115,98.4963045],[4.53758688,0.04061939,98.495645],[4.53758649,0.04061763,98.49498682],[4.5375861,0.04061587,98.49432998],[4.53758571,0.04061411,98.49367444],[4.53758532,0.04061235,98.49302021],[4.53758493,0.04061059,98.49236727],[4.53758454,0.04060883,98.49171562],[4.53758414,0.04060707,98.49106524],[4.53758375,0.04060531,98.49041613],[4.53758336,0.04060355,98.48976827],[4.53758297,0.04060179,98.48912166],[4.53758258,0.04060002,98.48847628],[4.53758219,0.04059826,98.48783213],[4.5375818,0.0405965,98.4871892],[4.53758141,0.04059474,98.48654747],[4.53758102,0.04059298,98.48590693],[4.53758063,0.04059122,98.48526758],[4.53758024,0.04058946,98.48462941],[4.53757985,0.0405877,98.48399241],[4.53757946,0.04058594,98.48335656],[4.53757907,0.04058418,98.48272186],[4.53757867,0.04058242,98.4820883],[4.53757828,0.04058066,98.48145586],[4.53757789,0.0405789,98.48082454],[4.5375775,0.04057714,98.48019432],[4.53757711,0.04057538,98.4795652],[4.53757672,0.04057362,98.47893717],[4.53757633,0.04057185,98.47831022],[4.53757594,0.04057009,98.47768433],[4.53757555,0.04056833,98.4770595],[4.53757516,0.04056657,98.47643571],[4.53757477,0.04056481,98.47581296],[4.53757438,0.04056305,98.47519124],[4.53757399,0.04056129,98.47457053],[4.5375736,0.04055953,98.47395083],[4.53757321,0.04055777,98.47333212],[4.53757282,0.04055601,98.4727144],[4.53757243,0.04055425,98.47209766],[4.53757204,0.04055249,98.47148188],[4.53757165,0.04055073,98.47086705],[4.53757126,0.04054897,98.47025317],[4.53757087,0.0405472,98.46964022],[4.53757048,0.04054544,98.4690282],[4.53757009,0.04054368,98.46841709],[4.5375697,0.04054192,98.46780688],[4.53756931,0.04054016,98.46719756],[4.53756892,0.0405384,98.46658913],[4.53756853,0.04053664,98.46598157],[4.53756814,0.04053488,98.46537487],[4.53756775,0.04053312,98.46476903],[4.53756736,0.04053136,98.46416402],[4.53756697,0.0405296,98.46355984],[4.53756658,0.04052784,98.46295648],[4.53756618,0.04052608,98.46235394],[4.53756579,0.04052432,98.46175219],[4.5375654,0.04052256,98.46115123],[4.53756501,0.0405208,98.46055104],[4.53756462,0.04051904,98.45995163],[4.53756423,0.04051728,98.45935297],[4.53756384,0.04051552,98.45875505],[4.53756345,0.04051375,98.45815787],[4.53756305,0.04051199,98.45756142],[4.53756266,0.04051023,98.45696568],[4.53756227,0.04050847,98.45637064],[4.53756188,0.04050671,98.4557763],[4.53756149,0.04050495,98.45518263],[4.53756109,0.04050319,98.45458964],[4.5375607,0.04050143,98.45399731],[4.53756031,0.04049967,98.45340563],[4.53755992,0.04049791,98.45281459],[4.53755952,0.04049615,98.45222417],[4.53755913,0.04049439,98.45163437],[4.53755874,0.04049263,98.45104518],[4.53755835,0.04049087,98.45045658],[4.53755795,0.04048911,98.44986857],[4.53755756,0.04048735,98.44928113],[4.53755717,0.04048559,98.44869426],[4.53755677,0.04048383,98.44810793],[4.53755638,0.04048207,98.44752215],[4.53755598,0.04048031,98.44693689],[4.53755559,0.04047855,98.44635216],[4.5375552,0.04047679,98.44576793],[4.5375548,0.04047503,98.4451842],[4.53755441,0.04047327,98.44460096],[4.53755401,0.04047152,98.44401819],[4.53755362,0.04046976,98.44343588],[4.53755322,0.040468,98.44285402],[4.53755283,0.04046624,98.44227261],[4.53755243,0.04046448,98.44169163],[4.53755203,0.04046272,98.44111106],[4.53755164,0.04046096,98.44053091],[4.53755124,0.0404592,98.43995115],[4.53755085,0.04045744,98.43937178],[4.53755045,0.04045568,98.4387928],[4.53755005,0.04045392,98.43821423],[4.53754965,0.04045216,98.43763608],[4.53754926,0.0404504,98.43705837],[4.53754886,0.04044865,98.43648112],[4.53754846,0.04044689,98.43590433],[4.53754806,0.04044513,98.43532804],[4.53754767,0.04044337,98.43475224],[4.53754727,0.04044161,98.43417695],[4.53754687,0.04043985,98.4336022],[4.53754647,0.04043809,98.433028],[4.53754607,0.04043633,98.43245435],[4.53754567,0.04043458,98.43188129],[4.53754528,0.04043282,98.43130881],[4.53754488,0.04043106,98.43073695],[4.53754448,0.0404293,98.43016571],[4.53754408,0.04042754,98.42959511],[4.53754368,0.04042578,98.42902516],[4.53754328,0.04042402,98.42845589],[4.53754288,0.04042226,98.4278873],[4.53754248,0.0404205,98.42731941],[4.53754208,0.04041875,98.42675225],[4.53754168,0.04041699,98.42618581],[4.53754128,0.04041523,98.42562013],[4.53754088,0.04041347,98.42505521],[4.53754048,0.04041171,98.42449107],[4.53754008,0.04040995,98.42392773],[4.53753968,0.0404082,98.42336521],[4.53753928,0.04040644,98.42280351],[4.53753888,0.04040468,98.42224265],[4.53753848,0.04040292,98.42168266],[4.53753808,0.04040116,98.42112355],[4.53753768,0.0403994,98.42056532],[4.53753728,0.04039765,98.42000801],[4.53753688,0.04039589,98.41945162],[4.53753648,0.04039413,98.41889618],[4.53753608,0.04039237,98.41834169],[4.53753568,0.04039061,98.41778817],[4.53753528,0.04038885,98.41723565],[4.53753488,0.0403871,98.41668413],[4.53753448,0.04038534,98.41613363],[4.53753408,0.04038358,98.41558417],[4.53753367,0.04038182,98.41503576],[4.53753327,0.04038006,98.41448843],[4.53753287,0.0403783,98.41394219],[4.53753247,0.04037655,98.41339705],[4.53753207,0.04037479,98.41285302],[4.53753167,0.04037303,98.41231014],[4.53753127,0.04037127,98.41176841],[4.53753087,0.04036951,98.41122785],[4.53753047,0.04036775,98.41068848],[4.53753007,0.04036599,98.41015031],[4.53752967,0.04036424,98.40961335],[4.53752927,0.04036248,98.40907764],[4.53752887,0.04036072,98.40854318],[4.53752848,0.04035896,98.40800999],[4.53752808,0.0403572,98.40747808],[4.53752768,0.04035544,98.40694748],[4.53752728,0.04035368,98.40641819],[4.53752688,0.04035193,98.40589025],[4.53752648,0.04035017,98.40536365],[4.53752608,0.04034841,98.40483843],[4.53752568,0.04034665,98.4043146],[4.53752528,0.04034489,98.40379216],[4.53752488,0.04034313,98.40327115],[4.53752449,0.04034137,98.40275157],[4.53752409,0.04033961,98.40223342],[4.53752369,0.04033786,98.4017167],[4.53752329,0.0403361,98.40120139],[4.53752289,0.04033434,98.4006875],[4.5375225,0.04033258,98.40017503],[4.5375221,0.04033082,98.39966396],[4.5375217,0.04032906,98.39915429],[4.5375213,0.0403273,98.39864602],[4.53752091,0.04032554,98.39813915],[4.53752051,0.04032378,98.39763367],[4.53752011,0.04032202,98.39712957],[4.53751972,0.04032026,98.39662685],[4.53751932,0.04031851,98.39612552],[4.53751892,0.04031675,98.39562555],[4.53751853,0.04031499,98.39512696],[4.53751813,0.04031323,98.39462972],[4.53751774,0.04031147,98.39413385],[4.53751734,0.04030971,98.39363933],[4.53751694,0.04030795,98.39314617],[4.53751655,0.04030619,98.39265435],[4.53751615,0.04030443,98.39216387],[4.53751576,0.04030267,98.39167473],[4.53751536,0.04030091,98.39118693],[4.53751497,0.04029915,98.39070045],[4.53751457,0.04029739,98.3902153],[4.53751418,0.04029563,98.38973147],[4.53751378,0.04029387,98.38924895],[4.53751339,0.04029211,98.38876775],[4.53751299,0.04029035,98.38828785],[4.5375126,0.04028859,98.38780925],[4.5375122,0.04028683,98.38733196],[4.53751181,0.04028507,98.38685595],[4.53751141,0.04028331,98.38638124],[4.53751102,0.04028155,98.3859078],[4.53751062,0.04027979,98.38543565],[4.53751023,0.04027803,98.38496478],[4.53750984,0.04027627,98.38449517],[4.53750944,0.04027451,98.38402683],[4.53750905,0.04027275,98.38355975],[4.53750865,0.04027099,98.38309393],[4.53750826,0.04026923,98.38262936],[4.53750787,0.04026747,98.38216604],[4.53750747,0.04026571,98.38170396],[4.53750708,0.04026395,98.38124312],[4.53750669,0.04026219,98.38078351],[4.53750629,0.04026043,98.38032514],[4.5375059,0.04025867,98.37986799],[4.5375055,0.04025691,98.37941206],[4.53750511,0.04025515,98.37895734],[4.53750472,0.04025339,98.37850384],[4.53750432,0.04025163,98.37805154],[4.53750393,0.04024987,98.37760044],[4.53750354,0.04024811,98.37715054],[4.53750315,0.04024635,98.37670183],[4.53750275,0.04024459,98.37625431],[4.53750236,0.04024283,98.37580797],[4.53750197,0.04024107,98.37536281],[4.53750157,0.04023931,98.37491883],[4.53750118,0.04023755,98.37447601],[4.53750079,0.04023579,98.37403435],[4.53750039,0.04023403,98.37359386],[4.5375,0.04023227,98.37315452],[4.53749961,0.04023051,98.37271633],[4.53749922,0.04022875,98.37227928],[4.53749882,0.04022699,98.37184338],[4.53749843,0.04022523,98.37140861],[4.53749804,0.04022347,98.37097497],[4.53749765,0.04022171,98.37054245],[4.53749725,0.04021995,98.37011106],[4.53749686,0.04021819,98.36968078],[4.53749647,0.04021643,98.36925161],[4.53749608,0.04021467,98.36882356],[4.53749568,0.04021291,98.3683966],[4.53749529,0.04021115,98.36797075],[4.5374949,0.04020939,98.36754601],[4.53749451,0.04020763,98.36712236],[4.53749411,0.04020587,98.36669982],[4.53749372,0.04020411,98.36627837],[4.53749333,0.04020235,98.36585802],[4.53749294,0.04020059,98.36543876],[4.53749254,0.04019883,98.36502059],[4.53749215,0.04019707,98.36460352],[4.53749176,0.0401953,98.36418753],[4.53749137,0.04019354,98.36377264],[4.53749097,0.04019178,98.36335883],[4.53749058,0.04019002,98.3629461],[4.53749019,0.04018826,98.36253446],[4.5374898,0.0401865,98.3621239],[4.53748942,0.04018482,98.36173293],[4.5374913,0.0401844,98.36742114],[4.53749133,0.04018615,98.36677706],[4.53749137,0.040188,98.36610426],[4.5374915,0.04018982,98.36571766],[4.5374919,0.04019157,98.36616924],[4.53749231,0.04019333,98.36662297],[4.53749271,0.04019509,98.36707877],[4.53749312,0.04019684,98.36753656],[4.53749353,0.0401986,98.36799628],[4.53749393,0.04020036,98.36845783],[4.53749434,0.04020212,98.36892115],[4.53749475,0.04020387,98.36938616],[4.53749516,0.04020563,98.36985279],[4.53749557,0.04020739,98.37032095],[4.53749597,0.04020914,98.37079058],[4.53749638,0.0402109,98.3712616],[4.53749679,0.04021266,98.37173394],[4.5374972,0.04021441,98.37220751],[4.53749761,0.04021617,98.37268225],[4.53749802,0.04021793,98.37315807],[4.53749842,0.04021968,98.37363492],[4.53749883,0.04022144,98.37411271],[4.53749924,0.0402232,98.37459137],[4.53749965,0.04022495,98.37507084],[4.53750006,0.04022671,98.37555104],[4.53750047,0.04022847,98.37603191],[4.53750087,0.04023022,98.37651336],[4.53750128,0.04023198,98.37699533],[4.53750169,0.04023374,98.37747776],[4.5375021,0.04023549,98.37796056],[4.5375025,0.04023725,98.37844368],[4.53750291,0.04023901,98.37892703],[4.53750332,0.04024077,98.37941055],[4.53750372,0.04024252,98.37989417],[4.53750413,0.04024428,98.38037782],[4.53750454,0.04024604,98.38086143],[4.53750494,0.0402478,98.38134493],[4.53750535,0.04024955,98.38182824],[4.53750575,0.04025131,98.38231131],[4.53750615,0.04025307,98.38279406],[4.53750656,0.04025483,98.38327643],[4.53750696,0.04025658,98.38375833],[4.53750736,0.04025834,98.38423971],[4.53750776,0.0402601,98.3847205],[4.53750817,0.04026186,98.38520062],[4.53750857,0.04026362,98.38568001],[4.53750897,0.04026538,98.3861586],[4.53750937,0.04026713,98.38663633],[4.53750977,0.04026889,98.38711311],[4.53751016,0.04027065,98.38758889],[4.53751056,0.04027241,98.3880636],[4.53751096,0.04027417,98.38853726],[4.53751135,0.04027593,98.38900997],[4.53751175,0.04027769,98.38948184],[4.53751214,0.04027945,98.38995298],[4.53751254,0.04028121,98.39042348],[4.53751293,0.04028297,98.39089346],[4.53751333,0.04028473,98.39136302],[4.53751372,0.04028649,98.39183226],[4.53751411,0.04028825,98.39230129],[4.5375145,0.04029001,98.39277022],[4.5375149,0.04029177,98.39323915],[4.53751529,0.04029353,98.39370818],[4.53751568,0.04029529,98.39417741],[4.53751607,0.04029705,98.39464697],[4.53751646,0.04029881,98.39511693],[4.53751685,0.04030057,98.39558742],[4.53751724,0.04030233,98.39605853],[4.53751763,0.04030409,98.39653037],[4.53751802,0.04030586,98.39700303],[4.53751841,0.04030762,98.39747664],[4.5375188,0.04030938,98.39795127],[4.53751919,0.04031114,98.39842705],[4.53751958,0.0403129,98.39890407],[4.53751997,0.04031466,98.39938241],[4.53752036,0.04031642,98.39986211],[4.53752075,0.04031818,98.40034317],[4.53752114,0.04031994,98.4008256],[4.53752153,0.0403217,98.4013094],[4.53752193,0.04032346,98.40179459],[4.53752232,0.04032522,98.40228117],[4.53752271,0.04032698,98.40276915],[4.5375231,0.04032874,98.40325854],[4.53752349,0.0403305,98.40374934],[4.53752388,0.04033226,98.40424157],[4.53752427,0.04033402,98.40473523],[4.53752467,0.04033579,98.40523032],[4.53752506,0.04033755,98.40572687],[4.53752545,0.04033931,98.40622487],[4.53752584,0.04034107,98.40672434],[4.53752624,0.04034283,98.40722527],[4.53752663,0.04034459,98.40772768],[4.53752702,0.04034635,98.40823157],[4.53752741,0.04034811,98.4087369],[4.53752781,0.04034987,98.40924369],[4.5375282,0.04035163,98.4097519],[4.53752859,0.04035339,98.41026153],[4.53752899,0.04035515,98.41077256],[4.53752938,0.04035691,98.41128498],[4.53752977,0.04035867,98.41179878],[4.53753017,0.04036043,98.41231394],[4.53753056,0.04036219,98.41283046],[4.53753096,0.04036395,98.41334831],[4.53753135,0.04036571,98.41386748],[4.53753174,0.04036747,98.41438796],[4.53753214,0.04036922,98.41490975],[4.53753253,0.04037098,98.41543281],[4.53753293,0.04037274,98.41595715],[4.53753332,0.0403745,98.41648275],[4.53753372,0.04037626,98.41700959],[4.53753411,0.04037802,98.41753766],[4.53753451,0.04037978,98.41806696],[4.5375349,0.04038154,98.41859745],[4.5375353,0.0403833,98.41912915],[4.53753569,0.04038506,98.41966202],[4.53753609,0.04038682,98.42019606],[4.53753648,0.04038858,98.42073126],[4.53753688,0.04039034,98.42126759],[4.53753727,0.0403921,98.42180506],[4.53753767,0.04039386,98.42234364],[4.53753807,0.04039562,98.42288332],[4.53753846,0.04039738,98.4234241],[4.53753886,0.04039914,98.42396595],[4.53753925,0.0404009,98.42450887],[4.53753965,0.04040266,98.42505284],[4.53754004,0.04040442,98.42559784],[4.53754044,0.04040617,98.42614388],[4.53754083,0.04040793,98.42669093],[4.53754123,0.04040969,98.42723898],[4.53754163,0.04041145,98.42778802],[4.53754202,0.04041321,98.42833803],[4.53754242,0.04041497,98.42888901],[4.53754281,0.04041673,98.42944094],[4.53754321,0.04041849,98.42999381],[4.5375436,0.04042025,98.4305476],[4.537544,0.04042201,98.43110231],[4.53754439,0.04042377,98.43165792],[4.53754479,0.04042553,98.43221442],[4.53754519,0.04042729,98.43277179],[4.53754558,0.04042905,98.43333003],[4.53754598,0.04043081,98.43388912],[4.53754637,0.04043257,98.43444906],[4.53754677,0.04043433,98.43500983],[4.53754716,0.04043609,98.43557142],[4.53754756,0.04043785,98.43613383],[4.53754795,0.04043961,98.43669703],[4.53754835,0.04044137,98.43726102],[4.53754874,0.04044312,98.43782579],[4.53754914,0.04044488,98.43839132],[4.53754953,0.04044664,98.43895761],[4.53754993,0.0404484,98.43952464],[4.53755032,0.04045016,98.44009241],[4.53755072,0.04045192,98.44066091],[4.53755111,0.04045368,98.44123011],[4.5375515,0.04045544,98.44180002],[4.5375519,0.0404572,98.44237061],[4.53755229,0.04045896,98.44294189],[4.53755269,0.04046072,98.44351385],[4.53755308,0.04046248,98.44408649],[4.53755347,0.04046424,98.44465985],[4.53755387,0.040466,98.44523393],[4.53755426,0.04046776,98.44580874],[4.53755465,0.04046952,98.44638431],[4.53755505,0.04047128,98.44696065],[4.53755544,0.04047304,98.44753778],[4.53755583,0.0404748,98.4481157],[4.53755623,0.04047656,98.44869445],[4.53755662,0.04047832,98.44927402],[4.53755701,0.04048008,98.44985444],[4.53755741,0.04048184,98.45043572],[4.5375578,0.0404836,98.45101788],[4.53755819,0.04048536,98.45160094],[4.53755859,0.04048712,98.4521849],[4.53755898,0.04048888,98.45276978],[4.53755937,0.04049064,98.4533556],[4.53755976,0.0404924,98.45394238],[4.53756016,0.04049416,98.45453012],[4.53756055,0.04049592,98.45511885],[4.53756094,0.04049768,98.45570858],[4.53756134,0.04049944,98.45629932],[4.53756173,0.0405012,98.45689109],[4.53756212,0.04050296,98.4574839],[4.53756252,0.04050472,98.45807778],[4.53756291,0.04050648,98.45867273],[4.5375633,0.04050824,98.45926876],[4.53756369,0.04051,98.4598659],[4.53756409,0.04051176,98.46046416],[4.53756448,0.04051352,98.46106356],[4.53756487,0.04051528,98.46166409],[4.53756527,0.04051704,98.46226574],[4.53756566,0.0405188,98.46286852],[4.53756605,0.04052056,98.4634724],[4.53756645,0.04052232,98.46407739],[4.53756684,0.04052408,98.46468347],[4.53756723,0.04052584,98.46529063],[4.53756763,0.0405276,98.46589886],[4.53756802,0.04052936,98.46650816],[4.53756841,0.04053112,98.46711852],[4.53756881,0.04053288,98.46772992],[4.5375692,0.04053464,98.46834236],[4.53756959,0.0405364,98.46895583],[4.53756999,0.04053816,98.46957032],[4.53757038,0.04053992,98.47018583],[4.53757077,0.04054168,98.47080233],[4.53757117,0.04054344,98.47141983],[4.53757156,0.0405452,98.47203832],[4.53757195,0.04054696,98.47265778],[4.53757235,0.04054872,98.47327821],[4.53757274,0.04055048,98.47389961],[4.53757313,0.04055224,98.47452195],[4.53757353,0.040554,98.47514523],[4.53757392,0.04055576,98.47576945],[4.53757431,0.04055752,98.47639459],[4.53757471,0.04055928,98.47702064],[4.5375751,0.04056104,98.47764761],[4.53757549,0.0405628,98.47827547],[4.53757589,0.04056456,98.47890422],[4.53757628,0.04056632,98.47953385],[4.53757667,0.04056808,98.48016436],[4.53757707,0.04056984,98.48079573],[4.53757746,0.0405716,98.48142796],[4.53757785,0.04057336,98.48206103],[4.53757824,0.04057512,98.48269494],[4.53757864,0.04057688,98.48332968],[4.53757903,0.04057864,98.48396525],[4.53757942,0.0405804,98.48460162],[4.53757981,0.04058216,98.4852388],[4.53758021,0.04058392,98.48587678],[4.5375806,0.04058568,98.48651555],[4.53758099,0.04058744,98.48715509],[4.53758138,0.0405892,98.4877954],[4.53758178,0.04059096,98.48843648],[4.53758217,0.04059272,98.48907831],[4.53758256,0.04059448,98.48972089],[4.53758295,0.04059624,98.4903642],[4.53758334,0.040598,98.49100824],[4.53758373,0.04059976,98.49165301],[4.53758413,0.04060152,98.49229848],[4.53758452,0.04060328,98.49294466],[4.53758491,0.04060504,98.49359153],[4.5375853,0.04060681,98.49423909],[4.53758569,0.04060857,98.49488733],[4.53758608,0.04061033,98.49553624],[4.53758647,0.04061209,98.49618582],[4.53758686,0.04061385,98.49683604],[4.53758725,0.04061561,98.49748692],[4.53758764,0.04061737,98.49813843],[4.53758803,0.04061913,98.49879057],[4.53758842,0.04062089,98.49944334],[4.53758881,0.04062265,98.50009677],[4.5375892,0.04062441,98.5007509],[4.53758959,0.04062617,98.50140577],[4.53758998,0.04062793,98.50206139],[4.53759037,0.04062969,98.5027178],[4.53759076,0.04063146,98.50337502],[4.53759115,0.04063322,98.50403309],[4.53759154,0.04063498,98.50469202],[4.53759193,0.04063674,98.50535186],[4.53759232,0.0406385,98.50601261],[4.5375927,0.04064026,98.50667432],[4.53759309,0.04064202,98.50733701],[4.53759348,0.04064378,98.50800071],[4.53759387,0.04064554,98.50866545],[4.53759426,0.04064731,98.50933124],[4.53759465,0.04064907,98.50999813],[4.53759504,0.04065083,98.51066613],[4.53759543,0.04065259,98.51133528],[4.53759582,0.04065435,98.5120056],[4.53759621,0.04065611,98.51267712],[4.5375966,0.04065787,98.51334986],[4.53759698,0.04065963,98.51402386],[4.53759737,0.04066139,98.51469914],[4.53759776,0.04066315,98.51537573],[4.53759815,0.04066491,98.51605366],[4.53759854,0.04066668,98.51673294],[4.53759893,0.04066844,98.51741361],[4.53759932,0.0406702,98.5180957],[4.53759971,0.04067196,98.51877924],[4.5376001,0.04067372,98.51946424],[4.53760049,0.04067548,98.52015074],[4.53760088,0.04067724,98.52083876],[4.53760127,0.040679,98.52152833],[4.53760167,0.04068076,98.52221948],[4.53760206,0.04068252,98.52291223],[4.53760245,0.04068428,98.52360661],[4.53760284,0.04068604,98.52430265],[4.53760323,0.0406878,98.52500037],[4.53760362,0.04068956,98.5256998],[4.53760402,0.04069132,98.52640096],[4.53760441,0.04069308,98.52710389],[4.5376048,0.04069484,98.52780861],[4.5376052,0.0406966,98.52851515],[4.53760559,0.04069836,98.52922352],[4.53760598,0.04070012,98.52993376],[4.53760638,0.04070188,98.5306459],[4.53760677,0.04070364,98.53135996],[4.53760717,0.0407054,98.53207597],[4.53760756,0.04070716,98.53279394],[4.53760796,0.04070892,98.53351392],[4.53760835,0.04071068,98.53423593],[4.53760875,0.04071244,98.53495998],[4.53760915,0.0407142,98.53568612],[4.53760954,0.04071596,98.53641435],[4.53760994,0.04071772,98.53714468],[4.53761034,0.04071948,98.53787707],[4.53761074,0.04072124,98.53861146],[4.53761114,0.040723,98.53934783],[4.53761153,0.04072476,98.54008613],[4.53761193,0.04072651,98.54082631],[4.53761233,0.04072827,98.54156834],[4.53761273,0.04073003,98.54231218],[4.53761313,0.04073179,98.54305777],[4.53761353,0.04073355,98.54380509],[4.53761393,0.04073531,98.54455409],[4.53761433,0.04073707,98.54530473],[4.53761474,0.04073882,98.54605697],[4.53761514,0.04074058,98.54681076],[4.53761554,0.04074234,98.54756608],[4.53761594,0.0407441,98.54832286],[4.53761634,0.04074586,98.54908108],[4.53761674,0.04074762,98.5498407],[4.53761714,0.04074937,98.55060166],[4.53761755,0.04075113,98.55136394],[4.53761795,0.04075289,98.55212749],[4.53761835,0.04075465,98.55289227],[4.53761875,0.04075641,98.55365824],[4.53761916,0.04075816,98.55442536],[4.53761956,0.04075992,98.55519358],[4.53761996,0.04076168,98.55596288],[4.53762036,0.04076344,98.5567332],[4.53762076,0.0407652,98.55750451],[4.53762117,0.04076695,98.55827677],[4.53762157,0.04076871,98.55904994],[4.53762197,0.04077047,98.55982397],[4.53762237,0.04077223,98.56059883],[4.53762278,0.04077399,98.56137448],[4.53762318,0.04077575,98.56215087],[4.53762358,0.0407775,98.56292797],[4.53762398,0.04077926,98.56370574],[4.53762438,0.04078102,98.56448413],[4.53762478,0.04078278,98.56526311],[4.53762518,0.04078454,98.56604263],[4.53762559,0.0407863,98.56682267],[4.53762599,0.04078805,98.56760317],[4.53762639,0.04078981,98.56838411],[4.53762679,0.04079157,98.56916544],[4.53762719,0.04079333,98.56994714],[4.53762759,0.04079509,98.57072916],[4.53762799,0.04079685,98.57151147],[4.53762838,0.04079861,98.57229404],[4.53762878,0.04080037,98.57307683],[4.53762918,0.04080212,98.5738598],[4.53762958,0.04080388,98.57464293],[4.53762998,0.04080564,98.57542617],[4.53763037,0.0408074,98.57620949],[4.53763077,0.04080916,98.57699285],[4.53763117,0.04081092,98.57777622],[4.53763156,0.04081268,98.57855957],[4.53763196,0.04081444,98.57934285],[4.53763236,0.0408162,98.58012604],[4.53763275,0.04081796,98.5809091],[4.53763314,0.04081972,98.58169199],[4.53763354,0.04082148,98.58247468],[4.53763393,0.04082324,98.58325713],[4.53763432,0.040825,98.58403931],[4.53763472,0.04082676,98.58482118],[4.53763511,0.04082852,98.58560272],[4.5376355,0.04083028,98.58638388],[4.53763589,0.04083204,98.58716462],[4.53763628,0.0408338,98.58794492],[4.53763505,0.04083408,98.58469331]]],"type":"Polygon"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1003400","id":1,"type":"shoulder","predecessorId":1,"sOffset":46.9458860069}},{"geometry":{"coordinates":[[[4.53763628,0.0408338,98.58794492],[4.53763589,0.04083204,98.58716462],[4.5376355,0.04083028,98.58638388],[4.53763511,0.04082852,98.58560272],[4.53763472,0.04082676,98.58482118],[4.53763432,0.040825,98.58403931],[4.53763393,0.04082324,98.58325713],[4.53763354,0.04082148,98.58247468],[4.53763314,0.04081972,98.58169199],[4.53763275,0.04081796,98.5809091],[4.53763236,0.0408162,98.58012604],[4.53763196,0.04081444,98.57934285],[4.53763156,0.04081268,98.57855957],[4.53763117,0.04081092,98.57777622],[4.53763077,0.04080916,98.57699285],[4.53763037,0.0408074,98.57620949],[4.53762998,0.04080564,98.57542617],[4.53762958,0.04080388,98.57464293],[4.53762918,0.04080212,98.5738598],[4.53762878,0.04080037,98.57307683],[4.53762838,0.04079861,98.57229404],[4.53762799,0.04079685,98.57151147],[4.53762759,0.04079509,98.57072916],[4.53762719,0.04079333,98.56994714],[4.53762679,0.04079157,98.56916544],[4.53762639,0.04078981,98.56838411],[4.53762599,0.04078805,98.56760317],[4.53762559,0.0407863,98.56682267],[4.53762518,0.04078454,98.56604263],[4.53762478,0.04078278,98.56526311],[4.53762438,0.04078102,98.56448413],[4.53762398,0.04077926,98.56370574],[4.53762358,0.0407775,98.56292797],[4.53762318,0.04077575,98.56215087],[4.53762278,0.04077399,98.56137448],[4.53762237,0.04077223,98.56059883],[4.53762197,0.04077047,98.55982397],[4.53762157,0.04076871,98.55904994],[4.53762117,0.04076695,98.55827677],[4.53762076,0.0407652,98.55750451],[4.53762036,0.04076344,98.5567332],[4.53761996,0.04076168,98.55596288],[4.53761956,0.04075992,98.55519358],[4.53761916,0.04075816,98.55442536],[4.53761875,0.04075641,98.55365824],[4.53761835,0.04075465,98.55289227],[4.53761795,0.04075289,98.55212749],[4.53761755,0.04075113,98.55136394],[4.53761714,0.04074937,98.55060166],[4.53761674,0.04074762,98.5498407],[4.53761634,0.04074586,98.54908108],[4.53761594,0.0407441,98.54832286],[4.53761554,0.04074234,98.54756608],[4.53761514,0.04074058,98.54681076],[4.53761474,0.04073882,98.54605697],[4.53761433,0.04073707,98.54530473],[4.53761393,0.04073531,98.54455409],[4.53761353,0.04073355,98.54380509],[4.53761313,0.04073179,98.54305777],[4.53761273,0.04073003,98.54231218],[4.53761233,0.04072827,98.54156834],[4.53761193,0.04072651,98.54082631],[4.53761153,0.04072476,98.54008613],[4.53761114,0.040723,98.53934783],[4.53761074,0.04072124,98.53861146],[4.53761034,0.04071948,98.53787707],[4.53760994,0.04071772,98.53714468],[4.53760954,0.04071596,98.53641435],[4.53760915,0.0407142,98.53568612],[4.53760875,0.04071244,98.53495998],[4.53760835,0.04071068,98.53423593],[4.53760796,0.04070892,98.53351392],[4.53760756,0.04070716,98.53279394],[4.53760717,0.0407054,98.53207597],[4.53760677,0.04070364,98.53135996],[4.53760638,0.04070188,98.5306459],[4.53760598,0.04070012,98.52993376],[4.53760559,0.04069836,98.52922352],[4.5376052,0.0406966,98.52851515],[4.5376048,0.04069484,98.52780861],[4.53760441,0.04069308,98.52710389],[4.53760402,0.04069132,98.52640096],[4.53760362,0.04068956,98.5256998],[4.53760323,0.0406878,98.52500037],[4.53760284,0.04068604,98.52430265],[4.53760245,0.04068428,98.52360661],[4.53760206,0.04068252,98.52291223],[4.53760167,0.04068076,98.52221948],[4.53760127,0.040679,98.52152833],[4.53760088,0.04067724,98.52083876],[4.53760049,0.04067548,98.52015074],[4.5376001,0.04067372,98.51946424],[4.53759971,0.04067196,98.51877924],[4.53759932,0.0406702,98.5180957],[4.53759893,0.04066844,98.51741361],[4.53759854,0.04066668,98.51673294],[4.53759815,0.04066491,98.51605366],[4.53759776,0.04066315,98.51537573],[4.53759737,0.04066139,98.51469914],[4.53759698,0.04065963,98.51402386],[4.5375966,0.04065787,98.51334986],[4.53759621,0.04065611,98.51267712],[4.53759582,0.04065435,98.5120056],[4.53759543,0.04065259,98.51133528],[4.53759504,0.04065083,98.51066613],[4.53759465,0.04064907,98.50999813],[4.53759426,0.04064731,98.50933124],[4.53759387,0.04064554,98.50866545],[4.53759348,0.04064378,98.50800071],[4.53759309,0.04064202,98.50733701],[4.5375927,0.04064026,98.50667432],[4.53759232,0.0406385,98.50601261],[4.53759193,0.04063674,98.50535186],[4.53759154,0.04063498,98.50469202],[4.53759115,0.04063322,98.50403309],[4.53759076,0.04063146,98.50337502],[4.53759037,0.04062969,98.5027178],[4.53758998,0.04062793,98.50206139],[4.53758959,0.04062617,98.50140577],[4.5375892,0.04062441,98.5007509],[4.53758881,0.04062265,98.50009677],[4.53758842,0.04062089,98.49944334],[4.53758803,0.04061913,98.49879057],[4.53758764,0.04061737,98.49813843],[4.53758725,0.04061561,98.49748692],[4.53758686,0.04061385,98.49683604],[4.53758647,0.04061209,98.49618582],[4.53758608,0.04061033,98.49553624],[4.53758569,0.04060857,98.49488733],[4.5375853,0.04060681,98.49423909],[4.53758491,0.04060504,98.49359153],[4.53758452,0.04060328,98.49294466],[4.53758413,0.04060152,98.49229848],[4.53758373,0.04059976,98.49165301],[4.53758334,0.040598,98.49100824],[4.53758295,0.04059624,98.4903642],[4.53758256,0.04059448,98.48972089],[4.53758217,0.04059272,98.48907831],[4.53758178,0.04059096,98.48843648],[4.53758138,0.0405892,98.4877954],[4.53758099,0.04058744,98.48715509],[4.5375806,0.04058568,98.48651555],[4.53758021,0.04058392,98.48587678],[4.53757981,0.04058216,98.4852388],[4.53757942,0.0405804,98.48460162],[4.53757903,0.04057864,98.48396525],[4.53757864,0.04057688,98.48332968],[4.53757824,0.04057512,98.48269494],[4.53757785,0.04057336,98.48206103],[4.53757746,0.0405716,98.48142796],[4.53757707,0.04056984,98.48079573],[4.53757667,0.04056808,98.48016436],[4.53757628,0.04056632,98.47953385],[4.53757589,0.04056456,98.47890422],[4.53757549,0.0405628,98.47827547],[4.5375751,0.04056104,98.47764761],[4.53757471,0.04055928,98.47702064],[4.53757431,0.04055752,98.47639459],[4.53757392,0.04055576,98.47576945],[4.53757353,0.040554,98.47514523],[4.53757313,0.04055224,98.47452195],[4.53757274,0.04055048,98.47389961],[4.53757235,0.04054872,98.47327821],[4.53757195,0.04054696,98.47265778],[4.53757156,0.0405452,98.47203832],[4.53757117,0.04054344,98.47141983],[4.53757077,0.04054168,98.47080233],[4.53757038,0.04053992,98.47018583],[4.53756999,0.04053816,98.46957032],[4.53756959,0.0405364,98.46895583],[4.5375692,0.04053464,98.46834236],[4.53756881,0.04053288,98.46772992],[4.53756841,0.04053112,98.46711852],[4.53756802,0.04052936,98.46650816],[4.53756763,0.0405276,98.46589886],[4.53756723,0.04052584,98.46529063],[4.53756684,0.04052408,98.46468347],[4.53756645,0.04052232,98.46407739],[4.53756605,0.04052056,98.4634724],[4.53756566,0.0405188,98.46286852],[4.53756527,0.04051704,98.46226574],[4.53756487,0.04051528,98.46166409],[4.53756448,0.04051352,98.46106356],[4.53756409,0.04051176,98.46046416],[4.53756369,0.04051,98.4598659],[4.5375633,0.04050824,98.45926876],[4.53756291,0.04050648,98.45867273],[4.53756252,0.04050472,98.45807778],[4.53756212,0.04050296,98.4574839],[4.53756173,0.0405012,98.45689109],[4.53756134,0.04049944,98.45629932],[4.53756094,0.04049768,98.45570858],[4.53756055,0.04049592,98.45511885],[4.53756016,0.04049416,98.45453012],[4.53755976,0.0404924,98.45394238],[4.53755937,0.04049064,98.4533556],[4.53755898,0.04048888,98.45276978],[4.53755859,0.04048712,98.4521849],[4.53755819,0.04048536,98.45160094],[4.5375578,0.0404836,98.45101788],[4.53755741,0.04048184,98.45043572],[4.53755701,0.04048008,98.44985444],[4.53755662,0.04047832,98.44927402],[4.53755623,0.04047656,98.44869445],[4.53755583,0.0404748,98.4481157],[4.53755544,0.04047304,98.44753778],[4.53755505,0.04047128,98.44696065],[4.53755465,0.04046952,98.44638431],[4.53755426,0.04046776,98.44580874],[4.53755387,0.040466,98.44523393],[4.53755347,0.04046424,98.44465985],[4.53755308,0.04046248,98.44408649],[4.53755269,0.04046072,98.44351385],[4.53755229,0.04045896,98.44294189],[4.5375519,0.0404572,98.44237061],[4.5375515,0.04045544,98.44180002],[4.53755111,0.04045368,98.44123011],[4.53755072,0.04045192,98.44066091],[4.53755032,0.04045016,98.44009241],[4.53754993,0.0404484,98.43952464],[4.53754953,0.04044664,98.43895761],[4.53754914,0.04044488,98.43839132],[4.53754874,0.04044312,98.43782579],[4.53754835,0.04044137,98.43726102],[4.53754795,0.04043961,98.43669703],[4.53754756,0.04043785,98.43613383],[4.53754716,0.04043609,98.43557142],[4.53754677,0.04043433,98.43500983],[4.53754637,0.04043257,98.43444906],[4.53754598,0.04043081,98.43388912],[4.53754558,0.04042905,98.43333003],[4.53754519,0.04042729,98.43277179],[4.53754479,0.04042553,98.43221442],[4.53754439,0.04042377,98.43165792],[4.537544,0.04042201,98.43110231],[4.5375436,0.04042025,98.4305476],[4.53754321,0.04041849,98.42999381],[4.53754281,0.04041673,98.42944094],[4.53754242,0.04041497,98.42888901],[4.53754202,0.04041321,98.42833803],[4.53754163,0.04041145,98.42778802],[4.53754123,0.04040969,98.42723898],[4.53754083,0.04040793,98.42669093],[4.53754044,0.04040617,98.42614388],[4.53754004,0.04040442,98.42559784],[4.53753965,0.04040266,98.42505284],[4.53753925,0.0404009,98.42450887],[4.53753886,0.04039914,98.42396595],[4.53753846,0.04039738,98.4234241],[4.53753807,0.04039562,98.42288332],[4.53753767,0.04039386,98.42234364],[4.53753727,0.0403921,98.42180506],[4.53753688,0.04039034,98.42126759],[4.53753648,0.04038858,98.42073126],[4.53753609,0.04038682,98.42019606],[4.53753569,0.04038506,98.41966202],[4.5375353,0.0403833,98.41912915],[4.5375349,0.04038154,98.41859745],[4.53753451,0.04037978,98.41806696],[4.53753411,0.04037802,98.41753766],[4.53753372,0.04037626,98.41700959],[4.53753332,0.0403745,98.41648275],[4.53753293,0.04037274,98.41595715],[4.53753253,0.04037098,98.41543281],[4.53753214,0.04036922,98.41490975],[4.53753174,0.04036747,98.41438796],[4.53753135,0.04036571,98.41386748],[4.53753096,0.04036395,98.41334831],[4.53753056,0.04036219,98.41283046],[4.53753017,0.04036043,98.41231394],[4.53752977,0.04035867,98.41179878],[4.53752938,0.04035691,98.41128498],[4.53752899,0.04035515,98.41077256],[4.53752859,0.04035339,98.41026153],[4.5375282,0.04035163,98.4097519],[4.53752781,0.04034987,98.40924369],[4.53752741,0.04034811,98.4087369],[4.53752702,0.04034635,98.40823157],[4.53752663,0.04034459,98.40772768],[4.53752624,0.04034283,98.40722527],[4.53752584,0.04034107,98.40672434],[4.53752545,0.04033931,98.40622487],[4.53752506,0.04033755,98.40572687],[4.53752467,0.04033579,98.40523032],[4.53752427,0.04033402,98.40473523],[4.53752388,0.04033226,98.40424157],[4.53752349,0.0403305,98.40374934],[4.5375231,0.04032874,98.40325854],[4.53752271,0.04032698,98.40276915],[4.53752232,0.04032522,98.40228117],[4.53752193,0.04032346,98.40179459],[4.53752153,0.0403217,98.4013094],[4.53752114,0.04031994,98.4008256],[4.53752075,0.04031818,98.40034317],[4.53752036,0.04031642,98.39986211],[4.53751997,0.04031466,98.39938241],[4.53751958,0.0403129,98.39890407],[4.53751919,0.04031114,98.39842705],[4.5375188,0.04030938,98.39795127],[4.53751841,0.04030762,98.39747664],[4.53751802,0.04030586,98.39700303],[4.53751763,0.04030409,98.39653037],[4.53751724,0.04030233,98.39605853],[4.53751685,0.04030057,98.39558742],[4.53751646,0.04029881,98.39511693],[4.53751607,0.04029705,98.39464697],[4.53751568,0.04029529,98.39417741],[4.53751529,0.04029353,98.39370818],[4.5375149,0.04029177,98.39323915],[4.5375145,0.04029001,98.39277022],[4.53751411,0.04028825,98.39230129],[4.53751372,0.04028649,98.39183226],[4.53751333,0.04028473,98.39136302],[4.53751293,0.04028297,98.39089346],[4.53751254,0.04028121,98.39042348],[4.53751214,0.04027945,98.38995298],[4.53751175,0.04027769,98.38948184],[4.53751135,0.04027593,98.38900997],[4.53751096,0.04027417,98.38853726],[4.53751056,0.04027241,98.3880636],[4.53751016,0.04027065,98.38758889],[4.53750977,0.04026889,98.38711311],[4.53750937,0.04026713,98.38663633],[4.53750897,0.04026538,98.3861586],[4.53750857,0.04026362,98.38568001],[4.53750817,0.04026186,98.38520062],[4.53750776,0.0402601,98.3847205],[4.53750736,0.04025834,98.38423971],[4.53750696,0.04025658,98.38375833],[4.53750656,0.04025483,98.38327643],[4.53750615,0.04025307,98.38279406],[4.53750575,0.04025131,98.38231131],[4.53750535,0.04024955,98.38182824],[4.53750494,0.0402478,98.38134493],[4.53750454,0.04024604,98.38086143],[4.53750413,0.04024428,98.38037782],[4.53750372,0.04024252,98.37989417],[4.53750332,0.04024077,98.37941055],[4.53750291,0.04023901,98.37892703],[4.5375025,0.04023725,98.37844368],[4.5375021,0.04023549,98.37796056],[4.53750169,0.04023374,98.37747776],[4.53750128,0.04023198,98.37699533],[4.53750087,0.04023022,98.37651336],[4.53750047,0.04022847,98.37603191],[4.53750006,0.04022671,98.37555104],[4.53749965,0.04022495,98.37507084],[4.53749924,0.0402232,98.37459137],[4.53749883,0.04022144,98.37411271],[4.53749842,0.04021968,98.37363492],[4.53749802,0.04021793,98.37315807],[4.53749761,0.04021617,98.37268225],[4.5374972,0.04021441,98.37220751],[4.53749679,0.04021266,98.37173394],[4.53749638,0.0402109,98.3712616],[4.53749597,0.04020914,98.37079058],[4.53749557,0.04020739,98.37032095],[4.53749516,0.04020563,98.36985279],[4.53749475,0.04020387,98.36938616],[4.53749434,0.04020212,98.36892115],[4.53749393,0.04020036,98.36845783],[4.53749353,0.0401986,98.36799628],[4.53749312,0.04019684,98.36753656],[4.53749271,0.04019509,98.36707877],[4.53749231,0.04019333,98.36662297],[4.5374919,0.04019157,98.36616924],[4.5374915,0.04018982,98.36571766],[4.53749137,0.040188,98.36610426],[4.53749133,0.04018615,98.36677706],[4.5374913,0.0401844,98.36742114],[4.53750608,0.04018103,98.41225728],[4.53750645,0.04018271,98.41263372],[4.53750685,0.04018448,98.41302902],[4.53750724,0.04018624,98.41342534],[4.53750763,0.040188,98.41382264],[4.53750803,0.04018976,98.41422095],[4.53750842,0.04019152,98.41462027],[4.53750881,0.04019328,98.4150206],[4.53750921,0.04019504,98.41542193],[4.5375096,0.0401968,98.41582427],[4.53750999,0.04019856,98.41622761],[4.53751039,0.04020032,98.41663195],[4.53751078,0.04020208,98.41703729],[4.53751117,0.04020384,98.41744362],[4.53751157,0.0402056,98.41785094],[4.53751196,0.04020736,98.41825925],[4.53751235,0.04020912,98.41866854],[4.53751275,0.04021088,98.41907882],[4.53751314,0.04021264,98.41949008],[4.53751353,0.0402144,98.41990233],[4.53751393,0.04021616,98.42031555],[4.53751432,0.04021792,98.42072975],[4.53751471,0.04021968,98.42114493],[4.53751511,0.04022144,98.4215611],[4.5375155,0.0402232,98.42197825],[4.53751589,0.04022496,98.42239638],[4.53751629,0.04022672,98.4228155],[4.53751668,0.04022848,98.4232356],[4.53751707,0.04023024,98.42365669],[4.53751747,0.040232,98.42407877],[4.53751786,0.04023377,98.42450183],[4.53751825,0.04023553,98.42492589],[4.53751865,0.04023729,98.42535094],[4.53751904,0.04023905,98.42577697],[4.53751943,0.04024081,98.426204],[4.53751982,0.04024257,98.42663202],[4.53752022,0.04024433,98.42706104],[4.53752061,0.04024609,98.42749105],[4.537521,0.04024785,98.42792205],[4.5375214,0.04024961,98.42835405],[4.53752179,0.04025137,98.42878705],[4.53752218,0.04025313,98.42922105],[4.53752258,0.04025489,98.42965604],[4.53752297,0.04025665,98.43009204],[4.53752336,0.04025841,98.43052904],[4.53752375,0.04026017,98.43096703],[4.53752415,0.04026193,98.43140603],[4.53752454,0.04026369,98.43184603],[4.53752493,0.04026545,98.43228704],[4.53752533,0.04026721,98.43272905],[4.53752572,0.04026897,98.43317207],[4.53752611,0.04027073,98.43361619],[4.5375265,0.04027249,98.43406158],[4.5375269,0.04027425,98.43450838],[4.53752729,0.04027601,98.43495664],[4.53752768,0.04027777,98.43540638],[4.53752808,0.04027953,98.43585761],[4.53752847,0.04028129,98.43631035],[4.53752887,0.04028305,98.43676461],[4.53752926,0.04028481,98.43722041],[4.53752965,0.04028657,98.43767777],[4.53753005,0.04028833,98.4381367],[4.53753044,0.04029009,98.43859722],[4.53753084,0.04029185,98.43905934],[4.53753123,0.04029361,98.43952309],[4.53753163,0.04029537,98.43998847],[4.53753202,0.04029713,98.44045551],[4.53753242,0.04029889,98.44092422],[4.53753282,0.04030065,98.44139461],[4.53753321,0.04030241,98.4418667],[4.53753361,0.04030417,98.44234051],[4.53753401,0.04030593,98.44281605],[4.5375344,0.04030769,98.44329334],[4.5375348,0.04030945,98.4437724],[4.5375352,0.04031121,98.44425322],[4.53753559,0.04031297,98.44473575],[4.53753599,0.04031472,98.44521989],[4.53753639,0.04031648,98.44570559],[4.53753679,0.04031824,98.44619275],[4.53753719,0.04032,98.4466813],[4.53753759,0.04032176,98.44717116],[4.53753798,0.04032352,98.44766225],[4.53753838,0.04032528,98.4481545],[4.53753878,0.04032704,98.44864784],[4.53753918,0.0403288,98.44914217],[4.53753958,0.04033055,98.44963743],[4.53753998,0.04033231,98.45013355],[4.53754038,0.04033407,98.45063053],[4.53754077,0.04033583,98.4511284],[4.53754117,0.04033759,98.45162718],[4.53754157,0.04033935,98.45212687],[4.53754197,0.04034111,98.4526275],[4.53754237,0.04034287,98.45312907],[4.53754277,0.04034463,98.45363158],[4.53754317,0.04034638,98.45413502],[4.53754356,0.04034814,98.4546394],[4.53754396,0.0403499,98.45514471],[4.53754436,0.04035166,98.45565094],[4.53754476,0.04035342,98.45615809],[4.53754516,0.04035518,98.45666617],[4.53754556,0.04035694,98.45717516],[4.53754595,0.0403587,98.45768506],[4.53754635,0.04036046,98.45819588],[4.53754675,0.04036221,98.45870761],[4.53754715,0.04036397,98.45922024],[4.53754755,0.04036573,98.45973378],[4.53754794,0.04036749,98.46024821],[4.53754834,0.04036925,98.46076354],[4.53754874,0.04037101,98.46127977],[4.53754914,0.04037277,98.46179689],[4.53754954,0.04037453,98.46231489],[4.53754993,0.04037629,98.46283378],[4.53755033,0.04037804,98.46335355],[4.53755073,0.0403798,98.46387419],[4.53755113,0.04038156,98.4643957],[4.53755152,0.04038332,98.46491805],[4.53755192,0.04038508,98.46544126],[4.53755232,0.04038684,98.46596531],[4.53755272,0.0403886,98.4664902],[4.53755312,0.04039036,98.46701591],[4.53755351,0.04039212,98.46754244],[4.53755391,0.04039388,98.46806978],[4.53755431,0.04039563,98.46859793],[4.5375547,0.04039739,98.46912688],[4.5375551,0.04039915,98.46965662],[4.5375555,0.04040091,98.47018714],[4.5375559,0.04040267,98.47071844],[4.53755629,0.04040443,98.47125051],[4.53755669,0.04040619,98.47178334],[4.53755709,0.04040795,98.47231692],[4.53755748,0.04040971,98.47285126],[4.53755788,0.04041147,98.47338633],[4.53755828,0.04041323,98.47392214],[4.53755867,0.04041498,98.47445867],[4.53755907,0.04041674,98.47499593],[4.53755947,0.0404185,98.4755339],[4.53755986,0.04042026,98.47607257],[4.53756026,0.04042202,98.47661194],[4.53756065,0.04042378,98.477152],[4.53756105,0.04042554,98.47769275],[4.53756145,0.0404273,98.47823418],[4.53756184,0.04042906,98.47877629],[4.53756224,0.04043082,98.47931906],[4.53756263,0.04043258,98.4798625],[4.53756303,0.04043434,98.4804066],[4.53756342,0.0404361,98.48095135],[4.53756382,0.04043786,98.48149674],[4.53756421,0.04043962,98.48204278],[4.53756461,0.04044138,98.48258945],[4.537565,0.04044314,98.48313676],[4.5375654,0.0404449,98.48368468],[4.53756579,0.04044665,98.48423323],[4.53756619,0.04044841,98.48478239],[4.53756658,0.04045017,98.48533216],[4.53756697,0.04045193,98.48588253],[4.53756737,0.04045369,98.4864335],[4.53756776,0.04045545,98.48698506],[4.53756816,0.04045721,98.48753721],[4.53756855,0.04045897,98.48808998],[4.53756894,0.04046073,98.48864338],[4.53756934,0.04046249,98.48919743],[4.53756973,0.04046425,98.48975217],[4.53757012,0.04046601,98.4903076],[4.53757051,0.04046777,98.49086375],[4.53757091,0.04046953,98.49142063],[4.5375713,0.04047129,98.49197828],[4.53757169,0.04047305,98.4925367],[4.53757208,0.04047481,98.49309593],[4.53757248,0.04047657,98.49365597],[4.53757287,0.04047833,98.49421686],[4.53757326,0.04048009,98.49477861],[4.53757365,0.04048185,98.49534124],[4.53757405,0.04048361,98.49590477],[4.53757444,0.04048537,98.49646922],[4.53757483,0.04048713,98.49703462],[4.53757522,0.04048889,98.49760098],[4.53757562,0.04049065,98.49816833],[4.53757601,0.04049241,98.49873668],[4.5375764,0.04049417,98.49930605],[4.53757679,0.04049593,98.49987646],[4.53757718,0.04049769,98.50044794],[4.53757758,0.04049946,98.50102051],[4.53757797,0.04050122,98.50159418],[4.53757836,0.04050298,98.50216897],[4.53757875,0.04050474,98.50274491],[4.53757915,0.0405065,98.50332201],[4.53757954,0.04050826,98.5039003],[4.53757993,0.04051002,98.50447979],[4.53758032,0.04051178,98.50506049],[4.53758072,0.04051354,98.5056424],[4.53758111,0.0405153,98.50622551],[4.5375815,0.04051706,98.50680982],[4.53758189,0.04051882,98.50739533],[4.53758229,0.04052058,98.50798203],[4.53758268,0.04052234,98.50856992],[4.53758307,0.0405241,98.50915899],[4.53758347,0.04052586,98.50974924],[4.53758386,0.04052762,98.51034067],[4.53758425,0.04052938,98.51093327],[4.53758465,0.04053114,98.51152704],[4.53758504,0.0405329,98.51212197],[4.53758543,0.04053466,98.51271807],[4.53758582,0.04053642,98.51331531],[4.53758622,0.04053818,98.51391372],[4.53758661,0.04053994,98.51451327],[4.53758701,0.0405417,98.51511396],[4.5375874,0.04054346,98.5157158],[4.53758779,0.04054522,98.51631877],[4.53758819,0.04054698,98.51692287],[4.53758858,0.04054874,98.51752811],[4.53758897,0.0405505,98.51813447],[4.53758937,0.04055226,98.51874195],[4.53758976,0.04055402,98.51935054],[4.53759015,0.04055578,98.51996025],[4.53759055,0.04055754,98.52057108],[4.53759094,0.0405593,98.521183],[4.53759134,0.04056106,98.52179603],[4.53759173,0.04056282,98.52241016],[4.53759212,0.04056458,98.52302538],[4.53759252,0.04056634,98.52364169],[4.53759291,0.0405681,98.52425909],[4.5375933,0.04056986,98.52487757],[4.5375937,0.04057162,98.52549713],[4.53759409,0.04057338,98.52611777],[4.53759449,0.04057514,98.52673948],[4.53759488,0.0405769,98.52736225],[4.53759527,0.04057866,98.52798609],[4.53759567,0.04058041,98.52861099],[4.53759606,0.04058217,98.52923695],[4.53759646,0.04058393,98.52986396],[4.53759685,0.04058569,98.53049202],[4.53759724,0.04058745,98.53112113],[4.53759764,0.04058921,98.53175127],[4.53759803,0.04059097,98.53238246],[4.53759842,0.04059273,98.53301467],[4.53759882,0.04059449,98.53364792],[4.53759921,0.04059625,98.5342822],[4.53759961,0.04059801,98.5349175],[4.5376,0.04059977,98.5355538],[4.53760039,0.04060153,98.53619109],[4.53760079,0.04060329,98.53682933],[4.53760118,0.04060505,98.5374685],[4.53760157,0.04060681,98.53810857],[4.53760197,0.04060857,98.53874951],[4.53760236,0.04061033,98.5393913],[4.53760276,0.04061209,98.5400339],[4.53760315,0.04061385,98.5406773],[4.53760354,0.04061561,98.54132147],[4.53760393,0.04061737,98.54196639],[4.53760433,0.04061913,98.54261207],[4.53760472,0.0406209,98.54325853],[4.53760511,0.04062266,98.54390579],[4.53760551,0.04062442,98.54455385],[4.5376059,0.04062618,98.54520272],[4.53760629,0.04062794,98.54585242],[4.53760668,0.0406297,98.54650295],[4.53760708,0.04063146,98.54715433],[4.53760747,0.04063322,98.54780655],[4.53760786,0.04063498,98.54845964],[4.53760825,0.04063674,98.54911359],[4.53760864,0.0406385,98.54976843],[4.53760904,0.04064026,98.55042416],[4.53760943,0.04064202,98.55108078],[4.53760982,0.04064378,98.55173832],[4.53761021,0.04064554,98.55239677],[4.5376106,0.0406473,98.55305616],[4.537611,0.04064906,98.55371648],[4.53761139,0.04065082,98.55437774],[4.53761178,0.04065258,98.55503996],[4.53761217,0.04065434,98.55570315],[4.53761256,0.0406561,98.55636731],[4.53761295,0.04065786,98.55703246],[4.53761334,0.04065962,98.5576986],[4.53761374,0.04066139,98.55836574],[4.53761413,0.04066315,98.5590339],[4.53761452,0.04066491,98.55970307],[4.53761491,0.04066667,98.56037328],[4.5376153,0.04066843,98.56104453],[4.53761569,0.04067019,98.56171682],[4.53761608,0.04067195,98.56239018],[4.53761648,0.04067371,98.5630646],[4.53761687,0.04067547,98.5637401],[4.53761726,0.04067723,98.56441669],[4.53761765,0.04067899,98.56509437],[4.53761804,0.04068075,98.56577316],[4.53761843,0.04068251,98.56645306],[4.53761882,0.04068427,98.56713408],[4.53761921,0.04068603,98.56781623],[4.53761961,0.0406878,98.56849953],[4.53762,0.04068956,98.56918398],[4.53762039,0.04069132,98.56986958],[4.53762078,0.04069308,98.57055636],[4.53762117,0.04069484,98.57124431],[4.53762156,0.0406966,98.57193348],[4.53762195,0.04069836,98.5726239],[4.53762235,0.04070012,98.57331563],[4.53762274,0.04070188,98.57400872],[4.53762313,0.04070364,98.57470322],[4.53762352,0.0407054,98.57539919],[4.53762391,0.04070716,98.57609667],[4.53762431,0.04070892,98.57679571],[4.5376247,0.04071068,98.57749637],[4.53762509,0.04071244,98.57819869],[4.53762548,0.0407142,98.57890268],[4.53762588,0.04071596,98.57960835],[4.53762627,0.04071772,98.58031566],[4.53762666,0.04071948,98.5810246],[4.53762706,0.04072124,98.58173515],[4.53762745,0.040723,98.58244729],[4.53762785,0.04072476,98.58316101],[4.53762824,0.04072652,98.58387629],[4.53762863,0.04072828,98.58459312],[4.53762903,0.04073004,98.58531147],[4.53762942,0.0407318,98.58603132],[4.53762982,0.04073356,98.58675267],[4.53763021,0.04073532,98.58747549],[4.53763061,0.04073708,98.58819977],[4.537631,0.04073884,98.58892548],[4.5376314,0.0407406,98.58965262],[4.53763179,0.04074236,98.59038117],[4.53763219,0.04074412,98.5911111],[4.53763259,0.04074588,98.5918424],[4.53763298,0.04074764,98.59257506],[4.53763338,0.0407494,98.59330905],[4.53763377,0.04075116,98.59404437],[4.53763417,0.04075292,98.59478099],[4.53763456,0.04075468,98.59551889],[4.53763496,0.04075644,98.59625806],[4.53763536,0.0407582,98.59699849],[4.53763575,0.04075996,98.59774015],[4.53763615,0.04076172,98.59848303],[4.53763655,0.04076348,98.59922712],[4.53763694,0.04076524,98.59997239],[4.53763734,0.040767,98.60071882],[4.53763774,0.04076876,98.60146641],[4.53763813,0.04077052,98.60221514],[4.53763853,0.04077228,98.60296498],[4.53763892,0.04077404,98.60371593],[4.53763932,0.0407758,98.60446796],[4.53763972,0.04077756,98.60522106],[4.53764011,0.04077932,98.60597521],[4.53764051,0.04078108,98.6067304],[4.53764091,0.04078284,98.60748661],[4.5376413,0.0407846,98.60824382],[4.5376417,0.04078636,98.60900202],[4.53764209,0.04078812,98.60976121],[4.53764249,0.04078988,98.61052135],[4.53764289,0.04079163,98.61128246],[4.53764328,0.04079339,98.6120445],[4.53764368,0.04079515,98.61280748],[4.53764407,0.04079691,98.61357137],[4.53764447,0.04079867,98.61433616],[4.53764487,0.04080043,98.61510185],[4.53764526,0.04080219,98.61586842],[4.53764566,0.04080395,98.61663586],[4.53764605,0.04080571,98.61740416],[4.53764645,0.04080747,98.6181733],[4.53764684,0.04080923,98.61894327],[4.53764724,0.04081099,98.61971406],[4.53764763,0.04081275,98.62048566],[4.53764803,0.04081451,98.62125805],[4.53764842,0.04081627,98.62203123],[4.53764882,0.04081803,98.62280517],[4.53764921,0.04081979,98.62357988],[4.5376496,0.04082155,98.62435533],[4.53765,0.04082331,98.62513152],[4.53765039,0.04082508,98.62590843],[4.53765079,0.04082684,98.62668605],[4.53765118,0.0408286,98.62746437],[4.53765157,0.04083036,98.62824337],[4.53763628,0.0408338,98.58794492]]],"type":"Polygon"},"type":"feature","properties":{"successorId":2,"level":false,"roadId":"1003400","id":2,"type":"border","predecessorId":2,"sOffset":46.9458860069}},{"geometry":{"coordinates":[[[4.53734788,0.04021701,98.06502578],[4.53734749,0.04021525,98.06451693],[4.5373471,0.0402135,98.06400377],[4.53734671,0.04021174,98.06348662],[4.53734631,0.04020998,98.06296585],[4.53734592,0.04020822,98.06244178],[4.53734552,0.04020646,98.06191475],[4.53734512,0.04020471,98.06138512],[4.53734472,0.04020295,98.06085322],[4.53734432,0.0402012,98.0603194],[4.53734391,0.04019944,98.059784],[4.53734351,0.04019768,98.05924736],[4.53734311,0.04019593,98.05870984],[4.5373427,0.04019417,98.05817177],[4.5373423,0.04019242,98.0576335],[4.53734189,0.04019066,98.05709538],[4.53734149,0.04018891,98.05655776],[4.53734108,0.04018715,98.05602096],[4.53734067,0.0401854,98.05548498],[4.53734027,0.04018364,98.05494946],[4.53733986,0.04018189,98.05441401],[4.53733945,0.04018013,98.05387827],[4.53733904,0.04017838,98.05334198],[4.53733864,0.04017662,98.0528053],[4.53733823,0.04017487,98.05226851],[4.53733782,0.04017311,98.0517319],[4.53733741,0.04017136,98.05119575],[4.537337,0.04016961,98.05066034],[4.53733659,0.04016785,98.05012596],[4.53733618,0.0401661,98.04959289],[4.53733577,0.04016434,98.04906141],[4.53733536,0.04016259,98.04853181],[4.53733495,0.04016084,98.04800437],[4.53733454,0.04015908,98.04747938],[4.53733413,0.04015733,98.04695713],[4.53733373,0.04015557,98.04643789],[4.53733332,0.04015382,98.04592196],[4.53733291,0.04015206,98.04540962],[4.53733251,0.04015031,98.04490116],[4.5373321,0.04014855,98.04439673],[4.5373317,0.0401468,98.04389639],[4.53733129,0.04014504,98.04340015],[4.53733089,0.04014329,98.04290808],[4.53733049,0.04014153,98.04242004],[4.53733009,0.04013978,98.04193528],[4.53732969,0.04013802,98.04145305],[4.53732929,0.04013626,98.04097325],[4.53732889,0.04013451,98.04049592],[4.53732849,0.04013275,98.04002114],[4.53732809,0.040131,98.03954894],[4.53732769,0.04012924,98.0390794],[4.53732729,0.04012748,98.03861256],[4.5373269,0.04012573,98.03814847],[4.5373265,0.04012397,98.0376872],[4.5373261,0.04012221,98.0372288],[4.53732571,0.04012046,98.03677333],[4.53732531,0.0401187,98.03632084],[4.53732492,0.04011694,98.03587139],[4.53732452,0.04011519,98.03542503],[4.53732413,0.04011343,98.03498182],[4.53732373,0.04011167,98.03454182],[4.53732334,0.04010991,98.03410508],[4.53732295,0.04010816,98.03367166],[4.53732256,0.0401064,98.03324162],[4.53732217,0.04010464,98.03281501],[4.53732178,0.04010288,98.03239188],[4.53732139,0.04010113,98.0319723],[4.537321,0.04009937,98.03155632],[4.53732061,0.04009761,98.031144],[4.53732022,0.04009585,98.03073539],[4.53731983,0.04009409,98.03033055],[4.53731945,0.04009233,98.02992938],[4.53731906,0.04009057,98.02953115],[4.53731868,0.04008882,98.02913497],[4.53731829,0.04008706,98.02873995],[4.5373179,0.0400853,98.02834529],[4.53731752,0.04008354,98.02795077],[4.53731713,0.04008178,98.02755634],[4.53731674,0.04008002,98.02716192],[4.53731636,0.04007826,98.02676748],[4.53731597,0.04007651,98.02637294],[4.53731558,0.04007475,98.02597824],[4.53731519,0.04007299,98.02558334],[4.5373148,0.04007123,98.02518816],[4.53731441,0.04006948,98.02479264],[4.53731402,0.04006772,98.02439674],[4.53731363,0.04006596,98.02400039],[4.53731323,0.0400642,98.02360352],[4.53731284,0.04006245,98.02320608],[4.53731245,0.04006069,98.02280802],[4.53731205,0.04005893,98.02240926],[4.53731166,0.04005718,98.02200975],[4.53731126,0.04005542,98.02160944],[4.53731086,0.04005366,98.02120825],[4.53731047,0.04005191,98.02080613],[4.53731007,0.04005015,98.0204031],[4.53730967,0.0400484,98.01999946],[4.53730927,0.04004664,98.01959561],[4.53730887,0.04004489,98.01919195],[4.53730847,0.04004313,98.01878889],[4.53730807,0.04004138,98.01838681],[4.53730767,0.04003962,98.01798614],[4.53730727,0.04003787,98.01758727],[4.53730687,0.04003611,98.0171906],[4.53730647,0.04003436,98.01679655],[4.53730607,0.0400326,98.01640551],[4.53730567,0.04003085,98.01601787],[4.53730527,0.04002909,98.01563342],[4.53730487,0.04002734,98.01525149],[4.53730448,0.04002558,98.01487195],[4.53730408,0.04002382,98.01449483],[4.53730368,0.04002207,98.01412013],[4.53730329,0.04002031,98.01374786],[4.53730289,0.04001856,98.01337803],[4.53730249,0.0400168,98.01301066],[4.5373021,0.04001505,98.01264574],[4.5373017,0.04001329,98.01228328],[4.53730131,0.04001153,98.01192331],[4.53730091,0.04000978,98.01156582],[4.53730052,0.04000802,98.01121082],[4.53730012,0.04000627,98.01085832],[4.53729973,0.04000451,98.01050834],[4.53729933,0.04000275,98.01016087],[4.53729894,0.040001,98.00981594],[4.53729855,0.03999924,98.00947354],[4.53729815,0.03999748,98.00913368],[4.53729776,0.03999573,98.00879651],[4.53729737,0.03999397,98.00846265],[4.53729698,0.03999221,98.00813273],[4.53729659,0.03999046,98.00780685],[4.5372962,0.0399887,98.00748501],[4.53729581,0.03998694,98.00716718],[4.53729542,0.03998519,98.00685334],[4.53729503,0.03998343,98.00654348],[4.53729465,0.03998167,98.00623757],[4.53729426,0.03997991,98.00593559],[4.53729388,0.03997816,98.00563754],[4.53729349,0.0399764,98.00534327],[4.53729311,0.03997464,98.00505222],[4.53729272,0.03997288,98.00476372],[4.53729234,0.03997112,98.00447712],[4.53729196,0.03996936,98.0041918],[4.53729157,0.03996761,98.00390713],[4.53729119,0.03996585,98.00362249],[4.5372908,0.03996409,98.00333723],[4.53729042,0.03996233,98.00305074],[4.53729003,0.03996057,98.00276238],[4.53728964,0.03995882,98.00247152],[4.53728925,0.03995706,98.00217753],[4.53728886,0.0399553,98.00187992],[4.53728847,0.03995355,98.0015788],[4.53728807,0.03995179,98.00127441],[4.53728768,0.03995004,98.00096699],[4.53728728,0.03994828,98.00065679],[4.53728688,0.03994653,98.00034405],[4.53728648,0.03994477,98.00002903],[4.53728608,0.03994302,97.99971197],[4.53728568,0.03994127,97.99939312],[4.53728528,0.03993951,97.99907272],[4.53728487,0.03993776,97.99875102],[4.53728447,0.03993601,97.99842827],[4.53728406,0.03993425,97.99810471],[4.53728366,0.0399325,97.9977806],[4.53728325,0.03993075,97.99745618],[4.53728284,0.03992899,97.99713171],[4.53728243,0.03992724,97.99680742],[4.53728203,0.03992549,97.99648359],[4.53728162,0.03992374,97.99616046],[4.53728121,0.03992199,97.99583832],[4.5372808,0.03992023,97.99551765],[4.53728039,0.03991848,97.99519892],[4.53727999,0.03991673,97.99488244],[4.53727958,0.03991498,97.99456835],[4.53727917,0.03991322,97.99425677],[4.53727876,0.03991147,97.9939478],[4.53727836,0.03990972,97.99364158],[4.53727795,0.03990797,97.99333819],[4.53727755,0.03990621,97.99303761],[4.53727714,0.03990446,97.99273976],[4.53727673,0.03990271,97.9924446],[4.53727633,0.03990096,97.99215206],[4.53727593,0.0398992,97.99186209],[4.53727552,0.03989745,97.99157462],[4.53727512,0.0398957,97.99128959],[4.53727471,0.03989394,97.99100694],[4.53727431,0.03989219,97.99072662],[4.53727391,0.03989044,97.99044856],[4.53727351,0.03988869,97.99017271],[4.5372731,0.03988693,97.98989899],[4.5372727,0.03988518,97.98962736],[4.5372723,0.03988343,97.98935776],[4.5372719,0.03988167,97.98909013],[4.53727149,0.03987992,97.98882444],[4.53727109,0.03987817,97.98856067],[4.53727069,0.03987641,97.98829878],[4.53727029,0.03987466,97.98803875],[4.53726989,0.03987291,97.98778054],[4.53726949,0.03987115,97.98752411],[4.53726909,0.0398694,97.98726945],[4.53726868,0.03986765,97.98701651],[4.53726828,0.03986589,97.98676527],[4.53726788,0.03986414,97.9865157],[4.53726748,0.03986239,97.98626775],[4.53726708,0.03986063,97.98602141],[4.53726668,0.03985888,97.98577664],[4.53726628,0.03985713,97.9855334],[4.53726588,0.03985537,97.98529167],[4.53726548,0.03985362,97.98505142],[4.53726508,0.03985187,97.9848126],[4.53726467,0.03985011,97.9845752],[4.53726427,0.03984836,97.98433917],[4.53726387,0.03984661,97.98410449],[4.53726347,0.03984485,97.98387112],[4.53726307,0.0398431,97.98363904],[4.53726267,0.03984135,97.9834082],[4.53726227,0.03983959,97.98317859],[4.53726187,0.03983784,97.98295019],[4.53726146,0.03983609,97.98272312],[4.53726106,0.03983433,97.98249754],[4.53726066,0.03983258,97.98227359],[4.53726026,0.03983083,97.9820514],[4.53725986,0.03982908,97.98183104],[4.53725946,0.03982732,97.98161255],[4.53725906,0.03982557,97.98139598],[4.53725866,0.03982382,97.98118138],[4.53725826,0.03982206,97.98096879],[4.53725785,0.03982031,97.98075827],[4.53725745,0.03981856,97.98054985],[4.53725705,0.0398168,97.98034358],[4.53725665,0.03981505,97.98013952],[4.53725626,0.0398133,97.9799377],[4.53725586,0.03981154,97.97973818],[4.53725546,0.03980979,97.979541],[4.53725506,0.03980804,97.97934621],[4.53725466,0.03980628,97.97915384],[4.53725426,0.03980453,97.97896394],[4.53725386,0.03980278,97.97877652],[4.53725347,0.03980102,97.97859162],[4.53725307,0.03979927,97.97840922],[4.53725267,0.03979752,97.97822923],[4.53725227,0.03979576,97.97805159],[4.53725188,0.03979401,97.97787622],[4.53725148,0.03979226,97.97770304],[4.53725109,0.0397905,97.97753197],[4.53725069,0.03978875,97.97736295],[4.53725029,0.03978699,97.97719588],[4.5372499,0.03978524,97.9770307],[4.5372495,0.03978349,97.97686733],[4.53724911,0.03978173,97.9767057],[4.53724871,0.03977998,97.97654571],[4.53724832,0.03977822,97.97638731],[4.53724792,0.03977647,97.97623041],[4.53724753,0.03977472,97.97607494],[4.53724713,0.03977296,97.97592074],[4.53724674,0.03977121,97.9757674],[4.53724634,0.03976945,97.97561442],[4.53724594,0.0397677,97.97546133],[4.53724555,0.03976595,97.9753077],[4.53724515,0.03976419,97.97515308],[4.53724475,0.03976244,97.97499706],[4.53724435,0.03976069,97.97483919],[4.53724395,0.03975894,97.97467913],[4.53724355,0.0397572,97.97451702],[4.53724315,0.03975545,97.97435307],[4.53724275,0.0397537,97.97418749],[4.53724234,0.03975194,97.97402051],[4.53724194,0.03975019,97.97385235],[4.53724153,0.03974844,97.97368323],[4.53724112,0.03974669,97.97351338],[4.53724071,0.03974494,97.973343],[4.53724031,0.03974319,97.97317233],[4.5372399,0.03974144,97.97300159],[4.53723949,0.03973969,97.97283099],[4.53723908,0.03973794,97.97266075],[4.53723867,0.03973619,97.97249111],[4.53723826,0.03973444,97.97232227],[4.53723785,0.03973269,97.97215446],[4.53723744,0.03973094,97.97198791],[4.53723703,0.03972918,97.97182283],[4.53723662,0.03972743,97.97165944],[4.53723621,0.03972568,97.97149796],[4.5372358,0.03972393,97.97133863],[4.53723539,0.03972218,97.97118167],[4.53723498,0.03972043,97.97102732],[4.53723457,0.03971868,97.97087563],[4.53723417,0.03971693,97.97072627],[4.53723376,0.03971518,97.97057901],[4.53723335,0.03971343,97.97043362],[4.53723294,0.03971168,97.9702899],[4.53723253,0.03970992,97.97014762],[4.53723213,0.03970817,97.97000658],[4.53723172,0.03970642,97.96986655],[4.53723131,0.03970467,97.96972733],[4.5372309,0.03970292,97.96958869],[4.53723049,0.03970117,97.96945043],[4.53723008,0.03969942,97.96931232],[4.53722967,0.03969767,97.96917442],[4.53722926,0.03969591,97.96903699],[4.53722885,0.03969416,97.9689003],[4.53722844,0.03969241,97.96876465],[4.53722803,0.03969066,97.9686303],[4.53722762,0.03968891,97.96849754],[4.53722721,0.03968716,97.96836665],[4.5372268,0.03968541,97.96823791],[4.53722639,0.03968366,97.96811159],[4.53722599,0.03968191,97.96798799],[4.53722558,0.03968015,97.96786738],[4.53722517,0.0396784,97.96775003],[4.53722476,0.03967665,97.96763623],[4.53722435,0.0396749,97.96752627],[4.53722395,0.03967315,97.96742041],[4.53722354,0.03967139,97.96731894],[4.53722314,0.03966964,97.96722211],[4.53722274,0.03966789,97.96712942],[4.53722234,0.03966613,97.96703965],[4.53722193,0.03966438,97.96695173],[4.53722153,0.03966263,97.96686538],[4.53722113,0.03966088,97.96678049],[4.53722073,0.03965912,97.96669694],[4.53722033,0.03965737,97.96661461],[4.53721992,0.03965562,97.96653337],[4.53721952,0.03965386,97.96645311],[4.53721912,0.03965211,97.9663737],[4.53721872,0.03965036,97.96629505],[4.53721831,0.0396486,97.96621718],[4.53721791,0.03964685,97.96614012],[4.53721751,0.0396451,97.96606391],[4.5372171,0.03964334,97.96598858],[4.5372167,0.03964159,97.96591417],[4.5372163,0.03963984,97.9658407],[4.53721589,0.03963808,97.96576822],[4.53721549,0.03963633,97.96569676],[4.53721509,0.03963458,97.96562636],[4.53721468,0.03963282,97.96555707],[4.53721428,0.03963107,97.96548896],[4.53721388,0.03962932,97.96542208],[4.53721347,0.03962756,97.96535649],[4.53721307,0.03962581,97.96529227],[4.53721266,0.03962406,97.96522945],[4.53721226,0.0396223,97.96516811],[4.53721186,0.03962055,97.96510831],[4.53721145,0.0396188,97.9650501],[4.53721105,0.03961704,97.96499354],[4.53721065,0.03961529,97.96493871],[4.53721024,0.03961354,97.96488564],[4.53720984,0.03961178,97.96483439],[4.53720944,0.03961003,97.96478463],[4.53720903,0.03960827,97.96473626],[4.53720863,0.03960652,97.96468936],[4.53720823,0.03960477,97.964644],[4.53720783,0.03960301,97.96460026],[4.53720742,0.03960126,97.96455822],[4.53720702,0.0395995,97.96451794],[4.53720662,0.03959775,97.96447951],[4.53720622,0.039596,97.964443],[4.53720581,0.03959424,97.96440848],[4.53720541,0.03959249,97.96437603],[4.53720501,0.03959073,97.96434573],[4.53720461,0.03958898,97.96431764],[4.53720421,0.03958722,97.96429185],[4.53720381,0.03958547,97.96426842],[4.53720341,0.03958372,97.96424744],[4.53720301,0.03958196,97.96422898],[4.53720261,0.03958021,97.96421312],[4.53720221,0.03957845,97.96419992],[4.53720181,0.03957669,97.96418946],[4.53720142,0.03957494,97.96418182],[4.53720102,0.03957318,97.96417708],[4.53720062,0.03957143,97.9641753],[4.53720023,0.03956967,97.96417657],[4.53719983,0.03956792,97.96418095],[4.53719944,0.03956616,97.96418846],[4.53719904,0.0395644,97.96419778],[4.53719865,0.03956265,97.96420624],[4.53719825,0.03956089,97.96421093],[4.53719785,0.03955914,97.96420821],[4.53719745,0.03955738,97.96419428],[4.53719704,0.03955563,97.96416603],[4.53719662,0.03955388,97.96412328],[4.53719621,0.03955213,97.96406678],[4.53719578,0.03955038,97.96399816],[4.53719536,0.03954863,97.96391927],[4.53719493,0.03954688,97.96383198],[4.5371945,0.03954513,97.96373812],[4.53719407,0.03954338,97.96363956],[4.53719363,0.03954164,97.96353815],[4.5371932,0.03953989,97.96343575],[4.53719276,0.03953814,97.9633342],[4.53719233,0.0395364,97.96323535],[4.53719189,0.03953465,97.96314078],[4.53719146,0.0395329,97.96305089],[4.53719103,0.03953115,97.96296582],[4.5371906,0.0395294,97.9628857],[4.53719017,0.03952766,97.96281068],[4.53718974,0.03952591,97.96274089],[4.53718932,0.03952416,97.96267645],[4.53718889,0.03952241,97.96261736],[4.53718847,0.03952066,97.96256295],[4.53718805,0.03951891,97.9625124],[4.53718762,0.03951716,97.96246492],[4.5371872,0.03951541,97.96241966],[4.53718678,0.03951366,97.96237584],[4.53718636,0.03951191,97.96233262],[4.53718593,0.03951016,97.96228933],[4.53718551,0.03950841,97.96224581],[4.53718509,0.03950666,97.96220202],[4.53718466,0.03950491,97.96215794],[4.53718424,0.03950316,97.96211354],[4.53718382,0.03950141,97.96206889],[4.53718339,0.03949966,97.96202419],[4.53718296,0.03949791,97.96197963],[4.53718254,0.03949616,97.96193537],[4.53718211,0.03949441,97.96189157],[4.53718169,0.03949266,97.96184836],[4.53718126,0.03949091,97.96180589],[4.53718083,0.03948916,97.96176428],[4.53718041,0.03948741,97.96172368],[4.53717998,0.03948566,97.96168422],[4.53717955,0.03948391,97.96164604],[4.53717913,0.03948216,97.96160928],[4.5371787,0.03948041,97.96157407],[4.53717828,0.03947866,97.96154054],[4.53717785,0.03947691,97.96150885],[4.53717743,0.03947516,97.96147912],[4.537177,0.03947341,97.96145148],[4.53717658,0.03947166,97.96142609],[4.53717615,0.03946991,97.96140307],[4.53717573,0.03946816,97.96138255],[4.5371753,0.03946641,97.96136469],[4.53717488,0.03946466,97.9613496],[4.53717446,0.03946291,97.96133737],[4.53717404,0.03946116,97.96132776],[4.53717361,0.0394594,97.96132052],[4.53717319,0.03945765,97.96131534],[4.53717277,0.0394559,97.96131197],[4.53717235,0.03945415,97.96131011],[4.53717193,0.0394524,97.96130948],[4.53717151,0.03945065,97.96130982],[4.53717109,0.0394489,97.96131083],[4.53717067,0.03944714,97.96131224],[4.53717025,0.03944539,97.96131378],[4.53716982,0.03944364,97.96131515],[4.5371694,0.03944189,97.9613161],[4.53716898,0.03944014,97.96131652],[4.53716856,0.03943839,97.96131648],[4.53716813,0.03943664,97.96131607],[4.53716771,0.03943489,97.96131538],[4.53716728,0.03943314,97.96131451],[4.53716686,0.03943139,97.96131355],[4.53716643,0.03942963,97.9613126],[4.53716601,0.03942788,97.96131175],[4.53716558,0.03942613,97.96131108],[4.53716516,0.03942438,97.9613107],[4.53716473,0.03942263,97.9613107],[4.5371643,0.03942088,97.96131117],[4.53716388,0.03941913,97.96131228],[4.53716345,0.03941738,97.96131427],[4.53716302,0.03941563,97.96131738],[4.5371626,0.03941388,97.96132184],[4.53716217,0.03941213,97.9613279],[4.53716174,0.03941038,97.9613358],[4.53716132,0.03940863,97.96134577],[4.53716089,0.03940688,97.96135806],[4.53716047,0.03940513,97.96137289],[4.53716004,0.03940338,97.96139035],[4.53715962,0.03940162,97.96141036],[4.5371592,0.03939987,97.96143286],[4.53715877,0.03939812,97.96145776],[4.53715835,0.03939637,97.96148498],[4.53715793,0.03939462,97.96151446],[4.53715751,0.03939287,97.96154613],[4.53715709,0.03939111,97.96157995],[4.53715667,0.03938936,97.96161588],[4.53715625,0.03938761,97.96165388],[4.53715582,0.03938586,97.96169389],[4.5371554,0.03938411,97.96173589],[4.53715499,0.03938235,97.96177982],[4.53715457,0.0393806,97.96182564],[4.53715415,0.03937885,97.96187332],[4.53715373,0.0393771,97.9619228],[4.53715331,0.03937534,97.96197402],[4.53715289,0.03937359,97.96202683],[4.53715247,0.03937184,97.96208104],[4.53715205,0.03937008,97.96213648],[4.53715164,0.03936833,97.96219296],[4.53715122,0.03936658,97.96225031],[4.5371508,0.03936483,97.96230834],[4.53715038,0.03936307,97.96236688],[4.53714996,0.03936132,97.96242575],[4.53714954,0.03935957,97.96248476],[4.53714912,0.03935781,97.96254375],[4.5371487,0.03935606,97.96260264],[4.53714828,0.03935431,97.96266147],[4.53714786,0.03935256,97.96272029],[4.53714744,0.0393508,97.96277913],[4.53714702,0.03934905,97.96283803],[4.5371466,0.0393473,97.96289703],[4.53714618,0.03934555,97.96295619],[4.53714576,0.03934379,97.96301553],[4.53714534,0.03934204,97.96307509],[4.53714491,0.03934029,97.96313493],[4.53714449,0.03933854,97.96319508],[4.53714407,0.03933678,97.96325558],[4.53714365,0.03933503,97.96331646],[4.53714322,0.03933328,97.96337778],[4.5371428,0.03933153,97.96343956],[4.53714238,0.03932978,97.96350182],[4.53714195,0.03932802,97.96356458],[4.53714153,0.03932627,97.96362785],[4.53714111,0.03932452,97.96369163],[4.53714068,0.03932277,97.96375579],[4.53714026,0.03932101,97.96382016],[4.53713984,0.03931926,97.96388457],[4.53713941,0.03931751,97.96394887],[4.53713899,0.03931576,97.96401289],[4.53713856,0.03931401,97.96407647],[4.53713814,0.03931226,97.96413945],[4.53713771,0.0393105,97.96420169],[4.53713728,0.03930875,97.96426318],[4.53713686,0.039307,97.96432394],[4.53713643,0.03930525,97.96438397],[4.537136,0.0393035,97.96444329],[4.53713557,0.03930175,97.96450191],[4.53713514,0.0393,97.96455986],[4.53713471,0.03929825,97.96461713],[4.53713428,0.03929649,97.9646737],[4.53713385,0.03929474,97.96472936],[4.53713342,0.03929299,97.9647839],[4.53713299,0.03929124,97.96483721],[4.53713255,0.03928949,97.96488933],[4.53713212,0.03928774,97.96494033],[4.53713169,0.03928599,97.96499024],[4.53713125,0.03928424,97.96503912],[4.53713082,0.03928249,97.96508703],[4.53713038,0.03928074,97.965134],[4.53712995,0.03927899,97.96518008],[4.53712951,0.03927725,97.96522534],[4.53712907,0.0392755,97.96526982],[4.53712863,0.03927375,97.96531357],[4.53712819,0.039272,97.96535663],[4.53712776,0.03927025,97.96539906],[4.53712732,0.0392685,97.96544092],[4.53712688,0.03926675,97.96548224],[4.53712644,0.039265,97.96552307],[4.537126,0.03926325,97.96556348],[4.53712555,0.03926151,97.96560351],[4.53712511,0.03925976,97.9656432],[4.53712467,0.03925801,97.96568261],[4.53712423,0.03925626,97.96572178],[4.53712379,0.03925451,97.96576077],[4.53712334,0.03925276,97.96579963],[4.5371229,0.03925102,97.96583841],[4.53712246,0.03924927,97.96587715],[4.53712201,0.03924752,97.96591591],[4.53712157,0.03924577,97.9659549],[4.53712113,0.03924402,97.96599446],[4.53712068,0.03924228,97.96603479],[4.53712024,0.03924053,97.96607593],[4.53711979,0.03923878,97.96611781],[4.53711935,0.03923703,97.96616026],[4.53711891,0.03923529,97.96620313],[4.53711846,0.03923354,97.96624624],[4.53711802,0.03923179,97.96628943],[4.53711757,0.03923004,97.96633253],[4.53711713,0.03922829,97.96637538],[4.53711668,0.03922655,97.96641781],[4.53711624,0.0392248,97.96645966],[4.53711579,0.03922305,97.96650076],[4.53711534,0.0392213,97.96654095],[4.53711489,0.03921956,97.96658005],[4.53711445,0.03921781,97.96661792],[4.537114,0.03921606,97.96665437],[4.53711355,0.03921432,97.96668925],[4.5371131,0.03921257,97.96672238],[4.53711264,0.03921082,97.96675362],[4.53711219,0.03920908,97.96678279],[4.53711174,0.03920733,97.96680972],[4.53711128,0.03920558,97.96683426],[4.53711083,0.03920384,97.96685623],[4.53711037,0.03920209,97.96687549],[4.53710991,0.03920035,97.96689185],[4.53710946,0.0391986,97.96690515],[4.537109,0.03919686,97.96691524],[4.53710853,0.03919512,97.96692195],[4.53710807,0.03919337,97.96692507],[4.53710761,0.03919163,97.96692416],[4.53710714,0.03918989,97.96691883],[4.53710667,0.03918814,97.96690889],[4.5371062,0.0391864,97.96689422],[4.53710573,0.03918466,97.9668747],[4.53710526,0.03918292,97.96685023],[4.53710478,0.03918118,97.96682068],[4.5371043,0.03917944,97.96678596],[4.53710383,0.0391777,97.96674621],[4.53710334,0.03917596,97.96670184],[4.53710286,0.03917422,97.96665326],[4.53710238,0.03917248,97.96660089],[4.53710189,0.03917074,97.96654514],[4.53710141,0.039169,97.96648643],[4.53710092,0.03916726,97.96642516],[4.53710043,0.03916553,97.96636175],[4.53709994,0.03916379,97.96629661],[4.53709945,0.03916206,97.96623016],[4.53709896,0.03916032,97.96616281],[4.53709847,0.03915858,97.96609497],[4.53709798,0.03915685,97.96602704],[4.53709749,0.03915511,97.96595945],[4.537097,0.03915338,97.9658926],[4.53709651,0.03915164,97.96582691],[4.53709602,0.03914991,97.96576277],[4.53709553,0.03914817,97.96570039],[4.53709504,0.03914644,97.96563977],[4.53709455,0.0391447,97.96558091],[4.53709406,0.03914296,97.96552378],[4.53709357,0.03914123,97.96546836],[4.53709308,0.03913949,97.96541465],[4.53709259,0.03913776,97.96536261],[4.5370921,0.03913602,97.96531224],[4.53709162,0.03913428,97.96526351],[4.53709113,0.03913255,97.96521641],[4.53709064,0.03913081,97.96517091],[4.53709015,0.03912908,97.96512701],[4.53708967,0.03912734,97.96508469],[4.53708918,0.0391256,97.96504391],[4.53708869,0.03912387,97.96500468],[4.53708821,0.03912213,97.96496697],[4.53708772,0.03912039,97.96493076],[4.53708723,0.03911866,97.96489603],[4.53708675,0.03911692,97.96486278],[4.53708626,0.03911519,97.96483097],[4.53708578,0.03911345,97.96480059],[4.53708529,0.03911171,97.96477163],[4.53708481,0.03910997,97.96474406],[4.53708432,0.03910824,97.96471788],[4.53708384,0.0391065,97.96469305],[4.53708335,0.03910476,97.96466957],[4.53708287,0.03910303,97.96464741],[4.53708238,0.03910129,97.96462656],[4.5370819,0.03909955,97.964607],[4.53708141,0.03909782,97.96458872],[4.53708093,0.03909608,97.96457168],[4.53708045,0.03909434,97.96455589],[4.53707996,0.0390926,97.96454132],[4.53707988,0.03909229,97.9645388],[4.53712349,0.03908173,97.9645388],[4.53712358,0.03908205,97.96454132],[4.53712406,0.03908378,97.96455589],[4.53712455,0.03908552,97.96457168],[4.53712503,0.03908726,97.96458872],[4.53712552,0.039089,97.964607],[4.537126,0.03909073,97.96462656],[4.53712648,0.03909247,97.96464741],[4.53712697,0.03909421,97.96466957],[4.53712745,0.03909595,97.96469305],[4.53712794,0.03909768,97.96471788],[4.53712842,0.03909942,97.96474406],[4.53712891,0.03910116,97.96477163],[4.53712939,0.03910289,97.96480059],[4.53712988,0.03910463,97.96483097],[4.53713036,0.03910637,97.96486278],[4.53713085,0.03910811,97.96489603],[4.53713134,0.03910984,97.96493076],[4.53713182,0.03911158,97.96496697],[4.53713231,0.03911332,97.96500468],[4.5371328,0.03911505,97.96504391],[4.53713328,0.03911679,97.96508469],[4.53713377,0.03911853,97.96512701],[4.53713426,0.03912026,97.96517091],[4.53713475,0.039122,97.96521641],[4.53713523,0.03912374,97.96526351],[4.53713572,0.03912547,97.96531224],[4.53713621,0.03912721,97.96536261],[4.5371367,0.03912894,97.96541465],[4.53713719,0.03913068,97.96546836],[4.53713768,0.03913242,97.96552378],[4.53713817,0.03913415,97.96558091],[4.53713866,0.03913589,97.96563977],[4.53713915,0.03913762,97.96570039],[4.53713964,0.03913936,97.96576277],[4.53714013,0.0391411,97.96582691],[4.53714062,0.03914283,97.9658926],[4.53714111,0.03914457,97.96595945],[4.5371416,0.0391463,97.96602704],[4.53714209,0.03914804,97.96609497],[4.53714258,0.03914978,97.96616281],[4.53714307,0.03915151,97.96623016],[4.53714356,0.03915325,97.96629661],[4.53714405,0.03915499,97.96636175],[4.53714454,0.03915672,97.96642516],[4.53714503,0.03915846,97.96648643],[4.53714551,0.0391602,97.96654514],[4.537146,0.03916194,97.96660089],[4.53714648,0.03916367,97.96665326],[4.53714696,0.03916541,97.96670184],[4.53714744,0.03916715,97.96674621],[4.53714792,0.03916889,97.96678596],[4.5371484,0.03917063,97.96682068],[4.53714887,0.03917237,97.96685023],[4.53714935,0.03917412,97.9668747],[4.53714982,0.03917586,97.96689422],[4.53715029,0.0391776,97.96690889],[4.53715076,0.03917934,97.96691883],[4.53715122,0.03918108,97.96692416],[4.53715169,0.03918283,97.96692507],[4.53715215,0.03918457,97.96692195],[4.53715261,0.03918631,97.96691524],[4.53715307,0.03918806,97.96690515],[4.53715353,0.0391898,97.96689185],[4.53715399,0.03919155,97.96687549],[4.53715445,0.03919329,97.96685623],[4.5371549,0.03919504,97.96683426],[4.53715536,0.03919678,97.96680972],[4.53715581,0.03919853,97.96678279],[4.53715626,0.03920028,97.96675362],[4.53715671,0.03920202,97.96672238],[4.53715716,0.03920377,97.96668925],[4.53715761,0.03920552,97.96665437],[4.53715806,0.03920726,97.96661792],[4.53715851,0.03920901,97.96658005],[4.53715896,0.03921076,97.96654095],[4.5371594,0.0392125,97.96650076],[4.53715985,0.03921425,97.96645966],[4.5371603,0.039216,97.96641781],[4.53716074,0.03921775,97.96637538],[4.53716119,0.03921949,97.96633253],[4.53716163,0.03922124,97.96628943],[4.53716208,0.03922299,97.96624624],[4.53716252,0.03922474,97.96620313],[4.53716297,0.03922649,97.96616026],[4.53716341,0.03922823,97.96611781],[4.53716385,0.03922998,97.96607593],[4.5371643,0.03923173,97.96603479],[4.53716474,0.03923348,97.96599446],[4.53716518,0.03923523,97.9659549],[4.53716563,0.03923697,97.96591591],[4.53716607,0.03923872,97.96587715],[4.53716652,0.03924047,97.96583841],[4.53716696,0.03924222,97.96579963],[4.5371674,0.03924397,97.96576077],[4.53716784,0.03924571,97.96572178],[4.53716829,0.03924746,97.96568261],[4.53716873,0.03924921,97.9656432],[4.53716917,0.03925096,97.96560351],[4.53716961,0.03925271,97.96556348],[4.53717005,0.03925446,97.96552307],[4.53717049,0.03925621,97.96548224],[4.53717093,0.03925795,97.96544092],[4.53717137,0.0392597,97.96539906],[4.53717181,0.03926145,97.96535663],[4.53717225,0.0392632,97.96531357],[4.53717268,0.03926495,97.96526982],[4.53717312,0.0392667,97.96522534],[4.53717356,0.03926845,97.96518008],[4.537174,0.0392702,97.965134],[4.53717443,0.03927195,97.96508703],[4.53717487,0.0392737,97.96503912],[4.5371753,0.03927545,97.96499024],[4.53717574,0.0392772,97.96494033],[4.53717617,0.03927895,97.96488933],[4.5371766,0.0392807,97.96483721],[4.53717703,0.03928245,97.9647839],[4.53717746,0.0392842,97.96472936],[4.5371779,0.03928595,97.9646737],[4.53717833,0.0392877,97.96461713],[4.53717876,0.03928945,97.96455986],[4.53717918,0.0392912,97.96450191],[4.53717961,0.03929295,97.96444329],[4.53718004,0.03929471,97.96438397],[4.53718047,0.03929646,97.96432394],[4.5371809,0.03929821,97.96426318],[4.53718132,0.03929996,97.96420169],[4.53718175,0.03930171,97.96413945],[4.53718218,0.03930346,97.96407647],[4.5371826,0.03930522,97.96401289],[4.53718303,0.03930697,97.96394887],[4.53718345,0.03930872,97.96388457],[4.53718387,0.03931047,97.96382016],[4.5371843,0.03931223,97.96375579],[4.53718472,0.03931398,97.96369163],[4.53718514,0.03931573,97.96362785],[4.53718557,0.03931748,97.96356458],[4.53718599,0.03931924,97.96350182],[4.53718641,0.03932099,97.96343956],[4.53718684,0.03932274,97.96337778],[4.53718726,0.03932449,97.96331646],[4.53718768,0.03932625,97.96325558],[4.53718811,0.039328,97.96319508],[4.53718853,0.03932975,97.96313493],[4.53718895,0.0393315,97.96307509],[4.53718937,0.03933326,97.96301553],[4.53718979,0.03933501,97.96295619],[4.53719021,0.03933676,97.96289703],[4.53719064,0.03933851,97.96283803],[4.53719106,0.03934027,97.96277913],[4.53719148,0.03934202,97.96272029],[4.5371919,0.03934377,97.96266147],[4.53719232,0.03934553,97.96260264],[4.53719274,0.03934728,97.96254375],[4.53719316,0.03934903,97.96248476],[4.53719358,0.03935079,97.96242575],[4.53719399,0.03935254,97.96236688],[4.53719441,0.03935429,97.96230834],[4.53719483,0.03935605,97.96225031],[4.53719525,0.0393578,97.96219296],[4.53719567,0.03935955,97.96213648],[4.53719609,0.03936131,97.96208104],[4.5371965,0.03936306,97.96202683],[4.53719692,0.03936481,97.96197402],[4.53719734,0.03936657,97.9619228],[4.53719776,0.03936832,97.96187332],[4.53719818,0.03937007,97.96182564],[4.5371986,0.03937182,97.96177982],[4.53719902,0.03937358,97.96173589],[4.53719944,0.03937533,97.96169389],[4.53719986,0.03937708,97.96165388],[4.53720028,0.03937883,97.96161588],[4.5372007,0.03938059,97.96157995],[4.53720112,0.03938234,97.96154613],[4.53720154,0.03938409,97.96151446],[4.53720197,0.03938584,97.96148498],[4.53720239,0.03938759,97.96145776],[4.53720281,0.03938935,97.96143286],[4.53720324,0.0393911,97.96141036],[4.53720366,0.03939285,97.96139035],[4.53720408,0.0393946,97.96137289],[4.53720451,0.03939635,97.96135806],[4.53720493,0.03939811,97.96134577],[4.53720536,0.03939986,97.9613358],[4.53720579,0.03940161,97.9613279],[4.53720621,0.03940336,97.96132184],[4.53720664,0.03940511,97.96131738],[4.53720707,0.03940686,97.96131427],[4.53720749,0.03940861,97.96131228],[4.53720792,0.03941036,97.96131117],[4.53720835,0.03941211,97.9613107],[4.53720877,0.03941387,97.9613107],[4.5372092,0.03941562,97.96131108],[4.53720962,0.03941737,97.96131175],[4.53721005,0.03941912,97.9613126],[4.53721048,0.03942087,97.96131355],[4.5372109,0.03942262,97.96131451],[4.53721133,0.03942437,97.96131538],[4.53721175,0.03942612,97.96131607],[4.53721217,0.03942788,97.96131648],[4.5372126,0.03942963,97.96131652],[4.53721302,0.03943138,97.9613161],[4.53721344,0.03943313,97.96131515],[4.53721386,0.03943488,97.96131378],[4.53721429,0.03943663,97.96131224],[4.53721471,0.03943839,97.96131083],[4.53721513,0.03944014,97.96130982],[4.53721555,0.03944189,97.96130948],[4.53721597,0.03944364,97.96131011],[4.53721639,0.0394454,97.96131197],[4.53721681,0.03944715,97.96131534],[4.53721723,0.0394489,97.96132052],[4.53721766,0.03945065,97.96132776],[4.53721808,0.0394524,97.96133737],[4.5372185,0.03945415,97.9613496],[4.53721892,0.03945591,97.96136469],[4.53721935,0.03945766,97.96138255],[4.53721977,0.03945941,97.96140307],[4.53722019,0.03946116,97.96142609],[4.53722062,0.03946291,97.96145148],[4.53722105,0.03946466,97.96147912],[4.53722147,0.03946641,97.96150885],[4.5372219,0.03946816,97.96154054],[4.53722232,0.03946991,97.96157407],[4.53722275,0.03947166,97.96160928],[4.53722318,0.03947342,97.96164604],[4.5372236,0.03947517,97.96168422],[4.53722403,0.03947692,97.96172368],[4.53722445,0.03947867,97.96176428],[4.53722488,0.03948042,97.96180589],[4.53722531,0.03948217,97.96184836],[4.53722573,0.03948392,97.96189157],[4.53722616,0.03948567,97.96193537],[4.53722659,0.03948742,97.96197963],[4.53722701,0.03948917,97.96202419],[4.53722744,0.03949092,97.96206889],[4.53722786,0.03949267,97.96211354],[4.53722829,0.03949442,97.96215794],[4.53722871,0.03949617,97.96220202],[4.53722913,0.03949792,97.96224581],[4.53722956,0.03949968,97.96228933],[4.53722998,0.03950143,97.96233262],[4.5372304,0.03950318,97.96237584],[4.53723083,0.03950493,97.96241966],[4.53723125,0.03950668,97.96246492],[4.53723167,0.03950843,97.9625124],[4.53723209,0.03951018,97.96256295],[4.53723252,0.03951193,97.96261736],[4.53723294,0.03951368,97.96267645],[4.53723337,0.03951543,97.96274089],[4.5372338,0.03951718,97.96281068],[4.53723423,0.03951893,97.9628857],[4.53723466,0.03952068,97.96296582],[4.53723509,0.03952243,97.96305089],[4.53723552,0.03952418,97.96314078],[4.53723595,0.03952593,97.96323535],[4.53723639,0.03952768,97.9633342],[4.53723682,0.03952943,97.96343575],[4.53723726,0.03953117,97.96353815],[4.53723769,0.03953292,97.96363956],[4.53723813,0.03953467,97.96373812],[4.53723856,0.03953642,97.96383198],[4.53723899,0.03953817,97.96391927],[4.53723941,0.03953992,97.96399816],[4.53723983,0.03954167,97.96406678],[4.53724025,0.03954342,97.96412328],[4.53724067,0.03954517,97.96416603],[4.53724107,0.03954693,97.96419428],[4.53724148,0.03954868,97.96420821],[4.53724188,0.03955044,97.96421093],[4.53724227,0.0395522,97.96420624],[4.53724267,0.03955396,97.96419778],[4.53724307,0.03955571,97.96418846],[4.53724346,0.03955747,97.96418095],[4.53724386,0.03955923,97.96417657],[4.53724425,0.03956098,97.9641753],[4.53724465,0.03956274,97.96417708],[4.53724505,0.0395645,97.96418182],[4.53724544,0.03956625,97.96418946],[4.53724584,0.03956801,97.96419992],[4.53724624,0.03956977,97.96421312],[4.53724664,0.03957152,97.96422898],[4.53724704,0.03957328,97.96424744],[4.53724744,0.03957504,97.96426842],[4.53724784,0.03957679,97.96429185],[4.53724824,0.03957855,97.96431764],[4.53724864,0.0395803,97.96434573],[4.53724905,0.03958206,97.96437603],[4.53724945,0.03958381,97.96440848],[4.53724985,0.03958557,97.964443],[4.53725025,0.03958733,97.96447951],[4.53725065,0.03958908,97.96451794],[4.53725106,0.03959084,97.96455822],[4.53725146,0.03959259,97.96460026],[4.53725186,0.03959435,97.964644],[4.53725227,0.0395961,97.96468936],[4.53725267,0.03959786,97.96473626],[4.53725307,0.03959961,97.96478463],[4.53725348,0.03960137,97.96483439],[4.53725388,0.03960312,97.96488564],[4.53725428,0.03960488,97.96493871],[4.53725469,0.03960663,97.96499354],[4.53725509,0.03960839,97.9650501],[4.53725549,0.03961014,97.96510831],[4.5372559,0.0396119,97.96516811],[4.5372563,0.03961365,97.96522945],[4.53725671,0.03961541,97.96529227],[4.53725711,0.03961716,97.96535649],[4.53725751,0.03961892,97.96542208],[4.53725792,0.03962067,97.96548896],[4.53725832,0.03962242,97.96555707],[4.53725873,0.03962418,97.96562636],[4.53725913,0.03962593,97.96569676],[4.53725953,0.03962769,97.96576822],[4.53725994,0.03962944,97.9658407],[4.53726034,0.0396312,97.96591417],[4.53726075,0.03963295,97.96598858],[4.53726115,0.03963471,97.96606391],[4.53726155,0.03963646,97.96614012],[4.53726196,0.03963822,97.96621718],[4.53726236,0.03963997,97.96629505],[4.53726276,0.03964173,97.9663737],[4.53726316,0.03964348,97.96645311],[4.53726357,0.03964524,97.96653337],[4.53726397,0.03964699,97.96661461],[4.53726437,0.03964875,97.96669694],[4.53726477,0.0396505,97.96678049],[4.53726518,0.03965226,97.96686538],[4.53726558,0.03965401,97.96695173],[4.53726598,0.03965577,97.96703965],[4.53726638,0.03965752,97.96712942],[4.53726679,0.03965928,97.96722211],[4.53726719,0.03966103,97.96731894],[4.5372676,0.03966278,97.96742041],[4.537268,0.03966454,97.96752627],[4.53726841,0.03966629,97.96763623],[4.53726882,0.03966804,97.96775003],[4.53726922,0.0396698,97.96786738],[4.53726963,0.03967155,97.96798799],[4.53727004,0.0396733,97.96811159],[4.53727045,0.03967506,97.96823791],[4.53727086,0.03967681,97.96836665],[4.53727127,0.03967856,97.96849754],[4.53727168,0.03968032,97.9686303],[4.53727209,0.03968207,97.96876465],[4.5372725,0.03968382,97.9689003],[4.53727291,0.03968557,97.96903699],[4.53727332,0.03968733,97.96917442],[4.53727373,0.03968908,97.96931232],[4.53727414,0.03969083,97.96945043],[4.53727455,0.03969258,97.96958869],[4.53727496,0.03969434,97.96972733],[4.53727537,0.03969609,97.96986655],[4.53727578,0.03969784,97.97000658],[4.53727619,0.0396996,97.97014762],[4.5372766,0.03970135,97.9702899],[4.537277,0.0397031,97.97043362],[4.53727741,0.03970486,97.97057901],[4.53727782,0.03970661,97.97072627],[4.53727823,0.03970836,97.97087563],[4.53727864,0.03971011,97.97102732],[4.53727905,0.03971187,97.97118167],[4.53727946,0.03971362,97.97133863],[4.53727987,0.03971537,97.97149796],[4.53728028,0.03971712,97.97165944],[4.53728069,0.03971888,97.97182283],[4.5372811,0.03972063,97.97198791],[4.53728151,0.03972238,97.97215446],[4.53728192,0.03972413,97.97232227],[4.53728233,0.03972589,97.97249111],[4.53728274,0.03972764,97.97266075],[4.53728315,0.03972939,97.97283099],[4.53728356,0.03973114,97.97300159],[4.53728397,0.0397329,97.97317233],[4.53728438,0.03973465,97.973343],[4.53728478,0.0397364,97.97351338],[4.53728519,0.03973815,97.97368323],[4.5372856,0.03973991,97.97385235],[4.537286,0.03974166,97.97402051],[4.53728641,0.03974341,97.97418749],[4.53728681,0.03974517,97.97435307],[4.53728722,0.03974692,97.97451702],[4.53728761,0.03974866,97.97467913],[4.53728802,0.03975041,97.97483919],[4.53728842,0.03975217,97.97499706],[4.53728882,0.03975392,97.97515308],[4.53728921,0.03975568,97.9753077],[4.53728961,0.03975743,97.97546133],[4.53729001,0.03975919,97.97561442],[4.5372904,0.03976095,97.9757674],[4.5372908,0.0397627,97.97592074],[4.5372912,0.03976446,97.97607494],[4.53729159,0.03976621,97.97623041],[4.53729199,0.03976797,97.97638731],[4.53729238,0.03976972,97.97654571],[4.53729278,0.03977148,97.9767057],[4.53729317,0.03977324,97.97686733],[4.53729357,0.03977499,97.9770307],[4.53729397,0.03977675,97.97719588],[4.53729436,0.0397785,97.97736295],[4.53729476,0.03978026,97.97753197],[4.53729515,0.03978202,97.97770304],[4.53729555,0.03978377,97.97787622],[4.53729595,0.03978553,97.97805159],[4.53729634,0.03978728,97.97822923],[4.53729674,0.03978904,97.97840922],[4.53729714,0.03979079,97.97859162],[4.53729754,0.03979255,97.97877652],[4.53729794,0.0397943,97.97896394],[4.53729833,0.03979606,97.97915384],[4.53729873,0.03979782,97.97934621],[4.53729913,0.03979957,97.979541],[4.53729953,0.03980133,97.97973818],[4.53729993,0.03980308,97.9799377],[4.53730033,0.03980484,97.98013952],[4.53730073,0.03980659,97.98034358],[4.53730113,0.03980835,97.98054985],[4.53730153,0.0398101,97.98075827],[4.53730193,0.03981186,97.98096879],[4.53730233,0.03981361,97.98118138],[4.53730274,0.03981536,97.98139598],[4.53730314,0.03981712,97.98161255],[4.53730354,0.03981887,97.98183104],[4.53730394,0.03982063,97.9820514],[4.53730434,0.03982238,97.98227359],[4.53730474,0.03982414,97.98249754],[4.53730515,0.03982589,97.98272312],[4.53730555,0.03982765,97.98295019],[4.53730595,0.0398294,97.98317859],[4.53730635,0.03983116,97.9834082],[4.53730675,0.03983291,97.98363904],[4.53730715,0.03983467,97.98387112],[4.53730756,0.03983642,97.98410449],[4.53730796,0.03983818,97.98433917],[4.53730836,0.03983993,97.9845752],[4.53730876,0.03984169,97.9848126],[4.53730916,0.03984344,97.98505142],[4.53730956,0.0398452,97.98529167],[4.53730996,0.03984695,97.9855334],[4.53731036,0.03984871,97.98577664],[4.53731077,0.03985046,97.98602141],[4.53731117,0.03985222,97.98626775],[4.53731157,0.03985397,97.9865157],[4.53731197,0.03985573,97.98676527],[4.53731237,0.03985748,97.98701651],[4.53731277,0.03985924,97.98726945],[4.53731317,0.03986099,97.98752411],[4.53731358,0.03986275,97.98778054],[4.53731398,0.0398645,97.98803875],[4.53731438,0.03986626,97.98829878],[4.53731478,0.03986801,97.98856067],[4.53731518,0.03986977,97.98882444],[4.53731559,0.03987152,97.98909013],[4.53731599,0.03987328,97.98935776],[4.53731639,0.03987503,97.98962736],[4.53731679,0.03987678,97.98989899],[4.5373172,0.03987854,97.99017271],[4.5373176,0.03988029,97.99044856],[4.537318,0.03988205,97.99072662],[4.53731841,0.0398838,97.99100694],[4.53731881,0.03988556,97.99128959],[4.53731921,0.03988731,97.99157462],[4.53731962,0.03988907,97.99186209],[4.53732002,0.03989082,97.99215206],[4.53732043,0.03989258,97.9924446],[4.53732083,0.03989433,97.99273976],[4.53732124,0.03989608,97.99303761],[4.53732164,0.03989784,97.99333819],[4.53732205,0.03989959,97.99364158],[4.53732246,0.03990135,97.9939478],[4.53732287,0.0399031,97.99425677],[4.53732327,0.03990485,97.99456835],[4.53732368,0.03990661,97.99488244],[4.53732409,0.03990836,97.99519892],[4.5373245,0.03991012,97.99551765],[4.53732491,0.03991187,97.99583832],[4.53732531,0.03991362,97.99616046],[4.53732572,0.03991538,97.99648359],[4.53732613,0.03991713,97.99680742],[4.53732654,0.03991888,97.99713171],[4.53732695,0.03992064,97.99745618],[4.53732735,0.03992239,97.9977806],[4.53732776,0.03992415,97.99810471],[4.53732816,0.0399259,97.99842827],[4.53732857,0.03992765,97.99875102],[4.53732897,0.03992941,97.99907272],[4.53732938,0.03993116,97.99939312],[4.53732978,0.03993292,97.99971197],[4.53733018,0.03993468,98.00002903],[4.53733058,0.03993643,98.00034405],[4.53733098,0.03993819,98.00065679],[4.53733138,0.03993994,98.00096699],[4.53733177,0.0399417,98.00127441],[4.53733217,0.03994346,98.0015788],[4.53733256,0.03994521,98.00187992],[4.53733295,0.03994697,98.00217753],[4.53733334,0.03994873,98.00247152],[4.53733373,0.03995049,98.00276238],[4.53733412,0.03995225,98.00305074],[4.5373345,0.03995401,98.00333723],[4.53733489,0.03995577,98.00362249],[4.53733527,0.03995753,98.00390713],[4.53733566,0.03995928,98.0041918],[4.53733604,0.03996104,98.00447712],[4.53733643,0.0399628,98.00476372],[4.53733681,0.03996456,98.00505222],[4.53733719,0.03996632,98.00534327],[4.53733758,0.03996808,98.00563754],[4.53733796,0.03996984,98.00593559],[4.53733835,0.0399716,98.00623757],[4.53733874,0.03997336,98.00654348],[4.53733912,0.03997512,98.00685334],[4.53733951,0.03997688,98.00716718],[4.5373399,0.03997864,98.00748501],[4.53734029,0.03998039,98.00780685],[4.53734068,0.03998215,98.00813273],[4.53734107,0.03998391,98.00846265],[4.53734147,0.03998567,98.00879651],[4.53734186,0.03998743,98.00913368],[4.53734225,0.03998918,98.00947354],[4.53734265,0.03999094,98.00981594],[4.53734304,0.0399927,98.01016087],[4.53734343,0.03999446,98.01050834],[4.53734383,0.03999621,98.01085832],[4.53734422,0.03999797,98.01121082],[4.53734462,0.03999973,98.01156582],[4.53734501,0.04000149,98.01192331],[4.53734541,0.04000324,98.01228328],[4.53734581,0.040005,98.01264574],[4.5373462,0.04000676,98.01301066],[4.5373466,0.04000851,98.01337803],[4.53734699,0.04001027,98.01374786],[4.53734739,0.04001203,98.01412013],[4.53734779,0.04001378,98.01449483],[4.53734819,0.04001554,98.01487195],[4.53734858,0.0400173,98.01525149],[4.53734898,0.04001905,98.01563342],[4.53734938,0.04002081,98.01601787],[4.53734978,0.04002257,98.01640551],[4.53735018,0.04002432,98.01679655],[4.53735058,0.04002608,98.0171906],[4.53735098,0.04002784,98.01758727],[4.53735138,0.04002959,98.01798614],[4.53735178,0.04003135,98.01838681],[4.53735218,0.0400331,98.01878889],[4.53735258,0.04003486,98.01919195],[4.53735298,0.04003662,98.01959561],[4.53735338,0.04003837,98.01999946],[4.53735378,0.04004013,98.0204031],[4.53735418,0.04004189,98.02080613],[4.53735458,0.04004364,98.02120825],[4.53735497,0.0400454,98.02160944],[4.53735537,0.04004716,98.02200975],[4.53735577,0.04004892,98.02240926],[4.53735616,0.04005067,98.02280802],[4.53735655,0.04005243,98.02320608],[4.53735695,0.04005419,98.02360352],[4.53735734,0.04005595,98.02400039],[4.53735773,0.0400577,98.02439674],[4.53735812,0.04005946,98.02479264],[4.53735851,0.04006122,98.02518816],[4.5373589,0.04006298,98.02558334],[4.53735929,0.04006474,98.02597824],[4.53735968,0.0400665,98.02637294],[4.53736007,0.04006826,98.02676748],[4.53736046,0.04007002,98.02716192],[4.53736085,0.04007178,98.02755634],[4.53736123,0.04007354,98.02795077],[4.53736162,0.0400753,98.02834529],[4.53736201,0.04007706,98.02873995],[4.53736239,0.04007881,98.02913497],[4.53736278,0.04008057,98.02953115],[4.53736316,0.04008233,98.02992938],[4.53736355,0.04008409,98.03033055],[4.53736394,0.04008585,98.03073539],[4.53736432,0.04008761,98.031144],[4.53736471,0.04008937,98.03155632],[4.5373651,0.04009113,98.0319723],[4.53736549,0.04009289,98.03239188],[4.53736588,0.04009465,98.03281501],[4.53736627,0.04009641,98.03324162],[4.53736667,0.04009817,98.03367166],[4.53736706,0.04009993,98.03410508],[4.53736745,0.04010168,98.03454182],[4.53736785,0.04010344,98.03498182],[4.53736824,0.0401052,98.03542503],[4.53736863,0.04010696,98.03587139],[4.53736903,0.04010872,98.03632084],[4.53736943,0.04011047,98.03677333],[4.53736982,0.04011223,98.0372288],[4.53737022,0.04011399,98.0376872],[4.53737062,0.04011575,98.03814847],[4.53737101,0.0401175,98.03861256],[4.53737141,0.04011926,98.0390794],[4.53737181,0.04012102,98.03954894],[4.53737221,0.04012277,98.04002114],[4.53737261,0.04012453,98.04049592],[4.53737301,0.04012629,98.04097325],[4.53737341,0.04012804,98.04145305],[4.53737381,0.0401298,98.04193528],[4.53737421,0.04013156,98.04242004],[4.53737461,0.04013331,98.04290808],[4.53737501,0.04013507,98.04340015],[4.53737542,0.04013683,98.04389639],[4.53737582,0.04013858,98.04439673],[4.53737623,0.04014034,98.04490116],[4.53737663,0.04014209,98.04540962],[4.53737704,0.04014385,98.04592196],[4.53737745,0.04014561,98.04643789],[4.53737785,0.04014736,98.04695713],[4.53737826,0.04014912,98.04747938],[4.53737867,0.04015087,98.04800437],[4.53737908,0.04015263,98.04853181],[4.53737949,0.04015438,98.04906141],[4.5373799,0.04015613,98.04959289],[4.53738031,0.04015789,98.05012596],[4.53738072,0.04015964,98.05066034],[4.53738113,0.0401614,98.05119575],[4.53738154,0.04016315,98.0517319],[4.53738195,0.04016491,98.05226851],[4.53738236,0.04016666,98.0528053],[4.53738277,0.04016842,98.05334198],[4.53738317,0.04017017,98.05387827],[4.53738358,0.04017193,98.05441401],[4.53738399,0.04017369,98.05494946],[4.5373844,0.04017544,98.05548498],[4.5373848,0.0401772,98.05602096],[4.53738521,0.04017895,98.05655776],[4.53738561,0.04018071,98.05709538],[4.53738602,0.04018246,98.0576335],[4.53738642,0.04018422,98.05817177],[4.53738683,0.04018598,98.05870984],[4.53738723,0.04018773,98.05924736],[4.53738764,0.04018949,98.059784],[4.53738804,0.04019125,98.0603194],[4.53738844,0.040193,98.06085322],[4.53738884,0.04019476,98.06138512],[4.53738924,0.04019652,98.06191475],[4.53738964,0.04019827,98.06244178],[4.53739004,0.04020003,98.06296585],[4.53739043,0.04020179,98.06348662],[4.53739082,0.04020355,98.06400377],[4.53739122,0.04020531,98.06451693],[4.53739161,0.04020707,98.06502578],[4.53734788,0.04021701,98.06502578]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-6,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1003400","id":-5,"type":"none","predecessorId":-5,"sOffset":120.7368344413}},{"geometry":{"coordinates":[[[4.53739161,0.04020707,98.06502578],[4.53739122,0.04020531,98.06451693],[4.53739082,0.04020355,98.06400377],[4.53739043,0.04020179,98.06348662],[4.53739004,0.04020003,98.06296585],[4.53738964,0.04019827,98.06244178],[4.53738924,0.04019652,98.06191475],[4.53738884,0.04019476,98.06138512],[4.53738844,0.040193,98.06085322],[4.53738804,0.04019125,98.0603194],[4.53738764,0.04018949,98.059784],[4.53738723,0.04018773,98.05924736],[4.53738683,0.04018598,98.05870984],[4.53738642,0.04018422,98.05817177],[4.53738602,0.04018246,98.0576335],[4.53738561,0.04018071,98.05709538],[4.53738521,0.04017895,98.05655776],[4.5373848,0.0401772,98.05602096],[4.5373844,0.04017544,98.05548498],[4.53738399,0.04017369,98.05494946],[4.53738358,0.04017193,98.05441401],[4.53738317,0.04017017,98.05387827],[4.53738277,0.04016842,98.05334198],[4.53738236,0.04016666,98.0528053],[4.53738195,0.04016491,98.05226851],[4.53738154,0.04016315,98.0517319],[4.53738113,0.0401614,98.05119575],[4.53738072,0.04015964,98.05066034],[4.53738031,0.04015789,98.05012596],[4.5373799,0.04015613,98.04959289],[4.53737949,0.04015438,98.04906141],[4.53737908,0.04015263,98.04853181],[4.53737867,0.04015087,98.04800437],[4.53737826,0.04014912,98.04747938],[4.53737785,0.04014736,98.04695713],[4.53737745,0.04014561,98.04643789],[4.53737704,0.04014385,98.04592196],[4.53737663,0.04014209,98.04540962],[4.53737623,0.04014034,98.04490116],[4.53737582,0.04013858,98.04439673],[4.53737542,0.04013683,98.04389639],[4.53737501,0.04013507,98.04340015],[4.53737461,0.04013331,98.04290808],[4.53737421,0.04013156,98.04242004],[4.53737381,0.0401298,98.04193528],[4.53737341,0.04012804,98.04145305],[4.53737301,0.04012629,98.04097325],[4.53737261,0.04012453,98.04049592],[4.53737221,0.04012277,98.04002114],[4.53737181,0.04012102,98.03954894],[4.53737141,0.04011926,98.0390794],[4.53737101,0.0401175,98.03861256],[4.53737062,0.04011575,98.03814847],[4.53737022,0.04011399,98.0376872],[4.53736982,0.04011223,98.0372288],[4.53736943,0.04011047,98.03677333],[4.53736903,0.04010872,98.03632084],[4.53736863,0.04010696,98.03587139],[4.53736824,0.0401052,98.03542503],[4.53736785,0.04010344,98.03498182],[4.53736745,0.04010168,98.03454182],[4.53736706,0.04009993,98.03410508],[4.53736667,0.04009817,98.03367166],[4.53736627,0.04009641,98.03324162],[4.53736588,0.04009465,98.03281501],[4.53736549,0.04009289,98.03239188],[4.5373651,0.04009113,98.0319723],[4.53736471,0.04008937,98.03155632],[4.53736432,0.04008761,98.031144],[4.53736394,0.04008585,98.03073539],[4.53736355,0.04008409,98.03033055],[4.53736316,0.04008233,98.02992938],[4.53736278,0.04008057,98.02953115],[4.53736239,0.04007881,98.02913497],[4.53736201,0.04007706,98.02873995],[4.53736162,0.0400753,98.02834529],[4.53736123,0.04007354,98.02795077],[4.53736085,0.04007178,98.02755634],[4.53736046,0.04007002,98.02716192],[4.53736007,0.04006826,98.02676748],[4.53735968,0.0400665,98.02637294],[4.53735929,0.04006474,98.02597824],[4.5373589,0.04006298,98.02558334],[4.53735851,0.04006122,98.02518816],[4.53735812,0.04005946,98.02479264],[4.53735773,0.0400577,98.02439674],[4.53735734,0.04005595,98.02400039],[4.53735695,0.04005419,98.02360352],[4.53735655,0.04005243,98.02320608],[4.53735616,0.04005067,98.02280802],[4.53735577,0.04004892,98.02240926],[4.53735537,0.04004716,98.02200975],[4.53735497,0.0400454,98.02160944],[4.53735458,0.04004364,98.02120825],[4.53735418,0.04004189,98.02080613],[4.53735378,0.04004013,98.0204031],[4.53735338,0.04003837,98.01999946],[4.53735298,0.04003662,98.01959561],[4.53735258,0.04003486,98.01919195],[4.53735218,0.0400331,98.01878889],[4.53735178,0.04003135,98.01838681],[4.53735138,0.04002959,98.01798614],[4.53735098,0.04002784,98.01758727],[4.53735058,0.04002608,98.0171906],[4.53735018,0.04002432,98.01679655],[4.53734978,0.04002257,98.01640551],[4.53734938,0.04002081,98.01601787],[4.53734898,0.04001905,98.01563342],[4.53734858,0.0400173,98.01525149],[4.53734819,0.04001554,98.01487195],[4.53734779,0.04001378,98.01449483],[4.53734739,0.04001203,98.01412013],[4.53734699,0.04001027,98.01374786],[4.5373466,0.04000851,98.01337803],[4.5373462,0.04000676,98.01301066],[4.53734581,0.040005,98.01264574],[4.53734541,0.04000324,98.01228328],[4.53734501,0.04000149,98.01192331],[4.53734462,0.03999973,98.01156582],[4.53734422,0.03999797,98.01121082],[4.53734383,0.03999621,98.01085832],[4.53734343,0.03999446,98.01050834],[4.53734304,0.0399927,98.01016087],[4.53734265,0.03999094,98.00981594],[4.53734225,0.03998918,98.00947354],[4.53734186,0.03998743,98.00913368],[4.53734147,0.03998567,98.00879651],[4.53734107,0.03998391,98.00846265],[4.53734068,0.03998215,98.00813273],[4.53734029,0.03998039,98.00780685],[4.5373399,0.03997864,98.00748501],[4.53733951,0.03997688,98.00716718],[4.53733912,0.03997512,98.00685334],[4.53733874,0.03997336,98.00654348],[4.53733835,0.0399716,98.00623757],[4.53733796,0.03996984,98.00593559],[4.53733758,0.03996808,98.00563754],[4.53733719,0.03996632,98.00534327],[4.53733681,0.03996456,98.00505222],[4.53733643,0.0399628,98.00476372],[4.53733604,0.03996104,98.00447712],[4.53733566,0.03995928,98.0041918],[4.53733527,0.03995753,98.00390713],[4.53733489,0.03995577,98.00362249],[4.5373345,0.03995401,98.00333723],[4.53733412,0.03995225,98.00305074],[4.53733373,0.03995049,98.00276238],[4.53733334,0.03994873,98.00247152],[4.53733295,0.03994697,98.00217753],[4.53733256,0.03994521,98.00187992],[4.53733217,0.03994346,98.0015788],[4.53733177,0.0399417,98.00127441],[4.53733138,0.03993994,98.00096699],[4.53733098,0.03993819,98.00065679],[4.53733058,0.03993643,98.00034405],[4.53733018,0.03993468,98.00002903],[4.53732978,0.03993292,97.99971197],[4.53732938,0.03993116,97.99939312],[4.53732897,0.03992941,97.99907272],[4.53732857,0.03992765,97.99875102],[4.53732816,0.0399259,97.99842827],[4.53732776,0.03992415,97.99810471],[4.53732735,0.03992239,97.9977806],[4.53732695,0.03992064,97.99745618],[4.53732654,0.03991888,97.99713171],[4.53732613,0.03991713,97.99680742],[4.53732572,0.03991538,97.99648359],[4.53732531,0.03991362,97.99616046],[4.53732491,0.03991187,97.99583832],[4.5373245,0.03991012,97.99551765],[4.53732409,0.03990836,97.99519892],[4.53732368,0.03990661,97.99488244],[4.53732327,0.03990485,97.99456835],[4.53732287,0.0399031,97.99425677],[4.53732246,0.03990135,97.9939478],[4.53732205,0.03989959,97.99364158],[4.53732164,0.03989784,97.99333819],[4.53732124,0.03989608,97.99303761],[4.53732083,0.03989433,97.99273976],[4.53732043,0.03989258,97.9924446],[4.53732002,0.03989082,97.99215206],[4.53731962,0.03988907,97.99186209],[4.53731921,0.03988731,97.99157462],[4.53731881,0.03988556,97.99128959],[4.53731841,0.0398838,97.99100694],[4.537318,0.03988205,97.99072662],[4.5373176,0.03988029,97.99044856],[4.5373172,0.03987854,97.99017271],[4.53731679,0.03987678,97.98989899],[4.53731639,0.03987503,97.98962736],[4.53731599,0.03987328,97.98935776],[4.53731559,0.03987152,97.98909013],[4.53731518,0.03986977,97.98882444],[4.53731478,0.03986801,97.98856067],[4.53731438,0.03986626,97.98829878],[4.53731398,0.0398645,97.98803875],[4.53731358,0.03986275,97.98778054],[4.53731317,0.03986099,97.98752411],[4.53731277,0.03985924,97.98726945],[4.53731237,0.03985748,97.98701651],[4.53731197,0.03985573,97.98676527],[4.53731157,0.03985397,97.9865157],[4.53731117,0.03985222,97.98626775],[4.53731077,0.03985046,97.98602141],[4.53731036,0.03984871,97.98577664],[4.53730996,0.03984695,97.9855334],[4.53730956,0.0398452,97.98529167],[4.53730916,0.03984344,97.98505142],[4.53730876,0.03984169,97.9848126],[4.53730836,0.03983993,97.9845752],[4.53730796,0.03983818,97.98433917],[4.53730756,0.03983642,97.98410449],[4.53730715,0.03983467,97.98387112],[4.53730675,0.03983291,97.98363904],[4.53730635,0.03983116,97.9834082],[4.53730595,0.0398294,97.98317859],[4.53730555,0.03982765,97.98295019],[4.53730515,0.03982589,97.98272312],[4.53730474,0.03982414,97.98249754],[4.53730434,0.03982238,97.98227359],[4.53730394,0.03982063,97.9820514],[4.53730354,0.03981887,97.98183104],[4.53730314,0.03981712,97.98161255],[4.53730274,0.03981536,97.98139598],[4.53730233,0.03981361,97.98118138],[4.53730193,0.03981186,97.98096879],[4.53730153,0.0398101,97.98075827],[4.53730113,0.03980835,97.98054985],[4.53730073,0.03980659,97.98034358],[4.53730033,0.03980484,97.98013952],[4.53729993,0.03980308,97.9799377],[4.53729953,0.03980133,97.97973818],[4.53729913,0.03979957,97.979541],[4.53729873,0.03979782,97.97934621],[4.53729833,0.03979606,97.97915384],[4.53729794,0.0397943,97.97896394],[4.53729754,0.03979255,97.97877652],[4.53729714,0.03979079,97.97859162],[4.53729674,0.03978904,97.97840922],[4.53729634,0.03978728,97.97822923],[4.53729595,0.03978553,97.97805159],[4.53729555,0.03978377,97.97787622],[4.53729515,0.03978202,97.97770304],[4.53729476,0.03978026,97.97753197],[4.53729436,0.0397785,97.97736295],[4.53729397,0.03977675,97.97719588],[4.53729357,0.03977499,97.9770307],[4.53729317,0.03977324,97.97686733],[4.53729278,0.03977148,97.9767057],[4.53729238,0.03976972,97.97654571],[4.53729199,0.03976797,97.97638731],[4.53729159,0.03976621,97.97623041],[4.5372912,0.03976446,97.97607494],[4.5372908,0.0397627,97.97592074],[4.5372904,0.03976095,97.9757674],[4.53729001,0.03975919,97.97561442],[4.53728961,0.03975743,97.97546133],[4.53728921,0.03975568,97.9753077],[4.53728882,0.03975392,97.97515308],[4.53728842,0.03975217,97.97499706],[4.53728802,0.03975041,97.97483919],[4.53728761,0.03974866,97.97467913],[4.53728722,0.03974692,97.97451702],[4.53728681,0.03974517,97.97435307],[4.53728641,0.03974341,97.97418749],[4.537286,0.03974166,97.97402051],[4.5372856,0.03973991,97.97385235],[4.53728519,0.03973815,97.97368323],[4.53728478,0.0397364,97.97351338],[4.53728438,0.03973465,97.973343],[4.53728397,0.0397329,97.97317233],[4.53728356,0.03973114,97.97300159],[4.53728315,0.03972939,97.97283099],[4.53728274,0.03972764,97.97266075],[4.53728233,0.03972589,97.97249111],[4.53728192,0.03972413,97.97232227],[4.53728151,0.03972238,97.97215446],[4.5372811,0.03972063,97.97198791],[4.53728069,0.03971888,97.97182283],[4.53728028,0.03971712,97.97165944],[4.53727987,0.03971537,97.97149796],[4.53727946,0.03971362,97.97133863],[4.53727905,0.03971187,97.97118167],[4.53727864,0.03971011,97.97102732],[4.53727823,0.03970836,97.97087563],[4.53727782,0.03970661,97.97072627],[4.53727741,0.03970486,97.97057901],[4.537277,0.0397031,97.97043362],[4.5372766,0.03970135,97.9702899],[4.53727619,0.0396996,97.97014762],[4.53727578,0.03969784,97.97000658],[4.53727537,0.03969609,97.96986655],[4.53727496,0.03969434,97.96972733],[4.53727455,0.03969258,97.96958869],[4.53727414,0.03969083,97.96945043],[4.53727373,0.03968908,97.96931232],[4.53727332,0.03968733,97.96917442],[4.53727291,0.03968557,97.96903699],[4.5372725,0.03968382,97.9689003],[4.53727209,0.03968207,97.96876465],[4.53727168,0.03968032,97.9686303],[4.53727127,0.03967856,97.96849754],[4.53727086,0.03967681,97.96836665],[4.53727045,0.03967506,97.96823791],[4.53727004,0.0396733,97.96811159],[4.53726963,0.03967155,97.96798799],[4.53726922,0.0396698,97.96786738],[4.53726882,0.03966804,97.96775003],[4.53726841,0.03966629,97.96763623],[4.537268,0.03966454,97.96752627],[4.5372676,0.03966278,97.96742041],[4.53726719,0.03966103,97.96731894],[4.53726679,0.03965928,97.96722211],[4.53726638,0.03965752,97.96712942],[4.53726598,0.03965577,97.96703965],[4.53726558,0.03965401,97.96695173],[4.53726518,0.03965226,97.96686538],[4.53726477,0.0396505,97.96678049],[4.53726437,0.03964875,97.96669694],[4.53726397,0.03964699,97.96661461],[4.53726357,0.03964524,97.96653337],[4.53726316,0.03964348,97.96645311],[4.53726276,0.03964173,97.9663737],[4.53726236,0.03963997,97.96629505],[4.53726196,0.03963822,97.96621718],[4.53726155,0.03963646,97.96614012],[4.53726115,0.03963471,97.96606391],[4.53726075,0.03963295,97.96598858],[4.53726034,0.0396312,97.96591417],[4.53725994,0.03962944,97.9658407],[4.53725953,0.03962769,97.96576822],[4.53725913,0.03962593,97.96569676],[4.53725873,0.03962418,97.96562636],[4.53725832,0.03962242,97.96555707],[4.53725792,0.03962067,97.96548896],[4.53725751,0.03961892,97.96542208],[4.53725711,0.03961716,97.96535649],[4.53725671,0.03961541,97.96529227],[4.5372563,0.03961365,97.96522945],[4.5372559,0.0396119,97.96516811],[4.53725549,0.03961014,97.96510831],[4.53725509,0.03960839,97.9650501],[4.53725469,0.03960663,97.96499354],[4.53725428,0.03960488,97.96493871],[4.53725388,0.03960312,97.96488564],[4.53725348,0.03960137,97.96483439],[4.53725307,0.03959961,97.96478463],[4.53725267,0.03959786,97.96473626],[4.53725227,0.0395961,97.96468936],[4.53725186,0.03959435,97.964644],[4.53725146,0.03959259,97.96460026],[4.53725106,0.03959084,97.96455822],[4.53725065,0.03958908,97.96451794],[4.53725025,0.03958733,97.96447951],[4.53724985,0.03958557,97.964443],[4.53724945,0.03958381,97.96440848],[4.53724905,0.03958206,97.96437603],[4.53724864,0.0395803,97.96434573],[4.53724824,0.03957855,97.96431764],[4.53724784,0.03957679,97.96429185],[4.53724744,0.03957504,97.96426842],[4.53724704,0.03957328,97.96424744],[4.53724664,0.03957152,97.96422898],[4.53724624,0.03956977,97.96421312],[4.53724584,0.03956801,97.96419992],[4.53724544,0.03956625,97.96418946],[4.53724505,0.0395645,97.96418182],[4.53724465,0.03956274,97.96417708],[4.53724425,0.03956098,97.9641753],[4.53724386,0.03955923,97.96417657],[4.53724346,0.03955747,97.96418095],[4.53724307,0.03955571,97.96418846],[4.53724267,0.03955396,97.96419778],[4.53724227,0.0395522,97.96420624],[4.53724188,0.03955044,97.96421093],[4.53724148,0.03954868,97.96420821],[4.53724107,0.03954693,97.96419428],[4.53724067,0.03954517,97.96416603],[4.53724025,0.03954342,97.96412328],[4.53723983,0.03954167,97.96406678],[4.53723941,0.03953992,97.96399816],[4.53723899,0.03953817,97.96391927],[4.53723856,0.03953642,97.96383198],[4.53723813,0.03953467,97.96373812],[4.53723769,0.03953292,97.96363956],[4.53723726,0.03953117,97.96353815],[4.53723682,0.03952943,97.96343575],[4.53723639,0.03952768,97.9633342],[4.53723595,0.03952593,97.96323535],[4.53723552,0.03952418,97.96314078],[4.53723509,0.03952243,97.96305089],[4.53723466,0.03952068,97.96296582],[4.53723423,0.03951893,97.9628857],[4.5372338,0.03951718,97.96281068],[4.53723337,0.03951543,97.96274089],[4.53723294,0.03951368,97.96267645],[4.53723252,0.03951193,97.96261736],[4.53723209,0.03951018,97.96256295],[4.53723167,0.03950843,97.9625124],[4.53723125,0.03950668,97.96246492],[4.53723083,0.03950493,97.96241966],[4.5372304,0.03950318,97.96237584],[4.53722998,0.03950143,97.96233262],[4.53722956,0.03949968,97.96228933],[4.53722913,0.03949792,97.96224581],[4.53722871,0.03949617,97.96220202],[4.53722829,0.03949442,97.96215794],[4.53722786,0.03949267,97.96211354],[4.53722744,0.03949092,97.96206889],[4.53722701,0.03948917,97.96202419],[4.53722659,0.03948742,97.96197963],[4.53722616,0.03948567,97.96193537],[4.53722573,0.03948392,97.96189157],[4.53722531,0.03948217,97.96184836],[4.53722488,0.03948042,97.96180589],[4.53722445,0.03947867,97.96176428],[4.53722403,0.03947692,97.96172368],[4.5372236,0.03947517,97.96168422],[4.53722318,0.03947342,97.96164604],[4.53722275,0.03947166,97.96160928],[4.53722232,0.03946991,97.96157407],[4.5372219,0.03946816,97.96154054],[4.53722147,0.03946641,97.96150885],[4.53722105,0.03946466,97.96147912],[4.53722062,0.03946291,97.96145148],[4.53722019,0.03946116,97.96142609],[4.53721977,0.03945941,97.96140307],[4.53721935,0.03945766,97.96138255],[4.53721892,0.03945591,97.96136469],[4.5372185,0.03945415,97.9613496],[4.53721808,0.0394524,97.96133737],[4.53721766,0.03945065,97.96132776],[4.53721723,0.0394489,97.96132052],[4.53721681,0.03944715,97.96131534],[4.53721639,0.0394454,97.96131197],[4.53721597,0.03944364,97.96131011],[4.53721555,0.03944189,97.96130948],[4.53721513,0.03944014,97.96130982],[4.53721471,0.03943839,97.96131083],[4.53721429,0.03943663,97.96131224],[4.53721386,0.03943488,97.96131378],[4.53721344,0.03943313,97.96131515],[4.53721302,0.03943138,97.9613161],[4.5372126,0.03942963,97.96131652],[4.53721217,0.03942788,97.96131648],[4.53721175,0.03942612,97.96131607],[4.53721133,0.03942437,97.96131538],[4.5372109,0.03942262,97.96131451],[4.53721048,0.03942087,97.96131355],[4.53721005,0.03941912,97.9613126],[4.53720962,0.03941737,97.96131175],[4.5372092,0.03941562,97.96131108],[4.53720877,0.03941387,97.9613107],[4.53720835,0.03941211,97.9613107],[4.53720792,0.03941036,97.96131117],[4.53720749,0.03940861,97.96131228],[4.53720707,0.03940686,97.96131427],[4.53720664,0.03940511,97.96131738],[4.53720621,0.03940336,97.96132184],[4.53720579,0.03940161,97.9613279],[4.53720536,0.03939986,97.9613358],[4.53720493,0.03939811,97.96134577],[4.53720451,0.03939635,97.96135806],[4.53720408,0.0393946,97.96137289],[4.53720366,0.03939285,97.96139035],[4.53720324,0.0393911,97.96141036],[4.53720281,0.03938935,97.96143286],[4.53720239,0.03938759,97.96145776],[4.53720197,0.03938584,97.96148498],[4.53720154,0.03938409,97.96151446],[4.53720112,0.03938234,97.96154613],[4.5372007,0.03938059,97.96157995],[4.53720028,0.03937883,97.96161588],[4.53719986,0.03937708,97.96165388],[4.53719944,0.03937533,97.96169389],[4.53719902,0.03937358,97.96173589],[4.5371986,0.03937182,97.96177982],[4.53719818,0.03937007,97.96182564],[4.53719776,0.03936832,97.96187332],[4.53719734,0.03936657,97.9619228],[4.53719692,0.03936481,97.96197402],[4.5371965,0.03936306,97.96202683],[4.53719609,0.03936131,97.96208104],[4.53719567,0.03935955,97.96213648],[4.53719525,0.0393578,97.96219296],[4.53719483,0.03935605,97.96225031],[4.53719441,0.03935429,97.96230834],[4.53719399,0.03935254,97.96236688],[4.53719358,0.03935079,97.96242575],[4.53719316,0.03934903,97.96248476],[4.53719274,0.03934728,97.96254375],[4.53719232,0.03934553,97.96260264],[4.5371919,0.03934377,97.96266147],[4.53719148,0.03934202,97.96272029],[4.53719106,0.03934027,97.96277913],[4.53719064,0.03933851,97.96283803],[4.53719021,0.03933676,97.96289703],[4.53718979,0.03933501,97.96295619],[4.53718937,0.03933326,97.96301553],[4.53718895,0.0393315,97.96307509],[4.53718853,0.03932975,97.96313493],[4.53718811,0.039328,97.96319508],[4.53718768,0.03932625,97.96325558],[4.53718726,0.03932449,97.96331646],[4.53718684,0.03932274,97.96337778],[4.53718641,0.03932099,97.96343956],[4.53718599,0.03931924,97.96350182],[4.53718557,0.03931748,97.96356458],[4.53718514,0.03931573,97.96362785],[4.53718472,0.03931398,97.96369163],[4.5371843,0.03931223,97.96375579],[4.53718387,0.03931047,97.96382016],[4.53718345,0.03930872,97.96388457],[4.53718303,0.03930697,97.96394887],[4.5371826,0.03930522,97.96401289],[4.53718218,0.03930346,97.96407647],[4.53718175,0.03930171,97.96413945],[4.53718132,0.03929996,97.96420169],[4.5371809,0.03929821,97.96426318],[4.53718047,0.03929646,97.96432394],[4.53718004,0.03929471,97.96438397],[4.53717961,0.03929295,97.96444329],[4.53717918,0.0392912,97.96450191],[4.53717876,0.03928945,97.96455986],[4.53717833,0.0392877,97.96461713],[4.5371779,0.03928595,97.9646737],[4.53717746,0.0392842,97.96472936],[4.53717703,0.03928245,97.9647839],[4.5371766,0.0392807,97.96483721],[4.53717617,0.03927895,97.96488933],[4.53717574,0.0392772,97.96494033],[4.5371753,0.03927545,97.96499024],[4.53717487,0.0392737,97.96503912],[4.53717443,0.03927195,97.96508703],[4.537174,0.0392702,97.965134],[4.53717356,0.03926845,97.96518008],[4.53717312,0.0392667,97.96522534],[4.53717268,0.03926495,97.96526982],[4.53717225,0.0392632,97.96531357],[4.53717181,0.03926145,97.96535663],[4.53717137,0.0392597,97.96539906],[4.53717093,0.03925795,97.96544092],[4.53717049,0.03925621,97.96548224],[4.53717005,0.03925446,97.96552307],[4.53716961,0.03925271,97.96556348],[4.53716917,0.03925096,97.96560351],[4.53716873,0.03924921,97.9656432],[4.53716829,0.03924746,97.96568261],[4.53716784,0.03924571,97.96572178],[4.5371674,0.03924397,97.96576077],[4.53716696,0.03924222,97.96579963],[4.53716652,0.03924047,97.96583841],[4.53716607,0.03923872,97.96587715],[4.53716563,0.03923697,97.96591591],[4.53716518,0.03923523,97.9659549],[4.53716474,0.03923348,97.96599446],[4.5371643,0.03923173,97.96603479],[4.53716385,0.03922998,97.96607593],[4.53716341,0.03922823,97.96611781],[4.53716297,0.03922649,97.96616026],[4.53716252,0.03922474,97.96620313],[4.53716208,0.03922299,97.96624624],[4.53716163,0.03922124,97.96628943],[4.53716119,0.03921949,97.96633253],[4.53716074,0.03921775,97.96637538],[4.5371603,0.039216,97.96641781],[4.53715985,0.03921425,97.96645966],[4.5371594,0.0392125,97.96650076],[4.53715896,0.03921076,97.96654095],[4.53715851,0.03920901,97.96658005],[4.53715806,0.03920726,97.96661792],[4.53715761,0.03920552,97.96665437],[4.53715716,0.03920377,97.96668925],[4.53715671,0.03920202,97.96672238],[4.53715626,0.03920028,97.96675362],[4.53715581,0.03919853,97.96678279],[4.53715536,0.03919678,97.96680972],[4.5371549,0.03919504,97.96683426],[4.53715445,0.03919329,97.96685623],[4.53715399,0.03919155,97.96687549],[4.53715353,0.0391898,97.96689185],[4.53715307,0.03918806,97.96690515],[4.53715261,0.03918631,97.96691524],[4.53715215,0.03918457,97.96692195],[4.53715169,0.03918283,97.96692507],[4.53715122,0.03918108,97.96692416],[4.53715076,0.03917934,97.96691883],[4.53715029,0.0391776,97.96690889],[4.53714982,0.03917586,97.96689422],[4.53714935,0.03917412,97.9668747],[4.53714887,0.03917237,97.96685023],[4.5371484,0.03917063,97.96682068],[4.53714792,0.03916889,97.96678596],[4.53714744,0.03916715,97.96674621],[4.53714696,0.03916541,97.96670184],[4.53714648,0.03916367,97.96665326],[4.537146,0.03916194,97.96660089],[4.53714551,0.0391602,97.96654514],[4.53714503,0.03915846,97.96648643],[4.53714454,0.03915672,97.96642516],[4.53714405,0.03915499,97.96636175],[4.53714356,0.03915325,97.96629661],[4.53714307,0.03915151,97.96623016],[4.53714258,0.03914978,97.96616281],[4.53714209,0.03914804,97.96609497],[4.5371416,0.0391463,97.96602704],[4.53714111,0.03914457,97.96595945],[4.53714062,0.03914283,97.9658926],[4.53714013,0.0391411,97.96582691],[4.53713964,0.03913936,97.96576277],[4.53713915,0.03913762,97.96570039],[4.53713866,0.03913589,97.96563977],[4.53713817,0.03913415,97.96558091],[4.53713768,0.03913242,97.96552378],[4.53713719,0.03913068,97.96546836],[4.5371367,0.03912894,97.96541465],[4.53713621,0.03912721,97.96536261],[4.53713572,0.03912547,97.96531224],[4.53713523,0.03912374,97.96526351],[4.53713475,0.039122,97.96521641],[4.53713426,0.03912026,97.96517091],[4.53713377,0.03911853,97.96512701],[4.53713328,0.03911679,97.96508469],[4.5371328,0.03911505,97.96504391],[4.53713231,0.03911332,97.96500468],[4.53713182,0.03911158,97.96496697],[4.53713134,0.03910984,97.96493076],[4.53713085,0.03910811,97.96489603],[4.53713036,0.03910637,97.96486278],[4.53712988,0.03910463,97.96483097],[4.53712939,0.03910289,97.96480059],[4.53712891,0.03910116,97.96477163],[4.53712842,0.03909942,97.96474406],[4.53712794,0.03909768,97.96471788],[4.53712745,0.03909595,97.96469305],[4.53712697,0.03909421,97.96466957],[4.53712648,0.03909247,97.96464741],[4.537126,0.03909073,97.96462656],[4.53712552,0.039089,97.964607],[4.53712503,0.03908726,97.96458872],[4.53712455,0.03908552,97.96457168],[4.53712406,0.03908378,97.96455589],[4.53712358,0.03908205,97.96454132],[4.53712349,0.03908173,97.9645388],[4.53712766,0.03908072,97.97748026],[4.53712774,0.03908104,97.97748542],[4.53712823,0.03908277,97.97751313],[4.53712872,0.03908451,97.97753964],[4.5371292,0.03908625,97.97756495],[4.53712969,0.03908799,97.97758907],[4.53713017,0.03908972,97.97761199],[4.53713066,0.03909146,97.97763373],[4.53713114,0.0390932,97.97765428],[4.53713162,0.03909494,97.97767366],[4.53713211,0.03909667,97.97769187],[4.53713259,0.03909841,97.9777089],[4.53713307,0.03910015,97.97772477],[4.53713355,0.03910189,97.97773948],[4.53713403,0.03910363,97.97775303],[4.53713451,0.03910537,97.97776543],[4.53713498,0.03910711,97.97777668],[4.53713546,0.03910884,97.97778679],[4.53713594,0.03911058,97.97779575],[4.53713641,0.03911232,97.97780358],[4.53713689,0.03911406,97.97781028],[4.53713737,0.0391158,97.97781585],[4.53713784,0.03911754,97.9778203],[4.53713831,0.03911928,97.97782363],[4.53713879,0.03912102,97.97782584],[4.53713926,0.03912276,97.97782695],[4.53713973,0.0391245,97.97782695],[4.5371402,0.03912624,97.97782584],[4.53714067,0.03912798,97.97782364],[4.53714114,0.03912972,97.97782034],[4.53714161,0.03913147,97.97781596],[4.53714208,0.03913321,97.97781049],[4.53714255,0.03913495,97.97780394],[4.53714302,0.03913669,97.97779631],[4.53714348,0.03913843,97.9777876],[4.53714395,0.03914017,97.97777781],[4.53714442,0.03914191,97.97776691],[4.53714488,0.03914366,97.9777549],[4.53714535,0.0391454,97.97774175],[4.53714581,0.03914714,97.97772747],[4.53714627,0.03914888,97.97771203],[4.53714674,0.03915063,97.97769543],[4.5371472,0.03915237,97.97767765],[4.53714766,0.03915411,97.97765867],[4.53714812,0.03915586,97.97763849],[4.53714858,0.0391576,97.9776171],[4.53714904,0.03915934,97.97759447],[4.5371495,0.03916109,97.97757059],[4.53714996,0.03916283,97.97754546],[4.53715042,0.03916458,97.97751907],[4.53715087,0.03916632,97.97749138],[4.53715133,0.03916807,97.97746241],[4.53715179,0.03916981,97.97743212],[4.53715224,0.03917156,97.97740052],[4.53715269,0.03917331,97.97736758],[4.53715315,0.03917505,97.97733329],[4.5371536,0.0391768,97.97729764],[4.53715405,0.03917854,97.97726063],[4.53715451,0.03918029,97.97722222],[4.53715496,0.03918204,97.9771825],[4.53715541,0.03918378,97.97714172],[4.53715586,0.03918553,97.9771002],[4.53715631,0.03918728,97.97705801],[4.53715676,0.03918902,97.97701519],[4.5371572,0.03919077,97.97697178],[4.53715765,0.03919252,97.97692781],[4.5371581,0.03919427,97.97688332],[4.53715855,0.03919601,97.97683834],[4.53715899,0.03919776,97.97679291],[4.53715944,0.03919951,97.97674706],[4.53715989,0.03920126,97.97670083],[4.53716033,0.039203,97.97665426],[4.53716078,0.03920475,97.97660738],[4.53716122,0.0392065,97.97656023],[4.53716167,0.03920825,97.97651284],[4.53716211,0.03920999,97.97646525],[4.53716256,0.03921174,97.97641749],[4.537163,0.03921349,97.97636961],[4.53716344,0.03921524,97.97632162],[4.53716389,0.03921699,97.97627359],[4.53716433,0.03921873,97.97622552],[4.53716477,0.03922048,97.97617748],[4.53716522,0.03922223,97.97612948],[4.53716566,0.03922398,97.97608156],[4.5371661,0.03922573,97.97603377],[4.53716654,0.03922748,97.97598614],[4.53716698,0.03922923,97.9759387],[4.53716743,0.03923097,97.97589148],[4.53716787,0.03923272,97.97584454],[4.53716831,0.03923447,97.97579789],[4.53716875,0.03923622,97.97575141],[4.53716919,0.03923797,97.97570482],[4.53716963,0.03923972,97.97565799],[4.53717007,0.03924147,97.97561093],[4.53717051,0.03924321,97.97556366],[4.53717095,0.03924496,97.9755162],[4.53717139,0.03924671,97.97546857],[4.53717183,0.03924846,97.97542079],[4.53717226,0.03925021,97.97537289],[4.5371727,0.03925196,97.97532488],[4.53717314,0.03925371,97.97527677],[4.53717358,0.03925546,97.97522861],[4.53717401,0.03925721,97.97518039],[4.53717445,0.03925896,97.97513215],[4.53717489,0.03926071,97.97508391],[4.53717532,0.03926246,97.97503567],[4.53717576,0.03926421,97.97498748],[4.5371762,0.03926596,97.97493934],[4.53717663,0.03926771,97.97489127],[4.53717707,0.03926946,97.9748433],[4.5371775,0.03927121,97.97479545],[4.53717794,0.03927296,97.97474773],[4.53717837,0.03927471,97.97470018],[4.53717881,0.03927646,97.9746528],[4.53717924,0.03927821,97.97460562],[4.53717967,0.03927996,97.97455866],[4.53718011,0.03928171,97.97451194],[4.53718054,0.03928346,97.97446548],[4.53718098,0.03928521,97.97441946],[4.53718141,0.03928696,97.97437416],[4.53718184,0.03928871,97.97432988],[4.53718228,0.03929046,97.97428669],[4.53718271,0.03929221,97.97424467],[4.53718314,0.03929396,97.97420387],[4.53718358,0.03929571,97.97416435],[4.53718401,0.03929746,97.97412616],[4.53718444,0.03929921,97.97408937],[4.53718488,0.03930096,97.97405403],[4.53718531,0.03930271,97.97402019],[4.53718575,0.03930446,97.97398792],[4.53718618,0.03930621,97.97395728],[4.53718662,0.03930796,97.97392831],[4.53718705,0.0393097,97.97390108],[4.53718749,0.03931145,97.97387564],[4.53718793,0.0393132,97.97385205],[4.53718836,0.03931495,97.97383037],[4.5371888,0.0393167,97.97381063],[4.53718924,0.03931845,97.97379273],[4.53718967,0.0393202,97.97377654],[4.53719011,0.03932195,97.97376194],[4.53719055,0.0393237,97.9737488],[4.53719098,0.03932545,97.97373699],[4.53719142,0.0393272,97.97372637],[4.53719186,0.03932894,97.97371678],[4.5371923,0.03933069,97.97370808],[4.53719274,0.03933244,97.97370012],[4.53719317,0.03933419,97.97369275],[4.53719361,0.03933594,97.97368584],[4.53719405,0.03933769,97.97367922],[4.53719449,0.03933944,97.97367275],[4.53719492,0.03934119,97.97366629],[4.53719536,0.03934294,97.97365968],[4.53719579,0.03934469,97.97365278],[4.53719623,0.03934644,97.97364545],[4.53719666,0.03934818,97.97363752],[4.5371971,0.03934993,97.97362898],[4.53719753,0.03935168,97.97361989],[4.53719797,0.03935343,97.97361031],[4.5371984,0.03935518,97.97360033],[4.53719883,0.03935693,97.97359],[4.53719926,0.03935868,97.97357942],[4.5371997,0.03936043,97.97356864],[4.53720013,0.03936218,97.97355774],[4.53720056,0.03936393,97.9735468],[4.53720099,0.03936568,97.97353588],[4.53720142,0.03936743,97.97352506],[4.53720185,0.03936918,97.97351442],[4.53720228,0.03937094,97.97350401],[4.53720271,0.03937269,97.97349393],[4.53720314,0.03937444,97.97348423],[4.53720357,0.03937619,97.973475],[4.537204,0.03937793,97.9734663],[4.53720443,0.03937969,97.97345821],[4.53720486,0.03938144,97.9734508],[4.53720529,0.03938319,97.97344415],[4.53720572,0.03938494,97.97343832],[4.53720615,0.03938669,97.97343341],[4.53720658,0.03938844,97.97342952],[4.53720701,0.03939019,97.97342676],[4.53720744,0.03939194,97.97342524],[4.53720787,0.03939369,97.97342506],[4.53720829,0.03939544,97.97342631],[4.53720872,0.03939719,97.97342896],[4.53720915,0.03939894,97.9734328],[4.53720958,0.03940069,97.97343761],[4.53721001,0.03940244,97.9734432],[4.53721044,0.03940419,97.97344935],[4.53721087,0.03940594,97.97345586],[4.5372113,0.03940769,97.97346251],[4.53721173,0.03940944,97.9734691],[4.53721216,0.03941119,97.97347541],[4.53721259,0.03941295,97.97348131],[4.53721301,0.0394147,97.97348674],[4.53721344,0.03941645,97.97349164],[4.53721387,0.0394182,97.97349593],[4.53721429,0.03941995,97.97349956],[4.53721472,0.0394217,97.97350246],[4.53721514,0.03942345,97.97350458],[4.53721557,0.0394252,97.97350584],[4.53721599,0.03942696,97.97350619],[4.53721641,0.03942871,97.97350556],[4.53721684,0.03943046,97.97350389],[4.53721726,0.03943221,97.97350112],[4.53721768,0.03943396,97.97349737],[4.5372181,0.03943572,97.97349292],[4.53721852,0.03943747,97.97348805],[4.53721894,0.03943922,97.97348306],[4.53721936,0.03944097,97.97347823],[4.53721978,0.03944273,97.97347386],[4.53722019,0.03944448,97.97347024],[4.53722061,0.03944623,97.97346766],[4.53722103,0.03944798,97.9734664],[4.53722145,0.03944974,97.97346675],[4.53722187,0.03945149,97.97346902],[4.53722229,0.03945324,97.97347348],[4.53722271,0.03945499,97.97348037],[4.53722313,0.03945675,97.97348962],[4.53722355,0.0394585,97.97350112],[4.53722397,0.03946025,97.97351474],[4.5372244,0.039462,97.97353034],[4.53722482,0.03946375,97.97354782],[4.53722524,0.03946551,97.97356703],[4.53722566,0.03946726,97.97358786],[4.53722608,0.03946901,97.97361018],[4.53722651,0.03947076,97.97363386],[4.53722693,0.03947251,97.97365878],[4.53722735,0.03947426,97.97368481],[4.53722777,0.03947602,97.97371183],[4.5372282,0.03947777,97.97373971],[4.53722862,0.03947952,97.97376832],[4.53722904,0.03948127,97.97379754],[4.53722946,0.03948302,97.97382724],[4.53722988,0.03948477,97.9738573],[4.5372303,0.03948653,97.97388759],[4.53723073,0.03948828,97.97391797],[4.53723115,0.03949003,97.97394828],[4.53723157,0.03949178,97.97397834],[4.53723199,0.03949353,97.97400797],[4.53723241,0.03949529,97.97403701],[4.53723282,0.03949704,97.97406531],[4.53723324,0.03949879,97.9740927],[4.53723366,0.03950054,97.97411905],[4.53723408,0.0395023,97.97414432],[4.53723449,0.03950405,97.97416901],[4.53723491,0.0395058,97.97419376],[4.53723532,0.03950755,97.9742192],[4.53723574,0.03950931,97.97424596],[4.53723615,0.03951106,97.97427467],[4.53723657,0.03951281,97.97430596],[4.53723699,0.03951457,97.9743403],[4.5372374,0.03951632,97.97437753],[4.53723782,0.03951807,97.97441734],[4.53723824,0.03951982,97.9744594],[4.53723866,0.03952158,97.97450339],[4.53723908,0.03952333,97.974549],[4.5372395,0.03952508,97.97459591],[4.53723992,0.03952683,97.9746438],[4.53724033,0.03952858,97.97469234],[4.53724075,0.03953034,97.97474123],[4.53724117,0.03953209,97.97479013],[4.53724159,0.03953384,97.97483874],[4.537242,0.03953559,97.97488672],[4.53724242,0.03953735,97.97493377],[4.53724283,0.0395391,97.97497956],[4.53724325,0.03954085,97.97502377],[4.53724366,0.0395426,97.97506608],[4.53724408,0.03954436,97.97510639],[4.53724449,0.03954611,97.97514549],[4.5372449,0.03954787,97.9751844],[4.53724531,0.03954962,97.97522412],[4.53724572,0.03955137,97.97526568],[4.53724613,0.03955313,97.97530989],[4.53724655,0.03955488,97.97535688],[4.53724696,0.03955663,97.97540655],[4.53724737,0.03955839,97.97545881],[4.53724778,0.03956014,97.97551359],[4.5372482,0.03956189,97.97557079],[4.53724861,0.03956364,97.97563034],[4.53724903,0.0395654,97.97569215],[4.53724944,0.03956715,97.97575613],[4.53724986,0.0395689,97.9758222],[4.53725027,0.03957066,97.97589027],[4.53725069,0.03957241,97.97596027],[4.53725111,0.03957416,97.9760321],[4.53725152,0.03957591,97.97610568],[4.53725194,0.03957766,97.97618092],[4.53725235,0.03957942,97.97625774],[4.53725277,0.03958117,97.97633606],[4.53725319,0.03958292,97.97641579],[4.5372536,0.03958467,97.97649685],[4.53725402,0.03958643,97.97657914],[4.53725444,0.03958818,97.97666259],[4.53725485,0.03958993,97.97674711],[4.53725527,0.03959168,97.97683262],[4.53725568,0.03959343,97.97691903],[4.5372561,0.03959519,97.97700625],[4.53725652,0.03959694,97.9770942],[4.53725693,0.03959869,97.9771828],[4.53725735,0.03960044,97.97727196],[4.53725776,0.0396022,97.97736177],[4.53725818,0.03960395,97.97745253],[4.53725859,0.0396057,97.97754421],[4.53725901,0.03960745,97.97763672],[4.53725942,0.0396092,97.97773001],[4.53725984,0.03961096,97.97782401],[4.53726025,0.03961271,97.97791863],[4.53726067,0.03961446,97.97801382],[4.53726108,0.03961621,97.9781095],[4.53726149,0.03961797,97.97820561],[4.53726191,0.03961972,97.97830206],[4.53726232,0.03962147,97.9783988],[4.53726273,0.03962323,97.97849575],[4.53726314,0.03962498,97.97859285],[4.53726356,0.03962673,97.97869002],[4.53726397,0.03962848,97.97878721],[4.53726438,0.03963024,97.9788844],[4.53726479,0.03963199,97.97898152],[4.5372652,0.03963374,97.97907853],[4.53726561,0.0396355,97.9791754],[4.53726602,0.03963725,97.97927207],[4.53726643,0.039639,97.9793685],[4.53726684,0.03964076,97.97946465],[4.53726724,0.03964251,97.97956049],[4.53726765,0.03964427,97.9796561],[4.53726806,0.03964602,97.9797516],[4.53726847,0.03964777,97.9798471],[4.53726887,0.03964953,97.9799427],[4.53726928,0.03965128,97.98003852],[4.53726968,0.03965304,97.98013467],[4.53727009,0.03965479,97.98023126],[4.53727049,0.03965654,97.98032859],[4.5372709,0.0396583,97.98042777],[4.5372713,0.03966005,97.98053005],[4.53727171,0.03966181,97.98063595],[4.53727212,0.03966356,97.98074527],[4.53727252,0.03966531,97.98085775],[4.53727293,0.03966707,97.98097314],[4.53727334,0.03966882,97.98109121],[4.53727375,0.03967057,97.98121169],[4.53727416,0.03967233,97.98133434],[4.53727457,0.03967408,97.98145892],[4.53727498,0.03967583,97.98158518],[4.53727539,0.03967759,97.98171286],[4.5372758,0.03967934,97.98184173],[4.53727621,0.03968109,97.98197153],[4.53727661,0.03968285,97.98210201],[4.53727702,0.0396846,97.98223293],[4.53727743,0.03968635,97.98236405],[4.53727784,0.03968811,97.9824951],[4.53727825,0.03968986,97.98262586],[4.53727865,0.03969161,97.98275633],[4.53727906,0.03969337,97.98288673],[4.53727947,0.03969512,97.98301732],[4.53727987,0.03969688,97.98314835],[4.53728028,0.03969863,97.98328007],[4.53728068,0.03970038,97.98341272],[4.53728109,0.03970214,97.98354654],[4.53728149,0.03970389,97.9836818],[4.5372819,0.03970564,97.98381873],[4.5372823,0.0397074,97.98395758],[4.53728271,0.03970915,97.98409862],[4.53728312,0.03971091,97.98424222],[4.53728352,0.03971266,97.98438836],[4.53728393,0.03971441,97.98453682],[4.53728434,0.03971617,97.98468742],[4.53728474,0.03971792,97.98483995],[4.53728515,0.03971967,97.98499423],[4.53728556,0.03972143,97.98515007],[4.53728596,0.03972318,97.98530728],[4.53728637,0.03972493,97.98546567],[4.53728678,0.03972669,97.98562506],[4.53728719,0.03972844,97.98578525],[4.53728759,0.03973019,97.98594605],[4.537288,0.03973195,97.98610728],[4.5372884,0.0397337,97.98626875],[4.53728881,0.03973545,97.98643026],[4.53728922,0.03973721,97.98659164],[4.53728962,0.03973896,97.98675268],[4.53729002,0.03974071,97.98691321],[4.53729043,0.03974247,97.98707303],[4.53729083,0.03974422,97.98723195],[4.53729123,0.03974598,97.98738979],[4.53729163,0.03974772,97.98754636],[4.53729203,0.03974947,97.98770147],[4.53729243,0.03975123,97.98785503],[4.53729282,0.03975298,97.98800741],[4.53729322,0.03975474,97.98815908],[4.53729362,0.03975649,97.98831049],[4.53729402,0.03975825,97.98846213],[4.53729441,0.03976,97.98861445],[4.53729481,0.03976176,97.98876793],[4.5372952,0.03976352,97.98892303],[4.5372956,0.03976527,97.98908015],[4.537296,0.03976703,97.98923941],[4.53729639,0.03976878,97.98940086],[4.53729679,0.03977054,97.98956454],[4.53729719,0.03977229,97.98973051],[4.53729759,0.03977405,97.98989882],[4.53729798,0.03977581,97.9900695],[4.53729838,0.03977756,97.99024262],[4.53729878,0.03977932,97.99041822],[4.53729918,0.03978107,97.99059635],[4.53729958,0.03978283,97.99077705],[4.53729998,0.03978458,97.99096039],[4.53730038,0.03978634,97.99114639],[4.53730078,0.03978809,97.99133513],[4.53730118,0.03978985,97.99152663],[4.53730158,0.0397916,97.99172095],[4.53730198,0.03979336,97.99191809],[4.53730238,0.03979511,97.99211798],[4.53730279,0.03979687,97.99232057],[4.53730319,0.03979862,97.99252581],[4.53730359,0.03980037,97.99273361],[4.537304,0.03980213,97.99294392],[4.5373044,0.03980388,97.99315664],[4.5373048,0.03980564,97.99337172],[4.53730521,0.03980739,97.99358908],[4.53730561,0.03980915,97.99380863],[4.53730602,0.0398109,97.99403031],[4.53730642,0.03981265,97.99425404],[4.53730683,0.03981441,97.99447975],[4.53730723,0.03981616,97.99470736],[4.53730764,0.03981792,97.9949368],[4.53730804,0.03981967,97.99516799],[4.53730845,0.03982142,97.99540087],[4.53730886,0.03982318,97.99563533],[4.53730926,0.03982493,97.99587122],[4.53730967,0.03982669,97.99610836],[4.53731007,0.03982844,97.99634658],[4.53731048,0.03983019,97.99658573],[4.53731088,0.03983195,97.99682579],[4.53731129,0.0398337,97.99706676],[4.53731169,0.03983546,97.99730864],[4.5373121,0.03983721,97.99755144],[4.5373125,0.03983897,97.99779516],[4.5373129,0.03984072,97.99803981],[4.53731331,0.03984248,97.99828539],[4.53731371,0.03984423,97.99853191],[4.53731411,0.03984598,97.99877937],[4.53731452,0.03984774,97.99902777],[4.53731492,0.03984949,97.99927712],[4.53731532,0.03985125,97.99952743],[4.53731573,0.039853,97.9997787],[4.53731613,0.03985476,98.00003093],[4.53731653,0.03985651,98.00028412],[4.53731694,0.03985827,98.00053829],[4.53731734,0.03986002,98.00079343],[4.53731774,0.03986178,98.00104956],[4.53731814,0.03986353,98.00130667],[4.53731854,0.03986529,98.00156477],[4.53731894,0.03986704,98.00182387],[4.53731935,0.0398688,98.00208396],[4.53731975,0.03987055,98.00234505],[4.53732015,0.03987231,98.00260716],[4.53732055,0.03987406,98.00287027],[4.53732095,0.03987582,98.00313442],[4.53732135,0.03987757,98.00339963],[4.53732175,0.03987933,98.00366594],[4.53732215,0.03988109,98.00393339],[4.53732255,0.03988284,98.00420199],[4.53732295,0.0398846,98.0044718],[4.53732335,0.03988635,98.00474284],[4.53732375,0.03988811,98.00501515],[4.53732415,0.03988986,98.00528875],[4.53732455,0.03989162,98.00556369],[4.53732495,0.03989337,98.00584],[4.53732535,0.03989513,98.00611771],[4.53732575,0.03989689,98.00639685],[4.53732615,0.03989864,98.00667746],[4.53732655,0.0399004,98.00695954],[4.53732695,0.03990215,98.00724297],[4.53732735,0.03990391,98.00752761],[4.53732775,0.03990566,98.00781332],[4.53732815,0.03990742,98.00809995],[4.53732855,0.03990918,98.00838734],[4.53732895,0.03991093,98.00867536],[4.53732935,0.03991269,98.00896387],[4.53732975,0.03991444,98.00925274],[4.53733014,0.0399162,98.00954205],[4.53733054,0.03991796,98.0098319],[4.53733094,0.03991971,98.01012237],[4.53733134,0.03992147,98.01041357],[4.53733173,0.03992323,98.0107056],[4.53733213,0.03992498,98.01099856],[4.53733253,0.03992674,98.01129256],[4.53733292,0.0399285,98.01158771],[4.53733332,0.03993025,98.0118841],[4.53733372,0.03993201,98.01218183],[4.53733411,0.03993377,98.01248103],[4.53733451,0.03993552,98.01278177],[4.5373349,0.03993728,98.01308418],[4.5373353,0.03993904,98.01338834],[4.5373357,0.03994079,98.01369438],[4.53733609,0.03994255,98.01400238],[4.53733649,0.03994431,98.01431245],[4.53733689,0.03994606,98.0146247],[4.53733729,0.03994782,98.01493922],[4.53733768,0.03994958,98.01525612],[4.53733808,0.03995133,98.01557551],[4.53733848,0.03995309,98.01589748],[4.53733888,0.03995485,98.01622214],[4.53733928,0.0399566,98.01654959],[4.53733968,0.03995836,98.01687993],[4.53734008,0.03996011,98.01721326],[4.53734048,0.03996187,98.0175497],[4.53734088,0.03996363,98.01788933],[4.53734128,0.03996538,98.01823227],[4.53734168,0.03996714,98.01857866],[4.53734208,0.03996889,98.01892856],[4.53734249,0.03997065,98.01928157],[4.53734289,0.0399724,98.01963718],[4.53734329,0.03997416,98.01999489],[4.5373437,0.03997591,98.02035419],[4.5373441,0.03997767,98.02071459],[4.5373445,0.03997942,98.02107556],[4.53734491,0.03998118,98.02143663],[4.53734531,0.03998294,98.02179727],[4.53734571,0.03998469,98.02215699],[4.53734611,0.03998645,98.02251528],[4.53734651,0.0399882,98.02287177],[4.53734691,0.03998996,98.02322658],[4.53734731,0.03999172,98.02357994],[4.5373477,0.03999347,98.02393211],[4.5373481,0.03999523,98.02428332],[4.53734849,0.03999699,98.02463382],[4.53734889,0.03999875,98.02498386],[4.53734928,0.0400005,98.02533366],[4.53734967,0.04000226,98.02568349],[4.53735007,0.04000402,98.02603357],[4.53735046,0.04000578,98.02638416],[4.53735085,0.04000754,98.02673548],[4.53735124,0.04000929,98.0270878],[4.53735164,0.04001105,98.02744134],[4.53735203,0.04001281,98.02779634],[4.53735242,0.04001457,98.02815306],[4.53735281,0.04001633,98.02851172],[4.53735321,0.04001808,98.02887256],[4.5373536,0.04001984,98.02923596],[4.53735399,0.0400216,98.02960283],[4.53735439,0.04002336,98.02997363],[4.53735478,0.04002512,98.03034822],[4.53735518,0.04002687,98.03072646],[4.53735557,0.04002863,98.03110818],[4.53735597,0.04003039,98.03149322],[4.53735637,0.04003214,98.03188143],[4.53735676,0.0400339,98.03227266],[4.53735716,0.04003566,98.03266675],[4.53735756,0.04003741,98.03306354],[4.53735796,0.04003917,98.03346288],[4.53735836,0.04004093,98.03386461],[4.53735876,0.04004268,98.03426861],[4.53735916,0.04004444,98.03467473],[4.53735956,0.0400462,98.03508284],[4.53735996,0.04004795,98.0354928],[4.53736036,0.04004971,98.03590447],[4.53736076,0.04005147,98.03631771],[4.53736116,0.04005322,98.03673239],[4.53736156,0.04005498,98.03714837],[4.53736196,0.04005674,98.03756552],[4.53736236,0.04005849,98.03798369],[4.53736276,0.04006025,98.03840276],[4.53736315,0.04006201,98.03882258],[4.53736355,0.04006376,98.03924302],[4.53736395,0.04006552,98.03966394],[4.53736435,0.04006728,98.0400852],[4.53736475,0.04006904,98.04050668],[4.53736515,0.04007079,98.04092824],[4.53736554,0.04007255,98.04134973],[4.53736594,0.04007431,98.04177103],[4.53736634,0.04007606,98.042192],[4.53736673,0.04007782,98.04261267],[4.53736713,0.04007958,98.0430337],[4.53736752,0.04008134,98.04345595],[4.53736792,0.0400831,98.04388025],[4.53736831,0.04008485,98.04430726],[4.53736871,0.04008661,98.04473706],[4.5373691,0.04008837,98.04516951],[4.5373695,0.04009013,98.04560452],[4.5373699,0.04009188,98.04604199],[4.53737029,0.04009364,98.04648179],[4.53737069,0.0400954,98.04692382],[4.53737109,0.04009716,98.04736798],[4.53737149,0.04009891,98.04781415],[4.53737188,0.04010067,98.04826224],[4.53737228,0.04010243,98.04871212],[4.53737268,0.04010418,98.0491637],[4.53737308,0.04010594,98.04961687],[4.53737348,0.0401077,98.05007151],[4.53737388,0.04010946,98.05052753],[4.53737427,0.04011121,98.05098481],[4.53737467,0.04011297,98.05144326],[4.53737507,0.04011473,98.05190275],[4.53737547,0.04011649,98.0523632],[4.53737587,0.04011824,98.05282448],[4.53737626,0.04012,98.05328649],[4.53737666,0.04012176,98.05374914],[4.53737706,0.04012352,98.0542123],[4.53737746,0.04012527,98.05467588],[4.53737785,0.04012703,98.05513977],[4.53737825,0.04012879,98.05560386],[4.53737864,0.04013055,98.05606822],[4.53737904,0.0401323,98.05653353],[4.53737943,0.04013406,98.05700051],[4.53737983,0.04013582,98.05746922],[4.53738023,0.04013758,98.05793958],[4.53738062,0.04013934,98.05841149],[4.53738102,0.04014109,98.05888488],[4.53738141,0.04014285,98.05935965],[4.53738181,0.04014461,98.05983573],[4.53738221,0.04014637,98.06031301],[4.5373826,0.04014813,98.06079141],[4.537383,0.04014988,98.06127085],[4.53738339,0.04015164,98.06175125],[4.53738379,0.0401534,98.0622325],[4.53738418,0.04015516,98.06271454],[4.53738458,0.04015692,98.06319726],[4.53738497,0.04015868,98.06368059],[4.53738537,0.04016043,98.06416445],[4.53738576,0.04016219,98.06464873],[4.53738615,0.04016395,98.06513336],[4.53738655,0.04016571,98.06561826],[4.53738694,0.04016747,98.06610333],[4.53738733,0.04016923,98.06658849],[4.53738773,0.04017099,98.06707376],[4.53738812,0.04017274,98.06755962],[4.53738851,0.0401745,98.06804662],[4.5373889,0.04017626,98.06853534],[4.53738929,0.04017802,98.06902632],[4.53738969,0.04017978,98.06951979],[4.53739008,0.04018154,98.07001559],[4.53739047,0.0401833,98.07051359],[4.53739087,0.04018506,98.07101361],[4.53739126,0.04018682,98.07151552],[4.53739166,0.04018857,98.07201916],[4.53739205,0.04019033,98.07252437],[4.53739244,0.04019209,98.07303102],[4.53739284,0.04019385,98.07353893],[4.53739323,0.04019561,98.07404797],[4.53739363,0.04019737,98.07455798],[4.53739402,0.04019913,98.07506882],[4.53739441,0.04020089,98.07558032],[4.53739481,0.04020264,98.07609234],[4.5373952,0.0402044,98.07660474],[4.53739559,0.04020616,98.07711735],[4.53739161,0.04020707,98.06502578]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-5,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1003400","id":-4,"type":"shoulder","predecessorId":-4,"sOffset":120.7368344413}},{"geometry":{"coordinates":[[[4.53739559,0.04020616,98.07711735],[4.5373952,0.0402044,98.07660474],[4.53739481,0.04020264,98.07609234],[4.53739441,0.04020089,98.07558032],[4.53739402,0.04019913,98.07506882],[4.53739363,0.04019737,98.07455798],[4.53739323,0.04019561,98.07404797],[4.53739284,0.04019385,98.07353893],[4.53739244,0.04019209,98.07303102],[4.53739205,0.04019033,98.07252437],[4.53739166,0.04018857,98.07201916],[4.53739126,0.04018682,98.07151552],[4.53739087,0.04018506,98.07101361],[4.53739047,0.0401833,98.07051359],[4.53739008,0.04018154,98.07001559],[4.53738969,0.04017978,98.06951979],[4.53738929,0.04017802,98.06902632],[4.5373889,0.04017626,98.06853534],[4.53738851,0.0401745,98.06804662],[4.53738812,0.04017274,98.06755962],[4.53738773,0.04017099,98.06707376],[4.53738733,0.04016923,98.06658849],[4.53738694,0.04016747,98.06610333],[4.53738655,0.04016571,98.06561826],[4.53738615,0.04016395,98.06513336],[4.53738576,0.04016219,98.06464873],[4.53738537,0.04016043,98.06416445],[4.53738497,0.04015868,98.06368059],[4.53738458,0.04015692,98.06319726],[4.53738418,0.04015516,98.06271454],[4.53738379,0.0401534,98.0622325],[4.53738339,0.04015164,98.06175125],[4.537383,0.04014988,98.06127085],[4.5373826,0.04014813,98.06079141],[4.53738221,0.04014637,98.06031301],[4.53738181,0.04014461,98.05983573],[4.53738141,0.04014285,98.05935965],[4.53738102,0.04014109,98.05888488],[4.53738062,0.04013934,98.05841149],[4.53738023,0.04013758,98.05793958],[4.53737983,0.04013582,98.05746922],[4.53737943,0.04013406,98.05700051],[4.53737904,0.0401323,98.05653353],[4.53737864,0.04013055,98.05606822],[4.53737825,0.04012879,98.05560386],[4.53737785,0.04012703,98.05513977],[4.53737746,0.04012527,98.05467588],[4.53737706,0.04012352,98.0542123],[4.53737666,0.04012176,98.05374914],[4.53737626,0.04012,98.05328649],[4.53737587,0.04011824,98.05282448],[4.53737547,0.04011649,98.0523632],[4.53737507,0.04011473,98.05190275],[4.53737467,0.04011297,98.05144326],[4.53737427,0.04011121,98.05098481],[4.53737388,0.04010946,98.05052753],[4.53737348,0.0401077,98.05007151],[4.53737308,0.04010594,98.04961687],[4.53737268,0.04010418,98.0491637],[4.53737228,0.04010243,98.04871212],[4.53737188,0.04010067,98.04826224],[4.53737149,0.04009891,98.04781415],[4.53737109,0.04009716,98.04736798],[4.53737069,0.0400954,98.04692382],[4.53737029,0.04009364,98.04648179],[4.5373699,0.04009188,98.04604199],[4.5373695,0.04009013,98.04560452],[4.5373691,0.04008837,98.04516951],[4.53736871,0.04008661,98.04473706],[4.53736831,0.04008485,98.04430726],[4.53736792,0.0400831,98.04388025],[4.53736752,0.04008134,98.04345595],[4.53736713,0.04007958,98.0430337],[4.53736673,0.04007782,98.04261267],[4.53736634,0.04007606,98.042192],[4.53736594,0.04007431,98.04177103],[4.53736554,0.04007255,98.04134973],[4.53736515,0.04007079,98.04092824],[4.53736475,0.04006904,98.04050668],[4.53736435,0.04006728,98.0400852],[4.53736395,0.04006552,98.03966394],[4.53736355,0.04006376,98.03924302],[4.53736315,0.04006201,98.03882258],[4.53736276,0.04006025,98.03840276],[4.53736236,0.04005849,98.03798369],[4.53736196,0.04005674,98.03756552],[4.53736156,0.04005498,98.03714837],[4.53736116,0.04005322,98.03673239],[4.53736076,0.04005147,98.03631771],[4.53736036,0.04004971,98.03590447],[4.53735996,0.04004795,98.0354928],[4.53735956,0.0400462,98.03508284],[4.53735916,0.04004444,98.03467473],[4.53735876,0.04004268,98.03426861],[4.53735836,0.04004093,98.03386461],[4.53735796,0.04003917,98.03346288],[4.53735756,0.04003741,98.03306354],[4.53735716,0.04003566,98.03266675],[4.53735676,0.0400339,98.03227266],[4.53735637,0.04003214,98.03188143],[4.53735597,0.04003039,98.03149322],[4.53735557,0.04002863,98.03110818],[4.53735518,0.04002687,98.03072646],[4.53735478,0.04002512,98.03034822],[4.53735439,0.04002336,98.02997363],[4.53735399,0.0400216,98.02960283],[4.5373536,0.04001984,98.02923596],[4.53735321,0.04001808,98.02887256],[4.53735281,0.04001633,98.02851172],[4.53735242,0.04001457,98.02815306],[4.53735203,0.04001281,98.02779634],[4.53735164,0.04001105,98.02744134],[4.53735124,0.04000929,98.0270878],[4.53735085,0.04000754,98.02673548],[4.53735046,0.04000578,98.02638416],[4.53735007,0.04000402,98.02603357],[4.53734967,0.04000226,98.02568349],[4.53734928,0.0400005,98.02533366],[4.53734889,0.03999875,98.02498386],[4.53734849,0.03999699,98.02463382],[4.5373481,0.03999523,98.02428332],[4.5373477,0.03999347,98.02393211],[4.53734731,0.03999172,98.02357994],[4.53734691,0.03998996,98.02322658],[4.53734651,0.0399882,98.02287177],[4.53734611,0.03998645,98.02251528],[4.53734571,0.03998469,98.02215699],[4.53734531,0.03998294,98.02179727],[4.53734491,0.03998118,98.02143663],[4.5373445,0.03997942,98.02107556],[4.5373441,0.03997767,98.02071459],[4.5373437,0.03997591,98.02035419],[4.53734329,0.03997416,98.01999489],[4.53734289,0.0399724,98.01963718],[4.53734249,0.03997065,98.01928157],[4.53734208,0.03996889,98.01892856],[4.53734168,0.03996714,98.01857866],[4.53734128,0.03996538,98.01823227],[4.53734088,0.03996363,98.01788933],[4.53734048,0.03996187,98.0175497],[4.53734008,0.03996011,98.01721326],[4.53733968,0.03995836,98.01687993],[4.53733928,0.0399566,98.01654959],[4.53733888,0.03995485,98.01622214],[4.53733848,0.03995309,98.01589748],[4.53733808,0.03995133,98.01557551],[4.53733768,0.03994958,98.01525612],[4.53733729,0.03994782,98.01493922],[4.53733689,0.03994606,98.0146247],[4.53733649,0.03994431,98.01431245],[4.53733609,0.03994255,98.01400238],[4.5373357,0.03994079,98.01369438],[4.5373353,0.03993904,98.01338834],[4.5373349,0.03993728,98.01308418],[4.53733451,0.03993552,98.01278177],[4.53733411,0.03993377,98.01248103],[4.53733372,0.03993201,98.01218183],[4.53733332,0.03993025,98.0118841],[4.53733292,0.0399285,98.01158771],[4.53733253,0.03992674,98.01129256],[4.53733213,0.03992498,98.01099856],[4.53733173,0.03992323,98.0107056],[4.53733134,0.03992147,98.01041357],[4.53733094,0.03991971,98.01012237],[4.53733054,0.03991796,98.0098319],[4.53733014,0.0399162,98.00954205],[4.53732975,0.03991444,98.00925274],[4.53732935,0.03991269,98.00896387],[4.53732895,0.03991093,98.00867536],[4.53732855,0.03990918,98.00838734],[4.53732815,0.03990742,98.00809995],[4.53732775,0.03990566,98.00781332],[4.53732735,0.03990391,98.00752761],[4.53732695,0.03990215,98.00724297],[4.53732655,0.0399004,98.00695954],[4.53732615,0.03989864,98.00667746],[4.53732575,0.03989689,98.00639685],[4.53732535,0.03989513,98.00611771],[4.53732495,0.03989337,98.00584],[4.53732455,0.03989162,98.00556369],[4.53732415,0.03988986,98.00528875],[4.53732375,0.03988811,98.00501515],[4.53732335,0.03988635,98.00474284],[4.53732295,0.0398846,98.0044718],[4.53732255,0.03988284,98.00420199],[4.53732215,0.03988109,98.00393339],[4.53732175,0.03987933,98.00366594],[4.53732135,0.03987757,98.00339963],[4.53732095,0.03987582,98.00313442],[4.53732055,0.03987406,98.00287027],[4.53732015,0.03987231,98.00260716],[4.53731975,0.03987055,98.00234505],[4.53731935,0.0398688,98.00208396],[4.53731894,0.03986704,98.00182387],[4.53731854,0.03986529,98.00156477],[4.53731814,0.03986353,98.00130667],[4.53731774,0.03986178,98.00104956],[4.53731734,0.03986002,98.00079343],[4.53731694,0.03985827,98.00053829],[4.53731653,0.03985651,98.00028412],[4.53731613,0.03985476,98.00003093],[4.53731573,0.039853,97.9997787],[4.53731532,0.03985125,97.99952743],[4.53731492,0.03984949,97.99927712],[4.53731452,0.03984774,97.99902777],[4.53731411,0.03984598,97.99877937],[4.53731371,0.03984423,97.99853191],[4.53731331,0.03984248,97.99828539],[4.5373129,0.03984072,97.99803981],[4.5373125,0.03983897,97.99779516],[4.5373121,0.03983721,97.99755144],[4.53731169,0.03983546,97.99730864],[4.53731129,0.0398337,97.99706676],[4.53731088,0.03983195,97.99682579],[4.53731048,0.03983019,97.99658573],[4.53731007,0.03982844,97.99634658],[4.53730967,0.03982669,97.99610836],[4.53730926,0.03982493,97.99587122],[4.53730886,0.03982318,97.99563533],[4.53730845,0.03982142,97.99540087],[4.53730804,0.03981967,97.99516799],[4.53730764,0.03981792,97.9949368],[4.53730723,0.03981616,97.99470736],[4.53730683,0.03981441,97.99447975],[4.53730642,0.03981265,97.99425404],[4.53730602,0.0398109,97.99403031],[4.53730561,0.03980915,97.99380863],[4.53730521,0.03980739,97.99358908],[4.5373048,0.03980564,97.99337172],[4.5373044,0.03980388,97.99315664],[4.537304,0.03980213,97.99294392],[4.53730359,0.03980037,97.99273361],[4.53730319,0.03979862,97.99252581],[4.53730279,0.03979687,97.99232057],[4.53730238,0.03979511,97.99211798],[4.53730198,0.03979336,97.99191809],[4.53730158,0.0397916,97.99172095],[4.53730118,0.03978985,97.99152663],[4.53730078,0.03978809,97.99133513],[4.53730038,0.03978634,97.99114639],[4.53729998,0.03978458,97.99096039],[4.53729958,0.03978283,97.99077705],[4.53729918,0.03978107,97.99059635],[4.53729878,0.03977932,97.99041822],[4.53729838,0.03977756,97.99024262],[4.53729798,0.03977581,97.9900695],[4.53729759,0.03977405,97.98989882],[4.53729719,0.03977229,97.98973051],[4.53729679,0.03977054,97.98956454],[4.53729639,0.03976878,97.98940086],[4.537296,0.03976703,97.98923941],[4.5372956,0.03976527,97.98908015],[4.5372952,0.03976352,97.98892303],[4.53729481,0.03976176,97.98876793],[4.53729441,0.03976,97.98861445],[4.53729402,0.03975825,97.98846213],[4.53729362,0.03975649,97.98831049],[4.53729322,0.03975474,97.98815908],[4.53729282,0.03975298,97.98800741],[4.53729243,0.03975123,97.98785503],[4.53729203,0.03974947,97.98770147],[4.53729163,0.03974772,97.98754636],[4.53729123,0.03974598,97.98738979],[4.53729083,0.03974422,97.98723195],[4.53729043,0.03974247,97.98707303],[4.53729002,0.03974071,97.98691321],[4.53728962,0.03973896,97.98675268],[4.53728922,0.03973721,97.98659164],[4.53728881,0.03973545,97.98643026],[4.5372884,0.0397337,97.98626875],[4.537288,0.03973195,97.98610728],[4.53728759,0.03973019,97.98594605],[4.53728719,0.03972844,97.98578525],[4.53728678,0.03972669,97.98562506],[4.53728637,0.03972493,97.98546567],[4.53728596,0.03972318,97.98530728],[4.53728556,0.03972143,97.98515007],[4.53728515,0.03971967,97.98499423],[4.53728474,0.03971792,97.98483995],[4.53728434,0.03971617,97.98468742],[4.53728393,0.03971441,97.98453682],[4.53728352,0.03971266,97.98438836],[4.53728312,0.03971091,97.98424222],[4.53728271,0.03970915,97.98409862],[4.5372823,0.0397074,97.98395758],[4.5372819,0.03970564,97.98381873],[4.53728149,0.03970389,97.9836818],[4.53728109,0.03970214,97.98354654],[4.53728068,0.03970038,97.98341272],[4.53728028,0.03969863,97.98328007],[4.53727987,0.03969688,97.98314835],[4.53727947,0.03969512,97.98301732],[4.53727906,0.03969337,97.98288673],[4.53727865,0.03969161,97.98275633],[4.53727825,0.03968986,97.98262586],[4.53727784,0.03968811,97.9824951],[4.53727743,0.03968635,97.98236405],[4.53727702,0.0396846,97.98223293],[4.53727661,0.03968285,97.98210201],[4.53727621,0.03968109,97.98197153],[4.5372758,0.03967934,97.98184173],[4.53727539,0.03967759,97.98171286],[4.53727498,0.03967583,97.98158518],[4.53727457,0.03967408,97.98145892],[4.53727416,0.03967233,97.98133434],[4.53727375,0.03967057,97.98121169],[4.53727334,0.03966882,97.98109121],[4.53727293,0.03966707,97.98097314],[4.53727252,0.03966531,97.98085775],[4.53727212,0.03966356,97.98074527],[4.53727171,0.03966181,97.98063595],[4.5372713,0.03966005,97.98053005],[4.5372709,0.0396583,97.98042777],[4.53727049,0.03965654,97.98032859],[4.53727009,0.03965479,97.98023126],[4.53726968,0.03965304,97.98013467],[4.53726928,0.03965128,97.98003852],[4.53726887,0.03964953,97.9799427],[4.53726847,0.03964777,97.9798471],[4.53726806,0.03964602,97.9797516],[4.53726765,0.03964427,97.9796561],[4.53726724,0.03964251,97.97956049],[4.53726684,0.03964076,97.97946465],[4.53726643,0.039639,97.9793685],[4.53726602,0.03963725,97.97927207],[4.53726561,0.0396355,97.9791754],[4.5372652,0.03963374,97.97907853],[4.53726479,0.03963199,97.97898152],[4.53726438,0.03963024,97.9788844],[4.53726397,0.03962848,97.97878721],[4.53726356,0.03962673,97.97869002],[4.53726314,0.03962498,97.97859285],[4.53726273,0.03962323,97.97849575],[4.53726232,0.03962147,97.9783988],[4.53726191,0.03961972,97.97830206],[4.53726149,0.03961797,97.97820561],[4.53726108,0.03961621,97.9781095],[4.53726067,0.03961446,97.97801382],[4.53726025,0.03961271,97.97791863],[4.53725984,0.03961096,97.97782401],[4.53725942,0.0396092,97.97773001],[4.53725901,0.03960745,97.97763672],[4.53725859,0.0396057,97.97754421],[4.53725818,0.03960395,97.97745253],[4.53725776,0.0396022,97.97736177],[4.53725735,0.03960044,97.97727196],[4.53725693,0.03959869,97.9771828],[4.53725652,0.03959694,97.9770942],[4.5372561,0.03959519,97.97700625],[4.53725568,0.03959343,97.97691903],[4.53725527,0.03959168,97.97683262],[4.53725485,0.03958993,97.97674711],[4.53725444,0.03958818,97.97666259],[4.53725402,0.03958643,97.97657914],[4.5372536,0.03958467,97.97649685],[4.53725319,0.03958292,97.97641579],[4.53725277,0.03958117,97.97633606],[4.53725235,0.03957942,97.97625774],[4.53725194,0.03957766,97.97618092],[4.53725152,0.03957591,97.97610568],[4.53725111,0.03957416,97.9760321],[4.53725069,0.03957241,97.97596027],[4.53725027,0.03957066,97.97589027],[4.53724986,0.0395689,97.9758222],[4.53724944,0.03956715,97.97575613],[4.53724903,0.0395654,97.97569215],[4.53724861,0.03956364,97.97563034],[4.5372482,0.03956189,97.97557079],[4.53724778,0.03956014,97.97551359],[4.53724737,0.03955839,97.97545881],[4.53724696,0.03955663,97.97540655],[4.53724655,0.03955488,97.97535688],[4.53724613,0.03955313,97.97530989],[4.53724572,0.03955137,97.97526568],[4.53724531,0.03954962,97.97522412],[4.5372449,0.03954787,97.9751844],[4.53724449,0.03954611,97.97514549],[4.53724408,0.03954436,97.97510639],[4.53724366,0.0395426,97.97506608],[4.53724325,0.03954085,97.97502377],[4.53724283,0.0395391,97.97497956],[4.53724242,0.03953735,97.97493377],[4.537242,0.03953559,97.97488672],[4.53724159,0.03953384,97.97483874],[4.53724117,0.03953209,97.97479013],[4.53724075,0.03953034,97.97474123],[4.53724033,0.03952858,97.97469234],[4.53723992,0.03952683,97.9746438],[4.5372395,0.03952508,97.97459591],[4.53723908,0.03952333,97.974549],[4.53723866,0.03952158,97.97450339],[4.53723824,0.03951982,97.9744594],[4.53723782,0.03951807,97.97441734],[4.5372374,0.03951632,97.97437753],[4.53723699,0.03951457,97.9743403],[4.53723657,0.03951281,97.97430596],[4.53723615,0.03951106,97.97427467],[4.53723574,0.03950931,97.97424596],[4.53723532,0.03950755,97.9742192],[4.53723491,0.0395058,97.97419376],[4.53723449,0.03950405,97.97416901],[4.53723408,0.0395023,97.97414432],[4.53723366,0.03950054,97.97411905],[4.53723324,0.03949879,97.9740927],[4.53723282,0.03949704,97.97406531],[4.53723241,0.03949529,97.97403701],[4.53723199,0.03949353,97.97400797],[4.53723157,0.03949178,97.97397834],[4.53723115,0.03949003,97.97394828],[4.53723073,0.03948828,97.97391797],[4.5372303,0.03948653,97.97388759],[4.53722988,0.03948477,97.9738573],[4.53722946,0.03948302,97.97382724],[4.53722904,0.03948127,97.97379754],[4.53722862,0.03947952,97.97376832],[4.5372282,0.03947777,97.97373971],[4.53722777,0.03947602,97.97371183],[4.53722735,0.03947426,97.97368481],[4.53722693,0.03947251,97.97365878],[4.53722651,0.03947076,97.97363386],[4.53722608,0.03946901,97.97361018],[4.53722566,0.03946726,97.97358786],[4.53722524,0.03946551,97.97356703],[4.53722482,0.03946375,97.97354782],[4.5372244,0.039462,97.97353034],[4.53722397,0.03946025,97.97351474],[4.53722355,0.0394585,97.97350112],[4.53722313,0.03945675,97.97348962],[4.53722271,0.03945499,97.97348037],[4.53722229,0.03945324,97.97347348],[4.53722187,0.03945149,97.97346902],[4.53722145,0.03944974,97.97346675],[4.53722103,0.03944798,97.9734664],[4.53722061,0.03944623,97.97346766],[4.53722019,0.03944448,97.97347024],[4.53721978,0.03944273,97.97347386],[4.53721936,0.03944097,97.97347823],[4.53721894,0.03943922,97.97348306],[4.53721852,0.03943747,97.97348805],[4.5372181,0.03943572,97.97349292],[4.53721768,0.03943396,97.97349737],[4.53721726,0.03943221,97.97350112],[4.53721684,0.03943046,97.97350389],[4.53721641,0.03942871,97.97350556],[4.53721599,0.03942696,97.97350619],[4.53721557,0.0394252,97.97350584],[4.53721514,0.03942345,97.97350458],[4.53721472,0.0394217,97.97350246],[4.53721429,0.03941995,97.97349956],[4.53721387,0.0394182,97.97349593],[4.53721344,0.03941645,97.97349164],[4.53721301,0.0394147,97.97348674],[4.53721259,0.03941295,97.97348131],[4.53721216,0.03941119,97.97347541],[4.53721173,0.03940944,97.9734691],[4.5372113,0.03940769,97.97346251],[4.53721087,0.03940594,97.97345586],[4.53721044,0.03940419,97.97344935],[4.53721001,0.03940244,97.9734432],[4.53720958,0.03940069,97.97343761],[4.53720915,0.03939894,97.9734328],[4.53720872,0.03939719,97.97342896],[4.53720829,0.03939544,97.97342631],[4.53720787,0.03939369,97.97342506],[4.53720744,0.03939194,97.97342524],[4.53720701,0.03939019,97.97342676],[4.53720658,0.03938844,97.97342952],[4.53720615,0.03938669,97.97343341],[4.53720572,0.03938494,97.97343832],[4.53720529,0.03938319,97.97344415],[4.53720486,0.03938144,97.9734508],[4.53720443,0.03937969,97.97345821],[4.537204,0.03937793,97.9734663],[4.53720357,0.03937619,97.973475],[4.53720314,0.03937444,97.97348423],[4.53720271,0.03937269,97.97349393],[4.53720228,0.03937094,97.97350401],[4.53720185,0.03936918,97.97351442],[4.53720142,0.03936743,97.97352506],[4.53720099,0.03936568,97.97353588],[4.53720056,0.03936393,97.9735468],[4.53720013,0.03936218,97.97355774],[4.5371997,0.03936043,97.97356864],[4.53719926,0.03935868,97.97357942],[4.53719883,0.03935693,97.97359],[4.5371984,0.03935518,97.97360033],[4.53719797,0.03935343,97.97361031],[4.53719753,0.03935168,97.97361989],[4.5371971,0.03934993,97.97362898],[4.53719666,0.03934818,97.97363752],[4.53719623,0.03934644,97.97364545],[4.53719579,0.03934469,97.97365278],[4.53719536,0.03934294,97.97365968],[4.53719492,0.03934119,97.97366629],[4.53719449,0.03933944,97.97367275],[4.53719405,0.03933769,97.97367922],[4.53719361,0.03933594,97.97368584],[4.53719317,0.03933419,97.97369275],[4.53719274,0.03933244,97.97370012],[4.5371923,0.03933069,97.97370808],[4.53719186,0.03932894,97.97371678],[4.53719142,0.0393272,97.97372637],[4.53719098,0.03932545,97.97373699],[4.53719055,0.0393237,97.9737488],[4.53719011,0.03932195,97.97376194],[4.53718967,0.0393202,97.97377654],[4.53718924,0.03931845,97.97379273],[4.5371888,0.0393167,97.97381063],[4.53718836,0.03931495,97.97383037],[4.53718793,0.0393132,97.97385205],[4.53718749,0.03931145,97.97387564],[4.53718705,0.0393097,97.97390108],[4.53718662,0.03930796,97.97392831],[4.53718618,0.03930621,97.97395728],[4.53718575,0.03930446,97.97398792],[4.53718531,0.03930271,97.97402019],[4.53718488,0.03930096,97.97405403],[4.53718444,0.03929921,97.97408937],[4.53718401,0.03929746,97.97412616],[4.53718358,0.03929571,97.97416435],[4.53718314,0.03929396,97.97420387],[4.53718271,0.03929221,97.97424467],[4.53718228,0.03929046,97.97428669],[4.53718184,0.03928871,97.97432988],[4.53718141,0.03928696,97.97437416],[4.53718098,0.03928521,97.97441946],[4.53718054,0.03928346,97.97446548],[4.53718011,0.03928171,97.97451194],[4.53717967,0.03927996,97.97455866],[4.53717924,0.03927821,97.97460562],[4.53717881,0.03927646,97.9746528],[4.53717837,0.03927471,97.97470018],[4.53717794,0.03927296,97.97474773],[4.5371775,0.03927121,97.97479545],[4.53717707,0.03926946,97.9748433],[4.53717663,0.03926771,97.97489127],[4.5371762,0.03926596,97.97493934],[4.53717576,0.03926421,97.97498748],[4.53717532,0.03926246,97.97503567],[4.53717489,0.03926071,97.97508391],[4.53717445,0.03925896,97.97513215],[4.53717401,0.03925721,97.97518039],[4.53717358,0.03925546,97.97522861],[4.53717314,0.03925371,97.97527677],[4.5371727,0.03925196,97.97532488],[4.53717226,0.03925021,97.97537289],[4.53717183,0.03924846,97.97542079],[4.53717139,0.03924671,97.97546857],[4.53717095,0.03924496,97.9755162],[4.53717051,0.03924321,97.97556366],[4.53717007,0.03924147,97.97561093],[4.53716963,0.03923972,97.97565799],[4.53716919,0.03923797,97.97570482],[4.53716875,0.03923622,97.97575141],[4.53716831,0.03923447,97.97579789],[4.53716787,0.03923272,97.97584454],[4.53716743,0.03923097,97.97589148],[4.53716698,0.03922923,97.9759387],[4.53716654,0.03922748,97.97598614],[4.5371661,0.03922573,97.97603377],[4.53716566,0.03922398,97.97608156],[4.53716522,0.03922223,97.97612948],[4.53716477,0.03922048,97.97617748],[4.53716433,0.03921873,97.97622552],[4.53716389,0.03921699,97.97627359],[4.53716344,0.03921524,97.97632162],[4.537163,0.03921349,97.97636961],[4.53716256,0.03921174,97.97641749],[4.53716211,0.03920999,97.97646525],[4.53716167,0.03920825,97.97651284],[4.53716122,0.0392065,97.97656023],[4.53716078,0.03920475,97.97660738],[4.53716033,0.039203,97.97665426],[4.53715989,0.03920126,97.97670083],[4.53715944,0.03919951,97.97674706],[4.53715899,0.03919776,97.97679291],[4.53715855,0.03919601,97.97683834],[4.5371581,0.03919427,97.97688332],[4.53715765,0.03919252,97.97692781],[4.5371572,0.03919077,97.97697178],[4.53715676,0.03918902,97.97701519],[4.53715631,0.03918728,97.97705801],[4.53715586,0.03918553,97.9771002],[4.53715541,0.03918378,97.97714172],[4.53715496,0.03918204,97.9771825],[4.53715451,0.03918029,97.97722222],[4.53715405,0.03917854,97.97726063],[4.5371536,0.0391768,97.97729764],[4.53715315,0.03917505,97.97733329],[4.53715269,0.03917331,97.97736758],[4.53715224,0.03917156,97.97740052],[4.53715179,0.03916981,97.97743212],[4.53715133,0.03916807,97.97746241],[4.53715087,0.03916632,97.97749138],[4.53715042,0.03916458,97.97751907],[4.53714996,0.03916283,97.97754546],[4.5371495,0.03916109,97.97757059],[4.53714904,0.03915934,97.97759447],[4.53714858,0.0391576,97.9776171],[4.53714812,0.03915586,97.97763849],[4.53714766,0.03915411,97.97765867],[4.5371472,0.03915237,97.97767765],[4.53714674,0.03915063,97.97769543],[4.53714627,0.03914888,97.97771203],[4.53714581,0.03914714,97.97772747],[4.53714535,0.0391454,97.97774175],[4.53714488,0.03914366,97.9777549],[4.53714442,0.03914191,97.97776691],[4.53714395,0.03914017,97.97777781],[4.53714348,0.03913843,97.9777876],[4.53714302,0.03913669,97.97779631],[4.53714255,0.03913495,97.97780394],[4.53714208,0.03913321,97.97781049],[4.53714161,0.03913147,97.97781596],[4.53714114,0.03912972,97.97782034],[4.53714067,0.03912798,97.97782364],[4.5371402,0.03912624,97.97782584],[4.53713973,0.0391245,97.97782695],[4.53713926,0.03912276,97.97782695],[4.53713879,0.03912102,97.97782584],[4.53713831,0.03911928,97.97782363],[4.53713784,0.03911754,97.9778203],[4.53713737,0.0391158,97.97781585],[4.53713689,0.03911406,97.97781028],[4.53713641,0.03911232,97.97780358],[4.53713594,0.03911058,97.97779575],[4.53713546,0.03910884,97.97778679],[4.53713498,0.03910711,97.97777668],[4.53713451,0.03910537,97.97776543],[4.53713403,0.03910363,97.97775303],[4.53713355,0.03910189,97.97773948],[4.53713307,0.03910015,97.97772477],[4.53713259,0.03909841,97.9777089],[4.53713211,0.03909667,97.97769187],[4.53713162,0.03909494,97.97767366],[4.53713114,0.0390932,97.97765428],[4.53713066,0.03909146,97.97763373],[4.53713017,0.03908972,97.97761199],[4.53712969,0.03908799,97.97758907],[4.5371292,0.03908625,97.97756495],[4.53712872,0.03908451,97.97753964],[4.53712823,0.03908277,97.97751313],[4.53712774,0.03908104,97.97748542],[4.53712766,0.03908072,97.97748026],[4.53716337,0.03907208,98.08848807],[4.53716345,0.0390724,98.08845924],[4.53716387,0.03907415,98.0883015],[4.53716429,0.0390759,98.08814525],[4.53716471,0.03907765,98.08799044],[4.53716513,0.03907941,98.08783697],[4.53716556,0.03908116,98.08768477],[4.53716598,0.03908291,98.08753378],[4.5371664,0.03908467,98.0873839],[4.53716682,0.03908642,98.08723508],[4.53716725,0.03908817,98.08708722],[4.53716767,0.03908992,98.08694025],[4.53716809,0.03909168,98.0867941],[4.53716852,0.03909343,98.08664869],[4.53716894,0.03909518,98.08650394],[4.53716936,0.03909693,98.08635978],[4.53716978,0.03909869,98.08621613],[4.53717021,0.03910044,98.08607292],[4.53717063,0.03910219,98.08593006],[4.53717105,0.03910394,98.08578748],[4.53717147,0.0391057,98.0856451],[4.5371719,0.03910745,98.08550285],[4.53717232,0.0391092,98.08536065],[4.53717274,0.03911096,98.08521843],[4.53717316,0.03911271,98.08507609],[4.53717358,0.03911446,98.08493358],[4.537174,0.03911621,98.08479081],[4.53717442,0.03911797,98.0846477],[4.53717484,0.03911972,98.08450418],[4.53717526,0.03912147,98.08436016],[4.53717568,0.03912323,98.08421558],[4.5371761,0.03912498,98.08407036],[4.53717652,0.03912673,98.08392441],[4.53717694,0.03912849,98.08377766],[4.53717735,0.03913024,98.08363015],[4.53717777,0.039132,98.08348201],[4.53717819,0.03913375,98.08333337],[4.5371786,0.0391355,98.08318438],[4.53717902,0.03913726,98.08303518],[4.53717943,0.03913901,98.0828859],[4.53717985,0.03914077,98.08273668],[4.53718026,0.03914252,98.08258768],[4.53718068,0.03914428,98.08243901],[4.53718109,0.03914603,98.08229083],[4.53718151,0.03914779,98.08214328],[4.53718192,0.03914954,98.08199649],[4.53718234,0.0391513,98.08185061],[4.53718275,0.03915305,98.08170577],[4.53718317,0.03915481,98.08156212],[4.53718358,0.03915656,98.08141979],[4.537184,0.03915832,98.08127893],[4.53718442,0.03916007,98.08113968],[4.53718483,0.03916183,98.08100218],[4.53718525,0.03916358,98.08086657],[4.53718567,0.03916534,98.08073299],[4.53718608,0.03916709,98.08060158],[4.5371865,0.03916884,98.08047248],[4.53718692,0.0391706,98.08034584],[4.53718734,0.03917235,98.0802218],[4.53718776,0.03917411,98.08010051],[4.53718818,0.03917586,98.07998212],[4.5371886,0.03917761,98.07986675],[4.53718902,0.03917937,98.07975429],[4.53718945,0.03918112,98.07964458],[4.53718987,0.03918287,98.07953748],[4.53719029,0.03918463,98.07943283],[4.53719072,0.03918638,98.07933047],[4.53719114,0.03918813,98.07923025],[4.53719157,0.03918988,98.07913203],[4.53719199,0.03919164,98.07903563],[4.53719242,0.03919339,98.07894092],[4.53719284,0.03919514,98.07884774],[4.53719327,0.03919689,98.07875592],[4.5371937,0.03919865,98.07866533],[4.53719412,0.0392004,98.0785758],[4.53719455,0.03920215,98.07848718],[4.53719498,0.0392039,98.07839931],[4.5371954,0.03920566,98.07831204],[4.53719583,0.03920741,98.07822522],[4.53719626,0.03920916,98.07813869],[4.53719668,0.03921091,98.0780523],[4.53719711,0.03921266,98.07796588],[4.53719753,0.03921442,98.07787929],[4.53719796,0.03921617,98.07779237],[4.53719838,0.03921792,98.07770497],[4.53719881,0.03921967,98.07761693],[4.53719923,0.03922143,98.07752809],[4.53719965,0.03922318,98.0774383],[4.53720008,0.03922493,98.0773474],[4.5372005,0.03922669,98.07725524],[4.53720092,0.03922844,98.07716166],[4.53720134,0.03923019,98.07706651],[4.53720176,0.03923195,98.0769698],[4.53720218,0.0392337,98.07687166],[4.5372026,0.03923546,98.07677226],[4.53720302,0.03923721,98.07667174],[4.53720343,0.03923896,98.07657027],[4.53720385,0.03924072,98.07646801],[4.53720427,0.03924247,98.0763651],[4.53720468,0.03924423,98.07626171],[4.5372051,0.03924598,98.07615798],[4.53720551,0.03924774,98.07605409],[4.53720593,0.03924949,98.07595017],[4.53720634,0.03925125,98.07584639],[4.53720676,0.039253,98.07574291],[4.53720717,0.03925476,98.07563988],[4.53720759,0.03925651,98.07553746],[4.537208,0.03925827,98.07543581],[4.53720842,0.03926002,98.07533508],[4.53720883,0.03926178,98.07523542],[4.53720924,0.03926353,98.07513701],[4.53720966,0.03926529,98.07503998],[4.53721007,0.03926704,98.07494451],[4.53721049,0.03926879,98.07485074],[4.53721091,0.03927055,98.07475884],[4.53721132,0.0392723,98.07466896],[4.53721174,0.03927406,98.07458127],[4.53721216,0.03927581,98.07449591],[4.53721257,0.03927757,98.07441304],[4.53721299,0.03927932,98.07433283],[4.53721341,0.03928107,98.07425539],[4.53721383,0.03928283,98.07418067],[4.53721425,0.03928458,98.07410857],[4.53721467,0.03928634,98.07403899],[4.53721509,0.03928809,98.07397185],[4.53721551,0.03928984,98.07390705],[4.53721593,0.03929159,98.07384449],[4.53721636,0.03929335,98.07378406],[4.53721678,0.0392951,98.07372569],[4.5372172,0.03929685,98.07366926],[4.53721763,0.03929861,98.07361469],[4.53721805,0.03930036,98.07356187],[4.53721847,0.03930211,98.07351072],[4.5372189,0.03930386,98.07346112],[4.53721932,0.03930562,98.07341299],[4.53721975,0.03930737,98.07336622],[4.53722017,0.03930912,98.07332073],[4.53722059,0.03931087,98.07327641],[4.53722102,0.03931262,98.07323316],[4.53722144,0.03931438,98.07319089],[4.53722187,0.03931613,98.07314951],[4.53722229,0.03931788,98.07310889],[4.53722272,0.03931963,98.07306894],[4.53722314,0.03932139,98.07302953],[4.53722357,0.03932314,98.07299054],[4.53722399,0.03932489,98.07295185],[4.53722441,0.03932664,98.07291334],[4.53722484,0.0393284,98.0728749],[4.53722526,0.03933015,98.0728364],[4.53722569,0.0393319,98.07279773],[4.53722611,0.03933365,98.07275877],[4.53722653,0.03933541,98.0727194],[4.53722695,0.03933716,98.0726795],[4.53722737,0.03933891,98.07263894],[4.53722779,0.03934066,98.07259763],[4.53722821,0.03934242,98.07255554],[4.53722863,0.03934417,98.07251277],[4.53722905,0.03934592,98.07246943],[4.53722947,0.03934768,98.07242561],[4.53722989,0.03934943,98.07238142],[4.53723031,0.03935119,98.07233695],[4.53723073,0.03935294,98.07229232],[4.53723114,0.03935469,98.07224761],[4.53723156,0.03935645,98.07220293],[4.53723198,0.0393582,98.07215839],[4.5372324,0.03935996,98.07211408],[4.53723281,0.03936171,98.07207011],[4.53723323,0.03936346,98.07202658],[4.53723365,0.03936522,98.07198358],[4.53723406,0.03936697,98.07194123],[4.53723448,0.03936873,98.07189962],[4.53723489,0.03937048,98.07185885],[4.53723531,0.03937223,98.07181903],[4.53723573,0.03937399,98.07178026],[4.53723614,0.03937574,98.07174264],[4.53723656,0.03937749,98.07170627],[4.53723697,0.03937925,98.07167127],[4.53723739,0.039381,98.07163778],[4.53723781,0.03938276,98.07160592],[4.53723823,0.03938451,98.07157585],[4.53723864,0.03938626,98.07154768],[4.53723906,0.03938802,98.07152156],[4.53723948,0.03938977,98.07149745],[4.5372399,0.03939152,98.07147519],[4.53724032,0.03939328,98.0714546],[4.53724074,0.03939503,98.07143549],[4.53724115,0.03939678,98.0714177],[4.53724157,0.03939854,98.07140103],[4.53724199,0.03940029,98.07138531],[4.53724241,0.03940204,98.07137035],[4.53724283,0.0394038,98.07135598],[4.53724325,0.03940555,98.07134202],[4.53724367,0.0394073,98.07132829],[4.53724409,0.03940906,98.0713146],[4.5372445,0.03941081,98.07130077],[4.53724492,0.03941257,98.07128664],[4.53724534,0.03941432,98.071272],[4.53724575,0.03941607,98.07125669],[4.53724617,0.03941783,98.07124052],[4.53724658,0.03941958,98.07122331],[4.537247,0.03942134,98.07120488],[4.53724741,0.03942309,98.07118506],[4.53724783,0.03942484,98.07116366],[4.53724824,0.0394266,98.07114067],[4.53724865,0.03942835,98.07111627],[4.53724906,0.03943011,98.07109063],[4.53724947,0.03943187,98.07106391],[4.53724988,0.03943362,98.07103629],[4.53725029,0.03943538,98.07100794],[4.5372507,0.03943713,98.07097903],[4.5372511,0.03943889,98.07094974],[4.53725151,0.03944064,98.07092023],[4.53725192,0.0394424,98.07089067],[4.53725233,0.03944416,98.07086125],[4.53725273,0.03944591,98.07083212],[4.53725314,0.03944767,98.07080347],[4.53725355,0.03944942,98.07077547],[4.53725395,0.03945118,98.07074828],[4.53725436,0.03945294,98.07072208],[4.53725477,0.03945469,98.07069704],[4.53725517,0.03945645,98.07067334],[4.53725558,0.0394582,98.07065115],[4.53725599,0.03945996,98.07063063],[4.53725639,0.03946172,98.07061197],[4.5372568,0.03946347,98.07059533],[4.53725721,0.03946523,98.07058089],[4.53725762,0.03946698,98.07056883],[4.53725803,0.03946874,98.0705593],[4.53725844,0.03947049,98.07055249],[4.53725884,0.03947225,98.07054857],[4.53725926,0.039474,98.07054771],[4.53725967,0.03947576,98.07055008],[4.53726008,0.03947751,98.07055586],[4.53726049,0.03947927,98.07056523],[4.5372609,0.03948102,98.07057834],[4.53726132,0.03948278,98.07059532],[4.53726173,0.03948453,98.07061631],[4.53726215,0.03948628,98.07064141],[4.53726257,0.03948804,98.07067077],[4.53726299,0.03948979,98.07070454],[4.53726341,0.03949154,98.07074285],[4.53726383,0.0394933,98.07078585],[4.53726425,0.03949505,98.0708337],[4.53726467,0.0394968,98.07088654],[4.5372651,0.03949855,98.07094452],[4.53726552,0.0395003,98.07100779],[4.53726595,0.03950205,98.07107649],[4.53726638,0.0395038,98.07115077],[4.53726681,0.03950555,98.07123079],[4.53726724,0.0395073,98.07131652],[4.53726767,0.03950905,98.07140733],[4.5372681,0.0395108,98.07150241],[4.53726854,0.03951255,98.07160095],[4.53726897,0.0395143,98.07170216],[4.53726941,0.03951605,98.07180524],[4.53726984,0.0395178,98.07190937],[4.53727028,0.03951955,98.07201375],[4.53727071,0.0395213,98.07211759],[4.53727114,0.03952305,98.07222007],[4.53727158,0.0395248,98.0723204],[4.53727201,0.03952655,98.07241776],[4.53727244,0.0395283,98.07251135],[4.53727286,0.03953005,98.07260038],[4.53727329,0.0395318,98.07268402],[4.53727371,0.03953355,98.07276149],[4.53727413,0.0395353,98.07283197],[4.53727455,0.03953706,98.07289487],[4.53727497,0.03953881,98.07295051],[4.53727538,0.03954056,98.0729994],[4.53727579,0.03954232,98.07304208],[4.5372762,0.03954407,98.07307907],[4.53727661,0.03954583,98.0731109],[4.53727701,0.03954758,98.0731381],[4.53727742,0.03954934,98.0731612],[4.53727782,0.0395511,98.07318072],[4.53727822,0.03955285,98.0731972],[4.53727862,0.03955461,98.07321116],[4.53727902,0.03955637,98.07322313],[4.53727941,0.03955813,98.07323364],[4.53727981,0.03955988,98.07324322],[4.53728021,0.03956164,98.07325239],[4.5372806,0.0395634,98.07326169],[4.537281,0.03956516,98.07327165],[4.53728139,0.03956692,98.07328279],[4.53728179,0.03956867,98.07329565],[4.53728219,0.03957043,98.07331075],[4.53728258,0.03957219,98.07332862],[4.53728298,0.03957395,98.0733498],[4.53728338,0.03957571,98.0733748],[4.53728378,0.03957746,98.07340417],[4.53728418,0.03957922,98.07343843],[4.53728458,0.03958098,98.07347811],[4.53728499,0.03958273,98.07352374],[4.53728539,0.03958449,98.07357585],[4.5372858,0.03958624,98.07363497],[4.53728621,0.039588,98.07370163],[4.53728662,0.03958975,98.07377636],[4.53728703,0.03959151,98.07385969],[4.53728745,0.03959326,98.07395215],[4.53728787,0.03959501,98.07405424],[4.53728829,0.03959676,98.07416593],[4.53728871,0.03959851,98.07428662],[4.53728914,0.03960027,98.0744157],[4.53728957,0.03960202,98.07455253],[4.53728999,0.03960377,98.0746965],[4.53729043,0.03960551,98.07484699],[4.53729086,0.03960726,98.07500338],[4.53729129,0.03960901,98.07516506],[4.53729173,0.03961076,98.07533139],[4.53729216,0.03961251,98.07550176],[4.5372926,0.03961426,98.07567555],[4.53729304,0.03961601,98.07585215],[4.53729348,0.03961775,98.07603091],[4.53729391,0.0396195,98.07621125],[4.53729435,0.03962125,98.07639254],[4.53729479,0.039623,98.0765742],[4.53729523,0.03962475,98.07675564],[4.53729566,0.03962649,98.07693625],[4.5372961,0.03962824,98.07711544],[4.53729653,0.03962999,98.07729262],[4.53729696,0.03963174,98.0774672],[4.5372974,0.03963349,98.07763857],[4.53729783,0.03963524,98.07780613],[4.53729825,0.03963699,98.07796928],[4.53729868,0.03963874,98.0781274],[4.53729911,0.03964049,98.07827988],[4.53729953,0.03964224,98.0784261],[4.53729995,0.03964399,98.07856545],[4.53730036,0.03964575,98.07869732],[4.53730078,0.0396475,98.0788211],[4.53730119,0.03964925,98.07893636],[4.5373016,0.03965101,98.07904349],[4.537302,0.03965276,98.07914304],[4.5373024,0.03965452,98.07923558],[4.5373028,0.03965628,98.07932169],[4.5373032,0.03965803,98.07940193],[4.5373036,0.03965979,98.07947687],[4.53730399,0.03966155,98.07954709],[4.53730439,0.03966331,98.07961314],[4.53730478,0.03966507,98.0796756],[4.53730517,0.03966682,98.07973503],[4.53730555,0.03966858,98.07979201],[4.53730594,0.03967034,98.07984711],[4.53730633,0.0396721,98.07990089],[4.53730671,0.03967386,98.07995392],[4.5373071,0.03967562,98.08000677],[4.53730748,0.03967738,98.08006],[4.53730787,0.03967914,98.0801142],[4.53730826,0.0396809,98.08016992],[4.53730864,0.03968266,98.08022774],[4.53730903,0.03968442,98.08028822],[4.53730941,0.03968618,98.08035193],[4.5373098,0.03968794,98.08041944],[4.53731019,0.0396897,98.08049133],[4.53731058,0.03969146,98.08056814],[4.53731097,0.03969322,98.08065047],[4.53731136,0.03969498,98.08073887],[4.53731175,0.03969674,98.08083391],[4.53731215,0.03969849,98.08093616],[4.53731255,0.03970025,98.08104618],[4.53731295,0.03970201,98.08116456],[4.53731335,0.03970376,98.08129167],[4.53731375,0.03970552,98.08142719],[4.53731416,0.03970727,98.08157062],[4.53731457,0.03970903,98.08172145],[4.53731498,0.03971078,98.08187919],[4.53731539,0.03971253,98.08204334],[4.5373158,0.03971429,98.08221342],[4.53731622,0.03971604,98.08238893],[4.53731663,0.03971779,98.08256938],[4.53731705,0.03971955,98.08275427],[4.53731747,0.0397213,98.08294312],[4.53731788,0.03972305,98.08313543],[4.5373183,0.0397248,98.0833307],[4.53731872,0.03972655,98.08352846],[4.53731914,0.03972831,98.0837282],[4.53731956,0.03973006,98.08392943],[4.53731998,0.03973181,98.08413166],[4.5373204,0.03973356,98.0843344],[4.53732082,0.03973531,98.08453715],[4.53732123,0.03973706,98.08473944],[4.53732165,0.03973882,98.08494075],[4.53732206,0.03974055,98.08514061],[4.53732248,0.03974231,98.08533852],[4.53732289,0.03974406,98.0855341],[4.5373233,0.03974581,98.0857274],[4.53732372,0.03974757,98.08591859],[4.53732413,0.03974932,98.08610783],[4.53732454,0.03975107,98.08629529],[4.53732495,0.03975283,98.08648113],[4.53732535,0.03975458,98.08666553],[4.53732576,0.03975634,98.08684863],[4.53732617,0.03975809,98.08703062],[4.53732657,0.03975985,98.08721165],[4.53732698,0.0397616,98.08739189],[4.53732738,0.03976336,98.08757151],[4.53732779,0.03976511,98.08775066],[4.53732819,0.03976687,98.08792952],[4.53732859,0.03976863,98.08810825],[4.53732899,0.03977038,98.08828702],[4.5373294,0.03977214,98.08846599],[4.5373298,0.03977389,98.08864532],[4.5373302,0.03977565,98.08882518],[4.5373306,0.03977741,98.08900574],[4.537331,0.03977916,98.08918716],[4.5373314,0.03978092,98.0893696],[4.5373318,0.03978267,98.08955323],[4.5373322,0.03978443,98.08973822],[4.53733261,0.03978619,98.08992467],[4.53733301,0.03978794,98.09011264],[4.53733341,0.0397897,98.09030219],[4.53733381,0.03979146,98.09049337],[4.53733421,0.03979321,98.09068625],[4.53733461,0.03979497,98.09088085],[4.53733501,0.03979672,98.09107722],[4.53733541,0.03979848,98.0912754],[4.53733582,0.03980024,98.09147544],[4.53733622,0.03980199,98.09167736],[4.53733662,0.03980375,98.09188122],[4.53733702,0.0398055,98.09208706],[4.53733742,0.03980726,98.09229492],[4.53733783,0.03980902,98.09250483],[4.53733823,0.03981077,98.09271684],[4.53733863,0.03981253,98.09293099],[4.53733904,0.03981428,98.09314733],[4.53733944,0.03981604,98.09336587],[4.53733984,0.03981779,98.09358657],[4.53734025,0.03981955,98.09380937],[4.53734065,0.03982131,98.09403422],[4.53734106,0.03982306,98.09426104],[4.53734146,0.03982482,98.09448978],[4.53734187,0.03982657,98.09472039],[4.53734227,0.03982833,98.09495279],[4.53734268,0.03983008,98.09518692],[4.53734308,0.03983184,98.09542273],[4.53734349,0.03983359,98.09566016],[4.53734389,0.03983535,98.09589914],[4.5373443,0.0398371,98.09613962],[4.5373447,0.03983886,98.09638153],[4.53734511,0.03984061,98.09662482],[4.53734552,0.03984237,98.09686941],[4.53734592,0.03984413,98.09711526],[4.53734633,0.03984588,98.0973623],[4.53734673,0.03984764,98.09761047],[4.53734714,0.03984939,98.09785971],[4.53734754,0.03985115,98.09810996],[4.53734795,0.0398529,98.09836116],[4.53734835,0.03985466,98.09861325],[4.53734876,0.03985641,98.09886617],[4.53734916,0.03985817,98.09911986],[4.53734956,0.03985993,98.09937426],[4.53734997,0.03986168,98.09962931],[4.53735037,0.03986344,98.09988494],[4.53735078,0.03986519,98.1001411],[4.53735118,0.03986695,98.10039773],[4.53735158,0.0398687,98.10065478],[4.53735198,0.03987046,98.10091223],[4.53735239,0.03987222,98.10117004],[4.53735279,0.03987397,98.10142817],[4.53735319,0.03987573,98.10168661],[4.53735359,0.03987749,98.10194531],[4.53735399,0.03987924,98.10220425],[4.53735439,0.039881,98.1024634],[4.53735479,0.03988276,98.10272272],[4.53735519,0.03988451,98.10298219],[4.53735559,0.03988627,98.10324178],[4.53735599,0.03988803,98.10350145],[4.53735639,0.03988978,98.10376117],[4.53735679,0.03989154,98.10402092],[4.53735719,0.0398933,98.10428066],[4.53735758,0.03989506,98.10454036],[4.53735798,0.03989681,98.1048],[4.53735838,0.03989857,98.10505953],[4.53735877,0.03990033,98.10531894],[4.53735917,0.03990209,98.10557819],[4.53735956,0.03990385,98.10583725],[4.53735996,0.0399056,98.1060961],[4.53736035,0.03990736,98.10635473],[4.53736074,0.03990912,98.10661333],[4.53736114,0.03991088,98.10687211],[4.53736153,0.03991264,98.10713128],[4.53736192,0.0399144,98.10739106],[4.53736231,0.03991615,98.10765166],[4.5373627,0.03991791,98.1079133],[4.5373631,0.03991967,98.10817621],[4.53736349,0.03992143,98.10844059],[4.53736388,0.03992319,98.10870667],[4.53736427,0.03992495,98.10897467],[4.53736467,0.03992671,98.1092448],[4.53736506,0.03992846,98.10951728],[4.53736545,0.03993022,98.10979234],[4.53736585,0.03993198,98.11007018],[4.53736624,0.03993374,98.11035102],[4.53736663,0.0399355,98.11063509],[4.53736703,0.03993726,98.1109226],[4.53736743,0.03993901,98.11121376],[4.53736782,0.03994077,98.1115088],[4.53736822,0.03994253,98.11180792],[4.53736862,0.03994429,98.11211136],[4.53736902,0.03994604,98.11241931],[4.53736942,0.0399478,98.112732],[4.53736982,0.03994956,98.11304964],[4.53737022,0.03995131,98.11337246],[4.53737063,0.03995307,98.11370066],[4.53737103,0.03995482,98.11403446],[4.53737144,0.03995658,98.11437407],[4.53737185,0.03995834,98.11471972],[4.53737226,0.03996009,98.1150716],[4.53737267,0.03996184,98.11542984],[4.53737308,0.0399636,98.1157941],[4.5373735,0.03996535,98.11616392],[4.53737391,0.03996711,98.11653886],[4.53737433,0.03996886,98.11691848],[4.53737475,0.03997061,98.11730232],[4.53737517,0.03997236,98.11768996],[4.53737558,0.03997412,98.11808093],[4.537376,0.03997587,98.1184748],[4.53737642,0.03997762,98.11887112],[4.53737684,0.03997937,98.11926944],[4.53737726,0.03998113,98.11966933],[4.53737768,0.03998288,98.12007034],[4.5373781,0.03998463,98.12047203],[4.53737852,0.03998639,98.12087395],[4.53737894,0.03998814,98.12127567],[4.53737936,0.03998989,98.12167674],[4.53737978,0.03999164,98.12207672],[4.53738019,0.0399934,98.12247516],[4.53738061,0.03999515,98.12287164],[4.53738102,0.0399969,98.12326571],[4.53738143,0.03999866,98.12365693],[4.53738185,0.04000041,98.12404486],[4.53738226,0.04000217,98.12442906],[4.53738266,0.04000392,98.1248091],[4.53738307,0.04000568,98.12518454],[4.53738347,0.04000744,98.12555493],[4.53738388,0.04000919,98.12591984],[4.53738427,0.04001095,98.12627883],[4.53738467,0.04001271,98.12663161],[4.53738507,0.04001447,98.12697843],[4.53738546,0.04001623,98.12731968],[4.53738585,0.04001798,98.12765578],[4.53738624,0.04001974,98.12798713],[4.53738662,0.0400215,98.12831411],[4.53738701,0.04002327,98.12863712],[4.53738739,0.04002503,98.12895657],[4.53738777,0.04002679,98.12927286],[4.53738815,0.04002855,98.12958637],[4.53738853,0.04003031,98.12989751],[4.53738891,0.04003207,98.13020667],[4.53738929,0.04003384,98.13051426],[4.53738966,0.0400356,98.13082069],[4.53739004,0.04003736,98.13112638],[4.53739041,0.04003913,98.13143173],[4.53739079,0.04004089,98.13173716],[4.53739116,0.04004265,98.13204308],[4.53739154,0.04004441,98.1323499],[4.53739191,0.04004618,98.13265804],[4.53739229,0.04004794,98.13296789],[4.53739266,0.0400497,98.13327988],[4.53739304,0.04005147,98.13359441],[4.53739341,0.04005323,98.13391189],[4.53739379,0.04005499,98.13423273],[4.53739416,0.04005676,98.13455734],[4.53739454,0.04005852,98.13488612],[4.53739492,0.04006028,98.13521949],[4.5373953,0.04006204,98.13555784],[4.53739568,0.0400638,98.13590159],[4.53739606,0.04006557,98.13625115],[4.53739645,0.04006733,98.1366069],[4.53739683,0.04006909,98.13696927],[4.53739722,0.04007085,98.13733866],[4.53739761,0.04007261,98.13771546],[4.537398,0.04007437,98.13810008],[4.53739839,0.04007613,98.13849293],[4.53739879,0.04007788,98.13889426],[4.53739919,0.04007964,98.13930366],[4.53739959,0.0400814,98.13972061],[4.53739999,0.04008316,98.14014457],[4.53740039,0.04008491,98.140575],[4.5374008,0.04008667,98.14101135],[4.53740121,0.04008842,98.14145308],[4.53740161,0.04009018,98.14189967],[4.53740202,0.04009194,98.14235057],[4.53740243,0.04009369,98.14280525],[4.53740284,0.04009545,98.14326317],[4.53740325,0.0400972,98.14372379],[4.53740366,0.04009896,98.14418659],[4.53740407,0.04010071,98.14465102],[4.53740449,0.04010247,98.14511655],[4.5374049,0.04010422,98.14558265],[4.53740531,0.04010598,98.14604879],[4.53740572,0.04010773,98.14651444],[4.53740612,0.04010949,98.14697906],[4.53740653,0.04011124,98.14744213],[4.53740694,0.040113,98.14790311],[4.53740735,0.04011475,98.14836148],[4.53740775,0.04011651,98.14881671],[4.53740815,0.04011827,98.14926827],[4.53740855,0.04012003,98.14971564],[4.53740895,0.04012178,98.15015828],[4.53740935,0.04012354,98.15059584],[4.53740974,0.0401253,98.15102859],[4.53741014,0.04012706,98.15145698],[4.53741053,0.04012882,98.15188145],[4.53741092,0.04013058,98.15230243],[4.53741131,0.04013234,98.15272037],[4.53741169,0.0401341,98.15313571],[4.53741208,0.04013586,98.15354889],[4.53741246,0.04013762,98.15396034],[4.53741285,0.04013938,98.1543705],[4.53741323,0.04014114,98.15477981],[4.53741361,0.04014291,98.15518871],[4.537414,0.04014467,98.15559763],[4.53741438,0.04014643,98.156007],[4.53741476,0.04014819,98.15641727],[4.53741514,0.04014995,98.15682887],[4.53741553,0.04015171,98.15724222],[4.53741591,0.04015348,98.15765777],[4.53741629,0.04015524,98.15807594],[4.53741667,0.040157,98.15849717],[4.53741706,0.04015876,98.15892189],[4.53741744,0.04016052,98.15935054],[4.53741783,0.04016228,98.15978353],[4.53741822,0.04016404,98.1602213],[4.53741861,0.0401658,98.16066428],[4.537419,0.04016756,98.16111289],[4.53741939,0.04016932,98.16156757],[4.53741978,0.04017108,98.16202873],[4.53742018,0.04017284,98.16249643],[4.53742057,0.0401746,98.1629704],[4.53742097,0.04017636,98.16345033],[4.53742137,0.04017811,98.16393594],[4.53742177,0.04017987,98.16442694],[4.53742217,0.04018163,98.16492302],[4.53742258,0.04018339,98.16542391],[4.53742298,0.04018514,98.1659293],[4.53742339,0.0401869,98.1664389],[4.53742379,0.04018866,98.16695243],[4.5374242,0.04019041,98.16746959],[4.53742461,0.04019217,98.16799009],[4.53742502,0.04019392,98.16851365],[4.53742543,0.04019568,98.16903997],[4.53742584,0.04019743,98.16956876],[4.53742625,0.04019919,98.17009974],[4.53739559,0.04020616,98.07711735]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1003400","id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3,"sOffset":120.7368344413}},{"geometry":{"coordinates":[[[4.53742625,0.04019919,98.17009974],[4.53742584,0.04019743,98.16956876],[4.53742543,0.04019568,98.16903997],[4.53742502,0.04019392,98.16851365],[4.53742461,0.04019217,98.16799009],[4.5374242,0.04019041,98.16746959],[4.53742379,0.04018866,98.16695243],[4.53742339,0.0401869,98.1664389],[4.53742298,0.04018514,98.1659293],[4.53742258,0.04018339,98.16542391],[4.53742217,0.04018163,98.16492302],[4.53742177,0.04017987,98.16442694],[4.53742137,0.04017811,98.16393594],[4.53742097,0.04017636,98.16345033],[4.53742057,0.0401746,98.1629704],[4.53742018,0.04017284,98.16249643],[4.53741978,0.04017108,98.16202873],[4.53741939,0.04016932,98.16156757],[4.537419,0.04016756,98.16111289],[4.53741861,0.0401658,98.16066428],[4.53741822,0.04016404,98.1602213],[4.53741783,0.04016228,98.15978353],[4.53741744,0.04016052,98.15935054],[4.53741706,0.04015876,98.15892189],[4.53741667,0.040157,98.15849717],[4.53741629,0.04015524,98.15807594],[4.53741591,0.04015348,98.15765777],[4.53741553,0.04015171,98.15724222],[4.53741514,0.04014995,98.15682887],[4.53741476,0.04014819,98.15641727],[4.53741438,0.04014643,98.156007],[4.537414,0.04014467,98.15559763],[4.53741361,0.04014291,98.15518871],[4.53741323,0.04014114,98.15477981],[4.53741285,0.04013938,98.1543705],[4.53741246,0.04013762,98.15396034],[4.53741208,0.04013586,98.15354889],[4.53741169,0.0401341,98.15313571],[4.53741131,0.04013234,98.15272037],[4.53741092,0.04013058,98.15230243],[4.53741053,0.04012882,98.15188145],[4.53741014,0.04012706,98.15145698],[4.53740974,0.0401253,98.15102859],[4.53740935,0.04012354,98.15059584],[4.53740895,0.04012178,98.15015828],[4.53740855,0.04012003,98.14971564],[4.53740815,0.04011827,98.14926827],[4.53740775,0.04011651,98.14881671],[4.53740735,0.04011475,98.14836148],[4.53740694,0.040113,98.14790311],[4.53740653,0.04011124,98.14744213],[4.53740612,0.04010949,98.14697906],[4.53740572,0.04010773,98.14651444],[4.53740531,0.04010598,98.14604879],[4.5374049,0.04010422,98.14558265],[4.53740449,0.04010247,98.14511655],[4.53740407,0.04010071,98.14465102],[4.53740366,0.04009896,98.14418659],[4.53740325,0.0400972,98.14372379],[4.53740284,0.04009545,98.14326317],[4.53740243,0.04009369,98.14280525],[4.53740202,0.04009194,98.14235057],[4.53740161,0.04009018,98.14189967],[4.53740121,0.04008842,98.14145308],[4.5374008,0.04008667,98.14101135],[4.53740039,0.04008491,98.140575],[4.53739999,0.04008316,98.14014457],[4.53739959,0.0400814,98.13972061],[4.53739919,0.04007964,98.13930366],[4.53739879,0.04007788,98.13889426],[4.53739839,0.04007613,98.13849293],[4.537398,0.04007437,98.13810008],[4.53739761,0.04007261,98.13771546],[4.53739722,0.04007085,98.13733866],[4.53739683,0.04006909,98.13696927],[4.53739645,0.04006733,98.1366069],[4.53739606,0.04006557,98.13625115],[4.53739568,0.0400638,98.13590159],[4.5373953,0.04006204,98.13555784],[4.53739492,0.04006028,98.13521949],[4.53739454,0.04005852,98.13488612],[4.53739416,0.04005676,98.13455734],[4.53739379,0.04005499,98.13423273],[4.53739341,0.04005323,98.13391189],[4.53739304,0.04005147,98.13359441],[4.53739266,0.0400497,98.13327988],[4.53739229,0.04004794,98.13296789],[4.53739191,0.04004618,98.13265804],[4.53739154,0.04004441,98.1323499],[4.53739116,0.04004265,98.13204308],[4.53739079,0.04004089,98.13173716],[4.53739041,0.04003913,98.13143173],[4.53739004,0.04003736,98.13112638],[4.53738966,0.0400356,98.13082069],[4.53738929,0.04003384,98.13051426],[4.53738891,0.04003207,98.13020667],[4.53738853,0.04003031,98.12989751],[4.53738815,0.04002855,98.12958637],[4.53738777,0.04002679,98.12927286],[4.53738739,0.04002503,98.12895657],[4.53738701,0.04002327,98.12863712],[4.53738662,0.0400215,98.12831411],[4.53738624,0.04001974,98.12798713],[4.53738585,0.04001798,98.12765578],[4.53738546,0.04001623,98.12731968],[4.53738507,0.04001447,98.12697843],[4.53738467,0.04001271,98.12663161],[4.53738427,0.04001095,98.12627883],[4.53738388,0.04000919,98.12591984],[4.53738347,0.04000744,98.12555493],[4.53738307,0.04000568,98.12518454],[4.53738266,0.04000392,98.1248091],[4.53738226,0.04000217,98.12442906],[4.53738185,0.04000041,98.12404486],[4.53738143,0.03999866,98.12365693],[4.53738102,0.0399969,98.12326571],[4.53738061,0.03999515,98.12287164],[4.53738019,0.0399934,98.12247516],[4.53737978,0.03999164,98.12207672],[4.53737936,0.03998989,98.12167674],[4.53737894,0.03998814,98.12127567],[4.53737852,0.03998639,98.12087395],[4.5373781,0.03998463,98.12047203],[4.53737768,0.03998288,98.12007034],[4.53737726,0.03998113,98.11966933],[4.53737684,0.03997937,98.11926944],[4.53737642,0.03997762,98.11887112],[4.537376,0.03997587,98.1184748],[4.53737558,0.03997412,98.11808093],[4.53737517,0.03997236,98.11768996],[4.53737475,0.03997061,98.11730232],[4.53737433,0.03996886,98.11691848],[4.53737391,0.03996711,98.11653886],[4.5373735,0.03996535,98.11616392],[4.53737308,0.0399636,98.1157941],[4.53737267,0.03996184,98.11542984],[4.53737226,0.03996009,98.1150716],[4.53737185,0.03995834,98.11471972],[4.53737144,0.03995658,98.11437407],[4.53737103,0.03995482,98.11403446],[4.53737063,0.03995307,98.11370066],[4.53737022,0.03995131,98.11337246],[4.53736982,0.03994956,98.11304964],[4.53736942,0.0399478,98.112732],[4.53736902,0.03994604,98.11241931],[4.53736862,0.03994429,98.11211136],[4.53736822,0.03994253,98.11180792],[4.53736782,0.03994077,98.1115088],[4.53736743,0.03993901,98.11121376],[4.53736703,0.03993726,98.1109226],[4.53736663,0.0399355,98.11063509],[4.53736624,0.03993374,98.11035102],[4.53736585,0.03993198,98.11007018],[4.53736545,0.03993022,98.10979234],[4.53736506,0.03992846,98.10951728],[4.53736467,0.03992671,98.1092448],[4.53736427,0.03992495,98.10897467],[4.53736388,0.03992319,98.10870667],[4.53736349,0.03992143,98.10844059],[4.5373631,0.03991967,98.10817621],[4.5373627,0.03991791,98.1079133],[4.53736231,0.03991615,98.10765166],[4.53736192,0.0399144,98.10739106],[4.53736153,0.03991264,98.10713128],[4.53736114,0.03991088,98.10687211],[4.53736074,0.03990912,98.10661333],[4.53736035,0.03990736,98.10635473],[4.53735996,0.0399056,98.1060961],[4.53735956,0.03990385,98.10583725],[4.53735917,0.03990209,98.10557819],[4.53735877,0.03990033,98.10531894],[4.53735838,0.03989857,98.10505953],[4.53735798,0.03989681,98.1048],[4.53735758,0.03989506,98.10454036],[4.53735719,0.0398933,98.10428066],[4.53735679,0.03989154,98.10402092],[4.53735639,0.03988978,98.10376117],[4.53735599,0.03988803,98.10350145],[4.53735559,0.03988627,98.10324178],[4.53735519,0.03988451,98.10298219],[4.53735479,0.03988276,98.10272272],[4.53735439,0.039881,98.1024634],[4.53735399,0.03987924,98.10220425],[4.53735359,0.03987749,98.10194531],[4.53735319,0.03987573,98.10168661],[4.53735279,0.03987397,98.10142817],[4.53735239,0.03987222,98.10117004],[4.53735198,0.03987046,98.10091223],[4.53735158,0.0398687,98.10065478],[4.53735118,0.03986695,98.10039773],[4.53735078,0.03986519,98.1001411],[4.53735037,0.03986344,98.09988494],[4.53734997,0.03986168,98.09962931],[4.53734956,0.03985993,98.09937426],[4.53734916,0.03985817,98.09911986],[4.53734876,0.03985641,98.09886617],[4.53734835,0.03985466,98.09861325],[4.53734795,0.0398529,98.09836116],[4.53734754,0.03985115,98.09810996],[4.53734714,0.03984939,98.09785971],[4.53734673,0.03984764,98.09761047],[4.53734633,0.03984588,98.0973623],[4.53734592,0.03984413,98.09711526],[4.53734552,0.03984237,98.09686941],[4.53734511,0.03984061,98.09662482],[4.5373447,0.03983886,98.09638153],[4.5373443,0.0398371,98.09613962],[4.53734389,0.03983535,98.09589914],[4.53734349,0.03983359,98.09566016],[4.53734308,0.03983184,98.09542273],[4.53734268,0.03983008,98.09518692],[4.53734227,0.03982833,98.09495279],[4.53734187,0.03982657,98.09472039],[4.53734146,0.03982482,98.09448978],[4.53734106,0.03982306,98.09426104],[4.53734065,0.03982131,98.09403422],[4.53734025,0.03981955,98.09380937],[4.53733984,0.03981779,98.09358657],[4.53733944,0.03981604,98.09336587],[4.53733904,0.03981428,98.09314733],[4.53733863,0.03981253,98.09293099],[4.53733823,0.03981077,98.09271684],[4.53733783,0.03980902,98.09250483],[4.53733742,0.03980726,98.09229492],[4.53733702,0.0398055,98.09208706],[4.53733662,0.03980375,98.09188122],[4.53733622,0.03980199,98.09167736],[4.53733582,0.03980024,98.09147544],[4.53733541,0.03979848,98.0912754],[4.53733501,0.03979672,98.09107722],[4.53733461,0.03979497,98.09088085],[4.53733421,0.03979321,98.09068625],[4.53733381,0.03979146,98.09049337],[4.53733341,0.0397897,98.09030219],[4.53733301,0.03978794,98.09011264],[4.53733261,0.03978619,98.08992467],[4.5373322,0.03978443,98.08973822],[4.5373318,0.03978267,98.08955323],[4.5373314,0.03978092,98.0893696],[4.537331,0.03977916,98.08918716],[4.5373306,0.03977741,98.08900574],[4.5373302,0.03977565,98.08882518],[4.5373298,0.03977389,98.08864532],[4.5373294,0.03977214,98.08846599],[4.53732899,0.03977038,98.08828702],[4.53732859,0.03976863,98.08810825],[4.53732819,0.03976687,98.08792952],[4.53732779,0.03976511,98.08775066],[4.53732738,0.03976336,98.08757151],[4.53732698,0.0397616,98.08739189],[4.53732657,0.03975985,98.08721165],[4.53732617,0.03975809,98.08703062],[4.53732576,0.03975634,98.08684863],[4.53732535,0.03975458,98.08666553],[4.53732495,0.03975283,98.08648113],[4.53732454,0.03975107,98.08629529],[4.53732413,0.03974932,98.08610783],[4.53732372,0.03974757,98.08591859],[4.5373233,0.03974581,98.0857274],[4.53732289,0.03974406,98.0855341],[4.53732248,0.03974231,98.08533852],[4.53732206,0.03974055,98.08514061],[4.53732165,0.03973882,98.08494075],[4.53732123,0.03973706,98.08473944],[4.53732082,0.03973531,98.08453715],[4.5373204,0.03973356,98.0843344],[4.53731998,0.03973181,98.08413166],[4.53731956,0.03973006,98.08392943],[4.53731914,0.03972831,98.0837282],[4.53731872,0.03972655,98.08352846],[4.5373183,0.0397248,98.0833307],[4.53731788,0.03972305,98.08313543],[4.53731747,0.0397213,98.08294312],[4.53731705,0.03971955,98.08275427],[4.53731663,0.03971779,98.08256938],[4.53731622,0.03971604,98.08238893],[4.5373158,0.03971429,98.08221342],[4.53731539,0.03971253,98.08204334],[4.53731498,0.03971078,98.08187919],[4.53731457,0.03970903,98.08172145],[4.53731416,0.03970727,98.08157062],[4.53731375,0.03970552,98.08142719],[4.53731335,0.03970376,98.08129167],[4.53731295,0.03970201,98.08116456],[4.53731255,0.03970025,98.08104618],[4.53731215,0.03969849,98.08093616],[4.53731175,0.03969674,98.08083391],[4.53731136,0.03969498,98.08073887],[4.53731097,0.03969322,98.08065047],[4.53731058,0.03969146,98.08056814],[4.53731019,0.0396897,98.08049133],[4.5373098,0.03968794,98.08041944],[4.53730941,0.03968618,98.08035193],[4.53730903,0.03968442,98.08028822],[4.53730864,0.03968266,98.08022774],[4.53730826,0.0396809,98.08016992],[4.53730787,0.03967914,98.0801142],[4.53730748,0.03967738,98.08006],[4.5373071,0.03967562,98.08000677],[4.53730671,0.03967386,98.07995392],[4.53730633,0.0396721,98.07990089],[4.53730594,0.03967034,98.07984711],[4.53730555,0.03966858,98.07979201],[4.53730517,0.03966682,98.07973503],[4.53730478,0.03966507,98.0796756],[4.53730439,0.03966331,98.07961314],[4.53730399,0.03966155,98.07954709],[4.5373036,0.03965979,98.07947687],[4.5373032,0.03965803,98.07940193],[4.5373028,0.03965628,98.07932169],[4.5373024,0.03965452,98.07923558],[4.537302,0.03965276,98.07914304],[4.5373016,0.03965101,98.07904349],[4.53730119,0.03964925,98.07893636],[4.53730078,0.0396475,98.0788211],[4.53730036,0.03964575,98.07869732],[4.53729995,0.03964399,98.07856545],[4.53729953,0.03964224,98.0784261],[4.53729911,0.03964049,98.07827988],[4.53729868,0.03963874,98.0781274],[4.53729825,0.03963699,98.07796928],[4.53729783,0.03963524,98.07780613],[4.5372974,0.03963349,98.07763857],[4.53729696,0.03963174,98.0774672],[4.53729653,0.03962999,98.07729262],[4.5372961,0.03962824,98.07711544],[4.53729566,0.03962649,98.07693625],[4.53729523,0.03962475,98.07675564],[4.53729479,0.039623,98.0765742],[4.53729435,0.03962125,98.07639254],[4.53729391,0.0396195,98.07621125],[4.53729348,0.03961775,98.07603091],[4.53729304,0.03961601,98.07585215],[4.5372926,0.03961426,98.07567555],[4.53729216,0.03961251,98.07550176],[4.53729173,0.03961076,98.07533139],[4.53729129,0.03960901,98.07516506],[4.53729086,0.03960726,98.07500338],[4.53729043,0.03960551,98.07484699],[4.53728999,0.03960377,98.0746965],[4.53728957,0.03960202,98.07455253],[4.53728914,0.03960027,98.0744157],[4.53728871,0.03959851,98.07428662],[4.53728829,0.03959676,98.07416593],[4.53728787,0.03959501,98.07405424],[4.53728745,0.03959326,98.07395215],[4.53728703,0.03959151,98.07385969],[4.53728662,0.03958975,98.07377636],[4.53728621,0.039588,98.07370163],[4.5372858,0.03958624,98.07363497],[4.53728539,0.03958449,98.07357585],[4.53728499,0.03958273,98.07352374],[4.53728458,0.03958098,98.07347811],[4.53728418,0.03957922,98.07343843],[4.53728378,0.03957746,98.07340417],[4.53728338,0.03957571,98.0733748],[4.53728298,0.03957395,98.0733498],[4.53728258,0.03957219,98.07332862],[4.53728219,0.03957043,98.07331075],[4.53728179,0.03956867,98.07329565],[4.53728139,0.03956692,98.07328279],[4.537281,0.03956516,98.07327165],[4.5372806,0.0395634,98.07326169],[4.53728021,0.03956164,98.07325239],[4.53727981,0.03955988,98.07324322],[4.53727941,0.03955813,98.07323364],[4.53727902,0.03955637,98.07322313],[4.53727862,0.03955461,98.07321116],[4.53727822,0.03955285,98.0731972],[4.53727782,0.0395511,98.07318072],[4.53727742,0.03954934,98.0731612],[4.53727701,0.03954758,98.0731381],[4.53727661,0.03954583,98.0731109],[4.5372762,0.03954407,98.07307907],[4.53727579,0.03954232,98.07304208],[4.53727538,0.03954056,98.0729994],[4.53727497,0.03953881,98.07295051],[4.53727455,0.03953706,98.07289487],[4.53727413,0.0395353,98.07283197],[4.53727371,0.03953355,98.07276149],[4.53727329,0.0395318,98.07268402],[4.53727286,0.03953005,98.07260038],[4.53727244,0.0395283,98.07251135],[4.53727201,0.03952655,98.07241776],[4.53727158,0.0395248,98.0723204],[4.53727114,0.03952305,98.07222007],[4.53727071,0.0395213,98.07211759],[4.53727028,0.03951955,98.07201375],[4.53726984,0.0395178,98.07190937],[4.53726941,0.03951605,98.07180524],[4.53726897,0.0395143,98.07170216],[4.53726854,0.03951255,98.07160095],[4.5372681,0.0395108,98.07150241],[4.53726767,0.03950905,98.07140733],[4.53726724,0.0395073,98.07131652],[4.53726681,0.03950555,98.07123079],[4.53726638,0.0395038,98.07115077],[4.53726595,0.03950205,98.07107649],[4.53726552,0.0395003,98.07100779],[4.5372651,0.03949855,98.07094452],[4.53726467,0.0394968,98.07088654],[4.53726425,0.03949505,98.0708337],[4.53726383,0.0394933,98.07078585],[4.53726341,0.03949154,98.07074285],[4.53726299,0.03948979,98.07070454],[4.53726257,0.03948804,98.07067077],[4.53726215,0.03948628,98.07064141],[4.53726173,0.03948453,98.07061631],[4.53726132,0.03948278,98.07059532],[4.5372609,0.03948102,98.07057834],[4.53726049,0.03947927,98.07056523],[4.53726008,0.03947751,98.07055586],[4.53725967,0.03947576,98.07055008],[4.53725926,0.039474,98.07054771],[4.53725884,0.03947225,98.07054857],[4.53725844,0.03947049,98.07055249],[4.53725803,0.03946874,98.0705593],[4.53725762,0.03946698,98.07056883],[4.53725721,0.03946523,98.07058089],[4.5372568,0.03946347,98.07059533],[4.53725639,0.03946172,98.07061197],[4.53725599,0.03945996,98.07063063],[4.53725558,0.0394582,98.07065115],[4.53725517,0.03945645,98.07067334],[4.53725477,0.03945469,98.07069704],[4.53725436,0.03945294,98.07072208],[4.53725395,0.03945118,98.07074828],[4.53725355,0.03944942,98.07077547],[4.53725314,0.03944767,98.07080347],[4.53725273,0.03944591,98.07083212],[4.53725233,0.03944416,98.07086125],[4.53725192,0.0394424,98.07089067],[4.53725151,0.03944064,98.07092023],[4.5372511,0.03943889,98.07094974],[4.5372507,0.03943713,98.07097903],[4.53725029,0.03943538,98.07100794],[4.53724988,0.03943362,98.07103629],[4.53724947,0.03943187,98.07106391],[4.53724906,0.03943011,98.07109063],[4.53724865,0.03942835,98.07111627],[4.53724824,0.0394266,98.07114067],[4.53724783,0.03942484,98.07116366],[4.53724741,0.03942309,98.07118506],[4.537247,0.03942134,98.07120488],[4.53724658,0.03941958,98.07122331],[4.53724617,0.03941783,98.07124052],[4.53724575,0.03941607,98.07125669],[4.53724534,0.03941432,98.071272],[4.53724492,0.03941257,98.07128664],[4.5372445,0.03941081,98.07130077],[4.53724409,0.03940906,98.0713146],[4.53724367,0.0394073,98.07132829],[4.53724325,0.03940555,98.07134202],[4.53724283,0.0394038,98.07135598],[4.53724241,0.03940204,98.07137035],[4.53724199,0.03940029,98.07138531],[4.53724157,0.03939854,98.07140103],[4.53724115,0.03939678,98.0714177],[4.53724074,0.03939503,98.07143549],[4.53724032,0.03939328,98.0714546],[4.5372399,0.03939152,98.07147519],[4.53723948,0.03938977,98.07149745],[4.53723906,0.03938802,98.07152156],[4.53723864,0.03938626,98.07154768],[4.53723823,0.03938451,98.07157585],[4.53723781,0.03938276,98.07160592],[4.53723739,0.039381,98.07163778],[4.53723697,0.03937925,98.07167127],[4.53723656,0.03937749,98.07170627],[4.53723614,0.03937574,98.07174264],[4.53723573,0.03937399,98.07178026],[4.53723531,0.03937223,98.07181903],[4.53723489,0.03937048,98.07185885],[4.53723448,0.03936873,98.07189962],[4.53723406,0.03936697,98.07194123],[4.53723365,0.03936522,98.07198358],[4.53723323,0.03936346,98.07202658],[4.53723281,0.03936171,98.07207011],[4.5372324,0.03935996,98.07211408],[4.53723198,0.0393582,98.07215839],[4.53723156,0.03935645,98.07220293],[4.53723114,0.03935469,98.07224761],[4.53723073,0.03935294,98.07229232],[4.53723031,0.03935119,98.07233695],[4.53722989,0.03934943,98.07238142],[4.53722947,0.03934768,98.07242561],[4.53722905,0.03934592,98.07246943],[4.53722863,0.03934417,98.07251277],[4.53722821,0.03934242,98.07255554],[4.53722779,0.03934066,98.07259763],[4.53722737,0.03933891,98.07263894],[4.53722695,0.03933716,98.0726795],[4.53722653,0.03933541,98.0727194],[4.53722611,0.03933365,98.07275877],[4.53722569,0.0393319,98.07279773],[4.53722526,0.03933015,98.0728364],[4.53722484,0.0393284,98.0728749],[4.53722441,0.03932664,98.07291334],[4.53722399,0.03932489,98.07295185],[4.53722357,0.03932314,98.07299054],[4.53722314,0.03932139,98.07302953],[4.53722272,0.03931963,98.07306894],[4.53722229,0.03931788,98.07310889],[4.53722187,0.03931613,98.07314951],[4.53722144,0.03931438,98.07319089],[4.53722102,0.03931262,98.07323316],[4.53722059,0.03931087,98.07327641],[4.53722017,0.03930912,98.07332073],[4.53721975,0.03930737,98.07336622],[4.53721932,0.03930562,98.07341299],[4.5372189,0.03930386,98.07346112],[4.53721847,0.03930211,98.07351072],[4.53721805,0.03930036,98.07356187],[4.53721763,0.03929861,98.07361469],[4.5372172,0.03929685,98.07366926],[4.53721678,0.0392951,98.07372569],[4.53721636,0.03929335,98.07378406],[4.53721593,0.03929159,98.07384449],[4.53721551,0.03928984,98.07390705],[4.53721509,0.03928809,98.07397185],[4.53721467,0.03928634,98.07403899],[4.53721425,0.03928458,98.07410857],[4.53721383,0.03928283,98.07418067],[4.53721341,0.03928107,98.07425539],[4.53721299,0.03927932,98.07433283],[4.53721257,0.03927757,98.07441304],[4.53721216,0.03927581,98.07449591],[4.53721174,0.03927406,98.07458127],[4.53721132,0.0392723,98.07466896],[4.53721091,0.03927055,98.07475884],[4.53721049,0.03926879,98.07485074],[4.53721007,0.03926704,98.07494451],[4.53720966,0.03926529,98.07503998],[4.53720924,0.03926353,98.07513701],[4.53720883,0.03926178,98.07523542],[4.53720842,0.03926002,98.07533508],[4.537208,0.03925827,98.07543581],[4.53720759,0.03925651,98.07553746],[4.53720717,0.03925476,98.07563988],[4.53720676,0.039253,98.07574291],[4.53720634,0.03925125,98.07584639],[4.53720593,0.03924949,98.07595017],[4.53720551,0.03924774,98.07605409],[4.5372051,0.03924598,98.07615798],[4.53720468,0.03924423,98.07626171],[4.53720427,0.03924247,98.0763651],[4.53720385,0.03924072,98.07646801],[4.53720343,0.03923896,98.07657027],[4.53720302,0.03923721,98.07667174],[4.5372026,0.03923546,98.07677226],[4.53720218,0.0392337,98.07687166],[4.53720176,0.03923195,98.0769698],[4.53720134,0.03923019,98.07706651],[4.53720092,0.03922844,98.07716166],[4.5372005,0.03922669,98.07725524],[4.53720008,0.03922493,98.0773474],[4.53719965,0.03922318,98.0774383],[4.53719923,0.03922143,98.07752809],[4.53719881,0.03921967,98.07761693],[4.53719838,0.03921792,98.07770497],[4.53719796,0.03921617,98.07779237],[4.53719753,0.03921442,98.07787929],[4.53719711,0.03921266,98.07796588],[4.53719668,0.03921091,98.0780523],[4.53719626,0.03920916,98.07813869],[4.53719583,0.03920741,98.07822522],[4.5371954,0.03920566,98.07831204],[4.53719498,0.0392039,98.07839931],[4.53719455,0.03920215,98.07848718],[4.53719412,0.0392004,98.0785758],[4.5371937,0.03919865,98.07866533],[4.53719327,0.03919689,98.07875592],[4.53719284,0.03919514,98.07884774],[4.53719242,0.03919339,98.07894092],[4.53719199,0.03919164,98.07903563],[4.53719157,0.03918988,98.07913203],[4.53719114,0.03918813,98.07923025],[4.53719072,0.03918638,98.07933047],[4.53719029,0.03918463,98.07943283],[4.53718987,0.03918287,98.07953748],[4.53718945,0.03918112,98.07964458],[4.53718902,0.03917937,98.07975429],[4.5371886,0.03917761,98.07986675],[4.53718818,0.03917586,98.07998212],[4.53718776,0.03917411,98.08010051],[4.53718734,0.03917235,98.0802218],[4.53718692,0.0391706,98.08034584],[4.5371865,0.03916884,98.08047248],[4.53718608,0.03916709,98.08060158],[4.53718567,0.03916534,98.08073299],[4.53718525,0.03916358,98.08086657],[4.53718483,0.03916183,98.08100218],[4.53718442,0.03916007,98.08113968],[4.537184,0.03915832,98.08127893],[4.53718358,0.03915656,98.08141979],[4.53718317,0.03915481,98.08156212],[4.53718275,0.03915305,98.08170577],[4.53718234,0.0391513,98.08185061],[4.53718192,0.03914954,98.08199649],[4.53718151,0.03914779,98.08214328],[4.53718109,0.03914603,98.08229083],[4.53718068,0.03914428,98.08243901],[4.53718026,0.03914252,98.08258768],[4.53717985,0.03914077,98.08273668],[4.53717943,0.03913901,98.0828859],[4.53717902,0.03913726,98.08303518],[4.5371786,0.0391355,98.08318438],[4.53717819,0.03913375,98.08333337],[4.53717777,0.039132,98.08348201],[4.53717735,0.03913024,98.08363015],[4.53717694,0.03912849,98.08377766],[4.53717652,0.03912673,98.08392441],[4.5371761,0.03912498,98.08407036],[4.53717568,0.03912323,98.08421558],[4.53717526,0.03912147,98.08436016],[4.53717484,0.03911972,98.08450418],[4.53717442,0.03911797,98.0846477],[4.537174,0.03911621,98.08479081],[4.53717358,0.03911446,98.08493358],[4.53717316,0.03911271,98.08507609],[4.53717274,0.03911096,98.08521843],[4.53717232,0.0391092,98.08536065],[4.5371719,0.03910745,98.08550285],[4.53717147,0.0391057,98.0856451],[4.53717105,0.03910394,98.08578748],[4.53717063,0.03910219,98.08593006],[4.53717021,0.03910044,98.08607292],[4.53716978,0.03909869,98.08621613],[4.53716936,0.03909693,98.08635978],[4.53716894,0.03909518,98.08650394],[4.53716852,0.03909343,98.08664869],[4.53716809,0.03909168,98.0867941],[4.53716767,0.03908992,98.08694025],[4.53716725,0.03908817,98.08708722],[4.53716682,0.03908642,98.08723508],[4.5371664,0.03908467,98.0873839],[4.53716598,0.03908291,98.08753378],[4.53716556,0.03908116,98.08768477],[4.53716513,0.03907941,98.08783697],[4.53716471,0.03907765,98.08799044],[4.53716429,0.0390759,98.08814525],[4.53716387,0.03907415,98.0883015],[4.53716345,0.0390724,98.08845924],[4.53716337,0.03907208,98.08848807],[4.537195,0.03906442,98.18681196],[4.53719508,0.03906474,98.18678343],[4.53719549,0.03906649,98.18662695],[4.53719591,0.03906825,98.18647135],[4.53719633,0.03907,98.18631663],[4.53719674,0.03907176,98.18616277],[4.53719716,0.03907351,98.18600978],[4.53719758,0.03907527,98.18585764],[4.537198,0.03907702,98.18570635],[4.53719841,0.03907877,98.18555591],[4.53719883,0.03908053,98.1854063],[4.53719925,0.03908228,98.18525752],[4.53719966,0.03908404,98.18510957],[4.53720008,0.03908579,98.18496244],[4.5372005,0.03908755,98.18481612],[4.53720092,0.0390893,98.1846706],[4.53720133,0.03909105,98.18452589],[4.53720175,0.03909281,98.18438196],[4.53720217,0.03909456,98.18423883],[4.53720258,0.03909632,98.18409647],[4.537203,0.03909807,98.18395489],[4.53720342,0.03909982,98.18381408],[4.53720384,0.03910158,98.18367403],[4.53720425,0.03910333,98.18353473],[4.53720467,0.03910509,98.18339618],[4.53720509,0.03910684,98.18325838],[4.53720551,0.0391086,98.18312131],[4.53720592,0.03911035,98.18298497],[4.53720634,0.0391121,98.18284935],[4.53720676,0.03911386,98.18271445],[4.53720718,0.03911561,98.18258026],[4.53720759,0.03911737,98.18244678],[4.53720801,0.03911912,98.18231399],[4.53720843,0.03912087,98.1821819],[4.53720885,0.03912263,98.18205049],[4.53720926,0.03912438,98.18191975],[4.53720968,0.03912614,98.18178969],[4.5372101,0.03912789,98.1816603],[4.53721052,0.03912965,98.18153156],[4.53721093,0.0391314,98.18140348],[4.53721135,0.03913315,98.18127605],[4.53721177,0.03913491,98.18114925],[4.53721218,0.03913666,98.18102309],[4.5372126,0.03913842,98.18089755],[4.53721302,0.03914017,98.18077264],[4.53721344,0.03914193,98.18064834],[4.53721385,0.03914368,98.18052464],[4.53721427,0.03914543,98.18040155],[4.53721469,0.03914719,98.18027906],[4.5372151,0.03914894,98.18015715],[4.53721552,0.0391507,98.18003582],[4.53721594,0.03915245,98.17991507],[4.53721635,0.03915421,98.17979489],[4.53721677,0.03915596,98.17967527],[4.53721719,0.03915772,98.17955621],[4.5372176,0.03915947,98.17943769],[4.53721802,0.03916123,98.17931972],[4.53721844,0.03916298,98.17920229],[4.53721885,0.03916473,98.17908539],[4.53721927,0.03916649,98.17896903],[4.53721969,0.03916824,98.17885321],[4.5372201,0.03917,98.17873795],[4.53722052,0.03917175,98.17862324],[4.53722094,0.03917351,98.1785091],[4.53722135,0.03917526,98.17839553],[4.53722177,0.03917702,98.17828253],[4.53722219,0.03917877,98.17817012],[4.5372226,0.03918053,98.17805829],[4.53722302,0.03918228,98.17794705],[4.53722343,0.03918404,98.17783641],[4.53722385,0.03918579,98.17772638],[4.53722427,0.03918754,98.17761696],[4.53722468,0.0391893,98.17750816],[4.5372251,0.03919105,98.17739998],[4.53722551,0.03919281,98.17729242],[4.53722593,0.03919456,98.17718551],[4.53722635,0.03919632,98.17707923],[4.53722676,0.03919807,98.1769736],[4.53722718,0.03919983,98.17686862],[4.53722759,0.03920158,98.17676431],[4.53722801,0.03920334,98.17666065],[4.53722843,0.03920509,98.17655767],[4.53722884,0.03920685,98.17645536],[4.53722926,0.0392086,98.17635374],[4.53722967,0.03921036,98.17625281],[4.53723009,0.03921211,98.17615257],[4.53723051,0.03921386,98.17605303],[4.53723092,0.03921562,98.17595419],[4.53723134,0.03921737,98.17585607],[4.53723175,0.03921913,98.17575867],[4.53723217,0.03922088,98.175662],[4.53723258,0.03922264,98.17556605],[4.537233,0.03922439,98.17547084],[4.53723342,0.03922615,98.17537637],[4.53723383,0.0392279,98.17528266],[4.53723425,0.03922966,98.1751897],[4.53723466,0.03923141,98.17509749],[4.53723508,0.03923317,98.17500606],[4.53723549,0.03923492,98.1749154],[4.53723591,0.03923668,98.17482551],[4.53723633,0.03923843,98.17473642],[4.53723674,0.03924019,98.17464811],[4.53723716,0.03924194,98.1745606],[4.53723757,0.03924369,98.17447389],[4.53723799,0.03924545,98.174388],[4.5372384,0.0392472,98.17430292],[4.53723882,0.03924896,98.17421866],[4.53723924,0.03925071,98.17413522],[4.53723965,0.03925247,98.17405262],[4.53724007,0.03925422,98.17397087],[4.53724048,0.03925598,98.17388995],[4.5372409,0.03925773,98.17380989],[4.53724132,0.03925949,98.17373068],[4.53724173,0.03926124,98.17365234],[4.53724215,0.039263,98.17357487],[4.53724256,0.03926475,98.17349828],[4.53724298,0.0392665,98.17342257],[4.5372434,0.03926826,98.17334774],[4.53724381,0.03927001,98.17327381],[4.53724423,0.03927177,98.17320079],[4.53724465,0.03927352,98.17312866],[4.53724506,0.03927528,98.17305745],[4.53724548,0.03927703,98.17298716],[4.53724589,0.03927879,98.1729178],[4.53724631,0.03928054,98.17284936],[4.53724673,0.0392823,98.17278186],[4.53724714,0.03928405,98.17271531],[4.53724756,0.0392858,98.1726497],[4.53724798,0.03928756,98.17258504],[4.53724839,0.03928931,98.17252134],[4.53724881,0.03929107,98.17245861],[4.53724923,0.03929282,98.17239684],[4.53724964,0.03929458,98.17233604],[4.53725006,0.03929633,98.17227622],[4.53725048,0.03929809,98.17221739],[4.53725089,0.03929984,98.17215954],[4.53725131,0.03930159,98.17210269],[4.53725173,0.03930335,98.17204683],[4.53725215,0.0393051,98.17199198],[4.53725256,0.03930686,98.17193814],[4.53725298,0.03930861,98.17188531],[4.5372534,0.03931037,98.17183349],[4.53725382,0.03931212,98.17178267],[4.53725423,0.03931387,98.17173282],[4.53725465,0.03931563,98.17168395],[4.53725507,0.03931738,98.17163602],[4.53725548,0.03931914,98.17158902],[4.5372559,0.03932089,98.17154294],[4.53725632,0.03932264,98.17149776],[4.53725674,0.0393244,98.17145346],[4.53725716,0.03932615,98.17141004],[4.53725757,0.03932791,98.17136746],[4.53725799,0.03932966,98.17132573],[4.53725841,0.03933142,98.17128481],[4.53725883,0.03933317,98.1712447],[4.53725924,0.03933492,98.17120537],[4.53725966,0.03933668,98.17116682],[4.53726008,0.03933843,98.17112903],[4.5372605,0.03934019,98.17109198],[4.53726091,0.03934194,98.17105565],[4.53726133,0.03934369,98.17102002],[4.53726175,0.03934545,98.1709851],[4.53726217,0.0393472,98.17095084],[4.53726258,0.03934896,98.17091725],[4.537263,0.03935071,98.1708843],[4.53726342,0.03935247,98.17085198],[4.53726383,0.03935422,98.17082028],[4.53726425,0.03935597,98.17078916],[4.53726467,0.03935773,98.17075863],[4.53726508,0.03935948,98.17072866],[4.5372655,0.03936124,98.17069924],[4.53726592,0.03936299,98.17067035],[4.53726633,0.03936474,98.17064198],[4.53726675,0.0393665,98.1706141],[4.53726717,0.03936825,98.17058671],[4.53726758,0.03937001,98.17055978],[4.537268,0.03937176,98.17053332],[4.53726841,0.03937352,98.17050735],[4.53726883,0.03937527,98.17048187],[4.53726925,0.03937702,98.17045692],[4.53726966,0.03937878,98.17043249],[4.53727008,0.03938053,98.17040862],[4.53727049,0.03938229,98.17038531],[4.53727091,0.03938404,98.17036259],[4.53727132,0.0393858,98.17034047],[4.53727174,0.03938755,98.17031897],[4.53727215,0.03938931,98.1702981],[4.53727257,0.03939106,98.17027788],[4.53727298,0.03939282,98.17025833],[4.5372734,0.03939457,98.17023946],[4.53727381,0.03939633,98.1702213],[4.53727422,0.03939808,98.17020385],[4.53727464,0.03939984,98.17018714],[4.53727505,0.03940159,98.17017117],[4.53727547,0.03940335,98.17015598],[4.53727588,0.0394051,98.17014157],[4.5372763,0.03940686,98.17012797],[4.53727671,0.03940861,98.17011518],[4.53727713,0.03941037,98.17010323],[4.53727754,0.03941212,98.17009213],[4.53727795,0.03941387,98.1700819],[4.53727837,0.03941563,98.17007256],[4.53727878,0.03941738,98.17006412],[4.5372792,0.03941914,98.1700566],[4.53727961,0.03942089,98.17005001],[4.53728003,0.03942265,98.17004438],[4.53728044,0.0394244,98.17003972],[4.53728085,0.03942616,98.17003605],[4.53728127,0.03942791,98.17003338],[4.53728168,0.03942967,98.17003174],[4.5372821,0.03943142,98.17003113],[4.53728251,0.03943318,98.17003158],[4.53728293,0.03943493,98.17003309],[4.53728334,0.03943669,98.1700357],[4.53728375,0.03943844,98.17003941],[4.53728417,0.0394402,98.17004425],[4.53728458,0.03944195,98.17005022],[4.537285,0.03944371,98.17005735],[4.53728541,0.03944546,98.17006566],[4.53728583,0.03944722,98.17007515],[4.53728624,0.03944897,98.17008586],[4.53728666,0.03945073,98.17009778],[4.53728707,0.03945248,98.17011095],[4.53728749,0.03945423,98.17012538],[4.5372879,0.03945599,98.17014108],[4.53728832,0.03945774,98.17015807],[4.53728873,0.0394595,98.17017637],[4.53728915,0.03946125,98.170196],[4.53728957,0.03946301,98.17021697],[4.53728998,0.03946476,98.1702393],[4.5372904,0.03946652,98.17026301],[4.53729081,0.03946827,98.17028811],[4.53729123,0.03947002,98.17031462],[4.53729165,0.03947178,98.17034256],[4.53729206,0.03947353,98.17037194],[4.53729248,0.03947529,98.17040273],[4.5372929,0.03947704,98.17043489],[4.53729331,0.03947879,98.17046841],[4.53729373,0.03948055,98.17050324],[4.53729415,0.0394823,98.17053938],[4.53729456,0.03948406,98.17057682],[4.53729498,0.03948581,98.17061556],[4.5372954,0.03948757,98.17065558],[4.53729582,0.03948932,98.17069688],[4.53729623,0.03949107,98.17073944],[4.53729665,0.03949283,98.17078327],[4.53729707,0.03949458,98.17082834],[4.53729749,0.03949633,98.17087466],[4.5372979,0.03949809,98.1709222],[4.53729832,0.03949984,98.17097097],[4.53729874,0.0395016,98.17102096],[4.53729916,0.03950335,98.17107215],[4.53729958,0.0395051,98.17112454],[4.53729999,0.03950686,98.17117812],[4.53730041,0.03950861,98.17123288],[4.53730083,0.03951037,98.17128882],[4.53730125,0.03951212,98.17134591],[4.53730167,0.03951387,98.17140416],[4.53730208,0.03951563,98.17146355],[4.5373025,0.03951738,98.17152409],[4.53730292,0.03951913,98.17158575],[4.53730334,0.03952089,98.17164853],[4.53730376,0.03952264,98.17171242],[4.53730418,0.03952439,98.17177741],[4.5373046,0.03952615,98.17184349],[4.53730501,0.0395279,98.17191066],[4.53730543,0.03952966,98.17197891],[4.53730585,0.03953141,98.17204822],[4.53730627,0.03953316,98.17211859],[4.53730669,0.03953492,98.17219001],[4.53730711,0.03953667,98.17226247],[4.53730752,0.03953842,98.17233597],[4.53730794,0.03954018,98.17241048],[4.53730836,0.03954193,98.17248602],[4.53730878,0.03954368,98.17256255],[4.5373092,0.03954544,98.17264009],[4.53730962,0.03954719,98.17271861],[4.53731003,0.03954895,98.17279811],[4.53731045,0.0395507,98.17287858],[4.53731087,0.03955245,98.17296002],[4.53731129,0.03955421,98.17304241],[4.53731171,0.03955596,98.17312574],[4.53731213,0.03955771,98.17321001],[4.53731254,0.03955947,98.1732952],[4.53731296,0.03956122,98.17338131],[4.53731338,0.03956298,98.17346833],[4.5373138,0.03956473,98.17355626],[4.53731422,0.03956648,98.17364507],[4.53731463,0.03956824,98.17373477],[4.53731505,0.03956999,98.17382534],[4.53731547,0.03957174,98.17391678],[4.53731589,0.0395735,98.17400907],[4.5373163,0.03957525,98.17410221],[4.53731672,0.03957701,98.17419619],[4.53731714,0.03957876,98.174291],[4.53731756,0.03958051,98.17438664],[4.53731797,0.03958227,98.17448308],[4.53731839,0.03958402,98.17458033],[4.53731881,0.03958577,98.17467837],[4.53731923,0.03958753,98.1747772],[4.53731964,0.03958928,98.17487681],[4.53732006,0.03959104,98.17497719],[4.53732048,0.03959279,98.17507832],[4.53732089,0.03959454,98.17518021],[4.53732131,0.0395963,98.17528284],[4.53732172,0.03959805,98.1753862],[4.53732214,0.03959981,98.17549029],[4.53732256,0.03960156,98.17559509],[4.53732297,0.03960331,98.1757006],[4.53732339,0.03960507,98.17580681],[4.5373238,0.03960682,98.17591371],[4.53732422,0.03960858,98.17602129],[4.53732464,0.03961033,98.17612954],[4.53732505,0.03961209,98.17623846],[4.53732547,0.03961384,98.17634806],[4.53732588,0.03961559,98.17645835],[4.5373263,0.03961735,98.17656936],[4.53732671,0.0396191,98.1766811],[4.53732712,0.03962086,98.17679358],[4.53732754,0.03962261,98.17690683],[4.53732795,0.03962437,98.17702086],[4.53732837,0.03962612,98.17713569],[4.53732878,0.03962788,98.17725132],[4.5373292,0.03962963,98.17736776],[4.53732961,0.03963138,98.177485],[4.53733002,0.03963314,98.17760306],[4.53733044,0.03963489,98.17772191],[4.53733085,0.03963665,98.17784157],[4.53733126,0.0396384,98.17796202],[4.53733168,0.03964016,98.17808328],[4.53733209,0.03964191,98.17820534],[4.5373325,0.03964367,98.1783282],[4.53733292,0.03964542,98.17845185],[4.53733333,0.03964718,98.1785763],[4.53733374,0.03964893,98.17870155],[4.53733416,0.03965069,98.17882759],[4.53733457,0.03965244,98.17895442],[4.53733498,0.0396542,98.17908204],[4.53733539,0.03965595,98.17921046],[4.5373358,0.03965771,98.17933966],[4.53733622,0.03965946,98.17946966],[4.53733663,0.03966122,98.17960044],[4.53733704,0.03966297,98.179732],[4.53733745,0.03966473,98.17986436],[4.53733786,0.03966648,98.17999749],[4.53733828,0.03966824,98.18013141],[4.53733869,0.03966999,98.18026612],[4.5373391,0.03967175,98.1804016],[4.53733951,0.0396735,98.18053786],[4.53733992,0.03967526,98.18067491],[4.53734033,0.03967701,98.18081273],[4.53734074,0.03967877,98.18095132],[4.53734115,0.03968052,98.1810907],[4.53734156,0.03968228,98.18123085],[4.53734197,0.03968403,98.18137177],[4.53734238,0.03968579,98.18151346],[4.53734279,0.03968754,98.18165593],[4.5373432,0.0396893,98.18179917],[4.53734361,0.03969105,98.18194317],[4.53734402,0.03969281,98.18208795],[4.53734443,0.03969457,98.18223349],[4.53734484,0.03969632,98.1823798],[4.53734525,0.03969808,98.18252687],[4.53734566,0.03969983,98.18267471],[4.53734607,0.03970159,98.18282331],[4.53734648,0.03970334,98.18297269],[4.53734689,0.0397051,98.18312285],[4.53734729,0.03970686,98.18327381],[4.5373477,0.03970861,98.18342557],[4.53734811,0.03971037,98.18357816],[4.53734852,0.03971212,98.18373157],[4.53734893,0.03971388,98.18388583],[4.53734934,0.03971563,98.18404094],[4.53734974,0.03971739,98.18419692],[4.53735015,0.03971915,98.18435377],[4.53735056,0.0397209,98.18451151],[4.53735097,0.03972266,98.18467015],[4.53735137,0.03972441,98.1848297],[4.53735178,0.03972617,98.18499017],[4.53735219,0.03972793,98.18515157],[4.53735259,0.03972968,98.18531392],[4.537353,0.03973144,98.18547723],[4.5373534,0.03973318,98.1856415],[4.53735381,0.03973493,98.18580675],[4.53735422,0.03973669,98.185973],[4.53735462,0.03973845,98.18614024],[4.53735503,0.0397402,98.1863085],[4.53735544,0.03974196,98.18647778],[4.53735584,0.03974372,98.1866481],[4.53735625,0.03974547,98.18681947],[4.53735666,0.03974723,98.18699189],[4.53735706,0.03974898,98.18716539],[4.53735747,0.03975074,98.18733996],[4.53735788,0.0397525,98.18751563],[4.53735828,0.03975425,98.18769241],[4.53735869,0.03975601,98.1878703],[4.53735909,0.03975777,98.18804932],[4.5373595,0.03975952,98.18822947],[4.53735991,0.03976128,98.18841078],[4.53736031,0.03976304,98.18859325],[4.53736072,0.03976479,98.18877689],[4.53736112,0.03976655,98.18896171],[4.53736153,0.0397683,98.18914773],[4.53736194,0.03977006,98.18933496],[4.53736234,0.03977182,98.1895234],[4.53736275,0.03977357,98.18971308],[4.53736315,0.03977533,98.18990399],[4.53736356,0.03977709,98.19009616],[4.53736396,0.03977884,98.19028959],[4.53736437,0.0397806,98.1904843],[4.53736478,0.03978236,98.19068029],[4.53736518,0.03978411,98.19087758],[4.53736559,0.03978587,98.19107617],[4.53736599,0.03978763,98.19127605],[4.5373664,0.03978938,98.19147723],[4.53736681,0.03979114,98.19167969],[4.53736721,0.0397929,98.19188344],[4.53736762,0.03979465,98.19208846],[4.53736802,0.03979641,98.19229476],[4.53736843,0.03979816,98.19250232],[4.53736884,0.03979992,98.19271115],[4.53736924,0.03980168,98.19292124],[4.53736965,0.03980343,98.19313258],[4.53737005,0.03980519,98.19334517],[4.53737046,0.03980695,98.19355901],[4.53737086,0.0398087,98.19377409],[4.53737127,0.03981046,98.19399041],[4.53737168,0.03981222,98.19420795],[4.53737208,0.03981397,98.19442672],[4.53737249,0.03981573,98.19464672],[4.53737289,0.03981749,98.19486793],[4.5373733,0.03981924,98.19509036],[4.53737371,0.039821,98.19531399],[4.53737411,0.03982276,98.19553883],[4.53737452,0.03982451,98.19576486],[4.53737492,0.03982627,98.19599209],[4.53737533,0.03982802,98.19622051],[4.53737573,0.03982978,98.19645012],[4.53737614,0.03983154,98.19668091],[4.53737655,0.03983329,98.19691287],[4.53737695,0.03983505,98.197146],[4.53737736,0.03983681,98.1973803],[4.53737776,0.03983856,98.19761577],[4.53737817,0.03984032,98.19785239],[4.53737857,0.03984208,98.19809016],[4.53737898,0.03984383,98.19832908],[4.53737939,0.03984559,98.19856915],[4.53737979,0.03984735,98.19881035],[4.5373802,0.0398491,98.19905269],[4.5373806,0.03985086,98.19929616],[4.53738101,0.03985262,98.19954075],[4.53738141,0.03985437,98.19978647],[4.53738182,0.03985613,98.2000333],[4.53738222,0.03985789,98.20028124],[4.53738263,0.03985964,98.2005303],[4.53738303,0.0398614,98.20078045],[4.53738344,0.03986316,98.2010317],[4.53738384,0.03986491,98.20128404],[4.53738425,0.03986667,98.20153748],[4.53738465,0.03986843,98.20179199],[4.53738506,0.03987018,98.20204759],[4.53738546,0.03987194,98.20230426],[4.53738587,0.0398737,98.202562],[4.53738627,0.03987545,98.20282081],[4.53738668,0.03987721,98.20308068],[4.53738708,0.03987897,98.20334161],[4.53738748,0.03988073,98.20360359],[4.53738789,0.03988248,98.20386661],[4.53738829,0.03988424,98.20413068],[4.5373887,0.039886,98.20439579],[4.5373891,0.03988775,98.20466193],[4.53738951,0.03988951,98.20492911],[4.53738991,0.03989127,98.2051973],[4.53739031,0.03989302,98.20546652],[4.53739072,0.03989478,98.20573676],[4.53739112,0.03989654,98.20600801],[4.53739152,0.0398983,98.20628026],[4.53739193,0.03990005,98.20655352],[4.53739233,0.03990181,98.20682778],[4.53739273,0.03990357,98.20710304],[4.53739314,0.03990532,98.20737929],[4.53739354,0.03990708,98.20765652],[4.53739394,0.03990884,98.20793474],[4.53739435,0.0399106,98.20821395],[4.53739475,0.03991235,98.20849415],[4.53739515,0.03991411,98.20877534],[4.53739556,0.03991587,98.20905753],[4.53739596,0.03991762,98.2093407],[4.53739636,0.03991938,98.20962488],[4.53739676,0.03992114,98.20991005],[4.53739717,0.0399229,98.21019621],[4.53739757,0.03992465,98.21048338],[4.53739797,0.03992641,98.21077154],[4.53739837,0.03992817,98.21106071],[4.53739878,0.03992993,98.21135088],[4.53739918,0.03993168,98.21164205],[4.53739958,0.03993344,98.21193423],[4.53739998,0.0399352,98.21222742],[4.53740038,0.03993696,98.21252161],[4.53740078,0.03993871,98.21281681],[4.53740119,0.03994047,98.21311302],[4.53740159,0.03994223,98.21341025],[4.53740199,0.03994399,98.21370848],[4.53740239,0.03994574,98.21400773],[4.53740279,0.0399475,98.214308],[4.53740319,0.03994926,98.21460928],[4.53740359,0.03995102,98.21491158],[4.53740399,0.03995278,98.21521491],[4.5374044,0.03995453,98.21551925],[4.5374048,0.03995629,98.21582461],[4.5374052,0.03995805,98.216131],[4.5374056,0.03995981,98.21643841],[4.537406,0.03996156,98.21674685],[4.5374064,0.03996332,98.21705631],[4.5374068,0.03996508,98.2173668],[4.5374072,0.03996684,98.21767832],[4.5374076,0.0399686,98.21799088],[4.537408,0.03997035,98.21830446],[4.5374084,0.03997211,98.21861908],[4.5374088,0.03997387,98.21893474],[4.5374092,0.03997563,98.21925143],[4.5374096,0.03997739,98.21956915],[4.53741,0.03997914,98.21988792],[4.5374104,0.0399809,98.22020773],[4.5374108,0.03998266,98.22052857],[4.5374112,0.03998442,98.22085046],[4.5374116,0.03998618,98.2211734],[4.537412,0.03998793,98.22149738],[4.5374124,0.03998969,98.2218224],[4.5374128,0.03999145,98.22214848],[4.5374132,0.03999321,98.2224756],[4.5374136,0.03999497,98.22280377],[4.537414,0.03999673,98.223133],[4.53741439,0.03999848,98.22346328],[4.53741479,0.04000024,98.22379461],[4.53741519,0.040002,98.22412699],[4.53741559,0.04000376,98.22446043],[4.53741599,0.04000552,98.22479492],[4.53741639,0.04000728,98.22513046],[4.53741679,0.04000903,98.22546706],[4.53741719,0.04001079,98.22580471],[4.53741758,0.04001255,98.22614341],[4.53741798,0.04001431,98.22648316],[4.53741838,0.04001607,98.22682397],[4.53741878,0.04001783,98.22716582],[4.53741918,0.04001958,98.22750873],[4.53741958,0.04002134,98.22785269],[4.53741997,0.0400231,98.2281977],[4.53742037,0.04002486,98.22854376],[4.53742077,0.04002662,98.22889087],[4.53742117,0.04002838,98.22923903],[4.53742157,0.04003014,98.22958825],[4.53742196,0.04003189,98.22993851],[4.53742236,0.04003365,98.23028982],[4.53742276,0.04003541,98.23064218],[4.53742316,0.04003717,98.23099559],[4.53742355,0.04003893,98.23135005],[4.53742395,0.04004069,98.23170556],[4.53742435,0.04004245,98.23206212],[4.53742475,0.0400442,98.23241973],[4.53742514,0.04004596,98.23277839],[4.53742554,0.04004772,98.23313809],[4.53742594,0.04004948,98.23349884],[4.53742633,0.04005124,98.23386065],[4.53742673,0.040053,98.23422349],[4.53742713,0.04005476,98.23458739],[4.53742752,0.04005652,98.23495234],[4.53742792,0.04005827,98.23531833],[4.53742832,0.04006003,98.23568536],[4.53742871,0.04006179,98.23605345],[4.53742911,0.04006355,98.23642258],[4.53742951,0.04006531,98.23679276],[4.5374299,0.04006707,98.23716399],[4.5374303,0.04006883,98.23753626],[4.5374307,0.04007059,98.23790957],[4.53743109,0.04007235,98.23828394],[4.53743149,0.0400741,98.23865935],[4.53743189,0.04007586,98.2390358],[4.53743228,0.04007762,98.2394133],[4.53743268,0.04007938,98.23979184],[4.53743307,0.04008114,98.24017143],[4.53743347,0.0400829,98.24055207],[4.53743387,0.04008466,98.24093375],[4.53743426,0.04008642,98.24131647],[4.53743466,0.04008818,98.24170024],[4.53743505,0.04008994,98.24208505],[4.53743545,0.0400917,98.2424709],[4.53743584,0.04009345,98.2428578],[4.53743624,0.04009521,98.24324574],[4.53743664,0.04009697,98.24363473],[4.53743703,0.04009873,98.24402476],[4.53743743,0.04010049,98.24441583],[4.53743782,0.04010225,98.24480794],[4.53743822,0.04010401,98.2452011],[4.53743861,0.04010577,98.2455953],[4.53743901,0.04010753,98.24599054],[4.5374394,0.04010929,98.24638682],[4.5374398,0.04011105,98.24678414],[4.53744019,0.04011281,98.24718251],[4.53744059,0.04011457,98.24758192],[4.53744098,0.04011632,98.24798236],[4.53744138,0.04011808,98.24838385],[4.53744177,0.04011984,98.24878638],[4.53744217,0.0401216,98.24918996],[4.53744256,0.04012336,98.24959457],[4.53744296,0.04012512,98.25000022],[4.53744335,0.04012688,98.25040691],[4.53744375,0.04012864,98.25081464],[4.53744414,0.0401304,98.25122341],[4.53744454,0.04013216,98.25163322],[4.53744493,0.04013392,98.25204407],[4.53744532,0.04013568,98.25245596],[4.53744572,0.04013744,98.25286889],[4.53744611,0.0401392,98.25328286],[4.53744651,0.04014096,98.25369786],[4.5374469,0.04014272,98.2541139],[4.5374473,0.04014448,98.25453099],[4.53744769,0.04014623,98.25494911],[4.53744808,0.04014799,98.25536826],[4.53744848,0.04014975,98.25578846],[4.53744887,0.04015151,98.25620969],[4.53744927,0.04015327,98.25663196],[4.53744966,0.04015503,98.25705527],[4.53745005,0.04015679,98.25747961],[4.53745045,0.04015855,98.25790499],[4.53745084,0.04016031,98.25833141],[4.53745123,0.04016207,98.25875886],[4.53745163,0.04016383,98.25918735],[4.53745202,0.04016559,98.25961687],[4.53745242,0.04016735,98.26004743],[4.53745281,0.04016911,98.26047903],[4.5374532,0.04017087,98.26091166],[4.5374536,0.04017263,98.26134533],[4.53745399,0.04017439,98.26178003],[4.53745438,0.04017615,98.26221576],[4.53745478,0.04017791,98.26265253],[4.53745517,0.04017967,98.26309034],[4.53745556,0.04018143,98.26352918],[4.53745596,0.04018319,98.26396905],[4.53745635,0.04018495,98.26440996],[4.53745674,0.04018671,98.2648519],[4.53745714,0.04018847,98.26529487],[4.53745753,0.04019023,98.26573888],[4.53745792,0.04019199,98.26618392],[4.53742625,0.04019919,98.17009974]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1003400","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2,"sOffset":120.7368344413}},{"geometry":{"coordinates":[[[4.53745792,0.04019199,98.26618392],[4.53745753,0.04019023,98.26573888],[4.53745714,0.04018847,98.26529487],[4.53745674,0.04018671,98.2648519],[4.53745635,0.04018495,98.26440996],[4.53745596,0.04018319,98.26396905],[4.53745556,0.04018143,98.26352918],[4.53745517,0.04017967,98.26309034],[4.53745478,0.04017791,98.26265253],[4.53745438,0.04017615,98.26221576],[4.53745399,0.04017439,98.26178003],[4.5374536,0.04017263,98.26134533],[4.5374532,0.04017087,98.26091166],[4.53745281,0.04016911,98.26047903],[4.53745242,0.04016735,98.26004743],[4.53745202,0.04016559,98.25961687],[4.53745163,0.04016383,98.25918735],[4.53745123,0.04016207,98.25875886],[4.53745084,0.04016031,98.25833141],[4.53745045,0.04015855,98.25790499],[4.53745005,0.04015679,98.25747961],[4.53744966,0.04015503,98.25705527],[4.53744927,0.04015327,98.25663196],[4.53744887,0.04015151,98.25620969],[4.53744848,0.04014975,98.25578846],[4.53744808,0.04014799,98.25536826],[4.53744769,0.04014623,98.25494911],[4.5374473,0.04014448,98.25453099],[4.5374469,0.04014272,98.2541139],[4.53744651,0.04014096,98.25369786],[4.53744611,0.0401392,98.25328286],[4.53744572,0.04013744,98.25286889],[4.53744532,0.04013568,98.25245596],[4.53744493,0.04013392,98.25204407],[4.53744454,0.04013216,98.25163322],[4.53744414,0.0401304,98.25122341],[4.53744375,0.04012864,98.25081464],[4.53744335,0.04012688,98.25040691],[4.53744296,0.04012512,98.25000022],[4.53744256,0.04012336,98.24959457],[4.53744217,0.0401216,98.24918996],[4.53744177,0.04011984,98.24878638],[4.53744138,0.04011808,98.24838385],[4.53744098,0.04011632,98.24798236],[4.53744059,0.04011457,98.24758192],[4.53744019,0.04011281,98.24718251],[4.5374398,0.04011105,98.24678414],[4.5374394,0.04010929,98.24638682],[4.53743901,0.04010753,98.24599054],[4.53743861,0.04010577,98.2455953],[4.53743822,0.04010401,98.2452011],[4.53743782,0.04010225,98.24480794],[4.53743743,0.04010049,98.24441583],[4.53743703,0.04009873,98.24402476],[4.53743664,0.04009697,98.24363473],[4.53743624,0.04009521,98.24324574],[4.53743584,0.04009345,98.2428578],[4.53743545,0.0400917,98.2424709],[4.53743505,0.04008994,98.24208505],[4.53743466,0.04008818,98.24170024],[4.53743426,0.04008642,98.24131647],[4.53743387,0.04008466,98.24093375],[4.53743347,0.0400829,98.24055207],[4.53743307,0.04008114,98.24017143],[4.53743268,0.04007938,98.23979184],[4.53743228,0.04007762,98.2394133],[4.53743189,0.04007586,98.2390358],[4.53743149,0.0400741,98.23865935],[4.53743109,0.04007235,98.23828394],[4.5374307,0.04007059,98.23790957],[4.5374303,0.04006883,98.23753626],[4.5374299,0.04006707,98.23716399],[4.53742951,0.04006531,98.23679276],[4.53742911,0.04006355,98.23642258],[4.53742871,0.04006179,98.23605345],[4.53742832,0.04006003,98.23568536],[4.53742792,0.04005827,98.23531833],[4.53742752,0.04005652,98.23495234],[4.53742713,0.04005476,98.23458739],[4.53742673,0.040053,98.23422349],[4.53742633,0.04005124,98.23386065],[4.53742594,0.04004948,98.23349884],[4.53742554,0.04004772,98.23313809],[4.53742514,0.04004596,98.23277839],[4.53742475,0.0400442,98.23241973],[4.53742435,0.04004245,98.23206212],[4.53742395,0.04004069,98.23170556],[4.53742355,0.04003893,98.23135005],[4.53742316,0.04003717,98.23099559],[4.53742276,0.04003541,98.23064218],[4.53742236,0.04003365,98.23028982],[4.53742196,0.04003189,98.22993851],[4.53742157,0.04003014,98.22958825],[4.53742117,0.04002838,98.22923903],[4.53742077,0.04002662,98.22889087],[4.53742037,0.04002486,98.22854376],[4.53741997,0.0400231,98.2281977],[4.53741958,0.04002134,98.22785269],[4.53741918,0.04001958,98.22750873],[4.53741878,0.04001783,98.22716582],[4.53741838,0.04001607,98.22682397],[4.53741798,0.04001431,98.22648316],[4.53741758,0.04001255,98.22614341],[4.53741719,0.04001079,98.22580471],[4.53741679,0.04000903,98.22546706],[4.53741639,0.04000728,98.22513046],[4.53741599,0.04000552,98.22479492],[4.53741559,0.04000376,98.22446043],[4.53741519,0.040002,98.22412699],[4.53741479,0.04000024,98.22379461],[4.53741439,0.03999848,98.22346328],[4.537414,0.03999673,98.223133],[4.5374136,0.03999497,98.22280377],[4.5374132,0.03999321,98.2224756],[4.5374128,0.03999145,98.22214848],[4.5374124,0.03998969,98.2218224],[4.537412,0.03998793,98.22149738],[4.5374116,0.03998618,98.2211734],[4.5374112,0.03998442,98.22085046],[4.5374108,0.03998266,98.22052857],[4.5374104,0.0399809,98.22020773],[4.53741,0.03997914,98.21988792],[4.5374096,0.03997739,98.21956915],[4.5374092,0.03997563,98.21925143],[4.5374088,0.03997387,98.21893474],[4.5374084,0.03997211,98.21861908],[4.537408,0.03997035,98.21830446],[4.5374076,0.0399686,98.21799088],[4.5374072,0.03996684,98.21767832],[4.5374068,0.03996508,98.2173668],[4.5374064,0.03996332,98.21705631],[4.537406,0.03996156,98.21674685],[4.5374056,0.03995981,98.21643841],[4.5374052,0.03995805,98.216131],[4.5374048,0.03995629,98.21582461],[4.5374044,0.03995453,98.21551925],[4.53740399,0.03995278,98.21521491],[4.53740359,0.03995102,98.21491158],[4.53740319,0.03994926,98.21460928],[4.53740279,0.0399475,98.214308],[4.53740239,0.03994574,98.21400773],[4.53740199,0.03994399,98.21370848],[4.53740159,0.03994223,98.21341025],[4.53740119,0.03994047,98.21311302],[4.53740078,0.03993871,98.21281681],[4.53740038,0.03993696,98.21252161],[4.53739998,0.0399352,98.21222742],[4.53739958,0.03993344,98.21193423],[4.53739918,0.03993168,98.21164205],[4.53739878,0.03992993,98.21135088],[4.53739837,0.03992817,98.21106071],[4.53739797,0.03992641,98.21077154],[4.53739757,0.03992465,98.21048338],[4.53739717,0.0399229,98.21019621],[4.53739676,0.03992114,98.20991005],[4.53739636,0.03991938,98.20962488],[4.53739596,0.03991762,98.2093407],[4.53739556,0.03991587,98.20905753],[4.53739515,0.03991411,98.20877534],[4.53739475,0.03991235,98.20849415],[4.53739435,0.0399106,98.20821395],[4.53739394,0.03990884,98.20793474],[4.53739354,0.03990708,98.20765652],[4.53739314,0.03990532,98.20737929],[4.53739273,0.03990357,98.20710304],[4.53739233,0.03990181,98.20682778],[4.53739193,0.03990005,98.20655352],[4.53739152,0.0398983,98.20628026],[4.53739112,0.03989654,98.20600801],[4.53739072,0.03989478,98.20573676],[4.53739031,0.03989302,98.20546652],[4.53738991,0.03989127,98.2051973],[4.53738951,0.03988951,98.20492911],[4.5373891,0.03988775,98.20466193],[4.5373887,0.039886,98.20439579],[4.53738829,0.03988424,98.20413068],[4.53738789,0.03988248,98.20386661],[4.53738748,0.03988073,98.20360359],[4.53738708,0.03987897,98.20334161],[4.53738668,0.03987721,98.20308068],[4.53738627,0.03987545,98.20282081],[4.53738587,0.0398737,98.202562],[4.53738546,0.03987194,98.20230426],[4.53738506,0.03987018,98.20204759],[4.53738465,0.03986843,98.20179199],[4.53738425,0.03986667,98.20153748],[4.53738384,0.03986491,98.20128404],[4.53738344,0.03986316,98.2010317],[4.53738303,0.0398614,98.20078045],[4.53738263,0.03985964,98.2005303],[4.53738222,0.03985789,98.20028124],[4.53738182,0.03985613,98.2000333],[4.53738141,0.03985437,98.19978647],[4.53738101,0.03985262,98.19954075],[4.5373806,0.03985086,98.19929616],[4.5373802,0.0398491,98.19905269],[4.53737979,0.03984735,98.19881035],[4.53737939,0.03984559,98.19856915],[4.53737898,0.03984383,98.19832908],[4.53737857,0.03984208,98.19809016],[4.53737817,0.03984032,98.19785239],[4.53737776,0.03983856,98.19761577],[4.53737736,0.03983681,98.1973803],[4.53737695,0.03983505,98.197146],[4.53737655,0.03983329,98.19691287],[4.53737614,0.03983154,98.19668091],[4.53737573,0.03982978,98.19645012],[4.53737533,0.03982802,98.19622051],[4.53737492,0.03982627,98.19599209],[4.53737452,0.03982451,98.19576486],[4.53737411,0.03982276,98.19553883],[4.53737371,0.039821,98.19531399],[4.5373733,0.03981924,98.19509036],[4.53737289,0.03981749,98.19486793],[4.53737249,0.03981573,98.19464672],[4.53737208,0.03981397,98.19442672],[4.53737168,0.03981222,98.19420795],[4.53737127,0.03981046,98.19399041],[4.53737086,0.0398087,98.19377409],[4.53737046,0.03980695,98.19355901],[4.53737005,0.03980519,98.19334517],[4.53736965,0.03980343,98.19313258],[4.53736924,0.03980168,98.19292124],[4.53736884,0.03979992,98.19271115],[4.53736843,0.03979816,98.19250232],[4.53736802,0.03979641,98.19229476],[4.53736762,0.03979465,98.19208846],[4.53736721,0.0397929,98.19188344],[4.53736681,0.03979114,98.19167969],[4.5373664,0.03978938,98.19147723],[4.53736599,0.03978763,98.19127605],[4.53736559,0.03978587,98.19107617],[4.53736518,0.03978411,98.19087758],[4.53736478,0.03978236,98.19068029],[4.53736437,0.0397806,98.1904843],[4.53736396,0.03977884,98.19028959],[4.53736356,0.03977709,98.19009616],[4.53736315,0.03977533,98.18990399],[4.53736275,0.03977357,98.18971308],[4.53736234,0.03977182,98.1895234],[4.53736194,0.03977006,98.18933496],[4.53736153,0.0397683,98.18914773],[4.53736112,0.03976655,98.18896171],[4.53736072,0.03976479,98.18877689],[4.53736031,0.03976304,98.18859325],[4.53735991,0.03976128,98.18841078],[4.5373595,0.03975952,98.18822947],[4.53735909,0.03975777,98.18804932],[4.53735869,0.03975601,98.1878703],[4.53735828,0.03975425,98.18769241],[4.53735788,0.0397525,98.18751563],[4.53735747,0.03975074,98.18733996],[4.53735706,0.03974898,98.18716539],[4.53735666,0.03974723,98.18699189],[4.53735625,0.03974547,98.18681947],[4.53735584,0.03974372,98.1866481],[4.53735544,0.03974196,98.18647778],[4.53735503,0.0397402,98.1863085],[4.53735462,0.03973845,98.18614024],[4.53735422,0.03973669,98.185973],[4.53735381,0.03973493,98.18580675],[4.5373534,0.03973318,98.1856415],[4.537353,0.03973144,98.18547723],[4.53735259,0.03972968,98.18531392],[4.53735219,0.03972793,98.18515157],[4.53735178,0.03972617,98.18499017],[4.53735137,0.03972441,98.1848297],[4.53735097,0.03972266,98.18467015],[4.53735056,0.0397209,98.18451151],[4.53735015,0.03971915,98.18435377],[4.53734974,0.03971739,98.18419692],[4.53734934,0.03971563,98.18404094],[4.53734893,0.03971388,98.18388583],[4.53734852,0.03971212,98.18373157],[4.53734811,0.03971037,98.18357816],[4.5373477,0.03970861,98.18342557],[4.53734729,0.03970686,98.18327381],[4.53734689,0.0397051,98.18312285],[4.53734648,0.03970334,98.18297269],[4.53734607,0.03970159,98.18282331],[4.53734566,0.03969983,98.18267471],[4.53734525,0.03969808,98.18252687],[4.53734484,0.03969632,98.1823798],[4.53734443,0.03969457,98.18223349],[4.53734402,0.03969281,98.18208795],[4.53734361,0.03969105,98.18194317],[4.5373432,0.0396893,98.18179917],[4.53734279,0.03968754,98.18165593],[4.53734238,0.03968579,98.18151346],[4.53734197,0.03968403,98.18137177],[4.53734156,0.03968228,98.18123085],[4.53734115,0.03968052,98.1810907],[4.53734074,0.03967877,98.18095132],[4.53734033,0.03967701,98.18081273],[4.53733992,0.03967526,98.18067491],[4.53733951,0.0396735,98.18053786],[4.5373391,0.03967175,98.1804016],[4.53733869,0.03966999,98.18026612],[4.53733828,0.03966824,98.18013141],[4.53733786,0.03966648,98.17999749],[4.53733745,0.03966473,98.17986436],[4.53733704,0.03966297,98.179732],[4.53733663,0.03966122,98.17960044],[4.53733622,0.03965946,98.17946966],[4.5373358,0.03965771,98.17933966],[4.53733539,0.03965595,98.17921046],[4.53733498,0.0396542,98.17908204],[4.53733457,0.03965244,98.17895442],[4.53733416,0.03965069,98.17882759],[4.53733374,0.03964893,98.17870155],[4.53733333,0.03964718,98.1785763],[4.53733292,0.03964542,98.17845185],[4.5373325,0.03964367,98.1783282],[4.53733209,0.03964191,98.17820534],[4.53733168,0.03964016,98.17808328],[4.53733126,0.0396384,98.17796202],[4.53733085,0.03963665,98.17784157],[4.53733044,0.03963489,98.17772191],[4.53733002,0.03963314,98.17760306],[4.53732961,0.03963138,98.177485],[4.5373292,0.03962963,98.17736776],[4.53732878,0.03962788,98.17725132],[4.53732837,0.03962612,98.17713569],[4.53732795,0.03962437,98.17702086],[4.53732754,0.03962261,98.17690683],[4.53732712,0.03962086,98.17679358],[4.53732671,0.0396191,98.1766811],[4.5373263,0.03961735,98.17656936],[4.53732588,0.03961559,98.17645835],[4.53732547,0.03961384,98.17634806],[4.53732505,0.03961209,98.17623846],[4.53732464,0.03961033,98.17612954],[4.53732422,0.03960858,98.17602129],[4.5373238,0.03960682,98.17591371],[4.53732339,0.03960507,98.17580681],[4.53732297,0.03960331,98.1757006],[4.53732256,0.03960156,98.17559509],[4.53732214,0.03959981,98.17549029],[4.53732172,0.03959805,98.1753862],[4.53732131,0.0395963,98.17528284],[4.53732089,0.03959454,98.17518021],[4.53732048,0.03959279,98.17507832],[4.53732006,0.03959104,98.17497719],[4.53731964,0.03958928,98.17487681],[4.53731923,0.03958753,98.1747772],[4.53731881,0.03958577,98.17467837],[4.53731839,0.03958402,98.17458033],[4.53731797,0.03958227,98.17448308],[4.53731756,0.03958051,98.17438664],[4.53731714,0.03957876,98.174291],[4.53731672,0.03957701,98.17419619],[4.5373163,0.03957525,98.17410221],[4.53731589,0.0395735,98.17400907],[4.53731547,0.03957174,98.17391678],[4.53731505,0.03956999,98.17382534],[4.53731463,0.03956824,98.17373477],[4.53731422,0.03956648,98.17364507],[4.5373138,0.03956473,98.17355626],[4.53731338,0.03956298,98.17346833],[4.53731296,0.03956122,98.17338131],[4.53731254,0.03955947,98.1732952],[4.53731213,0.03955771,98.17321001],[4.53731171,0.03955596,98.17312574],[4.53731129,0.03955421,98.17304241],[4.53731087,0.03955245,98.17296002],[4.53731045,0.0395507,98.17287858],[4.53731003,0.03954895,98.17279811],[4.53730962,0.03954719,98.17271861],[4.5373092,0.03954544,98.17264009],[4.53730878,0.03954368,98.17256255],[4.53730836,0.03954193,98.17248602],[4.53730794,0.03954018,98.17241048],[4.53730752,0.03953842,98.17233597],[4.53730711,0.03953667,98.17226247],[4.53730669,0.03953492,98.17219001],[4.53730627,0.03953316,98.17211859],[4.53730585,0.03953141,98.17204822],[4.53730543,0.03952966,98.17197891],[4.53730501,0.0395279,98.17191066],[4.5373046,0.03952615,98.17184349],[4.53730418,0.03952439,98.17177741],[4.53730376,0.03952264,98.17171242],[4.53730334,0.03952089,98.17164853],[4.53730292,0.03951913,98.17158575],[4.5373025,0.03951738,98.17152409],[4.53730208,0.03951563,98.17146355],[4.53730167,0.03951387,98.17140416],[4.53730125,0.03951212,98.17134591],[4.53730083,0.03951037,98.17128882],[4.53730041,0.03950861,98.17123288],[4.53729999,0.03950686,98.17117812],[4.53729958,0.0395051,98.17112454],[4.53729916,0.03950335,98.17107215],[4.53729874,0.0395016,98.17102096],[4.53729832,0.03949984,98.17097097],[4.5372979,0.03949809,98.1709222],[4.53729749,0.03949633,98.17087466],[4.53729707,0.03949458,98.17082834],[4.53729665,0.03949283,98.17078327],[4.53729623,0.03949107,98.17073944],[4.53729582,0.03948932,98.17069688],[4.5372954,0.03948757,98.17065558],[4.53729498,0.03948581,98.17061556],[4.53729456,0.03948406,98.17057682],[4.53729415,0.0394823,98.17053938],[4.53729373,0.03948055,98.17050324],[4.53729331,0.03947879,98.17046841],[4.5372929,0.03947704,98.17043489],[4.53729248,0.03947529,98.17040273],[4.53729206,0.03947353,98.17037194],[4.53729165,0.03947178,98.17034256],[4.53729123,0.03947002,98.17031462],[4.53729081,0.03946827,98.17028811],[4.5372904,0.03946652,98.17026301],[4.53728998,0.03946476,98.1702393],[4.53728957,0.03946301,98.17021697],[4.53728915,0.03946125,98.170196],[4.53728873,0.0394595,98.17017637],[4.53728832,0.03945774,98.17015807],[4.5372879,0.03945599,98.17014108],[4.53728749,0.03945423,98.17012538],[4.53728707,0.03945248,98.17011095],[4.53728666,0.03945073,98.17009778],[4.53728624,0.03944897,98.17008586],[4.53728583,0.03944722,98.17007515],[4.53728541,0.03944546,98.17006566],[4.537285,0.03944371,98.17005735],[4.53728458,0.03944195,98.17005022],[4.53728417,0.0394402,98.17004425],[4.53728375,0.03943844,98.17003941],[4.53728334,0.03943669,98.1700357],[4.53728293,0.03943493,98.17003309],[4.53728251,0.03943318,98.17003158],[4.5372821,0.03943142,98.17003113],[4.53728168,0.03942967,98.17003174],[4.53728127,0.03942791,98.17003338],[4.53728085,0.03942616,98.17003605],[4.53728044,0.0394244,98.17003972],[4.53728003,0.03942265,98.17004438],[4.53727961,0.03942089,98.17005001],[4.5372792,0.03941914,98.1700566],[4.53727878,0.03941738,98.17006412],[4.53727837,0.03941563,98.17007256],[4.53727795,0.03941387,98.1700819],[4.53727754,0.03941212,98.17009213],[4.53727713,0.03941037,98.17010323],[4.53727671,0.03940861,98.17011518],[4.5372763,0.03940686,98.17012797],[4.53727588,0.0394051,98.17014157],[4.53727547,0.03940335,98.17015598],[4.53727505,0.03940159,98.17017117],[4.53727464,0.03939984,98.17018714],[4.53727422,0.03939808,98.17020385],[4.53727381,0.03939633,98.1702213],[4.5372734,0.03939457,98.17023946],[4.53727298,0.03939282,98.17025833],[4.53727257,0.03939106,98.17027788],[4.53727215,0.03938931,98.1702981],[4.53727174,0.03938755,98.17031897],[4.53727132,0.0393858,98.17034047],[4.53727091,0.03938404,98.17036259],[4.53727049,0.03938229,98.17038531],[4.53727008,0.03938053,98.17040862],[4.53726966,0.03937878,98.17043249],[4.53726925,0.03937702,98.17045692],[4.53726883,0.03937527,98.17048187],[4.53726841,0.03937352,98.17050735],[4.537268,0.03937176,98.17053332],[4.53726758,0.03937001,98.17055978],[4.53726717,0.03936825,98.17058671],[4.53726675,0.0393665,98.1706141],[4.53726633,0.03936474,98.17064198],[4.53726592,0.03936299,98.17067035],[4.5372655,0.03936124,98.17069924],[4.53726508,0.03935948,98.17072866],[4.53726467,0.03935773,98.17075863],[4.53726425,0.03935597,98.17078916],[4.53726383,0.03935422,98.17082028],[4.53726342,0.03935247,98.17085198],[4.537263,0.03935071,98.1708843],[4.53726258,0.03934896,98.17091725],[4.53726217,0.0393472,98.17095084],[4.53726175,0.03934545,98.1709851],[4.53726133,0.03934369,98.17102002],[4.53726091,0.03934194,98.17105565],[4.5372605,0.03934019,98.17109198],[4.53726008,0.03933843,98.17112903],[4.53725966,0.03933668,98.17116682],[4.53725924,0.03933492,98.17120537],[4.53725883,0.03933317,98.1712447],[4.53725841,0.03933142,98.17128481],[4.53725799,0.03932966,98.17132573],[4.53725757,0.03932791,98.17136746],[4.53725716,0.03932615,98.17141004],[4.53725674,0.0393244,98.17145346],[4.53725632,0.03932264,98.17149776],[4.5372559,0.03932089,98.17154294],[4.53725548,0.03931914,98.17158902],[4.53725507,0.03931738,98.17163602],[4.53725465,0.03931563,98.17168395],[4.53725423,0.03931387,98.17173282],[4.53725382,0.03931212,98.17178267],[4.5372534,0.03931037,98.17183349],[4.53725298,0.03930861,98.17188531],[4.53725256,0.03930686,98.17193814],[4.53725215,0.0393051,98.17199198],[4.53725173,0.03930335,98.17204683],[4.53725131,0.03930159,98.17210269],[4.53725089,0.03929984,98.17215954],[4.53725048,0.03929809,98.17221739],[4.53725006,0.03929633,98.17227622],[4.53724964,0.03929458,98.17233604],[4.53724923,0.03929282,98.17239684],[4.53724881,0.03929107,98.17245861],[4.53724839,0.03928931,98.17252134],[4.53724798,0.03928756,98.17258504],[4.53724756,0.0392858,98.1726497],[4.53724714,0.03928405,98.17271531],[4.53724673,0.0392823,98.17278186],[4.53724631,0.03928054,98.17284936],[4.53724589,0.03927879,98.1729178],[4.53724548,0.03927703,98.17298716],[4.53724506,0.03927528,98.17305745],[4.53724465,0.03927352,98.17312866],[4.53724423,0.03927177,98.17320079],[4.53724381,0.03927001,98.17327381],[4.5372434,0.03926826,98.17334774],[4.53724298,0.0392665,98.17342257],[4.53724256,0.03926475,98.17349828],[4.53724215,0.039263,98.17357487],[4.53724173,0.03926124,98.17365234],[4.53724132,0.03925949,98.17373068],[4.5372409,0.03925773,98.17380989],[4.53724048,0.03925598,98.17388995],[4.53724007,0.03925422,98.17397087],[4.53723965,0.03925247,98.17405262],[4.53723924,0.03925071,98.17413522],[4.53723882,0.03924896,98.17421866],[4.5372384,0.0392472,98.17430292],[4.53723799,0.03924545,98.174388],[4.53723757,0.03924369,98.17447389],[4.53723716,0.03924194,98.1745606],[4.53723674,0.03924019,98.17464811],[4.53723633,0.03923843,98.17473642],[4.53723591,0.03923668,98.17482551],[4.53723549,0.03923492,98.1749154],[4.53723508,0.03923317,98.17500606],[4.53723466,0.03923141,98.17509749],[4.53723425,0.03922966,98.1751897],[4.53723383,0.0392279,98.17528266],[4.53723342,0.03922615,98.17537637],[4.537233,0.03922439,98.17547084],[4.53723258,0.03922264,98.17556605],[4.53723217,0.03922088,98.175662],[4.53723175,0.03921913,98.17575867],[4.53723134,0.03921737,98.17585607],[4.53723092,0.03921562,98.17595419],[4.53723051,0.03921386,98.17605303],[4.53723009,0.03921211,98.17615257],[4.53722967,0.03921036,98.17625281],[4.53722926,0.0392086,98.17635374],[4.53722884,0.03920685,98.17645536],[4.53722843,0.03920509,98.17655767],[4.53722801,0.03920334,98.17666065],[4.53722759,0.03920158,98.17676431],[4.53722718,0.03919983,98.17686862],[4.53722676,0.03919807,98.1769736],[4.53722635,0.03919632,98.17707923],[4.53722593,0.03919456,98.17718551],[4.53722551,0.03919281,98.17729242],[4.5372251,0.03919105,98.17739998],[4.53722468,0.0391893,98.17750816],[4.53722427,0.03918754,98.17761696],[4.53722385,0.03918579,98.17772638],[4.53722343,0.03918404,98.17783641],[4.53722302,0.03918228,98.17794705],[4.5372226,0.03918053,98.17805829],[4.53722219,0.03917877,98.17817012],[4.53722177,0.03917702,98.17828253],[4.53722135,0.03917526,98.17839553],[4.53722094,0.03917351,98.1785091],[4.53722052,0.03917175,98.17862324],[4.5372201,0.03917,98.17873795],[4.53721969,0.03916824,98.17885321],[4.53721927,0.03916649,98.17896903],[4.53721885,0.03916473,98.17908539],[4.53721844,0.03916298,98.17920229],[4.53721802,0.03916123,98.17931972],[4.5372176,0.03915947,98.17943769],[4.53721719,0.03915772,98.17955621],[4.53721677,0.03915596,98.17967527],[4.53721635,0.03915421,98.17979489],[4.53721594,0.03915245,98.17991507],[4.53721552,0.0391507,98.18003582],[4.5372151,0.03914894,98.18015715],[4.53721469,0.03914719,98.18027906],[4.53721427,0.03914543,98.18040155],[4.53721385,0.03914368,98.18052464],[4.53721344,0.03914193,98.18064834],[4.53721302,0.03914017,98.18077264],[4.5372126,0.03913842,98.18089755],[4.53721218,0.03913666,98.18102309],[4.53721177,0.03913491,98.18114925],[4.53721135,0.03913315,98.18127605],[4.53721093,0.0391314,98.18140348],[4.53721052,0.03912965,98.18153156],[4.5372101,0.03912789,98.1816603],[4.53720968,0.03912614,98.18178969],[4.53720926,0.03912438,98.18191975],[4.53720885,0.03912263,98.18205049],[4.53720843,0.03912087,98.1821819],[4.53720801,0.03911912,98.18231399],[4.53720759,0.03911737,98.18244678],[4.53720718,0.03911561,98.18258026],[4.53720676,0.03911386,98.18271445],[4.53720634,0.0391121,98.18284935],[4.53720592,0.03911035,98.18298497],[4.53720551,0.0391086,98.18312131],[4.53720509,0.03910684,98.18325838],[4.53720467,0.03910509,98.18339618],[4.53720425,0.03910333,98.18353473],[4.53720384,0.03910158,98.18367403],[4.53720342,0.03909982,98.18381408],[4.537203,0.03909807,98.18395489],[4.53720258,0.03909632,98.18409647],[4.53720217,0.03909456,98.18423883],[4.53720175,0.03909281,98.18438196],[4.53720133,0.03909105,98.18452589],[4.53720092,0.0390893,98.1846706],[4.5372005,0.03908755,98.18481612],[4.53720008,0.03908579,98.18496244],[4.53719966,0.03908404,98.18510957],[4.53719925,0.03908228,98.18525752],[4.53719883,0.03908053,98.1854063],[4.53719841,0.03907877,98.18555591],[4.537198,0.03907702,98.18570635],[4.53719758,0.03907527,98.18585764],[4.53719716,0.03907351,98.18600978],[4.53719674,0.03907176,98.18616277],[4.53719633,0.03907,98.18631663],[4.53719591,0.03906825,98.18647135],[4.53719549,0.03906649,98.18662695],[4.53719508,0.03906474,98.18678343],[4.537195,0.03906442,98.18681196],[4.53722654,0.03905679,98.28485282],[4.53722662,0.0390571,98.28482991],[4.53722704,0.03905886,98.28470417],[4.53722746,0.03906061,98.28457898],[4.53722788,0.03906236,98.28445434],[4.5372283,0.03906412,98.28433026],[4.53722873,0.03906587,98.28420672],[4.53722915,0.03906763,98.28408372],[4.53722957,0.03906938,98.28396126],[4.53722999,0.03907113,98.28383935],[4.53723041,0.03907289,98.28371797],[4.53723083,0.03907464,98.28359712],[4.53723125,0.03907639,98.2834768],[4.53723167,0.03907815,98.28335702],[4.53723209,0.0390799,98.28323775],[4.53723251,0.03908165,98.28311902],[4.53723293,0.03908341,98.2830008],[4.53723336,0.03908516,98.2828831],[4.53723378,0.03908692,98.28276591],[4.5372342,0.03908867,98.28264924],[4.53723462,0.03909042,98.28253308],[4.53723504,0.03909218,98.28241742],[4.53723546,0.03909393,98.28230227],[4.53723588,0.03909568,98.28218762],[4.5372363,0.03909744,98.28207347],[4.53723672,0.03909919,98.28195982],[4.53723714,0.03910095,98.28184666],[4.53723756,0.0391027,98.281734],[4.53723798,0.03910445,98.28162182],[4.5372384,0.03910621,98.28151013],[4.53723882,0.03910796,98.28139892],[4.53723924,0.03910972,98.28128819],[4.53723966,0.03911147,98.28117794],[4.53724008,0.03911322,98.28106817],[4.5372405,0.03911498,98.28095887],[4.53724091,0.03911673,98.28085003],[4.53724133,0.03911848,98.28074167],[4.53724175,0.03912024,98.28063377],[4.53724217,0.03912199,98.28052633],[4.53724259,0.03912375,98.28041936],[4.53724301,0.0391255,98.28031284],[4.53724343,0.03912726,98.28020677],[4.53724385,0.03912901,98.28010115],[4.53724427,0.03913076,98.27999599],[4.53724468,0.03913252,98.27989127],[4.5372451,0.03913427,98.27978699],[4.53724552,0.03913603,98.27968315],[4.53724594,0.03913778,98.27957975],[4.53724636,0.03913953,98.27947679],[4.53724678,0.03914129,98.27937426],[4.53724719,0.03914304,98.27927216],[4.53724761,0.0391448,98.27917048],[4.53724803,0.03914655,98.27906924],[4.53724845,0.0391483,98.27896841],[4.53724887,0.03915006,98.278868],[4.53724928,0.03915181,98.27876801],[4.5372497,0.03915357,98.27866843],[4.53725012,0.03915532,98.27856926],[4.53725054,0.03915708,98.27847051],[4.53725095,0.03915883,98.27837217],[4.53725137,0.03916058,98.27827427],[4.53725179,0.03916234,98.27817681],[4.53725221,0.03916409,98.2780798],[4.53725262,0.03916585,98.27798325],[4.53725304,0.0391676,98.27788718],[4.53725346,0.03916936,98.27779158],[4.53725387,0.03917111,98.27769647],[4.53725429,0.03917286,98.27760186],[4.53725471,0.03917462,98.27750777],[4.53725512,0.03917637,98.27741419],[4.53725554,0.03917813,98.27732114],[4.53725596,0.03917988,98.27722863],[4.53725637,0.03918164,98.27713667],[4.53725679,0.03918339,98.27704526],[4.53725721,0.03918515,98.27695443],[4.53725762,0.0391869,98.27686417],[4.53725804,0.03918865,98.2767745],[4.53725846,0.03919041,98.27668543],[4.53725887,0.03919216,98.27659697],[4.53725929,0.03919392,98.27650912],[4.5372597,0.03919567,98.27642191],[4.53726012,0.03919743,98.27633532],[4.53726054,0.03919918,98.27624939],[4.53726095,0.03920094,98.27616411],[4.53726137,0.03920269,98.2760795],[4.53726179,0.03920445,98.27599557],[4.5372622,0.0392062,98.27591232],[4.53726262,0.03920795,98.27582977],[4.53726304,0.03920971,98.27574792],[4.53726345,0.03921146,98.2756668],[4.53726387,0.03921322,98.27558639],[4.53726428,0.03921497,98.27550673],[4.5372647,0.03921673,98.27542781],[4.53726512,0.03921848,98.27534964],[4.53726553,0.03922024,98.27527224],[4.53726595,0.03922199,98.27519562],[4.53726637,0.03922375,98.27511978],[4.53726678,0.0392255,98.27504474],[4.5372672,0.03922725,98.2749705],[4.53726762,0.03922901,98.27489708],[4.53726803,0.03923076,98.27482448],[4.53726845,0.03923252,98.27475272],[4.53726886,0.03923427,98.2746818],[4.53726928,0.03923603,98.27461174],[4.5372697,0.03923778,98.27454254],[4.53727011,0.03923954,98.27447422],[4.53727053,0.03924129,98.27440679],[4.53727095,0.03924305,98.27434025],[4.53727137,0.0392448,98.27427461],[4.53727178,0.03924655,98.27420989],[4.5372722,0.03924831,98.2741461],[4.53727262,0.03925006,98.27408324],[4.53727303,0.03925182,98.27402132],[4.53727345,0.03925357,98.27396036],[4.53727387,0.03925533,98.27390037],[4.53727429,0.03925708,98.27384135],[4.5372747,0.03925884,98.27378331],[4.53727512,0.03926059,98.27372627],[4.53727554,0.03926234,98.27367024],[4.53727596,0.0392641,98.27361522],[4.53727637,0.03926585,98.27356122],[4.53727679,0.03926761,98.27350827],[4.53727721,0.03926936,98.27345635],[4.53727763,0.03927112,98.2734055],[4.53727805,0.03927287,98.2733557],[4.53727846,0.03927462,98.27330699],[4.53727888,0.03927638,98.27325936],[4.5372793,0.03927813,98.27321282],[4.53727972,0.03927989,98.27316739],[4.53728014,0.03928164,98.27312308],[4.53728056,0.03928339,98.27307989],[4.53728098,0.03928515,98.27303784],[4.53728139,0.0392869,98.27299694],[4.53728181,0.03928866,98.27295719],[4.53728223,0.03929041,98.27291861],[4.53728265,0.03929216,98.2728812],[4.53728307,0.03929392,98.27284498],[4.53728349,0.03929567,98.27280996],[4.53728391,0.03929743,98.27277614],[4.53728433,0.03929918,98.27274355],[4.53728475,0.03930093,98.27271217],[4.53728517,0.03930269,98.27268203],[4.53728559,0.03930444,98.27265311],[4.53728601,0.03930619,98.27262539],[4.53728643,0.03930795,98.27259888],[4.53728685,0.0393097,98.27257355],[4.53728727,0.03931146,98.2725494],[4.5372877,0.03931321,98.27252641],[4.53728812,0.03931496,98.27250457],[4.53728854,0.03931672,98.27248388],[4.53728896,0.03931847,98.27246433],[4.53728938,0.03932022,98.27244589],[4.5372898,0.03932198,98.27242856],[4.53729022,0.03932373,98.27241233],[4.53729065,0.03932548,98.27239719],[4.53729107,0.03932724,98.27238313],[4.53729149,0.03932899,98.27237014],[4.53729191,0.03933074,98.2723582],[4.53729233,0.0393325,98.2723473],[4.53729276,0.03933425,98.27233744],[4.53729318,0.039336,98.2723286],[4.5372936,0.03933776,98.27232077],[4.53729402,0.03933951,98.27231394],[4.53729444,0.03934126,98.2723081],[4.53729487,0.03934302,98.27230324],[4.53729529,0.03934477,98.27229935],[4.53729571,0.03934652,98.27229641],[4.53729613,0.03934828,98.27229442],[4.53729656,0.03935003,98.27229336],[4.53729698,0.03935178,98.27229322],[4.5372974,0.03935354,98.272294],[4.53729782,0.03935529,98.27229568],[4.53729825,0.03935704,98.27229824],[4.53729867,0.03935879,98.27230169],[4.53729909,0.03936055,98.272306],[4.53729952,0.0393623,98.27231117],[4.53729994,0.03936405,98.27231718],[4.53730036,0.03936581,98.27232403],[4.53730078,0.03936756,98.2723317],[4.53730121,0.03936931,98.27234018],[4.53730163,0.03937107,98.27234947],[4.53730205,0.03937282,98.27235954],[4.53730247,0.03937457,98.27237039],[4.5373029,0.03937633,98.27238201],[4.53730332,0.03937808,98.27239439],[4.53730374,0.03937983,98.27240751],[4.53730417,0.03938158,98.27242136],[4.53730459,0.03938334,98.27243594],[4.53730501,0.03938509,98.27245123],[4.53730543,0.03938684,98.27246721],[4.53730586,0.0393886,98.27248389],[4.53730628,0.03939035,98.27250125],[4.5373067,0.03939211,98.27251927],[4.53730712,0.03939386,98.27253795],[4.53730754,0.03939561,98.27255727],[4.53730797,0.03939737,98.27257722],[4.53730839,0.03939912,98.2725978],[4.53730881,0.03940087,98.27261899],[4.53730923,0.03940263,98.27264078],[4.53730965,0.03940438,98.27266315],[4.53731008,0.03940613,98.2726861],[4.5373105,0.03940789,98.27270962],[4.53731092,0.03940964,98.27273369],[4.53731134,0.03941139,98.27275831],[4.53731176,0.03941315,98.27278346],[4.53731218,0.0394149,98.27280913],[4.5373126,0.03941665,98.27283531],[4.53731303,0.03941841,98.27286198],[4.53731345,0.03942016,98.27288915],[4.53731387,0.03942192,98.27291679],[4.53731429,0.03942367,98.27294489],[4.53731471,0.03942542,98.27297345],[4.53731513,0.03942718,98.27300245],[4.53731555,0.03942893,98.27303188],[4.53731597,0.03943069,98.27306173],[4.53731639,0.03943244,98.27309199],[4.53731681,0.03943419,98.27312264],[4.53731723,0.03943595,98.27315368],[4.53731765,0.0394377,98.2731851],[4.53731807,0.03943946,98.27321688],[4.53731849,0.03944121,98.27324901],[4.5373189,0.03944296,98.27328148],[4.53731932,0.03944472,98.27331428],[4.53731974,0.03944647,98.27334739],[4.53732016,0.03944823,98.27338082],[4.53732058,0.03944998,98.27341454],[4.537321,0.03945174,98.27344854],[4.53732141,0.03945349,98.27348282],[4.53732183,0.03945525,98.27351735],[4.53732225,0.039457,98.27355214],[4.53732267,0.03945876,98.27358717],[4.53732308,0.03946051,98.27362242],[4.5373235,0.03946227,98.27365789],[4.53732392,0.03946402,98.27369357],[4.53732433,0.03946578,98.27372943],[4.53732475,0.03946753,98.27376548],[4.53732516,0.03946929,98.2738017],[4.53732558,0.03947104,98.27383809],[4.537326,0.0394728,98.27387462],[4.53732641,0.03947455,98.27391133],[4.53732683,0.03947631,98.27394822],[4.53732724,0.03947806,98.27398531],[4.53732765,0.03947982,98.27402261],[4.53732807,0.03948157,98.27406013],[4.53732848,0.03948333,98.27409789],[4.5373289,0.03948508,98.27413589],[4.53732931,0.03948684,98.27417417],[4.53732972,0.03948859,98.27421272],[4.53733014,0.03949035,98.27425156],[4.53733055,0.03949211,98.2742907],[4.53733096,0.03949386,98.27433016],[4.53733138,0.03949562,98.27436996],[4.53733179,0.03949737,98.2744101],[4.5373322,0.03949913,98.2744506],[4.53733261,0.03950089,98.27449147],[4.53733302,0.03950264,98.27453272],[4.53733344,0.0395044,98.27457438],[4.53733385,0.03950615,98.27461645],[4.53733426,0.03950791,98.27465894],[4.53733467,0.03950967,98.27470188],[4.53733508,0.03951142,98.27474527],[4.53733549,0.03951318,98.27478912],[4.5373359,0.03951494,98.27483346],[4.53733631,0.03951669,98.27487829],[4.53733672,0.03951845,98.27492363],[4.53733713,0.0395202,98.27496949],[4.53733754,0.03952196,98.27501588],[4.53733795,0.03952372,98.27506283],[4.53733836,0.03952547,98.27511033],[4.53733877,0.03952723,98.27515841],[4.53733918,0.03952899,98.27520709],[4.53733959,0.03953074,98.27525636],[4.53734,0.0395325,98.27530625],[4.53734041,0.03953426,98.27535677],[4.53734082,0.03953601,98.27540794],[4.53734123,0.03953777,98.27545977],[4.53734164,0.03953953,98.27551226],[4.53734205,0.03954128,98.27556544],[4.53734246,0.03954304,98.27561932],[4.53734287,0.0395448,98.27567391],[4.53734328,0.03954655,98.27572923],[4.53734368,0.03954831,98.27578529],[4.53734409,0.03955007,98.2758421],[4.5373445,0.03955183,98.27589967],[4.53734491,0.03955358,98.27595803],[4.53734532,0.03955534,98.27601718],[4.53734573,0.0395571,98.27607714],[4.53734613,0.03955885,98.27613793],[4.53734654,0.03956061,98.27619954],[4.53734695,0.03956237,98.27626201],[4.53734736,0.03956412,98.27632534],[4.53734777,0.03956588,98.27638954],[4.53734818,0.03956764,98.27645464],[4.53734858,0.0395694,98.27652063],[4.53734899,0.03957115,98.27658755],[4.5373494,0.03957291,98.2766554],[4.53734981,0.03957467,98.27672419],[4.53735022,0.03957642,98.27679394],[4.53735062,0.03957818,98.27686466],[4.53735103,0.03957994,98.27693637],[4.53735144,0.0395817,98.27700907],[4.53735185,0.03958345,98.27708279],[4.53735226,0.03958521,98.27715754],[4.53735266,0.03958697,98.27723333],[4.53735307,0.03958872,98.27731017],[4.53735348,0.03959048,98.27738808],[4.53735389,0.03959224,98.27746707],[4.53735429,0.039594,98.27754716],[4.5373547,0.03959575,98.27762835],[4.53735511,0.03959751,98.27771067],[4.53735552,0.03959927,98.27779413],[4.53735593,0.03960102,98.27787873],[4.53735634,0.03960278,98.2779645],[4.53735674,0.03960454,98.27805144],[4.53735715,0.03960629,98.27813958],[4.53735756,0.03960805,98.27822892],[4.53735797,0.03960981,98.27831948],[4.53735838,0.03961157,98.27841128],[4.53735879,0.03961332,98.27850431],[4.53735919,0.03961508,98.27859861],[4.5373596,0.03961684,98.27869418],[4.53736001,0.03961859,98.27879104],[4.53736042,0.03962035,98.27888919],[4.53736083,0.03962211,98.27898863],[4.53736124,0.03962386,98.27908936],[4.53736165,0.03962562,98.27919137],[4.53736206,0.03962738,98.27929466],[4.53736246,0.03962914,98.27939923],[4.53736287,0.03963089,98.27950506],[4.53736328,0.03963265,98.27961216],[4.53736369,0.03963441,98.27972052],[4.5373641,0.03963616,98.27983014],[4.53736451,0.03963792,98.27994102],[4.53736492,0.03963968,98.28005314],[4.53736533,0.03964143,98.28016651],[4.53736574,0.03964319,98.28028111],[4.53736615,0.03964495,98.28039696],[4.53736656,0.0396467,98.28051404],[4.53736697,0.03964846,98.28063234],[4.53736738,0.03965022,98.28075187],[4.53736779,0.03965197,98.28087262],[4.5373682,0.03965373,98.28099459],[4.53736861,0.03965549,98.28111777],[4.53736902,0.03965724,98.28124215],[4.53736943,0.039659,98.28136774],[4.53736984,0.03966076,98.28149453],[4.53737025,0.03966251,98.28162251],[4.53737066,0.03966427,98.28175168],[4.53737107,0.03966603,98.28188204],[4.53737148,0.03966778,98.28201359],[4.53737189,0.03966954,98.28214631],[4.5373723,0.0396713,98.2822802],[4.53737271,0.03967305,98.28241526],[4.53737312,0.03967481,98.28255149],[4.53737353,0.03967657,98.28268889],[4.53737394,0.03967832,98.28282743],[4.53737435,0.03968008,98.28296714],[4.53737476,0.03968184,98.28310799],[4.53737517,0.03968359,98.28324998],[4.53737558,0.03968535,98.28339312],[4.53737599,0.03968711,98.28353739],[4.5373764,0.03968886,98.28368279],[4.53737681,0.03969062,98.28382932],[4.53737722,0.03969238,98.28397698],[4.53737763,0.03969413,98.28412575],[4.53737804,0.03969589,98.28427564],[4.53737845,0.03969765,98.28442664],[4.53737886,0.0396994,98.28457875],[4.53737927,0.03970116,98.28473197],[4.53737968,0.03970292,98.28488628],[4.53738009,0.03970467,98.2850417],[4.5373805,0.03970643,98.28519821],[4.53738091,0.03970819,98.28535582],[4.53738132,0.03970994,98.28551451],[4.53738173,0.0397117,98.2856743],[4.53738214,0.03971346,98.28583516],[4.53738255,0.03971522,98.28599711],[4.53738296,0.03971697,98.28616013],[4.53738337,0.03971873,98.28632423],[4.53738378,0.03972049,98.28648939],[4.53738419,0.03972224,98.28665563],[4.5373846,0.039724,98.28682292],[4.53738501,0.03972574,98.28699128],[4.53738542,0.0397275,98.2871607],[4.53738583,0.03972925,98.28733117],[4.53738624,0.03973101,98.2875027],[4.53738665,0.03973277,98.28767527],[4.53738706,0.03973452,98.28784889],[4.53738747,0.03973628,98.28802355],[4.53738788,0.03973804,98.28819925],[4.53738829,0.0397398,98.28837598],[4.5373887,0.03974155,98.28855375],[4.53738911,0.03974331,98.28873255],[4.53738952,0.03974507,98.28891237],[4.53738993,0.03974682,98.28909322],[4.53739034,0.03974858,98.28927508],[4.53739075,0.03975034,98.28945797],[4.53739116,0.03975209,98.28964186],[4.53739157,0.03975385,98.28982677],[4.53739198,0.03975561,98.29001268],[4.53739239,0.03975737,98.2901996],[4.5373928,0.03975912,98.29038752],[4.53739321,0.03976088,98.29057644],[4.53739361,0.03976264,98.29076635],[4.53739402,0.03976439,98.29095725],[4.53739443,0.03976615,98.29114915],[4.53739484,0.03976791,98.29134202],[4.53739525,0.03976966,98.29153588],[4.53739566,0.03977142,98.29173072],[4.53739607,0.03977318,98.29192653],[4.53739648,0.03977494,98.29212332],[4.53739689,0.03977669,98.29232107],[4.5373973,0.03977845,98.29251979],[4.5373977,0.03978021,98.29271947],[4.53739811,0.03978196,98.29292012],[4.53739852,0.03978372,98.29312172],[4.53739893,0.03978548,98.29332427],[4.53739934,0.03978724,98.29352777],[4.53739975,0.03978899,98.29373222],[4.53740016,0.03979075,98.29393762],[4.53740056,0.03979251,98.29414395],[4.53740097,0.03979427,98.29435123],[4.53740138,0.03979602,98.29455944],[4.53740179,0.03979778,98.29476857],[4.5374022,0.03979954,98.29497864],[4.5374026,0.03980129,98.29518963],[4.53740301,0.03980305,98.29540155],[4.53740342,0.03980481,98.29561438],[4.53740383,0.03980657,98.29582813],[4.53740423,0.03980832,98.29604279],[4.53740464,0.03981008,98.29625836],[4.53740505,0.03981184,98.29647484],[4.53740546,0.0398136,98.29669222],[4.53740586,0.03981535,98.2969105],[4.53740627,0.03981711,98.29712968],[4.53740668,0.03981887,98.29734975],[4.53740709,0.03982063,98.29757071],[4.53740749,0.03982238,98.29779256],[4.5374079,0.03982414,98.29801529],[4.53740831,0.0398259,98.2982389],[4.53740871,0.03982766,98.2984634],[4.53740912,0.03982941,98.29868876],[4.53740953,0.03983117,98.298915],[4.53740993,0.03983293,98.29914211],[4.53741034,0.03983469,98.29937008],[4.53741075,0.03983644,98.29959892],[4.53741115,0.0398382,98.29982861],[4.53741156,0.03983996,98.30005916],[4.53741197,0.03984172,98.30029057],[4.53741237,0.03984347,98.30052282],[4.53741278,0.03984523,98.30075592],[4.53741318,0.03984699,98.30098987],[4.53741359,0.03984875,98.30122465],[4.53741399,0.03985051,98.30146028],[4.5374144,0.03985226,98.30169673],[4.53741481,0.03985402,98.30193402],[4.53741521,0.03985578,98.30217214],[4.53741562,0.03985754,98.30241108],[4.53741602,0.03985929,98.30265085],[4.53741643,0.03986105,98.30289143],[4.53741683,0.03986281,98.30313283],[4.53741724,0.03986457,98.30337505],[4.53741764,0.03986633,98.30361807],[4.53741804,0.03986808,98.3038619],[4.53741845,0.03986984,98.30410653],[4.53741885,0.0398716,98.30435197],[4.53741926,0.03987336,98.3045982],[4.53741966,0.03987512,98.30484523],[4.53742007,0.03987688,98.30509305],[4.53742047,0.03987863,98.30534165],[4.53742087,0.03988039,98.30559105],[4.53742128,0.03988215,98.30584122],[4.53742168,0.03988391,98.30609218],[4.53742208,0.03988567,98.30634391],[4.53742249,0.03988742,98.30659641],[4.53742289,0.03988918,98.30684969],[4.53742329,0.03989094,98.30710373],[4.5374237,0.0398927,98.30735853],[4.5374241,0.03989446,98.3076141],[4.5374245,0.03989622,98.30787043],[4.53742491,0.03989797,98.30812751],[4.53742531,0.03989973,98.30838534],[4.53742571,0.03990149,98.30864393],[4.53742611,0.03990325,98.30890327],[4.53742651,0.03990501,98.30916337],[4.53742692,0.03990677,98.30942424],[4.53742732,0.03990853,98.30968587],[4.53742772,0.03991028,98.30994826],[4.53742812,0.03991204,98.31021142],[4.53742852,0.0399138,98.31047536],[4.53742892,0.03991556,98.31074006],[4.53742933,0.03991732,98.31100555],[4.53742973,0.03991908,98.31127181],[4.53743013,0.03992084,98.31153886],[4.53743053,0.0399226,98.31180668],[4.53743093,0.03992435,98.3120753],[4.53743133,0.03992611,98.3123447],[4.53743173,0.03992787,98.3126149],[4.53743213,0.03992963,98.31288589],[4.53743253,0.03993139,98.31315767],[4.53743293,0.03993315,98.31343026],[4.53743333,0.03993491,98.31370365],[4.53743373,0.03993667,98.31397784],[4.53743413,0.03993843,98.31425283],[4.53743453,0.03994018,98.31452864],[4.53743493,0.03994194,98.31480526],[4.53743533,0.0399437,98.31508269],[4.53743573,0.03994546,98.31536094],[4.53743613,0.03994722,98.31564001],[4.53743653,0.03994898,98.3159199],[4.53743693,0.03995074,98.31620061],[4.53743733,0.0399525,98.31648215],[4.53743773,0.03995426,98.31676452],[4.53743813,0.03995602,98.31704772],[4.53743853,0.03995778,98.31733176],[4.53743892,0.03995953,98.31761663],[4.53743932,0.03996129,98.31790234],[4.53743972,0.03996305,98.3181889],[4.53744012,0.03996481,98.3184763],[4.53744052,0.03996657,98.31876454],[4.53744092,0.03996833,98.31905364],[4.53744131,0.03997009,98.31934358],[4.53744171,0.03997185,98.31963438],[4.53744211,0.03997361,98.31992604],[4.53744251,0.03997537,98.32021856],[4.53744291,0.03997713,98.32051194],[4.5374433,0.03997889,98.32080618],[4.5374437,0.03998065,98.32110129],[4.5374441,0.03998241,98.32139727],[4.5374445,0.03998417,98.32169413],[4.53744489,0.03998593,98.32199185],[4.53744529,0.03998769,98.32229046],[4.53744569,0.03998944,98.32258994],[4.53744609,0.0399912,98.32289031],[4.53744648,0.03999296,98.32319156],[4.53744688,0.03999472,98.32349369],[4.53744728,0.03999648,98.32379672],[4.53744767,0.03999824,98.32410063],[4.53744807,0.04,98.32440544],[4.53744847,0.04000176,98.32471114],[4.53744886,0.04000352,98.32501773],[4.53744926,0.04000528,98.32532522],[4.53744966,0.04000704,98.32563362],[4.53745005,0.0400088,98.32594291],[4.53745045,0.04001056,98.3262531],[4.53745084,0.04001232,98.3265642],[4.53745124,0.04001408,98.32687621],[4.53745164,0.04001584,98.32718912],[4.53745203,0.0400176,98.32750295],[4.53745243,0.04001936,98.32781768],[4.53745282,0.04002112,98.32813333],[4.53745322,0.04002288,98.3284499],[4.53745361,0.04002464,98.32876738],[4.53745401,0.0400264,98.32908579],[4.53745441,0.04002816,98.32940511],[4.5374548,0.04002992,98.32972536],[4.5374552,0.04003168,98.33004653],[4.53745559,0.04003344,98.33036863],[4.53745599,0.0400352,98.33069166],[4.53745638,0.04003696,98.33101561],[4.53745678,0.04003872,98.33134051],[4.53745717,0.04004048,98.33166633],[4.53745757,0.04004224,98.33199309],[4.53745796,0.040044,98.33232079],[4.53745836,0.04004576,98.33264943],[4.53745875,0.04004752,98.332979],[4.53745915,0.04004928,98.33330953],[4.53745954,0.04005104,98.33364099],[4.53745994,0.0400528,98.33397341],[4.53746033,0.04005456,98.33430677],[4.53746072,0.04005632,98.33464108],[4.53746112,0.04005808,98.33497635],[4.53746151,0.04005984,98.33531257],[4.53746191,0.0400616,98.33564974],[4.5374623,0.04006336,98.33598788],[4.5374627,0.04006512,98.33632697],[4.53746309,0.04006688,98.33666702],[4.53746348,0.04006864,98.33700804],[4.53746388,0.0400704,98.33735002],[4.53746427,0.04007216,98.33769297],[4.53746467,0.04007392,98.33803689],[4.53746506,0.04007568,98.33838178],[4.53746545,0.04007744,98.33872764],[4.53746585,0.0400792,98.33907447],[4.53746624,0.04008096,98.33942228],[4.53746664,0.04008272,98.33977106],[4.53746703,0.04008448,98.34012083],[4.53746742,0.04008624,98.34047158],[4.53746782,0.040088,98.34082331],[4.53746821,0.04008976,98.34117602],[4.5374686,0.04009152,98.34152972],[4.537469,0.04009328,98.34188441],[4.53746939,0.04009504,98.34224009],[4.53746978,0.0400968,98.34259676],[4.53747018,0.04009856,98.34295442],[4.53747057,0.04010032,98.34331308],[4.53747096,0.04010208,98.34367273],[4.53747136,0.04010384,98.34403339],[4.53747175,0.04010561,98.34439504],[4.53747214,0.04010737,98.3447577],[4.53747254,0.04010913,98.34512136],[4.53747293,0.04011089,98.34548603],[4.53747332,0.04011265,98.3458517],[4.53747372,0.04011441,98.34621838],[4.53747411,0.04011617,98.34658608],[4.5374745,0.04011793,98.34695478],[4.53747489,0.04011969,98.3473245],[4.53747529,0.04012145,98.34769524],[4.53747568,0.04012321,98.348067],[4.53747607,0.04012497,98.34843977],[4.53747647,0.04012673,98.34881357],[4.53747686,0.04012849,98.34918839],[4.53747725,0.04013025,98.34956423],[4.53747764,0.04013201,98.3499411],[4.53747804,0.04013377,98.350319],[4.53747843,0.04013553,98.35069793],[4.53747882,0.04013729,98.35107789],[4.53747922,0.04013905,98.35145888],[4.53747961,0.04014081,98.35184091],[4.53748,0.04014257,98.35222397],[4.53748039,0.04014433,98.35260808],[4.53748079,0.04014609,98.35299322],[4.53748118,0.04014785,98.3533794],[4.53748157,0.04014961,98.35376663],[4.53748196,0.04015137,98.35415491],[4.53748236,0.04015314,98.35454423],[4.53748275,0.0401549,98.3549346],[4.53748314,0.04015666,98.35532602],[4.53748353,0.04015842,98.35571849],[4.53748393,0.04016018,98.35611202],[4.53748432,0.04016194,98.3565066],[4.53748471,0.0401637,98.35690223],[4.5374851,0.04016546,98.35729893],[4.5374855,0.04016722,98.35769669],[4.53748589,0.04016898,98.3580955],[4.53748628,0.04017074,98.35849539],[4.53748667,0.0401725,98.35889633],[4.53748707,0.04017426,98.35929835],[4.53748746,0.04017602,98.35970143],[4.53748785,0.04017778,98.36010558],[4.53748824,0.04017954,98.36051081],[4.53748864,0.0401813,98.36091711],[4.53748903,0.04018306,98.36132448],[4.53748942,0.04018482,98.36173293],[4.53745792,0.04019199,98.26618392]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1003400","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1,"sOffset":120.7368344413}},{"geometry":{"coordinates":[[[4.53748942,0.04018482,98.36173293],[4.53748903,0.04018306,98.36132448],[4.53748864,0.0401813,98.36091711],[4.53748824,0.04017954,98.36051081],[4.53748785,0.04017778,98.36010558],[4.53748746,0.04017602,98.35970143],[4.53748707,0.04017426,98.35929835],[4.53748667,0.0401725,98.35889633],[4.53748628,0.04017074,98.35849539],[4.53748589,0.04016898,98.3580955],[4.5374855,0.04016722,98.35769669],[4.5374851,0.04016546,98.35729893],[4.53748471,0.0401637,98.35690223],[4.53748432,0.04016194,98.3565066],[4.53748393,0.04016018,98.35611202],[4.53748353,0.04015842,98.35571849],[4.53748314,0.04015666,98.35532602],[4.53748275,0.0401549,98.3549346],[4.53748236,0.04015314,98.35454423],[4.53748196,0.04015137,98.35415491],[4.53748157,0.04014961,98.35376663],[4.53748118,0.04014785,98.3533794],[4.53748079,0.04014609,98.35299322],[4.53748039,0.04014433,98.35260808],[4.53748,0.04014257,98.35222397],[4.53747961,0.04014081,98.35184091],[4.53747922,0.04013905,98.35145888],[4.53747882,0.04013729,98.35107789],[4.53747843,0.04013553,98.35069793],[4.53747804,0.04013377,98.350319],[4.53747764,0.04013201,98.3499411],[4.53747725,0.04013025,98.34956423],[4.53747686,0.04012849,98.34918839],[4.53747647,0.04012673,98.34881357],[4.53747607,0.04012497,98.34843977],[4.53747568,0.04012321,98.348067],[4.53747529,0.04012145,98.34769524],[4.53747489,0.04011969,98.3473245],[4.5374745,0.04011793,98.34695478],[4.53747411,0.04011617,98.34658608],[4.53747372,0.04011441,98.34621838],[4.53747332,0.04011265,98.3458517],[4.53747293,0.04011089,98.34548603],[4.53747254,0.04010913,98.34512136],[4.53747214,0.04010737,98.3447577],[4.53747175,0.04010561,98.34439504],[4.53747136,0.04010384,98.34403339],[4.53747096,0.04010208,98.34367273],[4.53747057,0.04010032,98.34331308],[4.53747018,0.04009856,98.34295442],[4.53746978,0.0400968,98.34259676],[4.53746939,0.04009504,98.34224009],[4.537469,0.04009328,98.34188441],[4.5374686,0.04009152,98.34152972],[4.53746821,0.04008976,98.34117602],[4.53746782,0.040088,98.34082331],[4.53746742,0.04008624,98.34047158],[4.53746703,0.04008448,98.34012083],[4.53746664,0.04008272,98.33977106],[4.53746624,0.04008096,98.33942228],[4.53746585,0.0400792,98.33907447],[4.53746545,0.04007744,98.33872764],[4.53746506,0.04007568,98.33838178],[4.53746467,0.04007392,98.33803689],[4.53746427,0.04007216,98.33769297],[4.53746388,0.0400704,98.33735002],[4.53746348,0.04006864,98.33700804],[4.53746309,0.04006688,98.33666702],[4.5374627,0.04006512,98.33632697],[4.5374623,0.04006336,98.33598788],[4.53746191,0.0400616,98.33564974],[4.53746151,0.04005984,98.33531257],[4.53746112,0.04005808,98.33497635],[4.53746072,0.04005632,98.33464108],[4.53746033,0.04005456,98.33430677],[4.53745994,0.0400528,98.33397341],[4.53745954,0.04005104,98.33364099],[4.53745915,0.04004928,98.33330953],[4.53745875,0.04004752,98.332979],[4.53745836,0.04004576,98.33264943],[4.53745796,0.040044,98.33232079],[4.53745757,0.04004224,98.33199309],[4.53745717,0.04004048,98.33166633],[4.53745678,0.04003872,98.33134051],[4.53745638,0.04003696,98.33101561],[4.53745599,0.0400352,98.33069166],[4.53745559,0.04003344,98.33036863],[4.5374552,0.04003168,98.33004653],[4.5374548,0.04002992,98.32972536],[4.53745441,0.04002816,98.32940511],[4.53745401,0.0400264,98.32908579],[4.53745361,0.04002464,98.32876738],[4.53745322,0.04002288,98.3284499],[4.53745282,0.04002112,98.32813333],[4.53745243,0.04001936,98.32781768],[4.53745203,0.0400176,98.32750295],[4.53745164,0.04001584,98.32718912],[4.53745124,0.04001408,98.32687621],[4.53745084,0.04001232,98.3265642],[4.53745045,0.04001056,98.3262531],[4.53745005,0.0400088,98.32594291],[4.53744966,0.04000704,98.32563362],[4.53744926,0.04000528,98.32532522],[4.53744886,0.04000352,98.32501773],[4.53744847,0.04000176,98.32471114],[4.53744807,0.04,98.32440544],[4.53744767,0.03999824,98.32410063],[4.53744728,0.03999648,98.32379672],[4.53744688,0.03999472,98.32349369],[4.53744648,0.03999296,98.32319156],[4.53744609,0.0399912,98.32289031],[4.53744569,0.03998944,98.32258994],[4.53744529,0.03998769,98.32229046],[4.53744489,0.03998593,98.32199185],[4.5374445,0.03998417,98.32169413],[4.5374441,0.03998241,98.32139727],[4.5374437,0.03998065,98.32110129],[4.5374433,0.03997889,98.32080618],[4.53744291,0.03997713,98.32051194],[4.53744251,0.03997537,98.32021856],[4.53744211,0.03997361,98.31992604],[4.53744171,0.03997185,98.31963438],[4.53744131,0.03997009,98.31934358],[4.53744092,0.03996833,98.31905364],[4.53744052,0.03996657,98.31876454],[4.53744012,0.03996481,98.3184763],[4.53743972,0.03996305,98.3181889],[4.53743932,0.03996129,98.31790234],[4.53743892,0.03995953,98.31761663],[4.53743853,0.03995778,98.31733176],[4.53743813,0.03995602,98.31704772],[4.53743773,0.03995426,98.31676452],[4.53743733,0.0399525,98.31648215],[4.53743693,0.03995074,98.31620061],[4.53743653,0.03994898,98.3159199],[4.53743613,0.03994722,98.31564001],[4.53743573,0.03994546,98.31536094],[4.53743533,0.0399437,98.31508269],[4.53743493,0.03994194,98.31480526],[4.53743453,0.03994018,98.31452864],[4.53743413,0.03993843,98.31425283],[4.53743373,0.03993667,98.31397784],[4.53743333,0.03993491,98.31370365],[4.53743293,0.03993315,98.31343026],[4.53743253,0.03993139,98.31315767],[4.53743213,0.03992963,98.31288589],[4.53743173,0.03992787,98.3126149],[4.53743133,0.03992611,98.3123447],[4.53743093,0.03992435,98.3120753],[4.53743053,0.0399226,98.31180668],[4.53743013,0.03992084,98.31153886],[4.53742973,0.03991908,98.31127181],[4.53742933,0.03991732,98.31100555],[4.53742892,0.03991556,98.31074006],[4.53742852,0.0399138,98.31047536],[4.53742812,0.03991204,98.31021142],[4.53742772,0.03991028,98.30994826],[4.53742732,0.03990853,98.30968587],[4.53742692,0.03990677,98.30942424],[4.53742651,0.03990501,98.30916337],[4.53742611,0.03990325,98.30890327],[4.53742571,0.03990149,98.30864393],[4.53742531,0.03989973,98.30838534],[4.53742491,0.03989797,98.30812751],[4.5374245,0.03989622,98.30787043],[4.5374241,0.03989446,98.3076141],[4.5374237,0.0398927,98.30735853],[4.53742329,0.03989094,98.30710373],[4.53742289,0.03988918,98.30684969],[4.53742249,0.03988742,98.30659641],[4.53742208,0.03988567,98.30634391],[4.53742168,0.03988391,98.30609218],[4.53742128,0.03988215,98.30584122],[4.53742087,0.03988039,98.30559105],[4.53742047,0.03987863,98.30534165],[4.53742007,0.03987688,98.30509305],[4.53741966,0.03987512,98.30484523],[4.53741926,0.03987336,98.3045982],[4.53741885,0.0398716,98.30435197],[4.53741845,0.03986984,98.30410653],[4.53741804,0.03986808,98.3038619],[4.53741764,0.03986633,98.30361807],[4.53741724,0.03986457,98.30337505],[4.53741683,0.03986281,98.30313283],[4.53741643,0.03986105,98.30289143],[4.53741602,0.03985929,98.30265085],[4.53741562,0.03985754,98.30241108],[4.53741521,0.03985578,98.30217214],[4.53741481,0.03985402,98.30193402],[4.5374144,0.03985226,98.30169673],[4.53741399,0.03985051,98.30146028],[4.53741359,0.03984875,98.30122465],[4.53741318,0.03984699,98.30098987],[4.53741278,0.03984523,98.30075592],[4.53741237,0.03984347,98.30052282],[4.53741197,0.03984172,98.30029057],[4.53741156,0.03983996,98.30005916],[4.53741115,0.0398382,98.29982861],[4.53741075,0.03983644,98.29959892],[4.53741034,0.03983469,98.29937008],[4.53740993,0.03983293,98.29914211],[4.53740953,0.03983117,98.298915],[4.53740912,0.03982941,98.29868876],[4.53740871,0.03982766,98.2984634],[4.53740831,0.0398259,98.2982389],[4.5374079,0.03982414,98.29801529],[4.53740749,0.03982238,98.29779256],[4.53740709,0.03982063,98.29757071],[4.53740668,0.03981887,98.29734975],[4.53740627,0.03981711,98.29712968],[4.53740586,0.03981535,98.2969105],[4.53740546,0.0398136,98.29669222],[4.53740505,0.03981184,98.29647484],[4.53740464,0.03981008,98.29625836],[4.53740423,0.03980832,98.29604279],[4.53740383,0.03980657,98.29582813],[4.53740342,0.03980481,98.29561438],[4.53740301,0.03980305,98.29540155],[4.5374026,0.03980129,98.29518963],[4.5374022,0.03979954,98.29497864],[4.53740179,0.03979778,98.29476857],[4.53740138,0.03979602,98.29455944],[4.53740097,0.03979427,98.29435123],[4.53740056,0.03979251,98.29414395],[4.53740016,0.03979075,98.29393762],[4.53739975,0.03978899,98.29373222],[4.53739934,0.03978724,98.29352777],[4.53739893,0.03978548,98.29332427],[4.53739852,0.03978372,98.29312172],[4.53739811,0.03978196,98.29292012],[4.5373977,0.03978021,98.29271947],[4.5373973,0.03977845,98.29251979],[4.53739689,0.03977669,98.29232107],[4.53739648,0.03977494,98.29212332],[4.53739607,0.03977318,98.29192653],[4.53739566,0.03977142,98.29173072],[4.53739525,0.03976966,98.29153588],[4.53739484,0.03976791,98.29134202],[4.53739443,0.03976615,98.29114915],[4.53739402,0.03976439,98.29095725],[4.53739361,0.03976264,98.29076635],[4.53739321,0.03976088,98.29057644],[4.5373928,0.03975912,98.29038752],[4.53739239,0.03975737,98.2901996],[4.53739198,0.03975561,98.29001268],[4.53739157,0.03975385,98.28982677],[4.53739116,0.03975209,98.28964186],[4.53739075,0.03975034,98.28945797],[4.53739034,0.03974858,98.28927508],[4.53738993,0.03974682,98.28909322],[4.53738952,0.03974507,98.28891237],[4.53738911,0.03974331,98.28873255],[4.5373887,0.03974155,98.28855375],[4.53738829,0.0397398,98.28837598],[4.53738788,0.03973804,98.28819925],[4.53738747,0.03973628,98.28802355],[4.53738706,0.03973452,98.28784889],[4.53738665,0.03973277,98.28767527],[4.53738624,0.03973101,98.2875027],[4.53738583,0.03972925,98.28733117],[4.53738542,0.0397275,98.2871607],[4.53738501,0.03972574,98.28699128],[4.5373846,0.039724,98.28682292],[4.53738419,0.03972224,98.28665563],[4.53738378,0.03972049,98.28648939],[4.53738337,0.03971873,98.28632423],[4.53738296,0.03971697,98.28616013],[4.53738255,0.03971522,98.28599711],[4.53738214,0.03971346,98.28583516],[4.53738173,0.0397117,98.2856743],[4.53738132,0.03970994,98.28551451],[4.53738091,0.03970819,98.28535582],[4.5373805,0.03970643,98.28519821],[4.53738009,0.03970467,98.2850417],[4.53737968,0.03970292,98.28488628],[4.53737927,0.03970116,98.28473197],[4.53737886,0.0396994,98.28457875],[4.53737845,0.03969765,98.28442664],[4.53737804,0.03969589,98.28427564],[4.53737763,0.03969413,98.28412575],[4.53737722,0.03969238,98.28397698],[4.53737681,0.03969062,98.28382932],[4.5373764,0.03968886,98.28368279],[4.53737599,0.03968711,98.28353739],[4.53737558,0.03968535,98.28339312],[4.53737517,0.03968359,98.28324998],[4.53737476,0.03968184,98.28310799],[4.53737435,0.03968008,98.28296714],[4.53737394,0.03967832,98.28282743],[4.53737353,0.03967657,98.28268889],[4.53737312,0.03967481,98.28255149],[4.53737271,0.03967305,98.28241526],[4.5373723,0.0396713,98.2822802],[4.53737189,0.03966954,98.28214631],[4.53737148,0.03966778,98.28201359],[4.53737107,0.03966603,98.28188204],[4.53737066,0.03966427,98.28175168],[4.53737025,0.03966251,98.28162251],[4.53736984,0.03966076,98.28149453],[4.53736943,0.039659,98.28136774],[4.53736902,0.03965724,98.28124215],[4.53736861,0.03965549,98.28111777],[4.5373682,0.03965373,98.28099459],[4.53736779,0.03965197,98.28087262],[4.53736738,0.03965022,98.28075187],[4.53736697,0.03964846,98.28063234],[4.53736656,0.0396467,98.28051404],[4.53736615,0.03964495,98.28039696],[4.53736574,0.03964319,98.28028111],[4.53736533,0.03964143,98.28016651],[4.53736492,0.03963968,98.28005314],[4.53736451,0.03963792,98.27994102],[4.5373641,0.03963616,98.27983014],[4.53736369,0.03963441,98.27972052],[4.53736328,0.03963265,98.27961216],[4.53736287,0.03963089,98.27950506],[4.53736246,0.03962914,98.27939923],[4.53736206,0.03962738,98.27929466],[4.53736165,0.03962562,98.27919137],[4.53736124,0.03962386,98.27908936],[4.53736083,0.03962211,98.27898863],[4.53736042,0.03962035,98.27888919],[4.53736001,0.03961859,98.27879104],[4.5373596,0.03961684,98.27869418],[4.53735919,0.03961508,98.27859861],[4.53735879,0.03961332,98.27850431],[4.53735838,0.03961157,98.27841128],[4.53735797,0.03960981,98.27831948],[4.53735756,0.03960805,98.27822892],[4.53735715,0.03960629,98.27813958],[4.53735674,0.03960454,98.27805144],[4.53735634,0.03960278,98.2779645],[4.53735593,0.03960102,98.27787873],[4.53735552,0.03959927,98.27779413],[4.53735511,0.03959751,98.27771067],[4.5373547,0.03959575,98.27762835],[4.53735429,0.039594,98.27754716],[4.53735389,0.03959224,98.27746707],[4.53735348,0.03959048,98.27738808],[4.53735307,0.03958872,98.27731017],[4.53735266,0.03958697,98.27723333],[4.53735226,0.03958521,98.27715754],[4.53735185,0.03958345,98.27708279],[4.53735144,0.0395817,98.27700907],[4.53735103,0.03957994,98.27693637],[4.53735062,0.03957818,98.27686466],[4.53735022,0.03957642,98.27679394],[4.53734981,0.03957467,98.27672419],[4.5373494,0.03957291,98.2766554],[4.53734899,0.03957115,98.27658755],[4.53734858,0.0395694,98.27652063],[4.53734818,0.03956764,98.27645464],[4.53734777,0.03956588,98.27638954],[4.53734736,0.03956412,98.27632534],[4.53734695,0.03956237,98.27626201],[4.53734654,0.03956061,98.27619954],[4.53734613,0.03955885,98.27613793],[4.53734573,0.0395571,98.27607714],[4.53734532,0.03955534,98.27601718],[4.53734491,0.03955358,98.27595803],[4.5373445,0.03955183,98.27589967],[4.53734409,0.03955007,98.2758421],[4.53734368,0.03954831,98.27578529],[4.53734328,0.03954655,98.27572923],[4.53734287,0.0395448,98.27567391],[4.53734246,0.03954304,98.27561932],[4.53734205,0.03954128,98.27556544],[4.53734164,0.03953953,98.27551226],[4.53734123,0.03953777,98.27545977],[4.53734082,0.03953601,98.27540794],[4.53734041,0.03953426,98.27535677],[4.53734,0.0395325,98.27530625],[4.53733959,0.03953074,98.27525636],[4.53733918,0.03952899,98.27520709],[4.53733877,0.03952723,98.27515841],[4.53733836,0.03952547,98.27511033],[4.53733795,0.03952372,98.27506283],[4.53733754,0.03952196,98.27501588],[4.53733713,0.0395202,98.27496949],[4.53733672,0.03951845,98.27492363],[4.53733631,0.03951669,98.27487829],[4.5373359,0.03951494,98.27483346],[4.53733549,0.03951318,98.27478912],[4.53733508,0.03951142,98.27474527],[4.53733467,0.03950967,98.27470188],[4.53733426,0.03950791,98.27465894],[4.53733385,0.03950615,98.27461645],[4.53733344,0.0395044,98.27457438],[4.53733302,0.03950264,98.27453272],[4.53733261,0.03950089,98.27449147],[4.5373322,0.03949913,98.2744506],[4.53733179,0.03949737,98.2744101],[4.53733138,0.03949562,98.27436996],[4.53733096,0.03949386,98.27433016],[4.53733055,0.03949211,98.2742907],[4.53733014,0.03949035,98.27425156],[4.53732972,0.03948859,98.27421272],[4.53732931,0.03948684,98.27417417],[4.5373289,0.03948508,98.27413589],[4.53732848,0.03948333,98.27409789],[4.53732807,0.03948157,98.27406013],[4.53732765,0.03947982,98.27402261],[4.53732724,0.03947806,98.27398531],[4.53732683,0.03947631,98.27394822],[4.53732641,0.03947455,98.27391133],[4.537326,0.0394728,98.27387462],[4.53732558,0.03947104,98.27383809],[4.53732516,0.03946929,98.2738017],[4.53732475,0.03946753,98.27376548],[4.53732433,0.03946578,98.27372943],[4.53732392,0.03946402,98.27369357],[4.5373235,0.03946227,98.27365789],[4.53732308,0.03946051,98.27362242],[4.53732267,0.03945876,98.27358717],[4.53732225,0.039457,98.27355214],[4.53732183,0.03945525,98.27351735],[4.53732141,0.03945349,98.27348282],[4.537321,0.03945174,98.27344854],[4.53732058,0.03944998,98.27341454],[4.53732016,0.03944823,98.27338082],[4.53731974,0.03944647,98.27334739],[4.53731932,0.03944472,98.27331428],[4.5373189,0.03944296,98.27328148],[4.53731849,0.03944121,98.27324901],[4.53731807,0.03943946,98.27321688],[4.53731765,0.0394377,98.2731851],[4.53731723,0.03943595,98.27315368],[4.53731681,0.03943419,98.27312264],[4.53731639,0.03943244,98.27309199],[4.53731597,0.03943069,98.27306173],[4.53731555,0.03942893,98.27303188],[4.53731513,0.03942718,98.27300245],[4.53731471,0.03942542,98.27297345],[4.53731429,0.03942367,98.27294489],[4.53731387,0.03942192,98.27291679],[4.53731345,0.03942016,98.27288915],[4.53731303,0.03941841,98.27286198],[4.5373126,0.03941665,98.27283531],[4.53731218,0.0394149,98.27280913],[4.53731176,0.03941315,98.27278346],[4.53731134,0.03941139,98.27275831],[4.53731092,0.03940964,98.27273369],[4.5373105,0.03940789,98.27270962],[4.53731008,0.03940613,98.2726861],[4.53730965,0.03940438,98.27266315],[4.53730923,0.03940263,98.27264078],[4.53730881,0.03940087,98.27261899],[4.53730839,0.03939912,98.2725978],[4.53730797,0.03939737,98.27257722],[4.53730754,0.03939561,98.27255727],[4.53730712,0.03939386,98.27253795],[4.5373067,0.03939211,98.27251927],[4.53730628,0.03939035,98.27250125],[4.53730586,0.0393886,98.27248389],[4.53730543,0.03938684,98.27246721],[4.53730501,0.03938509,98.27245123],[4.53730459,0.03938334,98.27243594],[4.53730417,0.03938158,98.27242136],[4.53730374,0.03937983,98.27240751],[4.53730332,0.03937808,98.27239439],[4.5373029,0.03937633,98.27238201],[4.53730247,0.03937457,98.27237039],[4.53730205,0.03937282,98.27235954],[4.53730163,0.03937107,98.27234947],[4.53730121,0.03936931,98.27234018],[4.53730078,0.03936756,98.2723317],[4.53730036,0.03936581,98.27232403],[4.53729994,0.03936405,98.27231718],[4.53729952,0.0393623,98.27231117],[4.53729909,0.03936055,98.272306],[4.53729867,0.03935879,98.27230169],[4.53729825,0.03935704,98.27229824],[4.53729782,0.03935529,98.27229568],[4.5372974,0.03935354,98.272294],[4.53729698,0.03935178,98.27229322],[4.53729656,0.03935003,98.27229336],[4.53729613,0.03934828,98.27229442],[4.53729571,0.03934652,98.27229641],[4.53729529,0.03934477,98.27229935],[4.53729487,0.03934302,98.27230324],[4.53729444,0.03934126,98.2723081],[4.53729402,0.03933951,98.27231394],[4.5372936,0.03933776,98.27232077],[4.53729318,0.039336,98.2723286],[4.53729276,0.03933425,98.27233744],[4.53729233,0.0393325,98.2723473],[4.53729191,0.03933074,98.2723582],[4.53729149,0.03932899,98.27237014],[4.53729107,0.03932724,98.27238313],[4.53729065,0.03932548,98.27239719],[4.53729022,0.03932373,98.27241233],[4.5372898,0.03932198,98.27242856],[4.53728938,0.03932022,98.27244589],[4.53728896,0.03931847,98.27246433],[4.53728854,0.03931672,98.27248388],[4.53728812,0.03931496,98.27250457],[4.5372877,0.03931321,98.27252641],[4.53728727,0.03931146,98.2725494],[4.53728685,0.0393097,98.27257355],[4.53728643,0.03930795,98.27259888],[4.53728601,0.03930619,98.27262539],[4.53728559,0.03930444,98.27265311],[4.53728517,0.03930269,98.27268203],[4.53728475,0.03930093,98.27271217],[4.53728433,0.03929918,98.27274355],[4.53728391,0.03929743,98.27277614],[4.53728349,0.03929567,98.27280996],[4.53728307,0.03929392,98.27284498],[4.53728265,0.03929216,98.2728812],[4.53728223,0.03929041,98.27291861],[4.53728181,0.03928866,98.27295719],[4.53728139,0.0392869,98.27299694],[4.53728098,0.03928515,98.27303784],[4.53728056,0.03928339,98.27307989],[4.53728014,0.03928164,98.27312308],[4.53727972,0.03927989,98.27316739],[4.5372793,0.03927813,98.27321282],[4.53727888,0.03927638,98.27325936],[4.53727846,0.03927462,98.27330699],[4.53727805,0.03927287,98.2733557],[4.53727763,0.03927112,98.2734055],[4.53727721,0.03926936,98.27345635],[4.53727679,0.03926761,98.27350827],[4.53727637,0.03926585,98.27356122],[4.53727596,0.0392641,98.27361522],[4.53727554,0.03926234,98.27367024],[4.53727512,0.03926059,98.27372627],[4.5372747,0.03925884,98.27378331],[4.53727429,0.03925708,98.27384135],[4.53727387,0.03925533,98.27390037],[4.53727345,0.03925357,98.27396036],[4.53727303,0.03925182,98.27402132],[4.53727262,0.03925006,98.27408324],[4.5372722,0.03924831,98.2741461],[4.53727178,0.03924655,98.27420989],[4.53727137,0.0392448,98.27427461],[4.53727095,0.03924305,98.27434025],[4.53727053,0.03924129,98.27440679],[4.53727011,0.03923954,98.27447422],[4.5372697,0.03923778,98.27454254],[4.53726928,0.03923603,98.27461174],[4.53726886,0.03923427,98.2746818],[4.53726845,0.03923252,98.27475272],[4.53726803,0.03923076,98.27482448],[4.53726762,0.03922901,98.27489708],[4.5372672,0.03922725,98.2749705],[4.53726678,0.0392255,98.27504474],[4.53726637,0.03922375,98.27511978],[4.53726595,0.03922199,98.27519562],[4.53726553,0.03922024,98.27527224],[4.53726512,0.03921848,98.27534964],[4.5372647,0.03921673,98.27542781],[4.53726428,0.03921497,98.27550673],[4.53726387,0.03921322,98.27558639],[4.53726345,0.03921146,98.2756668],[4.53726304,0.03920971,98.27574792],[4.53726262,0.03920795,98.27582977],[4.5372622,0.0392062,98.27591232],[4.53726179,0.03920445,98.27599557],[4.53726137,0.03920269,98.2760795],[4.53726095,0.03920094,98.27616411],[4.53726054,0.03919918,98.27624939],[4.53726012,0.03919743,98.27633532],[4.5372597,0.03919567,98.27642191],[4.53725929,0.03919392,98.27650912],[4.53725887,0.03919216,98.27659697],[4.53725846,0.03919041,98.27668543],[4.53725804,0.03918865,98.2767745],[4.53725762,0.0391869,98.27686417],[4.53725721,0.03918515,98.27695443],[4.53725679,0.03918339,98.27704526],[4.53725637,0.03918164,98.27713667],[4.53725596,0.03917988,98.27722863],[4.53725554,0.03917813,98.27732114],[4.53725512,0.03917637,98.27741419],[4.53725471,0.03917462,98.27750777],[4.53725429,0.03917286,98.27760186],[4.53725387,0.03917111,98.27769647],[4.53725346,0.03916936,98.27779158],[4.53725304,0.0391676,98.27788718],[4.53725262,0.03916585,98.27798325],[4.53725221,0.03916409,98.2780798],[4.53725179,0.03916234,98.27817681],[4.53725137,0.03916058,98.27827427],[4.53725095,0.03915883,98.27837217],[4.53725054,0.03915708,98.27847051],[4.53725012,0.03915532,98.27856926],[4.5372497,0.03915357,98.27866843],[4.53724928,0.03915181,98.27876801],[4.53724887,0.03915006,98.278868],[4.53724845,0.0391483,98.27896841],[4.53724803,0.03914655,98.27906924],[4.53724761,0.0391448,98.27917048],[4.53724719,0.03914304,98.27927216],[4.53724678,0.03914129,98.27937426],[4.53724636,0.03913953,98.27947679],[4.53724594,0.03913778,98.27957975],[4.53724552,0.03913603,98.27968315],[4.5372451,0.03913427,98.27978699],[4.53724468,0.03913252,98.27989127],[4.53724427,0.03913076,98.27999599],[4.53724385,0.03912901,98.28010115],[4.53724343,0.03912726,98.28020677],[4.53724301,0.0391255,98.28031284],[4.53724259,0.03912375,98.28041936],[4.53724217,0.03912199,98.28052633],[4.53724175,0.03912024,98.28063377],[4.53724133,0.03911848,98.28074167],[4.53724091,0.03911673,98.28085003],[4.5372405,0.03911498,98.28095887],[4.53724008,0.03911322,98.28106817],[4.53723966,0.03911147,98.28117794],[4.53723924,0.03910972,98.28128819],[4.53723882,0.03910796,98.28139892],[4.5372384,0.03910621,98.28151013],[4.53723798,0.03910445,98.28162182],[4.53723756,0.0391027,98.281734],[4.53723714,0.03910095,98.28184666],[4.53723672,0.03909919,98.28195982],[4.5372363,0.03909744,98.28207347],[4.53723588,0.03909568,98.28218762],[4.53723546,0.03909393,98.28230227],[4.53723504,0.03909218,98.28241742],[4.53723462,0.03909042,98.28253308],[4.5372342,0.03908867,98.28264924],[4.53723378,0.03908692,98.28276591],[4.53723336,0.03908516,98.2828831],[4.53723293,0.03908341,98.2830008],[4.53723251,0.03908165,98.28311902],[4.53723209,0.0390799,98.28323775],[4.53723167,0.03907815,98.28335702],[4.53723125,0.03907639,98.2834768],[4.53723083,0.03907464,98.28359712],[4.53723041,0.03907289,98.28371797],[4.53722999,0.03907113,98.28383935],[4.53722957,0.03906938,98.28396126],[4.53722915,0.03906763,98.28408372],[4.53722873,0.03906587,98.28420672],[4.5372283,0.03906412,98.28433026],[4.53722788,0.03906236,98.28445434],[4.53722746,0.03906061,98.28457898],[4.53722704,0.03905886,98.28470417],[4.53722662,0.0390571,98.28482991],[4.53722654,0.03905679,98.28485282],[4.53722947,0.03905608,98.29396748],[4.53722955,0.03905639,98.29394371],[4.53722997,0.03905815,98.29381326],[4.53723039,0.0390599,98.29368341],[4.53723081,0.03906166,98.29355416],[4.53723123,0.03906341,98.29342551],[4.53723165,0.03906516,98.29329745],[4.53723207,0.03906692,98.29316998],[4.53723249,0.03906867,98.29304311],[4.53723291,0.03907043,98.29291683],[4.53723332,0.03907218,98.29279114],[4.53723374,0.03907393,98.29266604],[4.53723416,0.03907569,98.29254151],[4.53723458,0.03907744,98.29241758],[4.537235,0.0390792,98.29229422],[4.53723542,0.03908095,98.29217145],[4.53723584,0.03908271,98.29204925],[4.53723626,0.03908446,98.29192763],[4.53723668,0.03908621,98.29180658],[4.5372371,0.03908797,98.2916861],[4.53723751,0.03908972,98.2915662],[4.53723793,0.03909148,98.29144686],[4.53723835,0.03909323,98.29132809],[4.53723877,0.03909498,98.29120989],[4.53723919,0.03909674,98.29109225],[4.53723961,0.03909849,98.29097517],[4.53724003,0.03910025,98.29085865],[4.53724044,0.039102,98.29074268],[4.53724086,0.03910376,98.29062728],[4.53724128,0.03910551,98.29051242],[4.5372417,0.03910726,98.29039812],[4.53724212,0.03910902,98.29028437],[4.53724254,0.03911077,98.29017117],[4.53724295,0.03911253,98.29005852],[4.53724337,0.03911428,98.28994641],[4.53724379,0.03911604,98.28983484],[4.53724421,0.03911779,98.28972381],[4.53724463,0.03911954,98.28961332],[4.53724504,0.0391213,98.28950338],[4.53724546,0.03912305,98.28939396],[4.53724588,0.03912481,98.28928508],[4.5372463,0.03912656,98.28917673],[4.53724671,0.03912832,98.28906891],[4.53724713,0.03913007,98.28896162],[4.53724755,0.03913183,98.28885486],[4.53724797,0.03913358,98.28874862],[4.53724838,0.03913533,98.2886429],[4.5372488,0.03913709,98.28853771],[4.53724922,0.03913884,98.28843303],[4.53724963,0.0391406,98.28832887],[4.53725005,0.03914235,98.28822523],[4.53725047,0.03914411,98.28812209],[4.53725089,0.03914586,98.28801947],[4.5372513,0.03914761,98.28791736],[4.53725172,0.03914937,98.28781576],[4.53725214,0.03915112,98.28771466],[4.53725255,0.03915288,98.28761407],[4.53725297,0.03915463,98.28751397],[4.53725339,0.03915639,98.28741439],[4.5372538,0.03915814,98.28731532],[4.53725422,0.0391599,98.28721677],[4.53725464,0.03916165,98.28711876],[4.53725505,0.0391634,98.28702129],[4.53725547,0.03916516,98.28692438],[4.53725589,0.03916691,98.28682804],[4.5372563,0.03916867,98.28673228],[4.53725672,0.03917042,98.28663711],[4.53725714,0.03917218,98.28654253],[4.53725755,0.03917393,98.28644857],[4.53725797,0.03917569,98.28635522],[4.53725839,0.03917744,98.28626251],[4.5372588,0.03917919,98.28617044],[4.53725922,0.03918095,98.28607902],[4.53725963,0.0391827,98.28598826],[4.53726005,0.03918446,98.28589818],[4.53726047,0.03918621,98.28580879],[4.53726088,0.03918797,98.28572011],[4.5372613,0.03918972,98.28563214],[4.53726172,0.03919148,98.28554492],[4.53726213,0.03919323,98.28545844],[4.53726255,0.03919499,98.28537273],[4.53726296,0.03919674,98.2852878],[4.53726338,0.03919849,98.28520367],[4.5372638,0.03920025,98.28512035],[4.53726421,0.039202,98.28503785],[4.53726463,0.03920376,98.2849562],[4.53726505,0.03920551,98.2848754],[4.53726546,0.03920727,98.28479547],[4.53726588,0.03920902,98.28471643],[4.5372663,0.03921078,98.28463829],[4.53726671,0.03921253,98.28456107],[4.53726713,0.03921428,98.28448478],[4.53726755,0.03921604,98.28440944],[4.53726797,0.03921779,98.28433506],[4.53726838,0.03921955,98.28426166],[4.5372688,0.0392213,98.28418924],[4.53726922,0.03922306,98.28411784],[4.53726964,0.03922481,98.28404746],[4.53727005,0.03922656,98.28397812],[4.53727047,0.03922832,98.28390983],[4.53727089,0.03923007,98.28384261],[4.53727131,0.03923183,98.28377647],[4.53727172,0.03923358,98.28371143],[4.53727214,0.03923534,98.2836475],[4.53727256,0.03923709,98.28358471],[4.53727298,0.03923884,98.28352306],[4.5372734,0.0392406,98.28346256],[4.53727382,0.03924235,98.28340325],[4.53727424,0.03924411,98.28334512],[4.53727465,0.03924586,98.2832882],[4.53727507,0.03924761,98.2832325],[4.53727549,0.03924937,98.28317803],[4.53727591,0.03925112,98.28312482],[4.53727633,0.03925288,98.28307287],[4.53727675,0.03925463,98.2830222],[4.53727717,0.03925638,98.28297283],[4.53727759,0.03925814,98.28292478],[4.53727801,0.03925989,98.28287805],[4.53727843,0.03926164,98.28283266],[4.53727885,0.0392634,98.28278863],[4.53727927,0.03926515,98.28274598],[4.5372797,0.0392669,98.28270472],[4.53728012,0.03926866,98.28266485],[4.53728054,0.03927041,98.28262641],[4.53728096,0.03927216,98.2825894],[4.53728138,0.03927392,98.28255383],[4.5372818,0.03927567,98.2825197],[4.53728223,0.03927742,98.282487],[4.53728265,0.03927918,98.28245575],[4.53728307,0.03928093,98.28242594],[4.5372835,0.03928268,98.28239757],[4.53728392,0.03928444,98.28237065],[4.53728434,0.03928619,98.28234517],[4.53728477,0.03928794,98.28232114],[4.53728519,0.0392897,98.28229856],[4.53728561,0.03929145,98.28227744],[4.53728604,0.0392932,98.28225777],[4.53728646,0.03929495,98.28223955],[4.53728689,0.03929671,98.28222279],[4.53728731,0.03929846,98.28220748],[4.53728774,0.03930021,98.28219363],[4.53728816,0.03930196,98.28218124],[4.53728859,0.03930372,98.28217028],[4.53728902,0.03930547,98.28216074],[4.53728944,0.03930722,98.28215259],[4.53728987,0.03930897,98.28214582],[4.53729029,0.03931073,98.2821404],[4.53729072,0.03931248,98.28213632],[4.53729115,0.03931423,98.28213356],[4.53729157,0.03931598,98.28213209],[4.537292,0.03931773,98.2821319],[4.53729243,0.03931949,98.28213297],[4.53729286,0.03932124,98.28213528],[4.53729328,0.03932299,98.28213881],[4.53729371,0.03932474,98.28214354],[4.53729414,0.03932649,98.28214945],[4.53729457,0.03932825,98.28215651],[4.53729499,0.03933,98.28216472],[4.53729542,0.03933175,98.28217405],[4.53729585,0.0393335,98.28218447],[4.53729628,0.03933525,98.28219598],[4.53729671,0.03933701,98.28220855],[4.53729714,0.03933876,98.28222216],[4.53729756,0.03934051,98.2822368],[4.53729799,0.03934226,98.28225243],[4.53729842,0.03934401,98.28226905],[4.53729885,0.03934576,98.28228663],[4.53729928,0.03934752,98.28230515],[4.53729971,0.03934927,98.2823246],[4.53730014,0.03935102,98.28234495],[4.53730056,0.03935277,98.28236618],[4.53730099,0.03935452,98.28238827],[4.53730142,0.03935627,98.28241121],[4.53730185,0.03935802,98.28243497],[4.53730228,0.03935978,98.28245954],[4.53730271,0.03936153,98.28248489],[4.53730314,0.03936328,98.282511],[4.53730357,0.03936503,98.28253786],[4.53730399,0.03936678,98.28256544],[4.53730442,0.03936854,98.28259373],[4.53730485,0.03937029,98.2826227],[4.53730528,0.03937204,98.28265234],[4.53730571,0.03937379,98.28268262],[4.53730614,0.03937554,98.28271352],[4.53730657,0.0393773,98.28274503],[4.53730699,0.03937905,98.28277712],[4.53730742,0.0393808,98.28280977],[4.53730785,0.03938255,98.28284292],[4.53730828,0.0393843,98.2828765],[4.53730871,0.03938606,98.28291044],[4.53730913,0.03938781,98.28294469],[4.53730956,0.03938956,98.28297916],[4.53730999,0.03939131,98.28301381],[4.53731041,0.03939306,98.28304856],[4.53731084,0.03939482,98.28308334],[4.53731127,0.03939657,98.2831181],[4.53731169,0.03939832,98.28315275],[4.53731212,0.03940007,98.28318725],[4.53731255,0.03940183,98.28322151],[4.53731297,0.03940358,98.28325549],[4.5373134,0.03940533,98.2832891],[4.53731382,0.03940709,98.28332228],[4.53731424,0.03940884,98.28335497],[4.53731467,0.03941059,98.2833871],[4.53731509,0.03941235,98.2834186],[4.53731551,0.0394141,98.28344941],[4.53731593,0.03941585,98.28347946],[4.53731636,0.03941761,98.28350869],[4.53731678,0.03941936,98.28353702],[4.5373172,0.03942111,98.2835644],[4.53731762,0.03942287,98.28359075],[4.53731804,0.03942462,98.28361601],[4.53731846,0.03942638,98.28364012],[4.53731887,0.03942813,98.283663],[4.53731929,0.03942989,98.2836846],[4.53731971,0.03943164,98.28370491],[4.53732012,0.0394334,98.28372402],[4.53732054,0.03943515,98.283742],[4.53732095,0.03943691,98.28375893],[4.53732137,0.03943866,98.28377488],[4.53732178,0.03944042,98.28378992],[4.53732219,0.03944217,98.28380415],[4.53732261,0.03944393,98.28381763],[4.53732302,0.03944569,98.28383043],[4.53732343,0.03944744,98.28384264],[4.53732384,0.0394492,98.28385433],[4.53732425,0.03945095,98.28386558],[4.53732466,0.03945271,98.28387647],[4.53732507,0.03945447,98.28388706],[4.53732548,0.03945622,98.28389745],[4.53732589,0.03945798,98.2839077],[4.5373263,0.03945974,98.28391789],[4.53732671,0.03946149,98.28392809],[4.53732712,0.03946325,98.2839384],[4.53732752,0.03946501,98.28394887],[4.53732793,0.03946677,98.28395959],[4.53732834,0.03946852,98.28397064],[4.53732875,0.03947028,98.28398209],[4.53732915,0.03947204,98.28399403],[4.53732956,0.03947379,98.28400655],[4.53732997,0.03947555,98.28401977],[4.53733038,0.03947731,98.28403378],[4.53733078,0.03947907,98.28404868],[4.53733119,0.03948082,98.28406458],[4.5373316,0.03948258,98.28408157],[4.53733201,0.03948434,98.28409976],[4.53733241,0.03948609,98.28411925],[4.53733282,0.03948785,98.28414015],[4.53733323,0.03948961,98.28416255],[4.53733364,0.03949137,98.28418656],[4.53733405,0.03949312,98.28421227],[4.53733445,0.03949488,98.28423977],[4.53733486,0.03949664,98.28426905],[4.53733527,0.03949839,98.28430008],[4.53733568,0.03950015,98.28433281],[4.53733609,0.03950191,98.28436724],[4.5373365,0.03950366,98.28440331],[4.53733691,0.03950542,98.284441],[4.53733732,0.03950718,98.28448029],[4.53733773,0.03950893,98.28452114],[4.53733814,0.03951069,98.28456351],[4.53733855,0.03951245,98.28460738],[4.53733896,0.0395142,98.28465272],[4.53733937,0.03951596,98.28469949],[4.53733979,0.03951771,98.28474767],[4.5373402,0.03951947,98.28479722],[4.53734061,0.03952123,98.28484811],[4.53734102,0.03952298,98.28490032],[4.53734143,0.03952474,98.2849538],[4.53734184,0.0395265,98.28500854],[4.53734226,0.03952825,98.28506449],[4.53734267,0.03953001,98.28512163],[4.53734308,0.03953176,98.28517992],[4.53734349,0.03953352,98.28523934],[4.5373439,0.03953528,98.28529985],[4.53734432,0.03953703,98.28536143],[4.53734473,0.03953879,98.28542403],[4.53734514,0.03954054,98.28548764],[4.53734555,0.0395423,98.28555221],[4.53734596,0.03954406,98.28561773],[4.53734638,0.03954581,98.28568415],[4.53734679,0.03954757,98.28575144],[4.5373472,0.03954933,98.28581958],[4.53734761,0.03955108,98.28588853],[4.53734802,0.03955284,98.28595827],[4.53734844,0.03955459,98.28602875],[4.53734885,0.03955635,98.28609995],[4.53734926,0.03955811,98.28617185],[4.53734967,0.03955986,98.2862444],[4.53735008,0.03956162,98.28631758],[4.53735049,0.03956338,98.28639139],[4.53735091,0.03956513,98.28646585],[4.53735132,0.03956689,98.28654095],[4.53735173,0.03956864,98.2866167],[4.53735214,0.0395704,98.28669311],[4.53735255,0.03957216,98.28677019],[4.53735296,0.03957391,98.28684794],[4.53735337,0.03957567,98.28692637],[4.53735378,0.03957743,98.28700549],[4.53735419,0.03957918,98.2870853],[4.5373546,0.03958094,98.2871658],[4.53735501,0.0395827,98.28724701],[4.53735542,0.03958445,98.28732893],[4.53735583,0.03958621,98.28741157],[4.53735624,0.03958797,98.28749493],[4.53735665,0.03958972,98.28757903],[4.53735706,0.03959148,98.28766386],[4.53735747,0.03959324,98.28774944],[4.53735788,0.03959499,98.28783576],[4.53735829,0.03959675,98.28792285],[4.5373587,0.03959851,98.28801069],[4.53735911,0.03960027,98.28809931],[4.53735952,0.03960202,98.2881887],[4.53735993,0.03960378,98.28827888],[4.53736034,0.03960554,98.28836985],[4.53736075,0.03960729,98.28846161],[4.53736115,0.03960905,98.28855417],[4.53736156,0.03961081,98.28864755],[4.53736197,0.03961256,98.28874174],[4.53736238,0.03961432,98.28883675],[4.53736279,0.03961608,98.28893259],[4.5373632,0.03961784,98.28902927],[4.53736361,0.03961959,98.28912678],[4.53736401,0.03962135,98.28922512],[4.53736442,0.03962311,98.28932427],[4.53736483,0.03962486,98.28942423],[4.53736524,0.03962662,98.28952497],[4.53736565,0.03962838,98.2896265],[4.53736606,0.03963014,98.28972879],[4.53736646,0.03963189,98.28983184],[4.53736687,0.03963365,98.28993564],[4.53736728,0.03963541,98.29004017],[4.53736769,0.03963717,98.29014543],[4.53736809,0.03963892,98.2902514],[4.5373685,0.03964068,98.29035807],[4.53736891,0.03964244,98.29046542],[4.53736932,0.03964419,98.29057346],[4.53736972,0.03964595,98.29068217],[4.53737013,0.03964771,98.29079153],[4.53737054,0.03964947,98.29090153],[4.53737094,0.03965123,98.29101217],[4.53737135,0.03965298,98.29112343],[4.53737176,0.03965474,98.2912353],[4.53737216,0.0396565,98.29134777],[4.53737257,0.03965826,98.29146083],[4.53737298,0.03966001,98.29157447],[4.53737338,0.03966177,98.29168867],[4.53737379,0.03966353,98.29180343],[4.53737419,0.03966529,98.29191873],[4.5373746,0.03966705,98.29203456],[4.537375,0.0396688,98.29215091],[4.53737541,0.03967056,98.29226777],[4.53737581,0.03967232,98.29238513],[4.53737622,0.03967408,98.29250298],[4.53737662,0.03967584,98.29262131],[4.53737703,0.03967759,98.29274009],[4.53737743,0.03967935,98.29285934],[4.53737783,0.03968111,98.29297902],[4.53737824,0.03968287,98.29309914],[4.53737864,0.03968463,98.29321972],[4.53737904,0.03968639,98.29334077],[4.53737945,0.03968814,98.29346232],[4.53737985,0.0396899,98.2935844],[4.53738025,0.03969166,98.29370703],[4.53738065,0.03969342,98.29383022],[4.53738106,0.03969518,98.29395401],[4.53738146,0.03969694,98.29407842],[4.53738186,0.0396987,98.29420346],[4.53738226,0.03970046,98.29432917],[4.53738266,0.03970221,98.29445557],[4.53738307,0.03970397,98.29458269],[4.53738347,0.03970573,98.29471054],[4.53738387,0.03970749,98.29483915],[4.53738427,0.03970925,98.29496855],[4.53738467,0.03971101,98.29509876],[4.53738507,0.03971277,98.2952298],[4.53738547,0.03971453,98.29536169],[4.53738587,0.03971629,98.29549447],[4.53738628,0.03971805,98.29562816],[4.53738668,0.0397198,98.29576278],[4.53738708,0.03972156,98.29589835],[4.53738748,0.03972332,98.29603489],[4.53738787,0.03972507,98.29617244],[4.53738827,0.03972683,98.29631102],[4.53738868,0.03972858,98.29645064],[4.53738908,0.03973034,98.29659134],[4.53738948,0.0397321,98.29673314],[4.53738988,0.03973386,98.29687606],[4.53739028,0.03973562,98.29702012],[4.53739068,0.03973738,98.29716536],[4.53739108,0.03973914,98.29731179],[4.53739148,0.0397409,98.29745944],[4.53739188,0.03974266,98.29760832],[4.53739228,0.03974442,98.29775848],[4.53739268,0.03974618,98.29790993],[4.53739308,0.03974794,98.29806268],[4.53739348,0.0397497,98.29821678],[4.53739388,0.03975145,98.29837224],[4.53739428,0.03975321,98.29852908],[4.53739469,0.03975497,98.29868734],[4.53739509,0.03975673,98.29884702],[4.53739549,0.03975849,98.29900817],[4.53739589,0.03976025,98.2991708],[4.53739629,0.03976201,98.29933493],[4.53739669,0.03976377,98.29950059],[4.53739709,0.03976553,98.2996678],[4.5373975,0.03976729,98.29983656],[4.5373979,0.03976904,98.30000687],[4.5373983,0.0397708,98.30017869],[4.5373987,0.03977256,98.30035201],[4.5373991,0.03977432,98.30052681],[4.53739951,0.03977608,98.30070308],[4.53739991,0.03977784,98.30088079],[4.53740031,0.0397796,98.30105992],[4.53740071,0.03978136,98.30124047],[4.53740112,0.03978311,98.30142241],[4.53740152,0.03978487,98.30160572],[4.53740192,0.03978663,98.30179038],[4.53740232,0.03978839,98.30197638],[4.53740273,0.03979015,98.30216369],[4.53740313,0.03979191,98.30235231],[4.53740353,0.03979367,98.3025422],[4.53740394,0.03979543,98.30273336],[4.53740434,0.03979718,98.30292576],[4.53740474,0.03979894,98.30311939],[4.53740515,0.0398007,98.30331422],[4.53740555,0.03980246,98.30351025],[4.53740595,0.03980422,98.30370745],[4.53740636,0.03980598,98.3039058],[4.53740676,0.03980773,98.30410528],[4.53740716,0.03980949,98.30430589],[4.53740757,0.03981125,98.30450759],[4.53740797,0.03981301,98.30471037],[4.53740837,0.03981477,98.30491421],[4.53740877,0.03981653,98.3051191],[4.53740918,0.03981829,98.30532501],[4.53740958,0.03982004,98.30553194],[4.53740998,0.0398218,98.30573985],[4.53741039,0.03982356,98.30594873],[4.53741079,0.03982532,98.30615857],[4.53741119,0.03982708,98.30636934],[4.5374116,0.03982884,98.30658103],[4.537412,0.0398306,98.30679362],[4.5374124,0.03983235,98.30700709],[4.5374128,0.03983411,98.30722142],[4.53741321,0.03983587,98.3074366],[4.53741361,0.03983763,98.3076526],[4.53741401,0.03983939,98.30786942],[4.53741441,0.03984115,98.30808702],[4.53741481,0.03984291,98.3083054],[4.53741522,0.03984467,98.30852453],[4.53741562,0.03984642,98.3087444],[4.53741602,0.03984818,98.30896498],[4.53741642,0.03984994,98.30918627],[4.53741682,0.0398517,98.30940828],[4.53741722,0.03985346,98.30963105],[4.53741762,0.03985522,98.30985464],[4.53741802,0.03985698,98.31007909],[4.53741843,0.03985874,98.31030445],[4.53741883,0.0398605,98.31053076],[4.53741923,0.03986225,98.31075808],[4.53741963,0.03986401,98.31098646],[4.53742003,0.03986577,98.31121593],[4.53742043,0.03986753,98.31144656],[4.53742083,0.03986929,98.31167838],[4.53742123,0.03987105,98.31191145],[4.53742163,0.03987281,98.31214581],[4.53742203,0.03987457,98.31238151],[4.53742243,0.03987633,98.3126186],[4.53742284,0.03987809,98.31285713],[4.53742324,0.03987984,98.31309714],[4.53742364,0.0398816,98.31333868],[4.53742404,0.03988336,98.3135818],[4.53742444,0.03988512,98.31382655],[4.53742484,0.03988688,98.31407297],[4.53742524,0.03988864,98.31432112],[4.53742565,0.0398904,98.31457103],[4.53742605,0.03989215,98.31482276],[4.53742645,0.03989391,98.31507636],[4.53742685,0.03989567,98.31533187],[4.53742726,0.03989743,98.31558933],[4.53742766,0.03989919,98.3158488],[4.53742807,0.03990095,98.31611034],[4.53742847,0.0399027,98.31637398],[4.53742887,0.03990446,98.31663978],[4.53742928,0.03990622,98.3169078],[4.53742968,0.03990798,98.3171781],[4.53743009,0.03990974,98.31745071],[4.53743049,0.03991149,98.31772569],[4.5374309,0.03991325,98.31800311],[4.53743131,0.03991501,98.318283],[4.53743171,0.03991677,98.31856542],[4.53743212,0.03991852,98.31885043],[4.53743253,0.03992028,98.31913807],[4.53743294,0.03992204,98.31942839],[4.53743335,0.0399238,98.31972136],[4.53743376,0.03992555,98.32001697],[4.53743417,0.03992731,98.32031518],[4.53743458,0.03992907,98.32061597],[4.53743499,0.03993082,98.32091932],[4.5374354,0.03993258,98.32122519],[4.53743581,0.03993434,98.32153355],[4.53743622,0.03993609,98.32184439],[4.53743664,0.03993785,98.32215767],[4.53743705,0.0399396,98.32247336],[4.53743746,0.03994136,98.32279145],[4.53743788,0.03994312,98.3231119],[4.53743829,0.03994487,98.32343468],[4.5374387,0.03994663,98.32375978],[4.53743912,0.03994838,98.32408715],[4.53743953,0.03995014,98.32441678],[4.53743995,0.03995189,98.32474864],[4.53744037,0.03995365,98.32508271],[4.53744078,0.0399554,98.32541894],[4.5374412,0.03995716,98.32575733],[4.53744162,0.03995891,98.32609784],[4.53744203,0.03996067,98.32644044],[4.53744245,0.03996242,98.32678511],[4.53744287,0.03996418,98.32713182],[4.53744329,0.03996593,98.32748054],[4.53744371,0.03996769,98.32783125],[4.53744412,0.03996944,98.32818393],[4.53744454,0.0399712,98.32853853],[4.53744496,0.03997295,98.32889504],[4.53744538,0.03997471,98.32925319],[4.5374458,0.03997646,98.32961256],[4.53744622,0.03997822,98.32997269],[4.53744664,0.03997997,98.33033313],[4.53744706,0.03998173,98.33069345],[4.53744748,0.03998348,98.33105318],[4.53744789,0.03998524,98.33141188],[4.53744831,0.03998699,98.33176911],[4.53744873,0.03998875,98.33212442],[4.53744914,0.0399905,98.33247736],[4.53744955,0.03999226,98.33282749],[4.53744997,0.03999401,98.33317437],[4.53745038,0.03999577,98.33351755],[4.53745079,0.03999753,98.33385658],[4.53745119,0.03999929,98.33419102],[4.5374516,0.04000104,98.33452045],[4.537452,0.0400028,98.33484486],[4.5374524,0.04000456,98.33516462],[4.5374528,0.04000632,98.33548011],[4.5374532,0.04000808,98.33579172],[4.53745359,0.04000984,98.33609985],[4.53745399,0.0400116,98.33640487],[4.53745438,0.04001336,98.33670718],[4.53745478,0.04001512,98.33700716],[4.53745517,0.04001688,98.3373052],[4.53745556,0.04001864,98.33760168],[4.53745595,0.0400204,98.33789698],[4.53745634,0.04002216,98.3381915],[4.53745673,0.04002393,98.33848561],[4.53745712,0.04002569,98.3387797],[4.5374575,0.04002745,98.33907415],[4.53745789,0.04002921,98.33936935],[4.53745828,0.04003097,98.33966568],[4.53745867,0.04003273,98.33996351],[4.53745906,0.0400345,98.34026302],[4.53745945,0.04003626,98.34056421],[4.53745983,0.04003802,98.34086706],[4.53746022,0.04003978,98.34117156],[4.53746061,0.04004154,98.3414777],[4.537461,0.0400433,98.34178547],[4.53746139,0.04004506,98.34209486],[4.53746178,0.04004683,98.34240585],[4.53746217,0.04004859,98.34271844],[4.53746256,0.04005035,98.34303262],[4.53746295,0.04005211,98.34334836],[4.53746334,0.04005387,98.34366567],[4.53746373,0.04005563,98.34398452],[4.53746412,0.04005739,98.34430491],[4.53746451,0.04005915,98.34462683],[4.5374649,0.04006091,98.34495026],[4.53746529,0.04006268,98.3452752],[4.53746569,0.04006444,98.34560163],[4.53746608,0.0400662,98.34592954],[4.53746647,0.04006796,98.34625892],[4.53746686,0.04006972,98.34658975],[4.53746725,0.04007148,98.34692203],[4.53746764,0.04007324,98.34725575],[4.53746803,0.040075,98.34759089],[4.53746843,0.04007676,98.34792745],[4.53746882,0.04007852,98.3482654],[4.53746921,0.04008028,98.34860474],[4.5374696,0.04008204,98.34894547],[4.53746999,0.0400838,98.34928756],[4.53747039,0.04008557,98.349631],[4.53747078,0.04008733,98.34997579],[4.53747117,0.04008909,98.35032192],[4.53747156,0.04009085,98.35066936],[4.53747196,0.04009261,98.35101812],[4.53747235,0.04009437,98.35136818],[4.53747274,0.04009613,98.35171952],[4.53747313,0.04009789,98.35207215],[4.53747353,0.04009965,98.35242603],[4.53747392,0.04010141,98.35278118],[4.53747431,0.04010317,98.35313757],[4.5374747,0.04010493,98.35349519],[4.5374751,0.04010669,98.35385403],[4.53747549,0.04010845,98.35421408],[4.53747588,0.04011021,98.35457533],[4.53747628,0.04011197,98.35493777],[4.53747667,0.04011373,98.35530138],[4.53747706,0.04011549,98.35566617],[4.53747746,0.04011725,98.3560321],[4.53747785,0.04011901,98.35639918],[4.53747824,0.04012077,98.3567674],[4.53747863,0.04012254,98.35713673],[4.53747903,0.0401243,98.35750718],[4.53747942,0.04012606,98.35787872],[4.53747981,0.04012782,98.35825136],[4.53748021,0.04012958,98.35862507],[4.5374806,0.04013134,98.35899985],[4.53748099,0.0401331,98.35937568],[4.53748139,0.04013486,98.35975256],[4.53748178,0.04013662,98.36013047],[4.53748217,0.04013838,98.36050941],[4.53748257,0.04014014,98.36088936],[4.53748296,0.0401419,98.36127031],[4.53748335,0.04014366,98.36165225],[4.53748374,0.04014542,98.36203517],[4.53748414,0.04014718,98.36241906],[4.53748453,0.04014894,98.36280391],[4.53748492,0.0401507,98.3631897],[4.53748532,0.04015246,98.36357643],[4.53748571,0.04015422,98.36396409],[4.5374861,0.04015598,98.36435266],[4.53748649,0.04015774,98.36474214],[4.53748689,0.0401595,98.36513251],[4.53748728,0.04016126,98.36552376],[4.53748767,0.04016302,98.36591588],[4.53748806,0.04016478,98.36630887],[4.53748846,0.04016655,98.3667027],[4.53748885,0.04016831,98.36709738],[4.53748924,0.04017007,98.36749288],[4.53748963,0.04017183,98.36788921],[4.53749002,0.04017359,98.36828634],[4.53749042,0.04017535,98.36868427],[4.53749081,0.04017711,98.36908299],[4.53749119,0.04017887,98.36945629],[4.53749123,0.04018071,98.36877606],[4.53749126,0.04018255,98.36809767],[4.5374913,0.0401844,98.36742114],[4.53748942,0.04018482,98.36173293]]],"type":"Polygon"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1003400","id":1,"type":"shoulder","predecessorId":1,"sOffset":120.7368344413}},{"geometry":{"coordinates":[[[4.5374913,0.0401844,98.36742114],[4.53749126,0.04018255,98.36809767],[4.53749123,0.04018071,98.36877606],[4.53749119,0.04017887,98.36945629],[4.53749081,0.04017711,98.36908299],[4.53749042,0.04017535,98.36868427],[4.53749002,0.04017359,98.36828634],[4.53748963,0.04017183,98.36788921],[4.53748924,0.04017007,98.36749288],[4.53748885,0.04016831,98.36709738],[4.53748846,0.04016655,98.3667027],[4.53748806,0.04016478,98.36630887],[4.53748767,0.04016302,98.36591588],[4.53748728,0.04016126,98.36552376],[4.53748689,0.0401595,98.36513251],[4.53748649,0.04015774,98.36474214],[4.5374861,0.04015598,98.36435266],[4.53748571,0.04015422,98.36396409],[4.53748532,0.04015246,98.36357643],[4.53748492,0.0401507,98.3631897],[4.53748453,0.04014894,98.36280391],[4.53748414,0.04014718,98.36241906],[4.53748374,0.04014542,98.36203517],[4.53748335,0.04014366,98.36165225],[4.53748296,0.0401419,98.36127031],[4.53748257,0.04014014,98.36088936],[4.53748217,0.04013838,98.36050941],[4.53748178,0.04013662,98.36013047],[4.53748139,0.04013486,98.35975256],[4.53748099,0.0401331,98.35937568],[4.5374806,0.04013134,98.35899985],[4.53748021,0.04012958,98.35862507],[4.53747981,0.04012782,98.35825136],[4.53747942,0.04012606,98.35787872],[4.53747903,0.0401243,98.35750718],[4.53747863,0.04012254,98.35713673],[4.53747824,0.04012077,98.3567674],[4.53747785,0.04011901,98.35639918],[4.53747746,0.04011725,98.3560321],[4.53747706,0.04011549,98.35566617],[4.53747667,0.04011373,98.35530138],[4.53747628,0.04011197,98.35493777],[4.53747588,0.04011021,98.35457533],[4.53747549,0.04010845,98.35421408],[4.5374751,0.04010669,98.35385403],[4.5374747,0.04010493,98.35349519],[4.53747431,0.04010317,98.35313757],[4.53747392,0.04010141,98.35278118],[4.53747353,0.04009965,98.35242603],[4.53747313,0.04009789,98.35207215],[4.53747274,0.04009613,98.35171952],[4.53747235,0.04009437,98.35136818],[4.53747196,0.04009261,98.35101812],[4.53747156,0.04009085,98.35066936],[4.53747117,0.04008909,98.35032192],[4.53747078,0.04008733,98.34997579],[4.53747039,0.04008557,98.349631],[4.53746999,0.0400838,98.34928756],[4.5374696,0.04008204,98.34894547],[4.53746921,0.04008028,98.34860474],[4.53746882,0.04007852,98.3482654],[4.53746843,0.04007676,98.34792745],[4.53746803,0.040075,98.34759089],[4.53746764,0.04007324,98.34725575],[4.53746725,0.04007148,98.34692203],[4.53746686,0.04006972,98.34658975],[4.53746647,0.04006796,98.34625892],[4.53746608,0.0400662,98.34592954],[4.53746569,0.04006444,98.34560163],[4.53746529,0.04006268,98.3452752],[4.5374649,0.04006091,98.34495026],[4.53746451,0.04005915,98.34462683],[4.53746412,0.04005739,98.34430491],[4.53746373,0.04005563,98.34398452],[4.53746334,0.04005387,98.34366567],[4.53746295,0.04005211,98.34334836],[4.53746256,0.04005035,98.34303262],[4.53746217,0.04004859,98.34271844],[4.53746178,0.04004683,98.34240585],[4.53746139,0.04004506,98.34209486],[4.537461,0.0400433,98.34178547],[4.53746061,0.04004154,98.3414777],[4.53746022,0.04003978,98.34117156],[4.53745983,0.04003802,98.34086706],[4.53745945,0.04003626,98.34056421],[4.53745906,0.0400345,98.34026302],[4.53745867,0.04003273,98.33996351],[4.53745828,0.04003097,98.33966568],[4.53745789,0.04002921,98.33936935],[4.5374575,0.04002745,98.33907415],[4.53745712,0.04002569,98.3387797],[4.53745673,0.04002393,98.33848561],[4.53745634,0.04002216,98.3381915],[4.53745595,0.0400204,98.33789698],[4.53745556,0.04001864,98.33760168],[4.53745517,0.04001688,98.3373052],[4.53745478,0.04001512,98.33700716],[4.53745438,0.04001336,98.33670718],[4.53745399,0.0400116,98.33640487],[4.53745359,0.04000984,98.33609985],[4.5374532,0.04000808,98.33579172],[4.5374528,0.04000632,98.33548011],[4.5374524,0.04000456,98.33516462],[4.537452,0.0400028,98.33484486],[4.5374516,0.04000104,98.33452045],[4.53745119,0.03999929,98.33419102],[4.53745079,0.03999753,98.33385658],[4.53745038,0.03999577,98.33351755],[4.53744997,0.03999401,98.33317437],[4.53744955,0.03999226,98.33282749],[4.53744914,0.0399905,98.33247736],[4.53744873,0.03998875,98.33212442],[4.53744831,0.03998699,98.33176911],[4.53744789,0.03998524,98.33141188],[4.53744748,0.03998348,98.33105318],[4.53744706,0.03998173,98.33069345],[4.53744664,0.03997997,98.33033313],[4.53744622,0.03997822,98.32997269],[4.5374458,0.03997646,98.32961256],[4.53744538,0.03997471,98.32925319],[4.53744496,0.03997295,98.32889504],[4.53744454,0.0399712,98.32853853],[4.53744412,0.03996944,98.32818393],[4.53744371,0.03996769,98.32783125],[4.53744329,0.03996593,98.32748054],[4.53744287,0.03996418,98.32713182],[4.53744245,0.03996242,98.32678511],[4.53744203,0.03996067,98.32644044],[4.53744162,0.03995891,98.32609784],[4.5374412,0.03995716,98.32575733],[4.53744078,0.0399554,98.32541894],[4.53744037,0.03995365,98.32508271],[4.53743995,0.03995189,98.32474864],[4.53743953,0.03995014,98.32441678],[4.53743912,0.03994838,98.32408715],[4.5374387,0.03994663,98.32375978],[4.53743829,0.03994487,98.32343468],[4.53743788,0.03994312,98.3231119],[4.53743746,0.03994136,98.32279145],[4.53743705,0.0399396,98.32247336],[4.53743664,0.03993785,98.32215767],[4.53743622,0.03993609,98.32184439],[4.53743581,0.03993434,98.32153355],[4.5374354,0.03993258,98.32122519],[4.53743499,0.03993082,98.32091932],[4.53743458,0.03992907,98.32061597],[4.53743417,0.03992731,98.32031518],[4.53743376,0.03992555,98.32001697],[4.53743335,0.0399238,98.31972136],[4.53743294,0.03992204,98.31942839],[4.53743253,0.03992028,98.31913807],[4.53743212,0.03991852,98.31885043],[4.53743171,0.03991677,98.31856542],[4.53743131,0.03991501,98.318283],[4.5374309,0.03991325,98.31800311],[4.53743049,0.03991149,98.31772569],[4.53743009,0.03990974,98.31745071],[4.53742968,0.03990798,98.3171781],[4.53742928,0.03990622,98.3169078],[4.53742887,0.03990446,98.31663978],[4.53742847,0.0399027,98.31637398],[4.53742807,0.03990095,98.31611034],[4.53742766,0.03989919,98.3158488],[4.53742726,0.03989743,98.31558933],[4.53742685,0.03989567,98.31533187],[4.53742645,0.03989391,98.31507636],[4.53742605,0.03989215,98.31482276],[4.53742565,0.0398904,98.31457103],[4.53742524,0.03988864,98.31432112],[4.53742484,0.03988688,98.31407297],[4.53742444,0.03988512,98.31382655],[4.53742404,0.03988336,98.3135818],[4.53742364,0.0398816,98.31333868],[4.53742324,0.03987984,98.31309714],[4.53742284,0.03987809,98.31285713],[4.53742243,0.03987633,98.3126186],[4.53742203,0.03987457,98.31238151],[4.53742163,0.03987281,98.31214581],[4.53742123,0.03987105,98.31191145],[4.53742083,0.03986929,98.31167838],[4.53742043,0.03986753,98.31144656],[4.53742003,0.03986577,98.31121593],[4.53741963,0.03986401,98.31098646],[4.53741923,0.03986225,98.31075808],[4.53741883,0.0398605,98.31053076],[4.53741843,0.03985874,98.31030445],[4.53741802,0.03985698,98.31007909],[4.53741762,0.03985522,98.30985464],[4.53741722,0.03985346,98.30963105],[4.53741682,0.0398517,98.30940828],[4.53741642,0.03984994,98.30918627],[4.53741602,0.03984818,98.30896498],[4.53741562,0.03984642,98.3087444],[4.53741522,0.03984467,98.30852453],[4.53741481,0.03984291,98.3083054],[4.53741441,0.03984115,98.30808702],[4.53741401,0.03983939,98.30786942],[4.53741361,0.03983763,98.3076526],[4.53741321,0.03983587,98.3074366],[4.5374128,0.03983411,98.30722142],[4.5374124,0.03983235,98.30700709],[4.537412,0.0398306,98.30679362],[4.5374116,0.03982884,98.30658103],[4.53741119,0.03982708,98.30636934],[4.53741079,0.03982532,98.30615857],[4.53741039,0.03982356,98.30594873],[4.53740998,0.0398218,98.30573985],[4.53740958,0.03982004,98.30553194],[4.53740918,0.03981829,98.30532501],[4.53740877,0.03981653,98.3051191],[4.53740837,0.03981477,98.30491421],[4.53740797,0.03981301,98.30471037],[4.53740757,0.03981125,98.30450759],[4.53740716,0.03980949,98.30430589],[4.53740676,0.03980773,98.30410528],[4.53740636,0.03980598,98.3039058],[4.53740595,0.03980422,98.30370745],[4.53740555,0.03980246,98.30351025],[4.53740515,0.0398007,98.30331422],[4.53740474,0.03979894,98.30311939],[4.53740434,0.03979718,98.30292576],[4.53740394,0.03979543,98.30273336],[4.53740353,0.03979367,98.3025422],[4.53740313,0.03979191,98.30235231],[4.53740273,0.03979015,98.30216369],[4.53740232,0.03978839,98.30197638],[4.53740192,0.03978663,98.30179038],[4.53740152,0.03978487,98.30160572],[4.53740112,0.03978311,98.30142241],[4.53740071,0.03978136,98.30124047],[4.53740031,0.0397796,98.30105992],[4.53739991,0.03977784,98.30088079],[4.53739951,0.03977608,98.30070308],[4.5373991,0.03977432,98.30052681],[4.5373987,0.03977256,98.30035201],[4.5373983,0.0397708,98.30017869],[4.5373979,0.03976904,98.30000687],[4.5373975,0.03976729,98.29983656],[4.53739709,0.03976553,98.2996678],[4.53739669,0.03976377,98.29950059],[4.53739629,0.03976201,98.29933493],[4.53739589,0.03976025,98.2991708],[4.53739549,0.03975849,98.29900817],[4.53739509,0.03975673,98.29884702],[4.53739469,0.03975497,98.29868734],[4.53739428,0.03975321,98.29852908],[4.53739388,0.03975145,98.29837224],[4.53739348,0.0397497,98.29821678],[4.53739308,0.03974794,98.29806268],[4.53739268,0.03974618,98.29790993],[4.53739228,0.03974442,98.29775848],[4.53739188,0.03974266,98.29760832],[4.53739148,0.0397409,98.29745944],[4.53739108,0.03973914,98.29731179],[4.53739068,0.03973738,98.29716536],[4.53739028,0.03973562,98.29702012],[4.53738988,0.03973386,98.29687606],[4.53738948,0.0397321,98.29673314],[4.53738908,0.03973034,98.29659134],[4.53738868,0.03972858,98.29645064],[4.53738827,0.03972683,98.29631102],[4.53738787,0.03972507,98.29617244],[4.53738748,0.03972332,98.29603489],[4.53738708,0.03972156,98.29589835],[4.53738668,0.0397198,98.29576278],[4.53738628,0.03971805,98.29562816],[4.53738587,0.03971629,98.29549447],[4.53738547,0.03971453,98.29536169],[4.53738507,0.03971277,98.2952298],[4.53738467,0.03971101,98.29509876],[4.53738427,0.03970925,98.29496855],[4.53738387,0.03970749,98.29483915],[4.53738347,0.03970573,98.29471054],[4.53738307,0.03970397,98.29458269],[4.53738266,0.03970221,98.29445557],[4.53738226,0.03970046,98.29432917],[4.53738186,0.0396987,98.29420346],[4.53738146,0.03969694,98.29407842],[4.53738106,0.03969518,98.29395401],[4.53738065,0.03969342,98.29383022],[4.53738025,0.03969166,98.29370703],[4.53737985,0.0396899,98.2935844],[4.53737945,0.03968814,98.29346232],[4.53737904,0.03968639,98.29334077],[4.53737864,0.03968463,98.29321972],[4.53737824,0.03968287,98.29309914],[4.53737783,0.03968111,98.29297902],[4.53737743,0.03967935,98.29285934],[4.53737703,0.03967759,98.29274009],[4.53737662,0.03967584,98.29262131],[4.53737622,0.03967408,98.29250298],[4.53737581,0.03967232,98.29238513],[4.53737541,0.03967056,98.29226777],[4.537375,0.0396688,98.29215091],[4.5373746,0.03966705,98.29203456],[4.53737419,0.03966529,98.29191873],[4.53737379,0.03966353,98.29180343],[4.53737338,0.03966177,98.29168867],[4.53737298,0.03966001,98.29157447],[4.53737257,0.03965826,98.29146083],[4.53737216,0.0396565,98.29134777],[4.53737176,0.03965474,98.2912353],[4.53737135,0.03965298,98.29112343],[4.53737094,0.03965123,98.29101217],[4.53737054,0.03964947,98.29090153],[4.53737013,0.03964771,98.29079153],[4.53736972,0.03964595,98.29068217],[4.53736932,0.03964419,98.29057346],[4.53736891,0.03964244,98.29046542],[4.5373685,0.03964068,98.29035807],[4.53736809,0.03963892,98.2902514],[4.53736769,0.03963717,98.29014543],[4.53736728,0.03963541,98.29004017],[4.53736687,0.03963365,98.28993564],[4.53736646,0.03963189,98.28983184],[4.53736606,0.03963014,98.28972879],[4.53736565,0.03962838,98.2896265],[4.53736524,0.03962662,98.28952497],[4.53736483,0.03962486,98.28942423],[4.53736442,0.03962311,98.28932427],[4.53736401,0.03962135,98.28922512],[4.53736361,0.03961959,98.28912678],[4.5373632,0.03961784,98.28902927],[4.53736279,0.03961608,98.28893259],[4.53736238,0.03961432,98.28883675],[4.53736197,0.03961256,98.28874174],[4.53736156,0.03961081,98.28864755],[4.53736115,0.03960905,98.28855417],[4.53736075,0.03960729,98.28846161],[4.53736034,0.03960554,98.28836985],[4.53735993,0.03960378,98.28827888],[4.53735952,0.03960202,98.2881887],[4.53735911,0.03960027,98.28809931],[4.5373587,0.03959851,98.28801069],[4.53735829,0.03959675,98.28792285],[4.53735788,0.03959499,98.28783576],[4.53735747,0.03959324,98.28774944],[4.53735706,0.03959148,98.28766386],[4.53735665,0.03958972,98.28757903],[4.53735624,0.03958797,98.28749493],[4.53735583,0.03958621,98.28741157],[4.53735542,0.03958445,98.28732893],[4.53735501,0.0395827,98.28724701],[4.5373546,0.03958094,98.2871658],[4.53735419,0.03957918,98.2870853],[4.53735378,0.03957743,98.28700549],[4.53735337,0.03957567,98.28692637],[4.53735296,0.03957391,98.28684794],[4.53735255,0.03957216,98.28677019],[4.53735214,0.0395704,98.28669311],[4.53735173,0.03956864,98.2866167],[4.53735132,0.03956689,98.28654095],[4.53735091,0.03956513,98.28646585],[4.53735049,0.03956338,98.28639139],[4.53735008,0.03956162,98.28631758],[4.53734967,0.03955986,98.2862444],[4.53734926,0.03955811,98.28617185],[4.53734885,0.03955635,98.28609995],[4.53734844,0.03955459,98.28602875],[4.53734802,0.03955284,98.28595827],[4.53734761,0.03955108,98.28588853],[4.5373472,0.03954933,98.28581958],[4.53734679,0.03954757,98.28575144],[4.53734638,0.03954581,98.28568415],[4.53734596,0.03954406,98.28561773],[4.53734555,0.0395423,98.28555221],[4.53734514,0.03954054,98.28548764],[4.53734473,0.03953879,98.28542403],[4.53734432,0.03953703,98.28536143],[4.5373439,0.03953528,98.28529985],[4.53734349,0.03953352,98.28523934],[4.53734308,0.03953176,98.28517992],[4.53734267,0.03953001,98.28512163],[4.53734226,0.03952825,98.28506449],[4.53734184,0.0395265,98.28500854],[4.53734143,0.03952474,98.2849538],[4.53734102,0.03952298,98.28490032],[4.53734061,0.03952123,98.28484811],[4.5373402,0.03951947,98.28479722],[4.53733979,0.03951771,98.28474767],[4.53733937,0.03951596,98.28469949],[4.53733896,0.0395142,98.28465272],[4.53733855,0.03951245,98.28460738],[4.53733814,0.03951069,98.28456351],[4.53733773,0.03950893,98.28452114],[4.53733732,0.03950718,98.28448029],[4.53733691,0.03950542,98.284441],[4.5373365,0.03950366,98.28440331],[4.53733609,0.03950191,98.28436724],[4.53733568,0.03950015,98.28433281],[4.53733527,0.03949839,98.28430008],[4.53733486,0.03949664,98.28426905],[4.53733445,0.03949488,98.28423977],[4.53733405,0.03949312,98.28421227],[4.53733364,0.03949137,98.28418656],[4.53733323,0.03948961,98.28416255],[4.53733282,0.03948785,98.28414015],[4.53733241,0.03948609,98.28411925],[4.53733201,0.03948434,98.28409976],[4.5373316,0.03948258,98.28408157],[4.53733119,0.03948082,98.28406458],[4.53733078,0.03947907,98.28404868],[4.53733038,0.03947731,98.28403378],[4.53732997,0.03947555,98.28401977],[4.53732956,0.03947379,98.28400655],[4.53732915,0.03947204,98.28399403],[4.53732875,0.03947028,98.28398209],[4.53732834,0.03946852,98.28397064],[4.53732793,0.03946677,98.28395959],[4.53732752,0.03946501,98.28394887],[4.53732712,0.03946325,98.2839384],[4.53732671,0.03946149,98.28392809],[4.5373263,0.03945974,98.28391789],[4.53732589,0.03945798,98.2839077],[4.53732548,0.03945622,98.28389745],[4.53732507,0.03945447,98.28388706],[4.53732466,0.03945271,98.28387647],[4.53732425,0.03945095,98.28386558],[4.53732384,0.0394492,98.28385433],[4.53732343,0.03944744,98.28384264],[4.53732302,0.03944569,98.28383043],[4.53732261,0.03944393,98.28381763],[4.53732219,0.03944217,98.28380415],[4.53732178,0.03944042,98.28378992],[4.53732137,0.03943866,98.28377488],[4.53732095,0.03943691,98.28375893],[4.53732054,0.03943515,98.283742],[4.53732012,0.0394334,98.28372402],[4.53731971,0.03943164,98.28370491],[4.53731929,0.03942989,98.2836846],[4.53731887,0.03942813,98.283663],[4.53731846,0.03942638,98.28364012],[4.53731804,0.03942462,98.28361601],[4.53731762,0.03942287,98.28359075],[4.5373172,0.03942111,98.2835644],[4.53731678,0.03941936,98.28353702],[4.53731636,0.03941761,98.28350869],[4.53731593,0.03941585,98.28347946],[4.53731551,0.0394141,98.28344941],[4.53731509,0.03941235,98.2834186],[4.53731467,0.03941059,98.2833871],[4.53731424,0.03940884,98.28335497],[4.53731382,0.03940709,98.28332228],[4.5373134,0.03940533,98.2832891],[4.53731297,0.03940358,98.28325549],[4.53731255,0.03940183,98.28322151],[4.53731212,0.03940007,98.28318725],[4.53731169,0.03939832,98.28315275],[4.53731127,0.03939657,98.2831181],[4.53731084,0.03939482,98.28308334],[4.53731041,0.03939306,98.28304856],[4.53730999,0.03939131,98.28301381],[4.53730956,0.03938956,98.28297916],[4.53730913,0.03938781,98.28294469],[4.53730871,0.03938606,98.28291044],[4.53730828,0.0393843,98.2828765],[4.53730785,0.03938255,98.28284292],[4.53730742,0.0393808,98.28280977],[4.53730699,0.03937905,98.28277712],[4.53730657,0.0393773,98.28274503],[4.53730614,0.03937554,98.28271352],[4.53730571,0.03937379,98.28268262],[4.53730528,0.03937204,98.28265234],[4.53730485,0.03937029,98.2826227],[4.53730442,0.03936854,98.28259373],[4.53730399,0.03936678,98.28256544],[4.53730357,0.03936503,98.28253786],[4.53730314,0.03936328,98.282511],[4.53730271,0.03936153,98.28248489],[4.53730228,0.03935978,98.28245954],[4.53730185,0.03935802,98.28243497],[4.53730142,0.03935627,98.28241121],[4.53730099,0.03935452,98.28238827],[4.53730056,0.03935277,98.28236618],[4.53730014,0.03935102,98.28234495],[4.53729971,0.03934927,98.2823246],[4.53729928,0.03934752,98.28230515],[4.53729885,0.03934576,98.28228663],[4.53729842,0.03934401,98.28226905],[4.53729799,0.03934226,98.28225243],[4.53729756,0.03934051,98.2822368],[4.53729714,0.03933876,98.28222216],[4.53729671,0.03933701,98.28220855],[4.53729628,0.03933525,98.28219598],[4.53729585,0.0393335,98.28218447],[4.53729542,0.03933175,98.28217405],[4.53729499,0.03933,98.28216472],[4.53729457,0.03932825,98.28215651],[4.53729414,0.03932649,98.28214945],[4.53729371,0.03932474,98.28214354],[4.53729328,0.03932299,98.28213881],[4.53729286,0.03932124,98.28213528],[4.53729243,0.03931949,98.28213297],[4.537292,0.03931773,98.2821319],[4.53729157,0.03931598,98.28213209],[4.53729115,0.03931423,98.28213356],[4.53729072,0.03931248,98.28213632],[4.53729029,0.03931073,98.2821404],[4.53728987,0.03930897,98.28214582],[4.53728944,0.03930722,98.28215259],[4.53728902,0.03930547,98.28216074],[4.53728859,0.03930372,98.28217028],[4.53728816,0.03930196,98.28218124],[4.53728774,0.03930021,98.28219363],[4.53728731,0.03929846,98.28220748],[4.53728689,0.03929671,98.28222279],[4.53728646,0.03929495,98.28223955],[4.53728604,0.0392932,98.28225777],[4.53728561,0.03929145,98.28227744],[4.53728519,0.0392897,98.28229856],[4.53728477,0.03928794,98.28232114],[4.53728434,0.03928619,98.28234517],[4.53728392,0.03928444,98.28237065],[4.5372835,0.03928268,98.28239757],[4.53728307,0.03928093,98.28242594],[4.53728265,0.03927918,98.28245575],[4.53728223,0.03927742,98.282487],[4.5372818,0.03927567,98.2825197],[4.53728138,0.03927392,98.28255383],[4.53728096,0.03927216,98.2825894],[4.53728054,0.03927041,98.28262641],[4.53728012,0.03926866,98.28266485],[4.5372797,0.0392669,98.28270472],[4.53727927,0.03926515,98.28274598],[4.53727885,0.0392634,98.28278863],[4.53727843,0.03926164,98.28283266],[4.53727801,0.03925989,98.28287805],[4.53727759,0.03925814,98.28292478],[4.53727717,0.03925638,98.28297283],[4.53727675,0.03925463,98.2830222],[4.53727633,0.03925288,98.28307287],[4.53727591,0.03925112,98.28312482],[4.53727549,0.03924937,98.28317803],[4.53727507,0.03924761,98.2832325],[4.53727465,0.03924586,98.2832882],[4.53727424,0.03924411,98.28334512],[4.53727382,0.03924235,98.28340325],[4.5372734,0.0392406,98.28346256],[4.53727298,0.03923884,98.28352306],[4.53727256,0.03923709,98.28358471],[4.53727214,0.03923534,98.2836475],[4.53727172,0.03923358,98.28371143],[4.53727131,0.03923183,98.28377647],[4.53727089,0.03923007,98.28384261],[4.53727047,0.03922832,98.28390983],[4.53727005,0.03922656,98.28397812],[4.53726964,0.03922481,98.28404746],[4.53726922,0.03922306,98.28411784],[4.5372688,0.0392213,98.28418924],[4.53726838,0.03921955,98.28426166],[4.53726797,0.03921779,98.28433506],[4.53726755,0.03921604,98.28440944],[4.53726713,0.03921428,98.28448478],[4.53726671,0.03921253,98.28456107],[4.5372663,0.03921078,98.28463829],[4.53726588,0.03920902,98.28471643],[4.53726546,0.03920727,98.28479547],[4.53726505,0.03920551,98.2848754],[4.53726463,0.03920376,98.2849562],[4.53726421,0.039202,98.28503785],[4.5372638,0.03920025,98.28512035],[4.53726338,0.03919849,98.28520367],[4.53726296,0.03919674,98.2852878],[4.53726255,0.03919499,98.28537273],[4.53726213,0.03919323,98.28545844],[4.53726172,0.03919148,98.28554492],[4.5372613,0.03918972,98.28563214],[4.53726088,0.03918797,98.28572011],[4.53726047,0.03918621,98.28580879],[4.53726005,0.03918446,98.28589818],[4.53725963,0.0391827,98.28598826],[4.53725922,0.03918095,98.28607902],[4.5372588,0.03917919,98.28617044],[4.53725839,0.03917744,98.28626251],[4.53725797,0.03917569,98.28635522],[4.53725755,0.03917393,98.28644857],[4.53725714,0.03917218,98.28654253],[4.53725672,0.03917042,98.28663711],[4.5372563,0.03916867,98.28673228],[4.53725589,0.03916691,98.28682804],[4.53725547,0.03916516,98.28692438],[4.53725505,0.0391634,98.28702129],[4.53725464,0.03916165,98.28711876],[4.53725422,0.0391599,98.28721677],[4.5372538,0.03915814,98.28731532],[4.53725339,0.03915639,98.28741439],[4.53725297,0.03915463,98.28751397],[4.53725255,0.03915288,98.28761407],[4.53725214,0.03915112,98.28771466],[4.53725172,0.03914937,98.28781576],[4.5372513,0.03914761,98.28791736],[4.53725089,0.03914586,98.28801947],[4.53725047,0.03914411,98.28812209],[4.53725005,0.03914235,98.28822523],[4.53724963,0.0391406,98.28832887],[4.53724922,0.03913884,98.28843303],[4.5372488,0.03913709,98.28853771],[4.53724838,0.03913533,98.2886429],[4.53724797,0.03913358,98.28874862],[4.53724755,0.03913183,98.28885486],[4.53724713,0.03913007,98.28896162],[4.53724671,0.03912832,98.28906891],[4.5372463,0.03912656,98.28917673],[4.53724588,0.03912481,98.28928508],[4.53724546,0.03912305,98.28939396],[4.53724504,0.0391213,98.28950338],[4.53724463,0.03911954,98.28961332],[4.53724421,0.03911779,98.28972381],[4.53724379,0.03911604,98.28983484],[4.53724337,0.03911428,98.28994641],[4.53724295,0.03911253,98.29005852],[4.53724254,0.03911077,98.29017117],[4.53724212,0.03910902,98.29028437],[4.5372417,0.03910726,98.29039812],[4.53724128,0.03910551,98.29051242],[4.53724086,0.03910376,98.29062728],[4.53724044,0.039102,98.29074268],[4.53724003,0.03910025,98.29085865],[4.53723961,0.03909849,98.29097517],[4.53723919,0.03909674,98.29109225],[4.53723877,0.03909498,98.29120989],[4.53723835,0.03909323,98.29132809],[4.53723793,0.03909148,98.29144686],[4.53723751,0.03908972,98.2915662],[4.5372371,0.03908797,98.2916861],[4.53723668,0.03908621,98.29180658],[4.53723626,0.03908446,98.29192763],[4.53723584,0.03908271,98.29204925],[4.53723542,0.03908095,98.29217145],[4.537235,0.0390792,98.29229422],[4.53723458,0.03907744,98.29241758],[4.53723416,0.03907569,98.29254151],[4.53723374,0.03907393,98.29266604],[4.53723332,0.03907218,98.29279114],[4.53723291,0.03907043,98.29291683],[4.53723249,0.03906867,98.29304311],[4.53723207,0.03906692,98.29316998],[4.53723165,0.03906516,98.29329745],[4.53723123,0.03906341,98.29342551],[4.53723081,0.03906166,98.29355416],[4.53723039,0.0390599,98.29368341],[4.53722997,0.03905815,98.29381326],[4.53722955,0.03905639,98.29394371],[4.53722947,0.03905608,98.29396748],[4.53724438,0.03905247,98.29396748],[4.53724446,0.03905279,98.29394371],[4.53724488,0.03905454,98.29381326],[4.53724529,0.0390563,98.29368341],[4.53724571,0.03905805,98.29355416],[4.53724613,0.0390598,98.29342551],[4.53724655,0.03906156,98.29329745],[4.53724696,0.03906331,98.29316998],[4.53724738,0.03906507,98.29304311],[4.5372478,0.03906682,98.29291683],[4.53724821,0.03906858,98.29279114],[4.53724863,0.03907033,98.29266604],[4.53724905,0.03907209,98.29254151],[4.53724947,0.03907384,98.29241758],[4.53724988,0.0390756,98.29229422],[4.5372503,0.03907735,98.29217145],[4.53725072,0.03907911,98.29204925],[4.53725114,0.03908086,98.29192763],[4.53725155,0.03908262,98.29180658],[4.53725197,0.03908437,98.2916861],[4.53725239,0.03908612,98.2915662],[4.5372528,0.03908788,98.29144686],[4.53725322,0.03908963,98.29132809],[4.53725364,0.03909139,98.29120989],[4.53725405,0.03909314,98.29109225],[4.53725447,0.0390949,98.29097517],[4.53725489,0.03909665,98.29085865],[4.5372553,0.03909841,98.29074268],[4.53725572,0.03910016,98.29062728],[4.53725614,0.03910192,98.29051242],[4.53725655,0.03910367,98.29039812],[4.53725697,0.03910543,98.29028437],[4.53725739,0.03910718,98.29017117],[4.5372578,0.03910894,98.29005852],[4.53725822,0.03911069,98.28994641],[4.53725863,0.03911245,98.28983484],[4.53725905,0.0391142,98.28972381],[4.53725947,0.03911596,98.28961332],[4.53725988,0.03911771,98.28950338],[4.5372603,0.03911947,98.28939396],[4.53726071,0.03912122,98.28928508],[4.53726113,0.03912298,98.28917673],[4.53726154,0.03912473,98.28906891],[4.53726196,0.03912649,98.28896162],[4.53726237,0.03912824,98.28885486],[4.53726279,0.03913,98.28874862],[4.5372632,0.03913175,98.2886429],[4.53726362,0.03913351,98.28853771],[4.53726403,0.03913526,98.28843303],[4.53726445,0.03913702,98.28832887],[4.53726486,0.03913877,98.28822523],[4.53726528,0.03914053,98.28812209],[4.53726569,0.03914228,98.28801947],[4.53726611,0.03914404,98.28791736],[4.53726652,0.03914579,98.28781576],[4.53726693,0.03914755,98.28771466],[4.53726735,0.0391493,98.28761407],[4.53726776,0.03915106,98.28751397],[4.53726817,0.03915281,98.28741439],[4.53726859,0.03915457,98.28731532],[4.537269,0.03915632,98.28721677],[4.53726942,0.03915808,98.28711876],[4.53726983,0.03915983,98.28702129],[4.53727024,0.03916159,98.28692438],[4.53727065,0.03916334,98.28682804],[4.53727107,0.0391651,98.28673228],[4.53727148,0.03916685,98.28663711],[4.53727189,0.03916861,98.28654253],[4.5372723,0.03917036,98.28644857],[4.53727272,0.03917212,98.28635522],[4.53727313,0.03917387,98.28626251],[4.53727354,0.03917563,98.28617044],[4.53727395,0.03917739,98.28607902],[4.53727436,0.03917914,98.28598826],[4.53727478,0.0391809,98.28589818],[4.53727519,0.03918265,98.28580879],[4.5372756,0.03918441,98.28572011],[4.53727601,0.03918616,98.28563214],[4.53727642,0.03918792,98.28554492],[4.53727683,0.03918968,98.28545844],[4.53727725,0.03919143,98.28537273],[4.53727766,0.03919319,98.2852878],[4.53727807,0.03919494,98.28520367],[4.53727848,0.0391967,98.28512035],[4.53727889,0.03919845,98.28503785],[4.5372793,0.03920021,98.2849562],[4.53727971,0.03920197,98.2848754],[4.53728012,0.03920372,98.28479547],[4.53728053,0.03920548,98.28471643],[4.53728094,0.03920723,98.28463829],[4.53728135,0.03920899,98.28456107],[4.53728176,0.03921075,98.28448478],[4.53728217,0.0392125,98.28440944],[4.53728258,0.03921426,98.28433506],[4.53728299,0.03921601,98.28426166],[4.5372834,0.03921777,98.28418924],[4.53728381,0.03921953,98.28411784],[4.53728422,0.03922128,98.28404746],[4.53728463,0.03922304,98.28397812],[4.53728504,0.03922479,98.28390983],[4.53728545,0.03922655,98.28384261],[4.53728586,0.03922831,98.28377647],[4.53728627,0.03923006,98.28371143],[4.53728668,0.03923182,98.2836475],[4.53728709,0.03923358,98.28358471],[4.5372875,0.03923533,98.28352306],[4.53728791,0.03923709,98.28346256],[4.53728832,0.03923884,98.28340325],[4.53728873,0.0392406,98.28334512],[4.53728914,0.03924236,98.2832882],[4.53728955,0.03924411,98.2832325],[4.53728996,0.03924587,98.28317803],[4.53729037,0.03924763,98.28312482],[4.53729078,0.03924938,98.28307287],[4.53729119,0.03925114,98.2830222],[4.5372916,0.03925289,98.28297283],[4.53729201,0.03925465,98.28292478],[4.53729242,0.03925641,98.28287805],[4.53729283,0.03925816,98.28283266],[4.53729324,0.03925992,98.28278863],[4.53729365,0.03926168,98.28274598],[4.53729406,0.03926343,98.28270472],[4.53729447,0.03926519,98.28266485],[4.53729488,0.03926694,98.28262641],[4.53729529,0.0392687,98.2825894],[4.5372957,0.03927046,98.28255383],[4.53729611,0.03927221,98.2825197],[4.53729652,0.03927397,98.282487],[4.53729693,0.03927573,98.28245575],[4.53729734,0.03927748,98.28242594],[4.53729775,0.03927924,98.28239757],[4.53729816,0.03928099,98.28237065],[4.53729858,0.03928275,98.28234517],[4.53729899,0.03928451,98.28232114],[4.5372994,0.03928626,98.28229856],[4.53729981,0.03928802,98.28227744],[4.53730022,0.03928977,98.28225777],[4.53730063,0.03929153,98.28223955],[4.53730105,0.03929328,98.28222279],[4.53730146,0.03929504,98.28220748],[4.53730187,0.0392968,98.28219363],[4.53730228,0.03929855,98.28218124],[4.5373027,0.03930031,98.28217028],[4.53730311,0.03930206,98.28216074],[4.53730352,0.03930382,98.28215259],[4.53730393,0.03930557,98.28214582],[4.53730435,0.03930733,98.2821404],[4.53730476,0.03930909,98.28213632],[4.53730518,0.03931084,98.28213356],[4.53730559,0.0393126,98.28213209],[4.537306,0.03931435,98.2821319],[4.53730642,0.03931611,98.28213297],[4.53730683,0.03931786,98.28213528],[4.53730725,0.03931962,98.28213881],[4.53730766,0.03932137,98.28214354],[4.53730808,0.03932313,98.28214945],[4.53730849,0.03932488,98.28215651],[4.53730891,0.03932664,98.28216472],[4.53730932,0.03932839,98.28217405],[4.53730974,0.03933015,98.28218447],[4.53731015,0.0393319,98.28219598],[4.53731057,0.03933366,98.28220855],[4.53731098,0.03933541,98.28222216],[4.5373114,0.03933717,98.2822368],[4.53731181,0.03933892,98.28225243],[4.53731223,0.03934068,98.28226905],[4.53731265,0.03934243,98.28228663],[4.53731306,0.03934419,98.28230515],[4.53731348,0.03934594,98.2823246],[4.5373139,0.0393477,98.28234495],[4.53731431,0.03934945,98.28236618],[4.53731473,0.03935121,98.28238827],[4.53731514,0.03935296,98.28241121],[4.53731556,0.03935472,98.28243497],[4.53731598,0.03935647,98.28245954],[4.5373164,0.03935822,98.28248489],[4.53731681,0.03935998,98.282511],[4.53731723,0.03936173,98.28253786],[4.53731765,0.03936349,98.28256544],[4.53731806,0.03936524,98.28259373],[4.53731848,0.039367,98.2826227],[4.5373189,0.03936875,98.28265234],[4.53731932,0.03937051,98.28268262],[4.53731974,0.03937226,98.28271352],[4.53732015,0.03937402,98.28274503],[4.53732057,0.03937577,98.28277712],[4.53732099,0.03937753,98.28280977],[4.53732141,0.03937928,98.28284292],[4.53732183,0.03938104,98.2828765],[4.53732224,0.03938279,98.28291044],[4.53732266,0.03938455,98.28294469],[4.53732308,0.0393863,98.28297916],[4.5373235,0.03938805,98.28301381],[4.53732392,0.03938981,98.28304856],[4.53732433,0.03939156,98.28308334],[4.53732475,0.03939332,98.2831181],[4.53732517,0.03939507,98.28315275],[4.53732559,0.03939683,98.28318725],[4.537326,0.03939858,98.28322151],[4.53732642,0.03940034,98.28325549],[4.53732684,0.03940209,98.2832891],[4.53732726,0.03940385,98.28332228],[4.53732767,0.0394056,98.28335497],[4.53732809,0.03940736,98.2833871],[4.53732851,0.03940911,98.2834186],[4.53732892,0.03941087,98.28344941],[4.53732934,0.03941262,98.28347946],[4.53732975,0.03941438,98.28350869],[4.53733017,0.03941613,98.28353702],[4.53733058,0.03941789,98.2835644],[4.537331,0.03941964,98.28359075],[4.53733141,0.0394214,98.28361601],[4.53733183,0.03942316,98.28364012],[4.53733224,0.03942491,98.283663],[4.53733265,0.03942667,98.2836846],[4.53733307,0.03942842,98.28370491],[4.53733348,0.03943018,98.28372402],[4.53733389,0.03943194,98.283742],[4.5373343,0.03943369,98.28375893],[4.53733471,0.03943545,98.28377488],[4.53733512,0.03943721,98.28378992],[4.53733553,0.03943896,98.28380415],[4.53733594,0.03944072,98.28381763],[4.53733635,0.03944248,98.28383043],[4.53733676,0.03944423,98.28384264],[4.53733717,0.03944599,98.28385433],[4.53733758,0.03944775,98.28386558],[4.53733799,0.03944951,98.28387647],[4.53733839,0.03945126,98.28388706],[4.5373388,0.03945302,98.28389745],[4.53733921,0.03945478,98.2839077],[4.53733962,0.03945653,98.28391789],[4.53734002,0.03945829,98.28392809],[4.53734043,0.03946005,98.2839384],[4.53734084,0.03946181,98.28394887],[4.53734124,0.03946356,98.28395959],[4.53734165,0.03946532,98.28397064],[4.53734206,0.03946708,98.28398209],[4.53734246,0.03946884,98.28399403],[4.53734287,0.0394706,98.28400655],[4.53734328,0.03947235,98.28401977],[4.53734368,0.03947411,98.28403378],[4.53734409,0.03947587,98.28404868],[4.5373445,0.03947763,98.28406458],[4.53734491,0.03947938,98.28408157],[4.53734531,0.03948114,98.28409976],[4.53734572,0.0394829,98.28411925],[4.53734613,0.03948466,98.28414015],[4.53734653,0.03948641,98.28416255],[4.53734694,0.03948817,98.28418656],[4.53734735,0.03948993,98.28421227],[4.53734776,0.03949169,98.28423977],[4.53734817,0.03949344,98.28426905],[4.53734858,0.0394952,98.28430008],[4.53734899,0.03949696,98.28433281],[4.5373494,0.03949871,98.28436724],[4.53734981,0.03950047,98.28440331],[4.53735022,0.03950223,98.284441],[4.53735063,0.03950399,98.28448029],[4.53735104,0.03950574,98.28452114],[4.53735145,0.0395075,98.28456351],[4.53735186,0.03950926,98.28460738],[4.53735227,0.03951101,98.28465272],[4.53735268,0.03951277,98.28469949],[4.53735309,0.03951453,98.28474767],[4.5373535,0.03951628,98.28479722],[4.53735391,0.03951804,98.28484811],[4.53735432,0.0395198,98.28490032],[4.53735473,0.03952155,98.2849538],[4.53735514,0.03952331,98.28500854],[4.53735556,0.03952507,98.28506449],[4.53735597,0.03952682,98.28512163],[4.53735638,0.03952858,98.28517992],[4.53735679,0.03953034,98.28523934],[4.5373572,0.03953209,98.28529985],[4.53735761,0.03953385,98.28536143],[4.53735802,0.03953561,98.28542403],[4.53735843,0.03953736,98.28548764],[4.53735884,0.03953912,98.28555221],[4.53735926,0.03954088,98.28561773],[4.53735967,0.03954263,98.28568415],[4.53736008,0.03954439,98.28575144],[4.53736049,0.03954615,98.28581958],[4.5373609,0.0395479,98.28588853],[4.53736131,0.03954966,98.28595827],[4.53736172,0.03955142,98.28602875],[4.53736213,0.03955317,98.28609995],[4.53736254,0.03955493,98.28617185],[4.53736295,0.03955669,98.2862444],[4.53736336,0.03955845,98.28631758],[4.53736377,0.0395602,98.28639139],[4.53736418,0.03956196,98.28646585],[4.53736459,0.03956372,98.28654095],[4.537365,0.03956547,98.2866167],[4.53736541,0.03956723,98.28669311],[4.53736582,0.03956899,98.28677019],[4.53736623,0.03957075,98.28684794],[4.53736664,0.0395725,98.28692637],[4.53736705,0.03957426,98.28700549],[4.53736746,0.03957602,98.2870853],[4.53736787,0.03957777,98.2871658],[4.53736828,0.03957953,98.28724701],[4.53736869,0.03958129,98.28732893],[4.5373691,0.03958305,98.28741157],[4.53736951,0.0395848,98.28749493],[4.53736992,0.03958656,98.28757903],[4.53737033,0.03958832,98.28766386],[4.53737074,0.03959008,98.28774944],[4.53737114,0.03959183,98.28783576],[4.53737155,0.03959359,98.28792285],[4.53737196,0.03959535,98.28801069],[4.53737237,0.03959711,98.28809931],[4.53737278,0.03959886,98.2881887],[4.53737319,0.03960062,98.28827888],[4.5373736,0.03960238,98.28836985],[4.53737401,0.03960414,98.28846161],[4.53737442,0.03960589,98.28855417],[4.53737483,0.03960765,98.28864755],[4.53737524,0.03960941,98.28874174],[4.53737564,0.03961117,98.28883675],[4.53737605,0.03961292,98.28893259],[4.53737646,0.03961468,98.28902927],[4.53737687,0.03961644,98.28912678],[4.53737728,0.0396182,98.28922512],[4.53737769,0.03961995,98.28932427],[4.5373781,0.03962171,98.28942423],[4.53737851,0.03962347,98.28952497],[4.53737892,0.03962522,98.2896265],[4.53737933,0.03962698,98.28972879],[4.53737974,0.03962874,98.28983184],[4.53738015,0.0396305,98.28993564],[4.53738056,0.03963225,98.29004017],[4.53738097,0.03963401,98.29014543],[4.53738138,0.03963577,98.2902514],[4.53738179,0.03963753,98.29035807],[4.5373822,0.03963928,98.29046542],[4.53738261,0.03964104,98.29057346],[4.53738301,0.0396428,98.29068217],[4.53738342,0.03964456,98.29079153],[4.53738383,0.03964631,98.29090153],[4.53738424,0.03964807,98.29101217],[4.53738465,0.03964983,98.29112343],[4.53738506,0.03965159,98.2912353],[4.53738547,0.03965334,98.29134777],[4.53738588,0.0396551,98.29146083],[4.53738629,0.03965686,98.29157447],[4.5373867,0.03965862,98.29168867],[4.53738711,0.03966037,98.29180343],[4.53738752,0.03966213,98.29191873],[4.53738793,0.03966389,98.29203456],[4.53738834,0.03966565,98.29215091],[4.53738875,0.0396674,98.29226777],[4.53738916,0.03966916,98.29238513],[4.53738957,0.03967092,98.29250298],[4.53738998,0.03967268,98.29262131],[4.53739039,0.03967443,98.29274009],[4.5373908,0.03967619,98.29285934],[4.53739121,0.03967795,98.29297902],[4.53739162,0.03967971,98.29309914],[4.53739202,0.03968146,98.29321972],[4.53739243,0.03968322,98.29334077],[4.53739284,0.03968498,98.29346232],[4.53739325,0.03968674,98.2935844],[4.53739366,0.0396885,98.29370703],[4.53739407,0.03969025,98.29383022],[4.53739448,0.03969201,98.29395401],[4.53739488,0.03969377,98.29407842],[4.53739529,0.03969553,98.29420346],[4.5373957,0.03969728,98.29432917],[4.53739611,0.03969904,98.29445557],[4.53739652,0.0397008,98.29458269],[4.53739693,0.03970256,98.29471054],[4.53739733,0.03970432,98.29483915],[4.53739774,0.03970607,98.29496855],[4.53739815,0.03970783,98.29509876],[4.53739856,0.03970959,98.2952298],[4.53739896,0.03971135,98.29536169],[4.53739937,0.03971311,98.29549447],[4.53739978,0.03971486,98.29562816],[4.53740019,0.03971662,98.29576278],[4.53740059,0.03971838,98.29589835],[4.537401,0.03972014,98.29603489],[4.53740141,0.03972188,98.29617244],[4.53740181,0.03972364,98.29631102],[4.53740222,0.0397254,98.29645064],[4.53740263,0.03972716,98.29659134],[4.53740304,0.03972891,98.29673314],[4.53740344,0.03973067,98.29687606],[4.53740385,0.03973243,98.29702012],[4.53740426,0.03973419,98.29716536],[4.53740467,0.03973595,98.29731179],[4.53740507,0.03973771,98.29745944],[4.53740548,0.03973946,98.29760832],[4.53740589,0.03974122,98.29775848],[4.5374063,0.03974298,98.29790993],[4.5374067,0.03974474,98.29806268],[4.53740711,0.0397465,98.29821678],[4.53740752,0.03974825,98.29837224],[4.53740793,0.03975001,98.29852908],[4.53740834,0.03975177,98.29868734],[4.53740874,0.03975353,98.29884702],[4.53740915,0.03975529,98.29900817],[4.53740956,0.03975705,98.2991708],[4.53740997,0.0397588,98.29933493],[4.53741037,0.03976056,98.29950059],[4.53741078,0.03976232,98.2996678],[4.53741119,0.03976408,98.29983656],[4.5374116,0.03976584,98.30000687],[4.53741201,0.03976759,98.30017869],[4.53741242,0.03976935,98.30035201],[4.53741282,0.03977111,98.30052681],[4.53741323,0.03977287,98.30070308],[4.53741364,0.03977463,98.30088079],[4.53741405,0.03977638,98.30105992],[4.53741446,0.03977814,98.30124047],[4.53741487,0.0397799,98.30142241],[4.53741527,0.03978166,98.30160572],[4.53741568,0.03978342,98.30179038],[4.53741609,0.03978517,98.30197638],[4.5374165,0.03978693,98.30216369],[4.53741691,0.03978869,98.30235231],[4.53741731,0.03979045,98.3025422],[4.53741772,0.03979221,98.30273336],[4.53741813,0.03979396,98.30292576],[4.53741854,0.03979572,98.30311939],[4.53741895,0.03979748,98.30331422],[4.53741935,0.03979924,98.30351025],[4.53741976,0.039801,98.30370745],[4.53742017,0.03980275,98.3039058],[4.53742058,0.03980451,98.30410528],[4.53742098,0.03980627,98.30430589],[4.53742139,0.03980803,98.30450759],[4.5374218,0.03980979,98.30471037],[4.53742221,0.03981154,98.30491421],[4.53742261,0.0398133,98.3051191],[4.53742302,0.03981506,98.30532501],[4.53742343,0.03981682,98.30553194],[4.53742384,0.03981858,98.30573985],[4.53742424,0.03982033,98.30594873],[4.53742465,0.03982209,98.30615857],[4.53742506,0.03982385,98.30636934],[4.53742546,0.03982561,98.30658103],[4.53742587,0.03982737,98.30679362],[4.53742627,0.03982913,98.30700709],[4.53742668,0.03983088,98.30722142],[4.53742709,0.03983264,98.3074366],[4.53742749,0.0398344,98.3076526],[4.5374279,0.03983616,98.30786942],[4.5374283,0.03983792,98.30808702],[4.53742871,0.03983968,98.3083054],[4.53742911,0.03984144,98.30852453],[4.53742952,0.03984319,98.3087444],[4.53742992,0.03984495,98.30896498],[4.53743033,0.03984671,98.30918627],[4.53743073,0.03984847,98.30940828],[4.53743114,0.03985023,98.30963105],[4.53743154,0.03985199,98.30985464],[4.53743194,0.03985375,98.31007909],[4.53743235,0.0398555,98.31030445],[4.53743275,0.03985726,98.31053076],[4.53743316,0.03985902,98.31075808],[4.53743356,0.03986078,98.31098646],[4.53743396,0.03986254,98.31121593],[4.53743437,0.0398643,98.31144656],[4.53743477,0.03986606,98.31167838],[4.53743517,0.03986782,98.31191145],[4.53743558,0.03986958,98.31214581],[4.53743598,0.03987133,98.31238151],[4.53743638,0.03987309,98.3126186],[4.53743678,0.03987485,98.31285713],[4.53743719,0.03987661,98.31309714],[4.53743759,0.03987837,98.31333868],[4.53743799,0.03988013,98.3135818],[4.5374384,0.03988189,98.31382655],[4.5374388,0.03988365,98.31407297],[4.5374392,0.03988541,98.31432112],[4.53743961,0.03988716,98.31457103],[4.53744001,0.03988892,98.31482276],[4.53744041,0.03989068,98.31507636],[4.53744081,0.03989244,98.31533187],[4.53744122,0.0398942,98.31558933],[4.53744162,0.03989596,98.3158488],[4.53744202,0.03989772,98.31611034],[4.53744243,0.03989948,98.31637398],[4.53744283,0.03990124,98.31663978],[4.53744323,0.03990299,98.3169078],[4.53744364,0.03990475,98.3171781],[4.53744404,0.03990651,98.31745071],[4.53744444,0.03990827,98.31772569],[4.53744485,0.03991003,98.31800311],[4.53744525,0.03991179,98.318283],[4.53744565,0.03991355,98.31856542],[4.53744606,0.03991531,98.31885043],[4.53744646,0.03991706,98.31913807],[4.53744687,0.03991882,98.31942839],[4.53744727,0.03992058,98.31972136],[4.53744767,0.03992234,98.32001697],[4.53744808,0.0399241,98.32031518],[4.53744848,0.03992586,98.32061597],[4.53744888,0.03992762,98.32091932],[4.53744928,0.03992938,98.32122519],[4.53744969,0.03993113,98.32153355],[4.53745009,0.03993289,98.32184439],[4.53745049,0.03993465,98.32215767],[4.53745089,0.03993641,98.32247336],[4.5374513,0.03993817,98.32279145],[4.5374517,0.03993993,98.3231119],[4.5374521,0.03994169,98.32343468],[4.5374525,0.03994345,98.32375978],[4.5374529,0.03994521,98.32408715],[4.5374533,0.03994697,98.32441678],[4.5374537,0.03994873,98.32474864],[4.5374541,0.03995049,98.32508271],[4.5374545,0.03995225,98.32541894],[4.5374549,0.03995401,98.32575733],[4.53745529,0.03995577,98.32609784],[4.53745569,0.03995753,98.32644044],[4.53745609,0.03995928,98.32678511],[4.53745649,0.03996104,98.32713182],[4.53745689,0.0399628,98.32748054],[4.53745729,0.03996456,98.32783125],[4.53745769,0.03996632,98.32818393],[4.53745809,0.03996808,98.32853853],[4.53745849,0.03996984,98.32889504],[4.5374589,0.0399716,98.32925319],[4.5374593,0.03997336,98.32961256],[4.5374597,0.03997512,98.32997269],[4.5374601,0.03997688,98.33033313],[4.53746051,0.03997864,98.33069345],[4.53746091,0.03998039,98.33105318],[4.53746131,0.03998215,98.33141188],[4.53746172,0.03998391,98.33176911],[4.53746212,0.03998567,98.33212442],[4.53746252,0.03998743,98.33247736],[4.53746292,0.03998919,98.33282749],[4.53746333,0.03999095,98.33317437],[4.53746373,0.03999271,98.33351755],[4.53746413,0.03999446,98.33385658],[4.53746453,0.03999622,98.33419102],[4.53746493,0.03999798,98.33452045],[4.53746533,0.03999974,98.33484486],[4.53746573,0.0400015,98.33516462],[4.53746613,0.04000326,98.33548011],[4.53746653,0.04000502,98.33579172],[4.53746692,0.04000678,98.33609985],[4.53746732,0.04000854,98.33640487],[4.53746772,0.0400103,98.33670718],[4.53746812,0.04001206,98.33700716],[4.53746851,0.04001382,98.3373052],[4.53746891,0.04001558,98.33760168],[4.53746931,0.04001734,98.33789698],[4.5374697,0.0400191,98.3381915],[4.5374701,0.04002086,98.33848561],[4.53747049,0.04002262,98.3387797],[4.53747089,0.04002438,98.33907415],[4.53747129,0.04002614,98.33936935],[4.53747168,0.0400279,98.33966568],[4.53747208,0.04002966,98.33996351],[4.53747248,0.04003142,98.34026302],[4.53747288,0.04003318,98.34056421],[4.53747327,0.04003494,98.34086706],[4.53747367,0.0400367,98.34117156],[4.53747407,0.04003846,98.3414777],[4.53747446,0.04004022,98.34178547],[4.53747486,0.04004198,98.34209486],[4.53747526,0.04004374,98.34240585],[4.53747566,0.0400455,98.34271844],[4.53747605,0.04004726,98.34303262],[4.53747645,0.04004902,98.34334836],[4.53747685,0.04005078,98.34366567],[4.53747724,0.04005254,98.34398452],[4.53747764,0.0400543,98.34430491],[4.53747804,0.04005606,98.34462683],[4.53747843,0.04005782,98.34495026],[4.53747883,0.04005958,98.3452752],[4.53747923,0.04006134,98.34560163],[4.53747962,0.0400631,98.34592954],[4.53748002,0.04006486,98.34625892],[4.53748042,0.04006662,98.34658975],[4.53748081,0.04006838,98.34692203],[4.53748121,0.04007014,98.34725575],[4.53748161,0.0400719,98.34759089],[4.537482,0.04007366,98.34792745],[4.5374824,0.04007542,98.3482654],[4.53748279,0.04007718,98.34860474],[4.53748319,0.04007894,98.34894547],[4.53748359,0.0400807,98.34928756],[4.53748398,0.04008246,98.349631],[4.53748438,0.04008422,98.34997579],[4.53748477,0.04008598,98.35032192],[4.53748517,0.04008774,98.35066936],[4.53748557,0.0400895,98.35101812],[4.53748596,0.04009126,98.35136818],[4.53748636,0.04009302,98.35171952],[4.53748675,0.04009478,98.35207215],[4.53748715,0.04009654,98.35242603],[4.53748754,0.0400983,98.35278118],[4.53748794,0.04010006,98.35313757],[4.53748834,0.04010182,98.35349519],[4.53748873,0.04010358,98.35385403],[4.53748913,0.04010534,98.35421408],[4.53748952,0.0401071,98.35457533],[4.53748992,0.04010886,98.35493777],[4.53749031,0.04011062,98.35530138],[4.53749071,0.04011238,98.35566617],[4.5374911,0.04011414,98.3560321],[4.5374915,0.0401159,98.35639918],[4.53749189,0.04011766,98.3567674],[4.53749229,0.04011942,98.35713673],[4.53749268,0.04012118,98.35750718],[4.53749308,0.04012294,98.35787872],[4.53749347,0.0401247,98.35825136],[4.53749387,0.04012646,98.35862507],[4.53749426,0.04012822,98.35899985],[4.53749466,0.04012998,98.35937568],[4.53749505,0.04013174,98.35975256],[4.53749545,0.0401335,98.36013047],[4.53749584,0.04013526,98.36050941],[4.53749624,0.04013702,98.36088936],[4.53749663,0.04013878,98.36127031],[4.53749703,0.04014054,98.36165225],[4.53749742,0.0401423,98.36203517],[4.53749782,0.04014406,98.36241906],[4.53749821,0.04014583,98.36280391],[4.5374986,0.04014759,98.3631897],[4.537499,0.04014935,98.36357643],[4.53749939,0.04015111,98.36396409],[4.53749979,0.04015287,98.36435266],[4.53750018,0.04015463,98.36474214],[4.53750058,0.04015639,98.36513251],[4.53750097,0.04015815,98.36552376],[4.53750136,0.04015991,98.36591588],[4.53750176,0.04016167,98.36630887],[4.53750215,0.04016343,98.3667027],[4.53750255,0.04016519,98.36709738],[4.53750294,0.04016695,98.36749288],[4.53750333,0.04016871,98.36788921],[4.53750373,0.04017047,98.36828634],[4.53750412,0.04017223,98.36868427],[4.53750451,0.04017399,98.36908299],[4.53750491,0.04017575,98.36945629],[4.5375053,0.04017751,98.36877606],[4.5375057,0.04017927,98.36809767],[4.53750609,0.04018103,98.36742114],[4.5374913,0.0401844,98.36742114]]],"type":"Polygon"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1003400","id":2,"type":"none","predecessorId":2,"sOffset":120.7368344413}},{"geometry":{"coordinates":[[[4.53707988,0.03909229,97.9645388],[4.53707938,0.03909055,97.9644832],[4.53707888,0.03908882,97.96443095],[4.53707839,0.03908709,97.96439156],[4.5370779,0.03908535,97.96436509],[4.53707741,0.03908361,97.96434923],[4.53707693,0.03908188,97.9643417],[4.53707645,0.03908014,97.96434019],[4.53707597,0.0390784,97.9643424],[4.53707549,0.03907666,97.96434606],[4.537075,0.03907492,97.96434886],[4.53707452,0.03907319,97.96434853],[4.53707404,0.03907145,97.96434275],[4.53707355,0.03906971,97.96432959],[4.53707306,0.03906798,97.96431159],[4.53707257,0.03906624,97.96429463],[4.53707209,0.0390645,97.96428466],[4.5370716,0.03906277,97.96428756],[4.53707112,0.03906103,97.9643038],[4.53707065,0.03905929,97.96432637],[4.53707017,0.03905755,97.96434826],[4.53706969,0.03905581,97.96436245],[4.5370692,0.03905407,97.96436195],[4.53706871,0.03905234,97.96434744],[4.53706822,0.0390506,97.96433457],[4.53706774,0.03904886,97.96432581],[4.53706725,0.03904713,97.96432003],[4.53706676,0.03904539,97.96431612],[4.53706627,0.03904365,97.96431297],[4.53706579,0.03904192,97.96430946],[4.5370653,0.03904018,97.96430447],[4.53706481,0.03903845,97.9642969],[4.53706432,0.03903671,97.96428546],[4.53706382,0.03903497,97.96426722],[4.53706332,0.03903324,97.96423936],[4.53706282,0.03903151,97.96420153],[4.53706232,0.03902977,97.96415451],[4.53706181,0.03902804,97.96409912],[4.5370613,0.03902631,97.96403618],[4.53706079,0.03902458,97.96396649],[4.53706028,0.03902285,97.96389087],[4.53705976,0.03902112,97.96381014],[4.53705925,0.03901939,97.96372511],[4.53705873,0.03901766,97.96363672],[4.53705821,0.03901593,97.96354625],[4.53705769,0.0390142,97.96345501],[4.53705717,0.03901247,97.9633643],[4.53705665,0.03901074,97.963275],[4.53705613,0.03900902,97.9631877],[4.53705561,0.03900729,97.96310292],[4.53705509,0.03900556,97.96302122],[4.53705457,0.03900383,97.96294313],[4.53705406,0.0390021,97.96286903],[4.53705354,0.03900037,97.96279922],[4.53705303,0.03899864,97.96273345],[4.53705251,0.03899691,97.96267084],[4.537052,0.03899518,97.96261066],[4.53705149,0.03899344,97.96255249],[4.53705098,0.03899171,97.96249597],[4.53705046,0.03898998,97.96244075],[4.53704995,0.03898825,97.96238644],[4.53704944,0.03898652,97.96233259],[4.53704893,0.03898479,97.96227877],[4.53704841,0.03898306,97.96222454],[4.5370479,0.03898133,97.96216947],[4.53704739,0.0389796,97.96211325],[4.53704687,0.03897787,97.96205562],[4.53704636,0.03897614,97.96199634],[4.53704584,0.03897441,97.96193515],[4.53704533,0.03897268,97.96187174],[4.53704481,0.03897095,97.96180564],[4.53704429,0.03896922,97.96173638],[4.53704377,0.03896749,97.96166345],[4.53704325,0.03896576,97.96158638],[4.53704272,0.03896403,97.961505],[4.5370422,0.03896231,97.96141948],[4.53704167,0.03896058,97.96132998],[4.53704114,0.03895885,97.96123666],[4.53704061,0.03895713,97.96113964],[4.53704008,0.0389554,97.96103905],[4.53703955,0.03895367,97.96093499],[4.53703901,0.03895195,97.96082761],[4.53703848,0.03895022,97.96071703],[4.53703794,0.0389485,97.96060338],[4.5370374,0.03894677,97.96048679],[4.53703687,0.03894505,97.96036739],[4.53703633,0.03894332,97.9602453],[4.53703578,0.0389416,97.96012067],[4.53703524,0.03893988,97.95999378],[4.5370347,0.03893815,97.9598652],[4.53703416,0.03893643,97.95973551],[4.53703361,0.03893471,97.95960531],[4.53703307,0.03893298,97.95947518],[4.53703253,0.03893126,97.95934564],[4.53703198,0.03892954,97.95921695],[4.53703144,0.03892782,97.95908932],[4.53703089,0.03892609,97.95896295],[4.53703035,0.03892437,97.95883809],[4.53702981,0.03892265,97.95871518],[4.53702927,0.03892092,97.9585947],[4.53702872,0.0389192,97.95847709],[4.53702818,0.03891747,97.95836254],[4.53702764,0.03891575,97.95825122],[4.5370271,0.03891403,97.95814326],[4.53702657,0.0389123,97.9580385],[4.53702603,0.03891058,97.95793632],[4.53702549,0.03890885,97.95783605],[4.53702495,0.03890713,97.95773703],[4.53702442,0.0389054,97.9576386],[4.53702388,0.03890368,97.9575401],[4.53702334,0.03890196,97.957441],[4.5370228,0.03890023,97.95734111],[4.53702226,0.03889851,97.95724034],[4.53702172,0.03889678,97.95713858],[4.53702118,0.03889506,97.95703572],[4.53702064,0.03889334,97.95693167],[4.5370201,0.03889161,97.95682631],[4.53701956,0.03888989,97.95671956],[4.53701902,0.03888816,97.95661129],[4.53701848,0.03888644,97.95650142],[4.53701793,0.03888472,97.95638983],[4.53701739,0.038883,97.95627641],[4.53701684,0.03888127,97.95616088],[4.53701629,0.03887955,97.95604283],[4.53701575,0.03887783,97.95592221],[4.5370152,0.03887611,97.95579911],[4.53701465,0.03887439,97.95567362],[4.5370141,0.03887267,97.95554603],[4.53701354,0.03887094,97.95541665],[4.53701299,0.03886922,97.95528579],[4.53701244,0.0388675,97.95515375],[4.53701189,0.03886578,97.95502082],[4.53701133,0.03886406,97.95488709],[4.53701078,0.03886234,97.95475266],[4.53701022,0.03886062,97.9546176],[4.53700967,0.0388589,97.954482],[4.53700911,0.03885718,97.95434594],[4.53700856,0.03885546,97.95420949],[4.537008,0.03885374,97.95407275],[4.53700744,0.03885202,97.95393579],[4.53700689,0.0388503,97.95379869],[4.53700633,0.03884858,97.95366154],[4.53700577,0.03884686,97.95352442],[4.53700522,0.03884514,97.9533874],[4.53700466,0.03884342,97.95325058],[4.5370041,0.0388417,97.95311402],[4.53700354,0.03883998,97.95297788],[4.53700299,0.03883826,97.9528425],[4.53700243,0.03883655,97.95270831],[4.53700187,0.03883483,97.95257573],[4.53700131,0.03883311,97.95244516],[4.53700076,0.03883139,97.95231689],[4.5370002,0.03882967,97.95219111],[4.53699965,0.03882795,97.95206797],[4.53699909,0.03882623,97.95194757],[4.53699854,0.0388245,97.95182974],[4.53699799,0.03882278,97.95171425],[4.53699744,0.03882106,97.95160088],[4.53699688,0.03881934,97.95148939],[4.53699633,0.03881762,97.95137954],[4.53699578,0.0388159,97.95127112],[4.53699523,0.03881418,97.95116389],[4.53699468,0.03881246,97.95105762],[4.53699413,0.03881074,97.95095208],[4.53699358,0.03880902,97.95084705],[4.53699303,0.0388073,97.95074228],[4.53699247,0.03880558,97.95063756],[4.53699192,0.03880385,97.95053265],[4.53699137,0.03880213,97.95042733],[4.53699082,0.03880041,97.95032136],[4.53699027,0.03879869,97.95021451],[4.53698971,0.03879697,97.95010657],[4.53698916,0.03879525,97.94999729],[4.5369886,0.03879353,97.94988646],[4.53698805,0.03879181,97.94977384],[4.53698749,0.03879009,97.9496592],[4.53698693,0.03878837,97.94954232],[4.53698638,0.03878665,97.94942297],[4.53698582,0.03878493,97.94930092],[4.53698526,0.03878321,97.94917594],[4.53698469,0.0387815,97.94904781],[4.53698413,0.03877978,97.9489163],[4.53698357,0.03877806,97.94878117],[4.53698326,0.03877713,97.94870629],[4.53702699,0.0387665,97.94870629],[4.5370273,0.03876743,97.94878117],[4.53702786,0.03876915,97.9489163],[4.53702843,0.03877087,97.94904781],[4.53702899,0.03877259,97.94917594],[4.53702955,0.03877431,97.94930092],[4.53703011,0.03877603,97.94942297],[4.53703066,0.03877775,97.94954232],[4.53703122,0.03877947,97.9496592],[4.53703178,0.03878119,97.94977384],[4.53703233,0.03878291,97.94988646],[4.53703289,0.03878463,97.94999729],[4.53703344,0.03878635,97.95010657],[4.53703399,0.03878807,97.95021451],[4.53703454,0.03878979,97.95032136],[4.5370351,0.03879151,97.95042733],[4.53703565,0.03879324,97.95053265],[4.5370362,0.03879496,97.95063756],[4.53703675,0.03879668,97.95074228],[4.5370373,0.0387984,97.95084705],[4.53703785,0.03880012,97.95095208],[4.5370384,0.03880184,97.95105762],[4.53703895,0.03880356,97.95116389],[4.5370395,0.03880528,97.95127112],[4.53704005,0.03880701,97.95137954],[4.5370406,0.03880873,97.95148939],[4.53704115,0.03881045,97.95160088],[4.5370417,0.03881217,97.95171425],[4.53704226,0.03881389,97.95182974],[4.53704281,0.03881561,97.95194757],[4.53704336,0.03881733,97.95206797],[4.53704392,0.03881905,97.95219111],[4.53704447,0.03882077,97.95231689],[4.53704503,0.03882249,97.95244516],[4.53704558,0.03882421,97.95257573],[4.53704614,0.03882593,97.95270831],[4.5370467,0.03882765,97.9528425],[4.53704725,0.03882937,97.95297788],[4.53704781,0.03883109,97.95311402],[4.53704837,0.03883281,97.95325058],[4.53704892,0.03883453,97.9533874],[4.53704948,0.03883625,97.95352442],[4.53705004,0.03883797,97.95366154],[4.53705059,0.03883969,97.95379869],[4.53705115,0.03884141,97.95393579],[4.53705171,0.03884313,97.95407275],[4.53705226,0.03884485,97.95420949],[4.53705282,0.03884657,97.95434594],[4.53705337,0.03884829,97.954482],[4.53705393,0.03885002,97.9546176],[4.53705448,0.03885174,97.95475266],[4.53705503,0.03885346,97.95488709],[4.53705559,0.03885518,97.95502082],[4.53705614,0.0388569,97.95515375],[4.53705669,0.03885862,97.95528579],[4.53705724,0.03886034,97.95541665],[4.53705779,0.03886206,97.95554603],[4.53705834,0.03886378,97.95567362],[4.53705889,0.03886551,97.95579911],[4.53705944,0.03886723,97.95592221],[4.53705999,0.03886895,97.95604283],[4.53706054,0.03887067,97.95616088],[4.53706108,0.0388724,97.95627641],[4.53706163,0.03887412,97.95638983],[4.53706217,0.03887584,97.95650142],[4.53706271,0.03887756,97.95661129],[4.53706325,0.03887929,97.95671956],[4.53706379,0.03888101,97.95682631],[4.53706433,0.03888274,97.95693167],[4.53706487,0.03888446,97.95703572],[4.53706541,0.03888618,97.95713858],[4.53706595,0.03888791,97.95724034],[4.53706649,0.03888963,97.95734111],[4.53706703,0.03889136,97.957441],[4.53706757,0.03889308,97.9575401],[4.5370681,0.03889481,97.9576386],[4.53706864,0.03889653,97.95773703],[4.53706918,0.03889826,97.95783605],[4.53706971,0.03889998,97.95793632],[4.53707025,0.03890171,97.9580385],[4.53707079,0.03890343,97.95814326],[4.53707132,0.03890516,97.95825122],[4.53707186,0.03890688,97.95836254],[4.5370724,0.03890861,97.95847709],[4.53707295,0.03891033,97.9585947],[4.53707349,0.03891205,97.95871518],[4.53707403,0.03891378,97.95883809],[4.53707457,0.0389155,97.95896295],[4.53707512,0.03891722,97.95908932],[4.53707566,0.03891895,97.95921695],[4.5370762,0.03892067,97.95934564],[4.53707674,0.03892239,97.95947518],[4.53707729,0.03892412,97.95960531],[4.53707783,0.03892584,97.95973551],[4.53707837,0.03892756,97.9598652],[4.53707892,0.03892929,97.95999378],[4.53707946,0.03893101,97.96012067],[4.53708,0.03893274,97.9602453],[4.53708054,0.03893446,97.96036739],[4.53708107,0.03893618,97.96048679],[4.53708161,0.03893791,97.96060338],[4.53708215,0.03893964,97.96071703],[4.53708268,0.03894136,97.96082761],[4.53708322,0.03894309,97.96093499],[4.53708375,0.03894481,97.96103905],[4.53708428,0.03894654,97.96113964],[4.53708481,0.03894827,97.96123666],[4.53708534,0.03894999,97.96132998],[4.53708586,0.03895172,97.96141948],[4.53708639,0.03895345,97.961505],[4.53708691,0.03895518,97.96158638],[4.53708743,0.03895691,97.96166345],[4.53708795,0.03895864,97.96173638],[4.53708847,0.03896036,97.96180564],[4.53708899,0.03896209,97.96187174],[4.5370895,0.03896382,97.96193515],[4.53709002,0.03896555,97.96199634],[4.53709053,0.03896729,97.96205562],[4.53709105,0.03896902,97.96211325],[4.53709156,0.03897075,97.96216947],[4.53709207,0.03897248,97.96222454],[4.53709258,0.03897421,97.96227877],[4.5370931,0.03897594,97.96233259],[4.53709361,0.03897767,97.96238644],[4.53709412,0.0389794,97.96244075],[4.53709463,0.03898113,97.96249597],[4.53709514,0.03898287,97.96255249],[4.53709565,0.0389846,97.96261066],[4.53709616,0.03898633,97.96267084],[4.53709668,0.03898806,97.96273345],[4.53709719,0.03898979,97.96279922],[4.5370977,0.03899152,97.96286903],[4.53709822,0.03899325,97.96294313],[4.53709874,0.03899498,97.96302122],[4.53709926,0.03899671,97.96310292],[4.53709977,0.03899844,97.9631877],[4.53710029,0.03900017,97.963275],[4.53710081,0.0390019,97.9633643],[4.53710133,0.03900363,97.96345501],[4.53710185,0.03900536,97.96354625],[4.53710237,0.03900709,97.96363672],[4.53710289,0.03900881,97.96372511],[4.53710341,0.03901054,97.96381014],[4.53710392,0.03901227,97.96389087],[4.53710443,0.03901401,97.96396649],[4.53710495,0.03901574,97.96403618],[4.53710545,0.03901747,97.96409912],[4.53710596,0.0390192,97.96415451],[4.53710646,0.03902093,97.96420153],[4.53710696,0.03902267,97.96423936],[4.53710746,0.0390244,97.96426722],[4.53710795,0.03902614,97.96428546],[4.53710844,0.03902787,97.9642969],[4.53710893,0.03902961,97.96430447],[4.53710942,0.03903135,97.96430946],[4.53710991,0.03903308,97.96431297],[4.53711039,0.03903482,97.96431612],[4.53711088,0.03903656,97.96432003],[4.53711137,0.0390383,97.96432581],[4.53711186,0.03904003,97.96433457],[4.53711235,0.03904177,97.96434744],[4.53711284,0.03904351,97.96436195],[4.53711332,0.03904524,97.96436245],[4.5371138,0.03904698,97.96434826],[4.53711428,0.03904872,97.96432637],[4.53711475,0.03905046,97.9643038],[4.53711523,0.0390522,97.96428756],[4.53711571,0.03905394,97.96428466],[4.5371162,0.03905567,97.96429463],[4.53711669,0.03905741,97.96431159],[4.53711718,0.03905915,97.96432959],[4.53711766,0.03906088,97.96434275],[4.53711815,0.03906262,97.96434853],[4.53711863,0.03906436,97.96434886],[4.53711911,0.0390661,97.96434606],[4.53711959,0.03906784,97.9643424],[4.53712007,0.03906958,97.96434019],[4.53712055,0.03907131,97.9643417],[4.53712103,0.03907305,97.96434923],[4.53712152,0.03907479,97.96436509],[4.53712201,0.03907653,97.96439156],[4.5371225,0.03907826,97.96443095],[4.537123,0.03908,97.9644832],[4.53712349,0.03908173,97.9645388],[4.53707988,0.03909229,97.9645388]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1003400","id":-6,"type":"none","predecessorId":-5,"sOffset":249.1731744511}},{"geometry":{"coordinates":[[[4.53712349,0.03908173,97.9645388],[4.537123,0.03908,97.9644832],[4.5371225,0.03907826,97.96443095],[4.53712201,0.03907653,97.96439156],[4.53712152,0.03907479,97.96436509],[4.53712103,0.03907305,97.96434923],[4.53712055,0.03907131,97.9643417],[4.53712007,0.03906958,97.96434019],[4.53711959,0.03906784,97.9643424],[4.53711911,0.0390661,97.96434606],[4.53711863,0.03906436,97.96434886],[4.53711815,0.03906262,97.96434853],[4.53711766,0.03906088,97.96434275],[4.53711718,0.03905915,97.96432959],[4.53711669,0.03905741,97.96431159],[4.5371162,0.03905567,97.96429463],[4.53711571,0.03905394,97.96428466],[4.53711523,0.0390522,97.96428756],[4.53711475,0.03905046,97.9643038],[4.53711428,0.03904872,97.96432637],[4.5371138,0.03904698,97.96434826],[4.53711332,0.03904524,97.96436245],[4.53711284,0.03904351,97.96436195],[4.53711235,0.03904177,97.96434744],[4.53711186,0.03904003,97.96433457],[4.53711137,0.0390383,97.96432581],[4.53711088,0.03903656,97.96432003],[4.53711039,0.03903482,97.96431612],[4.53710991,0.03903308,97.96431297],[4.53710942,0.03903135,97.96430946],[4.53710893,0.03902961,97.96430447],[4.53710844,0.03902787,97.9642969],[4.53710795,0.03902614,97.96428546],[4.53710746,0.0390244,97.96426722],[4.53710696,0.03902267,97.96423936],[4.53710646,0.03902093,97.96420153],[4.53710596,0.0390192,97.96415451],[4.53710545,0.03901747,97.96409912],[4.53710495,0.03901574,97.96403618],[4.53710443,0.03901401,97.96396649],[4.53710392,0.03901227,97.96389087],[4.53710341,0.03901054,97.96381014],[4.53710289,0.03900881,97.96372511],[4.53710237,0.03900709,97.96363672],[4.53710185,0.03900536,97.96354625],[4.53710133,0.03900363,97.96345501],[4.53710081,0.0390019,97.9633643],[4.53710029,0.03900017,97.963275],[4.53709977,0.03899844,97.9631877],[4.53709926,0.03899671,97.96310292],[4.53709874,0.03899498,97.96302122],[4.53709822,0.03899325,97.96294313],[4.5370977,0.03899152,97.96286903],[4.53709719,0.03898979,97.96279922],[4.53709668,0.03898806,97.96273345],[4.53709616,0.03898633,97.96267084],[4.53709565,0.0389846,97.96261066],[4.53709514,0.03898287,97.96255249],[4.53709463,0.03898113,97.96249597],[4.53709412,0.0389794,97.96244075],[4.53709361,0.03897767,97.96238644],[4.5370931,0.03897594,97.96233259],[4.53709258,0.03897421,97.96227877],[4.53709207,0.03897248,97.96222454],[4.53709156,0.03897075,97.96216947],[4.53709105,0.03896902,97.96211325],[4.53709053,0.03896729,97.96205562],[4.53709002,0.03896555,97.96199634],[4.5370895,0.03896382,97.96193515],[4.53708899,0.03896209,97.96187174],[4.53708847,0.03896036,97.96180564],[4.53708795,0.03895864,97.96173638],[4.53708743,0.03895691,97.96166345],[4.53708691,0.03895518,97.96158638],[4.53708639,0.03895345,97.961505],[4.53708586,0.03895172,97.96141948],[4.53708534,0.03894999,97.96132998],[4.53708481,0.03894827,97.96123666],[4.53708428,0.03894654,97.96113964],[4.53708375,0.03894481,97.96103905],[4.53708322,0.03894309,97.96093499],[4.53708268,0.03894136,97.96082761],[4.53708215,0.03893964,97.96071703],[4.53708161,0.03893791,97.96060338],[4.53708107,0.03893618,97.96048679],[4.53708054,0.03893446,97.96036739],[4.53708,0.03893274,97.9602453],[4.53707946,0.03893101,97.96012067],[4.53707892,0.03892929,97.95999378],[4.53707837,0.03892756,97.9598652],[4.53707783,0.03892584,97.95973551],[4.53707729,0.03892412,97.95960531],[4.53707674,0.03892239,97.95947518],[4.5370762,0.03892067,97.95934564],[4.53707566,0.03891895,97.95921695],[4.53707512,0.03891722,97.95908932],[4.53707457,0.0389155,97.95896295],[4.53707403,0.03891378,97.95883809],[4.53707349,0.03891205,97.95871518],[4.53707295,0.03891033,97.9585947],[4.5370724,0.03890861,97.95847709],[4.53707186,0.03890688,97.95836254],[4.53707132,0.03890516,97.95825122],[4.53707079,0.03890343,97.95814326],[4.53707025,0.03890171,97.9580385],[4.53706971,0.03889998,97.95793632],[4.53706918,0.03889826,97.95783605],[4.53706864,0.03889653,97.95773703],[4.5370681,0.03889481,97.9576386],[4.53706757,0.03889308,97.9575401],[4.53706703,0.03889136,97.957441],[4.53706649,0.03888963,97.95734111],[4.53706595,0.03888791,97.95724034],[4.53706541,0.03888618,97.95713858],[4.53706487,0.03888446,97.95703572],[4.53706433,0.03888274,97.95693167],[4.53706379,0.03888101,97.95682631],[4.53706325,0.03887929,97.95671956],[4.53706271,0.03887756,97.95661129],[4.53706217,0.03887584,97.95650142],[4.53706163,0.03887412,97.95638983],[4.53706108,0.0388724,97.95627641],[4.53706054,0.03887067,97.95616088],[4.53705999,0.03886895,97.95604283],[4.53705944,0.03886723,97.95592221],[4.53705889,0.03886551,97.95579911],[4.53705834,0.03886378,97.95567362],[4.53705779,0.03886206,97.95554603],[4.53705724,0.03886034,97.95541665],[4.53705669,0.03885862,97.95528579],[4.53705614,0.0388569,97.95515375],[4.53705559,0.03885518,97.95502082],[4.53705503,0.03885346,97.95488709],[4.53705448,0.03885174,97.95475266],[4.53705393,0.03885002,97.9546176],[4.53705337,0.03884829,97.954482],[4.53705282,0.03884657,97.95434594],[4.53705226,0.03884485,97.95420949],[4.53705171,0.03884313,97.95407275],[4.53705115,0.03884141,97.95393579],[4.53705059,0.03883969,97.95379869],[4.53705004,0.03883797,97.95366154],[4.53704948,0.03883625,97.95352442],[4.53704892,0.03883453,97.9533874],[4.53704837,0.03883281,97.95325058],[4.53704781,0.03883109,97.95311402],[4.53704725,0.03882937,97.95297788],[4.5370467,0.03882765,97.9528425],[4.53704614,0.03882593,97.95270831],[4.53704558,0.03882421,97.95257573],[4.53704503,0.03882249,97.95244516],[4.53704447,0.03882077,97.95231689],[4.53704392,0.03881905,97.95219111],[4.53704336,0.03881733,97.95206797],[4.53704281,0.03881561,97.95194757],[4.53704226,0.03881389,97.95182974],[4.5370417,0.03881217,97.95171425],[4.53704115,0.03881045,97.95160088],[4.5370406,0.03880873,97.95148939],[4.53704005,0.03880701,97.95137954],[4.5370395,0.03880528,97.95127112],[4.53703895,0.03880356,97.95116389],[4.5370384,0.03880184,97.95105762],[4.53703785,0.03880012,97.95095208],[4.5370373,0.0387984,97.95084705],[4.53703675,0.03879668,97.95074228],[4.5370362,0.03879496,97.95063756],[4.53703565,0.03879324,97.95053265],[4.5370351,0.03879151,97.95042733],[4.53703454,0.03878979,97.95032136],[4.53703399,0.03878807,97.95021451],[4.53703344,0.03878635,97.95010657],[4.53703289,0.03878463,97.94999729],[4.53703233,0.03878291,97.94988646],[4.53703178,0.03878119,97.94977384],[4.53703122,0.03877947,97.9496592],[4.53703066,0.03877775,97.94954232],[4.53703011,0.03877603,97.94942297],[4.53702955,0.03877431,97.94930092],[4.53702899,0.03877259,97.94917594],[4.53702843,0.03877087,97.94904781],[4.53702786,0.03876915,97.9489163],[4.5370273,0.03876743,97.94878117],[4.53702699,0.0387665,97.94870629],[4.53703051,0.03876565,97.95931131],[4.53703082,0.03876658,97.95938338],[4.53703138,0.0387683,97.95951517],[4.53703194,0.03877002,97.95964564],[4.5370325,0.03877174,97.9597749],[4.53703306,0.03877346,97.95990304],[4.53703362,0.03877518,97.96003016],[4.53703418,0.0387769,97.96015636],[4.53703474,0.03877861,97.96028175],[4.5370353,0.03878033,97.96040642],[4.53703586,0.03878205,97.96053047],[4.53703641,0.03878377,97.96065401],[4.53703697,0.03878549,97.96077713],[4.53703753,0.03878721,97.96089994],[4.53703808,0.03878893,97.96102254],[4.53703864,0.03879065,97.96114503],[4.5370392,0.03879237,97.96126751],[4.53703975,0.03879409,97.96139007],[4.53704031,0.03879581,97.96151283],[4.53704087,0.03879753,97.96163588],[4.53704142,0.03879925,97.96175932],[4.53704198,0.03880097,97.96188326],[4.53704253,0.03880269,97.96200779],[4.53704309,0.03880441,97.96213302],[4.53704364,0.03880613,97.96225905],[4.5370442,0.03880785,97.96238598],[4.53704476,0.03880957,97.96251392],[4.53704531,0.03881129,97.96264295],[4.53704587,0.03881301,97.96277319],[4.53704643,0.03881473,97.96290474],[4.53704698,0.03881645,97.96303769],[4.53704754,0.03881817,97.96317209],[4.5370481,0.03881989,97.96330772],[4.53704866,0.03882161,97.96344426],[4.53704921,0.03882333,97.96358144],[4.53704977,0.03882505,97.96371895],[4.53705033,0.03882677,97.96385651],[4.53705089,0.03882849,97.9639938],[4.53705144,0.03883021,97.96413055],[4.537052,0.03883193,97.9642665],[4.53705255,0.03883365,97.96440164],[4.53705311,0.03883537,97.96453602],[4.53705366,0.03883709,97.96466967],[4.53705422,0.03883881,97.96480263],[4.53705477,0.03884053,97.96493494],[4.53705533,0.03884226,97.96506665],[4.53705588,0.03884398,97.9651978],[4.53705643,0.0388457,97.96532841],[4.53705698,0.03884742,97.96545855],[4.53705754,0.03884914,97.96558824],[4.53705809,0.03885086,97.96571753],[4.53705864,0.03885258,97.96584645],[4.53705919,0.0388543,97.96597505],[4.53705974,0.03885602,97.96610337],[4.53706029,0.03885775,97.96623142],[4.53706084,0.03885947,97.96635906],[4.53706139,0.03886119,97.96648609],[4.53706194,0.03886291,97.96661232],[4.53706249,0.03886463,97.96673758],[4.53706304,0.03886636,97.96686166],[4.53706358,0.03886808,97.96698437],[4.53706413,0.0388698,97.96710554],[4.53706468,0.03887152,97.96722507],[4.53706522,0.03887325,97.96734328],[4.53706577,0.03887497,97.96746031],[4.53706631,0.03887669,97.96757617],[4.53706685,0.03887842,97.96769084],[4.5370674,0.03888014,97.96780432],[4.53706794,0.03888186,97.96791657],[4.53706848,0.03888359,97.9680276],[4.53706902,0.03888531,97.96813739],[4.53706956,0.03888703,97.96824591],[4.5370701,0.03888876,97.96835316],[4.53707064,0.03889048,97.96845913],[4.53707118,0.03889221,97.96856379],[4.53707172,0.03889393,97.96866721],[4.53707225,0.03889566,97.9687698],[4.53707279,0.03889738,97.96887211],[4.53707333,0.03889911,97.96897468],[4.53707386,0.03890083,97.96907805],[4.5370744,0.03890256,97.96918277],[4.53707494,0.03890428,97.96928933],[4.53707548,0.03890601,97.96939779],[4.53707601,0.03890773,97.96950789],[4.53707655,0.03890945,97.96961935],[4.53707709,0.03891118,97.9697319],[4.53707763,0.0389129,97.96984526],[4.53707817,0.03891463,97.96995917],[4.53707871,0.03891635,97.9700734],[4.53707924,0.03891808,97.9701879],[4.53707978,0.0389198,97.97030268],[4.53708032,0.03892153,97.97041774],[4.53708086,0.03892325,97.97053303],[4.5370814,0.03892498,97.97064825],[4.53708193,0.0389267,97.97076302],[4.53708247,0.03892843,97.97087696],[4.53708301,0.03893015,97.97098969],[4.53708354,0.03893188,97.97110086],[4.53708408,0.0389336,97.97121039],[4.53708461,0.03893533,97.97131835],[4.53708514,0.03893705,97.97142484],[4.53708567,0.03893878,97.97152992],[4.53708621,0.03894051,97.97163369],[4.53708674,0.03894223,97.97173622],[4.53708727,0.03894396,97.9718376],[4.5370878,0.03894569,97.97193792],[4.53708833,0.03894741,97.97203726],[4.53708886,0.03894914,97.97213571],[4.53708938,0.03895087,97.97223336],[4.53708991,0.03895259,97.97233028],[4.53709044,0.03895432,97.97242651],[4.53709097,0.03895605,97.97252208],[4.53709149,0.03895778,97.97261704],[4.53709202,0.0389595,97.97271143],[4.53709255,0.03896123,97.97280528],[4.53709307,0.03896296,97.97289865],[4.5370936,0.03896469,97.97299153],[4.53709412,0.03896642,97.97308379],[4.53709464,0.03896814,97.97317521],[4.53709517,0.03896987,97.9732656],[4.53709569,0.0389716,97.97335476],[4.53709621,0.03897333,97.97344255],[4.53709673,0.03897506,97.97352893],[4.53709726,0.03897679,97.9736139],[4.53709778,0.03897852,97.97369743],[4.53709829,0.03898025,97.97377951],[4.53709881,0.03898197,97.97386007],[4.53709933,0.0389837,97.97393902],[4.53709985,0.03898543,97.97401624],[4.53710036,0.03898716,97.9740917],[4.53710088,0.03898889,97.9741657],[4.53710139,0.03899063,97.97423864],[4.53710191,0.03899236,97.97431095],[4.53710242,0.03899409,97.97438303],[4.53710294,0.03899582,97.97445523],[4.53710345,0.03899755,97.97452778],[4.53710397,0.03899928,97.97460085],[4.53710448,0.03900101,97.97467466],[4.53710499,0.03900274,97.97474939],[4.53710551,0.03900447,97.97482488],[4.53710602,0.0390062,97.97490056],[4.53710653,0.03900793,97.97497589],[4.53710705,0.03900966,97.97505033],[4.53710756,0.03901139,97.97512369],[4.53710807,0.03901312,97.97519589],[4.53710858,0.03901486,97.97526687],[4.53710909,0.03901659,97.97533656],[4.5371096,0.03901832,97.97540489],[4.53711011,0.03902005,97.9754718],[4.53711062,0.03902178,97.97553723],[4.53711113,0.03902351,97.97560112],[4.53711163,0.03902525,97.97566455],[4.53711214,0.03902698,97.97573006],[4.53711265,0.03902871,97.97579931],[4.53711316,0.03903044,97.97587226],[4.53711367,0.03903217,97.97594871],[4.53711418,0.0390339,97.97602846],[4.53711469,0.03903564,97.97611131],[4.5371152,0.03903737,97.97619704],[4.53711572,0.0390391,97.97628546],[4.53711623,0.03904083,97.97637636],[4.53711674,0.03904256,97.97646597],[4.53711725,0.03904429,97.97653754],[4.53711775,0.03904602,97.97659031],[4.53711825,0.03904776,97.9766314],[4.53711874,0.03904949,97.97666799],[4.53711924,0.03905123,97.97670723],[4.53711974,0.03905296,97.97675627],[4.53712024,0.0390547,97.97681479],[4.53712074,0.03905643,97.97687706],[4.53712124,0.03905816,97.97693727],[4.53712174,0.0390599,97.9769897],[4.53712223,0.03906163,97.97703193],[4.53712273,0.03906337,97.97706607],[4.53712322,0.0390651,97.97709456],[4.5371237,0.03906684,97.97711983],[4.53712419,0.03906858,97.97714432],[4.53712468,0.03907031,97.97717048],[4.53712517,0.03907205,97.97720074],[4.53712566,0.03907379,97.97723755],[4.53712616,0.03907552,97.97728334],[4.53712665,0.03907726,97.97734058],[4.53712715,0.03907899,97.97740934],[4.53712766,0.03908072,97.97748026],[4.53712349,0.03908173,97.9645388]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1003400","id":-5,"type":"shoulder","predecessorId":-4,"sOffset":249.1731744511}},{"geometry":{"coordinates":[[[4.53712766,0.03908072,97.97748026],[4.53712715,0.03907899,97.97740934],[4.53712665,0.03907726,97.97734058],[4.53712616,0.03907552,97.97728334],[4.53712566,0.03907379,97.97723755],[4.53712517,0.03907205,97.97720074],[4.53712468,0.03907031,97.97717048],[4.53712419,0.03906858,97.97714432],[4.5371237,0.03906684,97.97711983],[4.53712322,0.0390651,97.97709456],[4.53712273,0.03906337,97.97706607],[4.53712223,0.03906163,97.97703193],[4.53712174,0.0390599,97.9769897],[4.53712124,0.03905816,97.97693727],[4.53712074,0.03905643,97.97687706],[4.53712024,0.0390547,97.97681479],[4.53711974,0.03905296,97.97675627],[4.53711924,0.03905123,97.97670723],[4.53711874,0.03904949,97.97666799],[4.53711825,0.03904776,97.9766314],[4.53711775,0.03904602,97.97659031],[4.53711725,0.03904429,97.97653754],[4.53711674,0.03904256,97.97646597],[4.53711623,0.03904083,97.97637636],[4.53711572,0.0390391,97.97628546],[4.5371152,0.03903737,97.97619704],[4.53711469,0.03903564,97.97611131],[4.53711418,0.0390339,97.97602846],[4.53711367,0.03903217,97.97594871],[4.53711316,0.03903044,97.97587226],[4.53711265,0.03902871,97.97579931],[4.53711214,0.03902698,97.97573006],[4.53711163,0.03902525,97.97566455],[4.53711113,0.03902351,97.97560112],[4.53711062,0.03902178,97.97553723],[4.53711011,0.03902005,97.9754718],[4.5371096,0.03901832,97.97540489],[4.53710909,0.03901659,97.97533656],[4.53710858,0.03901486,97.97526687],[4.53710807,0.03901312,97.97519589],[4.53710756,0.03901139,97.97512369],[4.53710705,0.03900966,97.97505033],[4.53710653,0.03900793,97.97497589],[4.53710602,0.0390062,97.97490056],[4.53710551,0.03900447,97.97482488],[4.53710499,0.03900274,97.97474939],[4.53710448,0.03900101,97.97467466],[4.53710397,0.03899928,97.97460085],[4.53710345,0.03899755,97.97452778],[4.53710294,0.03899582,97.97445523],[4.53710242,0.03899409,97.97438303],[4.53710191,0.03899236,97.97431095],[4.53710139,0.03899063,97.97423864],[4.53710088,0.03898889,97.9741657],[4.53710036,0.03898716,97.9740917],[4.53709985,0.03898543,97.97401624],[4.53709933,0.0389837,97.97393902],[4.53709881,0.03898197,97.97386007],[4.53709829,0.03898025,97.97377951],[4.53709778,0.03897852,97.97369743],[4.53709726,0.03897679,97.9736139],[4.53709673,0.03897506,97.97352893],[4.53709621,0.03897333,97.97344255],[4.53709569,0.0389716,97.97335476],[4.53709517,0.03896987,97.9732656],[4.53709464,0.03896814,97.97317521],[4.53709412,0.03896642,97.97308379],[4.5370936,0.03896469,97.97299153],[4.53709307,0.03896296,97.97289865],[4.53709255,0.03896123,97.97280528],[4.53709202,0.0389595,97.97271143],[4.53709149,0.03895778,97.97261704],[4.53709097,0.03895605,97.97252208],[4.53709044,0.03895432,97.97242651],[4.53708991,0.03895259,97.97233028],[4.53708938,0.03895087,97.97223336],[4.53708886,0.03894914,97.97213571],[4.53708833,0.03894741,97.97203726],[4.5370878,0.03894569,97.97193792],[4.53708727,0.03894396,97.9718376],[4.53708674,0.03894223,97.97173622],[4.53708621,0.03894051,97.97163369],[4.53708567,0.03893878,97.97152992],[4.53708514,0.03893705,97.97142484],[4.53708461,0.03893533,97.97131835],[4.53708408,0.0389336,97.97121039],[4.53708354,0.03893188,97.97110086],[4.53708301,0.03893015,97.97098969],[4.53708247,0.03892843,97.97087696],[4.53708193,0.0389267,97.97076302],[4.5370814,0.03892498,97.97064825],[4.53708086,0.03892325,97.97053303],[4.53708032,0.03892153,97.97041774],[4.53707978,0.0389198,97.97030268],[4.53707924,0.03891808,97.9701879],[4.53707871,0.03891635,97.9700734],[4.53707817,0.03891463,97.96995917],[4.53707763,0.0389129,97.96984526],[4.53707709,0.03891118,97.9697319],[4.53707655,0.03890945,97.96961935],[4.53707601,0.03890773,97.96950789],[4.53707548,0.03890601,97.96939779],[4.53707494,0.03890428,97.96928933],[4.5370744,0.03890256,97.96918277],[4.53707386,0.03890083,97.96907805],[4.53707333,0.03889911,97.96897468],[4.53707279,0.03889738,97.96887211],[4.53707225,0.03889566,97.9687698],[4.53707172,0.03889393,97.96866721],[4.53707118,0.03889221,97.96856379],[4.53707064,0.03889048,97.96845913],[4.5370701,0.03888876,97.96835316],[4.53706956,0.03888703,97.96824591],[4.53706902,0.03888531,97.96813739],[4.53706848,0.03888359,97.9680276],[4.53706794,0.03888186,97.96791657],[4.5370674,0.03888014,97.96780432],[4.53706685,0.03887842,97.96769084],[4.53706631,0.03887669,97.96757617],[4.53706577,0.03887497,97.96746031],[4.53706522,0.03887325,97.96734328],[4.53706468,0.03887152,97.96722507],[4.53706413,0.0388698,97.96710554],[4.53706358,0.03886808,97.96698437],[4.53706304,0.03886636,97.96686166],[4.53706249,0.03886463,97.96673758],[4.53706194,0.03886291,97.96661232],[4.53706139,0.03886119,97.96648609],[4.53706084,0.03885947,97.96635906],[4.53706029,0.03885775,97.96623142],[4.53705974,0.03885602,97.96610337],[4.53705919,0.0388543,97.96597505],[4.53705864,0.03885258,97.96584645],[4.53705809,0.03885086,97.96571753],[4.53705754,0.03884914,97.96558824],[4.53705698,0.03884742,97.96545855],[4.53705643,0.0388457,97.96532841],[4.53705588,0.03884398,97.9651978],[4.53705533,0.03884226,97.96506665],[4.53705477,0.03884053,97.96493494],[4.53705422,0.03883881,97.96480263],[4.53705366,0.03883709,97.96466967],[4.53705311,0.03883537,97.96453602],[4.53705255,0.03883365,97.96440164],[4.537052,0.03883193,97.9642665],[4.53705144,0.03883021,97.96413055],[4.53705089,0.03882849,97.9639938],[4.53705033,0.03882677,97.96385651],[4.53704977,0.03882505,97.96371895],[4.53704921,0.03882333,97.96358144],[4.53704866,0.03882161,97.96344426],[4.5370481,0.03881989,97.96330772],[4.53704754,0.03881817,97.96317209],[4.53704698,0.03881645,97.96303769],[4.53704643,0.03881473,97.96290474],[4.53704587,0.03881301,97.96277319],[4.53704531,0.03881129,97.96264295],[4.53704476,0.03880957,97.96251392],[4.5370442,0.03880785,97.96238598],[4.53704364,0.03880613,97.96225905],[4.53704309,0.03880441,97.96213302],[4.53704253,0.03880269,97.96200779],[4.53704198,0.03880097,97.96188326],[4.53704142,0.03879925,97.96175932],[4.53704087,0.03879753,97.96163588],[4.53704031,0.03879581,97.96151283],[4.53703975,0.03879409,97.96139007],[4.5370392,0.03879237,97.96126751],[4.53703864,0.03879065,97.96114503],[4.53703808,0.03878893,97.96102254],[4.53703753,0.03878721,97.96089994],[4.53703697,0.03878549,97.96077713],[4.53703641,0.03878377,97.96065401],[4.53703586,0.03878205,97.96053047],[4.5370353,0.03878033,97.96040642],[4.53703474,0.03877861,97.96028175],[4.53703418,0.0387769,97.96015636],[4.53703362,0.03877518,97.96003016],[4.53703306,0.03877346,97.95990304],[4.5370325,0.03877174,97.9597749],[4.53703194,0.03877002,97.95964564],[4.53703138,0.0387683,97.95951517],[4.53703082,0.03876658,97.95938338],[4.53703051,0.03876565,97.95931131],[4.53706132,0.03875816,98.05222312],[4.53706162,0.0387591,98.05228797],[4.53706217,0.03876082,98.05240727],[4.53706272,0.03876254,98.05252631],[4.53706328,0.03876426,98.05264515],[4.53706383,0.03876598,98.05276388],[4.53706438,0.0387677,98.05288258],[4.53706493,0.03876942,98.05300132],[4.53706549,0.03877115,98.05312019],[4.53706604,0.03877287,98.05323926],[4.53706659,0.03877459,98.05335862],[4.53706714,0.03877631,98.05347833],[4.53706769,0.03877803,98.05359849],[4.53706824,0.03877975,98.05371916],[4.5370688,0.03878147,98.05384043],[4.53706935,0.0387832,98.05396239],[4.5370699,0.03878492,98.05408509],[4.53707045,0.03878664,98.05420864],[4.537071,0.03878836,98.0543331],[4.53707155,0.03879008,98.05445856],[4.53707211,0.0387918,98.05458509],[4.53707266,0.03879352,98.05471277],[4.53707321,0.03879524,98.05484169],[4.53707376,0.03879696,98.05497192],[4.53707432,0.03879869,98.05510354],[4.53707487,0.03880041,98.05523663],[4.53707542,0.03880213,98.05537128],[4.53707598,0.03880385,98.05550756],[4.53707653,0.03880557,98.05564555],[4.53707709,0.03880729,98.05578533],[4.53707764,0.03880901,98.05592698],[4.5370782,0.03881073,98.05607052],[4.53707875,0.03881245,98.0562157],[4.53707931,0.03881417,98.0563622],[4.53707987,0.03881589,98.05650971],[4.53708042,0.03881761,98.05665791],[4.53708098,0.03881933,98.05680647],[4.53708153,0.03882105,98.05695509],[4.53708209,0.03882277,98.05710344],[4.53708264,0.03882449,98.05725127],[4.5370832,0.03882621,98.05739853],[4.53708375,0.03882793,98.05754525],[4.53708431,0.03882966,98.05769143],[4.53708486,0.03883138,98.05783711],[4.53708541,0.0388331,98.0579823],[4.53708597,0.03883482,98.05812701],[4.53708652,0.03883654,98.05827127],[4.53708707,0.03883826,98.05841509],[4.53708762,0.03883998,98.05855849],[4.53708817,0.0388417,98.0587015],[4.53708873,0.03884343,98.05884412],[4.53708928,0.03884515,98.05898638],[4.53708983,0.03884687,98.0591283],[4.53709038,0.03884859,98.05926989],[4.53709093,0.03885031,98.05941117],[4.53709148,0.03885203,98.05955217],[4.53709202,0.03885376,98.05969289],[4.53709257,0.03885548,98.05983336],[4.53709312,0.0388572,98.0599736],[4.53709367,0.03885892,98.06011362],[4.53709422,0.03886065,98.06025345],[4.53709477,0.03886237,98.0603931],[4.53709531,0.03886409,98.06053271],[4.53709586,0.03886581,98.06067277],[4.53709641,0.03886753,98.06081367],[4.53709696,0.03886926,98.06095561],[4.5370975,0.03887098,98.06109878],[4.53709805,0.0388727,98.06124338],[4.5370986,0.03887442,98.06138961],[4.53709915,0.03887615,98.06153765],[4.5370997,0.03887787,98.06168771],[4.53710025,0.03887959,98.06183998],[4.5371008,0.03888131,98.06199465],[4.53710135,0.03888303,98.06215193],[4.5371019,0.03888476,98.062312],[4.53710245,0.03888648,98.06247507],[4.537103,0.0388882,98.06264133],[4.53710356,0.03888992,98.06281098],[4.53710411,0.03889164,98.06298421],[4.53710467,0.03889336,98.06316122],[4.53710522,0.03889508,98.06334221],[4.53710578,0.0388968,98.06352734],[4.53710634,0.03889852,98.06371631],[4.5371069,0.03890024,98.06390852],[4.53710746,0.03890196,98.06410335],[4.53710802,0.03890368,98.06430017],[4.53710858,0.0389054,98.06449837],[4.53710915,0.03890712,98.06469732],[4.53710971,0.03890884,98.06489646],[4.53711027,0.03891055,98.0650954],[4.53711083,0.03891227,98.06529379],[4.53711139,0.03891399,98.06549128],[4.53711195,0.03891571,98.06568755],[4.5371125,0.03891743,98.06588223],[4.53711306,0.03891915,98.06607499],[4.53711362,0.03892087,98.06626546],[4.53711417,0.03892259,98.0664533],[4.53711473,0.03892432,98.06663818],[4.53711528,0.03892604,98.06682005],[4.53711583,0.03892776,98.06699901],[4.53711638,0.03892948,98.06717518],[4.53711693,0.0389312,98.06734866],[4.53711748,0.03893292,98.06751957],[4.53711803,0.03893465,98.067688],[4.53711857,0.03893637,98.06785407],[4.53711912,0.03893809,98.0680179],[4.53711966,0.03893982,98.06817961],[4.53712021,0.03894154,98.0683393],[4.53712075,0.03894326,98.0684971],[4.53712129,0.03894499,98.06865309],[4.53712183,0.03894671,98.06880734],[4.53712237,0.03894844,98.06895993],[4.53712291,0.03895016,98.06911092],[4.53712345,0.03895189,98.06926038],[4.53712399,0.03895361,98.06940838],[4.53712453,0.03895534,98.06955498],[4.53712506,0.03895706,98.06970025],[4.5371256,0.03895879,98.06984426],[4.53712613,0.03896051,98.06998708],[4.53712667,0.03896224,98.07012878],[4.5371272,0.03896396,98.07026942],[4.53712774,0.03896569,98.07040914],[4.53712827,0.03896741,98.07054816],[4.5371288,0.03896914,98.07068675],[4.53712934,0.03897087,98.07082516],[4.53712987,0.03897259,98.07096364],[4.5371304,0.03897432,98.07110239],[4.53713093,0.03897605,98.07124159],[4.53713146,0.03897777,98.0713814],[4.537132,0.0389795,98.07152198],[4.53713253,0.03898123,98.07166351],[4.53713306,0.03898295,98.07180615],[4.53713359,0.03898468,98.07195006],[4.53713413,0.0389864,98.07209542],[4.53713466,0.03898813,98.07224231],[4.53713519,0.03898986,98.07239071],[4.53713572,0.03899158,98.07254056],[4.53713626,0.03899331,98.07269181],[4.53713679,0.03899503,98.07284441],[4.53713733,0.03899676,98.07299831],[4.53713786,0.03899849,98.07315345],[4.53713839,0.03900021,98.07330978],[4.53713893,0.03900194,98.07346731],[4.53713946,0.03900366,98.07362634],[4.53714,0.03900539,98.07378731],[4.53714053,0.03900711,98.0739507],[4.53714107,0.03900884,98.07411693],[4.53714161,0.03901056,98.07428647],[4.53714214,0.03901229,98.07445976],[4.53714268,0.03901401,98.07463726],[4.53714322,0.03901574,98.07481942],[4.53714376,0.03901746,98.07500669],[4.53714431,0.03901919,98.07519951],[4.53714485,0.03902091,98.07539735],[4.5371454,0.03902263,98.075598],[4.53714594,0.03902436,98.07579906],[4.53714649,0.03902608,98.07599812],[4.53714703,0.0390278,98.0761928],[4.53714757,0.03902953,98.07638068],[4.53714811,0.03903125,98.07655936],[4.53714864,0.03903298,98.07672645],[4.53714917,0.03903471,98.07687953],[4.53714969,0.03903643,98.07701952],[4.53715022,0.03903816,98.07716795],[4.53715075,0.03903989,98.07735429],[4.53715131,0.03904161,98.07760803],[4.5371519,0.03904332,98.0779587],[4.53715253,0.03904502,98.07843134],[4.5371532,0.03904671,98.0790192],[4.5371539,0.0390484,98.0797018],[4.53715462,0.03905008,98.08045858],[4.53715535,0.03905176,98.08126901],[4.5371561,0.03905343,98.08211354],[4.53715686,0.0390551,98.08297411],[4.53715761,0.03905678,98.08383276],[4.53715835,0.03905845,98.08467155],[4.53715908,0.03906013,98.08547249],[4.5371598,0.03906181,98.0862176],[4.53716049,0.0390635,98.08688887],[4.53716115,0.0390652,98.0874683],[4.53716177,0.0390669,98.08793787],[4.53716236,0.03906861,98.08827953],[4.53716289,0.03907034,98.08847289],[4.53716337,0.03907208,98.08848807],[4.53712766,0.03908072,97.97748026]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1003400","id":-4,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3,"sOffset":249.1731744511}},{"geometry":{"coordinates":[[[4.53716337,0.03907208,98.08848807],[4.53716289,0.03907034,98.08847289],[4.53716236,0.03906861,98.08827953],[4.53716177,0.0390669,98.08793787],[4.53716115,0.0390652,98.0874683],[4.53716049,0.0390635,98.08688887],[4.5371598,0.03906181,98.0862176],[4.53715908,0.03906013,98.08547249],[4.53715835,0.03905845,98.08467155],[4.53715761,0.03905678,98.08383276],[4.53715686,0.0390551,98.08297411],[4.5371561,0.03905343,98.08211354],[4.53715535,0.03905176,98.08126901],[4.53715462,0.03905008,98.08045858],[4.5371539,0.0390484,98.0797018],[4.5371532,0.03904671,98.0790192],[4.53715253,0.03904502,98.07843134],[4.5371519,0.03904332,98.0779587],[4.53715131,0.03904161,98.07760803],[4.53715075,0.03903989,98.07735429],[4.53715022,0.03903816,98.07716795],[4.53714969,0.03903643,98.07701952],[4.53714917,0.03903471,98.07687953],[4.53714864,0.03903298,98.07672645],[4.53714811,0.03903125,98.07655936],[4.53714757,0.03902953,98.07638068],[4.53714703,0.0390278,98.0761928],[4.53714649,0.03902608,98.07599812],[4.53714594,0.03902436,98.07579906],[4.5371454,0.03902263,98.075598],[4.53714485,0.03902091,98.07539735],[4.53714431,0.03901919,98.07519951],[4.53714376,0.03901746,98.07500669],[4.53714322,0.03901574,98.07481942],[4.53714268,0.03901401,98.07463726],[4.53714214,0.03901229,98.07445976],[4.53714161,0.03901056,98.07428647],[4.53714107,0.03900884,98.07411693],[4.53714053,0.03900711,98.0739507],[4.53714,0.03900539,98.07378731],[4.53713946,0.03900366,98.07362634],[4.53713893,0.03900194,98.07346731],[4.53713839,0.03900021,98.07330978],[4.53713786,0.03899849,98.07315345],[4.53713733,0.03899676,98.07299831],[4.53713679,0.03899503,98.07284441],[4.53713626,0.03899331,98.07269181],[4.53713572,0.03899158,98.07254056],[4.53713519,0.03898986,98.07239071],[4.53713466,0.03898813,98.07224231],[4.53713413,0.0389864,98.07209542],[4.53713359,0.03898468,98.07195006],[4.53713306,0.03898295,98.07180615],[4.53713253,0.03898123,98.07166351],[4.537132,0.0389795,98.07152198],[4.53713146,0.03897777,98.0713814],[4.53713093,0.03897605,98.07124159],[4.5371304,0.03897432,98.07110239],[4.53712987,0.03897259,98.07096364],[4.53712934,0.03897087,98.07082516],[4.5371288,0.03896914,98.07068675],[4.53712827,0.03896741,98.07054816],[4.53712774,0.03896569,98.07040914],[4.5371272,0.03896396,98.07026942],[4.53712667,0.03896224,98.07012878],[4.53712613,0.03896051,98.06998708],[4.5371256,0.03895879,98.06984426],[4.53712506,0.03895706,98.06970025],[4.53712453,0.03895534,98.06955498],[4.53712399,0.03895361,98.06940838],[4.53712345,0.03895189,98.06926038],[4.53712291,0.03895016,98.06911092],[4.53712237,0.03894844,98.06895993],[4.53712183,0.03894671,98.06880734],[4.53712129,0.03894499,98.06865309],[4.53712075,0.03894326,98.0684971],[4.53712021,0.03894154,98.0683393],[4.53711966,0.03893982,98.06817961],[4.53711912,0.03893809,98.0680179],[4.53711857,0.03893637,98.06785407],[4.53711803,0.03893465,98.067688],[4.53711748,0.03893292,98.06751957],[4.53711693,0.0389312,98.06734866],[4.53711638,0.03892948,98.06717518],[4.53711583,0.03892776,98.06699901],[4.53711528,0.03892604,98.06682005],[4.53711473,0.03892432,98.06663818],[4.53711417,0.03892259,98.0664533],[4.53711362,0.03892087,98.06626546],[4.53711306,0.03891915,98.06607499],[4.5371125,0.03891743,98.06588223],[4.53711195,0.03891571,98.06568755],[4.53711139,0.03891399,98.06549128],[4.53711083,0.03891227,98.06529379],[4.53711027,0.03891055,98.0650954],[4.53710971,0.03890884,98.06489646],[4.53710915,0.03890712,98.06469732],[4.53710858,0.0389054,98.06449837],[4.53710802,0.03890368,98.06430017],[4.53710746,0.03890196,98.06410335],[4.5371069,0.03890024,98.06390852],[4.53710634,0.03889852,98.06371631],[4.53710578,0.0388968,98.06352734],[4.53710522,0.03889508,98.06334221],[4.53710467,0.03889336,98.06316122],[4.53710411,0.03889164,98.06298421],[4.53710356,0.03888992,98.06281098],[4.537103,0.0388882,98.06264133],[4.53710245,0.03888648,98.06247507],[4.5371019,0.03888476,98.062312],[4.53710135,0.03888303,98.06215193],[4.5371008,0.03888131,98.06199465],[4.53710025,0.03887959,98.06183998],[4.5370997,0.03887787,98.06168771],[4.53709915,0.03887615,98.06153765],[4.5370986,0.03887442,98.06138961],[4.53709805,0.0388727,98.06124338],[4.5370975,0.03887098,98.06109878],[4.53709696,0.03886926,98.06095561],[4.53709641,0.03886753,98.06081367],[4.53709586,0.03886581,98.06067277],[4.53709531,0.03886409,98.06053271],[4.53709477,0.03886237,98.0603931],[4.53709422,0.03886065,98.06025345],[4.53709367,0.03885892,98.06011362],[4.53709312,0.0388572,98.0599736],[4.53709257,0.03885548,98.05983336],[4.53709202,0.03885376,98.05969289],[4.53709148,0.03885203,98.05955217],[4.53709093,0.03885031,98.05941117],[4.53709038,0.03884859,98.05926989],[4.53708983,0.03884687,98.0591283],[4.53708928,0.03884515,98.05898638],[4.53708873,0.03884343,98.05884412],[4.53708817,0.0388417,98.0587015],[4.53708762,0.03883998,98.05855849],[4.53708707,0.03883826,98.05841509],[4.53708652,0.03883654,98.05827127],[4.53708597,0.03883482,98.05812701],[4.53708541,0.0388331,98.0579823],[4.53708486,0.03883138,98.05783711],[4.53708431,0.03882966,98.05769143],[4.53708375,0.03882793,98.05754525],[4.5370832,0.03882621,98.05739853],[4.53708264,0.03882449,98.05725127],[4.53708209,0.03882277,98.05710344],[4.53708153,0.03882105,98.05695509],[4.53708098,0.03881933,98.05680647],[4.53708042,0.03881761,98.05665791],[4.53707987,0.03881589,98.05650971],[4.53707931,0.03881417,98.0563622],[4.53707875,0.03881245,98.0562157],[4.5370782,0.03881073,98.05607052],[4.53707764,0.03880901,98.05592698],[4.53707709,0.03880729,98.05578533],[4.53707653,0.03880557,98.05564555],[4.53707598,0.03880385,98.05550756],[4.53707542,0.03880213,98.05537128],[4.53707487,0.03880041,98.05523663],[4.53707432,0.03879869,98.05510354],[4.53707376,0.03879696,98.05497192],[4.53707321,0.03879524,98.05484169],[4.53707266,0.03879352,98.05471277],[4.53707211,0.0387918,98.05458509],[4.53707155,0.03879008,98.05445856],[4.537071,0.03878836,98.0543331],[4.53707045,0.03878664,98.05420864],[4.5370699,0.03878492,98.05408509],[4.53706935,0.0387832,98.05396239],[4.5370688,0.03878147,98.05384043],[4.53706824,0.03877975,98.05371916],[4.53706769,0.03877803,98.05359849],[4.53706714,0.03877631,98.05347833],[4.53706659,0.03877459,98.05335862],[4.53706604,0.03877287,98.05323926],[4.53706549,0.03877115,98.05312019],[4.53706493,0.03876942,98.05300132],[4.53706438,0.0387677,98.05288258],[4.53706383,0.03876598,98.05276388],[4.53706328,0.03876426,98.05264515],[4.53706272,0.03876254,98.05252631],[4.53706217,0.03876082,98.05240727],[4.53706162,0.0387591,98.05228797],[4.53706132,0.03875816,98.05222312],[4.53708662,0.03875202,98.1285378],[4.53708685,0.03875297,98.12838395],[4.53708726,0.03875472,98.12810268],[4.53708768,0.03875648,98.1278244],[4.5370881,0.03875823,98.12754896],[4.53708852,0.03875998,98.12727623],[4.53708894,0.03876174,98.12700608],[4.53708936,0.03876349,98.12673837],[4.53708978,0.03876524,98.12647297],[4.5370902,0.038767,98.12620974],[4.53709062,0.03876875,98.12594855],[4.53709105,0.0387705,98.12568927],[4.53709147,0.03877226,98.12543175],[4.53709189,0.03877401,98.12517587],[4.53709232,0.03877576,98.12492149],[4.53709274,0.03877751,98.12466847],[4.53709316,0.03877927,98.12441668],[4.53709359,0.03878102,98.12416599],[4.53709401,0.03878277,98.12391626],[4.53709444,0.03878452,98.12366735],[4.53709486,0.03878628,98.12341913],[4.53709529,0.03878803,98.12317146],[4.53709571,0.03878978,98.12292421],[4.53709614,0.03879153,98.12267724],[4.53709656,0.03879328,98.12243041],[4.53709698,0.03879504,98.1221836],[4.53709741,0.03879679,98.12193666],[4.53709783,0.03879854,98.12168946],[4.53709826,0.03880029,98.12144186],[4.53709868,0.03880205,98.12119372],[4.5370991,0.0388038,98.12094492],[4.53709952,0.03880555,98.12069531],[4.53709995,0.03880731,98.12044475],[4.53710037,0.03880906,98.12019312],[4.53710079,0.03881081,98.11994027],[4.53710121,0.03881257,98.11968606],[4.53710163,0.03881432,98.11943037],[4.53710205,0.03881607,98.11917304],[4.53710246,0.03881783,98.11891396],[4.53710288,0.03881958,98.11865302],[4.5371033,0.03882134,98.11839039],[4.53710371,0.03882309,98.11812625],[4.53710413,0.03882484,98.11786082],[4.53710454,0.0388266,98.11759427],[4.53710496,0.03882835,98.11732683],[4.53710537,0.03883011,98.11705868],[4.53710578,0.03883186,98.11679003],[4.5371062,0.03883362,98.11652108],[4.53710661,0.03883537,98.11625203],[4.53710702,0.03883713,98.11598308],[4.53710744,0.03883888,98.11571443],[4.53710785,0.03884064,98.11544628],[4.53710826,0.0388424,98.11517883],[4.53710867,0.03884415,98.11491228],[4.53710909,0.03884591,98.11464684],[4.5371095,0.03884766,98.1143827],[4.53710991,0.03884942,98.11412008],[4.53711033,0.03885117,98.11385916],[4.53711074,0.03885293,98.11360015],[4.53711116,0.03885468,98.11334326],[4.53711157,0.03885643,98.11308868],[4.53711199,0.03885819,98.11283662],[4.53711241,0.03885994,98.11258728],[4.53711282,0.0388617,98.11234085],[4.53711324,0.03886345,98.11209735],[4.53711366,0.0388652,98.11185662],[4.53711408,0.03886696,98.11161849],[4.5371145,0.03886871,98.11138277],[4.53711492,0.03887046,98.11114931],[4.53711534,0.03887222,98.11091793],[4.53711576,0.03887397,98.11068846],[4.53711619,0.03887572,98.11046072],[4.53711661,0.03887748,98.11023454],[4.53711703,0.03887923,98.11000975],[4.53711746,0.03888098,98.10978618],[4.53711788,0.03888273,98.10956365],[4.5371183,0.03888449,98.10934199],[4.53711873,0.03888624,98.10912104],[4.53711915,0.03888799,98.1089006],[4.53711957,0.03888975,98.10868052],[4.53712,0.0388915,98.10846062],[4.53712042,0.03889325,98.10824073],[4.53712084,0.038895,98.10802066],[4.53712126,0.03889676,98.10780026],[4.53712169,0.03889851,98.10757934],[4.53712211,0.03890026,98.10735772],[4.53712253,0.03890202,98.10713525],[4.53712295,0.03890377,98.10691174],[4.53712337,0.03890552,98.10668706],[4.53712379,0.03890728,98.10646127],[4.53712421,0.03890903,98.10623448],[4.53712463,0.03891078,98.10600679],[4.53712504,0.03891254,98.10577831],[4.53712546,0.03891429,98.10554913],[4.53712588,0.03891605,98.10531936],[4.5371263,0.0389178,98.10508909],[4.53712671,0.03891955,98.10485841],[4.53712713,0.03892131,98.10462743],[4.53712754,0.03892306,98.10439624],[4.53712796,0.03892482,98.10416494],[4.53712838,0.03892657,98.10393362],[4.53712879,0.03892833,98.10370238],[4.53712921,0.03893008,98.10347132],[4.53712962,0.03893184,98.10324054],[4.53713004,0.03893359,98.10301012],[4.53713045,0.03893535,98.10278019],[4.53713087,0.0389371,98.10255083],[4.53713128,0.03893886,98.10232215],[4.5371317,0.03894061,98.10209427],[4.53713211,0.03894236,98.10186725],[4.53713253,0.03894412,98.10164115],[4.53713294,0.03894587,98.10141604],[4.53713336,0.03894763,98.10119195],[4.53713377,0.03894938,98.10096896],[4.53713419,0.03895114,98.10074712],[4.53713461,0.03895289,98.10052648],[4.53713502,0.03895465,98.10030709],[4.53713544,0.0389564,98.10008902],[4.53713585,0.03895816,98.09987233],[4.53713627,0.03895991,98.09965705],[4.53713669,0.03896166,98.09944326],[4.53713711,0.03896342,98.09923101],[4.53713752,0.03896517,98.09902035],[4.53713794,0.03896693,98.09881134],[4.53713836,0.03896868,98.09860404],[4.53713878,0.03897043,98.0983985],[4.5371392,0.03897219,98.09819473],[4.53713962,0.03897394,98.09799271],[4.53714004,0.03897569,98.0977924],[4.53714046,0.03897745,98.09759377],[4.53714088,0.0389792,98.09739679],[4.5371413,0.03898095,98.09720142],[4.53714172,0.03898271,98.09700765],[4.53714215,0.03898446,98.09681543],[4.53714257,0.03898621,98.09662474],[4.53714299,0.03898797,98.09643554],[4.53714341,0.03898972,98.0962478],[4.53714383,0.03899147,98.09606149],[4.53714426,0.03899323,98.09587658],[4.53714468,0.03899498,98.09569304],[4.5371451,0.03899673,98.09551083],[4.53714553,0.03899848,98.09532993],[4.53714595,0.03900024,98.0951503],[4.53714638,0.03900199,98.09497191],[4.5371468,0.03900374,98.09479473],[4.53714722,0.03900549,98.09461873],[4.53714765,0.03900725,98.09444387],[4.53714807,0.039009,98.09427013],[4.5371485,0.03901075,98.09409747],[4.53714892,0.0390125,98.09392586],[4.53714935,0.03901425,98.09375527],[4.53714977,0.03901601,98.09358566],[4.5371502,0.03901776,98.09341701],[4.53715062,0.03901951,98.09324929],[4.53715105,0.03902126,98.09308245],[4.53715148,0.03902302,98.09291648],[4.5371519,0.03902477,98.09275133],[4.53715233,0.03902652,98.09258698],[4.53715275,0.03902827,98.0924234],[4.53715318,0.03903002,98.09226054],[4.5371536,0.03903178,98.09209839],[4.53715403,0.03903353,98.0919369],[4.53715445,0.03903528,98.09177605],[4.53715488,0.03903703,98.0916158],[4.53715531,0.03903878,98.09145613],[4.53715573,0.03904054,98.09129699],[4.53715616,0.03904229,98.09113836],[4.53715658,0.03904404,98.09098021],[4.53715701,0.03904579,98.0908225],[4.53715743,0.03904754,98.0906652],[4.53715786,0.0390493,98.09050828],[4.53715828,0.03905105,98.09035171],[4.53715871,0.0390528,98.09019545],[4.53715913,0.03905455,98.09003947],[4.53715956,0.03905631,98.08988374],[4.53715998,0.03905806,98.08972823],[4.53716041,0.03905981,98.08957291],[4.53716083,0.03906156,98.08941773],[4.53716125,0.03906331,98.08926268],[4.53716168,0.03906507,98.08910771],[4.5371621,0.03906682,98.0889528],[4.53716252,0.03906857,98.08879791],[4.53716295,0.03907033,98.08864301],[4.53716337,0.03907208,98.08848807],[4.53716337,0.03907208,98.08848807]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"none","height":0.0},{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"broken","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1003400","id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":0,"sOffset":249.1731744511}},{"geometry":{"coordinates":[[[4.53716337,0.03907208,98.08848807],[4.53716295,0.03907033,98.08864301],[4.53716252,0.03906857,98.08879791],[4.5371621,0.03906682,98.0889528],[4.53716168,0.03906507,98.08910771],[4.53716125,0.03906331,98.08926268],[4.53716083,0.03906156,98.08941773],[4.53716041,0.03905981,98.08957291],[4.53715998,0.03905806,98.08972823],[4.53715956,0.03905631,98.08988374],[4.53715913,0.03905455,98.09003947],[4.53715871,0.0390528,98.09019545],[4.53715828,0.03905105,98.09035171],[4.53715786,0.0390493,98.09050828],[4.53715743,0.03904754,98.0906652],[4.53715701,0.03904579,98.0908225],[4.53715658,0.03904404,98.09098021],[4.53715616,0.03904229,98.09113836],[4.53715573,0.03904054,98.09129699],[4.53715531,0.03903878,98.09145613],[4.53715488,0.03903703,98.0916158],[4.53715445,0.03903528,98.09177605],[4.53715403,0.03903353,98.0919369],[4.5371536,0.03903178,98.09209839],[4.53715318,0.03903002,98.09226054],[4.53715275,0.03902827,98.0924234],[4.53715233,0.03902652,98.09258698],[4.5371519,0.03902477,98.09275133],[4.53715148,0.03902302,98.09291648],[4.53715105,0.03902126,98.09308245],[4.53715062,0.03901951,98.09324929],[4.5371502,0.03901776,98.09341701],[4.53714977,0.03901601,98.09358566],[4.53714935,0.03901425,98.09375527],[4.53714892,0.0390125,98.09392586],[4.5371485,0.03901075,98.09409747],[4.53714807,0.039009,98.09427013],[4.53714765,0.03900725,98.09444387],[4.53714722,0.03900549,98.09461873],[4.5371468,0.03900374,98.09479473],[4.53714638,0.03900199,98.09497191],[4.53714595,0.03900024,98.0951503],[4.53714553,0.03899848,98.09532993],[4.5371451,0.03899673,98.09551083],[4.53714468,0.03899498,98.09569304],[4.53714426,0.03899323,98.09587658],[4.53714383,0.03899147,98.09606149],[4.53714341,0.03898972,98.0962478],[4.53714299,0.03898797,98.09643554],[4.53714257,0.03898621,98.09662474],[4.53714215,0.03898446,98.09681543],[4.53714172,0.03898271,98.09700765],[4.5371413,0.03898095,98.09720142],[4.53714088,0.0389792,98.09739679],[4.53714046,0.03897745,98.09759377],[4.53714004,0.03897569,98.0977924],[4.53713962,0.03897394,98.09799271],[4.5371392,0.03897219,98.09819473],[4.53713878,0.03897043,98.0983985],[4.53713836,0.03896868,98.09860404],[4.53713794,0.03896693,98.09881134],[4.53713752,0.03896517,98.09902035],[4.53713711,0.03896342,98.09923101],[4.53713669,0.03896166,98.09944326],[4.53713627,0.03895991,98.09965705],[4.53713585,0.03895816,98.09987233],[4.53713544,0.0389564,98.10008902],[4.53713502,0.03895465,98.10030709],[4.53713461,0.03895289,98.10052648],[4.53713419,0.03895114,98.10074712],[4.53713377,0.03894938,98.10096896],[4.53713336,0.03894763,98.10119195],[4.53713294,0.03894587,98.10141604],[4.53713253,0.03894412,98.10164115],[4.53713211,0.03894236,98.10186725],[4.5371317,0.03894061,98.10209427],[4.53713128,0.03893886,98.10232215],[4.53713087,0.0389371,98.10255083],[4.53713045,0.03893535,98.10278019],[4.53713004,0.03893359,98.10301012],[4.53712962,0.03893184,98.10324054],[4.53712921,0.03893008,98.10347132],[4.53712879,0.03892833,98.10370238],[4.53712838,0.03892657,98.10393362],[4.53712796,0.03892482,98.10416494],[4.53712754,0.03892306,98.10439624],[4.53712713,0.03892131,98.10462743],[4.53712671,0.03891955,98.10485841],[4.5371263,0.0389178,98.10508909],[4.53712588,0.03891605,98.10531936],[4.53712546,0.03891429,98.10554913],[4.53712504,0.03891254,98.10577831],[4.53712463,0.03891078,98.10600679],[4.53712421,0.03890903,98.10623448],[4.53712379,0.03890728,98.10646127],[4.53712337,0.03890552,98.10668706],[4.53712295,0.03890377,98.10691174],[4.53712253,0.03890202,98.10713525],[4.53712211,0.03890026,98.10735772],[4.53712169,0.03889851,98.10757934],[4.53712126,0.03889676,98.10780026],[4.53712084,0.038895,98.10802066],[4.53712042,0.03889325,98.10824073],[4.53712,0.0388915,98.10846062],[4.53711957,0.03888975,98.10868052],[4.53711915,0.03888799,98.1089006],[4.53711873,0.03888624,98.10912104],[4.5371183,0.03888449,98.10934199],[4.53711788,0.03888273,98.10956365],[4.53711746,0.03888098,98.10978618],[4.53711703,0.03887923,98.11000975],[4.53711661,0.03887748,98.11023454],[4.53711619,0.03887572,98.11046072],[4.53711576,0.03887397,98.11068846],[4.53711534,0.03887222,98.11091793],[4.53711492,0.03887046,98.11114931],[4.5371145,0.03886871,98.11138277],[4.53711408,0.03886696,98.11161849],[4.53711366,0.0388652,98.11185662],[4.53711324,0.03886345,98.11209735],[4.53711282,0.0388617,98.11234085],[4.53711241,0.03885994,98.11258728],[4.53711199,0.03885819,98.11283662],[4.53711157,0.03885643,98.11308868],[4.53711116,0.03885468,98.11334326],[4.53711074,0.03885293,98.11360015],[4.53711033,0.03885117,98.11385916],[4.53710991,0.03884942,98.11412008],[4.5371095,0.03884766,98.1143827],[4.53710909,0.03884591,98.11464684],[4.53710867,0.03884415,98.11491228],[4.53710826,0.0388424,98.11517883],[4.53710785,0.03884064,98.11544628],[4.53710744,0.03883888,98.11571443],[4.53710702,0.03883713,98.11598308],[4.53710661,0.03883537,98.11625203],[4.5371062,0.03883362,98.11652108],[4.53710578,0.03883186,98.11679003],[4.53710537,0.03883011,98.11705868],[4.53710496,0.03882835,98.11732683],[4.53710454,0.0388266,98.11759427],[4.53710413,0.03882484,98.11786082],[4.53710371,0.03882309,98.11812625],[4.5371033,0.03882134,98.11839039],[4.53710288,0.03881958,98.11865302],[4.53710246,0.03881783,98.11891396],[4.53710205,0.03881607,98.11917304],[4.53710163,0.03881432,98.11943037],[4.53710121,0.03881257,98.11968606],[4.53710079,0.03881081,98.11994027],[4.53710037,0.03880906,98.12019312],[4.53709995,0.03880731,98.12044475],[4.53709952,0.03880555,98.12069531],[4.5370991,0.0388038,98.12094492],[4.53709868,0.03880205,98.12119372],[4.53709826,0.03880029,98.12144186],[4.53709783,0.03879854,98.12168946],[4.53709741,0.03879679,98.12193666],[4.53709698,0.03879504,98.1221836],[4.53709656,0.03879328,98.12243041],[4.53709614,0.03879153,98.12267724],[4.53709571,0.03878978,98.12292421],[4.53709529,0.03878803,98.12317146],[4.53709486,0.03878628,98.12341913],[4.53709444,0.03878452,98.12366735],[4.53709401,0.03878277,98.12391626],[4.53709359,0.03878102,98.12416599],[4.53709316,0.03877927,98.12441668],[4.53709274,0.03877751,98.12466847],[4.53709232,0.03877576,98.12492149],[4.53709189,0.03877401,98.12517587],[4.53709147,0.03877226,98.12543175],[4.53709105,0.0387705,98.12568927],[4.53709062,0.03876875,98.12594855],[4.5370902,0.038767,98.12620974],[4.53708978,0.03876524,98.12647297],[4.53708936,0.03876349,98.12673837],[4.53708894,0.03876174,98.12700608],[4.53708852,0.03875998,98.12727623],[4.5370881,0.03875823,98.12754896],[4.53708768,0.03875648,98.1278244],[4.53708726,0.03875472,98.12810268],[4.53708685,0.03875297,98.12838395],[4.53708662,0.03875202,98.1285378],[4.53711856,0.03874426,98.22487432],[4.53711879,0.03874521,98.22473533],[4.53711921,0.03874696,98.22447942],[4.53711963,0.03874872,98.22422396],[4.53712005,0.03875047,98.22396893],[4.53712047,0.03875222,98.22371435],[4.53712089,0.03875398,98.22346021],[4.53712131,0.03875573,98.22320652],[4.53712173,0.03875748,98.22295329],[4.53712215,0.03875924,98.2227005],[4.53712257,0.03876099,98.22244816],[4.53712299,0.03876274,98.22219628],[4.53712341,0.0387645,98.22194486],[4.53712383,0.03876625,98.2216939],[4.53712425,0.038768,98.22144339],[4.53712467,0.03876976,98.22119335],[4.53712509,0.03877151,98.22094378],[4.53712551,0.03877327,98.22069466],[4.53712593,0.03877502,98.22044602],[4.53712635,0.03877677,98.22019785],[4.53712677,0.03877853,98.21995014],[4.53712719,0.03878028,98.21970292],[4.53712761,0.03878203,98.21945616],[4.53712803,0.03878379,98.21920989],[4.53712845,0.03878554,98.21896409],[4.53712887,0.03878729,98.21871877],[4.53712929,0.03878905,98.21847394],[4.53712971,0.0387908,98.21822959],[4.53713013,0.03879256,98.21798572],[4.53713055,0.03879431,98.21774235],[4.53713097,0.03879606,98.21749946],[4.53713139,0.03879782,98.21725707],[4.53713181,0.03879957,98.21701517],[4.53713223,0.03880132,98.21677376],[4.53713265,0.03880308,98.21653285],[4.53713307,0.03880483,98.21629244],[4.53713349,0.03880659,98.21605254],[4.53713391,0.03880834,98.21581313],[4.53713433,0.03881009,98.21557423],[4.53713475,0.03881185,98.21533584],[4.53713517,0.0388136,98.21509795],[4.53713558,0.03881535,98.21486058],[4.537136,0.03881711,98.21462372],[4.53713642,0.03881886,98.21438737],[4.53713684,0.03882062,98.21415153],[4.53713726,0.03882237,98.21391622],[4.53713768,0.03882412,98.21368142],[4.5371381,0.03882588,98.21344715],[4.53713852,0.03882763,98.2132134],[4.53713894,0.03882938,98.21298017],[4.53713936,0.03883114,98.21274747],[4.53713978,0.03883289,98.2125153],[4.5371402,0.03883465,98.21228367],[4.53714062,0.0388364,98.21205256],[4.53714104,0.03883815,98.21182199],[4.53714145,0.03883991,98.21159195],[4.53714187,0.03884166,98.21136245],[4.53714229,0.03884341,98.21113349],[4.53714271,0.03884517,98.21090508],[4.53714313,0.03884692,98.21067721],[4.53714355,0.03884868,98.21044988],[4.53714397,0.03885043,98.2102231],[4.53714439,0.03885218,98.20999687],[4.53714481,0.03885394,98.20977119],[4.53714523,0.03885569,98.20954607],[4.53714565,0.03885744,98.2093215],[4.53714607,0.0388592,98.20909748],[4.53714648,0.03886095,98.20887403],[4.5371469,0.03886271,98.20865113],[4.53714732,0.03886446,98.2084288],[4.53714774,0.03886621,98.20820703],[4.53714816,0.03886797,98.20798583],[4.53714858,0.03886972,98.20776519],[4.537149,0.03887148,98.20754513],[4.53714942,0.03887323,98.20732564],[4.53714984,0.03887498,98.20710672],[4.53715026,0.03887674,98.20688838],[4.53715068,0.03887849,98.20667061],[4.53715109,0.03888024,98.20645342],[4.53715151,0.038882,98.20623682],[4.53715193,0.03888375,98.2060208],[4.53715235,0.03888551,98.20580536],[4.53715277,0.03888726,98.20559051],[4.53715319,0.03888901,98.20537625],[4.53715361,0.03889077,98.20516257],[4.53715403,0.03889252,98.20494949],[4.53715445,0.03889428,98.20473701],[4.53715487,0.03889603,98.20452512],[4.53715529,0.03889778,98.20431383],[4.5371557,0.03889954,98.20410314],[4.53715612,0.03890129,98.20389305],[4.53715654,0.03890304,98.20368357],[4.53715696,0.0389048,98.20347469],[4.53715738,0.03890655,98.20326641],[4.5371578,0.03890831,98.20305874],[4.53715822,0.03891006,98.20285166],[4.53715864,0.03891181,98.20264517],[4.53715906,0.03891357,98.20243926],[4.53715948,0.03891532,98.20223392],[4.53715989,0.03891708,98.20202915],[4.53716031,0.03891883,98.20182495],[4.53716073,0.03892058,98.2016213],[4.53716115,0.03892234,98.20141821],[4.53716157,0.03892409,98.20121565],[4.53716199,0.03892584,98.20101364],[4.53716241,0.0389276,98.20081216],[4.53716283,0.03892935,98.20061123],[4.53716325,0.03893111,98.20041083],[4.53716366,0.03893286,98.20021097],[4.53716408,0.03893461,98.20001166],[4.5371645,0.03893637,98.19981289],[4.53716492,0.03893812,98.19961466],[4.53716534,0.03893988,98.19941697],[4.53716576,0.03894163,98.19921982],[4.53716618,0.03894338,98.19902323],[4.5371666,0.03894514,98.19882717],[4.53716701,0.03894689,98.19863166],[4.53716743,0.03894865,98.1984367],[4.53716785,0.0389504,98.19824229],[4.53716827,0.03895215,98.19804842],[4.53716869,0.03895391,98.1978551],[4.53716911,0.03895566,98.19766234],[4.53716953,0.03895742,98.19747012],[4.53716994,0.03895917,98.19727845],[4.53717036,0.03896092,98.19708733],[4.53717078,0.03896268,98.19689677],[4.5371712,0.03896443,98.19670676],[4.53717162,0.03896619,98.1965173],[4.53717204,0.03896794,98.1963284],[4.53717245,0.03896969,98.19614005],[4.53717287,0.03897145,98.19595226],[4.53717329,0.0389732,98.19576502],[4.53717371,0.03897496,98.19557834],[4.53717413,0.03897671,98.19539222],[4.53717455,0.03897846,98.19520665],[4.53717496,0.03898022,98.19502165],[4.53717538,0.03898197,98.1948372],[4.5371758,0.03898373,98.19465331],[4.53717622,0.03898548,98.19446999],[4.53717664,0.03898723,98.19428723],[4.53717705,0.03898899,98.19410502],[4.53717747,0.03899074,98.19392339],[4.53717789,0.0389925,98.19374231],[4.53717831,0.03899425,98.1935618],[4.53717873,0.03899601,98.19338186],[4.53717914,0.03899776,98.19320248],[4.53717956,0.03899951,98.19302366],[4.53717998,0.03900127,98.19284542],[4.5371804,0.03900302,98.19266774],[4.53718081,0.03900478,98.19249063],[4.53718123,0.03900653,98.19231409],[4.53718165,0.03900828,98.19213812],[4.53718207,0.03901004,98.19196272],[4.53718249,0.03901179,98.19178789],[4.5371829,0.03901355,98.19161363],[4.53718332,0.0390153,98.19143995],[4.53718374,0.03901706,98.19126684],[4.53718416,0.03901881,98.1910943],[4.53718457,0.03902056,98.19092233],[4.53718499,0.03902232,98.19075095],[4.53718541,0.03902407,98.19058013],[4.53718583,0.03902583,98.1904099],[4.53718624,0.03902758,98.19024024],[4.53718666,0.03902933,98.19007116],[4.53718708,0.03903109,98.18990266],[4.5371875,0.03903284,98.18973473],[4.53718791,0.0390346,98.18956739],[4.53718833,0.03903635,98.18940063],[4.53718875,0.03903811,98.18923445],[4.53718916,0.03903986,98.18906885],[4.53718958,0.03904161,98.18890383],[4.53719,0.03904337,98.1887394],[4.53719042,0.03904512,98.18857555],[4.53719083,0.03904688,98.18841229],[4.53719125,0.03904863,98.18824961],[4.53719167,0.03905039,98.18808752],[4.53719208,0.03905214,98.18792601],[4.5371925,0.03905389,98.18776509],[4.53719292,0.03905565,98.18760476],[4.53719333,0.0390574,98.18744502],[4.53719375,0.03905916,98.18728587],[4.53719417,0.03906091,98.18712731],[4.53719458,0.03906267,98.18696934],[4.537195,0.03906442,98.18681196],[4.53716337,0.03907208,98.08848807]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1003400","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2,"sOffset":249.1731744511}},{"geometry":{"coordinates":[[[4.537195,0.03906442,98.18681196],[4.53719458,0.03906267,98.18696934],[4.53719417,0.03906091,98.18712731],[4.53719375,0.03905916,98.18728587],[4.53719333,0.0390574,98.18744502],[4.53719292,0.03905565,98.18760476],[4.5371925,0.03905389,98.18776509],[4.53719208,0.03905214,98.18792601],[4.53719167,0.03905039,98.18808752],[4.53719125,0.03904863,98.18824961],[4.53719083,0.03904688,98.18841229],[4.53719042,0.03904512,98.18857555],[4.53719,0.03904337,98.1887394],[4.53718958,0.03904161,98.18890383],[4.53718916,0.03903986,98.18906885],[4.53718875,0.03903811,98.18923445],[4.53718833,0.03903635,98.18940063],[4.53718791,0.0390346,98.18956739],[4.5371875,0.03903284,98.18973473],[4.53718708,0.03903109,98.18990266],[4.53718666,0.03902933,98.19007116],[4.53718624,0.03902758,98.19024024],[4.53718583,0.03902583,98.1904099],[4.53718541,0.03902407,98.19058013],[4.53718499,0.03902232,98.19075095],[4.53718457,0.03902056,98.19092233],[4.53718416,0.03901881,98.1910943],[4.53718374,0.03901706,98.19126684],[4.53718332,0.0390153,98.19143995],[4.5371829,0.03901355,98.19161363],[4.53718249,0.03901179,98.19178789],[4.53718207,0.03901004,98.19196272],[4.53718165,0.03900828,98.19213812],[4.53718123,0.03900653,98.19231409],[4.53718081,0.03900478,98.19249063],[4.5371804,0.03900302,98.19266774],[4.53717998,0.03900127,98.19284542],[4.53717956,0.03899951,98.19302366],[4.53717914,0.03899776,98.19320248],[4.53717873,0.03899601,98.19338186],[4.53717831,0.03899425,98.1935618],[4.53717789,0.0389925,98.19374231],[4.53717747,0.03899074,98.19392339],[4.53717705,0.03898899,98.19410502],[4.53717664,0.03898723,98.19428723],[4.53717622,0.03898548,98.19446999],[4.5371758,0.03898373,98.19465331],[4.53717538,0.03898197,98.1948372],[4.53717496,0.03898022,98.19502165],[4.53717455,0.03897846,98.19520665],[4.53717413,0.03897671,98.19539222],[4.53717371,0.03897496,98.19557834],[4.53717329,0.0389732,98.19576502],[4.53717287,0.03897145,98.19595226],[4.53717245,0.03896969,98.19614005],[4.53717204,0.03896794,98.1963284],[4.53717162,0.03896619,98.1965173],[4.5371712,0.03896443,98.19670676],[4.53717078,0.03896268,98.19689677],[4.53717036,0.03896092,98.19708733],[4.53716994,0.03895917,98.19727845],[4.53716953,0.03895742,98.19747012],[4.53716911,0.03895566,98.19766234],[4.53716869,0.03895391,98.1978551],[4.53716827,0.03895215,98.19804842],[4.53716785,0.0389504,98.19824229],[4.53716743,0.03894865,98.1984367],[4.53716701,0.03894689,98.19863166],[4.5371666,0.03894514,98.19882717],[4.53716618,0.03894338,98.19902323],[4.53716576,0.03894163,98.19921982],[4.53716534,0.03893988,98.19941697],[4.53716492,0.03893812,98.19961466],[4.5371645,0.03893637,98.19981289],[4.53716408,0.03893461,98.20001166],[4.53716366,0.03893286,98.20021097],[4.53716325,0.03893111,98.20041083],[4.53716283,0.03892935,98.20061123],[4.53716241,0.0389276,98.20081216],[4.53716199,0.03892584,98.20101364],[4.53716157,0.03892409,98.20121565],[4.53716115,0.03892234,98.20141821],[4.53716073,0.03892058,98.2016213],[4.53716031,0.03891883,98.20182495],[4.53715989,0.03891708,98.20202915],[4.53715948,0.03891532,98.20223392],[4.53715906,0.03891357,98.20243926],[4.53715864,0.03891181,98.20264517],[4.53715822,0.03891006,98.20285166],[4.5371578,0.03890831,98.20305874],[4.53715738,0.03890655,98.20326641],[4.53715696,0.0389048,98.20347469],[4.53715654,0.03890304,98.20368357],[4.53715612,0.03890129,98.20389305],[4.5371557,0.03889954,98.20410314],[4.53715529,0.03889778,98.20431383],[4.53715487,0.03889603,98.20452512],[4.53715445,0.03889428,98.20473701],[4.53715403,0.03889252,98.20494949],[4.53715361,0.03889077,98.20516257],[4.53715319,0.03888901,98.20537625],[4.53715277,0.03888726,98.20559051],[4.53715235,0.03888551,98.20580536],[4.53715193,0.03888375,98.2060208],[4.53715151,0.038882,98.20623682],[4.53715109,0.03888024,98.20645342],[4.53715068,0.03887849,98.20667061],[4.53715026,0.03887674,98.20688838],[4.53714984,0.03887498,98.20710672],[4.53714942,0.03887323,98.20732564],[4.537149,0.03887148,98.20754513],[4.53714858,0.03886972,98.20776519],[4.53714816,0.03886797,98.20798583],[4.53714774,0.03886621,98.20820703],[4.53714732,0.03886446,98.2084288],[4.5371469,0.03886271,98.20865113],[4.53714648,0.03886095,98.20887403],[4.53714607,0.0388592,98.20909748],[4.53714565,0.03885744,98.2093215],[4.53714523,0.03885569,98.20954607],[4.53714481,0.03885394,98.20977119],[4.53714439,0.03885218,98.20999687],[4.53714397,0.03885043,98.2102231],[4.53714355,0.03884868,98.21044988],[4.53714313,0.03884692,98.21067721],[4.53714271,0.03884517,98.21090508],[4.53714229,0.03884341,98.21113349],[4.53714187,0.03884166,98.21136245],[4.53714145,0.03883991,98.21159195],[4.53714104,0.03883815,98.21182199],[4.53714062,0.0388364,98.21205256],[4.5371402,0.03883465,98.21228367],[4.53713978,0.03883289,98.2125153],[4.53713936,0.03883114,98.21274747],[4.53713894,0.03882938,98.21298017],[4.53713852,0.03882763,98.2132134],[4.5371381,0.03882588,98.21344715],[4.53713768,0.03882412,98.21368142],[4.53713726,0.03882237,98.21391622],[4.53713684,0.03882062,98.21415153],[4.53713642,0.03881886,98.21438737],[4.537136,0.03881711,98.21462372],[4.53713558,0.03881535,98.21486058],[4.53713517,0.0388136,98.21509795],[4.53713475,0.03881185,98.21533584],[4.53713433,0.03881009,98.21557423],[4.53713391,0.03880834,98.21581313],[4.53713349,0.03880659,98.21605254],[4.53713307,0.03880483,98.21629244],[4.53713265,0.03880308,98.21653285],[4.53713223,0.03880132,98.21677376],[4.53713181,0.03879957,98.21701517],[4.53713139,0.03879782,98.21725707],[4.53713097,0.03879606,98.21749946],[4.53713055,0.03879431,98.21774235],[4.53713013,0.03879256,98.21798572],[4.53712971,0.0387908,98.21822959],[4.53712929,0.03878905,98.21847394],[4.53712887,0.03878729,98.21871877],[4.53712845,0.03878554,98.21896409],[4.53712803,0.03878379,98.21920989],[4.53712761,0.03878203,98.21945616],[4.53712719,0.03878028,98.21970292],[4.53712677,0.03877853,98.21995014],[4.53712635,0.03877677,98.22019785],[4.53712593,0.03877502,98.22044602],[4.53712551,0.03877327,98.22069466],[4.53712509,0.03877151,98.22094378],[4.53712467,0.03876976,98.22119335],[4.53712425,0.038768,98.22144339],[4.53712383,0.03876625,98.2216939],[4.53712341,0.0387645,98.22194486],[4.53712299,0.03876274,98.22219628],[4.53712257,0.03876099,98.22244816],[4.53712215,0.03875924,98.2227005],[4.53712173,0.03875748,98.22295329],[4.53712131,0.03875573,98.22320652],[4.53712089,0.03875398,98.22346021],[4.53712047,0.03875222,98.22371435],[4.53712005,0.03875047,98.22396893],[4.53711963,0.03874872,98.22422396],[4.53711921,0.03874696,98.22447942],[4.53711879,0.03874521,98.22473533],[4.53711856,0.03874426,98.22487432],[4.53714967,0.0387367,98.31868686],[4.5371499,0.03873765,98.31855895],[4.53715032,0.0387394,98.31832337],[4.53715074,0.03874116,98.31808806],[4.53715116,0.03874291,98.31785305],[4.53715159,0.03874466,98.31761834],[4.53715201,0.03874642,98.31738393],[4.53715243,0.03874817,98.31714983],[4.53715285,0.03874992,98.31691604],[4.53715327,0.03875168,98.31668257],[4.53715369,0.03875343,98.31644942],[4.53715412,0.03875518,98.31621661],[4.53715454,0.03875694,98.31598413],[4.53715496,0.03875869,98.31575199],[4.53715538,0.03876044,98.31552019],[4.5371558,0.0387622,98.31528875],[4.53715622,0.03876395,98.31505766],[4.53715664,0.0387657,98.31482694],[4.53715707,0.03876746,98.31459659],[4.53715749,0.03876921,98.31436661],[4.53715791,0.03877097,98.314137],[4.53715833,0.03877272,98.31390779],[4.53715875,0.03877447,98.31367896],[4.53715917,0.03877623,98.31345052],[4.53715959,0.03877798,98.31322249],[4.53716001,0.03877973,98.31299487],[4.53716043,0.03878149,98.31276765],[4.53716085,0.03878324,98.31254086],[4.53716127,0.03878499,98.31231448],[4.53716169,0.03878675,98.31208854],[4.53716211,0.0387885,98.31186303],[4.53716254,0.03879026,98.31163795],[4.53716296,0.03879201,98.31141332],[4.53716338,0.03879376,98.31118915],[4.5371638,0.03879552,98.31096543],[4.53716422,0.03879727,98.31074216],[4.53716464,0.03879902,98.31051937],[4.53716506,0.03880078,98.31029705],[4.53716548,0.03880253,98.31007521],[4.5371659,0.03880428,98.30985385],[4.53716632,0.03880604,98.30963297],[4.53716674,0.03880779,98.3094126],[4.53716716,0.03880955,98.30919272],[4.53716758,0.0388113,98.30897335],[4.537168,0.03881305,98.30875449],[4.53716842,0.03881481,98.30853614],[4.53716884,0.03881656,98.30831832],[4.53716926,0.03881832,98.30810103],[4.53716968,0.03882007,98.30788426],[4.5371701,0.03882182,98.30766804],[4.53717052,0.03882358,98.30745236],[4.53717094,0.03882533,98.30723723],[4.53717136,0.03882708,98.30702266],[4.53717178,0.03882884,98.30680865],[4.5371722,0.03883059,98.3065952],[4.53717261,0.03883235,98.30638233],[4.53717303,0.0388341,98.30617003],[4.53717345,0.03883585,98.30595832],[4.53717387,0.03883761,98.3057472],[4.53717429,0.03883936,98.30553667],[4.53717471,0.03884111,98.30532674],[4.53717513,0.03884287,98.30511742],[4.53717555,0.03884462,98.3049087],[4.53717597,0.03884638,98.30470061],[4.53717639,0.03884813,98.30449314],[4.53717681,0.03884988,98.30428629],[4.53717723,0.03885164,98.30408008],[4.53717765,0.03885339,98.30387451],[4.53717807,0.03885515,98.30366958],[4.53717849,0.0388569,98.3034653],[4.53717891,0.03885865,98.30326168],[4.53717933,0.03886041,98.30305872],[4.53717975,0.03886216,98.30285643],[4.53718017,0.03886391,98.30265481],[4.53718059,0.03886567,98.30245387],[4.53718101,0.03886742,98.30225362],[4.53718143,0.03886918,98.30205405],[4.53718185,0.03887093,98.30185518],[4.53718227,0.03887268,98.30165701],[4.53718269,0.03887444,98.30145955],[4.53718311,0.03887619,98.3012628],[4.53718353,0.03887794,98.30106677],[4.53718395,0.0388797,98.30087146],[4.53718437,0.03888145,98.30067688],[4.53718479,0.03888321,98.30048304],[4.53718521,0.03888496,98.30028994],[4.53718563,0.03888671,98.30009758],[4.53718605,0.03888847,98.29990598],[4.53718647,0.03889022,98.29971513],[4.53718689,0.03889197,98.29952505],[4.53718732,0.03889373,98.29933574],[4.53718774,0.03889548,98.2991472],[4.53718816,0.03889723,98.29895944],[4.53718858,0.03889899,98.29877247],[4.537189,0.03890074,98.29858628],[4.53718942,0.03890249,98.29840087],[4.53718984,0.03890425,98.29821624],[4.53719026,0.038906,98.29803238],[4.53719068,0.03890776,98.2978493],[4.5371911,0.03890951,98.29766699],[4.53719152,0.03891126,98.29748545],[4.53719195,0.03891302,98.29730467],[4.53719237,0.03891477,98.29712465],[4.53719279,0.03891652,98.2969454],[4.53719321,0.03891828,98.29676691],[4.53719363,0.03892003,98.29658917],[4.53719405,0.03892178,98.29641219],[4.53719447,0.03892354,98.29623596],[4.53719489,0.03892529,98.29606047],[4.53719532,0.03892704,98.29588574],[4.53719574,0.0389288,98.29571174],[4.53719616,0.03893055,98.29553849],[4.53719658,0.0389323,98.29536598],[4.537197,0.03893406,98.29519421],[4.53719742,0.03893581,98.29502317],[4.53719785,0.03893756,98.29485286],[4.53719827,0.03893932,98.29468328],[4.53719869,0.03894107,98.29451443],[4.53719911,0.03894282,98.2943463],[4.53719953,0.03894458,98.29417889],[4.53719995,0.03894633,98.29401221],[4.53720038,0.03894808,98.29384624],[4.5372008,0.03894984,98.29368099],[4.53720122,0.03895159,98.29351645],[4.53720164,0.03895334,98.29335261],[4.53720206,0.0389551,98.29318949],[4.53720249,0.03895685,98.29302707],[4.53720291,0.0389586,98.29286535],[4.53720333,0.03896036,98.29270434],[4.53720375,0.03896211,98.29254402],[4.53720417,0.03896386,98.29238439],[4.5372046,0.03896562,98.29222546],[4.53720502,0.03896737,98.29206722],[4.53720544,0.03896912,98.29190966],[4.53720586,0.03897088,98.29175279],[4.53720628,0.03897263,98.2915966],[4.53720671,0.03897438,98.2914411],[4.53720713,0.03897613,98.29128627],[4.53720755,0.03897789,98.29113211],[4.53720797,0.03897964,98.29097863],[4.5372084,0.03898139,98.29082582],[4.53720882,0.03898315,98.29067367],[4.53720924,0.0389849,98.29052219],[4.53720966,0.03898665,98.29037138],[4.53721008,0.03898841,98.29022122],[4.53721051,0.03899016,98.29007172],[4.53721093,0.03899191,98.28992287],[4.53721135,0.03899367,98.28977468],[4.53721177,0.03899542,98.28962714],[4.5372122,0.03899717,98.28948024],[4.53721262,0.03899893,98.28933399],[4.53721304,0.03900068,98.28918838],[4.53721346,0.03900243,98.28904342],[4.53721389,0.03900419,98.28889909],[4.53721431,0.03900594,98.28875539],[4.53721473,0.03900769,98.28861233],[4.53721515,0.03900945,98.28846989],[4.53721557,0.0390112,98.28832808],[4.537216,0.03901295,98.2881869],[4.53721642,0.03901471,98.28804634],[4.53721684,0.03901646,98.2879064],[4.53721726,0.03901821,98.28776707],[4.53721768,0.03901997,98.28762836],[4.53721811,0.03902172,98.28749027],[4.53721853,0.03902347,98.28735278],[4.53721895,0.03902523,98.28721589],[4.53721937,0.03902698,98.28707962],[4.53721979,0.03902873,98.28694394],[4.53722022,0.03903049,98.28680886],[4.53722064,0.03903224,98.28667438],[4.53722106,0.03903399,98.28654049],[4.53722148,0.03903575,98.2864072],[4.5372219,0.0390375,98.28627449],[4.53722233,0.03903925,98.28614237],[4.53722275,0.03904101,98.28601083],[4.53722317,0.03904276,98.28587987],[4.53722359,0.03904451,98.28574949],[4.53722401,0.03904627,98.28561969],[4.53722443,0.03904802,98.28549046],[4.53722486,0.03904977,98.2853618],[4.53722528,0.03905153,98.28523371],[4.5372257,0.03905328,98.28510619],[4.53722612,0.03905503,98.28497922],[4.53722654,0.03905679,98.28485282],[4.537195,0.03906442,98.18681196]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1003400","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1,"sOffset":249.1731744511}},{"geometry":{"coordinates":[[[4.53722654,0.03905679,98.28485282],[4.53722612,0.03905503,98.28497922],[4.5372257,0.03905328,98.28510619],[4.53722528,0.03905153,98.28523371],[4.53722486,0.03904977,98.2853618],[4.53722443,0.03904802,98.28549046],[4.53722401,0.03904627,98.28561969],[4.53722359,0.03904451,98.28574949],[4.53722317,0.03904276,98.28587987],[4.53722275,0.03904101,98.28601083],[4.53722233,0.03903925,98.28614237],[4.5372219,0.0390375,98.28627449],[4.53722148,0.03903575,98.2864072],[4.53722106,0.03903399,98.28654049],[4.53722064,0.03903224,98.28667438],[4.53722022,0.03903049,98.28680886],[4.53721979,0.03902873,98.28694394],[4.53721937,0.03902698,98.28707962],[4.53721895,0.03902523,98.28721589],[4.53721853,0.03902347,98.28735278],[4.53721811,0.03902172,98.28749027],[4.53721768,0.03901997,98.28762836],[4.53721726,0.03901821,98.28776707],[4.53721684,0.03901646,98.2879064],[4.53721642,0.03901471,98.28804634],[4.537216,0.03901295,98.2881869],[4.53721557,0.0390112,98.28832808],[4.53721515,0.03900945,98.28846989],[4.53721473,0.03900769,98.28861233],[4.53721431,0.03900594,98.28875539],[4.53721389,0.03900419,98.28889909],[4.53721346,0.03900243,98.28904342],[4.53721304,0.03900068,98.28918838],[4.53721262,0.03899893,98.28933399],[4.5372122,0.03899717,98.28948024],[4.53721177,0.03899542,98.28962714],[4.53721135,0.03899367,98.28977468],[4.53721093,0.03899191,98.28992287],[4.53721051,0.03899016,98.29007172],[4.53721008,0.03898841,98.29022122],[4.53720966,0.03898665,98.29037138],[4.53720924,0.0389849,98.29052219],[4.53720882,0.03898315,98.29067367],[4.5372084,0.03898139,98.29082582],[4.53720797,0.03897964,98.29097863],[4.53720755,0.03897789,98.29113211],[4.53720713,0.03897613,98.29128627],[4.53720671,0.03897438,98.2914411],[4.53720628,0.03897263,98.2915966],[4.53720586,0.03897088,98.29175279],[4.53720544,0.03896912,98.29190966],[4.53720502,0.03896737,98.29206722],[4.5372046,0.03896562,98.29222546],[4.53720417,0.03896386,98.29238439],[4.53720375,0.03896211,98.29254402],[4.53720333,0.03896036,98.29270434],[4.53720291,0.0389586,98.29286535],[4.53720249,0.03895685,98.29302707],[4.53720206,0.0389551,98.29318949],[4.53720164,0.03895334,98.29335261],[4.53720122,0.03895159,98.29351645],[4.5372008,0.03894984,98.29368099],[4.53720038,0.03894808,98.29384624],[4.53719995,0.03894633,98.29401221],[4.53719953,0.03894458,98.29417889],[4.53719911,0.03894282,98.2943463],[4.53719869,0.03894107,98.29451443],[4.53719827,0.03893932,98.29468328],[4.53719785,0.03893756,98.29485286],[4.53719742,0.03893581,98.29502317],[4.537197,0.03893406,98.29519421],[4.53719658,0.0389323,98.29536598],[4.53719616,0.03893055,98.29553849],[4.53719574,0.0389288,98.29571174],[4.53719532,0.03892704,98.29588574],[4.53719489,0.03892529,98.29606047],[4.53719447,0.03892354,98.29623596],[4.53719405,0.03892178,98.29641219],[4.53719363,0.03892003,98.29658917],[4.53719321,0.03891828,98.29676691],[4.53719279,0.03891652,98.2969454],[4.53719237,0.03891477,98.29712465],[4.53719195,0.03891302,98.29730467],[4.53719152,0.03891126,98.29748545],[4.5371911,0.03890951,98.29766699],[4.53719068,0.03890776,98.2978493],[4.53719026,0.038906,98.29803238],[4.53718984,0.03890425,98.29821624],[4.53718942,0.03890249,98.29840087],[4.537189,0.03890074,98.29858628],[4.53718858,0.03889899,98.29877247],[4.53718816,0.03889723,98.29895944],[4.53718774,0.03889548,98.2991472],[4.53718732,0.03889373,98.29933574],[4.53718689,0.03889197,98.29952505],[4.53718647,0.03889022,98.29971513],[4.53718605,0.03888847,98.29990598],[4.53718563,0.03888671,98.30009758],[4.53718521,0.03888496,98.30028994],[4.53718479,0.03888321,98.30048304],[4.53718437,0.03888145,98.30067688],[4.53718395,0.0388797,98.30087146],[4.53718353,0.03887794,98.30106677],[4.53718311,0.03887619,98.3012628],[4.53718269,0.03887444,98.30145955],[4.53718227,0.03887268,98.30165701],[4.53718185,0.03887093,98.30185518],[4.53718143,0.03886918,98.30205405],[4.53718101,0.03886742,98.30225362],[4.53718059,0.03886567,98.30245387],[4.53718017,0.03886391,98.30265481],[4.53717975,0.03886216,98.30285643],[4.53717933,0.03886041,98.30305872],[4.53717891,0.03885865,98.30326168],[4.53717849,0.0388569,98.3034653],[4.53717807,0.03885515,98.30366958],[4.53717765,0.03885339,98.30387451],[4.53717723,0.03885164,98.30408008],[4.53717681,0.03884988,98.30428629],[4.53717639,0.03884813,98.30449314],[4.53717597,0.03884638,98.30470061],[4.53717555,0.03884462,98.3049087],[4.53717513,0.03884287,98.30511742],[4.53717471,0.03884111,98.30532674],[4.53717429,0.03883936,98.30553667],[4.53717387,0.03883761,98.3057472],[4.53717345,0.03883585,98.30595832],[4.53717303,0.0388341,98.30617003],[4.53717261,0.03883235,98.30638233],[4.5371722,0.03883059,98.3065952],[4.53717178,0.03882884,98.30680865],[4.53717136,0.03882708,98.30702266],[4.53717094,0.03882533,98.30723723],[4.53717052,0.03882358,98.30745236],[4.5371701,0.03882182,98.30766804],[4.53716968,0.03882007,98.30788426],[4.53716926,0.03881832,98.30810103],[4.53716884,0.03881656,98.30831832],[4.53716842,0.03881481,98.30853614],[4.537168,0.03881305,98.30875449],[4.53716758,0.0388113,98.30897335],[4.53716716,0.03880955,98.30919272],[4.53716674,0.03880779,98.3094126],[4.53716632,0.03880604,98.30963297],[4.5371659,0.03880428,98.30985385],[4.53716548,0.03880253,98.31007521],[4.53716506,0.03880078,98.31029705],[4.53716464,0.03879902,98.31051937],[4.53716422,0.03879727,98.31074216],[4.5371638,0.03879552,98.31096543],[4.53716338,0.03879376,98.31118915],[4.53716296,0.03879201,98.31141332],[4.53716254,0.03879026,98.31163795],[4.53716211,0.0387885,98.31186303],[4.53716169,0.03878675,98.31208854],[4.53716127,0.03878499,98.31231448],[4.53716085,0.03878324,98.31254086],[4.53716043,0.03878149,98.31276765],[4.53716001,0.03877973,98.31299487],[4.53715959,0.03877798,98.31322249],[4.53715917,0.03877623,98.31345052],[4.53715875,0.03877447,98.31367896],[4.53715833,0.03877272,98.31390779],[4.53715791,0.03877097,98.314137],[4.53715749,0.03876921,98.31436661],[4.53715707,0.03876746,98.31459659],[4.53715664,0.0387657,98.31482694],[4.53715622,0.03876395,98.31505766],[4.5371558,0.0387622,98.31528875],[4.53715538,0.03876044,98.31552019],[4.53715496,0.03875869,98.31575199],[4.53715454,0.03875694,98.31598413],[4.53715412,0.03875518,98.31621661],[4.53715369,0.03875343,98.31644942],[4.53715327,0.03875168,98.31668257],[4.53715285,0.03874992,98.31691604],[4.53715243,0.03874817,98.31714983],[4.53715201,0.03874642,98.31738393],[4.53715159,0.03874466,98.31761834],[4.53715116,0.03874291,98.31785305],[4.53715074,0.03874116,98.31808806],[4.53715032,0.0387394,98.31832337],[4.5371499,0.03873765,98.31855895],[4.53714967,0.0387367,98.31868686],[4.53715297,0.0387359,98.32865246],[4.5371532,0.03873685,98.32852204],[4.53715362,0.0387386,98.32828181],[4.53715404,0.03874036,98.32804187],[4.53715446,0.03874211,98.32780222],[4.53715488,0.03874386,98.32756287],[4.5371553,0.03874562,98.32732382],[4.53715572,0.03874737,98.32708508],[4.53715614,0.03874913,98.32684666],[4.53715656,0.03875088,98.32660855],[4.53715698,0.03875263,98.32637078],[4.5371574,0.03875439,98.32613333],[4.53715782,0.03875614,98.32589622],[4.53715824,0.03875789,98.32565945],[4.53715866,0.03875965,98.32542303],[4.53715908,0.0387614,98.32518696],[4.5371595,0.03876316,98.32495125],[4.53715992,0.03876491,98.32471591],[4.53716033,0.03876666,98.32448093],[4.53716075,0.03876842,98.32424633],[4.53716117,0.03877017,98.3240121],[4.53716159,0.03877193,98.32377826],[4.53716201,0.03877368,98.32354482],[4.53716243,0.03877543,98.32331177],[4.53716285,0.03877719,98.32307912],[4.53716327,0.03877894,98.32284688],[4.53716368,0.0387807,98.32261505],[4.5371641,0.03878245,98.32238363],[4.53716452,0.03878421,98.32215265],[4.53716494,0.03878596,98.32192209],[4.53716536,0.03878771,98.32169196],[4.53716578,0.03878947,98.32146228],[4.5371662,0.03879122,98.32123304],[4.53716661,0.03879298,98.32100425],[4.53716703,0.03879473,98.32077592],[4.53716745,0.03879648,98.32054805],[4.53716787,0.03879824,98.32032064],[4.53716829,0.03879999,98.32009371],[4.5371687,0.03880175,98.31986726],[4.53716912,0.0388035,98.31964129],[4.53716954,0.03880526,98.31941581],[4.53716996,0.03880701,98.31919083],[4.53717038,0.03880876,98.31896635],[4.53717079,0.03881052,98.31874237],[4.53717121,0.03881227,98.3185189],[4.53717163,0.03881403,98.31829595],[4.53717205,0.03881578,98.31807352],[4.53717247,0.03881754,98.31785162],[4.53717288,0.03881929,98.31763026],[4.5371733,0.03882104,98.31740943],[4.53717372,0.0388228,98.31718914],[4.53717414,0.03882455,98.31696941],[4.53717455,0.03882631,98.31675023],[4.53717497,0.03882806,98.31653161],[4.53717539,0.03882982,98.31631356],[4.53717581,0.03883157,98.31609609],[4.53717623,0.03883333,98.31587918],[4.53717664,0.03883508,98.31566287],[4.53717706,0.03883683,98.31544714],[4.53717748,0.03883859,98.315232],[4.5371779,0.03884034,98.31501747],[4.53717831,0.0388421,98.31480354],[4.53717873,0.03884385,98.31459022],[4.53717915,0.03884561,98.31437752],[4.53717957,0.03884736,98.31416544],[4.53717999,0.03884911,98.31395398],[4.5371804,0.03885087,98.31374317],[4.53718082,0.03885262,98.31353299],[4.53718124,0.03885438,98.31332345],[4.53718166,0.03885613,98.31311456],[4.53718207,0.03885789,98.31290633],[4.53718249,0.03885964,98.31269877],[4.53718291,0.03886139,98.31249186],[4.53718333,0.03886315,98.31228564],[4.53718375,0.0388649,98.31208008],[4.53718416,0.03886666,98.31187522],[4.53718458,0.03886841,98.31167104],[4.537185,0.03887017,98.31146755],[4.53718542,0.03887192,98.31126477],[4.53718584,0.03887367,98.3110627],[4.53718625,0.03887543,98.31086133],[4.53718667,0.03887718,98.31066068],[4.53718709,0.03887894,98.31046076],[4.53718751,0.03888069,98.31026156],[4.53718793,0.03888245,98.3100631],[4.53718835,0.0388842,98.30986538],[4.53718876,0.03888595,98.3096684],[4.53718918,0.03888771,98.30947218],[4.5371896,0.03888946,98.30927671],[4.53719002,0.03889122,98.30908201],[4.53719044,0.03889297,98.30888807],[4.53719086,0.03889472,98.30869491],[4.53719127,0.03889648,98.30850253],[4.53719169,0.03889823,98.30831093],[4.53719211,0.03889999,98.30812011],[4.53719253,0.03890174,98.30793007],[4.53719295,0.03890349,98.30774081],[4.53719337,0.03890525,98.30755232],[4.53719379,0.038907,98.30736461],[4.53719421,0.03890876,98.30717766],[4.53719463,0.03891051,98.30699148],[4.53719504,0.03891226,98.30680607],[4.53719546,0.03891402,98.30662142],[4.53719588,0.03891577,98.30643753],[4.5371963,0.03891753,98.30625439],[4.53719672,0.03891928,98.30607201],[4.53719714,0.03892103,98.30589039],[4.53719756,0.03892279,98.30570951],[4.53719798,0.03892454,98.30552938],[4.5371984,0.0389263,98.30535],[4.53719882,0.03892805,98.30517136],[4.53719924,0.0389298,98.30499346],[4.53719966,0.03893156,98.30481629],[4.53720008,0.03893331,98.30463986],[4.5372005,0.03893507,98.30446417],[4.53720092,0.03893682,98.3042892],[4.53720134,0.03893857,98.30411497],[4.53720176,0.03894033,98.30394145],[4.53720218,0.03894208,98.30376867],[4.5372026,0.03894383,98.3035966],[4.53720301,0.03894559,98.30342525],[4.53720343,0.03894734,98.30325461],[4.53720385,0.0389491,98.30308469],[4.53720427,0.03895085,98.30291548],[4.53720469,0.0389526,98.30274697],[4.53720511,0.03895436,98.30257918],[4.53720553,0.03895611,98.30241208],[4.53720595,0.03895786,98.30224569],[4.53720637,0.03895962,98.30207999],[4.53720679,0.03896137,98.30191499],[4.53720721,0.03896313,98.30175068],[4.53720763,0.03896488,98.30158706],[4.53720805,0.03896663,98.30142413],[4.53720847,0.03896839,98.30126189],[4.53720889,0.03897014,98.30110033],[4.53720932,0.03897189,98.30093945],[4.53720974,0.03897365,98.30077924],[4.53721016,0.0389754,98.30061971],[4.53721058,0.03897716,98.30046086],[4.537211,0.03897891,98.30030268],[4.53721142,0.03898066,98.30014516],[4.53721184,0.03898242,98.29998831],[4.53721226,0.03898417,98.29983212],[4.53721268,0.03898592,98.29967659],[4.5372131,0.03898768,98.29952172],[4.53721352,0.03898943,98.2993675],[4.53721394,0.03899119,98.29921394],[4.53721436,0.03899294,98.29906103],[4.53721478,0.03899469,98.29890876],[4.5372152,0.03899645,98.29875714],[4.53721562,0.0389982,98.29860616],[4.53721604,0.03899995,98.29845582],[4.53721646,0.03900171,98.29830612],[4.53721688,0.03900346,98.29815706],[4.5372173,0.03900521,98.29800862],[4.53721772,0.03900697,98.29786082],[4.53721814,0.03900872,98.29771364],[4.53721856,0.03901048,98.29756709],[4.53721898,0.03901223,98.29742116],[4.5372194,0.03901398,98.29727585],[4.53721982,0.03901574,98.29713115],[4.53722024,0.03901749,98.29698707],[4.53722066,0.03901924,98.29684361],[4.53722108,0.039021,98.29670075],[4.5372215,0.03902275,98.29655849],[4.53722192,0.03902451,98.29641684],[4.53722234,0.03902626,98.2962758],[4.53722276,0.03902801,98.29613535],[4.53722318,0.03902977,98.2959955],[4.5372236,0.03903152,98.29585624],[4.53722402,0.03903328,98.29571757],[4.53722444,0.03903503,98.29557949],[4.53722486,0.03903678,98.29544199],[4.53722528,0.03903854,98.29530508],[4.5372257,0.03904029,98.29516875],[4.53722612,0.03904204,98.295033],[4.53722654,0.0390438,98.29489783],[4.53722696,0.03904555,98.29476322],[4.53722738,0.03904731,98.29462919],[4.5372278,0.03904906,98.29449572],[4.53722822,0.03905081,98.29436282],[4.53722864,0.03905257,98.29423048],[4.53722906,0.03905432,98.2940987],[4.53722947,0.03905608,98.29396748],[4.53722654,0.03905679,98.28485282]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1003400","id":1,"type":"shoulder","predecessorId":1,"sOffset":249.1731744511}},{"geometry":{"coordinates":[[[4.53722947,0.03905608,98.29396748],[4.53722906,0.03905432,98.2940987],[4.53722864,0.03905257,98.29423048],[4.53722822,0.03905081,98.29436282],[4.5372278,0.03904906,98.29449572],[4.53722738,0.03904731,98.29462919],[4.53722696,0.03904555,98.29476322],[4.53722654,0.0390438,98.29489783],[4.53722612,0.03904204,98.295033],[4.5372257,0.03904029,98.29516875],[4.53722528,0.03903854,98.29530508],[4.53722486,0.03903678,98.29544199],[4.53722444,0.03903503,98.29557949],[4.53722402,0.03903328,98.29571757],[4.5372236,0.03903152,98.29585624],[4.53722318,0.03902977,98.2959955],[4.53722276,0.03902801,98.29613535],[4.53722234,0.03902626,98.2962758],[4.53722192,0.03902451,98.29641684],[4.5372215,0.03902275,98.29655849],[4.53722108,0.039021,98.29670075],[4.53722066,0.03901924,98.29684361],[4.53722024,0.03901749,98.29698707],[4.53721982,0.03901574,98.29713115],[4.5372194,0.03901398,98.29727585],[4.53721898,0.03901223,98.29742116],[4.53721856,0.03901048,98.29756709],[4.53721814,0.03900872,98.29771364],[4.53721772,0.03900697,98.29786082],[4.5372173,0.03900521,98.29800862],[4.53721688,0.03900346,98.29815706],[4.53721646,0.03900171,98.29830612],[4.53721604,0.03899995,98.29845582],[4.53721562,0.0389982,98.29860616],[4.5372152,0.03899645,98.29875714],[4.53721478,0.03899469,98.29890876],[4.53721436,0.03899294,98.29906103],[4.53721394,0.03899119,98.29921394],[4.53721352,0.03898943,98.2993675],[4.5372131,0.03898768,98.29952172],[4.53721268,0.03898592,98.29967659],[4.53721226,0.03898417,98.29983212],[4.53721184,0.03898242,98.29998831],[4.53721142,0.03898066,98.30014516],[4.537211,0.03897891,98.30030268],[4.53721058,0.03897716,98.30046086],[4.53721016,0.0389754,98.30061971],[4.53720974,0.03897365,98.30077924],[4.53720932,0.03897189,98.30093945],[4.53720889,0.03897014,98.30110033],[4.53720847,0.03896839,98.30126189],[4.53720805,0.03896663,98.30142413],[4.53720763,0.03896488,98.30158706],[4.53720721,0.03896313,98.30175068],[4.53720679,0.03896137,98.30191499],[4.53720637,0.03895962,98.30207999],[4.53720595,0.03895786,98.30224569],[4.53720553,0.03895611,98.30241208],[4.53720511,0.03895436,98.30257918],[4.53720469,0.0389526,98.30274697],[4.53720427,0.03895085,98.30291548],[4.53720385,0.0389491,98.30308469],[4.53720343,0.03894734,98.30325461],[4.53720301,0.03894559,98.30342525],[4.5372026,0.03894383,98.3035966],[4.53720218,0.03894208,98.30376867],[4.53720176,0.03894033,98.30394145],[4.53720134,0.03893857,98.30411497],[4.53720092,0.03893682,98.3042892],[4.5372005,0.03893507,98.30446417],[4.53720008,0.03893331,98.30463986],[4.53719966,0.03893156,98.30481629],[4.53719924,0.0389298,98.30499346],[4.53719882,0.03892805,98.30517136],[4.5371984,0.0389263,98.30535],[4.53719798,0.03892454,98.30552938],[4.53719756,0.03892279,98.30570951],[4.53719714,0.03892103,98.30589039],[4.53719672,0.03891928,98.30607201],[4.5371963,0.03891753,98.30625439],[4.53719588,0.03891577,98.30643753],[4.53719546,0.03891402,98.30662142],[4.53719504,0.03891226,98.30680607],[4.53719463,0.03891051,98.30699148],[4.53719421,0.03890876,98.30717766],[4.53719379,0.038907,98.30736461],[4.53719337,0.03890525,98.30755232],[4.53719295,0.03890349,98.30774081],[4.53719253,0.03890174,98.30793007],[4.53719211,0.03889999,98.30812011],[4.53719169,0.03889823,98.30831093],[4.53719127,0.03889648,98.30850253],[4.53719086,0.03889472,98.30869491],[4.53719044,0.03889297,98.30888807],[4.53719002,0.03889122,98.30908201],[4.5371896,0.03888946,98.30927671],[4.53718918,0.03888771,98.30947218],[4.53718876,0.03888595,98.3096684],[4.53718835,0.0388842,98.30986538],[4.53718793,0.03888245,98.3100631],[4.53718751,0.03888069,98.31026156],[4.53718709,0.03887894,98.31046076],[4.53718667,0.03887718,98.31066068],[4.53718625,0.03887543,98.31086133],[4.53718584,0.03887367,98.3110627],[4.53718542,0.03887192,98.31126477],[4.537185,0.03887017,98.31146755],[4.53718458,0.03886841,98.31167104],[4.53718416,0.03886666,98.31187522],[4.53718375,0.0388649,98.31208008],[4.53718333,0.03886315,98.31228564],[4.53718291,0.03886139,98.31249186],[4.53718249,0.03885964,98.31269877],[4.53718207,0.03885789,98.31290633],[4.53718166,0.03885613,98.31311456],[4.53718124,0.03885438,98.31332345],[4.53718082,0.03885262,98.31353299],[4.5371804,0.03885087,98.31374317],[4.53717999,0.03884911,98.31395398],[4.53717957,0.03884736,98.31416544],[4.53717915,0.03884561,98.31437752],[4.53717873,0.03884385,98.31459022],[4.53717831,0.0388421,98.31480354],[4.5371779,0.03884034,98.31501747],[4.53717748,0.03883859,98.315232],[4.53717706,0.03883683,98.31544714],[4.53717664,0.03883508,98.31566287],[4.53717623,0.03883333,98.31587918],[4.53717581,0.03883157,98.31609609],[4.53717539,0.03882982,98.31631356],[4.53717497,0.03882806,98.31653161],[4.53717455,0.03882631,98.31675023],[4.53717414,0.03882455,98.31696941],[4.53717372,0.0388228,98.31718914],[4.5371733,0.03882104,98.31740943],[4.53717288,0.03881929,98.31763026],[4.53717247,0.03881754,98.31785162],[4.53717205,0.03881578,98.31807352],[4.53717163,0.03881403,98.31829595],[4.53717121,0.03881227,98.3185189],[4.53717079,0.03881052,98.31874237],[4.53717038,0.03880876,98.31896635],[4.53716996,0.03880701,98.31919083],[4.53716954,0.03880526,98.31941581],[4.53716912,0.0388035,98.31964129],[4.5371687,0.03880175,98.31986726],[4.53716829,0.03879999,98.32009371],[4.53716787,0.03879824,98.32032064],[4.53716745,0.03879648,98.32054805],[4.53716703,0.03879473,98.32077592],[4.53716661,0.03879298,98.32100425],[4.5371662,0.03879122,98.32123304],[4.53716578,0.03878947,98.32146228],[4.53716536,0.03878771,98.32169196],[4.53716494,0.03878596,98.32192209],[4.53716452,0.03878421,98.32215265],[4.5371641,0.03878245,98.32238363],[4.53716368,0.0387807,98.32261505],[4.53716327,0.03877894,98.32284688],[4.53716285,0.03877719,98.32307912],[4.53716243,0.03877543,98.32331177],[4.53716201,0.03877368,98.32354482],[4.53716159,0.03877193,98.32377826],[4.53716117,0.03877017,98.3240121],[4.53716075,0.03876842,98.32424633],[4.53716033,0.03876666,98.32448093],[4.53715992,0.03876491,98.32471591],[4.5371595,0.03876316,98.32495125],[4.53715908,0.0387614,98.32518696],[4.53715866,0.03875965,98.32542303],[4.53715824,0.03875789,98.32565945],[4.53715782,0.03875614,98.32589622],[4.5371574,0.03875439,98.32613333],[4.53715698,0.03875263,98.32637078],[4.53715656,0.03875088,98.32660855],[4.53715614,0.03874913,98.32684666],[4.53715572,0.03874737,98.32708508],[4.5371553,0.03874562,98.32732382],[4.53715488,0.03874386,98.32756287],[4.53715446,0.03874211,98.32780222],[4.53715404,0.03874036,98.32804187],[4.53715362,0.0387386,98.32828181],[4.5371532,0.03873685,98.32852204],[4.53715297,0.0387359,98.32865246],[4.53716765,0.03873233,98.32865246],[4.53716788,0.03873328,98.32852204],[4.53716831,0.03873504,98.32828181],[4.53716873,0.03873679,98.32804187],[4.53716915,0.03873854,98.32780222],[4.53716958,0.03874029,98.32756287],[4.53717,0.03874205,98.32732382],[4.53717043,0.0387438,98.32708508],[4.53717085,0.03874555,98.32684666],[4.53717127,0.0387473,98.32660855],[4.5371717,0.03874906,98.32637078],[4.53717212,0.03875081,98.32613333],[4.53717255,0.03875256,98.32589622],[4.53717297,0.03875432,98.32565945],[4.53717339,0.03875607,98.32542303],[4.53717382,0.03875782,98.32518696],[4.53717424,0.03875958,98.32495125],[4.53717466,0.03876133,98.32471591],[4.53717509,0.03876308,98.32448093],[4.53717551,0.03876483,98.32424633],[4.53717593,0.03876659,98.3240121],[4.53717636,0.03876834,98.32377826],[4.53717678,0.03877009,98.32354482],[4.5371772,0.03877185,98.32331177],[4.53717763,0.0387736,98.32307912],[4.53717805,0.03877535,98.32284688],[4.53717847,0.03877711,98.32261505],[4.53717889,0.03877886,98.32238363],[4.53717932,0.03878061,98.32215265],[4.53717974,0.03878237,98.32192209],[4.53718016,0.03878412,98.32169196],[4.53718058,0.03878587,98.32146228],[4.53718101,0.03878763,98.32123304],[4.53718143,0.03878938,98.32100425],[4.53718185,0.03879113,98.32077592],[4.53718227,0.03879289,98.32054805],[4.5371827,0.03879464,98.32032064],[4.53718312,0.03879639,98.32009371],[4.53718354,0.03879815,98.31986726],[4.53718396,0.0387999,98.31964129],[4.53718438,0.03880165,98.31941581],[4.5371848,0.03880341,98.31919083],[4.53718523,0.03880516,98.31896635],[4.53718565,0.03880691,98.31874237],[4.53718607,0.03880867,98.3185189],[4.53718649,0.03881042,98.31829595],[4.53718691,0.03881217,98.31807352],[4.53718733,0.03881393,98.31785162],[4.53718776,0.03881568,98.31763026],[4.53718818,0.03881743,98.31740943],[4.5371886,0.03881919,98.31718914],[4.53718902,0.03882094,98.31696941],[4.53718944,0.0388227,98.31675023],[4.53718986,0.03882445,98.31653161],[4.53719028,0.0388262,98.31631356],[4.53719071,0.03882796,98.31609609],[4.53719113,0.03882971,98.31587918],[4.53719155,0.03883146,98.31566287],[4.53719197,0.03883322,98.31544714],[4.53719239,0.03883497,98.315232],[4.53719281,0.03883672,98.31501747],[4.53719323,0.03883848,98.31480354],[4.53719365,0.03884023,98.31459022],[4.53719407,0.03884198,98.31437752],[4.53719449,0.03884374,98.31416544],[4.53719491,0.03884549,98.31395398],[4.53719534,0.03884725,98.31374317],[4.53719576,0.038849,98.31353299],[4.53719618,0.03885075,98.31332345],[4.5371966,0.03885251,98.31311456],[4.53719702,0.03885426,98.31290633],[4.53719744,0.03885601,98.31269877],[4.53719786,0.03885777,98.31249186],[4.53719828,0.03885952,98.31228564],[4.5371987,0.03886128,98.31208008],[4.53719912,0.03886303,98.31187522],[4.53719954,0.03886478,98.31167104],[4.53719996,0.03886654,98.31146755],[4.53720038,0.03886829,98.31126477],[4.5372008,0.03887004,98.3110627],[4.53720122,0.0388718,98.31086133],[4.53720164,0.03887355,98.31066068],[4.53720206,0.03887531,98.31046076],[4.53720248,0.03887706,98.31026156],[4.5372029,0.03887881,98.3100631],[4.53720332,0.03888057,98.30986538],[4.53720374,0.03888232,98.3096684],[4.53720416,0.03888407,98.30947218],[4.53720458,0.03888583,98.30927671],[4.537205,0.03888758,98.30908201],[4.53720542,0.03888934,98.30888807],[4.53720584,0.03889109,98.30869491],[4.53720626,0.03889284,98.30850253],[4.53720668,0.0388946,98.30831093],[4.5372071,0.03889635,98.30812011],[4.53720752,0.03889811,98.30793007],[4.53720794,0.03889986,98.30774081],[4.53720836,0.03890161,98.30755232],[4.53720878,0.03890337,98.30736461],[4.5372092,0.03890512,98.30717766],[4.53720962,0.03890687,98.30699148],[4.53721004,0.03890863,98.30680607],[4.53721046,0.03891038,98.30662142],[4.53721088,0.03891214,98.30643753],[4.5372113,0.03891389,98.30625439],[4.53721172,0.03891564,98.30607201],[4.53721214,0.0389174,98.30589039],[4.53721256,0.03891915,98.30570951],[4.53721298,0.03892091,98.30552938],[4.5372134,0.03892266,98.30535],[4.53721382,0.03892441,98.30517136],[4.53721424,0.03892617,98.30499346],[4.53721466,0.03892792,98.30481629],[4.53721508,0.03892967,98.30463986],[4.5372155,0.03893143,98.30446417],[4.53721592,0.03893318,98.3042892],[4.53721634,0.03893494,98.30411497],[4.53721676,0.03893669,98.30394145],[4.53721718,0.03893844,98.30376867],[4.5372176,0.0389402,98.3035966],[4.53721802,0.03894195,98.30342525],[4.53721844,0.03894371,98.30325461],[4.53721886,0.03894546,98.30308469],[4.53721928,0.03894721,98.30291548],[4.53721969,0.03894897,98.30274697],[4.53722011,0.03895072,98.30257918],[4.53722053,0.03895248,98.30241208],[4.53722095,0.03895423,98.30224569],[4.53722137,0.03895598,98.30207999],[4.53722179,0.03895774,98.30191499],[4.53722221,0.03895949,98.30175068],[4.53722263,0.03896125,98.30158706],[4.53722305,0.038963,98.30142413],[4.53722347,0.03896475,98.30126189],[4.53722389,0.03896651,98.30110033],[4.53722431,0.03896826,98.30093945],[4.53722472,0.03897002,98.30077924],[4.53722514,0.03897177,98.30061971],[4.53722556,0.03897352,98.30046086],[4.53722598,0.03897528,98.30030268],[4.5372264,0.03897703,98.30014516],[4.53722682,0.03897879,98.29998831],[4.53722724,0.03898054,98.29983212],[4.53722766,0.03898229,98.29967659],[4.53722808,0.03898405,98.29952172],[4.5372285,0.0389858,98.2993675],[4.53722891,0.03898756,98.29921394],[4.53722933,0.03898931,98.29906103],[4.53722975,0.03899106,98.29890876],[4.53723017,0.03899282,98.29875714],[4.53723059,0.03899457,98.29860616],[4.53723101,0.03899633,98.29845582],[4.53723143,0.03899808,98.29830612],[4.53723184,0.03899984,98.29815706],[4.53723226,0.03900159,98.29800862],[4.53723268,0.03900334,98.29786082],[4.5372331,0.0390051,98.29771364],[4.53723352,0.03900685,98.29756709],[4.53723394,0.03900861,98.29742116],[4.53723435,0.03901036,98.29727585],[4.53723477,0.03901212,98.29713115],[4.53723519,0.03901387,98.29698707],[4.53723561,0.03901562,98.29684361],[4.53723603,0.03901738,98.29670075],[4.53723645,0.03901913,98.29655849],[4.53723686,0.03902089,98.29641684],[4.53723728,0.03902264,98.2962758],[4.5372377,0.0390244,98.29613535],[4.53723812,0.03902615,98.2959955],[4.53723854,0.0390279,98.29585624],[4.53723895,0.03902966,98.29571757],[4.53723937,0.03903141,98.29557949],[4.53723979,0.03903317,98.29544199],[4.53724021,0.03903492,98.29530508],[4.53724062,0.03903668,98.29516875],[4.53724104,0.03903843,98.295033],[4.53724146,0.03904019,98.29489783],[4.53724188,0.03904194,98.29476322],[4.5372423,0.03904369,98.29462919],[4.53724271,0.03904545,98.29449572],[4.53724313,0.0390472,98.29436282],[4.53724355,0.03904896,98.29423048],[4.53724397,0.03905071,98.2940987],[4.53724438,0.03905247,98.29396748],[4.53722947,0.03905608,98.29396748]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1003400","id":2,"type":"none","predecessorId":2,"sOffset":249.1731744511}},{"geometry":{"coordinates":[[[4.53263741,0.02355038,94.65671402],[4.53263697,0.02354947,94.65369187],[4.53263651,0.02354851,94.65073194],[4.53263601,0.02354751,94.64783788],[4.53263549,0.02354646,94.64501348],[4.53263495,0.02354538,94.64226261],[4.53263439,0.02354424,94.63958928],[4.53263381,0.02354306,94.63699756],[4.53263322,0.02354185,94.63449162],[4.53263262,0.0235406,94.63207164],[4.53263202,0.02353933,94.62972219],[4.53263141,0.02353805,94.62743311],[4.5326308,0.02353674,94.62519688],[4.53263017,0.02353541,94.62299875],[4.53262953,0.02353407,94.62082456],[4.53262888,0.02353272,94.61866121],[4.53262821,0.02353135,94.61649819],[4.53262752,0.02352997,94.61433644],[4.5326268,0.02352857,94.61217996],[4.53262607,0.02352716,94.61003737],[4.53262533,0.02352574,94.60792959],[4.53262458,0.0235243,94.60586068],[4.53262382,0.02352283,94.60382947],[4.53262305,0.02352135,94.60183471],[4.53262229,0.02351985,94.59986801],[4.53262152,0.02351832,94.59789819],[4.53262075,0.02351678,94.59590159],[4.53261996,0.02351521,94.59385822],[4.53261917,0.02351363,94.59176154],[4.53261837,0.02351203,94.58961836],[4.53261756,0.02351042,94.58743627],[4.53261674,0.02350878,94.58522305],[4.5326159,0.02350709,94.5829867],[4.53261507,0.02350545,94.5807354],[4.53261424,0.02350381,94.57847588],[4.53261342,0.02350217,94.57620876],[4.5326126,0.02350054,94.57393155],[4.53261178,0.02349892,94.5716356],[4.53261096,0.02349731,94.56931202],[4.53261014,0.0234957,94.56695594],[4.53260932,0.0234941,94.56456515],[4.53260851,0.02349251,94.56213755],[4.53260769,0.02349092,94.55967103],[4.53260688,0.02348934,94.55716349],[4.53260607,0.02348776,94.55461282],[4.53260526,0.02348619,94.55201693],[4.53260445,0.02348463,94.54582076],[4.53260364,0.02348307,94.53305912],[4.53260285,0.02348152,94.5113396],[4.53260205,0.02347997,94.48341545],[4.53260125,0.02347843,94.4803916],[4.53260046,0.0234769,94.47904804],[4.53259976,0.02347532,94.51885454],[4.53259888,0.02347384,94.52731885],[4.53259807,0.02347234,94.52467105],[4.53259727,0.02347084,94.52192255],[4.53259649,0.02346933,94.51907943],[4.53259573,0.02346783,94.51614782],[4.53259497,0.02346633,94.51313387],[4.53259422,0.02346483,94.51004378],[4.53259347,0.02346333,94.50688375],[4.53259272,0.02346185,94.50365998],[4.53259197,0.02346037,94.50037928],[4.53259122,0.02345889,94.4970484],[4.53259047,0.02345743,94.49367359],[4.53258972,0.02345597,94.49026105],[4.53258898,0.02345452,94.48681705],[4.53258823,0.02345307,94.48334783],[4.53258749,0.02345162,94.47985965],[4.53258674,0.02345016,94.47635884],[4.53258593,0.02344875,94.4728634],[4.5325851,0.02344734,94.46937955],[4.53258428,0.02344592,94.46590155],[4.53258346,0.02344451,94.46242364],[4.53258264,0.02344309,94.45894005],[4.53258182,0.02344168,94.45544497],[4.532581,0.02344026,94.45193255],[4.53258018,0.02343885,94.44839696],[4.53257936,0.02343743,94.44483258],[4.53257853,0.02343601,94.44123386],[4.53257771,0.0234346,94.43759551],[4.53257688,0.02343318,94.4339193],[4.53257605,0.02343176,94.4302138],[4.53257522,0.02343035,94.42648785],[4.53257439,0.02342893,94.42275034],[4.53257355,0.02342752,94.41901017],[4.5325727,0.02342611,94.41527628],[4.53257185,0.0234247,94.41155764],[4.532571,0.0234233,94.40786328],[4.53257014,0.02342189,94.40420224],[4.53256928,0.02342049,94.40058155],[4.53256841,0.02341909,94.39700221],[4.53256754,0.02341769,94.39346515],[4.53256669,0.02341635,94.3899714],[4.53256581,0.02341496,94.38652196],[4.53256493,0.02341358,94.38311784],[4.53256405,0.02341219,94.37976004],[4.53256316,0.02341081,94.37644955],[4.53256228,0.02340943,94.37318735],[4.53256139,0.02340805,94.36997442],[4.5325605,0.02340667,94.36681173],[4.5325596,0.02340529,94.36370023],[4.53255871,0.02340391,94.36064088],[4.53255782,0.02340254,94.35763461],[4.53255773,0.0234024,94.35735316],[4.53259111,0.02337984,94.35735316],[4.5325912,0.02337998,94.35763461],[4.53259214,0.02338144,94.36064088],[4.53259308,0.02338291,94.36370023],[4.53259402,0.02338437,94.36681173],[4.53259495,0.02338584,94.36997442],[4.53259589,0.02338731,94.37318735],[4.53259682,0.02338878,94.37644955],[4.53259775,0.02339025,94.37976004],[4.53259867,0.02339172,94.38311784],[4.5325996,0.02339319,94.38652196],[4.53260052,0.02339467,94.3899714],[4.53260143,0.0233961,94.39346515],[4.53260235,0.02339757,94.39700221],[4.53260328,0.02339905,94.40058155],[4.5326042,0.02340053,94.40420224],[4.53260513,0.02340201,94.40786328],[4.53260606,0.02340348,94.41155764],[4.53260698,0.02340496,94.41527628],[4.5326079,0.02340644,94.41901017],[4.53260882,0.02340792,94.42275034],[4.53260973,0.0234094,94.42648785],[4.53261063,0.02341089,94.4302138],[4.53261152,0.02341239,94.4339193],[4.53261241,0.02341388,94.43759551],[4.53261328,0.02341539,94.44123386],[4.53261414,0.0234169,94.44483258],[4.53261499,0.02341841,94.44839696],[4.53261584,0.02341993,94.45193255],[4.53261668,0.02342146,94.45544497],[4.53261751,0.02342298,94.45894005],[4.53261834,0.02342451,94.46242364],[4.53261917,0.02342604,94.46590155],[4.53261999,0.02342756,94.46937955],[4.53262082,0.02342909,94.4728634],[4.53262166,0.02343061,94.47635884],[4.53262249,0.02343213,94.47985965],[4.53262333,0.02343366,94.48334783],[4.53262416,0.02343518,94.48681705],[4.53262499,0.02343669,94.49026105],[4.53262581,0.02343822,94.49367359],[4.53262664,0.02343976,94.4970484],[4.53262746,0.02344129,94.50037928],[4.53262828,0.02344284,94.50365998],[4.53262909,0.02344438,94.50688375],[4.5326299,0.02344594,94.51004378],[4.53263069,0.0234475,94.51313387],[4.53263148,0.02344907,94.51614782],[4.53263226,0.02345064,94.51907943],[4.53263304,0.02345223,94.52192255],[4.5326338,0.02345382,94.52467105],[4.5326345,0.02345544,94.52731885],[4.53262841,0.02346057,94.51885454],[4.53262449,0.02346456,94.47904804],[4.53262533,0.0234661,94.4803916],[4.53262618,0.02346765,94.48341545],[4.53262704,0.02346919,94.5113396],[4.53263502,0.02346712,94.53305912],[4.53263925,0.02346696,94.54582076],[4.53264166,0.02346774,94.55201693],[4.53264249,0.02346933,94.55461282],[4.53264332,0.02347092,94.55716349],[4.53264415,0.02347251,94.55967103],[4.53264498,0.0234741,94.56213755],[4.5326458,0.02347569,94.56456515],[4.53264663,0.02347729,94.56695594],[4.53264746,0.02347889,94.56931202],[4.53264829,0.0234805,94.5716356],[4.53264912,0.0234821,94.57393155],[4.53264995,0.02348371,94.57620876],[4.53265079,0.02348532,94.57847588],[4.53265163,0.02348693,94.5807354],[4.53265248,0.02348853,94.5829867],[4.53265334,0.02349018,94.58522305],[4.53265418,0.02349178,94.58743627],[4.53265502,0.02349338,94.58961836],[4.53265584,0.02349497,94.59176154],[4.53265666,0.02349656,94.59385822],[4.53265746,0.02349815,94.59590159],[4.53265824,0.02349974,94.59789819],[4.53265901,0.02350133,94.59986801],[4.53265978,0.02350291,94.60183471],[4.53266054,0.02350449,94.60382947],[4.5326613,0.02350606,94.60586068],[4.53266207,0.02350762,94.60792959],[4.53266283,0.02350917,94.61003737],[4.53266359,0.02351071,94.61217996],[4.53266434,0.02351225,94.61433644],[4.53266508,0.02351378,94.61649819],[4.53266581,0.02351532,94.61866121],[4.53266652,0.02351685,94.62082456],[4.53266722,0.02351838,94.62299875],[4.53266791,0.02351991,94.62519688],[4.53266859,0.02352143,94.62743311],[4.53266926,0.02352295,94.62972219],[4.53266993,0.02352446,94.63207164],[4.5326706,0.02352596,94.63449162],[4.53267127,0.02352745,94.63699756],[4.53267194,0.02352892,94.63958928],[4.5326726,0.02353038,94.64226261],[4.53267326,0.02353183,94.64501348],[4.53267391,0.02353325,94.64783788],[4.53267455,0.02353466,94.65073194],[4.53267517,0.02353606,94.65369187],[4.53267579,0.02353745,94.65671402],[4.53263741,0.02355038,94.65671402]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004100","id":-5,"type":"none","predecessorId":0,"sOffset":0.0}},{"geometry":{"coordinates":[[[4.53267579,0.02353745,94.65671402],[4.53267517,0.02353606,94.65369187],[4.53267455,0.02353466,94.65073194],[4.53267391,0.02353325,94.64783788],[4.53267326,0.02353183,94.64501348],[4.5326726,0.02353038,94.64226261],[4.53267194,0.02352892,94.63958928],[4.53267127,0.02352745,94.63699756],[4.5326706,0.02352596,94.63449162],[4.53266993,0.02352446,94.63207164],[4.53266926,0.02352295,94.62972219],[4.53266859,0.02352143,94.62743311],[4.53266791,0.02351991,94.62519688],[4.53266722,0.02351838,94.62299875],[4.53266652,0.02351685,94.62082456],[4.53266581,0.02351532,94.61866121],[4.53266508,0.02351378,94.61649819],[4.53266434,0.02351225,94.61433644],[4.53266359,0.02351071,94.61217996],[4.53266283,0.02350917,94.61003737],[4.53266207,0.02350762,94.60792959],[4.5326613,0.02350606,94.60586068],[4.53266054,0.02350449,94.60382947],[4.53265978,0.02350291,94.60183471],[4.53265901,0.02350133,94.59986801],[4.53265824,0.02349974,94.59789819],[4.53265746,0.02349815,94.59590159],[4.53265666,0.02349656,94.59385822],[4.53265584,0.02349497,94.59176154],[4.53265502,0.02349338,94.58961836],[4.53265418,0.02349178,94.58743627],[4.53265334,0.02349018,94.58522305],[4.53265248,0.02348853,94.5829867],[4.53265163,0.02348693,94.5807354],[4.53265079,0.02348532,94.57847588],[4.53264995,0.02348371,94.57620876],[4.53264912,0.0234821,94.57393155],[4.53264829,0.0234805,94.5716356],[4.53264746,0.02347889,94.56931202],[4.53264663,0.02347729,94.56695594],[4.5326458,0.02347569,94.56456515],[4.53264498,0.0234741,94.56213755],[4.53264415,0.02347251,94.55967103],[4.53264332,0.02347092,94.55716349],[4.53264249,0.02346933,94.55461282],[4.53264166,0.02346774,94.55201693],[4.53263925,0.02346696,94.54582076],[4.53263502,0.02346712,94.53305912],[4.53262704,0.02346919,94.5113396],[4.53262618,0.02346765,94.48341545],[4.53262533,0.0234661,94.4803916],[4.53262449,0.02346456,94.47904804],[4.53262841,0.02346057,94.51885454],[4.5326345,0.02345544,94.52731885],[4.5326338,0.02345382,94.52467105],[4.53263304,0.02345223,94.52192255],[4.53263226,0.02345064,94.51907943],[4.53263148,0.02344907,94.51614782],[4.53263069,0.0234475,94.51313387],[4.5326299,0.02344594,94.51004378],[4.53262909,0.02344438,94.50688375],[4.53262828,0.02344284,94.50365998],[4.53262746,0.02344129,94.50037928],[4.53262664,0.02343976,94.4970484],[4.53262581,0.02343822,94.49367359],[4.53262499,0.02343669,94.49026105],[4.53262416,0.02343518,94.48681705],[4.53262333,0.02343366,94.48334783],[4.53262249,0.02343213,94.47985965],[4.53262166,0.02343061,94.47635884],[4.53262082,0.02342909,94.4728634],[4.53261999,0.02342756,94.46937955],[4.53261917,0.02342604,94.46590155],[4.53261834,0.02342451,94.46242364],[4.53261751,0.02342298,94.45894005],[4.53261668,0.02342146,94.45544497],[4.53261584,0.02341993,94.45193255],[4.53261499,0.02341841,94.44839696],[4.53261414,0.0234169,94.44483258],[4.53261328,0.02341539,94.44123386],[4.53261241,0.02341388,94.43759551],[4.53261152,0.02341239,94.4339193],[4.53261063,0.02341089,94.4302138],[4.53260973,0.0234094,94.42648785],[4.53260882,0.02340792,94.42275034],[4.5326079,0.02340644,94.41901017],[4.53260698,0.02340496,94.41527628],[4.53260606,0.02340348,94.41155764],[4.53260513,0.02340201,94.40786328],[4.5326042,0.02340053,94.40420224],[4.53260328,0.02339905,94.40058155],[4.53260235,0.02339757,94.39700221],[4.53260143,0.0233961,94.39346515],[4.53260052,0.02339467,94.3899714],[4.5325996,0.02339319,94.38652196],[4.53259867,0.02339172,94.38311784],[4.53259775,0.02339025,94.37976004],[4.53259682,0.02338878,94.37644955],[4.53259589,0.02338731,94.37318735],[4.53259495,0.02338584,94.36997442],[4.53259402,0.02338437,94.36681173],[4.53259308,0.02338291,94.36370023],[4.53259214,0.02338144,94.36064088],[4.5325912,0.02337998,94.35763461],[4.53259111,0.02337984,94.35735316],[4.53259221,0.0233791,94.35735316],[4.5325923,0.02337924,94.35763461],[4.53259325,0.0233807,94.36064088],[4.53259419,0.02338217,94.36370023],[4.53259513,0.02338364,94.36681173],[4.53259607,0.0233851,94.36997442],[4.532597,0.02338658,94.37318735],[4.53259793,0.02338805,94.37644955],[4.53259886,0.02338952,94.37976004],[4.53259979,0.02339099,94.38311784],[4.53260072,0.02339247,94.38652196],[4.53260165,0.02339394,94.3899714],[4.53260255,0.02339538,94.39346515],[4.53260348,0.02339686,94.39700221],[4.53260441,0.02339834,94.40058155],[4.53260534,0.02339982,94.40420224],[4.53260627,0.0234013,94.40786328],[4.5326072,0.02340278,94.41155764],[4.53260812,0.02340425,94.41527628],[4.53260904,0.02340574,94.41901017],[4.53260996,0.02340722,94.42275034],[4.53261087,0.02340871,94.42648785],[4.53261178,0.0234102,94.4302138],[4.53261268,0.02341169,94.4339193],[4.53261356,0.02341319,94.43759551],[4.53261444,0.0234147,94.44123386],[4.5326153,0.02341621,94.44483258],[4.53261616,0.02341773,94.44839696],[4.532617,0.02341925,94.45193255],[4.53261784,0.02342078,94.45544497],[4.53261868,0.02342231,94.45894005],[4.53261951,0.02342384,94.46242364],[4.53262034,0.02342537,94.46590155],[4.53262117,0.0234269,94.46937955],[4.532622,0.02342843,94.4728634],[4.53262284,0.02342995,94.47635884],[4.53262368,0.02343148,94.47985965],[4.53262451,0.023433,94.48334783],[4.53262535,0.02343453,94.48681705],[4.53262618,0.02343604,94.49026105],[4.53262701,0.02343758,94.49367359],[4.53262783,0.02343911,94.4970484],[4.53262866,0.02344065,94.50037928],[4.53262948,0.0234422,94.50365998],[4.53263029,0.02344375,94.50688375],[4.5326311,0.0234453,94.51004378],[4.5326319,0.02344687,94.51313387],[4.53263269,0.02344844,94.51614782],[4.53263347,0.02345001,94.51907943],[4.53263424,0.0234516,94.52192255],[4.53263501,0.02345319,94.52467105],[4.53263576,0.02345479,94.52731885],[4.53263419,0.02345759,94.51885454],[4.53262607,0.02346375,94.47904804],[4.53262656,0.02346547,94.4803916],[4.53262741,0.02346702,94.48341545],[4.53263351,0.02346589,94.5113396],[4.53263833,0.02346543,94.53305912],[4.53264129,0.02346593,94.54582076],[4.53264287,0.02346713,94.55201693],[4.5326437,0.02346871,94.55461282],[4.53264453,0.0234703,94.55716349],[4.53264536,0.02347189,94.55967103],[4.53264619,0.02347348,94.56213755],[4.53264702,0.02347508,94.56456515],[4.53264785,0.02347668,94.56695594],[4.53264868,0.02347828,94.56931202],[4.53264951,0.02347988,94.5716356],[4.53265034,0.02348149,94.57393155],[4.53265117,0.02348309,94.57620876],[4.53265201,0.0234847,94.57847588],[4.53265285,0.02348631,94.5807354],[4.53265369,0.02348792,94.5829867],[4.53265455,0.02348956,94.58522305],[4.5326554,0.02349116,94.58743627],[4.53265623,0.02349276,94.58961836],[4.53265706,0.02349435,94.59176154],[4.53265787,0.02349594,94.59385822],[4.53265867,0.02349754,94.59590159],[4.53265946,0.02349913,94.59789819],[4.53266023,0.02350072,94.59986801],[4.53266099,0.0235023,94.60183471],[4.53266176,0.02350388,94.60382947],[4.53266253,0.02350545,94.60586068],[4.53266329,0.02350701,94.60792959],[4.53266406,0.02350857,94.61003737],[4.53266482,0.02351011,94.61217996],[4.53266557,0.02351166,94.61433644],[4.53266631,0.0235132,94.61649819],[4.53266704,0.02351474,94.61866121],[4.53266776,0.02351628,94.62082456],[4.53266846,0.02351781,94.62299875],[4.53266915,0.02351935,94.62519688],[4.53266983,0.02352088,94.62743311],[4.53267051,0.0235224,94.62972219],[4.53267118,0.02352392,94.63207164],[4.53267186,0.02352543,94.63449162],[4.53267253,0.02352692,94.63699756],[4.5326732,0.02352841,94.63958928],[4.53267387,0.02352988,94.64226261],[4.53267453,0.02353133,94.64501348],[4.53267518,0.02353277,94.64783788],[4.53267582,0.0235342,94.65073194],[4.53267646,0.02353561,94.65369187],[4.53267707,0.02353702,94.65671402],[4.53267579,0.02353745,94.65671402]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004100","id":-4,"type":"border","predecessorId":0,"sOffset":0.0}},{"geometry":{"coordinates":[[[4.53267707,0.02353702,94.50671402],[4.53267646,0.02353561,94.50369187],[4.53267582,0.0235342,94.50073194],[4.53267518,0.02353277,94.49783788],[4.53267453,0.02353133,94.49501348],[4.53267387,0.02352988,94.49226261],[4.5326732,0.02352841,94.48958928],[4.53267253,0.02352692,94.48699756],[4.53267186,0.02352543,94.48449162],[4.53267118,0.02352392,94.48207164],[4.53267051,0.0235224,94.47972219],[4.53266983,0.02352088,94.47743311],[4.53266915,0.02351935,94.47519688],[4.53266846,0.02351781,94.47299875],[4.53266776,0.02351628,94.47082456],[4.53266704,0.02351474,94.46866121],[4.53266631,0.0235132,94.46649819],[4.53266557,0.02351166,94.46433644],[4.53266482,0.02351011,94.46217996],[4.53266406,0.02350857,94.46003737],[4.53266329,0.02350701,94.45792959],[4.53266253,0.02350545,94.45586068],[4.53266176,0.02350388,94.45382947],[4.53266099,0.0235023,94.45183471],[4.53266023,0.02350072,94.44986801],[4.53265946,0.02349913,94.44789819],[4.53265867,0.02349754,94.44590159],[4.53265787,0.02349594,94.44385822],[4.53265706,0.02349435,94.44176154],[4.53265623,0.02349276,94.43961836],[4.5326554,0.02349116,94.43743627],[4.53265455,0.02348956,94.43522305],[4.53265369,0.02348792,94.4329867],[4.53265285,0.02348631,94.4307354],[4.53265201,0.0234847,94.42847588],[4.53265117,0.02348309,94.42620876],[4.53265034,0.02348149,94.42393155],[4.53264951,0.02347988,94.4216356],[4.53264868,0.02347828,94.41931202],[4.53264785,0.02347668,94.41695594],[4.53264702,0.02347508,94.41456515],[4.53264619,0.02347348,94.41213755],[4.53264536,0.02347189,94.40967103],[4.53264453,0.0234703,94.40716349],[4.5326437,0.02346871,94.40461282],[4.53264287,0.02346713,94.40201693],[4.53264129,0.02346593,94.39582076],[4.53263833,0.02346543,94.38305912],[4.53263351,0.02346589,94.3613396],[4.53262741,0.02346702,94.33341545],[4.53262656,0.02346547,94.3303916],[4.53262607,0.02346375,94.32904804],[4.53263419,0.02345759,94.36885454],[4.53263576,0.02345479,94.37731885],[4.53263501,0.02345319,94.37467105],[4.53263424,0.0234516,94.37192255],[4.53263347,0.02345001,94.36907943],[4.53263269,0.02344844,94.36614782],[4.5326319,0.02344687,94.36313387],[4.5326311,0.0234453,94.36004378],[4.53263029,0.02344375,94.35688375],[4.53262948,0.0234422,94.35365998],[4.53262866,0.02344065,94.35037928],[4.53262783,0.02343911,94.3470484],[4.53262701,0.02343758,94.34367359],[4.53262618,0.02343604,94.34026105],[4.53262535,0.02343453,94.33681705],[4.53262451,0.023433,94.33334783],[4.53262368,0.02343148,94.32985965],[4.53262284,0.02342995,94.32635884],[4.532622,0.02342843,94.3228634],[4.53262117,0.0234269,94.31937955],[4.53262034,0.02342537,94.31590155],[4.53261951,0.02342384,94.31242364],[4.53261868,0.02342231,94.30894005],[4.53261784,0.02342078,94.30544497],[4.532617,0.02341925,94.30193255],[4.53261616,0.02341773,94.29839696],[4.5326153,0.02341621,94.29483258],[4.53261444,0.0234147,94.29123386],[4.53261356,0.02341319,94.28759551],[4.53261268,0.02341169,94.2839193],[4.53261178,0.0234102,94.2802138],[4.53261087,0.02340871,94.27648785],[4.53260996,0.02340722,94.27275034],[4.53260904,0.02340574,94.26901017],[4.53260812,0.02340425,94.26527628],[4.5326072,0.02340278,94.26155764],[4.53260627,0.0234013,94.25786328],[4.53260534,0.02339982,94.25420224],[4.53260441,0.02339834,94.25058155],[4.53260348,0.02339686,94.24700221],[4.53260255,0.02339538,94.24346515],[4.53260165,0.02339394,94.2399714],[4.53260072,0.02339247,94.23652196],[4.53259979,0.02339099,94.23311784],[4.53259886,0.02338952,94.22976004],[4.53259793,0.02338805,94.22644955],[4.532597,0.02338658,94.22318735],[4.53259607,0.0233851,94.21997442],[4.53259513,0.02338364,94.21681173],[4.53259419,0.02338217,94.21370023],[4.53259325,0.0233807,94.21064088],[4.5325923,0.02337924,94.20763461],[4.53259221,0.0233791,94.20735316],[4.53259494,0.02337725,94.22223509],[4.53259503,0.02337739,94.22251267],[4.53259598,0.02337886,94.2254884],[4.53259693,0.02338033,94.2285338],[4.53259788,0.02338181,94.23164432],[4.53259883,0.02338328,94.23481539],[4.53259977,0.02338475,94.2380425],[4.53260072,0.02338622,94.24132114],[4.53260166,0.0233877,94.24464681],[4.5326026,0.02338917,94.24801504],[4.53260354,0.02339065,94.25142136],[4.53260448,0.02339213,94.25486134],[4.53260538,0.02339357,94.25833053],[4.53260631,0.02339506,94.26182452],[4.53260724,0.02339656,94.26533891],[4.53260816,0.02339805,94.26886937],[4.53260907,0.02339955,94.27241339],[4.53260998,0.02340105,94.27597037],[4.53261089,0.02340255,94.27953975],[4.53261179,0.02340405,94.28312102],[4.53261268,0.02340556,94.28671361],[4.53261358,0.02340707,94.29031696],[4.53261447,0.02340857,94.2939305],[4.53261536,0.02341008,94.29755366],[4.53261624,0.02341159,94.30118584],[4.53261712,0.02341311,94.30482645],[4.53261801,0.02341462,94.30847489],[4.53261889,0.02341613,94.31213056],[4.53261976,0.02341764,94.3157928],[4.53262064,0.02341916,94.31946103],[4.53262152,0.02342067,94.32313494],[4.5326224,0.02342218,94.32681426],[4.53262328,0.0234237,94.3304987],[4.53262416,0.02342521,94.33418798],[4.53262504,0.02342672,94.3378818],[4.53262592,0.02342823,94.34157988],[4.53262672,0.02342978,94.34485593],[4.53262751,0.02343134,94.34811164],[4.53262831,0.0234329,94.35135579],[4.5326291,0.02343445,94.35458687],[4.5326299,0.023436,94.35780341],[4.5326307,0.02343756,94.36100394],[4.5326315,0.02343913,94.36418697],[4.5326323,0.02344069,94.36735101],[4.5326331,0.02344225,94.37049403],[4.5326339,0.02344382,94.37361338],[4.53263471,0.02344539,94.37670632],[4.53263551,0.02344695,94.37977004],[4.53263632,0.02344852,94.38280173],[4.53263713,0.02345009,94.38579859],[4.53263794,0.02345167,94.3887578],[4.53263875,0.02345324,94.39167656],[4.53263957,0.02345482,94.39455205],[4.53264038,0.0234564,94.39738156],[4.5326412,0.02345798,94.40016434],[4.53264201,0.02345956,94.40290132],[4.53264283,0.02346114,94.4055935],[4.53264365,0.02346273,94.40824167],[4.53264447,0.02346432,94.41084637],[4.53264529,0.02346591,94.413408],[4.53264611,0.0234675,94.41592692],[4.53264693,0.02346909,94.4184035],[4.53264774,0.02347069,94.42083811],[4.53264856,0.02347229,94.42323116],[4.53264938,0.02347389,94.42558304],[4.5326502,0.02347549,94.42789417],[4.53265102,0.0234771,94.43016502],[4.53265183,0.02347871,94.43239613],[4.53265265,0.02348032,94.43459078],[4.53265346,0.02348194,94.43675628],[4.53265428,0.02348355,94.43889973],[4.5326551,0.02348517,94.44102208],[4.53265592,0.02348679,94.44312278],[4.53265676,0.02348844,94.44520131],[4.53265757,0.02349005,94.44725717],[4.53265838,0.02349166,94.44928996],[4.53265919,0.02349327,94.4512993],[4.53265999,0.02349487,94.45328488],[4.53266079,0.02349646,94.45524695],[4.53266157,0.02349806,94.45719892],[4.53266236,0.02349964,94.45916741],[4.53266315,0.02350122,94.46117907],[4.53266395,0.02350279,94.46325394],[4.53266476,0.02350434,94.46538594],[4.53266557,0.02350589,94.46756212],[4.53266638,0.02350743,94.46976987],[4.53266718,0.02350897,94.4719917],[4.53266797,0.0235105,94.47419715],[4.53266875,0.02351204,94.4763821],[4.53266951,0.02351358,94.47855037],[4.53267025,0.02351512,94.48070861],[4.53267098,0.02351665,94.48287461],[4.5326717,0.02351819,94.48506846],[4.53267242,0.02351972,94.48731096],[4.53267315,0.02352124,94.48962315],[4.53267387,0.02352276,94.492018],[4.5326746,0.02352426,94.49450078],[4.53267534,0.02352575,94.4970722],[4.53267608,0.02352724,94.49971761],[4.53267681,0.02352871,94.50241916],[4.53267752,0.02353017,94.50515992],[4.53267822,0.02353163,94.50792394],[4.53267889,0.02353308,94.51069638],[4.53267953,0.02353453,94.51346354],[4.53268013,0.02353599,94.51621299],[4.53267707,0.02353702,94.50671402]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1004100","id":-3,"type":"border","predecessorId":0,"sOffset":0.0}},{"geometry":{"coordinates":[[[4.53268013,0.02353599,94.51621299],[4.53267953,0.02353453,94.51346354],[4.53267889,0.02353308,94.51069638],[4.53267822,0.02353163,94.50792394],[4.53267752,0.02353017,94.50515992],[4.53267681,0.02352871,94.50241916],[4.53267608,0.02352724,94.49971761],[4.53267534,0.02352575,94.4970722],[4.5326746,0.02352426,94.49450078],[4.53267387,0.02352276,94.492018],[4.53267315,0.02352124,94.48962315],[4.53267242,0.02351972,94.48731096],[4.5326717,0.02351819,94.48506846],[4.53267098,0.02351665,94.48287461],[4.53267025,0.02351512,94.48070861],[4.53266951,0.02351358,94.47855037],[4.53266875,0.02351204,94.4763821],[4.53266797,0.0235105,94.47419715],[4.53266718,0.02350897,94.4719917],[4.53266638,0.02350743,94.46976987],[4.53266557,0.02350589,94.46756212],[4.53266476,0.02350434,94.46538594],[4.53266395,0.02350279,94.46325394],[4.53266315,0.02350122,94.46117907],[4.53266236,0.02349964,94.45916741],[4.53266157,0.02349806,94.45719892],[4.53266079,0.02349646,94.45524695],[4.53265999,0.02349487,94.45328488],[4.53265919,0.02349327,94.4512993],[4.53265838,0.02349166,94.44928996],[4.53265757,0.02349005,94.44725717],[4.53265676,0.02348844,94.44520131],[4.53265592,0.02348679,94.44312278],[4.5326551,0.02348517,94.44102208],[4.53265428,0.02348355,94.43889973],[4.53265346,0.02348194,94.43675628],[4.53265265,0.02348032,94.43459078],[4.53265183,0.02347871,94.43239613],[4.53265102,0.0234771,94.43016502],[4.5326502,0.02347549,94.42789417],[4.53264938,0.02347389,94.42558304],[4.53264856,0.02347229,94.42323116],[4.53264774,0.02347069,94.42083811],[4.53264693,0.02346909,94.4184035],[4.53264611,0.0234675,94.41592692],[4.53264529,0.02346591,94.413408],[4.53264447,0.02346432,94.41084637],[4.53264365,0.02346273,94.40824167],[4.53264283,0.02346114,94.4055935],[4.53264201,0.02345956,94.40290132],[4.5326412,0.02345798,94.40016434],[4.53264038,0.0234564,94.39738156],[4.53263957,0.02345482,94.39455205],[4.53263875,0.02345324,94.39167656],[4.53263794,0.02345167,94.3887578],[4.53263713,0.02345009,94.38579859],[4.53263632,0.02344852,94.38280173],[4.53263551,0.02344695,94.37977004],[4.53263471,0.02344539,94.37670632],[4.5326339,0.02344382,94.37361338],[4.5326331,0.02344225,94.37049403],[4.5326323,0.02344069,94.36735101],[4.5326315,0.02343913,94.36418697],[4.5326307,0.02343756,94.36100394],[4.5326299,0.023436,94.35780341],[4.5326291,0.02343445,94.35458687],[4.53262831,0.0234329,94.35135579],[4.53262751,0.02343134,94.34811164],[4.53262672,0.02342978,94.34485593],[4.53262592,0.02342823,94.34157988],[4.53262504,0.02342672,94.3378818],[4.53262416,0.02342521,94.33418798],[4.53262328,0.0234237,94.3304987],[4.5326224,0.02342218,94.32681426],[4.53262152,0.02342067,94.32313494],[4.53262064,0.02341916,94.31946103],[4.53261976,0.02341764,94.3157928],[4.53261889,0.02341613,94.31213056],[4.53261801,0.02341462,94.30847489],[4.53261712,0.02341311,94.30482645],[4.53261624,0.02341159,94.30118584],[4.53261536,0.02341008,94.29755366],[4.53261447,0.02340857,94.2939305],[4.53261358,0.02340707,94.29031696],[4.53261268,0.02340556,94.28671361],[4.53261179,0.02340405,94.28312102],[4.53261089,0.02340255,94.27953975],[4.53260998,0.02340105,94.27597037],[4.53260907,0.02339955,94.27241339],[4.53260816,0.02339805,94.26886937],[4.53260724,0.02339656,94.26533891],[4.53260631,0.02339506,94.26182452],[4.53260538,0.02339357,94.25833053],[4.53260448,0.02339213,94.25486134],[4.53260354,0.02339065,94.25142136],[4.5326026,0.02338917,94.24801504],[4.53260166,0.0233877,94.24464681],[4.53260072,0.02338622,94.24132114],[4.53259977,0.02338475,94.2380425],[4.53259883,0.02338328,94.23481539],[4.53259788,0.02338181,94.23164432],[4.53259693,0.02338033,94.2285338],[4.53259598,0.02337886,94.2254884],[4.53259503,0.02337739,94.22251267],[4.53259494,0.02337725,94.22223509],[4.53259591,0.0233766,94.22750408],[4.532596,0.02337674,94.22776027],[4.53259691,0.02337824,94.23050959],[4.53259782,0.02337974,94.23332933],[4.53259873,0.02338124,94.2362167],[4.53259964,0.02338274,94.23916889],[4.53260055,0.02338424,94.24218309],[4.53260146,0.02338574,94.24525651],[4.53260237,0.02338724,94.24838636],[4.53260327,0.02338874,94.25156986],[4.53260418,0.02339024,94.25480423],[4.53260509,0.02339174,94.25808671],[4.53260597,0.0233932,94.26141452],[4.53260688,0.0233947,94.2647849],[4.53260779,0.02339621,94.26819509],[4.53260869,0.02339772,94.27164235],[4.53260959,0.02339922,94.27512394],[4.5326105,0.02340073,94.2786371],[4.5326114,0.02340223,94.28217911],[4.5326123,0.02340374,94.28574722],[4.5326132,0.02340525,94.28933872],[4.53261409,0.02340675,94.29295089],[4.53261499,0.02340826,94.29658099],[4.53261588,0.02340977,94.30022632],[4.53261677,0.02341128,94.30388417],[4.53261766,0.02341279,94.30755184],[4.53261855,0.0234143,94.31122661],[4.53261944,0.02341581,94.31490579],[4.53262032,0.02341732,94.31858664],[4.5326212,0.02341883,94.3222665],[4.53262208,0.02342035,94.325943],[4.53262296,0.02342186,94.3296138],[4.53262383,0.02342338,94.33327657],[4.53262471,0.02342489,94.33692894],[4.53262558,0.02342641,94.34056861],[4.53262645,0.02342793,94.34419321],[4.53262732,0.02342945,94.34780047],[4.53262818,0.02343097,94.35138841],[4.53262904,0.02343249,94.35495524],[4.5326299,0.02343401,94.35849919],[4.53263076,0.02343554,94.36201847],[4.53263162,0.02343706,94.36551129],[4.53263248,0.0234386,94.36897585],[4.53263334,0.02344013,94.37241033],[4.53263419,0.02344167,94.37581238],[4.53263505,0.02344321,94.37917901],[4.53263591,0.02344475,94.38250713],[4.53263676,0.0234463,94.38579359],[4.53263762,0.02344785,94.38903525],[4.53263847,0.0234494,94.39222893],[4.53263932,0.02345095,94.39537148],[4.53264017,0.02345251,94.39845975],[4.53264102,0.02345407,94.40149057],[4.53264186,0.02345564,94.40446089],[4.53264271,0.0234572,94.40736961],[4.53264355,0.02345877,94.41021733],[4.53264439,0.02346035,94.41300472],[4.53264523,0.02346192,94.41573245],[4.53264606,0.0234635,94.41840118],[4.5326469,0.02346509,94.42101142],[4.53264773,0.02346668,94.42356366],[4.53264855,0.02346827,94.42605841],[4.53264938,0.02346986,94.42849618],[4.5326502,0.02347146,94.43087752],[4.53265102,0.02347306,94.433203],[4.53265183,0.02347467,94.43547321],[4.53265264,0.02347628,94.4376888],[4.53265344,0.0234779,94.43985051],[4.53265425,0.02347951,94.44196183],[4.53265505,0.02348114,94.4440303],[4.53265584,0.02348276,94.44606475],[4.53265664,0.02348439,94.44807398],[4.53265745,0.02348601,94.45006672],[4.53265827,0.02348767,94.45205159],[4.53265907,0.02348929,94.45403707],[4.53265988,0.0234909,94.45603153],[4.5326607,0.0234925,94.45804318],[4.53266152,0.02349409,94.46008003],[4.53266235,0.02349567,94.46214989],[4.53266318,0.02349724,94.46426031],[4.53266402,0.02349881,94.46641863],[4.53266487,0.02350036,94.46863197],[4.53266573,0.0235019,94.47090125],[4.53266659,0.02350343,94.47320176],[4.53266745,0.02350496,94.47550247],[4.53266829,0.02350649,94.47777327],[4.53266911,0.02350803,94.47998507],[4.5326699,0.02350957,94.48211757],[4.53267067,0.02351112,94.48418201],[4.53267141,0.02351268,94.48619721],[4.53267213,0.02351424,94.48818155],[4.53267284,0.0235158,94.49015293],[4.53267353,0.02351736,94.49212878],[4.53267421,0.02351892,94.49412747],[4.53267489,0.02352048,94.49616781],[4.53267556,0.02352203,94.4982608],[4.53267623,0.02352357,94.50040993],[4.53267689,0.0235251,94.50261823],[4.53267754,0.02352664,94.50488847],[4.5326782,0.02352816,94.50722322],[4.53267884,0.02352966,94.5096248],[4.53267947,0.02353116,94.51209528],[4.5326801,0.02353264,94.51463646],[4.53268072,0.02353412,94.51724985],[4.53268133,0.02353558,94.51993667],[4.53268013,0.02353599,94.51621299]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004100","id":-2,"type":"shoulder","predecessorId":0,"sOffset":0.0}},{"geometry":{"coordinates":[[[4.53268133,0.02353558,94.51993667],[4.53268072,0.02353412,94.51724985],[4.5326801,0.02353264,94.51463646],[4.53267947,0.02353116,94.51209528],[4.53267884,0.02352966,94.5096248],[4.5326782,0.02352816,94.50722322],[4.53267754,0.02352664,94.50488847],[4.53267689,0.0235251,94.50261823],[4.53267623,0.02352357,94.50040993],[4.53267556,0.02352203,94.4982608],[4.53267489,0.02352048,94.49616781],[4.53267421,0.02351892,94.49412747],[4.53267353,0.02351736,94.49212878],[4.53267284,0.0235158,94.49015293],[4.53267213,0.02351424,94.48818155],[4.53267141,0.02351268,94.48619721],[4.53267067,0.02351112,94.48418201],[4.5326699,0.02350957,94.48211757],[4.53266911,0.02350803,94.47998507],[4.53266829,0.02350649,94.47777327],[4.53266745,0.02350496,94.47550247],[4.53266659,0.02350343,94.47320176],[4.53266573,0.0235019,94.47090125],[4.53266487,0.02350036,94.46863197],[4.53266402,0.02349881,94.46641863],[4.53266318,0.02349724,94.46426031],[4.53266235,0.02349567,94.46214989],[4.53266152,0.02349409,94.46008003],[4.5326607,0.0234925,94.45804318],[4.53265988,0.0234909,94.45603153],[4.53265907,0.02348929,94.45403707],[4.53265827,0.02348767,94.45205159],[4.53265745,0.02348601,94.45006672],[4.53265664,0.02348439,94.44807398],[4.53265584,0.02348276,94.44606475],[4.53265505,0.02348114,94.4440303],[4.53265425,0.02347951,94.44196183],[4.53265344,0.0234779,94.43985051],[4.53265264,0.02347628,94.4376888],[4.53265183,0.02347467,94.43547321],[4.53265102,0.02347306,94.433203],[4.5326502,0.02347146,94.43087752],[4.53264938,0.02346986,94.42849618],[4.53264855,0.02346827,94.42605841],[4.53264773,0.02346668,94.42356366],[4.5326469,0.02346509,94.42101142],[4.53264606,0.0234635,94.41840118],[4.53264523,0.02346192,94.41573245],[4.53264439,0.02346035,94.41300472],[4.53264355,0.02345877,94.41021733],[4.53264271,0.0234572,94.40736961],[4.53264186,0.02345564,94.40446089],[4.53264102,0.02345407,94.40149057],[4.53264017,0.02345251,94.39845975],[4.53263932,0.02345095,94.39537148],[4.53263847,0.0234494,94.39222893],[4.53263762,0.02344785,94.38903525],[4.53263676,0.0234463,94.38579359],[4.53263591,0.02344475,94.38250713],[4.53263505,0.02344321,94.37917901],[4.53263419,0.02344167,94.37581238],[4.53263334,0.02344013,94.37241033],[4.53263248,0.0234386,94.36897585],[4.53263162,0.02343706,94.36551129],[4.53263076,0.02343554,94.36201847],[4.5326299,0.02343401,94.35849919],[4.53262904,0.02343249,94.35495524],[4.53262818,0.02343097,94.35138841],[4.53262732,0.02342945,94.34780047],[4.53262645,0.02342793,94.34419321],[4.53262558,0.02342641,94.34056861],[4.53262471,0.02342489,94.33692894],[4.53262383,0.02342338,94.33327657],[4.53262296,0.02342186,94.3296138],[4.53262208,0.02342035,94.325943],[4.5326212,0.02341883,94.3222665],[4.53262032,0.02341732,94.31858664],[4.53261944,0.02341581,94.31490579],[4.53261855,0.0234143,94.31122661],[4.53261766,0.02341279,94.30755184],[4.53261677,0.02341128,94.30388417],[4.53261588,0.02340977,94.30022632],[4.53261499,0.02340826,94.29658099],[4.53261409,0.02340675,94.29295089],[4.5326132,0.02340525,94.28933872],[4.5326123,0.02340374,94.28574722],[4.5326114,0.02340223,94.28217911],[4.5326105,0.02340073,94.2786371],[4.53260959,0.02339922,94.27512394],[4.53260869,0.02339772,94.27164235],[4.53260779,0.02339621,94.26819509],[4.53260688,0.0233947,94.2647849],[4.53260597,0.0233932,94.26141452],[4.53260509,0.02339174,94.25808671],[4.53260418,0.02339024,94.25480423],[4.53260327,0.02338874,94.25156986],[4.53260237,0.02338724,94.24838636],[4.53260146,0.02338574,94.24525651],[4.53260055,0.02338424,94.24218309],[4.53259964,0.02338274,94.23916889],[4.53259873,0.02338124,94.2362167],[4.53259782,0.02337974,94.23332933],[4.53259691,0.02337824,94.23050959],[4.532596,0.02337674,94.22776027],[4.53259591,0.0233766,94.22750408],[4.53262887,0.02335432,94.40714858],[4.53262897,0.02335446,94.40739316],[4.53262997,0.02335602,94.41001521],[4.53263097,0.02335757,94.4126998],[4.53263197,0.02335913,94.41544444],[4.53263297,0.02336069,94.41824667],[4.53263396,0.02336225,94.42110401],[4.53263495,0.02336381,94.42401399],[4.53263594,0.02336538,94.42697413],[4.53263692,0.02336694,94.42998198],[4.5326379,0.02336851,94.43303505],[4.53263888,0.02337008,94.4361309],[4.53263984,0.02337162,94.43926705],[4.53264081,0.02337319,94.44244104],[4.53264178,0.02337477,94.4456504],[4.53264275,0.02337635,94.4488927],[4.53264372,0.02337793,94.45216545],[4.53264468,0.02337952,94.45546621],[4.53264564,0.0233811,94.45879253],[4.53264659,0.02338269,94.46214194],[4.53264754,0.02338428,94.465512],[4.53264849,0.02338587,94.46890026],[4.53264944,0.02338746,94.47230426],[4.53265038,0.02338906,94.47572156],[4.53265132,0.02339066,94.4791497],[4.53265225,0.02339226,94.48258625],[4.53265318,0.02339386,94.48602875],[4.53265411,0.02339546,94.48947477],[4.53265504,0.02339706,94.4929218],[4.53265596,0.02339867,94.49636712],[4.53265688,0.02340028,94.49980795],[4.53265779,0.02340189,94.50324149],[4.5326587,0.0234035,94.50666497],[4.5326596,0.02340512,94.51007561],[4.53266051,0.02340674,94.51347062],[4.5326614,0.02340836,94.51684722],[4.5326623,0.02340998,94.52020261],[4.53266319,0.0234116,94.52353364],[4.53266407,0.02341323,94.52683699],[4.53266495,0.02341485,94.53010934],[4.53266582,0.02341649,94.53334734],[4.53266669,0.02341812,94.5365477],[4.53266755,0.02341975,94.53970708],[4.53266841,0.02342138,94.54282216],[4.53266926,0.02342302,94.54588962],[4.53267011,0.02342465,94.54890615],[4.53267095,0.02342629,94.55186837],[4.53267179,0.02342792,94.55477283],[4.53267262,0.02342956,94.55761609],[4.53267345,0.02343119,94.56039471],[4.53267427,0.02343283,94.56310526],[4.53267508,0.02343447,94.56574431],[4.5326759,0.02343611,94.56830845],[4.5326767,0.02343774,94.57079435],[4.53267751,0.02343938,94.57320069],[4.5326783,0.02344102,94.57552781],[4.5326791,0.02344266,94.57777616],[4.53267988,0.0234443,94.57994618],[4.53268067,0.02344594,94.58203834],[4.53268144,0.02344758,94.58405311],[4.53268222,0.02344922,94.58599098],[4.53268299,0.02345086,94.58785247],[4.53268375,0.0234525,94.5896381],[4.53268451,0.02345414,94.59134844],[4.53268527,0.02345578,94.59298404],[4.53268602,0.02345742,94.59454553],[4.53268676,0.02345906,94.59603351],[4.53268751,0.0234607,94.59744865],[4.53268824,0.02346235,94.59879168],[4.53268898,0.02346399,94.60006446],[4.53268971,0.02346563,94.60127007],[4.53269044,0.02346727,94.60241167],[4.53269116,0.02346891,94.60349238],[4.53269189,0.02347058,94.60451535],[4.53269262,0.02347222,94.60548371],[4.53269334,0.02347386,94.60640057],[4.53269407,0.02347552,94.60726904],[4.5326948,0.02347717,94.60809218],[4.53269553,0.02347884,94.60887308],[4.53269626,0.02348051,94.60961475],[4.53269699,0.02348218,94.61032019],[4.53269773,0.02348386,94.61099238],[4.53269846,0.02348555,94.61163422],[4.5326992,0.02348724,94.6122486],[4.53269993,0.02348894,94.61283832],[4.53270067,0.02349064,94.61340617],[4.53270141,0.02349235,94.61395482],[4.53270214,0.02349406,94.61448691],[4.53270288,0.02349578,94.61500497],[4.53270362,0.02349751,94.61551148],[4.53270435,0.02349924,94.61600881],[4.53270509,0.02350097,94.61649921],[4.53270582,0.02350272,94.61698494],[4.53270656,0.02350447,94.61746961],[4.53270729,0.02350622,94.61795812],[4.53270803,0.02350798,94.61845516],[4.53270876,0.02350974,94.61896507],[4.5327095,0.02351151,94.61949189],[4.53271025,0.02351329,94.62003928],[4.532711,0.02351509,94.62061053],[4.53271175,0.0235169,94.62120853],[4.53271251,0.02351873,94.62183571],[4.53271328,0.02352057,94.62249406],[4.53271405,0.02352242,94.62318508],[4.53271482,0.0235243,94.62390976],[4.53268133,0.02353558,94.51993667]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004100","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":0,"sOffset":0.0}},{"geometry":{"coordinates":[[[4.53271482,0.0235243,94.62390976],[4.53271405,0.02352242,94.62318508],[4.53271328,0.02352057,94.62249406],[4.53271251,0.02351873,94.62183571],[4.53271175,0.0235169,94.62120853],[4.532711,0.02351509,94.62061053],[4.53271025,0.02351329,94.62003928],[4.5327095,0.02351151,94.61949189],[4.53270876,0.02350974,94.61896507],[4.53270803,0.02350798,94.61845516],[4.53270729,0.02350622,94.61795812],[4.53270656,0.02350447,94.61746961],[4.53270582,0.02350272,94.61698494],[4.53270509,0.02350097,94.61649921],[4.53270435,0.02349924,94.61600881],[4.53270362,0.02349751,94.61551148],[4.53270288,0.02349578,94.61500497],[4.53270214,0.02349406,94.61448691],[4.53270141,0.02349235,94.61395482],[4.53270067,0.02349064,94.61340617],[4.53269993,0.02348894,94.61283832],[4.5326992,0.02348724,94.6122486],[4.53269846,0.02348555,94.61163422],[4.53269773,0.02348386,94.61099238],[4.53269699,0.02348218,94.61032019],[4.53269626,0.02348051,94.60961475],[4.53269553,0.02347884,94.60887308],[4.5326948,0.02347717,94.60809218],[4.53269407,0.02347552,94.60726904],[4.53269334,0.02347386,94.60640057],[4.53269262,0.02347222,94.60548371],[4.53269189,0.02347058,94.60451535],[4.53269116,0.02346891,94.60349238],[4.53269044,0.02346727,94.60241167],[4.53268971,0.02346563,94.60127007],[4.53268898,0.02346399,94.60006446],[4.53268824,0.02346235,94.59879168],[4.53268751,0.0234607,94.59744865],[4.53268676,0.02345906,94.59603351],[4.53268602,0.02345742,94.59454553],[4.53268527,0.02345578,94.59298404],[4.53268451,0.02345414,94.59134844],[4.53268375,0.0234525,94.5896381],[4.53268299,0.02345086,94.58785247],[4.53268222,0.02344922,94.58599098],[4.53268144,0.02344758,94.58405311],[4.53268067,0.02344594,94.58203834],[4.53267988,0.0234443,94.57994618],[4.5326791,0.02344266,94.57777616],[4.5326783,0.02344102,94.57552781],[4.53267751,0.02343938,94.57320069],[4.5326767,0.02343774,94.57079435],[4.5326759,0.02343611,94.56830845],[4.53267508,0.02343447,94.56574431],[4.53267427,0.02343283,94.56310526],[4.53267345,0.02343119,94.56039471],[4.53267262,0.02342956,94.55761609],[4.53267179,0.02342792,94.55477283],[4.53267095,0.02342629,94.55186837],[4.53267011,0.02342465,94.54890615],[4.53266926,0.02342302,94.54588962],[4.53266841,0.02342138,94.54282216],[4.53266755,0.02341975,94.53970708],[4.53266669,0.02341812,94.5365477],[4.53266582,0.02341649,94.53334734],[4.53266495,0.02341485,94.53010934],[4.53266407,0.02341323,94.52683699],[4.53266319,0.0234116,94.52353364],[4.5326623,0.02340998,94.52020261],[4.5326614,0.02340836,94.51684722],[4.53266051,0.02340674,94.51347062],[4.5326596,0.02340512,94.51007561],[4.5326587,0.0234035,94.50666497],[4.53265779,0.02340189,94.50324149],[4.53265688,0.02340028,94.49980795],[4.53265596,0.02339867,94.49636712],[4.53265504,0.02339706,94.4929218],[4.53265411,0.02339546,94.48947477],[4.53265318,0.02339386,94.48602875],[4.53265225,0.02339226,94.48258625],[4.53265132,0.02339066,94.4791497],[4.53265038,0.02338906,94.47572156],[4.53264944,0.02338746,94.47230426],[4.53264849,0.02338587,94.46890026],[4.53264754,0.02338428,94.465512],[4.53264659,0.02338269,94.46214194],[4.53264564,0.0233811,94.45879253],[4.53264468,0.02337952,94.45546621],[4.53264372,0.02337793,94.45216545],[4.53264275,0.02337635,94.4488927],[4.53264178,0.02337477,94.4456504],[4.53264081,0.02337319,94.44244104],[4.53263984,0.02337162,94.43926705],[4.53263888,0.02337008,94.4361309],[4.5326379,0.02336851,94.43303505],[4.53263692,0.02336694,94.42998198],[4.53263594,0.02336538,94.42697413],[4.53263495,0.02336381,94.42401399],[4.53263396,0.02336225,94.42110401],[4.53263297,0.02336069,94.41824667],[4.53263197,0.02335913,94.41544444],[4.53263097,0.02335757,94.4126998],[4.53262997,0.02335602,94.41001521],[4.53262897,0.02335446,94.40739316],[4.53262887,0.02335432,94.40714858],[4.53263993,0.02334684,94.46742628],[4.53264001,0.023347,94.46754585],[4.53264081,0.02334873,94.46885826],[4.53264161,0.02335046,94.47025602],[4.53264241,0.02335218,94.47173652],[4.53264321,0.02335391,94.47329716],[4.53264401,0.02335563,94.47493534],[4.53264481,0.02335735,94.47664846],[4.53264561,0.02335908,94.47843394],[4.53264641,0.0233608,94.48028917],[4.53264721,0.02336251,94.48221159],[4.53264801,0.02336423,94.48419861],[4.53264878,0.02336591,94.48624767],[4.53264958,0.02336763,94.48835619],[4.53265038,0.02336935,94.49052161],[4.53265118,0.02337107,94.49274137],[4.53265197,0.02337278,94.49501291],[4.53265277,0.0233745,94.49733369],[4.53265357,0.02337621,94.49970115],[4.53265436,0.02337792,94.50211277],[4.53265516,0.02337963,94.50456599],[4.53265595,0.02338134,94.50705829],[4.53265675,0.02338305,94.50958713],[4.53265754,0.02338476,94.51215],[4.53265833,0.02338647,94.51474438],[4.53265913,0.02338818,94.51736789],[4.53265992,0.02338988,94.52001828],[4.53266071,0.02339159,94.52269329],[4.5326615,0.02339329,94.52539061],[4.53266229,0.02339499,94.52810773],[4.53266309,0.0233967,94.53084205],[4.53266388,0.0233984,94.53359099],[4.53266467,0.0234001,94.53635198],[4.53266546,0.0234018,94.53912244],[4.53266625,0.0234035,94.5418998],[4.53266704,0.0234052,94.5446815],[4.53266783,0.0234069,94.54746494],[4.53266862,0.0234086,94.55024708],[4.53266941,0.0234103,94.55302466],[4.53267019,0.02341199,94.55579443],[4.53267098,0.02341368,94.55855317],[4.53267176,0.02341538,94.56129766],[4.53267255,0.02341707,94.56402469],[4.53267333,0.02341875,94.56673107],[4.53267411,0.02342044,94.56941361],[4.53267489,0.02342212,94.57206916],[4.53267567,0.0234238,94.57465372],[4.53267635,0.02342553,94.57680486],[4.53267704,0.02342725,94.57891711],[4.53267773,0.02342897,94.58098653],[4.53267842,0.02343068,94.5830092],[4.5326791,0.02343239,94.58498122],[4.53267978,0.0234341,94.5868987],[4.53268047,0.02343581,94.58875788],[4.53268115,0.02343752,94.59055696],[4.53268183,0.02343922,94.59229588],[4.53268251,0.02344092,94.59397463],[4.53268318,0.02344262,94.59559324],[4.53268386,0.02344432,94.59715175],[4.53268454,0.02344601,94.59865023],[4.53268521,0.0234477,94.60008875],[4.53268588,0.02344939,94.60146743],[4.53268656,0.02345108,94.60278638],[4.53268723,0.02345277,94.60404576],[4.53268789,0.02345445,94.60524575],[4.53268856,0.02345614,94.60638654],[4.53268923,0.02345782,94.60746836],[4.53268989,0.0234595,94.60849147],[4.53269056,0.02346118,94.6094562],[4.53269122,0.02346286,94.61036403],[4.53269188,0.02346453,94.61121763],[4.53269254,0.0234662,94.61201975],[4.5326932,0.02346788,94.61277314],[4.53269387,0.02346957,94.61348052],[4.53269454,0.02347124,94.61414459],[4.5326952,0.02347292,94.61476719],[4.53269588,0.0234746,94.61534922],[4.53269655,0.02347628,94.61589159],[4.53269723,0.02347797,94.61639521],[4.53269791,0.02347967,94.61686102],[4.53269859,0.02348138,94.61728997],[4.53269927,0.02348309,94.61768304],[4.53269995,0.0234848,94.61804124],[4.53270063,0.02348653,94.61836561],[4.53270131,0.02348826,94.61865725],[4.53270199,0.02349,94.61891878],[4.53270266,0.02349174,94.61915432],[4.53270333,0.02349349,94.61936799],[4.532704,0.02349525,94.61956383],[4.53270467,0.02349701,94.61974576],[4.53270534,0.02349878,94.6199176],[4.532706,0.02350055,94.62008306],[4.53270667,0.02350233,94.62024579],[4.53270733,0.02350412,94.62041079],[4.53270799,0.02350591,94.62058431],[4.53270865,0.02350771,94.62077234],[4.53270932,0.02350951,94.62098052],[4.53270998,0.02351131,94.6212141],[4.53271066,0.02351313,94.62147795],[4.53271134,0.02351496,94.62177648],[4.53271202,0.0235168,94.62211364],[4.53271271,0.02351866,94.6224929],[4.53271341,0.02352052,94.62291719],[4.53271411,0.0235224,94.62338888],[4.53271482,0.0235243,94.62390976],[4.53271482,0.0235243,94.62390976]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004100","rules":[{"value":"barred"}],"id":1,"type":"restricted","predecessorId":0,"sOffset":0.0}},{"geometry":{"coordinates":[[[4.53271484,0.02352429,94.63361523],[4.5327142,0.0235226,94.63235682],[4.53271357,0.02352091,94.63109732],[4.53271294,0.02351922,94.62983741],[4.5327123,0.02351753,94.62857773],[4.53271167,0.02351584,94.62731895],[4.53271103,0.02351415,94.62606173],[4.5327104,0.02351246,94.62480674],[4.53270976,0.02351077,94.62355463],[4.53270913,0.02350908,94.62230609],[4.53270849,0.02350739,94.62106177],[4.53270786,0.0235057,94.61982235],[4.53270723,0.02350401,94.61858851],[4.5327066,0.02350232,94.61736092],[4.53270597,0.02350062,94.61614027],[4.53270534,0.02349893,94.61492723],[4.53270472,0.02349724,94.6137217],[4.53270409,0.02349554,94.61252048],[4.53270346,0.02349385,94.61131963],[4.53270283,0.02349216,94.6101152],[4.5327022,0.02349047,94.60890323],[4.53270156,0.02348877,94.60767974],[4.53270092,0.02348709,94.60644076],[4.53270027,0.0234854,94.6051825],[4.53269961,0.02348372,94.60390528],[4.53269894,0.02348204,94.60261342],[4.53269827,0.02348036,94.60131141],[4.5326976,0.02347868,94.60000374],[4.53269692,0.023477,94.59869492],[4.53269624,0.02347532,94.59738947],[4.53269557,0.02347364,94.59609113],[4.53269489,0.02347197,94.59480064],[4.53269422,0.02347029,94.59351807],[4.53269354,0.02346861,94.59224349],[4.53269287,0.02346693,94.59097696],[4.5326922,0.02346525,94.58971853],[4.53269152,0.02346357,94.58846829],[4.53269085,0.02346189,94.58722629],[4.53269018,0.02346021,94.58599261],[4.53268951,0.02345853,94.58476732],[4.53268884,0.02345685,94.58355049],[4.53268817,0.02345517,94.5823422],[4.5326875,0.02345349,94.58114252],[4.53268683,0.02345181,94.57995153],[4.53268616,0.02345013,94.57876931],[4.53268549,0.02344845,94.57759594],[4.53268483,0.02344677,94.5764315],[4.53268416,0.02344509,94.57527608],[4.53268349,0.0234434,94.57412976],[4.53268282,0.02344172,94.57299263],[4.53268215,0.02344004,94.57186479],[4.53268149,0.02343836,94.57074631],[4.53268082,0.02343668,94.5696373],[4.53268015,0.023435,94.56853784],[4.53267948,0.02343332,94.56744805],[4.53267881,0.02343163,94.56636801],[4.53267814,0.02342995,94.56529783],[4.53267747,0.02342827,94.5642376],[4.53267681,0.02342659,94.56318745],[4.53267614,0.02342491,94.56214748],[4.53267544,0.02342324,94.56104616],[4.53267468,0.02342159,94.55973368],[4.53267391,0.02341994,94.55843252],[4.53267314,0.02341829,94.55714305],[4.53267238,0.02341664,94.55586564],[4.53267161,0.02341499,94.55460067],[4.53267084,0.02341334,94.55334853],[4.53267007,0.0234117,94.5521096],[4.53266931,0.02341005,94.55088425],[4.53266854,0.0234084,94.54967285],[4.53266777,0.02340675,94.54847575],[4.532667,0.0234051,94.54729333],[4.53266623,0.02340345,94.54612596],[4.53266546,0.0234018,94.544974],[4.5326647,0.02340015,94.54383785],[4.53266393,0.0233985,94.54271788],[4.53266316,0.02339686,94.54161448],[4.53266239,0.02339521,94.54052803],[4.53266162,0.02339356,94.53945896],[4.53266085,0.02339191,94.53840768],[4.53266008,0.02339026,94.53737467],[4.53265931,0.02338861,94.53636037],[4.53265855,0.02338696,94.53536525],[4.53265778,0.02338531,94.53438977],[4.53265701,0.02338366,94.53343439],[4.53265624,0.02338201,94.5324996],[4.53265547,0.02338036,94.53158586],[4.53265471,0.02337871,94.53069364],[4.53265394,0.02337707,94.52982343],[4.53265317,0.02337542,94.5289757],[4.5326524,0.02337377,94.52815094],[4.53265164,0.02337212,94.52734964],[4.53265087,0.02337047,94.52657228],[4.53265011,0.02336882,94.52581935],[4.53264934,0.02336717,94.52509134],[4.53264858,0.02336552,94.52438875],[4.53264781,0.02336387,94.52371208],[4.53264705,0.02336222,94.52306182],[4.53264629,0.02336057,94.52243848],[4.53264553,0.02335892,94.52184254],[4.53264476,0.02335727,94.52127452],[4.532644,0.02335562,94.52073492],[4.53264324,0.02335397,94.52022425],[4.53264248,0.02335232,94.51974298],[4.53264173,0.02335067,94.51929115],[4.53264097,0.02334902,94.51886833],[4.53264021,0.02334737,94.51847404],[4.53263945,0.02334572,94.51810781],[4.5326387,0.02334407,94.51776908],[4.53263794,0.02334242,94.51745627],[4.53263719,0.02334077,94.51716696],[4.53263643,0.02333912,94.51689874],[4.53263567,0.02333747,94.51664923],[4.53263491,0.02333582,94.51641609],[4.53263415,0.02333418,94.51619703],[4.53263339,0.02333253,94.51598981],[4.53263261,0.02333089,94.51579224],[4.53263184,0.02332925,94.51560216],[4.53263106,0.02332761,94.51541745],[4.53263027,0.02332597,94.51523701],[4.53262948,0.02332433,94.5150624],[4.53262868,0.0233227,94.51489554],[4.53262788,0.02332107,94.5147383],[4.53262708,0.02331944,94.51459248],[4.53262627,0.0233178,94.51445981],[4.53262547,0.02331617,94.51434193],[4.53262466,0.02331454,94.51424044],[4.53262386,0.02331291,94.51415683],[4.53262305,0.02331128,94.51409254],[4.53262226,0.02330965,94.51404892],[4.53262146,0.02330802,94.51402565],[4.53262067,0.02330638,94.51401923],[4.53261987,0.02330475,94.5140258],[4.53261908,0.02330312,94.51404161],[4.53261828,0.02330149,94.51406297],[4.53261749,0.02329986,94.51408629],[4.53261668,0.02329823,94.51410803],[4.53261587,0.0232966,94.51412476],[4.53261506,0.02329497,94.51413311],[4.53261424,0.02329335,94.51412982],[4.5326134,0.02329173,94.51411354],[4.53261257,0.02329012,94.51408583],[4.53261172,0.02328851,94.51404844],[4.53261087,0.02328689,94.51400302],[4.53261001,0.02328528,94.51395114],[4.53260915,0.02328368,94.51389428],[4.53260829,0.02328207,94.51383385],[4.53260743,0.02328046,94.51377114],[4.53260657,0.02327886,94.51370738],[4.5326057,0.02327725,94.51364372],[4.53260484,0.02327565,94.51358121],[4.53260398,0.02327404,94.51352083],[4.53260313,0.02327243,94.5134635],[4.53260254,0.02327073,94.51394306],[4.53260201,0.02326902,94.51450869],[4.53260148,0.0232673,94.51505709],[4.53260095,0.02326559,94.51558743],[4.53260042,0.02326388,94.51609888],[4.53259989,0.02326216,94.5165906],[4.53259936,0.02326045,94.51706177],[4.53259883,0.02325874,94.51751156],[4.5325983,0.02325702,94.51793914],[4.53259777,0.02325531,94.51834368],[4.53259724,0.0232536,94.51872436],[4.53259671,0.02325188,94.51908037],[4.53259617,0.02325017,94.51941087],[4.53259564,0.02324846,94.51971505],[4.53259511,0.02324674,94.51999209],[4.53259458,0.02324503,94.52024117],[4.53259406,0.02324332,94.52046149],[4.53259353,0.02324161,94.52065222],[4.532593,0.0232399,94.52081256],[4.53259247,0.02323819,94.52094169],[4.53259194,0.02323647,94.52103882],[4.53259141,0.02323476,94.52110313],[4.53259088,0.02323305,94.52113383],[4.53259035,0.02323134,94.52113011],[4.53258982,0.02322963,94.52109117],[4.53258981,0.0232296,94.52109012],[4.53261427,0.02322138,94.56258339],[4.53261428,0.02322141,94.56258894],[4.53261485,0.02322312,94.56287812],[4.53261541,0.02322482,94.56314414],[4.53261598,0.02322652,94.5633876],[4.53261654,0.02322823,94.56360905],[4.53261711,0.02322993,94.56380907],[4.53261767,0.02323163,94.56398823],[4.53261824,0.02323334,94.56414711],[4.5326188,0.02323504,94.56428627],[4.53261937,0.02323675,94.56440631],[4.53261994,0.02323845,94.56450778],[4.5326205,0.02324015,94.56459127],[4.53262107,0.02324186,94.56465735],[4.53262163,0.02324356,94.56470659],[4.5326222,0.02324527,94.56473957],[4.53262277,0.02324697,94.56475687],[4.53262333,0.02324868,94.56475907],[4.5326239,0.02325038,94.56474672],[4.53262447,0.02325209,94.56472042],[4.53262503,0.02325379,94.56468074],[4.5326256,0.0232555,94.56462824],[4.53262617,0.0232572,94.56456352],[4.53262673,0.02325891,94.56448713],[4.5326273,0.02326061,94.56439965],[4.53262787,0.02326232,94.56430166],[4.53262844,0.02326403,94.56419372],[4.532629,0.02326573,94.56407642],[4.53262957,0.02326744,94.56395032],[4.53263014,0.02326914,94.56381599],[4.53263071,0.02327085,94.56367401],[4.53263127,0.02327256,94.56352493],[4.53263184,0.02327426,94.56336934],[4.53263241,0.02327597,94.5632078],[4.53263298,0.02327768,94.56304088],[4.53263354,0.02327938,94.56286915],[4.53263411,0.02328109,94.56269316],[4.53263468,0.0232828,94.56251349],[4.53263525,0.0232845,94.5623307],[4.53263582,0.02328621,94.56214536],[4.53263638,0.02328792,94.56195802],[4.53263695,0.02328963,94.56176925],[4.53263752,0.02329134,94.56157961],[4.53263809,0.02329304,94.56138966],[4.53263865,0.02329475,94.56119996],[4.53263922,0.02329646,94.56101107],[4.53263979,0.02329817,94.56082354],[4.53264036,0.02329988,94.56063793],[4.53264093,0.02330159,94.5604548],[4.5326415,0.02330329,94.5602747],[4.53264206,0.023305,94.56009819],[4.53264263,0.02330671,94.55992581],[4.5326432,0.02330842,94.55975812],[4.53264377,0.02331013,94.55959567],[4.53264434,0.02331184,94.55943901],[4.5326449,0.02331355,94.55928869],[4.53264547,0.02331526,94.55914525],[4.53264604,0.02331697,94.55900924],[4.53264661,0.02331868,94.55888121],[4.53264718,0.02332039,94.55876171],[4.53264774,0.0233221,94.55865127],[4.53264831,0.02332381,94.55855045],[4.53264888,0.02332552,94.55845978],[4.53264945,0.02332723,94.5583798],[4.53265002,0.02332894,94.55831106],[4.53265058,0.02333065,94.55825409],[4.53265115,0.02333236,94.55820945],[4.53265172,0.02333408,94.55817767],[4.53265229,0.02333579,94.55815934],[4.53265286,0.0233375,94.55815504],[4.53265342,0.02333921,94.55816533],[4.53265399,0.02334092,94.55819081],[4.53265456,0.02334264,94.55823203],[4.53265513,0.02334435,94.55828954],[4.5326557,0.02334606,94.55836389],[4.53265626,0.02334777,94.55845562],[4.53265683,0.02334948,94.55856525],[4.5326574,0.0233512,94.55869295],[4.53265797,0.02335291,94.55883855],[4.53265854,0.02335462,94.55900185],[4.5326591,0.02335634,94.55918267],[4.53265967,0.02335805,94.55938079],[4.53266024,0.02335976,94.55959604],[4.53266081,0.02336148,94.55982821],[4.53266138,0.02336319,94.56007712],[4.53266194,0.0233649,94.56034257],[4.53266251,0.02336662,94.56062437],[4.53266308,0.02336833,94.56092232],[4.53266365,0.02337005,94.56123624],[4.53266422,0.02337176,94.56156592],[4.53266479,0.02337347,94.56191118],[4.53266535,0.02337519,94.56227183],[4.53266592,0.0233769,94.56264767],[4.53266649,0.02337862,94.56303851],[4.53266706,0.02338033,94.56344416],[4.53266763,0.02338205,94.56386443],[4.5326682,0.02338376,94.56429913],[4.53266876,0.02338548,94.56474806],[4.53266933,0.02338719,94.56521105],[4.5326699,0.02338891,94.56568789],[4.53267047,0.02339062,94.5661784],[4.53267104,0.02339234,94.56668238],[4.5326716,0.02339405,94.56719967],[4.53267217,0.02339577,94.5677301],[4.53267274,0.02339748,94.56827356],[4.53267331,0.0233992,94.5688299],[4.53267388,0.02340091,94.56939899],[4.53267444,0.02340263,94.5699807],[4.53267501,0.02340434,94.5705749],[4.53267558,0.02340606,94.57118144],[4.53267615,0.02340777,94.57180021],[4.53267671,0.02340949,94.57243107],[4.53267728,0.0234112,94.57307388],[4.53267785,0.02341291,94.5737285],[4.53267842,0.02341463,94.57439477],[4.53267899,0.02341634,94.57507251],[4.53267955,0.02341806,94.57576157],[4.53268012,0.02341977,94.57646177],[4.53268069,0.02342149,94.57717295],[4.53268126,0.0234232,94.57789494],[4.53268183,0.02342492,94.57862757],[4.53268239,0.02342663,94.57937067],[4.53268296,0.02342835,94.58012408],[4.53268353,0.02343006,94.58088762],[4.5326841,0.02343177,94.58166113],[4.53268467,0.02343349,94.58244445],[4.53268524,0.0234352,94.58323739],[4.5326858,0.02343692,94.5840398],[4.53268637,0.02343863,94.58485151],[4.53268694,0.02344035,94.58567235],[4.53268751,0.02344206,94.58650216],[4.53268808,0.02344377,94.58734076],[4.53268865,0.02344549,94.58818799],[4.53268922,0.0234472,94.58904368],[4.53268979,0.02344892,94.58990767],[4.53269035,0.02345063,94.59077979],[4.53269092,0.02345234,94.59165987],[4.53269149,0.02345406,94.59254775],[4.53269206,0.02345577,94.59344326],[4.53269263,0.02345749,94.59434623],[4.5326932,0.0234592,94.59525649],[4.53269377,0.02346091,94.59617389],[4.53269434,0.02346263,94.59709825],[4.53269491,0.02346434,94.59802941],[4.53269548,0.02346606,94.5989672],[4.53269605,0.02346777,94.59991146],[4.53269662,0.02346948,94.60086202],[4.53269718,0.0234712,94.60181871],[4.53269775,0.02347291,94.60278138],[4.53269832,0.02347462,94.60374984],[4.53269889,0.02347634,94.60472394],[4.53269946,0.02347805,94.60570351],[4.53270003,0.02347976,94.60668839],[4.5327006,0.02348148,94.60767841],[4.53270117,0.02348319,94.6086734],[4.53270174,0.02348491,94.6096732],[4.53270231,0.02348662,94.61067765],[4.53270288,0.02348833,94.61168657],[4.53270345,0.02349005,94.61269981],[4.53270402,0.02349176,94.61371719],[4.53270459,0.02349347,94.61473855],[4.53270516,0.02349518,94.61576373],[4.53270573,0.0234969,94.61679256],[4.5327063,0.02349861,94.61782487],[4.53270687,0.02350032,94.6188605],[4.53270744,0.02350203,94.61989929],[4.53270801,0.02350375,94.62094106],[4.53270858,0.02350546,94.62198566],[4.53270915,0.02350717,94.62303292],[4.53270972,0.02350888,94.62408267],[4.53271028,0.0235106,94.62513474],[4.53271085,0.02351231,94.62618898],[4.53271142,0.02351402,94.62724521],[4.53271199,0.02351573,94.62830327],[4.53271256,0.02351744,94.62936299],[4.53271313,0.02351915,94.63042422],[4.5327137,0.02352087,94.63148678],[4.53271427,0.02352258,94.6325505],[4.53271484,0.02352429,94.63361523],[4.53271484,0.02352429,94.63361523]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004200","rules":[{"value":"barred"}],"id":-3,"type":"restricted","predecessorId":0,"sOffset":0.0}},{"geometry":{"coordinates":[[[4.53271484,0.02352429,94.63361523],[4.53271427,0.02352258,94.6325505],[4.5327137,0.02352087,94.63148678],[4.53271313,0.02351915,94.63042422],[4.53271256,0.02351744,94.62936299],[4.53271199,0.02351573,94.62830327],[4.53271142,0.02351402,94.62724521],[4.53271085,0.02351231,94.62618898],[4.53271028,0.0235106,94.62513474],[4.53270972,0.02350888,94.62408267],[4.53270915,0.02350717,94.62303292],[4.53270858,0.02350546,94.62198566],[4.53270801,0.02350375,94.62094106],[4.53270744,0.02350203,94.61989929],[4.53270687,0.02350032,94.6188605],[4.5327063,0.02349861,94.61782487],[4.53270573,0.0234969,94.61679256],[4.53270516,0.02349518,94.61576373],[4.53270459,0.02349347,94.61473855],[4.53270402,0.02349176,94.61371719],[4.53270345,0.02349005,94.61269981],[4.53270288,0.02348833,94.61168657],[4.53270231,0.02348662,94.61067765],[4.53270174,0.02348491,94.6096732],[4.53270117,0.02348319,94.6086734],[4.5327006,0.02348148,94.60767841],[4.53270003,0.02347976,94.60668839],[4.53269946,0.02347805,94.60570351],[4.53269889,0.02347634,94.60472394],[4.53269832,0.02347462,94.60374984],[4.53269775,0.02347291,94.60278138],[4.53269718,0.0234712,94.60181871],[4.53269662,0.02346948,94.60086202],[4.53269605,0.02346777,94.59991146],[4.53269548,0.02346606,94.5989672],[4.53269491,0.02346434,94.59802941],[4.53269434,0.02346263,94.59709825],[4.53269377,0.02346091,94.59617389],[4.5326932,0.0234592,94.59525649],[4.53269263,0.02345749,94.59434623],[4.53269206,0.02345577,94.59344326],[4.53269149,0.02345406,94.59254775],[4.53269092,0.02345234,94.59165987],[4.53269035,0.02345063,94.59077979],[4.53268979,0.02344892,94.58990767],[4.53268922,0.0234472,94.58904368],[4.53268865,0.02344549,94.58818799],[4.53268808,0.02344377,94.58734076],[4.53268751,0.02344206,94.58650216],[4.53268694,0.02344035,94.58567235],[4.53268637,0.02343863,94.58485151],[4.5326858,0.02343692,94.5840398],[4.53268524,0.0234352,94.58323739],[4.53268467,0.02343349,94.58244445],[4.5326841,0.02343177,94.58166113],[4.53268353,0.02343006,94.58088762],[4.53268296,0.02342835,94.58012408],[4.53268239,0.02342663,94.57937067],[4.53268183,0.02342492,94.57862757],[4.53268126,0.0234232,94.57789494],[4.53268069,0.02342149,94.57717295],[4.53268012,0.02341977,94.57646177],[4.53267955,0.02341806,94.57576157],[4.53267899,0.02341634,94.57507251],[4.53267842,0.02341463,94.57439477],[4.53267785,0.02341291,94.5737285],[4.53267728,0.0234112,94.57307388],[4.53267671,0.02340949,94.57243107],[4.53267615,0.02340777,94.57180021],[4.53267558,0.02340606,94.57118144],[4.53267501,0.02340434,94.5705749],[4.53267444,0.02340263,94.5699807],[4.53267388,0.02340091,94.56939899],[4.53267331,0.0233992,94.5688299],[4.53267274,0.02339748,94.56827356],[4.53267217,0.02339577,94.5677301],[4.5326716,0.02339405,94.56719967],[4.53267104,0.02339234,94.56668238],[4.53267047,0.02339062,94.5661784],[4.5326699,0.02338891,94.56568789],[4.53266933,0.02338719,94.56521105],[4.53266876,0.02338548,94.56474806],[4.5326682,0.02338376,94.56429913],[4.53266763,0.02338205,94.56386443],[4.53266706,0.02338033,94.56344416],[4.53266649,0.02337862,94.56303851],[4.53266592,0.0233769,94.56264767],[4.53266535,0.02337519,94.56227183],[4.53266479,0.02337347,94.56191118],[4.53266422,0.02337176,94.56156592],[4.53266365,0.02337005,94.56123624],[4.53266308,0.02336833,94.56092232],[4.53266251,0.02336662,94.56062437],[4.53266194,0.0233649,94.56034257],[4.53266138,0.02336319,94.56007712],[4.53266081,0.02336148,94.55982821],[4.53266024,0.02335976,94.55959604],[4.53265967,0.02335805,94.55938079],[4.5326591,0.02335634,94.55918267],[4.53265854,0.02335462,94.55900185],[4.53265797,0.02335291,94.55883855],[4.5326574,0.0233512,94.55869295],[4.53265683,0.02334948,94.55856525],[4.53265626,0.02334777,94.55845562],[4.5326557,0.02334606,94.55836389],[4.53265513,0.02334435,94.55828954],[4.53265456,0.02334264,94.55823203],[4.53265399,0.02334092,94.55819081],[4.53265342,0.02333921,94.55816533],[4.53265286,0.0233375,94.55815504],[4.53265229,0.02333579,94.55815934],[4.53265172,0.02333408,94.55817767],[4.53265115,0.02333236,94.55820945],[4.53265058,0.02333065,94.55825409],[4.53265002,0.02332894,94.55831106],[4.53264945,0.02332723,94.5583798],[4.53264888,0.02332552,94.55845978],[4.53264831,0.02332381,94.55855045],[4.53264774,0.0233221,94.55865127],[4.53264718,0.02332039,94.55876171],[4.53264661,0.02331868,94.55888121],[4.53264604,0.02331697,94.55900924],[4.53264547,0.02331526,94.55914525],[4.5326449,0.02331355,94.55928869],[4.53264434,0.02331184,94.55943901],[4.53264377,0.02331013,94.55959567],[4.5326432,0.02330842,94.55975812],[4.53264263,0.02330671,94.55992581],[4.53264206,0.023305,94.56009819],[4.5326415,0.02330329,94.5602747],[4.53264093,0.02330159,94.5604548],[4.53264036,0.02329988,94.56063793],[4.53263979,0.02329817,94.56082354],[4.53263922,0.02329646,94.56101107],[4.53263865,0.02329475,94.56119996],[4.53263809,0.02329304,94.56138966],[4.53263752,0.02329134,94.56157961],[4.53263695,0.02328963,94.56176925],[4.53263638,0.02328792,94.56195802],[4.53263582,0.02328621,94.56214536],[4.53263525,0.0232845,94.5623307],[4.53263468,0.0232828,94.56251349],[4.53263411,0.02328109,94.56269316],[4.53263354,0.02327938,94.56286915],[4.53263298,0.02327768,94.56304088],[4.53263241,0.02327597,94.5632078],[4.53263184,0.02327426,94.56336934],[4.53263127,0.02327256,94.56352493],[4.53263071,0.02327085,94.56367401],[4.53263014,0.02326914,94.56381599],[4.53262957,0.02326744,94.56395032],[4.532629,0.02326573,94.56407642],[4.53262844,0.02326403,94.56419372],[4.53262787,0.02326232,94.56430166],[4.5326273,0.02326061,94.56439965],[4.53262673,0.02325891,94.56448713],[4.53262617,0.0232572,94.56456352],[4.5326256,0.0232555,94.56462824],[4.53262503,0.02325379,94.56468074],[4.53262447,0.02325209,94.56472042],[4.5326239,0.02325038,94.56474672],[4.53262333,0.02324868,94.56475907],[4.53262277,0.02324697,94.56475687],[4.5326222,0.02324527,94.56473957],[4.53262163,0.02324356,94.56470659],[4.53262107,0.02324186,94.56465735],[4.5326205,0.02324015,94.56459127],[4.53261994,0.02323845,94.56450778],[4.53261937,0.02323675,94.56440631],[4.5326188,0.02323504,94.56428627],[4.53261824,0.02323334,94.56414711],[4.53261767,0.02323163,94.56398823],[4.53261711,0.02322993,94.56380907],[4.53261654,0.02322823,94.56360905],[4.53261598,0.02322652,94.5633876],[4.53261541,0.02322482,94.56314414],[4.53261485,0.02322312,94.56287812],[4.53261428,0.02322141,94.56258894],[4.53261427,0.02322138,94.56258339],[4.53264531,0.02321096,94.61523825],[4.53264532,0.02321099,94.61524814],[4.53264589,0.0232127,94.61578043],[4.53264645,0.0232144,94.61630424],[4.53264702,0.02321611,94.61681978],[4.53264759,0.02321782,94.6173273],[4.53264816,0.02321953,94.617827],[4.53264872,0.02322124,94.61831912],[4.53264929,0.02322295,94.61880387],[4.53264986,0.02322465,94.61928149],[4.53265043,0.02322636,94.61975221],[4.532651,0.02322807,94.62021624],[4.53265157,0.02322978,94.62067382],[4.53265213,0.02323149,94.62112517],[4.5326527,0.02323319,94.62157053],[4.53265327,0.0232349,94.62201011],[4.53265384,0.02323661,94.62244414],[4.53265441,0.02323832,94.62287286],[4.53265498,0.02324003,94.62329648],[4.53265555,0.02324174,94.62371524],[4.53265612,0.02324345,94.62412937],[4.53265669,0.02324515,94.62453907],[4.53265726,0.02324686,94.6249446],[4.53265783,0.02324857,94.62534616],[4.5326584,0.02325028,94.62574398],[4.53265897,0.02325199,94.6261383],[4.53265954,0.0232537,94.62652932],[4.5326601,0.0232554,94.62691728],[4.53266067,0.02325711,94.6273024],[4.53266124,0.02325882,94.6276849],[4.53266181,0.02326053,94.628065],[4.53266238,0.02326224,94.62844292],[4.53266295,0.02326395,94.62881888],[4.53266352,0.02326566,94.6291931],[4.53266409,0.02326737,94.6295658],[4.53266466,0.02326907,94.62993719],[4.53266523,0.02327078,94.6303075],[4.5326658,0.02327249,94.63067693],[4.53266637,0.0232742,94.6310457],[4.53266695,0.02327591,94.63141403],[4.53266752,0.02327762,94.63178212],[4.53266809,0.02327933,94.6321502],[4.53266866,0.02328104,94.63251846],[4.53266923,0.02328275,94.63288711],[4.5326698,0.02328446,94.63325638],[4.53267037,0.02328617,94.63362645],[4.53267094,0.02328788,94.63399755],[4.53267151,0.02328958,94.63436987],[4.53267208,0.02329129,94.63474362],[4.53267265,0.023293,94.63511901],[4.53267322,0.02329471,94.63549622],[4.53267379,0.02329642,94.63587547],[4.53267436,0.02329813,94.63625696],[4.53267493,0.02329984,94.63664087],[4.5326755,0.02330155,94.63702742],[4.53267607,0.02330326,94.63741679],[4.53267664,0.02330497,94.63780919],[4.53267721,0.02330668,94.6382048],[4.53267778,0.02330839,94.63860382],[4.53267835,0.0233101,94.63900644],[4.53267892,0.02331181,94.63941286],[4.53267949,0.02331352,94.63982326],[4.53268006,0.02331523,94.64023783],[4.53268063,0.02331694,94.64065676],[4.5326812,0.02331865,94.64108024],[4.53268177,0.02332036,94.64150845],[4.53268234,0.02332207,94.64194159],[4.53268291,0.02332378,94.64237985],[4.53268347,0.0233255,94.64282345],[4.53268404,0.02332721,94.64327262],[4.53268461,0.02332892,94.64372759],[4.53268518,0.02333063,94.64418856],[4.53268575,0.02333234,94.64465576],[4.53268632,0.02333405,94.64512938],[4.53268689,0.02333576,94.64560961],[4.53268746,0.02333747,94.64609663],[4.53268803,0.02333918,94.64659063],[4.5326886,0.02334089,94.64709167],[4.53268917,0.02334261,94.64759969],[4.53268974,0.02334432,94.64811464],[4.5326903,0.02334603,94.64863647],[4.53269087,0.02334774,94.64916511],[4.53269144,0.02334945,94.64970052],[4.53269201,0.02335116,94.65024262],[4.53269258,0.02335287,94.65079138],[4.53269315,0.02335458,94.65134672],[4.53269372,0.0233563,94.6519086],[4.53269429,0.02335801,94.65247696],[4.53269486,0.02335972,94.65305174],[4.53269543,0.02336143,94.65363289],[4.53269599,0.02336314,94.65422035],[4.53269656,0.02336486,94.65481407],[4.53269713,0.02336657,94.655414],[4.5326977,0.02336828,94.65602007],[4.53269827,0.02336999,94.65663224],[4.53269884,0.0233717,94.65725046],[4.53269941,0.02337342,94.65787466],[4.53269997,0.02337513,94.6585048],[4.53270054,0.02337684,94.65914083],[4.53270111,0.02337855,94.65978268],[4.53270168,0.02338026,94.66043032],[4.53270225,0.02338198,94.66108368],[4.53270281,0.02338369,94.66174273],[4.53270338,0.0233854,94.66240746],[4.53270395,0.02338711,94.66307788],[4.53270452,0.02338883,94.66375398],[4.53270508,0.02339054,94.66443577],[4.53270565,0.02339225,94.66512326],[4.53270622,0.02339396,94.66581645],[4.53270679,0.02339567,94.66651535],[4.53270735,0.02339739,94.66721996],[4.53270792,0.0233991,94.6679303],[4.53270849,0.02340081,94.66864636],[4.53270906,0.02340252,94.66936814],[4.53270962,0.02340424,94.67009562],[4.53271019,0.02340595,94.67082875],[4.53271076,0.02340766,94.67156753],[4.53271133,0.02340937,94.67231192],[4.53271189,0.02341109,94.6730619],[4.53271246,0.0234128,94.67381743],[4.53271303,0.02341451,94.67457851],[4.5327136,0.02341622,94.67534509],[4.53271416,0.02341794,94.67611715],[4.53271473,0.02341965,94.67689468],[4.5327153,0.02342136,94.67767763],[4.53271587,0.02342307,94.678466],[4.53271643,0.02342478,94.67925975],[4.532717,0.0234265,94.68005886],[4.53271757,0.02342821,94.68086331],[4.53271813,0.02342992,94.68167307],[4.5327187,0.02343163,94.68248812],[4.53271927,0.02343335,94.68330842],[4.53271984,0.02343506,94.68413397],[4.5327204,0.02343677,94.68496473],[4.53272097,0.02343848,94.68580069],[4.53272154,0.02344019,94.68664181],[4.53272211,0.02344191,94.68748808],[4.53272267,0.02344362,94.68833946],[4.53272324,0.02344533,94.68919595],[4.53272381,0.02344704,94.69005751],[4.53272438,0.02344876,94.69092412],[4.53272494,0.02345047,94.69179576],[4.53272551,0.02345218,94.6926724],[4.53272608,0.02345389,94.69355403],[4.53272665,0.0234556,94.69444062],[4.53272721,0.02345732,94.69533214],[4.53272778,0.02345903,94.69622857],[4.53272835,0.02346074,94.6971299],[4.53272892,0.02346245,94.69803609],[4.53272948,0.02346416,94.69894713],[4.53273005,0.02346588,94.69986299],[4.53273062,0.02346759,94.70078365],[4.53273119,0.0234693,94.70170909],[4.53273175,0.02347101,94.70263928],[4.53273232,0.02347273,94.7035742],[4.53273289,0.02347444,94.70451384],[4.53273345,0.02347615,94.70545816],[4.53273402,0.02347786,94.70640714],[4.53273459,0.02347957,94.70736076],[4.53273516,0.02348129,94.708319],[4.53273572,0.023483,94.70928184],[4.53273629,0.02348471,94.71024925],[4.53273686,0.02348642,94.7112212],[4.53273743,0.02348813,94.71219769],[4.53273799,0.02348985,94.71317868],[4.53273856,0.02349156,94.71416415],[4.53273913,0.02349327,94.71515408],[4.53273969,0.02349498,94.71614844],[4.53274026,0.02349669,94.71714722],[4.53274083,0.0234984,94.71815038],[4.5327414,0.02350012,94.71915791],[4.53274196,0.02350183,94.72016978],[4.53274253,0.02350354,94.72118597],[4.5327431,0.02350525,94.72220645],[4.53274366,0.02350696,94.72323121],[4.53274423,0.02350868,94.72426022],[4.5327448,0.02351039,94.72529344],[4.53274536,0.0235121,94.72633087],[4.53274593,0.02351381,94.72737248],[4.53271484,0.02352429,94.63361523]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004200","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":0,"sOffset":0.0}},{"geometry":{"coordinates":[[[4.53274593,0.02351381,94.72737248],[4.53274536,0.0235121,94.72633087],[4.5327448,0.02351039,94.72529344],[4.53274423,0.02350868,94.72426022],[4.53274366,0.02350696,94.72323121],[4.5327431,0.02350525,94.72220645],[4.53274253,0.02350354,94.72118597],[4.53274196,0.02350183,94.72016978],[4.5327414,0.02350012,94.71915791],[4.53274083,0.0234984,94.71815038],[4.53274026,0.02349669,94.71714722],[4.53273969,0.02349498,94.71614844],[4.53273913,0.02349327,94.71515408],[4.53273856,0.02349156,94.71416415],[4.53273799,0.02348985,94.71317868],[4.53273743,0.02348813,94.71219769],[4.53273686,0.02348642,94.7112212],[4.53273629,0.02348471,94.71024925],[4.53273572,0.023483,94.70928184],[4.53273516,0.02348129,94.708319],[4.53273459,0.02347957,94.70736076],[4.53273402,0.02347786,94.70640714],[4.53273345,0.02347615,94.70545816],[4.53273289,0.02347444,94.70451384],[4.53273232,0.02347273,94.7035742],[4.53273175,0.02347101,94.70263928],[4.53273119,0.0234693,94.70170909],[4.53273062,0.02346759,94.70078365],[4.53273005,0.02346588,94.69986299],[4.53272948,0.02346416,94.69894713],[4.53272892,0.02346245,94.69803609],[4.53272835,0.02346074,94.6971299],[4.53272778,0.02345903,94.69622857],[4.53272721,0.02345732,94.69533214],[4.53272665,0.0234556,94.69444062],[4.53272608,0.02345389,94.69355403],[4.53272551,0.02345218,94.6926724],[4.53272494,0.02345047,94.69179576],[4.53272438,0.02344876,94.69092412],[4.53272381,0.02344704,94.69005751],[4.53272324,0.02344533,94.68919595],[4.53272267,0.02344362,94.68833946],[4.53272211,0.02344191,94.68748808],[4.53272154,0.02344019,94.68664181],[4.53272097,0.02343848,94.68580069],[4.5327204,0.02343677,94.68496473],[4.53271984,0.02343506,94.68413397],[4.53271927,0.02343335,94.68330842],[4.5327187,0.02343163,94.68248812],[4.53271813,0.02342992,94.68167307],[4.53271757,0.02342821,94.68086331],[4.532717,0.0234265,94.68005886],[4.53271643,0.02342478,94.67925975],[4.53271587,0.02342307,94.678466],[4.5327153,0.02342136,94.67767763],[4.53271473,0.02341965,94.67689468],[4.53271416,0.02341794,94.67611715],[4.5327136,0.02341622,94.67534509],[4.53271303,0.02341451,94.67457851],[4.53271246,0.0234128,94.67381743],[4.53271189,0.02341109,94.6730619],[4.53271133,0.02340937,94.67231192],[4.53271076,0.02340766,94.67156753],[4.53271019,0.02340595,94.67082875],[4.53270962,0.02340424,94.67009562],[4.53270906,0.02340252,94.66936814],[4.53270849,0.02340081,94.66864636],[4.53270792,0.0233991,94.6679303],[4.53270735,0.02339739,94.66721996],[4.53270679,0.02339567,94.66651535],[4.53270622,0.02339396,94.66581645],[4.53270565,0.02339225,94.66512326],[4.53270508,0.02339054,94.66443577],[4.53270452,0.02338883,94.66375398],[4.53270395,0.02338711,94.66307788],[4.53270338,0.0233854,94.66240746],[4.53270281,0.02338369,94.66174273],[4.53270225,0.02338198,94.66108368],[4.53270168,0.02338026,94.66043032],[4.53270111,0.02337855,94.65978268],[4.53270054,0.02337684,94.65914083],[4.53269997,0.02337513,94.6585048],[4.53269941,0.02337342,94.65787466],[4.53269884,0.0233717,94.65725046],[4.53269827,0.02336999,94.65663224],[4.5326977,0.02336828,94.65602007],[4.53269713,0.02336657,94.655414],[4.53269656,0.02336486,94.65481407],[4.53269599,0.02336314,94.65422035],[4.53269543,0.02336143,94.65363289],[4.53269486,0.02335972,94.65305174],[4.53269429,0.02335801,94.65247696],[4.53269372,0.0233563,94.6519086],[4.53269315,0.02335458,94.65134672],[4.53269258,0.02335287,94.65079138],[4.53269201,0.02335116,94.65024262],[4.53269144,0.02334945,94.64970052],[4.53269087,0.02334774,94.64916511],[4.5326903,0.02334603,94.64863647],[4.53268974,0.02334432,94.64811464],[4.53268917,0.02334261,94.64759969],[4.5326886,0.02334089,94.64709167],[4.53268803,0.02333918,94.64659063],[4.53268746,0.02333747,94.64609663],[4.53268689,0.02333576,94.64560961],[4.53268632,0.02333405,94.64512938],[4.53268575,0.02333234,94.64465576],[4.53268518,0.02333063,94.64418856],[4.53268461,0.02332892,94.64372759],[4.53268404,0.02332721,94.64327262],[4.53268347,0.0233255,94.64282345],[4.53268291,0.02332378,94.64237985],[4.53268234,0.02332207,94.64194159],[4.53268177,0.02332036,94.64150845],[4.5326812,0.02331865,94.64108024],[4.53268063,0.02331694,94.64065676],[4.53268006,0.02331523,94.64023783],[4.53267949,0.02331352,94.63982326],[4.53267892,0.02331181,94.63941286],[4.53267835,0.0233101,94.63900644],[4.53267778,0.02330839,94.63860382],[4.53267721,0.02330668,94.6382048],[4.53267664,0.02330497,94.63780919],[4.53267607,0.02330326,94.63741679],[4.5326755,0.02330155,94.63702742],[4.53267493,0.02329984,94.63664087],[4.53267436,0.02329813,94.63625696],[4.53267379,0.02329642,94.63587547],[4.53267322,0.02329471,94.63549622],[4.53267265,0.023293,94.63511901],[4.53267208,0.02329129,94.63474362],[4.53267151,0.02328958,94.63436987],[4.53267094,0.02328788,94.63399755],[4.53267037,0.02328617,94.63362645],[4.5326698,0.02328446,94.63325638],[4.53266923,0.02328275,94.63288711],[4.53266866,0.02328104,94.63251846],[4.53266809,0.02327933,94.6321502],[4.53266752,0.02327762,94.63178212],[4.53266695,0.02327591,94.63141403],[4.53266637,0.0232742,94.6310457],[4.5326658,0.02327249,94.63067693],[4.53266523,0.02327078,94.6303075],[4.53266466,0.02326907,94.62993719],[4.53266409,0.02326737,94.6295658],[4.53266352,0.02326566,94.6291931],[4.53266295,0.02326395,94.62881888],[4.53266238,0.02326224,94.62844292],[4.53266181,0.02326053,94.628065],[4.53266124,0.02325882,94.6276849],[4.53266067,0.02325711,94.6273024],[4.5326601,0.0232554,94.62691728],[4.53265954,0.0232537,94.62652932],[4.53265897,0.02325199,94.6261383],[4.5326584,0.02325028,94.62574398],[4.53265783,0.02324857,94.62534616],[4.53265726,0.02324686,94.6249446],[4.53265669,0.02324515,94.62453907],[4.53265612,0.02324345,94.62412937],[4.53265555,0.02324174,94.62371524],[4.53265498,0.02324003,94.62329648],[4.53265441,0.02323832,94.62287286],[4.53265384,0.02323661,94.62244414],[4.53265327,0.0232349,94.62201011],[4.5326527,0.02323319,94.62157053],[4.53265213,0.02323149,94.62112517],[4.53265157,0.02322978,94.62067382],[4.532651,0.02322807,94.62021624],[4.53265043,0.02322636,94.61975221],[4.53264986,0.02322465,94.61928149],[4.53264929,0.02322295,94.61880387],[4.53264872,0.02322124,94.61831912],[4.53264816,0.02321953,94.617827],[4.53264759,0.02321782,94.6173273],[4.53264702,0.02321611,94.61681978],[4.53264645,0.0232144,94.61630424],[4.53264589,0.0232127,94.61578043],[4.53264532,0.02321099,94.61524814],[4.53264531,0.02321096,94.61523825],[4.53267742,0.02320017,94.6697212],[4.53267743,0.0232002,94.66973552],[4.532678,0.02320191,94.67051504],[4.53267857,0.02320363,94.67129943],[4.53267913,0.02320534,94.67208854],[4.5326797,0.02320706,94.67288227],[4.53268026,0.02320877,94.67368046],[4.53268082,0.02321049,94.67448298],[4.53268139,0.0232122,94.67528971],[4.53268195,0.02321392,94.6761005],[4.53268251,0.02321564,94.67691523],[4.53268307,0.02321735,94.67773374],[4.53268363,0.02321907,94.67855592],[4.53268419,0.02322079,94.67938162],[4.53268474,0.0232225,94.6802107],[4.5326853,0.02322422,94.68104304],[4.53268586,0.02322594,94.68187848],[4.53268641,0.02322765,94.6827169],[4.53268697,0.02322937,94.68355817],[4.53268752,0.02323109,94.68440213],[4.53268808,0.02323281,94.68524867],[4.53268863,0.02323453,94.68609764],[4.53268918,0.02323624,94.68694891],[4.53268973,0.02323796,94.68780236],[4.53269029,0.02323968,94.68865783],[4.53269084,0.0232414,94.68951521],[4.53269139,0.02324312,94.69037437],[4.53269194,0.02324484,94.69123516],[4.53269249,0.02324655,94.69209747],[4.53269304,0.02324827,94.69296117],[4.53269359,0.02324999,94.69382612],[4.53269413,0.02325171,94.69469222],[4.53269468,0.02325343,94.69555932],[4.53269523,0.02325515,94.69642731],[4.53269578,0.02325687,94.69729606],[4.53269632,0.02325859,94.69816546],[4.53269687,0.02326031,94.69903538],[4.53269742,0.02326203,94.69990572],[4.53269796,0.02326375,94.70077635],[4.53269851,0.02326547,94.70164715],[4.53269905,0.02326718,94.70251802],[4.5326996,0.0232689,94.70338885],[4.53270014,0.02327062,94.70425951],[4.53270069,0.02327234,94.70512992],[4.53270123,0.02327406,94.70599995],[4.53270178,0.02327578,94.7068695],[4.53270232,0.0232775,94.70773847],[4.53270287,0.02327922,94.70860676],[4.53270341,0.02328094,94.70947427],[4.53270396,0.02328266,94.71034089],[4.5327045,0.02328438,94.71120654],[4.53270504,0.0232861,94.71207111],[4.53270559,0.02328782,94.71293451],[4.53270613,0.02328954,94.71379664],[4.53270668,0.02329126,94.71465742],[4.53270722,0.02329298,94.71551676],[4.53270777,0.0232947,94.71637457],[4.53270831,0.02329642,94.71723076],[4.53270885,0.02329814,94.71808525],[4.5327094,0.02329985,94.71893795],[4.53270994,0.02330157,94.71978878],[4.53271049,0.02330329,94.72063766],[4.53271103,0.02330501,94.7214845],[4.53271158,0.02330673,94.72232924],[4.53271212,0.02330845,94.7231718],[4.53271267,0.02331017,94.72401209],[4.53271321,0.02331188,94.72485004],[4.53271376,0.0233136,94.72568558],[4.5327143,0.02331532,94.72651864],[4.53271485,0.02331704,94.72734914],[4.5327154,0.02331876,94.72817701],[4.53271594,0.02332047,94.72900219],[4.53271649,0.02332219,94.72982459],[4.53271704,0.02332391,94.73064412],[4.53271759,0.02332563,94.73146067],[4.53271813,0.02332734,94.73227415],[4.53271868,0.02332906,94.73308445],[4.53271923,0.02333078,94.7338916],[4.53271978,0.02333249,94.73469571],[4.53272033,0.02333421,94.73549694],[4.53272088,0.02333593,94.7362954],[4.53272143,0.02333764,94.73709125],[4.53272198,0.02333936,94.73788461],[4.53272253,0.02334107,94.73867561],[4.53272308,0.02334279,94.73946438],[4.53272364,0.0233445,94.74025106],[4.53272419,0.02334622,94.74103578],[4.53272474,0.02334793,94.74181867],[4.53272529,0.02334965,94.74259986],[4.53272585,0.02335136,94.74337947],[4.5327264,0.02335308,94.74415763],[4.53272695,0.02335479,94.74493447],[4.53272751,0.02335651,94.74571012],[4.53272806,0.02335822,94.74648471],[4.53272862,0.02335993,94.74725835],[4.53272918,0.02336165,94.74803118],[4.53272973,0.02336336,94.74880331],[4.53273029,0.02336507,94.74957488],[4.53273085,0.02336679,94.750346],[4.5327314,0.0233685,94.7511168],[4.53273196,0.02337021,94.7518874],[4.53273252,0.02337193,94.75265792],[4.53273308,0.02337364,94.75342848],[4.53273364,0.02337535,94.7541992],[4.5327342,0.02337706,94.75497021],[4.53273476,0.02337878,94.75574162],[4.53273532,0.02338049,94.75651355],[4.53273588,0.0233822,94.75728613],[4.53273645,0.02338391,94.75805946],[4.53273701,0.02338562,94.75883367],[4.53273757,0.02338733,94.75960887],[4.53273813,0.02338905,94.76038519],[4.5327387,0.02339076,94.76116273],[4.53273926,0.02339247,94.7619416],[4.53273983,0.02339418,94.76272188],[4.53274039,0.02339589,94.76350365],[4.53274096,0.0233976,94.76428699],[4.53274152,0.02339931,94.76507198],[4.53274209,0.02340102,94.76585871],[4.53274266,0.02340273,94.76664724],[4.53274322,0.02340444,94.76743766],[4.53274379,0.02340615,94.76823006],[4.53274436,0.02340786,94.7690245],[4.53274493,0.02340957,94.76982107],[4.5327455,0.02341128,94.77061985],[4.53274607,0.02341299,94.77142091],[4.53274664,0.0234147,94.77222434],[4.5327472,0.02341641,94.77303021],[4.53274777,0.02341812,94.7738386],[4.53274834,0.02341982,94.77464959],[4.53274891,0.02342153,94.77546326],[4.53274949,0.02342324,94.77627968],[4.53275006,0.02342495,94.77709894],[4.53275063,0.02342666,94.77792111],[4.5327512,0.02342837,94.77874628],[4.53275177,0.02343008,94.77957451],[4.53275234,0.02343179,94.7804059],[4.53275291,0.02343349,94.78124052],[4.53275349,0.0234352,94.78207844],[4.53275406,0.02343691,94.78291975],[4.53275463,0.02343862,94.78376453],[4.5327552,0.02344033,94.78461285],[4.53275578,0.02344204,94.7854648],[4.53275635,0.02344374,94.78632046],[4.53275692,0.02344545,94.7871799],[4.5327575,0.02344716,94.7880432],[4.53275807,0.02344887,94.78891046],[4.53275864,0.02345058,94.78978174],[4.53275922,0.02345228,94.79065713],[4.53275979,0.02345399,94.79153671],[4.53276036,0.0234557,94.79242056],[4.53276094,0.02345741,94.79330877],[4.53276151,0.02345912,94.7942014],[4.53276208,0.02346082,94.79509856],[4.53276266,0.02346253,94.79600031],[4.53276323,0.02346424,94.79690674],[4.5327638,0.02346595,94.79781793],[4.53276438,0.02346766,94.79873398],[4.53276495,0.02346936,94.79965494],[4.53276552,0.02347107,94.80058092],[4.5327661,0.02347278,94.801512],[4.53276667,0.02347449,94.80244825],[4.53276724,0.0234762,94.80338977],[4.53276782,0.02347791,94.80433663],[4.53276839,0.02347961,94.80528892],[4.53276896,0.02348132,94.80624672],[4.53276954,0.02348303,94.80721012],[4.53277011,0.02348474,94.8081792],[4.53277068,0.02348645,94.80915404],[4.53277125,0.02348816,94.81013474],[4.53277182,0.02348987,94.81112137],[4.5327724,0.02349158,94.81211402],[4.53277297,0.02349329,94.81311276],[4.53277354,0.02349499,94.8141177],[4.53277411,0.0234967,94.8151289],[4.53277468,0.02349841,94.81614646],[4.53277525,0.02350012,94.81717046],[4.53277582,0.02350183,94.81820098],[4.53277639,0.02350354,94.81923811],[4.53274593,0.02351381,94.72737248]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004200","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":0,"sOffset":0.0}},{"geometry":{"coordinates":[[[4.53277639,0.02350354,94.81923811],[4.53277582,0.02350183,94.81820098],[4.53277525,0.02350012,94.81717046],[4.53277468,0.02349841,94.81614646],[4.53277411,0.0234967,94.8151289],[4.53277354,0.02349499,94.8141177],[4.53277297,0.02349329,94.81311276],[4.5327724,0.02349158,94.81211402],[4.53277182,0.02348987,94.81112137],[4.53277125,0.02348816,94.81013474],[4.53277068,0.02348645,94.80915404],[4.53277011,0.02348474,94.8081792],[4.53276954,0.02348303,94.80721012],[4.53276896,0.02348132,94.80624672],[4.53276839,0.02347961,94.80528892],[4.53276782,0.02347791,94.80433663],[4.53276724,0.0234762,94.80338977],[4.53276667,0.02347449,94.80244825],[4.5327661,0.02347278,94.801512],[4.53276552,0.02347107,94.80058092],[4.53276495,0.02346936,94.79965494],[4.53276438,0.02346766,94.79873398],[4.5327638,0.02346595,94.79781793],[4.53276323,0.02346424,94.79690674],[4.53276266,0.02346253,94.79600031],[4.53276208,0.02346082,94.79509856],[4.53276151,0.02345912,94.7942014],[4.53276094,0.02345741,94.79330877],[4.53276036,0.0234557,94.79242056],[4.53275979,0.02345399,94.79153671],[4.53275922,0.02345228,94.79065713],[4.53275864,0.02345058,94.78978174],[4.53275807,0.02344887,94.78891046],[4.5327575,0.02344716,94.7880432],[4.53275692,0.02344545,94.7871799],[4.53275635,0.02344374,94.78632046],[4.53275578,0.02344204,94.7854648],[4.5327552,0.02344033,94.78461285],[4.53275463,0.02343862,94.78376453],[4.53275406,0.02343691,94.78291975],[4.53275349,0.0234352,94.78207844],[4.53275291,0.02343349,94.78124052],[4.53275234,0.02343179,94.7804059],[4.53275177,0.02343008,94.77957451],[4.5327512,0.02342837,94.77874628],[4.53275063,0.02342666,94.77792111],[4.53275006,0.02342495,94.77709894],[4.53274949,0.02342324,94.77627968],[4.53274891,0.02342153,94.77546326],[4.53274834,0.02341982,94.77464959],[4.53274777,0.02341812,94.7738386],[4.5327472,0.02341641,94.77303021],[4.53274664,0.0234147,94.77222434],[4.53274607,0.02341299,94.77142091],[4.5327455,0.02341128,94.77061985],[4.53274493,0.02340957,94.76982107],[4.53274436,0.02340786,94.7690245],[4.53274379,0.02340615,94.76823006],[4.53274322,0.02340444,94.76743766],[4.53274266,0.02340273,94.76664724],[4.53274209,0.02340102,94.76585871],[4.53274152,0.02339931,94.76507198],[4.53274096,0.0233976,94.76428699],[4.53274039,0.02339589,94.76350365],[4.53273983,0.02339418,94.76272188],[4.53273926,0.02339247,94.7619416],[4.5327387,0.02339076,94.76116273],[4.53273813,0.02338905,94.76038519],[4.53273757,0.02338733,94.75960887],[4.53273701,0.02338562,94.75883367],[4.53273645,0.02338391,94.75805946],[4.53273588,0.0233822,94.75728613],[4.53273532,0.02338049,94.75651355],[4.53273476,0.02337878,94.75574162],[4.5327342,0.02337706,94.75497021],[4.53273364,0.02337535,94.7541992],[4.53273308,0.02337364,94.75342848],[4.53273252,0.02337193,94.75265792],[4.53273196,0.02337021,94.7518874],[4.5327314,0.0233685,94.7511168],[4.53273085,0.02336679,94.750346],[4.53273029,0.02336507,94.74957488],[4.53272973,0.02336336,94.74880331],[4.53272918,0.02336165,94.74803118],[4.53272862,0.02335993,94.74725835],[4.53272806,0.02335822,94.74648471],[4.53272751,0.02335651,94.74571012],[4.53272695,0.02335479,94.74493447],[4.5327264,0.02335308,94.74415763],[4.53272585,0.02335136,94.74337947],[4.53272529,0.02334965,94.74259986],[4.53272474,0.02334793,94.74181867],[4.53272419,0.02334622,94.74103578],[4.53272364,0.0233445,94.74025106],[4.53272308,0.02334279,94.73946438],[4.53272253,0.02334107,94.73867561],[4.53272198,0.02333936,94.73788461],[4.53272143,0.02333764,94.73709125],[4.53272088,0.02333593,94.7362954],[4.53272033,0.02333421,94.73549694],[4.53271978,0.02333249,94.73469571],[4.53271923,0.02333078,94.7338916],[4.53271868,0.02332906,94.73308445],[4.53271813,0.02332734,94.73227415],[4.53271759,0.02332563,94.73146067],[4.53271704,0.02332391,94.73064412],[4.53271649,0.02332219,94.72982459],[4.53271594,0.02332047,94.72900219],[4.5327154,0.02331876,94.72817701],[4.53271485,0.02331704,94.72734914],[4.5327143,0.02331532,94.72651864],[4.53271376,0.0233136,94.72568558],[4.53271321,0.02331188,94.72485004],[4.53271267,0.02331017,94.72401209],[4.53271212,0.02330845,94.7231718],[4.53271158,0.02330673,94.72232924],[4.53271103,0.02330501,94.7214845],[4.53271049,0.02330329,94.72063766],[4.53270994,0.02330157,94.71978878],[4.5327094,0.02329985,94.71893795],[4.53270885,0.02329814,94.71808525],[4.53270831,0.02329642,94.71723076],[4.53270777,0.0232947,94.71637457],[4.53270722,0.02329298,94.71551676],[4.53270668,0.02329126,94.71465742],[4.53270613,0.02328954,94.71379664],[4.53270559,0.02328782,94.71293451],[4.53270504,0.0232861,94.71207111],[4.5327045,0.02328438,94.71120654],[4.53270396,0.02328266,94.71034089],[4.53270341,0.02328094,94.70947427],[4.53270287,0.02327922,94.70860676],[4.53270232,0.0232775,94.70773847],[4.53270178,0.02327578,94.7068695],[4.53270123,0.02327406,94.70599995],[4.53270069,0.02327234,94.70512992],[4.53270014,0.02327062,94.70425951],[4.5326996,0.0232689,94.70338885],[4.53269905,0.02326718,94.70251802],[4.53269851,0.02326547,94.70164715],[4.53269796,0.02326375,94.70077635],[4.53269742,0.02326203,94.69990572],[4.53269687,0.02326031,94.69903538],[4.53269632,0.02325859,94.69816546],[4.53269578,0.02325687,94.69729606],[4.53269523,0.02325515,94.69642731],[4.53269468,0.02325343,94.69555932],[4.53269413,0.02325171,94.69469222],[4.53269359,0.02324999,94.69382612],[4.53269304,0.02324827,94.69296117],[4.53269249,0.02324655,94.69209747],[4.53269194,0.02324484,94.69123516],[4.53269139,0.02324312,94.69037437],[4.53269084,0.0232414,94.68951521],[4.53269029,0.02323968,94.68865783],[4.53268973,0.02323796,94.68780236],[4.53268918,0.02323624,94.68694891],[4.53268863,0.02323453,94.68609764],[4.53268808,0.02323281,94.68524867],[4.53268752,0.02323109,94.68440213],[4.53268697,0.02322937,94.68355817],[4.53268641,0.02322765,94.6827169],[4.53268586,0.02322594,94.68187848],[4.5326853,0.02322422,94.68104304],[4.53268474,0.0232225,94.6802107],[4.53268419,0.02322079,94.67938162],[4.53268363,0.02321907,94.67855592],[4.53268307,0.02321735,94.67773374],[4.53268251,0.02321564,94.67691523],[4.53268195,0.02321392,94.6761005],[4.53268139,0.0232122,94.67528971],[4.53268082,0.02321049,94.67448298],[4.53268026,0.02320877,94.67368046],[4.5326797,0.02320706,94.67288227],[4.53267913,0.02320534,94.67208854],[4.53267857,0.02320363,94.67129943],[4.532678,0.02320191,94.67051504],[4.53267743,0.0232002,94.66973552],[4.53267742,0.02320017,94.6697212],[4.53267974,0.02319939,94.67364753],[4.53267975,0.02319942,94.67366197],[4.53268031,0.02320114,94.67445265],[4.53268088,0.02320285,94.67525682],[4.53268145,0.02320457,94.67607392],[4.53268202,0.02320628,94.67690337],[4.5326826,0.02320799,94.6777446],[4.53268318,0.0232097,94.67859705],[4.53268376,0.02321141,94.67946012],[4.53268434,0.02321312,94.68033324],[4.53268492,0.02321483,94.68121581],[4.53268551,0.02321654,94.68210724],[4.53268609,0.02321825,94.68300689],[4.53268668,0.02321995,94.68391416],[4.53268727,0.02322166,94.68482839],[4.53268785,0.02322337,94.68574895],[4.53268844,0.02322508,94.68667515],[4.53268903,0.02322678,94.68760632],[4.53268961,0.02322849,94.68854175],[4.5326902,0.0232302,94.68948073],[4.53269078,0.02323191,94.69042253],[4.53269136,0.02323362,94.69136674],[4.53269194,0.02323532,94.69231329],[4.53269252,0.02323703,94.69326212],[4.5326931,0.02323874,94.69421318],[4.53269368,0.02324045,94.69516642],[4.53269425,0.02324216,94.69612178],[4.53269483,0.02324388,94.69707922],[4.5326954,0.02324559,94.6980387],[4.53269598,0.0232473,94.69900018],[4.53269655,0.02324901,94.69996363],[4.53269712,0.02325072,94.70092901],[4.53269769,0.02325243,94.7018963],[4.53269827,0.02325414,94.70286547],[4.53269884,0.02325585,94.7038365],[4.53269941,0.02325757,94.70480938],[4.53269998,0.02325928,94.70578411],[4.53270055,0.02326099,94.70676068],[4.53270112,0.0232627,94.70773908],[4.53270169,0.02326441,94.70871933],[4.53270226,0.02326613,94.7097014],[4.53270283,0.02326784,94.71068514],[4.5327034,0.02326955,94.71167037],[4.53270397,0.02327126,94.71265691],[4.53270454,0.02327297,94.71364457],[4.53270511,0.02327468,94.71463317],[4.53270568,0.02327639,94.71562252],[4.53270625,0.0232781,94.71661244],[4.53270682,0.02327982,94.71760272],[4.53270739,0.02328153,94.71859318],[4.53270796,0.02328324,94.71958363],[4.53270853,0.02328495,94.72057388],[4.5327091,0.02328666,94.72156372],[4.53270967,0.02328837,94.72255296],[4.53271025,0.02329008,94.72354141],[4.53271082,0.02329179,94.72452886],[4.53271139,0.0232935,94.72551511],[4.53271196,0.02329521,94.72649996],[4.53271253,0.02329692,94.72748321],[4.5327131,0.02329863,94.72846465],[4.53271367,0.02330034,94.72944408],[4.53271424,0.02330205,94.73042129],[4.53271481,0.02330376,94.73139608],[4.53271538,0.02330547,94.73236823],[4.53271595,0.02330718,94.73333755],[4.53271652,0.02330889,94.73430384],[4.53271709,0.0233106,94.73526687],[4.53271766,0.02331231,94.73622644],[4.53271823,0.02331402,94.73718234],[4.5327188,0.02331573,94.73813437],[4.53271937,0.02331744,94.7390823],[4.53271994,0.02331915,94.74002593],[4.53272051,0.02332086,94.74096503],[4.53272108,0.02332257,94.74189936],[4.53272165,0.02332428,94.74282868],[4.53272222,0.02332599,94.74375272],[4.53272279,0.0233277,94.74467125],[4.53272336,0.02332941,94.74558417],[4.53272393,0.02333112,94.74649151],[4.5327245,0.02333283,94.74739333],[4.53272506,0.02333454,94.74828967],[4.53272563,0.02333625,94.7491806],[4.5327262,0.02333796,94.75006616],[4.53272677,0.02333967,94.75094639],[4.53272733,0.02334138,94.75182136],[4.5327279,0.02334309,94.7526911],[4.53272847,0.0233448,94.75355567],[4.53272903,0.02334651,94.75441513],[4.5327296,0.02334822,94.75526951],[4.53273016,0.02334993,94.75611888],[4.53273073,0.02335165,94.75696328],[4.53273129,0.02335336,94.75780276],[4.53273186,0.02335507,94.75863745],[4.53273242,0.02335678,94.75946749],[4.53273299,0.02335849,94.76029307],[4.53273355,0.0233602,94.76111436],[4.53273411,0.02336191,94.76193153],[4.53273467,0.02336362,94.76274475],[4.53273524,0.02336533,94.7635542],[4.5327358,0.02336704,94.76436006],[4.53273636,0.02336875,94.7651625],[4.53273692,0.02337047,94.76596171],[4.53273748,0.02337218,94.76675786],[4.53273804,0.02337389,94.76755114],[4.5327386,0.0233756,94.76834172],[4.53273916,0.02337731,94.76912979],[4.53273972,0.02337902,94.76991552],[4.53274028,0.02338074,94.77069911],[4.53274084,0.02338245,94.77148074],[4.5327414,0.02338416,94.77226059],[4.53274196,0.02338587,94.77303884],[4.53274252,0.02338758,94.77381569],[4.53274308,0.0233893,94.77459131],[4.53274364,0.02339101,94.77536588],[4.5327442,0.02339272,94.77613955],[4.53274476,0.02339443,94.77691247],[4.53274532,0.02339615,94.77768479],[4.53274588,0.02339786,94.77845666],[4.53274644,0.02339957,94.77922824],[4.532747,0.02340128,94.77999968],[4.53274756,0.02340299,94.78077113],[4.53274812,0.02340471,94.78154274],[4.53274868,0.02340642,94.78231467],[4.53274924,0.02340813,94.78308707],[4.5327498,0.02340984,94.78386009],[4.53275036,0.02341155,94.78463389],[4.53275092,0.02341327,94.78540861],[4.53275148,0.02341498,94.78618441],[4.53275204,0.02341669,94.78696145],[4.5327526,0.0234184,94.78773987],[4.53275316,0.02342012,94.78851984],[4.53275372,0.02342183,94.78930149],[4.53275428,0.02342354,94.79008499],[4.53275484,0.02342525,94.79087048],[4.5327554,0.02342696,94.79165813],[4.53275596,0.02342868,94.79244807],[4.53275652,0.02343039,94.79324047],[4.53275708,0.0234321,94.79403548],[4.53275764,0.02343381,94.79483324],[4.5327582,0.02343552,94.79563392],[4.53275876,0.02343724,94.79643765],[4.53275932,0.02343895,94.79724461],[4.53275988,0.02344066,94.79805492],[4.53276044,0.02344237,94.79886876],[4.53276101,0.02344408,94.79968626],[4.53276157,0.02344579,94.80050759],[4.53276213,0.02344751,94.80133288],[4.53276269,0.02344922,94.8021623],[4.53276325,0.02345093,94.802996],[4.53276381,0.02345264,94.80383412],[4.53276438,0.02345435,94.80467681],[4.53276494,0.02345606,94.80552423],[4.5327655,0.02345778,94.80637652],[4.53276606,0.02345949,94.80723385],[4.53276663,0.0234612,94.80809634],[4.53276719,0.02346291,94.80896417],[4.53276775,0.02346462,94.80983747],[4.53276832,0.02346633,94.8107164],[4.53276888,0.02346804,94.81160111],[4.53276944,0.02346975,94.81249174],[4.53277001,0.02347146,94.81338845],[4.53277057,0.02347318,94.81429138],[4.53277114,0.02347489,94.81520069],[4.5327717,0.0234766,94.81611652],[4.53277227,0.02347831,94.81703903],[4.53277283,0.02348002,94.81796836],[4.5327734,0.02348173,94.81890466],[4.53277396,0.02348344,94.81984808],[4.53277453,0.02348515,94.82079877],[4.5327751,0.02348686,94.82175688],[4.53277566,0.02348857,94.82272256],[4.53277623,0.02349028,94.82369595],[4.5327768,0.023492,94.82467722],[4.53277736,0.02349371,94.82566649],[4.53277793,0.02349542,94.82666393],[4.5327785,0.02349713,94.82766969],[4.53277907,0.02349884,94.82868391],[4.53277964,0.02350055,94.82970674],[4.53278021,0.02350226,94.83073834],[4.53277639,0.02350354,94.81923811]]],"type":"Polygon"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004200","id":1,"type":"shoulder","predecessorId":0,"sOffset":0.0}},{"geometry":{"coordinates":[[[4.53278021,0.02350226,94.83073834],[4.53277964,0.02350055,94.82970674],[4.53277907,0.02349884,94.82868391],[4.5327785,0.02349713,94.82766969],[4.53277793,0.02349542,94.82666393],[4.53277736,0.02349371,94.82566649],[4.5327768,0.023492,94.82467722],[4.53277623,0.02349028,94.82369595],[4.53277566,0.02348857,94.82272256],[4.5327751,0.02348686,94.82175688],[4.53277453,0.02348515,94.82079877],[4.53277396,0.02348344,94.81984808],[4.5327734,0.02348173,94.81890466],[4.53277283,0.02348002,94.81796836],[4.53277227,0.02347831,94.81703903],[4.5327717,0.0234766,94.81611652],[4.53277114,0.02347489,94.81520069],[4.53277057,0.02347318,94.81429138],[4.53277001,0.02347146,94.81338845],[4.53276944,0.02346975,94.81249174],[4.53276888,0.02346804,94.81160111],[4.53276832,0.02346633,94.8107164],[4.53276775,0.02346462,94.80983747],[4.53276719,0.02346291,94.80896417],[4.53276663,0.0234612,94.80809634],[4.53276606,0.02345949,94.80723385],[4.5327655,0.02345778,94.80637652],[4.53276494,0.02345606,94.80552423],[4.53276438,0.02345435,94.80467681],[4.53276381,0.02345264,94.80383412],[4.53276325,0.02345093,94.802996],[4.53276269,0.02344922,94.8021623],[4.53276213,0.02344751,94.80133288],[4.53276157,0.02344579,94.80050759],[4.53276101,0.02344408,94.79968626],[4.53276044,0.02344237,94.79886876],[4.53275988,0.02344066,94.79805492],[4.53275932,0.02343895,94.79724461],[4.53275876,0.02343724,94.79643765],[4.5327582,0.02343552,94.79563392],[4.53275764,0.02343381,94.79483324],[4.53275708,0.0234321,94.79403548],[4.53275652,0.02343039,94.79324047],[4.53275596,0.02342868,94.79244807],[4.5327554,0.02342696,94.79165813],[4.53275484,0.02342525,94.79087048],[4.53275428,0.02342354,94.79008499],[4.53275372,0.02342183,94.78930149],[4.53275316,0.02342012,94.78851984],[4.5327526,0.0234184,94.78773987],[4.53275204,0.02341669,94.78696145],[4.53275148,0.02341498,94.78618441],[4.53275092,0.02341327,94.78540861],[4.53275036,0.02341155,94.78463389],[4.5327498,0.02340984,94.78386009],[4.53274924,0.02340813,94.78308707],[4.53274868,0.02340642,94.78231467],[4.53274812,0.02340471,94.78154274],[4.53274756,0.02340299,94.78077113],[4.532747,0.02340128,94.77999968],[4.53274644,0.02339957,94.77922824],[4.53274588,0.02339786,94.77845666],[4.53274532,0.02339615,94.77768479],[4.53274476,0.02339443,94.77691247],[4.5327442,0.02339272,94.77613955],[4.53274364,0.02339101,94.77536588],[4.53274308,0.0233893,94.77459131],[4.53274252,0.02338758,94.77381569],[4.53274196,0.02338587,94.77303884],[4.5327414,0.02338416,94.77226059],[4.53274084,0.02338245,94.77148074],[4.53274028,0.02338074,94.77069911],[4.53273972,0.02337902,94.76991552],[4.53273916,0.02337731,94.76912979],[4.5327386,0.0233756,94.76834172],[4.53273804,0.02337389,94.76755114],[4.53273748,0.02337218,94.76675786],[4.53273692,0.02337047,94.76596171],[4.53273636,0.02336875,94.7651625],[4.5327358,0.02336704,94.76436006],[4.53273524,0.02336533,94.7635542],[4.53273467,0.02336362,94.76274475],[4.53273411,0.02336191,94.76193153],[4.53273355,0.0233602,94.76111436],[4.53273299,0.02335849,94.76029307],[4.53273242,0.02335678,94.75946749],[4.53273186,0.02335507,94.75863745],[4.53273129,0.02335336,94.75780276],[4.53273073,0.02335165,94.75696328],[4.53273016,0.02334993,94.75611888],[4.5327296,0.02334822,94.75526951],[4.53272903,0.02334651,94.75441513],[4.53272847,0.0233448,94.75355567],[4.5327279,0.02334309,94.7526911],[4.53272733,0.02334138,94.75182136],[4.53272677,0.02333967,94.75094639],[4.5327262,0.02333796,94.75006616],[4.53272563,0.02333625,94.7491806],[4.53272506,0.02333454,94.74828967],[4.5327245,0.02333283,94.74739333],[4.53272393,0.02333112,94.74649151],[4.53272336,0.02332941,94.74558417],[4.53272279,0.0233277,94.74467125],[4.53272222,0.02332599,94.74375272],[4.53272165,0.02332428,94.74282868],[4.53272108,0.02332257,94.74189936],[4.53272051,0.02332086,94.74096503],[4.53271994,0.02331915,94.74002593],[4.53271937,0.02331744,94.7390823],[4.5327188,0.02331573,94.73813437],[4.53271823,0.02331402,94.73718234],[4.53271766,0.02331231,94.73622644],[4.53271709,0.0233106,94.73526687],[4.53271652,0.02330889,94.73430384],[4.53271595,0.02330718,94.73333755],[4.53271538,0.02330547,94.73236823],[4.53271481,0.02330376,94.73139608],[4.53271424,0.02330205,94.73042129],[4.53271367,0.02330034,94.72944408],[4.5327131,0.02329863,94.72846465],[4.53271253,0.02329692,94.72748321],[4.53271196,0.02329521,94.72649996],[4.53271139,0.0232935,94.72551511],[4.53271082,0.02329179,94.72452886],[4.53271025,0.02329008,94.72354141],[4.53270967,0.02328837,94.72255296],[4.5327091,0.02328666,94.72156372],[4.53270853,0.02328495,94.72057388],[4.53270796,0.02328324,94.71958363],[4.53270739,0.02328153,94.71859318],[4.53270682,0.02327982,94.71760272],[4.53270625,0.0232781,94.71661244],[4.53270568,0.02327639,94.71562252],[4.53270511,0.02327468,94.71463317],[4.53270454,0.02327297,94.71364457],[4.53270397,0.02327126,94.71265691],[4.5327034,0.02326955,94.71167037],[4.53270283,0.02326784,94.71068514],[4.53270226,0.02326613,94.7097014],[4.53270169,0.02326441,94.70871933],[4.53270112,0.0232627,94.70773908],[4.53270055,0.02326099,94.70676068],[4.53269998,0.02325928,94.70578411],[4.53269941,0.02325757,94.70480938],[4.53269884,0.02325585,94.7038365],[4.53269827,0.02325414,94.70286547],[4.53269769,0.02325243,94.7018963],[4.53269712,0.02325072,94.70092901],[4.53269655,0.02324901,94.69996363],[4.53269598,0.0232473,94.69900018],[4.5326954,0.02324559,94.6980387],[4.53269483,0.02324388,94.69707922],[4.53269425,0.02324216,94.69612178],[4.53269368,0.02324045,94.69516642],[4.5326931,0.02323874,94.69421318],[4.53269252,0.02323703,94.69326212],[4.53269194,0.02323532,94.69231329],[4.53269136,0.02323362,94.69136674],[4.53269078,0.02323191,94.69042253],[4.5326902,0.0232302,94.68948073],[4.53268961,0.02322849,94.68854175],[4.53268903,0.02322678,94.68760632],[4.53268844,0.02322508,94.68667515],[4.53268785,0.02322337,94.68574895],[4.53268727,0.02322166,94.68482839],[4.53268668,0.02321995,94.68391416],[4.53268609,0.02321825,94.68300689],[4.53268551,0.02321654,94.68210724],[4.53268492,0.02321483,94.68121581],[4.53268434,0.02321312,94.68033324],[4.53268376,0.02321141,94.67946012],[4.53268318,0.0232097,94.67859705],[4.5326826,0.02320799,94.6777446],[4.53268202,0.02320628,94.67690337],[4.53268145,0.02320457,94.67607392],[4.53268088,0.02320285,94.67525682],[4.53268031,0.02320114,94.67445265],[4.53267975,0.02319942,94.67366197],[4.53267974,0.02319939,94.67364753],[4.53269278,0.02319501,94.67364753],[4.53269279,0.02319504,94.67366197],[4.53269335,0.02319676,94.67445265],[4.53269392,0.02319848,94.67525682],[4.53269448,0.0232002,94.67607392],[4.53269505,0.02320191,94.67690337],[4.53269561,0.02320363,94.6777446],[4.53269617,0.02320535,94.67859705],[4.53269674,0.02320707,94.67946012],[4.5326973,0.02320878,94.68033324],[4.53269787,0.0232105,94.68121581],[4.53269843,0.02321222,94.68210724],[4.53269899,0.02321394,94.68300689],[4.53269956,0.02321565,94.68391416],[4.53270012,0.02321737,94.68482839],[4.53270068,0.02321909,94.68574895],[4.53270125,0.02322081,94.68667515],[4.53270181,0.02322252,94.68760632],[4.53270237,0.02322424,94.68854175],[4.53270294,0.02322596,94.68948073],[4.5327035,0.02322767,94.69042253],[4.53270406,0.02322939,94.69136674],[4.53270463,0.02323111,94.69231329],[4.53270519,0.02323282,94.69326212],[4.53270575,0.02323454,94.69421318],[4.53270631,0.02323626,94.69516642],[4.53270687,0.02323797,94.69612178],[4.53270744,0.02323969,94.69707922],[4.532708,0.02324141,94.6980387],[4.53270856,0.02324312,94.69900018],[4.53270912,0.02324484,94.69996363],[4.53270968,0.02324656,94.70092901],[4.53271024,0.02324827,94.7018963],[4.5327108,0.02324999,94.70286547],[4.53271135,0.02325171,94.7038365],[4.53271191,0.02325342,94.70480938],[4.53271247,0.02325514,94.70578411],[4.53271303,0.02325686,94.70676068],[4.53271359,0.02325857,94.70773908],[4.53271415,0.02326029,94.70871933],[4.53271471,0.02326201,94.7097014],[4.53271527,0.02326372,94.71068514],[4.53271582,0.02326544,94.71167037],[4.53271638,0.02326715,94.71265691],[4.53271694,0.02326887,94.71364457],[4.5327175,0.02327059,94.71463317],[4.53271806,0.0232723,94.71562252],[4.53271862,0.02327402,94.71661244],[4.53271918,0.02327573,94.71760272],[4.53271974,0.02327745,94.71859318],[4.5327203,0.02327916,94.71958363],[4.53272086,0.02328088,94.72057388],[4.53272142,0.02328259,94.72156372],[4.53272198,0.02328431,94.72255296],[4.53272254,0.02328602,94.72354141],[4.53272309,0.02328774,94.72452886],[4.53272365,0.02328945,94.72551511],[4.53272421,0.02329117,94.72649996],[4.53272477,0.02329288,94.72748321],[4.53272533,0.0232946,94.72846465],[4.53272589,0.02329631,94.72944408],[4.53272645,0.02329803,94.73042129],[4.532727,0.02329974,94.73139608],[4.53272756,0.02330145,94.73236823],[4.53272812,0.02330317,94.73333755],[4.53272868,0.02330488,94.73430384],[4.53272924,0.0233066,94.73526687],[4.53272979,0.02330831,94.73622644],[4.53273035,0.02331002,94.73718234],[4.53273091,0.02331174,94.73813437],[4.53273147,0.02331345,94.7390823],[4.53273203,0.02331517,94.74002593],[4.53273259,0.02331688,94.74096503],[4.53273314,0.02331859,94.74189936],[4.5327337,0.0233203,94.74282868],[4.53273426,0.02332202,94.74375272],[4.53273482,0.02332373,94.74467125],[4.53273538,0.02332544,94.74558417],[4.53273594,0.02332716,94.74649151],[4.5327365,0.02332887,94.74739333],[4.53273706,0.02333058,94.74828967],[4.53273762,0.02333229,94.7491806],[4.53273818,0.023334,94.75006616],[4.53273874,0.02333572,94.75094639],[4.5327393,0.02333743,94.75182136],[4.53273986,0.02333914,94.7526911],[4.53274042,0.02334085,94.75355567],[4.53274098,0.02334256,94.75441513],[4.53274154,0.02334427,94.75526951],[4.5327421,0.02334598,94.75611888],[4.53274266,0.0233477,94.75696328],[4.53274322,0.02334941,94.75780276],[4.53274378,0.02335112,94.75863745],[4.53274435,0.02335283,94.75946749],[4.53274491,0.02335454,94.76029307],[4.53274547,0.02335625,94.76111436],[4.53274603,0.02335796,94.76193153],[4.53274659,0.02335967,94.76274475],[4.53274715,0.02336138,94.7635542],[4.53274772,0.02336309,94.76436006],[4.53274828,0.0233648,94.7651625],[4.53274884,0.02336651,94.76596171],[4.5327494,0.02336822,94.76675786],[4.53274997,0.02336993,94.76755114],[4.53275053,0.02337164,94.76834172],[4.53275109,0.02337335,94.76912979],[4.53275165,0.02337506,94.76991552],[4.53275222,0.02337677,94.77069911],[4.53275278,0.02337848,94.77148074],[4.53275335,0.02338019,94.77226059],[4.53275391,0.0233819,94.77303884],[4.53275448,0.02338361,94.77381569],[4.53275504,0.02338532,94.77459131],[4.5327556,0.02338703,94.77536588],[4.53275617,0.02338874,94.77613955],[4.53275674,0.02339044,94.77691247],[4.5327573,0.02339215,94.77768479],[4.53275787,0.02339386,94.77845666],[4.53275843,0.02339557,94.77922824],[4.532759,0.02339728,94.77999968],[4.53275957,0.02339899,94.78077113],[4.53276014,0.0234007,94.78154274],[4.5327607,0.02340241,94.78231467],[4.53276127,0.02340412,94.78308707],[4.53276184,0.02340582,94.78386009],[4.53276241,0.02340753,94.78463389],[4.53276297,0.02340924,94.78540861],[4.53276354,0.02341095,94.78618441],[4.53276411,0.02341266,94.78696145],[4.53276468,0.02341437,94.78773987],[4.53276525,0.02341607,94.78851984],[4.53276582,0.02341778,94.78930149],[4.53276639,0.02341949,94.79008499],[4.53276696,0.0234212,94.79087048],[4.53276753,0.02342291,94.79165813],[4.5327681,0.02342461,94.79244807],[4.53276867,0.02342632,94.79324047],[4.53276924,0.02342803,94.79403548],[4.53276981,0.02342974,94.79483324],[4.53277038,0.02343144,94.79563392],[4.53277095,0.02343315,94.79643765],[4.53277152,0.02343486,94.79724461],[4.53277209,0.02343657,94.79805492],[4.53277266,0.02343828,94.79886876],[4.53277323,0.02343998,94.79968626],[4.5327738,0.02344169,94.80050759],[4.53277437,0.0234434,94.80133288],[4.53277494,0.02344511,94.8021623],[4.53277551,0.02344681,94.802996],[4.53277609,0.02344852,94.80383412],[4.53277666,0.02345023,94.80467681],[4.53277723,0.02345194,94.80552423],[4.5327778,0.02345364,94.80637652],[4.53277837,0.02345535,94.80723385],[4.53277894,0.02345706,94.80809634],[4.53277951,0.02345877,94.80896417],[4.53278008,0.02346048,94.80983747],[4.53278066,0.02346218,94.8107164],[4.53278123,0.02346389,94.81160111],[4.5327818,0.0234656,94.81249174],[4.53278237,0.02346731,94.81338845],[4.53278294,0.02346902,94.81429138],[4.53278351,0.02347072,94.81520069],[4.53278408,0.02347243,94.81611652],[4.53278465,0.02347414,94.81703903],[4.53278522,0.02347585,94.81796836],[4.53278579,0.02347756,94.81890466],[4.53278636,0.02347927,94.81984808],[4.53278694,0.02348097,94.82079877],[4.53278751,0.02348268,94.82175688],[4.53278808,0.02348439,94.82272256],[4.53278865,0.0234861,94.82369595],[4.53278922,0.02348781,94.82467722],[4.53278979,0.02348952,94.82566649],[4.53279036,0.02349123,94.82666393],[4.53279093,0.02349294,94.82766969],[4.53279149,0.02349465,94.82868391],[4.53279206,0.02349636,94.82970674],[4.53279263,0.02349807,94.83073834],[4.53278021,0.02350226,94.83073834]]],"type":"Polygon"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1004200","id":2,"type":"none","predecessorId":0,"sOffset":0.0}},{"geometry":{"coordinates":[[[4.532555,0.02324129,94.52109012],[4.53255374,0.02323984,94.52095261],[4.53255248,0.02323838,94.52077786],[4.53255122,0.02323692,94.52056507],[4.53254996,0.02323547,94.52031342],[4.5325487,0.02323401,94.52002213],[4.53254743,0.02323255,94.51969063],[4.53254617,0.0232311,94.51931921],[4.53254491,0.02322964,94.51890837],[4.53254365,0.02322819,94.51845862],[4.53254239,0.02322673,94.51797046],[4.53254112,0.02322527,94.51744439],[4.53254053,0.02322359,94.5168809],[4.53253996,0.0232219,94.51628051],[4.53253939,0.02322021,94.51564371],[4.53253883,0.02321852,94.514971],[4.53253826,0.02321683,94.5142629],[4.53253769,0.02321513,94.51351989],[4.53253712,0.02321344,94.51274249],[4.53253656,0.02321175,94.5119312],[4.53253599,0.02321005,94.51108652],[4.53253542,0.02320836,94.51020897],[4.53253486,0.02320667,94.50929906],[4.53253429,0.02320497,94.50835729],[4.53253372,0.02320328,94.50738418],[4.53253316,0.02320158,94.50638024],[4.53253259,0.02319989,94.50534599],[4.53253203,0.02319819,94.50428195],[4.53253146,0.0231965,94.50318863],[4.5325309,0.0231948,94.50206655],[4.53253033,0.0231931,94.50091624],[4.53252977,0.02319141,94.49973823],[4.53252921,0.02318971,94.49853305],[4.53252864,0.02318801,94.49730121],[4.53252808,0.02318631,94.49604327],[4.53252752,0.02318461,94.49475974],[4.53252696,0.02318292,94.49345118],[4.5325264,0.02318122,94.49211809],[4.53252584,0.02317952,94.49076091],[4.53252528,0.02317781,94.48938009],[4.53252472,0.02317611,94.4879761],[4.53252416,0.02317441,94.4865494],[4.53252361,0.02317271,94.48510046],[4.53252305,0.02317101,94.48362974],[4.53252249,0.02316931,94.4821377],[4.53252193,0.0231676,94.48062479],[4.53252138,0.0231659,94.47909149],[4.53252082,0.0231642,94.47753823],[4.53252027,0.02316249,94.47596547],[4.53251971,0.02316079,94.47437367],[4.53251915,0.02315908,94.47276327],[4.5325186,0.02315738,94.47113472],[4.53251804,0.02315567,94.46948846],[4.53251748,0.02315397,94.46782493],[4.53251693,0.02315226,94.46614457],[4.53251637,0.02315056,94.4644478],[4.53251581,0.02314885,94.46273507],[4.53251526,0.02314714,94.4610068],[4.5325147,0.02314544,94.45926341],[4.53251414,0.02314373,94.45750532],[4.53251358,0.02314203,94.45573293],[4.53251303,0.02314032,94.45394664],[4.53251247,0.02313861,94.45214679],[4.53251191,0.02313691,94.45033371],[4.53251134,0.0231352,94.44850774],[4.53251078,0.02313349,94.44666931],[4.53251022,0.02313179,94.44481899],[4.53250966,0.02313008,94.44295731],[4.53250909,0.02312837,94.44108484],[4.53250853,0.02312667,94.43920213],[4.53250796,0.02312496,94.43730973],[4.5325074,0.02312325,94.43540821],[4.53250683,0.02312155,94.43349812],[4.53250626,0.02311984,94.43158001],[4.5325057,0.02311813,94.42965445],[4.53250513,0.02311643,94.42772201],[4.53250456,0.02311472,94.42578323],[4.53250399,0.02311301,94.4238387],[4.53250342,0.02311131,94.42188896],[4.53250285,0.0231096,94.41993459],[4.53250228,0.02310789,94.41797615],[4.53250171,0.02310618,94.41601422],[4.53250114,0.02310448,94.41404937],[4.53250057,0.02310277,94.4120822],[4.5325,0.02310106,94.41011335],[4.53249943,0.02309935,94.40814343],[4.53249886,0.02309764,94.40617306],[4.53249829,0.02309593,94.40420288],[4.53249772,0.02309423,94.40223348],[4.53249715,0.02309252,94.4002654],[4.53249658,0.02309081,94.39829913],[4.532496,0.0230891,94.39633516],[4.53249543,0.02308739,94.394374],[4.53249486,0.02308568,94.39241614],[4.53249429,0.02308397,94.39046208],[4.53249372,0.02308226,94.38851231],[4.53249315,0.02308054,94.3865673],[4.53249258,0.02307883,94.38462752],[4.53249201,0.02307712,94.38269342],[4.53249144,0.02307541,94.38076546],[4.53249086,0.0230737,94.37884409],[4.53249029,0.02307199,94.37692977],[4.53248972,0.02307027,94.37502295],[4.53248915,0.02306856,94.37312407],[4.53248858,0.02306685,94.37123358],[4.532488,0.02306514,94.36935194],[4.53248743,0.02306342,94.36747958],[4.53248686,0.02306171,94.36561695],[4.53248629,0.02306,94.36376449],[4.53248571,0.02305828,94.36192265],[4.53248514,0.02305657,94.36009187],[4.53248457,0.02305486,94.35827258],[4.53248399,0.02305314,94.35646522],[4.53248342,0.02305143,94.35467023],[4.53248284,0.02304971,94.35288805],[4.53248227,0.023048,94.35111912],[4.53248169,0.02304628,94.34936386],[4.53248111,0.02304457,94.34762273],[4.53248054,0.02304286,94.34589621],[4.53247996,0.02304114,94.34418484],[4.53247938,0.02303943,94.3424891],[4.53247881,0.02303771,94.34080952],[4.53247823,0.023036,94.33914662],[4.53247765,0.02303428,94.33750089],[4.53247707,0.02303257,94.33587275],[4.53247649,0.02303085,94.33426215],[4.53247591,0.02302913,94.33266895],[4.53247533,0.02302742,94.33109303],[4.53247475,0.0230257,94.32953422],[4.53247417,0.02302399,94.32799241],[4.53247359,0.02302227,94.32646745],[4.53247301,0.02302056,94.3249592],[4.53247243,0.02301884,94.32346754],[4.53247185,0.02301713,94.32199232],[4.53247127,0.02301541,94.32053342],[4.53247069,0.0230137,94.31909069],[4.5324701,0.02301198,94.31766401],[4.53246952,0.02301027,94.31625325],[4.53246894,0.02300855,94.31485827],[4.53246836,0.02300684,94.31347894],[4.53246777,0.02300513,94.31211513],[4.53246719,0.02300341,94.31076672],[4.53246661,0.0230017,94.30943357],[4.53246603,0.02299999,94.30811556],[4.53246544,0.02299827,94.30681255],[4.53246486,0.02299656,94.30552443],[4.53246428,0.02299485,94.30425105],[4.53246369,0.02299313,94.3029923],[4.53246311,0.02299142,94.30174804],[4.53246252,0.02298971,94.30051814],[4.53246194,0.02298799,94.29930247],[4.53246135,0.02298628,94.29810089],[4.53246077,0.02298457,94.29691327],[4.53246019,0.02298286,94.2957395],[4.5324596,0.02298114,94.29457949],[4.53245902,0.02297943,94.29343318],[4.53245843,0.02297772,94.29230059],[4.53245785,0.02297601,94.29118172],[4.53245726,0.0229743,94.29007658],[4.53245668,0.02297258,94.28898518],[4.53245609,0.02297087,94.28790755],[4.53245551,0.02296916,94.28684368],[4.53245492,0.02296745,94.28579358],[4.53245434,0.02296574,94.28475728],[4.53245375,0.02296402,94.28373479],[4.53245317,0.02296231,94.2827261],[4.53245259,0.0229606,94.28173124],[4.53245201,0.02295889,94.28075022],[4.53245142,0.02295717,94.27978304],[4.53245084,0.02295546,94.27882971],[4.53245026,0.02295375,94.27789022],[4.53244968,0.02295204,94.27696451],[4.5324491,0.02295032,94.27605251],[4.53244852,0.02294861,94.27515409],[4.53244794,0.0229469,94.27426907],[4.53244737,0.02294518,94.27339723],[4.53244679,0.02294347,94.27253836],[4.53244621,0.02294175,94.27169227],[4.53244564,0.02294004,94.27085874],[4.53244506,0.02293833,94.27003757],[4.53244449,0.02293661,94.26922856],[4.53244391,0.0229349,94.2684315],[4.53244334,0.02293318,94.26764619],[4.53244276,0.02293147,94.26687241],[4.53244219,0.02292975,94.26610996],[4.53244162,0.02292804,94.26535864],[4.53244105,0.02292632,94.26461823],[4.53244047,0.02292461,94.26388853],[4.5324399,0.02292289,94.26316934],[4.53243933,0.02292118,94.26246045],[4.53243876,0.02291946,94.26176165],[4.53243819,0.02291775,94.26107273],[4.53243762,0.02291603,94.2603935],[4.53243705,0.02291432,94.25972374],[4.53243648,0.0229126,94.25906325],[4.53243591,0.02291089,94.25841182],[4.53243534,0.02290917,94.25776925],[4.53243477,0.02290746,94.25713534],[4.5324342,0.02290574,94.25650988],[4.53243363,0.02290403,94.25589266],[4.53243306,0.02290231,94.25528348],[4.53243249,0.0229006,94.25468214],[4.53243192,0.02289888,94.25408844],[4.53243135,0.02289717,94.25350217],[4.53243078,0.02289545,94.25292314],[4.53243022,0.02289374,94.25235113],[4.53242965,0.02289202,94.25178596],[4.53242908,0.02289031,94.25122741],[4.53242851,0.02288859,94.2506753],[4.53242794,0.02288688,94.25012941],[4.53242737,0.02288516,94.24958956],[4.5324268,0.02288345,94.24905554],[4.53242623,0.02288173,94.24852716],[4.53242566,0.02288002,94.24800423],[4.53242509,0.02287831,94.24748658],[4.53242452,0.02287659,94.24697403],[4.53242395,0.02287488,94.24646639],[4.53242338,0.02287316,94.24596351],[4.53242281,0.02287145,94.24546519],[4.53242224,0.02286974,94.24497126],[4.53242166,0.02286802,94.24448156],[4.53242109,0.02286631,94.24399591],[4.53242052,0.0228646,94.24351413],[4.53241995,0.02286288,94.24303606],[4.53241938,0.02286117,94.2425616],[4.5324188,0.02285946,94.24209064],[4.53241823,0.02285775,94.24162308],[4.53241766,0.02285603,94.24115882],[4.53241708,0.02285432,94.24069775],[4.53241651,0.02285261,94.24023976],[4.53241593,0.0228509,94.23978475],[4.53241536,0.02284919,94.2393326],[4.53241479,0.02284747,94.23888321],[4.53241421,0.02284576,94.23843646],[4.53241364,0.02284405,94.23799225],[4.53241306,0.02284234,94.23755048],[4.53241248,0.02284063,94.23711101],[4.53241191,0.02283892,94.23667376],[4.53241133,0.02283721,94.23623861],[4.53241076,0.0228355,94.23580544],[4.53241018,0.02283379,94.23537415],[4.5324096,0.02283208,94.23494462],[4.53240903,0.02283036,94.23451675],[4.53240845,0.02282865,94.23409042],[4.53240788,0.02282694,94.23366552],[4.5324073,0.02282523,94.23324193],[4.53240672,0.02282352,94.23281955],[4.53240614,0.02282181,94.23239826],[4.53240557,0.0228201,94.23197795],[4.53240499,0.02281839,94.2315585],[4.53240441,0.02281668,94.23113981],[4.53240384,0.02281497,94.23072174],[4.53240326,0.02281326,94.2303042],[4.53240268,0.02281156,94.22988707],[4.5324021,0.02280985,94.22947022],[4.53240153,0.02280814,94.22905355],[4.53240095,0.02280643,94.22863694],[4.53240037,0.02280472,94.22822027],[4.53239979,0.02280301,94.22780343],[4.53239922,0.0228013,94.22738629],[4.53239864,0.02279959,94.22696875],[4.53239806,0.02279788,94.22655068],[4.53239749,0.02279617,94.22613197],[4.53239691,0.02279446,94.22571249],[4.53239633,0.02279275,94.22529214],[4.53239575,0.02279104,94.22487078],[4.53239518,0.02278934,94.22444831],[4.5323946,0.02278763,94.2240246],[4.53239402,0.02278592,94.22359953],[4.53239345,0.02278421,94.22317299],[4.53239287,0.0227825,94.22274484],[4.53239229,0.02278079,94.22231498],[4.53239172,0.02277908,94.22188329],[4.53239114,0.02277737,94.22144963],[4.53239056,0.02277566,94.22101389],[4.53238999,0.02277396,94.22057604],[4.53238941,0.02277225,94.2201361],[4.53238884,0.02277054,94.21969412],[4.53238826,0.02276883,94.21925012],[4.53238769,0.02276712,94.21880411],[4.53238711,0.02276541,94.21835612],[4.53238654,0.0227637,94.21790617],[4.53238596,0.02276199,94.21745427],[4.53238539,0.02276029,94.21700045],[4.53238481,0.02275858,94.21654473],[4.53238424,0.02275687,94.21608712],[4.53238366,0.02275516,94.21562765],[4.53238309,0.02275345,94.21516634],[4.53238252,0.02275174,94.2147032],[4.53238194,0.02275003,94.21423827],[4.53238137,0.02274832,94.21377155],[4.5323808,0.02274661,94.21330306],[4.53238022,0.02274491,94.21283284],[4.53237965,0.0227432,94.2123609],[4.53237908,0.02274149,94.21188725],[4.5323785,0.02273978,94.21141192],[4.53237793,0.02273807,94.21093494],[4.53237736,0.02273636,94.21045631],[4.53237679,0.02273465,94.20997607],[4.53237622,0.02273294,94.20949423],[4.53237564,0.02273123,94.20901083],[4.53237507,0.02272953,94.20852589],[4.5323745,0.02272782,94.20803945],[4.53237393,0.02272611,94.20755153],[4.53237336,0.0227244,94.20706218],[4.53237279,0.02272269,94.20657142],[4.53237222,0.02272098,94.20607928],[4.53237165,0.02271927,94.20558579],[4.53237108,0.02271756,94.20509099],[4.53237051,0.02271585,94.20459491],[4.53236994,0.02271414,94.20409758],[4.53236937,0.02271243,94.20359902],[4.5323688,0.02271073,94.20309928],[4.53236823,0.02270902,94.20259837],[4.53236766,0.02270731,94.20209634],[4.5323671,0.0227056,94.20159321],[4.53236653,0.02270389,94.20108901],[4.53236596,0.02270218,94.20058377],[4.53236539,0.02270047,94.20007753],[4.53236483,0.02269876,94.19957031],[4.53236426,0.02269705,94.19906215],[4.53236369,0.02269534,94.198553],[4.53236313,0.02269363,94.19804277],[4.53236256,0.02269192,94.19753134],[4.53236199,0.02269021,94.19701862],[4.53236143,0.0226885,94.19650451],[4.53236086,0.02268679,94.1959889],[4.5323603,0.02268508,94.19547168],[4.53235973,0.02268337,94.19495276],[4.53235916,0.02268167,94.19443204],[4.5323586,0.02267996,94.19390941],[4.53235803,0.02267825,94.19338477],[4.53235746,0.02267654,94.19285803],[4.5323569,0.02267483,94.19232908],[4.53235633,0.02267312,94.19179782],[4.53235576,0.02267141,94.19126416],[4.53235519,0.02266971,94.19072799],[4.53235462,0.022668,94.19018921],[4.53235405,0.02266629,94.18964772],[4.53235348,0.02266458,94.18910343],[4.53235291,0.02266288,94.18855624],[4.53235234,0.02266117,94.18800604],[4.53235176,0.02265946,94.18745274],[4.53235119,0.02265776,94.18689623],[4.53235062,0.02265605,94.18633644],[4.53235004,0.02265435,94.1857735],[4.53234946,0.02265264,94.18520755],[4.53234889,0.02265094,94.18463876],[4.53234831,0.02264923,94.18406727],[4.53234773,0.02264753,94.18349324],[4.53234715,0.02264583,94.18291682],[4.53234657,0.02264412,94.18233816],[4.53234599,0.02264242,94.18175743],[4.53234541,0.02264072,94.18117476],[4.53234483,0.02263902,94.18059032],[4.53234425,0.02263731,94.18000425],[4.53234366,0.02263561,94.17941671],[4.53234308,0.02263391,94.17882785],[4.5323425,0.02263221,94.17823782],[4.53234192,0.0226305,94.17764677],[4.53234134,0.0226288,94.17705485],[4.53234075,0.0226271,94.17646221],[4.53234017,0.0226254,94.17586901],[4.53233959,0.0226237,94.1752754],[4.53233901,0.02262199,94.17468152],[4.53233843,0.02262029,94.17408751],[4.53233784,0.02261858,94.17349336],[4.53233726,0.02261688,94.17289904],[4.53233668,0.02261518,94.17230453],[4.5323361,0.02261348,94.1717098],[4.53233552,0.02261177,94.17111482],[4.53233494,0.02261007,94.17051957],[4.53233436,0.02260837,94.16992402],[4.53233378,0.02260667,94.16932815],[4.5323332,0.02260496,94.16873192],[4.53233261,0.02260326,94.16813531],[4.53233203,0.02260156,94.16753829],[4.53233145,0.02259986,94.16694084],[4.53233087,0.02259815,94.16634292],[4.53233029,0.02259645,94.16574452],[4.53232971,0.02259475,94.1651456],[4.53232913,0.02259305,94.16454615],[4.53232855,0.02259134,94.16394614],[4.53232797,0.02258964,94.16334554],[4.53232739,0.02258794,94.16274431],[4.53232681,0.02258624,94.16214242],[4.53232622,0.02258453,94.16153984],[4.53232564,0.02258283,94.16093652],[4.53232506,0.02258113,94.16033243],[4.53232448,0.02257943,94.15972754],[4.53232389,0.02257772,94.15912181],[4.53232331,0.02257602,94.1585152],[4.53232273,0.02257432,94.15790768],[4.53232215,0.02257262,94.15729921],[4.53232156,0.02257092,94.15668978],[4.53232098,0.02256922,94.15607949],[4.53232039,0.02256751,94.15546847],[4.53231981,0.02256581,94.15485684],[4.53231922,0.02256411,94.15424473],[4.53231864,0.02256241,94.15363225],[4.53231805,0.02256071,94.15301955],[4.53231747,0.02255901,94.15240673],[4.53231688,0.0225573,94.15179394],[4.5323163,0.0225556,94.1511813],[4.53231571,0.0225539,94.15056893],[4.53231513,0.0225522,94.14995697],[4.53231454,0.0225505,94.14934553],[4.53231396,0.0225488,94.14873475],[4.53231337,0.0225471,94.14812476],[4.53231279,0.02254539,94.14751569],[4.5323122,0.02254369,94.14690766],[4.53231162,0.02254199,94.14630081],[4.53231104,0.02254029,94.14569527],[4.53231045,0.02253858,94.14509116],[4.53230987,0.02253688,94.14448862],[4.53230929,0.02253518,94.14388778],[4.53230871,0.02253347,94.14328877],[4.53230813,0.02253177,94.1426917],[4.53230755,0.02253007,94.14209657],[4.53230697,0.02252836,94.14150336],[4.53230639,0.02252666,94.14091206],[4.53230582,0.02252495,94.14032263],[4.53230524,0.02252325,94.13973507],[4.53230466,0.02252155,94.13914933],[4.53230409,0.02251984,94.13856542],[4.53230351,0.02251813,94.13798329],[4.53230294,0.02251643,94.13740294],[4.53230236,0.02251472,94.13682434],[4.53230179,0.02251302,94.13624747],[4.53230122,0.02251131,94.1356723],[4.53230064,0.02250961,94.13509882],[4.53230007,0.0225079,94.134527],[4.5322995,0.02250619,94.13395682],[4.53229893,0.02250449,94.13338826],[4.53229835,0.02250278,94.1328213],[4.53229778,0.02250107,94.1322559],[4.53229721,0.02249937,94.13169206],[4.53229664,0.02249766,94.13112975],[4.53229607,0.02249595,94.13056894],[4.5322955,0.02249424,94.13000962],[4.53229493,0.02249254,94.12945175],[4.53229436,0.02249083,94.12889532],[4.53229379,0.02248912,94.1283403],[4.53229322,0.02248741,94.12778666],[4.53229266,0.02248571,94.12723439],[4.53229209,0.022484,94.12668346],[4.53229152,0.02248229,94.12613385],[4.53229095,0.02248058,94.12558553],[4.53229038,0.02247887,94.12503847],[4.53228981,0.02247717,94.12449266],[4.53228925,0.02247546,94.12394806],[4.53228868,0.02247375,94.12340467],[4.53228811,0.02247204,94.12286247],[4.53228754,0.02247033,94.12232145],[4.53228697,0.02246862,94.1217816],[4.53228641,0.02246692,94.12124291],[4.53228584,0.02246521,94.12070536],[4.53228527,0.0224635,94.12016894],[4.5322847,0.02246179,94.11963364],[4.53228413,0.02246008,94.11909944],[4.53228356,0.02245837,94.11856634],[4.532283,0.02245667,94.11803432],[4.53228243,0.02245496,94.11750336],[4.53228186,0.02245325,94.11697349],[4.53228129,0.02245154,94.11644472],[4.53228072,0.02244983,94.11591707],[4.53228015,0.02244812,94.11539056],[4.53227958,0.02244642,94.1148652],[4.53227902,0.02244471,94.11434102],[4.53227845,0.022443,94.11381802],[4.53227788,0.02244129,94.11329623],[4.53227731,0.02243958,94.11277565],[4.53227674,0.02243788,94.1122563],[4.53227617,0.02243617,94.1117382],[4.5322756,0.02243446,94.11122135],[4.53227503,0.02243275,94.11070578],[4.53227446,0.02243104,94.11019149],[4.53227389,0.02242933,94.1096785],[4.53227332,0.02242763,94.10916683],[4.53227275,0.02242592,94.10865649],[4.53227218,0.02242421,94.1081475],[4.53227161,0.0224225,94.10763986],[4.53227104,0.02242079,94.10713359],[4.53227047,0.02241909,94.10662872],[4.5322699,0.02241738,94.10612524],[4.53226933,0.02241567,94.10562318],[4.53226876,0.02241396,94.10512255],[4.53226819,0.02241225,94.10462337],[4.53226761,0.02241055,94.10412564],[4.53226704,0.02240884,94.10362938],[4.53226647,0.02240713,94.10313461],[4.5322659,0.02240542,94.10264134],[4.53226533,0.02240372,94.10214958],[4.53226476,0.02240201,94.10165935],[4.53226418,0.0224003,94.10117066],[4.53226361,0.02239859,94.10068353],[4.53226304,0.02239688,94.10019796],[4.53226247,0.02239518,94.09971398],[4.53226189,0.02239347,94.09923159],[4.53226132,0.02239176,94.09875082],[4.53226075,0.02239005,94.09827166],[4.53226018,0.02238835,94.09779415],[4.5322596,0.02238664,94.09731828],[4.53225903,0.02238493,94.09684408],[4.53225846,0.02238322,94.09637156],[4.53225788,0.02238152,94.09590073],[4.53225731,0.02237981,94.0954316],[4.53225674,0.0223781,94.09496419],[4.53225616,0.0223764,94.09449851],[4.53225559,0.02237469,94.09403457],[4.53225501,0.02237298,94.09357239],[4.53225444,0.02237127,94.09311199],[4.53225386,0.02236957,94.09265339],[4.53225329,0.02236786,94.0921966],[4.53225271,0.02236615,94.09174166],[4.53225214,0.02236445,94.09128859],[4.53225156,0.02236274,94.0908374],[4.53225099,0.02236103,94.09038812],[4.53225041,0.02235933,94.08994078],[4.53224984,0.02235762,94.08949539],[4.53224926,0.02235591,94.08905198],[4.53224868,0.0223542,94.08861057],[4.53224811,0.0223525,94.08817118],[4.53224753,0.02235079,94.08773382],[4.53224695,0.02234908,94.08729849],[4.53224638,0.02234738,94.08686522],[4.5322458,0.02234567,94.086434],[4.53224522,0.02234396,94.08600485],[4.53224465,0.02234226,94.08557778],[4.53224407,0.02234055,94.0851528],[4.53224349,0.02233885,94.08472992],[4.53224291,0.02233714,94.08430914],[4.53224234,0.02233543,94.08389049],[4.53224176,0.02233373,94.08347396],[4.53224118,0.02233202,94.08305958],[4.5322406,0.02233031,94.08264734],[4.53224002,0.02232861,94.08223726],[4.53223944,0.0223269,94.08182935],[4.53223886,0.0223252,94.08142362],[4.53223829,0.02232349,94.08102008],[4.53223771,0.02232178,94.08061873],[4.53223713,0.02232008,94.08021959],[4.53223655,0.02231837,94.07982267],[4.53223597,0.02231667,94.07942798],[4.53223539,0.02231496,94.07903552],[4.53223481,0.02231325,94.07864531],[4.53223423,0.02231155,94.07825735],[4.53223395,0.02230974,94.07787166],[4.53223392,0.02230784,94.07748824],[4.53223388,0.02230595,94.0771071],[4.53223384,0.02230406,94.07672826],[4.53223381,0.02230217,94.07635172],[4.53223377,0.02230027,94.0759775],[4.53223373,0.02229838,94.07560559],[4.53223369,0.02229649,94.07523604],[4.53223366,0.0222946,94.07486895],[4.53223362,0.02229271,94.07450446],[4.53223358,0.02229081,94.07414271],[4.53223354,0.02228892,94.07378383],[4.5322335,0.02228703,94.07342797],[4.53223346,0.02228514,94.07307525],[4.53223342,0.02228325,94.07272582],[4.53223338,0.02228136,94.07237981],[4.53223334,0.02227946,94.07203737],[4.5322333,0.02227757,94.07169863],[4.53223327,0.02227568,94.07136374],[4.53223323,0.02227379,94.07103283],[4.53223319,0.02227189,94.07070605],[4.53223316,0.02227,94.07038354],[4.53223313,0.02226811,94.07006544],[4.53223309,0.02226621,94.06975189],[4.53223306,0.02226432,94.06944303],[4.53223303,0.02226242,94.06913868],[4.532233,0.02226053,94.06883835],[4.53223297,0.02225863,94.06854155],[4.53223294,0.02225674,94.06824777],[4.53223292,0.02225484,94.06795652],[4.53223289,0.02225294,94.06766729],[4.53223286,0.02225105,94.06737958],[4.53223284,0.02224915,94.06709287],[4.53223281,0.02224725,94.06680666],[4.53223278,0.02224536,94.06652043],[4.53223276,0.02224346,94.06623367],[4.53223273,0.02224156,94.06594586],[4.5322327,0.02223967,94.06565649],[4.53223267,0.02223777,94.06536503],[4.53223264,0.02223588,94.06507111],[4.53223261,0.02223398,94.06477493],[4.53223258,0.02223209,94.06447685],[4.53223255,0.02223019,94.06417721],[4.53223252,0.0222283,94.06387637],[4.53223248,0.0222264,94.06357467],[4.53223245,0.02222451,94.06327248],[4.53223241,0.02222262,94.06297015],[4.53223238,0.02222072,94.06266804],[4.53223234,0.02221883,94.06236651],[4.5322323,0.02221694,94.06206592],[4.53223227,0.02221505,94.06176663],[4.53223223,0.02221315,94.061469],[4.53223219,0.02221126,94.06117341],[4.53223215,0.02220937,94.06088021],[4.53223212,0.02220747,94.06058977],[4.53223208,0.02220558,94.06030247],[4.53223204,0.02220369,94.06001867],[4.532232,0.0222018,94.05973874],[4.53223197,0.0221999,94.05946306],[4.53223193,0.02219801,94.05919199],[4.53223189,0.02219612,94.05892592],[4.53223186,0.02219423,94.05866522],[4.53223182,0.02219233,94.05841026],[4.53223178,0.02219044,94.05816142],[4.53223175,0.02218855,94.05791909],[4.53223171,0.02218665,94.05722502],[4.53223168,0.02218476,94.05608962],[4.53223164,0.02218286,94.05495667],[4.53223161,0.02218097,94.0538262],[4.53223158,0.02217908,94.05266111],[4.53223154,0.02217718,94.05079245],[4.53223151,0.02217537,94.04900345],[4.53223153,0.02217536,94.04900345],[4.53223264,0.02217681,94.05079245],[4.53223379,0.02217832,94.05266111],[4.53223471,0.02217991,94.0538262],[4.53223562,0.0221815,94.05495667],[4.53223652,0.02218309,94.05608962],[4.53223743,0.02218469,94.05722502],[4.53223819,0.02218633,94.05791909],[4.53223879,0.02218803,94.05816142],[4.5322394,0.02218973,94.05841026],[4.53224001,0.02219142,94.05866522],[4.53224062,0.02219312,94.05892592],[4.53224123,0.02219482,94.05919199],[4.53224184,0.02219651,94.05946306],[4.53224245,0.02219821,94.05973874],[4.53224306,0.02219991,94.06001867],[4.53224367,0.0222016,94.06030247],[4.53224428,0.0222033,94.06058977],[4.53224489,0.02220499,94.06088021],[4.5322455,0.02220669,94.06117341],[4.53224611,0.02220839,94.061469],[4.53224672,0.02221008,94.06176663],[4.53224733,0.02221178,94.06206592],[4.53224794,0.02221348,94.06236651],[4.53224854,0.02221517,94.06266804],[4.53224915,0.02221687,94.06297015],[4.53224975,0.02221857,94.06327248],[4.53225035,0.02222027,94.06357467],[4.53225096,0.02222197,94.06387637],[4.53225155,0.02222367,94.06417721],[4.53225215,0.02222537,94.06447685],[4.53225275,0.02222707,94.06477493],[4.53225334,0.02222877,94.06507111],[4.53225394,0.02223047,94.06536503],[4.53225453,0.02223218,94.06565649],[4.53225512,0.02223388,94.06594586],[4.5322557,0.02223558,94.06623367],[4.53225629,0.02223729,94.06652043],[4.53225687,0.02223899,94.06680666],[4.53225746,0.0222407,94.06709287],[4.53225804,0.0222424,94.06737958],[4.53225862,0.02224411,94.06766729],[4.5322592,0.02224582,94.06795652],[4.53225978,0.02224752,94.06824777],[4.53226036,0.02224923,94.06854155],[4.53226094,0.02225094,94.06883835],[4.53226152,0.02225264,94.06913868],[4.5322621,0.02225435,94.06944303],[4.53226268,0.02225606,94.06975189],[4.53226326,0.02225776,94.07006544],[4.53226384,0.02225947,94.07038354],[4.53226442,0.02226118,94.07070605],[4.532265,0.02226288,94.07103283],[4.53226558,0.02226459,94.07136374],[4.53226617,0.02226629,94.07169863],[4.53226675,0.022268,94.07203737],[4.53226733,0.0222697,94.07237981],[4.53226791,0.02227141,94.07272582],[4.5322685,0.02227312,94.07307525],[4.53226908,0.02227482,94.07342797],[4.53226966,0.02227653,94.07378383],[4.53227025,0.02227823,94.07414271],[4.53227083,0.02227994,94.07450446],[4.53227141,0.02228164,94.07486895],[4.53227199,0.02228335,94.07523604],[4.53227258,0.02228505,94.07560559],[4.53227316,0.02228676,94.0759775],[4.53227374,0.02228846,94.07635172],[4.53227432,0.02229017,94.07672826],[4.5322749,0.02229188,94.0771071],[4.53227548,0.02229358,94.07748824],[4.53227607,0.02229529,94.07787166],[4.53227665,0.02229699,94.07825735],[4.53227723,0.0222987,94.07864531],[4.53227781,0.02230041,94.07903552],[4.53227839,0.02230211,94.07942798],[4.53227897,0.02230382,94.07982267],[4.53227955,0.02230552,94.08021959],[4.53228013,0.02230723,94.08061873],[4.53228071,0.02230894,94.08102008],[4.53228129,0.02231064,94.08142362],[4.53228187,0.02231235,94.08182935],[4.53228244,0.02231406,94.08223726],[4.53228302,0.02231576,94.08264734],[4.5322836,0.02231747,94.08305958],[4.53228418,0.02231918,94.08347396],[4.53228476,0.02232088,94.08389049],[4.53228534,0.02232259,94.08430914],[4.53228591,0.0223243,94.08472992],[4.53228649,0.022326,94.0851528],[4.53228707,0.02232771,94.08557778],[4.53228765,0.02232942,94.08600485],[4.53228822,0.02233112,94.086434],[4.5322888,0.02233283,94.08686522],[4.53228938,0.02233454,94.08729849],[4.53228995,0.02233625,94.08773382],[4.53229053,0.02233795,94.08817118],[4.53229111,0.02233966,94.08861057],[4.53229168,0.02234137,94.08905198],[4.53229226,0.02234307,94.08949539],[4.53229284,0.02234478,94.08994078],[4.53229341,0.02234649,94.09038812],[4.53229399,0.0223482,94.0908374],[4.53229456,0.0223499,94.09128859],[4.53229514,0.02235161,94.09174166],[4.53229571,0.02235332,94.0921966],[4.53229629,0.02235503,94.09265339],[4.53229686,0.02235673,94.09311199],[4.53229744,0.02235844,94.09357239],[4.53229801,0.02236015,94.09403457],[4.53229859,0.02236186,94.09449851],[4.53229916,0.02236357,94.09496419],[4.53229973,0.02236527,94.0954316],[4.53230031,0.02236698,94.09590073],[4.53230088,0.02236869,94.09637156],[4.53230146,0.0223704,94.09684408],[4.53230203,0.02237211,94.09731828],[4.5323026,0.02237381,94.09779415],[4.53230318,0.02237552,94.09827166],[4.53230375,0.02237723,94.09875082],[4.53230432,0.02237894,94.09923159],[4.53230489,0.02238065,94.09971398],[4.53230547,0.02238235,94.10019796],[4.53230604,0.02238406,94.10068353],[4.53230661,0.02238577,94.10117066],[4.53230718,0.02238748,94.10165935],[4.53230776,0.02238919,94.10214958],[4.53230833,0.0223909,94.10264134],[4.5323089,0.0223926,94.10313461],[4.53230947,0.02239431,94.10362938],[4.53231004,0.02239602,94.10412564],[4.53231061,0.02239773,94.10462337],[4.53231119,0.02239944,94.10512255],[4.53231176,0.02240115,94.10562318],[4.53231233,0.02240286,94.10612524],[4.5323129,0.02240456,94.10662872],[4.53231347,0.02240627,94.10713359],[4.53231404,0.02240798,94.10763986],[4.53231461,0.02240969,94.1081475],[4.53231518,0.0224114,94.10865649],[4.53231575,0.02241311,94.10916683],[4.53231632,0.02241482,94.1096785],[4.53231689,0.02241653,94.11019149],[4.53231746,0.02241823,94.11070578],[4.53231803,0.02241994,94.11122135],[4.5323186,0.02242165,94.1117382],[4.53231917,0.02242336,94.1122563],[4.53231974,0.02242507,94.11277565],[4.53232031,0.02242678,94.11329623],[4.53232088,0.02242849,94.11381802],[4.53232145,0.0224302,94.11434102],[4.53232202,0.02243191,94.1148652],[4.53232259,0.02243361,94.11539056],[4.53232316,0.02243532,94.11591707],[4.53232372,0.02243703,94.11644472],[4.53232429,0.02243874,94.11697349],[4.53232486,0.02244045,94.11750336],[4.53232543,0.02244216,94.11803432],[4.532326,0.02244387,94.11856634],[4.53232657,0.02244558,94.11909944],[4.53232714,0.02244729,94.11963364],[4.53232771,0.022449,94.12016894],[4.53232827,0.02245071,94.12070536],[4.53232884,0.02245242,94.12124291],[4.53232941,0.02245412,94.1217816],[4.53232998,0.02245583,94.12232145],[4.53233055,0.02245754,94.12286247],[4.53233112,0.02245925,94.12340467],[4.53233168,0.02246096,94.12394806],[4.53233225,0.02246267,94.12449266],[4.53233282,0.02246438,94.12503847],[4.53233339,0.02246609,94.12558553],[4.53233396,0.0224678,94.12613385],[4.53233453,0.02246951,94.12668346],[4.5323351,0.02247122,94.12723439],[4.53233566,0.02247292,94.12778666],[4.53233623,0.02247463,94.1283403],[4.5323368,0.02247634,94.12889532],[4.53233737,0.02247805,94.12945175],[4.53233794,0.02247976,94.13000962],[4.53233851,0.02248147,94.13056894],[4.53233908,0.02248317,94.13112975],[4.53233965,0.02248488,94.13169206],[4.53234023,0.02248659,94.1322559],[4.5323408,0.0224883,94.1328213],[4.53234137,0.02249001,94.13338826],[4.53234194,0.02249171,94.13395682],[4.53234251,0.02249342,94.134527],[4.53234309,0.02249513,94.13509882],[4.53234366,0.02249684,94.1356723],[4.53234423,0.02249854,94.13624747],[4.53234481,0.02250025,94.13682434],[4.53234538,0.02250196,94.13740294],[4.53234596,0.02250366,94.13798329],[4.53234653,0.02250537,94.13856542],[4.53234711,0.02250708,94.13914933],[4.53234769,0.02250878,94.13973507],[4.53234826,0.02251049,94.14032263],[4.53234884,0.02251219,94.14091206],[4.53234942,0.0225139,94.14150336],[4.53235,0.0225156,94.14209657],[4.53235058,0.02251731,94.1426917],[4.53235116,0.02251901,94.14328877],[4.53235174,0.02252072,94.14388778],[4.53235232,0.02252242,94.14448862],[4.5323529,0.02252412,94.14509116],[4.53235349,0.02252583,94.14569527],[4.53235407,0.02252753,94.14630081],[4.53235465,0.02252924,94.14690766],[4.53235524,0.02253094,94.14751569],[4.53235582,0.02253264,94.14812476],[4.53235641,0.02253434,94.14873475],[4.53235699,0.02253605,94.14934553],[4.53235758,0.02253775,94.14995697],[4.53235816,0.02253945,94.15056893],[4.53235875,0.02254116,94.1511813],[4.53235934,0.02254286,94.15179394],[4.53235992,0.02254456,94.15240673],[4.53236051,0.02254626,94.15301955],[4.53236109,0.02254797,94.15363225],[4.53236168,0.02254967,94.15424473],[4.53236226,0.02255137,94.15485684],[4.53236285,0.02255307,94.15546847],[4.53236343,0.02255478,94.15607949],[4.53236402,0.02255648,94.15668978],[4.5323646,0.02255818,94.15729921],[4.53236519,0.02255989,94.15790768],[4.53236577,0.02256159,94.1585152],[4.53236635,0.02256329,94.15912181],[4.53236694,0.022565,94.15972754],[4.53236752,0.0225667,94.16033243],[4.5323681,0.0225684,94.16093652],[4.53236869,0.02257011,94.16153984],[4.53236927,0.02257181,94.16214242],[4.53236985,0.02257351,94.16274431],[4.53237043,0.02257522,94.16334554],[4.53237101,0.02257692,94.16394614],[4.53237159,0.02257863,94.16454615],[4.53237218,0.02258033,94.1651456],[4.53237276,0.02258203,94.16574452],[4.53237334,0.02258374,94.16634292],[4.53237392,0.02258544,94.16694084],[4.5323745,0.02258715,94.16753829],[4.53237508,0.02258885,94.16813531],[4.53237566,0.02259055,94.16873192],[4.53237624,0.02259226,94.16932815],[4.53237682,0.02259396,94.16992402],[4.53237741,0.02259567,94.17051957],[4.53237799,0.02259737,94.17111482],[4.53237857,0.02259907,94.1717098],[4.53237915,0.02260078,94.17230453],[4.53237973,0.02260248,94.17289904],[4.53238031,0.02260418,94.17349336],[4.5323809,0.02260589,94.17408751],[4.53238148,0.0226076,94.17468152],[4.53238206,0.0226093,94.1752754],[4.53238264,0.022611,94.17586901],[4.53238323,0.02261271,94.17646221],[4.53238381,0.02261441,94.17705485],[4.53238439,0.02261611,94.17764677],[4.53238497,0.02261782,94.17823782],[4.53238556,0.02261952,94.17882785],[4.53238614,0.02262122,94.17941671],[4.53238672,0.02262293,94.18000425],[4.5323873,0.02262463,94.18059032],[4.53238789,0.02262634,94.18117476],[4.53238847,0.02262804,94.18175743],[4.53238905,0.02262974,94.18233816],[4.53238963,0.02263145,94.18291682],[4.53239021,0.02263315,94.18349324],[4.53239079,0.02263486,94.18406727],[4.53239137,0.02263656,94.18463876],[4.53239194,0.02263827,94.18520755],[4.53239252,0.02263997,94.1857735],[4.5323931,0.02264168,94.18633644],[4.53239367,0.02264339,94.18689623],[4.53239425,0.02264509,94.18745274],[4.53239482,0.0226468,94.18800604],[4.53239539,0.02264851,94.18855624],[4.53239596,0.02265022,94.18910343],[4.53239653,0.02265192,94.18964772],[4.5323971,0.02265363,94.19018921],[4.53239767,0.02265534,94.19072799],[4.53239824,0.02265705,94.19126416],[4.53239881,0.02265876,94.19179782],[4.53239938,0.02266047,94.19232908],[4.53239995,0.02266218,94.19285803],[4.53240052,0.02266389,94.19338477],[4.53240108,0.0226656,94.19390941],[4.53240165,0.02266731,94.19443204],[4.53240222,0.02266902,94.19495276],[4.53240278,0.02267073,94.19547168],[4.53240335,0.02267244,94.1959889],[4.53240392,0.02267415,94.19650451],[4.53240448,0.02267586,94.19701862],[4.53240505,0.02267757,94.19753134],[4.53240561,0.02267928,94.19804277],[4.53240618,0.02268099,94.198553],[4.53240675,0.0226827,94.19906215],[4.53240731,0.02268441,94.19957031],[4.53240788,0.02268612,94.20007753],[4.53240845,0.02268783,94.20058377],[4.53240902,0.02268954,94.20108901],[4.53240959,0.02269125,94.20159321],[4.53241015,0.02269296,94.20209634],[4.53241072,0.02269467,94.20259837],[4.53241129,0.02269638,94.20309928],[4.53241186,0.02269809,94.20359902],[4.53241243,0.0226998,94.20409758],[4.532413,0.02270151,94.20459491],[4.53241357,0.02270321,94.20509099],[4.53241414,0.02270492,94.20558579],[4.53241471,0.02270663,94.20607928],[4.53241528,0.02270834,94.20657142],[4.53241585,0.02271005,94.20706218],[4.53241642,0.02271176,94.20755153],[4.53241699,0.02271347,94.20803945],[4.53241756,0.02271518,94.20852589],[4.53241814,0.02271689,94.20901083],[4.53241871,0.0227186,94.20949423],[4.53241928,0.02272031,94.20997607],[4.53241985,0.02272202,94.21045631],[4.53242042,0.02272373,94.21093494],[4.532421,0.02272543,94.21141192],[4.53242157,0.02272714,94.21188725],[4.53242214,0.02272885,94.2123609],[4.53242272,0.02273056,94.21283284],[4.53242329,0.02273227,94.21330306],[4.53242386,0.02273398,94.21377155],[4.53242444,0.02273569,94.21423827],[4.53242501,0.0227374,94.2147032],[4.53242558,0.02273911,94.21516634],[4.53242616,0.02274082,94.21562765],[4.53242673,0.02274252,94.21608712],[4.53242731,0.02274423,94.21654473],[4.53242788,0.02274594,94.21700045],[4.53242845,0.02274765,94.21745427],[4.53242903,0.02274936,94.21790617],[4.5324296,0.02275107,94.21835612],[4.53243018,0.02275278,94.21880411],[4.53243076,0.02275449,94.21925012],[4.53243133,0.02275619,94.21969412],[4.53243191,0.0227579,94.2201361],[4.53243248,0.02275961,94.22057604],[4.53243306,0.02276132,94.22101389],[4.53243363,0.02276303,94.22144963],[4.53243421,0.02276474,94.22188329],[4.53243479,0.02276645,94.22231498],[4.53243536,0.02276815,94.22274484],[4.53243594,0.02276986,94.22317299],[4.53243652,0.02277157,94.22359953],[4.53243709,0.02277328,94.2240246],[4.53243767,0.02277499,94.22444831],[4.53243825,0.0227767,94.22487078],[4.53243882,0.0227784,94.22529214],[4.5324394,0.02278011,94.22571249],[4.53243998,0.02278182,94.22613197],[4.53244056,0.02278353,94.22655068],[4.53244113,0.02278524,94.22696875],[4.53244171,0.02278695,94.22738629],[4.53244229,0.02278866,94.22780343],[4.53244287,0.02279037,94.22822027],[4.53244344,0.02279207,94.22863694],[4.53244402,0.02279378,94.22905355],[4.5324446,0.02279549,94.22947022],[4.53244517,0.0227972,94.22988707],[4.53244575,0.02279891,94.2303042],[4.53244633,0.02280062,94.23072174],[4.53244691,0.02280233,94.23113981],[4.53244748,0.02280404,94.2315585],[4.53244806,0.02280575,94.23197795],[4.53244864,0.02280745,94.23239826],[4.53244921,0.02280916,94.23281955],[4.53244979,0.02281087,94.23324193],[4.53245037,0.02281258,94.23366552],[4.53245094,0.02281429,94.23409042],[4.53245152,0.022816,94.23451675],[4.5324521,0.02281771,94.23494462],[4.53245267,0.02281942,94.23537415],[4.53245325,0.02282113,94.23580544],[4.53245382,0.02282284,94.23623861],[4.5324544,0.02282455,94.23667376],[4.53245498,0.02282626,94.23711101],[4.53245555,0.02282797,94.23755048],[4.53245613,0.02282968,94.23799225],[4.5324567,0.02283139,94.23843646],[4.53245728,0.0228331,94.23888321],[4.53245785,0.02283481,94.2393326],[4.53245842,0.02283652,94.23978475],[4.532459,0.02283823,94.24023976],[4.53245957,0.02283994,94.24069775],[4.53246015,0.02284166,94.24115882],[4.53246072,0.02284337,94.24162308],[4.53246129,0.02284508,94.24209064],[4.53246186,0.02284679,94.2425616],[4.53246244,0.0228485,94.24303606],[4.53246301,0.02285021,94.24351413],[4.53246358,0.02285192,94.24399591],[4.53246415,0.02285364,94.24448156],[4.53246472,0.02285535,94.24497126],[4.53246529,0.02285706,94.24546519],[4.53246586,0.02285877,94.24596351],[4.53246643,0.02286049,94.24646639],[4.532467,0.0228622,94.24697403],[4.53246757,0.02286391,94.24748658],[4.53246814,0.02286562,94.24800423],[4.53246871,0.02286734,94.24852716],[4.53246928,0.02286905,94.24905554],[4.53246985,0.02287076,94.24958956],[4.53247042,0.02287248,94.25012941],[4.53247099,0.02287419,94.2506753],[4.53247156,0.0228759,94.25122741],[4.53247213,0.02287762,94.25178596],[4.5324727,0.02287933,94.25235113],[4.53247327,0.02288104,94.25292314],[4.53247383,0.02288276,94.25350217],[4.5324744,0.02288447,94.25408844],[4.53247497,0.02288618,94.25468214],[4.53247554,0.0228879,94.25528348],[4.53247611,0.02288961,94.25589266],[4.53247668,0.02289132,94.25650988],[4.53247725,0.02289304,94.25713534],[4.53247782,0.02289475,94.25776925],[4.53247839,0.02289646,94.25841182],[4.53247895,0.02289818,94.25906325],[4.53247952,0.02289989,94.25972374],[4.53248009,0.0229016,94.2603935],[4.53248066,0.02290332,94.26107273],[4.53248123,0.02290503,94.26176165],[4.5324818,0.02290674,94.26246045],[4.53248238,0.02290846,94.26316934],[4.53248295,0.02291017,94.26388853],[4.53248352,0.02291188,94.26461823],[4.53248409,0.0229136,94.26535864],[4.53248466,0.02291531,94.26610996],[4.53248524,0.02291702,94.26687241],[4.53248581,0.02291874,94.26764619],[4.53248638,0.02292045,94.2684315],[4.53248696,0.02292216,94.26922856],[4.53248753,0.02292387,94.27003757],[4.5324881,0.02292558,94.27085874],[4.53248868,0.0229273,94.27169227],[4.53248926,0.02292901,94.27253836],[4.53248983,0.02293072,94.27339723],[4.53249041,0.02293243,94.27426907],[4.53249099,0.02293414,94.27515409],[4.53249157,0.02293585,94.27605251],[4.53249214,0.02293757,94.27696451],[4.53249272,0.02293928,94.27789022],[4.5324933,0.02294099,94.27882971],[4.53249389,0.0229427,94.27978304],[4.53249447,0.02294441,94.28075022],[4.53249505,0.02294612,94.28173124],[4.53249563,0.02294783,94.2827261],[4.53249621,0.02294954,94.28373479],[4.5324968,0.02295125,94.28475728],[4.53249738,0.02295296,94.28579358],[4.53249796,0.02295467,94.28684368],[4.53249855,0.02295638,94.28790755],[4.53249913,0.02295809,94.28898518],[4.53249971,0.0229598,94.29007658],[4.5325003,0.02296151,94.29118172],[4.53250088,0.02296322,94.29230059],[4.53250147,0.02296493,94.29343318],[4.53250205,0.02296664,94.29457949],[4.53250264,0.02296835,94.2957395],[4.53250322,0.02297006,94.29691327],[4.5325038,0.02297177,94.29810089],[4.53250439,0.02297348,94.29930247],[4.53250497,0.02297519,94.30051814],[4.53250555,0.0229769,94.30174804],[4.53250614,0.02297861,94.3029923],[4.53250672,0.02298032,94.30425105],[4.5325073,0.02298203,94.30552443],[4.53250788,0.02298374,94.30681255],[4.53250847,0.02298545,94.30811556],[4.53250905,0.02298716,94.30943357],[4.53250963,0.02298887,94.31076672],[4.53251021,0.02299058,94.31211513],[4.53251079,0.0229923,94.31347894],[4.53251138,0.02299401,94.31485827],[4.53251196,0.02299572,94.31625325],[4.53251254,0.02299743,94.31766401],[4.53251312,0.02299914,94.31909069],[4.5325137,0.02300085,94.32053342],[4.53251428,0.02300256,94.32199232],[4.53251486,0.02300428,94.32346754],[4.53251544,0.02300599,94.3249592],[4.53251602,0.0230077,94.32646745],[4.5325166,0.02300941,94.32799241],[4.53251718,0.02301113,94.32953422],[4.53251776,0.02301284,94.33109303],[4.53251834,0.02301455,94.33266895],[4.53251891,0.02301627,94.33426215],[4.53251949,0.02301798,94.33587275],[4.53252007,0.02301969,94.33750089],[4.53252065,0.0230214,94.33914662],[4.53252122,0.02302312,94.34080952],[4.5325218,0.02302483,94.3424891],[4.53252238,0.02302654,94.34418484],[4.53252295,0.02302825,94.34589621],[4.53252353,0.02302997,94.34762273],[4.5325241,0.02303168,94.34936386],[4.53252468,0.02303339,94.35111912],[4.53252525,0.0230351,94.35288805],[4.53252583,0.02303682,94.35467023],[4.5325264,0.02303853,94.35646522],[4.53252698,0.02304024,94.35827258],[4.53252755,0.02304195,94.36009187],[4.53252812,0.02304366,94.36192265],[4.53252869,0.02304538,94.36376449],[4.53252927,0.02304709,94.36561695],[4.53252984,0.0230488,94.36747958],[4.53253041,0.02305051,94.36935194],[4.53253098,0.02305222,94.37123358],[4.53253155,0.02305394,94.37312407],[4.53253213,0.02305565,94.37502295],[4.5325327,0.02305736,94.37692977],[4.53253327,0.02305907,94.37884409],[4.53253384,0.02306078,94.38076546],[4.53253441,0.02306249,94.38269342],[4.53253498,0.0230642,94.38462752],[4.53253555,0.02306591,94.3865673],[4.53253612,0.02306762,94.38851231],[4.53253669,0.02306934,94.39046208],[4.53253726,0.02307105,94.39241614],[4.53253783,0.02307276,94.394374],[4.53253841,0.02307447,94.39633516],[4.53253898,0.02307618,94.39829913],[4.53253955,0.02307789,94.4002654],[4.53254012,0.02307959,94.40223348],[4.53254069,0.0230813,94.40420288],[4.53254126,0.02308301,94.40617306],[4.53254183,0.02308472,94.40814343],[4.5325424,0.02308643,94.41011335],[4.53254297,0.02308814,94.4120822],[4.53254354,0.02308985,94.41404937],[4.53254411,0.02309156,94.41601422],[4.53254468,0.02309327,94.41797615],[4.53254525,0.02309497,94.41993459],[4.53254582,0.02309668,94.42188896],[4.53254639,0.02309839,94.4238387],[4.53254696,0.0231001,94.42578323],[4.53254753,0.02310181,94.42772201],[4.5325481,0.02310352,94.42965445],[4.53254867,0.02310522,94.43158001],[4.53254923,0.02310693,94.43349812],[4.5325498,0.02310864,94.43540821],[4.53255037,0.02311035,94.43730973],[4.53255093,0.02311206,94.43920213],[4.5325515,0.02311377,94.44108484],[4.53255206,0.02311547,94.44295731],[4.53255263,0.02311718,94.44481899],[4.53255319,0.02311889,94.44666931],[4.53255375,0.0231206,94.44850774],[4.53255431,0.02312231,94.45033371],[4.53255487,0.02312402,94.45214679],[4.53255543,0.02312573,94.45394664],[4.53255599,0.02312744,94.45573293],[4.53255655,0.02312915,94.45750532],[4.53255711,0.02313085,94.45926341],[4.53255767,0.02313256,94.4610068],[4.53255823,0.02313427,94.46273507],[4.53255879,0.02313598,94.4644478],[4.53255934,0.02313769,94.46614457],[4.5325599,0.0231394,94.46782493],[4.53256046,0.02314111,94.46948846],[4.53256102,0.02314282,94.47113472],[4.53256157,0.02314452,94.47276327],[4.53256213,0.02314623,94.47437367],[4.53256269,0.02314794,94.47596547],[4.53256324,0.02314965,94.47753823],[4.5325638,0.02315135,94.47909149],[4.53256436,0.02315306,94.48062479],[4.53256492,0.02315477,94.4821377],[4.53256548,0.02315648,94.48362974],[4.53256603,0.02315818,94.48510046],[4.53256659,0.02315989,94.4865494],[4.53256715,0.02316159,94.4879761],[4.53256771,0.0231633,94.48938009],[4.53256827,0.023165,94.49076091],[4.53256883,0.02316671,94.49211809],[4.5325694,0.02316841,94.49345118],[4.53256996,0.02317012,94.49475974],[4.53257052,0.02317182,94.49604327],[4.53257109,0.02317352,94.49730121],[4.53257165,0.02317523,94.49853305],[4.53257222,0.02317693,94.49973823],[4.53257278,0.02317863,94.50091624],[4.53257335,0.02318033,94.50206655],[4.53257391,0.02318204,94.50318863],[4.53257448,0.02318374,94.50428195],[4.53257505,0.02318544,94.50534599],[4.53257561,0.02318714,94.50638024],[4.53257618,0.02318884,94.50738418],[4.53257675,0.02319054,94.50835729],[4.53257732,0.02319224,94.50929906],[4.53257789,0.02319394,94.51020897],[4.53257846,0.02319564,94.51108652],[4.53257903,0.02319734,94.5119312],[4.53257959,0.02319904,94.51274249],[4.53258016,0.02320074,94.51351989],[4.53258073,0.02320243,94.5142629],[4.5325813,0.02320413,94.514971],[4.53258187,0.02320583,94.51564371],[4.53258244,0.02320753,94.51628051],[4.53258301,0.02320923,94.5168809],[4.53258358,0.02321093,94.51744439],[4.53258415,0.02321262,94.51797046],[4.53258471,0.02321432,94.51845862],[4.53258528,0.02321602,94.51890837],[4.53258585,0.02321772,94.51931921],[4.53258642,0.02321941,94.51969063],[4.53258698,0.02322111,94.52002213],[4.53258755,0.02322281,94.52031342],[4.53258812,0.02322451,94.52056507],[4.53258868,0.0232262,94.52077786],[4.53258925,0.0232279,94.52095261],[4.53258981,0.0232296,94.52109012],[4.532555,0.02324129,94.52109012]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1004200","id":-4,"type":"none","predecessorId":0,"sOffset":35.4036855625}},{"geometry":{"coordinates":[[[4.53258981,0.0232296,94.52109012],[4.53258925,0.0232279,94.52095261],[4.53258868,0.0232262,94.52077786],[4.53258812,0.02322451,94.52056507],[4.53258755,0.02322281,94.52031342],[4.53258698,0.02322111,94.52002213],[4.53258642,0.02321941,94.51969063],[4.53258585,0.02321772,94.51931921],[4.53258528,0.02321602,94.51890837],[4.53258471,0.02321432,94.51845862],[4.53258415,0.02321262,94.51797046],[4.53258358,0.02321093,94.51744439],[4.53258301,0.02320923,94.5168809],[4.53258244,0.02320753,94.51628051],[4.53258187,0.02320583,94.51564371],[4.5325813,0.02320413,94.514971],[4.53258073,0.02320243,94.5142629],[4.53258016,0.02320074,94.51351989],[4.53257959,0.02319904,94.51274249],[4.53257903,0.02319734,94.5119312],[4.53257846,0.02319564,94.51108652],[4.53257789,0.02319394,94.51020897],[4.53257732,0.02319224,94.50929906],[4.53257675,0.02319054,94.50835729],[4.53257618,0.02318884,94.50738418],[4.53257561,0.02318714,94.50638024],[4.53257505,0.02318544,94.50534599],[4.53257448,0.02318374,94.50428195],[4.53257391,0.02318204,94.50318863],[4.53257335,0.02318033,94.50206655],[4.53257278,0.02317863,94.50091624],[4.53257222,0.02317693,94.49973823],[4.53257165,0.02317523,94.49853305],[4.53257109,0.02317352,94.49730121],[4.53257052,0.02317182,94.49604327],[4.53256996,0.02317012,94.49475974],[4.5325694,0.02316841,94.49345118],[4.53256883,0.02316671,94.49211809],[4.53256827,0.023165,94.49076091],[4.53256771,0.0231633,94.48938009],[4.53256715,0.02316159,94.4879761],[4.53256659,0.02315989,94.4865494],[4.53256603,0.02315818,94.48510046],[4.53256548,0.02315648,94.48362974],[4.53256492,0.02315477,94.4821377],[4.53256436,0.02315306,94.48062479],[4.5325638,0.02315135,94.47909149],[4.53256324,0.02314965,94.47753823],[4.53256269,0.02314794,94.47596547],[4.53256213,0.02314623,94.47437367],[4.53256157,0.02314452,94.47276327],[4.53256102,0.02314282,94.47113472],[4.53256046,0.02314111,94.46948846],[4.5325599,0.0231394,94.46782493],[4.53255934,0.02313769,94.46614457],[4.53255879,0.02313598,94.4644478],[4.53255823,0.02313427,94.46273507],[4.53255767,0.02313256,94.4610068],[4.53255711,0.02313085,94.45926341],[4.53255655,0.02312915,94.45750532],[4.53255599,0.02312744,94.45573293],[4.53255543,0.02312573,94.45394664],[4.53255487,0.02312402,94.45214679],[4.53255431,0.02312231,94.45033371],[4.53255375,0.0231206,94.44850774],[4.53255319,0.02311889,94.44666931],[4.53255263,0.02311718,94.44481899],[4.53255206,0.02311547,94.44295731],[4.5325515,0.02311377,94.44108484],[4.53255093,0.02311206,94.43920213],[4.53255037,0.02311035,94.43730973],[4.5325498,0.02310864,94.43540821],[4.53254923,0.02310693,94.43349812],[4.53254867,0.02310522,94.43158001],[4.5325481,0.02310352,94.42965445],[4.53254753,0.02310181,94.42772201],[4.53254696,0.0231001,94.42578323],[4.53254639,0.02309839,94.4238387],[4.53254582,0.02309668,94.42188896],[4.53254525,0.02309497,94.41993459],[4.53254468,0.02309327,94.41797615],[4.53254411,0.02309156,94.41601422],[4.53254354,0.02308985,94.41404937],[4.53254297,0.02308814,94.4120822],[4.5325424,0.02308643,94.41011335],[4.53254183,0.02308472,94.40814343],[4.53254126,0.02308301,94.40617306],[4.53254069,0.0230813,94.40420288],[4.53254012,0.02307959,94.40223348],[4.53253955,0.02307789,94.4002654],[4.53253898,0.02307618,94.39829913],[4.53253841,0.02307447,94.39633516],[4.53253783,0.02307276,94.394374],[4.53253726,0.02307105,94.39241614],[4.53253669,0.02306934,94.39046208],[4.53253612,0.02306762,94.38851231],[4.53253555,0.02306591,94.3865673],[4.53253498,0.0230642,94.38462752],[4.53253441,0.02306249,94.38269342],[4.53253384,0.02306078,94.38076546],[4.53253327,0.02305907,94.37884409],[4.5325327,0.02305736,94.37692977],[4.53253213,0.02305565,94.37502295],[4.53253155,0.02305394,94.37312407],[4.53253098,0.02305222,94.37123358],[4.53253041,0.02305051,94.36935194],[4.53252984,0.0230488,94.36747958],[4.53252927,0.02304709,94.36561695],[4.53252869,0.02304538,94.36376449],[4.53252812,0.02304366,94.36192265],[4.53252755,0.02304195,94.36009187],[4.53252698,0.02304024,94.35827258],[4.5325264,0.02303853,94.35646522],[4.53252583,0.02303682,94.35467023],[4.53252525,0.0230351,94.35288805],[4.53252468,0.02303339,94.35111912],[4.5325241,0.02303168,94.34936386],[4.53252353,0.02302997,94.34762273],[4.53252295,0.02302825,94.34589621],[4.53252238,0.02302654,94.34418484],[4.5325218,0.02302483,94.3424891],[4.53252122,0.02302312,94.34080952],[4.53252065,0.0230214,94.33914662],[4.53252007,0.02301969,94.33750089],[4.53251949,0.02301798,94.33587275],[4.53251891,0.02301627,94.33426215],[4.53251834,0.02301455,94.33266895],[4.53251776,0.02301284,94.33109303],[4.53251718,0.02301113,94.32953422],[4.5325166,0.02300941,94.32799241],[4.53251602,0.0230077,94.32646745],[4.53251544,0.02300599,94.3249592],[4.53251486,0.02300428,94.32346754],[4.53251428,0.02300256,94.32199232],[4.5325137,0.02300085,94.32053342],[4.53251312,0.02299914,94.31909069],[4.53251254,0.02299743,94.31766401],[4.53251196,0.02299572,94.31625325],[4.53251138,0.02299401,94.31485827],[4.53251079,0.0229923,94.31347894],[4.53251021,0.02299058,94.31211513],[4.53250963,0.02298887,94.31076672],[4.53250905,0.02298716,94.30943357],[4.53250847,0.02298545,94.30811556],[4.53250788,0.02298374,94.30681255],[4.5325073,0.02298203,94.30552443],[4.53250672,0.02298032,94.30425105],[4.53250614,0.02297861,94.3029923],[4.53250555,0.0229769,94.30174804],[4.53250497,0.02297519,94.30051814],[4.53250439,0.02297348,94.29930247],[4.5325038,0.02297177,94.29810089],[4.53250322,0.02297006,94.29691327],[4.53250264,0.02296835,94.2957395],[4.53250205,0.02296664,94.29457949],[4.53250147,0.02296493,94.29343318],[4.53250088,0.02296322,94.29230059],[4.5325003,0.02296151,94.29118172],[4.53249971,0.0229598,94.29007658],[4.53249913,0.02295809,94.28898518],[4.53249855,0.02295638,94.28790755],[4.53249796,0.02295467,94.28684368],[4.53249738,0.02295296,94.28579358],[4.5324968,0.02295125,94.28475728],[4.53249621,0.02294954,94.28373479],[4.53249563,0.02294783,94.2827261],[4.53249505,0.02294612,94.28173124],[4.53249447,0.02294441,94.28075022],[4.53249389,0.0229427,94.27978304],[4.5324933,0.02294099,94.27882971],[4.53249272,0.02293928,94.27789022],[4.53249214,0.02293757,94.27696451],[4.53249157,0.02293585,94.27605251],[4.53249099,0.02293414,94.27515409],[4.53249041,0.02293243,94.27426907],[4.53248983,0.02293072,94.27339723],[4.53248926,0.02292901,94.27253836],[4.53248868,0.0229273,94.27169227],[4.5324881,0.02292558,94.27085874],[4.53248753,0.02292387,94.27003757],[4.53248696,0.02292216,94.26922856],[4.53248638,0.02292045,94.2684315],[4.53248581,0.02291874,94.26764619],[4.53248524,0.02291702,94.26687241],[4.53248466,0.02291531,94.26610996],[4.53248409,0.0229136,94.26535864],[4.53248352,0.02291188,94.26461823],[4.53248295,0.02291017,94.26388853],[4.53248238,0.02290846,94.26316934],[4.5324818,0.02290674,94.26246045],[4.53248123,0.02290503,94.26176165],[4.53248066,0.02290332,94.26107273],[4.53248009,0.0229016,94.2603935],[4.53247952,0.02289989,94.25972374],[4.53247895,0.02289818,94.25906325],[4.53247839,0.02289646,94.25841182],[4.53247782,0.02289475,94.25776925],[4.53247725,0.02289304,94.25713534],[4.53247668,0.02289132,94.25650988],[4.53247611,0.02288961,94.25589266],[4.53247554,0.0228879,94.25528348],[4.53247497,0.02288618,94.25468214],[4.5324744,0.02288447,94.25408844],[4.53247383,0.02288276,94.25350217],[4.53247327,0.02288104,94.25292314],[4.5324727,0.02287933,94.25235113],[4.53247213,0.02287762,94.25178596],[4.53247156,0.0228759,94.25122741],[4.53247099,0.02287419,94.2506753],[4.53247042,0.02287248,94.25012941],[4.53246985,0.02287076,94.24958956],[4.53246928,0.02286905,94.24905554],[4.53246871,0.02286734,94.24852716],[4.53246814,0.02286562,94.24800423],[4.53246757,0.02286391,94.24748658],[4.532467,0.0228622,94.24697403],[4.53246643,0.02286049,94.24646639],[4.53246586,0.02285877,94.24596351],[4.53246529,0.02285706,94.24546519],[4.53246472,0.02285535,94.24497126],[4.53246415,0.02285364,94.24448156],[4.53246358,0.02285192,94.24399591],[4.53246301,0.02285021,94.24351413],[4.53246244,0.0228485,94.24303606],[4.53246186,0.02284679,94.2425616],[4.53246129,0.02284508,94.24209064],[4.53246072,0.02284337,94.24162308],[4.53246015,0.02284166,94.24115882],[4.53245957,0.02283994,94.24069775],[4.532459,0.02283823,94.24023976],[4.53245842,0.02283652,94.23978475],[4.53245785,0.02283481,94.2393326],[4.53245728,0.0228331,94.23888321],[4.5324567,0.02283139,94.23843646],[4.53245613,0.02282968,94.23799225],[4.53245555,0.02282797,94.23755048],[4.53245498,0.02282626,94.23711101],[4.5324544,0.02282455,94.23667376],[4.53245382,0.02282284,94.23623861],[4.53245325,0.02282113,94.23580544],[4.53245267,0.02281942,94.23537415],[4.5324521,0.02281771,94.23494462],[4.53245152,0.022816,94.23451675],[4.53245094,0.02281429,94.23409042],[4.53245037,0.02281258,94.23366552],[4.53244979,0.02281087,94.23324193],[4.53244921,0.02280916,94.23281955],[4.53244864,0.02280745,94.23239826],[4.53244806,0.02280575,94.23197795],[4.53244748,0.02280404,94.2315585],[4.53244691,0.02280233,94.23113981],[4.53244633,0.02280062,94.23072174],[4.53244575,0.02279891,94.2303042],[4.53244517,0.0227972,94.22988707],[4.5324446,0.02279549,94.22947022],[4.53244402,0.02279378,94.22905355],[4.53244344,0.02279207,94.22863694],[4.53244287,0.02279037,94.22822027],[4.53244229,0.02278866,94.22780343],[4.53244171,0.02278695,94.22738629],[4.53244113,0.02278524,94.22696875],[4.53244056,0.02278353,94.22655068],[4.53243998,0.02278182,94.22613197],[4.5324394,0.02278011,94.22571249],[4.53243882,0.0227784,94.22529214],[4.53243825,0.0227767,94.22487078],[4.53243767,0.02277499,94.22444831],[4.53243709,0.02277328,94.2240246],[4.53243652,0.02277157,94.22359953],[4.53243594,0.02276986,94.22317299],[4.53243536,0.02276815,94.22274484],[4.53243479,0.02276645,94.22231498],[4.53243421,0.02276474,94.22188329],[4.53243363,0.02276303,94.22144963],[4.53243306,0.02276132,94.22101389],[4.53243248,0.02275961,94.22057604],[4.53243191,0.0227579,94.2201361],[4.53243133,0.02275619,94.21969412],[4.53243076,0.02275449,94.21925012],[4.53243018,0.02275278,94.21880411],[4.5324296,0.02275107,94.21835612],[4.53242903,0.02274936,94.21790617],[4.53242845,0.02274765,94.21745427],[4.53242788,0.02274594,94.21700045],[4.53242731,0.02274423,94.21654473],[4.53242673,0.02274252,94.21608712],[4.53242616,0.02274082,94.21562765],[4.53242558,0.02273911,94.21516634],[4.53242501,0.0227374,94.2147032],[4.53242444,0.02273569,94.21423827],[4.53242386,0.02273398,94.21377155],[4.53242329,0.02273227,94.21330306],[4.53242272,0.02273056,94.21283284],[4.53242214,0.02272885,94.2123609],[4.53242157,0.02272714,94.21188725],[4.532421,0.02272543,94.21141192],[4.53242042,0.02272373,94.21093494],[4.53241985,0.02272202,94.21045631],[4.53241928,0.02272031,94.20997607],[4.53241871,0.0227186,94.20949423],[4.53241814,0.02271689,94.20901083],[4.53241756,0.02271518,94.20852589],[4.53241699,0.02271347,94.20803945],[4.53241642,0.02271176,94.20755153],[4.53241585,0.02271005,94.20706218],[4.53241528,0.02270834,94.20657142],[4.53241471,0.02270663,94.20607928],[4.53241414,0.02270492,94.20558579],[4.53241357,0.02270321,94.20509099],[4.532413,0.02270151,94.20459491],[4.53241243,0.0226998,94.20409758],[4.53241186,0.02269809,94.20359902],[4.53241129,0.02269638,94.20309928],[4.53241072,0.02269467,94.20259837],[4.53241015,0.02269296,94.20209634],[4.53240959,0.02269125,94.20159321],[4.53240902,0.02268954,94.20108901],[4.53240845,0.02268783,94.20058377],[4.53240788,0.02268612,94.20007753],[4.53240731,0.02268441,94.19957031],[4.53240675,0.0226827,94.19906215],[4.53240618,0.02268099,94.198553],[4.53240561,0.02267928,94.19804277],[4.53240505,0.02267757,94.19753134],[4.53240448,0.02267586,94.19701862],[4.53240392,0.02267415,94.19650451],[4.53240335,0.02267244,94.1959889],[4.53240278,0.02267073,94.19547168],[4.53240222,0.02266902,94.19495276],[4.53240165,0.02266731,94.19443204],[4.53240108,0.0226656,94.19390941],[4.53240052,0.02266389,94.19338477],[4.53239995,0.02266218,94.19285803],[4.53239938,0.02266047,94.19232908],[4.53239881,0.02265876,94.19179782],[4.53239824,0.02265705,94.19126416],[4.53239767,0.02265534,94.19072799],[4.5323971,0.02265363,94.19018921],[4.53239653,0.02265192,94.18964772],[4.53239596,0.02265022,94.18910343],[4.53239539,0.02264851,94.18855624],[4.53239482,0.0226468,94.18800604],[4.53239425,0.02264509,94.18745274],[4.53239367,0.02264339,94.18689623],[4.5323931,0.02264168,94.18633644],[4.53239252,0.02263997,94.1857735],[4.53239194,0.02263827,94.18520755],[4.53239137,0.02263656,94.18463876],[4.53239079,0.02263486,94.18406727],[4.53239021,0.02263315,94.18349324],[4.53238963,0.02263145,94.18291682],[4.53238905,0.02262974,94.18233816],[4.53238847,0.02262804,94.18175743],[4.53238789,0.02262634,94.18117476],[4.5323873,0.02262463,94.18059032],[4.53238672,0.02262293,94.18000425],[4.53238614,0.02262122,94.17941671],[4.53238556,0.02261952,94.17882785],[4.53238497,0.02261782,94.17823782],[4.53238439,0.02261611,94.17764677],[4.53238381,0.02261441,94.17705485],[4.53238323,0.02261271,94.17646221],[4.53238264,0.022611,94.17586901],[4.53238206,0.0226093,94.1752754],[4.53238148,0.0226076,94.17468152],[4.5323809,0.02260589,94.17408751],[4.53238031,0.02260418,94.17349336],[4.53237973,0.02260248,94.17289904],[4.53237915,0.02260078,94.17230453],[4.53237857,0.02259907,94.1717098],[4.53237799,0.02259737,94.17111482],[4.53237741,0.02259567,94.17051957],[4.53237682,0.02259396,94.16992402],[4.53237624,0.02259226,94.16932815],[4.53237566,0.02259055,94.16873192],[4.53237508,0.02258885,94.16813531],[4.5323745,0.02258715,94.16753829],[4.53237392,0.02258544,94.16694084],[4.53237334,0.02258374,94.16634292],[4.53237276,0.02258203,94.16574452],[4.53237218,0.02258033,94.1651456],[4.53237159,0.02257863,94.16454615],[4.53237101,0.02257692,94.16394614],[4.53237043,0.02257522,94.16334554],[4.53236985,0.02257351,94.16274431],[4.53236927,0.02257181,94.16214242],[4.53236869,0.02257011,94.16153984],[4.5323681,0.0225684,94.16093652],[4.53236752,0.0225667,94.16033243],[4.53236694,0.022565,94.15972754],[4.53236635,0.02256329,94.15912181],[4.53236577,0.02256159,94.1585152],[4.53236519,0.02255989,94.15790768],[4.5323646,0.02255818,94.15729921],[4.53236402,0.02255648,94.15668978],[4.53236343,0.02255478,94.15607949],[4.53236285,0.02255307,94.15546847],[4.53236226,0.02255137,94.15485684],[4.53236168,0.02254967,94.15424473],[4.53236109,0.02254797,94.15363225],[4.53236051,0.02254626,94.15301955],[4.53235992,0.02254456,94.15240673],[4.53235934,0.02254286,94.15179394],[4.53235875,0.02254116,94.1511813],[4.53235816,0.02253945,94.15056893],[4.53235758,0.02253775,94.14995697],[4.53235699,0.02253605,94.14934553],[4.53235641,0.02253434,94.14873475],[4.53235582,0.02253264,94.14812476],[4.53235524,0.02253094,94.14751569],[4.53235465,0.02252924,94.14690766],[4.53235407,0.02252753,94.14630081],[4.53235349,0.02252583,94.14569527],[4.5323529,0.02252412,94.14509116],[4.53235232,0.02252242,94.14448862],[4.53235174,0.02252072,94.14388778],[4.53235116,0.02251901,94.14328877],[4.53235058,0.02251731,94.1426917],[4.53235,0.0225156,94.14209657],[4.53234942,0.0225139,94.14150336],[4.53234884,0.02251219,94.14091206],[4.53234826,0.02251049,94.14032263],[4.53234769,0.02250878,94.13973507],[4.53234711,0.02250708,94.13914933],[4.53234653,0.02250537,94.13856542],[4.53234596,0.02250366,94.13798329],[4.53234538,0.02250196,94.13740294],[4.53234481,0.02250025,94.13682434],[4.53234423,0.02249854,94.13624747],[4.53234366,0.02249684,94.1356723],[4.53234309,0.02249513,94.13509882],[4.53234251,0.02249342,94.134527],[4.53234194,0.02249171,94.13395682],[4.53234137,0.02249001,94.13338826],[4.5323408,0.0224883,94.1328213],[4.53234023,0.02248659,94.1322559],[4.53233965,0.02248488,94.13169206],[4.53233908,0.02248317,94.13112975],[4.53233851,0.02248147,94.13056894],[4.53233794,0.02247976,94.13000962],[4.53233737,0.02247805,94.12945175],[4.5323368,0.02247634,94.12889532],[4.53233623,0.02247463,94.1283403],[4.53233566,0.02247292,94.12778666],[4.5323351,0.02247122,94.12723439],[4.53233453,0.02246951,94.12668346],[4.53233396,0.0224678,94.12613385],[4.53233339,0.02246609,94.12558553],[4.53233282,0.02246438,94.12503847],[4.53233225,0.02246267,94.12449266],[4.53233168,0.02246096,94.12394806],[4.53233112,0.02245925,94.12340467],[4.53233055,0.02245754,94.12286247],[4.53232998,0.02245583,94.12232145],[4.53232941,0.02245412,94.1217816],[4.53232884,0.02245242,94.12124291],[4.53232827,0.02245071,94.12070536],[4.53232771,0.022449,94.12016894],[4.53232714,0.02244729,94.11963364],[4.53232657,0.02244558,94.11909944],[4.532326,0.02244387,94.11856634],[4.53232543,0.02244216,94.11803432],[4.53232486,0.02244045,94.11750336],[4.53232429,0.02243874,94.11697349],[4.53232372,0.02243703,94.11644472],[4.53232316,0.02243532,94.11591707],[4.53232259,0.02243361,94.11539056],[4.53232202,0.02243191,94.1148652],[4.53232145,0.0224302,94.11434102],[4.53232088,0.02242849,94.11381802],[4.53232031,0.02242678,94.11329623],[4.53231974,0.02242507,94.11277565],[4.53231917,0.02242336,94.1122563],[4.5323186,0.02242165,94.1117382],[4.53231803,0.02241994,94.11122135],[4.53231746,0.02241823,94.11070578],[4.53231689,0.02241653,94.11019149],[4.53231632,0.02241482,94.1096785],[4.53231575,0.02241311,94.10916683],[4.53231518,0.0224114,94.10865649],[4.53231461,0.02240969,94.1081475],[4.53231404,0.02240798,94.10763986],[4.53231347,0.02240627,94.10713359],[4.5323129,0.02240456,94.10662872],[4.53231233,0.02240286,94.10612524],[4.53231176,0.02240115,94.10562318],[4.53231119,0.02239944,94.10512255],[4.53231061,0.02239773,94.10462337],[4.53231004,0.02239602,94.10412564],[4.53230947,0.02239431,94.10362938],[4.5323089,0.0223926,94.10313461],[4.53230833,0.0223909,94.10264134],[4.53230776,0.02238919,94.10214958],[4.53230718,0.02238748,94.10165935],[4.53230661,0.02238577,94.10117066],[4.53230604,0.02238406,94.10068353],[4.53230547,0.02238235,94.10019796],[4.53230489,0.02238065,94.09971398],[4.53230432,0.02237894,94.09923159],[4.53230375,0.02237723,94.09875082],[4.53230318,0.02237552,94.09827166],[4.5323026,0.02237381,94.09779415],[4.53230203,0.02237211,94.09731828],[4.53230146,0.0223704,94.09684408],[4.53230088,0.02236869,94.09637156],[4.53230031,0.02236698,94.09590073],[4.53229973,0.02236527,94.0954316],[4.53229916,0.02236357,94.09496419],[4.53229859,0.02236186,94.09449851],[4.53229801,0.02236015,94.09403457],[4.53229744,0.02235844,94.09357239],[4.53229686,0.02235673,94.09311199],[4.53229629,0.02235503,94.09265339],[4.53229571,0.02235332,94.0921966],[4.53229514,0.02235161,94.09174166],[4.53229456,0.0223499,94.09128859],[4.53229399,0.0223482,94.0908374],[4.53229341,0.02234649,94.09038812],[4.53229284,0.02234478,94.08994078],[4.53229226,0.02234307,94.08949539],[4.53229168,0.02234137,94.08905198],[4.53229111,0.02233966,94.08861057],[4.53229053,0.02233795,94.08817118],[4.53228995,0.02233625,94.08773382],[4.53228938,0.02233454,94.08729849],[4.5322888,0.02233283,94.08686522],[4.53228822,0.02233112,94.086434],[4.53228765,0.02232942,94.08600485],[4.53228707,0.02232771,94.08557778],[4.53228649,0.022326,94.0851528],[4.53228591,0.0223243,94.08472992],[4.53228534,0.02232259,94.08430914],[4.53228476,0.02232088,94.08389049],[4.53228418,0.02231918,94.08347396],[4.5322836,0.02231747,94.08305958],[4.53228302,0.02231576,94.08264734],[4.53228244,0.02231406,94.08223726],[4.53228187,0.02231235,94.08182935],[4.53228129,0.02231064,94.08142362],[4.53228071,0.02230894,94.08102008],[4.53228013,0.02230723,94.08061873],[4.53227955,0.02230552,94.08021959],[4.53227897,0.02230382,94.07982267],[4.53227839,0.02230211,94.07942798],[4.53227781,0.02230041,94.07903552],[4.53227723,0.0222987,94.07864531],[4.53227665,0.02229699,94.07825735],[4.53227607,0.02229529,94.07787166],[4.53227548,0.02229358,94.07748824],[4.5322749,0.02229188,94.0771071],[4.53227432,0.02229017,94.07672826],[4.53227374,0.02228846,94.07635172],[4.53227316,0.02228676,94.0759775],[4.53227258,0.02228505,94.07560559],[4.53227199,0.02228335,94.07523604],[4.53227141,0.02228164,94.07486895],[4.53227083,0.02227994,94.07450446],[4.53227025,0.02227823,94.07414271],[4.53226966,0.02227653,94.07378383],[4.53226908,0.02227482,94.07342797],[4.5322685,0.02227312,94.07307525],[4.53226791,0.02227141,94.07272582],[4.53226733,0.0222697,94.07237981],[4.53226675,0.022268,94.07203737],[4.53226617,0.02226629,94.07169863],[4.53226558,0.02226459,94.07136374],[4.532265,0.02226288,94.07103283],[4.53226442,0.02226118,94.07070605],[4.53226384,0.02225947,94.07038354],[4.53226326,0.02225776,94.07006544],[4.53226268,0.02225606,94.06975189],[4.5322621,0.02225435,94.06944303],[4.53226152,0.02225264,94.06913868],[4.53226094,0.02225094,94.06883835],[4.53226036,0.02224923,94.06854155],[4.53225978,0.02224752,94.06824777],[4.5322592,0.02224582,94.06795652],[4.53225862,0.02224411,94.06766729],[4.53225804,0.0222424,94.06737958],[4.53225746,0.0222407,94.06709287],[4.53225687,0.02223899,94.06680666],[4.53225629,0.02223729,94.06652043],[4.5322557,0.02223558,94.06623367],[4.53225512,0.02223388,94.06594586],[4.53225453,0.02223218,94.06565649],[4.53225394,0.02223047,94.06536503],[4.53225334,0.02222877,94.06507111],[4.53225275,0.02222707,94.06477493],[4.53225215,0.02222537,94.06447685],[4.53225155,0.02222367,94.06417721],[4.53225096,0.02222197,94.06387637],[4.53225035,0.02222027,94.06357467],[4.53224975,0.02221857,94.06327248],[4.53224915,0.02221687,94.06297015],[4.53224854,0.02221517,94.06266804],[4.53224794,0.02221348,94.06236651],[4.53224733,0.02221178,94.06206592],[4.53224672,0.02221008,94.06176663],[4.53224611,0.02220839,94.061469],[4.5322455,0.02220669,94.06117341],[4.53224489,0.02220499,94.06088021],[4.53224428,0.0222033,94.06058977],[4.53224367,0.0222016,94.06030247],[4.53224306,0.02219991,94.06001867],[4.53224245,0.02219821,94.05973874],[4.53224184,0.02219651,94.05946306],[4.53224123,0.02219482,94.05919199],[4.53224062,0.02219312,94.05892592],[4.53224001,0.02219142,94.05866522],[4.5322394,0.02218973,94.05841026],[4.53223879,0.02218803,94.05816142],[4.53223819,0.02218633,94.05791909],[4.53223743,0.02218469,94.05722502],[4.53223652,0.02218309,94.05608962],[4.53223562,0.0221815,94.05495667],[4.53223471,0.02217991,94.0538262],[4.53223379,0.02217832,94.05266111],[4.53223264,0.02217681,94.05079245],[4.53223153,0.02217536,94.04900345],[4.5322598,0.02216565,94.1343658],[4.53226036,0.02216729,94.13444106],[4.53226093,0.02216899,94.13452253],[4.53226151,0.0221707,94.13460699],[4.53226209,0.02217241,94.13469443],[4.53226267,0.02217412,94.13478484],[4.53226325,0.02217582,94.13487824],[4.53226383,0.02217753,94.13497461],[4.5322644,0.02217924,94.13507394],[4.53226498,0.02218094,94.13517625],[4.53226556,0.02218265,94.13528152],[4.53226613,0.02218436,94.13538975],[4.53226671,0.02218607,94.13550093],[4.53226729,0.02218778,94.13561507],[4.53226787,0.02218948,94.13573216],[4.53226844,0.02219119,94.1358522],[4.53226902,0.0221929,94.13597518],[4.5322696,0.02219461,94.1361011],[4.53227017,0.02219631,94.13622996],[4.53227075,0.02219802,94.13636175],[4.53227132,0.02219973,94.13649647],[4.5322719,0.02220144,94.13663412],[4.53227248,0.02220315,94.13677469],[4.53227305,0.02220485,94.13691819],[4.53227363,0.02220656,94.1370646],[4.5322742,0.02220827,94.13721392],[4.53227478,0.02220998,94.13736616],[4.53227535,0.02221169,94.1375213],[4.53227593,0.02221339,94.13767934],[4.5322765,0.0222151,94.13784029],[4.53227708,0.02221681,94.13800413],[4.53227765,0.02221852,94.13817086],[4.53227823,0.02222023,94.13834049],[4.5322788,0.02222194,94.138513],[4.53227938,0.02222365,94.13868839],[4.53227995,0.02222535,94.13886666],[4.53228053,0.02222706,94.13904781],[4.5322811,0.02222877,94.13923182],[4.53228168,0.02223048,94.13941871],[4.53228225,0.02223219,94.13960846],[4.53228283,0.0222339,94.13980107],[4.5322834,0.0222356,94.13999653],[4.53228397,0.02223731,94.14019485],[4.53228455,0.02223902,94.14039602],[4.53228512,0.02224073,94.14060003],[4.5322857,0.02224244,94.14080689],[4.53228627,0.02224415,94.14101658],[4.53228684,0.02224586,94.1412291],[4.53228742,0.02224756,94.14144446],[4.53228799,0.02224927,94.14166264],[4.53228857,0.02225098,94.14188364],[4.53228914,0.02225269,94.14210746],[4.53228971,0.0222544,94.14233409],[4.53229029,0.02225611,94.14256353],[4.53229086,0.02225782,94.14279577],[4.53229144,0.02225953,94.14303082],[4.53229201,0.02226123,94.14326866],[4.53229258,0.02226294,94.1435093],[4.53229316,0.02226465,94.14375272],[4.53229373,0.02226636,94.14399892],[4.5322943,0.02226807,94.14424791],[4.53229488,0.02226978,94.14449967],[4.53229545,0.02227149,94.1447542],[4.53229603,0.0222732,94.14501149],[4.5322966,0.0222749,94.14527155],[4.53229717,0.02227661,94.14553436],[4.53229775,0.02227832,94.14579992],[4.53229832,0.02228003,94.14606824],[4.53229889,0.02228174,94.14633929],[4.53229947,0.02228345,94.14661309],[4.53230004,0.02228516,94.14688962],[4.53230061,0.02228687,94.14716888],[4.53230119,0.02228857,94.14745086],[4.53230176,0.02229028,94.14773557],[4.53230234,0.02229199,94.14802299],[4.53230291,0.0222937,94.14831312],[4.53230348,0.02229541,94.14860595],[4.53230406,0.02229712,94.14890149],[4.53230463,0.02229883,94.14919972],[4.5323052,0.02230053,94.14950064],[4.53230578,0.02230224,94.14980425],[4.53230635,0.02230395,94.15011054],[4.53230693,0.02230566,94.15041951],[4.5323075,0.02230737,94.15073114],[4.53230807,0.02230908,94.15104544],[4.53230865,0.02231078,94.1513624],[4.53230922,0.02231249,94.15168202],[4.5323098,0.0223142,94.15200428],[4.53231037,0.02231591,94.15232919],[4.53231095,0.02231762,94.15265673],[4.53231152,0.02231933,94.15298691],[4.53231209,0.02232103,94.15331971],[4.53231267,0.02232274,94.15365514],[4.53231324,0.02232445,94.15399318],[4.53231382,0.02232616,94.15433383],[4.53231439,0.02232787,94.15467709],[4.53231497,0.02232957,94.15502295],[4.53231554,0.02233128,94.1553714],[4.53231612,0.02233299,94.15572243],[4.53231669,0.0223347,94.15607604],[4.53231727,0.02233641,94.15643221],[4.53231784,0.02233811,94.15679092],[4.53231842,0.02233982,94.15715215],[4.53231899,0.02234153,94.15751588],[4.53231957,0.02234324,94.15788209],[4.53232014,0.02234495,94.15825077],[4.53232072,0.02234665,94.1586219],[4.5323213,0.02234836,94.15899546],[4.53232187,0.02235007,94.15937143],[4.53232245,0.02235178,94.1597498],[4.53232302,0.02235348,94.16013054],[4.5323236,0.02235519,94.16051364],[4.53232417,0.0223569,94.16089909],[4.53232475,0.02235861,94.16128685],[4.53232533,0.02236031,94.16167692],[4.5323259,0.02236202,94.16206928],[4.53232648,0.02236373,94.16246391],[4.53232705,0.02236544,94.16286079],[4.53232763,0.02236714,94.1632599],[4.53232821,0.02236885,94.16366123],[4.53232878,0.02237056,94.16406476],[4.53232936,0.02237227,94.16447047],[4.53232994,0.02237397,94.16487835],[4.53233051,0.02237568,94.16528837],[4.53233109,0.02237739,94.16570051],[4.53233167,0.0223791,94.16611477],[4.53233224,0.0223808,94.16653112],[4.53233282,0.02238251,94.16694955],[4.53233339,0.02238422,94.16737003],[4.53233397,0.02238592,94.16779256],[4.53233455,0.02238763,94.16821711],[4.53233512,0.02238934,94.16864367],[4.5323357,0.02239105,94.16907221],[4.53233628,0.02239275,94.16950273],[4.53233685,0.02239446,94.1699352],[4.53233743,0.02239617,94.1703696],[4.53233801,0.02239787,94.17080593],[4.53233858,0.02239958,94.17124416],[4.53233916,0.02240129,94.17168427],[4.53233974,0.022403,94.17212625],[4.53234031,0.0224047,94.17257008],[4.53234089,0.02240641,94.17301575],[4.53234147,0.02240812,94.17346323],[4.53234204,0.02240982,94.17391252],[4.53234262,0.02241153,94.17436358],[4.5323432,0.02241324,94.17481641],[4.53234377,0.02241495,94.17527099],[4.53234435,0.02241665,94.1757273],[4.53234492,0.02241836,94.17618533],[4.5323455,0.02242007,94.17664505],[4.53234608,0.02242177,94.17710646],[4.53234665,0.02242348,94.17756954],[4.53234723,0.02242519,94.17803427],[4.53234781,0.0224269,94.17850062],[4.53234838,0.0224286,94.17896859],[4.53234896,0.02243031,94.17943816],[4.53234954,0.02243202,94.17990929],[4.53235011,0.02243372,94.18038197],[4.53235069,0.02243543,94.18085619],[4.53235126,0.02243714,94.18133191],[4.53235184,0.02243885,94.18180913],[4.53235242,0.02244055,94.18228782],[4.53235299,0.02244226,94.18276796],[4.53235357,0.02244397,94.18324953],[4.53235414,0.02244567,94.18373252],[4.53235472,0.02244738,94.1842169],[4.53235529,0.02244909,94.18470265],[4.53235587,0.0224508,94.18518975],[4.53235644,0.0224525,94.18567819],[4.53235702,0.02245421,94.18616794],[4.5323576,0.02245592,94.18665899],[4.53235817,0.02245763,94.18715133],[4.53235875,0.02245933,94.18764495],[4.53235932,0.02246104,94.18813985],[4.5323599,0.02246275,94.18863602],[4.53236047,0.02246445,94.18913345],[4.53236105,0.02246616,94.18963214],[4.53236162,0.02246787,94.19013208],[4.53236219,0.02246958,94.19063327],[4.53236277,0.02247128,94.1911357],[4.53236334,0.02247299,94.19163936],[4.53236392,0.0224747,94.19214425],[4.53236449,0.02247641,94.19265036],[4.53236507,0.02247811,94.19315768],[4.53236564,0.02247982,94.19366621],[4.53236621,0.02248153,94.19417594],[4.53236679,0.02248324,94.19468687],[4.53236736,0.02248495,94.19519898],[4.53236794,0.02248665,94.19571228],[4.53236851,0.02248836,94.19622676],[4.53236908,0.02249007,94.1967424],[4.53236966,0.02249178,94.1972592],[4.53237023,0.02249348,94.19777716],[4.53237081,0.02249519,94.19829627],[4.53237138,0.0224969,94.19881653],[4.53237195,0.02249861,94.19933791],[4.53237253,0.02250031,94.19986043],[4.5323731,0.02250202,94.20038407],[4.53237367,0.02250373,94.20090883],[4.53237425,0.02250544,94.20143469],[4.53237482,0.02250714,94.20196166],[4.5323754,0.02250885,94.20248972],[4.53237597,0.02251056,94.20301887],[4.53237654,0.02251227,94.2035491],[4.53237712,0.02251398,94.20408041],[4.53237769,0.02251568,94.20461279],[4.53237826,0.02251739,94.20514622],[4.53237884,0.0225191,94.20568072],[4.53237941,0.02252081,94.20621626],[4.53237998,0.02252251,94.20675284],[4.53238056,0.02252422,94.20729045],[4.53238113,0.02252593,94.20782909],[4.5323817,0.02252764,94.20836875],[4.53238228,0.02252934,94.20890943],[4.53238285,0.02253105,94.20945111],[4.53238342,0.02253276,94.20999379],[4.532384,0.02253447,94.21053746],[4.53238457,0.02253617,94.21108212],[4.53238514,0.02253788,94.21162776],[4.53238572,0.02253959,94.21217437],[4.53238629,0.0225413,94.21272194],[4.53238686,0.02254301,94.21327047],[4.53238744,0.02254471,94.21381995],[4.53238801,0.02254642,94.21437038],[4.53238858,0.02254813,94.21492174],[4.53238916,0.02254984,94.21547404],[4.53238973,0.02255154,94.21602725],[4.53239031,0.02255325,94.21658138],[4.53239088,0.02255496,94.21713643],[4.53239145,0.02255666,94.21769237],[4.53239203,0.02255837,94.21824921],[4.5323926,0.02256008,94.21880694],[4.53239317,0.02256179,94.21936555],[4.53239375,0.02256349,94.21992503],[4.53239432,0.0225652,94.22048539],[4.5323949,0.02256691,94.2210466],[4.53239547,0.02256862,94.22160867],[4.53239604,0.02257032,94.22217159],[4.53239662,0.02257203,94.22273535],[4.53239719,0.02257374,94.22329992],[4.53239777,0.02257545,94.2238653],[4.53239834,0.02257715,94.22443146],[4.53239891,0.02257886,94.2249984],[4.53239949,0.02258057,94.22556608],[4.53240006,0.02258227,94.2261345],[4.53240064,0.02258398,94.22670365],[4.53240121,0.02258569,94.22727351],[4.53240179,0.02258739,94.22784407],[4.53240236,0.0225891,94.22841531],[4.53240294,0.02259081,94.22898721],[4.53240351,0.02259252,94.22955977],[4.53240408,0.02259422,94.23013296],[4.53240466,0.02259593,94.23070678],[4.53240524,0.02259764,94.23128121],[4.53240581,0.02259935,94.23185624],[4.53240639,0.02260106,94.23243185],[4.53240696,0.02260276,94.23300802],[4.53240753,0.02260447,94.23358474],[4.53240811,0.02260618,94.23416201],[4.53240868,0.02260788,94.2347398],[4.53240926,0.02260959,94.2353181],[4.53240983,0.0226113,94.23589689],[4.53241041,0.022613,94.23647617],[4.53241098,0.02261471,94.23705592],[4.53241156,0.02261642,94.23763612],[4.53241213,0.02261813,94.23821676],[4.53241271,0.02261983,94.23879782],[4.53241328,0.02262154,94.2393793],[4.53241386,0.02262325,94.23996118],[4.53241443,0.02262495,94.24054344],[4.53241501,0.02262666,94.24112607],[4.53241558,0.02262837,94.24170906],[4.53241616,0.02263007,94.24229239],[4.53241673,0.02263178,94.24287605],[4.53241731,0.02263349,94.24346003],[4.53241789,0.0226352,94.24404431],[4.53241846,0.0226369,94.24462887],[4.53241904,0.02263861,94.24521371],[4.53241961,0.02264032,94.24579881],[4.53242019,0.02264202,94.24638416],[4.53242076,0.02264373,94.24696973],[4.53242134,0.02264544,94.2475555],[4.53242191,0.02264715,94.24814147],[4.53242249,0.02264885,94.2487276],[4.53242306,0.02265056,94.24931389],[4.53242364,0.02265227,94.24990031],[4.53242421,0.02265398,94.25048684],[4.53242479,0.02265568,94.25107347],[4.53242537,0.02265739,94.25166018],[4.53242594,0.0226591,94.25224694],[4.53242652,0.0226608,94.25283374],[4.53242709,0.02266251,94.25342057],[4.53242767,0.02266422,94.25400739],[4.53242824,0.02266593,94.2545942],[4.53242882,0.02266763,94.25518098],[4.53242939,0.02266934,94.2557677],[4.53242997,0.02267105,94.25635435],[4.53243054,0.02267276,94.25694091],[4.53243112,0.02267446,94.25752736],[4.5324317,0.02267617,94.25811367],[4.53243227,0.02267788,94.25869985],[4.53243285,0.02267959,94.25928585],[4.53243342,0.0226813,94.25987167],[4.532434,0.022683,94.26045729],[4.53243457,0.02268471,94.26104268],[4.53243515,0.02268642,94.26162783],[4.53243572,0.02268813,94.26221272],[4.5324363,0.02268983,94.26279733],[4.53243687,0.02269154,94.26338164],[4.53243745,0.02269325,94.26396563],[4.53243802,0.02269496,94.26454929],[4.5324386,0.02269667,94.26513258],[4.53243917,0.02269837,94.2657155],[4.53243975,0.02270008,94.26629802],[4.53244032,0.02270179,94.26688013],[4.5324409,0.0227035,94.26746179],[4.53244147,0.02270521,94.268043],[4.53244204,0.02270692,94.26862372],[4.53244262,0.02270862,94.26920395],[4.53244319,0.02271033,94.26978365],[4.53244377,0.02271204,94.27036281],[4.53244434,0.02271375,94.27094141],[4.53244492,0.02271546,94.27151944],[4.53244549,0.02271717,94.27209688],[4.53244606,0.02271888,94.27267373],[4.53244664,0.02272058,94.27324997],[4.53244721,0.02272229,94.2738256],[4.53244778,0.022724,94.27440061],[4.53244836,0.02272571,94.27497498],[4.53244893,0.02272742,94.2755487],[4.53244951,0.02272913,94.27612177],[4.53245008,0.02273084,94.27669417],[4.53245065,0.02273255,94.2772659],[4.53245123,0.02273426,94.27783694],[4.5324518,0.02273597,94.27840728],[4.53245237,0.02273767,94.27897692],[4.53245294,0.02273938,94.27954583],[4.53245352,0.02274109,94.28011402],[4.53245409,0.0227428,94.28068147],[4.53245466,0.02274451,94.28124817],[4.53245524,0.02274622,94.28181411],[4.53245581,0.02274793,94.28237928],[4.53245638,0.02274964,94.28294367],[4.53245695,0.02275135,94.28350727],[4.53245753,0.02275306,94.28407007],[4.5324581,0.02275477,94.28463206],[4.53245867,0.02275648,94.28519327],[4.53245924,0.02275819,94.2857538],[4.53245982,0.0227599,94.28631372],[4.53246039,0.02276161,94.28687313],[4.53246096,0.02276332,94.2874321],[4.53246153,0.02276503,94.28799073],[4.53246211,0.02276674,94.2885491],[4.53246268,0.02276845,94.28910729],[4.53246325,0.02277016,94.28966539],[4.53246382,0.02277187,94.29022348],[4.5324644,0.02277358,94.29078166],[4.53246497,0.02277529,94.29133999],[4.53246554,0.022777,94.29189858],[4.53246611,0.02277871,94.29245751],[4.53246668,0.02278042,94.29301685],[4.53246726,0.02278213,94.2935767],[4.53246783,0.02278384,94.29413714],[4.5324684,0.02278555,94.29469826],[4.53246897,0.02278726,94.29526013],[4.53246954,0.02278897,94.29582286],[4.53247012,0.02279068,94.29638651],[4.53247069,0.02279239,94.29695118],[4.53247126,0.0227941,94.29751695],[4.53247183,0.02279581,94.29808391],[4.5324724,0.02279752,94.29865213],[4.53247297,0.02279923,94.29922172],[4.53247355,0.02280094,94.29979274],[4.53247412,0.02280265,94.30036529],[4.53247469,0.02280436,94.30093946],[4.53247526,0.02280607,94.30151532],[4.53247583,0.02280778,94.30209296],[4.53247641,0.02280949,94.30267247],[4.53247698,0.0228112,94.30325393],[4.53247755,0.02281291,94.30383743],[4.53247812,0.02281463,94.30442305],[4.53247869,0.02281634,94.30501087],[4.53247926,0.02281805,94.30560099],[4.53247984,0.02281976,94.30619349],[4.53248041,0.02282147,94.30678845],[4.53248098,0.02282318,94.30738596],[4.53248155,0.02282489,94.3079861],[4.53248212,0.0228266,94.30858896],[4.5324827,0.02282831,94.30919463],[4.53248327,0.02283002,94.30980318],[4.53248384,0.02283173,94.31041471],[4.53248441,0.02283344,94.3110293],[4.53248498,0.02283515,94.31164703],[4.53248556,0.02283687,94.312268],[4.53248613,0.02283858,94.31289227],[4.5324867,0.02284029,94.31351993],[4.53248727,0.022842,94.31415107],[4.53248784,0.02284371,94.31478574],[4.53248842,0.02284542,94.31542404],[4.53248899,0.02284713,94.31606604],[4.53248956,0.02284884,94.31671181],[4.53249013,0.02285055,94.31736143],[4.5324907,0.02285226,94.31801499],[4.53249128,0.02285398,94.31867255],[4.53249185,0.02285569,94.3193342],[4.53249242,0.0228574,94.32000002],[4.53249299,0.02285911,94.32067007],[4.53249357,0.02286082,94.32134444],[4.53249414,0.02286253,94.32202322],[4.53249471,0.02286424,94.3227065],[4.53249528,0.02286595,94.32339437],[4.53249585,0.02286766,94.32408694],[4.53249643,0.02286938,94.3247843],[4.532497,0.02287109,94.32548654],[4.53249757,0.0228728,94.32619377],[4.53249814,0.02287451,94.32690609],[4.53249872,0.02287622,94.32762358],[4.53249929,0.02287793,94.32834636],[4.53249986,0.02287964,94.32907451],[4.53250043,0.02288135,94.32980813],[4.53250101,0.02288307,94.33054734],[4.53250158,0.02288478,94.33129221],[4.53250215,0.02288649,94.33204285],[4.53250272,0.0228882,94.33279937],[4.5325033,0.02288991,94.33356185],[4.53250387,0.02289162,94.33433039],[4.53250444,0.02289333,94.33510511],[4.53250502,0.02289504,94.33588608],[4.53250559,0.02289676,94.33667342],[4.53250616,0.02289847,94.33746723],[4.53250674,0.02290018,94.33826759],[4.53250731,0.02290189,94.33907461],[4.53250789,0.0229036,94.33988839],[4.53250846,0.02290531,94.34070903],[4.53250903,0.02290702,94.34153663],[4.53250961,0.02290873,94.34237128],[4.53251018,0.02291044,94.34321309],[4.53251076,0.02291215,94.34406215],[4.53251133,0.02291387,94.34491856],[4.53251191,0.02291558,94.34578242],[4.53251248,0.02291729,94.34665384],[4.53251306,0.022919,94.3475329],[4.53251363,0.02292071,94.34841971],[4.53251421,0.02292242,94.34931437],[4.53251479,0.02292413,94.35021698],[4.53251536,0.02292584,94.35112763],[4.53251594,0.02292755,94.35204642],[4.53251652,0.02292926,94.35297345],[4.53251709,0.02293097,94.35390882],[4.53251767,0.02293268,94.35485262],[4.53251825,0.02293439,94.35580496],[4.53251882,0.0229361,94.3567659],[4.5325194,0.02293781,94.35773547],[4.53251998,0.02293952,94.3587137],[4.53252056,0.02294123,94.35970064],[4.53252114,0.02294294,94.36069631],[4.53252172,0.02294465,94.36170074],[4.53252229,0.02294636,94.36271396],[4.53252287,0.02294807,94.36373601],[4.53252345,0.02294978,94.36476693],[4.53252403,0.02295149,94.36580674],[4.53252461,0.0229532,94.36685547],[4.53252519,0.02295491,94.36791317],[4.53252577,0.02295662,94.36897985],[4.53252635,0.02295833,94.37005556],[4.53252693,0.02296004,94.37114033],[4.53252751,0.02296175,94.37223419],[4.53252809,0.02296346,94.37333718],[4.53252866,0.02296517,94.37444933],[4.53252924,0.02296688,94.37557069],[4.53252982,0.02296859,94.37670134],[4.5325304,0.0229703,94.37784134],[4.53253098,0.02297201,94.37899074],[4.53253156,0.02297372,94.38014962],[4.53253214,0.02297544,94.38131801],[4.53253272,0.02297715,94.38249599],[4.5325333,0.02297886,94.38368361],[4.53253387,0.02298057,94.38488092],[4.53253445,0.02298228,94.38608799],[4.53253503,0.02298399,94.38730486],[4.53253561,0.0229857,94.38853161],[4.53253619,0.02298741,94.38976828],[4.53253677,0.02298912,94.39101493],[4.53253734,0.02299083,94.39227164],[4.53253792,0.02299254,94.39353845],[4.5325385,0.02299425,94.39481543],[4.53253908,0.02299596,94.39610264],[4.53253965,0.02299768,94.39740014],[4.53254023,0.02299939,94.39870801],[4.53254081,0.0230011,94.40002629],[4.53254138,0.02300281,94.40135507],[4.53254196,0.02300452,94.40269439],[4.53254254,0.02300623,94.40404434],[4.53254311,0.02300795,94.40540498],[4.53254369,0.02300966,94.40677637],[4.53254426,0.02301137,94.4081586],[4.53254484,0.02301308,94.40955166],[4.53254541,0.02301479,94.41095526],[4.53254599,0.0230165,94.41236906],[4.53254656,0.02301822,94.4137927],[4.53254714,0.02301993,94.41522582],[4.53254771,0.02302164,94.41666806],[4.53254828,0.02302335,94.41811908],[4.53254885,0.02302506,94.41957853],[4.53254943,0.02302678,94.42104612],[4.53255,0.02302849,94.42252158],[4.53255057,0.0230302,94.42400463],[4.53255114,0.02303191,94.42549499],[4.53255171,0.02303362,94.42699238],[4.53255228,0.02303534,94.42849653],[4.53255285,0.02303705,94.43000714],[4.53255342,0.02303876,94.43152394],[4.53255399,0.02304047,94.43304666],[4.53255456,0.02304218,94.43457499],[4.53255513,0.0230439,94.43610867],[4.5325557,0.02304561,94.43764741],[4.53255626,0.02304732,94.43919091],[4.53255683,0.02304903,94.44073889],[4.5325574,0.02305074,94.44229107],[4.53255797,0.02305246,94.44384715],[4.53255854,0.02305417,94.44540684],[4.5325591,0.02305588,94.44696986],[4.53255967,0.02305759,94.4485359],[4.53256024,0.0230593,94.45010467],[4.53256081,0.02306101,94.45167588],[4.53256137,0.02306273,94.45324921],[4.53256194,0.02306444,94.45482433],[4.53256251,0.02306615,94.4564009],[4.53256307,0.02306786,94.45797861],[4.53256364,0.02306957,94.45955711],[4.53256421,0.02307128,94.46113606],[4.53256477,0.02307299,94.46271515],[4.53256534,0.02307471,94.46429402],[4.5325659,0.02307642,94.46587234],[4.53256647,0.02307813,94.46744979],[4.53256704,0.02307984,94.46902601],[4.5325676,0.02308155,94.47060068],[4.53256817,0.02308326,94.47217346],[4.53256873,0.02308497,94.473744],[4.5325693,0.02308668,94.47531202],[4.53256986,0.02308839,94.47687721],[4.53257043,0.0230901,94.47843927],[4.532571,0.02309181,94.47999791],[4.53257156,0.02309352,94.48155281],[4.53257213,0.02309523,94.48310368],[4.53257269,0.02309694,94.4846502],[4.53257326,0.02309865,94.48619208],[4.53257382,0.02310036,94.48772899],[4.53257439,0.02310207,94.48926063],[4.53257496,0.02310378,94.49078668],[4.53257552,0.02310549,94.49230683],[4.53257609,0.0231072,94.49382076],[4.53257665,0.02310891,94.49532816],[4.53257722,0.02311062,94.49682869],[4.53257779,0.02311233,94.49832204],[4.53257835,0.02311403,94.49980789],[4.53257892,0.02311574,94.50128591],[4.53257949,0.02311745,94.50275578],[4.53258006,0.02311916,94.50421717],[4.53258063,0.02312087,94.50566973],[4.53258119,0.02312257,94.50711312],[4.53258176,0.02312428,94.50854693],[4.53258233,0.02312599,94.50997079],[4.5325829,0.02312769,94.51138429],[4.53258347,0.0231294,94.51278704],[4.53258404,0.02313111,94.51417865],[4.53258461,0.02313281,94.51555873],[4.53258518,0.02313452,94.51692688],[4.53258575,0.02313623,94.51828272],[4.53258632,0.02313793,94.51962587],[4.53258689,0.02313964,94.52095592],[4.53258746,0.02314134,94.52227249],[4.53258804,0.02314305,94.5235752],[4.53258861,0.02314475,94.52486366],[4.53258918,0.02314646,94.52613748],[4.53258975,0.02314816,94.52739628],[4.53259032,0.02314987,94.52863968],[4.5325909,0.02315157,94.5298673],[4.53259147,0.02315327,94.53107875],[4.53259204,0.02315498,94.53227365],[4.53259261,0.02315668,94.53345162],[4.53259318,0.02315839,94.53461229],[4.53259376,0.02316009,94.53575528],[4.53259433,0.02316179,94.53688027],[4.5325949,0.0231635,94.53798696],[4.53259547,0.0231652,94.53907504],[4.53259605,0.0231669,94.54014421],[4.53259662,0.02316861,94.54119415],[4.53259719,0.02317031,94.54222456],[4.53259776,0.02317201,94.54323515],[4.53259833,0.02317372,94.5442256],[4.53259891,0.02317542,94.54519562],[4.53259948,0.02317712,94.5461449],[4.53260005,0.02317882,94.54707314],[4.53260062,0.02318053,94.54798004],[4.53260119,0.02318223,94.54886529],[4.53260176,0.02318393,94.54972861],[4.53260234,0.02318564,94.55056968],[4.53260291,0.02318734,94.55138821],[4.53260348,0.02318904,94.5521839],[4.53260405,0.02319074,94.55295645],[4.53260462,0.02319244,94.55370556],[4.53260519,0.02319415,94.55443094],[4.53260576,0.02319585,94.55513228],[4.53260633,0.02319755,94.55580929],[4.5326069,0.02319925,94.55646167],[4.53260747,0.02320096,94.55708912],[4.53260804,0.02320266,94.55769135],[4.53260861,0.02320436,94.55826806],[4.53260917,0.02320606,94.55881894],[4.53260974,0.02320777,94.55934371],[4.53261031,0.02320947,94.55984205],[4.53261088,0.02321117,94.56031369],[4.53261144,0.02321287,94.56075831],[4.53261201,0.02321457,94.56117575],[4.53261258,0.02321628,94.56156642],[4.53261314,0.02321798,94.56193088],[4.53261371,0.02321968,94.56226968],[4.53261427,0.02322138,94.56258339],[4.53258981,0.0232296,94.52109012]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004200","id":-3,"type":"stop","predecessorId":-3,"sOffset":35.4036855625}},{"geometry":{"coordinates":[[[4.53261427,0.02322138,94.56258339],[4.53261371,0.02321968,94.56226968],[4.53261314,0.02321798,94.56193088],[4.53261258,0.02321628,94.56156642],[4.53261201,0.02321457,94.56117575],[4.53261144,0.02321287,94.56075831],[4.53261088,0.02321117,94.56031369],[4.53261031,0.02320947,94.55984205],[4.53260974,0.02320777,94.55934371],[4.53260917,0.02320606,94.55881894],[4.53260861,0.02320436,94.55826806],[4.53260804,0.02320266,94.55769135],[4.53260747,0.02320096,94.55708912],[4.5326069,0.02319925,94.55646167],[4.53260633,0.02319755,94.55580929],[4.53260576,0.02319585,94.55513228],[4.53260519,0.02319415,94.55443094],[4.53260462,0.02319244,94.55370556],[4.53260405,0.02319074,94.55295645],[4.53260348,0.02318904,94.5521839],[4.53260291,0.02318734,94.55138821],[4.53260234,0.02318564,94.55056968],[4.53260176,0.02318393,94.54972861],[4.53260119,0.02318223,94.54886529],[4.53260062,0.02318053,94.54798004],[4.53260005,0.02317882,94.54707314],[4.53259948,0.02317712,94.5461449],[4.53259891,0.02317542,94.54519562],[4.53259833,0.02317372,94.5442256],[4.53259776,0.02317201,94.54323515],[4.53259719,0.02317031,94.54222456],[4.53259662,0.02316861,94.54119415],[4.53259605,0.0231669,94.54014421],[4.53259547,0.0231652,94.53907504],[4.5325949,0.0231635,94.53798696],[4.53259433,0.02316179,94.53688027],[4.53259376,0.02316009,94.53575528],[4.53259318,0.02315839,94.53461229],[4.53259261,0.02315668,94.53345162],[4.53259204,0.02315498,94.53227365],[4.53259147,0.02315327,94.53107875],[4.5325909,0.02315157,94.5298673],[4.53259032,0.02314987,94.52863968],[4.53258975,0.02314816,94.52739628],[4.53258918,0.02314646,94.52613748],[4.53258861,0.02314475,94.52486366],[4.53258804,0.02314305,94.5235752],[4.53258746,0.02314134,94.52227249],[4.53258689,0.02313964,94.52095592],[4.53258632,0.02313793,94.51962587],[4.53258575,0.02313623,94.51828272],[4.53258518,0.02313452,94.51692688],[4.53258461,0.02313281,94.51555873],[4.53258404,0.02313111,94.51417865],[4.53258347,0.0231294,94.51278704],[4.5325829,0.02312769,94.51138429],[4.53258233,0.02312599,94.50997079],[4.53258176,0.02312428,94.50854693],[4.53258119,0.02312257,94.50711312],[4.53258063,0.02312087,94.50566973],[4.53258006,0.02311916,94.50421717],[4.53257949,0.02311745,94.50275578],[4.53257892,0.02311574,94.50128591],[4.53257835,0.02311403,94.49980789],[4.53257779,0.02311233,94.49832204],[4.53257722,0.02311062,94.49682869],[4.53257665,0.02310891,94.49532816],[4.53257609,0.0231072,94.49382076],[4.53257552,0.02310549,94.49230683],[4.53257496,0.02310378,94.49078668],[4.53257439,0.02310207,94.48926063],[4.53257382,0.02310036,94.48772899],[4.53257326,0.02309865,94.48619208],[4.53257269,0.02309694,94.4846502],[4.53257213,0.02309523,94.48310368],[4.53257156,0.02309352,94.48155281],[4.532571,0.02309181,94.47999791],[4.53257043,0.0230901,94.47843927],[4.53256986,0.02308839,94.47687721],[4.5325693,0.02308668,94.47531202],[4.53256873,0.02308497,94.473744],[4.53256817,0.02308326,94.47217346],[4.5325676,0.02308155,94.47060068],[4.53256704,0.02307984,94.46902601],[4.53256647,0.02307813,94.46744979],[4.5325659,0.02307642,94.46587234],[4.53256534,0.02307471,94.46429402],[4.53256477,0.02307299,94.46271515],[4.53256421,0.02307128,94.46113606],[4.53256364,0.02306957,94.45955711],[4.53256307,0.02306786,94.45797861],[4.53256251,0.02306615,94.4564009],[4.53256194,0.02306444,94.45482433],[4.53256137,0.02306273,94.45324921],[4.53256081,0.02306101,94.45167588],[4.53256024,0.0230593,94.45010467],[4.53255967,0.02305759,94.4485359],[4.5325591,0.02305588,94.44696986],[4.53255854,0.02305417,94.44540684],[4.53255797,0.02305246,94.44384715],[4.5325574,0.02305074,94.44229107],[4.53255683,0.02304903,94.44073889],[4.53255626,0.02304732,94.43919091],[4.5325557,0.02304561,94.43764741],[4.53255513,0.0230439,94.43610867],[4.53255456,0.02304218,94.43457499],[4.53255399,0.02304047,94.43304666],[4.53255342,0.02303876,94.43152394],[4.53255285,0.02303705,94.43000714],[4.53255228,0.02303534,94.42849653],[4.53255171,0.02303362,94.42699238],[4.53255114,0.02303191,94.42549499],[4.53255057,0.0230302,94.42400463],[4.53255,0.02302849,94.42252158],[4.53254943,0.02302678,94.42104612],[4.53254885,0.02302506,94.41957853],[4.53254828,0.02302335,94.41811908],[4.53254771,0.02302164,94.41666806],[4.53254714,0.02301993,94.41522582],[4.53254656,0.02301822,94.4137927],[4.53254599,0.0230165,94.41236906],[4.53254541,0.02301479,94.41095526],[4.53254484,0.02301308,94.40955166],[4.53254426,0.02301137,94.4081586],[4.53254369,0.02300966,94.40677637],[4.53254311,0.02300795,94.40540498],[4.53254254,0.02300623,94.40404434],[4.53254196,0.02300452,94.40269439],[4.53254138,0.02300281,94.40135507],[4.53254081,0.0230011,94.40002629],[4.53254023,0.02299939,94.39870801],[4.53253965,0.02299768,94.39740014],[4.53253908,0.02299596,94.39610264],[4.5325385,0.02299425,94.39481543],[4.53253792,0.02299254,94.39353845],[4.53253734,0.02299083,94.39227164],[4.53253677,0.02298912,94.39101493],[4.53253619,0.02298741,94.38976828],[4.53253561,0.0229857,94.38853161],[4.53253503,0.02298399,94.38730486],[4.53253445,0.02298228,94.38608799],[4.53253387,0.02298057,94.38488092],[4.5325333,0.02297886,94.38368361],[4.53253272,0.02297715,94.38249599],[4.53253214,0.02297544,94.38131801],[4.53253156,0.02297372,94.38014962],[4.53253098,0.02297201,94.37899074],[4.5325304,0.0229703,94.37784134],[4.53252982,0.02296859,94.37670134],[4.53252924,0.02296688,94.37557069],[4.53252866,0.02296517,94.37444933],[4.53252809,0.02296346,94.37333718],[4.53252751,0.02296175,94.37223419],[4.53252693,0.02296004,94.37114033],[4.53252635,0.02295833,94.37005556],[4.53252577,0.02295662,94.36897985],[4.53252519,0.02295491,94.36791317],[4.53252461,0.0229532,94.36685547],[4.53252403,0.02295149,94.36580674],[4.53252345,0.02294978,94.36476693],[4.53252287,0.02294807,94.36373601],[4.53252229,0.02294636,94.36271396],[4.53252172,0.02294465,94.36170074],[4.53252114,0.02294294,94.36069631],[4.53252056,0.02294123,94.35970064],[4.53251998,0.02293952,94.3587137],[4.5325194,0.02293781,94.35773547],[4.53251882,0.0229361,94.3567659],[4.53251825,0.02293439,94.35580496],[4.53251767,0.02293268,94.35485262],[4.53251709,0.02293097,94.35390882],[4.53251652,0.02292926,94.35297345],[4.53251594,0.02292755,94.35204642],[4.53251536,0.02292584,94.35112763],[4.53251479,0.02292413,94.35021698],[4.53251421,0.02292242,94.34931437],[4.53251363,0.02292071,94.34841971],[4.53251306,0.022919,94.3475329],[4.53251248,0.02291729,94.34665384],[4.53251191,0.02291558,94.34578242],[4.53251133,0.02291387,94.34491856],[4.53251076,0.02291215,94.34406215],[4.53251018,0.02291044,94.34321309],[4.53250961,0.02290873,94.34237128],[4.53250903,0.02290702,94.34153663],[4.53250846,0.02290531,94.34070903],[4.53250789,0.0229036,94.33988839],[4.53250731,0.02290189,94.33907461],[4.53250674,0.02290018,94.33826759],[4.53250616,0.02289847,94.33746723],[4.53250559,0.02289676,94.33667342],[4.53250502,0.02289504,94.33588608],[4.53250444,0.02289333,94.33510511],[4.53250387,0.02289162,94.33433039],[4.5325033,0.02288991,94.33356185],[4.53250272,0.0228882,94.33279937],[4.53250215,0.02288649,94.33204285],[4.53250158,0.02288478,94.33129221],[4.53250101,0.02288307,94.33054734],[4.53250043,0.02288135,94.32980813],[4.53249986,0.02287964,94.32907451],[4.53249929,0.02287793,94.32834636],[4.53249872,0.02287622,94.32762358],[4.53249814,0.02287451,94.32690609],[4.53249757,0.0228728,94.32619377],[4.532497,0.02287109,94.32548654],[4.53249643,0.02286938,94.3247843],[4.53249585,0.02286766,94.32408694],[4.53249528,0.02286595,94.32339437],[4.53249471,0.02286424,94.3227065],[4.53249414,0.02286253,94.32202322],[4.53249357,0.02286082,94.32134444],[4.53249299,0.02285911,94.32067007],[4.53249242,0.0228574,94.32000002],[4.53249185,0.02285569,94.3193342],[4.53249128,0.02285398,94.31867255],[4.5324907,0.02285226,94.31801499],[4.53249013,0.02285055,94.31736143],[4.53248956,0.02284884,94.31671181],[4.53248899,0.02284713,94.31606604],[4.53248842,0.02284542,94.31542404],[4.53248784,0.02284371,94.31478574],[4.53248727,0.022842,94.31415107],[4.5324867,0.02284029,94.31351993],[4.53248613,0.02283858,94.31289227],[4.53248556,0.02283687,94.312268],[4.53248498,0.02283515,94.31164703],[4.53248441,0.02283344,94.3110293],[4.53248384,0.02283173,94.31041471],[4.53248327,0.02283002,94.30980318],[4.5324827,0.02282831,94.30919463],[4.53248212,0.0228266,94.30858896],[4.53248155,0.02282489,94.3079861],[4.53248098,0.02282318,94.30738596],[4.53248041,0.02282147,94.30678845],[4.53247984,0.02281976,94.30619349],[4.53247926,0.02281805,94.30560099],[4.53247869,0.02281634,94.30501087],[4.53247812,0.02281463,94.30442305],[4.53247755,0.02281291,94.30383743],[4.53247698,0.0228112,94.30325393],[4.53247641,0.02280949,94.30267247],[4.53247583,0.02280778,94.30209296],[4.53247526,0.02280607,94.30151532],[4.53247469,0.02280436,94.30093946],[4.53247412,0.02280265,94.30036529],[4.53247355,0.02280094,94.29979274],[4.53247297,0.02279923,94.29922172],[4.5324724,0.02279752,94.29865213],[4.53247183,0.02279581,94.29808391],[4.53247126,0.0227941,94.29751695],[4.53247069,0.02279239,94.29695118],[4.53247012,0.02279068,94.29638651],[4.53246954,0.02278897,94.29582286],[4.53246897,0.02278726,94.29526013],[4.5324684,0.02278555,94.29469826],[4.53246783,0.02278384,94.29413714],[4.53246726,0.02278213,94.2935767],[4.53246668,0.02278042,94.29301685],[4.53246611,0.02277871,94.29245751],[4.53246554,0.022777,94.29189858],[4.53246497,0.02277529,94.29133999],[4.5324644,0.02277358,94.29078166],[4.53246382,0.02277187,94.29022348],[4.53246325,0.02277016,94.28966539],[4.53246268,0.02276845,94.28910729],[4.53246211,0.02276674,94.2885491],[4.53246153,0.02276503,94.28799073],[4.53246096,0.02276332,94.2874321],[4.53246039,0.02276161,94.28687313],[4.53245982,0.0227599,94.28631372],[4.53245924,0.02275819,94.2857538],[4.53245867,0.02275648,94.28519327],[4.5324581,0.02275477,94.28463206],[4.53245753,0.02275306,94.28407007],[4.53245695,0.02275135,94.28350727],[4.53245638,0.02274964,94.28294367],[4.53245581,0.02274793,94.28237928],[4.53245524,0.02274622,94.28181411],[4.53245466,0.02274451,94.28124817],[4.53245409,0.0227428,94.28068147],[4.53245352,0.02274109,94.28011402],[4.53245294,0.02273938,94.27954583],[4.53245237,0.02273767,94.27897692],[4.5324518,0.02273597,94.27840728],[4.53245123,0.02273426,94.27783694],[4.53245065,0.02273255,94.2772659],[4.53245008,0.02273084,94.27669417],[4.53244951,0.02272913,94.27612177],[4.53244893,0.02272742,94.2755487],[4.53244836,0.02272571,94.27497498],[4.53244778,0.022724,94.27440061],[4.53244721,0.02272229,94.2738256],[4.53244664,0.02272058,94.27324997],[4.53244606,0.02271888,94.27267373],[4.53244549,0.02271717,94.27209688],[4.53244492,0.02271546,94.27151944],[4.53244434,0.02271375,94.27094141],[4.53244377,0.02271204,94.27036281],[4.53244319,0.02271033,94.26978365],[4.53244262,0.02270862,94.26920395],[4.53244204,0.02270692,94.26862372],[4.53244147,0.02270521,94.268043],[4.5324409,0.0227035,94.26746179],[4.53244032,0.02270179,94.26688013],[4.53243975,0.02270008,94.26629802],[4.53243917,0.02269837,94.2657155],[4.5324386,0.02269667,94.26513258],[4.53243802,0.02269496,94.26454929],[4.53243745,0.02269325,94.26396563],[4.53243687,0.02269154,94.26338164],[4.5324363,0.02268983,94.26279733],[4.53243572,0.02268813,94.26221272],[4.53243515,0.02268642,94.26162783],[4.53243457,0.02268471,94.26104268],[4.532434,0.022683,94.26045729],[4.53243342,0.0226813,94.25987167],[4.53243285,0.02267959,94.25928585],[4.53243227,0.02267788,94.25869985],[4.5324317,0.02267617,94.25811367],[4.53243112,0.02267446,94.25752736],[4.53243054,0.02267276,94.25694091],[4.53242997,0.02267105,94.25635435],[4.53242939,0.02266934,94.2557677],[4.53242882,0.02266763,94.25518098],[4.53242824,0.02266593,94.2545942],[4.53242767,0.02266422,94.25400739],[4.53242709,0.02266251,94.25342057],[4.53242652,0.0226608,94.25283374],[4.53242594,0.0226591,94.25224694],[4.53242537,0.02265739,94.25166018],[4.53242479,0.02265568,94.25107347],[4.53242421,0.02265398,94.25048684],[4.53242364,0.02265227,94.24990031],[4.53242306,0.02265056,94.24931389],[4.53242249,0.02264885,94.2487276],[4.53242191,0.02264715,94.24814147],[4.53242134,0.02264544,94.2475555],[4.53242076,0.02264373,94.24696973],[4.53242019,0.02264202,94.24638416],[4.53241961,0.02264032,94.24579881],[4.53241904,0.02263861,94.24521371],[4.53241846,0.0226369,94.24462887],[4.53241789,0.0226352,94.24404431],[4.53241731,0.02263349,94.24346003],[4.53241673,0.02263178,94.24287605],[4.53241616,0.02263007,94.24229239],[4.53241558,0.02262837,94.24170906],[4.53241501,0.02262666,94.24112607],[4.53241443,0.02262495,94.24054344],[4.53241386,0.02262325,94.23996118],[4.53241328,0.02262154,94.2393793],[4.53241271,0.02261983,94.23879782],[4.53241213,0.02261813,94.23821676],[4.53241156,0.02261642,94.23763612],[4.53241098,0.02261471,94.23705592],[4.53241041,0.022613,94.23647617],[4.53240983,0.0226113,94.23589689],[4.53240926,0.02260959,94.2353181],[4.53240868,0.02260788,94.2347398],[4.53240811,0.02260618,94.23416201],[4.53240753,0.02260447,94.23358474],[4.53240696,0.02260276,94.23300802],[4.53240639,0.02260106,94.23243185],[4.53240581,0.02259935,94.23185624],[4.53240524,0.02259764,94.23128121],[4.53240466,0.02259593,94.23070678],[4.53240408,0.02259422,94.23013296],[4.53240351,0.02259252,94.22955977],[4.53240294,0.02259081,94.22898721],[4.53240236,0.0225891,94.22841531],[4.53240179,0.02258739,94.22784407],[4.53240121,0.02258569,94.22727351],[4.53240064,0.02258398,94.22670365],[4.53240006,0.02258227,94.2261345],[4.53239949,0.02258057,94.22556608],[4.53239891,0.02257886,94.2249984],[4.53239834,0.02257715,94.22443146],[4.53239777,0.02257545,94.2238653],[4.53239719,0.02257374,94.22329992],[4.53239662,0.02257203,94.22273535],[4.53239604,0.02257032,94.22217159],[4.53239547,0.02256862,94.22160867],[4.5323949,0.02256691,94.2210466],[4.53239432,0.0225652,94.22048539],[4.53239375,0.02256349,94.21992503],[4.53239317,0.02256179,94.21936555],[4.5323926,0.02256008,94.21880694],[4.53239203,0.02255837,94.21824921],[4.53239145,0.02255666,94.21769237],[4.53239088,0.02255496,94.21713643],[4.53239031,0.02255325,94.21658138],[4.53238973,0.02255154,94.21602725],[4.53238916,0.02254984,94.21547404],[4.53238858,0.02254813,94.21492174],[4.53238801,0.02254642,94.21437038],[4.53238744,0.02254471,94.21381995],[4.53238686,0.02254301,94.21327047],[4.53238629,0.0225413,94.21272194],[4.53238572,0.02253959,94.21217437],[4.53238514,0.02253788,94.21162776],[4.53238457,0.02253617,94.21108212],[4.532384,0.02253447,94.21053746],[4.53238342,0.02253276,94.20999379],[4.53238285,0.02253105,94.20945111],[4.53238228,0.02252934,94.20890943],[4.5323817,0.02252764,94.20836875],[4.53238113,0.02252593,94.20782909],[4.53238056,0.02252422,94.20729045],[4.53237998,0.02252251,94.20675284],[4.53237941,0.02252081,94.20621626],[4.53237884,0.0225191,94.20568072],[4.53237826,0.02251739,94.20514622],[4.53237769,0.02251568,94.20461279],[4.53237712,0.02251398,94.20408041],[4.53237654,0.02251227,94.2035491],[4.53237597,0.02251056,94.20301887],[4.5323754,0.02250885,94.20248972],[4.53237482,0.02250714,94.20196166],[4.53237425,0.02250544,94.20143469],[4.53237367,0.02250373,94.20090883],[4.5323731,0.02250202,94.20038407],[4.53237253,0.02250031,94.19986043],[4.53237195,0.02249861,94.19933791],[4.53237138,0.0224969,94.19881653],[4.53237081,0.02249519,94.19829627],[4.53237023,0.02249348,94.19777716],[4.53236966,0.02249178,94.1972592],[4.53236908,0.02249007,94.1967424],[4.53236851,0.02248836,94.19622676],[4.53236794,0.02248665,94.19571228],[4.53236736,0.02248495,94.19519898],[4.53236679,0.02248324,94.19468687],[4.53236621,0.02248153,94.19417594],[4.53236564,0.02247982,94.19366621],[4.53236507,0.02247811,94.19315768],[4.53236449,0.02247641,94.19265036],[4.53236392,0.0224747,94.19214425],[4.53236334,0.02247299,94.19163936],[4.53236277,0.02247128,94.1911357],[4.53236219,0.02246958,94.19063327],[4.53236162,0.02246787,94.19013208],[4.53236105,0.02246616,94.18963214],[4.53236047,0.02246445,94.18913345],[4.5323599,0.02246275,94.18863602],[4.53235932,0.02246104,94.18813985],[4.53235875,0.02245933,94.18764495],[4.53235817,0.02245763,94.18715133],[4.5323576,0.02245592,94.18665899],[4.53235702,0.02245421,94.18616794],[4.53235644,0.0224525,94.18567819],[4.53235587,0.0224508,94.18518975],[4.53235529,0.02244909,94.18470265],[4.53235472,0.02244738,94.1842169],[4.53235414,0.02244567,94.18373252],[4.53235357,0.02244397,94.18324953],[4.53235299,0.02244226,94.18276796],[4.53235242,0.02244055,94.18228782],[4.53235184,0.02243885,94.18180913],[4.53235126,0.02243714,94.18133191],[4.53235069,0.02243543,94.18085619],[4.53235011,0.02243372,94.18038197],[4.53234954,0.02243202,94.17990929],[4.53234896,0.02243031,94.17943816],[4.53234838,0.0224286,94.17896859],[4.53234781,0.0224269,94.17850062],[4.53234723,0.02242519,94.17803427],[4.53234665,0.02242348,94.17756954],[4.53234608,0.02242177,94.17710646],[4.5323455,0.02242007,94.17664505],[4.53234492,0.02241836,94.17618533],[4.53234435,0.02241665,94.1757273],[4.53234377,0.02241495,94.17527099],[4.5323432,0.02241324,94.17481641],[4.53234262,0.02241153,94.17436358],[4.53234204,0.02240982,94.17391252],[4.53234147,0.02240812,94.17346323],[4.53234089,0.02240641,94.17301575],[4.53234031,0.0224047,94.17257008],[4.53233974,0.022403,94.17212625],[4.53233916,0.02240129,94.17168427],[4.53233858,0.02239958,94.17124416],[4.53233801,0.02239787,94.17080593],[4.53233743,0.02239617,94.1703696],[4.53233685,0.02239446,94.1699352],[4.53233628,0.02239275,94.16950273],[4.5323357,0.02239105,94.16907221],[4.53233512,0.02238934,94.16864367],[4.53233455,0.02238763,94.16821711],[4.53233397,0.02238592,94.16779256],[4.53233339,0.02238422,94.16737003],[4.53233282,0.02238251,94.16694955],[4.53233224,0.0223808,94.16653112],[4.53233167,0.0223791,94.16611477],[4.53233109,0.02237739,94.16570051],[4.53233051,0.02237568,94.16528837],[4.53232994,0.02237397,94.16487835],[4.53232936,0.02237227,94.16447047],[4.53232878,0.02237056,94.16406476],[4.53232821,0.02236885,94.16366123],[4.53232763,0.02236714,94.1632599],[4.53232705,0.02236544,94.16286079],[4.53232648,0.02236373,94.16246391],[4.5323259,0.02236202,94.16206928],[4.53232533,0.02236031,94.16167692],[4.53232475,0.02235861,94.16128685],[4.53232417,0.0223569,94.16089909],[4.5323236,0.02235519,94.16051364],[4.53232302,0.02235348,94.16013054],[4.53232245,0.02235178,94.1597498],[4.53232187,0.02235007,94.15937143],[4.5323213,0.02234836,94.15899546],[4.53232072,0.02234665,94.1586219],[4.53232014,0.02234495,94.15825077],[4.53231957,0.02234324,94.15788209],[4.53231899,0.02234153,94.15751588],[4.53231842,0.02233982,94.15715215],[4.53231784,0.02233811,94.15679092],[4.53231727,0.02233641,94.15643221],[4.53231669,0.0223347,94.15607604],[4.53231612,0.02233299,94.15572243],[4.53231554,0.02233128,94.1553714],[4.53231497,0.02232957,94.15502295],[4.53231439,0.02232787,94.15467709],[4.53231382,0.02232616,94.15433383],[4.53231324,0.02232445,94.15399318],[4.53231267,0.02232274,94.15365514],[4.53231209,0.02232103,94.15331971],[4.53231152,0.02231933,94.15298691],[4.53231095,0.02231762,94.15265673],[4.53231037,0.02231591,94.15232919],[4.5323098,0.0223142,94.15200428],[4.53230922,0.02231249,94.15168202],[4.53230865,0.02231078,94.1513624],[4.53230807,0.02230908,94.15104544],[4.5323075,0.02230737,94.15073114],[4.53230693,0.02230566,94.15041951],[4.53230635,0.02230395,94.15011054],[4.53230578,0.02230224,94.14980425],[4.5323052,0.02230053,94.14950064],[4.53230463,0.02229883,94.14919972],[4.53230406,0.02229712,94.14890149],[4.53230348,0.02229541,94.14860595],[4.53230291,0.0222937,94.14831312],[4.53230234,0.02229199,94.14802299],[4.53230176,0.02229028,94.14773557],[4.53230119,0.02228857,94.14745086],[4.53230061,0.02228687,94.14716888],[4.53230004,0.02228516,94.14688962],[4.53229947,0.02228345,94.14661309],[4.53229889,0.02228174,94.14633929],[4.53229832,0.02228003,94.14606824],[4.53229775,0.02227832,94.14579992],[4.53229717,0.02227661,94.14553436],[4.5322966,0.0222749,94.14527155],[4.53229603,0.0222732,94.14501149],[4.53229545,0.02227149,94.1447542],[4.53229488,0.02226978,94.14449967],[4.5322943,0.02226807,94.14424791],[4.53229373,0.02226636,94.14399892],[4.53229316,0.02226465,94.14375272],[4.53229258,0.02226294,94.1435093],[4.53229201,0.02226123,94.14326866],[4.53229144,0.02225953,94.14303082],[4.53229086,0.02225782,94.14279577],[4.53229029,0.02225611,94.14256353],[4.53228971,0.0222544,94.14233409],[4.53228914,0.02225269,94.14210746],[4.53228857,0.02225098,94.14188364],[4.53228799,0.02224927,94.14166264],[4.53228742,0.02224756,94.14144446],[4.53228684,0.02224586,94.1412291],[4.53228627,0.02224415,94.14101658],[4.5322857,0.02224244,94.14080689],[4.53228512,0.02224073,94.14060003],[4.53228455,0.02223902,94.14039602],[4.53228397,0.02223731,94.14019485],[4.5322834,0.0222356,94.13999653],[4.53228283,0.0222339,94.13980107],[4.53228225,0.02223219,94.13960846],[4.53228168,0.02223048,94.13941871],[4.5322811,0.02222877,94.13923182],[4.53228053,0.02222706,94.13904781],[4.53227995,0.02222535,94.13886666],[4.53227938,0.02222365,94.13868839],[4.5322788,0.02222194,94.138513],[4.53227823,0.02222023,94.13834049],[4.53227765,0.02221852,94.13817086],[4.53227708,0.02221681,94.13800413],[4.5322765,0.0222151,94.13784029],[4.53227593,0.02221339,94.13767934],[4.53227535,0.02221169,94.1375213],[4.53227478,0.02220998,94.13736616],[4.5322742,0.02220827,94.13721392],[4.53227363,0.02220656,94.1370646],[4.53227305,0.02220485,94.13691819],[4.53227248,0.02220315,94.13677469],[4.5322719,0.02220144,94.13663412],[4.53227132,0.02219973,94.13649647],[4.53227075,0.02219802,94.13636175],[4.53227017,0.02219631,94.13622996],[4.5322696,0.02219461,94.1361011],[4.53226902,0.0221929,94.13597518],[4.53226844,0.02219119,94.1358522],[4.53226787,0.02218948,94.13573216],[4.53226729,0.02218778,94.13561507],[4.53226671,0.02218607,94.13550093],[4.53226613,0.02218436,94.13538975],[4.53226556,0.02218265,94.13528152],[4.53226498,0.02218094,94.13517625],[4.5322644,0.02217924,94.13507394],[4.53226383,0.02217753,94.13497461],[4.53226325,0.02217582,94.13487824],[4.53226267,0.02217412,94.13478484],[4.53226209,0.02217241,94.13469443],[4.53226151,0.0221707,94.13460699],[4.53226093,0.02216899,94.13452253],[4.53226036,0.02216729,94.13444106],[4.5322598,0.02216565,94.1343658],[4.53229081,0.022155,94.22798338],[4.53229136,0.02215664,94.22799972],[4.53229194,0.02215835,94.22801906],[4.53229252,0.02216005,94.22804074],[4.53229309,0.02216176,94.22806476],[4.53229367,0.02216347,94.22809112],[4.53229425,0.02216518,94.22811982],[4.53229483,0.02216688,94.22815085],[4.5322954,0.02216859,94.22818423],[4.53229598,0.0221703,94.22821994],[4.53229656,0.02217201,94.22825799],[4.53229714,0.02217371,94.22829838],[4.53229771,0.02217542,94.22834111],[4.53229829,0.02217713,94.22838617],[4.53229887,0.02217884,94.22843357],[4.53229945,0.02218055,94.2284833],[4.53230002,0.02218225,94.22853537],[4.5323006,0.02218396,94.22858977],[4.53230118,0.02218567,94.22864651],[4.53230175,0.02218738,94.22870558],[4.53230233,0.02218908,94.22876699],[4.53230291,0.02219079,94.22883073],[4.53230348,0.0221925,94.2288968],[4.53230406,0.02219421,94.2289652],[4.53230464,0.02219592,94.22903594],[4.53230522,0.02219762,94.22910901],[4.53230579,0.02219933,94.22918441],[4.53230637,0.02220104,94.22926214],[4.53230695,0.02220275,94.2293422],[4.53230752,0.02220445,94.22942459],[4.5323081,0.02220616,94.22950931],[4.53230868,0.02220787,94.22959636],[4.53230925,0.02220958,94.22968574],[4.53230983,0.02221129,94.22977744],[4.53231041,0.02221299,94.22987147],[4.53231098,0.0222147,94.22996783],[4.53231156,0.02221641,94.23006652],[4.53231214,0.02221812,94.23016754],[4.53231271,0.02221983,94.23027088],[4.53231329,0.02222153,94.23037654],[4.53231386,0.02222324,94.23048453],[4.53231444,0.02222495,94.23059485],[4.53231502,0.02222666,94.23070748],[4.53231559,0.02222837,94.23082245],[4.53231617,0.02223007,94.23093973],[4.53231675,0.02223178,94.23105934],[4.53231732,0.02223349,94.23118127],[4.5323179,0.0222352,94.23130552],[4.53231847,0.02223691,94.23143209],[4.53231905,0.02223861,94.23156098],[4.53231963,0.02224032,94.23169219],[4.5323202,0.02224203,94.23182572],[4.53232078,0.02224374,94.23196157],[4.53232136,0.02224545,94.23209974],[4.53232193,0.02224715,94.23224022],[4.53232251,0.02224886,94.23238302],[4.53232308,0.02225057,94.23252814],[4.53232366,0.02225228,94.23267557],[4.53232424,0.02225399,94.23282532],[4.53232481,0.02225569,94.23297738],[4.53232539,0.0222574,94.23313176],[4.53232596,0.02225911,94.23328844],[4.53232654,0.02226082,94.23344745],[4.53232712,0.02226253,94.23360876],[4.53232769,0.02226424,94.23377238],[4.53232827,0.02226594,94.23393832],[4.53232884,0.02226765,94.23410656],[4.53232942,0.02226936,94.23427712],[4.53232999,0.02227107,94.23444999],[4.53233057,0.02227278,94.23462516],[4.53233115,0.02227448,94.23480264],[4.53233172,0.02227619,94.23498243],[4.5323323,0.0222779,94.23516453],[4.53233287,0.02227961,94.23534894],[4.53233345,0.02228132,94.23553565],[4.53233403,0.02228302,94.23572466],[4.5323346,0.02228473,94.23591599],[4.53233518,0.02228644,94.23610961],[4.53233575,0.02228815,94.23630554],[4.53233633,0.02228986,94.23650377],[4.5323369,0.02229157,94.23670431],[4.53233748,0.02229327,94.23690715],[4.53233806,0.02229498,94.23711229],[4.53233863,0.02229669,94.23731972],[4.53233921,0.0222984,94.23752946],[4.53233978,0.02230011,94.2377415],[4.53234036,0.02230181,94.23795584],[4.53234093,0.02230352,94.23817247],[4.53234151,0.02230523,94.2383914],[4.53234208,0.02230694,94.23861263],[4.53234266,0.02230865,94.23883615],[4.53234324,0.02231036,94.23906197],[4.53234381,0.02231206,94.23929008],[4.53234439,0.02231377,94.23952048],[4.53234496,0.02231548,94.23975318],[4.53234554,0.02231719,94.23998816],[4.53234611,0.0223189,94.24022544],[4.53234669,0.0223206,94.24046501],[4.53234726,0.02232231,94.24070687],[4.53234784,0.02232402,94.24095101],[4.53234842,0.02232573,94.24119744],[4.53234899,0.02232744,94.24144616],[4.53234957,0.02232915,94.24169716],[4.53235014,0.02233085,94.24195045],[4.53235072,0.02233256,94.24220602],[4.53235129,0.02233427,94.24246388],[4.53235187,0.02233598,94.24272401],[4.53235244,0.02233769,94.24298643],[4.53235302,0.02233939,94.24325112],[4.5323536,0.0223411,94.2435181],[4.53235417,0.02234281,94.24378735],[4.53235475,0.02234452,94.24405888],[4.53235532,0.02234623,94.24433268],[4.5323559,0.02234793,94.24460876],[4.53235647,0.02234964,94.24488712],[4.53235705,0.02235135,94.24516774],[4.53235762,0.02235306,94.24545064],[4.5323582,0.02235477,94.24573581],[4.53235878,0.02235648,94.24602324],[4.53235935,0.02235818,94.24631295],[4.53235993,0.02235989,94.24660492],[4.5323605,0.0223616,94.24689916],[4.53236108,0.02236331,94.24719566],[4.53236165,0.02236502,94.24749443],[4.53236223,0.02236672,94.24779546],[4.5323628,0.02236843,94.24809875],[4.53236338,0.02237014,94.2484043],[4.53236396,0.02237185,94.24871212],[4.53236453,0.02237356,94.24902219],[4.53236511,0.02237526,94.24933451],[4.53236568,0.02237697,94.2496491],[4.53236626,0.02237868,94.24996593],[4.53236683,0.02238039,94.25028502],[4.53236741,0.0223821,94.25060636],[4.53236798,0.0223838,94.25092996],[4.53236856,0.02238551,94.2512558],[4.53236914,0.02238722,94.25158389],[4.53236971,0.02238893,94.25191423],[4.53237029,0.02239064,94.25224682],[4.53237086,0.02239234,94.25258165],[4.53237144,0.02239405,94.25291872],[4.53237201,0.02239576,94.25325803],[4.53237259,0.02239747,94.25359959],[4.53237317,0.02239918,94.25394338],[4.53237374,0.02240088,94.25428942],[4.53237432,0.02240259,94.25463769],[4.53237489,0.0224043,94.25498819],[4.53237547,0.02240601,94.25534093],[4.53237604,0.02240772,94.25569591],[4.53237662,0.02240942,94.25605312],[4.5323772,0.02241113,94.25641256],[4.53237777,0.02241284,94.25677423],[4.53237835,0.02241455,94.25713814],[4.53237892,0.02241626,94.25750427],[4.5323795,0.02241796,94.25787262],[4.53238008,0.02241967,94.2582432],[4.53238065,0.02242138,94.25861598],[4.53238123,0.02242309,94.25899098],[4.5323818,0.02242479,94.25936818],[4.53238238,0.0224265,94.25974758],[4.53238296,0.02242821,94.26012917],[4.53238353,0.02242992,94.26051296],[4.53238411,0.02243163,94.26089893],[4.53238468,0.02243333,94.26128708],[4.53238526,0.02243504,94.26167741],[4.53238584,0.02243675,94.26206991],[4.53238641,0.02243846,94.26246458],[4.53238699,0.02244017,94.26286142],[4.53238756,0.02244187,94.26326041],[4.53238814,0.02244358,94.26366155],[4.53238872,0.02244529,94.26406485],[4.53238929,0.022447,94.26447029],[4.53238987,0.0224487,94.26487788],[4.53239044,0.02245041,94.2652876],[4.53239102,0.02245212,94.26569945],[4.5323916,0.02245383,94.26611343],[4.53239217,0.02245554,94.26652954],[4.53239275,0.02245724,94.26694776],[4.53239332,0.02245895,94.2673681],[4.5323939,0.02246066,94.26779055],[4.53239448,0.02246237,94.26821511],[4.53239505,0.02246407,94.26864176],[4.53239563,0.02246578,94.26907052],[4.5323962,0.02246749,94.26950137],[4.53239678,0.0224692,94.26993431],[4.53239736,0.02247091,94.27036933],[4.53239793,0.02247261,94.27080644],[4.53239851,0.02247432,94.27124562],[4.53239908,0.02247603,94.27168687],[4.53239966,0.02247774,94.27213019],[4.53240024,0.02247944,94.27257558],[4.53240081,0.02248115,94.27302302],[4.53240139,0.02248286,94.27347252],[4.53240196,0.02248457,94.27392407],[4.53240254,0.02248628,94.27437767],[4.53240312,0.02248798,94.27483331],[4.53240369,0.02248969,94.275291],[4.53240427,0.0224914,94.27575071],[4.53240484,0.02249311,94.27621246],[4.53240542,0.02249481,94.27667623],[4.53240599,0.02249652,94.27714203],[4.53240657,0.02249823,94.27760984],[4.53240715,0.02249994,94.27807967],[4.53240772,0.02250165,94.27855151],[4.5324083,0.02250335,94.27902536],[4.53240887,0.02250506,94.27950121],[4.53240945,0.02250677,94.27997905],[4.53241002,0.02250848,94.2804589],[4.5324106,0.02251019,94.28094073],[4.53241117,0.02251189,94.28142455],[4.53241175,0.0225136,94.28191035],[4.53241232,0.02251531,94.28239813],[4.5324129,0.02251702,94.28288788],[4.53241348,0.02251873,94.2833796],[4.53241405,0.02252043,94.28387329],[4.53241463,0.02252214,94.28436895],[4.5324152,0.02252385,94.28486656],[4.53241578,0.02252556,94.28536612],[4.53241635,0.02252727,94.28586764],[4.53241693,0.02252897,94.28637111],[4.5324175,0.02253068,94.28687651],[4.53241808,0.02253239,94.28738386],[4.53241865,0.0225341,94.28789314],[4.53241923,0.02253581,94.28840435],[4.5324198,0.02253751,94.2889175],[4.53242037,0.02253922,94.28943256],[4.53242095,0.02254093,94.28994954],[4.53242152,0.02254264,94.29046844],[4.5324221,0.02254435,94.29098926],[4.53242267,0.02254605,94.29151198],[4.53242325,0.02254776,94.2920366],[4.53242382,0.02254947,94.29256313],[4.5324244,0.02255118,94.29309155],[4.53242497,0.02255289,94.29362186],[4.53242554,0.0225546,94.29415407],[4.53242612,0.0225563,94.29468816],[4.53242669,0.02255801,94.29522413],[4.53242727,0.02255972,94.29576197],[4.53242784,0.02256143,94.2963017],[4.53242842,0.02256314,94.29684329],[4.53242899,0.02256485,94.29738675],[4.53242956,0.02256655,94.29793207],[4.53243014,0.02256826,94.29847926],[4.53243071,0.02256997,94.29902832],[4.53243128,0.02257168,94.29957924],[4.53243186,0.02257339,94.30013204],[4.53243243,0.0225751,94.30068672],[4.532433,0.0225768,94.30124326],[4.53243358,0.02257851,94.30180169],[4.53243415,0.02258022,94.30236199],[4.53243472,0.02258193,94.30292417],[4.5324353,0.02258364,94.30348823],[4.53243587,0.02258535,94.30405418],[4.53243645,0.02258706,94.30462201],[4.53243702,0.02258877,94.30519173],[4.53243759,0.02259048,94.30576333],[4.53243817,0.02259219,94.30633683],[4.53243874,0.0225939,94.30691221],[4.53243931,0.02259561,94.30748949],[4.53243988,0.02259731,94.30806867],[4.53244046,0.02259902,94.30864974],[4.53244103,0.02260073,94.3092327],[4.5324416,0.02260244,94.30981757],[4.53244218,0.02260415,94.31040434],[4.53244275,0.02260586,94.31099301],[4.53244332,0.02260757,94.31158359],[4.53244389,0.02260927,94.31217607],[4.53244447,0.02261098,94.31277047],[4.53244504,0.02261269,94.31336677],[4.53244561,0.0226144,94.31396498],[4.53244618,0.02261611,94.31456511],[4.53244676,0.02261782,94.31516716],[4.53244733,0.02261953,94.31577112],[4.5324479,0.02262124,94.316377],[4.53244848,0.02262294,94.3169848],[4.53244905,0.02262465,94.31759453],[4.53244962,0.02262636,94.31820618],[4.53245019,0.02262807,94.31881976],[4.53245077,0.02262978,94.31943527],[4.53245134,0.02263149,94.32005271],[4.53245191,0.0226332,94.32067207],[4.53245249,0.02263491,94.32129336],[4.53245306,0.02263662,94.32191656],[4.53245363,0.02263832,94.32254169],[4.5324542,0.02264003,94.32316873],[4.53245478,0.02264174,94.32379768],[4.53245535,0.02264345,94.32442854],[4.53245592,0.02264516,94.3250613],[4.5324565,0.02264687,94.32569597],[4.53245707,0.02264858,94.32633254],[4.53245764,0.02265029,94.32697101],[4.53245821,0.02265199,94.32761137],[4.53245879,0.0226537,94.32825363],[4.53245936,0.02265541,94.32889777],[4.53245993,0.02265712,94.32954381],[4.53246051,0.02265883,94.33019172],[4.53246108,0.02266054,94.33084152],[4.53246165,0.02266225,94.3314932],[4.53246223,0.02266396,94.33214676],[4.5324628,0.02266567,94.33280218],[4.53246337,0.02266737,94.33345949],[4.53246395,0.02266908,94.33411865],[4.53246452,0.02267079,94.33477969],[4.53246509,0.0226725,94.33544259],[4.53246567,0.02267421,94.33610735],[4.53246624,0.02267592,94.33677397],[4.53246681,0.02267763,94.33744245],[4.53246739,0.02267934,94.33811278],[4.53246796,0.02268104,94.33878496],[4.53246853,0.02268275,94.33945899],[4.53246911,0.02268446,94.34013486],[4.53246968,0.02268617,94.34081258],[4.53247025,0.02268788,94.34149214],[4.53247083,0.02268959,94.34217354],[4.5324714,0.0226913,94.34285677],[4.53247197,0.02269301,94.34354183],[4.53247255,0.02269472,94.34422872],[4.53247312,0.02269642,94.34491743],[4.5324737,0.02269813,94.34560796],[4.53247427,0.02269984,94.34630031],[4.53247484,0.02270155,94.34699447],[4.53247542,0.02270326,94.34769044],[4.53247599,0.02270497,94.34838821],[4.53247656,0.02270668,94.34908779],[4.53247714,0.02270839,94.34978917],[4.53247771,0.0227101,94.35049234],[4.53247829,0.0227118,94.35119731],[4.53247886,0.02271351,94.35190407],[4.53247943,0.02271522,94.35261261],[4.53248001,0.02271693,94.35332293],[4.53248058,0.02271864,94.35403504],[4.53248115,0.02272035,94.35474892],[4.53248173,0.02272206,94.35546457],[4.5324823,0.02272377,94.356182],[4.53248288,0.02272547,94.35690119],[4.53248345,0.02272718,94.35762214],[4.53248402,0.02272889,94.35834485],[4.5324846,0.0227306,94.35906932],[4.53248517,0.02273231,94.35979554],[4.53248575,0.02273402,94.36052351],[4.53248632,0.02273573,94.36125322],[4.5324869,0.02273744,94.36198468],[4.53248747,0.02273915,94.36271787],[4.53248804,0.02274085,94.36345281],[4.53248862,0.02274256,94.36418947],[4.53248919,0.02274427,94.36492786],[4.53248977,0.02274598,94.36566799],[4.53249034,0.02274769,94.36640985],[4.53249091,0.0227494,94.36715347],[4.53249149,0.02275111,94.36789884],[4.53249206,0.02275282,94.36864598],[4.53249264,0.02275453,94.36939489],[4.53249321,0.02275623,94.37014559],[4.53249379,0.02275794,94.37089809],[4.53249436,0.02275965,94.37165238],[4.53249494,0.02276136,94.37240849],[4.53249551,0.02276307,94.37316641],[4.53249608,0.02276478,94.37392616],[4.53249666,0.02276649,94.37468775],[4.53249723,0.0227682,94.37545118],[4.53249781,0.02276991,94.37621646],[4.53249838,0.02277161,94.3769836],[4.53249896,0.02277332,94.3777526],[4.53249953,0.02277503,94.37852349],[4.53250011,0.02277674,94.37929625],[4.53250068,0.02277845,94.38007091],[4.53250125,0.02278016,94.38084747],[4.53250183,0.02278187,94.38162593],[4.5325024,0.02278358,94.38240631],[4.53250298,0.02278529,94.3831886],[4.53250355,0.02278699,94.38397283],[4.53250413,0.0227887,94.38475899],[4.5325047,0.02279041,94.3855471],[4.53250528,0.02279212,94.38633716],[4.53250585,0.02279383,94.38712918],[4.53250643,0.02279554,94.38792316],[4.532507,0.02279725,94.38871911],[4.53250758,0.02279896,94.38951705],[4.53250815,0.02280067,94.39031697],[4.53250873,0.02280237,94.39111888],[4.5325093,0.02280408,94.3919228],[4.53250988,0.02280579,94.39272872],[4.53251045,0.0228075,94.39353665],[4.53251103,0.02280921,94.39434661],[4.5325116,0.02281092,94.39515859],[4.53251217,0.02281263,94.3959726],[4.53251275,0.02281434,94.39678865],[4.53251332,0.02281605,94.39760675],[4.5325139,0.02281775,94.39842691],[4.53251447,0.02281946,94.39924912],[4.53251505,0.02282117,94.40007339],[4.53251562,0.02282288,94.40089974],[4.5325162,0.02282459,94.40172816],[4.53251677,0.0228263,94.40255867],[4.53251735,0.02282801,94.40339126],[4.53251792,0.02282972,94.40422594],[4.5325185,0.02283143,94.40506269],[4.53251907,0.02283314,94.40590153],[4.53251965,0.02283484,94.40674244],[4.53252022,0.02283655,94.40758542],[4.5325208,0.02283826,94.40843048],[4.53252137,0.02283997,94.40927761],[4.53252195,0.02284168,94.4101268],[4.53252252,0.02284339,94.41097806],[4.5325231,0.0228451,94.41183138],[4.53252367,0.02284681,94.41268676],[4.53252425,0.02284852,94.41354419],[4.53252482,0.02285023,94.41440367],[4.5325254,0.02285194,94.4152652],[4.53252597,0.02285364,94.41612878],[4.53252655,0.02285535,94.4169944],[4.53252712,0.02285706,94.41786207],[4.5325277,0.02285877,94.41873179],[4.53252827,0.02286048,94.41960355],[4.53252885,0.02286219,94.42047736],[4.53252942,0.0228639,94.42135323],[4.53253,0.02286561,94.42223115],[4.53253057,0.02286732,94.42311112],[4.53253114,0.02286903,94.42399315],[4.53253172,0.02287074,94.42487724],[4.53253229,0.02287245,94.42576339],[4.53253287,0.02287416,94.42665159],[4.53253344,0.02287586,94.42754186],[4.53253402,0.02287757,94.4284342],[4.53253459,0.02287928,94.4293286],[4.53253516,0.02288099,94.43022506],[4.53253574,0.0228827,94.4311236],[4.53253631,0.02288441,94.4320242],[4.53253689,0.02288612,94.43292688],[4.53253746,0.02288783,94.43383163],[4.53253803,0.02288954,94.43473845],[4.53253861,0.02289125,94.43564736],[4.53253918,0.02289296,94.43655834],[4.53253975,0.02289467,94.4374714],[4.53254033,0.02289638,94.43838655],[4.5325409,0.02289809,94.43930379],[4.53254148,0.0228998,94.44022311],[4.53254205,0.02290151,94.44114453],[4.53254262,0.02290322,94.44206803],[4.53254319,0.02290493,94.44299364],[4.53254377,0.02290664,94.44392134],[4.53254434,0.02290835,94.44485115],[4.53254491,0.02291006,94.44578306],[4.53254549,0.02291177,94.44671708],[4.53254606,0.02291348,94.44765321],[4.53254663,0.02291519,94.44859145],[4.53254721,0.0229169,94.44953182],[4.53254778,0.02291861,94.45047431],[4.53254835,0.02292032,94.45141892],[4.53254892,0.02292203,94.45236567],[4.5325495,0.02292374,94.45331455],[4.53255007,0.02292545,94.45426557],[4.53255064,0.02292716,94.45521874],[4.53255121,0.02292887,94.45617405],[4.53255178,0.02293058,94.45713152],[4.53255236,0.02293229,94.45809115],[4.53255293,0.022934,94.45905295],[4.5325535,0.02293571,94.46001692],[4.53255407,0.02293742,94.46098307],[4.53255464,0.02293913,94.4619514],[4.53255521,0.02294084,94.46292193],[4.53255579,0.02294256,94.46389465],[4.53255636,0.02294427,94.46486958],[4.53255693,0.02294598,94.46584673],[4.5325575,0.02294769,94.46682609],[4.53255807,0.0229494,94.46780768],[4.53255864,0.02295111,94.46879152],[4.53255921,0.02295282,94.4697776],[4.53255978,0.02295453,94.47076593],[4.53256035,0.02295624,94.47175657],[4.53256092,0.02295795,94.47274953],[4.53256149,0.02295966,94.47374486],[4.53256206,0.02296138,94.47474259],[4.53256263,0.02296309,94.47574277],[4.5325632,0.0229648,94.47674541],[4.53256377,0.02296651,94.47775056],[4.53256434,0.02296822,94.47875825],[4.53256491,0.02296993,94.4797685],[4.53256548,0.02297164,94.48078134],[4.53256605,0.02297335,94.48179681],[4.53256662,0.02297507,94.48281494],[4.53256719,0.02297678,94.48383576],[4.53256776,0.02297849,94.4848593],[4.53256833,0.0229802,94.4858856],[4.5325689,0.02298191,94.48691468],[4.53256947,0.02298362,94.48794657],[4.53257004,0.02298533,94.48898132],[4.53257061,0.02298705,94.49001895],[4.53257118,0.02298876,94.4910595],[4.53257175,0.02299047,94.49210299],[4.53257232,0.02299218,94.49314946],[4.53257289,0.02299389,94.49419895],[4.53257346,0.0229956,94.49525148],[4.53257403,0.02299732,94.49630709],[4.5325746,0.02299903,94.49736582],[4.53257517,0.02300074,94.49842769],[4.53257574,0.02300245,94.49949272],[4.53257631,0.02300416,94.50056082],[4.53257688,0.02300587,94.50163189],[4.53257745,0.02300758,94.50270581],[4.53257802,0.02300929,94.50378247],[4.53257859,0.02301101,94.50486178],[4.53257916,0.02301272,94.5059436],[4.53257973,0.02301443,94.50702785],[4.5325803,0.02301614,94.50811439],[4.53258087,0.02301785,94.50920313],[4.53258144,0.02301956,94.51029395],[4.53258201,0.02302127,94.51138673],[4.53258258,0.02302298,94.51248137],[4.53258316,0.02302469,94.51357775],[4.53258373,0.0230264,94.51467576],[4.5325843,0.02302811,94.51577528],[4.53258487,0.02302982,94.5168762],[4.53258544,0.02303154,94.51797839],[4.53258601,0.02303325,94.51908176],[4.53258658,0.02303496,94.52018617],[4.53258715,0.02303667,94.52129151],[4.53258772,0.02303838,94.52239767],[4.53258829,0.02304009,94.52350452],[4.53258886,0.0230418,94.52461196],[4.53258943,0.02304351,94.52571984],[4.53259,0.02304522,94.52682807],[4.53259058,0.02304693,94.52793651],[4.53259115,0.02304864,94.52904505],[4.53259172,0.02305035,94.53015356],[4.53259229,0.02305206,94.53126191],[4.53259286,0.02305377,94.53236993],[4.53259343,0.02305548,94.53347749],[4.532594,0.02305719,94.53458441],[4.53259457,0.0230589,94.53569055],[4.53259515,0.02306061,94.53679576],[4.53259572,0.02306232,94.53789988],[4.53259629,0.02306403,94.53900275],[4.53259686,0.02306574,94.54010422],[4.53259743,0.02306745,94.54120414],[4.532598,0.02306916,94.54230236],[4.53259857,0.02307086,94.54339873],[4.53259914,0.02307257,94.54449308],[4.53259971,0.02307428,94.54558528],[4.53260028,0.02307599,94.54667522],[4.53260086,0.0230777,94.54776278],[4.53260143,0.02307941,94.54884785],[4.532602,0.02308112,94.54993033],[4.53260257,0.02308283,94.5510101],[4.53260314,0.02308454,94.55208705],[4.53260371,0.02308625,94.55316107],[4.53260428,0.02308796,94.55423204],[4.53260485,0.02308967,94.55529986],[4.53260542,0.02309138,94.55636439],[4.53260599,0.02309309,94.55742553],[4.53260656,0.0230948,94.55848315],[4.53260713,0.02309651,94.55953714],[4.5326077,0.02309822,94.56058739],[4.53260827,0.02309993,94.56163376],[4.53260884,0.02310164,94.56267614],[4.53260941,0.02310335,94.56371441],[4.53260998,0.02310505,94.56474844],[4.53261055,0.02310676,94.56577811],[4.53261112,0.02310847,94.56680329],[4.53261169,0.02311018,94.56782387],[4.53261226,0.02311189,94.56883971],[4.53261283,0.0231136,94.56985067],[4.5326134,0.02311531,94.57085662],[4.53261397,0.02311702,94.5718574],[4.53261454,0.02311873,94.57285286],[4.53261511,0.02312043,94.57384285],[4.53261568,0.02312214,94.57482723],[4.53261625,0.02312385,94.57580585],[4.53261682,0.02312556,94.57677855],[4.5326174,0.02312727,94.5777452],[4.53261797,0.02312898,94.57870564],[4.53261854,0.02313069,94.57965973],[4.53261911,0.02313239,94.58060731],[4.53261968,0.0231341,94.58154824],[4.53262025,0.02313581,94.58248237],[4.53262082,0.02313752,94.58340955],[4.53262139,0.02313923,94.58432964],[4.53262196,0.02314094,94.58524248],[4.53262253,0.02314264,94.58614794],[4.5326231,0.02314435,94.58704585],[4.53262367,0.02314606,94.58793609],[4.53262424,0.02314777,94.58881849],[4.53262481,0.02314948,94.58969293],[4.53262539,0.02315118,94.59055931],[4.53262596,0.02315289,94.59141756],[4.53262653,0.0231546,94.5922676],[4.5326271,0.02315631,94.59310936],[4.53262767,0.02315802,94.59394275],[4.53262824,0.02315972,94.59476772],[4.53262881,0.02316143,94.59558417],[4.53262938,0.02316314,94.59639203],[4.53262995,0.02316485,94.59719124],[4.53263052,0.02316656,94.59798171],[4.53263109,0.02316826,94.59876337],[4.53263166,0.02316997,94.59953614],[4.53263223,0.02317168,94.60029997],[4.5326328,0.02317339,94.60105476],[4.53263337,0.0231751,94.60180045],[4.53263394,0.0231768,94.60253696],[4.53263451,0.02317851,94.60326423],[4.53263508,0.02318022,94.60398218],[4.53263565,0.02318193,94.60469074],[4.53263622,0.02318363,94.60538983],[4.53263679,0.02318534,94.6060794],[4.53263735,0.02318705,94.60675936],[4.53263792,0.02318876,94.60742965],[4.53263849,0.02319047,94.6080902],[4.53263906,0.02319217,94.60874094],[4.53263963,0.02319388,94.60938179],[4.5326402,0.02319559,94.6100127],[4.53264077,0.0231973,94.6106336],[4.53264134,0.023199,94.61124441],[4.5326419,0.02320071,94.61184507],[4.53264247,0.02320242,94.61243552],[4.53264304,0.02320413,94.61301573],[4.53264361,0.02320584,94.61358588],[4.53264417,0.02320754,94.61414619],[4.53264474,0.02320925,94.6146969],[4.53264531,0.02321096,94.61523825],[4.53261427,0.02322138,94.56258339]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004200","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2,"sOffset":35.4036855625}},{"geometry":{"coordinates":[[[4.53264531,0.02321096,94.61523825],[4.53264474,0.02320925,94.6146969],[4.53264417,0.02320754,94.61414619],[4.53264361,0.02320584,94.61358588],[4.53264304,0.02320413,94.61301573],[4.53264247,0.02320242,94.61243552],[4.5326419,0.02320071,94.61184507],[4.53264134,0.023199,94.61124441],[4.53264077,0.0231973,94.6106336],[4.5326402,0.02319559,94.6100127],[4.53263963,0.02319388,94.60938179],[4.53263906,0.02319217,94.60874094],[4.53263849,0.02319047,94.6080902],[4.53263792,0.02318876,94.60742965],[4.53263735,0.02318705,94.60675936],[4.53263679,0.02318534,94.6060794],[4.53263622,0.02318363,94.60538983],[4.53263565,0.02318193,94.60469074],[4.53263508,0.02318022,94.60398218],[4.53263451,0.02317851,94.60326423],[4.53263394,0.0231768,94.60253696],[4.53263337,0.0231751,94.60180045],[4.5326328,0.02317339,94.60105476],[4.53263223,0.02317168,94.60029997],[4.53263166,0.02316997,94.59953614],[4.53263109,0.02316826,94.59876337],[4.53263052,0.02316656,94.59798171],[4.53262995,0.02316485,94.59719124],[4.53262938,0.02316314,94.59639203],[4.53262881,0.02316143,94.59558417],[4.53262824,0.02315972,94.59476772],[4.53262767,0.02315802,94.59394275],[4.5326271,0.02315631,94.59310936],[4.53262653,0.0231546,94.5922676],[4.53262596,0.02315289,94.59141756],[4.53262539,0.02315118,94.59055931],[4.53262481,0.02314948,94.58969293],[4.53262424,0.02314777,94.58881849],[4.53262367,0.02314606,94.58793609],[4.5326231,0.02314435,94.58704585],[4.53262253,0.02314264,94.58614794],[4.53262196,0.02314094,94.58524248],[4.53262139,0.02313923,94.58432964],[4.53262082,0.02313752,94.58340955],[4.53262025,0.02313581,94.58248237],[4.53261968,0.0231341,94.58154824],[4.53261911,0.02313239,94.58060731],[4.53261854,0.02313069,94.57965973],[4.53261797,0.02312898,94.57870564],[4.5326174,0.02312727,94.5777452],[4.53261682,0.02312556,94.57677855],[4.53261625,0.02312385,94.57580585],[4.53261568,0.02312214,94.57482723],[4.53261511,0.02312043,94.57384285],[4.53261454,0.02311873,94.57285286],[4.53261397,0.02311702,94.5718574],[4.5326134,0.02311531,94.57085662],[4.53261283,0.0231136,94.56985067],[4.53261226,0.02311189,94.56883971],[4.53261169,0.02311018,94.56782387],[4.53261112,0.02310847,94.56680329],[4.53261055,0.02310676,94.56577811],[4.53260998,0.02310505,94.56474844],[4.53260941,0.02310335,94.56371441],[4.53260884,0.02310164,94.56267614],[4.53260827,0.02309993,94.56163376],[4.5326077,0.02309822,94.56058739],[4.53260713,0.02309651,94.55953714],[4.53260656,0.0230948,94.55848315],[4.53260599,0.02309309,94.55742553],[4.53260542,0.02309138,94.55636439],[4.53260485,0.02308967,94.55529986],[4.53260428,0.02308796,94.55423204],[4.53260371,0.02308625,94.55316107],[4.53260314,0.02308454,94.55208705],[4.53260257,0.02308283,94.5510101],[4.532602,0.02308112,94.54993033],[4.53260143,0.02307941,94.54884785],[4.53260086,0.0230777,94.54776278],[4.53260028,0.02307599,94.54667522],[4.53259971,0.02307428,94.54558528],[4.53259914,0.02307257,94.54449308],[4.53259857,0.02307086,94.54339873],[4.532598,0.02306916,94.54230236],[4.53259743,0.02306745,94.54120414],[4.53259686,0.02306574,94.54010422],[4.53259629,0.02306403,94.53900275],[4.53259572,0.02306232,94.53789988],[4.53259515,0.02306061,94.53679576],[4.53259457,0.0230589,94.53569055],[4.532594,0.02305719,94.53458441],[4.53259343,0.02305548,94.53347749],[4.53259286,0.02305377,94.53236993],[4.53259229,0.02305206,94.53126191],[4.53259172,0.02305035,94.53015356],[4.53259115,0.02304864,94.52904505],[4.53259058,0.02304693,94.52793651],[4.53259,0.02304522,94.52682807],[4.53258943,0.02304351,94.52571984],[4.53258886,0.0230418,94.52461196],[4.53258829,0.02304009,94.52350452],[4.53258772,0.02303838,94.52239767],[4.53258715,0.02303667,94.52129151],[4.53258658,0.02303496,94.52018617],[4.53258601,0.02303325,94.51908176],[4.53258544,0.02303154,94.51797839],[4.53258487,0.02302982,94.5168762],[4.5325843,0.02302811,94.51577528],[4.53258373,0.0230264,94.51467576],[4.53258316,0.02302469,94.51357775],[4.53258258,0.02302298,94.51248137],[4.53258201,0.02302127,94.51138673],[4.53258144,0.02301956,94.51029395],[4.53258087,0.02301785,94.50920313],[4.5325803,0.02301614,94.50811439],[4.53257973,0.02301443,94.50702785],[4.53257916,0.02301272,94.5059436],[4.53257859,0.02301101,94.50486178],[4.53257802,0.02300929,94.50378247],[4.53257745,0.02300758,94.50270581],[4.53257688,0.02300587,94.50163189],[4.53257631,0.02300416,94.50056082],[4.53257574,0.02300245,94.49949272],[4.53257517,0.02300074,94.49842769],[4.5325746,0.02299903,94.49736582],[4.53257403,0.02299732,94.49630709],[4.53257346,0.0229956,94.49525148],[4.53257289,0.02299389,94.49419895],[4.53257232,0.02299218,94.49314946],[4.53257175,0.02299047,94.49210299],[4.53257118,0.02298876,94.4910595],[4.53257061,0.02298705,94.49001895],[4.53257004,0.02298533,94.48898132],[4.53256947,0.02298362,94.48794657],[4.5325689,0.02298191,94.48691468],[4.53256833,0.0229802,94.4858856],[4.53256776,0.02297849,94.4848593],[4.53256719,0.02297678,94.48383576],[4.53256662,0.02297507,94.48281494],[4.53256605,0.02297335,94.48179681],[4.53256548,0.02297164,94.48078134],[4.53256491,0.02296993,94.4797685],[4.53256434,0.02296822,94.47875825],[4.53256377,0.02296651,94.47775056],[4.5325632,0.0229648,94.47674541],[4.53256263,0.02296309,94.47574277],[4.53256206,0.02296138,94.47474259],[4.53256149,0.02295966,94.47374486],[4.53256092,0.02295795,94.47274953],[4.53256035,0.02295624,94.47175657],[4.53255978,0.02295453,94.47076593],[4.53255921,0.02295282,94.4697776],[4.53255864,0.02295111,94.46879152],[4.53255807,0.0229494,94.46780768],[4.5325575,0.02294769,94.46682609],[4.53255693,0.02294598,94.46584673],[4.53255636,0.02294427,94.46486958],[4.53255579,0.02294256,94.46389465],[4.53255521,0.02294084,94.46292193],[4.53255464,0.02293913,94.4619514],[4.53255407,0.02293742,94.46098307],[4.5325535,0.02293571,94.46001692],[4.53255293,0.022934,94.45905295],[4.53255236,0.02293229,94.45809115],[4.53255178,0.02293058,94.45713152],[4.53255121,0.02292887,94.45617405],[4.53255064,0.02292716,94.45521874],[4.53255007,0.02292545,94.45426557],[4.5325495,0.02292374,94.45331455],[4.53254892,0.02292203,94.45236567],[4.53254835,0.02292032,94.45141892],[4.53254778,0.02291861,94.45047431],[4.53254721,0.0229169,94.44953182],[4.53254663,0.02291519,94.44859145],[4.53254606,0.02291348,94.44765321],[4.53254549,0.02291177,94.44671708],[4.53254491,0.02291006,94.44578306],[4.53254434,0.02290835,94.44485115],[4.53254377,0.02290664,94.44392134],[4.53254319,0.02290493,94.44299364],[4.53254262,0.02290322,94.44206803],[4.53254205,0.02290151,94.44114453],[4.53254148,0.0228998,94.44022311],[4.5325409,0.02289809,94.43930379],[4.53254033,0.02289638,94.43838655],[4.53253975,0.02289467,94.4374714],[4.53253918,0.02289296,94.43655834],[4.53253861,0.02289125,94.43564736],[4.53253803,0.02288954,94.43473845],[4.53253746,0.02288783,94.43383163],[4.53253689,0.02288612,94.43292688],[4.53253631,0.02288441,94.4320242],[4.53253574,0.0228827,94.4311236],[4.53253516,0.02288099,94.43022506],[4.53253459,0.02287928,94.4293286],[4.53253402,0.02287757,94.4284342],[4.53253344,0.02287586,94.42754186],[4.53253287,0.02287416,94.42665159],[4.53253229,0.02287245,94.42576339],[4.53253172,0.02287074,94.42487724],[4.53253114,0.02286903,94.42399315],[4.53253057,0.02286732,94.42311112],[4.53253,0.02286561,94.42223115],[4.53252942,0.0228639,94.42135323],[4.53252885,0.02286219,94.42047736],[4.53252827,0.02286048,94.41960355],[4.5325277,0.02285877,94.41873179],[4.53252712,0.02285706,94.41786207],[4.53252655,0.02285535,94.4169944],[4.53252597,0.02285364,94.41612878],[4.5325254,0.02285194,94.4152652],[4.53252482,0.02285023,94.41440367],[4.53252425,0.02284852,94.41354419],[4.53252367,0.02284681,94.41268676],[4.5325231,0.0228451,94.41183138],[4.53252252,0.02284339,94.41097806],[4.53252195,0.02284168,94.4101268],[4.53252137,0.02283997,94.40927761],[4.5325208,0.02283826,94.40843048],[4.53252022,0.02283655,94.40758542],[4.53251965,0.02283484,94.40674244],[4.53251907,0.02283314,94.40590153],[4.5325185,0.02283143,94.40506269],[4.53251792,0.02282972,94.40422594],[4.53251735,0.02282801,94.40339126],[4.53251677,0.0228263,94.40255867],[4.5325162,0.02282459,94.40172816],[4.53251562,0.02282288,94.40089974],[4.53251505,0.02282117,94.40007339],[4.53251447,0.02281946,94.39924912],[4.5325139,0.02281775,94.39842691],[4.53251332,0.02281605,94.39760675],[4.53251275,0.02281434,94.39678865],[4.53251217,0.02281263,94.3959726],[4.5325116,0.02281092,94.39515859],[4.53251103,0.02280921,94.39434661],[4.53251045,0.0228075,94.39353665],[4.53250988,0.02280579,94.39272872],[4.5325093,0.02280408,94.3919228],[4.53250873,0.02280237,94.39111888],[4.53250815,0.02280067,94.39031697],[4.53250758,0.02279896,94.38951705],[4.532507,0.02279725,94.38871911],[4.53250643,0.02279554,94.38792316],[4.53250585,0.02279383,94.38712918],[4.53250528,0.02279212,94.38633716],[4.5325047,0.02279041,94.3855471],[4.53250413,0.0227887,94.38475899],[4.53250355,0.02278699,94.38397283],[4.53250298,0.02278529,94.3831886],[4.5325024,0.02278358,94.38240631],[4.53250183,0.02278187,94.38162593],[4.53250125,0.02278016,94.38084747],[4.53250068,0.02277845,94.38007091],[4.53250011,0.02277674,94.37929625],[4.53249953,0.02277503,94.37852349],[4.53249896,0.02277332,94.3777526],[4.53249838,0.02277161,94.3769836],[4.53249781,0.02276991,94.37621646],[4.53249723,0.0227682,94.37545118],[4.53249666,0.02276649,94.37468775],[4.53249608,0.02276478,94.37392616],[4.53249551,0.02276307,94.37316641],[4.53249494,0.02276136,94.37240849],[4.53249436,0.02275965,94.37165238],[4.53249379,0.02275794,94.37089809],[4.53249321,0.02275623,94.37014559],[4.53249264,0.02275453,94.36939489],[4.53249206,0.02275282,94.36864598],[4.53249149,0.02275111,94.36789884],[4.53249091,0.0227494,94.36715347],[4.53249034,0.02274769,94.36640985],[4.53248977,0.02274598,94.36566799],[4.53248919,0.02274427,94.36492786],[4.53248862,0.02274256,94.36418947],[4.53248804,0.02274085,94.36345281],[4.53248747,0.02273915,94.36271787],[4.5324869,0.02273744,94.36198468],[4.53248632,0.02273573,94.36125322],[4.53248575,0.02273402,94.36052351],[4.53248517,0.02273231,94.35979554],[4.5324846,0.0227306,94.35906932],[4.53248402,0.02272889,94.35834485],[4.53248345,0.02272718,94.35762214],[4.53248288,0.02272547,94.35690119],[4.5324823,0.02272377,94.356182],[4.53248173,0.02272206,94.35546457],[4.53248115,0.02272035,94.35474892],[4.53248058,0.02271864,94.35403504],[4.53248001,0.02271693,94.35332293],[4.53247943,0.02271522,94.35261261],[4.53247886,0.02271351,94.35190407],[4.53247829,0.0227118,94.35119731],[4.53247771,0.0227101,94.35049234],[4.53247714,0.02270839,94.34978917],[4.53247656,0.02270668,94.34908779],[4.53247599,0.02270497,94.34838821],[4.53247542,0.02270326,94.34769044],[4.53247484,0.02270155,94.34699447],[4.53247427,0.02269984,94.34630031],[4.5324737,0.02269813,94.34560796],[4.53247312,0.02269642,94.34491743],[4.53247255,0.02269472,94.34422872],[4.53247197,0.02269301,94.34354183],[4.5324714,0.0226913,94.34285677],[4.53247083,0.02268959,94.34217354],[4.53247025,0.02268788,94.34149214],[4.53246968,0.02268617,94.34081258],[4.53246911,0.02268446,94.34013486],[4.53246853,0.02268275,94.33945899],[4.53246796,0.02268104,94.33878496],[4.53246739,0.02267934,94.33811278],[4.53246681,0.02267763,94.33744245],[4.53246624,0.02267592,94.33677397],[4.53246567,0.02267421,94.33610735],[4.53246509,0.0226725,94.33544259],[4.53246452,0.02267079,94.33477969],[4.53246395,0.02266908,94.33411865],[4.53246337,0.02266737,94.33345949],[4.5324628,0.02266567,94.33280218],[4.53246223,0.02266396,94.33214676],[4.53246165,0.02266225,94.3314932],[4.53246108,0.02266054,94.33084152],[4.53246051,0.02265883,94.33019172],[4.53245993,0.02265712,94.32954381],[4.53245936,0.02265541,94.32889777],[4.53245879,0.0226537,94.32825363],[4.53245821,0.02265199,94.32761137],[4.53245764,0.02265029,94.32697101],[4.53245707,0.02264858,94.32633254],[4.5324565,0.02264687,94.32569597],[4.53245592,0.02264516,94.3250613],[4.53245535,0.02264345,94.32442854],[4.53245478,0.02264174,94.32379768],[4.5324542,0.02264003,94.32316873],[4.53245363,0.02263832,94.32254169],[4.53245306,0.02263662,94.32191656],[4.53245249,0.02263491,94.32129336],[4.53245191,0.0226332,94.32067207],[4.53245134,0.02263149,94.32005271],[4.53245077,0.02262978,94.31943527],[4.53245019,0.02262807,94.31881976],[4.53244962,0.02262636,94.31820618],[4.53244905,0.02262465,94.31759453],[4.53244848,0.02262294,94.3169848],[4.5324479,0.02262124,94.316377],[4.53244733,0.02261953,94.31577112],[4.53244676,0.02261782,94.31516716],[4.53244618,0.02261611,94.31456511],[4.53244561,0.0226144,94.31396498],[4.53244504,0.02261269,94.31336677],[4.53244447,0.02261098,94.31277047],[4.53244389,0.02260927,94.31217607],[4.53244332,0.02260757,94.31158359],[4.53244275,0.02260586,94.31099301],[4.53244218,0.02260415,94.31040434],[4.5324416,0.02260244,94.30981757],[4.53244103,0.02260073,94.3092327],[4.53244046,0.02259902,94.30864974],[4.53243988,0.02259731,94.30806867],[4.53243931,0.02259561,94.30748949],[4.53243874,0.0225939,94.30691221],[4.53243817,0.02259219,94.30633683],[4.53243759,0.02259048,94.30576333],[4.53243702,0.02258877,94.30519173],[4.53243645,0.02258706,94.30462201],[4.53243587,0.02258535,94.30405418],[4.5324353,0.02258364,94.30348823],[4.53243472,0.02258193,94.30292417],[4.53243415,0.02258022,94.30236199],[4.53243358,0.02257851,94.30180169],[4.532433,0.0225768,94.30124326],[4.53243243,0.0225751,94.30068672],[4.53243186,0.02257339,94.30013204],[4.53243128,0.02257168,94.29957924],[4.53243071,0.02256997,94.29902832],[4.53243014,0.02256826,94.29847926],[4.53242956,0.02256655,94.29793207],[4.53242899,0.02256485,94.29738675],[4.53242842,0.02256314,94.29684329],[4.53242784,0.02256143,94.2963017],[4.53242727,0.02255972,94.29576197],[4.53242669,0.02255801,94.29522413],[4.53242612,0.0225563,94.29468816],[4.53242554,0.0225546,94.29415407],[4.53242497,0.02255289,94.29362186],[4.5324244,0.02255118,94.29309155],[4.53242382,0.02254947,94.29256313],[4.53242325,0.02254776,94.2920366],[4.53242267,0.02254605,94.29151198],[4.5324221,0.02254435,94.29098926],[4.53242152,0.02254264,94.29046844],[4.53242095,0.02254093,94.28994954],[4.53242037,0.02253922,94.28943256],[4.5324198,0.02253751,94.2889175],[4.53241923,0.02253581,94.28840435],[4.53241865,0.0225341,94.28789314],[4.53241808,0.02253239,94.28738386],[4.5324175,0.02253068,94.28687651],[4.53241693,0.02252897,94.28637111],[4.53241635,0.02252727,94.28586764],[4.53241578,0.02252556,94.28536612],[4.5324152,0.02252385,94.28486656],[4.53241463,0.02252214,94.28436895],[4.53241405,0.02252043,94.28387329],[4.53241348,0.02251873,94.2833796],[4.5324129,0.02251702,94.28288788],[4.53241232,0.02251531,94.28239813],[4.53241175,0.0225136,94.28191035],[4.53241117,0.02251189,94.28142455],[4.5324106,0.02251019,94.28094073],[4.53241002,0.02250848,94.2804589],[4.53240945,0.02250677,94.27997905],[4.53240887,0.02250506,94.27950121],[4.5324083,0.02250335,94.27902536],[4.53240772,0.02250165,94.27855151],[4.53240715,0.02249994,94.27807967],[4.53240657,0.02249823,94.27760984],[4.53240599,0.02249652,94.27714203],[4.53240542,0.02249481,94.27667623],[4.53240484,0.02249311,94.27621246],[4.53240427,0.0224914,94.27575071],[4.53240369,0.02248969,94.275291],[4.53240312,0.02248798,94.27483331],[4.53240254,0.02248628,94.27437767],[4.53240196,0.02248457,94.27392407],[4.53240139,0.02248286,94.27347252],[4.53240081,0.02248115,94.27302302],[4.53240024,0.02247944,94.27257558],[4.53239966,0.02247774,94.27213019],[4.53239908,0.02247603,94.27168687],[4.53239851,0.02247432,94.27124562],[4.53239793,0.02247261,94.27080644],[4.53239736,0.02247091,94.27036933],[4.53239678,0.0224692,94.26993431],[4.5323962,0.02246749,94.26950137],[4.53239563,0.02246578,94.26907052],[4.53239505,0.02246407,94.26864176],[4.53239448,0.02246237,94.26821511],[4.5323939,0.02246066,94.26779055],[4.53239332,0.02245895,94.2673681],[4.53239275,0.02245724,94.26694776],[4.53239217,0.02245554,94.26652954],[4.5323916,0.02245383,94.26611343],[4.53239102,0.02245212,94.26569945],[4.53239044,0.02245041,94.2652876],[4.53238987,0.0224487,94.26487788],[4.53238929,0.022447,94.26447029],[4.53238872,0.02244529,94.26406485],[4.53238814,0.02244358,94.26366155],[4.53238756,0.02244187,94.26326041],[4.53238699,0.02244017,94.26286142],[4.53238641,0.02243846,94.26246458],[4.53238584,0.02243675,94.26206991],[4.53238526,0.02243504,94.26167741],[4.53238468,0.02243333,94.26128708],[4.53238411,0.02243163,94.26089893],[4.53238353,0.02242992,94.26051296],[4.53238296,0.02242821,94.26012917],[4.53238238,0.0224265,94.25974758],[4.5323818,0.02242479,94.25936818],[4.53238123,0.02242309,94.25899098],[4.53238065,0.02242138,94.25861598],[4.53238008,0.02241967,94.2582432],[4.5323795,0.02241796,94.25787262],[4.53237892,0.02241626,94.25750427],[4.53237835,0.02241455,94.25713814],[4.53237777,0.02241284,94.25677423],[4.5323772,0.02241113,94.25641256],[4.53237662,0.02240942,94.25605312],[4.53237604,0.02240772,94.25569591],[4.53237547,0.02240601,94.25534093],[4.53237489,0.0224043,94.25498819],[4.53237432,0.02240259,94.25463769],[4.53237374,0.02240088,94.25428942],[4.53237317,0.02239918,94.25394338],[4.53237259,0.02239747,94.25359959],[4.53237201,0.02239576,94.25325803],[4.53237144,0.02239405,94.25291872],[4.53237086,0.02239234,94.25258165],[4.53237029,0.02239064,94.25224682],[4.53236971,0.02238893,94.25191423],[4.53236914,0.02238722,94.25158389],[4.53236856,0.02238551,94.2512558],[4.53236798,0.0223838,94.25092996],[4.53236741,0.0223821,94.25060636],[4.53236683,0.02238039,94.25028502],[4.53236626,0.02237868,94.24996593],[4.53236568,0.02237697,94.2496491],[4.53236511,0.02237526,94.24933451],[4.53236453,0.02237356,94.24902219],[4.53236396,0.02237185,94.24871212],[4.53236338,0.02237014,94.2484043],[4.5323628,0.02236843,94.24809875],[4.53236223,0.02236672,94.24779546],[4.53236165,0.02236502,94.24749443],[4.53236108,0.02236331,94.24719566],[4.5323605,0.0223616,94.24689916],[4.53235993,0.02235989,94.24660492],[4.53235935,0.02235818,94.24631295],[4.53235878,0.02235648,94.24602324],[4.5323582,0.02235477,94.24573581],[4.53235762,0.02235306,94.24545064],[4.53235705,0.02235135,94.24516774],[4.53235647,0.02234964,94.24488712],[4.5323559,0.02234793,94.24460876],[4.53235532,0.02234623,94.24433268],[4.53235475,0.02234452,94.24405888],[4.53235417,0.02234281,94.24378735],[4.5323536,0.0223411,94.2435181],[4.53235302,0.02233939,94.24325112],[4.53235244,0.02233769,94.24298643],[4.53235187,0.02233598,94.24272401],[4.53235129,0.02233427,94.24246388],[4.53235072,0.02233256,94.24220602],[4.53235014,0.02233085,94.24195045],[4.53234957,0.02232915,94.24169716],[4.53234899,0.02232744,94.24144616],[4.53234842,0.02232573,94.24119744],[4.53234784,0.02232402,94.24095101],[4.53234726,0.02232231,94.24070687],[4.53234669,0.0223206,94.24046501],[4.53234611,0.0223189,94.24022544],[4.53234554,0.02231719,94.23998816],[4.53234496,0.02231548,94.23975318],[4.53234439,0.02231377,94.23952048],[4.53234381,0.02231206,94.23929008],[4.53234324,0.02231036,94.23906197],[4.53234266,0.02230865,94.23883615],[4.53234208,0.02230694,94.23861263],[4.53234151,0.02230523,94.2383914],[4.53234093,0.02230352,94.23817247],[4.53234036,0.02230181,94.23795584],[4.53233978,0.02230011,94.2377415],[4.53233921,0.0222984,94.23752946],[4.53233863,0.02229669,94.23731972],[4.53233806,0.02229498,94.23711229],[4.53233748,0.02229327,94.23690715],[4.5323369,0.02229157,94.23670431],[4.53233633,0.02228986,94.23650377],[4.53233575,0.02228815,94.23630554],[4.53233518,0.02228644,94.23610961],[4.5323346,0.02228473,94.23591599],[4.53233403,0.02228302,94.23572466],[4.53233345,0.02228132,94.23553565],[4.53233287,0.02227961,94.23534894],[4.5323323,0.0222779,94.23516453],[4.53233172,0.02227619,94.23498243],[4.53233115,0.02227448,94.23480264],[4.53233057,0.02227278,94.23462516],[4.53232999,0.02227107,94.23444999],[4.53232942,0.02226936,94.23427712],[4.53232884,0.02226765,94.23410656],[4.53232827,0.02226594,94.23393832],[4.53232769,0.02226424,94.23377238],[4.53232712,0.02226253,94.23360876],[4.53232654,0.02226082,94.23344745],[4.53232596,0.02225911,94.23328844],[4.53232539,0.0222574,94.23313176],[4.53232481,0.02225569,94.23297738],[4.53232424,0.02225399,94.23282532],[4.53232366,0.02225228,94.23267557],[4.53232308,0.02225057,94.23252814],[4.53232251,0.02224886,94.23238302],[4.53232193,0.02224715,94.23224022],[4.53232136,0.02224545,94.23209974],[4.53232078,0.02224374,94.23196157],[4.5323202,0.02224203,94.23182572],[4.53231963,0.02224032,94.23169219],[4.53231905,0.02223861,94.23156098],[4.53231847,0.02223691,94.23143209],[4.5323179,0.0222352,94.23130552],[4.53231732,0.02223349,94.23118127],[4.53231675,0.02223178,94.23105934],[4.53231617,0.02223007,94.23093973],[4.53231559,0.02222837,94.23082245],[4.53231502,0.02222666,94.23070748],[4.53231444,0.02222495,94.23059485],[4.53231386,0.02222324,94.23048453],[4.53231329,0.02222153,94.23037654],[4.53231271,0.02221983,94.23027088],[4.53231214,0.02221812,94.23016754],[4.53231156,0.02221641,94.23006652],[4.53231098,0.0222147,94.22996783],[4.53231041,0.02221299,94.22987147],[4.53230983,0.02221129,94.22977744],[4.53230925,0.02220958,94.22968574],[4.53230868,0.02220787,94.22959636],[4.5323081,0.02220616,94.22950931],[4.53230752,0.02220445,94.22942459],[4.53230695,0.02220275,94.2293422],[4.53230637,0.02220104,94.22926214],[4.53230579,0.02219933,94.22918441],[4.53230522,0.02219762,94.22910901],[4.53230464,0.02219592,94.22903594],[4.53230406,0.02219421,94.2289652],[4.53230348,0.0221925,94.2288968],[4.53230291,0.02219079,94.22883073],[4.53230233,0.02218908,94.22876699],[4.53230175,0.02218738,94.22870558],[4.53230118,0.02218567,94.22864651],[4.5323006,0.02218396,94.22858977],[4.53230002,0.02218225,94.22853537],[4.53229945,0.02218055,94.2284833],[4.53229887,0.02217884,94.22843357],[4.53229829,0.02217713,94.22838617],[4.53229771,0.02217542,94.22834111],[4.53229714,0.02217371,94.22829838],[4.53229656,0.02217201,94.22825799],[4.53229598,0.0221703,94.22821994],[4.5322954,0.02216859,94.22818423],[4.53229483,0.02216688,94.22815085],[4.53229425,0.02216518,94.22811982],[4.53229367,0.02216347,94.22809112],[4.53229309,0.02216176,94.22806476],[4.53229252,0.02216005,94.22804074],[4.53229194,0.02215835,94.22801906],[4.53229136,0.02215664,94.22799972],[4.53229081,0.022155,94.22798338],[4.53232122,0.02214456,94.31981858],[4.53232177,0.02214619,94.31977718],[4.53232235,0.0221479,94.31973542],[4.53232293,0.02214961,94.31969513],[4.53232351,0.02215132,94.31965633],[4.53232408,0.02215303,94.31961901],[4.53232466,0.02215473,94.31958319],[4.53232524,0.02215644,94.31954888],[4.53232581,0.02215815,94.31951607],[4.53232639,0.02215986,94.31948479],[4.53232697,0.02216157,94.31945504],[4.53232754,0.02216327,94.31942682],[4.53232812,0.02216498,94.31940014],[4.5323287,0.02216669,94.31937502],[4.53232927,0.0221684,94.31935145],[4.53232985,0.0221701,94.31932945],[4.53233043,0.02217181,94.31930902],[4.532331,0.02217352,94.31929017],[4.53233158,0.02217523,94.31927291],[4.53233216,0.02217694,94.31925725],[4.53233274,0.02217864,94.3192432],[4.53233331,0.02218035,94.31923075],[4.53233389,0.02218206,94.31921992],[4.53233447,0.02218377,94.31921072],[4.53233504,0.02218548,94.31920315],[4.53233562,0.02218718,94.31919723],[4.5323362,0.02218889,94.31919296],[4.53233677,0.0221906,94.31919034],[4.53233735,0.02219231,94.31918939],[4.53233793,0.02219402,94.3191901],[4.5323385,0.02219572,94.3191925],[4.53233908,0.02219743,94.31919659],[4.53233966,0.02219914,94.31920237],[4.53234023,0.02220085,94.31920986],[4.53234081,0.02220256,94.31921905],[4.53234138,0.02220427,94.31922997],[4.53234196,0.02220597,94.3192426],[4.53234254,0.02220768,94.31925697],[4.53234311,0.02220939,94.31927309],[4.53234369,0.0222111,94.31929095],[4.53234427,0.02221281,94.31931056],[4.53234484,0.02221451,94.31933194],[4.53234542,0.02221622,94.31935509],[4.532346,0.02221793,94.31938002],[4.53234657,0.02221964,94.31940673],[4.53234715,0.02222135,94.31943524],[4.53234773,0.02222305,94.31946555],[4.5323483,0.02222476,94.31949766],[4.53234888,0.02222647,94.31953159],[4.53234946,0.02222818,94.31956735],[4.53235003,0.02222989,94.31960494],[4.53235061,0.02223159,94.31964436],[4.53235118,0.0222333,94.31968564],[4.53235176,0.02223501,94.31972876],[4.53235234,0.02223672,94.31977375],[4.53235291,0.02223843,94.31982061],[4.53235349,0.02224014,94.31986934],[4.53235407,0.02224184,94.31991995],[4.53235464,0.02224355,94.31997246],[4.53235522,0.02224526,94.32002687],[4.5323558,0.02224697,94.32008318],[4.53235637,0.02224868,94.32014141],[4.53235695,0.02225038,94.32020155],[4.53235752,0.02225209,94.32026363],[4.5323581,0.0222538,94.32032765],[4.53235868,0.02225551,94.3203936],[4.53235925,0.02225722,94.32046151],[4.53235983,0.02225893,94.32053138],[4.53236041,0.02226063,94.32060322],[4.53236098,0.02226234,94.32067703],[4.53236156,0.02226405,94.32075283],[4.53236213,0.02226576,94.32083061],[4.53236271,0.02226747,94.3209104],[4.53236329,0.02226917,94.32099219],[4.53236386,0.02227088,94.32107599],[4.53236444,0.02227259,94.32116181],[4.53236501,0.0222743,94.32124967],[4.53236559,0.02227601,94.32133955],[4.53236617,0.02227772,94.32143149],[4.53236674,0.02227942,94.32152547],[4.53236732,0.02228113,94.32162152],[4.53236789,0.02228284,94.32171963],[4.53236847,0.02228455,94.32181981],[4.53236905,0.02228626,94.32192208],[4.53236962,0.02228797,94.32202644],[4.5323702,0.02228967,94.32213289],[4.53237077,0.02229138,94.32224145],[4.53237135,0.02229309,94.32235212],[4.53237193,0.0222948,94.32246491],[4.5323725,0.02229651,94.32257983],[4.53237308,0.02229822,94.32269689],[4.53237365,0.02229992,94.32281608],[4.53237423,0.02230163,94.32293743],[4.53237481,0.02230334,94.32306094],[4.53237538,0.02230505,94.32318661],[4.53237596,0.02230676,94.32331445],[4.53237653,0.02230847,94.32344448],[4.53237711,0.02231017,94.32357669],[4.53237769,0.02231188,94.3237111],[4.53237826,0.02231359,94.32384771],[4.53237884,0.0223153,94.32398653],[4.53237941,0.02231701,94.32412757],[4.53237999,0.02231872,94.32427084],[4.53238056,0.02232043,94.32441634],[4.53238114,0.02232213,94.32456408],[4.53238172,0.02232384,94.32471406],[4.53238229,0.02232555,94.32486631],[4.53238287,0.02232726,94.32502082],[4.53238344,0.02232897,94.32517759],[4.53238402,0.02233068,94.32533665],[4.53238459,0.02233238,94.32549799],[4.53238517,0.02233409,94.32566163],[4.53238575,0.0223358,94.32582756],[4.53238632,0.02233751,94.32599581],[4.5323869,0.02233922,94.32616637],[4.53238747,0.02234093,94.32633925],[4.53238805,0.02234264,94.32651446],[4.53238862,0.02234434,94.32669201],[4.5323892,0.02234605,94.32687191],[4.53238977,0.02234776,94.32705416],[4.53239035,0.02234947,94.32723877],[4.53239093,0.02235118,94.32742574],[4.5323915,0.02235289,94.32761509],[4.53239208,0.0223546,94.32780683],[4.53239265,0.02235631,94.32800095],[4.53239323,0.02235801,94.32819747],[4.5323938,0.02235972,94.3283964],[4.53239438,0.02236143,94.32859774],[4.53239495,0.02236314,94.3288015],[4.53239553,0.02236485,94.32900768],[4.5323961,0.02236656,94.3292163],[4.53239668,0.02236827,94.32942736],[4.53239725,0.02236997,94.32964087],[4.53239783,0.02237168,94.32985684],[4.5323984,0.02237339,94.33007527],[4.53239898,0.0223751,94.33029617],[4.53239956,0.02237681,94.33051955],[4.53240013,0.02237852,94.33074542],[4.53240071,0.02238023,94.33097378],[4.53240128,0.02238194,94.33120464],[4.53240186,0.02238364,94.33143801],[4.53240243,0.02238535,94.33167389],[4.53240301,0.02238706,94.3319123],[4.53240358,0.02238877,94.33215323],[4.53240416,0.02239048,94.33239671],[4.53240473,0.02239219,94.33264273],[4.53240531,0.0223939,94.3328913],[4.53240588,0.02239561,94.33314243],[4.53240646,0.02239731,94.33339613],[4.53240703,0.02239902,94.3336524],[4.53240761,0.02240073,94.33391126],[4.53240818,0.02240244,94.33417271],[4.53240876,0.02240415,94.33443676],[4.53240933,0.02240586,94.33470342],[4.53240991,0.02240757,94.33497269],[4.53241048,0.02240928,94.33524459],[4.53241106,0.02241099,94.33551912],[4.53241163,0.02241269,94.3357963],[4.53241221,0.0224144,94.33607612],[4.53241278,0.02241611,94.3363586],[4.53241336,0.02241782,94.33664375],[4.53241393,0.02241953,94.33693157],[4.53241451,0.02242124,94.33722207],[4.53241508,0.02242295,94.33751526],[4.53241565,0.02242466,94.33781114],[4.53241623,0.02242637,94.33810974],[4.5324168,0.02242807,94.33841105],[4.53241738,0.02242978,94.33871508],[4.53241795,0.02243149,94.33902184],[4.53241853,0.0224332,94.33933133],[4.5324191,0.02243491,94.33964358],[4.53241968,0.02243662,94.33995858],[4.53242025,0.02243833,94.34027634],[4.53242083,0.02244004,94.34059687],[4.5324214,0.02244175,94.34092018],[4.53242198,0.02244346,94.34124627],[4.53242255,0.02244516,94.34157516],[4.53242313,0.02244687,94.34190686],[4.5324237,0.02244858,94.34224136],[4.53242427,0.02245029,94.34257868],[4.53242485,0.022452,94.34291883],[4.53242542,0.02245371,94.34326181],[4.532426,0.02245542,94.34360764],[4.53242657,0.02245713,94.34395632],[4.53242715,0.02245884,94.34430785],[4.53242772,0.02246055,94.34466225],[4.5324283,0.02246226,94.34501953],[4.53242887,0.02246396,94.34537969],[4.53242945,0.02246567,94.34574274],[4.53243002,0.02246738,94.34610869],[4.53243059,0.02246909,94.34647754],[4.53243117,0.0224708,94.34684931],[4.53243174,0.02247251,94.347224],[4.53243232,0.02247422,94.34760163],[4.53243289,0.02247593,94.34798219],[4.53243347,0.02247764,94.3483657],[4.53243404,0.02247935,94.34875216],[4.53243462,0.02248106,94.34914159],[4.53243519,0.02248276,94.34953399],[4.53243577,0.02248447,94.34992936],[4.53243634,0.02248618,94.35032773],[4.53243691,0.02248789,94.35072908],[4.53243749,0.0224896,94.35113345],[4.53243806,0.02249131,94.35154082],[4.53243864,0.02249302,94.35195121],[4.53243921,0.02249473,94.35236463],[4.53243979,0.02249644,94.35278108],[4.53244036,0.02249815,94.35320057],[4.53244094,0.02249986,94.35362312],[4.53244151,0.02250156,94.35404873],[4.53244208,0.02250327,94.3544774],[4.53244266,0.02250498,94.35490915],[4.53244323,0.02250669,94.35534398],[4.53244381,0.0225084,94.3557819],[4.53244438,0.02251011,94.35622293],[4.53244496,0.02251182,94.35666706],[4.53244553,0.02251353,94.3571143],[4.53244611,0.02251524,94.35756467],[4.53244668,0.02251695,94.35801817],[4.53244725,0.02251866,94.35847481],[4.53244783,0.02252037,94.3589346],[4.5324484,0.02252207,94.35939755],[4.53244898,0.02252378,94.35986366],[4.53244955,0.02252549,94.36033294],[4.53245013,0.0225272,94.36080541],[4.5324507,0.02252891,94.36128106],[4.53245128,0.02253062,94.36175991],[4.53245185,0.02253233,94.36224196],[4.53245242,0.02253404,94.36272723],[4.532453,0.02253575,94.36321572],[4.53245357,0.02253746,94.36370744],[4.53245415,0.02253917,94.3642024],[4.53245472,0.02254088,94.3647006],[4.5324553,0.02254259,94.36520206],[4.53245587,0.02254429,94.36570678],[4.53245645,0.022546,94.36621477],[4.53245702,0.02254771,94.36672605],[4.5324576,0.02254942,94.36724061],[4.53245817,0.02255113,94.36775846],[4.53245874,0.02255284,94.36827962],[4.53245932,0.02255455,94.3688041],[4.53245989,0.02255626,94.36933189],[4.53246047,0.02255797,94.36986301],[4.53246104,0.02255968,94.37039748],[4.53246162,0.02256139,94.37093528],[4.53246219,0.0225631,94.37147645],[4.53246277,0.0225648,94.37202097],[4.53246334,0.02256651,94.37256887],[4.53246392,0.02256822,94.37312015],[4.53246449,0.02256993,94.37367482],[4.53246506,0.02257164,94.37423288],[4.53246564,0.02257335,94.37479435],[4.53246621,0.02257506,94.37535924],[4.53246679,0.02257678,94.37592755],[4.53246737,0.02257848,94.37649929],[4.53246794,0.02258019,94.37707447],[4.53246851,0.0225819,94.3776531],[4.53246909,0.02258361,94.37823518],[4.53246966,0.02258532,94.37882074],[4.53247024,0.02258703,94.37940977],[4.53247081,0.02258874,94.38000228],[4.53247139,0.02259045,94.38059828],[4.53247196,0.02259216,94.38119779],[4.53247254,0.02259387,94.38180081],[4.53247311,0.02259558,94.38240735],[4.53247369,0.02259728,94.38301741],[4.53247426,0.02259899,94.38363101],[4.53247484,0.0226007,94.38424816],[4.53247541,0.02260241,94.38486886],[4.53247599,0.02260412,94.38549313],[4.53247656,0.02260583,94.38612097],[4.53247714,0.02260754,94.38675239],[4.53247771,0.02260925,94.3873874],[4.53247829,0.02261096,94.38802602],[4.53247886,0.02261266,94.38866824],[4.53247944,0.02261437,94.38931408],[4.53248001,0.02261608,94.38996355],[4.53248059,0.02261779,94.39061665],[4.53248116,0.0226195,94.3912734],[4.53248174,0.02262121,94.39193381],[4.53248231,0.02262292,94.39259787],[4.53248289,0.02262463,94.3932656],[4.53248346,0.02262633,94.39393699],[4.53248404,0.02262804,94.39461205],[4.53248461,0.02262975,94.39529079],[4.53248519,0.02263146,94.3959732],[4.53248576,0.02263317,94.3966593],[4.53248634,0.02263488,94.39734909],[4.53248692,0.02263659,94.39804258],[4.53248749,0.0226383,94.39873976],[4.53248807,0.02264,94.39944064],[4.53248864,0.02264171,94.40014523],[4.53248922,0.02264342,94.40085353],[4.53248979,0.02264513,94.40156555],[4.53249037,0.02264684,94.40228129],[4.53249095,0.02264855,94.40300075],[4.53249152,0.02265025,94.40372395],[4.5324921,0.02265196,94.40445088],[4.53249267,0.02265367,94.40518155],[4.53249325,0.02265538,94.40591596],[4.53249382,0.02265709,94.40665412],[4.5324944,0.0226588,94.40739604],[4.53249498,0.02266051,94.40814171],[4.53249555,0.02266221,94.40889115],[4.53249613,0.02266392,94.40964435],[4.5324967,0.02266563,94.41040133],[4.53249728,0.02266734,94.41116209],[4.53249786,0.02266905,94.41192662],[4.53249843,0.02267076,94.41269494],[4.53249901,0.02267246,94.41346706],[4.53249958,0.02267417,94.41424297],[4.53250016,0.02267588,94.41502268],[4.53250074,0.02267759,94.4158062],[4.53250131,0.0226793,94.41659353],[4.53250189,0.02268101,94.41738467],[4.53250246,0.02268271,94.41817963],[4.53250304,0.02268442,94.41897842],[4.53250362,0.02268613,94.41978103],[4.53250419,0.02268784,94.42058748],[4.53250477,0.02268955,94.42139777],[4.53250534,0.02269125,94.4222119],[4.53250592,0.02269296,94.42302988],[4.5325065,0.02269467,94.42385171],[4.53250707,0.02269638,94.4246774],[4.53250765,0.02269809,94.42550696],[4.53250822,0.0226998,94.42634037],[4.5325088,0.0227015,94.42717766],[4.53250938,0.02270321,94.42801883],[4.53250995,0.02270492,94.42886387],[4.53251053,0.02270663,94.4297128],[4.5325111,0.02270834,94.43056563],[4.53251168,0.02271004,94.43142234],[4.53251226,0.02271175,94.43228295],[4.53251283,0.02271346,94.43314747],[4.53251341,0.02271517,94.43401589],[4.53251398,0.02271688,94.43488823],[4.53251456,0.02271859,94.43576448],[4.53251514,0.02272029,94.43664465],[4.53251571,0.022722,94.43752875],[4.53251629,0.02272371,94.43841677],[4.53251686,0.02272542,94.43930873],[4.53251744,0.02272713,94.44020463],[4.53251802,0.02272883,94.44110447],[4.53251859,0.02273054,94.44200825],[4.53251917,0.02273225,94.44291599],[4.53251974,0.02273396,94.44382768],[4.53252032,0.02273567,94.44474329],[4.5325209,0.02273737,94.44566275],[4.53252147,0.02273908,94.44658601],[4.53252205,0.02274079,94.447513],[4.53252262,0.0227425,94.44844364],[4.5325232,0.02274421,94.44937788],[4.53252377,0.02274592,94.45031564],[4.53252435,0.02274762,94.45125687],[4.53252492,0.02274933,94.45220148],[4.5325255,0.02275104,94.45314943],[4.53252608,0.02275275,94.45410064],[4.53252665,0.02275446,94.45505504],[4.53252723,0.02275616,94.45601257],[4.5325278,0.02275787,94.45697316],[4.53252838,0.02275958,94.45793675],[4.53252895,0.02276129,94.45890326],[4.53252953,0.022763,94.45987263],[4.5325301,0.0227647,94.46084479],[4.53253068,0.02276641,94.46181968],[4.53253125,0.02276812,94.46279722],[4.53253183,0.02276983,94.46377735],[4.5325324,0.02277154,94.46476],[4.53253298,0.02277325,94.46574511],[4.53253356,0.02277495,94.4667326],[4.53253413,0.02277666,94.46772241],[4.53253471,0.02277837,94.46871447],[4.53253528,0.02278008,94.4697087],[4.53253586,0.02278179,94.47070505],[4.53253643,0.0227835,94.47170345],[4.532537,0.0227852,94.47270382],[4.53253758,0.02278691,94.47370609],[4.53253815,0.02278862,94.4747102],[4.53253873,0.02279033,94.47571609],[4.5325393,0.02279204,94.47672367],[4.53253988,0.02279374,94.47773288],[4.53254045,0.02279545,94.47874366],[4.53254103,0.02279716,94.47975593],[4.5325416,0.02279887,94.48076962],[4.53254218,0.02280058,94.48178466],[4.53254275,0.02280229,94.48280099],[4.53254332,0.02280399,94.48381854],[4.5325439,0.0228057,94.48483723],[4.53254447,0.02280741,94.485857],[4.53254505,0.02280912,94.48687777],[4.53254562,0.02281083,94.48789949],[4.5325462,0.02281254,94.48892207],[4.53254677,0.02281425,94.48994544],[4.53254734,0.02281595,94.49096955],[4.53254792,0.02281766,94.49199431],[4.53254849,0.02281937,94.49301966],[4.53254906,0.02282108,94.49404553],[4.53254964,0.02282279,94.49507184],[4.53255021,0.0228245,94.49609853],[4.53255079,0.0228262,94.49712554],[4.53255136,0.02282791,94.49815277],[4.53255193,0.02282962,94.49918018],[4.53255251,0.02283133,94.50020768],[4.53255308,0.02283304,94.50123521],[4.53255365,0.02283475,94.5022627],[4.53255422,0.02283646,94.50329007],[4.5325548,0.02283816,94.50431726],[4.53255537,0.02283987,94.50534419],[4.53255594,0.02284158,94.5063708],[4.53255652,0.02284329,94.50739702],[4.53255709,0.022845,94.50842278],[4.53255766,0.02284671,94.509448],[4.53255823,0.02284842,94.51047264],[4.53255881,0.02285013,94.51149662],[4.53255938,0.02285183,94.51251987],[4.53255995,0.02285354,94.51354234],[4.53256052,0.02285525,94.51456395],[4.5325611,0.02285696,94.51558465],[4.53256167,0.02285867,94.51660437],[4.53256224,0.02286038,94.51762303],[4.53256281,0.02286209,94.51864059],[4.53256338,0.0228638,94.51965697],[4.53256396,0.02286551,94.52067211],[4.53256453,0.02286721,94.52168594],[4.5325651,0.02286892,94.52269841],[4.53256567,0.02287063,94.52370944],[4.53256624,0.02287234,94.52471897],[4.53256681,0.02287405,94.52572694],[4.53256739,0.02287576,94.52673329],[4.53256796,0.02287747,94.52773794],[4.53256853,0.02287918,94.52874085],[4.5325691,0.02288089,94.52974193],[4.53256967,0.02288259,94.53074114],[4.53257024,0.0228843,94.5317384],[4.53257081,0.02288601,94.53273366],[4.53257138,0.02288772,94.53372684],[4.53257196,0.02288943,94.53471789],[4.53257253,0.02289114,94.53570675],[4.5325731,0.02289285,94.53669335],[4.53257367,0.02289456,94.53767762],[4.53257424,0.02289627,94.53865952],[4.53257481,0.02289798,94.53963896],[4.53257538,0.02289969,94.5406159],[4.53257595,0.0229014,94.54159027],[4.53257652,0.0229031,94.542562],[4.53257709,0.02290481,94.54353105],[4.53257766,0.02290652,94.54449733],[4.53257823,0.02290823,94.5454608],[4.5325788,0.02290994,94.54642139],[4.53257937,0.02291165,94.54737905],[4.53257995,0.02291336,94.5483337],[4.53258052,0.02291507,94.54928529],[4.53258109,0.02291678,94.55023376],[4.53258166,0.02291849,94.55117904],[4.53258223,0.0229202,94.55212109],[4.5325828,0.02292191,94.55305983],[4.53258337,0.02292361,94.55399521],[4.53258394,0.02292532,94.55492717],[4.53258451,0.02292703,94.55585564],[4.53258508,0.02292874,94.55678058],[4.53258565,0.02293045,94.55770191],[4.53258622,0.02293216,94.55861959],[4.53258679,0.02293387,94.55953355],[4.53258736,0.02293558,94.56044373],[4.53258793,0.02293729,94.56135008],[4.5325885,0.022939,94.56225254],[4.53258907,0.02294071,94.56315104],[4.53258964,0.02294242,94.56404554],[4.53259021,0.02294413,94.56493598],[4.53259078,0.02294584,94.56582232],[4.53259134,0.02294755,94.56670453],[4.53259191,0.02294925,94.56758259],[4.53259248,0.02295096,94.56845647],[4.53259305,0.02295267,94.56932613],[4.53259362,0.02295438,94.57019155],[4.53259419,0.02295609,94.57105269],[4.53259476,0.0229578,94.57190953],[4.53259533,0.02295951,94.57276204],[4.5325959,0.02296122,94.57361018],[4.53259647,0.02296293,94.57445394],[4.53259704,0.02296464,94.57529327],[4.53259761,0.02296635,94.57612816],[4.53259818,0.02296806,94.57695856],[4.53259875,0.02296976,94.57778445],[4.53259933,0.02297147,94.5786058],[4.5325999,0.02297318,94.57942257],[4.53260047,0.02297489,94.58023475],[4.53260104,0.0229766,94.58104229],[4.53260161,0.02297831,94.58184516],[4.53260218,0.02298002,94.58264334],[4.53260275,0.02298173,94.58343679],[4.53260332,0.02298343,94.58422548],[4.5326039,0.02298514,94.58500937],[4.53260447,0.02298685,94.58578844],[4.53260504,0.02298856,94.58656265],[4.53260561,0.02299027,94.58733196],[4.53260619,0.02299198,94.58809637],[4.53260676,0.02299369,94.58885595],[4.53260733,0.02299539,94.58961082],[4.53260791,0.0229971,94.59036108],[4.53260848,0.02299881,94.59110683],[4.53260905,0.02300052,94.59184819],[4.53260963,0.02300223,94.59258524],[4.5326102,0.02300393,94.59331811],[4.53261078,0.02300564,94.59404688],[4.53261135,0.02300735,94.59477166],[4.53261193,0.02300906,94.59549255],[4.5326125,0.02301076,94.59620965],[4.53261308,0.02301247,94.59692306],[4.53261366,0.02301418,94.59763288],[4.53261423,0.02301589,94.5983392],[4.53261481,0.02301759,94.59904213],[4.53261539,0.0230193,94.59974174],[4.53261597,0.02302101,94.60043815],[4.53261655,0.02302271,94.60113144],[4.53261712,0.02302442,94.60182171],[4.5326177,0.02302613,94.60250904],[4.53261828,0.02302783,94.60319354],[4.53261886,0.02302954,94.60387528],[4.53261944,0.02303125,94.60455437],[4.53262002,0.02303295,94.60523088],[4.5326206,0.02303466,94.60590491],[4.53262118,0.02303637,94.60657654],[4.53262177,0.02303807,94.60724586],[4.53262235,0.02303978,94.60791296],[4.53262293,0.02304148,94.6085779],[4.53262351,0.02304319,94.60924073],[4.5326241,0.0230449,94.60990152],[4.53262468,0.0230466,94.6105603],[4.53262526,0.02304831,94.61121714],[4.53262585,0.02305001,94.61187209],[4.53262643,0.02305172,94.61252519],[4.53262702,0.02305342,94.61317651],[4.5326276,0.02305513,94.61382609],[4.53262819,0.02305683,94.61447399],[4.53262877,0.02305854,94.61512027],[4.53262936,0.02306024,94.61576497],[4.53262995,0.02306195,94.61640815],[4.53263053,0.02306365,94.61704988],[4.53263112,0.02306536,94.61769019],[4.53263171,0.02306706,94.61832916],[4.53263229,0.02306877,94.61896683],[4.53263288,0.02307047,94.61960327],[4.53263347,0.02307218,94.62023853],[4.53263406,0.02307388,94.62087267],[4.53263465,0.02307559,94.62150574],[4.53263524,0.02307729,94.62213782],[4.53263583,0.02307899,94.62276895],[4.53263641,0.0230807,94.6233992],[4.532637,0.0230824,94.62402863],[4.53263759,0.02308411,94.62465729],[4.53263818,0.02308581,94.62528527],[4.53263877,0.02308752,94.62591261],[4.53263936,0.02308922,94.62653938],[4.53263996,0.02309092,94.62716564],[4.53264055,0.02309263,94.62779147],[4.53264114,0.02309433,94.62841692],[4.53264173,0.02309604,94.62904206],[4.53264232,0.02309774,94.62966696],[4.53264291,0.02309944,94.6302917],[4.5326435,0.02310115,94.63091633],[4.53264409,0.02310285,94.63154091],[4.53264469,0.02310456,94.63216551],[4.53264528,0.02310626,94.63279016],[4.53264587,0.02310796,94.63341491],[4.53264646,0.02310967,94.63403983],[4.53264705,0.02311137,94.63466497],[4.53264765,0.02311308,94.63529038],[4.53264824,0.02311478,94.63591612],[4.53264883,0.02311648,94.63654224],[4.53264942,0.02311819,94.63716882],[4.53265001,0.02311989,94.6377959],[4.53265061,0.0231216,94.63842355],[4.5326512,0.0231233,94.63905184],[4.53265179,0.023125,94.63968083],[4.53265238,0.02312671,94.64031058],[4.53265297,0.02312841,94.64094116],[4.53265356,0.02313012,94.64157264],[4.53265415,0.02313182,94.64220508],[4.53265474,0.02313353,94.64283857],[4.53265533,0.02313523,94.64347316],[4.53265592,0.02313694,94.64410892],[4.53265651,0.02313864,94.64474595],[4.5326571,0.02314035,94.64538437],[4.53265769,0.02314205,94.64602432],[4.53265828,0.02314376,94.64666596],[4.53265887,0.02314547,94.64730941],[4.53265946,0.02314717,94.64795483],[4.53266005,0.02314888,94.64860236],[4.53266064,0.02315059,94.64925215],[4.53266122,0.02315229,94.64990435],[4.53266181,0.023154,94.65055909],[4.5326624,0.02315571,94.65121653],[4.53266298,0.02315741,94.65187681],[4.53266357,0.02315912,94.65254009],[4.53266415,0.02316083,94.65320649],[4.53266474,0.02316253,94.65387618],[4.53266532,0.02316424,94.6545493],[4.5326659,0.02316595,94.65522598],[4.53266649,0.02316766,94.65590639],[4.53266707,0.02316937,94.65659066],[4.53266765,0.02317108,94.65727893],[4.53266823,0.02317279,94.65797135],[4.53266881,0.0231745,94.65866807],[4.53266939,0.02317621,94.65936922],[4.53266997,0.02317792,94.66007494],[4.53267055,0.02317963,94.66078538],[4.53267113,0.02318134,94.66150067],[4.5326717,0.02318305,94.66222095],[4.53267228,0.02318476,94.66294635],[4.53267285,0.02318647,94.66367702],[4.53267343,0.02318818,94.66441307],[4.532674,0.02318989,94.66515465],[4.53267457,0.02319161,94.66590188],[4.53267515,0.02319332,94.66665485],[4.53267572,0.02319503,94.66741343],[4.53267629,0.02319674,94.66817746],[4.53267685,0.02319845,94.66894677],[4.53267742,0.02320017,94.6697212],[4.53264531,0.02321096,94.61523825]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004200","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1,"sOffset":35.4036855625}},{"geometry":{"coordinates":[[[4.53267742,0.02320017,94.6697212],[4.53267685,0.02319845,94.66894677],[4.53267629,0.02319674,94.66817746],[4.53267572,0.02319503,94.66741343],[4.53267515,0.02319332,94.66665485],[4.53267457,0.02319161,94.66590188],[4.532674,0.02318989,94.66515465],[4.53267343,0.02318818,94.66441307],[4.53267285,0.02318647,94.66367702],[4.53267228,0.02318476,94.66294635],[4.5326717,0.02318305,94.66222095],[4.53267113,0.02318134,94.66150067],[4.53267055,0.02317963,94.66078538],[4.53266997,0.02317792,94.66007494],[4.53266939,0.02317621,94.65936922],[4.53266881,0.0231745,94.65866807],[4.53266823,0.02317279,94.65797135],[4.53266765,0.02317108,94.65727893],[4.53266707,0.02316937,94.65659066],[4.53266649,0.02316766,94.65590639],[4.5326659,0.02316595,94.65522598],[4.53266532,0.02316424,94.6545493],[4.53266474,0.02316253,94.65387618],[4.53266415,0.02316083,94.65320649],[4.53266357,0.02315912,94.65254009],[4.53266298,0.02315741,94.65187681],[4.5326624,0.02315571,94.65121653],[4.53266181,0.023154,94.65055909],[4.53266122,0.02315229,94.64990435],[4.53266064,0.02315059,94.64925215],[4.53266005,0.02314888,94.64860236],[4.53265946,0.02314717,94.64795483],[4.53265887,0.02314547,94.64730941],[4.53265828,0.02314376,94.64666596],[4.53265769,0.02314205,94.64602432],[4.5326571,0.02314035,94.64538437],[4.53265651,0.02313864,94.64474595],[4.53265592,0.02313694,94.64410892],[4.53265533,0.02313523,94.64347316],[4.53265474,0.02313353,94.64283857],[4.53265415,0.02313182,94.64220508],[4.53265356,0.02313012,94.64157264],[4.53265297,0.02312841,94.64094116],[4.53265238,0.02312671,94.64031058],[4.53265179,0.023125,94.63968083],[4.5326512,0.0231233,94.63905184],[4.53265061,0.0231216,94.63842355],[4.53265001,0.02311989,94.6377959],[4.53264942,0.02311819,94.63716882],[4.53264883,0.02311648,94.63654224],[4.53264824,0.02311478,94.63591612],[4.53264765,0.02311308,94.63529038],[4.53264705,0.02311137,94.63466497],[4.53264646,0.02310967,94.63403983],[4.53264587,0.02310796,94.63341491],[4.53264528,0.02310626,94.63279016],[4.53264469,0.02310456,94.63216551],[4.53264409,0.02310285,94.63154091],[4.5326435,0.02310115,94.63091633],[4.53264291,0.02309944,94.6302917],[4.53264232,0.02309774,94.62966696],[4.53264173,0.02309604,94.62904206],[4.53264114,0.02309433,94.62841692],[4.53264055,0.02309263,94.62779147],[4.53263996,0.02309092,94.62716564],[4.53263936,0.02308922,94.62653938],[4.53263877,0.02308752,94.62591261],[4.53263818,0.02308581,94.62528527],[4.53263759,0.02308411,94.62465729],[4.532637,0.0230824,94.62402863],[4.53263641,0.0230807,94.6233992],[4.53263583,0.02307899,94.62276895],[4.53263524,0.02307729,94.62213782],[4.53263465,0.02307559,94.62150574],[4.53263406,0.02307388,94.62087267],[4.53263347,0.02307218,94.62023853],[4.53263288,0.02307047,94.61960327],[4.53263229,0.02306877,94.61896683],[4.53263171,0.02306706,94.61832916],[4.53263112,0.02306536,94.61769019],[4.53263053,0.02306365,94.61704988],[4.53262995,0.02306195,94.61640815],[4.53262936,0.02306024,94.61576497],[4.53262877,0.02305854,94.61512027],[4.53262819,0.02305683,94.61447399],[4.5326276,0.02305513,94.61382609],[4.53262702,0.02305342,94.61317651],[4.53262643,0.02305172,94.61252519],[4.53262585,0.02305001,94.61187209],[4.53262526,0.02304831,94.61121714],[4.53262468,0.0230466,94.6105603],[4.5326241,0.0230449,94.60990152],[4.53262351,0.02304319,94.60924073],[4.53262293,0.02304148,94.6085779],[4.53262235,0.02303978,94.60791296],[4.53262177,0.02303807,94.60724586],[4.53262118,0.02303637,94.60657654],[4.5326206,0.02303466,94.60590491],[4.53262002,0.02303295,94.60523088],[4.53261944,0.02303125,94.60455437],[4.53261886,0.02302954,94.60387528],[4.53261828,0.02302783,94.60319354],[4.5326177,0.02302613,94.60250904],[4.53261712,0.02302442,94.60182171],[4.53261655,0.02302271,94.60113144],[4.53261597,0.02302101,94.60043815],[4.53261539,0.0230193,94.59974174],[4.53261481,0.02301759,94.59904213],[4.53261423,0.02301589,94.5983392],[4.53261366,0.02301418,94.59763288],[4.53261308,0.02301247,94.59692306],[4.5326125,0.02301076,94.59620965],[4.53261193,0.02300906,94.59549255],[4.53261135,0.02300735,94.59477166],[4.53261078,0.02300564,94.59404688],[4.5326102,0.02300393,94.59331811],[4.53260963,0.02300223,94.59258524],[4.53260905,0.02300052,94.59184819],[4.53260848,0.02299881,94.59110683],[4.53260791,0.0229971,94.59036108],[4.53260733,0.02299539,94.58961082],[4.53260676,0.02299369,94.58885595],[4.53260619,0.02299198,94.58809637],[4.53260561,0.02299027,94.58733196],[4.53260504,0.02298856,94.58656265],[4.53260447,0.02298685,94.58578844],[4.5326039,0.02298514,94.58500937],[4.53260332,0.02298343,94.58422548],[4.53260275,0.02298173,94.58343679],[4.53260218,0.02298002,94.58264334],[4.53260161,0.02297831,94.58184516],[4.53260104,0.0229766,94.58104229],[4.53260047,0.02297489,94.58023475],[4.5325999,0.02297318,94.57942257],[4.53259933,0.02297147,94.5786058],[4.53259875,0.02296976,94.57778445],[4.53259818,0.02296806,94.57695856],[4.53259761,0.02296635,94.57612816],[4.53259704,0.02296464,94.57529327],[4.53259647,0.02296293,94.57445394],[4.5325959,0.02296122,94.57361018],[4.53259533,0.02295951,94.57276204],[4.53259476,0.0229578,94.57190953],[4.53259419,0.02295609,94.57105269],[4.53259362,0.02295438,94.57019155],[4.53259305,0.02295267,94.56932613],[4.53259248,0.02295096,94.56845647],[4.53259191,0.02294925,94.56758259],[4.53259134,0.02294755,94.56670453],[4.53259078,0.02294584,94.56582232],[4.53259021,0.02294413,94.56493598],[4.53258964,0.02294242,94.56404554],[4.53258907,0.02294071,94.56315104],[4.5325885,0.022939,94.56225254],[4.53258793,0.02293729,94.56135008],[4.53258736,0.02293558,94.56044373],[4.53258679,0.02293387,94.55953355],[4.53258622,0.02293216,94.55861959],[4.53258565,0.02293045,94.55770191],[4.53258508,0.02292874,94.55678058],[4.53258451,0.02292703,94.55585564],[4.53258394,0.02292532,94.55492717],[4.53258337,0.02292361,94.55399521],[4.5325828,0.02292191,94.55305983],[4.53258223,0.0229202,94.55212109],[4.53258166,0.02291849,94.55117904],[4.53258109,0.02291678,94.55023376],[4.53258052,0.02291507,94.54928529],[4.53257995,0.02291336,94.5483337],[4.53257937,0.02291165,94.54737905],[4.5325788,0.02290994,94.54642139],[4.53257823,0.02290823,94.5454608],[4.53257766,0.02290652,94.54449733],[4.53257709,0.02290481,94.54353105],[4.53257652,0.0229031,94.542562],[4.53257595,0.0229014,94.54159027],[4.53257538,0.02289969,94.5406159],[4.53257481,0.02289798,94.53963896],[4.53257424,0.02289627,94.53865952],[4.53257367,0.02289456,94.53767762],[4.5325731,0.02289285,94.53669335],[4.53257253,0.02289114,94.53570675],[4.53257196,0.02288943,94.53471789],[4.53257138,0.02288772,94.53372684],[4.53257081,0.02288601,94.53273366],[4.53257024,0.0228843,94.5317384],[4.53256967,0.02288259,94.53074114],[4.5325691,0.02288089,94.52974193],[4.53256853,0.02287918,94.52874085],[4.53256796,0.02287747,94.52773794],[4.53256739,0.02287576,94.52673329],[4.53256681,0.02287405,94.52572694],[4.53256624,0.02287234,94.52471897],[4.53256567,0.02287063,94.52370944],[4.5325651,0.02286892,94.52269841],[4.53256453,0.02286721,94.52168594],[4.53256396,0.02286551,94.52067211],[4.53256338,0.0228638,94.51965697],[4.53256281,0.02286209,94.51864059],[4.53256224,0.02286038,94.51762303],[4.53256167,0.02285867,94.51660437],[4.5325611,0.02285696,94.51558465],[4.53256052,0.02285525,94.51456395],[4.53255995,0.02285354,94.51354234],[4.53255938,0.02285183,94.51251987],[4.53255881,0.02285013,94.51149662],[4.53255823,0.02284842,94.51047264],[4.53255766,0.02284671,94.509448],[4.53255709,0.022845,94.50842278],[4.53255652,0.02284329,94.50739702],[4.53255594,0.02284158,94.5063708],[4.53255537,0.02283987,94.50534419],[4.5325548,0.02283816,94.50431726],[4.53255422,0.02283646,94.50329007],[4.53255365,0.02283475,94.5022627],[4.53255308,0.02283304,94.50123521],[4.53255251,0.02283133,94.50020768],[4.53255193,0.02282962,94.49918018],[4.53255136,0.02282791,94.49815277],[4.53255079,0.0228262,94.49712554],[4.53255021,0.0228245,94.49609853],[4.53254964,0.02282279,94.49507184],[4.53254906,0.02282108,94.49404553],[4.53254849,0.02281937,94.49301966],[4.53254792,0.02281766,94.49199431],[4.53254734,0.02281595,94.49096955],[4.53254677,0.02281425,94.48994544],[4.5325462,0.02281254,94.48892207],[4.53254562,0.02281083,94.48789949],[4.53254505,0.02280912,94.48687777],[4.53254447,0.02280741,94.485857],[4.5325439,0.0228057,94.48483723],[4.53254332,0.02280399,94.48381854],[4.53254275,0.02280229,94.48280099],[4.53254218,0.02280058,94.48178466],[4.5325416,0.02279887,94.48076962],[4.53254103,0.02279716,94.47975593],[4.53254045,0.02279545,94.47874366],[4.53253988,0.02279374,94.47773288],[4.5325393,0.02279204,94.47672367],[4.53253873,0.02279033,94.47571609],[4.53253815,0.02278862,94.4747102],[4.53253758,0.02278691,94.47370609],[4.532537,0.0227852,94.47270382],[4.53253643,0.0227835,94.47170345],[4.53253586,0.02278179,94.47070505],[4.53253528,0.02278008,94.4697087],[4.53253471,0.02277837,94.46871447],[4.53253413,0.02277666,94.46772241],[4.53253356,0.02277495,94.4667326],[4.53253298,0.02277325,94.46574511],[4.5325324,0.02277154,94.46476],[4.53253183,0.02276983,94.46377735],[4.53253125,0.02276812,94.46279722],[4.53253068,0.02276641,94.46181968],[4.5325301,0.0227647,94.46084479],[4.53252953,0.022763,94.45987263],[4.53252895,0.02276129,94.45890326],[4.53252838,0.02275958,94.45793675],[4.5325278,0.02275787,94.45697316],[4.53252723,0.02275616,94.45601257],[4.53252665,0.02275446,94.45505504],[4.53252608,0.02275275,94.45410064],[4.5325255,0.02275104,94.45314943],[4.53252492,0.02274933,94.45220148],[4.53252435,0.02274762,94.45125687],[4.53252377,0.02274592,94.45031564],[4.5325232,0.02274421,94.44937788],[4.53252262,0.0227425,94.44844364],[4.53252205,0.02274079,94.447513],[4.53252147,0.02273908,94.44658601],[4.5325209,0.02273737,94.44566275],[4.53252032,0.02273567,94.44474329],[4.53251974,0.02273396,94.44382768],[4.53251917,0.02273225,94.44291599],[4.53251859,0.02273054,94.44200825],[4.53251802,0.02272883,94.44110447],[4.53251744,0.02272713,94.44020463],[4.53251686,0.02272542,94.43930873],[4.53251629,0.02272371,94.43841677],[4.53251571,0.022722,94.43752875],[4.53251514,0.02272029,94.43664465],[4.53251456,0.02271859,94.43576448],[4.53251398,0.02271688,94.43488823],[4.53251341,0.02271517,94.43401589],[4.53251283,0.02271346,94.43314747],[4.53251226,0.02271175,94.43228295],[4.53251168,0.02271004,94.43142234],[4.5325111,0.02270834,94.43056563],[4.53251053,0.02270663,94.4297128],[4.53250995,0.02270492,94.42886387],[4.53250938,0.02270321,94.42801883],[4.5325088,0.0227015,94.42717766],[4.53250822,0.0226998,94.42634037],[4.53250765,0.02269809,94.42550696],[4.53250707,0.02269638,94.4246774],[4.5325065,0.02269467,94.42385171],[4.53250592,0.02269296,94.42302988],[4.53250534,0.02269125,94.4222119],[4.53250477,0.02268955,94.42139777],[4.53250419,0.02268784,94.42058748],[4.53250362,0.02268613,94.41978103],[4.53250304,0.02268442,94.41897842],[4.53250246,0.02268271,94.41817963],[4.53250189,0.02268101,94.41738467],[4.53250131,0.0226793,94.41659353],[4.53250074,0.02267759,94.4158062],[4.53250016,0.02267588,94.41502268],[4.53249958,0.02267417,94.41424297],[4.53249901,0.02267246,94.41346706],[4.53249843,0.02267076,94.41269494],[4.53249786,0.02266905,94.41192662],[4.53249728,0.02266734,94.41116209],[4.5324967,0.02266563,94.41040133],[4.53249613,0.02266392,94.40964435],[4.53249555,0.02266221,94.40889115],[4.53249498,0.02266051,94.40814171],[4.5324944,0.0226588,94.40739604],[4.53249382,0.02265709,94.40665412],[4.53249325,0.02265538,94.40591596],[4.53249267,0.02265367,94.40518155],[4.5324921,0.02265196,94.40445088],[4.53249152,0.02265025,94.40372395],[4.53249095,0.02264855,94.40300075],[4.53249037,0.02264684,94.40228129],[4.53248979,0.02264513,94.40156555],[4.53248922,0.02264342,94.40085353],[4.53248864,0.02264171,94.40014523],[4.53248807,0.02264,94.39944064],[4.53248749,0.0226383,94.39873976],[4.53248692,0.02263659,94.39804258],[4.53248634,0.02263488,94.39734909],[4.53248576,0.02263317,94.3966593],[4.53248519,0.02263146,94.3959732],[4.53248461,0.02262975,94.39529079],[4.53248404,0.02262804,94.39461205],[4.53248346,0.02262633,94.39393699],[4.53248289,0.02262463,94.3932656],[4.53248231,0.02262292,94.39259787],[4.53248174,0.02262121,94.39193381],[4.53248116,0.0226195,94.3912734],[4.53248059,0.02261779,94.39061665],[4.53248001,0.02261608,94.38996355],[4.53247944,0.02261437,94.38931408],[4.53247886,0.02261266,94.38866824],[4.53247829,0.02261096,94.38802602],[4.53247771,0.02260925,94.3873874],[4.53247714,0.02260754,94.38675239],[4.53247656,0.02260583,94.38612097],[4.53247599,0.02260412,94.38549313],[4.53247541,0.02260241,94.38486886],[4.53247484,0.0226007,94.38424816],[4.53247426,0.02259899,94.38363101],[4.53247369,0.02259728,94.38301741],[4.53247311,0.02259558,94.38240735],[4.53247254,0.02259387,94.38180081],[4.53247196,0.02259216,94.38119779],[4.53247139,0.02259045,94.38059828],[4.53247081,0.02258874,94.38000228],[4.53247024,0.02258703,94.37940977],[4.53246966,0.02258532,94.37882074],[4.53246909,0.02258361,94.37823518],[4.53246851,0.0225819,94.3776531],[4.53246794,0.02258019,94.37707447],[4.53246737,0.02257848,94.37649929],[4.53246679,0.02257678,94.37592755],[4.53246621,0.02257506,94.37535924],[4.53246564,0.02257335,94.37479435],[4.53246506,0.02257164,94.37423288],[4.53246449,0.02256993,94.37367482],[4.53246392,0.02256822,94.37312015],[4.53246334,0.02256651,94.37256887],[4.53246277,0.0225648,94.37202097],[4.53246219,0.0225631,94.37147645],[4.53246162,0.02256139,94.37093528],[4.53246104,0.02255968,94.37039748],[4.53246047,0.02255797,94.36986301],[4.53245989,0.02255626,94.36933189],[4.53245932,0.02255455,94.3688041],[4.53245874,0.02255284,94.36827962],[4.53245817,0.02255113,94.36775846],[4.5324576,0.02254942,94.36724061],[4.53245702,0.02254771,94.36672605],[4.53245645,0.022546,94.36621477],[4.53245587,0.02254429,94.36570678],[4.5324553,0.02254259,94.36520206],[4.53245472,0.02254088,94.3647006],[4.53245415,0.02253917,94.3642024],[4.53245357,0.02253746,94.36370744],[4.532453,0.02253575,94.36321572],[4.53245242,0.02253404,94.36272723],[4.53245185,0.02253233,94.36224196],[4.53245128,0.02253062,94.36175991],[4.5324507,0.02252891,94.36128106],[4.53245013,0.0225272,94.36080541],[4.53244955,0.02252549,94.36033294],[4.53244898,0.02252378,94.35986366],[4.5324484,0.02252207,94.35939755],[4.53244783,0.02252037,94.3589346],[4.53244725,0.02251866,94.35847481],[4.53244668,0.02251695,94.35801817],[4.53244611,0.02251524,94.35756467],[4.53244553,0.02251353,94.3571143],[4.53244496,0.02251182,94.35666706],[4.53244438,0.02251011,94.35622293],[4.53244381,0.0225084,94.3557819],[4.53244323,0.02250669,94.35534398],[4.53244266,0.02250498,94.35490915],[4.53244208,0.02250327,94.3544774],[4.53244151,0.02250156,94.35404873],[4.53244094,0.02249986,94.35362312],[4.53244036,0.02249815,94.35320057],[4.53243979,0.02249644,94.35278108],[4.53243921,0.02249473,94.35236463],[4.53243864,0.02249302,94.35195121],[4.53243806,0.02249131,94.35154082],[4.53243749,0.0224896,94.35113345],[4.53243691,0.02248789,94.35072908],[4.53243634,0.02248618,94.35032773],[4.53243577,0.02248447,94.34992936],[4.53243519,0.02248276,94.34953399],[4.53243462,0.02248106,94.34914159],[4.53243404,0.02247935,94.34875216],[4.53243347,0.02247764,94.3483657],[4.53243289,0.02247593,94.34798219],[4.53243232,0.02247422,94.34760163],[4.53243174,0.02247251,94.347224],[4.53243117,0.0224708,94.34684931],[4.53243059,0.02246909,94.34647754],[4.53243002,0.02246738,94.34610869],[4.53242945,0.02246567,94.34574274],[4.53242887,0.02246396,94.34537969],[4.5324283,0.02246226,94.34501953],[4.53242772,0.02246055,94.34466225],[4.53242715,0.02245884,94.34430785],[4.53242657,0.02245713,94.34395632],[4.532426,0.02245542,94.34360764],[4.53242542,0.02245371,94.34326181],[4.53242485,0.022452,94.34291883],[4.53242427,0.02245029,94.34257868],[4.5324237,0.02244858,94.34224136],[4.53242313,0.02244687,94.34190686],[4.53242255,0.02244516,94.34157516],[4.53242198,0.02244346,94.34124627],[4.5324214,0.02244175,94.34092018],[4.53242083,0.02244004,94.34059687],[4.53242025,0.02243833,94.34027634],[4.53241968,0.02243662,94.33995858],[4.5324191,0.02243491,94.33964358],[4.53241853,0.0224332,94.33933133],[4.53241795,0.02243149,94.33902184],[4.53241738,0.02242978,94.33871508],[4.5324168,0.02242807,94.33841105],[4.53241623,0.02242637,94.33810974],[4.53241565,0.02242466,94.33781114],[4.53241508,0.02242295,94.33751526],[4.53241451,0.02242124,94.33722207],[4.53241393,0.02241953,94.33693157],[4.53241336,0.02241782,94.33664375],[4.53241278,0.02241611,94.3363586],[4.53241221,0.0224144,94.33607612],[4.53241163,0.02241269,94.3357963],[4.53241106,0.02241099,94.33551912],[4.53241048,0.02240928,94.33524459],[4.53240991,0.02240757,94.33497269],[4.53240933,0.02240586,94.33470342],[4.53240876,0.02240415,94.33443676],[4.53240818,0.02240244,94.33417271],[4.53240761,0.02240073,94.33391126],[4.53240703,0.02239902,94.3336524],[4.53240646,0.02239731,94.33339613],[4.53240588,0.02239561,94.33314243],[4.53240531,0.0223939,94.3328913],[4.53240473,0.02239219,94.33264273],[4.53240416,0.02239048,94.33239671],[4.53240358,0.02238877,94.33215323],[4.53240301,0.02238706,94.3319123],[4.53240243,0.02238535,94.33167389],[4.53240186,0.02238364,94.33143801],[4.53240128,0.02238194,94.33120464],[4.53240071,0.02238023,94.33097378],[4.53240013,0.02237852,94.33074542],[4.53239956,0.02237681,94.33051955],[4.53239898,0.0223751,94.33029617],[4.5323984,0.02237339,94.33007527],[4.53239783,0.02237168,94.32985684],[4.53239725,0.02236997,94.32964087],[4.53239668,0.02236827,94.32942736],[4.5323961,0.02236656,94.3292163],[4.53239553,0.02236485,94.32900768],[4.53239495,0.02236314,94.3288015],[4.53239438,0.02236143,94.32859774],[4.5323938,0.02235972,94.3283964],[4.53239323,0.02235801,94.32819747],[4.53239265,0.02235631,94.32800095],[4.53239208,0.0223546,94.32780683],[4.5323915,0.02235289,94.32761509],[4.53239093,0.02235118,94.32742574],[4.53239035,0.02234947,94.32723877],[4.53238977,0.02234776,94.32705416],[4.5323892,0.02234605,94.32687191],[4.53238862,0.02234434,94.32669201],[4.53238805,0.02234264,94.32651446],[4.53238747,0.02234093,94.32633925],[4.5323869,0.02233922,94.32616637],[4.53238632,0.02233751,94.32599581],[4.53238575,0.0223358,94.32582756],[4.53238517,0.02233409,94.32566163],[4.53238459,0.02233238,94.32549799],[4.53238402,0.02233068,94.32533665],[4.53238344,0.02232897,94.32517759],[4.53238287,0.02232726,94.32502082],[4.53238229,0.02232555,94.32486631],[4.53238172,0.02232384,94.32471406],[4.53238114,0.02232213,94.32456408],[4.53238056,0.02232043,94.32441634],[4.53237999,0.02231872,94.32427084],[4.53237941,0.02231701,94.32412757],[4.53237884,0.0223153,94.32398653],[4.53237826,0.02231359,94.32384771],[4.53237769,0.02231188,94.3237111],[4.53237711,0.02231017,94.32357669],[4.53237653,0.02230847,94.32344448],[4.53237596,0.02230676,94.32331445],[4.53237538,0.02230505,94.32318661],[4.53237481,0.02230334,94.32306094],[4.53237423,0.02230163,94.32293743],[4.53237365,0.02229992,94.32281608],[4.53237308,0.02229822,94.32269689],[4.5323725,0.02229651,94.32257983],[4.53237193,0.0222948,94.32246491],[4.53237135,0.02229309,94.32235212],[4.53237077,0.02229138,94.32224145],[4.5323702,0.02228967,94.32213289],[4.53236962,0.02228797,94.32202644],[4.53236905,0.02228626,94.32192208],[4.53236847,0.02228455,94.32181981],[4.53236789,0.02228284,94.32171963],[4.53236732,0.02228113,94.32162152],[4.53236674,0.02227942,94.32152547],[4.53236617,0.02227772,94.32143149],[4.53236559,0.02227601,94.32133955],[4.53236501,0.0222743,94.32124967],[4.53236444,0.02227259,94.32116181],[4.53236386,0.02227088,94.32107599],[4.53236329,0.02226917,94.32099219],[4.53236271,0.02226747,94.3209104],[4.53236213,0.02226576,94.32083061],[4.53236156,0.02226405,94.32075283],[4.53236098,0.02226234,94.32067703],[4.53236041,0.02226063,94.32060322],[4.53235983,0.02225893,94.32053138],[4.53235925,0.02225722,94.32046151],[4.53235868,0.02225551,94.3203936],[4.5323581,0.0222538,94.32032765],[4.53235752,0.02225209,94.32026363],[4.53235695,0.02225038,94.32020155],[4.53235637,0.02224868,94.32014141],[4.5323558,0.02224697,94.32008318],[4.53235522,0.02224526,94.32002687],[4.53235464,0.02224355,94.31997246],[4.53235407,0.02224184,94.31991995],[4.53235349,0.02224014,94.31986934],[4.53235291,0.02223843,94.31982061],[4.53235234,0.02223672,94.31977375],[4.53235176,0.02223501,94.31972876],[4.53235118,0.0222333,94.31968564],[4.53235061,0.02223159,94.31964436],[4.53235003,0.02222989,94.31960494],[4.53234946,0.02222818,94.31956735],[4.53234888,0.02222647,94.31953159],[4.5323483,0.02222476,94.31949766],[4.53234773,0.02222305,94.31946555],[4.53234715,0.02222135,94.31943524],[4.53234657,0.02221964,94.31940673],[4.532346,0.02221793,94.31938002],[4.53234542,0.02221622,94.31935509],[4.53234484,0.02221451,94.31933194],[4.53234427,0.02221281,94.31931056],[4.53234369,0.0222111,94.31929095],[4.53234311,0.02220939,94.31927309],[4.53234254,0.02220768,94.31925697],[4.53234196,0.02220597,94.3192426],[4.53234138,0.02220427,94.31922997],[4.53234081,0.02220256,94.31921905],[4.53234023,0.02220085,94.31920986],[4.53233966,0.02219914,94.31920237],[4.53233908,0.02219743,94.31919659],[4.5323385,0.02219572,94.3191925],[4.53233793,0.02219402,94.3191901],[4.53233735,0.02219231,94.31918939],[4.53233677,0.0221906,94.31919034],[4.5323362,0.02218889,94.31919296],[4.53233562,0.02218718,94.31919723],[4.53233504,0.02218548,94.31920315],[4.53233447,0.02218377,94.31921072],[4.53233389,0.02218206,94.31921992],[4.53233331,0.02218035,94.31923075],[4.53233274,0.02217864,94.3192432],[4.53233216,0.02217694,94.31925725],[4.53233158,0.02217523,94.31927291],[4.532331,0.02217352,94.31929017],[4.53233043,0.02217181,94.31930902],[4.53232985,0.0221701,94.31932945],[4.53232927,0.0221684,94.31935145],[4.5323287,0.02216669,94.31937502],[4.53232812,0.02216498,94.31940014],[4.53232754,0.02216327,94.31942682],[4.53232697,0.02216157,94.31945504],[4.53232639,0.02215986,94.31948479],[4.53232581,0.02215815,94.31951607],[4.53232524,0.02215644,94.31954888],[4.53232466,0.02215473,94.31958319],[4.53232408,0.02215303,94.31961901],[4.53232351,0.02215132,94.31965633],[4.53232293,0.02214961,94.31969513],[4.53232235,0.0221479,94.31973542],[4.53232177,0.02214619,94.31977718],[4.53232122,0.02214456,94.31981858],[4.5323251,0.02214323,94.33152954],[4.53232565,0.02214486,94.33146479],[4.53232622,0.02214657,94.33139778],[4.53232679,0.02214828,94.33133141],[4.53232736,0.02214999,94.33126577],[4.53232793,0.0221517,94.33120093],[4.5323285,0.02215341,94.33113698],[4.53232907,0.02215512,94.33107399],[4.53232964,0.02215683,94.33101205],[4.53233021,0.02215855,94.33095124],[4.53233078,0.02216026,94.33089164],[4.53233135,0.02216197,94.33083333],[4.53233192,0.02216368,94.33077638],[4.53233249,0.02216539,94.33072088],[4.53233306,0.0221671,94.3306669],[4.53233363,0.02216881,94.33061453],[4.5323342,0.02217052,94.33056385],[4.53233477,0.02217223,94.33051492],[4.53233534,0.02217394,94.33046783],[4.53233591,0.02217565,94.33042266],[4.53233648,0.02217736,94.33037949],[4.53233705,0.02217907,94.33033838],[4.53233762,0.02218078,94.33029943],[4.53233819,0.02218249,94.3302627],[4.53233876,0.0221842,94.33022828],[4.53233933,0.02218591,94.33019624],[4.5323399,0.02218762,94.33016665],[4.53234047,0.02218933,94.33013959],[4.53234105,0.02219104,94.33011514],[4.53234162,0.02219275,94.33009338],[4.53234219,0.02219446,94.33007436],[4.53234276,0.02219617,94.33005818],[4.53234334,0.02219788,94.33004491],[4.53234391,0.02219959,94.33003461],[4.53234449,0.02220129,94.33002737],[4.53234506,0.022203,94.33002325],[4.53234564,0.02220471,94.33002233],[4.53234621,0.02220642,94.33002469],[4.53234679,0.02220813,94.33003036],[4.53234737,0.02220984,94.3300393],[4.53234794,0.02221154,94.33005145],[4.53234852,0.02221325,94.33006673],[4.5323491,0.02221496,94.33008506],[4.53234968,0.02221667,94.33010639],[4.53235026,0.02221837,94.33013063],[4.53235084,0.02222008,94.33015772],[4.53235142,0.02222179,94.3301876],[4.532352,0.02222349,94.33022018],[4.53235258,0.0222252,94.3302554],[4.53235316,0.02222691,94.3302932],[4.53235374,0.02222861,94.33033349],[4.53235432,0.02223032,94.33037623],[4.53235491,0.02223203,94.33042133],[4.53235549,0.02223373,94.33046872],[4.53235607,0.02223544,94.33051836],[4.53235665,0.02223714,94.33057015],[4.53235723,0.02223885,94.33062405],[4.53235782,0.02224056,94.33067997],[4.5323584,0.02224226,94.33073786],[4.53235898,0.02224397,94.33079765],[4.53235956,0.02224567,94.33085928],[4.53236015,0.02224738,94.33092268],[4.53236073,0.02224909,94.33098778],[4.53236131,0.02225079,94.33105452],[4.53236189,0.0222525,94.33112284],[4.53236248,0.02225421,94.33119267],[4.53236306,0.02225591,94.33126395],[4.53236364,0.02225762,94.33133662],[4.53236422,0.02225932,94.33141061],[4.5323648,0.02226103,94.33148587],[4.53236538,0.02226274,94.33156232],[4.53236596,0.02226444,94.33163992],[4.53236654,0.02226615,94.3317186],[4.53236712,0.02226786,94.33179829],[4.5323677,0.02226957,94.33187896],[4.53236828,0.02227127,94.33196064],[4.53236886,0.02227298,94.33204336],[4.53236944,0.02227469,94.33212719],[4.53237002,0.02227639,94.33221217],[4.5323706,0.0222781,94.33229835],[4.53237117,0.02227981,94.33238577],[4.53237175,0.02228152,94.33247448],[4.53237233,0.02228323,94.33256454],[4.53237291,0.02228493,94.33265597],[4.53237348,0.02228664,94.33274885],[4.53237406,0.02228835,94.3328432],[4.53237464,0.02229006,94.33293907],[4.53237521,0.02229177,94.33303652],[4.53237579,0.02229348,94.33313559],[4.53237636,0.02229518,94.33323632],[4.53237694,0.02229689,94.33333876],[4.53237751,0.0222986,94.33344295],[4.53237809,0.02230031,94.33354895],[4.53237866,0.02230202,94.33365679],[4.53237924,0.02230373,94.33376653],[4.53237981,0.02230544,94.3338782],[4.53238039,0.02230714,94.33399185],[4.53238096,0.02230885,94.33410752],[4.53238154,0.02231056,94.33422527],[4.53238211,0.02231227,94.33434513],[4.53238269,0.02231398,94.33446714],[4.53238326,0.02231569,94.33459136],[4.53238384,0.0223174,94.33471782],[4.53238441,0.02231911,94.33484657],[4.53238499,0.02232082,94.33497765],[4.53238556,0.02232252,94.3351111],[4.53238614,0.02232423,94.33524698],[4.53238671,0.02232594,94.33538531],[4.53238729,0.02232765,94.33552614],[4.53238786,0.02232936,94.33566952],[4.53238844,0.02233107,94.33581548],[4.53238901,0.02233278,94.33596407],[4.53238959,0.02233449,94.33611533],[4.53239016,0.02233619,94.3362693],[4.53239074,0.0223379,94.33642602],[4.53239131,0.02233961,94.33658554],[4.53239189,0.02234132,94.33674789],[4.53239246,0.02234303,94.33691312],[4.53239304,0.02234474,94.33708126],[4.53239362,0.02234645,94.33725235],[4.53239419,0.02234815,94.33742645],[4.53239477,0.02234986,94.33760358],[4.53239535,0.02235157,94.33778378],[4.53239593,0.02235328,94.33796711],[4.5323965,0.02235499,94.33815358],[4.53239708,0.02235669,94.33834326],[4.53239766,0.0223584,94.33853616],[4.53239824,0.02236011,94.33873234],[4.53239882,0.02236182,94.33893183],[4.5323994,0.02236352,94.33913467],[4.53239997,0.02236523,94.3393409],[4.53240055,0.02236694,94.33955056],[4.53240113,0.02236865,94.33976368],[4.53240172,0.02237035,94.33998031],[4.5324023,0.02237206,94.34020047],[4.53240288,0.02237377,94.34042422],[4.53240346,0.02237547,94.34065157],[4.53240404,0.02237718,94.34088248],[4.53240462,0.02237889,94.34111689],[4.53240521,0.02238059,94.34135476],[4.53240579,0.0223823,94.34159602],[4.53240637,0.022384,94.34184062],[4.53240696,0.02238571,94.3420885],[4.53240754,0.02238742,94.34233962],[4.53240813,0.02238912,94.34259392],[4.53240871,0.02239083,94.34285134],[4.5324093,0.02239253,94.34311183],[4.53240988,0.02239424,94.34337535],[4.53241047,0.02239594,94.34364183],[4.53241105,0.02239765,94.34391122],[4.53241164,0.02239935,94.34418349],[4.53241222,0.02240106,94.34445856],[4.53241281,0.02240276,94.34473641],[4.53241339,0.02240447,94.34501696],[4.53241398,0.02240618,94.34530019],[4.53241456,0.02240788,94.34558602],[4.53241515,0.02240959,94.34587443],[4.53241574,0.02241129,94.34616535],[4.53241632,0.022413,94.34645875],[4.53241691,0.0224147,94.34675456],[4.53241749,0.02241641,94.34705275],[4.53241808,0.02241811,94.34735326],[4.53241866,0.02241982,94.34765606],[4.53241925,0.02242152,94.34796116],[4.53241983,0.02242323,94.34826857],[4.53242041,0.02242494,94.3485783],[4.532421,0.02242664,94.34889037],[4.53242158,0.02242835,94.3492048],[4.53242217,0.02243005,94.34952159],[4.53242275,0.02243176,94.34984077],[4.53242333,0.02243347,94.35016235],[4.53242392,0.02243517,94.35048635],[4.5324245,0.02243688,94.35081278],[4.53242508,0.02243858,94.35114165],[4.53242566,0.02244029,94.35147298],[4.53242625,0.022442,94.35180679],[4.53242683,0.0224437,94.35214309],[4.53242741,0.02244541,94.35248189],[4.53242799,0.02244712,94.35282322],[4.53242858,0.02244882,94.35316708],[4.53242916,0.02245053,94.35351349],[4.53242974,0.02245224,94.35386246],[4.53243032,0.02245394,94.35421401],[4.5324309,0.02245565,94.35456816],[4.53243148,0.02245736,94.35492491],[4.53243206,0.02245906,94.35528429],[4.53243264,0.02246077,94.35564631],[4.53243323,0.02246248,94.35601098],[4.53243381,0.02246419,94.35637832],[4.53243439,0.02246589,94.35674834],[4.53243497,0.0224676,94.35712105],[4.53243555,0.02246931,94.35749648],[4.53243613,0.02247101,94.35787463],[4.53243671,0.02247272,94.35825552],[4.53243729,0.02247443,94.35863916],[4.53243787,0.02247614,94.35902558],[4.53243845,0.02247784,94.35941477],[4.53243903,0.02247955,94.35980677],[4.53243961,0.02248126,94.36020157],[4.53244019,0.02248297,94.3605992],[4.53244076,0.02248467,94.36099967],[4.53244134,0.02248638,94.361403],[4.53244192,0.02248809,94.36180919],[4.5324425,0.0224898,94.36221827],[4.53244308,0.02249151,94.36263024],[4.53244366,0.02249321,94.36304513],[4.53244424,0.02249492,94.36346294],[4.53244482,0.02249663,94.36388369],[4.5324454,0.02249834,94.36430739],[4.53244597,0.02250005,94.36473406],[4.53244655,0.02250175,94.36516371],[4.53244713,0.02250346,94.36559636],[4.53244771,0.02250517,94.36603201],[4.53244829,0.02250688,94.36647069],[4.53244886,0.02250859,94.36691241],[4.53244944,0.02251029,94.36735718],[4.53245002,0.022512,94.36780501],[4.5324506,0.02251371,94.36825593],[4.53245117,0.02251542,94.36870993],[4.53245175,0.02251713,94.36916705],[4.53245233,0.02251883,94.36962728],[4.53245291,0.02252054,94.37009065],[4.53245348,0.02252225,94.37055717],[4.53245406,0.02252396,94.37102685],[4.53245464,0.02252567,94.37149971],[4.53245522,0.02252738,94.37197576],[4.53245579,0.02252909,94.37245501],[4.53245637,0.02253079,94.37293748],[4.53245695,0.0225325,94.37342318],[4.53245752,0.02253421,94.37391212],[4.5324581,0.02253592,94.37440433],[4.53245868,0.02253763,94.37489981],[4.53245925,0.02253934,94.37539857],[4.53245983,0.02254105,94.37590064],[4.53246041,0.02254275,94.37640601],[4.53246098,0.02254446,94.37691467],[4.53246156,0.02254617,94.37742664],[4.53246214,0.02254788,94.37794189],[4.53246271,0.02254959,94.37846042],[4.53246329,0.0225513,94.37898223],[4.53246386,0.02255301,94.37950731],[4.53246444,0.02255472,94.38003566],[4.53246502,0.02255642,94.38056727],[4.53246559,0.02255813,94.38110213],[4.53246617,0.02255984,94.38164024],[4.53246674,0.02256155,94.3821816],[4.53246732,0.02256326,94.3827262],[4.53246789,0.02256497,94.38327403],[4.53246847,0.02256668,94.38382509],[4.53246904,0.02256839,94.38437937],[4.53246962,0.0225701,94.38493687],[4.53247019,0.02257181,94.38549758],[4.53247077,0.02257352,94.3860615],[4.53247134,0.02257523,94.38662861],[4.53247192,0.02257694,94.38719893],[4.53247249,0.02257865,94.38777243],[4.53247307,0.02258036,94.38834912],[4.53247364,0.02258207,94.38892898],[4.53247421,0.02258378,94.38951202],[4.53247479,0.02258549,94.39009822],[4.53247536,0.0225872,94.39068759],[4.53247593,0.02258891,94.39128011],[4.5324765,0.02259062,94.39187578],[4.53247708,0.02259233,94.39247459],[4.53247765,0.02259404,94.39307654],[4.53247822,0.02259575,94.39368162],[4.53247879,0.02259746,94.39428982],[4.53247936,0.02259917,94.39490116],[4.53247993,0.02260088,94.39551567],[4.5324805,0.02260259,94.39613343],[4.53248108,0.0226043,94.39675449],[4.53248165,0.02260601,94.39737892],[4.53248222,0.02260772,94.39800678],[4.53248279,0.02260943,94.39863813],[4.53248336,0.02261114,94.39927303],[4.53248393,0.02261285,94.39991154],[4.5324845,0.02261456,94.40055373],[4.53248507,0.02261628,94.40119966],[4.53248564,0.02261799,94.4018494],[4.53248621,0.0226197,94.40250299],[4.53248678,0.02262141,94.40316051],[4.53248735,0.02262312,94.403822],[4.53248792,0.02262483,94.40448753],[4.53248849,0.02262654,94.40515715],[4.53248906,0.02262825,94.40583093],[4.53248963,0.02262996,94.40650892],[4.5324902,0.02263167,94.40719118],[4.53249077,0.02263338,94.40787777],[4.53249134,0.02263509,94.40856874],[4.53249191,0.0226368,94.40926416],[4.53249249,0.02263851,94.4099641],[4.53249306,0.02264022,94.41066859],[4.53249363,0.02264193,94.41137772],[4.5324942,0.02264364,94.41209153],[4.53249478,0.02264535,94.4128101],[4.53249535,0.02264706,94.41353347],[4.53249592,0.02264877,94.41426171],[4.5324965,0.02265048,94.41499489],[4.53249707,0.02265219,94.41573306],[4.53249765,0.02265389,94.41647629],[4.53249822,0.0226556,94.41722465],[4.5324988,0.02265731,94.41797818],[4.53249937,0.02265902,94.41873694],[4.53249995,0.02266073,94.41950087],[4.53250053,0.02266244,94.4202699],[4.53250111,0.02266414,94.42104395],[4.53250169,0.02266585,94.42182295],[4.53250226,0.02266756,94.42260682],[4.53250284,0.02266927,94.42339548],[4.53250342,0.02267097,94.42418886],[4.532504,0.02267268,94.42498687],[4.53250458,0.02267439,94.42578945],[4.53250516,0.02267609,94.42659651],[4.53250574,0.0226778,94.42740799],[4.53250632,0.02267951,94.42822378],[4.5325069,0.02268122,94.42904383],[4.53250748,0.02268292,94.42986805],[4.53250806,0.02268463,94.43069635],[4.53250864,0.02268634,94.43152867],[4.53250922,0.02268804,94.43236491],[4.5325098,0.02268975,94.43320501],[4.53251038,0.02269146,94.43404886],[4.53251096,0.02269316,94.4348964],[4.53251154,0.02269487,94.43574754],[4.53251212,0.02269658,94.43660219],[4.5325127,0.02269829,94.43746027],[4.53251328,0.02269999,94.4383217],[4.53251385,0.0227017,94.43918638],[4.53251443,0.02270341,94.44005424],[4.53251501,0.02270512,94.44092518],[4.53251558,0.02270682,94.44179912],[4.53251616,0.02270853,94.44267596],[4.53251674,0.02271024,94.44355562],[4.53251731,0.02271195,94.444438],[4.53251789,0.02271366,94.44532304],[4.53251846,0.02271537,94.44621076],[4.53251903,0.02271708,94.44710119],[4.5325196,0.02271879,94.44799439],[4.53252018,0.02272049,94.44889039],[4.53252075,0.0227222,94.44978924],[4.53252132,0.02272391,94.45069099],[4.53252189,0.02272562,94.45159567],[4.53252246,0.02272733,94.45250334],[4.53252303,0.02272904,94.45341403],[4.5325236,0.02273076,94.45432779],[4.53252416,0.02273247,94.45524467],[4.53252473,0.02273418,94.45616467],[4.5325253,0.02273589,94.45708774],[4.53252587,0.0227376,94.45801387],[4.53252643,0.02273931,94.458943],[4.532527,0.02274102,94.4598751],[4.53252757,0.02274273,94.46081015],[4.53252813,0.02274444,94.46174809],[4.5325287,0.02274616,94.46268891],[4.53252926,0.02274787,94.46363255],[4.53252983,0.02274958,94.464579],[4.53253039,0.02275129,94.46552821],[4.53253096,0.022753,94.46648015],[4.53253152,0.02275471,94.4674348],[4.53253208,0.02275643,94.4683921],[4.53253265,0.02275814,94.46935205],[4.53253321,0.02275985,94.47031459],[4.53253378,0.02276156,94.4712797],[4.53253434,0.02276327,94.47224736],[4.5325349,0.02276499,94.47321752],[4.53253547,0.0227667,94.47419016],[4.53253603,0.02276841,94.47516525],[4.53253659,0.02277012,94.47614277],[4.53253715,0.02277184,94.47712267],[4.53253772,0.02277355,94.47810494],[4.53253828,0.02277526,94.47908955],[4.53253884,0.02277697,94.48007647],[4.53253941,0.02277868,94.4810657],[4.53253997,0.0227804,94.48205732],[4.53254053,0.02278211,94.48305147],[4.5325411,0.02278382,94.48404826],[4.53254166,0.02278553,94.48504781],[4.53254222,0.02278724,94.48605025],[4.53254279,0.02278896,94.4870557],[4.53254335,0.02279067,94.4880643],[4.53254392,0.02279238,94.48907617],[4.53254449,0.02279409,94.49009145],[4.53254505,0.0227958,94.49111027],[4.53254562,0.02279751,94.49213276],[4.53254619,0.02279922,94.49315907],[4.53254676,0.02280093,94.49418934],[4.53254733,0.02280264,94.4952237],[4.5325479,0.02280435,94.4962623],[4.53254848,0.02280606,94.49730528],[4.53254905,0.02280777,94.49835279],[4.53254963,0.02280947,94.49940496],[4.5325502,0.02281118,94.50046169],[4.53255078,0.02281289,94.50152257],[4.53255136,0.02281459,94.50258723],[4.53255194,0.0228163,94.50365525],[4.53255252,0.02281801,94.50472624],[4.5325531,0.02281971,94.50579977],[4.53255368,0.02282142,94.50687546],[4.53255427,0.02282312,94.50795287],[4.53255485,0.02282483,94.5090316],[4.53255543,0.02282653,94.51011122],[4.53255601,0.02282824,94.51119131],[4.5325566,0.02282994,94.51227144],[4.53255718,0.02283165,94.51335118],[4.53255776,0.02283335,94.51443011],[4.53255834,0.02283506,94.51550778],[4.53255893,0.02283677,94.51658377],[4.53255951,0.02283847,94.51765762],[4.53256009,0.02284018,94.5187289],[4.53256067,0.02284188,94.51979716],[4.53256124,0.02284359,94.52086195],[4.53256182,0.0228453,94.52192284],[4.5325624,0.02284701,94.52297937],[4.53256297,0.02284871,94.5240311],[4.53256354,0.02285042,94.52507758],[4.53256412,0.02285213,94.52611834],[4.53256469,0.02285384,94.52715295],[4.53256525,0.02285555,94.52818115],[4.53256582,0.02285726,94.52920352],[4.53256639,0.02285897,94.53022085],[4.53256695,0.02286068,94.53123396],[4.53256751,0.02286239,94.53224365],[4.53256808,0.02286411,94.53325074],[4.53256864,0.02286582,94.53425604],[4.5325692,0.02286753,94.53526039],[4.53256977,0.02286924,94.53626462],[4.53257033,0.02287095,94.53726955],[4.5325709,0.02287266,94.53827604],[4.53257147,0.02287437,94.53928491],[4.53257204,0.02287608,94.54029681],[4.53257261,0.02287779,94.54131149],[4.53257318,0.0228795,94.54232848],[4.53257375,0.02288121,94.5433473],[4.53257433,0.02288292,94.54436747],[4.5325749,0.02288462,94.54538852],[4.53257548,0.02288633,94.54640997],[4.53257606,0.02288804,94.54743132],[4.53257663,0.02288974,94.5484521],[4.53257721,0.02289145,94.54947182],[4.53257779,0.02289316,94.55048998],[4.53257837,0.02289486,94.5515061],[4.53257895,0.02289657,94.55251968],[4.53257953,0.02289827,94.55353023],[4.53258011,0.02289998,94.55453726],[4.53258069,0.02290169,94.55554027],[4.53258127,0.02290339,94.55653876],[4.53258184,0.0229051,94.55753225],[4.53258242,0.02290681,94.55852023],[4.532583,0.02290851,94.5595022],[4.53258357,0.02291022,94.56047769],[4.53258415,0.02291193,94.56144649],[4.53258472,0.02291363,94.56240866],[4.53258529,0.02291534,94.56336428],[4.53258586,0.02291705,94.56431343],[4.53258644,0.02291876,94.5652562],[4.53258701,0.02292047,94.56619267],[4.53258758,0.02292218,94.56712292],[4.53258814,0.02292389,94.56804704],[4.53258871,0.0229256,94.56896512],[4.53258928,0.02292731,94.56987724],[4.53258985,0.02292902,94.57078348],[4.53259041,0.02293073,94.57168394],[4.53259098,0.02293244,94.5725787],[4.53259155,0.02293415,94.57346786],[4.53259211,0.02293586,94.57435149],[4.53259268,0.02293757,94.57522969],[4.53259324,0.02293928,94.57610255],[4.53259381,0.02294099,94.57697016],[4.53259437,0.0229427,94.5778326],[4.53259494,0.02294441,94.57868999],[4.5325955,0.02294612,94.57954245],[4.53259607,0.02294783,94.58039009],[4.53259663,0.02294954,94.58123302],[4.5325972,0.02295125,94.58207136],[4.53259776,0.02295297,94.58290521],[4.53259833,0.02295468,94.5837347],[4.53259889,0.02295639,94.58455992],[4.53259946,0.0229581,94.58538087],[4.53260003,0.02295981,94.58619743],[4.5326006,0.02296152,94.5870095],[4.53260116,0.02296323,94.58781695],[4.53260173,0.02296493,94.58861967],[4.5326023,0.02296664,94.58941753],[4.53260287,0.02296835,94.59021043],[4.53260344,0.02297006,94.59099824],[4.53260401,0.02297177,94.59178085],[4.53260458,0.02297348,94.59255813],[4.53260515,0.02297519,94.59332999],[4.53260571,0.0229769,94.59409629],[4.53260628,0.02297861,94.59485693],[4.53260686,0.02298032,94.59561179],[4.53260743,0.02298202,94.59636075],[4.532608,0.02298373,94.59710371],[4.53260857,0.02298544,94.59784054],[4.53260914,0.02298715,94.59857114],[4.53260971,0.02298886,94.59929539],[4.53261028,0.02299057,94.60001321],[4.53261085,0.02299228,94.60072464],[4.53261142,0.02299399,94.60142975],[4.53261199,0.02299569,94.60212861],[4.53261257,0.0229974,94.6028213],[4.53261314,0.02299911,94.60350788],[4.53261371,0.02300082,94.60418843],[4.53261428,0.02300253,94.60486302],[4.53261485,0.02300424,94.60553172],[4.53261542,0.02300595,94.60619462],[4.53261599,0.02300766,94.60685182],[4.53261656,0.02300936,94.60750347],[4.53261714,0.02301107,94.60814972],[4.53261771,0.02301278,94.60879071],[4.53261828,0.02301449,94.60942658],[4.53261885,0.0230162,94.61005748],[4.53261942,0.02301791,94.61068356],[4.53261999,0.02301962,94.61130495],[4.53262056,0.02302133,94.6119218],[4.53262113,0.02302304,94.61253425],[4.5326217,0.02302475,94.61314244],[4.53262227,0.02302646,94.61374651],[4.53262284,0.02302817,94.6143466],[4.53262342,0.02302988,94.61494285],[4.53262399,0.02303159,94.6155354],[4.53262456,0.0230333,94.61612437],[4.53262513,0.02303501,94.61670992],[4.5326257,0.02303672,94.61729217],[4.53262627,0.02303843,94.61787125],[4.53262684,0.02304013,94.61844729],[4.53262741,0.02304184,94.61902038],[4.53262798,0.02304355,94.61959063],[4.53262855,0.02304526,94.62015813],[4.53262912,0.02304697,94.62072299],[4.5326297,0.02304868,94.6212853],[4.53263027,0.02305039,94.62184517],[4.53263084,0.0230521,94.62240269],[4.53263141,0.02305381,94.62295797],[4.53263198,0.02305552,94.6235111],[4.53263255,0.02305724,94.62406218],[4.53263312,0.02305895,94.62461131],[4.53263369,0.02306066,94.6251586],[4.53263426,0.02306237,94.62570414],[4.53263483,0.02306408,94.62624803],[4.53263541,0.02306579,94.62679036],[4.53263598,0.0230675,94.62733125],[4.53263655,0.02306921,94.62787079],[4.53263712,0.02307092,94.62840907],[4.53263769,0.02307263,94.62894619],[4.53263826,0.02307434,94.62948227],[4.53263883,0.02307605,94.63001738],[4.5326394,0.02307776,94.63055164],[4.53263997,0.02307947,94.63108514],[4.53264054,0.02308119,94.63161798],[4.53264111,0.0230829,94.63215027],[4.53264168,0.02308461,94.63268215],[4.53264225,0.02308632,94.63321376],[4.53264282,0.02308803,94.63374521],[4.53264339,0.02308974,94.63427664],[4.53264396,0.02309145,94.63480818],[4.53264453,0.02309317,94.63533996],[4.53264509,0.02309488,94.6358721],[4.53264566,0.02309659,94.63640473],[4.53264623,0.0230983,94.63693798],[4.5326468,0.02310001,94.63747195],[4.53264737,0.02310172,94.63800678],[4.53264794,0.02310344,94.63854256],[4.53264851,0.02310515,94.63907938],[4.53264908,0.02310686,94.63961735],[4.53264965,0.02310857,94.64015657],[4.53265022,0.02311029,94.64069714],[4.53265078,0.023112,94.64123915],[4.53265135,0.02311371,94.6417827],[4.53265192,0.02311542,94.6423279],[4.53265249,0.02311713,94.64287483],[4.53265306,0.02311885,94.6434236],[4.53265363,0.02312056,94.64397431],[4.5326542,0.02312227,94.64452704],[4.53265477,0.02312398,94.64508191],[4.53265534,0.0231257,94.645639],[4.5326559,0.02312741,94.64619841],[4.53265647,0.02312912,94.64676024],[4.53265704,0.02313084,94.64732458],[4.53265761,0.02313255,94.64789154],[4.53265818,0.02313426,94.6484612],[4.53265875,0.02313597,94.64903366],[4.53265932,0.02313769,94.64960904],[4.53265988,0.0231394,94.65018747],[4.53266045,0.02314111,94.65076914],[4.53266102,0.02314283,94.6513542],[4.53266159,0.02314454,94.65194282],[4.53266216,0.02314625,94.65253516],[4.53266272,0.02314797,94.65313139],[4.53266329,0.02314968,94.65373168],[4.53266386,0.02315139,94.6543362],[4.53266443,0.02315311,94.6549451],[4.532665,0.02315482,94.65555855],[4.53266556,0.02315653,94.65617672],[4.53266613,0.02315825,94.65679978],[4.5326667,0.02315996,94.65742789],[4.53266727,0.02316167,94.65806122],[4.53266784,0.02316339,94.65869993],[4.5326684,0.0231651,94.65934419],[4.53266897,0.02316682,94.65999417],[4.53266954,0.02316853,94.66065003],[4.5326701,0.02317024,94.66131195],[4.53267067,0.02317196,94.66198008],[4.53267124,0.02317367,94.66265461],[4.53267181,0.02317539,94.66333568],[4.53267237,0.0231771,94.66402349],[4.53267294,0.02317882,94.66471819],[4.53267351,0.02318053,94.66541995],[4.53267407,0.02318225,94.66612894],[4.53267464,0.02318396,94.66684534],[4.53267521,0.02318567,94.66756931],[4.53267577,0.02318739,94.66830102],[4.53267634,0.0231891,94.66904066],[4.53267691,0.02319082,94.66978838],[4.53267747,0.02319253,94.67054431],[4.53267804,0.02319425,94.67130835],[4.53267861,0.02319596,94.67208033],[4.53267917,0.02319768,94.6728601],[4.53267974,0.02319939,94.67364753],[4.53267742,0.02320017,94.6697212]]],"type":"Polygon"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004200","id":1,"type":"shoulder","predecessorId":1,"sOffset":35.4036855625}},{"geometry":{"coordinates":[[[4.53267974,0.02319939,94.67364753],[4.53267917,0.02319768,94.6728601],[4.53267861,0.02319596,94.67208033],[4.53267804,0.02319425,94.67130835],[4.53267747,0.02319253,94.67054431],[4.53267691,0.02319082,94.66978838],[4.53267634,0.0231891,94.66904066],[4.53267577,0.02318739,94.66830102],[4.53267521,0.02318567,94.66756931],[4.53267464,0.02318396,94.66684534],[4.53267407,0.02318225,94.66612894],[4.53267351,0.02318053,94.66541995],[4.53267294,0.02317882,94.66471819],[4.53267237,0.0231771,94.66402349],[4.53267181,0.02317539,94.66333568],[4.53267124,0.02317367,94.66265461],[4.53267067,0.02317196,94.66198008],[4.5326701,0.02317024,94.66131195],[4.53266954,0.02316853,94.66065003],[4.53266897,0.02316682,94.65999417],[4.5326684,0.0231651,94.65934419],[4.53266784,0.02316339,94.65869993],[4.53266727,0.02316167,94.65806122],[4.5326667,0.02315996,94.65742789],[4.53266613,0.02315825,94.65679978],[4.53266556,0.02315653,94.65617672],[4.532665,0.02315482,94.65555855],[4.53266443,0.02315311,94.6549451],[4.53266386,0.02315139,94.6543362],[4.53266329,0.02314968,94.65373168],[4.53266272,0.02314797,94.65313139],[4.53266216,0.02314625,94.65253516],[4.53266159,0.02314454,94.65194282],[4.53266102,0.02314283,94.6513542],[4.53266045,0.02314111,94.65076914],[4.53265988,0.0231394,94.65018747],[4.53265932,0.02313769,94.64960904],[4.53265875,0.02313597,94.64903366],[4.53265818,0.02313426,94.6484612],[4.53265761,0.02313255,94.64789154],[4.53265704,0.02313084,94.64732458],[4.53265647,0.02312912,94.64676024],[4.5326559,0.02312741,94.64619841],[4.53265534,0.0231257,94.645639],[4.53265477,0.02312398,94.64508191],[4.5326542,0.02312227,94.64452704],[4.53265363,0.02312056,94.64397431],[4.53265306,0.02311885,94.6434236],[4.53265249,0.02311713,94.64287483],[4.53265192,0.02311542,94.6423279],[4.53265135,0.02311371,94.6417827],[4.53265078,0.023112,94.64123915],[4.53265022,0.02311029,94.64069714],[4.53264965,0.02310857,94.64015657],[4.53264908,0.02310686,94.63961735],[4.53264851,0.02310515,94.63907938],[4.53264794,0.02310344,94.63854256],[4.53264737,0.02310172,94.63800678],[4.5326468,0.02310001,94.63747195],[4.53264623,0.0230983,94.63693798],[4.53264566,0.02309659,94.63640473],[4.53264509,0.02309488,94.6358721],[4.53264453,0.02309317,94.63533996],[4.53264396,0.02309145,94.63480818],[4.53264339,0.02308974,94.63427664],[4.53264282,0.02308803,94.63374521],[4.53264225,0.02308632,94.63321376],[4.53264168,0.02308461,94.63268215],[4.53264111,0.0230829,94.63215027],[4.53264054,0.02308119,94.63161798],[4.53263997,0.02307947,94.63108514],[4.5326394,0.02307776,94.63055164],[4.53263883,0.02307605,94.63001738],[4.53263826,0.02307434,94.62948227],[4.53263769,0.02307263,94.62894619],[4.53263712,0.02307092,94.62840907],[4.53263655,0.02306921,94.62787079],[4.53263598,0.0230675,94.62733125],[4.53263541,0.02306579,94.62679036],[4.53263483,0.02306408,94.62624803],[4.53263426,0.02306237,94.62570414],[4.53263369,0.02306066,94.6251586],[4.53263312,0.02305895,94.62461131],[4.53263255,0.02305724,94.62406218],[4.53263198,0.02305552,94.6235111],[4.53263141,0.02305381,94.62295797],[4.53263084,0.0230521,94.62240269],[4.53263027,0.02305039,94.62184517],[4.5326297,0.02304868,94.6212853],[4.53262912,0.02304697,94.62072299],[4.53262855,0.02304526,94.62015813],[4.53262798,0.02304355,94.61959063],[4.53262741,0.02304184,94.61902038],[4.53262684,0.02304013,94.61844729],[4.53262627,0.02303843,94.61787125],[4.5326257,0.02303672,94.61729217],[4.53262513,0.02303501,94.61670992],[4.53262456,0.0230333,94.61612437],[4.53262399,0.02303159,94.6155354],[4.53262342,0.02302988,94.61494285],[4.53262284,0.02302817,94.6143466],[4.53262227,0.02302646,94.61374651],[4.5326217,0.02302475,94.61314244],[4.53262113,0.02302304,94.61253425],[4.53262056,0.02302133,94.6119218],[4.53261999,0.02301962,94.61130495],[4.53261942,0.02301791,94.61068356],[4.53261885,0.0230162,94.61005748],[4.53261828,0.02301449,94.60942658],[4.53261771,0.02301278,94.60879071],[4.53261714,0.02301107,94.60814972],[4.53261656,0.02300936,94.60750347],[4.53261599,0.02300766,94.60685182],[4.53261542,0.02300595,94.60619462],[4.53261485,0.02300424,94.60553172],[4.53261428,0.02300253,94.60486302],[4.53261371,0.02300082,94.60418843],[4.53261314,0.02299911,94.60350788],[4.53261257,0.0229974,94.6028213],[4.53261199,0.02299569,94.60212861],[4.53261142,0.02299399,94.60142975],[4.53261085,0.02299228,94.60072464],[4.53261028,0.02299057,94.60001321],[4.53260971,0.02298886,94.59929539],[4.53260914,0.02298715,94.59857114],[4.53260857,0.02298544,94.59784054],[4.532608,0.02298373,94.59710371],[4.53260743,0.02298202,94.59636075],[4.53260686,0.02298032,94.59561179],[4.53260628,0.02297861,94.59485693],[4.53260571,0.0229769,94.59409629],[4.53260515,0.02297519,94.59332999],[4.53260458,0.02297348,94.59255813],[4.53260401,0.02297177,94.59178085],[4.53260344,0.02297006,94.59099824],[4.53260287,0.02296835,94.59021043],[4.5326023,0.02296664,94.58941753],[4.53260173,0.02296493,94.58861967],[4.53260116,0.02296323,94.58781695],[4.5326006,0.02296152,94.5870095],[4.53260003,0.02295981,94.58619743],[4.53259946,0.0229581,94.58538087],[4.53259889,0.02295639,94.58455992],[4.53259833,0.02295468,94.5837347],[4.53259776,0.02295297,94.58290521],[4.5325972,0.02295125,94.58207136],[4.53259663,0.02294954,94.58123302],[4.53259607,0.02294783,94.58039009],[4.5325955,0.02294612,94.57954245],[4.53259494,0.02294441,94.57868999],[4.53259437,0.0229427,94.5778326],[4.53259381,0.02294099,94.57697016],[4.53259324,0.02293928,94.57610255],[4.53259268,0.02293757,94.57522969],[4.53259211,0.02293586,94.57435149],[4.53259155,0.02293415,94.57346786],[4.53259098,0.02293244,94.5725787],[4.53259041,0.02293073,94.57168394],[4.53258985,0.02292902,94.57078348],[4.53258928,0.02292731,94.56987724],[4.53258871,0.0229256,94.56896512],[4.53258814,0.02292389,94.56804704],[4.53258758,0.02292218,94.56712292],[4.53258701,0.02292047,94.56619267],[4.53258644,0.02291876,94.5652562],[4.53258586,0.02291705,94.56431343],[4.53258529,0.02291534,94.56336428],[4.53258472,0.02291363,94.56240866],[4.53258415,0.02291193,94.56144649],[4.53258357,0.02291022,94.56047769],[4.532583,0.02290851,94.5595022],[4.53258242,0.02290681,94.55852023],[4.53258184,0.0229051,94.55753225],[4.53258127,0.02290339,94.55653876],[4.53258069,0.02290169,94.55554027],[4.53258011,0.02289998,94.55453726],[4.53257953,0.02289827,94.55353023],[4.53257895,0.02289657,94.55251968],[4.53257837,0.02289486,94.5515061],[4.53257779,0.02289316,94.55048998],[4.53257721,0.02289145,94.54947182],[4.53257663,0.02288974,94.5484521],[4.53257606,0.02288804,94.54743132],[4.53257548,0.02288633,94.54640997],[4.5325749,0.02288462,94.54538852],[4.53257433,0.02288292,94.54436747],[4.53257375,0.02288121,94.5433473],[4.53257318,0.0228795,94.54232848],[4.53257261,0.02287779,94.54131149],[4.53257204,0.02287608,94.54029681],[4.53257147,0.02287437,94.53928491],[4.5325709,0.02287266,94.53827604],[4.53257033,0.02287095,94.53726955],[4.53256977,0.02286924,94.53626462],[4.5325692,0.02286753,94.53526039],[4.53256864,0.02286582,94.53425604],[4.53256808,0.02286411,94.53325074],[4.53256751,0.02286239,94.53224365],[4.53256695,0.02286068,94.53123396],[4.53256639,0.02285897,94.53022085],[4.53256582,0.02285726,94.52920352],[4.53256525,0.02285555,94.52818115],[4.53256469,0.02285384,94.52715295],[4.53256412,0.02285213,94.52611834],[4.53256354,0.02285042,94.52507758],[4.53256297,0.02284871,94.5240311],[4.5325624,0.02284701,94.52297937],[4.53256182,0.0228453,94.52192284],[4.53256124,0.02284359,94.52086195],[4.53256067,0.02284188,94.51979716],[4.53256009,0.02284018,94.5187289],[4.53255951,0.02283847,94.51765762],[4.53255893,0.02283677,94.51658377],[4.53255834,0.02283506,94.51550778],[4.53255776,0.02283335,94.51443011],[4.53255718,0.02283165,94.51335118],[4.5325566,0.02282994,94.51227144],[4.53255601,0.02282824,94.51119131],[4.53255543,0.02282653,94.51011122],[4.53255485,0.02282483,94.5090316],[4.53255427,0.02282312,94.50795287],[4.53255368,0.02282142,94.50687546],[4.5325531,0.02281971,94.50579977],[4.53255252,0.02281801,94.50472624],[4.53255194,0.0228163,94.50365525],[4.53255136,0.02281459,94.50258723],[4.53255078,0.02281289,94.50152257],[4.5325502,0.02281118,94.50046169],[4.53254963,0.02280947,94.49940496],[4.53254905,0.02280777,94.49835279],[4.53254848,0.02280606,94.49730528],[4.5325479,0.02280435,94.4962623],[4.53254733,0.02280264,94.4952237],[4.53254676,0.02280093,94.49418934],[4.53254619,0.02279922,94.49315907],[4.53254562,0.02279751,94.49213276],[4.53254505,0.0227958,94.49111027],[4.53254449,0.02279409,94.49009145],[4.53254392,0.02279238,94.48907617],[4.53254335,0.02279067,94.4880643],[4.53254279,0.02278896,94.4870557],[4.53254222,0.02278724,94.48605025],[4.53254166,0.02278553,94.48504781],[4.5325411,0.02278382,94.48404826],[4.53254053,0.02278211,94.48305147],[4.53253997,0.0227804,94.48205732],[4.53253941,0.02277868,94.4810657],[4.53253884,0.02277697,94.48007647],[4.53253828,0.02277526,94.47908955],[4.53253772,0.02277355,94.47810494],[4.53253715,0.02277184,94.47712267],[4.53253659,0.02277012,94.47614277],[4.53253603,0.02276841,94.47516525],[4.53253547,0.0227667,94.47419016],[4.5325349,0.02276499,94.47321752],[4.53253434,0.02276327,94.47224736],[4.53253378,0.02276156,94.4712797],[4.53253321,0.02275985,94.47031459],[4.53253265,0.02275814,94.46935205],[4.53253208,0.02275643,94.4683921],[4.53253152,0.02275471,94.4674348],[4.53253096,0.022753,94.46648015],[4.53253039,0.02275129,94.46552821],[4.53252983,0.02274958,94.464579],[4.53252926,0.02274787,94.46363255],[4.5325287,0.02274616,94.46268891],[4.53252813,0.02274444,94.46174809],[4.53252757,0.02274273,94.46081015],[4.532527,0.02274102,94.4598751],[4.53252643,0.02273931,94.458943],[4.53252587,0.0227376,94.45801387],[4.5325253,0.02273589,94.45708774],[4.53252473,0.02273418,94.45616467],[4.53252416,0.02273247,94.45524467],[4.5325236,0.02273076,94.45432779],[4.53252303,0.02272904,94.45341403],[4.53252246,0.02272733,94.45250334],[4.53252189,0.02272562,94.45159567],[4.53252132,0.02272391,94.45069099],[4.53252075,0.0227222,94.44978924],[4.53252018,0.02272049,94.44889039],[4.5325196,0.02271879,94.44799439],[4.53251903,0.02271708,94.44710119],[4.53251846,0.02271537,94.44621076],[4.53251789,0.02271366,94.44532304],[4.53251731,0.02271195,94.444438],[4.53251674,0.02271024,94.44355562],[4.53251616,0.02270853,94.44267596],[4.53251558,0.02270682,94.44179912],[4.53251501,0.02270512,94.44092518],[4.53251443,0.02270341,94.44005424],[4.53251385,0.0227017,94.43918638],[4.53251328,0.02269999,94.4383217],[4.5325127,0.02269829,94.43746027],[4.53251212,0.02269658,94.43660219],[4.53251154,0.02269487,94.43574754],[4.53251096,0.02269316,94.4348964],[4.53251038,0.02269146,94.43404886],[4.5325098,0.02268975,94.43320501],[4.53250922,0.02268804,94.43236491],[4.53250864,0.02268634,94.43152867],[4.53250806,0.02268463,94.43069635],[4.53250748,0.02268292,94.42986805],[4.5325069,0.02268122,94.42904383],[4.53250632,0.02267951,94.42822378],[4.53250574,0.0226778,94.42740799],[4.53250516,0.02267609,94.42659651],[4.53250458,0.02267439,94.42578945],[4.532504,0.02267268,94.42498687],[4.53250342,0.02267097,94.42418886],[4.53250284,0.02266927,94.42339548],[4.53250226,0.02266756,94.42260682],[4.53250169,0.02266585,94.42182295],[4.53250111,0.02266414,94.42104395],[4.53250053,0.02266244,94.4202699],[4.53249995,0.02266073,94.41950087],[4.53249937,0.02265902,94.41873694],[4.5324988,0.02265731,94.41797818],[4.53249822,0.0226556,94.41722465],[4.53249765,0.02265389,94.41647629],[4.53249707,0.02265219,94.41573306],[4.5324965,0.02265048,94.41499489],[4.53249592,0.02264877,94.41426171],[4.53249535,0.02264706,94.41353347],[4.53249478,0.02264535,94.4128101],[4.5324942,0.02264364,94.41209153],[4.53249363,0.02264193,94.41137772],[4.53249306,0.02264022,94.41066859],[4.53249249,0.02263851,94.4099641],[4.53249191,0.0226368,94.40926416],[4.53249134,0.02263509,94.40856874],[4.53249077,0.02263338,94.40787777],[4.5324902,0.02263167,94.40719118],[4.53248963,0.02262996,94.40650892],[4.53248906,0.02262825,94.40583093],[4.53248849,0.02262654,94.40515715],[4.53248792,0.02262483,94.40448753],[4.53248735,0.02262312,94.403822],[4.53248678,0.02262141,94.40316051],[4.53248621,0.0226197,94.40250299],[4.53248564,0.02261799,94.4018494],[4.53248507,0.02261628,94.40119966],[4.5324845,0.02261456,94.40055373],[4.53248393,0.02261285,94.39991154],[4.53248336,0.02261114,94.39927303],[4.53248279,0.02260943,94.39863813],[4.53248222,0.02260772,94.39800678],[4.53248165,0.02260601,94.39737892],[4.53248108,0.0226043,94.39675449],[4.5324805,0.02260259,94.39613343],[4.53247993,0.02260088,94.39551567],[4.53247936,0.02259917,94.39490116],[4.53247879,0.02259746,94.39428982],[4.53247822,0.02259575,94.39368162],[4.53247765,0.02259404,94.39307654],[4.53247708,0.02259233,94.39247459],[4.5324765,0.02259062,94.39187578],[4.53247593,0.02258891,94.39128011],[4.53247536,0.0225872,94.39068759],[4.53247479,0.02258549,94.39009822],[4.53247421,0.02258378,94.38951202],[4.53247364,0.02258207,94.38892898],[4.53247307,0.02258036,94.38834912],[4.53247249,0.02257865,94.38777243],[4.53247192,0.02257694,94.38719893],[4.53247134,0.02257523,94.38662861],[4.53247077,0.02257352,94.3860615],[4.53247019,0.02257181,94.38549758],[4.53246962,0.0225701,94.38493687],[4.53246904,0.02256839,94.38437937],[4.53246847,0.02256668,94.38382509],[4.53246789,0.02256497,94.38327403],[4.53246732,0.02256326,94.3827262],[4.53246674,0.02256155,94.3821816],[4.53246617,0.02255984,94.38164024],[4.53246559,0.02255813,94.38110213],[4.53246502,0.02255642,94.38056727],[4.53246444,0.02255472,94.38003566],[4.53246386,0.02255301,94.37950731],[4.53246329,0.0225513,94.37898223],[4.53246271,0.02254959,94.37846042],[4.53246214,0.02254788,94.37794189],[4.53246156,0.02254617,94.37742664],[4.53246098,0.02254446,94.37691467],[4.53246041,0.02254275,94.37640601],[4.53245983,0.02254105,94.37590064],[4.53245925,0.02253934,94.37539857],[4.53245868,0.02253763,94.37489981],[4.5324581,0.02253592,94.37440433],[4.53245752,0.02253421,94.37391212],[4.53245695,0.0225325,94.37342318],[4.53245637,0.02253079,94.37293748],[4.53245579,0.02252909,94.37245501],[4.53245522,0.02252738,94.37197576],[4.53245464,0.02252567,94.37149971],[4.53245406,0.02252396,94.37102685],[4.53245348,0.02252225,94.37055717],[4.53245291,0.02252054,94.37009065],[4.53245233,0.02251883,94.36962728],[4.53245175,0.02251713,94.36916705],[4.53245117,0.02251542,94.36870993],[4.5324506,0.02251371,94.36825593],[4.53245002,0.022512,94.36780501],[4.53244944,0.02251029,94.36735718],[4.53244886,0.02250859,94.36691241],[4.53244829,0.02250688,94.36647069],[4.53244771,0.02250517,94.36603201],[4.53244713,0.02250346,94.36559636],[4.53244655,0.02250175,94.36516371],[4.53244597,0.02250005,94.36473406],[4.5324454,0.02249834,94.36430739],[4.53244482,0.02249663,94.36388369],[4.53244424,0.02249492,94.36346294],[4.53244366,0.02249321,94.36304513],[4.53244308,0.02249151,94.36263024],[4.5324425,0.0224898,94.36221827],[4.53244192,0.02248809,94.36180919],[4.53244134,0.02248638,94.361403],[4.53244076,0.02248467,94.36099967],[4.53244019,0.02248297,94.3605992],[4.53243961,0.02248126,94.36020157],[4.53243903,0.02247955,94.35980677],[4.53243845,0.02247784,94.35941477],[4.53243787,0.02247614,94.35902558],[4.53243729,0.02247443,94.35863916],[4.53243671,0.02247272,94.35825552],[4.53243613,0.02247101,94.35787463],[4.53243555,0.02246931,94.35749648],[4.53243497,0.0224676,94.35712105],[4.53243439,0.02246589,94.35674834],[4.53243381,0.02246419,94.35637832],[4.53243323,0.02246248,94.35601098],[4.53243264,0.02246077,94.35564631],[4.53243206,0.02245906,94.35528429],[4.53243148,0.02245736,94.35492491],[4.5324309,0.02245565,94.35456816],[4.53243032,0.02245394,94.35421401],[4.53242974,0.02245224,94.35386246],[4.53242916,0.02245053,94.35351349],[4.53242858,0.02244882,94.35316708],[4.53242799,0.02244712,94.35282322],[4.53242741,0.02244541,94.35248189],[4.53242683,0.0224437,94.35214309],[4.53242625,0.022442,94.35180679],[4.53242566,0.02244029,94.35147298],[4.53242508,0.02243858,94.35114165],[4.5324245,0.02243688,94.35081278],[4.53242392,0.02243517,94.35048635],[4.53242333,0.02243347,94.35016235],[4.53242275,0.02243176,94.34984077],[4.53242217,0.02243005,94.34952159],[4.53242158,0.02242835,94.3492048],[4.532421,0.02242664,94.34889037],[4.53242041,0.02242494,94.3485783],[4.53241983,0.02242323,94.34826857],[4.53241925,0.02242152,94.34796116],[4.53241866,0.02241982,94.34765606],[4.53241808,0.02241811,94.34735326],[4.53241749,0.02241641,94.34705275],[4.53241691,0.0224147,94.34675456],[4.53241632,0.022413,94.34645875],[4.53241574,0.02241129,94.34616535],[4.53241515,0.02240959,94.34587443],[4.53241456,0.02240788,94.34558602],[4.53241398,0.02240618,94.34530019],[4.53241339,0.02240447,94.34501696],[4.53241281,0.02240276,94.34473641],[4.53241222,0.02240106,94.34445856],[4.53241164,0.02239935,94.34418349],[4.53241105,0.02239765,94.34391122],[4.53241047,0.02239594,94.34364183],[4.53240988,0.02239424,94.34337535],[4.5324093,0.02239253,94.34311183],[4.53240871,0.02239083,94.34285134],[4.53240813,0.02238912,94.34259392],[4.53240754,0.02238742,94.34233962],[4.53240696,0.02238571,94.3420885],[4.53240637,0.022384,94.34184062],[4.53240579,0.0223823,94.34159602],[4.53240521,0.02238059,94.34135476],[4.53240462,0.02237889,94.34111689],[4.53240404,0.02237718,94.34088248],[4.53240346,0.02237547,94.34065157],[4.53240288,0.02237377,94.34042422],[4.5324023,0.02237206,94.34020047],[4.53240172,0.02237035,94.33998031],[4.53240113,0.02236865,94.33976368],[4.53240055,0.02236694,94.33955056],[4.53239997,0.02236523,94.3393409],[4.5323994,0.02236352,94.33913467],[4.53239882,0.02236182,94.33893183],[4.53239824,0.02236011,94.33873234],[4.53239766,0.0223584,94.33853616],[4.53239708,0.02235669,94.33834326],[4.5323965,0.02235499,94.33815358],[4.53239593,0.02235328,94.33796711],[4.53239535,0.02235157,94.33778378],[4.53239477,0.02234986,94.33760358],[4.53239419,0.02234815,94.33742645],[4.53239362,0.02234645,94.33725235],[4.53239304,0.02234474,94.33708126],[4.53239246,0.02234303,94.33691312],[4.53239189,0.02234132,94.33674789],[4.53239131,0.02233961,94.33658554],[4.53239074,0.0223379,94.33642602],[4.53239016,0.02233619,94.3362693],[4.53238959,0.02233449,94.33611533],[4.53238901,0.02233278,94.33596407],[4.53238844,0.02233107,94.33581548],[4.53238786,0.02232936,94.33566952],[4.53238729,0.02232765,94.33552614],[4.53238671,0.02232594,94.33538531],[4.53238614,0.02232423,94.33524698],[4.53238556,0.02232252,94.3351111],[4.53238499,0.02232082,94.33497765],[4.53238441,0.02231911,94.33484657],[4.53238384,0.0223174,94.33471782],[4.53238326,0.02231569,94.33459136],[4.53238269,0.02231398,94.33446714],[4.53238211,0.02231227,94.33434513],[4.53238154,0.02231056,94.33422527],[4.53238096,0.02230885,94.33410752],[4.53238039,0.02230714,94.33399185],[4.53237981,0.02230544,94.3338782],[4.53237924,0.02230373,94.33376653],[4.53237866,0.02230202,94.33365679],[4.53237809,0.02230031,94.33354895],[4.53237751,0.0222986,94.33344295],[4.53237694,0.02229689,94.33333876],[4.53237636,0.02229518,94.33323632],[4.53237579,0.02229348,94.33313559],[4.53237521,0.02229177,94.33303652],[4.53237464,0.02229006,94.33293907],[4.53237406,0.02228835,94.3328432],[4.53237348,0.02228664,94.33274885],[4.53237291,0.02228493,94.33265597],[4.53237233,0.02228323,94.33256454],[4.53237175,0.02228152,94.33247448],[4.53237117,0.02227981,94.33238577],[4.5323706,0.0222781,94.33229835],[4.53237002,0.02227639,94.33221217],[4.53236944,0.02227469,94.33212719],[4.53236886,0.02227298,94.33204336],[4.53236828,0.02227127,94.33196064],[4.5323677,0.02226957,94.33187896],[4.53236712,0.02226786,94.33179829],[4.53236654,0.02226615,94.3317186],[4.53236596,0.02226444,94.33163992],[4.53236538,0.02226274,94.33156232],[4.5323648,0.02226103,94.33148587],[4.53236422,0.02225932,94.33141061],[4.53236364,0.02225762,94.33133662],[4.53236306,0.02225591,94.33126395],[4.53236248,0.02225421,94.33119267],[4.53236189,0.0222525,94.33112284],[4.53236131,0.02225079,94.33105452],[4.53236073,0.02224909,94.33098778],[4.53236015,0.02224738,94.33092268],[4.53235956,0.02224567,94.33085928],[4.53235898,0.02224397,94.33079765],[4.5323584,0.02224226,94.33073786],[4.53235782,0.02224056,94.33067997],[4.53235723,0.02223885,94.33062405],[4.53235665,0.02223714,94.33057015],[4.53235607,0.02223544,94.33051836],[4.53235549,0.02223373,94.33046872],[4.53235491,0.02223203,94.33042133],[4.53235432,0.02223032,94.33037623],[4.53235374,0.02222861,94.33033349],[4.53235316,0.02222691,94.3302932],[4.53235258,0.0222252,94.3302554],[4.532352,0.02222349,94.33022018],[4.53235142,0.02222179,94.3301876],[4.53235084,0.02222008,94.33015772],[4.53235026,0.02221837,94.33013063],[4.53234968,0.02221667,94.33010639],[4.5323491,0.02221496,94.33008506],[4.53234852,0.02221325,94.33006673],[4.53234794,0.02221154,94.33005145],[4.53234737,0.02220984,94.3300393],[4.53234679,0.02220813,94.33003036],[4.53234621,0.02220642,94.33002469],[4.53234564,0.02220471,94.33002233],[4.53234506,0.022203,94.33002325],[4.53234449,0.02220129,94.33002737],[4.53234391,0.02219959,94.33003461],[4.53234334,0.02219788,94.33004491],[4.53234276,0.02219617,94.33005818],[4.53234219,0.02219446,94.33007436],[4.53234162,0.02219275,94.33009338],[4.53234105,0.02219104,94.33011514],[4.53234047,0.02218933,94.33013959],[4.5323399,0.02218762,94.33016665],[4.53233933,0.02218591,94.33019624],[4.53233876,0.0221842,94.33022828],[4.53233819,0.02218249,94.3302627],[4.53233762,0.02218078,94.33029943],[4.53233705,0.02217907,94.33033838],[4.53233648,0.02217736,94.33037949],[4.53233591,0.02217565,94.33042266],[4.53233534,0.02217394,94.33046783],[4.53233477,0.02217223,94.33051492],[4.5323342,0.02217052,94.33056385],[4.53233363,0.02216881,94.33061453],[4.53233306,0.0221671,94.3306669],[4.53233249,0.02216539,94.33072088],[4.53233192,0.02216368,94.33077638],[4.53233135,0.02216197,94.33083333],[4.53233078,0.02216026,94.33089164],[4.53233021,0.02215855,94.33095124],[4.53232964,0.02215683,94.33101205],[4.53232907,0.02215512,94.33107399],[4.5323285,0.02215341,94.33113698],[4.53232793,0.0221517,94.33120093],[4.53232736,0.02214999,94.33126577],[4.53232679,0.02214828,94.33133141],[4.53232622,0.02214657,94.33139778],[4.53232565,0.02214486,94.33146479],[4.5323251,0.02214323,94.33152954],[4.53233752,0.02213896,94.33152954],[4.53233808,0.02214059,94.33146479],[4.53233866,0.0221423,94.33139778],[4.53233923,0.02214401,94.33133141],[4.53233981,0.02214572,94.33126577],[4.53234039,0.02214743,94.33120093],[4.53234096,0.02214913,94.33113698],[4.53234154,0.02215084,94.33107399],[4.53234212,0.02215255,94.33101205],[4.5323427,0.02215426,94.33095124],[4.53234327,0.02215597,94.33089164],[4.53234385,0.02215767,94.33083333],[4.53234443,0.02215938,94.33077638],[4.532345,0.02216109,94.33072088],[4.53234558,0.0221628,94.3306669],[4.53234616,0.02216451,94.33061453],[4.53234673,0.02216621,94.33056385],[4.53234731,0.02216792,94.33051492],[4.53234789,0.02216963,94.33046783],[4.53234846,0.02217134,94.33042266],[4.53234904,0.02217305,94.33037949],[4.53234962,0.02217475,94.33033838],[4.53235019,0.02217646,94.33029943],[4.53235077,0.02217817,94.3302627],[4.53235135,0.02217988,94.33022828],[4.53235192,0.02218159,94.33019624],[4.5323525,0.02218329,94.33016665],[4.53235308,0.022185,94.33013959],[4.53235366,0.02218671,94.33011514],[4.53235423,0.02218842,94.33009338],[4.53235481,0.02219013,94.33007436],[4.53235539,0.02219183,94.33005818],[4.53235596,0.02219354,94.33004491],[4.53235654,0.02219525,94.33003461],[4.53235712,0.02219696,94.33002737],[4.5323577,0.02219867,94.33002325],[4.53235827,0.02220037,94.33002233],[4.53235885,0.02220208,94.33002469],[4.53235943,0.02220379,94.33003036],[4.53236,0.0222055,94.3300393],[4.53236058,0.02220721,94.33005145],[4.53236116,0.02220891,94.33006673],[4.53236174,0.02221062,94.33008506],[4.53236232,0.02221233,94.33010639],[4.53236289,0.02221404,94.33013063],[4.53236347,0.02221574,94.33015772],[4.53236405,0.02221745,94.3301876],[4.53236463,0.02221916,94.33022018],[4.53236521,0.02222087,94.3302554],[4.53236578,0.02222257,94.3302932],[4.53236636,0.02222428,94.33033349],[4.53236694,0.02222599,94.33037623],[4.53236752,0.0222277,94.33042133],[4.53236809,0.0222294,94.33046872],[4.53236867,0.02223111,94.33051836],[4.53236925,0.02223282,94.33057015],[4.53236983,0.02223453,94.33062405],[4.5323704,0.02223624,94.33067997],[4.53237098,0.02223794,94.33073786],[4.53237156,0.02223965,94.33079765],[4.53237214,0.02224136,94.33085928],[4.53237271,0.02224307,94.33092268],[4.53237329,0.02224478,94.33098778],[4.53237387,0.02224648,94.33105452],[4.53237444,0.02224819,94.33112284],[4.53237502,0.0222499,94.33119267],[4.5323756,0.02225161,94.33126395],[4.53237617,0.02225332,94.33133662],[4.53237675,0.02225502,94.33141061],[4.53237733,0.02225673,94.33148587],[4.5323779,0.02225844,94.33156232],[4.53237848,0.02226015,94.33163992],[4.53237905,0.02226186,94.3317186],[4.53237963,0.02226357,94.33179829],[4.5323802,0.02226528,94.33187896],[4.53238078,0.02226699,94.33196064],[4.53238135,0.02226869,94.33204336],[4.53238193,0.0222704,94.33212719],[4.5323825,0.02227211,94.33221217],[4.53238308,0.02227382,94.33229835],[4.53238365,0.02227553,94.33238577],[4.53238423,0.02227724,94.33247448],[4.5323848,0.02227895,94.33256454],[4.53238538,0.02228066,94.33265597],[4.53238595,0.02228237,94.33274885],[4.53238653,0.02228407,94.3328432],[4.5323871,0.02228578,94.33293907],[4.53238767,0.02228749,94.33303652],[4.53238825,0.0222892,94.33313559],[4.53238882,0.02229091,94.33323632],[4.5323894,0.02229262,94.33333876],[4.53238997,0.02229433,94.33344295],[4.53239055,0.02229604,94.33354895],[4.53239112,0.02229775,94.33365679],[4.5323917,0.02229945,94.33376653],[4.53239227,0.02230116,94.3338782],[4.53239285,0.02230287,94.33399185],[4.53239342,0.02230458,94.33410752],[4.532394,0.02230629,94.33422527],[4.53239458,0.022308,94.33434513],[4.53239515,0.02230971,94.33446714],[4.53239573,0.02231142,94.33459136],[4.5323963,0.02231313,94.33471782],[4.53239688,0.02231483,94.33484657],[4.53239745,0.02231654,94.33497765],[4.53239803,0.02231825,94.3351111],[4.53239861,0.02231996,94.33524698],[4.53239918,0.02232167,94.33538531],[4.53239976,0.02232338,94.33552614],[4.53240033,0.02232509,94.33566952],[4.53240091,0.02232679,94.33581548],[4.53240149,0.0223285,94.33596407],[4.53240206,0.02233021,94.33611533],[4.53240264,0.02233192,94.3362693],[4.53240322,0.02233363,94.33642602],[4.53240379,0.02233534,94.33658554],[4.53240437,0.02233704,94.33674789],[4.53240495,0.02233875,94.33691312],[4.53240552,0.02234046,94.33708126],[4.5324061,0.02234217,94.33725235],[4.53240668,0.02234388,94.33742645],[4.53240726,0.02234559,94.33760358],[4.53240783,0.02234729,94.33778378],[4.53240841,0.022349,94.33796711],[4.53240899,0.02235071,94.33815358],[4.53240957,0.02235242,94.33834326],[4.53241015,0.02235413,94.33853616],[4.53241072,0.02235583,94.33873234],[4.5324113,0.02235754,94.33893183],[4.53241188,0.02235925,94.33913467],[4.53241246,0.02236096,94.3393409],[4.53241304,0.02236267,94.33955056],[4.53241362,0.02236437,94.33976368],[4.53241419,0.02236608,94.33998031],[4.53241477,0.02236779,94.34020047],[4.53241535,0.0223695,94.34042422],[4.53241593,0.0223712,94.34065157],[4.53241651,0.02237291,94.34088248],[4.53241709,0.02237462,94.34111689],[4.53241767,0.02237633,94.34135476],[4.53241825,0.02237803,94.34159602],[4.53241883,0.02237974,94.34184062],[4.53241941,0.02238145,94.3420885],[4.53241999,0.02238316,94.34233962],[4.53242057,0.02238486,94.34259392],[4.53242115,0.02238657,94.34285134],[4.53242173,0.02238828,94.34311183],[4.53242231,0.02238999,94.34337535],[4.53242289,0.02239169,94.34364183],[4.53242347,0.0223934,94.34391122],[4.53242405,0.02239511,94.34418349],[4.53242463,0.02239682,94.34445856],[4.53242521,0.02239852,94.34473641],[4.53242579,0.02240023,94.34501696],[4.53242637,0.02240194,94.34530019],[4.53242694,0.02240365,94.34558602],[4.53242752,0.02240536,94.34587443],[4.5324281,0.02240706,94.34616535],[4.53242868,0.02240877,94.34645875],[4.53242926,0.02241048,94.34675456],[4.53242984,0.02241219,94.34705275],[4.53243041,0.0224139,94.34735326],[4.53243099,0.02241561,94.34765606],[4.53243157,0.02241731,94.34796116],[4.53243214,0.02241902,94.34826857],[4.53243272,0.02242073,94.3485783],[4.5324333,0.02242244,94.34889037],[4.53243387,0.02242415,94.3492048],[4.53243445,0.02242586,94.34952159],[4.53243502,0.02242757,94.34984077],[4.5324356,0.02242928,94.35016235],[4.53243618,0.02243099,94.35048635],[4.53243675,0.02243269,94.35081278],[4.53243732,0.0224344,94.35114165],[4.5324379,0.02243611,94.35147298],[4.53243847,0.02243782,94.35180679],[4.53243905,0.02243953,94.35214309],[4.53243962,0.02244124,94.35248189],[4.5324402,0.02244295,94.35282322],[4.53244077,0.02244466,94.35316708],[4.53244134,0.02244637,94.35351349],[4.53244192,0.02244808,94.35386246],[4.53244249,0.02244979,94.35421401],[4.53244306,0.0224515,94.35456816],[4.53244364,0.02245321,94.35492491],[4.53244421,0.02245492,94.35528429],[4.53244478,0.02245663,94.35564631],[4.53244536,0.02245834,94.35601098],[4.53244593,0.02246005,94.35637832],[4.5324465,0.02246176,94.35674834],[4.53244707,0.02246347,94.35712105],[4.53244765,0.02246518,94.35749648],[4.53244822,0.02246689,94.35787463],[4.53244879,0.0224686,94.35825552],[4.53244937,0.02247031,94.35863916],[4.53244994,0.02247202,94.35902558],[4.53245051,0.02247373,94.35941477],[4.53245108,0.02247544,94.35980677],[4.53245166,0.02247715,94.36020157],[4.53245223,0.02247886,94.3605992],[4.5324528,0.02248057,94.36099967],[4.53245338,0.02248228,94.361403],[4.53245395,0.02248399,94.36180919],[4.53245452,0.0224857,94.36221827],[4.53245509,0.02248741,94.36263024],[4.53245567,0.02248912,94.36304513],[4.53245624,0.02249083,94.36346294],[4.53245681,0.02249254,94.36388369],[4.53245739,0.02249425,94.36430739],[4.53245796,0.02249596,94.36473406],[4.53245854,0.02249767,94.36516371],[4.53245911,0.02249938,94.36559636],[4.53245968,0.02250109,94.36603201],[4.53246026,0.0225028,94.36647069],[4.53246083,0.02250451,94.36691241],[4.5324614,0.02250622,94.36735718],[4.53246198,0.02250793,94.36780501],[4.53246255,0.02250964,94.36825593],[4.53246313,0.02251135,94.36870993],[4.5324637,0.02251306,94.36916705],[4.53246427,0.02251477,94.36962728],[4.53246485,0.02251648,94.37009065],[4.53246542,0.02251819,94.37055717],[4.532466,0.0225199,94.37102685],[4.53246657,0.02252161,94.37149971],[4.53246715,0.02252332,94.37197576],[4.53246772,0.02252503,94.37245501],[4.5324683,0.02252674,94.37293748],[4.53246887,0.02252845,94.37342318],[4.53246945,0.02253016,94.37391212],[4.53247002,0.02253187,94.37440433],[4.5324706,0.02253358,94.37489981],[4.53247117,0.02253529,94.37539857],[4.53247175,0.022537,94.37590064],[4.53247232,0.02253871,94.37640601],[4.5324729,0.02254042,94.37691467],[4.53247347,0.02254213,94.37742664],[4.53247405,0.02254384,94.37794189],[4.53247462,0.02254554,94.37846042],[4.5324752,0.02254725,94.37898223],[4.53247577,0.02254896,94.37950731],[4.53247635,0.02255067,94.38003566],[4.53247692,0.02255238,94.38056727],[4.5324775,0.02255409,94.38110213],[4.53247808,0.0225558,94.38164024],[4.53247865,0.02255751,94.3821816],[4.53247923,0.02255922,94.3827262],[4.5324798,0.02256093,94.38327403],[4.53248038,0.02256264,94.38382509],[4.53248095,0.02256435,94.38437937],[4.53248153,0.02256606,94.38493687],[4.5324821,0.02256777,94.38549758],[4.53248268,0.02256948,94.3860615],[4.53248326,0.02257119,94.38662861],[4.53248383,0.0225729,94.38719893],[4.53248441,0.02257461,94.38777243],[4.53248498,0.02257632,94.38834912],[4.53248556,0.02257803,94.38892898],[4.53248613,0.02257974,94.38951202],[4.5324867,0.02258145,94.39009822],[4.53248728,0.02258316,94.39068759],[4.53248785,0.02258487,94.39128011],[4.53248843,0.02258658,94.39187578],[4.532489,0.02258829,94.39247459],[4.53248957,0.02259,94.39307654],[4.53249015,0.02259171,94.39368162],[4.53249072,0.02259342,94.39428982],[4.53249129,0.02259513,94.39490116],[4.53249187,0.02259684,94.39551567],[4.53249244,0.02259855,94.39613343],[4.53249301,0.02260026,94.39675449],[4.53249358,0.02260197,94.39737892],[4.53249416,0.02260368,94.39800678],[4.53249473,0.02260539,94.39863813],[4.5324953,0.0226071,94.39927303],[4.53249587,0.02260881,94.39991154],[4.53249645,0.02261052,94.40055373],[4.53249702,0.02261223,94.40119966],[4.53249759,0.02261394,94.4018494],[4.53249816,0.02261565,94.40250299],[4.53249874,0.02261736,94.40316051],[4.53249931,0.02261907,94.403822],[4.53249988,0.02262078,94.40448753],[4.53250045,0.02262249,94.40515715],[4.53250103,0.0226242,94.40583093],[4.5325016,0.02262591,94.40650892],[4.53250217,0.02262762,94.40719118],[4.53250275,0.02262933,94.40787777],[4.53250332,0.02263104,94.40856874],[4.53250389,0.02263275,94.40926416],[4.53250447,0.02263446,94.4099641],[4.53250504,0.02263617,94.41066859],[4.53250561,0.02263788,94.41137772],[4.53250619,0.02263959,94.41209153],[4.53250676,0.0226413,94.4128101],[4.53250734,0.02264301,94.41353347],[4.53250791,0.02264472,94.41426171],[4.53250848,0.02264643,94.41499489],[4.53250906,0.02264814,94.41573306],[4.53250963,0.02264985,94.41647629],[4.53251021,0.02265156,94.41722465],[4.53251078,0.02265326,94.41797818],[4.53251135,0.02265497,94.41873694],[4.53251193,0.02265668,94.41950087],[4.5325125,0.02265839,94.4202699],[4.53251307,0.0226601,94.42104395],[4.53251364,0.02266181,94.42182295],[4.53251422,0.02266352,94.42260682],[4.53251479,0.02266523,94.42339548],[4.53251536,0.02266694,94.42418886],[4.53251593,0.02266865,94.42498687],[4.5325165,0.02267036,94.42578945],[4.53251707,0.02267207,94.42659651],[4.53251764,0.02267378,94.42740799],[4.53251821,0.02267549,94.42822378],[4.53251878,0.0226772,94.42904383],[4.53251936,0.02267891,94.42986805],[4.53251993,0.02268062,94.43069635],[4.5325205,0.02268233,94.43152867],[4.53252107,0.02268404,94.43236491],[4.53252164,0.02268575,94.43320501],[4.53252221,0.02268746,94.43404886],[4.53252278,0.02268917,94.4348964],[4.53252335,0.02269088,94.43574754],[4.53252392,0.02269259,94.43660219],[4.5325245,0.0226943,94.43746027],[4.53252507,0.02269601,94.4383217],[4.53252564,0.02269772,94.43918638],[4.53252622,0.02269943,94.44005424],[4.53252679,0.02270114,94.44092518],[4.53252737,0.02270285,94.44179912],[4.53252794,0.02270456,94.44267596],[4.53252852,0.02270626,94.44355562],[4.53252909,0.02270797,94.444438],[4.53252967,0.02270968,94.44532304],[4.53253024,0.02271139,94.44621076],[4.53253082,0.0227131,94.44710119],[4.5325314,0.02271481,94.44799439],[4.53253197,0.02271651,94.44889039],[4.53253255,0.02271822,94.44978924],[4.53253312,0.02271993,94.45069099],[4.5325337,0.02272164,94.45159567],[4.53253428,0.02272334,94.45250334],[4.53253485,0.02272505,94.45341403],[4.53253543,0.02272676,94.45432779],[4.53253601,0.02272847,94.45524467],[4.53253658,0.02273018,94.45616467],[4.53253716,0.02273188,94.45708774],[4.53253774,0.02273359,94.45801387],[4.53253831,0.0227353,94.458943],[4.53253889,0.02273701,94.4598751],[4.53253947,0.02273871,94.46081015],[4.53254004,0.02274042,94.46174809],[4.53254062,0.02274213,94.46268891],[4.5325412,0.02274384,94.46363255],[4.53254177,0.02274554,94.464579],[4.53254235,0.02274725,94.46552821],[4.53254293,0.02274896,94.46648015],[4.5325435,0.02275067,94.4674348],[4.53254408,0.02275238,94.4683921],[4.53254465,0.02275408,94.46935205],[4.53254523,0.02275579,94.47031459],[4.5325458,0.0227575,94.4712797],[4.53254638,0.02275921,94.47224736],[4.53254695,0.02276092,94.47321752],[4.53254753,0.02276262,94.47419016],[4.5325481,0.02276433,94.47516525],[4.53254868,0.02276604,94.47614277],[4.53254925,0.02276775,94.47712267],[4.53254982,0.02276946,94.47810494],[4.5325504,0.02277117,94.47908955],[4.53255097,0.02277287,94.48007647],[4.53255154,0.02277458,94.4810657],[4.53255211,0.02277629,94.48205732],[4.53255269,0.022778,94.48305147],[4.53255326,0.02277971,94.48404826],[4.53255383,0.02278142,94.48504781],[4.5325544,0.02278313,94.48605025],[4.53255497,0.02278484,94.4870557],[4.53255554,0.02278655,94.4880643],[4.53255611,0.02278826,94.48907617],[4.53255668,0.02278997,94.49009145],[4.53255725,0.02279167,94.49111027],[4.53255782,0.02279338,94.49213276],[4.53255839,0.02279509,94.49315907],[4.53255897,0.0227968,94.49418934],[4.53255954,0.02279851,94.4952237],[4.53256011,0.02280022,94.4962623],[4.53256068,0.02280193,94.49730528],[4.53256125,0.02280364,94.49835279],[4.53256182,0.02280535,94.49940496],[4.53256239,0.02280706,94.50046169],[4.53256296,0.02280876,94.50152257],[4.53256354,0.02281047,94.50258723],[4.53256411,0.02281218,94.50365525],[4.53256468,0.02281389,94.50472624],[4.53256526,0.0228156,94.50579977],[4.53256583,0.0228173,94.50687546],[4.53256641,0.02281901,94.50795287],[4.53256698,0.02282072,94.5090316],[4.53256756,0.02282243,94.51011122],[4.53256813,0.02282414,94.51119131],[4.5325687,0.02282584,94.51227144],[4.53256928,0.02282755,94.51335118],[4.53256985,0.02282926,94.51443011],[4.53257043,0.02283097,94.51550778],[4.532571,0.02283267,94.51658377],[4.53257158,0.02283438,94.51765762],[4.53257215,0.02283609,94.5187289],[4.53257273,0.0228378,94.51979716],[4.5325733,0.0228395,94.52086195],[4.53257387,0.02284121,94.52192284],[4.53257445,0.02284292,94.52297937],[4.53257502,0.02284463,94.5240311],[4.53257559,0.02284633,94.52507758],[4.53257617,0.02284804,94.52611834],[4.53257674,0.02284975,94.52715295],[4.53257731,0.02285146,94.52818115],[4.53257788,0.02285317,94.52920352],[4.53257845,0.02285488,94.53022085],[4.53257901,0.02285659,94.53123396],[4.53257958,0.0228583,94.53224365],[4.53258015,0.02286001,94.53325074],[4.53258072,0.02286172,94.53425604],[4.53258128,0.02286343,94.53526039],[4.53258185,0.02286514,94.53626462],[4.53258242,0.02286685,94.53726955],[4.53258299,0.02286856,94.53827604],[4.53258355,0.02287026,94.53928491],[4.53258412,0.02287197,94.54029681],[4.53258469,0.02287368,94.54131149],[4.53258526,0.02287539,94.54232848],[4.53258583,0.0228771,94.5433473],[4.5325864,0.02287881,94.54436747],[4.53258697,0.02288052,94.54538852],[4.53258755,0.02288223,94.54640997],[4.53258812,0.02288393,94.54743132],[4.53258869,0.02288564,94.5484521],[4.53258926,0.02288735,94.54947182],[4.53258983,0.02288906,94.55048998],[4.5325904,0.02289077,94.5515061],[4.53259097,0.02289247,94.55251968],[4.53259154,0.02289418,94.55353023],[4.53259211,0.02289589,94.55453726],[4.53259269,0.0228976,94.55554027],[4.53259326,0.02289931,94.55653876],[4.53259383,0.02290102,94.55753225],[4.5325944,0.02290272,94.55852023],[4.53259497,0.02290443,94.5595022],[4.53259554,0.02290614,94.56047769],[4.53259611,0.02290785,94.56144649],[4.53259668,0.02290956,94.56240866],[4.53259725,0.02291127,94.56336428],[4.53259782,0.02291297,94.56431343],[4.53259839,0.02291468,94.5652562],[4.53259896,0.02291639,94.56619267],[4.53259953,0.0229181,94.56712292],[4.5326001,0.02291981,94.56804704],[4.53260067,0.02292151,94.56896512],[4.53260125,0.02292322,94.56987724],[4.53260182,0.02292493,94.57078348],[4.53260239,0.02292664,94.57168394],[4.53260296,0.02292835,94.5725787],[4.53260353,0.02293005,94.57346786],[4.5326041,0.02293176,94.57435149],[4.53260467,0.02293347,94.57522969],[4.53260524,0.02293518,94.57610255],[4.53260582,0.02293688,94.57697016],[4.53260639,0.02293859,94.5778326],[4.53260696,0.0229403,94.57868999],[4.53260753,0.02294201,94.57954245],[4.53260809,0.02294372,94.58039009],[4.53260866,0.02294543,94.58123302],[4.53260923,0.02294713,94.58207136],[4.5326098,0.02294884,94.58290521],[4.53261037,0.02295055,94.5837347],[4.53261094,0.02295226,94.58455992],[4.53261151,0.02295397,94.58538087],[4.53261208,0.02295568,94.58619743],[4.53261264,0.02295739,94.5870095],[4.53261321,0.02295909,94.58781695],[4.53261378,0.0229608,94.58861967],[4.53261435,0.02296251,94.58941753],[4.53261492,0.02296422,94.59021043],[4.53261549,0.02296593,94.59099824],[4.53261606,0.02296764,94.59178085],[4.53261663,0.02296934,94.59255813],[4.5326172,0.02297105,94.59332999],[4.53261777,0.02297276,94.59409629],[4.53261834,0.02297447,94.59485693],[4.53261891,0.02297618,94.59561179],[4.53261948,0.02297788,94.59636075],[4.53262005,0.02297959,94.59710371],[4.53262062,0.0229813,94.59784054],[4.53262119,0.02298301,94.59857114],[4.53262176,0.02298472,94.59929539],[4.53262233,0.02298642,94.60001321],[4.5326229,0.02298813,94.60072464],[4.53262347,0.02298984,94.60142975],[4.53262405,0.02299155,94.60212861],[4.53262462,0.02299325,94.6028213],[4.53262519,0.02299496,94.60350788],[4.53262576,0.02299667,94.60418843],[4.53262633,0.02299838,94.60486302],[4.53262691,0.02300008,94.60553172],[4.53262748,0.02300179,94.60619462],[4.53262805,0.0230035,94.60685182],[4.53262863,0.02300521,94.60750347],[4.5326292,0.02300692,94.60814972],[4.53262977,0.02300862,94.60879071],[4.53263035,0.02301033,94.60942658],[4.53263092,0.02301204,94.61005748],[4.53263149,0.02301375,94.61068356],[4.53263207,0.02301545,94.61130495],[4.53263264,0.02301716,94.6119218],[4.53263322,0.02301887,94.61253425],[4.53263379,0.02302058,94.61314244],[4.53263437,0.02302229,94.61374651],[4.53263494,0.02302399,94.6143466],[4.53263552,0.0230257,94.61494285],[4.53263609,0.02302741,94.6155354],[4.53263667,0.02302912,94.61612437],[4.53263725,0.02303082,94.61670992],[4.53263782,0.02303253,94.61729217],[4.5326384,0.02303424,94.61787125],[4.53263898,0.02303595,94.61844729],[4.53263955,0.02303765,94.61902038],[4.53264013,0.02303936,94.61959063],[4.53264071,0.02304107,94.62015813],[4.53264129,0.02304278,94.62072299],[4.53264186,0.02304449,94.6212853],[4.53264244,0.02304619,94.62184517],[4.53264302,0.0230479,94.62240269],[4.5326436,0.02304961,94.62295797],[4.53264418,0.02305132,94.6235111],[4.53264476,0.02305302,94.62406218],[4.53264534,0.02305473,94.62461131],[4.53264592,0.02305644,94.6251586],[4.5326465,0.02305815,94.62570414],[4.53264708,0.02305985,94.62624803],[4.53264766,0.02306156,94.62679036],[4.53264824,0.02306327,94.62733125],[4.53264882,0.02306498,94.62787079],[4.5326494,0.02306668,94.62840907],[4.53264998,0.02306839,94.62894619],[4.53265056,0.0230701,94.62948227],[4.53265114,0.02307181,94.63001738],[4.53265172,0.02307352,94.63055164],[4.5326523,0.02307522,94.63108514],[4.53265288,0.02307693,94.63161798],[4.53265347,0.02307864,94.63215027],[4.53265405,0.02308035,94.63268215],[4.53265463,0.02308206,94.63321376],[4.53265521,0.02308376,94.63374521],[4.53265579,0.02308547,94.63427664],[4.53265637,0.02308718,94.63480818],[4.53265695,0.02308889,94.63533996],[4.53265753,0.0230906,94.6358721],[4.53265812,0.02309231,94.63640473],[4.5326587,0.02309401,94.63693798],[4.53265928,0.02309572,94.63747195],[4.53265986,0.02309743,94.63800678],[4.53266044,0.02309914,94.63854256],[4.53266102,0.02310085,94.63907938],[4.53266161,0.02310256,94.63961735],[4.53266219,0.02310427,94.64015657],[4.53266277,0.02310597,94.64069714],[4.53266335,0.02310768,94.64123915],[4.53266393,0.02310939,94.6417827],[4.53266452,0.0231111,94.6423279],[4.5326651,0.02311281,94.64287483],[4.53266568,0.02311452,94.6434236],[4.53266626,0.02311623,94.64397431],[4.53266684,0.02311794,94.64452704],[4.53266742,0.02311965,94.64508191],[4.53266801,0.02312136,94.645639],[4.53266859,0.02312307,94.64619841],[4.53266917,0.02312478,94.64676024],[4.53266975,0.02312649,94.64732458],[4.53267033,0.0231282,94.64789154],[4.53267091,0.02312991,94.6484612],[4.53267149,0.02313162,94.64903366],[4.53267207,0.02313333,94.64960904],[4.53267265,0.02313504,94.65018747],[4.53267323,0.02313675,94.65076914],[4.53267381,0.02313846,94.6513542],[4.53267439,0.02314017,94.65194282],[4.53267497,0.02314188,94.65253516],[4.53267555,0.02314359,94.65313139],[4.53267613,0.0231453,94.65373168],[4.53267671,0.02314702,94.6543362],[4.53267729,0.02314873,94.6549451],[4.53267787,0.02315044,94.65555855],[4.53267844,0.02315215,94.65617672],[4.53267902,0.02315386,94.65679978],[4.5326796,0.02315558,94.65742789],[4.53268018,0.02315729,94.65806122],[4.53268075,0.023159,94.65869993],[4.53268133,0.02316071,94.65934419],[4.53268191,0.02316243,94.65999417],[4.53268248,0.02316414,94.66065003],[4.53268306,0.02316585,94.66131195],[4.53268363,0.02316757,94.66198008],[4.53268421,0.02316928,94.66265461],[4.53268478,0.023171,94.66333568],[4.53268536,0.02317271,94.66402349],[4.53268593,0.02317442,94.66471819],[4.5326865,0.02317614,94.66541995],[4.53268708,0.02317785,94.66612894],[4.53268765,0.02317957,94.66684534],[4.53268822,0.02318128,94.66756931],[4.53268879,0.023183,94.66830102],[4.53268936,0.02318471,94.66904066],[4.53268993,0.02318643,94.66978838],[4.5326905,0.02318815,94.67054431],[4.53269107,0.02318986,94.67130835],[4.53269164,0.02319158,94.67208033],[4.53269221,0.02319329,94.6728601],[4.53269278,0.02319501,94.67364753],[4.53267974,0.02319939,94.67364753]]],"type":"Polygon"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1004200","id":2,"type":"none","predecessorId":2,"sOffset":35.4036855625}},{"geometry":{"coordinates":[[[4.53223153,0.02217536,94.04900345],[4.53223276,0.02217303,94.05433512],[4.53223399,0.02217071,94.05967777],[4.53223522,0.02216838,94.06503126],[4.53223644,0.02216605,94.07039542],[4.53223728,0.02216386,94.07458174],[4.53223705,0.02216203,94.07554193],[4.53223682,0.02216021,94.07650745],[4.53223658,0.02215838,94.07747829],[4.53223635,0.02215655,94.07845443],[4.53223612,0.02215473,94.07943584],[4.53223589,0.0221529,94.08042252],[4.53223566,0.02215108,94.08141443],[4.53223542,0.02214925,94.08241157],[4.53223519,0.02214742,94.0834139],[4.53223496,0.0221456,94.08442141],[4.53223473,0.02214377,94.08543408],[4.5322345,0.02214194,94.08645188],[4.53223426,0.02214012,94.0874748],[4.53223403,0.02213829,94.0885028],[4.5322338,0.02213647,94.08953587],[4.53223357,0.02213464,94.09057398],[4.53223331,0.02213282,94.09154549],[4.53223297,0.02213104,94.09225171],[4.53223262,0.02212925,94.09296267],[4.53223228,0.02212746,94.09367836],[4.53223194,0.02212567,94.09439876],[4.53223159,0.02212389,94.09512386],[4.53223125,0.0221221,94.09585365],[4.5322309,0.02212031,94.09658812],[4.53223056,0.02211852,94.09732724],[4.53223022,0.02211674,94.09807102],[4.53222987,0.02211495,94.09881943],[4.53222953,0.02211316,94.09957246],[4.53222918,0.02211137,94.1003301],[4.53222884,0.02210959,94.10109232],[4.53222849,0.0221078,94.10185912],[4.53222815,0.02210601,94.10263048],[4.5322278,0.02210422,94.10340639],[4.53222746,0.02210244,94.10418682],[4.53222712,0.02210065,94.10497177],[4.53222677,0.02209886,94.10576121],[4.53222643,0.02209707,94.10655513],[4.53222608,0.02209529,94.1073535],[4.53222574,0.0220935,94.10815633],[4.53222539,0.02209171,94.10896357],[4.53222505,0.02208992,94.10977523],[4.5322247,0.02208814,94.11059127],[4.53222436,0.02208635,94.11141169],[4.53222401,0.02208456,94.11223645],[4.53222367,0.02208277,94.11306555],[4.53222333,0.02208099,94.11389896],[4.53222298,0.0220792,94.11473667],[4.53222264,0.02207741,94.11557865],[4.53222229,0.02207563,94.11642488],[4.53222195,0.02207384,94.11727534],[4.5322216,0.02207205,94.11813001],[4.53222126,0.02207026,94.11898887],[4.53222091,0.02206848,94.1198519],[4.53222057,0.02206669,94.12071908],[4.53222022,0.0220649,94.12159038],[4.53221983,0.02206313,94.12232776],[4.53221936,0.02206139,94.12281287],[4.53221888,0.02205964,94.12330223],[4.53221841,0.0220579,94.12379584],[4.53221794,0.02205616,94.1242937],[4.53221746,0.02205442,94.1247958],[4.53221699,0.02205267,94.12530214],[4.53221651,0.02205093,94.12581272],[4.53221604,0.02204919,94.12632752],[4.53221557,0.02204744,94.12684656],[4.53221509,0.0220457,94.12736981],[4.53221462,0.02204396,94.12789729],[4.53221414,0.02204222,94.12842898],[4.53221367,0.02204047,94.12896488],[4.5322132,0.02203873,94.12950498],[4.53221272,0.02203699,94.13004929],[4.53221225,0.02203524,94.13059779],[4.53221177,0.0220335,94.13115049],[4.5322113,0.02203176,94.13170737],[4.53221082,0.02203002,94.13226843],[4.53221035,0.02202827,94.13283367],[4.53220988,0.02202653,94.13340308],[4.5322094,0.02202479,94.13397666],[4.53220893,0.02202304,94.13455439],[4.53220845,0.0220213,94.13513628],[4.53220798,0.02201956,94.13572232],[4.5322075,0.02201782,94.13631249],[4.53220703,0.02201607,94.13690681],[4.53220655,0.02201433,94.13750525],[4.53220608,0.02201259,94.13810782],[4.5322056,0.02201084,94.1387145],[4.53220513,0.0220091,94.13932529],[4.53220466,0.02200736,94.13994018],[4.53220418,0.02200562,94.14055917],[4.53220371,0.02200387,94.14118225],[4.53220323,0.02200213,94.14180941],[4.53220276,0.02200039,94.14244065],[4.53220228,0.02199865,94.14307595],[4.53220181,0.0219969,94.14371532],[4.53220133,0.02199516,94.14435873],[4.53220086,0.02199342,94.14500619],[4.53220038,0.02199168,94.14565769],[4.53219991,0.02198993,94.14631321],[4.53219943,0.02198819,94.14697276],[4.53219896,0.02198645,94.14763632],[4.53219848,0.02198471,94.14830388],[4.53219844,0.02198456,94.14836096],[4.53219844,0.02198456,94.14836096],[4.53219849,0.0219847,94.14833043],[4.53219907,0.02198641,94.1479748],[4.53219965,0.02198812,94.14762384],[4.53220023,0.02198982,94.14727754],[4.53220081,0.02199153,94.1469359],[4.53220139,0.02199324,94.14659889],[4.53220197,0.02199494,94.14626651],[4.53220255,0.02199665,94.14593875],[4.53220313,0.02199836,94.14561559],[4.53220371,0.02200006,94.14529702],[4.53220429,0.02200177,94.14498302],[4.53220487,0.02200347,94.1446736],[4.53220545,0.02200518,94.14436873],[4.53220603,0.02200689,94.1440684],[4.5322066,0.02200859,94.14377261],[4.53220718,0.0220103,94.14348133],[4.53220776,0.02201201,94.14319456],[4.53220834,0.02201371,94.14291229],[4.53220892,0.02201542,94.1426345],[4.5322095,0.02201713,94.14236118],[4.53221008,0.02201884,94.14209232],[4.53221066,0.02202054,94.14182791],[4.53221124,0.02202225,94.14156794],[4.53221182,0.02202396,94.14131239],[4.5322124,0.02202566,94.14106125],[4.53221298,0.02202737,94.14081452],[4.53221356,0.02202908,94.14057217],[4.53221413,0.02203078,94.1403342],[4.53221471,0.02203249,94.1401006],[4.53221529,0.0220342,94.13987134],[4.53221587,0.0220359,94.13964643],[4.53221645,0.02203761,94.13942585],[4.53221703,0.02203932,94.13920959],[4.53221761,0.02204102,94.13899764],[4.53221819,0.02204273,94.13878997],[4.53221877,0.02204444,94.1385866],[4.53221934,0.02204614,94.13838749],[4.53221992,0.02204785,94.13819264],[4.5322205,0.02204956,94.13800204],[4.53222108,0.02205127,94.13781567],[4.53222166,0.02205297,94.13763353],[4.53222224,0.02205468,94.1374556],[4.53222282,0.02205639,94.13728187],[4.5322234,0.02205809,94.13711233],[4.53222397,0.0220598,94.13694697],[4.53222455,0.02206151,94.13678577],[4.53222513,0.02206321,94.13662872],[4.53222571,0.02206492,94.13647582],[4.53222629,0.02206663,94.13632705],[4.53222687,0.02206834,94.13618239],[4.53222744,0.02207004,94.13604184],[4.53222802,0.02207175,94.13590539],[4.5322286,0.02207346,94.13577302],[4.53222918,0.02207516,94.13564472],[4.53222976,0.02207687,94.13552049],[4.53223034,0.02207858,94.1354003],[4.53223091,0.02208028,94.13528414],[4.53223149,0.02208199,94.13517201],[4.53223207,0.0220837,94.1350639],[4.53223265,0.02208541,94.13495979],[4.53223323,0.02208711,94.13485966],[4.53223381,0.02208882,94.13476352],[4.53223438,0.02209053,94.13467134],[4.53223496,0.02209223,94.13458311],[4.53223554,0.02209394,94.13449883],[4.53223612,0.02209565,94.13441848],[4.5322367,0.02209736,94.13434205],[4.53223727,0.02209906,94.13426953],[4.53223785,0.02210077,94.13420091],[4.53223843,0.02210248,94.13413617],[4.53223901,0.02210419,94.1340753],[4.53223959,0.02210589,94.1340183],[4.53224016,0.0221076,94.13396515],[4.53224074,0.02210931,94.13391583],[4.53224132,0.02211101,94.13387034],[4.5322419,0.02211272,94.13382867],[4.53224248,0.02211443,94.1337908],[4.53224305,0.02211614,94.13375672],[4.53224363,0.02211784,94.13372642],[4.53224421,0.02211955,94.1336999],[4.53224479,0.02212126,94.13367712],[4.53224536,0.02212297,94.1336581],[4.53224594,0.02212467,94.13364281],[4.53224652,0.02212638,94.13363124],[4.5322471,0.02212809,94.13362338],[4.53224768,0.02212979,94.13361922],[4.53224825,0.0221315,94.13361875],[4.53224883,0.02213321,94.13362195],[4.53224941,0.02213492,94.13362882],[4.53224999,0.02213662,94.13363934],[4.53225056,0.02213833,94.1336535],[4.53225114,0.02214004,94.13367129],[4.53225172,0.02214175,94.1336927],[4.5322523,0.02214345,94.13371772],[4.53225287,0.02214516,94.13374633],[4.53225345,0.02214687,94.13377852],[4.53225403,0.02214858,94.13381428],[4.53225461,0.02215028,94.13385361],[4.53225518,0.02215199,94.13389648],[4.53225576,0.0221537,94.13394289],[4.53225634,0.02215541,94.13399282],[4.53225692,0.02215711,94.13404627],[4.53225749,0.02215882,94.13410322],[4.53225807,0.02216053,94.13416366],[4.53225865,0.02216224,94.13422758],[4.53225922,0.02216394,94.13429496],[4.5322598,0.02216565,94.1343658],[4.53223153,0.02217536,94.04900345]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004200","rules":[{"value":"barred"}],"id":-3,"type":"restricted","predecessorId":-3,"sOffset":158.995328704}},{"geometry":{"coordinates":[[[4.5322598,0.02216565,94.1343658],[4.53225922,0.02216394,94.13429496],[4.53225865,0.02216224,94.13422758],[4.53225807,0.02216053,94.13416366],[4.53225749,0.02215882,94.13410322],[4.53225692,0.02215711,94.13404627],[4.53225634,0.02215541,94.13399282],[4.53225576,0.0221537,94.13394289],[4.53225518,0.02215199,94.13389648],[4.53225461,0.02215028,94.13385361],[4.53225403,0.02214858,94.13381428],[4.53225345,0.02214687,94.13377852],[4.53225287,0.02214516,94.13374633],[4.5322523,0.02214345,94.13371772],[4.53225172,0.02214175,94.1336927],[4.53225114,0.02214004,94.13367129],[4.53225056,0.02213833,94.1336535],[4.53224999,0.02213662,94.13363934],[4.53224941,0.02213492,94.13362882],[4.53224883,0.02213321,94.13362195],[4.53224825,0.0221315,94.13361875],[4.53224768,0.02212979,94.13361922],[4.5322471,0.02212809,94.13362338],[4.53224652,0.02212638,94.13363124],[4.53224594,0.02212467,94.13364281],[4.53224536,0.02212297,94.1336581],[4.53224479,0.02212126,94.13367712],[4.53224421,0.02211955,94.1336999],[4.53224363,0.02211784,94.13372642],[4.53224305,0.02211614,94.13375672],[4.53224248,0.02211443,94.1337908],[4.5322419,0.02211272,94.13382867],[4.53224132,0.02211101,94.13387034],[4.53224074,0.02210931,94.13391583],[4.53224016,0.0221076,94.13396515],[4.53223959,0.02210589,94.1340183],[4.53223901,0.02210419,94.1340753],[4.53223843,0.02210248,94.13413617],[4.53223785,0.02210077,94.13420091],[4.53223727,0.02209906,94.13426953],[4.5322367,0.02209736,94.13434205],[4.53223612,0.02209565,94.13441848],[4.53223554,0.02209394,94.13449883],[4.53223496,0.02209223,94.13458311],[4.53223438,0.02209053,94.13467134],[4.53223381,0.02208882,94.13476352],[4.53223323,0.02208711,94.13485966],[4.53223265,0.02208541,94.13495979],[4.53223207,0.0220837,94.1350639],[4.53223149,0.02208199,94.13517201],[4.53223091,0.02208028,94.13528414],[4.53223034,0.02207858,94.1354003],[4.53222976,0.02207687,94.13552049],[4.53222918,0.02207516,94.13564472],[4.5322286,0.02207346,94.13577302],[4.53222802,0.02207175,94.13590539],[4.53222744,0.02207004,94.13604184],[4.53222687,0.02206834,94.13618239],[4.53222629,0.02206663,94.13632705],[4.53222571,0.02206492,94.13647582],[4.53222513,0.02206321,94.13662872],[4.53222455,0.02206151,94.13678577],[4.53222397,0.0220598,94.13694697],[4.5322234,0.02205809,94.13711233],[4.53222282,0.02205639,94.13728187],[4.53222224,0.02205468,94.1374556],[4.53222166,0.02205297,94.13763353],[4.53222108,0.02205127,94.13781567],[4.5322205,0.02204956,94.13800204],[4.53221992,0.02204785,94.13819264],[4.53221934,0.02204614,94.13838749],[4.53221877,0.02204444,94.1385866],[4.53221819,0.02204273,94.13878997],[4.53221761,0.02204102,94.13899764],[4.53221703,0.02203932,94.13920959],[4.53221645,0.02203761,94.13942585],[4.53221587,0.0220359,94.13964643],[4.53221529,0.0220342,94.13987134],[4.53221471,0.02203249,94.1401006],[4.53221413,0.02203078,94.1403342],[4.53221356,0.02202908,94.14057217],[4.53221298,0.02202737,94.14081452],[4.5322124,0.02202566,94.14106125],[4.53221182,0.02202396,94.14131239],[4.53221124,0.02202225,94.14156794],[4.53221066,0.02202054,94.14182791],[4.53221008,0.02201884,94.14209232],[4.5322095,0.02201713,94.14236118],[4.53220892,0.02201542,94.1426345],[4.53220834,0.02201371,94.14291229],[4.53220776,0.02201201,94.14319456],[4.53220718,0.0220103,94.14348133],[4.5322066,0.02200859,94.14377261],[4.53220603,0.02200689,94.1440684],[4.53220545,0.02200518,94.14436873],[4.53220487,0.02200347,94.1446736],[4.53220429,0.02200177,94.14498302],[4.53220371,0.02200006,94.14529702],[4.53220313,0.02199836,94.14561559],[4.53220255,0.02199665,94.14593875],[4.53220197,0.02199494,94.14626651],[4.53220139,0.02199324,94.14659889],[4.53220081,0.02199153,94.1469359],[4.53220023,0.02198982,94.14727754],[4.53219965,0.02198812,94.14762384],[4.53219907,0.02198641,94.1479748],[4.53219849,0.0219847,94.14833043],[4.53219844,0.02198456,94.14836096],[4.53222944,0.02197389,94.24059818],[4.53222949,0.02197403,94.24057639],[4.53223007,0.02197574,94.24032213],[4.53223065,0.02197745,94.24007053],[4.53223123,0.02197915,94.23982158],[4.53223181,0.02198086,94.23957529],[4.53223239,0.02198257,94.23933163],[4.53223297,0.02198428,94.23909063],[4.53223355,0.02198598,94.23885226],[4.53223413,0.02198769,94.23861654],[4.53223471,0.0219894,94.23838345],[4.53223529,0.0219911,94.238153],[4.53223587,0.02199281,94.23792518],[4.53223645,0.02199452,94.23769999],[4.53223703,0.02199622,94.23747744],[4.53223761,0.02199793,94.23725751],[4.53223819,0.02199964,94.2370402],[4.53223877,0.02200134,94.23682551],[4.53223934,0.02200305,94.23661345],[4.53223992,0.02200476,94.236404],[4.5322405,0.02200646,94.23619717],[4.53224108,0.02200817,94.23599296],[4.53224166,0.02200988,94.23579135],[4.53224224,0.02201159,94.23559236],[4.53224282,0.02201329,94.23539597],[4.5322434,0.022015,94.23520219],[4.53224398,0.02201671,94.23501101],[4.53224456,0.02201841,94.23482243],[4.53224514,0.02202012,94.23463644],[4.53224572,0.02202183,94.23445306],[4.53224629,0.02202353,94.23427227],[4.53224687,0.02202524,94.23409407],[4.53224745,0.02202695,94.23391847],[4.53224803,0.02202866,94.23374545],[4.53224861,0.02203036,94.23357501],[4.53224919,0.02203207,94.23340716],[4.53224977,0.02203378,94.2332419],[4.53225035,0.02203548,94.23307921],[4.53225093,0.02203719,94.2329191],[4.5322515,0.0220389,94.23276157],[4.53225208,0.02204061,94.23260661],[4.53225266,0.02204231,94.23245422],[4.53225324,0.02204402,94.2323044],[4.53225382,0.02204573,94.23215715],[4.5322544,0.02204743,94.23201246],[4.53225498,0.02204914,94.23187034],[4.53225555,0.02205085,94.23173078],[4.53225613,0.02205256,94.23159378],[4.53225671,0.02205426,94.23145934],[4.53225729,0.02205597,94.23132745],[4.53225787,0.02205768,94.23119812],[4.53225845,0.02205938,94.23107133],[4.53225903,0.02206109,94.2309471],[4.5322596,0.0220628,94.23082541],[4.53226018,0.02206451,94.23070627],[4.53226076,0.02206621,94.23058968],[4.53226134,0.02206792,94.23047562],[4.53226192,0.02206963,94.23036411],[4.5322625,0.02207134,94.23025513],[4.53226307,0.02207304,94.23014869],[4.53226365,0.02207475,94.23004478],[4.53226423,0.02207646,94.2299434],[4.53226481,0.02207816,94.22984455],[4.53226539,0.02207987,94.22974823],[4.53226597,0.02208158,94.22965444],[4.53226654,0.02208329,94.22956317],[4.53226712,0.02208499,94.22947442],[4.5322677,0.0220867,94.22938819],[4.53226828,0.02208841,94.22930448],[4.53226886,0.02209012,94.22922329],[4.53226943,0.02209182,94.22914461],[4.53227001,0.02209353,94.22906844],[4.53227059,0.02209524,94.22899479],[4.53227117,0.02209695,94.22892364],[4.53227175,0.02209865,94.228855],[4.53227232,0.02210036,94.22878886],[4.5322729,0.02210207,94.22872523],[4.53227348,0.02210378,94.22866409],[4.53227406,0.02210548,94.22860546],[4.53227464,0.02210719,94.22854932],[4.53227521,0.0221089,94.22849567],[4.53227579,0.02211061,94.22844452],[4.53227637,0.02211231,94.22839586],[4.53227695,0.02211402,94.22834969],[4.53227752,0.02211573,94.22830601],[4.5322781,0.02211744,94.22826481],[4.53227868,0.02211914,94.2282261],[4.53227926,0.02212085,94.22818986],[4.53227983,0.02212256,94.22815611],[4.53228041,0.02212427,94.22812483],[4.53228099,0.02212597,94.22809603],[4.53228157,0.02212768,94.22806971],[4.53228215,0.02212939,94.22804585],[4.53228272,0.0221311,94.22802447],[4.5322833,0.0221328,94.22800555],[4.53228388,0.02213451,94.22798911],[4.53228446,0.02213622,94.22797512],[4.53228503,0.02213793,94.2279636],[4.53228561,0.02213963,94.22795453],[4.53228619,0.02214134,94.22794793],[4.53228677,0.02214305,94.22794378],[4.53228734,0.02214476,94.22794209],[4.53228792,0.02214646,94.22794285],[4.5322885,0.02214817,94.22794606],[4.53228907,0.02214988,94.22795173],[4.53228965,0.02215159,94.22795983],[4.53229023,0.0221533,94.22797039],[4.53229081,0.022155,94.22798338],[4.5322598,0.02216565,94.1343658]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004200","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2,"sOffset":158.995328704}},{"geometry":{"coordinates":[[[4.53229081,0.022155,94.22798338],[4.53229023,0.0221533,94.22797039],[4.53228965,0.02215159,94.22795983],[4.53228907,0.02214988,94.22795173],[4.5322885,0.02214817,94.22794606],[4.53228792,0.02214646,94.22794285],[4.53228734,0.02214476,94.22794209],[4.53228677,0.02214305,94.22794378],[4.53228619,0.02214134,94.22794793],[4.53228561,0.02213963,94.22795453],[4.53228503,0.02213793,94.2279636],[4.53228446,0.02213622,94.22797512],[4.53228388,0.02213451,94.22798911],[4.5322833,0.0221328,94.22800555],[4.53228272,0.0221311,94.22802447],[4.53228215,0.02212939,94.22804585],[4.53228157,0.02212768,94.22806971],[4.53228099,0.02212597,94.22809603],[4.53228041,0.02212427,94.22812483],[4.53227983,0.02212256,94.22815611],[4.53227926,0.02212085,94.22818986],[4.53227868,0.02211914,94.2282261],[4.5322781,0.02211744,94.22826481],[4.53227752,0.02211573,94.22830601],[4.53227695,0.02211402,94.22834969],[4.53227637,0.02211231,94.22839586],[4.53227579,0.02211061,94.22844452],[4.53227521,0.0221089,94.22849567],[4.53227464,0.02210719,94.22854932],[4.53227406,0.02210548,94.22860546],[4.53227348,0.02210378,94.22866409],[4.5322729,0.02210207,94.22872523],[4.53227232,0.02210036,94.22878886],[4.53227175,0.02209865,94.228855],[4.53227117,0.02209695,94.22892364],[4.53227059,0.02209524,94.22899479],[4.53227001,0.02209353,94.22906844],[4.53226943,0.02209182,94.22914461],[4.53226886,0.02209012,94.22922329],[4.53226828,0.02208841,94.22930448],[4.5322677,0.0220867,94.22938819],[4.53226712,0.02208499,94.22947442],[4.53226654,0.02208329,94.22956317],[4.53226597,0.02208158,94.22965444],[4.53226539,0.02207987,94.22974823],[4.53226481,0.02207816,94.22984455],[4.53226423,0.02207646,94.2299434],[4.53226365,0.02207475,94.23004478],[4.53226307,0.02207304,94.23014869],[4.5322625,0.02207134,94.23025513],[4.53226192,0.02206963,94.23036411],[4.53226134,0.02206792,94.23047562],[4.53226076,0.02206621,94.23058968],[4.53226018,0.02206451,94.23070627],[4.5322596,0.0220628,94.23082541],[4.53225903,0.02206109,94.2309471],[4.53225845,0.02205938,94.23107133],[4.53225787,0.02205768,94.23119812],[4.53225729,0.02205597,94.23132745],[4.53225671,0.02205426,94.23145934],[4.53225613,0.02205256,94.23159378],[4.53225555,0.02205085,94.23173078],[4.53225498,0.02204914,94.23187034],[4.5322544,0.02204743,94.23201246],[4.53225382,0.02204573,94.23215715],[4.53225324,0.02204402,94.2323044],[4.53225266,0.02204231,94.23245422],[4.53225208,0.02204061,94.23260661],[4.5322515,0.0220389,94.23276157],[4.53225093,0.02203719,94.2329191],[4.53225035,0.02203548,94.23307921],[4.53224977,0.02203378,94.2332419],[4.53224919,0.02203207,94.23340716],[4.53224861,0.02203036,94.23357501],[4.53224803,0.02202866,94.23374545],[4.53224745,0.02202695,94.23391847],[4.53224687,0.02202524,94.23409407],[4.53224629,0.02202353,94.23427227],[4.53224572,0.02202183,94.23445306],[4.53224514,0.02202012,94.23463644],[4.53224456,0.02201841,94.23482243],[4.53224398,0.02201671,94.23501101],[4.5322434,0.022015,94.23520219],[4.53224282,0.02201329,94.23539597],[4.53224224,0.02201159,94.23559236],[4.53224166,0.02200988,94.23579135],[4.53224108,0.02200817,94.23599296],[4.5322405,0.02200646,94.23619717],[4.53223992,0.02200476,94.236404],[4.53223934,0.02200305,94.23661345],[4.53223877,0.02200134,94.23682551],[4.53223819,0.02199964,94.2370402],[4.53223761,0.02199793,94.23725751],[4.53223703,0.02199622,94.23747744],[4.53223645,0.02199452,94.23769999],[4.53223587,0.02199281,94.23792518],[4.53223529,0.0219911,94.238153],[4.53223471,0.0219894,94.23838345],[4.53223413,0.02198769,94.23861654],[4.53223355,0.02198598,94.23885226],[4.53223297,0.02198428,94.23909063],[4.53223239,0.02198257,94.23933163],[4.53223181,0.02198086,94.23957529],[4.53223123,0.02197915,94.23982158],[4.53223065,0.02197745,94.24007053],[4.53223007,0.02197574,94.24032213],[4.53222949,0.02197403,94.24057639],[4.53222944,0.02197389,94.24059818],[4.53225988,0.02196341,94.33117143],[4.53225993,0.02196356,94.33115814],[4.53226051,0.02196527,94.33100256],[4.53226109,0.02196697,94.33084766],[4.53226167,0.02196868,94.33069343],[4.53226225,0.02197039,94.33053988],[4.53226283,0.02197209,94.33038702],[4.53226341,0.0219738,94.33023486],[4.53226399,0.02197551,94.3300834],[4.53226457,0.02197722,94.32993266],[4.53226515,0.02197892,94.32978263],[4.53226573,0.02198063,94.32963333],[4.53226631,0.02198234,94.32948476],[4.53226689,0.02198404,94.32933693],[4.53226747,0.02198575,94.32918985],[4.53226804,0.02198746,94.32904353],[4.53226862,0.02198917,94.32889797],[4.5322692,0.02199087,94.32875317],[4.53226978,0.02199258,94.32860916],[4.53227036,0.02199429,94.32846593],[4.53227094,0.021996,94.32832349],[4.53227152,0.0219977,94.32818186],[4.5322721,0.02199941,94.32804103],[4.53227268,0.02200112,94.32790101],[4.53227326,0.02200282,94.32776182],[4.53227383,0.02200453,94.32762346],[4.53227441,0.02200624,94.32748593],[4.53227499,0.02200795,94.32734925],[4.53227557,0.02200965,94.32721342],[4.53227615,0.02201136,94.32707845],[4.53227673,0.02201307,94.32694434],[4.53227731,0.02201478,94.32681111],[4.53227789,0.02201648,94.32667876],[4.53227846,0.02201819,94.3265473],[4.53227904,0.0220199,94.32641674],[4.53227962,0.02202161,94.32628708],[4.5322802,0.02202331,94.32615834],[4.53228078,0.02202502,94.32603051],[4.53228136,0.02202673,94.32590361],[4.53228194,0.02202843,94.32577764],[4.53228251,0.02203014,94.32565262],[4.53228309,0.02203185,94.32552854],[4.53228367,0.02203356,94.32540542],[4.53228425,0.02203526,94.32528327],[4.53228483,0.02203697,94.32516209],[4.53228541,0.02203868,94.32504189],[4.53228599,0.02204039,94.32492267],[4.53228656,0.02204209,94.32480445],[4.53228714,0.0220438,94.32468723],[4.53228772,0.02204551,94.32457102],[4.5322883,0.02204722,94.32445583],[4.53228888,0.02204892,94.32434166],[4.53228945,0.02205063,94.32422853],[4.53229003,0.02205234,94.32411643],[4.53229061,0.02205405,94.32400539],[4.53229119,0.02205575,94.32389539],[4.53229177,0.02205746,94.32378646],[4.53229235,0.02205917,94.3236786],[4.53229292,0.02206088,94.32357182],[4.5322935,0.02206258,94.32346613],[4.53229408,0.02206429,94.32336153],[4.53229466,0.022066,94.32325802],[4.53229524,0.02206771,94.32315563],[4.53229581,0.02206942,94.32305435],[4.53229639,0.02207112,94.3229542],[4.53229697,0.02207283,94.32285517],[4.53229755,0.02207454,94.32275729],[4.53229812,0.02207625,94.32266055],[4.5322987,0.02207795,94.32256497],[4.53229928,0.02207966,94.32247054],[4.53229986,0.02208137,94.32237729],[4.53230044,0.02208308,94.32228521],[4.53230101,0.02208478,94.32219432],[4.53230159,0.02208649,94.32210462],[4.53230217,0.0220882,94.32201612],[4.53230275,0.02208991,94.32192883],[4.53230332,0.02209162,94.32184275],[4.5323039,0.02209332,94.32175789],[4.53230448,0.02209503,94.32167426],[4.53230506,0.02209674,94.32159188],[4.53230563,0.02209845,94.32151073],[4.53230621,0.02210015,94.32143084],[4.53230679,0.02210186,94.32135222],[4.53230737,0.02210357,94.32127486],[4.53230794,0.02210528,94.32119877],[4.53230852,0.02210698,94.32112397],[4.5323091,0.02210869,94.32105046],[4.53230968,0.0221104,94.32097825],[4.53231025,0.02211211,94.32090735],[4.53231083,0.02211382,94.32083776],[4.53231141,0.02211552,94.32076949],[4.53231199,0.02211723,94.32070255],[4.53231256,0.02211894,94.32063695],[4.53231314,0.02212065,94.32057269],[4.53231372,0.02212235,94.32050979],[4.5323143,0.02212406,94.32044824],[4.53231487,0.02212577,94.32038807],[4.53231545,0.02212748,94.32032926],[4.53231603,0.02212919,94.32027185],[4.5323166,0.02213089,94.32021582],[4.53231718,0.0221326,94.32016119],[4.53231776,0.02213431,94.32010797],[4.53231834,0.02213602,94.32005616],[4.53231891,0.02213773,94.32000577],[4.53231949,0.02213943,94.31995681],[4.53232007,0.02214114,94.31990928],[4.53232064,0.02214285,94.31986321],[4.53232122,0.02214456,94.31981858],[4.53229081,0.022155,94.22798338]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004200","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1,"sOffset":158.995328704}},{"geometry":{"coordinates":[[[4.53232122,0.02214456,94.31981858],[4.53232064,0.02214285,94.31986321],[4.53232007,0.02214114,94.31990928],[4.53231949,0.02213943,94.31995681],[4.53231891,0.02213773,94.32000577],[4.53231834,0.02213602,94.32005616],[4.53231776,0.02213431,94.32010797],[4.53231718,0.0221326,94.32016119],[4.5323166,0.02213089,94.32021582],[4.53231603,0.02212919,94.32027185],[4.53231545,0.02212748,94.32032926],[4.53231487,0.02212577,94.32038807],[4.5323143,0.02212406,94.32044824],[4.53231372,0.02212235,94.32050979],[4.53231314,0.02212065,94.32057269],[4.53231256,0.02211894,94.32063695],[4.53231199,0.02211723,94.32070255],[4.53231141,0.02211552,94.32076949],[4.53231083,0.02211382,94.32083776],[4.53231025,0.02211211,94.32090735],[4.53230968,0.0221104,94.32097825],[4.5323091,0.02210869,94.32105046],[4.53230852,0.02210698,94.32112397],[4.53230794,0.02210528,94.32119877],[4.53230737,0.02210357,94.32127486],[4.53230679,0.02210186,94.32135222],[4.53230621,0.02210015,94.32143084],[4.53230563,0.02209845,94.32151073],[4.53230506,0.02209674,94.32159188],[4.53230448,0.02209503,94.32167426],[4.5323039,0.02209332,94.32175789],[4.53230332,0.02209162,94.32184275],[4.53230275,0.02208991,94.32192883],[4.53230217,0.0220882,94.32201612],[4.53230159,0.02208649,94.32210462],[4.53230101,0.02208478,94.32219432],[4.53230044,0.02208308,94.32228521],[4.53229986,0.02208137,94.32237729],[4.53229928,0.02207966,94.32247054],[4.5322987,0.02207795,94.32256497],[4.53229812,0.02207625,94.32266055],[4.53229755,0.02207454,94.32275729],[4.53229697,0.02207283,94.32285517],[4.53229639,0.02207112,94.3229542],[4.53229581,0.02206942,94.32305435],[4.53229524,0.02206771,94.32315563],[4.53229466,0.022066,94.32325802],[4.53229408,0.02206429,94.32336153],[4.5322935,0.02206258,94.32346613],[4.53229292,0.02206088,94.32357182],[4.53229235,0.02205917,94.3236786],[4.53229177,0.02205746,94.32378646],[4.53229119,0.02205575,94.32389539],[4.53229061,0.02205405,94.32400539],[4.53229003,0.02205234,94.32411643],[4.53228945,0.02205063,94.32422853],[4.53228888,0.02204892,94.32434166],[4.5322883,0.02204722,94.32445583],[4.53228772,0.02204551,94.32457102],[4.53228714,0.0220438,94.32468723],[4.53228656,0.02204209,94.32480445],[4.53228599,0.02204039,94.32492267],[4.53228541,0.02203868,94.32504189],[4.53228483,0.02203697,94.32516209],[4.53228425,0.02203526,94.32528327],[4.53228367,0.02203356,94.32540542],[4.53228309,0.02203185,94.32552854],[4.53228251,0.02203014,94.32565262],[4.53228194,0.02202843,94.32577764],[4.53228136,0.02202673,94.32590361],[4.53228078,0.02202502,94.32603051],[4.5322802,0.02202331,94.32615834],[4.53227962,0.02202161,94.32628708],[4.53227904,0.0220199,94.32641674],[4.53227846,0.02201819,94.3265473],[4.53227789,0.02201648,94.32667876],[4.53227731,0.02201478,94.32681111],[4.53227673,0.02201307,94.32694434],[4.53227615,0.02201136,94.32707845],[4.53227557,0.02200965,94.32721342],[4.53227499,0.02200795,94.32734925],[4.53227441,0.02200624,94.32748593],[4.53227383,0.02200453,94.32762346],[4.53227326,0.02200282,94.32776182],[4.53227268,0.02200112,94.32790101],[4.5322721,0.02199941,94.32804103],[4.53227152,0.0219977,94.32818186],[4.53227094,0.021996,94.32832349],[4.53227036,0.02199429,94.32846593],[4.53226978,0.02199258,94.32860916],[4.5322692,0.02199087,94.32875317],[4.53226862,0.02198917,94.32889797],[4.53226804,0.02198746,94.32904353],[4.53226747,0.02198575,94.32918985],[4.53226689,0.02198404,94.32933693],[4.53226631,0.02198234,94.32948476],[4.53226573,0.02198063,94.32963333],[4.53226515,0.02197892,94.32978263],[4.53226457,0.02197722,94.32993266],[4.53226399,0.02197551,94.3300834],[4.53226341,0.0219738,94.33023486],[4.53226283,0.02197209,94.33038702],[4.53226225,0.02197039,94.33053988],[4.53226167,0.02196868,94.33069343],[4.53226109,0.02196697,94.33084766],[4.53226051,0.02196527,94.33100256],[4.53225993,0.02196356,94.33115814],[4.53225988,0.02196341,94.33117143],[4.532264,0.021962,94.34342722],[4.53226405,0.02196214,94.34341506],[4.53226463,0.02196385,94.34327268],[4.53226521,0.02196556,94.3431308],[4.53226579,0.02196726,94.3429894],[4.53226637,0.02196897,94.34284849],[4.53226695,0.02197068,94.34270807],[4.53226753,0.02197238,94.34256815],[4.53226811,0.02197409,94.34242872],[4.53226869,0.0219758,94.3422898],[4.53226927,0.02197751,94.34215137],[4.53226985,0.02197921,94.34201345],[4.53227043,0.02198092,94.34187603],[4.53227101,0.02198263,94.34173911],[4.53227159,0.02198433,94.3416027],[4.53227216,0.02198604,94.3414668],[4.53227274,0.02198775,94.34133141],[4.53227332,0.02198946,94.34119654],[4.5322739,0.02199116,94.34106217],[4.53227448,0.02199287,94.34092832],[4.53227506,0.02199458,94.34079499],[4.53227564,0.02199629,94.34066218],[4.53227622,0.02199799,94.34052989],[4.5322768,0.0219997,94.34039812],[4.53227738,0.02200141,94.34026687],[4.53227796,0.02200311,94.34013615],[4.53227853,0.02200482,94.34000595],[4.53227911,0.02200653,94.33987628],[4.53227969,0.02200824,94.33974715],[4.53228027,0.02200994,94.33961854],[4.53228085,0.02201165,94.33949047],[4.53228143,0.02201336,94.33936293],[4.53228201,0.02201507,94.33923592],[4.53228258,0.02201677,94.33910946],[4.53228316,0.02201848,94.33898353],[4.53228374,0.02202019,94.33885814],[4.53228432,0.0220219,94.3387333],[4.5322849,0.0220236,94.338609],[4.53228548,0.02202531,94.33848525],[4.53228605,0.02202702,94.33836204],[4.53228663,0.02202873,94.33823938],[4.53228721,0.02203043,94.33811727],[4.53228779,0.02203214,94.33799572],[4.53228836,0.02203385,94.33787472],[4.53228894,0.02203556,94.33775427],[4.53228952,0.02203727,94.33763438],[4.5322901,0.02203897,94.33751505],[4.53229067,0.02204068,94.33739628],[4.53229125,0.02204239,94.33727808],[4.53229183,0.0220441,94.33716044],[4.53229241,0.02204581,94.33704336],[4.53229298,0.02204751,94.33692685],[4.53229356,0.02204922,94.33681091],[4.53229414,0.02205093,94.33669555],[4.53229471,0.02205264,94.33658075],[4.53229529,0.02205435,94.33646654],[4.53229587,0.02205605,94.3363529],[4.53229644,0.02205776,94.33623984],[4.53229702,0.02205947,94.33612736],[4.53229759,0.02206118,94.33601546],[4.53229817,0.02206289,94.33590415],[4.53229874,0.0220646,94.33579343],[4.53229932,0.0220663,94.3356833],[4.5322999,0.02206801,94.33557376],[4.53230047,0.02206972,94.33546481],[4.53230105,0.02207143,94.33535646],[4.53230162,0.02207314,94.33524871],[4.5323022,0.02207485,94.33514156],[4.53230277,0.02207656,94.33503501],[4.53230335,0.02207826,94.33492906],[4.53230392,0.02207997,94.33482373],[4.53230449,0.02208168,94.334719],[4.53230507,0.02208339,94.33461489],[4.53230564,0.0220851,94.3345114],[4.53230622,0.02208681,94.33440857],[4.53230679,0.02208852,94.3343064],[4.53230736,0.02209023,94.33420493],[4.53230794,0.02209194,94.33410417],[4.53230851,0.02209365,94.33400416],[4.53230908,0.02209535,94.33390491],[4.53230966,0.02209706,94.33380644],[4.53231023,0.02209877,94.33370879],[4.5323108,0.02210048,94.33361197],[4.53231137,0.02210219,94.333516],[4.53231195,0.0221039,94.33342092],[4.53231252,0.02210561,94.33332673],[4.53231309,0.02210732,94.33323347],[4.53231366,0.02210903,94.33314116],[4.53231424,0.02211074,94.33304982],[4.53231481,0.02211245,94.33295948],[4.53231538,0.02211416,94.33287016],[4.53231595,0.02211587,94.33278187],[4.53231653,0.02211758,94.33269465],[4.5323171,0.02211929,94.33260851],[4.53231767,0.022121,94.33252349],[4.53231824,0.02212271,94.33243959],[4.53231881,0.02212442,94.33235686],[4.53231938,0.02212613,94.3322753],[4.53231996,0.02212784,94.33219494],[4.53232053,0.02212955,94.33211581],[4.5323211,0.02213126,94.33203792],[4.53232167,0.02213297,94.3319613],[4.53232224,0.02213468,94.33188598],[4.53232281,0.02213639,94.33181197],[4.53232339,0.0221381,94.3317393],[4.53232396,0.02213981,94.33166799],[4.53232453,0.02214152,94.33159806],[4.5323251,0.02214323,94.33152954],[4.53232122,0.02214456,94.31981858]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004200","id":1,"type":"shoulder","predecessorId":1,"sOffset":158.995328704}},{"geometry":{"coordinates":[[[4.5323251,0.02214323,94.33152954],[4.53232453,0.02214152,94.33159806],[4.53232396,0.02213981,94.33166799],[4.53232339,0.0221381,94.3317393],[4.53232281,0.02213639,94.33181197],[4.53232224,0.02213468,94.33188598],[4.53232167,0.02213297,94.3319613],[4.5323211,0.02213126,94.33203792],[4.53232053,0.02212955,94.33211581],[4.53231996,0.02212784,94.33219494],[4.53231938,0.02212613,94.3322753],[4.53231881,0.02212442,94.33235686],[4.53231824,0.02212271,94.33243959],[4.53231767,0.022121,94.33252349],[4.5323171,0.02211929,94.33260851],[4.53231653,0.02211758,94.33269465],[4.53231595,0.02211587,94.33278187],[4.53231538,0.02211416,94.33287016],[4.53231481,0.02211245,94.33295948],[4.53231424,0.02211074,94.33304982],[4.53231366,0.02210903,94.33314116],[4.53231309,0.02210732,94.33323347],[4.53231252,0.02210561,94.33332673],[4.53231195,0.0221039,94.33342092],[4.53231137,0.02210219,94.333516],[4.5323108,0.02210048,94.33361197],[4.53231023,0.02209877,94.33370879],[4.53230966,0.02209706,94.33380644],[4.53230908,0.02209535,94.33390491],[4.53230851,0.02209365,94.33400416],[4.53230794,0.02209194,94.33410417],[4.53230736,0.02209023,94.33420493],[4.53230679,0.02208852,94.3343064],[4.53230622,0.02208681,94.33440857],[4.53230564,0.0220851,94.3345114],[4.53230507,0.02208339,94.33461489],[4.53230449,0.02208168,94.334719],[4.53230392,0.02207997,94.33482373],[4.53230335,0.02207826,94.33492906],[4.53230277,0.02207656,94.33503501],[4.5323022,0.02207485,94.33514156],[4.53230162,0.02207314,94.33524871],[4.53230105,0.02207143,94.33535646],[4.53230047,0.02206972,94.33546481],[4.5322999,0.02206801,94.33557376],[4.53229932,0.0220663,94.3356833],[4.53229874,0.0220646,94.33579343],[4.53229817,0.02206289,94.33590415],[4.53229759,0.02206118,94.33601546],[4.53229702,0.02205947,94.33612736],[4.53229644,0.02205776,94.33623984],[4.53229587,0.02205605,94.3363529],[4.53229529,0.02205435,94.33646654],[4.53229471,0.02205264,94.33658075],[4.53229414,0.02205093,94.33669555],[4.53229356,0.02204922,94.33681091],[4.53229298,0.02204751,94.33692685],[4.53229241,0.02204581,94.33704336],[4.53229183,0.0220441,94.33716044],[4.53229125,0.02204239,94.33727808],[4.53229067,0.02204068,94.33739628],[4.5322901,0.02203897,94.33751505],[4.53228952,0.02203727,94.33763438],[4.53228894,0.02203556,94.33775427],[4.53228836,0.02203385,94.33787472],[4.53228779,0.02203214,94.33799572],[4.53228721,0.02203043,94.33811727],[4.53228663,0.02202873,94.33823938],[4.53228605,0.02202702,94.33836204],[4.53228548,0.02202531,94.33848525],[4.5322849,0.0220236,94.338609],[4.53228432,0.0220219,94.3387333],[4.53228374,0.02202019,94.33885814],[4.53228316,0.02201848,94.33898353],[4.53228258,0.02201677,94.33910946],[4.53228201,0.02201507,94.33923592],[4.53228143,0.02201336,94.33936293],[4.53228085,0.02201165,94.33949047],[4.53228027,0.02200994,94.33961854],[4.53227969,0.02200824,94.33974715],[4.53227911,0.02200653,94.33987628],[4.53227853,0.02200482,94.34000595],[4.53227796,0.02200311,94.34013615],[4.53227738,0.02200141,94.34026687],[4.5322768,0.0219997,94.34039812],[4.53227622,0.02199799,94.34052989],[4.53227564,0.02199629,94.34066218],[4.53227506,0.02199458,94.34079499],[4.53227448,0.02199287,94.34092832],[4.5322739,0.02199116,94.34106217],[4.53227332,0.02198946,94.34119654],[4.53227274,0.02198775,94.34133141],[4.53227216,0.02198604,94.3414668],[4.53227159,0.02198433,94.3416027],[4.53227101,0.02198263,94.34173911],[4.53227043,0.02198092,94.34187603],[4.53226985,0.02197921,94.34201345],[4.53226927,0.02197751,94.34215137],[4.53226869,0.0219758,94.3422898],[4.53226811,0.02197409,94.34242872],[4.53226753,0.02197238,94.34256815],[4.53226695,0.02197068,94.34270807],[4.53226637,0.02196897,94.34284849],[4.53226579,0.02196726,94.3429894],[4.53226521,0.02196556,94.3431308],[4.53226463,0.02196385,94.34327268],[4.53226405,0.02196214,94.34341506],[4.532264,0.021962,94.34342722],[4.53227612,0.02195783,94.34342722],[4.53227617,0.02195797,94.34341506],[4.53227675,0.02195968,94.34327268],[4.53227733,0.02196139,94.3431308],[4.53227791,0.02196309,94.3429894],[4.53227849,0.0219648,94.34284849],[4.53227907,0.02196651,94.34270807],[4.53227965,0.02196821,94.34256815],[4.53228023,0.02196992,94.34242872],[4.53228081,0.02197163,94.3422898],[4.53228139,0.02197334,94.34215137],[4.53228197,0.02197504,94.34201345],[4.53228255,0.02197675,94.34187603],[4.53228313,0.02197846,94.34173911],[4.53228371,0.02198016,94.3416027],[4.53228429,0.02198187,94.3414668],[4.53228487,0.02198358,94.34133141],[4.53228545,0.02198529,94.34119654],[4.53228603,0.02198699,94.34106217],[4.53228661,0.0219887,94.34092832],[4.53228719,0.02199041,94.34079499],[4.53228777,0.02199211,94.34066218],[4.53228835,0.02199382,94.34052989],[4.53228893,0.02199553,94.34039812],[4.5322895,0.02199724,94.34026687],[4.53229008,0.02199894,94.34013615],[4.53229066,0.02200065,94.34000595],[4.53229124,0.02200236,94.33987628],[4.53229182,0.02200406,94.33974715],[4.5322924,0.02200577,94.33961854],[4.53229298,0.02200748,94.33949047],[4.53229356,0.02200919,94.33936293],[4.53229414,0.02201089,94.33923592],[4.53229472,0.0220126,94.33910946],[4.5322953,0.02201431,94.33898353],[4.53229588,0.02201601,94.33885814],[4.53229646,0.02201772,94.3387333],[4.53229704,0.02201943,94.338609],[4.53229762,0.02202114,94.33848525],[4.5322982,0.02202284,94.33836204],[4.53229878,0.02202455,94.33823938],[4.53229936,0.02202626,94.33811727],[4.53229993,0.02202797,94.33799572],[4.53230051,0.02202967,94.33787472],[4.53230109,0.02203138,94.33775427],[4.53230167,0.02203309,94.33763438],[4.53230225,0.02203479,94.33751505],[4.53230283,0.0220365,94.33739628],[4.53230341,0.02203821,94.33727808],[4.53230399,0.02203992,94.33716044],[4.53230457,0.02204162,94.33704336],[4.53230515,0.02204333,94.33692685],[4.53230573,0.02204504,94.33681091],[4.53230631,0.02204675,94.33669555],[4.53230688,0.02204845,94.33658075],[4.53230746,0.02205016,94.33646654],[4.53230804,0.02205187,94.3363529],[4.53230862,0.02205358,94.33623984],[4.5323092,0.02205528,94.33612736],[4.53230978,0.02205699,94.33601546],[4.53231036,0.0220587,94.33590415],[4.53231094,0.02206041,94.33579343],[4.53231152,0.02206211,94.3356833],[4.53231209,0.02206382,94.33557376],[4.53231267,0.02206553,94.33546481],[4.53231325,0.02206723,94.33535646],[4.53231383,0.02206894,94.33524871],[4.53231441,0.02207065,94.33514156],[4.53231499,0.02207236,94.33503501],[4.53231557,0.02207406,94.33492906],[4.53231614,0.02207577,94.33482373],[4.53231672,0.02207748,94.334719],[4.5323173,0.02207919,94.33461489],[4.53231788,0.02208089,94.3345114],[4.53231846,0.0220826,94.33440857],[4.53231904,0.02208431,94.3343064],[4.53231961,0.02208602,94.33420493],[4.53232019,0.02208773,94.33410417],[4.53232077,0.02208943,94.33400416],[4.53232135,0.02209114,94.33390491],[4.53232193,0.02209285,94.33380644],[4.5323225,0.02209456,94.33370879],[4.53232308,0.02209626,94.33361197],[4.53232366,0.02209797,94.333516],[4.53232424,0.02209968,94.33342092],[4.53232482,0.02210139,94.33332673],[4.53232539,0.02210309,94.33323347],[4.53232597,0.0221048,94.33314116],[4.53232655,0.02210651,94.33304982],[4.53232713,0.02210822,94.33295948],[4.53232771,0.02210993,94.33287016],[4.53232828,0.02211163,94.33278187],[4.53232886,0.02211334,94.33269465],[4.53232944,0.02211505,94.33260851],[4.53233002,0.02211676,94.33252349],[4.53233059,0.02211846,94.33243959],[4.53233117,0.02212017,94.33235686],[4.53233175,0.02212188,94.3322753],[4.53233233,0.02212359,94.33219494],[4.5323329,0.0221253,94.33211581],[4.53233348,0.022127,94.33203792],[4.53233406,0.02212871,94.3319613],[4.53233464,0.02213042,94.33188598],[4.53233521,0.02213213,94.33181197],[4.53233579,0.02213383,94.3317393],[4.53233637,0.02213554,94.33166799],[4.53233695,0.02213725,94.33159806],[4.53233752,0.02213896,94.33152954],[4.5323251,0.02214323,94.33152954]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1004200","id":2,"type":"none","predecessorId":2,"sOffset":158.995328704}},{"geometry":{"coordinates":[[[4.53469285,0.03043239,97.65343948],[4.53469235,0.03043066,97.65226247],[4.53469185,0.03042892,97.65108477],[4.53469136,0.03042719,97.64990638],[4.53469086,0.03042546,97.6487273],[4.53469036,0.03042373,97.64754754],[4.53468987,0.030422,97.64636709],[4.53468937,0.03042027,97.64518596],[4.53468887,0.03041854,97.64400413],[4.53468838,0.03041681,97.64282162],[4.53468788,0.03041507,97.64163842],[4.53468739,0.03041334,97.64045453],[4.53468689,0.03041161,97.63926996],[4.53468639,0.03040988,97.6380847],[4.5346859,0.03040815,97.63689875],[4.5346854,0.03040642,97.63571211],[4.5346849,0.03040469,97.63452478],[4.53468441,0.03040295,97.63333677],[4.53468391,0.03040122,97.63214807],[4.53468341,0.03039949,97.63095868],[4.53468292,0.03039776,97.62976861],[4.53468242,0.03039603,97.62857785],[4.53468193,0.0303943,97.6273864],[4.53468143,0.03039257,97.62619426],[4.53468093,0.03039084,97.62500144],[4.53468044,0.0303891,97.62380792],[4.53467994,0.03038737,97.62261373],[4.53467945,0.03038564,97.62141884],[4.53467895,0.03038391,97.62022327],[4.53467845,0.03038218,97.61902701],[4.53467796,0.03038045,97.61783006],[4.53467746,0.03037872,97.61663243],[4.53467696,0.03037698,97.61543411],[4.53467647,0.03037525,97.61423511],[4.53467597,0.03037352,97.61303542],[4.53467548,0.03037179,97.61183504],[4.53467498,0.03037006,97.61063398],[4.53467448,0.03036833,97.60943223],[4.53467399,0.0303666,97.60822979],[4.53467349,0.03036487,97.60702667],[4.53467299,0.03036313,97.60582287],[4.5346725,0.0303614,97.60461838],[4.534672,0.03035967,97.6034132],[4.53467151,0.03035794,97.60220734],[4.53467101,0.03035621,97.60100079],[4.53467051,0.03035448,97.59979356],[4.53467002,0.03035275,97.59858565],[4.53466952,0.03035101,97.59737705],[4.53466902,0.03034928,97.59616777],[4.53466853,0.03034755,97.5949578],[4.53466803,0.03034582,97.59374715],[4.53466753,0.03034409,97.59253582],[4.53466704,0.03034236,97.5913238],[4.53466654,0.03034063,97.5901111],[4.53466604,0.0303389,97.58889772],[4.53466555,0.03033716,97.58768365],[4.53466505,0.03033543,97.5864689],[4.53466455,0.0303337,97.58525347],[4.53466406,0.03033197,97.58403736],[4.53466356,0.03033024,97.58282057],[4.53466306,0.03032851,97.58160309],[4.53466257,0.03032678,97.58038494],[4.53466207,0.03032504,97.5791661],[4.53466157,0.03032331,97.57794658],[4.53466108,0.03032158,97.57672638],[4.53466058,0.03031985,97.5755055],[4.53466008,0.03031812,97.57428394],[4.53465958,0.03031639,97.5730617],[4.53465909,0.03031466,97.57183878],[4.53465859,0.03031293,97.57061518],[4.53465809,0.03031119,97.56939091],[4.5346576,0.03030946,97.56816595],[4.5346571,0.03030773,97.56694031],[4.5346566,0.030306,97.565714],[4.5346561,0.03030427,97.56448701],[4.53465561,0.03030254,97.56325935],[4.53465511,0.03030081,97.56203105],[4.53465461,0.03029908,97.56080212],[4.53465411,0.03029735,97.55957259],[4.53465361,0.03029561,97.55834248],[4.53465312,0.03029388,97.5571118],[4.53465262,0.03029215,97.55588059],[4.53465212,0.03029042,97.55464887],[4.53465162,0.03028869,97.55341664],[4.53465113,0.03028696,97.55218391],[4.53465063,0.03028523,97.55095068],[4.53465013,0.0302835,97.54971693],[4.53464963,0.03028177,97.54848265],[4.53464913,0.03028003,97.54724785],[4.53464864,0.0302783,97.54601252],[4.53464814,0.03027657,97.54477664],[4.53464764,0.03027484,97.54354022],[4.53464714,0.03027311,97.54230324],[4.53464664,0.03027138,97.54106571],[4.53464615,0.03026965,97.5398276],[4.53464565,0.03026792,97.53858893],[4.53464515,0.03026619,97.53734967],[4.53464465,0.03026445,97.53610983],[4.53464415,0.03026272,97.53486939],[4.53464365,0.03026099,97.53362836],[4.53464316,0.03025926,97.53238672],[4.53464266,0.03025753,97.53114446],[4.53464216,0.0302558,97.52990159],[4.53464166,0.03025407,97.5286581],[4.53464116,0.03025234,97.52741397],[4.53464066,0.03025061,97.52616921],[4.53464016,0.03024887,97.5249238],[4.53463966,0.03024714,97.52367774],[4.53463916,0.03024541,97.52243102],[4.53463867,0.03024368,97.52118364],[4.53463817,0.03024195,97.51993559],[4.53463767,0.03024022,97.51868687],[4.53463717,0.03023849,97.51743746],[4.53463667,0.03023675,97.51618736],[4.53463617,0.03023502,97.51493657],[4.53463567,0.03023329,97.51368507],[4.53463517,0.03023156,97.51243287],[4.53463467,0.03022983,97.51117995],[4.53463417,0.0302281,97.50992631],[4.53463367,0.03022637,97.50867195],[4.53463316,0.03022463,97.50741685],[4.53463266,0.0302229,97.50616101],[4.53463216,0.03022117,97.50490442],[4.53463166,0.03021944,97.50364708],[4.53463116,0.03021771,97.50238898],[4.53463066,0.03021598,97.50113012],[4.53463016,0.03021425,97.49987048],[4.53462966,0.03021252,97.49861007],[4.53462915,0.03021078,97.49734888],[4.53462865,0.03020905,97.49608693],[4.53462815,0.03020732,97.49482422],[4.53462765,0.03020559,97.49356077],[4.53462715,0.03020386,97.49229658],[4.53462664,0.03020213,97.49103168],[4.53462614,0.0302004,97.48976607],[4.53462564,0.03019866,97.48849977],[4.53462513,0.03019693,97.48723278],[4.53462463,0.0301952,97.48596512],[4.53462413,0.03019347,97.4846968],[4.53462362,0.03019174,97.48342784],[4.53462312,0.03019001,97.48215824],[4.53462262,0.03018827,97.48088802],[4.53462211,0.03018654,97.47961719],[4.53462161,0.03018481,97.47834576],[4.53462111,0.03018308,97.47707374],[4.5346206,0.03018135,97.47580116],[4.5346201,0.03017962,97.474528],[4.53461959,0.03017789,97.4732543],[4.53461909,0.03017615,97.47198006],[4.53461859,0.03017442,97.4707053],[4.53461808,0.03017269,97.46943002],[4.53461758,0.03017096,97.46815425],[4.53461707,0.03016923,97.46687799],[4.53461657,0.0301675,97.46560126],[4.53461606,0.03016576,97.46432407],[4.53461556,0.03016403,97.46304643],[4.53461505,0.0301623,97.46176835],[4.53461455,0.03016057,97.46048986],[4.53461404,0.03015884,97.45921095],[4.53461354,0.0301571,97.45793165],[4.53461303,0.03015537,97.45665197],[4.53461253,0.03015364,97.45537192],[4.53461202,0.03015191,97.45409151],[4.53461152,0.03015018,97.45281076],[4.53461101,0.03014845,97.45152968],[4.53461051,0.03014671,97.45024827],[4.53461,0.03014498,97.44896657],[4.5346095,0.03014325,97.44768457],[4.53460899,0.03014152,97.44640229],[4.53460849,0.03013978,97.44511974],[4.53460798,0.03013805,97.44383694],[4.53460748,0.03013632,97.4425539],[4.53460697,0.03013459,97.44127065],[4.53460647,0.03013285,97.43998719],[4.53460596,0.03013112,97.43870356],[4.53460546,0.03012939,97.43741976],[4.53460495,0.03012766,97.43613583],[4.53460444,0.03012592,97.43485177],[4.53460394,0.03012419,97.43356762],[4.53460343,0.03012246,97.43228338],[4.53460293,0.03012073,97.43099908],[4.53460242,0.03011899,97.42971473],[4.53460192,0.03011726,97.42843036],[4.53460141,0.03011553,97.42714599],[4.53460091,0.03011379,97.42586164],[4.53460041,0.03011206,97.42457734],[4.5345999,0.03011033,97.42329311],[4.5345994,0.0301086,97.42200895],[4.53459889,0.03010686,97.42072481],[4.53459839,0.03010513,97.41944069],[4.53459788,0.0301034,97.41815654],[4.53459738,0.03010166,97.41687234],[4.53459687,0.03009993,97.41558807],[4.53459637,0.03009819,97.41430369],[4.53459587,0.03009646,97.41301917],[4.53459536,0.03009473,97.4117345],[4.53459486,0.03009299,97.41044964],[4.53459435,0.03009126,97.40916457],[4.53459385,0.03008953,97.40787926],[4.53459334,0.03008779,97.40659367],[4.53459284,0.03008606,97.40530779],[4.53459234,0.03008432,97.40402159],[4.53459183,0.03008259,97.40273503],[4.53459133,0.03008086,97.4014481],[4.53459082,0.03007912,97.40016075],[4.53459032,0.03007739,97.39887298],[4.53458981,0.03007565,97.39758474],[4.53458931,0.03007392,97.39629601],[4.5345888,0.03007219,97.39500677],[4.5345883,0.03007045,97.39371698],[4.53458779,0.03006872,97.39242662],[4.53458729,0.03006698,97.39113567],[4.53458678,0.03006525,97.38984408],[4.53458628,0.03006352,97.38855185],[4.53458577,0.03006178,97.3872592],[4.53458526,0.03006005,97.38596658],[4.53458476,0.03005831,97.38467445],[4.53458425,0.03005658,97.38338327],[4.53458375,0.03005484,97.38209351],[4.53458324,0.03005311,97.38080564],[4.53458274,0.03005137,97.37952012],[4.53458224,0.03004964,97.37823741],[4.53458174,0.0300479,97.37695797],[4.53458124,0.03004617,97.37568227],[4.53458074,0.03004443,97.37441078],[4.53458024,0.03004269,97.37314395],[4.53457975,0.03004096,97.37188225],[4.53457925,0.03003922,97.37062615],[4.53457876,0.03003748,97.3693761],[4.53457827,0.03003574,97.36813259],[4.53457779,0.03003401,97.3668961],[4.5345773,0.03003227,97.36566714],[4.53457682,0.03003053,97.36444621],[4.53457634,0.03002878,97.36323381],[4.53457587,0.03002704,97.36203044],[4.5345754,0.0300253,97.36083639],[4.53457493,0.03002356,97.35965117],[4.53457446,0.03002181,97.35847406],[4.534574,0.03002007,97.35730436],[4.53457353,0.03001833,97.35614135],[4.53457307,0.03001658,97.35498434],[4.53457262,0.03001484,97.3538326],[4.53457216,0.03001309,97.35268544],[4.5345717,0.03001134,97.35154215],[4.53457125,0.0300096,97.35040201],[4.53457079,0.03000785,97.34926433],[4.53457034,0.03000611,97.34812838],[4.53456989,0.03000436,97.34699347],[4.53456943,0.03000261,97.34585888],[4.53456898,0.03000087,97.34472391],[4.53456853,0.02999912,97.34358785],[4.53456807,0.02999738,97.34244999],[4.53456762,0.02999563,97.34130962],[4.53456716,0.02999389,97.34016603],[4.5345667,0.02999215,97.33901882],[4.53456624,0.0299904,97.33786883],[4.53456578,0.02998866,97.33671719],[4.53456532,0.02998692,97.33556503],[4.53456486,0.02998517,97.33441349],[4.5345644,0.02998343,97.3332637],[4.53456394,0.02998169,97.33211681],[4.53456348,0.02997995,97.33097394],[4.53456302,0.02997821,97.32983623],[4.53456257,0.02997646,97.32870482],[4.53456212,0.02997472,97.32758085],[4.53456167,0.02997297,97.32646545],[4.53456122,0.02997123,97.32535976],[4.53456077,0.02996948,97.32426491],[4.53456033,0.02996774,97.32318205],[4.5345599,0.02996599,97.3221123],[4.53455947,0.02996424,97.32105682],[4.53455904,0.02996249,97.32001673],[4.53455862,0.02996074,97.31899309],[4.5345582,0.02995898,97.3179852],[4.53455779,0.02995723,97.31699061],[4.53455738,0.02995547,97.31600678],[4.53455698,0.02995372,97.31503118],[4.53455657,0.02995196,97.31406127],[4.53455617,0.02995021,97.31309458],[4.53455577,0.02994845,97.31212991],[4.53455536,0.02994669,97.31116732],[4.53455496,0.02994494,97.31020694],[4.53455456,0.02994318,97.30924889],[4.53455416,0.02994142,97.30829328],[4.53455376,0.02993967,97.30734025],[4.53455336,0.02993791,97.30638988],[4.53455296,0.02993615,97.30544222],[4.53455257,0.0299344,97.30449734],[4.53455217,0.02993264,97.3035553],[4.53455177,0.02993088,97.30261614],[4.53455138,0.02992912,97.30167994],[4.53455098,0.02992737,97.30074673],[4.53455059,0.02992561,97.29981659],[4.5345502,0.02992385,97.29888958],[4.53454981,0.02992209,97.29796574],[4.53454942,0.02992034,97.29704513],[4.53454903,0.02991858,97.29612782],[4.53454864,0.02991682,97.29521386],[4.53454826,0.02991506,97.29430331],[4.53454787,0.0299133,97.29339622],[4.53454749,0.02991154,97.29249266],[4.5345471,0.02990978,97.29159268],[4.53454672,0.02990802,97.29069634],[4.53454634,0.02990626,97.2898037],[4.53454596,0.0299045,97.28891481],[4.53454559,0.02990274,97.28802974],[4.53454521,0.02990098,97.28714843],[4.53454483,0.02989922,97.28627048],[4.53454446,0.02989746,97.28539534],[4.53454409,0.0298957,97.28452249],[4.53454371,0.02989394,97.2836514],[4.53454334,0.02989217,97.28278154],[4.53454297,0.02989041,97.2819124],[4.5345426,0.02988865,97.28104343],[4.53454223,0.02988689,97.28017412],[4.53454186,0.02988513,97.27930394],[4.53454148,0.02988337,97.27843235],[4.53454111,0.02988161,97.27755883],[4.53454074,0.02987985,97.27668285],[4.53454036,0.02987809,97.27580388],[4.53453998,0.02987633,97.2749214],[4.53453961,0.02987457,97.27403488],[4.53453922,0.02987281,97.27314424],[4.53453884,0.02987106,97.27225113],[4.53453845,0.0298693,97.27135766],[4.53453807,0.02986754,97.2704659],[4.53453768,0.02986579,97.26957796],[4.5345373,0.02986403,97.26869592],[4.53453691,0.02986228,97.26782188],[4.53453653,0.02986052,97.26695793],[4.53453615,0.02985876,97.26610617],[4.53453577,0.02985701,97.26526868],[4.53453539,0.02985525,97.26444757],[4.53453502,0.02985349,97.26364492],[4.53453465,0.02985173,97.26286272],[4.53453429,0.02984997,97.26210001],[4.53453393,0.0298482,97.26135294],[4.53453358,0.02984644,97.26061751],[4.53453323,0.02984467,97.25988973],[4.53453289,0.02984291,97.2591656],[4.53453255,0.02984114,97.25844113],[4.53453221,0.02983937,97.2577123],[4.53453187,0.0298376,97.2569763],[4.53453153,0.02983583,97.25623488],[4.53453119,0.02983407,97.25549092],[4.53453085,0.0298323,97.25474731],[4.5345305,0.02983053,97.25400693],[4.53453016,0.02982877,97.25327267],[4.53452982,0.029827,97.25254742],[4.53452948,0.02982523,97.25183406],[4.53452914,0.02982346,97.25113547],[4.53452881,0.0298217,97.25045456],[4.53452847,0.02981993,97.24979344],[4.53452814,0.02981816,97.24915124],[4.53452781,0.02981639,97.24852628],[4.53452748,0.02981461,97.24791694],[4.53452716,0.02981284,97.24732156],[4.53452685,0.02981106,97.24673848],[4.53452654,0.02980928,97.24616607],[4.53452623,0.0298075,97.24560266],[4.53452593,0.02980572,97.24504662],[4.53452564,0.02980393,97.24449628],[4.53452534,0.02980215,97.24394999],[4.53452505,0.02980036,97.24340611],[4.53452477,0.02979857,97.24286298],[4.53452448,0.02979678,97.24231895],[4.53452419,0.02979499,97.24177236],[4.5345239,0.0297932,97.24122156],[4.53452361,0.02979141,97.24066532],[4.53452332,0.02978962,97.24010404],[4.53452303,0.02978784,97.23953856],[4.53452273,0.02978605,97.23896968],[4.53452243,0.02978426,97.2383982],[4.53452213,0.02978247,97.23782488],[4.53452183,0.02978068,97.23725049],[4.53452153,0.02977889,97.23667582],[4.53452122,0.02977711,97.23610162],[4.53452092,0.02977532,97.23552869],[4.53452061,0.02977353,97.23495778],[4.53452031,0.02977174,97.23438968],[4.53452,0.02976995,97.23382515],[4.5345197,0.02976816,97.23326498],[4.5345194,0.02976637,97.23270993],[4.5345191,0.02976458,97.23216078],[4.5345188,0.02976278,97.2316183],[4.53451851,0.02976099,97.23108327],[4.53451822,0.02975919,97.23055633],[4.53451793,0.02975739,97.2300351],[4.53451765,0.0297556,97.22951425],[4.53451736,0.0297538,97.22898834],[4.53451707,0.029752,97.22845191],[4.53451678,0.0297502,97.22789951],[4.53451648,0.02974841,97.22732571],[4.53451618,0.02974661,97.22672515],[4.53451586,0.02974482,97.22609249],[4.53451553,0.02974304,97.22542431],[4.53451519,0.02974125,97.22472481],[4.53451484,0.02973947,97.22400014],[4.53451449,0.02973769,97.22325641],[4.53451413,0.02973591,97.22249976],[4.53451377,0.02973413,97.22173632],[4.5345134,0.02973235,97.22097222],[4.53451304,0.02973057,97.2202136],[4.53451268,0.02972879,97.21946658],[4.53451232,0.02972701,97.21873549],[4.53451197,0.02972523,97.21801761],[4.53451161,0.02972345,97.21730856],[4.53451126,0.02972166,97.21660391],[4.53451091,0.02971988,97.21589927],[4.53451055,0.02971809,97.21519023],[4.53451019,0.02971631,97.21447239],[4.53450983,0.02971453,97.21374133],[4.53450946,0.02971275,97.21299265],[4.53450908,0.02971097,97.21222194],[4.53450869,0.0297092,97.2114263],[4.5345083,0.02970742,97.21060874],[4.53450789,0.02970565,97.20977372],[4.53450749,0.02970388,97.20892573],[4.53450708,0.02970211,97.20806926],[4.53450667,0.02970034,97.20720882],[4.53450626,0.02969857,97.2063489],[4.53450585,0.0296968,97.20549311],[4.53450544,0.02969503,97.20464173],[4.53450503,0.02969326,97.20379422],[4.53450463,0.02969149,97.20295003],[4.53450422,0.02968971,97.20210862],[4.53450382,0.02968794,97.20126945],[4.53450341,0.02968617,97.20043198],[4.53450301,0.02968439,97.19959567],[4.53450261,0.02968262,97.19875997],[4.5345022,0.02968084,97.19792435],[4.5345018,0.02967907,97.19708826],[4.53450139,0.02967729,97.19625116],[4.53450099,0.02967552,97.19541251],[4.53450058,0.02967374,97.19457176],[4.53450018,0.02967197,97.19372838],[4.53449977,0.02967019,97.19288182],[4.53449936,0.02966842,97.19203153],[4.53449895,0.02966664,97.19117698],[4.53449853,0.02966487,97.19031762],[4.53449812,0.02966309,97.18945292],[4.5344977,0.02966132,97.18858232],[4.53449729,0.02965954,97.18770528],[4.53449686,0.02965777,97.18682127],[4.53449644,0.029656,97.18592974],[4.53449601,0.02965423,97.18503014],[4.53449559,0.02965245,97.18412194],[4.53449515,0.02965068,97.18320459],[4.53449472,0.02964891,97.1822779],[4.53449428,0.02964714,97.18134278],[4.53449384,0.02964537,97.18040045],[4.5344934,0.02964361,97.1794521],[4.53449295,0.02964184,97.17849894],[4.53449251,0.02964008,97.17754216],[4.53449206,0.02963831,97.17658298],[4.53449161,0.02963654,97.17562258],[4.53449117,0.02963478,97.17466218],[4.53449072,0.02963301,97.17370298],[4.53449028,0.02963124,97.17274617],[4.53449024,0.02963111,97.17267337],[4.53453329,0.02961849,97.17267337],[4.53453332,0.02961862,97.17274617],[4.53453376,0.02962038,97.17370298],[4.53453421,0.02962213,97.17466218],[4.53453465,0.02962389,97.17562258],[4.53453509,0.02962565,97.17658298],[4.53453554,0.0296274,97.17754216],[4.53453598,0.02962915,97.17849894],[4.53453642,0.02963091,97.1794521],[4.53453686,0.02963267,97.18040045],[4.5345373,0.02963442,97.18134278],[4.53453774,0.02963618,97.1822779],[4.53453817,0.02963794,97.18320459],[4.5345386,0.0296397,97.18412194],[4.53453903,0.02964146,97.18503014],[4.53453945,0.02964322,97.18592974],[4.53453988,0.02964498,97.18682127],[4.5345403,0.02964675,97.18770528],[4.53454071,0.02964851,97.18858232],[4.53454113,0.02965027,97.18945292],[4.53454154,0.02965204,97.19031762],[4.53454195,0.0296538,97.19117698],[4.53454236,0.02965557,97.19203153],[4.53454277,0.02965733,97.19288182],[4.53454318,0.0296591,97.19372838],[4.53454359,0.02966087,97.19457176],[4.53454399,0.02966263,97.19541251],[4.5345444,0.0296644,97.19625116],[4.5345448,0.02966617,97.19708826],[4.5345452,0.02966793,97.19792435],[4.53454561,0.0296697,97.19875997],[4.53454601,0.02967146,97.19959567],[4.53454642,0.02967323,97.20043198],[4.53454682,0.029675,97.20126945],[4.53454722,0.02967676,97.20210862],[4.53454763,0.02967853,97.20295003],[4.53454804,0.02968029,97.20379422],[4.53454844,0.02968206,97.20464173],[4.53454885,0.02968382,97.20549311],[4.53454926,0.02968559,97.2063489],[4.53454967,0.02968735,97.20720882],[4.53455008,0.02968911,97.20806926],[4.53455049,0.02969088,97.20892573],[4.5345509,0.02969264,97.20977372],[4.5345513,0.02969441,97.21060874],[4.5345517,0.02969618,97.2114263],[4.53455209,0.02969795,97.21222194],[4.53455247,0.02969972,97.21299265],[4.53455284,0.02970149,97.21374133],[4.53455321,0.02970327,97.21447239],[4.53455357,0.02970505,97.21519023],[4.53455393,0.02970682,97.21589927],[4.53455429,0.0297086,97.21660391],[4.53455464,0.02971038,97.21730856],[4.534555,0.02971216,97.21801761],[4.53455536,0.02971394,97.21873549],[4.53455573,0.02971571,97.21946658],[4.5345561,0.02971748,97.2202136],[4.53455647,0.02971926,97.22097222],[4.53455685,0.02972103,97.22173632],[4.53455722,0.0297228,97.22249976],[4.5345576,0.02972457,97.22325641],[4.53455797,0.02972635,97.22400014],[4.53455833,0.02972812,97.22472481],[4.53455868,0.0297299,97.22542431],[4.53455902,0.02973168,97.22609249],[4.53455935,0.02973347,97.22672515],[4.53455967,0.02973526,97.22732571],[4.53455998,0.02973705,97.22789951],[4.53456029,0.02973884,97.22845191],[4.53456058,0.02974064,97.22898834],[4.53456088,0.02974243,97.22951425],[4.53456117,0.02974423,97.2300351],[4.53456146,0.02974602,97.23055633],[4.53456175,0.02974782,97.23108327],[4.53456205,0.02974961,97.2316183],[4.53456235,0.02975141,97.23216078],[4.53456265,0.0297532,97.23270993],[4.53456295,0.02975499,97.23326498],[4.53456325,0.02975678,97.23382515],[4.53456355,0.02975858,97.23438968],[4.53456386,0.02976037,97.23495778],[4.53456416,0.02976216,97.23552869],[4.53456447,0.02976395,97.23610162],[4.53456477,0.02976574,97.23667582],[4.53456508,0.02976753,97.23725049],[4.53456538,0.02976932,97.23782488],[4.53456568,0.02977111,97.2383982],[4.53456599,0.0297729,97.23896968],[4.53456629,0.02977469,97.23953856],[4.53456659,0.02977648,97.24010404],[4.53456689,0.02977827,97.24066532],[4.53456718,0.02978006,97.24122156],[4.53456747,0.02978185,97.24177236],[4.53456777,0.02978364,97.24231895],[4.53456806,0.02978544,97.24286298],[4.53456835,0.02978723,97.24340611],[4.53456864,0.02978902,97.24394999],[4.53456892,0.02979081,97.24449628],[4.53456922,0.0297926,97.24504662],[4.53456951,0.0297944,97.24560266],[4.5345698,0.02979619,97.24616607],[4.5345701,0.02979797,97.24673848],[4.5345704,0.02979976,97.24732156],[4.5345707,0.02980155,97.24791694],[4.53457101,0.02980333,97.24852628],[4.53457132,0.02980512,97.24915124],[4.53457163,0.0298069,97.24979344],[4.53457196,0.02980868,97.25045456],[4.53457228,0.02981045,97.25113547],[4.53457262,0.02981223,97.25183406],[4.53457296,0.029814,97.25254742],[4.5345733,0.02981578,97.25327267],[4.53457364,0.02981755,97.25400693],[4.53457399,0.02981932,97.25474731],[4.53457433,0.02982109,97.25549092],[4.53457468,0.02982287,97.25623488],[4.53457503,0.02982464,97.2569763],[4.53457537,0.02982641,97.2577123],[4.53457571,0.02982819,97.25844113],[4.53457605,0.02982996,97.2591656],[4.53457638,0.02983174,97.25988973],[4.53457672,0.02983351,97.26061751],[4.53457706,0.02983529,97.26135294],[4.53457741,0.02983706,97.26210001],[4.53457775,0.02983883,97.26286272],[4.53457811,0.0298406,97.26364492],[4.53457847,0.02984237,97.26444757],[4.53457884,0.02984414,97.26526868],[4.53457921,0.0298459,97.26610617],[4.53457958,0.02984767,97.26695793],[4.53457996,0.02984943,97.26782188],[4.53458035,0.02985119,97.26869592],[4.53458073,0.02985295,97.26957796],[4.53458112,0.02985471,97.2704659],[4.53458151,0.02985647,97.27135766],[4.53458189,0.02985823,97.27225113],[4.53458228,0.02985999,97.27314424],[4.53458267,0.02986175,97.27403488],[4.53458305,0.02986352,97.2749214],[4.53458344,0.02986528,97.27580388],[4.53458382,0.02986704,97.27668285],[4.5345842,0.0298688,97.27755883],[4.53458458,0.02987057,97.27843235],[4.53458495,0.02987233,97.27930394],[4.53458533,0.02987409,97.28017412],[4.53458571,0.02987586,97.28104343],[4.53458608,0.02987762,97.2819124],[4.53458646,0.02987939,97.28278154],[4.53458683,0.02988115,97.2836514],[4.53458721,0.02988292,97.28452249],[4.53458759,0.02988468,97.28539534],[4.53458796,0.02988645,97.28627048],[4.53458834,0.02988821,97.28714843],[4.53458872,0.02988998,97.28802974],[4.5345891,0.02989174,97.28891481],[4.53458947,0.0298935,97.2898037],[4.53458986,0.02989527,97.29069634],[4.53459024,0.02989703,97.29159268],[4.53459062,0.02989879,97.29249266],[4.534591,0.02990056,97.29339622],[4.53459139,0.02990232,97.29430331],[4.53459177,0.02990408,97.29521386],[4.53459216,0.02990584,97.29612782],[4.53459255,0.0299076,97.29704513],[4.53459294,0.02990937,97.29796574],[4.53459332,0.02991113,97.29888958],[4.53459371,0.02991289,97.29981659],[4.5345941,0.02991465,97.30074673],[4.5345945,0.02991641,97.30167994],[4.53459489,0.02991817,97.30261614],[4.53459528,0.02991993,97.3035553],[4.53459567,0.02992169,97.30449734],[4.53459607,0.02992345,97.30544222],[4.53459646,0.02992521,97.30638988],[4.53459686,0.02992697,97.30734025],[4.53459726,0.02992873,97.30829328],[4.53459765,0.02993049,97.30924889],[4.53459805,0.02993225,97.31020694],[4.53459845,0.02993401,97.31116732],[4.53459885,0.02993577,97.31212991],[4.53459925,0.02993753,97.31309458],[4.53459965,0.02993929,97.31406127],[4.53460005,0.02994105,97.31503118],[4.53460045,0.02994281,97.31600678],[4.53460086,0.02994457,97.31699061],[4.53460126,0.02994633,97.3179852],[4.53460168,0.02994808,97.31899309],[4.53460209,0.02994984,97.32001673],[4.53460252,0.02995159,97.32105682],[4.53460295,0.02995334,97.3221123],[4.53460338,0.02995509,97.32318205],[4.53460382,0.02995684,97.32426491],[4.53460426,0.02995859,97.32535976],[4.5346047,0.02996033,97.32646545],[4.53460515,0.02996208,97.32758085],[4.5346056,0.02996383,97.32870482],[4.53460605,0.02996557,97.32983623],[4.53460651,0.02996732,97.33097394],[4.53460696,0.02996906,97.33211681],[4.53460742,0.0299708,97.3332637],[4.53460788,0.02997255,97.33441349],[4.53460834,0.02997429,97.33556503],[4.5346088,0.02997603,97.33671719],[4.53460926,0.02997778,97.33786883],[4.53460972,0.02997952,97.33901882],[4.53461017,0.02998127,97.34016603],[4.53461063,0.02998301,97.34130962],[4.53461109,0.02998476,97.34244999],[4.53461154,0.0299865,97.34358785],[4.53461199,0.02998825,97.34472391],[4.53461245,0.02998999,97.34585888],[4.5346129,0.02999174,97.34699347],[4.53461335,0.02999348,97.34812838],[4.5346138,0.02999523,97.34926433],[4.53461426,0.02999698,97.35040201],[4.53461471,0.02999872,97.35154215],[4.53461517,0.03000047,97.35268544],[4.53461563,0.03000221,97.3538326],[4.53461608,0.03000396,97.35498434],[4.53461654,0.0300057,97.35614135],[4.53461701,0.03000745,97.35730436],[4.53461747,0.03000919,97.35847406],[4.53461794,0.03001093,97.35965117],[4.53461841,0.03001268,97.36083639],[4.53461888,0.03001442,97.36203044],[4.53461935,0.03001616,97.36323381],[4.53461983,0.0300179,97.36444621],[4.53462031,0.03001964,97.36566714],[4.5346208,0.03002138,97.3668961],[4.53462129,0.03002311,97.36813259],[4.53462177,0.03002485,97.3693761],[4.53462227,0.03002659,97.37062615],[4.53462276,0.03002832,97.37188225],[4.53462325,0.03003006,97.37314395],[4.53462375,0.03003179,97.37441078],[4.53462425,0.03003353,97.37568227],[4.53462475,0.03003526,97.37695797],[4.53462525,0.030037,97.37823741],[4.53462575,0.03003873,97.37952012],[4.53462626,0.03004046,97.38080564],[4.53462676,0.0300422,97.38209351],[4.53462727,0.03004393,97.38338327],[4.53462777,0.03004566,97.38467445],[4.53462828,0.03004739,97.38596658],[4.53462879,0.03004913,97.3872592],[4.53462929,0.03005086,97.38855185],[4.5346298,0.03005259,97.38984408],[4.5346303,0.03005432,97.39113567],[4.53463081,0.03005606,97.39242662],[4.53463132,0.03005779,97.39371698],[4.53463182,0.03005952,97.39500677],[4.53463233,0.03006125,97.39629601],[4.53463283,0.03006299,97.39758474],[4.53463334,0.03006472,97.39887298],[4.53463384,0.03006645,97.40016075],[4.53463435,0.03006818,97.4014481],[4.53463485,0.03006992,97.40273503],[4.53463536,0.03007165,97.40402159],[4.53463586,0.03007338,97.40530779],[4.53463636,0.03007511,97.40659367],[4.53463687,0.03007685,97.40787926],[4.53463737,0.03007858,97.40916457],[4.53463788,0.03008031,97.41044964],[4.53463838,0.03008204,97.4117345],[4.53463889,0.03008378,97.41301917],[4.53463939,0.03008551,97.41430369],[4.5346399,0.03008724,97.41558807],[4.5346404,0.03008897,97.41687234],[4.5346409,0.03009071,97.41815654],[4.53464141,0.03009244,97.41944069],[4.53464191,0.03009417,97.42072481],[4.53464242,0.0300959,97.42200895],[4.53464292,0.03009763,97.42329311],[4.53464343,0.03009937,97.42457734],[4.53464393,0.0301011,97.42586164],[4.53464444,0.03010283,97.42714599],[4.53464494,0.03010456,97.42843036],[4.53464545,0.03010629,97.42971473],[4.53464595,0.03010803,97.43099908],[4.53464646,0.03010976,97.43228338],[4.53464696,0.03011149,97.43356762],[4.53464747,0.03011322,97.43485177],[4.53464797,0.03011495,97.43613583],[4.53464848,0.03011669,97.43741976],[4.53464898,0.03011842,97.43870356],[4.53464949,0.03012015,97.43998719],[4.53464999,0.03012188,97.44127065],[4.5346505,0.03012361,97.4425539],[4.534651,0.03012534,97.44383694],[4.53465151,0.03012708,97.44511974],[4.53465202,0.03012881,97.44640229],[4.53465252,0.03013054,97.44768457],[4.53465303,0.03013227,97.44896657],[4.53465353,0.030134,97.45024827],[4.53465404,0.03013573,97.45152968],[4.53465454,0.03013746,97.45281076],[4.53465505,0.0301392,97.45409151],[4.53465555,0.03014093,97.45537192],[4.53465606,0.03014266,97.45665197],[4.53465656,0.03014439,97.45793165],[4.53465707,0.03014612,97.45921095],[4.53465757,0.03014785,97.46048986],[4.53465808,0.03014958,97.46176835],[4.53465858,0.03015132,97.46304643],[4.53465909,0.03015305,97.46432407],[4.53465959,0.03015478,97.46560126],[4.5346601,0.03015651,97.46687799],[4.5346606,0.03015824,97.46815425],[4.5346611,0.03015997,97.46943002],[4.53466161,0.0301617,97.4707053],[4.53466211,0.03016344,97.47198006],[4.53466262,0.03016517,97.4732543],[4.53466312,0.0301669,97.474528],[4.53466363,0.03016863,97.47580116],[4.53466413,0.03017036,97.47707374],[4.53466463,0.03017209,97.47834576],[4.53466514,0.03017382,97.47961719],[4.53466564,0.03017555,97.48088802],[4.53466614,0.03017729,97.48215824],[4.53466665,0.03017902,97.48342784],[4.53466715,0.03018075,97.4846968],[4.53466765,0.03018248,97.48596512],[4.53466816,0.03018421,97.48723278],[4.53466866,0.03018594,97.48849977],[4.53466916,0.03018767,97.48976607],[4.53466967,0.03018941,97.49103168],[4.53467017,0.03019114,97.49229658],[4.53467067,0.03019287,97.49356077],[4.53467117,0.0301946,97.49482422],[4.53467168,0.03019633,97.49608693],[4.53467218,0.03019806,97.49734888],[4.53467268,0.0301998,97.49861007],[4.53467318,0.03020153,97.49987048],[4.53467368,0.03020326,97.50113012],[4.53467418,0.03020499,97.50238898],[4.53467468,0.03020672,97.50364708],[4.53467519,0.03020845,97.50490442],[4.53467569,0.03021019,97.50616101],[4.53467619,0.03021192,97.50741685],[4.53467669,0.03021365,97.50867195],[4.53467719,0.03021538,97.50992631],[4.53467769,0.03021711,97.51117995],[4.53467819,0.03021884,97.51243287],[4.53467869,0.03022058,97.51368507],[4.53467919,0.03022231,97.51493657],[4.53467969,0.03022404,97.51618736],[4.53468019,0.03022577,97.51743746],[4.53468069,0.0302275,97.51868687],[4.53468119,0.03022923,97.51993559],[4.53468169,0.03023097,97.52118364],[4.53468219,0.0302327,97.52243102],[4.53468269,0.03023443,97.52367774],[4.53468318,0.03023616,97.5249238],[4.53468368,0.03023789,97.52616921],[4.53468418,0.03023963,97.52741397],[4.53468468,0.03024136,97.5286581],[4.53468518,0.03024309,97.52990159],[4.53468568,0.03024482,97.53114446],[4.53468618,0.03024655,97.53238672],[4.53468668,0.03024829,97.53362836],[4.53468717,0.03025002,97.53486939],[4.53468767,0.03025175,97.53610983],[4.53468817,0.03025348,97.53734967],[4.53468867,0.03025521,97.53858893],[4.53468917,0.03025694,97.5398276],[4.53468967,0.03025868,97.54106571],[4.53469016,0.03026041,97.54230324],[4.53469066,0.03026214,97.54354022],[4.53469116,0.03026387,97.54477664],[4.53469166,0.0302656,97.54601252],[4.53469216,0.03026734,97.54724785],[4.53469265,0.03026907,97.54848265],[4.53469315,0.0302708,97.54971693],[4.53469365,0.03027253,97.55095068],[4.53469415,0.03027426,97.55218391],[4.53469464,0.030276,97.55341664],[4.53469514,0.03027773,97.55464887],[4.53469564,0.03027946,97.55588059],[4.53469614,0.03028119,97.5571118],[4.53469664,0.03028292,97.55834248],[4.53469713,0.03028465,97.55957259],[4.53469763,0.03028639,97.56080212],[4.53469813,0.03028812,97.56203105],[4.53469863,0.03028985,97.56325935],[4.53469912,0.03029158,97.56448701],[4.53469962,0.03029331,97.565714],[4.53470012,0.03029505,97.56694031],[4.53470062,0.03029678,97.56816595],[4.53470111,0.03029851,97.56939091],[4.53470161,0.03030024,97.57061518],[4.53470211,0.03030198,97.57183878],[4.53470261,0.03030371,97.5730617],[4.5347031,0.03030544,97.57428394],[4.5347036,0.03030717,97.5755055],[4.5347041,0.0303089,97.57672638],[4.53470459,0.03031064,97.57794658],[4.53470509,0.03031237,97.5791661],[4.53470559,0.0303141,97.58038494],[4.53470608,0.03031583,97.58160309],[4.53470658,0.03031756,97.58282057],[4.53470708,0.0303193,97.58403736],[4.53470757,0.03032103,97.58525347],[4.53470807,0.03032276,97.5864689],[4.53470857,0.03032449,97.58768365],[4.53470906,0.03032623,97.58889772],[4.53470956,0.03032796,97.5901111],[4.53471006,0.03032969,97.5913238],[4.53471055,0.03033142,97.59253582],[4.53471105,0.03033315,97.59374715],[4.53471155,0.03033489,97.5949578],[4.53471204,0.03033662,97.59616777],[4.53471254,0.03033835,97.59737705],[4.53471304,0.03034008,97.59858565],[4.53471353,0.03034181,97.59979356],[4.53471403,0.03034355,97.60100079],[4.53471453,0.03034528,97.60220734],[4.53471502,0.03034701,97.6034132],[4.53471552,0.03034874,97.60461838],[4.53471602,0.03035048,97.60582287],[4.53471651,0.03035221,97.60702667],[4.53471701,0.03035394,97.60822979],[4.5347175,0.03035567,97.60943223],[4.534718,0.03035741,97.61063398],[4.5347185,0.03035914,97.61183504],[4.53471899,0.03036087,97.61303542],[4.53471949,0.0303626,97.61423511],[4.53471999,0.03036433,97.61543411],[4.53472048,0.03036607,97.61663243],[4.53472098,0.0303678,97.61783006],[4.53472147,0.03036953,97.61902701],[4.53472197,0.03037126,97.62022327],[4.53472247,0.030373,97.62141884],[4.53472296,0.03037473,97.62261373],[4.53472346,0.03037646,97.62380792],[4.53472396,0.03037819,97.62500144],[4.53472445,0.03037992,97.62619426],[4.53472495,0.03038166,97.6273864],[4.53472544,0.03038339,97.62857785],[4.53472594,0.03038512,97.62976861],[4.53472644,0.03038685,97.63095868],[4.53472693,0.03038858,97.63214807],[4.53472743,0.03039032,97.63333677],[4.53472793,0.03039205,97.63452478],[4.53472842,0.03039378,97.63571211],[4.53472892,0.03039551,97.63689875],[4.53472942,0.03039725,97.6380847],[4.53472991,0.03039898,97.63926996],[4.53473041,0.03040071,97.64045453],[4.53473091,0.03040244,97.64163842],[4.5347314,0.03040417,97.64282162],[4.5347319,0.03040591,97.64400413],[4.5347324,0.03040764,97.64518596],[4.53473289,0.03040937,97.64636709],[4.53473339,0.0304111,97.64754754],[4.53473389,0.03041284,97.6487273],[4.53473438,0.03041457,97.64990638],[4.53473488,0.0304163,97.65108477],[4.53473538,0.03041803,97.65226247],[4.53473587,0.03041976,97.65343948],[4.53469285,0.03043239,97.65343948]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-3,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1004700","id":-4,"type":"none","predecessorId":0,"sOffset":0.0}},{"geometry":{"coordinates":[[[4.53473587,0.03041976,97.65343948],[4.53473538,0.03041803,97.65226247],[4.53473488,0.0304163,97.65108477],[4.53473438,0.03041457,97.64990638],[4.53473389,0.03041284,97.6487273],[4.53473339,0.0304111,97.64754754],[4.53473289,0.03040937,97.64636709],[4.5347324,0.03040764,97.64518596],[4.5347319,0.03040591,97.64400413],[4.5347314,0.03040417,97.64282162],[4.53473091,0.03040244,97.64163842],[4.53473041,0.03040071,97.64045453],[4.53472991,0.03039898,97.63926996],[4.53472942,0.03039725,97.6380847],[4.53472892,0.03039551,97.63689875],[4.53472842,0.03039378,97.63571211],[4.53472793,0.03039205,97.63452478],[4.53472743,0.03039032,97.63333677],[4.53472693,0.03038858,97.63214807],[4.53472644,0.03038685,97.63095868],[4.53472594,0.03038512,97.62976861],[4.53472544,0.03038339,97.62857785],[4.53472495,0.03038166,97.6273864],[4.53472445,0.03037992,97.62619426],[4.53472396,0.03037819,97.62500144],[4.53472346,0.03037646,97.62380792],[4.53472296,0.03037473,97.62261373],[4.53472247,0.030373,97.62141884],[4.53472197,0.03037126,97.62022327],[4.53472147,0.03036953,97.61902701],[4.53472098,0.0303678,97.61783006],[4.53472048,0.03036607,97.61663243],[4.53471999,0.03036433,97.61543411],[4.53471949,0.0303626,97.61423511],[4.53471899,0.03036087,97.61303542],[4.5347185,0.03035914,97.61183504],[4.534718,0.03035741,97.61063398],[4.5347175,0.03035567,97.60943223],[4.53471701,0.03035394,97.60822979],[4.53471651,0.03035221,97.60702667],[4.53471602,0.03035048,97.60582287],[4.53471552,0.03034874,97.60461838],[4.53471502,0.03034701,97.6034132],[4.53471453,0.03034528,97.60220734],[4.53471403,0.03034355,97.60100079],[4.53471353,0.03034181,97.59979356],[4.53471304,0.03034008,97.59858565],[4.53471254,0.03033835,97.59737705],[4.53471204,0.03033662,97.59616777],[4.53471155,0.03033489,97.5949578],[4.53471105,0.03033315,97.59374715],[4.53471055,0.03033142,97.59253582],[4.53471006,0.03032969,97.5913238],[4.53470956,0.03032796,97.5901111],[4.53470906,0.03032623,97.58889772],[4.53470857,0.03032449,97.58768365],[4.53470807,0.03032276,97.5864689],[4.53470757,0.03032103,97.58525347],[4.53470708,0.0303193,97.58403736],[4.53470658,0.03031756,97.58282057],[4.53470608,0.03031583,97.58160309],[4.53470559,0.0303141,97.58038494],[4.53470509,0.03031237,97.5791661],[4.53470459,0.03031064,97.57794658],[4.5347041,0.0303089,97.57672638],[4.5347036,0.03030717,97.5755055],[4.5347031,0.03030544,97.57428394],[4.53470261,0.03030371,97.5730617],[4.53470211,0.03030198,97.57183878],[4.53470161,0.03030024,97.57061518],[4.53470111,0.03029851,97.56939091],[4.53470062,0.03029678,97.56816595],[4.53470012,0.03029505,97.56694031],[4.53469962,0.03029331,97.565714],[4.53469912,0.03029158,97.56448701],[4.53469863,0.03028985,97.56325935],[4.53469813,0.03028812,97.56203105],[4.53469763,0.03028639,97.56080212],[4.53469713,0.03028465,97.55957259],[4.53469664,0.03028292,97.55834248],[4.53469614,0.03028119,97.5571118],[4.53469564,0.03027946,97.55588059],[4.53469514,0.03027773,97.55464887],[4.53469464,0.030276,97.55341664],[4.53469415,0.03027426,97.55218391],[4.53469365,0.03027253,97.55095068],[4.53469315,0.0302708,97.54971693],[4.53469265,0.03026907,97.54848265],[4.53469216,0.03026734,97.54724785],[4.53469166,0.0302656,97.54601252],[4.53469116,0.03026387,97.54477664],[4.53469066,0.03026214,97.54354022],[4.53469016,0.03026041,97.54230324],[4.53468967,0.03025868,97.54106571],[4.53468917,0.03025694,97.5398276],[4.53468867,0.03025521,97.53858893],[4.53468817,0.03025348,97.53734967],[4.53468767,0.03025175,97.53610983],[4.53468717,0.03025002,97.53486939],[4.53468668,0.03024829,97.53362836],[4.53468618,0.03024655,97.53238672],[4.53468568,0.03024482,97.53114446],[4.53468518,0.03024309,97.52990159],[4.53468468,0.03024136,97.5286581],[4.53468418,0.03023963,97.52741397],[4.53468368,0.03023789,97.52616921],[4.53468318,0.03023616,97.5249238],[4.53468269,0.03023443,97.52367774],[4.53468219,0.0302327,97.52243102],[4.53468169,0.03023097,97.52118364],[4.53468119,0.03022923,97.51993559],[4.53468069,0.0302275,97.51868687],[4.53468019,0.03022577,97.51743746],[4.53467969,0.03022404,97.51618736],[4.53467919,0.03022231,97.51493657],[4.53467869,0.03022058,97.51368507],[4.53467819,0.03021884,97.51243287],[4.53467769,0.03021711,97.51117995],[4.53467719,0.03021538,97.50992631],[4.53467669,0.03021365,97.50867195],[4.53467619,0.03021192,97.50741685],[4.53467569,0.03021019,97.50616101],[4.53467519,0.03020845,97.50490442],[4.53467468,0.03020672,97.50364708],[4.53467418,0.03020499,97.50238898],[4.53467368,0.03020326,97.50113012],[4.53467318,0.03020153,97.49987048],[4.53467268,0.0301998,97.49861007],[4.53467218,0.03019806,97.49734888],[4.53467168,0.03019633,97.49608693],[4.53467117,0.0301946,97.49482422],[4.53467067,0.03019287,97.49356077],[4.53467017,0.03019114,97.49229658],[4.53466967,0.03018941,97.49103168],[4.53466916,0.03018767,97.48976607],[4.53466866,0.03018594,97.48849977],[4.53466816,0.03018421,97.48723278],[4.53466765,0.03018248,97.48596512],[4.53466715,0.03018075,97.4846968],[4.53466665,0.03017902,97.48342784],[4.53466614,0.03017729,97.48215824],[4.53466564,0.03017555,97.48088802],[4.53466514,0.03017382,97.47961719],[4.53466463,0.03017209,97.47834576],[4.53466413,0.03017036,97.47707374],[4.53466363,0.03016863,97.47580116],[4.53466312,0.0301669,97.474528],[4.53466262,0.03016517,97.4732543],[4.53466211,0.03016344,97.47198006],[4.53466161,0.0301617,97.4707053],[4.5346611,0.03015997,97.46943002],[4.5346606,0.03015824,97.46815425],[4.5346601,0.03015651,97.46687799],[4.53465959,0.03015478,97.46560126],[4.53465909,0.03015305,97.46432407],[4.53465858,0.03015132,97.46304643],[4.53465808,0.03014958,97.46176835],[4.53465757,0.03014785,97.46048986],[4.53465707,0.03014612,97.45921095],[4.53465656,0.03014439,97.45793165],[4.53465606,0.03014266,97.45665197],[4.53465555,0.03014093,97.45537192],[4.53465505,0.0301392,97.45409151],[4.53465454,0.03013746,97.45281076],[4.53465404,0.03013573,97.45152968],[4.53465353,0.030134,97.45024827],[4.53465303,0.03013227,97.44896657],[4.53465252,0.03013054,97.44768457],[4.53465202,0.03012881,97.44640229],[4.53465151,0.03012708,97.44511974],[4.534651,0.03012534,97.44383694],[4.5346505,0.03012361,97.4425539],[4.53464999,0.03012188,97.44127065],[4.53464949,0.03012015,97.43998719],[4.53464898,0.03011842,97.43870356],[4.53464848,0.03011669,97.43741976],[4.53464797,0.03011495,97.43613583],[4.53464747,0.03011322,97.43485177],[4.53464696,0.03011149,97.43356762],[4.53464646,0.03010976,97.43228338],[4.53464595,0.03010803,97.43099908],[4.53464545,0.03010629,97.42971473],[4.53464494,0.03010456,97.42843036],[4.53464444,0.03010283,97.42714599],[4.53464393,0.0301011,97.42586164],[4.53464343,0.03009937,97.42457734],[4.53464292,0.03009763,97.42329311],[4.53464242,0.0300959,97.42200895],[4.53464191,0.03009417,97.42072481],[4.53464141,0.03009244,97.41944069],[4.5346409,0.03009071,97.41815654],[4.5346404,0.03008897,97.41687234],[4.5346399,0.03008724,97.41558807],[4.53463939,0.03008551,97.41430369],[4.53463889,0.03008378,97.41301917],[4.53463838,0.03008204,97.4117345],[4.53463788,0.03008031,97.41044964],[4.53463737,0.03007858,97.40916457],[4.53463687,0.03007685,97.40787926],[4.53463636,0.03007511,97.40659367],[4.53463586,0.03007338,97.40530779],[4.53463536,0.03007165,97.40402159],[4.53463485,0.03006992,97.40273503],[4.53463435,0.03006818,97.4014481],[4.53463384,0.03006645,97.40016075],[4.53463334,0.03006472,97.39887298],[4.53463283,0.03006299,97.39758474],[4.53463233,0.03006125,97.39629601],[4.53463182,0.03005952,97.39500677],[4.53463132,0.03005779,97.39371698],[4.53463081,0.03005606,97.39242662],[4.5346303,0.03005432,97.39113567],[4.5346298,0.03005259,97.38984408],[4.53462929,0.03005086,97.38855185],[4.53462879,0.03004913,97.3872592],[4.53462828,0.03004739,97.38596658],[4.53462777,0.03004566,97.38467445],[4.53462727,0.03004393,97.38338327],[4.53462676,0.0300422,97.38209351],[4.53462626,0.03004046,97.38080564],[4.53462575,0.03003873,97.37952012],[4.53462525,0.030037,97.37823741],[4.53462475,0.03003526,97.37695797],[4.53462425,0.03003353,97.37568227],[4.53462375,0.03003179,97.37441078],[4.53462325,0.03003006,97.37314395],[4.53462276,0.03002832,97.37188225],[4.53462227,0.03002659,97.37062615],[4.53462177,0.03002485,97.3693761],[4.53462129,0.03002311,97.36813259],[4.5346208,0.03002138,97.3668961],[4.53462031,0.03001964,97.36566714],[4.53461983,0.0300179,97.36444621],[4.53461935,0.03001616,97.36323381],[4.53461888,0.03001442,97.36203044],[4.53461841,0.03001268,97.36083639],[4.53461794,0.03001093,97.35965117],[4.53461747,0.03000919,97.35847406],[4.53461701,0.03000745,97.35730436],[4.53461654,0.0300057,97.35614135],[4.53461608,0.03000396,97.35498434],[4.53461563,0.03000221,97.3538326],[4.53461517,0.03000047,97.35268544],[4.53461471,0.02999872,97.35154215],[4.53461426,0.02999698,97.35040201],[4.5346138,0.02999523,97.34926433],[4.53461335,0.02999348,97.34812838],[4.5346129,0.02999174,97.34699347],[4.53461245,0.02998999,97.34585888],[4.53461199,0.02998825,97.34472391],[4.53461154,0.0299865,97.34358785],[4.53461109,0.02998476,97.34244999],[4.53461063,0.02998301,97.34130962],[4.53461017,0.02998127,97.34016603],[4.53460972,0.02997952,97.33901882],[4.53460926,0.02997778,97.33786883],[4.5346088,0.02997603,97.33671719],[4.53460834,0.02997429,97.33556503],[4.53460788,0.02997255,97.33441349],[4.53460742,0.0299708,97.3332637],[4.53460696,0.02996906,97.33211681],[4.53460651,0.02996732,97.33097394],[4.53460605,0.02996557,97.32983623],[4.5346056,0.02996383,97.32870482],[4.53460515,0.02996208,97.32758085],[4.5346047,0.02996033,97.32646545],[4.53460426,0.02995859,97.32535976],[4.53460382,0.02995684,97.32426491],[4.53460338,0.02995509,97.32318205],[4.53460295,0.02995334,97.3221123],[4.53460252,0.02995159,97.32105682],[4.53460209,0.02994984,97.32001673],[4.53460168,0.02994808,97.31899309],[4.53460126,0.02994633,97.3179852],[4.53460086,0.02994457,97.31699061],[4.53460045,0.02994281,97.31600678],[4.53460005,0.02994105,97.31503118],[4.53459965,0.02993929,97.31406127],[4.53459925,0.02993753,97.31309458],[4.53459885,0.02993577,97.31212991],[4.53459845,0.02993401,97.31116732],[4.53459805,0.02993225,97.31020694],[4.53459765,0.02993049,97.30924889],[4.53459726,0.02992873,97.30829328],[4.53459686,0.02992697,97.30734025],[4.53459646,0.02992521,97.30638988],[4.53459607,0.02992345,97.30544222],[4.53459567,0.02992169,97.30449734],[4.53459528,0.02991993,97.3035553],[4.53459489,0.02991817,97.30261614],[4.5345945,0.02991641,97.30167994],[4.5345941,0.02991465,97.30074673],[4.53459371,0.02991289,97.29981659],[4.53459332,0.02991113,97.29888958],[4.53459294,0.02990937,97.29796574],[4.53459255,0.0299076,97.29704513],[4.53459216,0.02990584,97.29612782],[4.53459177,0.02990408,97.29521386],[4.53459139,0.02990232,97.29430331],[4.534591,0.02990056,97.29339622],[4.53459062,0.02989879,97.29249266],[4.53459024,0.02989703,97.29159268],[4.53458986,0.02989527,97.29069634],[4.53458947,0.0298935,97.2898037],[4.5345891,0.02989174,97.28891481],[4.53458872,0.02988998,97.28802974],[4.53458834,0.02988821,97.28714843],[4.53458796,0.02988645,97.28627048],[4.53458759,0.02988468,97.28539534],[4.53458721,0.02988292,97.28452249],[4.53458683,0.02988115,97.2836514],[4.53458646,0.02987939,97.28278154],[4.53458608,0.02987762,97.2819124],[4.53458571,0.02987586,97.28104343],[4.53458533,0.02987409,97.28017412],[4.53458495,0.02987233,97.27930394],[4.53458458,0.02987057,97.27843235],[4.5345842,0.0298688,97.27755883],[4.53458382,0.02986704,97.27668285],[4.53458344,0.02986528,97.27580388],[4.53458305,0.02986352,97.2749214],[4.53458267,0.02986175,97.27403488],[4.53458228,0.02985999,97.27314424],[4.53458189,0.02985823,97.27225113],[4.53458151,0.02985647,97.27135766],[4.53458112,0.02985471,97.2704659],[4.53458073,0.02985295,97.26957796],[4.53458035,0.02985119,97.26869592],[4.53457996,0.02984943,97.26782188],[4.53457958,0.02984767,97.26695793],[4.53457921,0.0298459,97.26610617],[4.53457884,0.02984414,97.26526868],[4.53457847,0.02984237,97.26444757],[4.53457811,0.0298406,97.26364492],[4.53457775,0.02983883,97.26286272],[4.53457741,0.02983706,97.26210001],[4.53457706,0.02983529,97.26135294],[4.53457672,0.02983351,97.26061751],[4.53457638,0.02983174,97.25988973],[4.53457605,0.02982996,97.2591656],[4.53457571,0.02982819,97.25844113],[4.53457537,0.02982641,97.2577123],[4.53457503,0.02982464,97.2569763],[4.53457468,0.02982287,97.25623488],[4.53457433,0.02982109,97.25549092],[4.53457399,0.02981932,97.25474731],[4.53457364,0.02981755,97.25400693],[4.5345733,0.02981578,97.25327267],[4.53457296,0.029814,97.25254742],[4.53457262,0.02981223,97.25183406],[4.53457228,0.02981045,97.25113547],[4.53457196,0.02980868,97.25045456],[4.53457163,0.0298069,97.24979344],[4.53457132,0.02980512,97.24915124],[4.53457101,0.02980333,97.24852628],[4.5345707,0.02980155,97.24791694],[4.5345704,0.02979976,97.24732156],[4.5345701,0.02979797,97.24673848],[4.5345698,0.02979619,97.24616607],[4.53456951,0.0297944,97.24560266],[4.53456922,0.0297926,97.24504662],[4.53456892,0.02979081,97.24449628],[4.53456864,0.02978902,97.24394999],[4.53456835,0.02978723,97.24340611],[4.53456806,0.02978544,97.24286298],[4.53456777,0.02978364,97.24231895],[4.53456747,0.02978185,97.24177236],[4.53456718,0.02978006,97.24122156],[4.53456689,0.02977827,97.24066532],[4.53456659,0.02977648,97.24010404],[4.53456629,0.02977469,97.23953856],[4.53456599,0.0297729,97.23896968],[4.53456568,0.02977111,97.2383982],[4.53456538,0.02976932,97.23782488],[4.53456508,0.02976753,97.23725049],[4.53456477,0.02976574,97.23667582],[4.53456447,0.02976395,97.23610162],[4.53456416,0.02976216,97.23552869],[4.53456386,0.02976037,97.23495778],[4.53456355,0.02975858,97.23438968],[4.53456325,0.02975678,97.23382515],[4.53456295,0.02975499,97.23326498],[4.53456265,0.0297532,97.23270993],[4.53456235,0.02975141,97.23216078],[4.53456205,0.02974961,97.2316183],[4.53456175,0.02974782,97.23108327],[4.53456146,0.02974602,97.23055633],[4.53456117,0.02974423,97.2300351],[4.53456088,0.02974243,97.22951425],[4.53456058,0.02974064,97.22898834],[4.53456029,0.02973884,97.22845191],[4.53455998,0.02973705,97.22789951],[4.53455967,0.02973526,97.22732571],[4.53455935,0.02973347,97.22672515],[4.53455902,0.02973168,97.22609249],[4.53455868,0.0297299,97.22542431],[4.53455833,0.02972812,97.22472481],[4.53455797,0.02972635,97.22400014],[4.5345576,0.02972457,97.22325641],[4.53455722,0.0297228,97.22249976],[4.53455685,0.02972103,97.22173632],[4.53455647,0.02971926,97.22097222],[4.5345561,0.02971748,97.2202136],[4.53455573,0.02971571,97.21946658],[4.53455536,0.02971394,97.21873549],[4.534555,0.02971216,97.21801761],[4.53455464,0.02971038,97.21730856],[4.53455429,0.0297086,97.21660391],[4.53455393,0.02970682,97.21589927],[4.53455357,0.02970505,97.21519023],[4.53455321,0.02970327,97.21447239],[4.53455284,0.02970149,97.21374133],[4.53455247,0.02969972,97.21299265],[4.53455209,0.02969795,97.21222194],[4.5345517,0.02969618,97.2114263],[4.5345513,0.02969441,97.21060874],[4.5345509,0.02969264,97.20977372],[4.53455049,0.02969088,97.20892573],[4.53455008,0.02968911,97.20806926],[4.53454967,0.02968735,97.20720882],[4.53454926,0.02968559,97.2063489],[4.53454885,0.02968382,97.20549311],[4.53454844,0.02968206,97.20464173],[4.53454804,0.02968029,97.20379422],[4.53454763,0.02967853,97.20295003],[4.53454722,0.02967676,97.20210862],[4.53454682,0.029675,97.20126945],[4.53454642,0.02967323,97.20043198],[4.53454601,0.02967146,97.19959567],[4.53454561,0.0296697,97.19875997],[4.5345452,0.02966793,97.19792435],[4.5345448,0.02966617,97.19708826],[4.5345444,0.0296644,97.19625116],[4.53454399,0.02966263,97.19541251],[4.53454359,0.02966087,97.19457176],[4.53454318,0.0296591,97.19372838],[4.53454277,0.02965733,97.19288182],[4.53454236,0.02965557,97.19203153],[4.53454195,0.0296538,97.19117698],[4.53454154,0.02965204,97.19031762],[4.53454113,0.02965027,97.18945292],[4.53454071,0.02964851,97.18858232],[4.5345403,0.02964675,97.18770528],[4.53453988,0.02964498,97.18682127],[4.53453945,0.02964322,97.18592974],[4.53453903,0.02964146,97.18503014],[4.5345386,0.0296397,97.18412194],[4.53453817,0.02963794,97.18320459],[4.53453774,0.02963618,97.1822779],[4.5345373,0.02963442,97.18134278],[4.53453686,0.02963267,97.18040045],[4.53453642,0.02963091,97.1794521],[4.53453598,0.02962915,97.17849894],[4.53453554,0.0296274,97.17754216],[4.53453509,0.02962565,97.17658298],[4.53453465,0.02962389,97.17562258],[4.53453421,0.02962213,97.17466218],[4.53453376,0.02962038,97.17370298],[4.53453332,0.02961862,97.17274617],[4.53453329,0.02961849,97.17267337],[4.53453514,0.02961795,97.17827241],[4.53453518,0.02961808,97.17834665],[4.53453563,0.02961983,97.17931812],[4.53453607,0.02962159,97.18028495],[4.53453652,0.02962334,97.18124708],[4.53453696,0.0296251,97.18220444],[4.5345374,0.02962685,97.18315699],[4.53453784,0.0296286,97.18410466],[4.53453828,0.02963036,97.18504739],[4.53453871,0.02963212,97.18598514],[4.53453915,0.02963388,97.18691783],[4.53453958,0.02963563,97.18784541],[4.53454002,0.02963739,97.18876783],[4.53454045,0.02963915,97.18968502],[4.53454087,0.02964091,97.19059694],[4.5345413,0.02964267,97.19150357],[4.53454173,0.02964443,97.19240489],[4.53454215,0.02964619,97.1933009],[4.53454257,0.02964796,97.1941916],[4.53454299,0.02964972,97.19507696],[4.53454341,0.02965148,97.19595698],[4.53454383,0.02965324,97.19683165],[4.53454424,0.02965501,97.19770097],[4.53454466,0.02965677,97.19856492],[4.53454507,0.02965853,97.19942348],[4.53454548,0.0296603,97.20027667],[4.53454588,0.02966206,97.20112445],[4.53454629,0.02966383,97.20196683],[4.53454669,0.0296656,97.2028038],[4.5345471,0.02966736,97.20363534],[4.5345475,0.02966913,97.20446144],[4.5345479,0.0296709,97.2052821],[4.53454829,0.02967267,97.20609731],[4.53454869,0.02967444,97.20690706],[4.53454908,0.0296762,97.20771133],[4.53454947,0.02967797,97.20851013],[4.53454986,0.02967974,97.20930343],[4.53455025,0.02968151,97.21009124],[4.53455063,0.02968329,97.21087353],[4.53455102,0.02968506,97.21165031],[4.5345514,0.02968683,97.21242156],[4.53455178,0.0296886,97.21318728],[4.53455216,0.02969038,97.21394744],[4.53455253,0.02969215,97.21470206],[4.53455291,0.02969392,97.2154511],[4.53455328,0.0296957,97.21619458],[4.53455365,0.02969747,97.21693249],[4.53455401,0.02969925,97.21766491],[4.53455438,0.02970102,97.21839195],[4.53455474,0.0297028,97.21911369],[4.53455511,0.02970458,97.21983025],[4.53455547,0.02970636,97.22054171],[4.53455582,0.02970813,97.22124818],[4.53455618,0.02970991,97.22194975],[4.53455654,0.02971169,97.22264652],[4.53455689,0.02971347,97.22333858],[4.53455724,0.02971525,97.22402605],[4.53455759,0.02971703,97.224709],[4.53455794,0.02971881,97.22538755],[4.53455828,0.02972059,97.22606178],[4.53455863,0.02972238,97.22673181],[4.53455897,0.02972416,97.22739771],[4.53455931,0.02972594,97.2280596],[4.53455965,0.02972772,97.22871757],[4.53455999,0.0297295,97.22937171],[4.53456033,0.02973129,97.23002213],[4.53456066,0.02973307,97.23066892],[4.534561,0.02973486,97.23131218],[4.53456133,0.02973664,97.23195201],[4.53456166,0.02973842,97.23258852],[4.53456199,0.02974021,97.23322191],[4.53456232,0.02974199,97.23385239],[4.53456264,0.02974378,97.23448016],[4.53456297,0.02974556,97.23510545],[4.5345633,0.02974735,97.23572845],[4.53456362,0.02974914,97.23634939],[4.53456394,0.02975092,97.23696846],[4.53456426,0.02975271,97.23758589],[4.53456459,0.02975449,97.23820189],[4.53456491,0.02975628,97.23881665],[4.53456523,0.02975807,97.23943041],[4.53456555,0.02975985,97.24004335],[4.53456586,0.02976164,97.2406557],[4.53456618,0.02976343,97.24126767],[4.5345665,0.02976521,97.24187946],[4.53456682,0.029767,97.24249129],[4.53456713,0.02976878,97.24310336],[4.53456745,0.02977057,97.24371589],[4.53456777,0.02977236,97.24432909],[4.53456808,0.02977414,97.24494316],[4.5345684,0.02977593,97.24555831],[4.53456872,0.02977771,97.2461747],[4.53456903,0.0297795,97.24679249],[4.53456935,0.02978128,97.24741184],[4.53456966,0.02978307,97.24803289],[4.53456998,0.02978485,97.24865577],[4.5345703,0.02978664,97.2492806],[4.53457061,0.02978842,97.24990751],[4.53457093,0.0297902,97.25053664],[4.53457125,0.02979199,97.2511681],[4.53457157,0.02979377,97.25180203],[4.53457189,0.02979555,97.25243855],[4.5345722,0.02979734,97.25307779],[4.53457252,0.02979912,97.25371988],[4.53457284,0.0298009,97.25436494],[4.53457316,0.02980268,97.25501311],[4.53457348,0.02980446,97.2556645],[4.5345738,0.02980624,97.25631925],[4.53457413,0.02980802,97.25697749],[4.53457445,0.0298098,97.25763934],[4.53457477,0.02981158,97.25830493],[4.53457509,0.02981336,97.25897438],[4.53457542,0.02981514,97.25964782],[4.53457574,0.02981692,97.26032538],[4.53457607,0.0298187,97.26100719],[4.5345764,0.02982047,97.26169337],[4.53457673,0.02982225,97.26238405],[4.53457706,0.02982403,97.26307936],[4.53457739,0.02982581,97.26377942],[4.53457772,0.02982758,97.26448436],[4.53457805,0.02982936,97.26519431],[4.53457839,0.02983114,97.26590939],[4.53457872,0.02983291,97.26662973],[4.53457906,0.02983469,97.26735546],[4.5345794,0.02983646,97.2680867],[4.53457974,0.02983824,97.26882358],[4.53458008,0.02984001,97.26956621],[4.53458043,0.02984179,97.2703146],[4.53458077,0.02984356,97.27106876],[4.53458112,0.02984533,97.27182866],[4.53458146,0.0298471,97.27259431],[4.53458181,0.02984888,97.27336569],[4.53458216,0.02985065,97.27414279],[4.53458252,0.02985242,97.2749256],[4.53458287,0.02985419,97.27571412],[4.53458322,0.02985596,97.27650834],[4.53458358,0.02985773,97.27730824],[4.53458394,0.0298595,97.27811382],[4.5345843,0.02986127,97.27892507],[4.53458466,0.02986304,97.27974198],[4.53458502,0.02986481,97.28056453],[4.53458539,0.02986657,97.28139273],[4.53458575,0.02986834,97.28222657],[4.53458612,0.02987011,97.28306604],[4.53458649,0.02987187,97.28391115],[4.53458686,0.02987364,97.28476188],[4.53458723,0.02987541,97.28561823],[4.53458761,0.02987717,97.28648021],[4.53458798,0.02987894,97.28734779],[4.53458836,0.0298807,97.28822099],[4.53458874,0.02988246,97.28909979],[4.53458912,0.02988423,97.2899842],[4.5345895,0.02988599,97.2908742],[4.53458988,0.02988775,97.2917698],[4.53459027,0.02988952,97.29267098],[4.53459065,0.02989128,97.29357775],[4.53459104,0.02989304,97.29449011],[4.53459143,0.0298948,97.29540804],[4.53459182,0.02989656,97.29633154],[4.53459221,0.02989832,97.29726061],[4.53459261,0.02990008,97.29819524],[4.534593,0.02990184,97.29913544],[4.5345934,0.0299036,97.30008119],[4.5345938,0.02990536,97.3010325],[4.5345942,0.02990712,97.30198935],[4.5345946,0.02990887,97.30295175],[4.53459501,0.02991063,97.30391969],[4.53459541,0.02991239,97.30489317],[4.53459582,0.02991415,97.30587218],[4.53459623,0.0299159,97.30685672],[4.53459664,0.02991766,97.30784679],[4.53459705,0.02991941,97.30884238],[4.53459746,0.02992117,97.30984349],[4.53459788,0.02992292,97.31085011],[4.53459829,0.02992468,97.31186225],[4.53459871,0.02992643,97.31287989],[4.53459913,0.02992818,97.31390303],[4.53459955,0.02992994,97.31493165],[4.53459998,0.02993169,97.31596566],[4.5346004,0.02993344,97.317005],[4.53460083,0.02993519,97.31804961],[4.53460126,0.02993694,97.31909942],[4.53460169,0.02993869,97.32015435],[4.53460212,0.02994044,97.32121434],[4.53460255,0.02994219,97.32227932],[4.53460298,0.02994394,97.32334922],[4.53460342,0.02994569,97.32442397],[4.53460386,0.02994744,97.32550352],[4.53460429,0.02994919,97.32658777],[4.53460473,0.02995094,97.32767668],[4.53460517,0.02995269,97.32877017],[4.53460562,0.02995443,97.32986817],[4.53460606,0.02995618,97.33097061],[4.53460651,0.02995793,97.33207743],[4.53460695,0.02995967,97.33318856],[4.5346074,0.02996142,97.33430393],[4.53460785,0.02996317,97.33542347],[4.5346083,0.02996491,97.33654711],[4.53460875,0.02996666,97.33767479],[4.5346092,0.0299684,97.33880643],[4.53460966,0.02997015,97.33994198],[4.53461011,0.02997189,97.34108136],[4.53461057,0.02997364,97.34222449],[4.53461103,0.02997538,97.34337133],[4.53461149,0.02997712,97.34452179],[4.53461195,0.02997887,97.34567581],[4.53461241,0.02998061,97.34683332],[4.53461287,0.02998235,97.34799426],[4.53461333,0.0299841,97.34915855],[4.5346138,0.02998584,97.35032612],[4.53461426,0.02998758,97.35149692],[4.53461473,0.02998932,97.35267087],[4.53461519,0.02999107,97.3538479],[4.53461566,0.02999281,97.35502795],[4.53461613,0.02999455,97.35621094],[4.5346166,0.02999629,97.35739682],[4.53461707,0.02999803,97.3585855],[4.53461754,0.02999977,97.35977694],[4.53461802,0.03000151,97.36097104],[4.53461849,0.03000325,97.36216776],[4.53461896,0.03000499,97.36336702],[4.53461944,0.03000673,97.36456875],[4.53461992,0.03000847,97.36577289],[4.53462039,0.03001021,97.36697936],[4.53462087,0.03001195,97.36818811],[4.53462135,0.03001369,97.36939906],[4.53462183,0.03001543,97.37061214],[4.53462231,0.03001717,97.37182729],[4.53462279,0.03001891,97.37304444],[4.53462327,0.03002065,97.37426351],[4.53462375,0.03002239,97.37548445],[4.53462423,0.03002413,97.37670718],[4.53462471,0.03002587,97.37793163],[4.5346252,0.03002761,97.37915776],[4.53462568,0.03002934,97.38038556],[4.53462617,0.03003108,97.38161497],[4.53462665,0.03003282,97.38284597],[4.53462714,0.03003456,97.38407853],[4.53462762,0.0300363,97.38531262],[4.53462811,0.03003804,97.3865482],[4.5346286,0.03003977,97.38778523],[4.53462908,0.03004151,97.3890237],[4.53462957,0.03004325,97.39026356],[4.53463006,0.03004499,97.39150479],[4.53463055,0.03004673,97.39274735],[4.53463104,0.03004846,97.3939912],[4.53463153,0.0300502,97.39523632],[4.53463202,0.03005194,97.39648268],[4.53463251,0.03005367,97.39773024],[4.534633,0.03005541,97.39897897],[4.5346335,0.03005715,97.40022884],[4.53463399,0.03005888,97.40147981],[4.53463448,0.03006062,97.40273186],[4.53463497,0.03006235,97.40398495],[4.53463547,0.03006409,97.40523904],[4.53463596,0.03006583,97.40649412],[4.53463646,0.03006756,97.40775013],[4.53463695,0.0300693,97.40900706],[4.53463745,0.03007103,97.41026487],[4.53463794,0.03007277,97.41152353],[4.53463844,0.0300745,97.41278301],[4.53463893,0.03007624,97.41404326],[4.53463943,0.03007797,97.41530427],[4.53463993,0.03007971,97.416566],[4.53464042,0.03008144,97.41782841],[4.53464092,0.03008318,97.41909148],[4.53464142,0.03008491,97.42035518],[4.53464192,0.03008665,97.42161946],[4.53464241,0.03008838,97.4228843],[4.53464291,0.03009011,97.42414967],[4.53464341,0.03009185,97.42541553],[4.53464391,0.03009358,97.42668185],[4.53464441,0.03009532,97.4279486],[4.53464491,0.03009705,97.42921575],[4.5346454,0.03009878,97.43048327],[4.5346459,0.03010052,97.43175111],[4.5346464,0.03010225,97.43301926],[4.5346469,0.03010398,97.43428768],[4.5346474,0.03010572,97.43555636],[4.5346479,0.03010745,97.43682527],[4.5346484,0.03010918,97.4380944],[4.5346489,0.03011092,97.43936374],[4.5346494,0.03011265,97.44063327],[4.5346499,0.03011438,97.44190298],[4.5346504,0.03011612,97.44317286],[4.5346509,0.03011785,97.44444287],[4.53465141,0.03011958,97.44571302],[4.53465191,0.03012132,97.44698328],[4.53465241,0.03012305,97.44825364],[4.53465291,0.03012478,97.44952409],[4.53465341,0.03012651,97.45079461],[4.53465391,0.03012825,97.45206518],[4.53465441,0.03012998,97.4533358],[4.53465491,0.03013171,97.45460647],[4.53465541,0.03013345,97.45587716],[4.53465592,0.03013518,97.45714787],[4.53465642,0.03013691,97.4584186],[4.53465692,0.03013864,97.45968934],[4.53465742,0.03014038,97.46096007],[4.53465792,0.03014211,97.46223078],[4.53465842,0.03014384,97.46350148],[4.53465893,0.03014557,97.46477215],[4.53465943,0.0301473,97.46604277],[4.53465993,0.03014904,97.46731335],[4.53466043,0.03015077,97.46858388],[4.53466094,0.0301525,97.46985434],[4.53466144,0.03015423,97.47112472],[4.53466194,0.03015596,97.47239503],[4.53466244,0.0301577,97.47366524],[4.53466294,0.03015943,97.47493535],[4.53466345,0.03016116,97.47620536],[4.53466395,0.03016289,97.47747524],[4.53466445,0.03016462,97.478745],[4.53466496,0.03016636,97.48001463],[4.53466546,0.03016809,97.48128412],[4.53466596,0.03016982,97.48255345],[4.53466646,0.03017155,97.48382263],[4.53466697,0.03017328,97.48509163],[4.53466747,0.03017501,97.48636047],[4.53466797,0.03017675,97.48762912],[4.53466847,0.03017848,97.48889759],[4.53466898,0.03018021,97.49016585],[4.53466948,0.03018194,97.49143391],[4.53466998,0.03018367,97.49270176],[4.53467049,0.0301854,97.49396938],[4.53467099,0.03018713,97.49523678],[4.53467149,0.03018887,97.49650394],[4.534672,0.0301906,97.49777085],[4.5346725,0.03019233,97.49903752],[4.534673,0.03019406,97.50030392],[4.5346735,0.03019579,97.50157005],[4.53467401,0.03019752,97.50283591],[4.53467451,0.03019925,97.50410149],[4.53467501,0.03020098,97.50536677],[4.53467552,0.03020272,97.50663178],[4.53467602,0.03020445,97.50789651],[4.53467652,0.03020618,97.50916096],[4.53467703,0.03020791,97.51042514],[4.53467753,0.03020964,97.51168905],[4.53467803,0.03021137,97.5129527],[4.53467854,0.0302131,97.51421608],[4.53467904,0.03021483,97.51547921],[4.53467954,0.03021656,97.51674208],[4.53468005,0.03021829,97.51800471],[4.53468055,0.03022003,97.51926709],[4.53468105,0.03022176,97.52052922],[4.53468156,0.03022349,97.52179112],[4.53468206,0.03022522,97.52305278],[4.53468256,0.03022695,97.5243142],[4.53468307,0.03022868,97.5255754],[4.53468357,0.03023041,97.52683637],[4.53468407,0.03023214,97.52809713],[4.53468458,0.03023387,97.52935766],[4.53468508,0.0302356,97.53061798],[4.53468558,0.03023733,97.53187809],[4.53468609,0.03023906,97.533138],[4.53468659,0.03024079,97.5343977],[4.5346871,0.03024252,97.5356572],[4.5346876,0.03024425,97.53691651],[4.5346881,0.03024598,97.53817562],[4.53468861,0.03024771,97.53943455],[4.53468911,0.03024944,97.54069329],[4.53468962,0.03025117,97.54195185],[4.53469012,0.03025291,97.54321023],[4.53469062,0.03025464,97.54446844],[4.53469113,0.03025637,97.54572648],[4.53469163,0.0302581,97.54698436],[4.53469214,0.03025983,97.54824207],[4.53469264,0.03026156,97.54949962],[4.53469315,0.03026329,97.55075702],[4.53469365,0.03026502,97.55201427],[4.53469416,0.03026675,97.55327137],[4.53469466,0.03026847,97.55452833],[4.53469517,0.0302702,97.55578515],[4.53469567,0.03027193,97.55704183],[4.53469618,0.03027366,97.55829838],[4.53469668,0.03027539,97.55955481],[4.53469719,0.03027712,97.5608111],[4.53469769,0.03027885,97.56206728],[4.5346982,0.03028058,97.56332331],[4.5346987,0.03028231,97.56457917],[4.53469921,0.03028404,97.56583483],[4.53469972,0.03028577,97.56709028],[4.53470022,0.0302875,97.56834549],[4.53470073,0.03028923,97.56960043],[4.53470123,0.03029096,97.57085509],[4.53470174,0.03029269,97.57210943],[4.53470225,0.03029442,97.57336343],[4.53470275,0.03029615,97.57461707],[4.53470326,0.03029788,97.57587032],[4.53470377,0.03029961,97.57712316],[4.53470427,0.03030134,97.57837556],[4.53470478,0.03030307,97.57962751],[4.53470529,0.0303048,97.58087897],[4.53470579,0.03030653,97.58212992],[4.5347063,0.03030825,97.58338034],[4.5347068,0.03030998,97.5846302],[4.53470731,0.03031171,97.58587949],[4.53470782,0.03031344,97.58712816],[4.53470832,0.03031517,97.58837621],[4.53470883,0.0303169,97.5896236],[4.53470934,0.03031863,97.59087031],[4.53470984,0.03032036,97.59211632],[4.53471035,0.03032209,97.5933616],[4.53471085,0.03032382,97.59460613],[4.53471136,0.03032555,97.59584988],[4.53471187,0.03032728,97.59709283],[4.53471237,0.03032901,97.59833495],[4.53471288,0.03033074,97.59957622],[4.53471338,0.03033247,97.60081662],[4.53471389,0.0303342,97.60205612],[4.53471439,0.03033593,97.60329469],[4.5347149,0.03033766,97.60453232],[4.53471541,0.03033939,97.60576897],[4.53471591,0.03034112,97.60700462],[4.53471642,0.03034285,97.60823925],[4.53471692,0.03034458,97.60947283],[4.53471742,0.0303463,97.61070534],[4.53471793,0.03034803,97.61193676],[4.53471843,0.03034976,97.61316705],[4.53471894,0.03035149,97.61439619],[4.53471944,0.03035322,97.61562416],[4.53471995,0.03035495,97.61685094],[4.53472045,0.03035669,97.61807649],[4.53472095,0.03035842,97.6193008],[4.53472146,0.03036015,97.62052384],[4.53472196,0.03036188,97.62174558],[4.53472246,0.03036361,97.622966],[4.53472296,0.03036534,97.62418507],[4.53472347,0.03036707,97.62540278],[4.53472397,0.0303688,97.62661908],[4.53472447,0.03037053,97.62783397],[4.53472497,0.03037226,97.62904741],[4.53472547,0.03037399,97.63025938],[4.53472597,0.03037572,97.63146985],[4.53472647,0.03037745,97.6326788],[4.53472697,0.03037918,97.6338862],[4.53472747,0.03038091,97.63509203],[4.53472797,0.03038265,97.63629627],[4.53472847,0.03038438,97.63749888],[4.53472897,0.03038611,97.63869984],[4.53472947,0.03038784,97.63989913],[4.53472997,0.03038957,97.64109672],[4.53473047,0.0303913,97.64229259],[4.53473097,0.03039303,97.6434867],[4.53473146,0.03039477,97.64467905],[4.53473196,0.0303965,97.64586959],[4.53473246,0.03039823,97.6470583],[4.53473296,0.03039996,97.64824516],[4.53473345,0.03040169,97.64943015],[4.53473395,0.03040343,97.65061323],[4.53473444,0.03040516,97.65179438],[4.53473494,0.03040689,97.65297358],[4.53473543,0.03040863,97.6541508],[4.53473593,0.03041036,97.65532601],[4.53473642,0.03041209,97.65649919],[4.53473692,0.03041382,97.65767031],[4.53473741,0.03041556,97.65883935],[4.5347379,0.03041729,97.66000628],[4.53473839,0.03041902,97.66117107],[4.53473587,0.03041976,97.65343948]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004700","id":-3,"type":"shoulder","predecessorId":0,"sOffset":0.0}},{"geometry":{"coordinates":[[[4.53473839,0.03041902,97.66117107],[4.5347379,0.03041729,97.66000628],[4.53473741,0.03041556,97.65883935],[4.53473692,0.03041382,97.65767031],[4.53473642,0.03041209,97.65649919],[4.53473593,0.03041036,97.65532601],[4.53473543,0.03040863,97.6541508],[4.53473494,0.03040689,97.65297358],[4.53473444,0.03040516,97.65179438],[4.53473395,0.03040343,97.65061323],[4.53473345,0.03040169,97.64943015],[4.53473296,0.03039996,97.64824516],[4.53473246,0.03039823,97.6470583],[4.53473196,0.0303965,97.64586959],[4.53473146,0.03039477,97.64467905],[4.53473097,0.03039303,97.6434867],[4.53473047,0.0303913,97.64229259],[4.53472997,0.03038957,97.64109672],[4.53472947,0.03038784,97.63989913],[4.53472897,0.03038611,97.63869984],[4.53472847,0.03038438,97.63749888],[4.53472797,0.03038265,97.63629627],[4.53472747,0.03038091,97.63509203],[4.53472697,0.03037918,97.6338862],[4.53472647,0.03037745,97.6326788],[4.53472597,0.03037572,97.63146985],[4.53472547,0.03037399,97.63025938],[4.53472497,0.03037226,97.62904741],[4.53472447,0.03037053,97.62783397],[4.53472397,0.0303688,97.62661908],[4.53472347,0.03036707,97.62540278],[4.53472296,0.03036534,97.62418507],[4.53472246,0.03036361,97.622966],[4.53472196,0.03036188,97.62174558],[4.53472146,0.03036015,97.62052384],[4.53472095,0.03035842,97.6193008],[4.53472045,0.03035669,97.61807649],[4.53471995,0.03035495,97.61685094],[4.53471944,0.03035322,97.61562416],[4.53471894,0.03035149,97.61439619],[4.53471843,0.03034976,97.61316705],[4.53471793,0.03034803,97.61193676],[4.53471742,0.0303463,97.61070534],[4.53471692,0.03034458,97.60947283],[4.53471642,0.03034285,97.60823925],[4.53471591,0.03034112,97.60700462],[4.53471541,0.03033939,97.60576897],[4.5347149,0.03033766,97.60453232],[4.53471439,0.03033593,97.60329469],[4.53471389,0.0303342,97.60205612],[4.53471338,0.03033247,97.60081662],[4.53471288,0.03033074,97.59957622],[4.53471237,0.03032901,97.59833495],[4.53471187,0.03032728,97.59709283],[4.53471136,0.03032555,97.59584988],[4.53471085,0.03032382,97.59460613],[4.53471035,0.03032209,97.5933616],[4.53470984,0.03032036,97.59211632],[4.53470934,0.03031863,97.59087031],[4.53470883,0.0303169,97.5896236],[4.53470832,0.03031517,97.58837621],[4.53470782,0.03031344,97.58712816],[4.53470731,0.03031171,97.58587949],[4.5347068,0.03030998,97.5846302],[4.5347063,0.03030825,97.58338034],[4.53470579,0.03030653,97.58212992],[4.53470529,0.0303048,97.58087897],[4.53470478,0.03030307,97.57962751],[4.53470427,0.03030134,97.57837556],[4.53470377,0.03029961,97.57712316],[4.53470326,0.03029788,97.57587032],[4.53470275,0.03029615,97.57461707],[4.53470225,0.03029442,97.57336343],[4.53470174,0.03029269,97.57210943],[4.53470123,0.03029096,97.57085509],[4.53470073,0.03028923,97.56960043],[4.53470022,0.0302875,97.56834549],[4.53469972,0.03028577,97.56709028],[4.53469921,0.03028404,97.56583483],[4.5346987,0.03028231,97.56457917],[4.5346982,0.03028058,97.56332331],[4.53469769,0.03027885,97.56206728],[4.53469719,0.03027712,97.5608111],[4.53469668,0.03027539,97.55955481],[4.53469618,0.03027366,97.55829838],[4.53469567,0.03027193,97.55704183],[4.53469517,0.0302702,97.55578515],[4.53469466,0.03026847,97.55452833],[4.53469416,0.03026675,97.55327137],[4.53469365,0.03026502,97.55201427],[4.53469315,0.03026329,97.55075702],[4.53469264,0.03026156,97.54949962],[4.53469214,0.03025983,97.54824207],[4.53469163,0.0302581,97.54698436],[4.53469113,0.03025637,97.54572648],[4.53469062,0.03025464,97.54446844],[4.53469012,0.03025291,97.54321023],[4.53468962,0.03025117,97.54195185],[4.53468911,0.03024944,97.54069329],[4.53468861,0.03024771,97.53943455],[4.5346881,0.03024598,97.53817562],[4.5346876,0.03024425,97.53691651],[4.5346871,0.03024252,97.5356572],[4.53468659,0.03024079,97.5343977],[4.53468609,0.03023906,97.533138],[4.53468558,0.03023733,97.53187809],[4.53468508,0.0302356,97.53061798],[4.53468458,0.03023387,97.52935766],[4.53468407,0.03023214,97.52809713],[4.53468357,0.03023041,97.52683637],[4.53468307,0.03022868,97.5255754],[4.53468256,0.03022695,97.5243142],[4.53468206,0.03022522,97.52305278],[4.53468156,0.03022349,97.52179112],[4.53468105,0.03022176,97.52052922],[4.53468055,0.03022003,97.51926709],[4.53468005,0.03021829,97.51800471],[4.53467954,0.03021656,97.51674208],[4.53467904,0.03021483,97.51547921],[4.53467854,0.0302131,97.51421608],[4.53467803,0.03021137,97.5129527],[4.53467753,0.03020964,97.51168905],[4.53467703,0.03020791,97.51042514],[4.53467652,0.03020618,97.50916096],[4.53467602,0.03020445,97.50789651],[4.53467552,0.03020272,97.50663178],[4.53467501,0.03020098,97.50536677],[4.53467451,0.03019925,97.50410149],[4.53467401,0.03019752,97.50283591],[4.5346735,0.03019579,97.50157005],[4.534673,0.03019406,97.50030392],[4.5346725,0.03019233,97.49903752],[4.534672,0.0301906,97.49777085],[4.53467149,0.03018887,97.49650394],[4.53467099,0.03018713,97.49523678],[4.53467049,0.0301854,97.49396938],[4.53466998,0.03018367,97.49270176],[4.53466948,0.03018194,97.49143391],[4.53466898,0.03018021,97.49016585],[4.53466847,0.03017848,97.48889759],[4.53466797,0.03017675,97.48762912],[4.53466747,0.03017501,97.48636047],[4.53466697,0.03017328,97.48509163],[4.53466646,0.03017155,97.48382263],[4.53466596,0.03016982,97.48255345],[4.53466546,0.03016809,97.48128412],[4.53466496,0.03016636,97.48001463],[4.53466445,0.03016462,97.478745],[4.53466395,0.03016289,97.47747524],[4.53466345,0.03016116,97.47620536],[4.53466294,0.03015943,97.47493535],[4.53466244,0.0301577,97.47366524],[4.53466194,0.03015596,97.47239503],[4.53466144,0.03015423,97.47112472],[4.53466094,0.0301525,97.46985434],[4.53466043,0.03015077,97.46858388],[4.53465993,0.03014904,97.46731335],[4.53465943,0.0301473,97.46604277],[4.53465893,0.03014557,97.46477215],[4.53465842,0.03014384,97.46350148],[4.53465792,0.03014211,97.46223078],[4.53465742,0.03014038,97.46096007],[4.53465692,0.03013864,97.45968934],[4.53465642,0.03013691,97.4584186],[4.53465592,0.03013518,97.45714787],[4.53465541,0.03013345,97.45587716],[4.53465491,0.03013171,97.45460647],[4.53465441,0.03012998,97.4533358],[4.53465391,0.03012825,97.45206518],[4.53465341,0.03012651,97.45079461],[4.53465291,0.03012478,97.44952409],[4.53465241,0.03012305,97.44825364],[4.53465191,0.03012132,97.44698328],[4.53465141,0.03011958,97.44571302],[4.5346509,0.03011785,97.44444287],[4.5346504,0.03011612,97.44317286],[4.5346499,0.03011438,97.44190298],[4.5346494,0.03011265,97.44063327],[4.5346489,0.03011092,97.43936374],[4.5346484,0.03010918,97.4380944],[4.5346479,0.03010745,97.43682527],[4.5346474,0.03010572,97.43555636],[4.5346469,0.03010398,97.43428768],[4.5346464,0.03010225,97.43301926],[4.5346459,0.03010052,97.43175111],[4.5346454,0.03009878,97.43048327],[4.53464491,0.03009705,97.42921575],[4.53464441,0.03009532,97.4279486],[4.53464391,0.03009358,97.42668185],[4.53464341,0.03009185,97.42541553],[4.53464291,0.03009011,97.42414967],[4.53464241,0.03008838,97.4228843],[4.53464192,0.03008665,97.42161946],[4.53464142,0.03008491,97.42035518],[4.53464092,0.03008318,97.41909148],[4.53464042,0.03008144,97.41782841],[4.53463993,0.03007971,97.416566],[4.53463943,0.03007797,97.41530427],[4.53463893,0.03007624,97.41404326],[4.53463844,0.0300745,97.41278301],[4.53463794,0.03007277,97.41152353],[4.53463745,0.03007103,97.41026487],[4.53463695,0.0300693,97.40900706],[4.53463646,0.03006756,97.40775013],[4.53463596,0.03006583,97.40649412],[4.53463547,0.03006409,97.40523904],[4.53463497,0.03006235,97.40398495],[4.53463448,0.03006062,97.40273186],[4.53463399,0.03005888,97.40147981],[4.5346335,0.03005715,97.40022884],[4.534633,0.03005541,97.39897897],[4.53463251,0.03005367,97.39773024],[4.53463202,0.03005194,97.39648268],[4.53463153,0.0300502,97.39523632],[4.53463104,0.03004846,97.3939912],[4.53463055,0.03004673,97.39274735],[4.53463006,0.03004499,97.39150479],[4.53462957,0.03004325,97.39026356],[4.53462908,0.03004151,97.3890237],[4.5346286,0.03003977,97.38778523],[4.53462811,0.03003804,97.3865482],[4.53462762,0.0300363,97.38531262],[4.53462714,0.03003456,97.38407853],[4.53462665,0.03003282,97.38284597],[4.53462617,0.03003108,97.38161497],[4.53462568,0.03002934,97.38038556],[4.5346252,0.03002761,97.37915776],[4.53462471,0.03002587,97.37793163],[4.53462423,0.03002413,97.37670718],[4.53462375,0.03002239,97.37548445],[4.53462327,0.03002065,97.37426351],[4.53462279,0.03001891,97.37304444],[4.53462231,0.03001717,97.37182729],[4.53462183,0.03001543,97.37061214],[4.53462135,0.03001369,97.36939906],[4.53462087,0.03001195,97.36818811],[4.53462039,0.03001021,97.36697936],[4.53461992,0.03000847,97.36577289],[4.53461944,0.03000673,97.36456875],[4.53461896,0.03000499,97.36336702],[4.53461849,0.03000325,97.36216776],[4.53461802,0.03000151,97.36097104],[4.53461754,0.02999977,97.35977694],[4.53461707,0.02999803,97.3585855],[4.5346166,0.02999629,97.35739682],[4.53461613,0.02999455,97.35621094],[4.53461566,0.02999281,97.35502795],[4.53461519,0.02999107,97.3538479],[4.53461473,0.02998932,97.35267087],[4.53461426,0.02998758,97.35149692],[4.5346138,0.02998584,97.35032612],[4.53461333,0.0299841,97.34915855],[4.53461287,0.02998235,97.34799426],[4.53461241,0.02998061,97.34683332],[4.53461195,0.02997887,97.34567581],[4.53461149,0.02997712,97.34452179],[4.53461103,0.02997538,97.34337133],[4.53461057,0.02997364,97.34222449],[4.53461011,0.02997189,97.34108136],[4.53460966,0.02997015,97.33994198],[4.5346092,0.0299684,97.33880643],[4.53460875,0.02996666,97.33767479],[4.5346083,0.02996491,97.33654711],[4.53460785,0.02996317,97.33542347],[4.5346074,0.02996142,97.33430393],[4.53460695,0.02995967,97.33318856],[4.53460651,0.02995793,97.33207743],[4.53460606,0.02995618,97.33097061],[4.53460562,0.02995443,97.32986817],[4.53460517,0.02995269,97.32877017],[4.53460473,0.02995094,97.32767668],[4.53460429,0.02994919,97.32658777],[4.53460386,0.02994744,97.32550352],[4.53460342,0.02994569,97.32442397],[4.53460298,0.02994394,97.32334922],[4.53460255,0.02994219,97.32227932],[4.53460212,0.02994044,97.32121434],[4.53460169,0.02993869,97.32015435],[4.53460126,0.02993694,97.31909942],[4.53460083,0.02993519,97.31804961],[4.5346004,0.02993344,97.317005],[4.53459998,0.02993169,97.31596566],[4.53459955,0.02992994,97.31493165],[4.53459913,0.02992818,97.31390303],[4.53459871,0.02992643,97.31287989],[4.53459829,0.02992468,97.31186225],[4.53459788,0.02992292,97.31085011],[4.53459746,0.02992117,97.30984349],[4.53459705,0.02991941,97.30884238],[4.53459664,0.02991766,97.30784679],[4.53459623,0.0299159,97.30685672],[4.53459582,0.02991415,97.30587218],[4.53459541,0.02991239,97.30489317],[4.53459501,0.02991063,97.30391969],[4.5345946,0.02990887,97.30295175],[4.5345942,0.02990712,97.30198935],[4.5345938,0.02990536,97.3010325],[4.5345934,0.0299036,97.30008119],[4.534593,0.02990184,97.29913544],[4.53459261,0.02990008,97.29819524],[4.53459221,0.02989832,97.29726061],[4.53459182,0.02989656,97.29633154],[4.53459143,0.0298948,97.29540804],[4.53459104,0.02989304,97.29449011],[4.53459065,0.02989128,97.29357775],[4.53459027,0.02988952,97.29267098],[4.53458988,0.02988775,97.2917698],[4.5345895,0.02988599,97.2908742],[4.53458912,0.02988423,97.2899842],[4.53458874,0.02988246,97.28909979],[4.53458836,0.0298807,97.28822099],[4.53458798,0.02987894,97.28734779],[4.53458761,0.02987717,97.28648021],[4.53458723,0.02987541,97.28561823],[4.53458686,0.02987364,97.28476188],[4.53458649,0.02987187,97.28391115],[4.53458612,0.02987011,97.28306604],[4.53458575,0.02986834,97.28222657],[4.53458539,0.02986657,97.28139273],[4.53458502,0.02986481,97.28056453],[4.53458466,0.02986304,97.27974198],[4.5345843,0.02986127,97.27892507],[4.53458394,0.0298595,97.27811382],[4.53458358,0.02985773,97.27730824],[4.53458322,0.02985596,97.27650834],[4.53458287,0.02985419,97.27571412],[4.53458252,0.02985242,97.2749256],[4.53458216,0.02985065,97.27414279],[4.53458181,0.02984888,97.27336569],[4.53458146,0.0298471,97.27259431],[4.53458112,0.02984533,97.27182866],[4.53458077,0.02984356,97.27106876],[4.53458043,0.02984179,97.2703146],[4.53458008,0.02984001,97.26956621],[4.53457974,0.02983824,97.26882358],[4.5345794,0.02983646,97.2680867],[4.53457906,0.02983469,97.26735546],[4.53457872,0.02983291,97.26662973],[4.53457839,0.02983114,97.26590939],[4.53457805,0.02982936,97.26519431],[4.53457772,0.02982758,97.26448436],[4.53457739,0.02982581,97.26377942],[4.53457706,0.02982403,97.26307936],[4.53457673,0.02982225,97.26238405],[4.5345764,0.02982047,97.26169337],[4.53457607,0.0298187,97.26100719],[4.53457574,0.02981692,97.26032538],[4.53457542,0.02981514,97.25964782],[4.53457509,0.02981336,97.25897438],[4.53457477,0.02981158,97.25830493],[4.53457445,0.0298098,97.25763934],[4.53457413,0.02980802,97.25697749],[4.5345738,0.02980624,97.25631925],[4.53457348,0.02980446,97.2556645],[4.53457316,0.02980268,97.25501311],[4.53457284,0.0298009,97.25436494],[4.53457252,0.02979912,97.25371988],[4.5345722,0.02979734,97.25307779],[4.53457189,0.02979555,97.25243855],[4.53457157,0.02979377,97.25180203],[4.53457125,0.02979199,97.2511681],[4.53457093,0.0297902,97.25053664],[4.53457061,0.02978842,97.24990751],[4.5345703,0.02978664,97.2492806],[4.53456998,0.02978485,97.24865577],[4.53456966,0.02978307,97.24803289],[4.53456935,0.02978128,97.24741184],[4.53456903,0.0297795,97.24679249],[4.53456872,0.02977771,97.2461747],[4.5345684,0.02977593,97.24555831],[4.53456808,0.02977414,97.24494316],[4.53456777,0.02977236,97.24432909],[4.53456745,0.02977057,97.24371589],[4.53456713,0.02976878,97.24310336],[4.53456682,0.029767,97.24249129],[4.5345665,0.02976521,97.24187946],[4.53456618,0.02976343,97.24126767],[4.53456586,0.02976164,97.2406557],[4.53456555,0.02975985,97.24004335],[4.53456523,0.02975807,97.23943041],[4.53456491,0.02975628,97.23881665],[4.53456459,0.02975449,97.23820189],[4.53456426,0.02975271,97.23758589],[4.53456394,0.02975092,97.23696846],[4.53456362,0.02974914,97.23634939],[4.5345633,0.02974735,97.23572845],[4.53456297,0.02974556,97.23510545],[4.53456264,0.02974378,97.23448016],[4.53456232,0.02974199,97.23385239],[4.53456199,0.02974021,97.23322191],[4.53456166,0.02973842,97.23258852],[4.53456133,0.02973664,97.23195201],[4.534561,0.02973486,97.23131218],[4.53456066,0.02973307,97.23066892],[4.53456033,0.02973129,97.23002213],[4.53455999,0.0297295,97.22937171],[4.53455965,0.02972772,97.22871757],[4.53455931,0.02972594,97.2280596],[4.53455897,0.02972416,97.22739771],[4.53455863,0.02972238,97.22673181],[4.53455828,0.02972059,97.22606178],[4.53455794,0.02971881,97.22538755],[4.53455759,0.02971703,97.224709],[4.53455724,0.02971525,97.22402605],[4.53455689,0.02971347,97.22333858],[4.53455654,0.02971169,97.22264652],[4.53455618,0.02970991,97.22194975],[4.53455582,0.02970813,97.22124818],[4.53455547,0.02970636,97.22054171],[4.53455511,0.02970458,97.21983025],[4.53455474,0.0297028,97.21911369],[4.53455438,0.02970102,97.21839195],[4.53455401,0.02969925,97.21766491],[4.53455365,0.02969747,97.21693249],[4.53455328,0.0296957,97.21619458],[4.53455291,0.02969392,97.2154511],[4.53455253,0.02969215,97.21470206],[4.53455216,0.02969038,97.21394744],[4.53455178,0.0296886,97.21318728],[4.5345514,0.02968683,97.21242156],[4.53455102,0.02968506,97.21165031],[4.53455063,0.02968329,97.21087353],[4.53455025,0.02968151,97.21009124],[4.53454986,0.02967974,97.20930343],[4.53454947,0.02967797,97.20851013],[4.53454908,0.0296762,97.20771133],[4.53454869,0.02967444,97.20690706],[4.53454829,0.02967267,97.20609731],[4.5345479,0.0296709,97.2052821],[4.5345475,0.02966913,97.20446144],[4.5345471,0.02966736,97.20363534],[4.53454669,0.0296656,97.2028038],[4.53454629,0.02966383,97.20196683],[4.53454588,0.02966206,97.20112445],[4.53454548,0.0296603,97.20027667],[4.53454507,0.02965853,97.19942348],[4.53454466,0.02965677,97.19856492],[4.53454424,0.02965501,97.19770097],[4.53454383,0.02965324,97.19683165],[4.53454341,0.02965148,97.19595698],[4.53454299,0.02964972,97.19507696],[4.53454257,0.02964796,97.1941916],[4.53454215,0.02964619,97.1933009],[4.53454173,0.02964443,97.19240489],[4.5345413,0.02964267,97.19150357],[4.53454087,0.02964091,97.19059694],[4.53454045,0.02963915,97.18968502],[4.53454002,0.02963739,97.18876783],[4.53453958,0.02963563,97.18784541],[4.53453915,0.02963388,97.18691783],[4.53453871,0.02963212,97.18598514],[4.53453828,0.02963036,97.18504739],[4.53453784,0.0296286,97.18410466],[4.5345374,0.02962685,97.18315699],[4.53453696,0.0296251,97.18220444],[4.53453652,0.02962334,97.18124708],[4.53453607,0.02962159,97.18028495],[4.53453563,0.02961983,97.17931812],[4.53453518,0.02961808,97.17834665],[4.53453514,0.02961795,97.17827241],[4.53453514,0.02961795,97.17827241],[4.53453518,0.02961808,97.17836606],[4.53453572,0.02961981,97.17959506],[4.53453625,0.02962153,97.18082455],[4.53453678,0.02962326,97.18205444],[4.53453732,0.02962499,97.18328466],[4.53453785,0.02962672,97.1845151],[4.53453838,0.02962844,97.18574569],[4.53453892,0.02963017,97.18697635],[4.53453945,0.0296319,97.18820697],[4.53453998,0.02963363,97.18943749],[4.53454052,0.02963536,97.19066781],[4.53454105,0.02963709,97.19189784],[4.53454159,0.02963881,97.19312751],[4.53454212,0.02964054,97.19435672],[4.53454265,0.02964227,97.19558545],[4.53454319,0.029644,97.19681364],[4.53454372,0.02964573,97.19804127],[4.53454426,0.02964745,97.19926828],[4.53454479,0.02964918,97.20049466],[4.53454532,0.02965091,97.20172035],[4.53454585,0.02965264,97.20294532],[4.53454639,0.02965437,97.20416954],[4.53454692,0.02965609,97.20539296],[4.53454745,0.02965782,97.20661555],[4.53454798,0.02965955,97.20783727],[4.53454851,0.02966128,97.20905808],[4.53454905,0.029663,97.21027795],[4.53454958,0.02966473,97.21149683],[4.53455011,0.02966646,97.2127147],[4.53455064,0.02966819,97.2139315],[4.53455117,0.02966992,97.21514721],[4.53455169,0.02967164,97.21636179],[4.53455222,0.02967337,97.2175752],[4.53455275,0.0296751,97.2187874],[4.53455328,0.02967683,97.21999836],[4.53455381,0.02967855,97.22120803],[4.53455433,0.02968028,97.22241638],[4.53455486,0.02968201,97.22362338],[4.53455538,0.02968374,97.22482898],[4.53455591,0.02968547,97.22603315],[4.53455643,0.02968719,97.22723585],[4.53455696,0.02968892,97.22843704],[4.53455748,0.02969065,97.22963668],[4.534558,0.02969238,97.23083475],[4.53455853,0.02969411,97.23203119],[4.53455905,0.02969584,97.233226],[4.53455957,0.02969757,97.23441922],[4.53456009,0.02969929,97.23561092],[4.53456061,0.02970102,97.23680118],[4.53456112,0.02970275,97.23799006],[4.53456164,0.02970448,97.23917763],[4.53456216,0.02970621,97.24036396],[4.53456268,0.02970794,97.24154912],[4.53456319,0.02970967,97.24273319],[4.53456371,0.0297114,97.24391623],[4.53456422,0.02971313,97.24509831],[4.53456474,0.02971486,97.2462795],[4.53456525,0.02971659,97.24745987],[4.53456577,0.02971832,97.24863949],[4.53456628,0.02972005,97.24981843],[4.53456679,0.02972178,97.25099677],[4.53456731,0.02972351,97.25217456],[4.53456782,0.02972524,97.25335188],[4.53456833,0.02972697,97.2545288],[4.53456884,0.0297287,97.25570539],[4.53456935,0.02973043,97.25688172],[4.53456987,0.02973216,97.25805786],[4.53457038,0.02973388,97.25923387],[4.53457089,0.02973561,97.26040983],[4.5345714,0.02973734,97.26158581],[4.53457191,0.02973907,97.26276187],[4.53457242,0.0297408,97.26393809],[4.53457293,0.02974253,97.26511454],[4.53457343,0.02974426,97.26629128],[4.53457394,0.02974599,97.26746838],[4.53457445,0.02974772,97.26864592],[4.53457496,0.02974945,97.26982397],[4.53457547,0.02975118,97.27100258],[4.53457598,0.02975291,97.27218184],[4.53457649,0.02975464,97.27336181],[4.53457699,0.02975637,97.27454256],[4.5345775,0.0297581,97.27572416],[4.53457801,0.02975983,97.27690669],[4.53457852,0.02976156,97.2780902],[4.53457903,0.02976328,97.27927477],[4.53457954,0.02976501,97.28046047],[4.53458004,0.02976674,97.28164736],[4.53458055,0.02976847,97.28283552],[4.53458106,0.0297702,97.28402502],[4.53458157,0.02977193,97.28521592],[4.53458208,0.02977365,97.28640824],[4.53458259,0.02977538,97.28760199],[4.53458309,0.02977711,97.2887972],[4.5345836,0.02977884,97.28999387],[4.53458411,0.02978057,97.29119198],[4.53458462,0.02978229,97.29239152],[4.53458513,0.02978402,97.29359248],[4.53458564,0.02978575,97.29479485],[4.53458615,0.02978747,97.29599861],[4.53458666,0.0297892,97.29720375],[4.53458717,0.02979093,97.29841026],[4.53458767,0.02979266,97.29961812],[4.53458818,0.02979438,97.30082733],[4.53458869,0.02979611,97.30203787],[4.5345892,0.02979783,97.30324972],[4.53458971,0.02979956,97.30446288],[4.53459022,0.02980129,97.30567733],[4.53459073,0.02980301,97.30689307],[4.53459124,0.02980474,97.30811006],[4.53459174,0.02980646,97.30932832],[4.53459225,0.02980819,97.31054781],[4.53459276,0.02980992,97.31176853],[4.53459327,0.02981164,97.31299047],[4.53459378,0.02981337,97.31421361],[4.53459429,0.0298151,97.31543794],[4.5345948,0.02981682,97.31666345],[4.5345953,0.02981855,97.31789013],[4.53459581,0.02982028,97.31911796],[4.53459632,0.029822,97.32034693],[4.53459683,0.02982373,97.32157702],[4.53459734,0.02982546,97.32280824],[4.53459785,0.02982718,97.32404055],[4.53459835,0.02982891,97.32527395],[4.53459886,0.02983064,97.32650843],[4.53459937,0.02983236,97.32774398],[4.53459988,0.02983409,97.32898057],[4.53460039,0.02983582,97.33021821],[4.53460089,0.02983755,97.33145687],[4.5346014,0.02983927,97.33269655],[4.53460191,0.029841,97.33393722],[4.53460242,0.02984273,97.33517889],[4.53460292,0.02984445,97.33642153],[4.53460343,0.02984618,97.33766514],[4.53460394,0.02984791,97.33890969],[4.53460445,0.02984964,97.34015518],[4.53460495,0.02985136,97.3414016],[4.53460546,0.02985309,97.34264893],[4.53460597,0.02985482,97.34389717],[4.53460648,0.02985655,97.34514629],[4.53460698,0.02985827,97.34639628],[4.53460749,0.02986,97.34764714],[4.534608,0.02986173,97.34889886],[4.53460851,0.02986346,97.35015142],[4.53460901,0.02986519,97.35140483],[4.53460952,0.02986691,97.35265908],[4.53461003,0.02986864,97.35391415],[4.53461053,0.02987037,97.35517004],[4.53461104,0.0298721,97.35642674],[4.53461155,0.02987383,97.35768425],[4.53461205,0.02987555,97.35894256],[4.53461256,0.02987728,97.36020165],[4.53461307,0.02987901,97.36146153],[4.53461357,0.02988074,97.36272218],[4.53461408,0.02988247,97.3639836],[4.53461459,0.0298842,97.36524577],[4.53461509,0.02988592,97.3665087],[4.5346156,0.02988765,97.36777238],[4.53461611,0.02988938,97.36903679],[4.53461661,0.02989111,97.37030193],[4.53461712,0.02989284,97.37156779],[4.53461763,0.02989457,97.37283436],[4.53461813,0.0298963,97.37410165],[4.53461864,0.02989802,97.37536963],[4.53461915,0.02989975,97.3766383],[4.53461965,0.02990148,97.37790766],[4.53462016,0.02990321,97.3791777],[4.53462067,0.02990494,97.38044841],[4.53462117,0.02990667,97.38171978],[4.53462168,0.0299084,97.38299181],[4.53462218,0.02991013,97.38426449],[4.53462269,0.02991186,97.38553781],[4.5346232,0.02991358,97.38681177],[4.5346237,0.02991531,97.38808636],[4.53462421,0.02991704,97.38936156],[4.53462472,0.02991877,97.39063738],[4.53462522,0.0299205,97.39191381],[4.53462573,0.02992223,97.39319083],[4.53462623,0.02992396,97.39446845],[4.53462674,0.02992569,97.39574665],[4.53462725,0.02992742,97.39702543],[4.53462775,0.02992915,97.39830478],[4.53462826,0.02993088,97.3995847],[4.53462877,0.02993261,97.40086517],[4.53462927,0.02993434,97.40214619],[4.53462978,0.02993607,97.40342775],[4.53463028,0.0299378,97.40470984],[4.53463079,0.02993952,97.40599247],[4.5346313,0.02994125,97.40727561],[4.5346318,0.02994298,97.40855927],[4.53463231,0.02994471,97.40984344],[4.53463281,0.02994644,97.4111281],[4.53463332,0.02994817,97.41241326],[4.53463383,0.0299499,97.4136989],[4.53463433,0.02995163,97.41498502],[4.53463484,0.02995336,97.4162716],[4.53463535,0.02995509,97.41755866],[4.53463585,0.02995682,97.41884617],[4.53463636,0.02995855,97.42013412],[4.53463687,0.02996028,97.42142252],[4.53463737,0.02996201,97.42271136],[4.53463788,0.02996374,97.42400062],[4.53463838,0.02996547,97.42529031],[4.53463889,0.0299672,97.4265804],[4.5346394,0.02996893,97.42787091],[4.5346399,0.02997066,97.42916181],[4.53464041,0.02997239,97.4304531],[4.53464092,0.02997412,97.43174478],[4.53464142,0.02997585,97.43303684],[4.53464193,0.02997758,97.43432927],[4.53464244,0.02997931,97.43562206],[4.53464294,0.02998104,97.43691521],[4.53464345,0.02998277,97.43820871],[4.53464396,0.0299845,97.43950255],[4.53464446,0.02998623,97.44079672],[4.53464497,0.02998796,97.44209122],[4.53464548,0.0299897,97.44338605],[4.53464599,0.02999143,97.44468119],[4.53464649,0.02999316,97.44597663],[4.534647,0.02999489,97.44727238],[4.53464751,0.02999662,97.44856841],[4.53464801,0.02999835,97.44986473],[4.53464852,0.03000008,97.45116133],[4.53464903,0.03000181,97.45245821],[4.53464954,0.03000354,97.45375534],[4.53465004,0.03000527,97.45505273],[4.53465055,0.030007,97.45635038],[4.53465106,0.03000873,97.45764826],[4.53465157,0.03001046,97.45894638],[4.53465207,0.03001219,97.46024472],[4.53465258,0.03001392,97.46154329],[4.53465309,0.03001565,97.46284205],[4.5346536,0.03001738,97.46414102],[4.5346541,0.03001911,97.46544018],[4.53465461,0.03002084,97.46673952],[4.53465512,0.03002258,97.46803903],[4.53465563,0.03002431,97.4693387],[4.53465614,0.03002604,97.47063852],[4.53465665,0.03002777,97.47193849],[4.53465715,0.0300295,97.4732386],[4.53465766,0.03003123,97.47453883],[4.53465817,0.03003296,97.47583918],[4.53465868,0.03003469,97.47713963],[4.53465919,0.03003642,97.47844019],[4.5346597,0.03003815,97.47974084],[4.5346602,0.03003988,97.48104156],[4.53466071,0.03004161,97.48234236],[4.53466122,0.03004334,97.48364323],[4.53466173,0.03004507,97.48494414],[4.53466224,0.0300468,97.48624511],[4.53466275,0.03004853,97.48754611],[4.53466326,0.03005027,97.48884713],[4.53466377,0.030052,97.49014818],[4.53466427,0.03005373,97.49144923],[4.53466478,0.03005546,97.49275028],[4.53466529,0.03005719,97.49405133],[4.5346658,0.03005892,97.49535236],[4.53466631,0.03006065,97.49665336],[4.53466682,0.03006238,97.49795432],[4.53466733,0.03006411,97.49925524],[4.53466784,0.03006584,97.5005561],[4.53466835,0.03006757,97.50185691],[4.53466885,0.0300693,97.50315764],[4.53466936,0.03007103,97.50445829],[4.53466987,0.03007276,97.50575884],[4.53467038,0.03007449,97.5070593],[4.53467089,0.03007622,97.50835966],[4.5346714,0.03007795,97.50965989],[4.53467191,0.03007968,97.51096],[4.53467242,0.03008141,97.51225997],[4.53467293,0.03008314,97.5135598],[4.53467343,0.03008487,97.51485948],[4.53467394,0.0300866,97.51615899],[4.53467445,0.03008833,97.51745834],[4.53467496,0.03009006,97.5187575],[4.53467547,0.03009179,97.52005647],[4.53467598,0.03009352,97.52135525],[4.53467649,0.03009525,97.52265382],[4.534677,0.03009698,97.52395217],[4.5346775,0.03009871,97.52525029],[4.53467801,0.03010044,97.52654818],[4.53467852,0.03010217,97.52784583],[4.53467903,0.0301039,97.52914323],[4.53467954,0.03010563,97.53044036],[4.53468005,0.03010736,97.53173722],[4.53468055,0.03010909,97.53303381],[4.53468106,0.03011082,97.5343301],[4.53468157,0.03011255,97.5356261],[4.53468208,0.03011428,97.53692179],[4.53468259,0.03011602,97.53821716],[4.5346831,0.03011775,97.53951221],[4.5346836,0.03011948,97.54080693],[4.53468411,0.03012121,97.54210131],[4.53468462,0.03012294,97.54339536],[4.53468513,0.03012467,97.54468907],[4.53468563,0.0301264,97.54598244],[4.53468614,0.03012813,97.54727547],[4.53468665,0.03012986,97.54856816],[4.53468716,0.03013159,97.54986049],[4.53468766,0.03013332,97.55115248],[4.53468817,0.03013505,97.55244411],[4.53468868,0.03013678,97.55373538],[4.53468919,0.03013851,97.5550263],[4.53468969,0.03014024,97.55631686],[4.5346902,0.03014197,97.55760706],[4.53469071,0.0301437,97.55889689],[4.53469121,0.03014543,97.56018636],[4.53469172,0.03014716,97.56147545],[4.53469223,0.03014889,97.56276417],[4.53469273,0.03015062,97.56405252],[4.53469324,0.03015235,97.56534049],[4.53469375,0.03015408,97.56662808],[4.53469425,0.03015581,97.56791529],[4.53469476,0.03015754,97.56920212],[4.53469526,0.03015928,97.57048855],[4.53469577,0.03016101,97.5717746],[4.53469628,0.03016274,97.57306026],[4.53469678,0.03016447,97.57434553],[4.53469729,0.0301662,97.57563041],[4.53469779,0.03016793,97.57691489],[4.5346983,0.03016966,97.57819897],[4.53469881,0.03017139,97.57948266],[4.53469931,0.03017312,97.58076595],[4.53469982,0.03017485,97.58204883],[4.53470032,0.03017658,97.58333132],[4.53470083,0.03017831,97.5846134],[4.53470133,0.03018004,97.58589507],[4.53470184,0.03018177,97.58717634],[4.53470234,0.0301835,97.5884572],[4.53470285,0.03018524,97.58973764],[4.53470335,0.03018697,97.59101768],[4.53470386,0.0301887,97.5922973],[4.53470436,0.03019043,97.59357651],[4.53470487,0.03019216,97.5948553],[4.53470537,0.03019389,97.59613367],[4.53470588,0.03019562,97.59741162],[4.53470638,0.03019735,97.59868915],[4.53470689,0.03019908,97.59996625],[4.53470739,0.03020081,97.60124294],[4.5347079,0.03020254,97.60251919],[4.5347084,0.03020427,97.60379502],[4.53470891,0.030206,97.60507041],[4.53470941,0.03020774,97.60634538],[4.53470991,0.03020947,97.60761991],[4.53471042,0.0302112,97.60889401],[4.53471092,0.03021293,97.61016767],[4.53471143,0.03021466,97.6114409],[4.53471193,0.03021639,97.61271368],[4.53471243,0.03021812,97.61398602],[4.53471294,0.03021985,97.61525793],[4.53471344,0.03022158,97.61652938],[4.53471394,0.03022331,97.61780039],[4.53471445,0.03022505,97.61907096],[4.53471495,0.03022678,97.62034107],[4.53471545,0.03022851,97.62161074],[4.53471596,0.03023024,97.62287995],[4.53471646,0.03023197,97.62414871],[4.53471696,0.0302337,97.62541701],[4.53471747,0.03023543,97.62668485],[4.53471797,0.03023716,97.62795224],[4.53471847,0.03023889,97.62921917],[4.53471898,0.03024062,97.63048563],[4.53471948,0.03024236,97.63175163],[4.53471998,0.03024409,97.63301717],[4.53472048,0.03024582,97.63428224],[4.53472099,0.03024755,97.63554684],[4.53472149,0.03024928,97.63681097],[4.53472199,0.03025101,97.63807463],[4.53472249,0.03025274,97.63933782],[4.534723,0.03025447,97.64060053],[4.5347235,0.03025621,97.64186276],[4.534724,0.03025794,97.64312452],[4.5347245,0.03025967,97.6443858],[4.534725,0.0302614,97.64564659],[4.53472551,0.03026313,97.64690691],[4.53472601,0.03026486,97.64816673],[4.53472651,0.03026659,97.64942608],[4.53472701,0.03026832,97.65068493],[4.53472751,0.03027006,97.6519433],[4.53472801,0.03027179,97.65320117],[4.53472852,0.03027352,97.65445856],[4.53472902,0.03027525,97.65571544],[4.53472952,0.03027698,97.65697184],[4.53473002,0.03027871,97.65822773],[4.53473052,0.03028044,97.65948313],[4.53473102,0.03028218,97.66073802],[4.53473152,0.03028391,97.66199242],[4.53473203,0.03028564,97.66324631],[4.53473253,0.03028737,97.66449969],[4.53473303,0.0302891,97.66575257],[4.53473353,0.03029083,97.66700494],[4.53473403,0.03029256,97.6682568],[4.53473453,0.0302943,97.66950815],[4.53473503,0.03029603,97.67075898],[4.53473553,0.03029776,97.6720093],[4.53473603,0.03029949,97.6732591],[4.53473653,0.03030122,97.67450839],[4.53473703,0.03030295,97.67575715],[4.53473754,0.03030469,97.67700539],[4.53473804,0.03030642,97.67825312],[4.53473854,0.03030815,97.67950031],[4.53473904,0.03030988,97.68074698],[4.53473954,0.03031161,97.68199313],[4.53474004,0.03031334,97.68323874],[4.53474054,0.03031508,97.68448382],[4.53474104,0.03031681,97.68572837],[4.53474154,0.03031854,97.68697239],[4.53474204,0.03032027,97.68821587],[4.53474254,0.030322,97.68945881],[4.53474304,0.03032374,97.69070122],[4.53474354,0.03032547,97.69194308],[4.53474404,0.0303272,97.69318441],[4.53474454,0.03032893,97.69442519],[4.53474504,0.03033066,97.69566542],[4.53474554,0.03033239,97.69690511],[4.53474604,0.03033413,97.69814425],[4.53474654,0.03033586,97.69938284],[4.53474704,0.03033759,97.70062088],[4.53474754,0.03033932,97.70185836],[4.53474804,0.03034105,97.7030953],[4.53474854,0.03034279,97.70433167],[4.53474904,0.03034452,97.70556749],[4.53474954,0.03034625,97.70680275],[4.53475004,0.03034798,97.70803745],[4.53475054,0.03034971,97.70927159],[4.53475104,0.03035144,97.71050516],[4.53475154,0.03035318,97.71173817],[4.53475204,0.03035491,97.71297061],[4.53475254,0.03035664,97.71420248],[4.53475304,0.03035837,97.71543379],[4.53475354,0.0303601,97.71666452],[4.53475404,0.03036184,97.71789468],[4.53475454,0.03036357,97.71912426],[4.53475504,0.0303653,97.72035327],[4.53475554,0.03036703,97.7215817],[4.53475604,0.03036876,97.72280956],[4.53475653,0.0303705,97.72403683],[4.53475703,0.03037223,97.72526352],[4.53475753,0.03037396,97.72648963],[4.53475803,0.03037569,97.72771515],[4.53475853,0.03037742,97.72894009],[4.53475903,0.03037916,97.73016443],[4.53475953,0.03038089,97.73138819],[4.53476003,0.03038262,97.73261136],[4.53476053,0.03038435,97.73383393],[4.53476103,0.03038608,97.73505591],[4.53476153,0.03038782,97.7362773],[4.53476203,0.03038955,97.73749809],[4.53476253,0.03039128,97.73871828],[4.53476303,0.03039301,97.73993787],[4.53476353,0.03039474,97.74115686],[4.53476403,0.03039648,97.74237524],[4.53476452,0.03039821,97.74359303],[4.53476502,0.03039994,97.7448102],[4.53476552,0.03040167,97.74602677],[4.53476602,0.0304034,97.74724273],[4.53476652,0.03040514,97.74845808],[4.53476702,0.03040687,97.74967282],[4.53476752,0.0304086,97.75088695],[4.53476802,0.03041033,97.75210046],[4.53473839,0.03041902,97.66117107]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004700","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"entry","predecessorId":0,"sOffset":0.0}},{"geometry":{"coordinates":[[[4.53476802,0.03041033,97.75210046],[4.53476752,0.0304086,97.75088695],[4.53476702,0.03040687,97.74967282],[4.53476652,0.03040514,97.74845808],[4.53476602,0.0304034,97.74724273],[4.53476552,0.03040167,97.74602677],[4.53476502,0.03039994,97.7448102],[4.53476452,0.03039821,97.74359303],[4.53476403,0.03039648,97.74237524],[4.53476353,0.03039474,97.74115686],[4.53476303,0.03039301,97.73993787],[4.53476253,0.03039128,97.73871828],[4.53476203,0.03038955,97.73749809],[4.53476153,0.03038782,97.7362773],[4.53476103,0.03038608,97.73505591],[4.53476053,0.03038435,97.73383393],[4.53476003,0.03038262,97.73261136],[4.53475953,0.03038089,97.73138819],[4.53475903,0.03037916,97.73016443],[4.53475853,0.03037742,97.72894009],[4.53475803,0.03037569,97.72771515],[4.53475753,0.03037396,97.72648963],[4.53475703,0.03037223,97.72526352],[4.53475653,0.0303705,97.72403683],[4.53475604,0.03036876,97.72280956],[4.53475554,0.03036703,97.7215817],[4.53475504,0.0303653,97.72035327],[4.53475454,0.03036357,97.71912426],[4.53475404,0.03036184,97.71789468],[4.53475354,0.0303601,97.71666452],[4.53475304,0.03035837,97.71543379],[4.53475254,0.03035664,97.71420248],[4.53475204,0.03035491,97.71297061],[4.53475154,0.03035318,97.71173817],[4.53475104,0.03035144,97.71050516],[4.53475054,0.03034971,97.70927159],[4.53475004,0.03034798,97.70803745],[4.53474954,0.03034625,97.70680275],[4.53474904,0.03034452,97.70556749],[4.53474854,0.03034279,97.70433167],[4.53474804,0.03034105,97.7030953],[4.53474754,0.03033932,97.70185836],[4.53474704,0.03033759,97.70062088],[4.53474654,0.03033586,97.69938284],[4.53474604,0.03033413,97.69814425],[4.53474554,0.03033239,97.69690511],[4.53474504,0.03033066,97.69566542],[4.53474454,0.03032893,97.69442519],[4.53474404,0.0303272,97.69318441],[4.53474354,0.03032547,97.69194308],[4.53474304,0.03032374,97.69070122],[4.53474254,0.030322,97.68945881],[4.53474204,0.03032027,97.68821587],[4.53474154,0.03031854,97.68697239],[4.53474104,0.03031681,97.68572837],[4.53474054,0.03031508,97.68448382],[4.53474004,0.03031334,97.68323874],[4.53473954,0.03031161,97.68199313],[4.53473904,0.03030988,97.68074698],[4.53473854,0.03030815,97.67950031],[4.53473804,0.03030642,97.67825312],[4.53473754,0.03030469,97.67700539],[4.53473703,0.03030295,97.67575715],[4.53473653,0.03030122,97.67450839],[4.53473603,0.03029949,97.6732591],[4.53473553,0.03029776,97.6720093],[4.53473503,0.03029603,97.67075898],[4.53473453,0.0302943,97.66950815],[4.53473403,0.03029256,97.6682568],[4.53473353,0.03029083,97.66700494],[4.53473303,0.0302891,97.66575257],[4.53473253,0.03028737,97.66449969],[4.53473203,0.03028564,97.66324631],[4.53473152,0.03028391,97.66199242],[4.53473102,0.03028218,97.66073802],[4.53473052,0.03028044,97.65948313],[4.53473002,0.03027871,97.65822773],[4.53472952,0.03027698,97.65697184],[4.53472902,0.03027525,97.65571544],[4.53472852,0.03027352,97.65445856],[4.53472801,0.03027179,97.65320117],[4.53472751,0.03027006,97.6519433],[4.53472701,0.03026832,97.65068493],[4.53472651,0.03026659,97.64942608],[4.53472601,0.03026486,97.64816673],[4.53472551,0.03026313,97.64690691],[4.534725,0.0302614,97.64564659],[4.5347245,0.03025967,97.6443858],[4.534724,0.03025794,97.64312452],[4.5347235,0.03025621,97.64186276],[4.534723,0.03025447,97.64060053],[4.53472249,0.03025274,97.63933782],[4.53472199,0.03025101,97.63807463],[4.53472149,0.03024928,97.63681097],[4.53472099,0.03024755,97.63554684],[4.53472048,0.03024582,97.63428224],[4.53471998,0.03024409,97.63301717],[4.53471948,0.03024236,97.63175163],[4.53471898,0.03024062,97.63048563],[4.53471847,0.03023889,97.62921917],[4.53471797,0.03023716,97.62795224],[4.53471747,0.03023543,97.62668485],[4.53471696,0.0302337,97.62541701],[4.53471646,0.03023197,97.62414871],[4.53471596,0.03023024,97.62287995],[4.53471545,0.03022851,97.62161074],[4.53471495,0.03022678,97.62034107],[4.53471445,0.03022505,97.61907096],[4.53471394,0.03022331,97.61780039],[4.53471344,0.03022158,97.61652938],[4.53471294,0.03021985,97.61525793],[4.53471243,0.03021812,97.61398602],[4.53471193,0.03021639,97.61271368],[4.53471143,0.03021466,97.6114409],[4.53471092,0.03021293,97.61016767],[4.53471042,0.0302112,97.60889401],[4.53470991,0.03020947,97.60761991],[4.53470941,0.03020774,97.60634538],[4.53470891,0.030206,97.60507041],[4.5347084,0.03020427,97.60379502],[4.5347079,0.03020254,97.60251919],[4.53470739,0.03020081,97.60124294],[4.53470689,0.03019908,97.59996625],[4.53470638,0.03019735,97.59868915],[4.53470588,0.03019562,97.59741162],[4.53470537,0.03019389,97.59613367],[4.53470487,0.03019216,97.5948553],[4.53470436,0.03019043,97.59357651],[4.53470386,0.0301887,97.5922973],[4.53470335,0.03018697,97.59101768],[4.53470285,0.03018524,97.58973764],[4.53470234,0.0301835,97.5884572],[4.53470184,0.03018177,97.58717634],[4.53470133,0.03018004,97.58589507],[4.53470083,0.03017831,97.5846134],[4.53470032,0.03017658,97.58333132],[4.53469982,0.03017485,97.58204883],[4.53469931,0.03017312,97.58076595],[4.53469881,0.03017139,97.57948266],[4.5346983,0.03016966,97.57819897],[4.53469779,0.03016793,97.57691489],[4.53469729,0.0301662,97.57563041],[4.53469678,0.03016447,97.57434553],[4.53469628,0.03016274,97.57306026],[4.53469577,0.03016101,97.5717746],[4.53469526,0.03015928,97.57048855],[4.53469476,0.03015754,97.56920212],[4.53469425,0.03015581,97.56791529],[4.53469375,0.03015408,97.56662808],[4.53469324,0.03015235,97.56534049],[4.53469273,0.03015062,97.56405252],[4.53469223,0.03014889,97.56276417],[4.53469172,0.03014716,97.56147545],[4.53469121,0.03014543,97.56018636],[4.53469071,0.0301437,97.55889689],[4.5346902,0.03014197,97.55760706],[4.53468969,0.03014024,97.55631686],[4.53468919,0.03013851,97.5550263],[4.53468868,0.03013678,97.55373538],[4.53468817,0.03013505,97.55244411],[4.53468766,0.03013332,97.55115248],[4.53468716,0.03013159,97.54986049],[4.53468665,0.03012986,97.54856816],[4.53468614,0.03012813,97.54727547],[4.53468563,0.0301264,97.54598244],[4.53468513,0.03012467,97.54468907],[4.53468462,0.03012294,97.54339536],[4.53468411,0.03012121,97.54210131],[4.5346836,0.03011948,97.54080693],[4.5346831,0.03011775,97.53951221],[4.53468259,0.03011602,97.53821716],[4.53468208,0.03011428,97.53692179],[4.53468157,0.03011255,97.5356261],[4.53468106,0.03011082,97.5343301],[4.53468055,0.03010909,97.53303381],[4.53468005,0.03010736,97.53173722],[4.53467954,0.03010563,97.53044036],[4.53467903,0.0301039,97.52914323],[4.53467852,0.03010217,97.52784583],[4.53467801,0.03010044,97.52654818],[4.5346775,0.03009871,97.52525029],[4.534677,0.03009698,97.52395217],[4.53467649,0.03009525,97.52265382],[4.53467598,0.03009352,97.52135525],[4.53467547,0.03009179,97.52005647],[4.53467496,0.03009006,97.5187575],[4.53467445,0.03008833,97.51745834],[4.53467394,0.0300866,97.51615899],[4.53467343,0.03008487,97.51485948],[4.53467293,0.03008314,97.5135598],[4.53467242,0.03008141,97.51225997],[4.53467191,0.03007968,97.51096],[4.5346714,0.03007795,97.50965989],[4.53467089,0.03007622,97.50835966],[4.53467038,0.03007449,97.5070593],[4.53466987,0.03007276,97.50575884],[4.53466936,0.03007103,97.50445829],[4.53466885,0.0300693,97.50315764],[4.53466835,0.03006757,97.50185691],[4.53466784,0.03006584,97.5005561],[4.53466733,0.03006411,97.49925524],[4.53466682,0.03006238,97.49795432],[4.53466631,0.03006065,97.49665336],[4.5346658,0.03005892,97.49535236],[4.53466529,0.03005719,97.49405133],[4.53466478,0.03005546,97.49275028],[4.53466427,0.03005373,97.49144923],[4.53466377,0.030052,97.49014818],[4.53466326,0.03005027,97.48884713],[4.53466275,0.03004853,97.48754611],[4.53466224,0.0300468,97.48624511],[4.53466173,0.03004507,97.48494414],[4.53466122,0.03004334,97.48364323],[4.53466071,0.03004161,97.48234236],[4.5346602,0.03003988,97.48104156],[4.5346597,0.03003815,97.47974084],[4.53465919,0.03003642,97.47844019],[4.53465868,0.03003469,97.47713963],[4.53465817,0.03003296,97.47583918],[4.53465766,0.03003123,97.47453883],[4.53465715,0.0300295,97.4732386],[4.53465665,0.03002777,97.47193849],[4.53465614,0.03002604,97.47063852],[4.53465563,0.03002431,97.4693387],[4.53465512,0.03002258,97.46803903],[4.53465461,0.03002084,97.46673952],[4.5346541,0.03001911,97.46544018],[4.5346536,0.03001738,97.46414102],[4.53465309,0.03001565,97.46284205],[4.53465258,0.03001392,97.46154329],[4.53465207,0.03001219,97.46024472],[4.53465157,0.03001046,97.45894638],[4.53465106,0.03000873,97.45764826],[4.53465055,0.030007,97.45635038],[4.53465004,0.03000527,97.45505273],[4.53464954,0.03000354,97.45375534],[4.53464903,0.03000181,97.45245821],[4.53464852,0.03000008,97.45116133],[4.53464801,0.02999835,97.44986473],[4.53464751,0.02999662,97.44856841],[4.534647,0.02999489,97.44727238],[4.53464649,0.02999316,97.44597663],[4.53464599,0.02999143,97.44468119],[4.53464548,0.0299897,97.44338605],[4.53464497,0.02998796,97.44209122],[4.53464446,0.02998623,97.44079672],[4.53464396,0.0299845,97.43950255],[4.53464345,0.02998277,97.43820871],[4.53464294,0.02998104,97.43691521],[4.53464244,0.02997931,97.43562206],[4.53464193,0.02997758,97.43432927],[4.53464142,0.02997585,97.43303684],[4.53464092,0.02997412,97.43174478],[4.53464041,0.02997239,97.4304531],[4.5346399,0.02997066,97.42916181],[4.5346394,0.02996893,97.42787091],[4.53463889,0.0299672,97.4265804],[4.53463838,0.02996547,97.42529031],[4.53463788,0.02996374,97.42400062],[4.53463737,0.02996201,97.42271136],[4.53463687,0.02996028,97.42142252],[4.53463636,0.02995855,97.42013412],[4.53463585,0.02995682,97.41884617],[4.53463535,0.02995509,97.41755866],[4.53463484,0.02995336,97.4162716],[4.53463433,0.02995163,97.41498502],[4.53463383,0.0299499,97.4136989],[4.53463332,0.02994817,97.41241326],[4.53463281,0.02994644,97.4111281],[4.53463231,0.02994471,97.40984344],[4.5346318,0.02994298,97.40855927],[4.5346313,0.02994125,97.40727561],[4.53463079,0.02993952,97.40599247],[4.53463028,0.0299378,97.40470984],[4.53462978,0.02993607,97.40342775],[4.53462927,0.02993434,97.40214619],[4.53462877,0.02993261,97.40086517],[4.53462826,0.02993088,97.3995847],[4.53462775,0.02992915,97.39830478],[4.53462725,0.02992742,97.39702543],[4.53462674,0.02992569,97.39574665],[4.53462623,0.02992396,97.39446845],[4.53462573,0.02992223,97.39319083],[4.53462522,0.0299205,97.39191381],[4.53462472,0.02991877,97.39063738],[4.53462421,0.02991704,97.38936156],[4.5346237,0.02991531,97.38808636],[4.5346232,0.02991358,97.38681177],[4.53462269,0.02991186,97.38553781],[4.53462218,0.02991013,97.38426449],[4.53462168,0.0299084,97.38299181],[4.53462117,0.02990667,97.38171978],[4.53462067,0.02990494,97.38044841],[4.53462016,0.02990321,97.3791777],[4.53461965,0.02990148,97.37790766],[4.53461915,0.02989975,97.3766383],[4.53461864,0.02989802,97.37536963],[4.53461813,0.0298963,97.37410165],[4.53461763,0.02989457,97.37283436],[4.53461712,0.02989284,97.37156779],[4.53461661,0.02989111,97.37030193],[4.53461611,0.02988938,97.36903679],[4.5346156,0.02988765,97.36777238],[4.53461509,0.02988592,97.3665087],[4.53461459,0.0298842,97.36524577],[4.53461408,0.02988247,97.3639836],[4.53461357,0.02988074,97.36272218],[4.53461307,0.02987901,97.36146153],[4.53461256,0.02987728,97.36020165],[4.53461205,0.02987555,97.35894256],[4.53461155,0.02987383,97.35768425],[4.53461104,0.0298721,97.35642674],[4.53461053,0.02987037,97.35517004],[4.53461003,0.02986864,97.35391415],[4.53460952,0.02986691,97.35265908],[4.53460901,0.02986519,97.35140483],[4.53460851,0.02986346,97.35015142],[4.534608,0.02986173,97.34889886],[4.53460749,0.02986,97.34764714],[4.53460698,0.02985827,97.34639628],[4.53460648,0.02985655,97.34514629],[4.53460597,0.02985482,97.34389717],[4.53460546,0.02985309,97.34264893],[4.53460495,0.02985136,97.3414016],[4.53460445,0.02984964,97.34015518],[4.53460394,0.02984791,97.33890969],[4.53460343,0.02984618,97.33766514],[4.53460292,0.02984445,97.33642153],[4.53460242,0.02984273,97.33517889],[4.53460191,0.029841,97.33393722],[4.5346014,0.02983927,97.33269655],[4.53460089,0.02983755,97.33145687],[4.53460039,0.02983582,97.33021821],[4.53459988,0.02983409,97.32898057],[4.53459937,0.02983236,97.32774398],[4.53459886,0.02983064,97.32650843],[4.53459835,0.02982891,97.32527395],[4.53459785,0.02982718,97.32404055],[4.53459734,0.02982546,97.32280824],[4.53459683,0.02982373,97.32157702],[4.53459632,0.029822,97.32034693],[4.53459581,0.02982028,97.31911796],[4.5345953,0.02981855,97.31789013],[4.5345948,0.02981682,97.31666345],[4.53459429,0.0298151,97.31543794],[4.53459378,0.02981337,97.31421361],[4.53459327,0.02981164,97.31299047],[4.53459276,0.02980992,97.31176853],[4.53459225,0.02980819,97.31054781],[4.53459174,0.02980646,97.30932832],[4.53459124,0.02980474,97.30811006],[4.53459073,0.02980301,97.30689307],[4.53459022,0.02980129,97.30567733],[4.53458971,0.02979956,97.30446288],[4.5345892,0.02979783,97.30324972],[4.53458869,0.02979611,97.30203787],[4.53458818,0.02979438,97.30082733],[4.53458767,0.02979266,97.29961812],[4.53458717,0.02979093,97.29841026],[4.53458666,0.0297892,97.29720375],[4.53458615,0.02978747,97.29599861],[4.53458564,0.02978575,97.29479485],[4.53458513,0.02978402,97.29359248],[4.53458462,0.02978229,97.29239152],[4.53458411,0.02978057,97.29119198],[4.5345836,0.02977884,97.28999387],[4.53458309,0.02977711,97.2887972],[4.53458259,0.02977538,97.28760199],[4.53458208,0.02977365,97.28640824],[4.53458157,0.02977193,97.28521592],[4.53458106,0.0297702,97.28402502],[4.53458055,0.02976847,97.28283552],[4.53458004,0.02976674,97.28164736],[4.53457954,0.02976501,97.28046047],[4.53457903,0.02976328,97.27927477],[4.53457852,0.02976156,97.2780902],[4.53457801,0.02975983,97.27690669],[4.5345775,0.0297581,97.27572416],[4.53457699,0.02975637,97.27454256],[4.53457649,0.02975464,97.27336181],[4.53457598,0.02975291,97.27218184],[4.53457547,0.02975118,97.27100258],[4.53457496,0.02974945,97.26982397],[4.53457445,0.02974772,97.26864592],[4.53457394,0.02974599,97.26746838],[4.53457343,0.02974426,97.26629128],[4.53457293,0.02974253,97.26511454],[4.53457242,0.0297408,97.26393809],[4.53457191,0.02973907,97.26276187],[4.5345714,0.02973734,97.26158581],[4.53457089,0.02973561,97.26040983],[4.53457038,0.02973388,97.25923387],[4.53456987,0.02973216,97.25805786],[4.53456935,0.02973043,97.25688172],[4.53456884,0.0297287,97.25570539],[4.53456833,0.02972697,97.2545288],[4.53456782,0.02972524,97.25335188],[4.53456731,0.02972351,97.25217456],[4.53456679,0.02972178,97.25099677],[4.53456628,0.02972005,97.24981843],[4.53456577,0.02971832,97.24863949],[4.53456525,0.02971659,97.24745987],[4.53456474,0.02971486,97.2462795],[4.53456422,0.02971313,97.24509831],[4.53456371,0.0297114,97.24391623],[4.53456319,0.02970967,97.24273319],[4.53456268,0.02970794,97.24154912],[4.53456216,0.02970621,97.24036396],[4.53456164,0.02970448,97.23917763],[4.53456112,0.02970275,97.23799006],[4.53456061,0.02970102,97.23680118],[4.53456009,0.02969929,97.23561092],[4.53455957,0.02969757,97.23441922],[4.53455905,0.02969584,97.233226],[4.53455853,0.02969411,97.23203119],[4.534558,0.02969238,97.23083475],[4.53455748,0.02969065,97.22963668],[4.53455696,0.02968892,97.22843704],[4.53455643,0.02968719,97.22723585],[4.53455591,0.02968547,97.22603315],[4.53455538,0.02968374,97.22482898],[4.53455486,0.02968201,97.22362338],[4.53455433,0.02968028,97.22241638],[4.53455381,0.02967855,97.22120803],[4.53455328,0.02967683,97.21999836],[4.53455275,0.0296751,97.2187874],[4.53455222,0.02967337,97.2175752],[4.53455169,0.02967164,97.21636179],[4.53455117,0.02966992,97.21514721],[4.53455064,0.02966819,97.2139315],[4.53455011,0.02966646,97.2127147],[4.53454958,0.02966473,97.21149683],[4.53454905,0.029663,97.21027795],[4.53454851,0.02966128,97.20905808],[4.53454798,0.02965955,97.20783727],[4.53454745,0.02965782,97.20661555],[4.53454692,0.02965609,97.20539296],[4.53454639,0.02965437,97.20416954],[4.53454585,0.02965264,97.20294532],[4.53454532,0.02965091,97.20172035],[4.53454479,0.02964918,97.20049466],[4.53454426,0.02964745,97.19926828],[4.53454372,0.02964573,97.19804127],[4.53454319,0.029644,97.19681364],[4.53454265,0.02964227,97.19558545],[4.53454212,0.02964054,97.19435672],[4.53454159,0.02963881,97.19312751],[4.53454105,0.02963709,97.19189784],[4.53454052,0.02963536,97.19066781],[4.53453998,0.02963363,97.18943749],[4.53453945,0.0296319,97.18820697],[4.53453892,0.02963017,97.18697635],[4.53453838,0.02962844,97.18574569],[4.53453785,0.02962672,97.1845151],[4.53453732,0.02962499,97.18328466],[4.53453678,0.02962326,97.18205444],[4.53453625,0.02962153,97.18082455],[4.53453572,0.02961981,97.17959506],[4.53453518,0.02961808,97.17836606],[4.53453514,0.02961795,97.17827241],[4.53458047,0.02960466,97.31487811],[4.53458051,0.02960479,97.3149657],[4.53458101,0.02960652,97.31611479],[4.53458151,0.02960824,97.31726372],[4.53458202,0.02960996,97.31841248],[4.53458252,0.02961169,97.31956103],[4.53458303,0.02961341,97.32070935],[4.53458353,0.02961513,97.32185741],[4.53458403,0.02961686,97.32300519],[4.53458454,0.02961858,97.32415265],[4.53458504,0.02962031,97.32529978],[4.53458554,0.02962203,97.32644654],[4.53458605,0.02962376,97.32759292],[4.53458655,0.02962548,97.32873888],[4.53458706,0.02962721,97.3298844],[4.53458756,0.02962893,97.33102951],[4.53458807,0.02963066,97.33217421],[4.53458857,0.02963238,97.33331854],[4.53458908,0.02963411,97.33446252],[4.53458958,0.02963583,97.33560616],[4.53459008,0.02963756,97.3367495],[4.53459059,0.02963928,97.33789254],[4.53459109,0.02964101,97.33903532],[4.5345916,0.02964274,97.34017786],[4.5345921,0.02964446,97.34132017],[4.5345926,0.02964619,97.34246229],[4.53459311,0.02964792,97.34360422],[4.53459361,0.02964964,97.344746],[4.53459412,0.02965137,97.34588765],[4.53459462,0.0296531,97.34702918],[4.53459513,0.02965482,97.34817062],[4.53459563,0.02965655,97.349312],[4.53459613,0.02965828,97.35045333],[4.53459664,0.02966,97.35159463],[4.53459714,0.02966173,97.35273593],[4.53459765,0.02966346,97.35387726],[4.53459815,0.02966518,97.35501862],[4.53459866,0.02966691,97.35616005],[4.53459916,0.02966864,97.35730157],[4.53459966,0.02967037,97.35844319],[4.53460017,0.0296721,97.35958494],[4.53460067,0.02967382,97.36072685],[4.53460118,0.02967555,97.36186892],[4.53460168,0.02967728,97.3630112],[4.53460219,0.02967901,97.36415369],[4.53460269,0.02968074,97.36529642],[4.5346032,0.02968246,97.36643942],[4.5346037,0.02968419,97.3675827],[4.5346042,0.02968592,97.36872628],[4.53460471,0.02968765,97.36987019],[4.53460521,0.02968938,97.37101445],[4.53460572,0.02969111,97.37215908],[4.53460622,0.02969284,97.37330411],[4.53460673,0.02969456,97.37444955],[4.53460723,0.02969629,97.37559543],[4.53460774,0.02969802,97.37674177],[4.53460824,0.02969975,97.37788858],[4.53460875,0.02970148,97.37903591],[4.53460925,0.02970321,97.38018375],[4.53460976,0.02970494,97.38133215],[4.53461026,0.02970667,97.38248111],[4.53461077,0.0297084,97.38363066],[4.53461127,0.02971013,97.38478083],[4.53461178,0.02971186,97.38593163],[4.53461228,0.02971359,97.38708309],[4.53461279,0.02971532,97.38823522],[4.53461329,0.02971705,97.38938806],[4.5346138,0.02971878,97.39054162],[4.5346143,0.02972051,97.39169592],[4.53461481,0.02972224,97.39285099],[4.53461531,0.02972397,97.39400684],[4.53461582,0.0297257,97.3951635],[4.53461633,0.02972743,97.396321],[4.53461683,0.02972916,97.39747935],[4.53461734,0.02973089,97.39863857],[4.53461784,0.02973262,97.39979869],[4.53461835,0.02973436,97.40095973],[4.53461886,0.02973609,97.40212171],[4.53461936,0.02973782,97.40328465],[4.53461987,0.02973955,97.40444857],[4.53462037,0.02974128,97.4056135],[4.53462088,0.02974301,97.40677946],[4.53462139,0.02974474,97.40794647],[4.53462189,0.02974647,97.40911455],[4.5346224,0.02974821,97.41028372],[4.5346229,0.02974994,97.411454],[4.53462341,0.02975167,97.41262542],[4.53462392,0.0297534,97.413798],[4.53462442,0.02975513,97.41497176],[4.53462493,0.02975686,97.41614672],[4.53462544,0.0297586,97.4173229],[4.53462595,0.02976033,97.41850033],[4.53462645,0.02976206,97.41967902],[4.53462696,0.02976379,97.42085901],[4.53462747,0.02976552,97.42204028],[4.53462797,0.02976726,97.42322285],[4.53462848,0.02976899,97.42440669],[4.53462899,0.02977072,97.42559181],[4.5346295,0.02977245,97.42677819],[4.53463,0.02977419,97.42796583],[4.53463051,0.02977592,97.42915472],[4.53463102,0.02977765,97.43034485],[4.53463153,0.02977939,97.43153622],[4.53463203,0.02978112,97.43272882],[4.53463254,0.02978285,97.43392263],[4.53463305,0.02978459,97.43511766],[4.53463356,0.02978632,97.43631389],[4.53463406,0.02978805,97.43751132],[4.53463457,0.02978979,97.43870994],[4.53463508,0.02979152,97.43990974],[4.53463558,0.02979325,97.44111071],[4.53463609,0.02979498,97.44231286],[4.5346366,0.02979672,97.44351616],[4.53463711,0.02979845,97.44472062],[4.53463761,0.02980018,97.44592622],[4.53463812,0.02980192,97.44713295],[4.53463863,0.02980365,97.44834082],[4.53463913,0.02980539,97.44954981],[4.53463964,0.02980712,97.45075991],[4.53464015,0.02980885,97.45197112],[4.53464065,0.02981059,97.45318343],[4.53464116,0.02981232,97.45439683],[4.53464167,0.02981405,97.45561131],[4.53464217,0.02981579,97.45682688],[4.53464268,0.02981752,97.45804351],[4.53464318,0.02981925,97.4592612],[4.53464369,0.02982099,97.46047995],[4.5346442,0.02982272,97.46169974],[4.5346447,0.02982445,97.46292058],[4.53464521,0.02982619,97.46414244],[4.53464571,0.02982792,97.46536533],[4.53464622,0.02982965,97.46658924],[4.53464673,0.02983139,97.46781415],[4.53464723,0.02983312,97.46904007],[4.53464774,0.02983485,97.47026698],[4.53464824,0.02983659,97.47149488],[4.53464875,0.02983832,97.47272376],[4.53464925,0.02984005,97.47395361],[4.53464976,0.02984179,97.47518442],[4.53465026,0.02984352,97.47641619],[4.53465077,0.02984525,97.47764891],[4.53465127,0.02984699,97.47888257],[4.53465178,0.02984872,97.48011716],[4.53465228,0.02985045,97.48135268],[4.53465279,0.02985218,97.48258912],[4.53465329,0.02985392,97.48382647],[4.5346538,0.02985565,97.48506473],[4.5346543,0.02985738,97.48630388],[4.53465481,0.02985912,97.48754392],[4.53465531,0.02986085,97.48878484],[4.53465582,0.02986258,97.49002664],[4.53465632,0.02986432,97.4912693],[4.53465683,0.02986605,97.49251282],[4.53465733,0.02986778,97.4937572],[4.53465784,0.02986951,97.49500241],[4.53465834,0.02987125,97.49624847],[4.53465885,0.02987298,97.49749535],[4.53465935,0.02987471,97.49874306],[4.53465985,0.02987645,97.49999157],[4.53466036,0.02987818,97.5012409],[4.53466086,0.02987991,97.50249102],[4.53466137,0.02988164,97.50374194],[4.53466187,0.02988338,97.50499364],[4.53466238,0.02988511,97.50624612],[4.53466288,0.02988684,97.50749937],[4.53466338,0.02988858,97.50875338],[4.53466389,0.02989031,97.51000815],[4.53466439,0.02989204,97.51126366],[4.5346649,0.02989377,97.51251992],[4.5346654,0.02989551,97.51377691],[4.5346659,0.02989724,97.51503463],[4.53466641,0.02989897,97.51629307],[4.53466691,0.0299007,97.51755222],[4.53466742,0.02990244,97.51881208],[4.53466792,0.02990417,97.52007264],[4.53466842,0.0299059,97.52133388],[4.53466893,0.02990763,97.52259582],[4.53466943,0.02990937,97.52385843],[4.53466994,0.0299111,97.52512171],[4.53467044,0.02991283,97.52638565],[4.53467094,0.02991456,97.52765025],[4.53467145,0.02991629,97.5289155],[4.53467195,0.02991803,97.53018139],[4.53467245,0.02991976,97.53144791],[4.53467296,0.02992149,97.53271507],[4.53467346,0.02992322,97.53398284],[4.53467397,0.02992495,97.53525123],[4.53467447,0.02992669,97.53652022],[4.53467497,0.02992842,97.53778981],[4.53467548,0.02993015,97.53905999],[4.53467598,0.02993188,97.54033076],[4.53467648,0.02993361,97.54160211],[4.53467699,0.02993535,97.54287402],[4.53467749,0.02993708,97.5441465],[4.534678,0.02993881,97.54541954],[4.5346785,0.02994054,97.54669313],[4.534679,0.02994227,97.54796726],[4.53467951,0.02994401,97.54924192],[4.53468001,0.02994574,97.55051711],[4.53468051,0.02994747,97.55179282],[4.53468102,0.0299492,97.55306905],[4.53468152,0.02995093,97.55434578],[4.53468203,0.02995266,97.55562302],[4.53468253,0.02995439,97.55690074],[4.53468303,0.02995613,97.55817895],[4.53468354,0.02995786,97.55945764],[4.53468404,0.02995959,97.5607368],[4.53468455,0.02996132,97.56201643],[4.53468505,0.02996305,97.56329651],[4.53468555,0.02996478,97.56457704],[4.53468606,0.02996651,97.56585802],[4.53468656,0.02996825,97.56713943],[4.53468706,0.02996998,97.56842127],[4.53468757,0.02997171,97.56970353],[4.53468807,0.02997344,97.57098621],[4.53468858,0.02997517,97.57226929],[4.53468908,0.0299769,97.57355278],[4.53468958,0.02997863,97.57483665],[4.53469009,0.02998036,97.57612092],[4.53469059,0.02998209,97.57740556],[4.5346911,0.02998382,97.57869058],[4.5346916,0.02998555,97.57997596],[4.53469211,0.02998729,97.5812617],[4.53469261,0.02998902,97.58254779],[4.53469311,0.02999075,97.58383422],[4.53469362,0.02999248,97.58512099],[4.53469412,0.02999421,97.58640809],[4.53469463,0.02999594,97.58769551],[4.53469513,0.02999767,97.58898325],[4.53469564,0.0299994,97.5902713],[4.53469614,0.03000113,97.59155965],[4.53469665,0.03000286,97.59284829],[4.53469715,0.03000459,97.59413722],[4.53469765,0.03000632,97.59542643],[4.53469816,0.03000805,97.59671591],[4.53469866,0.03000978,97.59800566],[4.53469917,0.03001151,97.59929567],[4.53469967,0.03001324,97.60058593],[4.53470018,0.03001497,97.60187644],[4.53470068,0.0300167,97.60316718],[4.53470119,0.03001843,97.60445816],[4.53470169,0.03002016,97.60574935],[4.5347022,0.03002189,97.60704077],[4.5347027,0.03002362,97.60833239],[4.53470321,0.03002535,97.60962422],[4.53470371,0.03002708,97.61091624],[4.53470422,0.03002881,97.61220845],[4.53470473,0.03003054,97.61350085],[4.53470523,0.03003227,97.61479341],[4.53470574,0.030034,97.61608615],[4.53470624,0.03003573,97.61737904],[4.53470675,0.03003746,97.61867209],[4.53470725,0.03003919,97.61996528],[4.53470776,0.03004092,97.62125861],[4.53470826,0.03004265,97.62255207],[4.53470877,0.03004438,97.62384566],[4.53470928,0.03004611,97.62513937],[4.53470978,0.03004784,97.62643319],[4.53471029,0.03004957,97.62772711],[4.53471079,0.0300513,97.62902112],[4.5347113,0.03005303,97.63031523],[4.5347118,0.03005476,97.63160942],[4.53471231,0.03005649,97.63290368],[4.53471282,0.03005822,97.63419802],[4.53471332,0.03005995,97.63549241],[4.53471383,0.03006168,97.63678686],[4.53471433,0.03006341,97.63808135],[4.53471484,0.03006514,97.63937589],[4.53471535,0.03006687,97.64067046],[4.53471585,0.0300686,97.64196505],[4.53471636,0.03007033,97.64325967],[4.53471686,0.03007206,97.64455429],[4.53471737,0.03007379,97.64584892],[4.53471788,0.03007552,97.64714355],[4.53471838,0.03007725,97.64843816],[4.53471889,0.03007898,97.64973276],[4.53471939,0.03008071,97.65102734],[4.5347199,0.03008244,97.65232189],[4.5347204,0.03008417,97.6536164],[4.53472091,0.0300859,97.65491086],[4.53472142,0.03008763,97.65620527],[4.53472192,0.03008936,97.65749962],[4.53472243,0.03009109,97.65879391],[4.53472293,0.03009282,97.66008812],[4.53472344,0.03009455,97.66138226],[4.53472394,0.03009628,97.6626763],[4.53472445,0.03009801,97.66397025],[4.53472496,0.03009974,97.6652641],[4.53472546,0.03010147,97.66655784],[4.53472597,0.0301032,97.66785147],[4.53472647,0.03010493,97.66914497],[4.53472698,0.03010666,97.67043834],[4.53472748,0.03010839,97.67173159],[4.53472799,0.03011012,97.67302471],[4.53472849,0.03011185,97.6743177],[4.534729,0.03011358,97.67561057],[4.5347295,0.03011531,97.6769033],[4.53473001,0.03011705,97.67819591],[4.53473051,0.03011878,97.67948838],[4.53473102,0.03012051,97.68078072],[4.53473152,0.03012224,97.68207294],[4.53473203,0.03012397,97.68336502],[4.53473253,0.0301257,97.68465697],[4.53473304,0.03012743,97.68594878],[4.53473354,0.03012916,97.68724047],[4.53473405,0.03013089,97.68853202],[4.53473455,0.03013262,97.68982344],[4.53473506,0.03013435,97.69111472],[4.53473556,0.03013608,97.69240586],[4.53473607,0.03013781,97.69369688],[4.53473657,0.03013954,97.69498775],[4.53473708,0.03014127,97.69627849],[4.53473758,0.030143,97.69756909],[4.53473809,0.03014474,97.69885956],[4.53473859,0.03014647,97.70014989],[4.53473909,0.0301482,97.70144007],[4.5347396,0.03014993,97.70273012],[4.5347401,0.03015166,97.70402004],[4.53474061,0.03015339,97.70530981],[4.53474111,0.03015512,97.70659944],[4.53474162,0.03015685,97.70788893],[4.53474212,0.03015858,97.70917827],[4.53474262,0.03016031,97.71046748],[4.53474313,0.03016205,97.71175654],[4.53474363,0.03016378,97.71304547],[4.53474414,0.03016551,97.71433424],[4.53474464,0.03016724,97.71562288],[4.53474514,0.03016897,97.71691137],[4.53474565,0.0301707,97.71819971],[4.53474615,0.03017243,97.71948791],[4.53474666,0.03017416,97.72077597],[4.53474716,0.03017589,97.72206387],[4.53474766,0.03017763,97.72335164],[4.53474817,0.03017936,97.72463925],[4.53474867,0.03018109,97.72592671],[4.53474918,0.03018282,97.72721403],[4.53474968,0.03018455,97.7285012],[4.53475018,0.03018628,97.72978822],[4.53475069,0.03018801,97.73107509],[4.53475119,0.03018974,97.73236181],[4.53475169,0.03019148,97.73364838],[4.5347522,0.03019321,97.7349348],[4.5347527,0.03019494,97.73622106],[4.5347532,0.03019667,97.73750718],[4.53475371,0.0301984,97.73879314],[4.53475421,0.03020013,97.74007895],[4.53475471,0.03020187,97.7413646],[4.53475522,0.0302036,97.7426501],[4.53475572,0.03020533,97.74393545],[4.53475622,0.03020706,97.74522064],[4.53475673,0.03020879,97.74650567],[4.53475723,0.03021052,97.74779055],[4.53475773,0.03021225,97.74907528],[4.53475824,0.03021399,97.75035984],[4.53475874,0.03021572,97.75164425],[4.53475924,0.03021745,97.7529285],[4.53475975,0.03021918,97.75421259],[4.53476025,0.03022091,97.75549652],[4.53476075,0.03022265,97.75678029],[4.53476125,0.03022438,97.75806391],[4.53476176,0.03022611,97.75934736],[4.53476226,0.03022784,97.76063065],[4.53476276,0.03022957,97.76191378],[4.53476327,0.0302313,97.76319675],[4.53476377,0.03023304,97.76447956],[4.53476427,0.03023477,97.7657622],[4.53476477,0.0302365,97.76704468],[4.53476528,0.03023823,97.76832699],[4.53476578,0.03023996,97.76960915],[4.53476628,0.0302417,97.77089113],[4.53476678,0.03024343,97.77217296],[4.53476729,0.03024516,97.77345461],[4.53476779,0.03024689,97.7747361],[4.53476829,0.03024862,97.77601743],[4.53476879,0.03025036,97.77729858],[4.5347693,0.03025209,97.77857957],[4.5347698,0.03025382,97.77986039],[4.5347703,0.03025555,97.78114105],[4.5347708,0.03025728,97.78242153],[4.53477131,0.03025902,97.78370184],[4.53477181,0.03026075,97.78498199],[4.53477231,0.03026248,97.78626196],[4.53477281,0.03026421,97.78754177],[4.53477331,0.03026594,97.7888214],[4.53477382,0.03026768,97.79010086],[4.53477432,0.03026941,97.79138015],[4.53477482,0.03027114,97.79265927],[4.53477532,0.03027287,97.79393821],[4.53477583,0.0302746,97.79521699],[4.53477633,0.03027634,97.79649558],[4.53477683,0.03027807,97.79777401],[4.53477733,0.0302798,97.79905226],[4.53477783,0.03028153,97.80033033],[4.53477834,0.03028326,97.80160823],[4.53477884,0.030285,97.80288595],[4.53477934,0.03028673,97.8041635],[4.53477984,0.03028846,97.80544087],[4.53478035,0.03029019,97.80671806],[4.53478085,0.03029192,97.80799508],[4.53478135,0.03029366,97.80927191],[4.53478185,0.03029539,97.81054857],[4.53478235,0.03029712,97.81182505],[4.53478286,0.03029885,97.81310135],[4.53478336,0.03030058,97.81437748],[4.53478386,0.03030232,97.81565342],[4.53478436,0.03030405,97.81692918],[4.53478486,0.03030578,97.81820476],[4.53478537,0.03030751,97.81948016],[4.53478587,0.03030925,97.82075538],[4.53478637,0.03031098,97.82203042],[4.53478687,0.03031271,97.82330527],[4.53478737,0.03031444,97.82457995],[4.53478788,0.03031617,97.82585444],[4.53478838,0.03031791,97.82712874],[4.53478888,0.03031964,97.82840287],[4.53478938,0.03032137,97.8296768],[4.53478989,0.0303231,97.83095056],[4.53479039,0.03032483,97.83222413],[4.53479089,0.03032657,97.83349751],[4.53479139,0.0303283,97.83477071],[4.53479189,0.03033003,97.83604373],[4.5347924,0.03033176,97.83731656],[4.5347929,0.03033349,97.8385892],[4.5347934,0.03033523,97.83986165],[4.5347939,0.03033696,97.84113392],[4.53479441,0.03033869,97.842406],[4.53479491,0.03034042,97.8436779],[4.53479541,0.03034215,97.8449496],[4.53479591,0.03034389,97.84622112],[4.53479641,0.03034562,97.84749245],[4.53479692,0.03034735,97.84876359],[4.53479742,0.03034908,97.85003454],[4.53479792,0.03035082,97.8513053],[4.53479842,0.03035255,97.85257587],[4.53479893,0.03035428,97.85384626],[4.53479943,0.03035601,97.85511645],[4.53479993,0.03035774,97.85638645],[4.53480043,0.03035948,97.85765626],[4.53480094,0.03036121,97.85892588],[4.53480144,0.03036294,97.86019531],[4.53480194,0.03036467,97.86146455],[4.53480244,0.0303664,97.86273359],[4.53480295,0.03036814,97.86400245],[4.53480345,0.03036987,97.86527111],[4.53480395,0.0303716,97.86653958],[4.53480446,0.03037333,97.86780786],[4.53480496,0.03037506,97.86907594],[4.53480546,0.03037679,97.87034383],[4.53480596,0.03037853,97.87161153],[4.53480647,0.03038026,97.87287903],[4.53480697,0.03038199,97.87414635],[4.53480747,0.03038372,97.87541346],[4.53480798,0.03038545,97.87668039],[4.53480848,0.03038719,97.87794712],[4.53480898,0.03038892,97.87921365],[4.53480949,0.03039065,97.88047999],[4.53480999,0.03039238,97.88174614],[4.53481049,0.03039411,97.88301209],[4.534811,0.03039584,97.88427784],[4.5348115,0.03039758,97.8855434],[4.53476802,0.03041033,97.75210046]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004700","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":0,"sOffset":0.0}},{"geometry":{"coordinates":[[[4.5348115,0.03039758,97.8855434],[4.534811,0.03039584,97.88427784],[4.53481049,0.03039411,97.88301209],[4.53480999,0.03039238,97.88174614],[4.53480949,0.03039065,97.88047999],[4.53480898,0.03038892,97.87921365],[4.53480848,0.03038719,97.87794712],[4.53480798,0.03038545,97.87668039],[4.53480747,0.03038372,97.87541346],[4.53480697,0.03038199,97.87414635],[4.53480647,0.03038026,97.87287903],[4.53480596,0.03037853,97.87161153],[4.53480546,0.03037679,97.87034383],[4.53480496,0.03037506,97.86907594],[4.53480446,0.03037333,97.86780786],[4.53480395,0.0303716,97.86653958],[4.53480345,0.03036987,97.86527111],[4.53480295,0.03036814,97.86400245],[4.53480244,0.0303664,97.86273359],[4.53480194,0.03036467,97.86146455],[4.53480144,0.03036294,97.86019531],[4.53480094,0.03036121,97.85892588],[4.53480043,0.03035948,97.85765626],[4.53479993,0.03035774,97.85638645],[4.53479943,0.03035601,97.85511645],[4.53479893,0.03035428,97.85384626],[4.53479842,0.03035255,97.85257587],[4.53479792,0.03035082,97.8513053],[4.53479742,0.03034908,97.85003454],[4.53479692,0.03034735,97.84876359],[4.53479641,0.03034562,97.84749245],[4.53479591,0.03034389,97.84622112],[4.53479541,0.03034215,97.8449496],[4.53479491,0.03034042,97.8436779],[4.53479441,0.03033869,97.842406],[4.5347939,0.03033696,97.84113392],[4.5347934,0.03033523,97.83986165],[4.5347929,0.03033349,97.8385892],[4.5347924,0.03033176,97.83731656],[4.53479189,0.03033003,97.83604373],[4.53479139,0.0303283,97.83477071],[4.53479089,0.03032657,97.83349751],[4.53479039,0.03032483,97.83222413],[4.53478989,0.0303231,97.83095056],[4.53478938,0.03032137,97.8296768],[4.53478888,0.03031964,97.82840287],[4.53478838,0.03031791,97.82712874],[4.53478788,0.03031617,97.82585444],[4.53478737,0.03031444,97.82457995],[4.53478687,0.03031271,97.82330527],[4.53478637,0.03031098,97.82203042],[4.53478587,0.03030925,97.82075538],[4.53478537,0.03030751,97.81948016],[4.53478486,0.03030578,97.81820476],[4.53478436,0.03030405,97.81692918],[4.53478386,0.03030232,97.81565342],[4.53478336,0.03030058,97.81437748],[4.53478286,0.03029885,97.81310135],[4.53478235,0.03029712,97.81182505],[4.53478185,0.03029539,97.81054857],[4.53478135,0.03029366,97.80927191],[4.53478085,0.03029192,97.80799508],[4.53478035,0.03029019,97.80671806],[4.53477984,0.03028846,97.80544087],[4.53477934,0.03028673,97.8041635],[4.53477884,0.030285,97.80288595],[4.53477834,0.03028326,97.80160823],[4.53477783,0.03028153,97.80033033],[4.53477733,0.0302798,97.79905226],[4.53477683,0.03027807,97.79777401],[4.53477633,0.03027634,97.79649558],[4.53477583,0.0302746,97.79521699],[4.53477532,0.03027287,97.79393821],[4.53477482,0.03027114,97.79265927],[4.53477432,0.03026941,97.79138015],[4.53477382,0.03026768,97.79010086],[4.53477331,0.03026594,97.7888214],[4.53477281,0.03026421,97.78754177],[4.53477231,0.03026248,97.78626196],[4.53477181,0.03026075,97.78498199],[4.53477131,0.03025902,97.78370184],[4.5347708,0.03025728,97.78242153],[4.5347703,0.03025555,97.78114105],[4.5347698,0.03025382,97.77986039],[4.5347693,0.03025209,97.77857957],[4.53476879,0.03025036,97.77729858],[4.53476829,0.03024862,97.77601743],[4.53476779,0.03024689,97.7747361],[4.53476729,0.03024516,97.77345461],[4.53476678,0.03024343,97.77217296],[4.53476628,0.0302417,97.77089113],[4.53476578,0.03023996,97.76960915],[4.53476528,0.03023823,97.76832699],[4.53476477,0.0302365,97.76704468],[4.53476427,0.03023477,97.7657622],[4.53476377,0.03023304,97.76447956],[4.53476327,0.0302313,97.76319675],[4.53476276,0.03022957,97.76191378],[4.53476226,0.03022784,97.76063065],[4.53476176,0.03022611,97.75934736],[4.53476125,0.03022438,97.75806391],[4.53476075,0.03022265,97.75678029],[4.53476025,0.03022091,97.75549652],[4.53475975,0.03021918,97.75421259],[4.53475924,0.03021745,97.7529285],[4.53475874,0.03021572,97.75164425],[4.53475824,0.03021399,97.75035984],[4.53475773,0.03021225,97.74907528],[4.53475723,0.03021052,97.74779055],[4.53475673,0.03020879,97.74650567],[4.53475622,0.03020706,97.74522064],[4.53475572,0.03020533,97.74393545],[4.53475522,0.0302036,97.7426501],[4.53475471,0.03020187,97.7413646],[4.53475421,0.03020013,97.74007895],[4.53475371,0.0301984,97.73879314],[4.5347532,0.03019667,97.73750718],[4.5347527,0.03019494,97.73622106],[4.5347522,0.03019321,97.7349348],[4.53475169,0.03019148,97.73364838],[4.53475119,0.03018974,97.73236181],[4.53475069,0.03018801,97.73107509],[4.53475018,0.03018628,97.72978822],[4.53474968,0.03018455,97.7285012],[4.53474918,0.03018282,97.72721403],[4.53474867,0.03018109,97.72592671],[4.53474817,0.03017936,97.72463925],[4.53474766,0.03017763,97.72335164],[4.53474716,0.03017589,97.72206387],[4.53474666,0.03017416,97.72077597],[4.53474615,0.03017243,97.71948791],[4.53474565,0.0301707,97.71819971],[4.53474514,0.03016897,97.71691137],[4.53474464,0.03016724,97.71562288],[4.53474414,0.03016551,97.71433424],[4.53474363,0.03016378,97.71304547],[4.53474313,0.03016205,97.71175654],[4.53474262,0.03016031,97.71046748],[4.53474212,0.03015858,97.70917827],[4.53474162,0.03015685,97.70788893],[4.53474111,0.03015512,97.70659944],[4.53474061,0.03015339,97.70530981],[4.5347401,0.03015166,97.70402004],[4.5347396,0.03014993,97.70273012],[4.53473909,0.0301482,97.70144007],[4.53473859,0.03014647,97.70014989],[4.53473809,0.03014474,97.69885956],[4.53473758,0.030143,97.69756909],[4.53473708,0.03014127,97.69627849],[4.53473657,0.03013954,97.69498775],[4.53473607,0.03013781,97.69369688],[4.53473556,0.03013608,97.69240586],[4.53473506,0.03013435,97.69111472],[4.53473455,0.03013262,97.68982344],[4.53473405,0.03013089,97.68853202],[4.53473354,0.03012916,97.68724047],[4.53473304,0.03012743,97.68594878],[4.53473253,0.0301257,97.68465697],[4.53473203,0.03012397,97.68336502],[4.53473152,0.03012224,97.68207294],[4.53473102,0.03012051,97.68078072],[4.53473051,0.03011878,97.67948838],[4.53473001,0.03011705,97.67819591],[4.5347295,0.03011531,97.6769033],[4.534729,0.03011358,97.67561057],[4.53472849,0.03011185,97.6743177],[4.53472799,0.03011012,97.67302471],[4.53472748,0.03010839,97.67173159],[4.53472698,0.03010666,97.67043834],[4.53472647,0.03010493,97.66914497],[4.53472597,0.0301032,97.66785147],[4.53472546,0.03010147,97.66655784],[4.53472496,0.03009974,97.6652641],[4.53472445,0.03009801,97.66397025],[4.53472394,0.03009628,97.6626763],[4.53472344,0.03009455,97.66138226],[4.53472293,0.03009282,97.66008812],[4.53472243,0.03009109,97.65879391],[4.53472192,0.03008936,97.65749962],[4.53472142,0.03008763,97.65620527],[4.53472091,0.0300859,97.65491086],[4.5347204,0.03008417,97.6536164],[4.5347199,0.03008244,97.65232189],[4.53471939,0.03008071,97.65102734],[4.53471889,0.03007898,97.64973276],[4.53471838,0.03007725,97.64843816],[4.53471788,0.03007552,97.64714355],[4.53471737,0.03007379,97.64584892],[4.53471686,0.03007206,97.64455429],[4.53471636,0.03007033,97.64325967],[4.53471585,0.0300686,97.64196505],[4.53471535,0.03006687,97.64067046],[4.53471484,0.03006514,97.63937589],[4.53471433,0.03006341,97.63808135],[4.53471383,0.03006168,97.63678686],[4.53471332,0.03005995,97.63549241],[4.53471282,0.03005822,97.63419802],[4.53471231,0.03005649,97.63290368],[4.5347118,0.03005476,97.63160942],[4.5347113,0.03005303,97.63031523],[4.53471079,0.0300513,97.62902112],[4.53471029,0.03004957,97.62772711],[4.53470978,0.03004784,97.62643319],[4.53470928,0.03004611,97.62513937],[4.53470877,0.03004438,97.62384566],[4.53470826,0.03004265,97.62255207],[4.53470776,0.03004092,97.62125861],[4.53470725,0.03003919,97.61996528],[4.53470675,0.03003746,97.61867209],[4.53470624,0.03003573,97.61737904],[4.53470574,0.030034,97.61608615],[4.53470523,0.03003227,97.61479341],[4.53470473,0.03003054,97.61350085],[4.53470422,0.03002881,97.61220845],[4.53470371,0.03002708,97.61091624],[4.53470321,0.03002535,97.60962422],[4.5347027,0.03002362,97.60833239],[4.5347022,0.03002189,97.60704077],[4.53470169,0.03002016,97.60574935],[4.53470119,0.03001843,97.60445816],[4.53470068,0.0300167,97.60316718],[4.53470018,0.03001497,97.60187644],[4.53469967,0.03001324,97.60058593],[4.53469917,0.03001151,97.59929567],[4.53469866,0.03000978,97.59800566],[4.53469816,0.03000805,97.59671591],[4.53469765,0.03000632,97.59542643],[4.53469715,0.03000459,97.59413722],[4.53469665,0.03000286,97.59284829],[4.53469614,0.03000113,97.59155965],[4.53469564,0.0299994,97.5902713],[4.53469513,0.02999767,97.58898325],[4.53469463,0.02999594,97.58769551],[4.53469412,0.02999421,97.58640809],[4.53469362,0.02999248,97.58512099],[4.53469311,0.02999075,97.58383422],[4.53469261,0.02998902,97.58254779],[4.53469211,0.02998729,97.5812617],[4.5346916,0.02998555,97.57997596],[4.5346911,0.02998382,97.57869058],[4.53469059,0.02998209,97.57740556],[4.53469009,0.02998036,97.57612092],[4.53468958,0.02997863,97.57483665],[4.53468908,0.0299769,97.57355278],[4.53468858,0.02997517,97.57226929],[4.53468807,0.02997344,97.57098621],[4.53468757,0.02997171,97.56970353],[4.53468706,0.02996998,97.56842127],[4.53468656,0.02996825,97.56713943],[4.53468606,0.02996651,97.56585802],[4.53468555,0.02996478,97.56457704],[4.53468505,0.02996305,97.56329651],[4.53468455,0.02996132,97.56201643],[4.53468404,0.02995959,97.5607368],[4.53468354,0.02995786,97.55945764],[4.53468303,0.02995613,97.55817895],[4.53468253,0.02995439,97.55690074],[4.53468203,0.02995266,97.55562302],[4.53468152,0.02995093,97.55434578],[4.53468102,0.0299492,97.55306905],[4.53468051,0.02994747,97.55179282],[4.53468001,0.02994574,97.55051711],[4.53467951,0.02994401,97.54924192],[4.534679,0.02994227,97.54796726],[4.5346785,0.02994054,97.54669313],[4.534678,0.02993881,97.54541954],[4.53467749,0.02993708,97.5441465],[4.53467699,0.02993535,97.54287402],[4.53467648,0.02993361,97.54160211],[4.53467598,0.02993188,97.54033076],[4.53467548,0.02993015,97.53905999],[4.53467497,0.02992842,97.53778981],[4.53467447,0.02992669,97.53652022],[4.53467397,0.02992495,97.53525123],[4.53467346,0.02992322,97.53398284],[4.53467296,0.02992149,97.53271507],[4.53467245,0.02991976,97.53144791],[4.53467195,0.02991803,97.53018139],[4.53467145,0.02991629,97.5289155],[4.53467094,0.02991456,97.52765025],[4.53467044,0.02991283,97.52638565],[4.53466994,0.0299111,97.52512171],[4.53466943,0.02990937,97.52385843],[4.53466893,0.02990763,97.52259582],[4.53466842,0.0299059,97.52133388],[4.53466792,0.02990417,97.52007264],[4.53466742,0.02990244,97.51881208],[4.53466691,0.0299007,97.51755222],[4.53466641,0.02989897,97.51629307],[4.5346659,0.02989724,97.51503463],[4.5346654,0.02989551,97.51377691],[4.5346649,0.02989377,97.51251992],[4.53466439,0.02989204,97.51126366],[4.53466389,0.02989031,97.51000815],[4.53466338,0.02988858,97.50875338],[4.53466288,0.02988684,97.50749937],[4.53466238,0.02988511,97.50624612],[4.53466187,0.02988338,97.50499364],[4.53466137,0.02988164,97.50374194],[4.53466086,0.02987991,97.50249102],[4.53466036,0.02987818,97.5012409],[4.53465985,0.02987645,97.49999157],[4.53465935,0.02987471,97.49874306],[4.53465885,0.02987298,97.49749535],[4.53465834,0.02987125,97.49624847],[4.53465784,0.02986951,97.49500241],[4.53465733,0.02986778,97.4937572],[4.53465683,0.02986605,97.49251282],[4.53465632,0.02986432,97.4912693],[4.53465582,0.02986258,97.49002664],[4.53465531,0.02986085,97.48878484],[4.53465481,0.02985912,97.48754392],[4.5346543,0.02985738,97.48630388],[4.5346538,0.02985565,97.48506473],[4.53465329,0.02985392,97.48382647],[4.53465279,0.02985218,97.48258912],[4.53465228,0.02985045,97.48135268],[4.53465178,0.02984872,97.48011716],[4.53465127,0.02984699,97.47888257],[4.53465077,0.02984525,97.47764891],[4.53465026,0.02984352,97.47641619],[4.53464976,0.02984179,97.47518442],[4.53464925,0.02984005,97.47395361],[4.53464875,0.02983832,97.47272376],[4.53464824,0.02983659,97.47149488],[4.53464774,0.02983485,97.47026698],[4.53464723,0.02983312,97.46904007],[4.53464673,0.02983139,97.46781415],[4.53464622,0.02982965,97.46658924],[4.53464571,0.02982792,97.46536533],[4.53464521,0.02982619,97.46414244],[4.5346447,0.02982445,97.46292058],[4.5346442,0.02982272,97.46169974],[4.53464369,0.02982099,97.46047995],[4.53464318,0.02981925,97.4592612],[4.53464268,0.02981752,97.45804351],[4.53464217,0.02981579,97.45682688],[4.53464167,0.02981405,97.45561131],[4.53464116,0.02981232,97.45439683],[4.53464065,0.02981059,97.45318343],[4.53464015,0.02980885,97.45197112],[4.53463964,0.02980712,97.45075991],[4.53463913,0.02980539,97.44954981],[4.53463863,0.02980365,97.44834082],[4.53463812,0.02980192,97.44713295],[4.53463761,0.02980018,97.44592622],[4.53463711,0.02979845,97.44472062],[4.5346366,0.02979672,97.44351616],[4.53463609,0.02979498,97.44231286],[4.53463558,0.02979325,97.44111071],[4.53463508,0.02979152,97.43990974],[4.53463457,0.02978979,97.43870994],[4.53463406,0.02978805,97.43751132],[4.53463356,0.02978632,97.43631389],[4.53463305,0.02978459,97.43511766],[4.53463254,0.02978285,97.43392263],[4.53463203,0.02978112,97.43272882],[4.53463153,0.02977939,97.43153622],[4.53463102,0.02977765,97.43034485],[4.53463051,0.02977592,97.42915472],[4.53463,0.02977419,97.42796583],[4.5346295,0.02977245,97.42677819],[4.53462899,0.02977072,97.42559181],[4.53462848,0.02976899,97.42440669],[4.53462797,0.02976726,97.42322285],[4.53462747,0.02976552,97.42204028],[4.53462696,0.02976379,97.42085901],[4.53462645,0.02976206,97.41967902],[4.53462595,0.02976033,97.41850033],[4.53462544,0.0297586,97.4173229],[4.53462493,0.02975686,97.41614672],[4.53462442,0.02975513,97.41497176],[4.53462392,0.0297534,97.413798],[4.53462341,0.02975167,97.41262542],[4.5346229,0.02974994,97.411454],[4.5346224,0.02974821,97.41028372],[4.53462189,0.02974647,97.40911455],[4.53462139,0.02974474,97.40794647],[4.53462088,0.02974301,97.40677946],[4.53462037,0.02974128,97.4056135],[4.53461987,0.02973955,97.40444857],[4.53461936,0.02973782,97.40328465],[4.53461886,0.02973609,97.40212171],[4.53461835,0.02973436,97.40095973],[4.53461784,0.02973262,97.39979869],[4.53461734,0.02973089,97.39863857],[4.53461683,0.02972916,97.39747935],[4.53461633,0.02972743,97.396321],[4.53461582,0.0297257,97.3951635],[4.53461531,0.02972397,97.39400684],[4.53461481,0.02972224,97.39285099],[4.5346143,0.02972051,97.39169592],[4.5346138,0.02971878,97.39054162],[4.53461329,0.02971705,97.38938806],[4.53461279,0.02971532,97.38823522],[4.53461228,0.02971359,97.38708309],[4.53461178,0.02971186,97.38593163],[4.53461127,0.02971013,97.38478083],[4.53461077,0.0297084,97.38363066],[4.53461026,0.02970667,97.38248111],[4.53460976,0.02970494,97.38133215],[4.53460925,0.02970321,97.38018375],[4.53460875,0.02970148,97.37903591],[4.53460824,0.02969975,97.37788858],[4.53460774,0.02969802,97.37674177],[4.53460723,0.02969629,97.37559543],[4.53460673,0.02969456,97.37444955],[4.53460622,0.02969284,97.37330411],[4.53460572,0.02969111,97.37215908],[4.53460521,0.02968938,97.37101445],[4.53460471,0.02968765,97.36987019],[4.5346042,0.02968592,97.36872628],[4.5346037,0.02968419,97.3675827],[4.5346032,0.02968246,97.36643942],[4.53460269,0.02968074,97.36529642],[4.53460219,0.02967901,97.36415369],[4.53460168,0.02967728,97.3630112],[4.53460118,0.02967555,97.36186892],[4.53460067,0.02967382,97.36072685],[4.53460017,0.0296721,97.35958494],[4.53459966,0.02967037,97.35844319],[4.53459916,0.02966864,97.35730157],[4.53459866,0.02966691,97.35616005],[4.53459815,0.02966518,97.35501862],[4.53459765,0.02966346,97.35387726],[4.53459714,0.02966173,97.35273593],[4.53459664,0.02966,97.35159463],[4.53459613,0.02965828,97.35045333],[4.53459563,0.02965655,97.349312],[4.53459513,0.02965482,97.34817062],[4.53459462,0.0296531,97.34702918],[4.53459412,0.02965137,97.34588765],[4.53459361,0.02964964,97.344746],[4.53459311,0.02964792,97.34360422],[4.5345926,0.02964619,97.34246229],[4.5345921,0.02964446,97.34132017],[4.5345916,0.02964274,97.34017786],[4.53459109,0.02964101,97.33903532],[4.53459059,0.02963928,97.33789254],[4.53459008,0.02963756,97.3367495],[4.53458958,0.02963583,97.33560616],[4.53458908,0.02963411,97.33446252],[4.53458857,0.02963238,97.33331854],[4.53458807,0.02963066,97.33217421],[4.53458756,0.02962893,97.33102951],[4.53458706,0.02962721,97.3298844],[4.53458655,0.02962548,97.32873888],[4.53458605,0.02962376,97.32759292],[4.53458554,0.02962203,97.32644654],[4.53458504,0.02962031,97.32529978],[4.53458454,0.02961858,97.32415265],[4.53458403,0.02961686,97.32300519],[4.53458353,0.02961513,97.32185741],[4.53458303,0.02961341,97.32070935],[4.53458252,0.02961169,97.31956103],[4.53458202,0.02960996,97.31841248],[4.53458151,0.02960824,97.31726372],[4.53458101,0.02960652,97.31611479],[4.53458051,0.02960479,97.3149657],[4.53458047,0.02960466,97.31487811],[4.5345824,0.02960409,97.32070773],[4.53458244,0.02960422,97.32079431],[4.53458294,0.02960595,97.32193022],[4.53458344,0.02960767,97.3230659],[4.53458394,0.0296094,97.32420132],[4.53458444,0.02961113,97.32533646],[4.53458494,0.02961285,97.32647128],[4.53458543,0.02961457,97.32760578],[4.53458593,0.0296163,97.32873991],[4.53458643,0.02961802,97.32987366],[4.53458693,0.02961975,97.331007],[4.53458743,0.02962147,97.3321399],[4.53458793,0.0296232,97.33327234],[4.53458843,0.02962492,97.3344043],[4.53458893,0.02962665,97.33553574],[4.53458943,0.02962838,97.3366667],[4.53458993,0.0296301,97.33779719],[4.53459043,0.02963183,97.33892724],[4.53459093,0.02963356,97.34005686],[4.53459143,0.02963528,97.34118609],[4.53459193,0.02963701,97.34231493],[4.53459243,0.02963874,97.34344343],[4.53459293,0.02964046,97.34457159],[4.53459343,0.02964219,97.34569944],[4.53459393,0.02964392,97.34682701],[4.53459443,0.02964564,97.34795432],[4.53459492,0.02964737,97.34908138],[4.53459542,0.0296491,97.35020823],[4.53459592,0.02965083,97.35133488],[4.53459642,0.02965255,97.35246136],[4.53459692,0.02965428,97.3535877],[4.53459742,0.02965601,97.3547139],[4.53459792,0.02965774,97.35584],[4.53459842,0.02965947,97.35696602],[4.53459892,0.0296612,97.35809199],[4.53459942,0.02966292,97.35921791],[4.53459992,0.02966465,97.36034382],[4.53460042,0.02966638,97.36146975],[4.53460091,0.02966811,97.3625957],[4.53460141,0.02966984,97.36372171],[4.53460191,0.02967157,97.3648478],[4.53460241,0.0296733,97.36597399],[4.53460291,0.02967503,97.3671003],[4.53460341,0.02967676,97.36822676],[4.53460391,0.02967849,97.36935339],[4.53460441,0.02968022,97.37048021],[4.53460491,0.02968194,97.37160724],[4.53460541,0.02968367,97.37273451],[4.53460591,0.0296854,97.37386204],[4.53460641,0.02968713,97.37498985],[4.53460691,0.02968886,97.37611796],[4.5346074,0.0296906,97.3772464],[4.5346079,0.02969233,97.3783752],[4.5346084,0.02969406,97.37950436],[4.5346089,0.02969579,97.38063392],[4.5346094,0.02969752,97.3817639],[4.5346099,0.02969925,97.38289432],[4.5346104,0.02970098,97.3840252],[4.5346109,0.02970271,97.38515657],[4.5346114,0.02970444,97.38628844],[4.5346119,0.02970617,97.38742085],[4.5346124,0.0297079,97.38855381],[4.5346129,0.02970963,97.38968735],[4.5346134,0.02971137,97.39082148],[4.5346139,0.0297131,97.39195624],[4.5346144,0.02971483,97.39309164],[4.5346149,0.02971656,97.39422771],[4.5346154,0.02971829,97.39536446],[4.5346159,0.02972002,97.39650193],[4.5346164,0.02972176,97.39764013],[4.5346169,0.02972349,97.39877909],[4.5346174,0.02972522,97.39991883],[4.5346179,0.02972695,97.40105937],[4.5346184,0.02972869,97.40220073],[4.5346189,0.02973042,97.40334295],[4.5346194,0.02973215,97.40448603],[4.5346199,0.02973388,97.40563],[4.5346204,0.02973562,97.40677489],[4.5346209,0.02973735,97.40792071],[4.5346214,0.02973908,97.40906749],[4.5346219,0.02974081,97.41021526],[4.5346224,0.02974255,97.41136403],[4.5346229,0.02974428,97.41251382],[4.5346234,0.02974601,97.41366467],[4.5346239,0.02974775,97.41481659],[4.5346244,0.02974948,97.4159696],[4.5346249,0.02975121,97.41712372],[4.53462541,0.02975295,97.41827899],[4.53462591,0.02975468,97.41943543],[4.53462641,0.02975642,97.42059311],[4.53462691,0.02975815,97.42175211],[4.53462741,0.02975988,97.42291252],[4.53462791,0.02976162,97.42407441],[4.53462841,0.02976335,97.42523787],[4.53462892,0.02976509,97.42640296],[4.53462942,0.02976682,97.42756973],[4.53462992,0.02976855,97.42873824],[4.53463042,0.02977029,97.42990854],[4.53463093,0.02977202,97.43108067],[4.53463143,0.02977376,97.4322547],[4.53463193,0.02977549,97.43343067],[4.53463244,0.02977722,97.43460863],[4.53463294,0.02977896,97.43578863],[4.53463344,0.02978069,97.43697073],[4.53463395,0.02978243,97.43815498],[4.53463445,0.02978416,97.43934143],[4.53463496,0.02978589,97.44053013],[4.53463546,0.02978763,97.44172113],[4.53463597,0.02978936,97.44291449],[4.53463647,0.0297911,97.44411025],[4.53463698,0.02979283,97.44530846],[4.53463749,0.02979456,97.44650919],[4.534638,0.0297963,97.44771247],[4.5346385,0.02979803,97.44891837],[4.53463901,0.02979976,97.45012693],[4.53463952,0.0298015,97.4513382],[4.53464003,0.02980323,97.45255223],[4.53464054,0.02980496,97.45376908],[4.53464105,0.0298067,97.45498873],[4.53464156,0.02980843,97.4562111],[4.53464207,0.02981016,97.45743611],[4.53464258,0.02981189,97.45866368],[4.53464309,0.02981363,97.45989373],[4.5346436,0.02981536,97.46112618],[4.53464412,0.02981709,97.46236095],[4.53464463,0.02981882,97.46359796],[4.53464514,0.02982055,97.46483712],[4.53464566,0.02982228,97.46607837],[4.53464617,0.02982401,97.46732161],[4.53464668,0.02982575,97.46856677],[4.5346472,0.02982748,97.46981377],[4.53464771,0.02982921,97.47106253],[4.53464823,0.02983094,97.47231296],[4.53464874,0.02983267,97.47356499],[4.53464925,0.0298344,97.47481854],[4.53464977,0.02983613,97.47607352],[4.53465028,0.02983786,97.47732986],[4.5346508,0.02983959,97.47858748],[4.53465131,0.02984132,97.47984629],[4.53465183,0.02984305,97.48110622],[4.53465234,0.02984478,97.48236718],[4.53465286,0.02984651,97.4836291],[4.53465337,0.02984825,97.4848919],[4.53465389,0.02984998,97.48615549],[4.5346544,0.02985171,97.48741979],[4.53465492,0.02985344,97.48868474],[4.53465543,0.02985517,97.48995026],[4.53465594,0.0298569,97.49121632],[4.53465646,0.02985863,97.49248288],[4.53465697,0.02986036,97.4937499],[4.53465748,0.02986209,97.49501735],[4.534658,0.02986382,97.49628518],[4.53465851,0.02986555,97.49755336],[4.53465902,0.02986728,97.49882185],[4.53465954,0.02986901,97.5000906],[4.53466005,0.02987074,97.50135959],[4.53466056,0.02987247,97.50262878],[4.53466107,0.0298742,97.50389811],[4.53466158,0.02987594,97.50516757],[4.53466209,0.02987767,97.50643711],[4.53466261,0.0298794,97.50770669],[4.53466312,0.02988113,97.50897627],[4.53466363,0.02988286,97.51024581],[4.53466414,0.02988459,97.51151528],[4.53466465,0.02988632,97.51278464],[4.53466516,0.02988805,97.51405386],[4.53466566,0.02988978,97.51532288],[4.53466617,0.02989152,97.51659169],[4.53466668,0.02989325,97.51786023],[4.53466719,0.02989498,97.51912847],[4.5346677,0.02989671,97.52039637],[4.5346682,0.02989844,97.5216639],[4.53466871,0.02990017,97.52293101],[4.53466922,0.02990191,97.52419767],[4.53466972,0.02990364,97.52546385],[4.53467023,0.02990537,97.52672949],[4.53467073,0.0299071,97.52799457],[4.53467124,0.02990883,97.52925905],[4.53467174,0.02991057,97.53052289],[4.53467225,0.0299123,97.53178606],[4.53467275,0.02991403,97.5330485],[4.53467325,0.02991576,97.5343102],[4.53467375,0.0299175,97.5355711],[4.53467426,0.02991923,97.53683119],[4.53467476,0.02992096,97.53809051],[4.53467526,0.02992269,97.53934911],[4.53467576,0.02992443,97.54060707],[4.53467626,0.02992616,97.54186443],[4.53467676,0.02992789,97.54312126],[4.53467726,0.02992963,97.54437762],[4.53467776,0.02993136,97.54563355],[4.53467825,0.02993309,97.54688914],[4.53467875,0.02993483,97.54814442],[4.53467925,0.02993656,97.54939946],[4.53467975,0.0299383,97.55065433],[4.53468025,0.02994003,97.55190907],[4.53468074,0.02994176,97.55316375],[4.53468124,0.0299435,97.55441843],[4.53468174,0.02994523,97.55567316],[4.53468223,0.02994696,97.556928],[4.53468273,0.0299487,97.55818302],[4.53468323,0.02995043,97.55943827],[4.53468372,0.02995216,97.56069382],[4.53468422,0.0299539,97.56194971],[4.53468472,0.02995563,97.56320601],[4.53468521,0.02995737,97.56446278],[4.53468571,0.0299591,97.56572007],[4.53468621,0.02996083,97.56697795],[4.5346867,0.02996257,97.56823647],[4.5346872,0.0299643,97.56949569],[4.5346877,0.02996603,97.57075568],[4.53468819,0.02996777,97.57201648],[4.53468869,0.0299695,97.57327817],[4.53468919,0.02997123,97.57454079],[4.53468969,0.02997297,97.57580441],[4.53469018,0.0299747,97.57706908],[4.53469068,0.02997643,97.57833487],[4.53469118,0.02997816,97.57960183],[4.53469168,0.0299799,97.58087002],[4.53469218,0.02998163,97.58213951],[4.53469268,0.02998336,97.58341034],[4.53469318,0.02998509,97.58468257],[4.53469368,0.02998682,97.58595628],[4.53469418,0.02998856,97.58723151],[4.53469468,0.02999029,97.58850832],[4.53469518,0.02999202,97.58978678],[4.53469568,0.02999375,97.59106694],[4.53469619,0.02999548,97.59234886],[4.53469669,0.02999721,97.59363259],[4.53469719,0.02999894,97.59491821],[4.5346977,0.03000067,97.59620576],[4.5346982,0.0300024,97.59749531],[4.53469871,0.03000413,97.59878691],[4.53469921,0.03000586,97.60008062],[4.53469972,0.03000759,97.60137651],[4.53470023,0.03000932,97.6026746],[4.53470074,0.03001105,97.60397484],[4.53470125,0.03001278,97.60527715],[4.53470176,0.03001451,97.60658145],[4.53470227,0.03001624,97.60788765],[4.53470278,0.03001796,97.60919567],[4.53470329,0.03001969,97.61050544],[4.5347038,0.03002142,97.61181686],[4.53470431,0.03002315,97.61312987],[4.53470482,0.03002488,97.61444437],[4.53470534,0.0300266,97.61576029],[4.53470585,0.03002833,97.61707754],[4.53470637,0.03003006,97.61839604],[4.53470688,0.03003179,97.61971572],[4.53470739,0.03003351,97.62103649],[4.53470791,0.03003524,97.62235826],[4.53470843,0.03003697,97.62368097],[4.53470894,0.03003869,97.62500452],[4.53470946,0.03004042,97.62632883],[4.53470997,0.03004215,97.62765383],[4.53471049,0.03004387,97.62897943],[4.53471101,0.0300456,97.63030555],[4.53471152,0.03004733,97.63163211],[4.53471204,0.03004905,97.63295903],[4.53471256,0.03005078,97.63428622],[4.53471307,0.03005251,97.63561361],[4.53471359,0.03005423,97.63694112],[4.53471411,0.03005596,97.63826865],[4.53471462,0.03005769,97.63959614],[4.53471514,0.03005941,97.64092349],[4.53471566,0.03006114,97.64225064],[4.53471617,0.03006287,97.64357749],[4.53471669,0.03006459,97.64490396],[4.53471721,0.03006632,97.64622998],[4.53471772,0.03006805,97.64755546],[4.53471824,0.03006977,97.64888033],[4.53471876,0.0300715,97.65020449],[4.53471927,0.03007323,97.65152787],[4.53471979,0.03007496,97.65285038],[4.5347203,0.03007668,97.65417196],[4.53472082,0.03007841,97.6554925],[4.53472133,0.03008014,97.65681194],[4.53472184,0.03008187,97.65813019],[4.53472236,0.03008359,97.65944716],[4.53472287,0.03008532,97.66076279],[4.53472338,0.03008705,97.66207697],[4.53472389,0.03008878,97.66338965],[4.5347244,0.03009051,97.66470072],[4.53472492,0.03009224,97.66601012],[4.53472543,0.03009396,97.66731776],[4.53472593,0.03009569,97.66862355],[4.53472644,0.03009742,97.66992742],[4.53472695,0.03009915,97.67122929],[4.53472746,0.03010088,97.67252913],[4.53472797,0.03010261,97.67382702],[4.53472847,0.03010434,97.67512298],[4.53472898,0.03010607,97.67641709],[4.53472948,0.0301078,97.6777094],[4.53472999,0.03010953,97.67899997],[4.53473049,0.03011126,97.68028887],[4.53473099,0.03011299,97.68157614],[4.5347315,0.03011473,97.68286185],[4.534732,0.03011646,97.68414607],[4.5347325,0.03011819,97.68542884],[4.534733,0.03011992,97.68671023],[4.5347335,0.03012165,97.68799031],[4.534734,0.03012338,97.68926912],[4.5347345,0.03012512,97.69054672],[4.534735,0.03012685,97.69182319],[4.5347355,0.03012858,97.69309858],[4.534736,0.03013031,97.69437294],[4.5347365,0.03013205,97.69564634],[4.534737,0.03013378,97.69691883],[4.5347375,0.03013551,97.69819048],[4.53473799,0.03013724,97.69946135],[4.53473849,0.03013898,97.70073149],[4.53473899,0.03014071,97.70200097],[4.53473949,0.03014244,97.70326985],[4.53473998,0.03014417,97.70453818],[4.53474048,0.03014591,97.70580603],[4.53474098,0.03014764,97.70707345],[4.53474147,0.03014937,97.7083405],[4.53474197,0.03015111,97.70960725],[4.53474247,0.03015284,97.71087375],[4.53474296,0.03015457,97.71214007],[4.53474346,0.03015631,97.71340626],[4.53474396,0.03015804,97.71467239],[4.53474445,0.03015977,97.71593851],[4.53474495,0.03016151,97.71720468],[4.53474544,0.03016324,97.71847096],[4.53474594,0.03016497,97.71973742],[4.53474644,0.03016671,97.72100412],[4.53474693,0.03016844,97.72227111],[4.53474743,0.03017017,97.72353845],[4.53474793,0.03017191,97.7248062],[4.53474842,0.03017364,97.72607443],[4.53474892,0.03017537,97.72734319],[4.53474942,0.03017711,97.72861255],[4.53474992,0.03017884,97.72988256],[4.53475042,0.03018057,97.73115328],[4.53475091,0.03018231,97.73242478],[4.53475141,0.03018404,97.73369711],[4.53475191,0.03018577,97.73497034],[4.53475241,0.0301875,97.73624453],[4.53475291,0.03018924,97.73751973],[4.53475341,0.03019097,97.738796],[4.53475391,0.0301927,97.74007341],[4.53475441,0.03019443,97.74135202],[4.53475491,0.03019617,97.74263189],[4.53475541,0.0301979,97.74391308],[4.53475592,0.03019963,97.74519564],[4.53475642,0.03020136,97.74647962],[4.53475692,0.03020309,97.74776499],[4.53475742,0.03020482,97.74905169],[4.53475793,0.03020656,97.75033966],[4.53475843,0.03020829,97.75162886],[4.53475894,0.03021002,97.75291922],[4.53475944,0.03021175,97.75421069],[4.53475995,0.03021348,97.75550321],[4.53476045,0.03021521,97.75679674],[4.53476096,0.03021694,97.75809121],[4.53476147,0.03021867,97.75938658],[4.53476197,0.0302204,97.76068278],[4.53476248,0.03022213,97.76197976],[4.53476299,0.03022386,97.76327747],[4.5347635,0.03022559,97.76457585],[4.534764,0.03022733,97.76587485],[4.53476451,0.03022906,97.7671744],[4.53476502,0.03023079,97.76847447],[4.53476553,0.03023252,97.76977499],[4.53476604,0.03023425,97.7710759],[4.53476655,0.03023598,97.77237716],[4.53476705,0.03023771,97.7736787],[4.53476756,0.03023944,97.77498048],[4.53476807,0.03024117,97.77628243],[4.53476858,0.0302429,97.7775845],[4.53476909,0.03024463,97.77888664],[4.5347696,0.03024636,97.78018879],[4.53477011,0.03024809,97.78149089],[4.53477062,0.03024982,97.7827929],[4.53477113,0.03025155,97.78409475],[4.53477164,0.03025328,97.78539639],[4.53477214,0.03025501,97.78669776],[4.53477265,0.03025674,97.78799882],[4.53477316,0.03025847,97.78929949],[4.53477367,0.0302602,97.79059974],[4.53477418,0.03026193,97.79189952],[4.53477469,0.03026366,97.79319885],[4.5347752,0.03026539,97.7944977],[4.5347757,0.03026712,97.79579608],[4.53477621,0.03026885,97.79709399],[4.53477672,0.03027058,97.79839141],[4.53477723,0.03027231,97.79968836],[4.53477774,0.03027404,97.80098483],[4.53477824,0.03027577,97.8022808],[4.53477875,0.0302775,97.80357629],[4.53477926,0.03027923,97.80487128],[4.53477977,0.03028096,97.80616577],[4.53478027,0.03028269,97.80745976],[4.53478078,0.03028442,97.80875325],[4.53478129,0.03028615,97.81004623],[4.53478179,0.03028789,97.8113387],[4.5347823,0.03028962,97.81263065],[4.53478281,0.03029135,97.81392209],[4.53478331,0.03029308,97.815213],[4.53478382,0.03029481,97.8165034],[4.53478433,0.03029654,97.81779326],[4.53478483,0.03029827,97.81908259],[4.53478534,0.0303,97.82037139],[4.53478584,0.03030173,97.82165966],[4.53478635,0.03030346,97.82294738],[4.53478685,0.03030519,97.82423455],[4.53478736,0.03030693,97.82552118],[4.53478787,0.03030866,97.82680726],[4.53478837,0.03031039,97.82809279],[4.53478888,0.03031212,97.82937775],[4.53478938,0.03031385,97.83066216],[4.53478989,0.03031558,97.831946],[4.53479039,0.03031731,97.83322927],[4.53479089,0.03031905,97.83451198],[4.5347914,0.03032078,97.8357941],[4.5347919,0.03032251,97.83707565],[4.53479241,0.03032424,97.83835662],[4.53479291,0.03032597,97.83963701],[4.53479342,0.0303277,97.8409168],[4.53479392,0.03032943,97.84219601],[4.53479442,0.03033117,97.84347462],[4.53479493,0.0303329,97.84475263],[4.53479543,0.03033463,97.84603004],[4.53479593,0.03033636,97.84730685],[4.53479644,0.03033809,97.84858305],[4.53479694,0.03033983,97.84985863],[4.53479744,0.03034156,97.8511336],[4.53479794,0.03034329,97.85240796],[4.53479845,0.03034502,97.85368169],[4.53479895,0.03034675,97.85495479],[4.53479945,0.03034849,97.85622727],[4.53479995,0.03035022,97.85749911],[4.53480046,0.03035195,97.85877032],[4.53480096,0.03035368,97.86004089],[4.53480146,0.03035541,97.86131081],[4.53480196,0.03035715,97.8625801],[4.53480246,0.03035888,97.86384873],[4.53480297,0.03036061,97.86511671],[4.53480347,0.03036234,97.86638403],[4.53480397,0.03036408,97.86765069],[4.53480447,0.03036581,97.86891669],[4.53480497,0.03036754,97.87018202],[4.53480547,0.03036927,97.87144668],[4.53480597,0.03037101,97.87271067],[4.53480647,0.03037274,97.87397399],[4.53480697,0.03037447,97.87523662],[4.53480747,0.0303762,97.87649856],[4.53480797,0.03037794,97.87775982],[4.53480847,0.03037967,97.87902039],[4.53480897,0.0303814,97.88028027],[4.53480947,0.03038313,97.88153945],[4.53480997,0.03038487,97.88279792],[4.53481047,0.0303866,97.88405569],[4.53481097,0.03038833,97.88531275],[4.53481147,0.03039007,97.8865691],[4.53481197,0.0303918,97.88782474],[4.53481247,0.03039353,97.88907965],[4.53481297,0.03039527,97.89033385],[4.53481347,0.030397,97.89158731],[4.5348115,0.03039758,97.8855434]]],"type":"Polygon"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004700","id":1,"type":"shoulder","predecessorId":0,"sOffset":0.0}},{"geometry":{"coordinates":[[[4.53481347,0.030397,97.89158731],[4.53481297,0.03039527,97.89033385],[4.53481247,0.03039353,97.88907965],[4.53481197,0.0303918,97.88782474],[4.53481147,0.03039007,97.8865691],[4.53481097,0.03038833,97.88531275],[4.53481047,0.0303866,97.88405569],[4.53480997,0.03038487,97.88279792],[4.53480947,0.03038313,97.88153945],[4.53480897,0.0303814,97.88028027],[4.53480847,0.03037967,97.87902039],[4.53480797,0.03037794,97.87775982],[4.53480747,0.0303762,97.87649856],[4.53480697,0.03037447,97.87523662],[4.53480647,0.03037274,97.87397399],[4.53480597,0.03037101,97.87271067],[4.53480547,0.03036927,97.87144668],[4.53480497,0.03036754,97.87018202],[4.53480447,0.03036581,97.86891669],[4.53480397,0.03036408,97.86765069],[4.53480347,0.03036234,97.86638403],[4.53480297,0.03036061,97.86511671],[4.53480246,0.03035888,97.86384873],[4.53480196,0.03035715,97.8625801],[4.53480146,0.03035541,97.86131081],[4.53480096,0.03035368,97.86004089],[4.53480046,0.03035195,97.85877032],[4.53479995,0.03035022,97.85749911],[4.53479945,0.03034849,97.85622727],[4.53479895,0.03034675,97.85495479],[4.53479845,0.03034502,97.85368169],[4.53479794,0.03034329,97.85240796],[4.53479744,0.03034156,97.8511336],[4.53479694,0.03033983,97.84985863],[4.53479644,0.03033809,97.84858305],[4.53479593,0.03033636,97.84730685],[4.53479543,0.03033463,97.84603004],[4.53479493,0.0303329,97.84475263],[4.53479442,0.03033117,97.84347462],[4.53479392,0.03032943,97.84219601],[4.53479342,0.0303277,97.8409168],[4.53479291,0.03032597,97.83963701],[4.53479241,0.03032424,97.83835662],[4.5347919,0.03032251,97.83707565],[4.5347914,0.03032078,97.8357941],[4.53479089,0.03031905,97.83451198],[4.53479039,0.03031731,97.83322927],[4.53478989,0.03031558,97.831946],[4.53478938,0.03031385,97.83066216],[4.53478888,0.03031212,97.82937775],[4.53478837,0.03031039,97.82809279],[4.53478787,0.03030866,97.82680726],[4.53478736,0.03030693,97.82552118],[4.53478685,0.03030519,97.82423455],[4.53478635,0.03030346,97.82294738],[4.53478584,0.03030173,97.82165966],[4.53478534,0.0303,97.82037139],[4.53478483,0.03029827,97.81908259],[4.53478433,0.03029654,97.81779326],[4.53478382,0.03029481,97.8165034],[4.53478331,0.03029308,97.815213],[4.53478281,0.03029135,97.81392209],[4.5347823,0.03028962,97.81263065],[4.53478179,0.03028789,97.8113387],[4.53478129,0.03028615,97.81004623],[4.53478078,0.03028442,97.80875325],[4.53478027,0.03028269,97.80745976],[4.53477977,0.03028096,97.80616577],[4.53477926,0.03027923,97.80487128],[4.53477875,0.0302775,97.80357629],[4.53477824,0.03027577,97.8022808],[4.53477774,0.03027404,97.80098483],[4.53477723,0.03027231,97.79968836],[4.53477672,0.03027058,97.79839141],[4.53477621,0.03026885,97.79709399],[4.5347757,0.03026712,97.79579608],[4.5347752,0.03026539,97.7944977],[4.53477469,0.03026366,97.79319885],[4.53477418,0.03026193,97.79189952],[4.53477367,0.0302602,97.79059974],[4.53477316,0.03025847,97.78929949],[4.53477265,0.03025674,97.78799882],[4.53477214,0.03025501,97.78669776],[4.53477164,0.03025328,97.78539639],[4.53477113,0.03025155,97.78409475],[4.53477062,0.03024982,97.7827929],[4.53477011,0.03024809,97.78149089],[4.5347696,0.03024636,97.78018879],[4.53476909,0.03024463,97.77888664],[4.53476858,0.0302429,97.7775845],[4.53476807,0.03024117,97.77628243],[4.53476756,0.03023944,97.77498048],[4.53476705,0.03023771,97.7736787],[4.53476655,0.03023598,97.77237716],[4.53476604,0.03023425,97.7710759],[4.53476553,0.03023252,97.76977499],[4.53476502,0.03023079,97.76847447],[4.53476451,0.03022906,97.7671744],[4.534764,0.03022733,97.76587485],[4.5347635,0.03022559,97.76457585],[4.53476299,0.03022386,97.76327747],[4.53476248,0.03022213,97.76197976],[4.53476197,0.0302204,97.76068278],[4.53476147,0.03021867,97.75938658],[4.53476096,0.03021694,97.75809121],[4.53476045,0.03021521,97.75679674],[4.53475995,0.03021348,97.75550321],[4.53475944,0.03021175,97.75421069],[4.53475894,0.03021002,97.75291922],[4.53475843,0.03020829,97.75162886],[4.53475793,0.03020656,97.75033966],[4.53475742,0.03020482,97.74905169],[4.53475692,0.03020309,97.74776499],[4.53475642,0.03020136,97.74647962],[4.53475592,0.03019963,97.74519564],[4.53475541,0.0301979,97.74391308],[4.53475491,0.03019617,97.74263189],[4.53475441,0.03019443,97.74135202],[4.53475391,0.0301927,97.74007341],[4.53475341,0.03019097,97.738796],[4.53475291,0.03018924,97.73751973],[4.53475241,0.0301875,97.73624453],[4.53475191,0.03018577,97.73497034],[4.53475141,0.03018404,97.73369711],[4.53475091,0.03018231,97.73242478],[4.53475042,0.03018057,97.73115328],[4.53474992,0.03017884,97.72988256],[4.53474942,0.03017711,97.72861255],[4.53474892,0.03017537,97.72734319],[4.53474842,0.03017364,97.72607443],[4.53474793,0.03017191,97.7248062],[4.53474743,0.03017017,97.72353845],[4.53474693,0.03016844,97.72227111],[4.53474644,0.03016671,97.72100412],[4.53474594,0.03016497,97.71973742],[4.53474544,0.03016324,97.71847096],[4.53474495,0.03016151,97.71720468],[4.53474445,0.03015977,97.71593851],[4.53474396,0.03015804,97.71467239],[4.53474346,0.03015631,97.71340626],[4.53474296,0.03015457,97.71214007],[4.53474247,0.03015284,97.71087375],[4.53474197,0.03015111,97.70960725],[4.53474147,0.03014937,97.7083405],[4.53474098,0.03014764,97.70707345],[4.53474048,0.03014591,97.70580603],[4.53473998,0.03014417,97.70453818],[4.53473949,0.03014244,97.70326985],[4.53473899,0.03014071,97.70200097],[4.53473849,0.03013898,97.70073149],[4.53473799,0.03013724,97.69946135],[4.5347375,0.03013551,97.69819048],[4.534737,0.03013378,97.69691883],[4.5347365,0.03013205,97.69564634],[4.534736,0.03013031,97.69437294],[4.5347355,0.03012858,97.69309858],[4.534735,0.03012685,97.69182319],[4.5347345,0.03012512,97.69054672],[4.534734,0.03012338,97.68926912],[4.5347335,0.03012165,97.68799031],[4.534733,0.03011992,97.68671023],[4.5347325,0.03011819,97.68542884],[4.534732,0.03011646,97.68414607],[4.5347315,0.03011473,97.68286185],[4.53473099,0.03011299,97.68157614],[4.53473049,0.03011126,97.68028887],[4.53472999,0.03010953,97.67899997],[4.53472948,0.0301078,97.6777094],[4.53472898,0.03010607,97.67641709],[4.53472847,0.03010434,97.67512298],[4.53472797,0.03010261,97.67382702],[4.53472746,0.03010088,97.67252913],[4.53472695,0.03009915,97.67122929],[4.53472644,0.03009742,97.66992742],[4.53472593,0.03009569,97.66862355],[4.53472543,0.03009396,97.66731776],[4.53472492,0.03009224,97.66601012],[4.5347244,0.03009051,97.66470072],[4.53472389,0.03008878,97.66338965],[4.53472338,0.03008705,97.66207697],[4.53472287,0.03008532,97.66076279],[4.53472236,0.03008359,97.65944716],[4.53472184,0.03008187,97.65813019],[4.53472133,0.03008014,97.65681194],[4.53472082,0.03007841,97.6554925],[4.5347203,0.03007668,97.65417196],[4.53471979,0.03007496,97.65285038],[4.53471927,0.03007323,97.65152787],[4.53471876,0.0300715,97.65020449],[4.53471824,0.03006977,97.64888033],[4.53471772,0.03006805,97.64755546],[4.53471721,0.03006632,97.64622998],[4.53471669,0.03006459,97.64490396],[4.53471617,0.03006287,97.64357749],[4.53471566,0.03006114,97.64225064],[4.53471514,0.03005941,97.64092349],[4.53471462,0.03005769,97.63959614],[4.53471411,0.03005596,97.63826865],[4.53471359,0.03005423,97.63694112],[4.53471307,0.03005251,97.63561361],[4.53471256,0.03005078,97.63428622],[4.53471204,0.03004905,97.63295903],[4.53471152,0.03004733,97.63163211],[4.53471101,0.0300456,97.63030555],[4.53471049,0.03004387,97.62897943],[4.53470997,0.03004215,97.62765383],[4.53470946,0.03004042,97.62632883],[4.53470894,0.03003869,97.62500452],[4.53470843,0.03003697,97.62368097],[4.53470791,0.03003524,97.62235826],[4.53470739,0.03003351,97.62103649],[4.53470688,0.03003179,97.61971572],[4.53470637,0.03003006,97.61839604],[4.53470585,0.03002833,97.61707754],[4.53470534,0.0300266,97.61576029],[4.53470482,0.03002488,97.61444437],[4.53470431,0.03002315,97.61312987],[4.5347038,0.03002142,97.61181686],[4.53470329,0.03001969,97.61050544],[4.53470278,0.03001796,97.60919567],[4.53470227,0.03001624,97.60788765],[4.53470176,0.03001451,97.60658145],[4.53470125,0.03001278,97.60527715],[4.53470074,0.03001105,97.60397484],[4.53470023,0.03000932,97.6026746],[4.53469972,0.03000759,97.60137651],[4.53469921,0.03000586,97.60008062],[4.53469871,0.03000413,97.59878691],[4.5346982,0.0300024,97.59749531],[4.5346977,0.03000067,97.59620576],[4.53469719,0.02999894,97.59491821],[4.53469669,0.02999721,97.59363259],[4.53469619,0.02999548,97.59234886],[4.53469568,0.02999375,97.59106694],[4.53469518,0.02999202,97.58978678],[4.53469468,0.02999029,97.58850832],[4.53469418,0.02998856,97.58723151],[4.53469368,0.02998682,97.58595628],[4.53469318,0.02998509,97.58468257],[4.53469268,0.02998336,97.58341034],[4.53469218,0.02998163,97.58213951],[4.53469168,0.0299799,97.58087002],[4.53469118,0.02997816,97.57960183],[4.53469068,0.02997643,97.57833487],[4.53469018,0.0299747,97.57706908],[4.53468969,0.02997297,97.57580441],[4.53468919,0.02997123,97.57454079],[4.53468869,0.0299695,97.57327817],[4.53468819,0.02996777,97.57201648],[4.5346877,0.02996603,97.57075568],[4.5346872,0.0299643,97.56949569],[4.5346867,0.02996257,97.56823647],[4.53468621,0.02996083,97.56697795],[4.53468571,0.0299591,97.56572007],[4.53468521,0.02995737,97.56446278],[4.53468472,0.02995563,97.56320601],[4.53468422,0.0299539,97.56194971],[4.53468372,0.02995216,97.56069382],[4.53468323,0.02995043,97.55943827],[4.53468273,0.0299487,97.55818302],[4.53468223,0.02994696,97.556928],[4.53468174,0.02994523,97.55567316],[4.53468124,0.0299435,97.55441843],[4.53468074,0.02994176,97.55316375],[4.53468025,0.02994003,97.55190907],[4.53467975,0.0299383,97.55065433],[4.53467925,0.02993656,97.54939946],[4.53467875,0.02993483,97.54814442],[4.53467825,0.02993309,97.54688914],[4.53467776,0.02993136,97.54563355],[4.53467726,0.02992963,97.54437762],[4.53467676,0.02992789,97.54312126],[4.53467626,0.02992616,97.54186443],[4.53467576,0.02992443,97.54060707],[4.53467526,0.02992269,97.53934911],[4.53467476,0.02992096,97.53809051],[4.53467426,0.02991923,97.53683119],[4.53467375,0.0299175,97.5355711],[4.53467325,0.02991576,97.5343102],[4.53467275,0.02991403,97.5330485],[4.53467225,0.0299123,97.53178606],[4.53467174,0.02991057,97.53052289],[4.53467124,0.02990883,97.52925905],[4.53467073,0.0299071,97.52799457],[4.53467023,0.02990537,97.52672949],[4.53466972,0.02990364,97.52546385],[4.53466922,0.02990191,97.52419767],[4.53466871,0.02990017,97.52293101],[4.5346682,0.02989844,97.5216639],[4.5346677,0.02989671,97.52039637],[4.53466719,0.02989498,97.51912847],[4.53466668,0.02989325,97.51786023],[4.53466617,0.02989152,97.51659169],[4.53466566,0.02988978,97.51532288],[4.53466516,0.02988805,97.51405386],[4.53466465,0.02988632,97.51278464],[4.53466414,0.02988459,97.51151528],[4.53466363,0.02988286,97.51024581],[4.53466312,0.02988113,97.50897627],[4.53466261,0.0298794,97.50770669],[4.53466209,0.02987767,97.50643711],[4.53466158,0.02987594,97.50516757],[4.53466107,0.0298742,97.50389811],[4.53466056,0.02987247,97.50262878],[4.53466005,0.02987074,97.50135959],[4.53465954,0.02986901,97.5000906],[4.53465902,0.02986728,97.49882185],[4.53465851,0.02986555,97.49755336],[4.534658,0.02986382,97.49628518],[4.53465748,0.02986209,97.49501735],[4.53465697,0.02986036,97.4937499],[4.53465646,0.02985863,97.49248288],[4.53465594,0.0298569,97.49121632],[4.53465543,0.02985517,97.48995026],[4.53465492,0.02985344,97.48868474],[4.5346544,0.02985171,97.48741979],[4.53465389,0.02984998,97.48615549],[4.53465337,0.02984825,97.4848919],[4.53465286,0.02984651,97.4836291],[4.53465234,0.02984478,97.48236718],[4.53465183,0.02984305,97.48110622],[4.53465131,0.02984132,97.47984629],[4.5346508,0.02983959,97.47858748],[4.53465028,0.02983786,97.47732986],[4.53464977,0.02983613,97.47607352],[4.53464925,0.0298344,97.47481854],[4.53464874,0.02983267,97.47356499],[4.53464823,0.02983094,97.47231296],[4.53464771,0.02982921,97.47106253],[4.5346472,0.02982748,97.46981377],[4.53464668,0.02982575,97.46856677],[4.53464617,0.02982401,97.46732161],[4.53464566,0.02982228,97.46607837],[4.53464514,0.02982055,97.46483712],[4.53464463,0.02981882,97.46359796],[4.53464412,0.02981709,97.46236095],[4.5346436,0.02981536,97.46112618],[4.53464309,0.02981363,97.45989373],[4.53464258,0.02981189,97.45866368],[4.53464207,0.02981016,97.45743611],[4.53464156,0.02980843,97.4562111],[4.53464105,0.0298067,97.45498873],[4.53464054,0.02980496,97.45376908],[4.53464003,0.02980323,97.45255223],[4.53463952,0.0298015,97.4513382],[4.53463901,0.02979976,97.45012693],[4.5346385,0.02979803,97.44891837],[4.534638,0.0297963,97.44771247],[4.53463749,0.02979456,97.44650919],[4.53463698,0.02979283,97.44530846],[4.53463647,0.0297911,97.44411025],[4.53463597,0.02978936,97.44291449],[4.53463546,0.02978763,97.44172113],[4.53463496,0.02978589,97.44053013],[4.53463445,0.02978416,97.43934143],[4.53463395,0.02978243,97.43815498],[4.53463344,0.02978069,97.43697073],[4.53463294,0.02977896,97.43578863],[4.53463244,0.02977722,97.43460863],[4.53463193,0.02977549,97.43343067],[4.53463143,0.02977376,97.4322547],[4.53463093,0.02977202,97.43108067],[4.53463042,0.02977029,97.42990854],[4.53462992,0.02976855,97.42873824],[4.53462942,0.02976682,97.42756973],[4.53462892,0.02976509,97.42640296],[4.53462841,0.02976335,97.42523787],[4.53462791,0.02976162,97.42407441],[4.53462741,0.02975988,97.42291252],[4.53462691,0.02975815,97.42175211],[4.53462641,0.02975642,97.42059311],[4.53462591,0.02975468,97.41943543],[4.53462541,0.02975295,97.41827899],[4.5346249,0.02975121,97.41712372],[4.5346244,0.02974948,97.4159696],[4.5346239,0.02974775,97.41481659],[4.5346234,0.02974601,97.41366467],[4.5346229,0.02974428,97.41251382],[4.5346224,0.02974255,97.41136403],[4.5346219,0.02974081,97.41021526],[4.5346214,0.02973908,97.40906749],[4.5346209,0.02973735,97.40792071],[4.5346204,0.02973562,97.40677489],[4.5346199,0.02973388,97.40563],[4.5346194,0.02973215,97.40448603],[4.5346189,0.02973042,97.40334295],[4.5346184,0.02972869,97.40220073],[4.5346179,0.02972695,97.40105937],[4.5346174,0.02972522,97.39991883],[4.5346169,0.02972349,97.39877909],[4.5346164,0.02972176,97.39764013],[4.5346159,0.02972002,97.39650193],[4.5346154,0.02971829,97.39536446],[4.5346149,0.02971656,97.39422771],[4.5346144,0.02971483,97.39309164],[4.5346139,0.0297131,97.39195624],[4.5346134,0.02971137,97.39082148],[4.5346129,0.02970963,97.38968735],[4.5346124,0.0297079,97.38855381],[4.5346119,0.02970617,97.38742085],[4.5346114,0.02970444,97.38628844],[4.5346109,0.02970271,97.38515657],[4.5346104,0.02970098,97.3840252],[4.5346099,0.02969925,97.38289432],[4.5346094,0.02969752,97.3817639],[4.5346089,0.02969579,97.38063392],[4.5346084,0.02969406,97.37950436],[4.5346079,0.02969233,97.3783752],[4.5346074,0.0296906,97.3772464],[4.53460691,0.02968886,97.37611796],[4.53460641,0.02968713,97.37498985],[4.53460591,0.0296854,97.37386204],[4.53460541,0.02968367,97.37273451],[4.53460491,0.02968194,97.37160724],[4.53460441,0.02968022,97.37048021],[4.53460391,0.02967849,97.36935339],[4.53460341,0.02967676,97.36822676],[4.53460291,0.02967503,97.3671003],[4.53460241,0.0296733,97.36597399],[4.53460191,0.02967157,97.3648478],[4.53460141,0.02966984,97.36372171],[4.53460091,0.02966811,97.3625957],[4.53460042,0.02966638,97.36146975],[4.53459992,0.02966465,97.36034382],[4.53459942,0.02966292,97.35921791],[4.53459892,0.0296612,97.35809199],[4.53459842,0.02965947,97.35696602],[4.53459792,0.02965774,97.35584],[4.53459742,0.02965601,97.3547139],[4.53459692,0.02965428,97.3535877],[4.53459642,0.02965255,97.35246136],[4.53459592,0.02965083,97.35133488],[4.53459542,0.0296491,97.35020823],[4.53459492,0.02964737,97.34908138],[4.53459443,0.02964564,97.34795432],[4.53459393,0.02964392,97.34682701],[4.53459343,0.02964219,97.34569944],[4.53459293,0.02964046,97.34457159],[4.53459243,0.02963874,97.34344343],[4.53459193,0.02963701,97.34231493],[4.53459143,0.02963528,97.34118609],[4.53459093,0.02963356,97.34005686],[4.53459043,0.02963183,97.33892724],[4.53458993,0.0296301,97.33779719],[4.53458943,0.02962838,97.3366667],[4.53458893,0.02962665,97.33553574],[4.53458843,0.02962492,97.3344043],[4.53458793,0.0296232,97.33327234],[4.53458743,0.02962147,97.3321399],[4.53458693,0.02961975,97.331007],[4.53458643,0.02961802,97.32987366],[4.53458593,0.0296163,97.32873991],[4.53458543,0.02961457,97.32760578],[4.53458494,0.02961285,97.32647128],[4.53458444,0.02961113,97.32533646],[4.53458394,0.0296094,97.32420132],[4.53458344,0.02960767,97.3230659],[4.53458294,0.02960595,97.32193022],[4.53458244,0.02960422,97.32079431],[4.5345824,0.02960409,97.32070773],[4.53459477,0.02960046,97.32070773],[4.53459481,0.0296006,97.32079431],[4.5345953,0.02960232,97.32193022],[4.53459578,0.02960405,97.3230659],[4.53459627,0.02960578,97.32420132],[4.53459675,0.0296075,97.32533646],[4.53459724,0.02960923,97.32647128],[4.53459772,0.02961095,97.32760578],[4.5345982,0.02961267,97.32873991],[4.53459869,0.0296144,97.32987366],[4.53459917,0.02961613,97.331007],[4.53459965,0.02961785,97.3321399],[4.53460014,0.02961958,97.33327234],[4.53460062,0.02962131,97.3344043],[4.53460111,0.02962304,97.33553574],[4.53460159,0.02962476,97.3366667],[4.53460207,0.02962649,97.33779719],[4.53460256,0.02962822,97.33892724],[4.53460304,0.02962995,97.34005686],[4.53460352,0.02963168,97.34118609],[4.53460401,0.02963341,97.34231493],[4.53460449,0.02963513,97.34344343],[4.53460497,0.02963686,97.34457159],[4.53460546,0.02963859,97.34569944],[4.53460594,0.02964032,97.34682701],[4.53460643,0.02964205,97.34795432],[4.53460691,0.02964378,97.34908138],[4.5346074,0.02964551,97.35020823],[4.53460788,0.02964724,97.35133488],[4.53460837,0.02964897,97.35246136],[4.53460885,0.0296507,97.3535877],[4.53460934,0.02965243,97.3547139],[4.53460983,0.02965416,97.35584],[4.53461032,0.02965589,97.35696602],[4.53461081,0.02965762,97.35809199],[4.5346113,0.02965934,97.35921791],[4.53461179,0.02966107,97.36034382],[4.53461228,0.0296628,97.36146975],[4.53461277,0.02966453,97.3625957],[4.53461326,0.02966626,97.36372171],[4.53461375,0.02966799,97.3648478],[4.53461425,0.02966972,97.36597399],[4.53461474,0.02967145,97.3671003],[4.53461524,0.02967318,97.36822676],[4.53461573,0.02967491,97.36935339],[4.53461623,0.02967664,97.37048021],[4.53461673,0.02967836,97.37160724],[4.53461723,0.02968009,97.37273451],[4.53461773,0.02968182,97.37386204],[4.53461823,0.02968355,97.37498985],[4.53461873,0.02968528,97.37611796],[4.53461923,0.02968701,97.3772464],[4.53461974,0.02968873,97.3783752],[4.53462024,0.02969046,97.37950436],[4.53462075,0.02969219,97.38063392],[4.53462125,0.02969392,97.3817639],[4.53462176,0.02969564,97.38289432],[4.53462227,0.02969737,97.3840252],[4.53462278,0.0296991,97.38515657],[4.53462329,0.02970083,97.38628844],[4.5346238,0.02970255,97.38742085],[4.53462431,0.02970428,97.38855381],[4.53462482,0.02970601,97.38968735],[4.53462534,0.02970773,97.39082148],[4.53462585,0.02970946,97.39195624],[4.53462636,0.02971119,97.39309164],[4.53462688,0.02971291,97.39422771],[4.53462739,0.02971464,97.39536446],[4.53462791,0.02971637,97.39650193],[4.53462843,0.02971809,97.39764013],[4.53462894,0.02971982,97.39877909],[4.53462946,0.02972155,97.39991883],[4.53462998,0.02972327,97.40105937],[4.5346305,0.029725,97.40220073],[4.53463101,0.02972673,97.40334295],[4.53463153,0.02972846,97.40448603],[4.53463205,0.02973018,97.40563],[4.53463257,0.02973191,97.40677489],[4.53463309,0.02973364,97.40792071],[4.53463361,0.02973536,97.40906749],[4.53463413,0.02973709,97.41021526],[4.53463465,0.02973882,97.41136403],[4.53463518,0.02974055,97.41251382],[4.5346357,0.02974227,97.41366467],[4.53463622,0.029744,97.41481659],[4.53463674,0.02974573,97.4159696],[4.53463726,0.02974746,97.41712372],[4.53463778,0.02974919,97.41827899],[4.5346383,0.02975091,97.41943543],[4.53463883,0.02975264,97.42059311],[4.53463935,0.02975437,97.42175211],[4.53463987,0.0297561,97.42291252],[4.53464039,0.02975783,97.42407441],[4.53464091,0.02975956,97.42523787],[4.53464143,0.02976129,97.42640296],[4.53464196,0.02976302,97.42756973],[4.53464248,0.02976474,97.42873824],[4.534643,0.02976647,97.42990854],[4.53464352,0.0297682,97.43108067],[4.53464404,0.02976993,97.4322547],[4.53464456,0.02977166,97.43343067],[4.53464509,0.02977339,97.43460863],[4.53464561,0.02977512,97.43578863],[4.53464613,0.02977686,97.43697073],[4.53464665,0.02977859,97.43815498],[4.53464717,0.02978032,97.43934143],[4.53464769,0.02978205,97.44053013],[4.53464821,0.02978378,97.44172113],[4.53464873,0.02978551,97.44291449],[4.53464925,0.02978724,97.44411025],[4.53464978,0.02978897,97.44530846],[4.5346503,0.0297907,97.44650919],[4.53465082,0.02979244,97.44771247],[4.53465134,0.02979417,97.44891837],[4.53465186,0.0297959,97.45012693],[4.53465238,0.02979763,97.4513382],[4.5346529,0.02979936,97.45255223],[4.53465342,0.02980109,97.45376908],[4.53465394,0.02980283,97.45498873],[4.53465446,0.02980456,97.4562111],[4.53465498,0.02980629,97.45743611],[4.53465549,0.02980802,97.45866368],[4.53465601,0.02980975,97.45989373],[4.53465653,0.02981149,97.46112618],[4.53465705,0.02981322,97.46236095],[4.53465757,0.02981495,97.46359796],[4.53465808,0.02981668,97.46483712],[4.5346586,0.02981841,97.46607837],[4.53465912,0.02982015,97.46732161],[4.53465963,0.02982188,97.46856677],[4.53466015,0.02982361,97.46981377],[4.53466066,0.02982534,97.47106253],[4.53466117,0.02982708,97.47231296],[4.53466169,0.02982881,97.47356499],[4.5346622,0.02983054,97.47481854],[4.53466271,0.02983228,97.47607352],[4.53466322,0.02983401,97.47732986],[4.53466373,0.02983574,97.47858748],[4.53466424,0.02983748,97.47984629],[4.53466475,0.02983921,97.48110622],[4.53466526,0.02984094,97.48236718],[4.53466577,0.02984268,97.4836291],[4.53466627,0.02984441,97.4848919],[4.53466678,0.02984615,97.48615549],[4.53466729,0.02984788,97.48741979],[4.53466779,0.02984961,97.48868474],[4.5346683,0.02985135,97.48995026],[4.5346688,0.02985308,97.49121632],[4.53466931,0.02985482,97.49248288],[4.53466981,0.02985655,97.4937499],[4.53467032,0.02985829,97.49501735],[4.53467082,0.02986002,97.49628518],[4.53467133,0.02986175,97.49755336],[4.53467183,0.02986349,97.49882185],[4.53467233,0.02986522,97.5000906],[4.53467284,0.02986696,97.50135959],[4.53467334,0.02986869,97.50262878],[4.53467385,0.02987043,97.50389811],[4.53467435,0.02987216,97.50516757],[4.53467485,0.0298739,97.50643711],[4.53467536,0.02987563,97.50770669],[4.53467586,0.02987736,97.50897627],[4.53467636,0.0298791,97.51024581],[4.53467687,0.02988083,97.51151528],[4.53467737,0.02988257,97.51278464],[4.53467787,0.0298843,97.51405386],[4.53467838,0.02988603,97.51532288],[4.53467888,0.02988777,97.51659169],[4.53467939,0.0298895,97.51786023],[4.53467989,0.02989123,97.51912847],[4.5346804,0.02989297,97.52039637],[4.5346809,0.0298947,97.5216639],[4.53468141,0.02989643,97.52293101],[4.53468191,0.02989816,97.52419767],[4.53468242,0.0298999,97.52546385],[4.53468293,0.02990163,97.52672949],[4.53468344,0.02990336,97.52799457],[4.53468395,0.02990509,97.52925905],[4.53468445,0.02990682,97.53052289],[4.53468496,0.02990856,97.53178606],[4.53468547,0.02991029,97.5330485],[4.53468598,0.02991202,97.5343102],[4.53468649,0.02991375,97.5355711],[4.534687,0.02991548,97.53683119],[4.53468751,0.02991721,97.53809051],[4.53468802,0.02991894,97.53934911],[4.53468852,0.02992068,97.54060707],[4.53468903,0.02992241,97.54186443],[4.53468954,0.02992414,97.54312126],[4.53469005,0.02992587,97.54437762],[4.53469056,0.0299276,97.54563355],[4.53469107,0.02992933,97.54688914],[4.53469158,0.02993106,97.54814442],[4.53469209,0.02993279,97.54939946],[4.53469259,0.02993452,97.55065433],[4.5346931,0.02993625,97.55190907],[4.53469361,0.02993798,97.55316375],[4.53469412,0.02993972,97.55441843],[4.53469463,0.02994145,97.55567316],[4.53469513,0.02994318,97.556928],[4.53469564,0.02994491,97.55818302],[4.53469615,0.02994664,97.55943827],[4.53469666,0.02994837,97.56069382],[4.53469716,0.0299501,97.56194971],[4.53469767,0.02995183,97.56320601],[4.53469818,0.02995356,97.56446278],[4.53469868,0.02995529,97.56572007],[4.53469919,0.02995702,97.56697795],[4.53469969,0.02995875,97.56823647],[4.5347002,0.02996049,97.56949569],[4.5347007,0.02996222,97.57075568],[4.53470121,0.02996395,97.57201648],[4.53470171,0.02996568,97.57327817],[4.53470221,0.02996741,97.57454079],[4.53470272,0.02996914,97.57580441],[4.53470322,0.02997087,97.57706908],[4.53470372,0.0299726,97.57833487],[4.53470422,0.02997434,97.57960183],[4.53470472,0.02997607,97.58087002],[4.53470522,0.0299778,97.58213951],[4.53470572,0.02997953,97.58341034],[4.53470622,0.02998126,97.58468257],[4.53470672,0.029983,97.58595628],[4.53470722,0.02998473,97.58723151],[4.53470772,0.02998646,97.58850832],[4.53470822,0.02998819,97.58978678],[4.53470872,0.02998992,97.59106694],[4.53470922,0.02999166,97.59234886],[4.53470972,0.02999339,97.59363259],[4.53471022,0.02999512,97.59491821],[4.53471071,0.02999685,97.59620576],[4.53471121,0.02999858,97.59749531],[4.53471171,0.03000031,97.59878691],[4.53471221,0.03000205,97.60008062],[4.53471271,0.03000378,97.60137651],[4.53471321,0.03000551,97.6026746],[4.53471371,0.03000724,97.60397484],[4.53471421,0.03000897,97.60527715],[4.53471471,0.0300107,97.60658145],[4.53471521,0.03001243,97.60788765],[4.53471571,0.03001416,97.60919567],[4.53471621,0.03001589,97.61050544],[4.53471671,0.03001762,97.61181686],[4.53471721,0.03001935,97.61312987],[4.53471771,0.03002108,97.61444437],[4.53471821,0.03002282,97.61576029],[4.53471872,0.03002455,97.61707754],[4.53471922,0.03002628,97.61839604],[4.53471972,0.03002801,97.61971572],[4.53472022,0.03002974,97.62103649],[4.53472072,0.03003147,97.62235826],[4.53472123,0.0300332,97.62368097],[4.53472173,0.03003493,97.62500452],[4.53472223,0.03003666,97.62632883],[4.53472273,0.03003839,97.62765383],[4.53472324,0.03004012,97.62897943],[4.53472374,0.03004185,97.63030555],[4.53472424,0.03004358,97.63163211],[4.53472475,0.03004531,97.63295903],[4.53472525,0.03004704,97.63428622],[4.53472575,0.03004877,97.63561361],[4.53472626,0.0300505,97.63694112],[4.53472676,0.03005223,97.63826865],[4.53472726,0.03005396,97.63959614],[4.53472777,0.03005569,97.64092349],[4.53472827,0.03005742,97.64225064],[4.53472877,0.03005915,97.64357749],[4.53472928,0.03006088,97.64490396],[4.53472978,0.03006261,97.64622998],[4.53473029,0.03006434,97.64755546],[4.53473079,0.03006607,97.64888033],[4.53473129,0.0300678,97.65020449],[4.5347318,0.03006953,97.65152787],[4.5347323,0.03007126,97.65285038],[4.5347328,0.03007299,97.65417196],[4.53473331,0.03007472,97.6554925],[4.53473381,0.03007645,97.65681194],[4.53473432,0.03007818,97.65813019],[4.53473482,0.03007991,97.65944716],[4.53473532,0.03008165,97.66076279],[4.53473583,0.03008338,97.66207697],[4.53473633,0.03008511,97.66338965],[4.53473683,0.03008684,97.66470072],[4.53473734,0.03008857,97.66601012],[4.53473784,0.0300903,97.66731776],[4.53473834,0.03009203,97.66862355],[4.53473885,0.03009376,97.66992742],[4.53473935,0.03009549,97.67122929],[4.53473985,0.03009722,97.67252913],[4.53474036,0.03009895,97.67382702],[4.53474086,0.03010068,97.67512298],[4.53474136,0.03010241,97.67641709],[4.53474187,0.03010414,97.6777094],[4.53474237,0.03010587,97.67899997],[4.53474287,0.03010761,97.68028887],[4.53474338,0.03010934,97.68157614],[4.53474388,0.03011107,97.68286185],[4.53474438,0.0301128,97.68414607],[4.53474489,0.03011453,97.68542884],[4.53474539,0.03011626,97.68671023],[4.5347459,0.03011799,97.68799031],[4.5347464,0.03011972,97.68926912],[4.53474691,0.03012145,97.69054672],[4.53474742,0.03012318,97.69182319],[4.53474792,0.03012491,97.69309858],[4.53474843,0.03012664,97.69437294],[4.53474894,0.03012837,97.69564634],[4.53474944,0.0301301,97.69691883],[4.53474995,0.03013183,97.69819048],[4.53475046,0.03013356,97.69946135],[4.53475097,0.03013529,97.70073149],[4.53475148,0.03013702,97.70200097],[4.53475199,0.03013875,97.70326985],[4.5347525,0.03014048,97.70453818],[4.534753,0.03014221,97.70580603],[4.53475351,0.03014393,97.70707345],[4.53475402,0.03014566,97.7083405],[4.53475453,0.03014739,97.70960725],[4.53475505,0.03014912,97.71087375],[4.53475556,0.03015085,97.71214007],[4.53475607,0.03015258,97.71340626],[4.53475658,0.03015431,97.71467239],[4.53475709,0.03015604,97.71593851],[4.5347576,0.03015777,97.71720468],[4.53475811,0.0301595,97.71847096],[4.53475862,0.03016122,97.71973742],[4.53475913,0.03016295,97.72100412],[4.53475965,0.03016468,97.72227111],[4.53476016,0.03016641,97.72353845],[4.53476067,0.03016814,97.7248062],[4.53476118,0.03016987,97.72607443],[4.53476169,0.0301716,97.72734319],[4.53476221,0.03017333,97.72861255],[4.53476272,0.03017506,97.72988256],[4.53476323,0.03017678,97.73115328],[4.53476374,0.03017851,97.73242478],[4.53476426,0.03018024,97.73369711],[4.53476477,0.03018197,97.73497034],[4.53476528,0.0301837,97.73624453],[4.53476579,0.03018543,97.73751973],[4.5347663,0.03018716,97.738796],[4.53476682,0.03018889,97.74007341],[4.53476733,0.03019062,97.74135202],[4.53476784,0.03019234,97.74263189],[4.53476835,0.03019407,97.74391308],[4.53476887,0.0301958,97.74519564],[4.53476938,0.03019753,97.74647962],[4.53476989,0.03019926,97.74776499],[4.53477041,0.03020099,97.74905169],[4.53477092,0.03020272,97.75033966],[4.53477143,0.03020445,97.75162886],[4.53477194,0.03020617,97.75291922],[4.53477246,0.0302079,97.75421069],[4.53477297,0.03020963,97.75550321],[4.53477349,0.03021136,97.75679674],[4.534774,0.03021309,97.75809121],[4.53477451,0.03021482,97.75938658],[4.53477503,0.03021655,97.76068278],[4.53477554,0.03021828,97.76197976],[4.53477606,0.03022,97.76327747],[4.53477657,0.03022173,97.76457585],[4.53477709,0.03022346,97.76587485],[4.5347776,0.03022519,97.7671744],[4.53477812,0.03022692,97.76847447],[4.53477863,0.03022865,97.76977499],[4.53477915,0.03023037,97.7710759],[4.53477966,0.0302321,97.77237716],[4.53478018,0.03023383,97.7736787],[4.53478069,0.03023556,97.77498048],[4.53478121,0.03023729,97.77628243],[4.53478173,0.03023902,97.7775845],[4.53478224,0.03024074,97.77888664],[4.53478276,0.03024247,97.78018879],[4.53478328,0.0302442,97.78149089],[4.53478379,0.03024593,97.7827929],[4.53478431,0.03024766,97.78409475],[4.53478483,0.03024938,97.78539639],[4.53478534,0.03025111,97.78669776],[4.53478586,0.03025284,97.78799882],[4.53478638,0.03025457,97.78929949],[4.53478689,0.0302563,97.79059974],[4.53478741,0.03025802,97.79189952],[4.53478793,0.03025975,97.79319885],[4.53478845,0.03026148,97.7944977],[4.53478897,0.03026321,97.79579608],[4.53478948,0.03026494,97.79709399],[4.53479,0.03026666,97.79839141],[4.53479052,0.03026839,97.79968836],[4.53479104,0.03027012,97.80098483],[4.53479155,0.03027185,97.8022808],[4.53479207,0.03027357,97.80357629],[4.53479259,0.0302753,97.80487128],[4.53479311,0.03027703,97.80616577],[4.53479362,0.03027876,97.80745976],[4.53479414,0.03028049,97.80875325],[4.53479465,0.03028221,97.81004623],[4.53479517,0.03028394,97.8113387],[4.53479569,0.03028567,97.81263065],[4.5347962,0.0302874,97.81392209],[4.53479672,0.03028913,97.815213],[4.53479723,0.03029086,97.8165034],[4.53479774,0.03029259,97.81779326],[4.53479826,0.03029432,97.81908259],[4.53479877,0.03029605,97.82037139],[4.53479928,0.03029777,97.82165966],[4.53479979,0.0302995,97.82294738],[4.5348003,0.03030123,97.82423455],[4.53480081,0.03030296,97.82552118],[4.53480132,0.03030469,97.82680726],[4.53480183,0.03030642,97.82809279],[4.53480234,0.03030816,97.82937775],[4.53480285,0.03030989,97.83066216],[4.53480336,0.03031162,97.831946],[4.53480386,0.03031335,97.83322927],[4.53480437,0.03031508,97.83451198],[4.53480487,0.03031681,97.8357941],[4.53480538,0.03031854,97.83707565],[4.53480588,0.03032027,97.83835662],[4.53480638,0.03032201,97.83963701],[4.53480689,0.03032374,97.8409168],[4.53480739,0.03032547,97.84219601],[4.53480789,0.0303272,97.84347462],[4.53480839,0.03032894,97.84475263],[4.53480889,0.03033067,97.84603004],[4.53480939,0.0303324,97.84730685],[4.53480989,0.03033414,97.84858305],[4.53481039,0.03033587,97.84985863],[4.53481089,0.0303376,97.8511336],[4.53481139,0.03033934,97.85240796],[4.53481188,0.03034107,97.85368169],[4.53481238,0.0303428,97.85495479],[4.53481288,0.03034454,97.85622727],[4.53481337,0.03034627,97.85749911],[4.53481387,0.03034801,97.85877032],[4.53481437,0.03034974,97.86004089],[4.53481486,0.03035148,97.86131081],[4.53481536,0.03035321,97.8625801],[4.53481586,0.03035494,97.86384873],[4.53481635,0.03035668,97.86511671],[4.53481685,0.03035841,97.86638403],[4.53481734,0.03036015,97.86765069],[4.53481784,0.03036188,97.86891669],[4.53481833,0.03036362,97.87018202],[4.53481883,0.03036535,97.87144668],[4.53481932,0.03036709,97.87271067],[4.53481982,0.03036882,97.87397399],[4.53482031,0.03037055,97.87523662],[4.53482081,0.03037229,97.87649856],[4.5348213,0.03037402,97.87775982],[4.5348218,0.03037576,97.87902039],[4.53482229,0.03037749,97.88028027],[4.53482279,0.03037923,97.88153945],[4.53482328,0.03038096,97.88279792],[4.53482378,0.0303827,97.88405569],[4.53482428,0.03038443,97.88531275],[4.53482477,0.03038616,97.8865691],[4.53482527,0.0303879,97.88782474],[4.53482576,0.03038963,97.88907965],[4.53482626,0.03039137,97.89033385],[4.53482676,0.0303931,97.89158731],[4.53481347,0.030397,97.89158731]]],"type":"Polygon"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1004700","id":2,"type":"none","predecessorId":0,"sOffset":0.0}},{"geometry":{"coordinates":[[[4.53449024,0.02963111,97.17267337],[4.5344898,0.02962934,97.17172505],[4.53448936,0.02962758,97.1707865],[4.53448892,0.02962581,97.16985252],[4.53448849,0.02962404,97.16891791],[4.53448805,0.02962228,97.16797747],[4.5344876,0.02962051,97.167026],[4.53448716,0.02961875,97.1660583],[4.5344867,0.02961699,97.16506916],[4.53448624,0.02961523,97.16405359],[4.53448576,0.02961348,97.1630113],[4.53448528,0.02961173,97.16194674],[4.5344848,0.02960998,97.16086454],[4.53448431,0.02960823,97.15976934],[4.53448382,0.02960649,97.1586658],[4.53448332,0.02960474,97.15755854],[4.53448283,0.02960299,97.15645221],[4.53448234,0.02960125,97.15535059],[4.53448184,0.0295995,97.15425398],[4.53448136,0.02959776,97.15316185],[4.53448087,0.02959601,97.15207364],[4.53448038,0.02959427,97.15098879],[4.53447989,0.02959252,97.14990676],[4.53447941,0.02959078,97.14882701],[4.53447892,0.02958903,97.14774897],[4.53447844,0.02958729,97.1466721],[4.53447796,0.02958554,97.14559585],[4.53447747,0.0295838,97.14451966],[4.53447699,0.02958206,97.14344299],[4.5344765,0.02958031,97.14236539],[4.53447601,0.02957857,97.14128674],[4.53447553,0.02957683,97.14020707],[4.53447504,0.02957509,97.13912635],[4.53447455,0.02957335,97.13804459],[4.53447407,0.02957161,97.13696179],[4.53447358,0.02956987,97.13587795],[4.53447309,0.02956813,97.13479306],[4.5344726,0.02956639,97.13370712],[4.53447211,0.02956465,97.13262013],[4.53447162,0.02956292,97.13153209],[4.53447113,0.02956118,97.13044299],[4.53447063,0.02955944,97.12935283],[4.53447014,0.02955771,97.12826162],[4.53446965,0.02955597,97.12716934],[4.53446916,0.02955424,97.126076],[4.53446866,0.02955251,97.1249816],[4.53446817,0.02955077,97.12388613],[4.53446767,0.02954904,97.12278958],[4.53446717,0.02954731,97.12169197],[4.53446668,0.02954558,97.12059329],[4.53446618,0.02954385,97.11949353],[4.53446568,0.02954212,97.11839269],[4.53446518,0.02954039,97.11729079],[4.53446468,0.02953866,97.11618798],[4.53446418,0.02953693,97.1150846],[4.53446368,0.0295352,97.11398099],[4.53446317,0.02953347,97.1128775],[4.53446267,0.02953175,97.11177446],[4.53446217,0.02953002,97.11067221],[4.53446167,0.02952829,97.1095711],[4.53446117,0.02952657,97.10847146],[4.53446066,0.02952484,97.10737364],[4.53446016,0.02952312,97.10627798],[4.53445966,0.02952139,97.10518481],[4.53445916,0.02951967,97.10409448],[4.53445866,0.02951794,97.10300732],[4.53445816,0.02951622,97.10192367],[4.53445766,0.02951449,97.10084365],[4.53445716,0.02951277,97.09976716],[4.53445666,0.02951105,97.09869409],[4.53445616,0.02950932,97.09762435],[4.53445567,0.0295076,97.09655783],[4.53445517,0.02950588,97.09549443],[4.53445467,0.02950416,97.09443403],[4.53445418,0.02950243,97.09337655],[4.53445368,0.02950071,97.09232187],[4.53445319,0.02949899,97.09126989],[4.53445269,0.02949727,97.09022051],[4.5344522,0.02949555,97.08917363],[4.5344517,0.02949383,97.08812913],[4.53445121,0.02949211,97.08708693],[4.53445071,0.02949039,97.0860469],[4.53445022,0.02948867,97.08500895],[4.53444972,0.02948695,97.08397298],[4.53444923,0.02948523,97.08293889],[4.53444873,0.02948351,97.08190656],[4.53444824,0.02948179,97.08087589],[4.53444774,0.02948008,97.07984679],[4.53444725,0.02947836,97.07881915],[4.53444675,0.02947664,97.07779286],[4.53444625,0.02947492,97.07676782],[4.53444576,0.0294732,97.07574393],[4.53444526,0.02947149,97.07472109],[4.53444476,0.02946977,97.07369918],[4.53444426,0.02946805,97.07267812],[4.53444376,0.02946633,97.07165792],[4.53444326,0.02946461,97.07063873],[4.53444276,0.02946289,97.06962069],[4.53444226,0.02946117,97.06860393],[4.53444176,0.02945945,97.06758857],[4.53444126,0.02945773,97.06657465],[4.53444075,0.02945601,97.06556224],[4.53444025,0.02945429,97.06455139],[4.53443975,0.02945257,97.06354216],[4.53443924,0.02945085,97.06253461],[4.53443874,0.02944913,97.0615288],[4.53443824,0.02944741,97.06052478],[4.53443773,0.02944568,97.05952261],[4.53443723,0.02944396,97.05852235],[4.53443672,0.02944224,97.05752406],[4.53443622,0.02944052,97.05652779],[4.53443572,0.02943879,97.05553361],[4.53443521,0.02943707,97.05454156],[4.53443471,0.02943535,97.05355171],[4.5344342,0.02943362,97.05256411],[4.5344337,0.0294319,97.05157882],[4.53443319,0.02943017,97.0505959],[4.53443269,0.02942845,97.04961541],[4.53443218,0.02942672,97.0486374],[4.53443168,0.029425,97.04766194],[4.53443118,0.02942327,97.04668907],[4.53443067,0.02942154,97.04571885],[4.53443017,0.02941982,97.04475135],[4.53442966,0.02941809,97.04378662],[4.53442916,0.02941636,97.04282472],[4.53442866,0.02941463,97.04186569],[4.53442815,0.02941291,97.04090962],[4.53442765,0.02941118,97.03995653],[4.53442715,0.02940945,97.03900651],[4.53442665,0.02940772,97.03805959],[4.53442615,0.02940599,97.03711585],[4.53442565,0.02940426,97.03617529],[4.53442515,0.02940252,97.03523789],[4.53442465,0.02940079,97.03430365],[4.53442415,0.02939906,97.03337253],[4.53442365,0.02939733,97.03244453],[4.53442315,0.02939559,97.03151961],[4.53442265,0.02939386,97.03059776],[4.53442215,0.02939213,97.02967896],[4.53442165,0.02939039,97.02876319],[4.53442116,0.02938866,97.02785043],[4.53442066,0.02938692,97.02694066],[4.53442016,0.02938519,97.02603386],[4.53441967,0.02938345,97.02513002],[4.53441917,0.02938171,97.0242291],[4.53441868,0.02937998,97.0233311],[4.53441818,0.02937824,97.02243601],[4.53441769,0.0293765,97.02154383],[4.53441719,0.02937476,97.02065454],[4.5344167,0.02937302,97.01976814],[4.53441621,0.02937128,97.01888462],[4.53441571,0.02936954,97.01800396],[4.53441522,0.0293678,97.01712616],[4.53441473,0.02936606,97.01625121],[4.53441424,0.02936432,97.01537909],[4.53441375,0.02936258,97.01450981],[4.53441326,0.02936084,97.01364334],[4.53441277,0.02935909,97.01277968],[4.53441228,0.02935735,97.01191882],[4.53441179,0.02935561,97.01106075],[4.5344113,0.02935386,97.01020546],[4.53441081,0.02935212,97.00935271],[4.53441033,0.02935037,97.00850139],[4.53440984,0.02934863,97.00765015],[4.53440935,0.02934688,97.00679766],[4.53440886,0.02934514,97.00594258],[4.53440837,0.02934339,97.00508356],[4.53440787,0.02934165,97.00421928],[4.53440738,0.0293399,97.00334839],[4.53440688,0.02933816,97.00246956],[4.53440637,0.02933642,97.00158146],[4.53440587,0.02933467,97.00068275],[4.53440536,0.02933293,96.9997721],[4.53440484,0.02933119,96.99884879],[4.53440432,0.02932945,96.9979145],[4.5344038,0.02932771,96.99697154],[4.53440327,0.02932597,96.99602218],[4.53440275,0.02932424,96.99506873],[4.53440222,0.0293225,96.99411348],[4.53440169,0.02932076,96.9931587],[4.53440116,0.02931902,96.99220668],[4.53440064,0.02931728,96.99125972],[4.53440011,0.02931554,96.99032008],[4.53439959,0.0293138,96.98939005],[4.53439908,0.02931205,96.98847181],[4.53439857,0.02931031,96.98756554],[4.53439806,0.02930856,96.98666948],[4.53439755,0.02930681,96.98578175],[4.53439704,0.02930506,96.98490051],[4.53439654,0.02930331,96.9840239],[4.53439604,0.02930156,96.98315007],[4.53439554,0.02929981,96.98227715],[4.53439503,0.02929806,96.98140331],[4.53439453,0.02929631,96.98052669],[4.53439402,0.02929456,96.97964544],[4.53439352,0.02929281,96.97875772],[4.534393,0.02929106,96.97786168],[4.53439249,0.02928931,96.97695562],[4.53439197,0.02928757,96.97604123],[4.53439146,0.02928582,96.97512351],[4.53439094,0.02928407,96.9742076],[4.53439042,0.02928232,96.97329865],[4.53438991,0.02928057,96.97240179],[4.53438941,0.02927882,96.97152214],[4.53438891,0.02927707,96.97066484],[4.53438842,0.02927531,96.96983501],[4.53438795,0.02927355,96.96903743],[4.53438748,0.02927178,96.96826919],[4.53438702,0.02927002,96.96751976],[4.53438656,0.02926825,96.96677829],[4.5343861,0.02926649,96.96603575],[4.53438564,0.02926472,96.9652904],[4.53438518,0.02926296,96.96454231],[4.53438472,0.02926119,96.96379155],[4.53438426,0.02925943,96.9630382],[4.5343838,0.02925766,96.96228232],[4.53438334,0.0292559,96.96152402],[4.53438287,0.02925414,96.9607634],[4.53438241,0.02925237,96.96000055],[4.53438194,0.02925061,96.95923558],[4.53438148,0.02924885,96.95846857],[4.53438101,0.02924709,96.95769962],[4.53438055,0.02924532,96.95692884],[4.53438008,0.02924356,96.95615632],[4.53437961,0.0292418,96.95538216],[4.53437914,0.02924004,96.95460646],[4.53437868,0.02923828,96.95382931],[4.53437821,0.02923652,96.95305081],[4.53437774,0.02923475,96.95227105],[4.53437727,0.02923299,96.95149014],[4.5343768,0.02923123,96.95070818],[4.53437633,0.02922947,96.94992525],[4.53437586,0.02922771,96.94914146],[4.53437539,0.02922595,96.94835689],[4.53437492,0.02922419,96.94757166],[4.53437445,0.02922243,96.94678579],[4.53437398,0.02922067,96.94599927],[4.53437351,0.02921891,96.94521209],[4.53437304,0.02921715,96.94442423],[4.53437257,0.0292154,96.94363568],[4.5343721,0.02921364,96.94284641],[4.53437163,0.02921188,96.94205642],[4.53437115,0.02921012,96.94126568],[4.53437068,0.02920836,96.94047419],[4.53437021,0.0292066,96.93968192],[4.53436974,0.02920484,96.93888886],[4.53436927,0.02920308,96.93809499],[4.5343688,0.02920133,96.93730031],[4.53436832,0.02919957,96.93650478],[4.53436785,0.02919781,96.9357084],[4.53436738,0.02919605,96.93491115],[4.5343669,0.02919429,96.93411302],[4.53436643,0.02919254,96.93331398],[4.53436596,0.02919078,96.93251403],[4.53436548,0.02918902,96.93171315],[4.53436501,0.02918727,96.93091132],[4.53436453,0.02918551,96.93010852],[4.53436406,0.02918375,96.92930475],[4.53436359,0.029182,96.92849998],[4.53436311,0.02918024,96.9276942],[4.53436263,0.02917848,96.92688739],[4.53436216,0.02917673,96.92607955],[4.53436168,0.02917497,96.92527074],[4.53436121,0.02917321,96.92446113],[4.53436073,0.02917146,96.92365087],[4.53436025,0.0291697,96.92284013],[4.53435978,0.02916795,96.92202908],[4.5343593,0.02916619,96.92121787],[4.53435882,0.02916444,96.92040666],[4.53435835,0.02916268,96.91959563],[4.53435787,0.02916093,96.91878492],[4.5343574,0.02915917,96.9179747],[4.53435692,0.02915742,96.91716514],[4.53435645,0.02915566,96.9163564],[4.53435597,0.02915391,96.91554865],[4.5343555,0.02915215,96.91474208],[4.53435502,0.0291504,96.91393685],[4.53435455,0.02914864,96.91313314],[4.53435408,0.02914688,96.91233112],[4.5343536,0.02914513,96.91153097],[4.53435313,0.02914337,96.91073285],[4.53435266,0.02914162,96.90993696],[4.53435219,0.02913986,96.90914345],[4.53435173,0.0291381,96.90835245],[4.53435126,0.02913635,96.90756389],[4.53435079,0.02913459,96.90677765],[4.53435032,0.02913283,96.9059936],[4.53434986,0.02913108,96.90521163],[4.5343494,0.02912932,96.90443162],[4.53434893,0.02912756,96.90365344],[4.53434847,0.02912581,96.90287698],[4.53434801,0.02912405,96.9021021],[4.53434754,0.02912229,96.9013287],[4.53434708,0.02912054,96.90055666],[4.53434662,0.02911878,96.89978585],[4.53434616,0.02911702,96.89901615],[4.5343457,0.02911526,96.89824744],[4.53434524,0.02911351,96.89747961],[4.53434478,0.02911175,96.89671253],[4.53434432,0.02910999,96.89594608],[4.53434386,0.02910823,96.89518013],[4.5343434,0.02910648,96.89441451],[4.53434295,0.02910472,96.89364906],[4.53434249,0.02910296,96.89288363],[4.53434203,0.0291012,96.89211807],[4.53434157,0.02909945,96.8913522],[4.53434111,0.02909769,96.89058588],[4.53434065,0.02909593,96.88981894],[4.53434019,0.02909418,96.88905123],[4.53433973,0.02909242,96.8882826],[4.53433927,0.02909066,96.88751289],[4.53433881,0.02908891,96.88674197],[4.53433835,0.02908715,96.88596983],[4.53433789,0.0290854,96.88519654],[4.53433743,0.02908364,96.88442216],[4.53433697,0.02908188,96.88364676],[4.53433651,0.02908013,96.88287042],[4.53433604,0.02907837,96.8820932],[4.53433558,0.02907662,96.88131518],[4.53433512,0.02907486,96.88053642],[4.53433466,0.02907311,96.87975699],[4.53433419,0.02907135,96.87897697],[4.53433373,0.0290696,96.87819642],[4.53433327,0.02906785,96.87741542],[4.5343328,0.02906609,96.87663403],[4.53433234,0.02906434,96.87585232],[4.53433188,0.02906258,96.87507036],[4.53433141,0.02906083,96.87428823],[4.53433095,0.02905908,96.87350599],[4.53433049,0.02905732,96.8727237],[4.53433002,0.02905557,96.87194145],[4.53432956,0.02905381,96.8711593],[4.5343291,0.02905206,96.87037731],[4.53432863,0.02905031,96.86959557],[4.53432817,0.02904855,96.86881412],[4.53432771,0.0290468,96.86803306],[4.53432725,0.02904507,96.86725243],[4.53432679,0.02904332,96.86647232],[4.53432633,0.02904156,96.86569279],[4.53432586,0.02903981,96.86491391],[4.5343254,0.02903806,96.86413575],[4.53432494,0.0290363,96.86335838],[4.53432448,0.02903455,96.86258186],[4.53432402,0.0290328,96.86180626],[4.53432356,0.02903104,96.86103166],[4.5343231,0.02902929,96.86025812],[4.53432264,0.02902753,96.8594857],[4.53432218,0.02902578,96.85871453],[4.53432172,0.02902402,96.85794569],[4.53432127,0.02902227,96.85718123],[4.53432081,0.02902051,96.85642325],[4.53432036,0.02901876,96.85567384],[4.53431991,0.029017,96.85493511],[4.53431947,0.02901524,96.85420914],[4.53431903,0.02901348,96.85349802],[4.5343186,0.02901172,96.85280325],[4.53431817,0.02900996,96.85212397],[4.53431775,0.0290082,96.85145873],[4.53431734,0.02900643,96.85080611],[4.53431692,0.02900466,96.85016467],[4.53431651,0.0290029,96.84953297],[4.53431611,0.02900113,96.84890957],[4.5343157,0.02899936,96.84829305],[4.5343153,0.02899759,96.84768197],[4.5343149,0.02899582,96.8470749],[4.5343145,0.02899405,96.84647042],[4.5343141,0.02899228,96.84586708],[4.53431371,0.02899051,96.84526347],[4.53431331,0.02898875,96.84465816],[4.53431291,0.02898698,96.84404972],[4.5343125,0.02898521,96.84343673],[4.5343121,0.02898344,96.84281775],[4.5343118,0.02898212,96.8423516],[4.53435529,0.02897128,96.8423516],[4.53435559,0.02897259,96.84281775],[4.534356,0.02897436,96.84343673],[4.5343564,0.02897612,96.84404972],[4.5343568,0.02897788,96.84465816],[4.53435719,0.02897964,96.84526347],[4.53435759,0.02898141,96.84586708],[4.53435799,0.02898317,96.84647042],[4.53435839,0.02898493,96.8470749],[4.53435878,0.0289867,96.84768197],[4.53435918,0.02898846,96.84829305],[4.53435959,0.02899022,96.84890957],[4.53435999,0.02899198,96.84953297],[4.5343604,0.02899374,96.85016467],[4.53436081,0.0289955,96.85080611],[4.53436123,0.02899726,96.85145873],[4.53436165,0.02899902,96.85212397],[4.53436207,0.02900078,96.85280325],[4.5343625,0.02900253,96.85349802],[4.53436294,0.02900428,96.85420914],[4.53436338,0.02900604,96.85493511],[4.53436382,0.02900779,96.85567384],[4.53436427,0.02900954,96.85642325],[4.53436473,0.02901129,96.85718123],[4.53436518,0.02901303,96.85794569],[4.53436564,0.02901478,96.85871453],[4.5343661,0.02901653,96.8594857],[4.53436655,0.02901828,96.86025812],[4.53436701,0.02902003,96.86103166],[4.53436747,0.02902177,96.86180626],[4.53436793,0.02902352,96.86258186],[4.53436839,0.02902527,96.86335838],[4.53436885,0.02902702,96.86413575],[4.53436931,0.02902876,96.86491391],[4.53436977,0.02903051,96.86569279],[4.53437023,0.02903226,96.86647232],[4.53437069,0.02903401,96.86725243],[4.53437115,0.02903573,96.86803306],[4.53437161,0.02903748,96.86881412],[4.53437207,0.02903922,96.86959557],[4.53437253,0.02904097,96.87037731],[4.53437299,0.02904272,96.8711593],[4.53437346,0.02904447,96.87194145],[4.53437392,0.02904621,96.8727237],[4.53437438,0.02904796,96.87350599],[4.53437484,0.02904971,96.87428823],[4.5343753,0.02905146,96.87507036],[4.53437576,0.0290532,96.87585232],[4.53437623,0.02905495,96.87663403],[4.53437669,0.0290567,96.87741542],[4.53437715,0.02905845,96.87819642],[4.53437761,0.02906019,96.87897697],[4.53437807,0.02906194,96.87975699],[4.53437853,0.02906369,96.88053642],[4.53437899,0.02906544,96.88131518],[4.53437946,0.02906719,96.8820932],[4.53437992,0.02906893,96.88287042],[4.53438038,0.02907068,96.88364676],[4.53438084,0.02907243,96.88442216],[4.5343813,0.02907418,96.88519654],[4.53438175,0.02907593,96.88596983],[4.53438221,0.02907768,96.88674197],[4.53438267,0.02907942,96.88751289],[4.53438313,0.02908117,96.8882826],[4.53438359,0.02908292,96.88905123],[4.53438404,0.02908467,96.88981894],[4.5343845,0.02908642,96.89058588],[4.53438496,0.02908817,96.8913522],[4.53438542,0.02908992,96.89211807],[4.53438587,0.02909167,96.89288363],[4.53438633,0.02909342,96.89364906],[4.53438679,0.02909517,96.89441451],[4.53438724,0.02909692,96.89518013],[4.5343877,0.02909867,96.89594608],[4.53438816,0.02910042,96.89671253],[4.53438861,0.02910216,96.89747961],[4.53438907,0.02910391,96.89824744],[4.53438953,0.02910566,96.89901615],[4.53438999,0.02910741,96.89978585],[4.53439045,0.02910916,96.90055666],[4.53439091,0.02911091,96.9013287],[4.53439137,0.02911266,96.9021021],[4.53439183,0.02911441,96.90287698],[4.53439229,0.02911616,96.90365344],[4.53439275,0.0291179,96.90443162],[4.53439321,0.02911965,96.90521163],[4.53439367,0.0291214,96.9059936],[4.53439414,0.02912315,96.90677765],[4.5343946,0.0291249,96.90756389],[4.53439507,0.02912664,96.90835245],[4.53439553,0.02912839,96.90914345],[4.534396,0.02913014,96.90993696],[4.53439647,0.02913188,96.91073285],[4.53439694,0.02913363,96.91153097],[4.53439741,0.02913538,96.91233112],[4.53439788,0.02913712,96.91313314],[4.53439835,0.02913887,96.91393685],[4.53439882,0.02914062,96.91474208],[4.53439929,0.02914236,96.91554865],[4.53439977,0.02914411,96.9163564],[4.53440024,0.02914585,96.91716514],[4.53440071,0.0291476,96.9179747],[4.53440118,0.02914934,96.91878492],[4.53440166,0.02915109,96.91959563],[4.53440213,0.02915284,96.92040666],[4.53440261,0.02915458,96.92121787],[4.53440308,0.02915633,96.92202908],[4.53440355,0.02915807,96.92284013],[4.53440403,0.02915982,96.92365087],[4.5344045,0.02916156,96.92446113],[4.53440497,0.02916331,96.92527074],[4.53440545,0.02916506,96.92607955],[4.53440592,0.0291668,96.92688739],[4.53440639,0.02916855,96.9276942],[4.53440687,0.02917029,96.92849998],[4.53440734,0.02917204,96.92930475],[4.53440781,0.02917379,96.93010852],[4.53440828,0.02917553,96.93091132],[4.53440875,0.02917728,96.93171315],[4.53440922,0.02917903,96.93251403],[4.5344097,0.02918077,96.93331398],[4.53441017,0.02918252,96.93411302],[4.53441064,0.02918427,96.93491115],[4.53441111,0.02918601,96.9357084],[4.53441158,0.02918776,96.93650478],[4.53441205,0.02918951,96.93730031],[4.53441251,0.02919125,96.93809499],[4.53441298,0.029193,96.93888886],[4.53441345,0.02919475,96.93968192],[4.53441392,0.0291965,96.94047419],[4.53441439,0.02919824,96.94126568],[4.53441486,0.02919999,96.94205642],[4.53441533,0.02920174,96.94284641],[4.53441579,0.02920349,96.94363568],[4.53441626,0.02920523,96.94442423],[4.53441673,0.02920698,96.94521209],[4.5344172,0.02920873,96.94599927],[4.53441766,0.02921048,96.94678579],[4.53441813,0.02921223,96.94757166],[4.5344186,0.02921398,96.94835689],[4.53441907,0.02921572,96.94914146],[4.53441953,0.02921747,96.94992525],[4.53442,0.02921922,96.95070818],[4.53442046,0.02922097,96.95149014],[4.53442093,0.02922272,96.95227105],[4.5344214,0.02922447,96.95305081],[4.53442186,0.02922622,96.95382931],[4.53442233,0.02922797,96.95460646],[4.53442279,0.02922971,96.95538216],[4.53442325,0.02923146,96.95615632],[4.53442372,0.02923321,96.95692884],[4.53442418,0.02923496,96.95769962],[4.53442464,0.02923671,96.95846857],[4.53442511,0.02923846,96.95923558],[4.53442557,0.02924021,96.96000055],[4.53442603,0.02924197,96.9607634],[4.53442649,0.02924372,96.96152402],[4.53442695,0.02924547,96.96228232],[4.53442741,0.02924722,96.9630382],[4.53442786,0.02924897,96.96379155],[4.53442832,0.02925072,96.96454231],[4.53442878,0.02925247,96.9652904],[4.53442923,0.02925423,96.96603575],[4.53442969,0.02925598,96.96677829],[4.53443014,0.02925773,96.96751976],[4.5344306,0.02925948,96.96826919],[4.53443106,0.02926124,96.96903743],[4.53443154,0.02926298,96.96983501],[4.53443202,0.02926473,96.97066484],[4.53443251,0.02926647,96.97152214],[4.53443302,0.02926821,96.97240179],[4.53443352,0.02926994,96.97329865],[4.53443403,0.02927168,96.9742076],[4.53443455,0.02927341,96.97512351],[4.53443506,0.02927515,96.97604123],[4.53443558,0.02927688,96.97695562],[4.53443609,0.02927862,96.97786168],[4.53443659,0.02928036,96.97875772],[4.5344371,0.0292821,96.97964544],[4.5344376,0.02928383,96.98052669],[4.5344381,0.02928557,96.98140331],[4.5344386,0.02928731,96.98227715],[4.5344391,0.02928905,96.98315007],[4.5344396,0.02929079,96.9840239],[4.5344401,0.02929253,96.98490051],[4.5344406,0.02929427,96.98578175],[4.53444111,0.029296,96.98666948],[4.53444161,0.02929774,96.98756554],[4.53444212,0.02929948,96.98847181],[4.53444264,0.02930121,96.98939005],[4.53444315,0.02930294,96.99032008],[4.53444367,0.02930468,96.99125972],[4.5344442,0.02930641,96.99220668],[4.53444472,0.02930814,96.9931587],[4.53444525,0.02930987,96.99411348],[4.53444577,0.0293116,96.99506873],[4.5344463,0.02931333,96.99602218],[4.53444682,0.02931506,96.99697154],[4.53444734,0.02931679,96.9979145],[4.53444786,0.02931852,96.99884879],[4.53444837,0.02932025,96.9997721],[4.53444888,0.02932199,97.00068275],[4.53444938,0.02932372,97.00158146],[4.53444989,0.02932546,97.00246956],[4.53445038,0.0293272,97.00334839],[4.53445088,0.02932893,97.00421928],[4.53445137,0.02933067,97.00508356],[4.53445186,0.02933241,97.00594258],[4.53445235,0.02933415,97.00679766],[4.53445284,0.02933589,97.00765015],[4.53445332,0.02933763,97.00850139],[4.53445381,0.02933937,97.00935271],[4.53445429,0.02934111,97.01020546],[4.53445478,0.02934285,97.01106075],[4.53445527,0.02934459,97.01191882],[4.53445576,0.02934633,97.01277968],[4.53445625,0.02934806,97.01364334],[4.53445673,0.0293498,97.01450981],[4.53445722,0.02935154,97.01537909],[4.53445771,0.02935328,97.01625121],[4.5344582,0.02935501,97.01712616],[4.5344587,0.02935675,97.01800396],[4.53445919,0.02935849,97.01888462],[4.53445968,0.02936022,97.01976814],[4.53446017,0.02936196,97.02065454],[4.53446067,0.0293637,97.02154383],[4.53446116,0.02936543,97.02243601],[4.53446165,0.02936717,97.0233311],[4.53446215,0.0293689,97.0242291],[4.53446264,0.02937064,97.02513002],[4.53446314,0.02937237,97.02603386],[4.53446364,0.02937411,97.02694066],[4.53446413,0.02937584,97.02785043],[4.53446463,0.02937758,97.02876319],[4.53446513,0.02937931,97.02967896],[4.53446562,0.02938104,97.03059776],[4.53446612,0.02938278,97.03151961],[4.53446662,0.02938451,97.03244453],[4.53446712,0.02938624,97.03337253],[4.53446762,0.02938797,97.03430365],[4.53446812,0.02938971,97.03523789],[4.53446862,0.02939144,97.03617529],[4.53446912,0.02939317,97.03711585],[4.53446963,0.0293949,97.03805959],[4.53447013,0.02939663,97.03900651],[4.53447063,0.02939836,97.03995653],[4.53447113,0.02940009,97.04090962],[4.53447164,0.02940182,97.04186569],[4.53447214,0.02940355,97.04282472],[4.53447264,0.02940528,97.04378662],[4.53447315,0.02940701,97.04475135],[4.53447365,0.02940874,97.04571885],[4.53447416,0.02941047,97.04668907],[4.53447466,0.0294122,97.04766194],[4.53447517,0.02941393,97.0486374],[4.53447567,0.02941566,97.04961541],[4.53447618,0.02941739,97.0505959],[4.53447668,0.02941911,97.05157882],[4.53447719,0.02942084,97.05256411],[4.5344777,0.02942257,97.05355171],[4.5344782,0.0294243,97.05454156],[4.53447871,0.02942603,97.05553361],[4.53447921,0.02942775,97.05652779],[4.53447972,0.02942948,97.05752406],[4.53448023,0.02943121,97.05852235],[4.53448073,0.02943294,97.05952261],[4.53448124,0.02943466,97.06052478],[4.53448174,0.02943639,97.0615288],[4.53448225,0.02943812,97.06253461],[4.53448275,0.02943985,97.06354216],[4.53448326,0.02944157,97.06455139],[4.53448376,0.0294433,97.06556224],[4.53448427,0.02944503,97.06657465],[4.53448477,0.02944675,97.06758857],[4.53448528,0.02944848,97.06860393],[4.53448578,0.02945021,97.06962069],[4.53448628,0.02945193,97.07063873],[4.53448678,0.02945366,97.07165792],[4.53448729,0.02945539,97.07267812],[4.53448779,0.02945712,97.07369918],[4.53448829,0.02945884,97.07472109],[4.53448879,0.02946057,97.07574393],[4.53448929,0.0294623,97.07676782],[4.53448979,0.02946402,97.07779286],[4.53449029,0.02946575,97.07881915],[4.53449079,0.02946748,97.07984679],[4.53449129,0.02946921,97.08087589],[4.53449178,0.02947093,97.08190656],[4.53449228,0.02947266,97.08293889],[4.53449278,0.02947439,97.08397298],[4.53449328,0.02947612,97.08500895],[4.53449377,0.02947784,97.0860469],[4.53449427,0.02947957,97.08708693],[4.53449477,0.0294813,97.08812913],[4.53449526,0.02948303,97.08917363],[4.53449576,0.02948476,97.09022051],[4.53449626,0.02948649,97.09126989],[4.53449676,0.02948821,97.09232187],[4.53449725,0.02948994,97.09337655],[4.53449775,0.02949167,97.09443403],[4.53449825,0.0294934,97.09549443],[4.53449875,0.02949513,97.09655783],[4.53449925,0.02949686,97.09762435],[4.53449975,0.02949859,97.09869409],[4.53450025,0.02950032,97.09976716],[4.53450075,0.02950205,97.10084365],[4.53450125,0.02950378,97.10192367],[4.53450175,0.0295055,97.10300732],[4.53450225,0.02950723,97.10409448],[4.53450275,0.02950896,97.10518481],[4.53450326,0.02951069,97.10627798],[4.53450376,0.02951242,97.10737364],[4.53450426,0.02951415,97.10847146],[4.53450477,0.02951588,97.1095711],[4.53450527,0.02951761,97.11067221],[4.53450577,0.02951934,97.11177446],[4.53450627,0.02952107,97.1128775],[4.53450678,0.0295228,97.11398099],[4.53450728,0.02952453,97.1150846],[4.53450778,0.02952626,97.11618798],[4.53450828,0.02952799,97.11729079],[4.53450878,0.02952972,97.11839269],[4.53450928,0.02953145,97.11949353],[4.53450978,0.02953318,97.12059329],[4.53451028,0.02953492,97.12169197],[4.53451077,0.02953665,97.12278958],[4.53451127,0.02953838,97.12388613],[4.53451177,0.02954012,97.1249816],[4.53451226,0.02954185,97.126076],[4.53451275,0.02954358,97.12716934],[4.53451325,0.02954532,97.12826162],[4.53451374,0.02954705,97.12935283],[4.53451423,0.02954879,97.13044299],[4.53451472,0.02955052,97.13153209],[4.53451521,0.02955226,97.13262013],[4.5345157,0.029554,97.13370712],[4.53451619,0.02955573,97.13479306],[4.53451668,0.02955747,97.13587795],[4.53451717,0.02955921,97.13696179],[4.53451766,0.02956094,97.13804459],[4.53451814,0.02956268,97.13912635],[4.53451863,0.02956442,97.14020707],[4.53451911,0.02956616,97.14128674],[4.5345196,0.0295679,97.14236539],[4.53452008,0.02956964,97.14344299],[4.53452057,0.02957137,97.14451966],[4.53452105,0.02957311,97.14559585],[4.53452153,0.02957485,97.1466721],[4.53452202,0.02957659,97.14774897],[4.5345225,0.02957833,97.14882701],[4.53452298,0.02958007,97.14990676],[4.53452347,0.02958181,97.15098879],[4.53452395,0.02958355,97.15207364],[4.53452444,0.02958529,97.15316185],[4.53452493,0.02958703,97.15425398],[4.53452542,0.02958877,97.15535059],[4.53452591,0.02959051,97.15645221],[4.5345264,0.02959225,97.15755854],[4.53452689,0.02959399,97.1586658],[4.53452738,0.02959573,97.15976934],[4.53452787,0.02959747,97.16086454],[4.53452836,0.02959921,97.16194674],[4.53452883,0.02960095,97.1630113],[4.5345293,0.0296027,97.16405359],[4.53452976,0.02960445,97.16506916],[4.53453022,0.0296062,97.1660583],[4.53453066,0.02960795,97.167026],[4.5345311,0.02960971,97.16797747],[4.53453154,0.02961146,97.16891791],[4.53453198,0.02961322,97.16985252],[4.53453241,0.02961498,97.1707865],[4.53453285,0.02961673,97.17172505],[4.53453329,0.02961849,97.17267337],[4.53449024,0.02963111,97.17267337]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-3,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1004700","id":-3,"type":"none","predecessorId":-4,"sOffset":91.6152442585}},{"geometry":{"coordinates":[[[4.53453329,0.02961849,97.17267337],[4.53453285,0.02961673,97.17172505],[4.53453241,0.02961498,97.1707865],[4.53453198,0.02961322,97.16985252],[4.53453154,0.02961146,97.16891791],[4.5345311,0.02960971,97.16797747],[4.53453066,0.02960795,97.167026],[4.53453022,0.0296062,97.1660583],[4.53452976,0.02960445,97.16506916],[4.5345293,0.0296027,97.16405359],[4.53452883,0.02960095,97.1630113],[4.53452836,0.02959921,97.16194674],[4.53452787,0.02959747,97.16086454],[4.53452738,0.02959573,97.15976934],[4.53452689,0.02959399,97.1586658],[4.5345264,0.02959225,97.15755854],[4.53452591,0.02959051,97.15645221],[4.53452542,0.02958877,97.15535059],[4.53452493,0.02958703,97.15425398],[4.53452444,0.02958529,97.15316185],[4.53452395,0.02958355,97.15207364],[4.53452347,0.02958181,97.15098879],[4.53452298,0.02958007,97.14990676],[4.5345225,0.02957833,97.14882701],[4.53452202,0.02957659,97.14774897],[4.53452153,0.02957485,97.1466721],[4.53452105,0.02957311,97.14559585],[4.53452057,0.02957137,97.14451966],[4.53452008,0.02956964,97.14344299],[4.5345196,0.0295679,97.14236539],[4.53451911,0.02956616,97.14128674],[4.53451863,0.02956442,97.14020707],[4.53451814,0.02956268,97.13912635],[4.53451766,0.02956094,97.13804459],[4.53451717,0.02955921,97.13696179],[4.53451668,0.02955747,97.13587795],[4.53451619,0.02955573,97.13479306],[4.5345157,0.029554,97.13370712],[4.53451521,0.02955226,97.13262013],[4.53451472,0.02955052,97.13153209],[4.53451423,0.02954879,97.13044299],[4.53451374,0.02954705,97.12935283],[4.53451325,0.02954532,97.12826162],[4.53451275,0.02954358,97.12716934],[4.53451226,0.02954185,97.126076],[4.53451177,0.02954012,97.1249816],[4.53451127,0.02953838,97.12388613],[4.53451077,0.02953665,97.12278958],[4.53451028,0.02953492,97.12169197],[4.53450978,0.02953318,97.12059329],[4.53450928,0.02953145,97.11949353],[4.53450878,0.02952972,97.11839269],[4.53450828,0.02952799,97.11729079],[4.53450778,0.02952626,97.11618798],[4.53450728,0.02952453,97.1150846],[4.53450678,0.0295228,97.11398099],[4.53450627,0.02952107,97.1128775],[4.53450577,0.02951934,97.11177446],[4.53450527,0.02951761,97.11067221],[4.53450477,0.02951588,97.1095711],[4.53450426,0.02951415,97.10847146],[4.53450376,0.02951242,97.10737364],[4.53450326,0.02951069,97.10627798],[4.53450275,0.02950896,97.10518481],[4.53450225,0.02950723,97.10409448],[4.53450175,0.0295055,97.10300732],[4.53450125,0.02950378,97.10192367],[4.53450075,0.02950205,97.10084365],[4.53450025,0.02950032,97.09976716],[4.53449975,0.02949859,97.09869409],[4.53449925,0.02949686,97.09762435],[4.53449875,0.02949513,97.09655783],[4.53449825,0.0294934,97.09549443],[4.53449775,0.02949167,97.09443403],[4.53449725,0.02948994,97.09337655],[4.53449676,0.02948821,97.09232187],[4.53449626,0.02948649,97.09126989],[4.53449576,0.02948476,97.09022051],[4.53449526,0.02948303,97.08917363],[4.53449477,0.0294813,97.08812913],[4.53449427,0.02947957,97.08708693],[4.53449377,0.02947784,97.0860469],[4.53449328,0.02947612,97.08500895],[4.53449278,0.02947439,97.08397298],[4.53449228,0.02947266,97.08293889],[4.53449178,0.02947093,97.08190656],[4.53449129,0.02946921,97.08087589],[4.53449079,0.02946748,97.07984679],[4.53449029,0.02946575,97.07881915],[4.53448979,0.02946402,97.07779286],[4.53448929,0.0294623,97.07676782],[4.53448879,0.02946057,97.07574393],[4.53448829,0.02945884,97.07472109],[4.53448779,0.02945712,97.07369918],[4.53448729,0.02945539,97.07267812],[4.53448678,0.02945366,97.07165792],[4.53448628,0.02945193,97.07063873],[4.53448578,0.02945021,97.06962069],[4.53448528,0.02944848,97.06860393],[4.53448477,0.02944675,97.06758857],[4.53448427,0.02944503,97.06657465],[4.53448376,0.0294433,97.06556224],[4.53448326,0.02944157,97.06455139],[4.53448275,0.02943985,97.06354216],[4.53448225,0.02943812,97.06253461],[4.53448174,0.02943639,97.0615288],[4.53448124,0.02943466,97.06052478],[4.53448073,0.02943294,97.05952261],[4.53448023,0.02943121,97.05852235],[4.53447972,0.02942948,97.05752406],[4.53447921,0.02942775,97.05652779],[4.53447871,0.02942603,97.05553361],[4.5344782,0.0294243,97.05454156],[4.5344777,0.02942257,97.05355171],[4.53447719,0.02942084,97.05256411],[4.53447668,0.02941911,97.05157882],[4.53447618,0.02941739,97.0505959],[4.53447567,0.02941566,97.04961541],[4.53447517,0.02941393,97.0486374],[4.53447466,0.0294122,97.04766194],[4.53447416,0.02941047,97.04668907],[4.53447365,0.02940874,97.04571885],[4.53447315,0.02940701,97.04475135],[4.53447264,0.02940528,97.04378662],[4.53447214,0.02940355,97.04282472],[4.53447164,0.02940182,97.04186569],[4.53447113,0.02940009,97.04090962],[4.53447063,0.02939836,97.03995653],[4.53447013,0.02939663,97.03900651],[4.53446963,0.0293949,97.03805959],[4.53446912,0.02939317,97.03711585],[4.53446862,0.02939144,97.03617529],[4.53446812,0.02938971,97.03523789],[4.53446762,0.02938797,97.03430365],[4.53446712,0.02938624,97.03337253],[4.53446662,0.02938451,97.03244453],[4.53446612,0.02938278,97.03151961],[4.53446562,0.02938104,97.03059776],[4.53446513,0.02937931,97.02967896],[4.53446463,0.02937758,97.02876319],[4.53446413,0.02937584,97.02785043],[4.53446364,0.02937411,97.02694066],[4.53446314,0.02937237,97.02603386],[4.53446264,0.02937064,97.02513002],[4.53446215,0.0293689,97.0242291],[4.53446165,0.02936717,97.0233311],[4.53446116,0.02936543,97.02243601],[4.53446067,0.0293637,97.02154383],[4.53446017,0.02936196,97.02065454],[4.53445968,0.02936022,97.01976814],[4.53445919,0.02935849,97.01888462],[4.5344587,0.02935675,97.01800396],[4.5344582,0.02935501,97.01712616],[4.53445771,0.02935328,97.01625121],[4.53445722,0.02935154,97.01537909],[4.53445673,0.0293498,97.01450981],[4.53445625,0.02934806,97.01364334],[4.53445576,0.02934633,97.01277968],[4.53445527,0.02934459,97.01191882],[4.53445478,0.02934285,97.01106075],[4.53445429,0.02934111,97.01020546],[4.53445381,0.02933937,97.00935271],[4.53445332,0.02933763,97.00850139],[4.53445284,0.02933589,97.00765015],[4.53445235,0.02933415,97.00679766],[4.53445186,0.02933241,97.00594258],[4.53445137,0.02933067,97.00508356],[4.53445088,0.02932893,97.00421928],[4.53445038,0.0293272,97.00334839],[4.53444989,0.02932546,97.00246956],[4.53444938,0.02932372,97.00158146],[4.53444888,0.02932199,97.00068275],[4.53444837,0.02932025,96.9997721],[4.53444786,0.02931852,96.99884879],[4.53444734,0.02931679,96.9979145],[4.53444682,0.02931506,96.99697154],[4.5344463,0.02931333,96.99602218],[4.53444577,0.0293116,96.99506873],[4.53444525,0.02930987,96.99411348],[4.53444472,0.02930814,96.9931587],[4.5344442,0.02930641,96.99220668],[4.53444367,0.02930468,96.99125972],[4.53444315,0.02930294,96.99032008],[4.53444264,0.02930121,96.98939005],[4.53444212,0.02929948,96.98847181],[4.53444161,0.02929774,96.98756554],[4.53444111,0.029296,96.98666948],[4.5344406,0.02929427,96.98578175],[4.5344401,0.02929253,96.98490051],[4.5344396,0.02929079,96.9840239],[4.5344391,0.02928905,96.98315007],[4.5344386,0.02928731,96.98227715],[4.5344381,0.02928557,96.98140331],[4.5344376,0.02928383,96.98052669],[4.5344371,0.0292821,96.97964544],[4.53443659,0.02928036,96.97875772],[4.53443609,0.02927862,96.97786168],[4.53443558,0.02927688,96.97695562],[4.53443506,0.02927515,96.97604123],[4.53443455,0.02927341,96.97512351],[4.53443403,0.02927168,96.9742076],[4.53443352,0.02926994,96.97329865],[4.53443302,0.02926821,96.97240179],[4.53443251,0.02926647,96.97152214],[4.53443202,0.02926473,96.97066484],[4.53443154,0.02926298,96.96983501],[4.53443106,0.02926124,96.96903743],[4.5344306,0.02925948,96.96826919],[4.53443014,0.02925773,96.96751976],[4.53442969,0.02925598,96.96677829],[4.53442923,0.02925423,96.96603575],[4.53442878,0.02925247,96.9652904],[4.53442832,0.02925072,96.96454231],[4.53442786,0.02924897,96.96379155],[4.53442741,0.02924722,96.9630382],[4.53442695,0.02924547,96.96228232],[4.53442649,0.02924372,96.96152402],[4.53442603,0.02924197,96.9607634],[4.53442557,0.02924021,96.96000055],[4.53442511,0.02923846,96.95923558],[4.53442464,0.02923671,96.95846857],[4.53442418,0.02923496,96.95769962],[4.53442372,0.02923321,96.95692884],[4.53442325,0.02923146,96.95615632],[4.53442279,0.02922971,96.95538216],[4.53442233,0.02922797,96.95460646],[4.53442186,0.02922622,96.95382931],[4.5344214,0.02922447,96.95305081],[4.53442093,0.02922272,96.95227105],[4.53442046,0.02922097,96.95149014],[4.53442,0.02921922,96.95070818],[4.53441953,0.02921747,96.94992525],[4.53441907,0.02921572,96.94914146],[4.5344186,0.02921398,96.94835689],[4.53441813,0.02921223,96.94757166],[4.53441766,0.02921048,96.94678579],[4.5344172,0.02920873,96.94599927],[4.53441673,0.02920698,96.94521209],[4.53441626,0.02920523,96.94442423],[4.53441579,0.02920349,96.94363568],[4.53441533,0.02920174,96.94284641],[4.53441486,0.02919999,96.94205642],[4.53441439,0.02919824,96.94126568],[4.53441392,0.0291965,96.94047419],[4.53441345,0.02919475,96.93968192],[4.53441298,0.029193,96.93888886],[4.53441251,0.02919125,96.93809499],[4.53441205,0.02918951,96.93730031],[4.53441158,0.02918776,96.93650478],[4.53441111,0.02918601,96.9357084],[4.53441064,0.02918427,96.93491115],[4.53441017,0.02918252,96.93411302],[4.5344097,0.02918077,96.93331398],[4.53440922,0.02917903,96.93251403],[4.53440875,0.02917728,96.93171315],[4.53440828,0.02917553,96.93091132],[4.53440781,0.02917379,96.93010852],[4.53440734,0.02917204,96.92930475],[4.53440687,0.02917029,96.92849998],[4.53440639,0.02916855,96.9276942],[4.53440592,0.0291668,96.92688739],[4.53440545,0.02916506,96.92607955],[4.53440497,0.02916331,96.92527074],[4.5344045,0.02916156,96.92446113],[4.53440403,0.02915982,96.92365087],[4.53440355,0.02915807,96.92284013],[4.53440308,0.02915633,96.92202908],[4.53440261,0.02915458,96.92121787],[4.53440213,0.02915284,96.92040666],[4.53440166,0.02915109,96.91959563],[4.53440118,0.02914934,96.91878492],[4.53440071,0.0291476,96.9179747],[4.53440024,0.02914585,96.91716514],[4.53439977,0.02914411,96.9163564],[4.53439929,0.02914236,96.91554865],[4.53439882,0.02914062,96.91474208],[4.53439835,0.02913887,96.91393685],[4.53439788,0.02913712,96.91313314],[4.53439741,0.02913538,96.91233112],[4.53439694,0.02913363,96.91153097],[4.53439647,0.02913188,96.91073285],[4.534396,0.02913014,96.90993696],[4.53439553,0.02912839,96.90914345],[4.53439507,0.02912664,96.90835245],[4.5343946,0.0291249,96.90756389],[4.53439414,0.02912315,96.90677765],[4.53439367,0.0291214,96.9059936],[4.53439321,0.02911965,96.90521163],[4.53439275,0.0291179,96.90443162],[4.53439229,0.02911616,96.90365344],[4.53439183,0.02911441,96.90287698],[4.53439137,0.02911266,96.9021021],[4.53439091,0.02911091,96.9013287],[4.53439045,0.02910916,96.90055666],[4.53438999,0.02910741,96.89978585],[4.53438953,0.02910566,96.89901615],[4.53438907,0.02910391,96.89824744],[4.53438861,0.02910216,96.89747961],[4.53438816,0.02910042,96.89671253],[4.5343877,0.02909867,96.89594608],[4.53438724,0.02909692,96.89518013],[4.53438679,0.02909517,96.89441451],[4.53438633,0.02909342,96.89364906],[4.53438587,0.02909167,96.89288363],[4.53438542,0.02908992,96.89211807],[4.53438496,0.02908817,96.8913522],[4.5343845,0.02908642,96.89058588],[4.53438404,0.02908467,96.88981894],[4.53438359,0.02908292,96.88905123],[4.53438313,0.02908117,96.8882826],[4.53438267,0.02907942,96.88751289],[4.53438221,0.02907768,96.88674197],[4.53438175,0.02907593,96.88596983],[4.5343813,0.02907418,96.88519654],[4.53438084,0.02907243,96.88442216],[4.53438038,0.02907068,96.88364676],[4.53437992,0.02906893,96.88287042],[4.53437946,0.02906719,96.8820932],[4.53437899,0.02906544,96.88131518],[4.53437853,0.02906369,96.88053642],[4.53437807,0.02906194,96.87975699],[4.53437761,0.02906019,96.87897697],[4.53437715,0.02905845,96.87819642],[4.53437669,0.0290567,96.87741542],[4.53437623,0.02905495,96.87663403],[4.53437576,0.0290532,96.87585232],[4.5343753,0.02905146,96.87507036],[4.53437484,0.02904971,96.87428823],[4.53437438,0.02904796,96.87350599],[4.53437392,0.02904621,96.8727237],[4.53437346,0.02904447,96.87194145],[4.53437299,0.02904272,96.8711593],[4.53437253,0.02904097,96.87037731],[4.53437207,0.02903922,96.86959557],[4.53437161,0.02903748,96.86881412],[4.53437115,0.02903573,96.86803306],[4.53437069,0.02903401,96.86725243],[4.53437023,0.02903226,96.86647232],[4.53436977,0.02903051,96.86569279],[4.53436931,0.02902876,96.86491391],[4.53436885,0.02902702,96.86413575],[4.53436839,0.02902527,96.86335838],[4.53436793,0.02902352,96.86258186],[4.53436747,0.02902177,96.86180626],[4.53436701,0.02902003,96.86103166],[4.53436655,0.02901828,96.86025812],[4.5343661,0.02901653,96.8594857],[4.53436564,0.02901478,96.85871453],[4.53436518,0.02901303,96.85794569],[4.53436473,0.02901129,96.85718123],[4.53436427,0.02900954,96.85642325],[4.53436382,0.02900779,96.85567384],[4.53436338,0.02900604,96.85493511],[4.53436294,0.02900428,96.85420914],[4.5343625,0.02900253,96.85349802],[4.53436207,0.02900078,96.85280325],[4.53436165,0.02899902,96.85212397],[4.53436123,0.02899726,96.85145873],[4.53436081,0.0289955,96.85080611],[4.5343604,0.02899374,96.85016467],[4.53435999,0.02899198,96.84953297],[4.53435959,0.02899022,96.84890957],[4.53435918,0.02898846,96.84829305],[4.53435878,0.0289867,96.84768197],[4.53435839,0.02898493,96.8470749],[4.53435799,0.02898317,96.84647042],[4.53435759,0.02898141,96.84586708],[4.53435719,0.02897964,96.84526347],[4.5343568,0.02897788,96.84465816],[4.5343564,0.02897612,96.84404972],[4.534356,0.02897436,96.84343673],[4.53435559,0.02897259,96.84281775],[4.53435529,0.02897128,96.8423516],[4.53435711,0.02897083,96.84748857],[4.53435743,0.02897214,96.84801153],[4.53435786,0.02897389,96.84871403],[4.53435829,0.02897564,96.84941761],[4.53435873,0.0289774,96.85012227],[4.53435916,0.02897915,96.850828],[4.53435959,0.02898091,96.8515348],[4.53436003,0.02898266,96.85224264],[4.53436046,0.02898441,96.85295154],[4.53436089,0.02898617,96.85366147],[4.53436133,0.02898792,96.85437242],[4.53436176,0.02898967,96.8550844],[4.5343622,0.02899143,96.85579739],[4.53436264,0.02899318,96.85651139],[4.53436307,0.02899493,96.85722637],[4.53436351,0.02899669,96.85794235],[4.53436395,0.02899844,96.8586593],[4.53436439,0.02900019,96.85937722],[4.53436482,0.02900194,96.86009611],[4.53436526,0.0290037,96.86081594],[4.5343657,0.02900545,96.86153672],[4.53436614,0.0290072,96.86225844],[4.53436658,0.02900895,96.86298108],[4.53436702,0.02901071,96.86370464],[4.53436746,0.02901246,96.86442912],[4.5343679,0.02901421,96.86515449],[4.53436834,0.02901596,96.86588075],[4.53436879,0.02901771,96.86660791],[4.53436923,0.02901947,96.86733593],[4.53436967,0.02902122,96.86806483],[4.53437011,0.02902297,96.86879458],[4.53437056,0.02902472,96.86952518],[4.534371,0.02902647,96.87025663],[4.53437144,0.02902822,96.8709889],[4.53437189,0.02902997,96.871722],[4.53437233,0.02903172,96.87245592],[4.53437278,0.02903347,96.87319065],[4.53437321,0.0290352,96.87392617],[4.53437366,0.02903695,96.87466248],[4.5343741,0.0290387,96.87539958],[4.53437455,0.02904046,96.87613745],[4.534375,0.02904221,96.87687608],[4.53437544,0.02904396,96.87761546],[4.53437589,0.02904571,96.8783556],[4.53437634,0.02904746,96.87909647],[4.53437678,0.02904921,96.87983806],[4.53437723,0.02905096,96.88058038],[4.53437768,0.02905271,96.88132341],[4.53437813,0.02905446,96.88206715],[4.53437858,0.02905621,96.88281158],[4.53437902,0.02905797,96.88355669],[4.53437947,0.02905972,96.88430248],[4.53437992,0.02906147,96.88504893],[4.53438037,0.02906322,96.88579605],[4.53438082,0.02906497,96.88654381],[4.53438127,0.02906672,96.88729222],[4.53438172,0.02906847,96.88804125],[4.53438217,0.02907022,96.88879092],[4.53438262,0.02907197,96.88954119],[4.53438307,0.02907372,96.89029207],[4.53438352,0.02907547,96.89104355],[4.53438397,0.02907722,96.89179561],[4.53438443,0.02907897,96.89254825],[4.53438488,0.02908072,96.89330147],[4.53438533,0.02908247,96.89405524],[4.53438578,0.02908422,96.89480961],[4.53438623,0.02908597,96.8955646],[4.53438669,0.02908772,96.89632023],[4.53438714,0.02908947,96.89707654],[4.53438759,0.02909122,96.89783356],[4.53438805,0.02909297,96.89859131],[4.5343885,0.02909472,96.89934982],[4.53438896,0.02909647,96.90010912],[4.53438941,0.02909822,96.90086925],[4.53438986,0.02909997,96.90163023],[4.53439032,0.02910172,96.90239207],[4.53439078,0.02910347,96.90315477],[4.53439123,0.02910522,96.90391831],[4.53439169,0.02910697,96.90468268],[4.53439214,0.02910872,96.90544788],[4.5343926,0.02911047,96.9062139],[4.53439306,0.02911221,96.90698072],[4.53439351,0.02911396,96.90774834],[4.53439397,0.02911571,96.90851674],[4.53439443,0.02911746,96.90928591],[4.53439489,0.02911921,96.91005585],[4.53439535,0.02912096,96.91082655],[4.53439581,0.02912271,96.91159799],[4.53439627,0.02912446,96.91237017],[4.53439673,0.02912621,96.91314308],[4.53439718,0.02912795,96.9139167],[4.53439765,0.0291297,96.91469102],[4.53439811,0.02913145,96.91546604],[4.53439857,0.0291332,96.91624175],[4.53439903,0.02913495,96.91701813],[4.53439949,0.0291367,96.91779518],[4.53439995,0.02913844,96.91857288],[4.53440041,0.02914019,96.91935123],[4.53440087,0.02914194,96.92013022],[4.53440134,0.02914369,96.92090982],[4.5344018,0.02914544,96.92169005],[4.53440226,0.02914719,96.92247088],[4.53440272,0.02914893,96.92325231],[4.53440319,0.02915068,96.92403434],[4.53440365,0.02915243,96.92481699],[4.53440411,0.02915418,96.92560024],[4.53440458,0.02915592,96.92638411],[4.53440504,0.02915767,96.9271686],[4.53440551,0.02915942,96.92795371],[4.53440597,0.02916117,96.92873944],[4.53440644,0.02916292,96.92952581],[4.5344069,0.02916466,96.93031281],[4.53440737,0.02916641,96.93110044],[4.53440783,0.02916816,96.93188871],[4.5344083,0.02916991,96.93267763],[4.53440877,0.02917165,96.93346719],[4.53440923,0.0291734,96.9342574],[4.5344097,0.02917515,96.93504827],[4.53441017,0.02917689,96.93583979],[4.53441064,0.02917864,96.93663197],[4.5344111,0.02918039,96.93742481],[4.53441157,0.02918214,96.93821833],[4.53441204,0.02918388,96.93901251],[4.53441251,0.02918563,96.93980737],[4.53441298,0.02918738,96.9406029],[4.53441345,0.02918912,96.94139911],[4.53441392,0.02919087,96.94219601],[4.53441439,0.02919262,96.9429936],[4.53441486,0.02919436,96.94379188],[4.53441533,0.02919611,96.94459085],[4.5344158,0.02919786,96.94539052],[4.53441627,0.0291996,96.9461909],[4.53441674,0.02920135,96.94699197],[4.53441721,0.0292031,96.94779376],[4.53441769,0.02920484,96.94859626],[4.53441816,0.02920659,96.94939947],[4.53441863,0.02920833,96.95020341],[4.5344191,0.02921008,96.95100806],[4.53441958,0.02921183,96.95181344],[4.53442005,0.02921357,96.95261955],[4.53442053,0.02921532,96.95342639],[4.534421,0.02921706,96.95423397],[4.53442147,0.02921881,96.95504229],[4.53442195,0.02922056,96.95585135],[4.53442242,0.0292223,96.95666116],[4.5344229,0.02922405,96.95747171],[4.53442338,0.02922579,96.95828303],[4.53442385,0.02922754,96.95909509],[4.53442433,0.02922928,96.95990792],[4.53442481,0.02923103,96.96072151],[4.53442528,0.02923277,96.96153587],[4.53442576,0.02923452,96.962351],[4.53442624,0.02923627,96.9631669],[4.53442672,0.02923801,96.96398358],[4.5344272,0.02923976,96.96480105],[4.53442768,0.0292415,96.96561929],[4.53442815,0.02924325,96.96643833],[4.53442863,0.02924499,96.96725815],[4.53442911,0.02924674,96.96807877],[4.5344296,0.02924848,96.96890019],[4.53443008,0.02925022,96.96972244],[4.53443056,0.02925197,96.97054554],[4.53443104,0.02925371,96.97136952],[4.53443152,0.02925546,96.97219442],[4.534432,0.0292572,96.97302025],[4.53443249,0.02925895,96.97384705],[4.53443297,0.02926069,96.97467485],[4.53443345,0.02926243,96.97550367],[4.53443394,0.02926418,96.97633355],[4.53443442,0.02926592,96.97716451],[4.53443491,0.02926767,96.97799659],[4.53443539,0.0292694,96.9788298],[4.53443587,0.02927115,96.97966419],[4.53443636,0.02927289,96.98049978],[4.53443685,0.02927463,96.98133659],[4.53443734,0.02927638,96.98217466],[4.53443782,0.02927812,96.98301401],[4.53443831,0.02927986,96.98385468],[4.5344388,0.0292816,96.9846967],[4.53443929,0.02928334,96.98554008],[4.53443978,0.02928509,96.98638487],[4.53444027,0.02928683,96.98723109],[4.53444076,0.02928857,96.98807877],[4.53444125,0.02929031,96.98892794],[4.53444174,0.02929205,96.98977862],[4.53444223,0.02929379,96.99063086],[4.53444272,0.02929553,96.99148467],[4.53444322,0.02929727,96.99234008],[4.53444371,0.02929901,96.99319714],[4.5344442,0.02930075,96.99405585],[4.5344447,0.02930249,96.99491626],[4.53444519,0.02930423,96.99577838],[4.53444569,0.02930597,96.99664221],[4.53444618,0.02930771,96.99750777],[4.53444668,0.02930945,96.99837507],[4.53444717,0.02931119,96.9992441],[4.53444767,0.02931292,97.00011487],[4.53444817,0.02931466,97.0009874],[4.53444866,0.0293164,97.00186169],[4.53444916,0.02931814,97.00273774],[4.53444966,0.02931987,97.00361557],[4.53445016,0.02932161,97.00449517],[4.53445066,0.02932335,97.00537656],[4.53445115,0.02932508,97.00625974],[4.53445165,0.02932682,97.00714472],[4.53445215,0.02932856,97.00803151],[4.53445265,0.02933029,97.00892011],[4.53445315,0.02933203,97.00981053],[4.53445365,0.02933376,97.01070278],[4.53445416,0.0293355,97.01159685],[4.53445466,0.02933723,97.01249277],[4.53445516,0.02933897,97.01339054],[4.53445566,0.0293407,97.01429016],[4.53445616,0.02934244,97.01519163],[4.53445666,0.02934417,97.01609498],[4.53445717,0.02934591,97.0170002],[4.53445767,0.02934764,97.0179073],[4.53445817,0.02934937,97.01881629],[4.53445868,0.02935111,97.01972717],[4.53445918,0.02935284,97.02063995],[4.53445968,0.02935457,97.02155463],[4.53446019,0.02935631,97.02247124],[4.53446069,0.02935804,97.02338976],[4.5344612,0.02935977,97.02431021],[4.5344617,0.02936151,97.0252326],[4.5344622,0.02936324,97.02615692],[4.53446271,0.02936497,97.0270832],[4.53446321,0.0293667,97.02801143],[4.53446372,0.02936843,97.02894161],[4.53446423,0.02937017,97.02987376],[4.53446473,0.0293719,97.03080787],[4.53446524,0.02937363,97.03174398],[4.53446574,0.02937536,97.03268209],[4.53446625,0.02937709,97.03362222],[4.53446675,0.02937882,97.03456439],[4.53446726,0.02938055,97.03550861],[4.53446777,0.02938228,97.03645491],[4.53446827,0.02938402,97.0374033],[4.53446878,0.02938575,97.03835379],[4.53446929,0.02938748,97.03930641],[4.53446979,0.02938921,97.04026117],[4.5344703,0.02939094,97.04121808],[4.53447081,0.02939267,97.04217717],[4.53447132,0.0293944,97.04313845],[4.53447182,0.02939613,97.04410194],[4.53447233,0.02939785,97.04506765],[4.53447284,0.02939958,97.0460356],[4.53447335,0.02940131,97.04700581],[4.53447385,0.02940304,97.0479783],[4.53447436,0.02940477,97.04895309],[4.53447487,0.0294065,97.04993018],[4.53447538,0.02940823,97.0509096],[4.53447589,0.02940996,97.05189136],[4.5344764,0.02941168,97.05287548],[4.53447691,0.02941341,97.05386198],[4.53447741,0.02941514,97.05485088],[4.53447792,0.02941687,97.05584218],[4.53447843,0.02941859,97.05683592],[4.53447894,0.02942032,97.0578321],[4.53447945,0.02942205,97.05883074],[4.53447996,0.02942378,97.05983187],[4.53448047,0.0294255,97.06083549],[4.53448098,0.02942723,97.06184162],[4.53448149,0.02942896,97.06285028],[4.534482,0.02943068,97.06386149],[4.53448251,0.02943241,97.06487527],[4.53448302,0.02943414,97.06589163],[4.53448353,0.02943586,97.06691058],[4.53448404,0.02943759,97.06793215],[4.53448455,0.02943931,97.06895636],[4.53448506,0.02944104,97.06998321],[4.53448557,0.02944277,97.07101273],[4.53448608,0.02944449,97.07204493],[4.5344866,0.02944622,97.07307983],[4.53448711,0.02944794,97.07411745],[4.53448762,0.02944967,97.07515781],[4.53448813,0.02945139,97.07620087],[4.53448864,0.02945312,97.07724657],[4.53448915,0.02945484,97.07829485],[4.53448966,0.02945656,97.07934563],[4.53449018,0.02945829,97.08039884],[4.53449069,0.02946001,97.08145441],[4.5344912,0.02946174,97.08251227],[4.53449171,0.02946346,97.08357236],[4.53449222,0.02946519,97.08463459],[4.53449273,0.02946691,97.08569891],[4.53449324,0.02946863,97.08676524],[4.53449375,0.02947036,97.08783351],[4.53449426,0.02947208,97.08890365],[4.53449477,0.02947381,97.08997559],[4.53449528,0.02947553,97.09104926],[4.53449579,0.02947726,97.09212459],[4.5344963,0.02947898,97.0932015],[4.53449681,0.02948071,97.09427994],[4.53449732,0.02948243,97.09535983],[4.53449783,0.02948416,97.09644109],[4.53449834,0.02948588,97.09752366],[4.53449884,0.02948761,97.09860747],[4.53449935,0.02948934,97.09969245],[4.53449986,0.02949106,97.10077853],[4.53450037,0.02949279,97.10186563],[4.53450087,0.02949452,97.10295368],[4.53450138,0.02949624,97.10404263],[4.53450189,0.02949797,97.10513238],[4.53450239,0.0294997,97.10622289],[4.5345029,0.02950143,97.10731406],[4.5345034,0.02950315,97.10840584],[4.53450391,0.02950488,97.10949816],[4.53450441,0.02950661,97.11059094],[4.53450491,0.02950834,97.11168411],[4.53450542,0.02951007,97.1127776],[4.53450592,0.0295118,97.11387134],[4.53450642,0.02951353,97.11496527],[4.53450692,0.02951526,97.1160593],[4.53450742,0.02951699,97.11715338],[4.53450792,0.02951872,97.11824743],[4.53450842,0.02952045,97.11934138],[4.53450892,0.02952218,97.12043515],[4.53450942,0.02952391,97.12152869],[4.53450992,0.02952564,97.12262191],[4.53451042,0.02952738,97.12371475],[4.53451091,0.02952911,97.12480714],[4.53451141,0.02953084,97.12589901],[4.5345119,0.02953257,97.12699028],[4.5345124,0.02953431,97.12808089],[4.53451289,0.02953604,97.12917076],[4.53451339,0.02953777,97.13025983],[4.53451388,0.02953951,97.13134803],[4.53451437,0.02954124,97.13243528],[4.53451486,0.02954298,97.13352151],[4.53451536,0.02954471,97.13460666],[4.53451585,0.02954645,97.13569065],[4.53451633,0.02954818,97.13677342],[4.53451682,0.02954992,97.13785489],[4.53451731,0.02955166,97.13893499],[4.5345178,0.02955339,97.14001365],[4.53451828,0.02955513,97.14109081],[4.53451877,0.02955687,97.14216638],[4.53451925,0.02955861,97.14324031],[4.53451974,0.02956034,97.14431252],[4.53452022,0.02956208,97.14538295],[4.5345207,0.02956382,97.14645151],[4.53452118,0.02956556,97.14751814],[4.53452166,0.0295673,97.14858277],[4.53452214,0.02956904,97.14964534],[4.53452262,0.02957078,97.15070576],[4.5345231,0.02957252,97.15176398],[4.53452358,0.02957427,97.15281991],[4.53452405,0.02957601,97.15387349],[4.53452453,0.02957775,97.15492466],[4.534525,0.02957949,97.15597333],[4.53452547,0.02958123,97.15701944],[4.53452594,0.02958298,97.15806292],[4.53452641,0.02958472,97.1591037],[4.53452688,0.02958647,97.16014171],[4.53452735,0.02958821,97.16117688],[4.53452782,0.02958996,97.16220914],[4.53452829,0.0295917,97.16323842],[4.53452875,0.02959345,97.16426465],[4.53452922,0.0295952,97.16528776],[4.53452968,0.02959694,97.16630767],[4.53453014,0.02959869,97.16732433],[4.5345306,0.02960044,97.16833766],[4.53453106,0.02960219,97.16934758],[4.53453152,0.02960394,97.17035404],[4.53453198,0.02960568,97.17135696],[4.53453243,0.02960743,97.17235627],[4.53453289,0.02960919,97.17335189],[4.53453334,0.02961094,97.17434377],[4.53453379,0.02961269,97.17533184],[4.53453424,0.02961444,97.17631601],[4.53453469,0.02961619,97.17729622],[4.53453514,0.02961795,97.17827241],[4.53453329,0.02961849,97.17267337]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004700","id":-2,"type":"shoulder","predecessorId":-3,"sOffset":91.6152442585}},{"geometry":{"coordinates":[[[4.53453514,0.02961795,97.17827241],[4.53453469,0.02961619,97.17729622],[4.53453424,0.02961444,97.17631601],[4.53453379,0.02961269,97.17533184],[4.53453334,0.02961094,97.17434377],[4.53453289,0.02960919,97.17335189],[4.53453243,0.02960743,97.17235627],[4.53453198,0.02960568,97.17135696],[4.53453152,0.02960394,97.17035404],[4.53453106,0.02960219,97.16934758],[4.5345306,0.02960044,97.16833766],[4.53453014,0.02959869,97.16732433],[4.53452968,0.02959694,97.16630767],[4.53452922,0.0295952,97.16528776],[4.53452875,0.02959345,97.16426465],[4.53452829,0.0295917,97.16323842],[4.53452782,0.02958996,97.16220914],[4.53452735,0.02958821,97.16117688],[4.53452688,0.02958647,97.16014171],[4.53452641,0.02958472,97.1591037],[4.53452594,0.02958298,97.15806292],[4.53452547,0.02958123,97.15701944],[4.534525,0.02957949,97.15597333],[4.53452453,0.02957775,97.15492466],[4.53452405,0.02957601,97.15387349],[4.53452358,0.02957427,97.15281991],[4.5345231,0.02957252,97.15176398],[4.53452262,0.02957078,97.15070576],[4.53452214,0.02956904,97.14964534],[4.53452166,0.0295673,97.14858277],[4.53452118,0.02956556,97.14751814],[4.5345207,0.02956382,97.14645151],[4.53452022,0.02956208,97.14538295],[4.53451974,0.02956034,97.14431252],[4.53451925,0.02955861,97.14324031],[4.53451877,0.02955687,97.14216638],[4.53451828,0.02955513,97.14109081],[4.5345178,0.02955339,97.14001365],[4.53451731,0.02955166,97.13893499],[4.53451682,0.02954992,97.13785489],[4.53451633,0.02954818,97.13677342],[4.53451585,0.02954645,97.13569065],[4.53451536,0.02954471,97.13460666],[4.53451486,0.02954298,97.13352151],[4.53451437,0.02954124,97.13243528],[4.53451388,0.02953951,97.13134803],[4.53451339,0.02953777,97.13025983],[4.53451289,0.02953604,97.12917076],[4.5345124,0.02953431,97.12808089],[4.5345119,0.02953257,97.12699028],[4.53451141,0.02953084,97.12589901],[4.53451091,0.02952911,97.12480714],[4.53451042,0.02952738,97.12371475],[4.53450992,0.02952564,97.12262191],[4.53450942,0.02952391,97.12152869],[4.53450892,0.02952218,97.12043515],[4.53450842,0.02952045,97.11934138],[4.53450792,0.02951872,97.11824743],[4.53450742,0.02951699,97.11715338],[4.53450692,0.02951526,97.1160593],[4.53450642,0.02951353,97.11496527],[4.53450592,0.0295118,97.11387134],[4.53450542,0.02951007,97.1127776],[4.53450491,0.02950834,97.11168411],[4.53450441,0.02950661,97.11059094],[4.53450391,0.02950488,97.10949816],[4.5345034,0.02950315,97.10840584],[4.5345029,0.02950143,97.10731406],[4.53450239,0.0294997,97.10622289],[4.53450189,0.02949797,97.10513238],[4.53450138,0.02949624,97.10404263],[4.53450087,0.02949452,97.10295368],[4.53450037,0.02949279,97.10186563],[4.53449986,0.02949106,97.10077853],[4.53449935,0.02948934,97.09969245],[4.53449884,0.02948761,97.09860747],[4.53449834,0.02948588,97.09752366],[4.53449783,0.02948416,97.09644109],[4.53449732,0.02948243,97.09535983],[4.53449681,0.02948071,97.09427994],[4.5344963,0.02947898,97.0932015],[4.53449579,0.02947726,97.09212459],[4.53449528,0.02947553,97.09104926],[4.53449477,0.02947381,97.08997559],[4.53449426,0.02947208,97.08890365],[4.53449375,0.02947036,97.08783351],[4.53449324,0.02946863,97.08676524],[4.53449273,0.02946691,97.08569891],[4.53449222,0.02946519,97.08463459],[4.53449171,0.02946346,97.08357236],[4.5344912,0.02946174,97.08251227],[4.53449069,0.02946001,97.08145441],[4.53449018,0.02945829,97.08039884],[4.53448966,0.02945656,97.07934563],[4.53448915,0.02945484,97.07829485],[4.53448864,0.02945312,97.07724657],[4.53448813,0.02945139,97.07620087],[4.53448762,0.02944967,97.07515781],[4.53448711,0.02944794,97.07411745],[4.5344866,0.02944622,97.07307983],[4.53448608,0.02944449,97.07204493],[4.53448557,0.02944277,97.07101273],[4.53448506,0.02944104,97.06998321],[4.53448455,0.02943931,97.06895636],[4.53448404,0.02943759,97.06793215],[4.53448353,0.02943586,97.06691058],[4.53448302,0.02943414,97.06589163],[4.53448251,0.02943241,97.06487527],[4.534482,0.02943068,97.06386149],[4.53448149,0.02942896,97.06285028],[4.53448098,0.02942723,97.06184162],[4.53448047,0.0294255,97.06083549],[4.53447996,0.02942378,97.05983187],[4.53447945,0.02942205,97.05883074],[4.53447894,0.02942032,97.0578321],[4.53447843,0.02941859,97.05683592],[4.53447792,0.02941687,97.05584218],[4.53447741,0.02941514,97.05485088],[4.53447691,0.02941341,97.05386198],[4.5344764,0.02941168,97.05287548],[4.53447589,0.02940996,97.05189136],[4.53447538,0.02940823,97.0509096],[4.53447487,0.0294065,97.04993018],[4.53447436,0.02940477,97.04895309],[4.53447385,0.02940304,97.0479783],[4.53447335,0.02940131,97.04700581],[4.53447284,0.02939958,97.0460356],[4.53447233,0.02939785,97.04506765],[4.53447182,0.02939613,97.04410194],[4.53447132,0.0293944,97.04313845],[4.53447081,0.02939267,97.04217717],[4.5344703,0.02939094,97.04121808],[4.53446979,0.02938921,97.04026117],[4.53446929,0.02938748,97.03930641],[4.53446878,0.02938575,97.03835379],[4.53446827,0.02938402,97.0374033],[4.53446777,0.02938228,97.03645491],[4.53446726,0.02938055,97.03550861],[4.53446675,0.02937882,97.03456439],[4.53446625,0.02937709,97.03362222],[4.53446574,0.02937536,97.03268209],[4.53446524,0.02937363,97.03174398],[4.53446473,0.0293719,97.03080787],[4.53446423,0.02937017,97.02987376],[4.53446372,0.02936843,97.02894161],[4.53446321,0.0293667,97.02801143],[4.53446271,0.02936497,97.0270832],[4.5344622,0.02936324,97.02615692],[4.5344617,0.02936151,97.0252326],[4.5344612,0.02935977,97.02431021],[4.53446069,0.02935804,97.02338976],[4.53446019,0.02935631,97.02247124],[4.53445968,0.02935457,97.02155463],[4.53445918,0.02935284,97.02063995],[4.53445868,0.02935111,97.01972717],[4.53445817,0.02934937,97.01881629],[4.53445767,0.02934764,97.0179073],[4.53445717,0.02934591,97.0170002],[4.53445666,0.02934417,97.01609498],[4.53445616,0.02934244,97.01519163],[4.53445566,0.0293407,97.01429016],[4.53445516,0.02933897,97.01339054],[4.53445466,0.02933723,97.01249277],[4.53445416,0.0293355,97.01159685],[4.53445365,0.02933376,97.01070278],[4.53445315,0.02933203,97.00981053],[4.53445265,0.02933029,97.00892011],[4.53445215,0.02932856,97.00803151],[4.53445165,0.02932682,97.00714472],[4.53445115,0.02932508,97.00625974],[4.53445066,0.02932335,97.00537656],[4.53445016,0.02932161,97.00449517],[4.53444966,0.02931987,97.00361557],[4.53444916,0.02931814,97.00273774],[4.53444866,0.0293164,97.00186169],[4.53444817,0.02931466,97.0009874],[4.53444767,0.02931292,97.00011487],[4.53444717,0.02931119,96.9992441],[4.53444668,0.02930945,96.99837507],[4.53444618,0.02930771,96.99750777],[4.53444569,0.02930597,96.99664221],[4.53444519,0.02930423,96.99577838],[4.5344447,0.02930249,96.99491626],[4.5344442,0.02930075,96.99405585],[4.53444371,0.02929901,96.99319714],[4.53444322,0.02929727,96.99234008],[4.53444272,0.02929553,96.99148467],[4.53444223,0.02929379,96.99063086],[4.53444174,0.02929205,96.98977862],[4.53444125,0.02929031,96.98892794],[4.53444076,0.02928857,96.98807877],[4.53444027,0.02928683,96.98723109],[4.53443978,0.02928509,96.98638487],[4.53443929,0.02928334,96.98554008],[4.5344388,0.0292816,96.9846967],[4.53443831,0.02927986,96.98385468],[4.53443782,0.02927812,96.98301401],[4.53443734,0.02927638,96.98217466],[4.53443685,0.02927463,96.98133659],[4.53443636,0.02927289,96.98049978],[4.53443587,0.02927115,96.97966419],[4.53443539,0.0292694,96.9788298],[4.53443491,0.02926767,96.97799659],[4.53443442,0.02926592,96.97716451],[4.53443394,0.02926418,96.97633355],[4.53443345,0.02926243,96.97550367],[4.53443297,0.02926069,96.97467485],[4.53443249,0.02925895,96.97384705],[4.534432,0.0292572,96.97302025],[4.53443152,0.02925546,96.97219442],[4.53443104,0.02925371,96.97136952],[4.53443056,0.02925197,96.97054554],[4.53443008,0.02925022,96.96972244],[4.5344296,0.02924848,96.96890019],[4.53442911,0.02924674,96.96807877],[4.53442863,0.02924499,96.96725815],[4.53442815,0.02924325,96.96643833],[4.53442768,0.0292415,96.96561929],[4.5344272,0.02923976,96.96480105],[4.53442672,0.02923801,96.96398358],[4.53442624,0.02923627,96.9631669],[4.53442576,0.02923452,96.962351],[4.53442528,0.02923277,96.96153587],[4.53442481,0.02923103,96.96072151],[4.53442433,0.02922928,96.95990792],[4.53442385,0.02922754,96.95909509],[4.53442338,0.02922579,96.95828303],[4.5344229,0.02922405,96.95747171],[4.53442242,0.0292223,96.95666116],[4.53442195,0.02922056,96.95585135],[4.53442147,0.02921881,96.95504229],[4.534421,0.02921706,96.95423397],[4.53442053,0.02921532,96.95342639],[4.53442005,0.02921357,96.95261955],[4.53441958,0.02921183,96.95181344],[4.5344191,0.02921008,96.95100806],[4.53441863,0.02920833,96.95020341],[4.53441816,0.02920659,96.94939947],[4.53441769,0.02920484,96.94859626],[4.53441721,0.0292031,96.94779376],[4.53441674,0.02920135,96.94699197],[4.53441627,0.0291996,96.9461909],[4.5344158,0.02919786,96.94539052],[4.53441533,0.02919611,96.94459085],[4.53441486,0.02919436,96.94379188],[4.53441439,0.02919262,96.9429936],[4.53441392,0.02919087,96.94219601],[4.53441345,0.02918912,96.94139911],[4.53441298,0.02918738,96.9406029],[4.53441251,0.02918563,96.93980737],[4.53441204,0.02918388,96.93901251],[4.53441157,0.02918214,96.93821833],[4.5344111,0.02918039,96.93742481],[4.53441064,0.02917864,96.93663197],[4.53441017,0.02917689,96.93583979],[4.5344097,0.02917515,96.93504827],[4.53440923,0.0291734,96.9342574],[4.53440877,0.02917165,96.93346719],[4.5344083,0.02916991,96.93267763],[4.53440783,0.02916816,96.93188871],[4.53440737,0.02916641,96.93110044],[4.5344069,0.02916466,96.93031281],[4.53440644,0.02916292,96.92952581],[4.53440597,0.02916117,96.92873944],[4.53440551,0.02915942,96.92795371],[4.53440504,0.02915767,96.9271686],[4.53440458,0.02915592,96.92638411],[4.53440411,0.02915418,96.92560024],[4.53440365,0.02915243,96.92481699],[4.53440319,0.02915068,96.92403434],[4.53440272,0.02914893,96.92325231],[4.53440226,0.02914719,96.92247088],[4.5344018,0.02914544,96.92169005],[4.53440134,0.02914369,96.92090982],[4.53440087,0.02914194,96.92013022],[4.53440041,0.02914019,96.91935123],[4.53439995,0.02913844,96.91857288],[4.53439949,0.0291367,96.91779518],[4.53439903,0.02913495,96.91701813],[4.53439857,0.0291332,96.91624175],[4.53439811,0.02913145,96.91546604],[4.53439765,0.0291297,96.91469102],[4.53439718,0.02912795,96.9139167],[4.53439673,0.02912621,96.91314308],[4.53439627,0.02912446,96.91237017],[4.53439581,0.02912271,96.91159799],[4.53439535,0.02912096,96.91082655],[4.53439489,0.02911921,96.91005585],[4.53439443,0.02911746,96.90928591],[4.53439397,0.02911571,96.90851674],[4.53439351,0.02911396,96.90774834],[4.53439306,0.02911221,96.90698072],[4.5343926,0.02911047,96.9062139],[4.53439214,0.02910872,96.90544788],[4.53439169,0.02910697,96.90468268],[4.53439123,0.02910522,96.90391831],[4.53439078,0.02910347,96.90315477],[4.53439032,0.02910172,96.90239207],[4.53438986,0.02909997,96.90163023],[4.53438941,0.02909822,96.90086925],[4.53438896,0.02909647,96.90010912],[4.5343885,0.02909472,96.89934982],[4.53438805,0.02909297,96.89859131],[4.53438759,0.02909122,96.89783356],[4.53438714,0.02908947,96.89707654],[4.53438669,0.02908772,96.89632023],[4.53438623,0.02908597,96.8955646],[4.53438578,0.02908422,96.89480961],[4.53438533,0.02908247,96.89405524],[4.53438488,0.02908072,96.89330147],[4.53438443,0.02907897,96.89254825],[4.53438397,0.02907722,96.89179561],[4.53438352,0.02907547,96.89104355],[4.53438307,0.02907372,96.89029207],[4.53438262,0.02907197,96.88954119],[4.53438217,0.02907022,96.88879092],[4.53438172,0.02906847,96.88804125],[4.53438127,0.02906672,96.88729222],[4.53438082,0.02906497,96.88654381],[4.53438037,0.02906322,96.88579605],[4.53437992,0.02906147,96.88504893],[4.53437947,0.02905972,96.88430248],[4.53437902,0.02905797,96.88355669],[4.53437858,0.02905621,96.88281158],[4.53437813,0.02905446,96.88206715],[4.53437768,0.02905271,96.88132341],[4.53437723,0.02905096,96.88058038],[4.53437678,0.02904921,96.87983806],[4.53437634,0.02904746,96.87909647],[4.53437589,0.02904571,96.8783556],[4.53437544,0.02904396,96.87761546],[4.534375,0.02904221,96.87687608],[4.53437455,0.02904046,96.87613745],[4.5343741,0.0290387,96.87539958],[4.53437366,0.02903695,96.87466248],[4.53437321,0.0290352,96.87392617],[4.53437278,0.02903347,96.87319065],[4.53437233,0.02903172,96.87245592],[4.53437189,0.02902997,96.871722],[4.53437144,0.02902822,96.8709889],[4.534371,0.02902647,96.87025663],[4.53437056,0.02902472,96.86952518],[4.53437011,0.02902297,96.86879458],[4.53436967,0.02902122,96.86806483],[4.53436923,0.02901947,96.86733593],[4.53436879,0.02901771,96.86660791],[4.53436834,0.02901596,96.86588075],[4.5343679,0.02901421,96.86515449],[4.53436746,0.02901246,96.86442912],[4.53436702,0.02901071,96.86370464],[4.53436658,0.02900895,96.86298108],[4.53436614,0.0290072,96.86225844],[4.5343657,0.02900545,96.86153672],[4.53436526,0.0290037,96.86081594],[4.53436482,0.02900194,96.86009611],[4.53436439,0.02900019,96.85937722],[4.53436395,0.02899844,96.8586593],[4.53436351,0.02899669,96.85794235],[4.53436307,0.02899493,96.85722637],[4.53436264,0.02899318,96.85651139],[4.5343622,0.02899143,96.85579739],[4.53436176,0.02898967,96.8550844],[4.53436133,0.02898792,96.85437242],[4.53436089,0.02898617,96.85366147],[4.53436046,0.02898441,96.85295154],[4.53436003,0.02898266,96.85224264],[4.53435959,0.02898091,96.8515348],[4.53435916,0.02897915,96.850828],[4.53435873,0.0289774,96.85012227],[4.53435829,0.02897564,96.84941761],[4.53435786,0.02897389,96.84871403],[4.53435743,0.02897214,96.84801153],[4.53435711,0.02897083,96.84748857],[4.53440147,0.02895977,96.97297547],[4.53440178,0.02896108,96.97350246],[4.53440221,0.02896283,96.97420942],[4.53440263,0.02896458,96.97491643],[4.53440305,0.02896633,96.97562351],[4.53440348,0.02896807,96.97633069],[4.5344039,0.02896982,96.97703799],[4.53440433,0.02897157,96.97774543],[4.53440475,0.02897332,96.97845305],[4.53440518,0.02897507,96.97916087],[4.5344056,0.02897682,96.9798689],[4.53440603,0.02897857,96.98057717],[4.53440645,0.02898032,96.98128572],[4.53440688,0.02898207,96.98199455],[4.5344073,0.02898382,96.98270371],[4.53440773,0.02898557,96.9834132],[4.53440815,0.02898732,96.98412306],[4.53440858,0.02898906,96.98483331],[4.534409,0.02899081,96.98554397],[4.53440943,0.02899256,96.98625507],[4.53440986,0.02899431,96.98696663],[4.53441028,0.02899606,96.98767868],[4.53441071,0.02899781,96.98839125],[4.53441114,0.02899956,96.98910434],[4.53441156,0.02900131,96.989818],[4.53441199,0.02900305,96.99053225],[4.53441242,0.0290048,96.9912471],[4.53441284,0.02900655,96.99196259],[4.53441327,0.0290083,96.99267874],[4.5344137,0.02901005,96.99339557],[4.53441413,0.0290118,96.99411311],[4.53441456,0.02901355,96.99483138],[4.53441499,0.02901529,96.99555041],[4.53441541,0.02901704,96.99627022],[4.53441584,0.02901879,96.99699084],[4.53441627,0.02902054,96.99771229],[4.5344167,0.02902229,96.99843459],[4.53441713,0.02902401,96.99915777],[4.53441756,0.02902576,96.99988186],[4.53441799,0.02902751,97.00060688],[4.53441842,0.02902926,97.00133286],[4.53441885,0.02903101,97.00205982],[4.53441928,0.02903275,97.00278777],[4.53441971,0.0290345,97.00351676],[4.53442015,0.02903625,97.00424681],[4.53442058,0.029038,97.00497793],[4.53442101,0.02903974,97.00571015],[4.53442145,0.02904149,97.00644351],[4.53442188,0.02904324,97.00717802],[4.53442231,0.02904499,97.0079137],[4.53442275,0.02904673,97.0086506],[4.53442318,0.02904848,97.00938872],[4.53442362,0.02905023,97.01012809],[4.53442406,0.02905197,97.01086874],[4.53442449,0.02905372,97.0116107],[4.53442493,0.02905547,97.01235398],[4.53442537,0.02905721,97.01309862],[4.5344258,0.02905896,97.01384464],[4.53442624,0.0290607,97.01459206],[4.53442668,0.02906245,97.01534091],[4.53442712,0.02906419,97.01609122],[4.53442756,0.02906594,97.01684301],[4.534428,0.02906769,97.0175963],[4.53442844,0.02906943,97.01835112],[4.53442888,0.02907118,97.0191075],[4.53442932,0.02907292,97.01986546],[4.53442977,0.02907466,97.02062502],[4.53443021,0.02907641,97.02138622],[4.53443065,0.02907815,97.02214907],[4.5344311,0.0290799,97.0229136],[4.53443154,0.02908164,97.02367985],[4.53443199,0.02908338,97.02444782],[4.53443243,0.02908513,97.02521756],[4.53443288,0.02908687,97.02598908],[4.53443333,0.02908861,97.02676241],[4.53443378,0.02909036,97.02753755],[4.53443422,0.0290921,97.0283145],[4.53443467,0.02909384,97.02909324],[4.53443512,0.02909558,97.02987376],[4.53443557,0.02909732,97.03065605],[4.53443602,0.02909907,97.03144009],[4.53443648,0.02910081,97.03222586],[4.53443693,0.02910255,97.03301336],[4.53443738,0.02910429,97.03380256],[4.53443783,0.02910603,97.03459347],[4.53443829,0.02910777,97.03538606],[4.53443874,0.02910951,97.03618031],[4.5344392,0.02911125,97.03697622],[4.53443965,0.02911299,97.03777378],[4.53444011,0.02911473,97.03857296],[4.53444057,0.02911647,97.03937376],[4.53444102,0.02911821,97.04017616],[4.53444148,0.02911995,97.04098014],[4.53444194,0.02912169,97.0417857],[4.5344424,0.02912343,97.04259282],[4.53444286,0.02912517,97.04340148],[4.53444332,0.02912691,97.04421168],[4.53444378,0.02912865,97.04502339],[4.53444424,0.02913038,97.04583661],[4.5344447,0.02913212,97.04665132],[4.53444517,0.02913386,97.04746751],[4.53444563,0.0291356,97.04828516],[4.53444609,0.02913734,97.04910425],[4.53444656,0.02913907,97.04992478],[4.53444702,0.02914081,97.05074674],[4.53444749,0.02914255,97.0515701],[4.53444795,0.02914428,97.05239485],[4.53444842,0.02914602,97.05322098],[4.53444889,0.02914776,97.05404848],[4.53444935,0.02914949,97.05487733],[4.53444982,0.02915123,97.05570751],[4.53445029,0.02915297,97.05653902],[4.53445076,0.0291547,97.05737184],[4.53445123,0.02915644,97.05820595],[4.5344517,0.02915817,97.05904134],[4.53445217,0.02915991,97.059878],[4.53445264,0.02916164,97.06071591],[4.53445311,0.02916338,97.06155505],[4.53445358,0.02916511,97.06239543],[4.53445405,0.02916685,97.06323701],[4.53445452,0.02916858,97.06407979],[4.53445499,0.02917032,97.06492375],[4.53445547,0.02917205,97.06576887],[4.53445594,0.02917378,97.06661515],[4.53445642,0.02917552,97.06746257],[4.53445689,0.02917725,97.06831111],[4.53445736,0.02917899,97.06916076],[4.53445784,0.02918072,97.0700115],[4.53445832,0.02918245,97.07086333],[4.53445879,0.02918419,97.07171623],[4.53445927,0.02918592,97.07257017],[4.53445975,0.02918765,97.07342516],[4.53446022,0.02918938,97.07428116],[4.5344607,0.02919112,97.07513818],[4.53446118,0.02919285,97.07599619],[4.53446166,0.02919458,97.07685518],[4.53446214,0.02919631,97.07771514],[4.53446262,0.02919804,97.07857605],[4.5344631,0.02919978,97.07943789],[4.53446358,0.02920151,97.08030066],[4.53446406,0.02920324,97.08116433],[4.53446454,0.02920497,97.0820289],[4.53446502,0.0292067,97.08289435],[4.5344655,0.02920843,97.08376065],[4.53446598,0.02921016,97.08462781],[4.53446646,0.02921189,97.0854958],[4.53446695,0.02921363,97.08636462],[4.53446743,0.02921536,97.08723423],[4.53446791,0.02921709,97.08810464],[4.5344684,0.02921882,97.08897582],[4.53446888,0.02922055,97.08984777],[4.53446937,0.02922228,97.09072046],[4.53446985,0.02922401,97.09159388],[4.53447034,0.02922574,97.09246802],[4.53447082,0.02922747,97.09334286],[4.53447131,0.0292292,97.09421838],[4.53447179,0.02923092,97.09509458],[4.53447228,0.02923265,97.09597144],[4.53447276,0.02923438,97.09684894],[4.53447325,0.02923611,97.09772707],[4.53447374,0.02923784,97.09860583],[4.53447423,0.02923957,97.09948525],[4.53447471,0.0292413,97.10036532],[4.5344752,0.02924303,97.10124605],[4.53447569,0.02924476,97.10212747],[4.53447618,0.02924648,97.10300957],[4.53447667,0.02924821,97.10389237],[4.53447716,0.02924994,97.10477587],[4.53447765,0.02925167,97.1056601],[4.53447814,0.0292534,97.10654505],[4.53447863,0.02925512,97.10743075],[4.53447912,0.02925684,97.10831719],[4.53447961,0.02925857,97.10920439],[4.5344801,0.0292603,97.11009237],[4.53448059,0.02926203,97.11098112],[4.53448108,0.02926375,97.11187067],[4.53448158,0.02926548,97.11276102],[4.53448207,0.02926721,97.11365218],[4.53448256,0.02926894,97.11454416],[4.53448306,0.02927066,97.11543697],[4.53448355,0.02927239,97.11633063],[4.53448405,0.02927412,97.11722514],[4.53448454,0.02927585,97.11812052],[4.53448504,0.02927758,97.11901677],[4.53448553,0.0292793,97.11991391],[4.53448603,0.02928103,97.12081194],[4.53448652,0.02928276,97.12171088],[4.53448702,0.02928449,97.12261073],[4.53448752,0.02928621,97.12351151],[4.53448801,0.02928794,97.12441323],[4.53448851,0.02928967,97.1253159],[4.53448901,0.0292914,97.12621953],[4.53448951,0.02929313,97.12712412],[4.53449,0.02929485,97.1280297],[4.5344905,0.02929658,97.12893626],[4.534491,0.02929831,97.12984383],[4.5344915,0.02930004,97.13075241],[4.534492,0.02930177,97.13166201],[4.5344925,0.02930349,97.13257264],[4.534493,0.02930522,97.13348432],[4.5344935,0.02930695,97.13439705],[4.534494,0.02930868,97.13531084],[4.5344945,0.02931041,97.13622571],[4.534495,0.02931214,97.13714166],[4.5344955,0.02931386,97.13805871],[4.534496,0.02931559,97.13897687],[4.5344965,0.02931732,97.13989615],[4.534497,0.02931905,97.14081655],[4.5344975,0.02932078,97.14173809],[4.53449801,0.02932251,97.14266078],[4.53449851,0.02932424,97.14358463],[4.53449901,0.02932597,97.14450965],[4.53449951,0.02932769,97.14543586],[4.53450001,0.02932942,97.14636325],[4.53450052,0.02933115,97.14729185],[4.53450102,0.02933288,97.14822166],[4.53450152,0.02933461,97.1491527],[4.53450203,0.02933634,97.15008497],[4.53450253,0.02933807,97.15101849],[4.53450303,0.0293398,97.15195326],[4.53450354,0.02934153,97.1528893],[4.53450404,0.02934326,97.15382662],[4.53450454,0.02934499,97.15476522],[4.53450505,0.02934672,97.15570513],[4.53450555,0.02934845,97.15664634],[4.53450605,0.02935018,97.15758888],[4.53450656,0.02935191,97.15853275],[4.53450706,0.02935364,97.15947796],[4.53450757,0.02935537,97.16042452],[4.53450807,0.0293571,97.16137243],[4.53450858,0.02935883,97.16232173],[4.53450908,0.02936056,97.16327242],[4.53450958,0.02936229,97.16422454],[4.53451009,0.02936402,97.1651781],[4.53451059,0.02936575,97.16613314],[4.5345111,0.02936748,97.16708967],[4.5345116,0.02936921,97.16804771],[4.53451211,0.02937094,97.1690073],[4.53451261,0.02937267,97.16996845],[4.53451312,0.0293744,97.17093119],[4.53451362,0.02937613,97.17189553],[4.53451413,0.02937786,97.17286152],[4.53451463,0.02937959,97.17382916],[4.53451514,0.02938133,97.17479848],[4.53451565,0.02938306,97.17576951],[4.53451615,0.02938479,97.17674226],[4.53451666,0.02938652,97.17771677],[4.53451716,0.02938825,97.17869305],[4.53451767,0.02938998,97.17967114],[4.53451817,0.02939172,97.18065104],[4.53451868,0.02939345,97.18163279],[4.53451919,0.02939518,97.18261641],[4.53451969,0.02939691,97.18360193],[4.5345202,0.02939864,97.18458936],[4.53452071,0.02940038,97.18557873],[4.53452121,0.02940211,97.18657007],[4.53452172,0.02940384,97.18756339],[4.53452223,0.02940557,97.18855873],[4.53452273,0.0294073,97.1895561],[4.53452324,0.02940904,97.19055553],[4.53452375,0.02941077,97.19155704],[4.53452425,0.0294125,97.19256066],[4.53452476,0.02941424,97.1935664],[4.53452527,0.02941597,97.1945743],[4.53452578,0.0294177,97.19558438],[4.53452628,0.02941943,97.19659666],[4.53452679,0.02942117,97.19761116],[4.5345273,0.0294229,97.19862791],[4.53452781,0.02942463,97.19964693],[4.53452832,0.02942637,97.20066824],[4.53452882,0.0294281,97.20169188],[4.53452933,0.02942983,97.20271785],[4.53452984,0.02943157,97.2037462],[4.53453035,0.0294333,97.20477693],[4.53453086,0.02943503,97.20581007],[4.53453137,0.02943677,97.20684565],[4.53453188,0.0294385,97.20788367],[4.53453239,0.02944024,97.2089241],[4.53453289,0.02944197,97.20996692],[4.5345334,0.0294437,97.2110121],[4.53453391,0.02944544,97.21205962],[4.53453442,0.02944717,97.21310944],[4.53453493,0.02944891,97.21416154],[4.53453544,0.02945064,97.21521591],[4.53453595,0.02945237,97.2162725],[4.53453646,0.02945411,97.21733129],[4.53453697,0.02945584,97.21839226],[4.53453748,0.02945758,97.21945538],[4.53453799,0.02945932,97.22052062],[4.5345385,0.02946105,97.22158797],[4.53453901,0.02946278,97.22265738],[4.53453951,0.02946452,97.22372884],[4.53454002,0.02946625,97.22480232],[4.53454053,0.02946799,97.22587779],[4.53454104,0.02946972,97.22695523],[4.53454155,0.02947146,97.2280346],[4.53454206,0.02947319,97.22911589],[4.53454256,0.02947492,97.23019907],[4.53454307,0.02947666,97.23128411],[4.53454358,0.02947839,97.23237098],[4.53454409,0.02948012,97.23345966],[4.53454459,0.02948186,97.23455012],[4.5345451,0.02948359,97.23564234],[4.53454561,0.02948533,97.23673628],[4.53454612,0.02948706,97.23783192],[4.53454662,0.02948879,97.23892925],[4.53454713,0.02949052,97.24002822],[4.53454764,0.02949226,97.24112881],[4.53454815,0.02949399,97.242231],[4.53454865,0.02949572,97.24333475],[4.53454916,0.02949746,97.24444006],[4.53454967,0.02949919,97.24554687],[4.53455017,0.02950092,97.24665518],[4.53455068,0.02950265,97.24776495],[4.53455118,0.02950439,97.24887616],[4.53455169,0.02950612,97.24998878],[4.5345522,0.02950785,97.25110278],[4.5345527,0.02950958,97.25221814],[4.53455321,0.02951131,97.25333484],[4.53455372,0.02951304,97.25445283],[4.53455422,0.02951478,97.25557211],[4.53455473,0.02951651,97.25669263],[4.53455523,0.02951824,97.25781438],[4.53455574,0.02951997,97.25893733],[4.53455625,0.0295217,97.26006145],[4.53455675,0.02952343,97.26118672],[4.53455726,0.02952516,97.26231311],[4.53455776,0.02952689,97.26344059],[4.53455827,0.02952863,97.26456913],[4.53455877,0.02953036,97.26569871],[4.53455928,0.02953209,97.26682931],[4.53455978,0.02953382,97.26796089],[4.53456029,0.02953555,97.26909344],[4.53456079,0.02953728,97.27022691],[4.5345613,0.02953901,97.2713613],[4.5345618,0.02954074,97.27249656],[4.53456231,0.02954247,97.27363268],[4.53456281,0.0295442,97.27476962],[4.53456332,0.02954593,97.27590737],[4.53456382,0.02954766,97.27704588],[4.53456433,0.02954939,97.27818515],[4.53456483,0.02955111,97.27932514],[4.53456534,0.02955284,97.28046582],[4.53456584,0.02955457,97.28160718],[4.53456635,0.0295563,97.28274917],[4.53456685,0.02955803,97.28389178],[4.53456736,0.02955976,97.28503497],[4.53456786,0.02956149,97.28617873],[4.53456837,0.02956322,97.28732303],[4.53456887,0.02956494,97.28846783],[4.53456937,0.02956667,97.28961312],[4.53456988,0.0295684,97.29075887],[4.53457038,0.02957013,97.29190504],[4.53457089,0.02957186,97.29305162],[4.53457139,0.02957358,97.29419857],[4.5345719,0.02957531,97.29534588],[4.5345724,0.02957704,97.29649351],[4.5345729,0.02957877,97.29764144],[4.53457341,0.02958049,97.29878963],[4.53457391,0.02958222,97.29993808],[4.53457442,0.02958395,97.30108674],[4.53457492,0.02958567,97.30223559],[4.53457543,0.0295874,97.30338461],[4.53457593,0.02958913,97.30453377],[4.53457643,0.02959085,97.30568304],[4.53457694,0.02959258,97.3068324],[4.53457744,0.0295943,97.30798182],[4.53457795,0.02959603,97.30913127],[4.53457845,0.02959776,97.31028073],[4.53457895,0.02959948,97.31143017],[4.53457946,0.02960121,97.31257956],[4.53457996,0.02960293,97.31372888],[4.53458047,0.02960466,97.31487811],[4.53453514,0.02961795,97.17827241]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004700","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"entry","predecessorId":-1,"sOffset":91.6152442585}},{"geometry":{"coordinates":[[[4.53458047,0.02960466,97.31487811],[4.53457996,0.02960293,97.31372888],[4.53457946,0.02960121,97.31257956],[4.53457895,0.02959948,97.31143017],[4.53457845,0.02959776,97.31028073],[4.53457795,0.02959603,97.30913127],[4.53457744,0.0295943,97.30798182],[4.53457694,0.02959258,97.3068324],[4.53457643,0.02959085,97.30568304],[4.53457593,0.02958913,97.30453377],[4.53457543,0.0295874,97.30338461],[4.53457492,0.02958567,97.30223559],[4.53457442,0.02958395,97.30108674],[4.53457391,0.02958222,97.29993808],[4.53457341,0.02958049,97.29878963],[4.5345729,0.02957877,97.29764144],[4.5345724,0.02957704,97.29649351],[4.5345719,0.02957531,97.29534588],[4.53457139,0.02957358,97.29419857],[4.53457089,0.02957186,97.29305162],[4.53457038,0.02957013,97.29190504],[4.53456988,0.0295684,97.29075887],[4.53456937,0.02956667,97.28961312],[4.53456887,0.02956494,97.28846783],[4.53456837,0.02956322,97.28732303],[4.53456786,0.02956149,97.28617873],[4.53456736,0.02955976,97.28503497],[4.53456685,0.02955803,97.28389178],[4.53456635,0.0295563,97.28274917],[4.53456584,0.02955457,97.28160718],[4.53456534,0.02955284,97.28046582],[4.53456483,0.02955111,97.27932514],[4.53456433,0.02954939,97.27818515],[4.53456382,0.02954766,97.27704588],[4.53456332,0.02954593,97.27590737],[4.53456281,0.0295442,97.27476962],[4.53456231,0.02954247,97.27363268],[4.5345618,0.02954074,97.27249656],[4.5345613,0.02953901,97.2713613],[4.53456079,0.02953728,97.27022691],[4.53456029,0.02953555,97.26909344],[4.53455978,0.02953382,97.26796089],[4.53455928,0.02953209,97.26682931],[4.53455877,0.02953036,97.26569871],[4.53455827,0.02952863,97.26456913],[4.53455776,0.02952689,97.26344059],[4.53455726,0.02952516,97.26231311],[4.53455675,0.02952343,97.26118672],[4.53455625,0.0295217,97.26006145],[4.53455574,0.02951997,97.25893733],[4.53455523,0.02951824,97.25781438],[4.53455473,0.02951651,97.25669263],[4.53455422,0.02951478,97.25557211],[4.53455372,0.02951304,97.25445283],[4.53455321,0.02951131,97.25333484],[4.5345527,0.02950958,97.25221814],[4.5345522,0.02950785,97.25110278],[4.53455169,0.02950612,97.24998878],[4.53455118,0.02950439,97.24887616],[4.53455068,0.02950265,97.24776495],[4.53455017,0.02950092,97.24665518],[4.53454967,0.02949919,97.24554687],[4.53454916,0.02949746,97.24444006],[4.53454865,0.02949572,97.24333475],[4.53454815,0.02949399,97.242231],[4.53454764,0.02949226,97.24112881],[4.53454713,0.02949052,97.24002822],[4.53454662,0.02948879,97.23892925],[4.53454612,0.02948706,97.23783192],[4.53454561,0.02948533,97.23673628],[4.5345451,0.02948359,97.23564234],[4.53454459,0.02948186,97.23455012],[4.53454409,0.02948012,97.23345966],[4.53454358,0.02947839,97.23237098],[4.53454307,0.02947666,97.23128411],[4.53454256,0.02947492,97.23019907],[4.53454206,0.02947319,97.22911589],[4.53454155,0.02947146,97.2280346],[4.53454104,0.02946972,97.22695523],[4.53454053,0.02946799,97.22587779],[4.53454002,0.02946625,97.22480232],[4.53453951,0.02946452,97.22372884],[4.53453901,0.02946278,97.22265738],[4.5345385,0.02946105,97.22158797],[4.53453799,0.02945932,97.22052062],[4.53453748,0.02945758,97.21945538],[4.53453697,0.02945584,97.21839226],[4.53453646,0.02945411,97.21733129],[4.53453595,0.02945237,97.2162725],[4.53453544,0.02945064,97.21521591],[4.53453493,0.02944891,97.21416154],[4.53453442,0.02944717,97.21310944],[4.53453391,0.02944544,97.21205962],[4.5345334,0.0294437,97.2110121],[4.53453289,0.02944197,97.20996692],[4.53453239,0.02944024,97.2089241],[4.53453188,0.0294385,97.20788367],[4.53453137,0.02943677,97.20684565],[4.53453086,0.02943503,97.20581007],[4.53453035,0.0294333,97.20477693],[4.53452984,0.02943157,97.2037462],[4.53452933,0.02942983,97.20271785],[4.53452882,0.0294281,97.20169188],[4.53452832,0.02942637,97.20066824],[4.53452781,0.02942463,97.19964693],[4.5345273,0.0294229,97.19862791],[4.53452679,0.02942117,97.19761116],[4.53452628,0.02941943,97.19659666],[4.53452578,0.0294177,97.19558438],[4.53452527,0.02941597,97.1945743],[4.53452476,0.02941424,97.1935664],[4.53452425,0.0294125,97.19256066],[4.53452375,0.02941077,97.19155704],[4.53452324,0.02940904,97.19055553],[4.53452273,0.0294073,97.1895561],[4.53452223,0.02940557,97.18855873],[4.53452172,0.02940384,97.18756339],[4.53452121,0.02940211,97.18657007],[4.53452071,0.02940038,97.18557873],[4.5345202,0.02939864,97.18458936],[4.53451969,0.02939691,97.18360193],[4.53451919,0.02939518,97.18261641],[4.53451868,0.02939345,97.18163279],[4.53451817,0.02939172,97.18065104],[4.53451767,0.02938998,97.17967114],[4.53451716,0.02938825,97.17869305],[4.53451666,0.02938652,97.17771677],[4.53451615,0.02938479,97.17674226],[4.53451565,0.02938306,97.17576951],[4.53451514,0.02938133,97.17479848],[4.53451463,0.02937959,97.17382916],[4.53451413,0.02937786,97.17286152],[4.53451362,0.02937613,97.17189553],[4.53451312,0.0293744,97.17093119],[4.53451261,0.02937267,97.16996845],[4.53451211,0.02937094,97.1690073],[4.5345116,0.02936921,97.16804771],[4.5345111,0.02936748,97.16708967],[4.53451059,0.02936575,97.16613314],[4.53451009,0.02936402,97.1651781],[4.53450958,0.02936229,97.16422454],[4.53450908,0.02936056,97.16327242],[4.53450858,0.02935883,97.16232173],[4.53450807,0.0293571,97.16137243],[4.53450757,0.02935537,97.16042452],[4.53450706,0.02935364,97.15947796],[4.53450656,0.02935191,97.15853275],[4.53450605,0.02935018,97.15758888],[4.53450555,0.02934845,97.15664634],[4.53450505,0.02934672,97.15570513],[4.53450454,0.02934499,97.15476522],[4.53450404,0.02934326,97.15382662],[4.53450354,0.02934153,97.1528893],[4.53450303,0.0293398,97.15195326],[4.53450253,0.02933807,97.15101849],[4.53450203,0.02933634,97.15008497],[4.53450152,0.02933461,97.1491527],[4.53450102,0.02933288,97.14822166],[4.53450052,0.02933115,97.14729185],[4.53450001,0.02932942,97.14636325],[4.53449951,0.02932769,97.14543586],[4.53449901,0.02932597,97.14450965],[4.53449851,0.02932424,97.14358463],[4.53449801,0.02932251,97.14266078],[4.5344975,0.02932078,97.14173809],[4.534497,0.02931905,97.14081655],[4.5344965,0.02931732,97.13989615],[4.534496,0.02931559,97.13897687],[4.5344955,0.02931386,97.13805871],[4.534495,0.02931214,97.13714166],[4.5344945,0.02931041,97.13622571],[4.534494,0.02930868,97.13531084],[4.5344935,0.02930695,97.13439705],[4.534493,0.02930522,97.13348432],[4.5344925,0.02930349,97.13257264],[4.534492,0.02930177,97.13166201],[4.5344915,0.02930004,97.13075241],[4.534491,0.02929831,97.12984383],[4.5344905,0.02929658,97.12893626],[4.53449,0.02929485,97.1280297],[4.53448951,0.02929313,97.12712412],[4.53448901,0.0292914,97.12621953],[4.53448851,0.02928967,97.1253159],[4.53448801,0.02928794,97.12441323],[4.53448752,0.02928621,97.12351151],[4.53448702,0.02928449,97.12261073],[4.53448652,0.02928276,97.12171088],[4.53448603,0.02928103,97.12081194],[4.53448553,0.0292793,97.11991391],[4.53448504,0.02927758,97.11901677],[4.53448454,0.02927585,97.11812052],[4.53448405,0.02927412,97.11722514],[4.53448355,0.02927239,97.11633063],[4.53448306,0.02927066,97.11543697],[4.53448256,0.02926894,97.11454416],[4.53448207,0.02926721,97.11365218],[4.53448158,0.02926548,97.11276102],[4.53448108,0.02926375,97.11187067],[4.53448059,0.02926203,97.11098112],[4.5344801,0.0292603,97.11009237],[4.53447961,0.02925857,97.10920439],[4.53447912,0.02925684,97.10831719],[4.53447863,0.02925512,97.10743075],[4.53447814,0.0292534,97.10654505],[4.53447765,0.02925167,97.1056601],[4.53447716,0.02924994,97.10477587],[4.53447667,0.02924821,97.10389237],[4.53447618,0.02924648,97.10300957],[4.53447569,0.02924476,97.10212747],[4.5344752,0.02924303,97.10124605],[4.53447471,0.0292413,97.10036532],[4.53447423,0.02923957,97.09948525],[4.53447374,0.02923784,97.09860583],[4.53447325,0.02923611,97.09772707],[4.53447276,0.02923438,97.09684894],[4.53447228,0.02923265,97.09597144],[4.53447179,0.02923092,97.09509458],[4.53447131,0.0292292,97.09421838],[4.53447082,0.02922747,97.09334286],[4.53447034,0.02922574,97.09246802],[4.53446985,0.02922401,97.09159388],[4.53446937,0.02922228,97.09072046],[4.53446888,0.02922055,97.08984777],[4.5344684,0.02921882,97.08897582],[4.53446791,0.02921709,97.08810464],[4.53446743,0.02921536,97.08723423],[4.53446695,0.02921363,97.08636462],[4.53446646,0.02921189,97.0854958],[4.53446598,0.02921016,97.08462781],[4.5344655,0.02920843,97.08376065],[4.53446502,0.0292067,97.08289435],[4.53446454,0.02920497,97.0820289],[4.53446406,0.02920324,97.08116433],[4.53446358,0.02920151,97.08030066],[4.5344631,0.02919978,97.07943789],[4.53446262,0.02919804,97.07857605],[4.53446214,0.02919631,97.07771514],[4.53446166,0.02919458,97.07685518],[4.53446118,0.02919285,97.07599619],[4.5344607,0.02919112,97.07513818],[4.53446022,0.02918938,97.07428116],[4.53445975,0.02918765,97.07342516],[4.53445927,0.02918592,97.07257017],[4.53445879,0.02918419,97.07171623],[4.53445832,0.02918245,97.07086333],[4.53445784,0.02918072,97.0700115],[4.53445736,0.02917899,97.06916076],[4.53445689,0.02917725,97.06831111],[4.53445642,0.02917552,97.06746257],[4.53445594,0.02917378,97.06661515],[4.53445547,0.02917205,97.06576887],[4.53445499,0.02917032,97.06492375],[4.53445452,0.02916858,97.06407979],[4.53445405,0.02916685,97.06323701],[4.53445358,0.02916511,97.06239543],[4.53445311,0.02916338,97.06155505],[4.53445264,0.02916164,97.06071591],[4.53445217,0.02915991,97.059878],[4.5344517,0.02915817,97.05904134],[4.53445123,0.02915644,97.05820595],[4.53445076,0.0291547,97.05737184],[4.53445029,0.02915297,97.05653902],[4.53444982,0.02915123,97.05570751],[4.53444935,0.02914949,97.05487733],[4.53444889,0.02914776,97.05404848],[4.53444842,0.02914602,97.05322098],[4.53444795,0.02914428,97.05239485],[4.53444749,0.02914255,97.0515701],[4.53444702,0.02914081,97.05074674],[4.53444656,0.02913907,97.04992478],[4.53444609,0.02913734,97.04910425],[4.53444563,0.0291356,97.04828516],[4.53444517,0.02913386,97.04746751],[4.5344447,0.02913212,97.04665132],[4.53444424,0.02913038,97.04583661],[4.53444378,0.02912865,97.04502339],[4.53444332,0.02912691,97.04421168],[4.53444286,0.02912517,97.04340148],[4.5344424,0.02912343,97.04259282],[4.53444194,0.02912169,97.0417857],[4.53444148,0.02911995,97.04098014],[4.53444102,0.02911821,97.04017616],[4.53444057,0.02911647,97.03937376],[4.53444011,0.02911473,97.03857296],[4.53443965,0.02911299,97.03777378],[4.5344392,0.02911125,97.03697622],[4.53443874,0.02910951,97.03618031],[4.53443829,0.02910777,97.03538606],[4.53443783,0.02910603,97.03459347],[4.53443738,0.02910429,97.03380256],[4.53443693,0.02910255,97.03301336],[4.53443648,0.02910081,97.03222586],[4.53443602,0.02909907,97.03144009],[4.53443557,0.02909732,97.03065605],[4.53443512,0.02909558,97.02987376],[4.53443467,0.02909384,97.02909324],[4.53443422,0.0290921,97.0283145],[4.53443378,0.02909036,97.02753755],[4.53443333,0.02908861,97.02676241],[4.53443288,0.02908687,97.02598908],[4.53443243,0.02908513,97.02521756],[4.53443199,0.02908338,97.02444782],[4.53443154,0.02908164,97.02367985],[4.5344311,0.0290799,97.0229136],[4.53443065,0.02907815,97.02214907],[4.53443021,0.02907641,97.02138622],[4.53442977,0.02907466,97.02062502],[4.53442932,0.02907292,97.01986546],[4.53442888,0.02907118,97.0191075],[4.53442844,0.02906943,97.01835112],[4.534428,0.02906769,97.0175963],[4.53442756,0.02906594,97.01684301],[4.53442712,0.02906419,97.01609122],[4.53442668,0.02906245,97.01534091],[4.53442624,0.0290607,97.01459206],[4.5344258,0.02905896,97.01384464],[4.53442537,0.02905721,97.01309862],[4.53442493,0.02905547,97.01235398],[4.53442449,0.02905372,97.0116107],[4.53442406,0.02905197,97.01086874],[4.53442362,0.02905023,97.01012809],[4.53442318,0.02904848,97.00938872],[4.53442275,0.02904673,97.0086506],[4.53442231,0.02904499,97.0079137],[4.53442188,0.02904324,97.00717802],[4.53442145,0.02904149,97.00644351],[4.53442101,0.02903974,97.00571015],[4.53442058,0.029038,97.00497793],[4.53442015,0.02903625,97.00424681],[4.53441971,0.0290345,97.00351676],[4.53441928,0.02903275,97.00278777],[4.53441885,0.02903101,97.00205982],[4.53441842,0.02902926,97.00133286],[4.53441799,0.02902751,97.00060688],[4.53441756,0.02902576,96.99988186],[4.53441713,0.02902401,96.99915777],[4.5344167,0.02902229,96.99843459],[4.53441627,0.02902054,96.99771229],[4.53441584,0.02901879,96.99699084],[4.53441541,0.02901704,96.99627022],[4.53441499,0.02901529,96.99555041],[4.53441456,0.02901355,96.99483138],[4.53441413,0.0290118,96.99411311],[4.5344137,0.02901005,96.99339557],[4.53441327,0.0290083,96.99267874],[4.53441284,0.02900655,96.99196259],[4.53441242,0.0290048,96.9912471],[4.53441199,0.02900305,96.99053225],[4.53441156,0.02900131,96.989818],[4.53441114,0.02899956,96.98910434],[4.53441071,0.02899781,96.98839125],[4.53441028,0.02899606,96.98767868],[4.53440986,0.02899431,96.98696663],[4.53440943,0.02899256,96.98625507],[4.534409,0.02899081,96.98554397],[4.53440858,0.02898906,96.98483331],[4.53440815,0.02898732,96.98412306],[4.53440773,0.02898557,96.9834132],[4.5344073,0.02898382,96.98270371],[4.53440688,0.02898207,96.98199455],[4.53440645,0.02898032,96.98128572],[4.53440603,0.02897857,96.98057717],[4.5344056,0.02897682,96.9798689],[4.53440518,0.02897507,96.97916087],[4.53440475,0.02897332,96.97845305],[4.53440433,0.02897157,96.97774543],[4.5344039,0.02896982,96.97703799],[4.53440348,0.02896807,96.97633069],[4.53440305,0.02896633,96.97562351],[4.53440263,0.02896458,96.97491643],[4.53440221,0.02896283,96.97420942],[4.53440178,0.02896108,96.97350246],[4.53440147,0.02895977,96.97297547],[4.53440501,0.02895889,96.98299205],[4.53440456,0.02896038,96.98137169],[4.53440417,0.02896234,96.97977178],[4.53440457,0.02896409,96.98041896],[4.53440498,0.02896585,96.9810629],[4.53440538,0.0289676,96.98170398],[4.53440578,0.02896936,96.98234262],[4.53440617,0.02897111,96.9829792],[4.53440657,0.02897287,96.98361412],[4.53440697,0.02897462,96.98424779],[4.53440737,0.02897638,96.98488058],[4.53440777,0.02897813,96.98551292],[4.53440816,0.02897989,96.98614518],[4.53440856,0.02898164,96.98677778],[4.53440896,0.0289834,96.98741111],[4.53440936,0.02898516,96.98804557],[4.53440976,0.02898691,96.98868155],[4.53441016,0.02898867,96.98931946],[4.53441056,0.02899042,96.9899597],[4.53441096,0.02899218,96.99060267],[4.53441136,0.02899393,96.99124877],[4.53441177,0.02899568,96.9918984],[4.53441217,0.02899744,96.99255195],[4.53441258,0.02899919,96.99320984],[4.53441299,0.02900095,96.99387247],[4.5344134,0.0290027,96.99454022],[4.53441381,0.02900445,96.99521352],[4.53441423,0.0290062,96.99589276],[4.53441464,0.02900795,96.99657834],[4.53441506,0.0290097,96.99727067],[4.53441548,0.02901145,96.99797016],[4.53441591,0.0290132,96.99867717],[4.53441633,0.02901495,96.99939157],[4.53441676,0.0290167,97.00011267],[4.53441719,0.02901845,97.00083978],[4.53441763,0.02902019,97.00157217],[4.53441806,0.02902194,97.00230917],[4.53441849,0.02902366,97.00305005],[4.53441893,0.02902541,97.00379411],[4.53441937,0.02902716,97.00454065],[4.5344198,0.0290289,97.00528897],[4.53442024,0.02903065,97.00603834],[4.53442068,0.0290324,97.00678807],[4.53442112,0.02903414,97.00753746],[4.53442156,0.02903589,97.00828578],[4.534422,0.02903763,97.00903233],[4.53442244,0.02903938,97.0097764],[4.53442287,0.02904113,97.01051748],[4.53442331,0.02904287,97.01125584],[4.53442374,0.02904462,97.01199195],[4.53442417,0.02904637,97.01272628],[4.53442461,0.02904811,97.0134593],[4.53442504,0.02904986,97.01419147],[4.53442547,0.02905161,97.01492328],[4.5344259,0.02905336,97.0156552],[4.53442634,0.0290551,97.01638769],[4.53442677,0.02905685,97.01712122],[4.5344272,0.0290586,97.01785628],[4.53442764,0.02906034,97.01859333],[4.53442807,0.02906209,97.01933285],[4.53442851,0.02906384,97.02007532],[4.53442895,0.02906558,97.02082119],[4.53442939,0.02906733,97.02157096],[4.53442983,0.02906907,97.0223251],[4.53443027,0.02907082,97.02308408],[4.53443071,0.02907256,97.02384838],[4.53443116,0.0290743,97.02461847],[4.53443161,0.02907605,97.02539484],[4.53443206,0.02907779,97.0261778],[4.53443251,0.02907953,97.02696702],[4.53443296,0.02908127,97.02776203],[4.53443342,0.02908301,97.02856234],[4.53443388,0.02908475,97.02936746],[4.53443434,0.02908649,97.03017692],[4.5344348,0.02908823,97.03099022],[4.53443526,0.02908997,97.03180686],[4.53443572,0.02909171,97.03262632],[4.53443618,0.02909344,97.03344808],[4.53443665,0.02909518,97.0342716],[4.53443711,0.02909692,97.03509637],[4.53443758,0.02909866,97.03592184],[4.53443804,0.0291004,97.03674751],[4.53443851,0.02910213,97.03757283],[4.53443897,0.02910387,97.03839729],[4.53443944,0.02910561,97.03922034],[4.5344399,0.02910735,97.04004147],[4.53444036,0.02910909,97.04086013],[4.53444082,0.02911082,97.04167597],[4.53444129,0.02911256,97.04248924],[4.53444175,0.0291143,97.04330038],[4.5344422,0.02911604,97.0441098],[4.53444266,0.02911778,97.04491794],[4.53444312,0.02911952,97.04572521],[4.53444358,0.02912126,97.04653206],[4.53444404,0.02912299,97.0473389],[4.5344445,0.02912473,97.04814616],[4.53444496,0.02912647,97.04895427],[4.53444542,0.02912821,97.04976366],[4.53444588,0.02912995,97.05057476],[4.53444634,0.02913169,97.05138799],[4.5344468,0.02913342,97.0522038],[4.53444726,0.02913516,97.0530226],[4.53444773,0.0291369,97.05384483],[4.53444819,0.02913864,97.05467091],[4.53444866,0.02914037,97.05550129],[4.53444913,0.02914211,97.05633627],[4.5344496,0.02914384,97.05717571],[4.53445007,0.02914558,97.05801933],[4.53445054,0.02914731,97.05886685],[4.53445102,0.02914905,97.05971802],[4.53445149,0.02915078,97.06057256],[4.53445197,0.02915251,97.06143019],[4.53445245,0.02915425,97.06229065],[4.53445293,0.02915598,97.06315366],[4.5344534,0.02915771,97.06401895],[4.53445388,0.02915944,97.06488626],[4.53445436,0.02916117,97.06575529],[4.53445485,0.02916291,97.0666258],[4.53445533,0.02916464,97.06749749],[4.53445581,0.02916637,97.06837009],[4.53445629,0.0291681,97.06924334],[4.53445677,0.02916983,97.07011696],[4.53445726,0.02917156,97.07099067],[4.53445774,0.02917329,97.0718642],[4.53445822,0.02917503,97.07273728],[4.5344587,0.02917676,97.0736098],[4.53445919,0.02917849,97.07448177],[4.53445967,0.02918022,97.07535322],[4.53446015,0.02918195,97.0762242],[4.53446063,0.02918368,97.07709473],[4.53446111,0.02918541,97.07796485],[4.53446159,0.02918714,97.07883459],[4.53446208,0.02918887,97.07970398],[4.53446256,0.02919061,97.08057306],[4.53446304,0.02919234,97.08144185],[4.53446352,0.02919407,97.08231039],[4.534464,0.0291958,97.08317872],[4.53446448,0.02919753,97.08404686],[4.53446496,0.02919926,97.08491486],[4.53446544,0.02920099,97.08578273],[4.53446593,0.02920272,97.08665052],[4.53446641,0.02920445,97.08751826],[4.53446689,0.02920618,97.08838598],[4.53446737,0.02920791,97.08925372],[4.53446785,0.02920964,97.0901215],[4.53446833,0.02921137,97.09098936],[4.53446882,0.0292131,97.09185734],[4.5344693,0.02921483,97.09272546],[4.53446978,0.02921656,97.09359376],[4.53447026,0.02921829,97.09446228],[4.53447074,0.02922002,97.09533104],[4.53447123,0.02922175,97.09620009],[4.53447171,0.02922348,97.09706944],[4.53447219,0.02922521,97.09793915],[4.53447268,0.02922694,97.09880923],[4.53447316,0.02922867,97.09967973],[4.53447364,0.0292304,97.10055067],[4.53447413,0.02923213,97.10142209],[4.53447461,0.02923386,97.10229403],[4.53447509,0.02923559,97.10316652],[4.53447558,0.02923732,97.10403961],[4.53447606,0.02923905,97.10491334],[4.53447655,0.02924078,97.10578773],[4.53447704,0.02924251,97.10666278],[4.53447752,0.02924423,97.10753852],[4.53447801,0.02924596,97.10841495],[4.53447849,0.02924769,97.10929209],[4.53447898,0.02924942,97.11016996],[4.53447947,0.02925115,97.11104857],[4.53447996,0.02925287,97.11192793],[4.53448044,0.0292546,97.11280805],[4.53448093,0.02925632,97.11368896],[4.53448142,0.02925805,97.11457066],[4.53448191,0.02925978,97.11545317],[4.5344824,0.0292615,97.1163365],[4.53448289,0.02926323,97.11722067],[4.53448338,0.02926496,97.11810569],[4.53448387,0.02926669,97.11899157],[4.53448436,0.02926842,97.11987834],[4.53448485,0.02927014,97.12076599],[4.53448534,0.02927187,97.12165456],[4.53448584,0.0292736,97.12254405],[4.53448633,0.02927533,97.12343447],[4.53448682,0.02927706,97.12432584],[4.53448732,0.02927878,97.12521818],[4.53448781,0.02928051,97.12611149],[4.5344883,0.02928224,97.1270058],[4.5344888,0.02928397,97.12790112],[4.53448929,0.0292857,97.12879746],[4.53448979,0.02928742,97.12969483],[4.53449028,0.02928915,97.13059325],[4.53449078,0.02929088,97.13149274],[4.53449127,0.02929261,97.1323933],[4.53449177,0.02929434,97.13329496],[4.53449227,0.02929606,97.13419772],[4.53449276,0.02929779,97.13510161],[4.53449326,0.02929952,97.13600663],[4.53449376,0.02930125,97.1369128],[4.53449426,0.02930298,97.13782013],[4.53449476,0.02930471,97.13872865],[4.53449525,0.02930643,97.13963835],[4.53449575,0.02930816,97.14054927],[4.53449625,0.02930989,97.1414614],[4.53449675,0.02931162,97.14237478],[4.53449725,0.02931335,97.1432894],[4.53449775,0.02931508,97.14420528],[4.53449825,0.0293168,97.14512245],[4.53449875,0.02931853,97.14604091],[4.53449925,0.02932026,97.14696068],[4.53449975,0.02932199,97.14788177],[4.53450025,0.02932372,97.14880419],[4.53450076,0.02932545,97.14972797],[4.53450126,0.02932718,97.15065312],[4.53450176,0.02932891,97.15157964],[4.53450226,0.02933063,97.15250756],[4.53450276,0.02933236,97.15343689],[4.53450327,0.02933409,97.15436764],[4.53450377,0.02933582,97.15529983],[4.53450427,0.02933755,97.15623348],[4.53450477,0.02933928,97.15716859],[4.53450528,0.02934101,97.15810518],[4.53450578,0.02934274,97.15904327],[4.53450628,0.02934447,97.15998287],[4.53450679,0.0293462,97.160924],[4.53450729,0.02934793,97.16186666],[4.5345078,0.02934966,97.16281088],[4.5345083,0.02935139,97.16375667],[4.53450881,0.02935312,97.16470404],[4.53450931,0.02935485,97.16565301],[4.53450982,0.02935658,97.16660359],[4.53451032,0.02935831,97.16755579],[4.53451083,0.02936004,97.16850965],[4.53451133,0.02936177,97.16946519],[4.53451184,0.0293635,97.17042245],[4.53451234,0.02936523,97.17138143],[4.53451285,0.02936696,97.17234216],[4.53451335,0.02936869,97.17330466],[4.53451386,0.02937042,97.17426894],[4.53451437,0.02937215,97.17523502],[4.53451487,0.02937388,97.17620292],[4.53451538,0.02937561,97.17717266],[4.53451589,0.02937734,97.17814426],[4.53451639,0.02937907,97.17911772],[4.5345169,0.0293808,97.18009308],[4.53451741,0.02938253,97.18107036],[4.53451792,0.02938426,97.18204955],[4.53451843,0.02938599,97.1830307],[4.53451893,0.02938772,97.18401381],[4.53451944,0.02938946,97.1849989],[4.53451995,0.02939119,97.18598599],[4.53452046,0.02939292,97.18697511],[4.53452097,0.02939465,97.18796625],[4.53452148,0.02939638,97.18895946],[4.53452198,0.02939811,97.18995473],[4.53452249,0.02939984,97.1909521],[4.534523,0.02940157,97.19195158],[4.53452351,0.02940331,97.19295318],[4.53452402,0.02940504,97.19395694],[4.53452453,0.02940677,97.19496285],[4.53452504,0.0294085,97.19597095],[4.53452555,0.02941023,97.19698124],[4.53452606,0.02941197,97.19799376],[4.53452657,0.0294137,97.19900851],[4.53452708,0.02941543,97.20002552],[4.53452759,0.02941716,97.2010448],[4.5345281,0.02941889,97.20206637],[4.53452861,0.02942063,97.20309025],[4.53452912,0.02942236,97.20411645],[4.53452964,0.02942409,97.205145],[4.53453015,0.02942583,97.20617592],[4.53453066,0.02942756,97.20720922],[4.53453117,0.02942929,97.20824491],[4.53453168,0.02943102,97.20928303],[4.53453219,0.02943276,97.21032358],[4.5345327,0.02943449,97.21136658],[4.53453322,0.02943622,97.21241206],[4.53453373,0.02943796,97.21346001],[4.53453424,0.02943969,97.21451039],[4.53453475,0.02944142,97.21556318],[4.53453527,0.02944316,97.21661834],[4.53453578,0.02944489,97.21767584],[4.53453629,0.02944662,97.21873566],[4.5345368,0.02944836,97.21979776],[4.53453732,0.02945009,97.2208621],[4.53453783,0.02945182,97.22192866],[4.53453834,0.02945356,97.2229974],[4.53453885,0.02945529,97.22406829],[4.53453937,0.02945703,97.2251413],[4.53453988,0.02945876,97.2262164],[4.53454039,0.0294605,97.22729356],[4.5345409,0.02946223,97.22837274],[4.53454142,0.02946397,97.22945392],[4.53454193,0.0294657,97.23053705],[4.53454244,0.02946743,97.23162211],[4.53454295,0.02946917,97.23270907],[4.53454346,0.0294709,97.2337979],[4.53454397,0.02947263,97.23488856],[4.53454448,0.02947437,97.23598102],[4.534545,0.0294761,97.23707524],[4.53454551,0.02947783,97.23817121],[4.53454602,0.02947957,97.23926888],[4.53454653,0.0294813,97.24036822],[4.53454704,0.02948303,97.24146921],[4.53454755,0.02948476,97.2425718],[4.53454806,0.0294865,97.24367597],[4.53454857,0.02948823,97.24478169],[4.53454908,0.02948996,97.24588892],[4.53454959,0.02949169,97.24699763],[4.5345501,0.02949343,97.24810779],[4.53455061,0.02949516,97.24921937],[4.53455112,0.02949689,97.25033233],[4.53455163,0.02949862,97.25144665],[4.53455213,0.02950036,97.25256229],[4.53455264,0.02950209,97.25367921],[4.53455315,0.02950382,97.2547974],[4.53455366,0.02950555,97.25591681],[4.53455417,0.02950728,97.25703741],[4.53455468,0.02950901,97.25815917],[4.53455519,0.02951074,97.25928206],[4.53455569,0.02951248,97.26040605],[4.5345562,0.02951421,97.26153111],[4.53455671,0.02951594,97.2626572],[4.53455722,0.02951767,97.26378429],[4.53455772,0.0295194,97.26491235],[4.53455823,0.02952113,97.26604134],[4.53455874,0.02952286,97.26717124],[4.53455925,0.02952459,97.26830201],[4.53455975,0.02952632,97.26943363],[4.53456026,0.02952805,97.27056605],[4.53456077,0.02952978,97.27169925],[4.53456127,0.02953151,97.27283319],[4.53456178,0.02953324,97.27396785],[4.53456228,0.02953497,97.27510319],[4.53456279,0.0295367,97.27623917],[4.5345633,0.02953843,97.27737578],[4.5345638,0.02954016,97.27851296],[4.53456431,0.02954189,97.2796507],[4.53456481,0.02954362,97.28078896],[4.53456532,0.02954535,97.28192771],[4.53456582,0.02954708,97.28306692],[4.53456633,0.02954881,97.28420655],[4.53456683,0.02955054,97.28534657],[4.53456734,0.02955227,97.28648696],[4.53456784,0.029554,97.28762767],[4.53456835,0.02955573,97.28876868],[4.53456885,0.02955745,97.28990995],[4.53456935,0.02955918,97.29105146],[4.53456986,0.02956091,97.29219317],[4.53457036,0.02956264,97.29333504],[4.53457087,0.02956437,97.29447706],[4.53457137,0.0295661,97.29561918],[4.53457187,0.02956782,97.29676137],[4.53457237,0.02956955,97.2979036],[4.53457288,0.02957128,97.29904584],[4.53457338,0.02957301,97.30018806],[4.53457388,0.02957474,97.30133022],[4.53457439,0.02957646,97.3024723],[4.53457489,0.02957819,97.30361426],[4.53457539,0.02957992,97.30475606],[4.53457589,0.02958165,97.30589769],[4.53457639,0.02958337,97.3070391],[4.53457689,0.0295851,97.30818027],[4.5345774,0.02958683,97.30932115],[4.5345779,0.02958855,97.31046173],[4.5345784,0.02959028,97.31160196],[4.5345789,0.02959201,97.31274183],[4.5345794,0.02959373,97.31388128],[4.5345799,0.02959546,97.3150203],[4.5345804,0.02959719,97.31615885],[4.5345809,0.02959891,97.3172969],[4.5345814,0.02960064,97.31843442],[4.5345819,0.02960237,97.31957137],[4.5345824,0.02960409,97.32070773],[4.53458047,0.02960466,97.31487811]]],"type":"Polygon"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004700","id":1,"type":"shoulder","predecessorId":1,"sOffset":91.6152442585}},{"geometry":{"coordinates":[[[4.5345824,0.02960409,97.32070773],[4.5345819,0.02960237,97.31957137],[4.5345814,0.02960064,97.31843442],[4.5345809,0.02959891,97.3172969],[4.5345804,0.02959719,97.31615885],[4.5345799,0.02959546,97.3150203],[4.5345794,0.02959373,97.31388128],[4.5345789,0.02959201,97.31274183],[4.5345784,0.02959028,97.31160196],[4.5345779,0.02958855,97.31046173],[4.5345774,0.02958683,97.30932115],[4.53457689,0.0295851,97.30818027],[4.53457639,0.02958337,97.3070391],[4.53457589,0.02958165,97.30589769],[4.53457539,0.02957992,97.30475606],[4.53457489,0.02957819,97.30361426],[4.53457439,0.02957646,97.3024723],[4.53457388,0.02957474,97.30133022],[4.53457338,0.02957301,97.30018806],[4.53457288,0.02957128,97.29904584],[4.53457237,0.02956955,97.2979036],[4.53457187,0.02956782,97.29676137],[4.53457137,0.0295661,97.29561918],[4.53457087,0.02956437,97.29447706],[4.53457036,0.02956264,97.29333504],[4.53456986,0.02956091,97.29219317],[4.53456935,0.02955918,97.29105146],[4.53456885,0.02955745,97.28990995],[4.53456835,0.02955573,97.28876868],[4.53456784,0.029554,97.28762767],[4.53456734,0.02955227,97.28648696],[4.53456683,0.02955054,97.28534657],[4.53456633,0.02954881,97.28420655],[4.53456582,0.02954708,97.28306692],[4.53456532,0.02954535,97.28192771],[4.53456481,0.02954362,97.28078896],[4.53456431,0.02954189,97.2796507],[4.5345638,0.02954016,97.27851296],[4.5345633,0.02953843,97.27737578],[4.53456279,0.0295367,97.27623917],[4.53456228,0.02953497,97.27510319],[4.53456178,0.02953324,97.27396785],[4.53456127,0.02953151,97.27283319],[4.53456077,0.02952978,97.27169925],[4.53456026,0.02952805,97.27056605],[4.53455975,0.02952632,97.26943363],[4.53455925,0.02952459,97.26830201],[4.53455874,0.02952286,97.26717124],[4.53455823,0.02952113,97.26604134],[4.53455772,0.0295194,97.26491235],[4.53455722,0.02951767,97.26378429],[4.53455671,0.02951594,97.2626572],[4.5345562,0.02951421,97.26153111],[4.53455569,0.02951248,97.26040605],[4.53455519,0.02951074,97.25928206],[4.53455468,0.02950901,97.25815917],[4.53455417,0.02950728,97.25703741],[4.53455366,0.02950555,97.25591681],[4.53455315,0.02950382,97.2547974],[4.53455264,0.02950209,97.25367921],[4.53455213,0.02950036,97.25256229],[4.53455163,0.02949862,97.25144665],[4.53455112,0.02949689,97.25033233],[4.53455061,0.02949516,97.24921937],[4.5345501,0.02949343,97.24810779],[4.53454959,0.02949169,97.24699763],[4.53454908,0.02948996,97.24588892],[4.53454857,0.02948823,97.24478169],[4.53454806,0.0294865,97.24367597],[4.53454755,0.02948476,97.2425718],[4.53454704,0.02948303,97.24146921],[4.53454653,0.0294813,97.24036822],[4.53454602,0.02947957,97.23926888],[4.53454551,0.02947783,97.23817121],[4.534545,0.0294761,97.23707524],[4.53454448,0.02947437,97.23598102],[4.53454397,0.02947263,97.23488856],[4.53454346,0.0294709,97.2337979],[4.53454295,0.02946917,97.23270907],[4.53454244,0.02946743,97.23162211],[4.53454193,0.0294657,97.23053705],[4.53454142,0.02946397,97.22945392],[4.5345409,0.02946223,97.22837274],[4.53454039,0.0294605,97.22729356],[4.53453988,0.02945876,97.2262164],[4.53453937,0.02945703,97.2251413],[4.53453885,0.02945529,97.22406829],[4.53453834,0.02945356,97.2229974],[4.53453783,0.02945182,97.22192866],[4.53453732,0.02945009,97.2208621],[4.5345368,0.02944836,97.21979776],[4.53453629,0.02944662,97.21873566],[4.53453578,0.02944489,97.21767584],[4.53453527,0.02944316,97.21661834],[4.53453475,0.02944142,97.21556318],[4.53453424,0.02943969,97.21451039],[4.53453373,0.02943796,97.21346001],[4.53453322,0.02943622,97.21241206],[4.5345327,0.02943449,97.21136658],[4.53453219,0.02943276,97.21032358],[4.53453168,0.02943102,97.20928303],[4.53453117,0.02942929,97.20824491],[4.53453066,0.02942756,97.20720922],[4.53453015,0.02942583,97.20617592],[4.53452964,0.02942409,97.205145],[4.53452912,0.02942236,97.20411645],[4.53452861,0.02942063,97.20309025],[4.5345281,0.02941889,97.20206637],[4.53452759,0.02941716,97.2010448],[4.53452708,0.02941543,97.20002552],[4.53452657,0.0294137,97.19900851],[4.53452606,0.02941197,97.19799376],[4.53452555,0.02941023,97.19698124],[4.53452504,0.0294085,97.19597095],[4.53452453,0.02940677,97.19496285],[4.53452402,0.02940504,97.19395694],[4.53452351,0.02940331,97.19295318],[4.534523,0.02940157,97.19195158],[4.53452249,0.02939984,97.1909521],[4.53452198,0.02939811,97.18995473],[4.53452148,0.02939638,97.18895946],[4.53452097,0.02939465,97.18796625],[4.53452046,0.02939292,97.18697511],[4.53451995,0.02939119,97.18598599],[4.53451944,0.02938946,97.1849989],[4.53451893,0.02938772,97.18401381],[4.53451843,0.02938599,97.1830307],[4.53451792,0.02938426,97.18204955],[4.53451741,0.02938253,97.18107036],[4.5345169,0.0293808,97.18009308],[4.53451639,0.02937907,97.17911772],[4.53451589,0.02937734,97.17814426],[4.53451538,0.02937561,97.17717266],[4.53451487,0.02937388,97.17620292],[4.53451437,0.02937215,97.17523502],[4.53451386,0.02937042,97.17426894],[4.53451335,0.02936869,97.17330466],[4.53451285,0.02936696,97.17234216],[4.53451234,0.02936523,97.17138143],[4.53451184,0.0293635,97.17042245],[4.53451133,0.02936177,97.16946519],[4.53451083,0.02936004,97.16850965],[4.53451032,0.02935831,97.16755579],[4.53450982,0.02935658,97.16660359],[4.53450931,0.02935485,97.16565301],[4.53450881,0.02935312,97.16470404],[4.5345083,0.02935139,97.16375667],[4.5345078,0.02934966,97.16281088],[4.53450729,0.02934793,97.16186666],[4.53450679,0.0293462,97.160924],[4.53450628,0.02934447,97.15998287],[4.53450578,0.02934274,97.15904327],[4.53450528,0.02934101,97.15810518],[4.53450477,0.02933928,97.15716859],[4.53450427,0.02933755,97.15623348],[4.53450377,0.02933582,97.15529983],[4.53450327,0.02933409,97.15436764],[4.53450276,0.02933236,97.15343689],[4.53450226,0.02933063,97.15250756],[4.53450176,0.02932891,97.15157964],[4.53450126,0.02932718,97.15065312],[4.53450076,0.02932545,97.14972797],[4.53450025,0.02932372,97.14880419],[4.53449975,0.02932199,97.14788177],[4.53449925,0.02932026,97.14696068],[4.53449875,0.02931853,97.14604091],[4.53449825,0.0293168,97.14512245],[4.53449775,0.02931508,97.14420528],[4.53449725,0.02931335,97.1432894],[4.53449675,0.02931162,97.14237478],[4.53449625,0.02930989,97.1414614],[4.53449575,0.02930816,97.14054927],[4.53449525,0.02930643,97.13963835],[4.53449476,0.02930471,97.13872865],[4.53449426,0.02930298,97.13782013],[4.53449376,0.02930125,97.1369128],[4.53449326,0.02929952,97.13600663],[4.53449276,0.02929779,97.13510161],[4.53449227,0.02929606,97.13419772],[4.53449177,0.02929434,97.13329496],[4.53449127,0.02929261,97.1323933],[4.53449078,0.02929088,97.13149274],[4.53449028,0.02928915,97.13059325],[4.53448979,0.02928742,97.12969483],[4.53448929,0.0292857,97.12879746],[4.5344888,0.02928397,97.12790112],[4.5344883,0.02928224,97.1270058],[4.53448781,0.02928051,97.12611149],[4.53448732,0.02927878,97.12521818],[4.53448682,0.02927706,97.12432584],[4.53448633,0.02927533,97.12343447],[4.53448584,0.0292736,97.12254405],[4.53448534,0.02927187,97.12165456],[4.53448485,0.02927014,97.12076599],[4.53448436,0.02926842,97.11987834],[4.53448387,0.02926669,97.11899157],[4.53448338,0.02926496,97.11810569],[4.53448289,0.02926323,97.11722067],[4.5344824,0.0292615,97.1163365],[4.53448191,0.02925978,97.11545317],[4.53448142,0.02925805,97.11457066],[4.53448093,0.02925632,97.11368896],[4.53448044,0.0292546,97.11280805],[4.53447996,0.02925287,97.11192793],[4.53447947,0.02925115,97.11104857],[4.53447898,0.02924942,97.11016996],[4.53447849,0.02924769,97.10929209],[4.53447801,0.02924596,97.10841495],[4.53447752,0.02924423,97.10753852],[4.53447704,0.02924251,97.10666278],[4.53447655,0.02924078,97.10578773],[4.53447606,0.02923905,97.10491334],[4.53447558,0.02923732,97.10403961],[4.53447509,0.02923559,97.10316652],[4.53447461,0.02923386,97.10229403],[4.53447413,0.02923213,97.10142209],[4.53447364,0.0292304,97.10055067],[4.53447316,0.02922867,97.09967973],[4.53447268,0.02922694,97.09880923],[4.53447219,0.02922521,97.09793915],[4.53447171,0.02922348,97.09706944],[4.53447123,0.02922175,97.09620009],[4.53447074,0.02922002,97.09533104],[4.53447026,0.02921829,97.09446228],[4.53446978,0.02921656,97.09359376],[4.5344693,0.02921483,97.09272546],[4.53446882,0.0292131,97.09185734],[4.53446833,0.02921137,97.09098936],[4.53446785,0.02920964,97.0901215],[4.53446737,0.02920791,97.08925372],[4.53446689,0.02920618,97.08838598],[4.53446641,0.02920445,97.08751826],[4.53446593,0.02920272,97.08665052],[4.53446544,0.02920099,97.08578273],[4.53446496,0.02919926,97.08491486],[4.53446448,0.02919753,97.08404686],[4.534464,0.0291958,97.08317872],[4.53446352,0.02919407,97.08231039],[4.53446304,0.02919234,97.08144185],[4.53446256,0.02919061,97.08057306],[4.53446208,0.02918887,97.07970398],[4.53446159,0.02918714,97.07883459],[4.53446111,0.02918541,97.07796485],[4.53446063,0.02918368,97.07709473],[4.53446015,0.02918195,97.0762242],[4.53445967,0.02918022,97.07535322],[4.53445919,0.02917849,97.07448177],[4.5344587,0.02917676,97.0736098],[4.53445822,0.02917503,97.07273728],[4.53445774,0.02917329,97.0718642],[4.53445726,0.02917156,97.07099067],[4.53445677,0.02916983,97.07011696],[4.53445629,0.0291681,97.06924334],[4.53445581,0.02916637,97.06837009],[4.53445533,0.02916464,97.06749749],[4.53445485,0.02916291,97.0666258],[4.53445436,0.02916117,97.06575529],[4.53445388,0.02915944,97.06488626],[4.5344534,0.02915771,97.06401895],[4.53445293,0.02915598,97.06315366],[4.53445245,0.02915425,97.06229065],[4.53445197,0.02915251,97.06143019],[4.53445149,0.02915078,97.06057256],[4.53445102,0.02914905,97.05971802],[4.53445054,0.02914731,97.05886685],[4.53445007,0.02914558,97.05801933],[4.5344496,0.02914384,97.05717571],[4.53444913,0.02914211,97.05633627],[4.53444866,0.02914037,97.05550129],[4.53444819,0.02913864,97.05467091],[4.53444773,0.0291369,97.05384483],[4.53444726,0.02913516,97.0530226],[4.5344468,0.02913342,97.0522038],[4.53444634,0.02913169,97.05138799],[4.53444588,0.02912995,97.05057476],[4.53444542,0.02912821,97.04976366],[4.53444496,0.02912647,97.04895427],[4.5344445,0.02912473,97.04814616],[4.53444404,0.02912299,97.0473389],[4.53444358,0.02912126,97.04653206],[4.53444312,0.02911952,97.04572521],[4.53444266,0.02911778,97.04491794],[4.5344422,0.02911604,97.0441098],[4.53444175,0.0291143,97.04330038],[4.53444129,0.02911256,97.04248924],[4.53444082,0.02911082,97.04167597],[4.53444036,0.02910909,97.04086013],[4.5344399,0.02910735,97.04004147],[4.53443944,0.02910561,97.03922034],[4.53443897,0.02910387,97.03839729],[4.53443851,0.02910213,97.03757283],[4.53443804,0.0291004,97.03674751],[4.53443758,0.02909866,97.03592184],[4.53443711,0.02909692,97.03509637],[4.53443665,0.02909518,97.0342716],[4.53443618,0.02909344,97.03344808],[4.53443572,0.02909171,97.03262632],[4.53443526,0.02908997,97.03180686],[4.5344348,0.02908823,97.03099022],[4.53443434,0.02908649,97.03017692],[4.53443388,0.02908475,97.02936746],[4.53443342,0.02908301,97.02856234],[4.53443296,0.02908127,97.02776203],[4.53443251,0.02907953,97.02696702],[4.53443206,0.02907779,97.0261778],[4.53443161,0.02907605,97.02539484],[4.53443116,0.0290743,97.02461847],[4.53443071,0.02907256,97.02384838],[4.53443027,0.02907082,97.02308408],[4.53442983,0.02906907,97.0223251],[4.53442939,0.02906733,97.02157096],[4.53442895,0.02906558,97.02082119],[4.53442851,0.02906384,97.02007532],[4.53442807,0.02906209,97.01933285],[4.53442764,0.02906034,97.01859333],[4.5344272,0.0290586,97.01785628],[4.53442677,0.02905685,97.01712122],[4.53442634,0.0290551,97.01638769],[4.5344259,0.02905336,97.0156552],[4.53442547,0.02905161,97.01492328],[4.53442504,0.02904986,97.01419147],[4.53442461,0.02904811,97.0134593],[4.53442417,0.02904637,97.01272628],[4.53442374,0.02904462,97.01199195],[4.53442331,0.02904287,97.01125584],[4.53442287,0.02904113,97.01051748],[4.53442244,0.02903938,97.0097764],[4.534422,0.02903763,97.00903233],[4.53442156,0.02903589,97.00828578],[4.53442112,0.02903414,97.00753746],[4.53442068,0.0290324,97.00678807],[4.53442024,0.02903065,97.00603834],[4.5344198,0.0290289,97.00528897],[4.53441937,0.02902716,97.00454065],[4.53441893,0.02902541,97.00379411],[4.53441849,0.02902366,97.00305005],[4.53441806,0.02902194,97.00230917],[4.53441763,0.02902019,97.00157217],[4.53441719,0.02901845,97.00083978],[4.53441676,0.0290167,97.00011267],[4.53441633,0.02901495,96.99939157],[4.53441591,0.0290132,96.99867717],[4.53441548,0.02901145,96.99797016],[4.53441506,0.0290097,96.99727067],[4.53441464,0.02900795,96.99657834],[4.53441423,0.0290062,96.99589276],[4.53441381,0.02900445,96.99521352],[4.5344134,0.0290027,96.99454022],[4.53441299,0.02900095,96.99387247],[4.53441258,0.02899919,96.99320984],[4.53441217,0.02899744,96.99255195],[4.53441177,0.02899568,96.9918984],[4.53441136,0.02899393,96.99124877],[4.53441096,0.02899218,96.99060267],[4.53441056,0.02899042,96.9899597],[4.53441016,0.02898867,96.98931946],[4.53440976,0.02898691,96.98868155],[4.53440936,0.02898516,96.98804557],[4.53440896,0.0289834,96.98741111],[4.53440856,0.02898164,96.98677778],[4.53440816,0.02897989,96.98614518],[4.53440777,0.02897813,96.98551292],[4.53440737,0.02897638,96.98488058],[4.53440697,0.02897462,96.98424779],[4.53440657,0.02897287,96.98361412],[4.53440617,0.02897111,96.9829792],[4.53440578,0.02896936,96.98234262],[4.53440538,0.0289676,96.98170398],[4.53440498,0.02896585,96.9810629],[4.53440457,0.02896409,96.98041896],[4.53440417,0.02896234,96.97977178],[4.53440456,0.02896038,96.98137169],[4.53440501,0.02895889,96.98299205],[4.53441012,0.02895762,96.98299205],[4.53441039,0.02895893,96.98137169],[4.53441075,0.0289607,96.97977178],[4.53441111,0.02896246,96.98041896],[4.53441147,0.02896422,96.9810629],[4.53441182,0.02896599,96.98170398],[4.53441218,0.02896775,96.98234262],[4.53441254,0.02896952,96.9829792],[4.53441289,0.02897128,96.98361412],[4.53441325,0.02897305,96.98424779],[4.53441373,0.02897478,96.98488058],[4.53441421,0.02897652,96.98551292],[4.53441469,0.02897825,96.98614518],[4.53441518,0.02897998,96.98677778],[4.53441566,0.02898172,96.98741111],[4.53441615,0.02898345,96.98804557],[4.53441663,0.02898518,96.98868155],[4.53441712,0.02898691,96.98931946],[4.53441761,0.02898864,96.9899597],[4.5344181,0.02899038,96.99060267],[4.53441859,0.02899211,96.99124877],[4.53441908,0.02899384,96.9918984],[4.53441957,0.02899557,96.99255195],[4.53442006,0.0289973,96.99320984],[4.53442055,0.02899903,96.99387247],[4.53442104,0.02900077,96.99454022],[4.53442153,0.0290025,96.99521352],[4.53442202,0.02900423,96.99589276],[4.53442251,0.02900596,96.99657834],[4.534423,0.02900769,96.99727067],[4.5344235,0.02900942,96.99797016],[4.53442399,0.02901115,96.99867717],[4.53442448,0.02901288,96.99939157],[4.53442497,0.02901461,97.00011267],[4.53442546,0.02901635,97.00083978],[4.53442595,0.02901808,97.00157217],[4.53442644,0.02901981,97.00230917],[4.53442692,0.02902152,97.00305005],[4.53442741,0.02902325,97.00379411],[4.53442789,0.02902498,97.00454065],[4.53442838,0.02902671,97.00528897],[4.53442887,0.02902845,97.00603834],[4.53442935,0.02903018,97.00678807],[4.53442984,0.02903191,97.00753746],[4.53443033,0.02903364,97.00828578],[4.53443081,0.02903538,97.00903233],[4.5344313,0.02903711,97.0097764],[4.53443178,0.02903884,97.01051748],[4.53443227,0.02904057,97.01125584],[4.53443276,0.0290423,97.01199195],[4.53443325,0.02904404,97.01272628],[4.53443374,0.02904577,97.0134593],[4.53443423,0.0290475,97.01419147],[4.53443472,0.02904923,97.01492328],[4.53443521,0.02905096,97.0156552],[4.5344357,0.02905269,97.01638769],[4.53443619,0.02905442,97.01712122],[4.53443668,0.02905615,97.01785628],[4.53443717,0.02905788,97.01859333],[4.53443765,0.02905961,97.01933285],[4.53443813,0.02906135,97.02007532],[4.53443861,0.02906308,97.02082119],[4.53443909,0.02906481,97.02157096],[4.53443956,0.02906655,97.0223251],[4.53444003,0.02906828,97.02308408],[4.5344405,0.02907002,97.02384838],[4.53444096,0.02907176,97.02461847],[4.53444142,0.02907349,97.02539484],[4.53444188,0.02907523,97.0261778],[4.53444234,0.02907697,97.02696702],[4.53444279,0.02907871,97.02776203],[4.53444325,0.02908045,97.02856234],[4.5344437,0.02908219,97.02936746],[4.53444415,0.02908393,97.03017692],[4.5344446,0.02908567,97.03099022],[4.53444505,0.02908741,97.03180686],[4.5344455,0.02908915,97.03262632],[4.53444595,0.02909089,97.03344808],[4.5344464,0.02909263,97.0342716],[4.53444684,0.02909437,97.03509637],[4.53444729,0.02909611,97.03592184],[4.53444774,0.02909785,97.03674751],[4.53444818,0.02909959,97.03757283],[4.53444863,0.02910133,97.03839729],[4.53444908,0.02910307,97.03922034],[4.53444953,0.02910481,97.04004147],[4.53444998,0.02910655,97.04086013],[4.53445043,0.02910829,97.04167597],[4.53445088,0.02911003,97.04248924],[4.53445133,0.02911177,97.04330038],[4.53445178,0.02911351,97.0441098],[4.53445223,0.02911525,97.04491794],[4.53445268,0.02911698,97.04572521],[4.53445313,0.02911872,97.04653206],[4.53445358,0.02912046,97.0473389],[4.53445403,0.0291222,97.04814616],[4.53445448,0.02912394,97.04895427],[4.53445493,0.02912568,97.04976366],[4.53445537,0.02912742,97.05057476],[4.53445582,0.02912916,97.05138799],[4.53445627,0.0291309,97.0522038],[4.53445672,0.02913263,97.0530226],[4.53445717,0.02913437,97.05384483],[4.53445762,0.02913611,97.05467091],[4.53445806,0.02913785,97.05550129],[4.53445851,0.02913959,97.05633627],[4.53445895,0.02914133,97.05717571],[4.5344594,0.02914307,97.05801933],[4.53445985,0.02914481,97.05886685],[4.53446029,0.02914655,97.05971802],[4.53446074,0.02914829,97.06057256],[4.53446119,0.02915003,97.06143019],[4.53446163,0.02915177,97.06229065],[4.53446208,0.02915351,97.06315366],[4.53446253,0.02915524,97.06401895],[4.53446298,0.02915698,97.06488626],[4.53446343,0.02915872,97.06575529],[4.53446388,0.02916046,97.0666258],[4.53446438,0.02916218,97.06749749],[4.53446492,0.02916389,97.06837009],[4.53446546,0.02916561,97.06924334],[4.53446601,0.02916732,97.07011696],[4.53446655,0.02916903,97.07099067],[4.5344671,0.02917074,97.0718642],[4.53446764,0.02917245,97.07273728],[4.53446818,0.02917417,97.0736098],[4.53446872,0.02917588,97.07448177],[4.53446927,0.02917759,97.07535322],[4.53446981,0.0291793,97.0762242],[4.53447035,0.02918101,97.07709473],[4.53447089,0.02918273,97.07796485],[4.53447143,0.02918444,97.07883459],[4.53447198,0.02918615,97.07970398],[4.53447252,0.02918786,97.08057306],[4.53447306,0.02918957,97.08144185],[4.5344736,0.02919128,97.08231039],[4.53447414,0.029193,97.08317872],[4.53447468,0.02919471,97.08404686],[4.53447522,0.02919642,97.08491486],[4.53447575,0.02919813,97.08578273],[4.53447629,0.02919984,97.08665052],[4.53447683,0.02920156,97.08751826],[4.53447737,0.02920327,97.08838598],[4.5344779,0.02920498,97.08925372],[4.53447844,0.02920669,97.0901215],[4.53447898,0.0292084,97.09098936],[4.53447951,0.02921012,97.09185734],[4.53448005,0.02921183,97.09272546],[4.53448059,0.02921354,97.09359376],[4.53448112,0.02921525,97.09446228],[4.53448166,0.02921696,97.09533104],[4.53448219,0.02921868,97.09620009],[4.53448273,0.02922039,97.09706944],[4.53448326,0.0292221,97.09793915],[4.5344838,0.02922381,97.09880923],[4.53448434,0.02922552,97.09967973],[4.53448488,0.02922723,97.10055067],[4.53448542,0.02922894,97.10142209],[4.53448596,0.02923065,97.10229403],[4.5344865,0.02923236,97.10316652],[4.53448704,0.02923407,97.10403961],[4.53448758,0.02923578,97.10491334],[4.53448811,0.02923749,97.10578773],[4.53448864,0.0292392,97.10666278],[4.53448916,0.02924092,97.10753852],[4.53448967,0.02924263,97.10841495],[4.53449018,0.02924435,97.10929209],[4.53449068,0.02924607,97.11016996],[4.53449118,0.02924779,97.11104857],[4.53449167,0.02924952,97.11192793],[4.53449216,0.02925124,97.11280805],[4.53449264,0.02925296,97.11368896],[4.53449313,0.02925468,97.11457066],[4.53449361,0.02925641,97.11545317],[4.53449409,0.02925814,97.1163365],[4.53449457,0.02925986,97.11722067],[4.53449505,0.02926159,97.11810569],[4.53449553,0.02926332,97.11899157],[4.53449602,0.02926504,97.11987834],[4.5344965,0.02926677,97.12076599],[4.53449699,0.02926849,97.12165456],[4.53449748,0.02927022,97.12254405],[4.53449797,0.02927194,97.12343447],[4.53449846,0.02927367,97.12432584],[4.53449896,0.02927539,97.12521818],[4.53449945,0.02927712,97.12611149],[4.53449995,0.02927884,97.1270058],[4.53450044,0.02928057,97.12790112],[4.53450094,0.02928229,97.12879746],[4.53450144,0.02928402,97.12969483],[4.53450194,0.02928574,97.13059325],[4.53450244,0.02928746,97.13149274],[4.53450294,0.02928919,97.1323933],[4.53450344,0.02929091,97.13329496],[4.53450394,0.02929264,97.13419772],[4.53450445,0.02929436,97.13510161],[4.53450495,0.02929608,97.13600663],[4.53450545,0.02929781,97.1369128],[4.53450596,0.02929953,97.13782013],[4.53450646,0.02930126,97.13872865],[4.53450696,0.02930298,97.13963835],[4.53450747,0.02930471,97.14054927],[4.53450797,0.02930643,97.1414614],[4.53450847,0.02930816,97.14237478],[4.53450898,0.02930988,97.1432894],[4.53450948,0.02931161,97.14420528],[4.53450998,0.02931333,97.14512245],[4.53451048,0.02931506,97.14604091],[4.53451098,0.02931679,97.14696068],[4.53451148,0.02931851,97.14788177],[4.53451198,0.02932024,97.14880419],[4.53451248,0.02932197,97.14972797],[4.53451298,0.0293237,97.15065312],[4.53451348,0.02932543,97.15157964],[4.53451398,0.02932715,97.15250756],[4.53451448,0.02932888,97.15343689],[4.53451497,0.02933061,97.15436764],[4.53451547,0.02933234,97.15529983],[4.53451597,0.02933407,97.15623348],[4.53451647,0.0293358,97.15716859],[4.53451696,0.02933753,97.15810518],[4.53451746,0.02933926,97.15904327],[4.53451796,0.02934099,97.15998287],[4.53451846,0.02934272,97.160924],[4.53451896,0.02934445,97.16186666],[4.53451946,0.02934618,97.16281088],[4.53451996,0.02934791,97.16375667],[4.53452046,0.02934964,97.16470404],[4.53452096,0.02935137,97.16565301],[4.53452147,0.0293531,97.16660359],[4.53452197,0.02935483,97.16755579],[4.53452248,0.02935656,97.16850965],[4.53452299,0.02935829,97.16946519],[4.5345235,0.02936002,97.17042245],[4.53452401,0.02936175,97.17138143],[4.53452452,0.02936347,97.17234216],[4.53452503,0.0293652,97.17330466],[4.53452555,0.02936693,97.17426894],[4.53452606,0.02936866,97.17523502],[4.53452658,0.02937039,97.17620292],[4.53452709,0.02937212,97.17717266],[4.53452761,0.02937384,97.17814426],[4.53452812,0.02937557,97.17911772],[4.53452863,0.0293773,97.18009308],[4.53452915,0.02937903,97.18107036],[4.53452966,0.02938076,97.18204955],[4.53453017,0.02938249,97.1830307],[4.53453069,0.02938422,97.18401381],[4.5345312,0.02938595,97.1849989],[4.53453171,0.02938768,97.18598599],[4.53453222,0.02938941,97.18697511],[4.53453273,0.02939114,97.18796625],[4.53453324,0.02939288,97.18895946],[4.53453375,0.02939461,97.18995473],[4.53453426,0.02939634,97.1909521],[4.53453477,0.02939807,97.19195158],[4.53453528,0.02939981,97.19295318],[4.53453579,0.02940154,97.19395694],[4.5345363,0.02940327,97.19496285],[4.53453681,0.029405,97.19597095],[4.53453732,0.02940674,97.19698124],[4.53453783,0.02940847,97.19799376],[4.53453834,0.02941021,97.19900851],[4.53453885,0.02941194,97.20002552],[4.53453935,0.02941367,97.2010448],[4.53453986,0.02941541,97.20206637],[4.53454037,0.02941714,97.20309025],[4.53454088,0.02941888,97.20411645],[4.53454139,0.02942061,97.205145],[4.5345419,0.02942235,97.20617592],[4.53454241,0.02942408,97.20720922],[4.53454292,0.02942582,97.20824491],[4.53454343,0.02942755,97.20928303],[4.53454394,0.02942929,97.21032358],[4.53454445,0.02943102,97.21136658],[4.53454496,0.02943276,97.21241206],[4.53454547,0.0294345,97.21346001],[4.53454598,0.02943623,97.21451039],[4.5345465,0.02943797,97.21556318],[4.53454701,0.0294397,97.21661834],[4.53454752,0.02944144,97.21767584],[4.53454803,0.02944318,97.21873566],[4.53454855,0.02944491,97.21979776],[4.53454906,0.02944665,97.2208621],[4.53454957,0.02944838,97.22192866],[4.53455009,0.02945012,97.2229974],[4.5345506,0.02945186,97.22406829],[4.53455111,0.0294536,97.2251413],[4.53455163,0.02945533,97.2262164],[4.53455214,0.02945707,97.22729356],[4.53455266,0.0294588,97.22837274],[4.53455317,0.02946054,97.22945392],[4.53455369,0.02946228,97.23053705],[4.5345542,0.02946401,97.23162211],[4.53455471,0.02946575,97.23270907],[4.53455523,0.02946748,97.2337979],[4.53455574,0.02946922,97.23488856],[4.53455626,0.02947095,97.23598102],[4.53455677,0.02947268,97.23707524],[4.53455729,0.02947442,97.23817121],[4.5345578,0.02947615,97.23926888],[4.53455832,0.02947789,97.24036822],[4.53455883,0.02947962,97.24146921],[4.53455935,0.02948135,97.2425718],[4.53455987,0.02948308,97.24367597],[4.53456038,0.02948482,97.24478169],[4.5345609,0.02948655,97.24588892],[4.53456141,0.02948828,97.24699763],[4.53456193,0.02949001,97.24810779],[4.53456245,0.02949174,97.24921937],[4.53456296,0.02949348,97.25033233],[4.53456348,0.02949521,97.25144665],[4.534564,0.02949694,97.25256229],[4.53456451,0.02949867,97.25367921],[4.53456503,0.0295004,97.2547974],[4.53456555,0.02950213,97.25591681],[4.53456607,0.02950386,97.25703741],[4.53456658,0.02950559,97.25815917],[4.5345671,0.02950732,97.25928206],[4.53456762,0.02950905,97.26040605],[4.53456814,0.02951077,97.26153111],[4.53456866,0.0295125,97.2626572],[4.53456917,0.02951423,97.26378429],[4.53456969,0.02951596,97.26491235],[4.53457021,0.02951769,97.26604134],[4.53457073,0.02951941,97.26717124],[4.53457125,0.02952114,97.26830201],[4.53457177,0.02952287,97.26943363],[4.53457228,0.0295246,97.27056605],[4.5345728,0.02952632,97.27169925],[4.53457332,0.02952805,97.27283319],[4.53457384,0.02952978,97.27396785],[4.53457436,0.0295315,97.27510319],[4.53457488,0.02953323,97.27623917],[4.5345754,0.02953495,97.27737578],[4.53457591,0.02953668,97.27851296],[4.53457643,0.0295384,97.2796507],[4.53457695,0.02954013,97.28078896],[4.53457747,0.02954185,97.28192771],[4.53457799,0.02954358,97.28306692],[4.53457851,0.0295453,97.28420655],[4.53457903,0.02954703,97.28534657],[4.53457955,0.02954875,97.28648696],[4.53458006,0.02955048,97.28762767],[4.53458058,0.0295522,97.28876868],[4.5345811,0.02955392,97.28990995],[4.53458162,0.02955565,97.29105146],[4.53458214,0.02955737,97.29219317],[4.53458265,0.02955909,97.29333504],[4.53458317,0.02956081,97.29447706],[4.53458369,0.02956254,97.29561918],[4.5345842,0.02956426,97.29676137],[4.53458472,0.02956598,97.2979036],[4.53458523,0.02956771,97.29904584],[4.53458575,0.02956943,97.30018806],[4.53458626,0.02957115,97.30133022],[4.53458677,0.02957287,97.3024723],[4.53458728,0.0295746,97.30361426],[4.53458779,0.02957632,97.30475606],[4.5345883,0.02957804,97.30589769],[4.53458881,0.02957977,97.3070391],[4.53458931,0.02958149,97.30818027],[4.53458982,0.02958321,97.30932115],[4.53459032,0.02958494,97.31046173],[4.53459082,0.02958666,97.31160196],[4.53459132,0.02958839,97.31274183],[4.53459182,0.02959011,97.31388128],[4.53459232,0.02959184,97.3150203],[4.53459281,0.02959356,97.31615885],[4.53459331,0.02959529,97.3172969],[4.5345938,0.02959701,97.31843442],[4.53459429,0.02959874,97.31957137],[4.53459477,0.02960046,97.32070773],[4.5345824,0.02960409,97.32070773]]],"type":"Polygon"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1004700","id":2,"type":"none","predecessorId":2,"sOffset":91.6152442585}},{"geometry":{"coordinates":[[[4.5343118,0.02898212,96.8423516],[4.53431139,0.02898035,96.84172308],[4.53431139,0.02898033,96.8417152],[4.53435488,0.0289695,96.8417152],[4.53435489,0.02896952,96.84172308],[4.53435529,0.02897128,96.8423516],[4.5343118,0.02898212,96.8423516]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-3,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1004700","id":-3,"type":"none","predecessorId":-3,"sOffset":165.9643356671}},{"geometry":{"coordinates":[[[4.53435529,0.02897128,96.8423516],[4.53435489,0.02896952,96.84172308],[4.53435488,0.0289695,96.8417152],[4.53435667,0.02896905,96.84677905],[4.53435668,0.02896907,96.84678783],[4.53435711,0.02897083,96.84748857],[4.53435529,0.02897128,96.8423516]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004700","id":-2,"type":"shoulder","predecessorId":-2,"sOffset":165.9643356671}},{"geometry":{"coordinates":[[[4.53435711,0.02897083,96.84748857],[4.53435668,0.02896907,96.84678783],[4.53435667,0.02896905,96.84677905],[4.53440104,0.028958,96.97225968],[4.53440104,0.02895802,96.97226854],[4.53440147,0.02895977,96.97297547],[4.53435711,0.02897083,96.84748857]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004700","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"entry","predecessorId":-1,"sOffset":165.9643356671}},{"geometry":{"coordinates":[[[4.53440147,0.02895977,96.97297547],[4.53440104,0.02895802,96.97226854],[4.53440104,0.028958,96.97225968],[4.53440974,0.02895583,96.99688415],[4.53440744,0.02895643,96.99036498],[4.53440501,0.02895889,96.98299205],[4.53440147,0.02895977,96.97297547]]],"type":"Polygon"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004700","rules":[{"value":"barred"}],"id":1,"type":"restricted","predecessorId":1,"sOffset":165.9643356671}},{"geometry":{"coordinates":[[[4.53440501,0.02895889,96.98299205],[4.53440744,0.02895643,96.99036498],[4.53440974,0.02895583,96.99688415],[4.53440975,0.02895583,96.99688415],[4.53440976,0.02895585,96.99036498],[4.53441012,0.02895762,96.98299205],[4.53440501,0.02895889,96.98299205]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1004700","id":2,"type":"none","predecessorId":2,"sOffset":165.9643356671}},{"geometry":{"coordinates":[[[4.53431139,0.02898033,96.8417152],[4.53431098,0.02897856,96.8410843],[4.53431057,0.0289768,96.84044904],[4.53431016,0.02897503,96.83980958],[4.53430975,0.02897326,96.83916608],[4.53430933,0.0289715,96.83851869],[4.53430892,0.02896973,96.83786756],[4.5343085,0.02896797,96.83721287],[4.53430809,0.0289662,96.83655477],[4.53430767,0.02896444,96.83589342],[4.53430725,0.02896267,96.83522897],[4.53430683,0.02896091,96.83456158],[4.53430641,0.02895914,96.83389141],[4.53430599,0.02895738,96.83321863],[4.53430557,0.02895561,96.83254338],[4.53430515,0.02895385,96.83186583],[4.53430472,0.02895209,96.83118612],[4.5343043,0.02895032,96.83050443],[4.53430388,0.02894856,96.82982091],[4.53430345,0.0289468,96.82913571],[4.53430303,0.02894503,96.82844899],[4.5343026,0.02894327,96.82776091],[4.53430217,0.02894151,96.82707163],[4.53430175,0.02893974,96.8263813],[4.53430132,0.02893798,96.82569008],[4.5343009,0.02893622,96.82499812],[4.53430047,0.02893445,96.82430559],[4.53430004,0.02893269,96.82361263],[4.53429962,0.02893093,96.82291942],[4.53429919,0.02892916,96.82222609],[4.53429876,0.0289274,96.82153281],[4.53429834,0.02892564,96.82083974],[4.53429791,0.02892387,96.82014702],[4.53429749,0.02892211,96.81945482],[4.53429706,0.02892035,96.8187633],[4.53429664,0.02891858,96.8180726],[4.53429622,0.02891682,96.81738289],[4.53429579,0.02891505,96.81669431],[4.53429537,0.02891329,96.81600703],[4.53429495,0.02891152,96.81532121],[4.53429453,0.02890976,96.81463698],[4.53429411,0.028908,96.81395453],[4.53429369,0.02890623,96.81327399],[4.53429327,0.02890446,96.81259552],[4.53429285,0.0289027,96.81191927],[4.53429244,0.02890093,96.81124527],[4.53429202,0.02889917,96.81057341],[4.53429161,0.0288974,96.80990356],[4.53429119,0.02889563,96.80923561],[4.53429078,0.02889387,96.80856945],[4.53429037,0.0288921,96.80790497],[4.53428996,0.02889033,96.80724204],[4.53428955,0.02888856,96.80658057],[4.53428914,0.0288868,96.80592044],[4.53428873,0.02888503,96.80526155],[4.53428832,0.02888326,96.8046038],[4.53428791,0.02888149,96.80394708],[4.53428751,0.02887972,96.8032913],[4.5342871,0.02887796,96.80263633],[4.53428669,0.02887619,96.8019821],[4.53428629,0.02887442,96.80132847],[4.53428588,0.02887265,96.80067537],[4.53428548,0.02887088,96.80002267],[4.53428507,0.02886911,96.79937028],[4.53428467,0.02886734,96.7987181],[4.53428426,0.02886557,96.79806601],[4.53428386,0.0288638,96.79741393],[4.53428346,0.02886204,96.79676178],[4.53428305,0.02886027,96.79610952],[4.53428265,0.0288585,96.79545711],[4.53428225,0.02885673,96.79480448],[4.53428184,0.02885496,96.79415161],[4.53428144,0.02885319,96.79349843],[4.53428104,0.02885142,96.79284489],[4.53428064,0.02884965,96.79219096],[4.53428023,0.02884788,96.79153658],[4.53427983,0.02884611,96.79088171],[4.53427943,0.02884434,96.79022629],[4.53427903,0.02884257,96.78957027],[4.53427863,0.0288408,96.7889136],[4.53427822,0.02883903,96.78825611],[4.53427782,0.02883726,96.78759765],[4.53427742,0.02883549,96.78693805],[4.53427702,0.02883372,96.78627713],[4.53427661,0.02883195,96.78561474],[4.53427621,0.02883018,96.78495069],[4.53427581,0.02882842,96.78428483],[4.53427541,0.02882665,96.78361699],[4.534275,0.02882488,96.782947],[4.5342746,0.02882311,96.78227474],[4.53427419,0.02882135,96.78160032],[4.53427379,0.02881958,96.78092391],[4.53427338,0.02881781,96.78024566],[4.53427298,0.02881604,96.77956575],[4.53427257,0.02881428,96.77888432],[4.53427216,0.02881251,96.77820154],[4.53427176,0.02881074,96.77751758],[4.53427135,0.02880897,96.7768326],[4.53427095,0.02880721,96.77614675],[4.53427054,0.02880544,96.7754602],[4.53427013,0.02880368,96.77477311],[4.53426973,0.02880191,96.77408565],[4.53426932,0.02880014,96.77339798],[4.53426891,0.02879838,96.77271025],[4.53426851,0.02879661,96.77202263],[4.5342681,0.02879485,96.77133529],[4.5342677,0.02879308,96.77064838],[4.5342673,0.02879131,96.76996206],[4.53426689,0.02878955,96.76927651],[4.53426649,0.02878778,96.76859188],[4.53426609,0.02878602,96.76790833],[4.53426569,0.02878425,96.76722603],[4.53426529,0.02878249,96.76654517],[4.53426489,0.02878072,96.76586601],[4.53426449,0.02877895,96.76518878],[4.53426409,0.02877719,96.76451372],[4.53426369,0.02877542,96.76384104],[4.5342633,0.02877366,96.76317096],[4.5342629,0.02877189,96.76250371],[4.53426251,0.02877012,96.76183952],[4.53426212,0.02876836,96.7611786],[4.53426173,0.02876659,96.76052119],[4.53426134,0.02876482,96.75986743],[4.53426095,0.02876306,96.75921715],[4.53426057,0.02876129,96.75857012],[4.53426018,0.02875952,96.75792609],[4.5342598,0.02875776,96.75728482],[4.53425942,0.02875599,96.75664607],[4.53425904,0.02875422,96.7560096],[4.53425866,0.02875245,96.75537516],[4.53425828,0.02875069,96.75474251],[4.5342579,0.02874892,96.75411141],[4.53425752,0.02874715,96.75348163],[4.53425715,0.02874538,96.7528529],[4.53425677,0.02874362,96.75222501],[4.53425639,0.02874185,96.75159769],[4.53425602,0.02874008,96.75097072],[4.53425564,0.02873831,96.75034384],[4.53425527,0.02873655,96.74971682],[4.53425489,0.02873478,96.74908941],[4.53425452,0.02873301,96.74846136],[4.53425414,0.02873125,96.74783244],[4.53425377,0.02872948,96.7472024],[4.53425339,0.02872771,96.746571],[4.53425302,0.02872595,96.74593799],[4.53425264,0.02872418,96.74530313],[4.53425226,0.02872242,96.74466617],[4.53425188,0.02872065,96.74402688],[4.53425151,0.02871889,96.743385],[4.53425113,0.02871712,96.74274021],[4.53425075,0.02871536,96.74209213],[4.53425036,0.0287136,96.74144036],[4.53424998,0.02871183,96.74078451],[4.5342496,0.02871007,96.74012419],[4.53424921,0.02870831,96.739459],[4.53424882,0.02870655,96.73878857],[4.53424844,0.02870479,96.7381126],[4.53424804,0.02870303,96.73743083],[4.53424765,0.02870127,96.73674301],[4.53424726,0.02869951,96.73604887],[4.53424686,0.02869775,96.73534825],[4.53424646,0.02869599,96.73464141],[4.53424606,0.02869423,96.7339287],[4.53424566,0.02869248,96.73321049],[4.53424525,0.02869072,96.73248713],[4.53424484,0.02868897,96.73175898],[4.53424444,0.02868721,96.7310264],[4.53424403,0.02868546,96.73028974],[4.53424362,0.0286837,96.72954937],[4.53424321,0.02868195,96.72880565],[4.53424279,0.02868019,96.72805892],[4.53424238,0.02867844,96.72730956],[4.53424197,0.02867669,96.72655793],[4.53424155,0.02867494,96.72580438],[4.53424114,0.02867318,96.72504927],[4.53424072,0.02867143,96.72429298],[4.53424031,0.02866968,96.72353585],[4.53423989,0.02866793,96.72277828],[4.53423948,0.02866618,96.72202069],[4.53423907,0.02866443,96.72126348],[4.53423865,0.02866268,96.72050709],[4.53423824,0.02866093,96.71975192],[4.53423782,0.02865917,96.7189984],[4.53423741,0.02865742,96.71824687],[4.534237,0.02865567,96.71749736],[4.53423659,0.02865392,96.71674986],[4.53423618,0.02865217,96.71600434],[4.53423577,0.02865041,96.71526077],[4.53423536,0.02864866,96.71451912],[4.53423496,0.02864691,96.71377936],[4.53423455,0.02864516,96.71304147],[4.53423414,0.02864341,96.71230541],[4.53423374,0.02864166,96.71157117],[4.53423334,0.02863991,96.71083871],[4.53423293,0.02863816,96.710108],[4.53423253,0.02863641,96.70937902],[4.53423213,0.02863466,96.7086517],[4.53423173,0.02863291,96.70792595],[4.53423133,0.02863116,96.70720166],[4.53423093,0.02862941,96.70647873],[4.53423053,0.02862766,96.70575704],[4.53423013,0.02862592,96.70503649],[4.53422973,0.02862417,96.70431697],[4.53422933,0.02862242,96.70359838],[4.53422893,0.02862067,96.70288061],[4.53422853,0.02861893,96.70216355],[4.53422813,0.02861718,96.7014471],[4.53422774,0.02861544,96.70073115],[4.53422734,0.02861369,96.70001563],[4.53422694,0.02861194,96.69930048],[4.53422655,0.0286102,96.69858562],[4.53422615,0.02860846,96.69787098],[4.53422575,0.02860671,96.69715651],[4.53422535,0.02860497,96.69644212],[4.53422496,0.02860322,96.69572784],[4.53422456,0.02860148,96.69501375],[4.53422416,0.02859974,96.69429993],[4.53422376,0.028598,96.6935865],[4.53422337,0.02859626,96.69287352],[4.53422297,0.02859451,96.6921611],[4.53422257,0.02859277,96.69144932],[4.53422218,0.02859103,96.69073828],[4.53422178,0.02858929,96.69002806],[4.53422138,0.02858755,96.68931877],[4.53422099,0.02858581,96.68861049],[4.53422059,0.02858407,96.68790332],[4.5342202,0.02858234,96.68719734],[4.5342198,0.0285806,96.68649266],[4.5342194,0.02857886,96.68578935],[4.53421901,0.02857712,96.68508753],[4.53421861,0.02857538,96.68438727],[4.53421822,0.02857365,96.68368868],[4.53421783,0.02857191,96.68299185],[4.53421743,0.02857017,96.68229688],[4.53421704,0.02856844,96.68160385],[4.53421665,0.0285667,96.68091274],[4.53421626,0.02856496,96.68022309],[4.53421586,0.02856323,96.67953429],[4.53421547,0.02856149,96.67884576],[4.53421508,0.02855976,96.6781569],[4.53421468,0.02855803,96.67746713],[4.53421429,0.02855629,96.67677584],[4.53421389,0.02855456,96.67608245],[4.5342135,0.02855283,96.67538641],[4.5342131,0.0285511,96.67468717],[4.5342127,0.02854937,96.67398415],[4.5342123,0.02854764,96.67327682],[4.53421189,0.02854591,96.6725646],[4.53421149,0.02854418,96.67184693],[4.53421108,0.02854245,96.67112325],[4.53421067,0.02854073,96.67039303],[4.53421026,0.028539,96.66965624],[4.53420984,0.02853728,96.66891341],[4.53420942,0.02853555,96.66816508],[4.534209,0.02853383,96.66741178],[4.53420858,0.02853211,96.66665406],[4.53420816,0.02853039,96.66589247],[4.53420773,0.02852867,96.66512754],[4.53420731,0.02852695,96.66435983],[4.53420688,0.02852523,96.66358988],[4.53420645,0.02852352,96.66281824],[4.53420602,0.0285218,96.66204546],[4.53420559,0.02852008,96.66127209],[4.53420516,0.02851837,96.66049869],[4.53420473,0.02851665,96.65972581],[4.5342043,0.02851493,96.658954],[4.53420387,0.02851322,96.65818382],[4.53420344,0.02851151,96.65741584],[4.53420301,0.02850979,96.65665061],[4.53420258,0.02850808,96.65588869],[4.53420215,0.02850639,96.65513064],[4.53420173,0.02850468,96.65437665],[4.5342013,0.02850296,96.65362663],[4.53420087,0.02850124,96.65288043],[4.53420044,0.02849952,96.65213781],[4.53420002,0.0284978,96.65139854],[4.53419959,0.02849608,96.65066235],[4.53419916,0.02849436,96.64992899],[4.53419874,0.02849263,96.6491982],[4.53419831,0.02849091,96.64846973],[4.53419789,0.02848918,96.64774333],[4.53419746,0.02848745,96.64701872],[4.53419703,0.02848572,96.64629565],[4.53419661,0.02848398,96.64557387],[4.53419618,0.02848225,96.64485312],[4.53419575,0.02848052,96.64413313],[4.53419533,0.02847878,96.64341364],[4.5341949,0.02847704,96.64269439],[4.53419447,0.0284753,96.64197512],[4.53419404,0.02847356,96.64125557],[4.53419362,0.02847182,96.64053546],[4.53419319,0.02847007,96.63981455],[4.53419276,0.02846833,96.63909255],[4.53419233,0.02846658,96.63836921],[4.5341919,0.02846483,96.63764425],[4.53419147,0.02846308,96.63691741],[4.53419103,0.02846133,96.63618845],[4.5341906,0.02845958,96.63545717],[4.53419017,0.02845783,96.63472335],[4.53418973,0.02845608,96.63398679],[4.5341893,0.02845432,96.63324738],[4.53418886,0.02845257,96.63250501],[4.53418842,0.02845081,96.63175952],[4.53418798,0.02844905,96.63101072],[4.53418754,0.02844729,96.63025846],[4.5341871,0.02844553,96.62950256],[4.53418666,0.02844376,96.62874286],[4.53418622,0.028442,96.62797917],[4.53418578,0.02844024,96.62721133],[4.53418534,0.02843847,96.62643917],[4.53418489,0.0284367,96.62566251],[4.53418444,0.02843493,96.62488118],[4.534184,0.02843316,96.624095],[4.53418355,0.02843139,96.62330381],[4.5341831,0.02842962,96.62250744],[4.53418265,0.02842785,96.6217058],[4.5341822,0.02842607,96.62089882],[4.53418175,0.0284243,96.62008643],[4.5341813,0.02842252,96.61926854],[4.53418084,0.02842074,96.61844509],[4.53418039,0.02841896,96.617616],[4.53417993,0.02841718,96.61678118],[4.53417948,0.0284154,96.61594058],[4.53417902,0.02841362,96.61509409],[4.53417856,0.02841184,96.61424166],[4.5341781,0.02841005,96.61338321],[4.53417764,0.02840826,96.6125191],[4.53417718,0.02840648,96.61165029],[4.53417672,0.02840469,96.61077785],[4.53417626,0.0284029,96.6099028],[4.5341758,0.0284011,96.60902619],[4.53417535,0.02839931,96.60814907],[4.53417489,0.02839751,96.60727227],[4.53417444,0.02839572,96.60639582],[4.53417399,0.02839392,96.60551959],[4.53417354,0.02839213,96.60464344],[4.53417309,0.02839035,96.60376697],[4.53417265,0.02838857,96.60288953],[4.53417221,0.02838679,96.60201045],[4.53417177,0.02838503,96.60112908],[4.53417133,0.02838326,96.60024475],[4.53417089,0.02838151,96.5993568],[4.53417045,0.02837975,96.59846454],[4.53417001,0.02837801,96.59756732],[4.53416958,0.02837627,96.59666444],[4.53416914,0.02837454,96.59575524],[4.5341687,0.02837281,96.59483903],[4.53416826,0.02837109,96.59391512],[4.53416782,0.02836937,96.59298324],[4.53416738,0.02836766,96.59204456],[4.53416693,0.02836596,96.59110052],[4.53416649,0.02836426,96.59015261],[4.53416605,0.02836257,96.58920232],[4.5341656,0.02836089,96.58825111],[4.53416516,0.02835921,96.5873005],[4.53416472,0.02835754,96.58635199],[4.53416428,0.02835587,96.58540755],[4.53416384,0.02835421,96.58446955],[4.5341634,0.02835255,96.58353925],[4.53416297,0.0283509,96.58261615],[4.53416253,0.02834926,96.58169959],[4.5341621,0.02834762,96.58078892],[4.53416167,0.02834598,96.57988349],[4.53416124,0.02834436,96.57898216],[4.5341608,0.02834274,96.57808224],[4.53416037,0.02834113,96.57718125],[4.53415994,0.02833952,96.57628047],[4.53415951,0.02833793,96.57538257],[4.53415908,0.02833636,96.57449026],[4.53415865,0.0283348,96.57360623],[4.53415823,0.02833325,96.57273321],[4.53415781,0.02833172,96.57187393],[4.5341574,0.0283302,96.57103113],[4.53415699,0.0283287,96.57020756],[4.53415658,0.02832721,96.569406],[4.53415619,0.02832573,96.56862923],[4.5341558,0.02832428,96.56789043],[4.53419866,0.02831106,96.56789043],[4.5341991,0.02831268,96.56862923],[4.53419955,0.02831434,96.569406],[4.5342,0.02831599,96.57020756],[4.53420046,0.02831765,96.57103113],[4.53420091,0.02831932,96.57187393],[4.53420137,0.02832099,96.57273321],[4.53420183,0.02832266,96.57360623],[4.53420229,0.02832434,96.57449026],[4.53420275,0.02832603,96.57538257],[4.5342032,0.02832771,96.57628047],[4.53420366,0.02832941,96.57718125],[4.53420412,0.0283311,96.57808224],[4.53420457,0.0283328,96.57898216],[4.53420502,0.02833451,96.57988349],[4.53420547,0.02833621,96.58078892],[4.53420592,0.02833792,96.58169959],[4.53420637,0.02833963,96.58261615],[4.53420682,0.02834135,96.58353925],[4.53420727,0.02834306,96.58446955],[4.53420773,0.02834478,96.58540755],[4.53420818,0.0283465,96.58635199],[4.53420863,0.02834822,96.5873005],[4.53420909,0.02834994,96.58825111],[4.53420954,0.02835166,96.58920232],[4.53420999,0.02835339,96.59015261],[4.53421045,0.02835512,96.59110052],[4.5342109,0.02835685,96.59204456],[4.53421134,0.02835858,96.59298324],[4.53421179,0.02836032,96.59391512],[4.53421223,0.02836206,96.59483903],[4.53421268,0.0283638,96.59575524],[4.53421312,0.02836554,96.59666444],[4.53421356,0.02836729,96.59756732],[4.53421399,0.02836903,96.59846454],[4.53421443,0.02837078,96.5993568],[4.53421487,0.02837254,96.60024475],[4.5342153,0.02837429,96.60112908],[4.53421574,0.02837605,96.60201045],[4.53421618,0.02837781,96.60288953],[4.53421662,0.02837957,96.60376697],[4.53421706,0.02838133,96.60464344],[4.5342175,0.02838309,96.60551959],[4.53421794,0.02838485,96.60639582],[4.53421839,0.02838661,96.60727227],[4.53421884,0.02838838,96.60814907],[4.53421929,0.02839014,96.60902619],[4.53421974,0.0283919,96.6099028],[4.53422019,0.02839367,96.61077785],[4.53422064,0.02839543,96.61165029],[4.53422109,0.02839719,96.6125191],[4.53422155,0.02839895,96.61338321],[4.534222,0.02840071,96.61424166],[4.53422245,0.02840247,96.61509409],[4.5342229,0.02840422,96.61594058],[4.53422335,0.02840598,96.61678118],[4.5342238,0.02840774,96.617616],[4.53422425,0.0284095,96.61844509],[4.5342247,0.02841126,96.61926854],[4.53422515,0.02841301,96.62008643],[4.53422559,0.02841477,96.62089882],[4.53422604,0.02841653,96.6217058],[4.53422649,0.02841828,96.62250744],[4.53422693,0.02842004,96.62330381],[4.53422737,0.02842179,96.624095],[4.53422782,0.02842355,96.62488118],[4.53422826,0.02842531,96.62566251],[4.5342287,0.02842706,96.62643917],[4.53422914,0.02842882,96.62721133],[4.53422958,0.02843057,96.62797917],[4.53423002,0.02843232,96.62874286],[4.53423046,0.02843408,96.62950256],[4.5342309,0.02843583,96.63025846],[4.53423133,0.02843758,96.63101072],[4.53423177,0.02843934,96.63175952],[4.53423221,0.02844109,96.63250501],[4.53423264,0.02844284,96.63324738],[4.53423308,0.02844459,96.63398679],[4.53423351,0.02844635,96.63472335],[4.53423395,0.0284481,96.63545717],[4.53423438,0.02844985,96.63618845],[4.53423481,0.0284516,96.63691741],[4.53423524,0.02845335,96.63764425],[4.53423567,0.0284551,96.63836921],[4.5342361,0.02845685,96.63909255],[4.53423654,0.0284586,96.63981455],[4.53423697,0.02846035,96.64053546],[4.5342374,0.02846209,96.64125557],[4.53423783,0.02846384,96.64197512],[4.53423825,0.02846559,96.64269439],[4.53423868,0.02846734,96.64341364],[4.53423911,0.02846908,96.64413313],[4.53423954,0.02847083,96.64485312],[4.53423997,0.02847257,96.64557387],[4.5342404,0.02847432,96.64629565],[4.53424083,0.02847606,96.64701872],[4.53424126,0.02847781,96.64774333],[4.53424169,0.02847955,96.64846973],[4.53424212,0.02848129,96.6491982],[4.53424255,0.02848304,96.64992899],[4.53424298,0.02848478,96.65066235],[4.53424341,0.02848652,96.65139854],[4.53424384,0.02848826,96.65213781],[4.53424428,0.02849,96.65288043],[4.53424471,0.02849174,96.65362663],[4.53424514,0.02849347,96.65437665],[4.53424558,0.02849521,96.65513064],[4.53424601,0.02849692,96.65588869],[4.53424644,0.02849866,96.65665061],[4.53424688,0.0285004,96.65741584],[4.53424731,0.02850213,96.65818382],[4.53424775,0.02850387,96.658954],[4.53424819,0.02850561,96.65972581],[4.53424862,0.02850735,96.66049869],[4.53424906,0.02850909,96.66127209],[4.53424949,0.02851083,96.66204546],[4.53424993,0.02851256,96.66281824],[4.53425036,0.0285143,96.66358988],[4.5342508,0.02851604,96.66435983],[4.53425123,0.02851778,96.66512754],[4.53425166,0.02851952,96.66589247],[4.53425209,0.02852126,96.66665406],[4.53425251,0.02852301,96.66741178],[4.53425294,0.02852475,96.66816508],[4.53425336,0.02852649,96.66891341],[4.53425378,0.02852823,96.66965624],[4.5342542,0.02852998,96.67039303],[4.53425461,0.02853172,96.67112325],[4.53425503,0.02853347,96.67184693],[4.53425544,0.02853522,96.6725646],[4.53425585,0.02853696,96.67327682],[4.53425625,0.02853871,96.67398415],[4.53425665,0.02854046,96.67468717],[4.53425706,0.02854221,96.67538641],[4.53425746,0.02854396,96.67608245],[4.53425786,0.02854571,96.67677584],[4.53425826,0.02854746,96.67746713],[4.53425865,0.02854921,96.6781569],[4.53425905,0.02855096,96.67884576],[4.53425945,0.02855271,96.67953429],[4.53425984,0.02855446,96.68022309],[4.53426024,0.02855621,96.68091274],[4.53426063,0.02855796,96.68160385],[4.53426103,0.02855971,96.68229688],[4.53426143,0.02856146,96.68299185],[4.53426182,0.02856322,96.68368868],[4.53426222,0.02856497,96.68438727],[4.53426262,0.02856672,96.68508753],[4.53426302,0.02856847,96.68578935],[4.53426342,0.02857022,96.68649266],[4.53426382,0.02857197,96.68719734],[4.53426421,0.02857373,96.68790332],[4.53426461,0.02857548,96.68861049],[4.53426501,0.02857723,96.68931877],[4.53426541,0.02857898,96.69002806],[4.53426581,0.02858073,96.69073828],[4.53426621,0.02858249,96.69144932],[4.53426661,0.02858424,96.6921611],[4.53426701,0.02858599,96.69287352],[4.53426741,0.02858774,96.6935865],[4.53426781,0.0285895,96.69429993],[4.53426821,0.02859125,96.69501375],[4.53426861,0.028593,96.69572784],[4.53426901,0.02859476,96.69644212],[4.53426941,0.02859651,96.69715651],[4.53426981,0.02859826,96.69787098],[4.53427021,0.02860002,96.69858562],[4.5342706,0.02860177,96.69930048],[4.534271,0.02860352,96.70001563],[4.5342714,0.02860528,96.70073115],[4.5342718,0.02860703,96.7014471],[4.5342722,0.02860879,96.70216355],[4.5342726,0.02861054,96.70288061],[4.534273,0.02861229,96.70359838],[4.5342734,0.02861405,96.70431697],[4.5342738,0.0286158,96.70503649],[4.5342742,0.02861756,96.70575704],[4.5342746,0.02861931,96.70647873],[4.53427501,0.02862107,96.70720166],[4.53427541,0.02862282,96.70792595],[4.53427581,0.02862458,96.7086517],[4.53427621,0.02862633,96.70937902],[4.53427662,0.02862809,96.710108],[4.53427702,0.02862984,96.71083871],[4.53427743,0.0286316,96.71157117],[4.53427783,0.02863335,96.71230541],[4.53427824,0.02863511,96.71304147],[4.53427865,0.02863686,96.71377936],[4.53427905,0.02863862,96.71451912],[4.53427946,0.02864037,96.71526077],[4.53427987,0.02864213,96.71600434],[4.53428028,0.02864388,96.71674986],[4.5342807,0.02864564,96.71749736],[4.53428111,0.02864739,96.71824687],[4.53428152,0.02864915,96.7189984],[4.53428193,0.0286509,96.71975192],[4.53428235,0.02865265,96.72050709],[4.53428276,0.02865441,96.72126348],[4.53428318,0.02865616,96.72202069],[4.53428359,0.02865792,96.72277828],[4.53428401,0.02865967,96.72353585],[4.53428442,0.02866142,96.72429298],[4.53428484,0.02866318,96.72504927],[4.53428525,0.02866493,96.72580438],[4.53428567,0.02866668,96.72655793],[4.53428608,0.02866844,96.72730956],[4.53428649,0.02867019,96.72805892],[4.53428691,0.02867195,96.72880565],[4.53428732,0.0286737,96.72954937],[4.53428773,0.02867546,96.73028974],[4.53428814,0.02867721,96.7310264],[4.53428855,0.02867897,96.73175898],[4.53428895,0.02868073,96.73248713],[4.53428936,0.02868248,96.73321049],[4.53428976,0.02868424,96.7339287],[4.53429016,0.028686,96.73464141],[4.53429056,0.02868776,96.73534825],[4.53429096,0.02868951,96.73604887],[4.53429135,0.02869127,96.73674301],[4.53429175,0.02869303,96.73743083],[4.53429214,0.02869479,96.7381126],[4.53429253,0.02869656,96.73878857],[4.53429291,0.02869832,96.739459],[4.5342933,0.02870008,96.74012419],[4.53429368,0.02870184,96.74078451],[4.53429407,0.0287036,96.74144036],[4.53429445,0.02870537,96.74209213],[4.53429483,0.02870713,96.74274021],[4.53429521,0.02870889,96.743385],[4.53429558,0.02871066,96.74402688],[4.53429596,0.02871242,96.74466617],[4.53429634,0.02871418,96.74530313],[4.53429672,0.02871595,96.74593799],[4.53429709,0.02871771,96.746571],[4.53429747,0.02871948,96.7472024],[4.53429784,0.02872124,96.74783244],[4.53429822,0.02872301,96.74846136],[4.53429859,0.02872477,96.74908941],[4.53429897,0.02872654,96.74971682],[4.53429934,0.0287283,96.75034384],[4.53429972,0.02873007,96.75097072],[4.53430009,0.02873183,96.75159769],[4.53430047,0.0287336,96.75222501],[4.53430084,0.02873536,96.7528529],[4.53430122,0.02873713,96.75348163],[4.53430159,0.0287389,96.75411141],[4.53430197,0.02874066,96.75474251],[4.53430235,0.02874242,96.75537516],[4.53430273,0.02874419,96.7560096],[4.53430311,0.02874595,96.75664607],[4.53430349,0.02874772,96.75728482],[4.53430387,0.02874948,96.75792609],[4.53430426,0.02875125,96.75857012],[4.53430464,0.02875301,96.75921715],[4.53430503,0.02875477,96.75986743],[4.53430541,0.02875654,96.76052119],[4.5343058,0.0287583,96.7611786],[4.53430619,0.02876006,96.76183952],[4.53430659,0.02876183,96.76250371],[4.53430698,0.02876359,96.76317096],[4.53430737,0.02876535,96.76384104],[4.53430777,0.02876711,96.76451372],[4.53430817,0.02876887,96.76518878],[4.53430856,0.02877063,96.76586601],[4.53430896,0.0287724,96.76654517],[4.53430936,0.02877416,96.76722603],[4.53430976,0.02877592,96.76790833],[4.53431016,0.02877768,96.76859188],[4.53431057,0.02877944,96.76927651],[4.53431097,0.0287812,96.76996206],[4.53431137,0.02878296,96.77064838],[4.53431177,0.02878472,96.77133529],[4.53431218,0.02878648,96.77202263],[4.53431258,0.02878824,96.77271025],[4.53431299,0.02879,96.77339798],[4.53431339,0.02879176,96.77408565],[4.53431379,0.02879352,96.77477311],[4.5343142,0.02879528,96.7754602],[4.5343146,0.02879704,96.77614675],[4.53431501,0.0287988,96.7768326],[4.53431542,0.02880057,96.77751758],[4.53431582,0.02880233,96.77820154],[4.53431622,0.02880409,96.77888432],[4.53431663,0.02880585,96.77956575],[4.53431703,0.02880761,96.78024566],[4.53431744,0.02880937,96.78092391],[4.53431784,0.02881113,96.78160032],[4.53431824,0.02881289,96.78227474],[4.53431865,0.02881465,96.782947],[4.53431905,0.02881642,96.78361699],[4.53431945,0.02881818,96.78428483],[4.53431985,0.02881993,96.78495069],[4.53432025,0.02882169,96.78561474],[4.53432065,0.02882345,96.78627713],[4.53432105,0.02882522,96.78693805],[4.53432145,0.02882698,96.78759765],[4.53432185,0.02882874,96.78825611],[4.53432225,0.0288305,96.7889136],[4.53432265,0.02883227,96.78957027],[4.53432306,0.02883403,96.79022629],[4.53432346,0.02883579,96.79088171],[4.53432386,0.02883756,96.79153658],[4.53432426,0.02883932,96.79219096],[4.53432466,0.02884108,96.79284489],[4.53432506,0.02884284,96.79349843],[4.53432546,0.02884461,96.79415161],[4.53432586,0.02884637,96.79480448],[4.53432626,0.02884813,96.79545711],[4.53432666,0.02884989,96.79610952],[4.53432706,0.02885166,96.79676178],[4.53432747,0.02885342,96.79741393],[4.53432787,0.02885518,96.79806601],[4.53432827,0.02885694,96.7987181],[4.53432867,0.0288587,96.79937028],[4.53432908,0.02886047,96.80002267],[4.53432948,0.02886223,96.80067537],[4.53432988,0.02886399,96.80132847],[4.53433029,0.02886575,96.8019821],[4.53433069,0.02886751,96.80263633],[4.5343311,0.02886927,96.8032913],[4.5343315,0.02887104,96.80394708],[4.53433191,0.0288728,96.8046038],[4.53433231,0.02887456,96.80526155],[4.53433272,0.02887632,96.80592044],[4.53433313,0.02887808,96.80658057],[4.53433354,0.02887984,96.80724204],[4.53433395,0.0288816,96.80790497],[4.53433436,0.02888336,96.80856945],[4.53433477,0.02888512,96.80923561],[4.53433518,0.02888688,96.80990356],[4.53433559,0.02888864,96.81057341],[4.53433601,0.0288904,96.81124527],[4.53433642,0.02889216,96.81191927],[4.53433684,0.02889392,96.81259552],[4.53433725,0.02889567,96.81327399],[4.53433767,0.02889743,96.81395453],[4.53433809,0.02889919,96.81463698],[4.53433851,0.02890095,96.81532121],[4.53433893,0.02890271,96.81600703],[4.53433935,0.02890446,96.81669431],[4.53433977,0.02890622,96.81738289],[4.53434019,0.02890798,96.8180726],[4.53434062,0.02890974,96.8187633],[4.53434104,0.02891149,96.81945482],[4.53434146,0.02891325,96.82014702],[4.53434189,0.02891501,96.82083974],[4.53434231,0.02891676,96.82153281],[4.53434273,0.02891852,96.82222609],[4.53434316,0.02892028,96.82291942],[4.53434358,0.02892203,96.82361263],[4.53434401,0.02892379,96.82430559],[4.53434443,0.02892555,96.82499812],[4.53434486,0.0289273,96.82569008],[4.53434528,0.02892906,96.8263813],[4.53434571,0.02893082,96.82707163],[4.53434613,0.02893257,96.82776091],[4.53434655,0.02893433,96.82844899],[4.53434698,0.02893609,96.82913571],[4.5343474,0.02893784,96.82982091],[4.53434782,0.0289396,96.83050443],[4.53434825,0.02894136,96.83118612],[4.53434867,0.02894311,96.83186583],[4.53434909,0.02894487,96.83254338],[4.53434951,0.02894663,96.83321863],[4.53434993,0.02894839,96.83389141],[4.53435035,0.02895014,96.83456158],[4.53435076,0.0289519,96.83522897],[4.53435118,0.02895366,96.83589342],[4.5343516,0.02895542,96.83655477],[4.53435201,0.02895718,96.83721287],[4.53435243,0.02895894,96.83786756],[4.53435284,0.0289607,96.83851869],[4.53435325,0.02896246,96.83916608],[4.53435366,0.02896422,96.83980958],[4.53435407,0.02896598,96.84044904],[4.53435448,0.02896774,96.8410843],[4.53435488,0.0289695,96.8417152],[4.53431139,0.02898033,96.8417152]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1004700","id":-3,"type":"none","predecessorId":-3,"sOffset":166.1668423772}},{"geometry":{"coordinates":[[[4.53435488,0.0289695,96.8417152],[4.53435448,0.02896774,96.8410843],[4.53435407,0.02896598,96.84044904],[4.53435366,0.02896422,96.83980958],[4.53435325,0.02896246,96.83916608],[4.53435284,0.0289607,96.83851869],[4.53435243,0.02895894,96.83786756],[4.53435201,0.02895718,96.83721287],[4.5343516,0.02895542,96.83655477],[4.53435118,0.02895366,96.83589342],[4.53435076,0.0289519,96.83522897],[4.53435035,0.02895014,96.83456158],[4.53434993,0.02894839,96.83389141],[4.53434951,0.02894663,96.83321863],[4.53434909,0.02894487,96.83254338],[4.53434867,0.02894311,96.83186583],[4.53434825,0.02894136,96.83118612],[4.53434782,0.0289396,96.83050443],[4.5343474,0.02893784,96.82982091],[4.53434698,0.02893609,96.82913571],[4.53434655,0.02893433,96.82844899],[4.53434613,0.02893257,96.82776091],[4.53434571,0.02893082,96.82707163],[4.53434528,0.02892906,96.8263813],[4.53434486,0.0289273,96.82569008],[4.53434443,0.02892555,96.82499812],[4.53434401,0.02892379,96.82430559],[4.53434358,0.02892203,96.82361263],[4.53434316,0.02892028,96.82291942],[4.53434273,0.02891852,96.82222609],[4.53434231,0.02891676,96.82153281],[4.53434189,0.02891501,96.82083974],[4.53434146,0.02891325,96.82014702],[4.53434104,0.02891149,96.81945482],[4.53434062,0.02890974,96.8187633],[4.53434019,0.02890798,96.8180726],[4.53433977,0.02890622,96.81738289],[4.53433935,0.02890446,96.81669431],[4.53433893,0.02890271,96.81600703],[4.53433851,0.02890095,96.81532121],[4.53433809,0.02889919,96.81463698],[4.53433767,0.02889743,96.81395453],[4.53433725,0.02889567,96.81327399],[4.53433684,0.02889392,96.81259552],[4.53433642,0.02889216,96.81191927],[4.53433601,0.0288904,96.81124527],[4.53433559,0.02888864,96.81057341],[4.53433518,0.02888688,96.80990356],[4.53433477,0.02888512,96.80923561],[4.53433436,0.02888336,96.80856945],[4.53433395,0.0288816,96.80790497],[4.53433354,0.02887984,96.80724204],[4.53433313,0.02887808,96.80658057],[4.53433272,0.02887632,96.80592044],[4.53433231,0.02887456,96.80526155],[4.53433191,0.0288728,96.8046038],[4.5343315,0.02887104,96.80394708],[4.5343311,0.02886927,96.8032913],[4.53433069,0.02886751,96.80263633],[4.53433029,0.02886575,96.8019821],[4.53432988,0.02886399,96.80132847],[4.53432948,0.02886223,96.80067537],[4.53432908,0.02886047,96.80002267],[4.53432867,0.0288587,96.79937028],[4.53432827,0.02885694,96.7987181],[4.53432787,0.02885518,96.79806601],[4.53432747,0.02885342,96.79741393],[4.53432706,0.02885166,96.79676178],[4.53432666,0.02884989,96.79610952],[4.53432626,0.02884813,96.79545711],[4.53432586,0.02884637,96.79480448],[4.53432546,0.02884461,96.79415161],[4.53432506,0.02884284,96.79349843],[4.53432466,0.02884108,96.79284489],[4.53432426,0.02883932,96.79219096],[4.53432386,0.02883756,96.79153658],[4.53432346,0.02883579,96.79088171],[4.53432306,0.02883403,96.79022629],[4.53432265,0.02883227,96.78957027],[4.53432225,0.0288305,96.7889136],[4.53432185,0.02882874,96.78825611],[4.53432145,0.02882698,96.78759765],[4.53432105,0.02882522,96.78693805],[4.53432065,0.02882345,96.78627713],[4.53432025,0.02882169,96.78561474],[4.53431985,0.02881993,96.78495069],[4.53431945,0.02881818,96.78428483],[4.53431905,0.02881642,96.78361699],[4.53431865,0.02881465,96.782947],[4.53431824,0.02881289,96.78227474],[4.53431784,0.02881113,96.78160032],[4.53431744,0.02880937,96.78092391],[4.53431703,0.02880761,96.78024566],[4.53431663,0.02880585,96.77956575],[4.53431622,0.02880409,96.77888432],[4.53431582,0.02880233,96.77820154],[4.53431542,0.02880057,96.77751758],[4.53431501,0.0287988,96.7768326],[4.5343146,0.02879704,96.77614675],[4.5343142,0.02879528,96.7754602],[4.53431379,0.02879352,96.77477311],[4.53431339,0.02879176,96.77408565],[4.53431299,0.02879,96.77339798],[4.53431258,0.02878824,96.77271025],[4.53431218,0.02878648,96.77202263],[4.53431177,0.02878472,96.77133529],[4.53431137,0.02878296,96.77064838],[4.53431097,0.0287812,96.76996206],[4.53431057,0.02877944,96.76927651],[4.53431016,0.02877768,96.76859188],[4.53430976,0.02877592,96.76790833],[4.53430936,0.02877416,96.76722603],[4.53430896,0.0287724,96.76654517],[4.53430856,0.02877063,96.76586601],[4.53430817,0.02876887,96.76518878],[4.53430777,0.02876711,96.76451372],[4.53430737,0.02876535,96.76384104],[4.53430698,0.02876359,96.76317096],[4.53430659,0.02876183,96.76250371],[4.53430619,0.02876006,96.76183952],[4.5343058,0.0287583,96.7611786],[4.53430541,0.02875654,96.76052119],[4.53430503,0.02875477,96.75986743],[4.53430464,0.02875301,96.75921715],[4.53430426,0.02875125,96.75857012],[4.53430387,0.02874948,96.75792609],[4.53430349,0.02874772,96.75728482],[4.53430311,0.02874595,96.75664607],[4.53430273,0.02874419,96.7560096],[4.53430235,0.02874242,96.75537516],[4.53430197,0.02874066,96.75474251],[4.53430159,0.0287389,96.75411141],[4.53430122,0.02873713,96.75348163],[4.53430084,0.02873536,96.7528529],[4.53430047,0.0287336,96.75222501],[4.53430009,0.02873183,96.75159769],[4.53429972,0.02873007,96.75097072],[4.53429934,0.0287283,96.75034384],[4.53429897,0.02872654,96.74971682],[4.53429859,0.02872477,96.74908941],[4.53429822,0.02872301,96.74846136],[4.53429784,0.02872124,96.74783244],[4.53429747,0.02871948,96.7472024],[4.53429709,0.02871771,96.746571],[4.53429672,0.02871595,96.74593799],[4.53429634,0.02871418,96.74530313],[4.53429596,0.02871242,96.74466617],[4.53429558,0.02871066,96.74402688],[4.53429521,0.02870889,96.743385],[4.53429483,0.02870713,96.74274021],[4.53429445,0.02870537,96.74209213],[4.53429407,0.0287036,96.74144036],[4.53429368,0.02870184,96.74078451],[4.5342933,0.02870008,96.74012419],[4.53429291,0.02869832,96.739459],[4.53429253,0.02869656,96.73878857],[4.53429214,0.02869479,96.7381126],[4.53429175,0.02869303,96.73743083],[4.53429135,0.02869127,96.73674301],[4.53429096,0.02868951,96.73604887],[4.53429056,0.02868776,96.73534825],[4.53429016,0.028686,96.73464141],[4.53428976,0.02868424,96.7339287],[4.53428936,0.02868248,96.73321049],[4.53428895,0.02868073,96.73248713],[4.53428855,0.02867897,96.73175898],[4.53428814,0.02867721,96.7310264],[4.53428773,0.02867546,96.73028974],[4.53428732,0.0286737,96.72954937],[4.53428691,0.02867195,96.72880565],[4.53428649,0.02867019,96.72805892],[4.53428608,0.02866844,96.72730956],[4.53428567,0.02866668,96.72655793],[4.53428525,0.02866493,96.72580438],[4.53428484,0.02866318,96.72504927],[4.53428442,0.02866142,96.72429298],[4.53428401,0.02865967,96.72353585],[4.53428359,0.02865792,96.72277828],[4.53428318,0.02865616,96.72202069],[4.53428276,0.02865441,96.72126348],[4.53428235,0.02865265,96.72050709],[4.53428193,0.0286509,96.71975192],[4.53428152,0.02864915,96.7189984],[4.53428111,0.02864739,96.71824687],[4.5342807,0.02864564,96.71749736],[4.53428028,0.02864388,96.71674986],[4.53427987,0.02864213,96.71600434],[4.53427946,0.02864037,96.71526077],[4.53427905,0.02863862,96.71451912],[4.53427865,0.02863686,96.71377936],[4.53427824,0.02863511,96.71304147],[4.53427783,0.02863335,96.71230541],[4.53427743,0.0286316,96.71157117],[4.53427702,0.02862984,96.71083871],[4.53427662,0.02862809,96.710108],[4.53427621,0.02862633,96.70937902],[4.53427581,0.02862458,96.7086517],[4.53427541,0.02862282,96.70792595],[4.53427501,0.02862107,96.70720166],[4.5342746,0.02861931,96.70647873],[4.5342742,0.02861756,96.70575704],[4.5342738,0.0286158,96.70503649],[4.5342734,0.02861405,96.70431697],[4.534273,0.02861229,96.70359838],[4.5342726,0.02861054,96.70288061],[4.5342722,0.02860879,96.70216355],[4.5342718,0.02860703,96.7014471],[4.5342714,0.02860528,96.70073115],[4.534271,0.02860352,96.70001563],[4.5342706,0.02860177,96.69930048],[4.53427021,0.02860002,96.69858562],[4.53426981,0.02859826,96.69787098],[4.53426941,0.02859651,96.69715651],[4.53426901,0.02859476,96.69644212],[4.53426861,0.028593,96.69572784],[4.53426821,0.02859125,96.69501375],[4.53426781,0.0285895,96.69429993],[4.53426741,0.02858774,96.6935865],[4.53426701,0.02858599,96.69287352],[4.53426661,0.02858424,96.6921611],[4.53426621,0.02858249,96.69144932],[4.53426581,0.02858073,96.69073828],[4.53426541,0.02857898,96.69002806],[4.53426501,0.02857723,96.68931877],[4.53426461,0.02857548,96.68861049],[4.53426421,0.02857373,96.68790332],[4.53426382,0.02857197,96.68719734],[4.53426342,0.02857022,96.68649266],[4.53426302,0.02856847,96.68578935],[4.53426262,0.02856672,96.68508753],[4.53426222,0.02856497,96.68438727],[4.53426182,0.02856322,96.68368868],[4.53426143,0.02856146,96.68299185],[4.53426103,0.02855971,96.68229688],[4.53426063,0.02855796,96.68160385],[4.53426024,0.02855621,96.68091274],[4.53425984,0.02855446,96.68022309],[4.53425945,0.02855271,96.67953429],[4.53425905,0.02855096,96.67884576],[4.53425865,0.02854921,96.6781569],[4.53425826,0.02854746,96.67746713],[4.53425786,0.02854571,96.67677584],[4.53425746,0.02854396,96.67608245],[4.53425706,0.02854221,96.67538641],[4.53425665,0.02854046,96.67468717],[4.53425625,0.02853871,96.67398415],[4.53425585,0.02853696,96.67327682],[4.53425544,0.02853522,96.6725646],[4.53425503,0.02853347,96.67184693],[4.53425461,0.02853172,96.67112325],[4.5342542,0.02852998,96.67039303],[4.53425378,0.02852823,96.66965624],[4.53425336,0.02852649,96.66891341],[4.53425294,0.02852475,96.66816508],[4.53425251,0.02852301,96.66741178],[4.53425209,0.02852126,96.66665406],[4.53425166,0.02851952,96.66589247],[4.53425123,0.02851778,96.66512754],[4.5342508,0.02851604,96.66435983],[4.53425036,0.0285143,96.66358988],[4.53424993,0.02851256,96.66281824],[4.53424949,0.02851083,96.66204546],[4.53424906,0.02850909,96.66127209],[4.53424862,0.02850735,96.66049869],[4.53424819,0.02850561,96.65972581],[4.53424775,0.02850387,96.658954],[4.53424731,0.02850213,96.65818382],[4.53424688,0.0285004,96.65741584],[4.53424644,0.02849866,96.65665061],[4.53424601,0.02849692,96.65588869],[4.53424558,0.02849521,96.65513064],[4.53424514,0.02849347,96.65437665],[4.53424471,0.02849174,96.65362663],[4.53424428,0.02849,96.65288043],[4.53424384,0.02848826,96.65213781],[4.53424341,0.02848652,96.65139854],[4.53424298,0.02848478,96.65066235],[4.53424255,0.02848304,96.64992899],[4.53424212,0.02848129,96.6491982],[4.53424169,0.02847955,96.64846973],[4.53424126,0.02847781,96.64774333],[4.53424083,0.02847606,96.64701872],[4.5342404,0.02847432,96.64629565],[4.53423997,0.02847257,96.64557387],[4.53423954,0.02847083,96.64485312],[4.53423911,0.02846908,96.64413313],[4.53423868,0.02846734,96.64341364],[4.53423825,0.02846559,96.64269439],[4.53423783,0.02846384,96.64197512],[4.5342374,0.02846209,96.64125557],[4.53423697,0.02846035,96.64053546],[4.53423654,0.0284586,96.63981455],[4.5342361,0.02845685,96.63909255],[4.53423567,0.0284551,96.63836921],[4.53423524,0.02845335,96.63764425],[4.53423481,0.0284516,96.63691741],[4.53423438,0.02844985,96.63618845],[4.53423395,0.0284481,96.63545717],[4.53423351,0.02844635,96.63472335],[4.53423308,0.02844459,96.63398679],[4.53423264,0.02844284,96.63324738],[4.53423221,0.02844109,96.63250501],[4.53423177,0.02843934,96.63175952],[4.53423133,0.02843758,96.63101072],[4.5342309,0.02843583,96.63025846],[4.53423046,0.02843408,96.62950256],[4.53423002,0.02843232,96.62874286],[4.53422958,0.02843057,96.62797917],[4.53422914,0.02842882,96.62721133],[4.5342287,0.02842706,96.62643917],[4.53422826,0.02842531,96.62566251],[4.53422782,0.02842355,96.62488118],[4.53422737,0.02842179,96.624095],[4.53422693,0.02842004,96.62330381],[4.53422649,0.02841828,96.62250744],[4.53422604,0.02841653,96.6217058],[4.53422559,0.02841477,96.62089882],[4.53422515,0.02841301,96.62008643],[4.5342247,0.02841126,96.61926854],[4.53422425,0.0284095,96.61844509],[4.5342238,0.02840774,96.617616],[4.53422335,0.02840598,96.61678118],[4.5342229,0.02840422,96.61594058],[4.53422245,0.02840247,96.61509409],[4.534222,0.02840071,96.61424166],[4.53422155,0.02839895,96.61338321],[4.53422109,0.02839719,96.6125191],[4.53422064,0.02839543,96.61165029],[4.53422019,0.02839367,96.61077785],[4.53421974,0.0283919,96.6099028],[4.53421929,0.02839014,96.60902619],[4.53421884,0.02838838,96.60814907],[4.53421839,0.02838661,96.60727227],[4.53421794,0.02838485,96.60639582],[4.5342175,0.02838309,96.60551959],[4.53421706,0.02838133,96.60464344],[4.53421662,0.02837957,96.60376697],[4.53421618,0.02837781,96.60288953],[4.53421574,0.02837605,96.60201045],[4.5342153,0.02837429,96.60112908],[4.53421487,0.02837254,96.60024475],[4.53421443,0.02837078,96.5993568],[4.53421399,0.02836903,96.59846454],[4.53421356,0.02836729,96.59756732],[4.53421312,0.02836554,96.59666444],[4.53421268,0.0283638,96.59575524],[4.53421223,0.02836206,96.59483903],[4.53421179,0.02836032,96.59391512],[4.53421134,0.02835858,96.59298324],[4.5342109,0.02835685,96.59204456],[4.53421045,0.02835512,96.59110052],[4.53420999,0.02835339,96.59015261],[4.53420954,0.02835166,96.58920232],[4.53420909,0.02834994,96.58825111],[4.53420863,0.02834822,96.5873005],[4.53420818,0.0283465,96.58635199],[4.53420773,0.02834478,96.58540755],[4.53420727,0.02834306,96.58446955],[4.53420682,0.02834135,96.58353925],[4.53420637,0.02833963,96.58261615],[4.53420592,0.02833792,96.58169959],[4.53420547,0.02833621,96.58078892],[4.53420502,0.02833451,96.57988349],[4.53420457,0.0283328,96.57898216],[4.53420412,0.0283311,96.57808224],[4.53420366,0.02832941,96.57718125],[4.5342032,0.02832771,96.57628047],[4.53420275,0.02832603,96.57538257],[4.53420229,0.02832434,96.57449026],[4.53420183,0.02832266,96.57360623],[4.53420137,0.02832099,96.57273321],[4.53420091,0.02831932,96.57187393],[4.53420046,0.02831765,96.57103113],[4.5342,0.02831599,96.57020756],[4.53419955,0.02831434,96.569406],[4.5341991,0.02831268,96.56862923],[4.53419866,0.02831106,96.56789043],[4.53420297,0.02830973,96.58221732],[4.53420341,0.02831137,96.58292136],[4.53420386,0.02831305,96.58365844],[4.53420431,0.02831472,96.58441634],[4.53420476,0.0283164,96.58519278],[4.53420521,0.02831808,96.5859855],[4.53420566,0.02831977,96.58679222],[4.53420611,0.02832146,96.58761072],[4.53420656,0.02832315,96.58843875],[4.534207,0.02832485,96.58927408],[4.53420745,0.02832656,96.5901145],[4.5342079,0.02832826,96.5909578],[4.53420834,0.02832997,96.59180178],[4.53420878,0.02833168,96.59264567],[4.53420922,0.02833339,96.59349239],[4.53420966,0.02833511,96.59434515],[4.53421011,0.02833683,96.59520554],[4.53421055,0.02833855,96.59607469],[4.53421099,0.02834027,96.59695374],[4.53421144,0.02834199,96.59784381],[4.53421188,0.02834372,96.59874586],[4.53421233,0.02834544,96.59965911],[4.53421278,0.02834717,96.60058162],[4.53421324,0.02834889,96.60151147],[4.53421369,0.02835062,96.60244671],[4.53421415,0.02835235,96.60338544],[4.5342146,0.02835408,96.60432574],[4.53421505,0.02835581,96.60526569],[4.53421551,0.02835755,96.60620341],[4.53421596,0.02835929,96.607137],[4.53421641,0.02836103,96.60806489],[4.53421686,0.02836277,96.60898694],[4.5342173,0.02836451,96.60990341],[4.53421775,0.02836625,96.61081458],[4.53421819,0.028368,96.6117207],[4.53421864,0.02836975,96.61262205],[4.53421908,0.0283715,96.61351888],[4.53421952,0.02837325,96.61441147],[4.53421997,0.028375,96.61530006],[4.53422041,0.02837676,96.61618493],[4.53422085,0.02837852,96.61706633],[4.5342213,0.02838027,96.61794452],[4.53422174,0.02838203,96.61881977],[4.53422219,0.02838379,96.61969231],[4.53422263,0.02838555,96.62056242],[4.53422308,0.02838731,96.62143035],[4.53422353,0.02838907,96.62229617],[4.53422398,0.02839083,96.62315919],[4.53422443,0.02839259,96.62401847],[4.53422488,0.02839435,96.62487309],[4.53422533,0.02839611,96.62572212],[4.53422578,0.02839786,96.62656465],[4.53422623,0.02839962,96.6273998],[4.53422668,0.02840138,96.62822736],[4.53422712,0.02840314,96.62904749],[4.53422757,0.0284049,96.6298604],[4.53422801,0.02840665,96.63066627],[4.53422845,0.02840841,96.63146531],[4.53422889,0.02841017,96.6322577],[4.53422933,0.02841192,96.63304363],[4.53422977,0.02841368,96.63382329],[4.53423021,0.02841544,96.63459687],[4.53423065,0.02841719,96.63536457],[4.53423109,0.02841895,96.63612656],[4.53423152,0.02842071,96.63688305],[4.53423196,0.02842246,96.63763431],[4.53423239,0.02842422,96.63838063],[4.53423283,0.02842598,96.63912228],[4.53423326,0.02842773,96.63985956],[4.53423369,0.02842949,96.64059276],[4.53423412,0.02843124,96.64132214],[4.53423455,0.028433,96.642048],[4.53423498,0.02843475,96.64277061],[4.53423541,0.02843651,96.64349027],[4.53423584,0.02843826,96.64420723],[4.53423627,0.02844001,96.64492179],[4.5342367,0.02844177,96.64563421],[4.53423713,0.02844352,96.64634479],[4.53423756,0.02844527,96.64705373],[4.53423798,0.02844703,96.64776111],[4.53423841,0.02844878,96.64846698],[4.53423884,0.02845053,96.6491714],[4.53423927,0.02845228,96.64987441],[4.53423969,0.02845403,96.65057611],[4.53424012,0.02845579,96.65127659],[4.53424055,0.02845754,96.65197597],[4.53424097,0.02845929,96.65267436],[4.5342414,0.02846104,96.65337187],[4.53424182,0.02846279,96.65406861],[4.53424225,0.02846454,96.6547647],[4.53424267,0.02846628,96.65546023],[4.5342431,0.02846803,96.65615532],[4.53424352,0.02846978,96.65685008],[4.53424394,0.02847153,96.65754462],[4.53424437,0.02847328,96.65823905],[4.53424479,0.02847502,96.65893346],[4.53424521,0.02847677,96.65962798],[4.53424564,0.02847852,96.66032271],[4.53424606,0.02848026,96.66101776],[4.53424648,0.02848201,96.66171323],[4.5342469,0.02848376,96.66240923],[4.53424732,0.0284855,96.66310587],[4.53424774,0.02848725,96.66380326],[4.53424816,0.02848899,96.66450149],[4.53424858,0.02849073,96.66520068],[4.534249,0.02849248,96.6659009],[4.53424942,0.02849422,96.66660214],[4.53424984,0.02849594,96.6673044],[4.53425026,0.02849768,96.66800762],[4.53425067,0.02849943,96.66871176],[4.53425109,0.02850117,96.66941677],[4.53425151,0.02850292,96.67012259],[4.53425193,0.02850466,96.67082916],[4.53425234,0.02850641,96.67153643],[4.53425276,0.02850815,96.67224435],[4.53425318,0.0285099,96.67295286],[4.53425359,0.02851164,96.67366191],[4.53425401,0.02851339,96.67437145],[4.53425443,0.02851513,96.67508142],[4.53425484,0.02851688,96.67579177],[4.53425525,0.02851862,96.67650245],[4.53425567,0.02852037,96.6772134],[4.53425608,0.02852212,96.67792457],[4.5342565,0.02852386,96.67863591],[4.53425691,0.02852561,96.67934737],[4.53425732,0.02852736,96.68005889],[4.53425773,0.02852911,96.68077043],[4.53425814,0.02853085,96.68148193],[4.53425855,0.0285326,96.68219333],[4.53425896,0.02853435,96.6829046],[4.53425937,0.0285361,96.68361567],[4.53425978,0.02853785,96.6843265],[4.53426019,0.02853959,96.68503703],[4.5342606,0.02854134,96.68574721],[4.53426101,0.02854309,96.686457],[4.53426142,0.02854484,96.68716634],[4.53426182,0.02854659,96.68787519],[4.53426223,0.02854834,96.68858351],[4.53426263,0.02855009,96.68929131],[4.53426304,0.02855184,96.68999857],[4.53426344,0.02855359,96.69070529],[4.53426385,0.02855534,96.69141145],[4.53426425,0.02855709,96.69211706],[4.53426465,0.02855884,96.6928221],[4.53426506,0.0285606,96.69352657],[4.53426546,0.02856235,96.69423046],[4.53426586,0.0285641,96.69493376],[4.53426626,0.02856585,96.69563647],[4.53426666,0.0285676,96.69633857],[4.53426706,0.02856936,96.69704007],[4.53426746,0.02857111,96.69774095],[4.53426786,0.02857286,96.6984412],[4.53426826,0.02857461,96.69914083],[4.53426865,0.02857637,96.69983981],[4.53426905,0.02857812,96.70053815],[4.53426945,0.02857988,96.70123584],[4.53426984,0.02858163,96.70193287],[4.53427024,0.02858338,96.70262924],[4.53427064,0.02858514,96.70332493],[4.53427103,0.02858689,96.70401994],[4.53427143,0.02858865,96.70471426],[4.53427182,0.0285904,96.70540789],[4.53427222,0.02859216,96.70610082],[4.53427261,0.02859391,96.70679304],[4.534273,0.02859567,96.70748455],[4.53427339,0.02859742,96.70817533],[4.53427379,0.02859918,96.70886539],[4.53427418,0.02860094,96.70955471],[4.53427457,0.02860269,96.71024329],[4.53427496,0.02860445,96.71093112],[4.53427535,0.02860621,96.7116182],[4.53427574,0.02860796,96.71230452],[4.53427613,0.02860972,96.7129901],[4.53427652,0.02861148,96.71367499],[4.53427691,0.02861324,96.71435922],[4.5342773,0.02861499,96.71504281],[4.53427769,0.02861675,96.7157258],[4.53427808,0.02861851,96.71640822],[4.53427847,0.02862027,96.7170901],[4.53427886,0.02862203,96.71777148],[4.53427925,0.02862378,96.71845239],[4.53427963,0.02862554,96.71913286],[4.53428002,0.0286273,96.71981291],[4.53428041,0.02862906,96.72049254],[4.5342808,0.02863082,96.7211717],[4.53428119,0.02863258,96.72185033],[4.53428157,0.02863434,96.7225284],[4.53428196,0.0286361,96.72320586],[4.53428235,0.02863786,96.72388266],[4.53428273,0.02863962,96.72455876],[4.53428312,0.02864138,96.72523411],[4.53428351,0.02864314,96.72590867],[4.53428389,0.0286449,96.72658239],[4.53428428,0.02864666,96.72725522],[4.53428467,0.02864842,96.72792711],[4.53428505,0.02865019,96.72859803],[4.53428544,0.02865195,96.72926793],[4.53428582,0.02865371,96.72993677],[4.5342862,0.02865547,96.73060448],[4.53428659,0.02865723,96.73127104],[4.53428697,0.02865899,96.7319364],[4.53428736,0.02866075,96.73260051],[4.53428774,0.02866251,96.73326335],[4.53428812,0.02866427,96.73392493],[4.5342885,0.02866603,96.73458526],[4.53428889,0.0286678,96.73524434],[4.53428927,0.02866956,96.73590219],[4.53428965,0.02867132,96.73655881],[4.53429003,0.02867308,96.73721421],[4.53429041,0.02867484,96.7378684],[4.53429079,0.02867661,96.73852138],[4.53429117,0.02867837,96.73917317],[4.53429155,0.02868013,96.73982378],[4.53429193,0.02868189,96.7404732],[4.53429231,0.02868366,96.74112145],[4.53429269,0.02868542,96.74176854],[4.53429307,0.02868718,96.74241448],[4.53429344,0.02868895,96.74305926],[4.53429382,0.02869071,96.74370291],[4.5342942,0.02869247,96.74434543],[4.53429458,0.02869424,96.74498682],[4.53429495,0.028696,96.7456271],[4.53429533,0.02869776,96.74626627],[4.53429571,0.02869953,96.74690438],[4.53429608,0.02870129,96.74754155],[4.53429646,0.02870306,96.74817793],[4.53429684,0.02870482,96.74881365],[4.53429721,0.02870658,96.74944887],[4.53429759,0.02870835,96.75008371],[4.53429796,0.02871011,96.75071833],[4.53429834,0.02871188,96.75135279],[4.53429872,0.02871364,96.75198709],[4.53429909,0.02871541,96.75262122],[4.53429947,0.02871717,96.75325518],[4.53429985,0.02871893,96.75388898],[4.53430022,0.0287207,96.75452259],[4.5343006,0.02872246,96.75515602],[4.53430098,0.02872423,96.75578927],[4.53430135,0.02872599,96.75642232],[4.53430173,0.02872776,96.75705518],[4.53430211,0.02872952,96.75768784],[4.53430249,0.02873129,96.75832029],[4.53430286,0.02873305,96.75895253],[4.53430324,0.02873481,96.75958457],[4.53430362,0.02873658,96.76021638],[4.534304,0.02873834,96.76084797],[4.53430437,0.02874011,96.76147934],[4.53430475,0.02874187,96.76211047],[4.53430513,0.02874364,96.76274137],[4.53430551,0.0287454,96.76337203],[4.53430589,0.02874717,96.76400245],[4.53430626,0.02874893,96.76463262],[4.53430664,0.0287507,96.76526254],[4.53430702,0.02875246,96.7658922],[4.5343074,0.02875423,96.7665216],[4.53430778,0.02875599,96.76715073],[4.53430816,0.02875776,96.76777959],[4.53430854,0.02875952,96.76840818],[4.53430892,0.02876129,96.7690365],[4.5343093,0.02876305,96.76966453],[4.53430968,0.02876482,96.77029227],[4.53431006,0.02876658,96.77091972],[4.53431044,0.02876835,96.77154688],[4.53431082,0.02877011,96.77217374],[4.5343112,0.02877188,96.77280029],[4.53431158,0.02877364,96.77342653],[4.53431196,0.02877541,96.77405241],[4.53431234,0.02877718,96.77467796],[4.53431272,0.02877894,96.77530323],[4.5343131,0.02878071,96.77592828],[4.53431348,0.02878247,96.77655317],[4.53431386,0.02878424,96.77717795],[4.53431424,0.028786,96.77780268],[4.53431462,0.02878777,96.77842741],[4.53431501,0.02878953,96.77905221],[4.53431539,0.0287913,96.77967713],[4.53431577,0.02879306,96.78030223],[4.53431615,0.02879483,96.78092755],[4.53431654,0.02879659,96.78155317],[4.53431692,0.02879836,96.78217913],[4.5343173,0.02880012,96.78280549],[4.53431769,0.02880189,96.78343231],[4.53431807,0.02880366,96.78405965],[4.53431846,0.02880542,96.78468756],[4.53431885,0.02880719,96.7853161],[4.53431923,0.02880895,96.78594532],[4.53431962,0.02881072,96.78657528],[4.53432001,0.02881248,96.78720604],[4.53432039,0.02881424,96.78783766],[4.53432078,0.02881601,96.78847018],[4.53432117,0.02881777,96.78910368],[4.53432156,0.02881953,96.78973819],[4.53432195,0.02882129,96.79037379],[4.53432234,0.02882306,96.79101053],[4.53432274,0.02882482,96.79164846],[4.53432313,0.02882658,96.79228764],[4.53432352,0.02882835,96.79292813],[4.53432392,0.02883011,96.79356998],[4.53432431,0.02883188,96.79421326],[4.53432471,0.02883364,96.79485799],[4.53432511,0.0288354,96.79550413],[4.5343255,0.02883717,96.79615163],[4.5343259,0.02883893,96.79680042],[4.5343263,0.02884069,96.79745044],[4.5343267,0.02884245,96.79810162],[4.5343271,0.02884422,96.7987539],[4.5343275,0.02884598,96.79940722],[4.5343279,0.02884774,96.80006152],[4.53432831,0.0288495,96.80071674],[4.53432871,0.02885126,96.8013728],[4.53432911,0.02885303,96.80202966],[4.53432952,0.02885479,96.80268724],[4.53432992,0.02885655,96.8033455],[4.53433033,0.02885831,96.80400443],[4.53433073,0.02886007,96.80466401],[4.53433114,0.02886183,96.80532425],[4.53433154,0.02886359,96.80598514],[4.53433195,0.02886535,96.80664666],[4.53433236,0.02886711,96.80730881],[4.53433277,0.02886887,96.80797159],[4.53433317,0.02887063,96.80863498],[4.53433358,0.02887239,96.80929898],[4.53433399,0.02887415,96.80996359],[4.5343344,0.02887591,96.81062879],[4.53433481,0.02887767,96.81129458],[4.53433522,0.02887943,96.81196095],[4.53433563,0.02888119,96.81262789],[4.53433604,0.02888295,96.81329541],[4.53433645,0.02888471,96.8139635],[4.53433687,0.02888647,96.81463217],[4.53433728,0.02888823,96.81530142],[4.53433769,0.02888999,96.81597126],[4.5343381,0.02889175,96.81664169],[4.53433852,0.02889351,96.81731271],[4.53433893,0.02889527,96.81798433],[4.53433935,0.02889703,96.81865655],[4.53433976,0.02889879,96.81932938],[4.53434018,0.02890054,96.82000281],[4.53434059,0.0289023,96.82067685],[4.53434101,0.02890406,96.82135151],[4.53434142,0.02890582,96.82202678],[4.53434184,0.02890758,96.82270268],[4.53434226,0.02890934,96.8233792],[4.53434268,0.02891109,96.82405636],[4.53434309,0.02891285,96.82473414],[4.53434351,0.02891461,96.82541256],[4.53434393,0.02891637,96.82609162],[4.53434435,0.02891813,96.82677133],[4.53434477,0.02891988,96.82745168],[4.53434519,0.02892164,96.82813268],[4.53434561,0.0289234,96.82881434],[4.53434603,0.02892515,96.82949665],[4.53434645,0.02892691,96.83017963],[4.53434687,0.02892867,96.83086327],[4.53434729,0.02893043,96.83154758],[4.53434772,0.02893218,96.83223256],[4.53434814,0.02893394,96.83291822],[4.53434856,0.0289357,96.83360456],[4.53434899,0.02893745,96.83429158],[4.53434941,0.02893921,96.83497929],[4.53434983,0.02894096,96.83566769],[4.53435026,0.02894272,96.83635678],[4.53435068,0.02894448,96.83704658],[4.53435111,0.02894623,96.83773707],[4.53435154,0.02894799,96.83842827],[4.53435196,0.02894974,96.83912018],[4.53435239,0.0289515,96.8398128],[4.53435281,0.02895326,96.84050614],[4.53435324,0.02895501,96.8412002],[4.53435367,0.02895677,96.84189498],[4.5343541,0.02895852,96.84259049],[4.53435453,0.02896028,96.84328673],[4.53435495,0.02896203,96.8439837],[4.53435538,0.02896379,96.84468142],[4.53435581,0.02896554,96.84537987],[4.53435624,0.0289673,96.84607908],[4.53435667,0.02896905,96.84677905],[4.53435488,0.0289695,96.8417152]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004700","id":-2,"type":"shoulder","predecessorId":-2,"sOffset":166.1668423772}},{"geometry":{"coordinates":[[[4.53435667,0.02896905,96.84677905],[4.53435624,0.0289673,96.84607908],[4.53435581,0.02896554,96.84537987],[4.53435538,0.02896379,96.84468142],[4.53435495,0.02896203,96.8439837],[4.53435453,0.02896028,96.84328673],[4.5343541,0.02895852,96.84259049],[4.53435367,0.02895677,96.84189498],[4.53435324,0.02895501,96.8412002],[4.53435281,0.02895326,96.84050614],[4.53435239,0.0289515,96.8398128],[4.53435196,0.02894974,96.83912018],[4.53435154,0.02894799,96.83842827],[4.53435111,0.02894623,96.83773707],[4.53435068,0.02894448,96.83704658],[4.53435026,0.02894272,96.83635678],[4.53434983,0.02894096,96.83566769],[4.53434941,0.02893921,96.83497929],[4.53434899,0.02893745,96.83429158],[4.53434856,0.0289357,96.83360456],[4.53434814,0.02893394,96.83291822],[4.53434772,0.02893218,96.83223256],[4.53434729,0.02893043,96.83154758],[4.53434687,0.02892867,96.83086327],[4.53434645,0.02892691,96.83017963],[4.53434603,0.02892515,96.82949665],[4.53434561,0.0289234,96.82881434],[4.53434519,0.02892164,96.82813268],[4.53434477,0.02891988,96.82745168],[4.53434435,0.02891813,96.82677133],[4.53434393,0.02891637,96.82609162],[4.53434351,0.02891461,96.82541256],[4.53434309,0.02891285,96.82473414],[4.53434268,0.02891109,96.82405636],[4.53434226,0.02890934,96.8233792],[4.53434184,0.02890758,96.82270268],[4.53434142,0.02890582,96.82202678],[4.53434101,0.02890406,96.82135151],[4.53434059,0.0289023,96.82067685],[4.53434018,0.02890054,96.82000281],[4.53433976,0.02889879,96.81932938],[4.53433935,0.02889703,96.81865655],[4.53433893,0.02889527,96.81798433],[4.53433852,0.02889351,96.81731271],[4.5343381,0.02889175,96.81664169],[4.53433769,0.02888999,96.81597126],[4.53433728,0.02888823,96.81530142],[4.53433687,0.02888647,96.81463217],[4.53433645,0.02888471,96.8139635],[4.53433604,0.02888295,96.81329541],[4.53433563,0.02888119,96.81262789],[4.53433522,0.02887943,96.81196095],[4.53433481,0.02887767,96.81129458],[4.5343344,0.02887591,96.81062879],[4.53433399,0.02887415,96.80996359],[4.53433358,0.02887239,96.80929898],[4.53433317,0.02887063,96.80863498],[4.53433277,0.02886887,96.80797159],[4.53433236,0.02886711,96.80730881],[4.53433195,0.02886535,96.80664666],[4.53433154,0.02886359,96.80598514],[4.53433114,0.02886183,96.80532425],[4.53433073,0.02886007,96.80466401],[4.53433033,0.02885831,96.80400443],[4.53432992,0.02885655,96.8033455],[4.53432952,0.02885479,96.80268724],[4.53432911,0.02885303,96.80202966],[4.53432871,0.02885126,96.8013728],[4.53432831,0.0288495,96.80071674],[4.5343279,0.02884774,96.80006152],[4.5343275,0.02884598,96.79940722],[4.5343271,0.02884422,96.7987539],[4.5343267,0.02884245,96.79810162],[4.5343263,0.02884069,96.79745044],[4.5343259,0.02883893,96.79680042],[4.5343255,0.02883717,96.79615163],[4.53432511,0.0288354,96.79550413],[4.53432471,0.02883364,96.79485799],[4.53432431,0.02883188,96.79421326],[4.53432392,0.02883011,96.79356998],[4.53432352,0.02882835,96.79292813],[4.53432313,0.02882658,96.79228764],[4.53432274,0.02882482,96.79164846],[4.53432234,0.02882306,96.79101053],[4.53432195,0.02882129,96.79037379],[4.53432156,0.02881953,96.78973819],[4.53432117,0.02881777,96.78910368],[4.53432078,0.02881601,96.78847018],[4.53432039,0.02881424,96.78783766],[4.53432001,0.02881248,96.78720604],[4.53431962,0.02881072,96.78657528],[4.53431923,0.02880895,96.78594532],[4.53431885,0.02880719,96.7853161],[4.53431846,0.02880542,96.78468756],[4.53431807,0.02880366,96.78405965],[4.53431769,0.02880189,96.78343231],[4.5343173,0.02880012,96.78280549],[4.53431692,0.02879836,96.78217913],[4.53431654,0.02879659,96.78155317],[4.53431615,0.02879483,96.78092755],[4.53431577,0.02879306,96.78030223],[4.53431539,0.0287913,96.77967713],[4.53431501,0.02878953,96.77905221],[4.53431462,0.02878777,96.77842741],[4.53431424,0.028786,96.77780268],[4.53431386,0.02878424,96.77717795],[4.53431348,0.02878247,96.77655317],[4.5343131,0.02878071,96.77592828],[4.53431272,0.02877894,96.77530323],[4.53431234,0.02877718,96.77467796],[4.53431196,0.02877541,96.77405241],[4.53431158,0.02877364,96.77342653],[4.5343112,0.02877188,96.77280029],[4.53431082,0.02877011,96.77217374],[4.53431044,0.02876835,96.77154688],[4.53431006,0.02876658,96.77091972],[4.53430968,0.02876482,96.77029227],[4.5343093,0.02876305,96.76966453],[4.53430892,0.02876129,96.7690365],[4.53430854,0.02875952,96.76840818],[4.53430816,0.02875776,96.76777959],[4.53430778,0.02875599,96.76715073],[4.5343074,0.02875423,96.7665216],[4.53430702,0.02875246,96.7658922],[4.53430664,0.0287507,96.76526254],[4.53430626,0.02874893,96.76463262],[4.53430589,0.02874717,96.76400245],[4.53430551,0.0287454,96.76337203],[4.53430513,0.02874364,96.76274137],[4.53430475,0.02874187,96.76211047],[4.53430437,0.02874011,96.76147934],[4.534304,0.02873834,96.76084797],[4.53430362,0.02873658,96.76021638],[4.53430324,0.02873481,96.75958457],[4.53430286,0.02873305,96.75895253],[4.53430249,0.02873129,96.75832029],[4.53430211,0.02872952,96.75768784],[4.53430173,0.02872776,96.75705518],[4.53430135,0.02872599,96.75642232],[4.53430098,0.02872423,96.75578927],[4.5343006,0.02872246,96.75515602],[4.53430022,0.0287207,96.75452259],[4.53429985,0.02871893,96.75388898],[4.53429947,0.02871717,96.75325518],[4.53429909,0.02871541,96.75262122],[4.53429872,0.02871364,96.75198709],[4.53429834,0.02871188,96.75135279],[4.53429796,0.02871011,96.75071833],[4.53429759,0.02870835,96.75008371],[4.53429721,0.02870658,96.74944887],[4.53429684,0.02870482,96.74881365],[4.53429646,0.02870306,96.74817793],[4.53429608,0.02870129,96.74754155],[4.53429571,0.02869953,96.74690438],[4.53429533,0.02869776,96.74626627],[4.53429495,0.028696,96.7456271],[4.53429458,0.02869424,96.74498682],[4.5342942,0.02869247,96.74434543],[4.53429382,0.02869071,96.74370291],[4.53429344,0.02868895,96.74305926],[4.53429307,0.02868718,96.74241448],[4.53429269,0.02868542,96.74176854],[4.53429231,0.02868366,96.74112145],[4.53429193,0.02868189,96.7404732],[4.53429155,0.02868013,96.73982378],[4.53429117,0.02867837,96.73917317],[4.53429079,0.02867661,96.73852138],[4.53429041,0.02867484,96.7378684],[4.53429003,0.02867308,96.73721421],[4.53428965,0.02867132,96.73655881],[4.53428927,0.02866956,96.73590219],[4.53428889,0.0286678,96.73524434],[4.5342885,0.02866603,96.73458526],[4.53428812,0.02866427,96.73392493],[4.53428774,0.02866251,96.73326335],[4.53428736,0.02866075,96.73260051],[4.53428697,0.02865899,96.7319364],[4.53428659,0.02865723,96.73127104],[4.5342862,0.02865547,96.73060448],[4.53428582,0.02865371,96.72993677],[4.53428544,0.02865195,96.72926793],[4.53428505,0.02865019,96.72859803],[4.53428467,0.02864842,96.72792711],[4.53428428,0.02864666,96.72725522],[4.53428389,0.0286449,96.72658239],[4.53428351,0.02864314,96.72590867],[4.53428312,0.02864138,96.72523411],[4.53428273,0.02863962,96.72455876],[4.53428235,0.02863786,96.72388266],[4.53428196,0.0286361,96.72320586],[4.53428157,0.02863434,96.7225284],[4.53428119,0.02863258,96.72185033],[4.5342808,0.02863082,96.7211717],[4.53428041,0.02862906,96.72049254],[4.53428002,0.0286273,96.71981291],[4.53427963,0.02862554,96.71913286],[4.53427925,0.02862378,96.71845239],[4.53427886,0.02862203,96.71777148],[4.53427847,0.02862027,96.7170901],[4.53427808,0.02861851,96.71640822],[4.53427769,0.02861675,96.7157258],[4.5342773,0.02861499,96.71504281],[4.53427691,0.02861324,96.71435922],[4.53427652,0.02861148,96.71367499],[4.53427613,0.02860972,96.7129901],[4.53427574,0.02860796,96.71230452],[4.53427535,0.02860621,96.7116182],[4.53427496,0.02860445,96.71093112],[4.53427457,0.02860269,96.71024329],[4.53427418,0.02860094,96.70955471],[4.53427379,0.02859918,96.70886539],[4.53427339,0.02859742,96.70817533],[4.534273,0.02859567,96.70748455],[4.53427261,0.02859391,96.70679304],[4.53427222,0.02859216,96.70610082],[4.53427182,0.0285904,96.70540789],[4.53427143,0.02858865,96.70471426],[4.53427103,0.02858689,96.70401994],[4.53427064,0.02858514,96.70332493],[4.53427024,0.02858338,96.70262924],[4.53426984,0.02858163,96.70193287],[4.53426945,0.02857988,96.70123584],[4.53426905,0.02857812,96.70053815],[4.53426865,0.02857637,96.69983981],[4.53426826,0.02857461,96.69914083],[4.53426786,0.02857286,96.6984412],[4.53426746,0.02857111,96.69774095],[4.53426706,0.02856936,96.69704007],[4.53426666,0.0285676,96.69633857],[4.53426626,0.02856585,96.69563647],[4.53426586,0.0285641,96.69493376],[4.53426546,0.02856235,96.69423046],[4.53426506,0.0285606,96.69352657],[4.53426465,0.02855884,96.6928221],[4.53426425,0.02855709,96.69211706],[4.53426385,0.02855534,96.69141145],[4.53426344,0.02855359,96.69070529],[4.53426304,0.02855184,96.68999857],[4.53426263,0.02855009,96.68929131],[4.53426223,0.02854834,96.68858351],[4.53426182,0.02854659,96.68787519],[4.53426142,0.02854484,96.68716634],[4.53426101,0.02854309,96.686457],[4.5342606,0.02854134,96.68574721],[4.53426019,0.02853959,96.68503703],[4.53425978,0.02853785,96.6843265],[4.53425937,0.0285361,96.68361567],[4.53425896,0.02853435,96.6829046],[4.53425855,0.0285326,96.68219333],[4.53425814,0.02853085,96.68148193],[4.53425773,0.02852911,96.68077043],[4.53425732,0.02852736,96.68005889],[4.53425691,0.02852561,96.67934737],[4.5342565,0.02852386,96.67863591],[4.53425608,0.02852212,96.67792457],[4.53425567,0.02852037,96.6772134],[4.53425525,0.02851862,96.67650245],[4.53425484,0.02851688,96.67579177],[4.53425443,0.02851513,96.67508142],[4.53425401,0.02851339,96.67437145],[4.53425359,0.02851164,96.67366191],[4.53425318,0.0285099,96.67295286],[4.53425276,0.02850815,96.67224435],[4.53425234,0.02850641,96.67153643],[4.53425193,0.02850466,96.67082916],[4.53425151,0.02850292,96.67012259],[4.53425109,0.02850117,96.66941677],[4.53425067,0.02849943,96.66871176],[4.53425026,0.02849768,96.66800762],[4.53424984,0.02849594,96.6673044],[4.53424942,0.02849422,96.66660214],[4.534249,0.02849248,96.6659009],[4.53424858,0.02849073,96.66520068],[4.53424816,0.02848899,96.66450149],[4.53424774,0.02848725,96.66380326],[4.53424732,0.0284855,96.66310587],[4.5342469,0.02848376,96.66240923],[4.53424648,0.02848201,96.66171323],[4.53424606,0.02848026,96.66101776],[4.53424564,0.02847852,96.66032271],[4.53424521,0.02847677,96.65962798],[4.53424479,0.02847502,96.65893346],[4.53424437,0.02847328,96.65823905],[4.53424394,0.02847153,96.65754462],[4.53424352,0.02846978,96.65685008],[4.5342431,0.02846803,96.65615532],[4.53424267,0.02846628,96.65546023],[4.53424225,0.02846454,96.6547647],[4.53424182,0.02846279,96.65406861],[4.5342414,0.02846104,96.65337187],[4.53424097,0.02845929,96.65267436],[4.53424055,0.02845754,96.65197597],[4.53424012,0.02845579,96.65127659],[4.53423969,0.02845403,96.65057611],[4.53423927,0.02845228,96.64987441],[4.53423884,0.02845053,96.6491714],[4.53423841,0.02844878,96.64846698],[4.53423798,0.02844703,96.64776111],[4.53423756,0.02844527,96.64705373],[4.53423713,0.02844352,96.64634479],[4.5342367,0.02844177,96.64563421],[4.53423627,0.02844001,96.64492179],[4.53423584,0.02843826,96.64420723],[4.53423541,0.02843651,96.64349027],[4.53423498,0.02843475,96.64277061],[4.53423455,0.028433,96.642048],[4.53423412,0.02843124,96.64132214],[4.53423369,0.02842949,96.64059276],[4.53423326,0.02842773,96.63985956],[4.53423283,0.02842598,96.63912228],[4.53423239,0.02842422,96.63838063],[4.53423196,0.02842246,96.63763431],[4.53423152,0.02842071,96.63688305],[4.53423109,0.02841895,96.63612656],[4.53423065,0.02841719,96.63536457],[4.53423021,0.02841544,96.63459687],[4.53422977,0.02841368,96.63382329],[4.53422933,0.02841192,96.63304363],[4.53422889,0.02841017,96.6322577],[4.53422845,0.02840841,96.63146531],[4.53422801,0.02840665,96.63066627],[4.53422757,0.0284049,96.6298604],[4.53422712,0.02840314,96.62904749],[4.53422668,0.02840138,96.62822736],[4.53422623,0.02839962,96.6273998],[4.53422578,0.02839786,96.62656465],[4.53422533,0.02839611,96.62572212],[4.53422488,0.02839435,96.62487309],[4.53422443,0.02839259,96.62401847],[4.53422398,0.02839083,96.62315919],[4.53422353,0.02838907,96.62229617],[4.53422308,0.02838731,96.62143035],[4.53422263,0.02838555,96.62056242],[4.53422219,0.02838379,96.61969231],[4.53422174,0.02838203,96.61881977],[4.5342213,0.02838027,96.61794452],[4.53422085,0.02837852,96.61706633],[4.53422041,0.02837676,96.61618493],[4.53421997,0.028375,96.61530006],[4.53421952,0.02837325,96.61441147],[4.53421908,0.0283715,96.61351888],[4.53421864,0.02836975,96.61262205],[4.53421819,0.028368,96.6117207],[4.53421775,0.02836625,96.61081458],[4.5342173,0.02836451,96.60990341],[4.53421686,0.02836277,96.60898694],[4.53421641,0.02836103,96.60806489],[4.53421596,0.02835929,96.607137],[4.53421551,0.02835755,96.60620341],[4.53421505,0.02835581,96.60526569],[4.5342146,0.02835408,96.60432574],[4.53421415,0.02835235,96.60338544],[4.53421369,0.02835062,96.60244671],[4.53421324,0.02834889,96.60151147],[4.53421278,0.02834717,96.60058162],[4.53421233,0.02834544,96.59965911],[4.53421188,0.02834372,96.59874586],[4.53421144,0.02834199,96.59784381],[4.53421099,0.02834027,96.59695374],[4.53421055,0.02833855,96.59607469],[4.53421011,0.02833683,96.59520554],[4.53420966,0.02833511,96.59434515],[4.53420922,0.02833339,96.59349239],[4.53420878,0.02833168,96.59264567],[4.53420834,0.02832997,96.59180178],[4.5342079,0.02832826,96.5909578],[4.53420745,0.02832656,96.5901145],[4.534207,0.02832485,96.58927408],[4.53420656,0.02832315,96.58843875],[4.53420611,0.02832146,96.58761072],[4.53420566,0.02831977,96.58679222],[4.53420521,0.02831808,96.5859855],[4.53420476,0.0283164,96.58519278],[4.53420431,0.02831472,96.58441634],[4.53420386,0.02831305,96.58365844],[4.53420341,0.02831137,96.58292136],[4.53420297,0.02830973,96.58221732],[4.53423771,0.02829901,96.69770012],[4.53423816,0.02830081,96.69816709],[4.53423862,0.02830264,96.69867817],[4.53423908,0.02830445,96.6992233],[4.53423954,0.02830626,96.69979888],[4.53424001,0.02830807,96.70040131],[4.53424047,0.02830987,96.70102701],[4.53424094,0.02831167,96.70167242],[4.5342414,0.02831346,96.702334],[4.53424186,0.02831525,96.70300822],[4.53424232,0.02831704,96.70369155],[4.53424278,0.02831882,96.70438051],[4.53424323,0.02832059,96.70507162],[4.53424368,0.02832238,96.7057628],[4.53424413,0.02832415,96.70645573],[4.53424457,0.02832593,96.70715266],[4.53424502,0.02832771,96.70785586],[4.53424546,0.02832949,96.70856756],[4.5342459,0.02833126,96.70929],[4.53424635,0.02833303,96.71002541],[4.5342468,0.0283348,96.71077585],[4.53424725,0.02833657,96.71154164],[4.5342477,0.02833833,96.71232192],[4.53424816,0.0283401,96.71311585],[4.53424861,0.02834186,96.71392258],[4.53424907,0.02834362,96.71474127],[4.53424953,0.02834537,96.71557106],[4.53425,0.02834713,96.71641114],[4.53425046,0.02834888,96.71726065],[4.53425093,0.02835063,96.71811878],[4.5342514,0.02835238,96.71898469],[4.53425187,0.02835413,96.71985756],[4.53425234,0.02835588,96.72073657],[4.53425281,0.02835762,96.72162091],[4.53425329,0.02835936,96.72250976],[4.53425376,0.0283611,96.7234023],[4.53425424,0.02836284,96.72429775],[4.53425472,0.02836457,96.72519528],[4.5342552,0.02836631,96.72609411],[4.53425567,0.02836804,96.72699343],[4.53425615,0.02836977,96.72789245],[4.53425663,0.0283715,96.72879039],[4.53425711,0.02837323,96.72968644],[4.53425759,0.02837495,96.73057984],[4.53425807,0.02837667,96.73146979],[4.53425855,0.0283784,96.73235552],[4.53425903,0.02838012,96.73323625],[4.53425951,0.02838185,96.73411121],[4.53425999,0.02838357,96.73497963],[4.53426047,0.0283853,96.73584074],[4.53426095,0.02838703,96.73669377],[4.53426143,0.02838875,96.73753797],[4.5342619,0.02839048,96.73837263],[4.53426238,0.02839221,96.73919766],[4.53426285,0.02839394,96.74001341],[4.53426332,0.02839567,96.74082022],[4.53426379,0.0283974,96.74161845],[4.53426425,0.02839914,96.74240843],[4.53426472,0.02840087,96.74319052],[4.53426518,0.0284026,96.74396506],[4.53426565,0.02840434,96.74473238],[4.53426611,0.02840607,96.74549283],[4.53426657,0.02840781,96.74624674],[4.53426703,0.02840954,96.74699446],[4.53426749,0.02841128,96.74773633],[4.53426794,0.02841302,96.74847267],[4.5342684,0.02841476,96.74920382],[4.53426886,0.0284165,96.74993011],[4.53426931,0.02841824,96.75065188],[4.53426977,0.02841998,96.75136945],[4.53427022,0.02842172,96.75208316],[4.53427067,0.02842346,96.75279333],[4.53427113,0.0284252,96.75350029],[4.53427158,0.02842694,96.75420437],[4.53427203,0.02842868,96.75490588],[4.53427248,0.02843043,96.75560516],[4.53427294,0.02843217,96.75630253],[4.53427339,0.02843392,96.7569983],[4.53427384,0.02843566,96.75769275],[4.53427429,0.02843741,96.75838599],[4.53427474,0.02843915,96.75907812],[4.5342752,0.0284409,96.75976924],[4.53427565,0.02844264,96.76045944],[4.5342761,0.02844439,96.76114881],[4.53427655,0.02844614,96.76183746],[4.534277,0.02844789,96.76252549],[4.53427745,0.02844963,96.76321297],[4.5342779,0.02845138,96.76390002],[4.53427835,0.02845313,96.76458672],[4.5342788,0.02845488,96.76527317],[4.53427926,0.02845663,96.76595946],[4.53427971,0.02845838,96.76664569],[4.53428016,0.02846013,96.76733194],[4.53428061,0.02846188,96.76801832],[4.53428106,0.02846363,96.76870492],[4.53428151,0.02846539,96.76939182],[4.53428196,0.02846714,96.77007913],[4.53428241,0.02846889,96.77076693],[4.53428285,0.02847065,96.77145531],[4.5342833,0.0284724,96.77214438],[4.53428375,0.02847415,96.77283421],[4.5342842,0.02847591,96.7735249],[4.53428465,0.02847766,96.77421654],[4.5342851,0.02847942,96.77490922],[4.53428555,0.02848118,96.77560304],[4.534286,0.02848293,96.77629805],[4.53428644,0.02848469,96.77699423],[4.53428688,0.02848642,96.77769155],[4.53428733,0.02848818,96.77838999],[4.53428778,0.02848994,96.77908949],[4.53428822,0.0284917,96.77979004],[4.53428867,0.02849346,96.78049161],[4.53428911,0.02849521,96.78119415],[4.53428956,0.02849697,96.78189764],[4.53429,0.02849873,96.78260205],[4.53429045,0.02850049,96.78330735],[4.53429089,0.02850225,96.7840135],[4.53429133,0.02850401,96.78472047],[4.53429178,0.02850576,96.78542824],[4.53429222,0.02850752,96.78613677],[4.53429266,0.02850928,96.78684603],[4.5342931,0.02851104,96.78755599],[4.53429354,0.0285128,96.78826662],[4.53429398,0.02851456,96.78897789],[4.53429442,0.02851631,96.78968977],[4.53429486,0.02851807,96.79040223],[4.5342953,0.02851983,96.79111524],[4.53429573,0.02852159,96.79182876],[4.53429617,0.02852335,96.79254278],[4.53429661,0.02852511,96.79325725],[4.53429705,0.02852686,96.79397216],[4.53429748,0.02852862,96.79468746],[4.53429792,0.02853038,96.79540313],[4.53429835,0.02853214,96.79611914],[4.53429879,0.0285339,96.79683547],[4.53429922,0.02853566,96.79755207],[4.53429965,0.02853741,96.79826893],[4.53430009,0.02853917,96.79898605],[4.53430052,0.02854093,96.79970342],[4.53430095,0.02854269,96.80042108],[4.53430138,0.02854445,96.80113903],[4.53430181,0.02854621,96.80185728],[4.53430224,0.02854796,96.80257585],[4.53430268,0.02854972,96.80329476],[4.53430311,0.02855148,96.80401401],[4.53430353,0.02855324,96.80473363],[4.53430396,0.028555,96.80545361],[4.53430439,0.02855676,96.80617399],[4.53430482,0.02855851,96.80689476],[4.53430525,0.02856027,96.80761595],[4.53430568,0.02856203,96.80833757],[4.5343061,0.02856379,96.80905963],[4.53430653,0.02856555,96.80978215],[4.53430696,0.0285673,96.81050513],[4.53430739,0.02856906,96.8112286],[4.53430781,0.02857082,96.81195256],[4.53430824,0.02857258,96.81267703],[4.53430866,0.02857434,96.81340203],[4.53430909,0.02857609,96.81412756],[4.53430952,0.02857785,96.81485364],[4.53430994,0.02857961,96.81558029],[4.53431037,0.02858137,96.81630751],[4.53431079,0.02858312,96.81703533],[4.53431122,0.02858488,96.81776374],[4.53431164,0.02858664,96.81849278],[4.53431207,0.0285884,96.81922245],[4.53431249,0.02859015,96.81995276],[4.53431292,0.02859191,96.82068373],[4.53431334,0.02859367,96.82141537],[4.53431377,0.02859542,96.8221477],[4.53431419,0.02859718,96.82288073],[4.53431462,0.02859894,96.82361447],[4.53431504,0.02860069,96.82434894],[4.53431546,0.02860245,96.82508415],[4.53431589,0.02860421,96.82582011],[4.53431631,0.02860596,96.82655683],[4.53431674,0.02860772,96.82729434],[4.53431716,0.02860947,96.82803264],[4.53431759,0.02861123,96.82877175],[4.53431801,0.02861298,96.82951168],[4.53431844,0.02861474,96.83025245],[4.53431886,0.0286165,96.83099406],[4.53431929,0.02861825,96.83173654],[4.53431971,0.02862001,96.83247983],[4.53432014,0.02862176,96.83322389],[4.53432056,0.02862351,96.83396864],[4.53432099,0.02862527,96.83471403],[4.53432141,0.02862702,96.83545998],[4.53432184,0.02862878,96.83620643],[4.53432227,0.02863053,96.83695332],[4.53432269,0.02863229,96.83770059],[4.53432312,0.02863405,96.83844816],[4.53432354,0.0286358,96.83919598],[4.53432397,0.02863755,96.83994399],[4.5343244,0.02863931,96.84069211],[4.53432482,0.02864106,96.84144029],[4.53432525,0.02864281,96.84218846],[4.53432567,0.02864457,96.84293656],[4.5343261,0.02864632,96.84368453],[4.53432652,0.02864808,96.8444323],[4.53432695,0.02864983,96.84517981],[4.53432737,0.02865158,96.84592699],[4.5343278,0.02865334,96.84667379],[4.53432822,0.02865509,96.84742013],[4.53432864,0.02865684,96.84816597],[4.53432907,0.0286586,96.84891122],[4.53432949,0.02866035,96.84965584],[4.53432992,0.02866211,96.85039976],[4.53433034,0.02866386,96.85114292],[4.53433076,0.02866561,96.85188525],[4.53433118,0.02866737,96.85262669],[4.53433161,0.02866912,96.85336718],[4.53433203,0.02867087,96.85410665],[4.53433245,0.02867263,96.85484505],[4.53433287,0.02867438,96.85558231],[4.53433329,0.02867614,96.85631837],[4.53433371,0.02867789,96.85705317],[4.53433413,0.02867964,96.85778664],[4.53433455,0.0286814,96.85851873],[4.53433496,0.02868315,96.85924936],[4.53433538,0.02868491,96.85997848],[4.5343358,0.02868666,96.86070603],[4.53433622,0.02868842,96.86143195],[4.53433663,0.02869017,96.8621562],[4.53433705,0.02869193,96.86287884],[4.53433746,0.02869368,96.86359995],[4.53433788,0.02869544,96.86431961],[4.53433829,0.02869719,96.86503787],[4.5343387,0.02869895,96.86575482],[4.53433912,0.0287007,96.86647052],[4.53433953,0.02870246,96.86718506],[4.53433994,0.02870421,96.86789849],[4.53434035,0.02870597,96.86861089],[4.53434076,0.02870772,96.86932233],[4.53434117,0.02870948,96.87003289],[4.53434158,0.02871123,96.87074264],[4.534342,0.02871299,96.87145164],[4.53434241,0.02871474,96.87215997],[4.53434282,0.0287165,96.8728677],[4.53434323,0.02871825,96.8735749],[4.53434364,0.02872001,96.87428164],[4.53434405,0.02872176,96.87498799],[4.53434445,0.02872352,96.87569403],[4.53434486,0.02872527,96.87639982],[4.53434527,0.02872703,96.87710544],[4.53434568,0.02872878,96.87781096],[4.53434609,0.02873054,96.87851644],[4.5343465,0.02873229,96.87922196],[4.53434691,0.02873405,96.87992759],[4.53434732,0.0287358,96.8806334],[4.53434773,0.02873756,96.88133946],[4.53434814,0.02873931,96.88204584],[4.53434855,0.02874106,96.88275261],[4.53434896,0.02874282,96.88345985],[4.53434937,0.02874457,96.88416762],[4.53434979,0.02874633,96.88487599],[4.5343502,0.02874808,96.88558503],[4.53435061,0.02874983,96.88629482],[4.53435102,0.02875159,96.88700542],[4.53435143,0.02875334,96.88771691],[4.53435185,0.02875509,96.88842936],[4.53435226,0.02875685,96.88914283],[4.53435267,0.0287586,96.8898574],[4.53435309,0.02876035,96.89057313],[4.5343535,0.02876211,96.8912901],[4.53435392,0.02876386,96.89200837],[4.53435433,0.02876561,96.89272795],[4.53435475,0.02876736,96.89344878],[4.53435517,0.02876911,96.89417082],[4.53435559,0.02877087,96.89489404],[4.534356,0.02877262,96.89561838],[4.53435642,0.02877437,96.8963438],[4.53435684,0.02877612,96.89707025],[4.53435726,0.02877787,96.89779769],[4.53435768,0.02877962,96.89852608],[4.5343581,0.02878137,96.89925538],[4.53435852,0.02878312,96.89998553],[4.53435894,0.02878487,96.90071649],[4.53435937,0.02878662,96.90144822],[4.53435979,0.02878837,96.90218068],[4.53436021,0.02879012,96.90291382],[4.53436063,0.02879187,96.90364759],[4.53436106,0.02879362,96.90438196],[4.53436148,0.02879537,96.90511687],[4.5343619,0.02879712,96.90585229],[4.53436233,0.02879887,96.90658817],[4.53436275,0.02880062,96.90732446],[4.53436318,0.02880237,96.90806112],[4.5343636,0.02880412,96.90879811],[4.53436403,0.02880587,96.90953538],[4.53436445,0.02880762,96.91027289],[4.53436488,0.02880935,96.9110106],[4.5343653,0.0288111,96.91174845],[4.53436573,0.02881285,96.91248641],[4.53436616,0.0288146,96.91322443],[4.53436658,0.02881635,96.91396246],[4.53436701,0.0288181,96.91470047],[4.53436744,0.02881984,96.91543841],[4.53436786,0.02882159,96.91617623],[4.53436829,0.02882334,96.91691389],[4.53436872,0.02882509,96.91765135],[4.53436915,0.02882684,96.91838855],[4.53436957,0.02882859,96.91912547],[4.53437,0.02883033,96.91986205],[4.53437043,0.02883208,96.92059824],[4.53437086,0.02883383,96.92133401],[4.53437128,0.02883558,96.92206931],[4.53437171,0.02883733,96.92280409],[4.53437214,0.02883908,96.92353832],[4.53437257,0.02884082,96.92427194],[4.53437299,0.02884257,96.92500491],[4.53437342,0.02884432,96.92573719],[4.53437385,0.02884607,96.92646874],[4.53437428,0.02884782,96.92719958],[4.5343747,0.02884957,96.92792971],[4.53437513,0.02885131,96.92865915],[4.53437556,0.02885306,96.9293879],[4.53437598,0.02885481,96.93011598],[4.53437641,0.02885656,96.9308434],[4.53437684,0.02885831,96.93157016],[4.53437726,0.02886006,96.93229628],[4.53437769,0.02886181,96.93302177],[4.53437811,0.02886355,96.93374664],[4.53437854,0.0288653,96.9344709],[4.53437897,0.02886705,96.93519456],[4.53437939,0.0288688,96.93591764],[4.53437982,0.02887055,96.93664013],[4.53438024,0.0288723,96.93736206],[4.53438067,0.02887405,96.93808343],[4.53438109,0.02887579,96.93880425],[4.53438152,0.02887754,96.93952454],[4.53438194,0.02887929,96.9402443],[4.53438237,0.02888104,96.94096355],[4.53438279,0.02888279,96.94168229],[4.53438322,0.02888454,96.94240055],[4.53438364,0.02888629,96.94311831],[4.53438407,0.02888804,96.94383561],[4.53438449,0.02888979,96.94455244],[4.53438492,0.02889153,96.94526883],[4.53438534,0.02889328,96.94598477],[4.53438577,0.02889503,96.94670028],[4.53438619,0.02889678,96.94741537],[4.53438662,0.02889853,96.94813005],[4.53438704,0.02890028,96.94884433],[4.53438747,0.02890203,96.94955823],[4.53438789,0.02890378,96.95027174],[4.53438832,0.02890553,96.95098489],[4.53438874,0.02890728,96.95169768],[4.53438916,0.02890902,96.95241012],[4.53438959,0.02891077,96.95312222],[4.53439001,0.02891252,96.953834],[4.53439044,0.02891427,96.95454547],[4.53439086,0.02891602,96.95525663],[4.53439128,0.02891777,96.95596749],[4.53439171,0.02891952,96.95667807],[4.53439213,0.02892127,96.95738837],[4.53439256,0.02892302,96.95809841],[4.53439298,0.02892477,96.9588082],[4.53439341,0.02892652,96.95951774],[4.53439383,0.02892826,96.96022705],[4.53439425,0.02893001,96.96093613],[4.53439468,0.02893176,96.96164501],[4.5343951,0.02893351,96.96235368],[4.53439552,0.02893526,96.96306216],[4.53439595,0.02893701,96.96377046],[4.53439637,0.02893876,96.96447859],[4.5343968,0.02894051,96.96518656],[4.53439722,0.02894226,96.96589437],[4.53439764,0.02894401,96.96660205],[4.53439807,0.02894576,96.9673096],[4.53439849,0.02894751,96.96801702],[4.53439892,0.02894926,96.96872434],[4.53439934,0.028951,96.96943156],[4.53439976,0.02895275,96.97013869],[4.53440019,0.0289545,96.97084575],[4.53440061,0.02895625,96.97155273],[4.53440104,0.028958,96.97225968],[4.53435667,0.02896905,96.84677905]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004700","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"entry","predecessorId":-1,"sOffset":166.1668423772}},{"geometry":{"coordinates":[[[4.53440104,0.028958,96.97225968],[4.53440061,0.02895625,96.97155273],[4.53440019,0.0289545,96.97084575],[4.53439976,0.02895275,96.97013869],[4.53439934,0.028951,96.96943156],[4.53439892,0.02894926,96.96872434],[4.53439849,0.02894751,96.96801702],[4.53439807,0.02894576,96.9673096],[4.53439764,0.02894401,96.96660205],[4.53439722,0.02894226,96.96589437],[4.5343968,0.02894051,96.96518656],[4.53439637,0.02893876,96.96447859],[4.53439595,0.02893701,96.96377046],[4.53439552,0.02893526,96.96306216],[4.5343951,0.02893351,96.96235368],[4.53439468,0.02893176,96.96164501],[4.53439425,0.02893001,96.96093613],[4.53439383,0.02892826,96.96022705],[4.53439341,0.02892652,96.95951774],[4.53439298,0.02892477,96.9588082],[4.53439256,0.02892302,96.95809841],[4.53439213,0.02892127,96.95738837],[4.53439171,0.02891952,96.95667807],[4.53439128,0.02891777,96.95596749],[4.53439086,0.02891602,96.95525663],[4.53439044,0.02891427,96.95454547],[4.53439001,0.02891252,96.953834],[4.53438959,0.02891077,96.95312222],[4.53438916,0.02890902,96.95241012],[4.53438874,0.02890728,96.95169768],[4.53438832,0.02890553,96.95098489],[4.53438789,0.02890378,96.95027174],[4.53438747,0.02890203,96.94955823],[4.53438704,0.02890028,96.94884433],[4.53438662,0.02889853,96.94813005],[4.53438619,0.02889678,96.94741537],[4.53438577,0.02889503,96.94670028],[4.53438534,0.02889328,96.94598477],[4.53438492,0.02889153,96.94526883],[4.53438449,0.02888979,96.94455244],[4.53438407,0.02888804,96.94383561],[4.53438364,0.02888629,96.94311831],[4.53438322,0.02888454,96.94240055],[4.53438279,0.02888279,96.94168229],[4.53438237,0.02888104,96.94096355],[4.53438194,0.02887929,96.9402443],[4.53438152,0.02887754,96.93952454],[4.53438109,0.02887579,96.93880425],[4.53438067,0.02887405,96.93808343],[4.53438024,0.0288723,96.93736206],[4.53437982,0.02887055,96.93664013],[4.53437939,0.0288688,96.93591764],[4.53437897,0.02886705,96.93519456],[4.53437854,0.0288653,96.9344709],[4.53437811,0.02886355,96.93374664],[4.53437769,0.02886181,96.93302177],[4.53437726,0.02886006,96.93229628],[4.53437684,0.02885831,96.93157016],[4.53437641,0.02885656,96.9308434],[4.53437598,0.02885481,96.93011598],[4.53437556,0.02885306,96.9293879],[4.53437513,0.02885131,96.92865915],[4.5343747,0.02884957,96.92792971],[4.53437428,0.02884782,96.92719958],[4.53437385,0.02884607,96.92646874],[4.53437342,0.02884432,96.92573719],[4.53437299,0.02884257,96.92500491],[4.53437257,0.02884082,96.92427194],[4.53437214,0.02883908,96.92353832],[4.53437171,0.02883733,96.92280409],[4.53437128,0.02883558,96.92206931],[4.53437086,0.02883383,96.92133401],[4.53437043,0.02883208,96.92059824],[4.53437,0.02883033,96.91986205],[4.53436957,0.02882859,96.91912547],[4.53436915,0.02882684,96.91838855],[4.53436872,0.02882509,96.91765135],[4.53436829,0.02882334,96.91691389],[4.53436786,0.02882159,96.91617623],[4.53436744,0.02881984,96.91543841],[4.53436701,0.0288181,96.91470047],[4.53436658,0.02881635,96.91396246],[4.53436616,0.0288146,96.91322443],[4.53436573,0.02881285,96.91248641],[4.5343653,0.0288111,96.91174845],[4.53436488,0.02880935,96.9110106],[4.53436445,0.02880762,96.91027289],[4.53436403,0.02880587,96.90953538],[4.5343636,0.02880412,96.90879811],[4.53436318,0.02880237,96.90806112],[4.53436275,0.02880062,96.90732446],[4.53436233,0.02879887,96.90658817],[4.5343619,0.02879712,96.90585229],[4.53436148,0.02879537,96.90511687],[4.53436106,0.02879362,96.90438196],[4.53436063,0.02879187,96.90364759],[4.53436021,0.02879012,96.90291382],[4.53435979,0.02878837,96.90218068],[4.53435937,0.02878662,96.90144822],[4.53435894,0.02878487,96.90071649],[4.53435852,0.02878312,96.89998553],[4.5343581,0.02878137,96.89925538],[4.53435768,0.02877962,96.89852608],[4.53435726,0.02877787,96.89779769],[4.53435684,0.02877612,96.89707025],[4.53435642,0.02877437,96.8963438],[4.534356,0.02877262,96.89561838],[4.53435559,0.02877087,96.89489404],[4.53435517,0.02876911,96.89417082],[4.53435475,0.02876736,96.89344878],[4.53435433,0.02876561,96.89272795],[4.53435392,0.02876386,96.89200837],[4.5343535,0.02876211,96.8912901],[4.53435309,0.02876035,96.89057313],[4.53435267,0.0287586,96.8898574],[4.53435226,0.02875685,96.88914283],[4.53435185,0.02875509,96.88842936],[4.53435143,0.02875334,96.88771691],[4.53435102,0.02875159,96.88700542],[4.53435061,0.02874983,96.88629482],[4.5343502,0.02874808,96.88558503],[4.53434979,0.02874633,96.88487599],[4.53434937,0.02874457,96.88416762],[4.53434896,0.02874282,96.88345985],[4.53434855,0.02874106,96.88275261],[4.53434814,0.02873931,96.88204584],[4.53434773,0.02873756,96.88133946],[4.53434732,0.0287358,96.8806334],[4.53434691,0.02873405,96.87992759],[4.5343465,0.02873229,96.87922196],[4.53434609,0.02873054,96.87851644],[4.53434568,0.02872878,96.87781096],[4.53434527,0.02872703,96.87710544],[4.53434486,0.02872527,96.87639982],[4.53434445,0.02872352,96.87569403],[4.53434405,0.02872176,96.87498799],[4.53434364,0.02872001,96.87428164],[4.53434323,0.02871825,96.8735749],[4.53434282,0.0287165,96.8728677],[4.53434241,0.02871474,96.87215997],[4.534342,0.02871299,96.87145164],[4.53434158,0.02871123,96.87074264],[4.53434117,0.02870948,96.87003289],[4.53434076,0.02870772,96.86932233],[4.53434035,0.02870597,96.86861089],[4.53433994,0.02870421,96.86789849],[4.53433953,0.02870246,96.86718506],[4.53433912,0.0287007,96.86647052],[4.5343387,0.02869895,96.86575482],[4.53433829,0.02869719,96.86503787],[4.53433788,0.02869544,96.86431961],[4.53433746,0.02869368,96.86359995],[4.53433705,0.02869193,96.86287884],[4.53433663,0.02869017,96.8621562],[4.53433622,0.02868842,96.86143195],[4.5343358,0.02868666,96.86070603],[4.53433538,0.02868491,96.85997848],[4.53433496,0.02868315,96.85924936],[4.53433455,0.0286814,96.85851873],[4.53433413,0.02867964,96.85778664],[4.53433371,0.02867789,96.85705317],[4.53433329,0.02867614,96.85631837],[4.53433287,0.02867438,96.85558231],[4.53433245,0.02867263,96.85484505],[4.53433203,0.02867087,96.85410665],[4.53433161,0.02866912,96.85336718],[4.53433118,0.02866737,96.85262669],[4.53433076,0.02866561,96.85188525],[4.53433034,0.02866386,96.85114292],[4.53432992,0.02866211,96.85039976],[4.53432949,0.02866035,96.84965584],[4.53432907,0.0286586,96.84891122],[4.53432864,0.02865684,96.84816597],[4.53432822,0.02865509,96.84742013],[4.5343278,0.02865334,96.84667379],[4.53432737,0.02865158,96.84592699],[4.53432695,0.02864983,96.84517981],[4.53432652,0.02864808,96.8444323],[4.5343261,0.02864632,96.84368453],[4.53432567,0.02864457,96.84293656],[4.53432525,0.02864281,96.84218846],[4.53432482,0.02864106,96.84144029],[4.5343244,0.02863931,96.84069211],[4.53432397,0.02863755,96.83994399],[4.53432354,0.0286358,96.83919598],[4.53432312,0.02863405,96.83844816],[4.53432269,0.02863229,96.83770059],[4.53432227,0.02863053,96.83695332],[4.53432184,0.02862878,96.83620643],[4.53432141,0.02862702,96.83545998],[4.53432099,0.02862527,96.83471403],[4.53432056,0.02862351,96.83396864],[4.53432014,0.02862176,96.83322389],[4.53431971,0.02862001,96.83247983],[4.53431929,0.02861825,96.83173654],[4.53431886,0.0286165,96.83099406],[4.53431844,0.02861474,96.83025245],[4.53431801,0.02861298,96.82951168],[4.53431759,0.02861123,96.82877175],[4.53431716,0.02860947,96.82803264],[4.53431674,0.02860772,96.82729434],[4.53431631,0.02860596,96.82655683],[4.53431589,0.02860421,96.82582011],[4.53431546,0.02860245,96.82508415],[4.53431504,0.02860069,96.82434894],[4.53431462,0.02859894,96.82361447],[4.53431419,0.02859718,96.82288073],[4.53431377,0.02859542,96.8221477],[4.53431334,0.02859367,96.82141537],[4.53431292,0.02859191,96.82068373],[4.53431249,0.02859015,96.81995276],[4.53431207,0.0285884,96.81922245],[4.53431164,0.02858664,96.81849278],[4.53431122,0.02858488,96.81776374],[4.53431079,0.02858312,96.81703533],[4.53431037,0.02858137,96.81630751],[4.53430994,0.02857961,96.81558029],[4.53430952,0.02857785,96.81485364],[4.53430909,0.02857609,96.81412756],[4.53430866,0.02857434,96.81340203],[4.53430824,0.02857258,96.81267703],[4.53430781,0.02857082,96.81195256],[4.53430739,0.02856906,96.8112286],[4.53430696,0.0285673,96.81050513],[4.53430653,0.02856555,96.80978215],[4.5343061,0.02856379,96.80905963],[4.53430568,0.02856203,96.80833757],[4.53430525,0.02856027,96.80761595],[4.53430482,0.02855851,96.80689476],[4.53430439,0.02855676,96.80617399],[4.53430396,0.028555,96.80545361],[4.53430353,0.02855324,96.80473363],[4.53430311,0.02855148,96.80401401],[4.53430268,0.02854972,96.80329476],[4.53430224,0.02854796,96.80257585],[4.53430181,0.02854621,96.80185728],[4.53430138,0.02854445,96.80113903],[4.53430095,0.02854269,96.80042108],[4.53430052,0.02854093,96.79970342],[4.53430009,0.02853917,96.79898605],[4.53429965,0.02853741,96.79826893],[4.53429922,0.02853566,96.79755207],[4.53429879,0.0285339,96.79683547],[4.53429835,0.02853214,96.79611914],[4.53429792,0.02853038,96.79540313],[4.53429748,0.02852862,96.79468746],[4.53429705,0.02852686,96.79397216],[4.53429661,0.02852511,96.79325725],[4.53429617,0.02852335,96.79254278],[4.53429573,0.02852159,96.79182876],[4.5342953,0.02851983,96.79111524],[4.53429486,0.02851807,96.79040223],[4.53429442,0.02851631,96.78968977],[4.53429398,0.02851456,96.78897789],[4.53429354,0.0285128,96.78826662],[4.5342931,0.02851104,96.78755599],[4.53429266,0.02850928,96.78684603],[4.53429222,0.02850752,96.78613677],[4.53429178,0.02850576,96.78542824],[4.53429133,0.02850401,96.78472047],[4.53429089,0.02850225,96.7840135],[4.53429045,0.02850049,96.78330735],[4.53429,0.02849873,96.78260205],[4.53428956,0.02849697,96.78189764],[4.53428911,0.02849521,96.78119415],[4.53428867,0.02849346,96.78049161],[4.53428822,0.0284917,96.77979004],[4.53428778,0.02848994,96.77908949],[4.53428733,0.02848818,96.77838999],[4.53428688,0.02848642,96.77769155],[4.53428644,0.02848469,96.77699423],[4.534286,0.02848293,96.77629805],[4.53428555,0.02848118,96.77560304],[4.5342851,0.02847942,96.77490922],[4.53428465,0.02847766,96.77421654],[4.5342842,0.02847591,96.7735249],[4.53428375,0.02847415,96.77283421],[4.5342833,0.0284724,96.77214438],[4.53428285,0.02847065,96.77145531],[4.53428241,0.02846889,96.77076693],[4.53428196,0.02846714,96.77007913],[4.53428151,0.02846539,96.76939182],[4.53428106,0.02846363,96.76870492],[4.53428061,0.02846188,96.76801832],[4.53428016,0.02846013,96.76733194],[4.53427971,0.02845838,96.76664569],[4.53427926,0.02845663,96.76595946],[4.5342788,0.02845488,96.76527317],[4.53427835,0.02845313,96.76458672],[4.5342779,0.02845138,96.76390002],[4.53427745,0.02844963,96.76321297],[4.534277,0.02844789,96.76252549],[4.53427655,0.02844614,96.76183746],[4.5342761,0.02844439,96.76114881],[4.53427565,0.02844264,96.76045944],[4.5342752,0.0284409,96.75976924],[4.53427474,0.02843915,96.75907812],[4.53427429,0.02843741,96.75838599],[4.53427384,0.02843566,96.75769275],[4.53427339,0.02843392,96.7569983],[4.53427294,0.02843217,96.75630253],[4.53427248,0.02843043,96.75560516],[4.53427203,0.02842868,96.75490588],[4.53427158,0.02842694,96.75420437],[4.53427113,0.0284252,96.75350029],[4.53427067,0.02842346,96.75279333],[4.53427022,0.02842172,96.75208316],[4.53426977,0.02841998,96.75136945],[4.53426931,0.02841824,96.75065188],[4.53426886,0.0284165,96.74993011],[4.5342684,0.02841476,96.74920382],[4.53426794,0.02841302,96.74847267],[4.53426749,0.02841128,96.74773633],[4.53426703,0.02840954,96.74699446],[4.53426657,0.02840781,96.74624674],[4.53426611,0.02840607,96.74549283],[4.53426565,0.02840434,96.74473238],[4.53426518,0.0284026,96.74396506],[4.53426472,0.02840087,96.74319052],[4.53426425,0.02839914,96.74240843],[4.53426379,0.0283974,96.74161845],[4.53426332,0.02839567,96.74082022],[4.53426285,0.02839394,96.74001341],[4.53426238,0.02839221,96.73919766],[4.5342619,0.02839048,96.73837263],[4.53426143,0.02838875,96.73753797],[4.53426095,0.02838703,96.73669377],[4.53426047,0.0283853,96.73584074],[4.53425999,0.02838357,96.73497963],[4.53425951,0.02838185,96.73411121],[4.53425903,0.02838012,96.73323625],[4.53425855,0.0283784,96.73235552],[4.53425807,0.02837667,96.73146979],[4.53425759,0.02837495,96.73057984],[4.53425711,0.02837323,96.72968644],[4.53425663,0.0283715,96.72879039],[4.53425615,0.02836977,96.72789245],[4.53425567,0.02836804,96.72699343],[4.5342552,0.02836631,96.72609411],[4.53425472,0.02836457,96.72519528],[4.53425424,0.02836284,96.72429775],[4.53425376,0.0283611,96.7234023],[4.53425329,0.02835936,96.72250976],[4.53425281,0.02835762,96.72162091],[4.53425234,0.02835588,96.72073657],[4.53425187,0.02835413,96.71985756],[4.5342514,0.02835238,96.71898469],[4.53425093,0.02835063,96.71811878],[4.53425046,0.02834888,96.71726065],[4.53425,0.02834713,96.71641114],[4.53424953,0.02834537,96.71557106],[4.53424907,0.02834362,96.71474127],[4.53424861,0.02834186,96.71392258],[4.53424816,0.0283401,96.71311585],[4.5342477,0.02833833,96.71232192],[4.53424725,0.02833657,96.71154164],[4.5342468,0.0283348,96.71077585],[4.53424635,0.02833303,96.71002541],[4.5342459,0.02833126,96.70929],[4.53424546,0.02832949,96.70856756],[4.53424502,0.02832771,96.70785586],[4.53424457,0.02832593,96.70715266],[4.53424413,0.02832415,96.70645573],[4.53424368,0.02832238,96.7057628],[4.53424323,0.02832059,96.70507162],[4.53424278,0.02831882,96.70438051],[4.53424232,0.02831704,96.70369155],[4.53424186,0.02831525,96.70300822],[4.5342414,0.02831346,96.702334],[4.53424094,0.02831167,96.70167242],[4.53424047,0.02830987,96.70102701],[4.53424001,0.02830807,96.70040131],[4.53423954,0.02830626,96.69979888],[4.53423908,0.02830445,96.6992233],[4.53423862,0.02830264,96.69867817],[4.53423816,0.02830081,96.69816709],[4.53423771,0.02829901,96.69770012],[4.53423771,0.02829901,96.69770012],[4.53423821,0.0283008,96.69833627],[4.53423872,0.02830261,96.6990075],[4.53423923,0.02830441,96.69970269],[4.53423973,0.02830621,96.70041969],[4.53424024,0.028308,96.70115633],[4.53424074,0.02830979,96.70191045],[4.53424125,0.02831158,96.70267992],[4.53424175,0.02831336,96.70346261],[4.53424225,0.02831515,96.7042564],[4.53424274,0.02831692,96.70505917],[4.53424324,0.0283187,96.70586882],[4.53424373,0.02832046,96.70668326],[4.53424422,0.02832223,96.70750182],[4.53424471,0.028324,96.70832751],[4.5342452,0.02832577,96.70916293],[4.53424568,0.02832754,96.71000894],[4.53424617,0.0283293,96.71086626],[4.53424666,0.02833106,96.71173562],[4.53424716,0.02833282,96.71261773],[4.53424765,0.02833458,96.71351316],[4.53424815,0.02833634,96.71442069],[4.53424864,0.0283381,96.71533801],[4.53424914,0.02833985,96.71626278],[4.53424964,0.0283416,96.71719267],[4.53425013,0.02834335,96.71812535],[4.53425063,0.0283451,96.71905852],[4.53425112,0.02834685,96.71998987],[4.53425161,0.0283486,96.72091737],[4.5342521,0.02835034,96.7218407],[4.53425259,0.02835209,96.72276028],[4.53425308,0.02835383,96.72367653],[4.53425356,0.02835558,96.72458989],[4.53425404,0.02835732,96.72550077],[4.53425452,0.02835906,96.72640958],[4.53425501,0.02836079,96.72731676],[4.53425549,0.02836253,96.72822271],[4.53425597,0.02836427,96.72912784],[4.53425645,0.028366,96.73003258],[4.53425693,0.02836773,96.73093733],[4.53425741,0.02836946,96.7318425],[4.53425789,0.02837119,96.73274849],[4.53425838,0.02837291,96.73365561],[4.53425887,0.02837463,96.73456337],[4.53425935,0.02837635,96.73547095],[4.53425984,0.02837807,96.73637753],[4.53426033,0.0283798,96.73728229],[4.53426082,0.02838152,96.73818443],[4.53426131,0.02838324,96.73908313],[4.5342618,0.02838496,96.73997759],[4.53426229,0.02838668,96.74086702],[4.53426278,0.02838841,96.7417506],[4.53426327,0.02839013,96.7426276],[4.53426376,0.02839186,96.7434979],[4.53426425,0.02839358,96.7443618],[4.53426474,0.02839531,96.74521961],[4.53426522,0.02839703,96.74607164],[4.53426571,0.02839876,96.74691821],[4.53426619,0.02840049,96.7477596],[4.53426668,0.02840221,96.7485961],[4.53426716,0.02840394,96.74942797],[4.53426765,0.02840567,96.7502555],[4.53426813,0.0284074,96.75107898],[4.53426862,0.02840913,96.75189866],[4.5342691,0.02841086,96.75271484],[4.53426959,0.02841259,96.75352778],[4.53427007,0.02841432,96.75433776],[4.53427055,0.02841605,96.75514505],[4.53427104,0.02841778,96.75594993],[4.53427152,0.02841951,96.75675266],[4.534272,0.02842125,96.75755351],[4.53427249,0.02842298,96.75835275],[4.53427297,0.02842471,96.75915065],[4.53427346,0.02842645,96.75994748],[4.53427394,0.02842818,96.76074351],[4.53427443,0.02842991,96.76153899],[4.53427491,0.02843165,96.76233419],[4.5342754,0.02843338,96.76312939],[4.53427588,0.02843512,96.76392478],[4.53427637,0.02843686,96.76472043],[4.53427686,0.02843859,96.76551639],[4.53427735,0.02844033,96.7663127],[4.53427783,0.02844206,96.76710942],[4.53427832,0.0284438,96.76790658],[4.53427881,0.02844554,96.76870423],[4.5342793,0.02844728,96.76950242],[4.53427979,0.02844901,96.77030119],[4.53428028,0.02845075,96.77110059],[4.53428077,0.02845249,96.77190066],[4.53428126,0.02845423,96.77270145],[4.53428175,0.02845597,96.773503],[4.53428224,0.02845771,96.77430536],[4.53428273,0.02845945,96.77510857],[4.53428323,0.02846119,96.77591267],[4.53428372,0.02846294,96.77671772],[4.53428421,0.02846468,96.77752376],[4.5342847,0.02846642,96.77833082],[4.53428519,0.02846816,96.77913896],[4.53428568,0.02846991,96.77994821],[4.53428618,0.02847165,96.78075863],[4.53428667,0.02847339,96.78157026],[4.53428716,0.02847514,96.78238314],[4.53428765,0.02847688,96.78319731],[4.53428814,0.02847863,96.78401282],[4.53428864,0.02848038,96.78482971],[4.53428913,0.02848212,96.785648],[4.53428962,0.02848387,96.78646761],[4.53429011,0.02848559,96.78728848],[4.5342906,0.02848734,96.78811052],[4.53429109,0.02848909,96.78893365],[4.53429158,0.02849084,96.78975779],[4.53429207,0.02849259,96.79058287],[4.53429256,0.02849434,96.79140881],[4.53429305,0.02849609,96.79223554],[4.53429353,0.02849784,96.79306296],[4.53429402,0.02849959,96.79389102],[4.53429451,0.02850134,96.79471962],[4.534295,0.02850309,96.7955487],[4.53429548,0.02850483,96.79637818],[4.53429597,0.02850658,96.79720798],[4.53429645,0.02850833,96.79803802],[4.53429694,0.02851008,96.79886824],[4.53429742,0.02851183,96.79969855],[4.5342979,0.02851358,96.80052889],[4.53429839,0.02851533,96.80135916],[4.53429887,0.02851708,96.80218937],[4.53429935,0.02851883,96.80301958],[4.53429983,0.02852058,96.80384986],[4.53430031,0.02852233,96.8046803],[4.53430079,0.02852408,96.80551097],[4.53430127,0.02852583,96.80634195],[4.53430175,0.02852758,96.80717332],[4.53430222,0.02852933,96.80800515],[4.5343027,0.02853108,96.80883752],[4.53430318,0.02853283,96.8096705],[4.53430366,0.02853458,96.81050419],[4.53430413,0.02853633,96.81133864],[4.53430461,0.02853808,96.81217397],[4.53430509,0.02853983,96.81301029],[4.53430556,0.02854158,96.81384772],[4.53430604,0.02854333,96.81468638],[4.53430651,0.02854508,96.81552639],[4.53430699,0.02854682,96.81636787],[4.53430746,0.02854857,96.81721092],[4.53430794,0.02855032,96.81805553],[4.53430842,0.02855207,96.8189017],[4.53430889,0.02855382,96.81974937],[4.53430937,0.02855557,96.82059851],[4.53430985,0.02855732,96.8214491],[4.53431032,0.02855907,96.82230109],[4.5343108,0.02856081,96.82315446],[4.53431127,0.02856256,96.82400918],[4.53431175,0.02856431,96.82486521],[4.53431223,0.02856606,96.82572252],[4.5343127,0.02856781,96.82658107],[4.53431318,0.02856955,96.82744084],[4.53431366,0.0285713,96.8283018],[4.53431413,0.02857305,96.8291639],[4.53431461,0.0285748,96.83002713],[4.53431509,0.02857654,96.83089144],[4.53431556,0.02857829,96.8317568],[4.53431604,0.02858004,96.83262319],[4.53431651,0.02858178,96.83349058],[4.53431699,0.02858353,96.83435892],[4.53431747,0.02858528,96.8352282],[4.53431794,0.02858702,96.83609837],[4.53431842,0.02858877,96.83696941],[4.5343189,0.02859052,96.83784129],[4.53431937,0.02859226,96.83871397],[4.53431985,0.02859401,96.83958742],[4.53432033,0.02859575,96.84046162],[4.5343208,0.0285975,96.84133654],[4.53432128,0.02859924,96.84221213],[4.53432176,0.02860099,96.84308837],[4.53432223,0.02860274,96.84396524],[4.53432271,0.02860448,96.8448427],[4.53432319,0.02860623,96.84572071],[4.53432366,0.02860797,96.84659926],[4.53432414,0.02860971,96.8474783],[4.53432462,0.02861146,96.84835781],[4.53432509,0.0286132,96.84923777],[4.53432557,0.02861495,96.85011813],[4.53432604,0.02861669,96.85099886],[4.53432652,0.02861844,96.85187989],[4.534327,0.02862018,96.85276111],[4.53432747,0.02862192,96.85364241],[4.53432795,0.02862367,96.85452373],[4.53432842,0.02862541,96.85540507],[4.5343289,0.02862715,96.85628643],[4.53432938,0.0286289,96.85716782],[4.53432985,0.02863065,96.85804926],[4.53433033,0.02863239,96.85893073],[4.5343308,0.02863413,96.85981225],[4.53433128,0.02863588,96.86069383],[4.53433175,0.02863762,96.86157546],[4.53433223,0.02863936,96.86245716],[4.5343327,0.0286411,96.86333893],[4.53433318,0.02864285,96.86422078],[4.53433365,0.02864459,96.86510272],[4.53433413,0.02864633,96.86598474],[4.5343346,0.02864808,96.86686685],[4.53433508,0.02864982,96.86774907],[4.53433555,0.02865156,96.86863139],[4.53433603,0.0286533,96.86951382],[4.5343365,0.02865505,96.87039637],[4.53433698,0.02865679,96.87127905],[4.53433745,0.02865853,96.87216185],[4.53433793,0.02866027,96.87304478],[4.5343384,0.02866201,96.87392786],[4.53433887,0.02866376,96.87481108],[4.53433935,0.0286655,96.87569446],[4.53433982,0.02866724,96.87657799],[4.5343403,0.02866898,96.87746168],[4.53434077,0.02867072,96.87834554],[4.53434125,0.02867247,96.87922958],[4.53434172,0.02867421,96.8801138],[4.5343422,0.02867595,96.8809982],[4.53434267,0.02867769,96.88188279],[4.53434315,0.02867943,96.88276758],[4.53434362,0.02868117,96.88365257],[4.5343441,0.02868292,96.88453777],[4.53434457,0.02868466,96.88542318],[4.53434505,0.0286864,96.88630881],[4.53434552,0.02868814,96.8871947],[4.534346,0.02868988,96.88808098],[4.53434647,0.02869162,96.8889677],[4.53434695,0.02869336,96.88985482],[4.53434742,0.0286951,96.8907423],[4.5343479,0.02869684,96.89163009],[4.53434838,0.02869858,96.89251812],[4.53434885,0.02870032,96.89340637],[4.53434933,0.02870206,96.89429476],[4.5343498,0.0287038,96.89518327],[4.53435028,0.02870554,96.89607182],[4.53435076,0.02870728,96.89696039],[4.53435123,0.02870902,96.89784891],[4.53435171,0.02871076,96.89873733],[4.53435218,0.0287125,96.89962561],[4.53435266,0.02871424,96.9005137],[4.53435314,0.02871598,96.90140154],[4.53435361,0.02871772,96.90228909],[4.53435409,0.02871946,96.9031763],[4.53435456,0.0287212,96.90406312],[4.53435504,0.02872294,96.90494949],[4.53435551,0.02872468,96.90583538],[4.53435599,0.02872642,96.90672072],[4.53435646,0.02872816,96.90760547],[4.53435694,0.0287299,96.90848959],[4.53435741,0.02873164,96.90937301],[4.53435789,0.02873337,96.91025569],[4.53435836,0.02873511,96.91113759],[4.53435883,0.02873685,96.91201865],[4.53435931,0.02873859,96.91289882],[4.53435978,0.02874033,96.91377805],[4.53436025,0.02874207,96.91465629],[4.53436072,0.02874381,96.9155335],[4.5343612,0.02874555,96.91640963],[4.53436167,0.02874729,96.91728461],[4.53436214,0.02874903,96.91815842],[4.53436261,0.02875076,96.91903098],[4.53436308,0.0287525,96.91990229],[4.53436355,0.02875424,96.92077243],[4.53436402,0.02875598,96.92164155],[4.53436449,0.02875772,96.92250979],[4.53436496,0.02875946,96.92337729],[4.53436543,0.0287612,96.92424418],[4.5343659,0.02876294,96.92511054],[4.53436637,0.02876467,96.92597638],[4.53436684,0.02876641,96.92684174],[4.5343673,0.02876815,96.92770664],[4.53436777,0.02876989,96.92857111],[4.53436824,0.02877163,96.92943517],[4.53436871,0.02877337,96.93029884],[4.53436918,0.0287751,96.93116216],[4.53436965,0.02877684,96.93202514],[4.53437012,0.02877858,96.93288782],[4.53437058,0.02878032,96.93375021],[4.53437105,0.02878206,96.93461234],[4.53437152,0.02878379,96.93547425],[4.53437199,0.02878553,96.93633594],[4.53437246,0.02878727,96.93719746],[4.53437293,0.02878901,96.93805881],[4.5343734,0.02879074,96.93892004],[4.53437386,0.02879248,96.93978116],[4.53437433,0.02879422,96.94064219],[4.5343748,0.02879595,96.94150317],[4.53437527,0.02879769,96.94236412],[4.53437574,0.02879943,96.94322506],[4.53437621,0.02880116,96.94408602],[4.53437668,0.0288029,96.94494702],[4.53437715,0.02880464,96.94580809],[4.53437761,0.02880636,96.94666925],[4.53437808,0.0288081,96.94753053],[4.53437855,0.02880983,96.94839195],[4.53437902,0.02881157,96.94925354],[4.5343795,0.0288133,96.95011532],[4.53437997,0.02881504,96.95097732],[4.53438044,0.02881678,96.95183955],[4.53438091,0.02881851,96.95270206],[4.53438138,0.02882025,96.95356486],[4.53438185,0.02882198,96.95442797],[4.53438232,0.02882372,96.95529142],[4.53438279,0.02882545,96.95615524],[4.53438327,0.02882719,96.95701945],[4.53438374,0.02882893,96.95788408],[4.53438421,0.02883066,96.95874914],[4.53438469,0.0288324,96.95961467],[4.53438516,0.02883413,96.96048069],[4.53438563,0.02883587,96.96134722],[4.53438611,0.0288376,96.96221429],[4.53438658,0.02883934,96.96308193],[4.53438706,0.02884107,96.96395012],[4.53438753,0.0288428,96.96481871],[4.53438801,0.02884454,96.96568755],[4.53438848,0.02884627,96.96655645],[4.53438896,0.02884801,96.96742526],[4.53438943,0.02884974,96.96829381],[4.53438991,0.02885148,96.96916195],[4.53439038,0.02885321,96.9700295],[4.53439086,0.02885495,96.97089631],[4.53439133,0.02885668,96.9717622],[4.53439181,0.02885842,96.97262702],[4.53439228,0.02886015,96.9734906],[4.53439275,0.02886188,96.97435278],[4.53439323,0.02886362,96.97521339],[4.5343937,0.02886535,96.97607227],[4.53439417,0.02886709,96.97692926],[4.53439464,0.02886882,96.97778418],[4.53439511,0.02887056,96.97863688],[4.53439558,0.0288723,96.97948719],[4.53439605,0.02887403,96.98033495],[4.53439652,0.02887577,96.98117999],[4.53439699,0.0288775,96.98202214],[4.53439745,0.02887924,96.98286125],[4.53439792,0.02888098,96.98369714],[4.53439838,0.02888271,96.98452965],[4.53439885,0.02888445,96.98535862],[4.53439931,0.02888619,96.98618388],[4.53439977,0.02888793,96.98700527],[4.53440023,0.02888966,96.98782282],[4.53440068,0.0288914,96.98863679],[4.53440114,0.02889314,96.98944746],[4.5344016,0.02889488,96.99025509],[4.53440205,0.02889662,96.99105997],[4.53440251,0.02889836,96.99186237],[4.53440296,0.0289001,96.99266256],[4.53440341,0.02890184,96.99346081],[4.53440386,0.02890358,96.99425741],[4.53440431,0.02890532,96.99505263],[4.53440476,0.02890706,96.99584674],[4.53440522,0.0289088,96.99664002],[4.53440567,0.02891054,96.99743274],[4.53440612,0.02891228,96.99822518],[4.53440657,0.02891402,96.99901761],[4.53440702,0.02891576,96.99981031],[4.53440747,0.0289175,97.00060355],[4.53440792,0.02891924,97.00139762],[4.53440837,0.02892098,97.00219278],[4.53440866,0.02892276,97.00251516],[4.53440872,0.0289246,97.00220572],[4.53440878,0.02892643,97.00189586],[4.53440884,0.02892827,97.00158558],[4.5344089,0.02893011,97.00127488],[4.53440896,0.02893194,97.00096377],[4.53440902,0.02893378,97.00065225],[4.53440908,0.02893562,97.00034033],[4.53440914,0.02893746,97.00002801],[4.5344092,0.02893929,96.9997153],[4.53440926,0.02894113,96.9994022],[4.53440932,0.02894297,96.99908872],[4.53440938,0.02894481,96.99877487],[4.53440944,0.02894664,96.99846064],[4.5344095,0.02894848,96.99814605],[4.53440956,0.02895032,96.9978311],[4.53440962,0.02895216,96.99751579],[4.53440968,0.028954,96.99720013],[4.53440974,0.02895583,96.99688415],[4.53440104,0.028958,96.97225968]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004700","rules":[{"value":"barred"}],"id":1,"type":"restricted","predecessorId":1,"sOffset":166.1668423772}},{"geometry":{"coordinates":[[[4.53413895,0.02826181,96.54483368],[4.5341385,0.02826007,96.54398301],[4.53413804,0.02825833,96.54311075],[4.53413757,0.02825659,96.54222053],[4.53413709,0.02825485,96.54131597],[4.5341366,0.02825312,96.54040074],[4.53413611,0.02825138,96.53947852],[4.53413562,0.02824965,96.53855299],[4.53413512,0.02824792,96.53762786],[4.53413463,0.02824619,96.53670685],[4.53413413,0.02824446,96.53579368],[4.53413363,0.02824273,96.53489139],[4.53413314,0.02824099,96.53400009],[4.53413264,0.02823926,96.53311919],[4.53413215,0.02823753,96.53224809],[4.53413165,0.0282358,96.53138618],[4.53413116,0.02823406,96.53053286],[4.53413067,0.02823233,96.52968752],[4.53413017,0.02823059,96.52884956],[4.53412968,0.02822886,96.52801836],[4.53412919,0.02822713,96.5271933],[4.5341287,0.02822539,96.52637378],[4.53412821,0.02822366,96.52555917],[4.53412771,0.02822193,96.52474886],[4.53412722,0.02822019,96.52394234],[4.53412672,0.02821846,96.52313948],[4.53412623,0.02821673,96.5223403],[4.53412573,0.02821499,96.52154478],[4.53412524,0.02821326,96.52075293],[4.53412474,0.02821153,96.51996473],[4.53412425,0.0282098,96.51918018],[4.53412375,0.02820806,96.51839929],[4.53412325,0.02820633,96.51762204],[4.53412276,0.0282046,96.51684844],[4.53412226,0.02820287,96.51607848],[4.53412177,0.02820113,96.51531215],[4.53412127,0.0281994,96.51454946],[4.53412077,0.02819767,96.51379041],[4.53412028,0.02819594,96.51303498],[4.53411978,0.0281942,96.51228318],[4.53411928,0.02819247,96.51153501],[4.53411879,0.02819074,96.51079046],[4.53411829,0.02818901,96.51004953],[4.5341178,0.02818727,96.50931223],[4.5341173,0.02818554,96.50857854],[4.53411681,0.02818381,96.50784846],[4.53411631,0.02818207,96.507122],[4.53411581,0.02818034,96.50639916],[4.53411532,0.02817861,96.50567993],[4.53411482,0.02817688,96.50496428],[4.53411433,0.02817514,96.50425205],[4.53411383,0.02817341,96.50354307],[4.53411334,0.02817168,96.50283715],[4.53411284,0.02816994,96.5021341],[4.53411234,0.02816821,96.50143374],[4.53411185,0.02816648,96.5007359],[4.53411135,0.02816474,96.50004037],[4.53411085,0.02816301,96.49934699],[4.53411036,0.02816128,96.49865556],[4.53410986,0.02815955,96.4979659],[4.53410936,0.02815782,96.49727784],[4.53410886,0.02815608,96.49659118],[4.53410836,0.02815435,96.49590575],[4.53410786,0.02815262,96.49522135],[4.53410736,0.02815089,96.49453782],[4.53410686,0.02814916,96.49385501],[4.53410635,0.02814743,96.49317294],[4.53410585,0.0281457,96.49249169],[4.53410534,0.02814397,96.49181133],[4.53410484,0.02814224,96.49113193],[4.53410433,0.02814051,96.49045356],[4.53410383,0.02813878,96.48977629],[4.53410332,0.02813705,96.4891002],[4.53410281,0.02813532,96.48842535],[4.5341023,0.02813359,96.48775182],[4.53410179,0.02813186,96.48707968],[4.53410128,0.02813013,96.486409],[4.53410077,0.02812841,96.48573985],[4.53410026,0.02812668,96.48507231],[4.53409974,0.02812495,96.48440644],[4.53409923,0.02812322,96.48374236],[4.53409872,0.02812149,96.48308017],[4.5340982,0.02811977,96.48242],[4.53409769,0.02811804,96.48176197],[4.53409717,0.02811631,96.48110621],[4.53409666,0.02811459,96.48045285],[4.53409614,0.02811286,96.47980199],[4.53409563,0.02811113,96.47915377],[4.53409511,0.02810941,96.4785083],[4.5340946,0.02810768,96.47786572],[4.53409408,0.02810595,96.47722613],[4.53409357,0.02810422,96.47658967],[4.53409305,0.0281025,96.47595646],[4.53409253,0.02810077,96.47532661],[4.53409202,0.02809904,96.47470024],[4.5340915,0.02809732,96.47407749],[4.53409099,0.02809559,96.47345846],[4.53409047,0.02809386,96.47284328],[4.53408996,0.02809214,96.47223208],[4.53408945,0.02809041,96.47162496],[4.53408893,0.02808868,96.47102205],[4.53408842,0.02808695,96.47042346],[4.53408791,0.02808523,96.46982929],[4.53408739,0.0280835,96.46923946],[4.53408688,0.02808177,96.46865391],[4.53408637,0.02808004,96.46807258],[4.53408586,0.02807831,96.46749543],[4.53408535,0.02807659,96.4669224],[4.53408484,0.02807486,96.46635345],[4.53408433,0.02807313,96.46578854],[4.53408382,0.0280714,96.4652276],[4.53408331,0.02806967,96.4646706],[4.5340828,0.02806794,96.46411747],[4.53408229,0.02806621,96.46356819],[4.53408179,0.02806448,96.46302268],[4.53408128,0.02806275,96.46248092],[4.53408077,0.02806102,96.46194284],[4.53408026,0.0280593,96.4614084],[4.53407976,0.02805757,96.46087755],[4.53407925,0.02805584,96.46035023],[4.53407875,0.02805411,96.45982632],[4.53407824,0.02805238,96.4593056],[4.53407774,0.02805065,96.45878784],[4.53407723,0.02804892,96.45827283],[4.53407673,0.02804719,96.45776035],[4.53407622,0.02804546,96.45725018],[4.53407572,0.02804373,96.45674211],[4.53407521,0.02804199,96.45623591],[4.53407471,0.02804026,96.45573138],[4.5340742,0.02803853,96.45522829],[4.5340737,0.02803681,96.45472644],[4.53407319,0.02803508,96.45422561],[4.53407268,0.02803335,96.45372559],[4.53407218,0.02803162,96.45322617],[4.53407167,0.02802989,96.45272714],[4.53407116,0.02802816,96.45222828],[4.53407065,0.02802643,96.4517294],[4.53407014,0.0280247,96.45123028],[4.53406963,0.02802297,96.45073072],[4.53406912,0.02802124,96.45023051],[4.53406861,0.02801952,96.44972942],[4.53406809,0.02801779,96.44922715],[4.53406758,0.02801606,96.44872337],[4.53406706,0.02801433,96.44821776],[4.53406655,0.02801261,96.44770999],[4.53406603,0.02801088,96.4471998],[4.53406551,0.02800916,96.44668711],[4.53406499,0.02800743,96.44617189],[4.53406446,0.02800571,96.44565412],[4.53406394,0.02800398,96.44513377],[4.53406341,0.02800226,96.44461087],[4.53406289,0.02800054,96.44408565],[4.53406236,0.02799881,96.44355842],[4.53406183,0.02799709,96.44302944],[4.5340613,0.02799537,96.44249903],[4.53406077,0.02799365,96.44196745],[4.53406024,0.02799193,96.441435],[4.5340597,0.0279902,96.44090196],[4.53405917,0.02798848,96.44036861],[4.53405863,0.02798676,96.43983524],[4.5340581,0.02798504,96.43930213],[4.53405756,0.02798332,96.43876956],[4.53405703,0.0279816,96.43823781],[4.53405649,0.02797988,96.43770715],[4.53405596,0.02797816,96.43717786],[4.53405542,0.02797644,96.43665022],[4.53405489,0.02797472,96.43612446],[4.53405435,0.027973,96.43560068],[4.53405382,0.02797128,96.43507895],[4.53405328,0.02796956,96.43455932],[4.53405275,0.02796784,96.43404186],[4.53405221,0.02796611,96.43352663],[4.53405168,0.02796439,96.43301368],[4.53405114,0.02796267,96.43250309],[4.53405061,0.02796095,96.4319949],[4.53405008,0.02795923,96.43148917],[4.53404954,0.02795751,96.43098598],[4.53404901,0.02795579,96.43048536],[4.53404848,0.02795406,96.42998739],[4.53404795,0.02795234,96.42949211],[4.53404742,0.02795062,96.42899959],[4.53404689,0.0279489,96.42850982],[4.53404636,0.02794718,96.42802252],[4.53404583,0.02794545,96.42753736],[4.5340453,0.02794373,96.42705401],[4.53404477,0.02794201,96.42657226],[4.53404425,0.02794029,96.426092],[4.53404372,0.02793856,96.42561313],[4.53404319,0.02793684,96.42513556],[4.53404266,0.02793512,96.42465919],[4.53404213,0.02793339,96.42418392],[4.5340416,0.02793167,96.42370966],[4.53404108,0.02792995,96.4232363],[4.53404055,0.02792823,96.42276375],[4.53404002,0.0279265,96.42229192],[4.53403949,0.02792478,96.4218207],[4.53403896,0.02792306,96.42135001],[4.53403843,0.02792133,96.42087975],[4.53403791,0.02791961,96.42040982],[4.53403738,0.02791789,96.41994013],[4.53403685,0.02791617,96.41947058],[4.53403632,0.02791444,96.41900109],[4.53403579,0.02791272,96.41853156],[4.53403526,0.027911,96.4180619],[4.53403473,0.02790928,96.41759201],[4.5340342,0.02790756,96.4171218],[4.53403367,0.02790583,96.41665125],[4.53403313,0.02790411,96.41618063],[4.5340326,0.02790239,96.41571039],[4.53403207,0.02790067,96.41524095],[4.53403154,0.02789895,96.41477276],[4.53403101,0.02789722,96.41430613],[4.53403048,0.0278955,96.4138413],[4.53402995,0.02789378,96.4133785],[4.53402942,0.02789206,96.41291794],[4.53402889,0.02789033,96.41245985],[4.53402837,0.02788861,96.41200445],[4.53402784,0.02788689,96.41155195],[4.53402731,0.02788516,96.41110257],[4.53402679,0.02788344,96.41065653],[4.53402627,0.02788172,96.41021404],[4.53402574,0.02787999,96.40977532],[4.53402522,0.02787827,96.40934057],[4.5340247,0.02787654,96.40890991],[4.53402418,0.02787481,96.40848307],[4.53402367,0.02787309,96.40805966],[4.53402315,0.02787136,96.40763922],[4.53402264,0.02786963,96.40722128],[4.53402212,0.02786791,96.40680536],[4.53402161,0.02786618,96.40639099],[4.5340211,0.02786445,96.40597771],[4.53402058,0.02786273,96.40556504],[4.53402007,0.027861,96.40515253],[4.53401956,0.02785927,96.40473971],[4.53401904,0.02785754,96.40432613],[4.53401853,0.02785582,96.40391132],[4.53401801,0.02785409,96.40349484],[4.5340175,0.02785236,96.40307624],[4.53401698,0.02785064,96.40265506],[4.53401647,0.02784891,96.40223086],[4.53401595,0.02784718,96.4018032],[4.53401543,0.02784546,96.40137164],[4.53401491,0.02784373,96.40093574],[4.53401438,0.02784201,96.40049516],[4.53401386,0.02784028,96.40005001],[4.53401333,0.02783856,96.3996005],[4.5340128,0.02783684,96.39914692],[4.53401227,0.02783512,96.39868952],[4.53401174,0.02783339,96.39822859],[4.53401121,0.02783167,96.39776439],[4.53401068,0.02782995,96.39729718],[4.53401015,0.02782823,96.39682723],[4.53400961,0.02782651,96.39635479],[4.53400908,0.02782479,96.39588014],[4.53400854,0.02782307,96.39540353],[4.534008,0.02782135,96.39492522],[4.53400747,0.02781963,96.39444546],[4.53400693,0.02781791,96.39396451],[4.53400639,0.02781619,96.39348262],[4.53400585,0.02781447,96.39300004],[4.53400531,0.02781275,96.39251702],[4.53400478,0.02781103,96.39203369],[4.53400424,0.02780931,96.39155007],[4.5340037,0.02780759,96.39106617],[4.53400316,0.02780587,96.39058201],[4.53400263,0.02780415,96.3900976],[4.53400209,0.02780243,96.38961297],[4.53400155,0.02780071,96.38912812],[4.53400101,0.02779899,96.38864306],[4.53400048,0.02779727,96.38815782],[4.53399994,0.02779555,96.38767241],[4.5339994,0.02779383,96.38718683],[4.53399887,0.02779211,96.38670111],[4.53399833,0.02779039,96.38621525],[4.53399779,0.02778867,96.38572927],[4.53399726,0.02778695,96.38524318],[4.53399672,0.02778523,96.38475692],[4.53399619,0.02778351,96.38427046],[4.53399565,0.02778179,96.38378374],[4.53399512,0.02778007,96.38329671],[4.53399458,0.02777835,96.38280932],[4.53399405,0.02777663,96.38232152],[4.53399351,0.0277749,96.38183324],[4.53399298,0.02777318,96.38134445],[4.53399244,0.02777146,96.38085508],[4.53399191,0.02776974,96.3803651],[4.53399138,0.02776802,96.37987443],[4.53399084,0.0277663,96.37938305],[4.53399031,0.02776458,96.37889088],[4.53398977,0.02776286,96.37839789],[4.53398924,0.02776114,96.37790401],[4.53398871,0.02775942,96.37740921],[4.53398817,0.0277577,96.37691343],[4.53398764,0.02775597,96.37641661],[4.5339871,0.02775425,96.37591871],[4.53398657,0.02775253,96.37541969],[4.53398604,0.02775081,96.37491947],[4.5339855,0.02774909,96.37441801],[4.53398497,0.02774737,96.37391525],[4.53398443,0.02774565,96.37341114],[4.5339839,0.02774393,96.37290562],[4.53398337,0.02774221,96.37239863],[4.53398283,0.02774049,96.37189012],[4.5339823,0.02773876,96.37138003],[4.53398176,0.02773704,96.37086831],[4.53398123,0.02773532,96.3703549],[4.53398069,0.0277336,96.36983976],[4.53398016,0.02773188,96.36932281],[4.53397962,0.02773016,96.36880402],[4.53397909,0.02772844,96.36828333],[4.53397855,0.02772672,96.36776073],[4.53397802,0.027725,96.36723619],[4.53397748,0.02772328,96.36670971],[4.53397695,0.02772156,96.36618128],[4.53397641,0.02771984,96.36565088],[4.53397587,0.02771812,96.36511851],[4.53397534,0.0277164,96.36458414],[4.5339748,0.02771468,96.36404776],[4.53397427,0.02771296,96.36350937],[4.53397373,0.02771124,96.36296894],[4.53397319,0.02770952,96.36242647],[4.53397266,0.0277078,96.36188193],[4.53397212,0.02770608,96.36133532],[4.53397158,0.02770436,96.36078662],[4.53397104,0.02770264,96.36023582],[4.53397051,0.02770092,96.35968289],[4.53396997,0.0276992,96.35912783],[4.53396943,0.02769748,96.35857062],[4.53396889,0.02769576,96.35801125],[4.53396836,0.02769404,96.35744972],[4.53396782,0.02769232,96.35688605],[4.53396728,0.0276906,96.35632026],[4.53396674,0.02768888,96.35575237],[4.53396621,0.02768716,96.35518239],[4.53396567,0.02768544,96.35461034],[4.53396513,0.02768372,96.35403617],[4.53396459,0.027682,96.35345987],[4.53396406,0.02768028,96.35288139],[4.53396352,0.02767856,96.35230071],[4.53396298,0.02767684,96.3517178],[4.53396244,0.02767512,96.35113262],[4.53396191,0.0276734,96.35054516],[4.53396137,0.02767168,96.34995537],[4.53396083,0.02766996,96.34936323],[4.53396029,0.02766824,96.3487687],[4.53395976,0.02766652,96.34817177],[4.53395922,0.0276648,96.34757239],[4.53395868,0.02766308,96.34697054],[4.53395814,0.02766136,96.34636619],[4.53395761,0.02765964,96.3457593],[4.53395707,0.02765792,96.34514985],[4.53395653,0.0276562,96.34453781],[4.53395599,0.02765448,96.34392315],[4.53395546,0.02765276,96.34330583],[4.53395492,0.02765104,96.34268583],[4.53395438,0.02764932,96.34206312],[4.53395385,0.0276476,96.34143767],[4.53395331,0.02764589,96.34080944],[4.53395277,0.02764417,96.34017841],[4.53395223,0.02764245,96.33954454],[4.5339517,0.02764073,96.33890782],[4.53395116,0.02763901,96.3382682],[4.53395062,0.02763729,96.33762566],[4.53395008,0.02763557,96.33698016],[4.53394955,0.02763385,96.33633168],[4.53394901,0.02763213,96.33568019],[4.53394847,0.02763041,96.33502566],[4.53394793,0.02762869,96.33436806],[4.5339474,0.02762697,96.33370735],[4.53394686,0.02762525,96.33304351],[4.53394632,0.02762353,96.33237651],[4.53394579,0.02762181,96.33170631],[4.53394525,0.02762009,96.33103289],[4.53394471,0.02761837,96.33035622],[4.53394417,0.02761665,96.32967627],[4.53394364,0.02761493,96.32899301],[4.5339431,0.02761321,96.3283064],[4.53394256,0.02761149,96.32761642],[4.53394202,0.02760977,96.32692304],[4.53394149,0.02760805,96.32622623],[4.53394095,0.02760633,96.32552595],[4.53394041,0.02760461,96.32482218],[4.53393987,0.02760289,96.32411489],[4.53393934,0.02760117,96.32340405],[4.5339388,0.02759945,96.32268962],[4.53393826,0.02759773,96.32197159],[4.53393772,0.02759601,96.32124991],[4.53393718,0.02759429,96.32052456],[4.53393665,0.02759257,96.3197955],[4.53393611,0.02759085,96.31906272],[4.53393557,0.02758913,96.31832617],[4.53393503,0.02758741,96.31758582],[4.53393449,0.0275857,96.31684165],[4.53393396,0.02758398,96.3160936],[4.53393342,0.02758226,96.31534165],[4.53393288,0.02758054,96.31458576],[4.53393234,0.02757882,96.31382589],[4.5339318,0.0275771,96.313062],[4.53393127,0.02757538,96.31229406],[4.53393073,0.02757366,96.31152203],[4.53393019,0.02757194,96.31074588],[4.53392965,0.02757022,96.30996556],[4.53392911,0.0275685,96.30918104],[4.53392857,0.02756678,96.30839229],[4.53392803,0.02756506,96.30759927],[4.5339275,0.02756334,96.30680194],[4.53392696,0.02756162,96.30600026],[4.53392642,0.0275599,96.3051942],[4.53392588,0.02755819,96.30438371],[4.53392534,0.02755647,96.30356877],[4.5339248,0.02755475,96.30274934],[4.53392426,0.02755303,96.30192537],[4.53392372,0.02755131,96.30109684],[4.53392318,0.02754959,96.3002637],[4.53392264,0.02754787,96.29942592],[4.5339221,0.02754615,96.29858347],[4.53392156,0.02754443,96.29773635],[4.53392102,0.02754272,96.2968846],[4.53392048,0.027541,96.29602823],[4.53391994,0.02753928,96.29516726],[4.5339194,0.02753756,96.29430171],[4.53391886,0.02753584,96.2934316],[4.53391832,0.02753412,96.29255696],[4.53391778,0.0275324,96.2916778],[4.53391724,0.02753068,96.29079414],[4.5339167,0.02752897,96.28990601],[4.53391616,0.02752725,96.28901343],[4.53391562,0.02752553,96.28811641],[4.53391508,0.02752381,96.28721499],[4.53391454,0.02752209,96.28630917],[4.533914,0.02752037,96.28539898],[4.53391346,0.02751865,96.28448445],[4.53391292,0.02751693,96.2835656],[4.53391238,0.02751521,96.28264244],[4.53391184,0.02751349,96.28171501],[4.53391131,0.02751177,96.28078332],[4.53391077,0.02751006,96.27984737],[4.53391023,0.02750834,96.27890714],[4.53390969,0.02750662,96.2779626],[4.53390916,0.0275049,96.27701372],[4.53390862,0.02750318,96.27606048],[4.53390808,0.02750146,96.27510285],[4.53390755,0.02749974,96.27414081],[4.53390701,0.02749802,96.27317433],[4.53390648,0.0274963,96.27220339],[4.53390594,0.02749458,96.27122796],[4.53390541,0.02749286,96.27024801],[4.53390487,0.02749113,96.26926352],[4.53390434,0.02748941,96.26827447],[4.5339038,0.02748769,96.26728083],[4.53390327,0.02748597,96.26628257],[4.53390274,0.02748425,96.26527968],[4.5339022,0.02748253,96.26427212],[4.53390167,0.02748081,96.26325987],[4.53390114,0.02747909,96.26224292],[4.53390061,0.02747737,96.26122122],[4.53390008,0.02747565,96.26019477],[4.53389954,0.02747392,96.25916354],[4.53389901,0.0274722,96.25812749],[4.53389848,0.02747048,96.25708662],[4.53389795,0.02746876,96.25604089],[4.53389742,0.02746704,96.25499028],[4.53389689,0.02746532,96.25393478],[4.53389636,0.02746359,96.25287435],[4.53389583,0.02746187,96.25180897],[4.5338953,0.02746015,96.25073862],[4.53389478,0.02745843,96.24966329],[4.53389425,0.0274567,96.24858293],[4.53389372,0.02745498,96.24749755],[4.53389319,0.02745326,96.24640709],[4.53389266,0.02745154,96.24531146],[4.53389214,0.02744981,96.24421058],[4.53389161,0.02744809,96.24310432],[4.53389108,0.02744637,96.24199259],[4.53389056,0.02744464,96.24087529],[4.53389003,0.02744292,96.2397523],[4.5338895,0.0274412,96.23862356],[4.53388898,0.02743948,96.23748903],[4.53388845,0.02743775,96.23634867],[4.53388792,0.02743603,96.23520243],[4.5338874,0.02743431,96.23405027],[4.53388687,0.02743258,96.23289217],[4.53388634,0.02743086,96.23172807],[4.53388582,0.02742914,96.23055795],[4.53388529,0.02742741,96.22938175],[4.53388477,0.02742569,96.22819944],[4.53388424,0.02742397,96.22701097],[4.53388371,0.02742225,96.22581632],[4.53388319,0.02742052,96.22461543],[4.53388266,0.0274188,96.22340827],[4.53388214,0.02741708,96.2221948],[4.53388161,0.02741535,96.22097501],[4.53388108,0.02741363,96.21974904],[4.53388056,0.02741191,96.21851708],[4.53388003,0.02741018,96.2172793],[4.5338795,0.02740846,96.21603588],[4.53387898,0.02740674,96.214787],[4.53387845,0.02740502,96.21353284],[4.53387792,0.02740329,96.21227357],[4.5338774,0.02740157,96.21100937],[4.53387687,0.02739985,96.20974043],[4.53387634,0.02739812,96.20846691],[4.53387582,0.0273964,96.20718899],[4.53387529,0.02739468,96.20590685],[4.53387476,0.02739296,96.20462067],[4.53387424,0.02739123,96.20333062],[4.53387371,0.02738951,96.20203688],[4.53387318,0.02738779,96.20073961],[4.53387265,0.02738606,96.19943901],[4.53387213,0.02738434,96.19813524],[4.5338716,0.02738262,96.19682847],[4.53387107,0.0273809,96.19551889],[4.53387054,0.02737917,96.19420666],[4.53387001,0.02737745,96.19289195],[4.53386949,0.02737573,96.19157496],[4.53386896,0.02737401,96.19025583],[4.53386843,0.02737229,96.18893476],[4.5338679,0.02737056,96.1876119],[4.53386737,0.02736884,96.18628744],[4.53386684,0.02736712,96.18496154],[4.53386631,0.0273654,96.18363438],[4.53386578,0.02736368,96.18230614],[4.53386525,0.02736195,96.18097697],[4.53386472,0.02736023,96.17964705],[4.53386419,0.02735851,96.17831656],[4.53386366,0.02735679,96.17698566],[4.53386313,0.02735507,96.17565452],[4.5338626,0.02735335,96.17432332],[4.53386207,0.02735162,96.17299222],[4.53386153,0.0273499,96.1716614],[4.533861,0.02734818,96.17033103],[4.53386047,0.02734646,96.16900132],[4.53385994,0.02734474,96.16767248],[4.5338594,0.02734302,96.16634472],[4.53385887,0.0273413,96.16501826],[4.53385834,0.02733958,96.16369333],[4.53385781,0.02733786,96.16237013],[4.53385727,0.02733614,96.16104888],[4.53385674,0.02733442,96.15972982],[4.5338562,0.02733269,96.15841315],[4.53385567,0.02733097,96.1570991],[4.53385513,0.02732925,96.15578789],[4.5338546,0.02732753,96.15447974],[4.53385407,0.02732581,96.15317487],[4.53385353,0.02732409,96.1518735],[4.533853,0.02732237,96.15057585],[4.53385246,0.02732065,96.14928216],[4.53385193,0.02731893,96.14799263],[4.53385139,0.02731721,96.14670749],[4.53385086,0.02731549,96.14542697],[4.53385032,0.02731377,96.14415128],[4.53384979,0.02731205,96.14288066],[4.53384925,0.02731033,96.14161533],[4.53384871,0.02730861,96.14035551],[4.53384818,0.02730689,96.13910142],[4.53384764,0.02730517,96.13785329],[4.53384711,0.02730345,96.13661135],[4.53384657,0.02730173,96.13537581],[4.53384604,0.02730001,96.13414681],[4.5338455,0.02729829,96.13292451],[4.53384497,0.02729657,96.13170905],[4.53384443,0.02729485,96.13050056],[4.5338439,0.02729313,96.12929922],[4.53384336,0.02729141,96.1281052],[4.53384282,0.02728969,96.12691868],[4.53384229,0.02728797,96.12573982],[4.53384175,0.02728625,96.12456881],[4.53384122,0.02728453,96.12340581],[4.53384068,0.02728281,96.12225099],[4.53384014,0.02728109,96.12110454],[4.53383961,0.02727937,96.11996663],[4.53383907,0.02727765,96.11883742],[4.53383853,0.02727593,96.11771709],[4.533838,0.02727421,96.11660581],[4.53383746,0.02727249,96.11550376],[4.53383692,0.02727077,96.11441111],[4.53383639,0.02726905,96.11332803],[4.53383585,0.02726734,96.1122547],[4.53383531,0.02726562,96.11119128],[4.53383477,0.0272639,96.11013795],[4.53383424,0.02726218,96.10909489],[4.5338337,0.02726046,96.10806226],[4.53383316,0.02725874,96.10704024],[4.53383262,0.02725702,96.10602901],[4.53383208,0.0272553,96.10502876],[4.53383155,0.02725358,96.10403972],[4.53383101,0.02725186,96.10306213],[4.53383047,0.02725014,96.1020962],[4.53382993,0.02724843,96.10114218],[4.53382939,0.02724671,96.10020029],[4.53382885,0.02724499,96.09927076],[4.53382831,0.02724327,96.09835382],[4.53382777,0.02724155,96.09744969],[4.53382723,0.02723983,96.09655862],[4.53382669,0.02723811,96.09568084],[4.53382615,0.02723639,96.09481656],[4.53382561,0.02723468,96.09396603],[4.53382507,0.02723296,96.09312947],[4.53382453,0.02723124,96.09230712],[4.53382399,0.02722952,96.09149921],[4.53382345,0.0272278,96.09070596],[4.53382291,0.02722608,96.08992761],[4.53382237,0.02722436,96.0891644],[4.53382183,0.02722265,96.08841654],[4.53382129,0.02722093,96.08768427],[4.53382075,0.02721921,96.08696761],[4.53382022,0.02721749,96.08626638],[4.53381968,0.02721577,96.0855804],[4.53381914,0.02721405,96.08490948],[4.5338186,0.02721233,96.08425345],[4.53381806,0.02721061,96.08361212],[4.53381752,0.0272089,96.0829853],[4.53381698,0.02720718,96.0823728],[4.53381644,0.02720546,96.08177446],[4.5338159,0.02720374,96.08119006],[4.53381537,0.02720202,96.08061939],[4.53381483,0.0272003,96.08006221],[4.53381429,0.02719858,96.0795183],[4.53381375,0.02719686,96.07898743],[4.53381321,0.02719514,96.07846935],[4.53381268,0.02719342,96.07796386],[4.53381214,0.0271917,96.0774707],[4.5338116,0.02718998,96.07698965],[4.53381107,0.02718827,96.07652047],[4.53381053,0.02718655,96.07606295],[4.53380999,0.02718483,96.07561683],[4.53380946,0.02718311,96.0751819],[4.53380892,0.02718139,96.07475791],[4.53380839,0.02717967,96.07434465],[4.53380785,0.02717795,96.07394186],[4.53380731,0.02717623,96.07354933],[4.53380678,0.02717451,96.07316682],[4.53380624,0.02717279,96.0727941],[4.53380571,0.02717107,96.07243093],[4.53380517,0.02716935,96.07207709],[4.53380464,0.02716763,96.07173233],[4.5338041,0.02716591,96.07139643],[4.53380357,0.02716419,96.07106916],[4.53380303,0.02716247,96.07075026],[4.5338025,0.02716075,96.07043951],[4.53380196,0.02715903,96.07013667],[4.53380143,0.02715731,96.06984151],[4.5338009,0.02715559,96.06955377],[4.53380036,0.02715387,96.06927323],[4.53379983,0.02715215,96.06899966],[4.53379929,0.02715042,96.06873281],[4.53379876,0.0271487,96.06847244],[4.53379823,0.02714698,96.06821833],[4.53379769,0.02714526,96.06797023],[4.53379716,0.02714354,96.0677279],[4.53379663,0.02714182,96.06749112],[4.53379609,0.0271401,96.06725964],[4.53379556,0.02713838,96.06703323],[4.53379503,0.02713666,96.06681165],[4.53379449,0.02713494,96.06659467],[4.53379396,0.02713322,96.06638206],[4.53379343,0.0271315,96.06617356],[4.53379289,0.02712978,96.06596896],[4.53379236,0.02712806,96.06576801],[4.53379183,0.02712634,96.06557048],[4.5337913,0.02712462,96.06537614],[4.53379076,0.0271229,96.06518477],[4.53379023,0.02712117,96.06499612],[4.5337897,0.02711945,96.06480996],[4.53378916,0.02711773,96.06462608],[4.53378863,0.02711601,96.06444424],[4.5337881,0.02711429,96.0642642],[4.53378757,0.02711257,96.06408575],[4.53378703,0.02711085,96.06390864],[4.5337865,0.02710913,96.06373266],[4.53378597,0.02710741,96.06355759],[4.53378544,0.02710569,96.06338319],[4.5337849,0.02710397,96.06320924],[4.53378437,0.02710225,96.06303552],[4.53378384,0.02710053,96.06286181],[4.53378331,0.0270988,96.06268787],[4.53378277,0.02709708,96.06251349],[4.53378224,0.02709536,96.06233845],[4.53378171,0.02709364,96.06216251],[4.53378118,0.02709192,96.06198546],[4.53378065,0.0270902,96.06180708],[4.53378011,0.02708848,96.06162712],[4.53377958,0.02708676,96.06144539],[4.53377905,0.02708504,96.06126164],[4.53377852,0.02708332,96.06107566],[4.53377798,0.0270816,96.06088723],[4.53377745,0.02707988,96.06069612],[4.53377692,0.02707815,96.0605021],[4.53377639,0.02707643,96.06030496],[4.53377585,0.02707471,96.06010447],[4.53377532,0.02707299,96.05990041],[4.53377479,0.02707127,96.05969255],[4.53377425,0.02706955,96.05948068],[4.53377372,0.02706783,96.05926457],[4.53377319,0.02706611,96.059044],[4.53377266,0.02706439,96.05881873],[4.53377212,0.02706267,96.05858857],[4.53377159,0.02706095,96.05835327],[4.53377105,0.02705923,96.05811262],[4.53377052,0.02705751,96.05786639],[4.53376999,0.02705579,96.05761437],[4.53376945,0.02705407,96.05735632],[4.53376892,0.02705235,96.05709203],[4.53376838,0.02705063,96.05682128],[4.53376785,0.02704891,96.05654384],[4.53376731,0.02704719,96.0562595],[4.53376678,0.02704547,96.05596802],[4.53376624,0.02704375,96.05566919],[4.53376571,0.02704203,96.05536278],[4.53376517,0.02704031,96.05504858],[4.53376464,0.02703859,96.05472636],[4.5337641,0.02703687,96.0543959],[4.53376357,0.02703515,96.05405698],[4.53376303,0.02703343,96.05370937],[4.53376249,0.02703171,96.05335286],[4.53376195,0.02702999,96.05298722],[4.53376142,0.02702827,96.05261224],[4.53376088,0.02702655,96.05222768],[4.53376034,0.02702483,96.05183333],[4.5337598,0.02702312,96.05142896],[4.53375926,0.0270214,96.05101437],[4.53375873,0.02701968,96.05058931],[4.53375819,0.02701796,96.05015358],[4.53375765,0.02701624,96.04970694],[4.53375711,0.02701452,96.04924919],[4.53375657,0.0270128,96.04878009],[4.53375603,0.02701109,96.04829943],[4.53375549,0.02700937,96.04780699],[4.53375495,0.02700765,96.04730253],[4.53375441,0.02700593,96.04678585],[4.53375387,0.02700421,96.04625672],[4.53375333,0.02700249,96.04571492],[4.53375279,0.02700078,96.04516022],[4.53375225,0.02699906,96.04459241],[4.53375171,0.02699734,96.04401127],[4.53375117,0.02699562,96.04341657],[4.53375063,0.02699391,96.04280809],[4.5337501,0.02699219,96.04218561],[4.53374956,0.02699047,96.04154891],[4.53374902,0.02698875,96.04089776],[4.53374848,0.02698703,96.04023195],[4.53374794,0.02698531,96.03955125],[4.53374741,0.02698359,96.03885545],[4.53374687,0.02698187,96.03814431],[4.53374634,0.02698015,96.03741764],[4.5337458,0.02697843,96.03667539],[4.53374527,0.02697671,96.03591776],[4.53374473,0.02697499,96.03514492],[4.5337442,0.02697327,96.03435704],[4.53374367,0.02697155,96.03355432],[4.53374314,0.02696983,96.03273693],[4.53374261,0.02696811,96.03190505],[4.53374208,0.02696639,96.03105886],[4.53374155,0.02696466,96.03019854],[4.53374102,0.02696294,96.02932427],[4.53374049,0.02696122,96.02843624],[4.53373997,0.0269595,96.02753462],[4.53373944,0.02695777,96.02661959],[4.53373892,0.02695605,96.02569133],[4.53373839,0.02695433,96.02475002],[4.53373787,0.0269526,96.02379584],[4.53373735,0.02695088,96.02282898],[4.53373683,0.02694916,96.0218496],[4.5337363,0.02694743,96.02085789],[4.53373578,0.02694571,96.01985403],[4.53373526,0.02694398,96.01883819],[4.53373474,0.02694226,96.01781057],[4.53373422,0.02694053,96.01677132],[4.5337337,0.02693881,96.01572064],[4.53373319,0.02693708,96.01465869],[4.53373267,0.02693536,96.01358567],[4.53373215,0.02693363,96.01250174],[4.53373163,0.02693191,96.01140709],[4.53373111,0.02693018,96.01030192],[4.53373059,0.02692846,96.0091864],[4.53373008,0.02692673,96.00806074],[4.53372956,0.02692501,96.00692513],[4.53372904,0.02692328,96.00577974],[4.53372852,0.02692156,96.00462479],[4.533728,0.02691983,96.00346045],[4.53372748,0.0269181,96.00228692],[4.53372696,0.02691638,96.00110439],[4.53372644,0.02691465,95.99991305],[4.53372592,0.02691293,95.9987131],[4.5337254,0.02691121,95.99750471],[4.53372488,0.02690948,95.99628808],[4.53372436,0.02690776,95.99506337],[4.53372384,0.02690603,95.99383078],[4.53372332,0.02690431,95.99259048],[4.5337228,0.02690258,95.99134266],[4.53372228,0.02690086,95.9900875],[4.53372176,0.02689913,95.98882517],[4.53372124,0.02689741,95.98755587],[4.53372071,0.02689569,95.98627976],[4.53372019,0.02689396,95.98499704],[4.53371967,0.02689224,95.98370788],[4.53371915,0.02689051,95.98241247],[4.53371862,0.02688879,95.98111098],[4.5337181,0.02688707,95.9798036],[4.53371758,0.02688534,95.97849051],[4.53371706,0.02688362,95.97717189],[4.53371653,0.02688189,95.97584791],[4.53371601,0.02688017,95.97451878],[4.53371549,0.02687845,95.97318465],[4.53371496,0.02687672,95.97184572],[4.53371444,0.026875,95.97050217],[4.53371392,0.02687328,95.96915418],[4.53371339,0.02687155,95.96780192],[4.53371287,0.02686983,95.96644559],[4.53371235,0.0268681,95.96508535],[4.53371182,0.02686638,95.9637214],[4.5337113,0.02686466,95.96235392],[4.53371078,0.02686293,95.96098308],[4.53371025,0.02686121,95.95960907],[4.53370973,0.02685949,95.95823207],[4.5337092,0.02685776,95.95685225],[4.53370868,0.02685604,95.95546981],[4.53370816,0.02685432,95.95408492],[4.53370764,0.02685259,95.95269777],[4.53370711,0.02685087,95.95130853],[4.53370659,0.02684914,95.94991739],[4.53370607,0.02684742,95.94852453],[4.53370554,0.0268457,95.94713013],[4.53370502,0.02684397,95.94573437],[4.5337045,0.02684225,95.94433743],[4.53370398,0.02684052,95.94293951],[4.53370345,0.0268388,95.94154076],[4.53370293,0.02683707,95.94014139],[4.53370241,0.02683535,95.93874157],[4.53370189,0.02683363,95.93734148],[4.53370137,0.0268319,95.9359413],[4.53370085,0.02683018,95.93454122],[4.53370033,0.02682845,95.93314141],[4.53369981,0.02682673,95.93174207],[4.53369928,0.026825,95.93034337],[4.53369876,0.02682328,95.92894549],[4.53369824,0.02682155,95.92754861],[4.53369773,0.02681983,95.92615292],[4.53369721,0.0268181,95.9247586],[4.53369669,0.02681638,95.92336584],[4.53369617,0.02681465,95.9219748],[4.53369565,0.02681293,95.92058568],[4.53369513,0.0268112,95.91919866],[4.53369461,0.02680948,95.91781392],[4.53369409,0.02680775,95.91643164],[4.53369357,0.02680603,95.915052],[4.53369306,0.0268043,95.91367519],[4.53369254,0.02680258,95.91230139],[4.53369202,0.02680085,95.91093078],[4.5336915,0.02679913,95.90956355],[4.53369098,0.0267974,95.90819987],[4.53369046,0.02679568,95.90683992],[4.53368994,0.02679395,95.9054839],[4.53368942,0.02679223,95.90413199],[4.5336889,0.0267905,95.90278436],[4.53368838,0.02678878,95.9014412],[4.53368786,0.02678705,95.90010269],[4.53368734,0.02678533,95.89876902],[4.53368681,0.0267836,95.89744036],[4.53368629,0.02678188,95.89611691],[4.53368577,0.02678016,95.89479884],[4.53368524,0.02677843,95.89348633],[4.53368472,0.02677671,95.89217958],[4.53368419,0.02677498,95.89087875],[4.53368367,0.02677326,95.88958405],[4.53368314,0.02677154,95.88829564],[4.53368262,0.02676981,95.88701371],[4.5336821,0.02676809,95.88573845],[4.53368157,0.02676637,95.88447004],[4.53368105,0.02676464,95.88320866],[4.53368053,0.02676292,95.8819545],[4.53368001,0.02676119,95.88070774],[4.53367949,0.02675947,95.87946856],[4.53367898,0.02675774,95.87823714],[4.53367847,0.02675601,95.87701368],[4.53367796,0.02675428,95.87579835],[4.53367745,0.02675256,95.87459134],[4.53367694,0.02675083,95.87339279],[4.53367643,0.0267491,95.87220269],[4.53367591,0.02674737,95.87102099],[4.53367538,0.02674565,95.86984762],[4.53367485,0.02674393,95.86868254],[4.5336743,0.02674221,95.86752568],[4.53367405,0.02674143,95.86700215],[4.53371402,0.02672866,95.86700215],[4.53371427,0.02672944,95.86752568],[4.53371481,0.02673115,95.86868254],[4.53371536,0.02673287,95.86984762],[4.5337159,0.02673459,95.87102099],[4.53371645,0.02673631,95.87220269],[4.533717,0.02673802,95.87339279],[4.53371754,0.02673974,95.87459134],[4.53371809,0.02674146,95.87579835],[4.53371864,0.02674317,95.87701368],[4.53371918,0.02674489,95.87823714],[4.53371973,0.02674661,95.87946856],[4.53372027,0.02674833,95.88070774],[4.53372082,0.02675004,95.8819545],[4.53372137,0.02675176,95.88320866],[4.53372191,0.02675348,95.88447004],[4.53372246,0.02675519,95.88573845],[4.533723,0.02675691,95.88701371],[4.53372355,0.02675863,95.88829564],[4.53372409,0.02676035,95.88958405],[4.53372464,0.02676206,95.89087875],[4.53372519,0.02676378,95.89217958],[4.53372573,0.0267655,95.89348633],[4.53372628,0.02676722,95.89479884],[4.53372682,0.02676893,95.89611691],[4.53372737,0.02677065,95.89744036],[4.53372791,0.02677237,95.89876902],[4.53372846,0.02677408,95.90010269],[4.533729,0.0267758,95.9014412],[4.53372955,0.02677752,95.90278436],[4.53373009,0.02677924,95.90413199],[4.53373064,0.02678095,95.9054839],[4.53373118,0.02678267,95.90683992],[4.53373173,0.02678439,95.90819987],[4.53373227,0.02678611,95.90956355],[4.53373282,0.02678782,95.91093078],[4.53373336,0.02678954,95.91230139],[4.53373391,0.02679126,95.91367519],[4.53373445,0.02679298,95.915052],[4.53373499,0.02679469,95.91643164],[4.53373554,0.02679641,95.91781392],[4.53373608,0.02679813,95.91919866],[4.53373663,0.02679985,95.92058568],[4.53373717,0.02680157,95.9219748],[4.53373772,0.02680328,95.92336584],[4.53373826,0.026805,95.9247586],[4.53373881,0.02680672,95.92615292],[4.53373935,0.02680844,95.92754861],[4.53373989,0.02681015,95.92894549],[4.53374044,0.02681187,95.93034337],[4.53374098,0.02681359,95.93174207],[4.53374153,0.02681531,95.93314141],[4.53374207,0.02681702,95.93454122],[4.53374261,0.02681874,95.9359413],[4.53374316,0.02682046,95.93734148],[4.5337437,0.02682218,95.93874157],[4.53374424,0.0268239,95.94014139],[4.53374479,0.02682561,95.94154076],[4.53374533,0.02682733,95.94293951],[4.53374587,0.02682905,95.94433743],[4.53374642,0.02683077,95.94573437],[4.53374696,0.02683249,95.94713013],[4.5337475,0.0268342,95.94852453],[4.53374805,0.02683592,95.94991739],[4.53374859,0.02683764,95.95130853],[4.53374913,0.02683936,95.95269777],[4.53374968,0.02684108,95.95408492],[4.53375022,0.02684279,95.95546981],[4.53375076,0.02684451,95.95685225],[4.53375131,0.02684623,95.95823207],[4.53375185,0.02684795,95.95960907],[4.53375239,0.02684967,95.96098308],[4.53375293,0.02685138,95.96235392],[4.53375348,0.0268531,95.9637214],[4.53375402,0.02685482,95.96508535],[4.53375456,0.02685654,95.96644559],[4.5337551,0.02685826,95.96780192],[4.53375565,0.02685997,95.96915418],[4.53375619,0.02686169,95.97050217],[4.53375673,0.02686341,95.97184572],[4.53375727,0.02686513,95.97318465],[4.53375782,0.02686685,95.97451878],[4.53375836,0.02686857,95.97584791],[4.5337589,0.02687028,95.97717189],[4.53375944,0.026872,95.97849051],[4.53375998,0.02687372,95.9798036],[4.53376053,0.02687544,95.98111098],[4.53376107,0.02687716,95.98241247],[4.53376161,0.02687888,95.98370788],[4.53376215,0.02688059,95.98499704],[4.53376269,0.02688231,95.98627976],[4.53376323,0.02688403,95.98755587],[4.53376378,0.02688575,95.98882517],[4.53376432,0.02688747,95.9900875],[4.53376486,0.02688919,95.99134266],[4.5337654,0.02689091,95.99259048],[4.53376594,0.02689262,95.99383078],[4.53376648,0.02689434,95.99506337],[4.53376702,0.02689606,95.99628808],[4.53376756,0.02689778,95.99750471],[4.53376811,0.0268995,95.9987131],[4.53376865,0.02690122,95.99991305],[4.53376919,0.02690294,96.00110439],[4.53376973,0.02690465,96.00228692],[4.53377027,0.02690637,96.00346045],[4.53377081,0.02690809,96.00462479],[4.53377135,0.02690981,96.00577974],[4.53377189,0.02691153,96.00692513],[4.53377243,0.02691325,96.00806074],[4.53377297,0.02691497,96.0091864],[4.53377351,0.02691669,96.01030192],[4.53377405,0.02691841,96.01140709],[4.53377459,0.02692012,96.01250174],[4.53377513,0.02692184,96.01358567],[4.53377567,0.02692356,96.01465869],[4.53377621,0.02692528,96.01572064],[4.53377675,0.026927,96.01677132],[4.53377729,0.02692872,96.01781057],[4.53377783,0.02693044,96.01883819],[4.53377837,0.02693216,96.01985403],[4.53377891,0.02693388,96.02085789],[4.53377945,0.0269356,96.0218496],[4.53377999,0.02693732,96.02282898],[4.53378052,0.02693903,96.02379584],[4.53378106,0.02694075,96.02475002],[4.5337816,0.02694247,96.02569133],[4.53378214,0.02694419,96.02661959],[4.53378268,0.02694591,96.02753462],[4.53378322,0.02694763,96.02843624],[4.53378376,0.02694935,96.02932427],[4.53378429,0.02695107,96.03019854],[4.53378483,0.02695279,96.03105886],[4.53378537,0.02695451,96.03190505],[4.53378591,0.02695623,96.03273693],[4.53378645,0.02695795,96.03355432],[4.53378698,0.02695967,96.03435704],[4.53378752,0.02696139,96.03514492],[4.53378806,0.02696311,96.03591776],[4.5337886,0.02696483,96.03667539],[4.53378913,0.02696655,96.03741764],[4.53378967,0.02696827,96.03814431],[4.53379021,0.02696999,96.03885545],[4.53379074,0.02697171,96.03955125],[4.53379128,0.02697343,96.04023195],[4.53379182,0.02697515,96.04089776],[4.53379236,0.02697687,96.04154891],[4.53379289,0.02697859,96.04218561],[4.53379343,0.02698031,96.04280809],[4.53379397,0.02698203,96.04341657],[4.5337945,0.02698375,96.04401127],[4.53379504,0.02698547,96.04459241],[4.53379557,0.02698718,96.04516022],[4.53379611,0.0269889,96.04571492],[4.53379665,0.02699062,96.04625672],[4.53379718,0.02699234,96.04678585],[4.53379772,0.02699406,96.04730253],[4.53379826,0.02699578,96.04780699],[4.53379879,0.0269975,96.04829943],[4.53379933,0.02699922,96.04878009],[4.53379986,0.02700094,96.04924919],[4.5338004,0.02700266,96.04970694],[4.53380093,0.02700438,96.05015358],[4.53380147,0.0270061,96.05058931],[4.53380201,0.02700783,96.05101437],[4.53380254,0.02700955,96.05142896],[4.53380308,0.02701127,96.05183333],[4.53380361,0.02701299,96.05222768],[4.53380415,0.02701471,96.05261224],[4.53380468,0.02701643,96.05298722],[4.53380522,0.02701815,96.05335286],[4.53380575,0.02701987,96.05370937],[4.53380629,0.02702159,96.05405698],[4.53380682,0.02702331,96.0543959],[4.53380736,0.02702503,96.05472636],[4.53380789,0.02702675,96.05504858],[4.53380843,0.02702847,96.05536278],[4.53380896,0.02703019,96.05566919],[4.5338095,0.02703191,96.05596802],[4.53381003,0.02703363,96.0562595],[4.53381057,0.02703535,96.05654384],[4.5338111,0.02703707,96.05682128],[4.53381164,0.02703879,96.05709203],[4.53381217,0.02704051,96.05735632],[4.53381271,0.02704224,96.05761437],[4.53381324,0.02704396,96.05786639],[4.53381378,0.02704568,96.05811262],[4.53381431,0.0270474,96.05835327],[4.53381484,0.02704912,96.05858857],[4.53381538,0.02705084,96.05881873],[4.53381591,0.02705256,96.059044],[4.53381645,0.02705428,96.05926457],[4.53381698,0.027056,96.05948068],[4.53381752,0.02705772,96.05969255],[4.53381805,0.02705944,96.05990041],[4.53381858,0.02706116,96.06010447],[4.53381912,0.02706288,96.06030496],[4.53381965,0.02706461,96.0605021],[4.53382019,0.02706633,96.06069612],[4.53382072,0.02706805,96.06088723],[4.53382125,0.02706977,96.06107566],[4.53382179,0.02707149,96.06126164],[4.53382232,0.02707321,96.06144539],[4.53382286,0.02707493,96.06162712],[4.53382339,0.02707665,96.06180708],[4.53382392,0.02707837,96.06198546],[4.53382446,0.02708009,96.06216251],[4.53382499,0.02708181,96.06233845],[4.53382553,0.02708354,96.06251349],[4.53382606,0.02708526,96.06268787],[4.53382659,0.02708698,96.06286181],[4.53382713,0.0270887,96.06303552],[4.53382766,0.02709042,96.06320924],[4.53382819,0.02709214,96.06338319],[4.53382873,0.02709386,96.06355759],[4.53382926,0.02709558,96.06373266],[4.5338298,0.0270973,96.06390864],[4.53383033,0.02709902,96.06408575],[4.53383086,0.02710075,96.0642642],[4.5338314,0.02710247,96.06444424],[4.53383193,0.02710419,96.06462608],[4.53383246,0.02710591,96.06480996],[4.533833,0.02710763,96.06499612],[4.53383353,0.02710935,96.06518477],[4.53383407,0.02711107,96.06537614],[4.5338346,0.02711279,96.06557048],[4.53383513,0.02711451,96.06576801],[4.53383567,0.02711623,96.06596896],[4.5338362,0.02711796,96.06617356],[4.53383673,0.02711968,96.06638206],[4.53383727,0.0271214,96.06659467],[4.5338378,0.02712312,96.06681165],[4.53383834,0.02712484,96.06703323],[4.53383887,0.02712656,96.06725964],[4.5338394,0.02712828,96.06749112],[4.53383994,0.02713,96.0677279],[4.53384047,0.02713172,96.06797023],[4.533841,0.02713344,96.06821833],[4.53384154,0.02713516,96.06847244],[4.53384207,0.02713689,96.06873281],[4.53384261,0.02713861,96.06899966],[4.53384314,0.02714033,96.06927323],[4.53384368,0.02714205,96.06955377],[4.53384421,0.02714377,96.06984151],[4.53384475,0.02714549,96.07013667],[4.53384528,0.02714721,96.07043951],[4.53384581,0.02714893,96.07075026],[4.53384635,0.02715065,96.07106916],[4.53384688,0.02715237,96.07139643],[4.53384742,0.02715409,96.07173233],[4.53384795,0.02715581,96.07207709],[4.53384849,0.02715753,96.07243093],[4.53384903,0.02715925,96.0727941],[4.53384956,0.02716097,96.07316682],[4.5338501,0.0271627,96.07354933],[4.53385063,0.02716442,96.07394186],[4.53385117,0.02716614,96.07434465],[4.5338517,0.02716786,96.07475791],[4.53385224,0.02716958,96.0751819],[4.53385278,0.0271713,96.07561683],[4.53385331,0.02717302,96.07606295],[4.53385385,0.02717474,96.07652047],[4.53385439,0.02717646,96.07698965],[4.53385492,0.02717818,96.0774707],[4.53385546,0.0271799,96.07796386],[4.533856,0.02718162,96.07846935],[4.53385654,0.02718334,96.07898743],[4.53385707,0.02718506,96.0795183],[4.53385761,0.02718678,96.08006221],[4.53385815,0.0271885,96.08061939],[4.53385869,0.02719022,96.08119006],[4.53385922,0.02719194,96.08177446],[4.53385976,0.02719366,96.0823728],[4.5338603,0.02719537,96.0829853],[4.53386084,0.02719709,96.08361212],[4.53386138,0.02719881,96.08425345],[4.53386192,0.02720053,96.08490948],[4.53386246,0.02720225,96.0855804],[4.533863,0.02720397,96.08626638],[4.53386354,0.02720569,96.08696761],[4.53386407,0.02720741,96.08768427],[4.53386461,0.02720913,96.08841654],[4.53386515,0.02721085,96.0891644],[4.53386569,0.02721257,96.08992761],[4.53386623,0.02721429,96.09070596],[4.53386677,0.02721601,96.09149921],[4.53386731,0.02721773,96.09230712],[4.53386785,0.02721945,96.09312947],[4.53386839,0.02722116,96.09396603],[4.53386893,0.02722288,96.09481656],[4.53386947,0.0272246,96.09568084],[4.53387001,0.02722632,96.09655862],[4.53387055,0.02722804,96.09744969],[4.53387109,0.02722976,96.09835382],[4.53387163,0.02723148,96.09927076],[4.53387217,0.0272332,96.10020029],[4.5338727,0.02723492,96.10114218],[4.53387324,0.02723664,96.1020962],[4.53387378,0.02723836,96.10306213],[4.53387432,0.02724008,96.10403972],[4.53387486,0.0272418,96.10502876],[4.5338754,0.02724352,96.10602901],[4.53387593,0.02724524,96.10704024],[4.53387647,0.02724696,96.10806226],[4.53387701,0.02724868,96.10909489],[4.53387755,0.0272504,96.11013795],[4.53387808,0.02725212,96.11119128],[4.53387862,0.02725384,96.1122547],[4.53387916,0.02725556,96.11332803],[4.5338797,0.02725728,96.11441111],[4.53388023,0.027259,96.11550376],[4.53388077,0.02726072,96.11660581],[4.53388131,0.02726244,96.11771709],[4.53388184,0.02726416,96.11883742],[4.53388238,0.02726588,96.11996663],[4.53388291,0.0272676,96.12110454],[4.53388345,0.02726932,96.12225099],[4.53388399,0.02727104,96.12340581],[4.53388452,0.02727276,96.12456881],[4.53388506,0.02727448,96.12573982],[4.53388559,0.0272762,96.12691868],[4.53388613,0.02727792,96.1281052],[4.53388666,0.02727964,96.12929922],[4.5338872,0.02728136,96.13050056],[4.53388774,0.02728308,96.13170905],[4.53388827,0.0272848,96.13292451],[4.53388881,0.02728652,96.13414681],[4.53388934,0.02728824,96.13537581],[4.53388988,0.02728996,96.13661135],[4.53389041,0.02729168,96.13785329],[4.53389095,0.02729341,96.13910142],[4.53389148,0.02729513,96.14035551],[4.53389202,0.02729685,96.14161533],[4.53389255,0.02729857,96.14288066],[4.53389309,0.02730029,96.14415128],[4.53389362,0.02730201,96.14542697],[4.53389416,0.02730373,96.14670749],[4.53389469,0.02730545,96.14799263],[4.53389523,0.02730717,96.14928216],[4.53389576,0.02730889,96.15057585],[4.5338963,0.02731061,96.1518735],[4.53389683,0.02731233,96.15317487],[4.53389737,0.02731405,96.15447974],[4.5338979,0.02731577,96.15578789],[4.53389844,0.0273175,96.1570991],[4.53389897,0.02731922,96.15841315],[4.5338995,0.02732094,96.15972982],[4.53390004,0.02732266,96.16104888],[4.53390057,0.02732438,96.16237013],[4.53390111,0.0273261,96.16369333],[4.53390164,0.02732782,96.16501826],[4.53390217,0.02732954,96.16634472],[4.5339027,0.02733126,96.16767248],[4.53390324,0.02733299,96.16900132],[4.53390377,0.02733471,96.17033103],[4.5339043,0.02733643,96.1716614],[4.53390483,0.02733815,96.17299222],[4.53390536,0.02733987,96.17432332],[4.5339059,0.02734159,96.17565452],[4.53390643,0.02734332,96.17698566],[4.53390696,0.02734504,96.17831656],[4.53390749,0.02734676,96.17964705],[4.53390802,0.02734848,96.18097697],[4.53390855,0.02735021,96.18230614],[4.53390908,0.02735193,96.18363438],[4.53390961,0.02735365,96.18496154],[4.53391014,0.02735537,96.18628744],[4.53391067,0.0273571,96.1876119],[4.5339112,0.02735882,96.18893476],[4.53391173,0.02736054,96.19025583],[4.53391225,0.02736226,96.19157496],[4.53391278,0.02736399,96.19289195],[4.53391331,0.02736571,96.19420666],[4.53391384,0.02736743,96.19551889],[4.53391437,0.02736915,96.19682847],[4.5339149,0.02737088,96.19813524],[4.53391542,0.0273726,96.19943901],[4.53391595,0.02737432,96.20073961],[4.53391648,0.02737605,96.20203688],[4.53391701,0.02737777,96.20333062],[4.53391753,0.02737949,96.20462067],[4.53391806,0.02738122,96.20590685],[4.53391859,0.02738294,96.20718899],[4.53391911,0.02738466,96.20846691],[4.53391964,0.02738639,96.20974043],[4.53392017,0.02738811,96.21100937],[4.53392069,0.02738983,96.21227357],[4.53392122,0.02739156,96.21353284],[4.53392175,0.02739328,96.214787],[4.53392227,0.027395,96.21603588],[4.5339228,0.02739673,96.2172793],[4.53392333,0.02739845,96.21851708],[4.53392385,0.02740017,96.21974904],[4.53392438,0.0274019,96.22097501],[4.53392491,0.02740362,96.2221948],[4.53392543,0.02740534,96.22340827],[4.53392596,0.02740707,96.22461543],[4.53392649,0.02740879,96.22581632],[4.53392701,0.02741051,96.22701097],[4.53392754,0.02741224,96.22819944],[4.53392807,0.02741396,96.22938175],[4.53392859,0.02741568,96.23055795],[4.53392912,0.02741741,96.23172807],[4.53392964,0.02741913,96.23289217],[4.53393017,0.02742086,96.23405027],[4.5339307,0.02742258,96.23520243],[4.53393122,0.0274243,96.23634867],[4.53393175,0.02742603,96.23748903],[4.53393228,0.02742775,96.23862356],[4.5339328,0.02742947,96.2397523],[4.53393333,0.0274312,96.24087529],[4.53393386,0.02743292,96.24199259],[4.53393439,0.02743464,96.24310432],[4.53393491,0.02743637,96.24421058],[4.53393544,0.02743809,96.24531146],[4.53393597,0.02743981,96.24640709],[4.5339365,0.02744153,96.24749755],[4.53393702,0.02744326,96.24858293],[4.53393755,0.02744498,96.24966329],[4.53393808,0.0274467,96.25073862],[4.53393861,0.02744843,96.25180897],[4.53393914,0.02745015,96.25287435],[4.53393967,0.02745187,96.25393478],[4.5339402,0.02745359,96.25499028],[4.53394073,0.02745532,96.25604089],[4.53394126,0.02745704,96.25708662],[4.53394179,0.02745876,96.25812749],[4.53394232,0.02746048,96.25916354],[4.53394285,0.0274622,96.26019477],[4.53394339,0.02746393,96.26122122],[4.53394392,0.02746565,96.26224292],[4.53394445,0.02746737,96.26325987],[4.53394498,0.02746909,96.26427212],[4.53394552,0.02747081,96.26527968],[4.53394605,0.02747253,96.26628257],[4.53394658,0.02747425,96.26728083],[4.53394712,0.02747598,96.26827447],[4.53394765,0.0274777,96.26926352],[4.53394819,0.02747942,96.27024801],[4.53394872,0.02748114,96.27122796],[4.53394926,0.02748286,96.27220339],[4.53394979,0.02748458,96.27317433],[4.53395033,0.0274863,96.27414081],[4.53395086,0.02748802,96.27510285],[4.5339514,0.02748974,96.27606048],[4.53395194,0.02749146,96.27701372],[4.53395247,0.02749318,96.2779626],[4.53395301,0.0274949,96.27890714],[4.53395355,0.02749662,96.27984737],[4.53395409,0.02749834,96.28078332],[4.53395463,0.02750006,96.28171501],[4.53395516,0.02750178,96.28264244],[4.5339557,0.0275035,96.2835656],[4.53395624,0.02750522,96.28448445],[4.53395678,0.02750694,96.28539898],[4.53395732,0.02750866,96.28630917],[4.53395786,0.02751038,96.28721499],[4.5339584,0.0275121,96.28811641],[4.53395894,0.02751382,96.28901343],[4.53395948,0.02751554,96.28990601],[4.53396002,0.02751726,96.29079414],[4.53396056,0.02751897,96.2916778],[4.5339611,0.02752069,96.29255696],[4.53396164,0.02752241,96.2934316],[4.53396218,0.02752413,96.29430171],[4.53396272,0.02752585,96.29516726],[4.53396326,0.02752757,96.29602823],[4.5339638,0.02752929,96.2968846],[4.53396434,0.02753101,96.29773635],[4.53396488,0.02753273,96.29858347],[4.53396542,0.02753445,96.29942592],[4.53396596,0.02753617,96.3002637],[4.5339665,0.02753789,96.30109684],[4.53396704,0.0275396,96.30192537],[4.53396758,0.02754132,96.30274934],[4.53396812,0.02754304,96.30356877],[4.53396866,0.02754476,96.30438371],[4.5339692,0.02754648,96.3051942],[4.53396974,0.0275482,96.30600026],[4.53397028,0.02754992,96.30680194],[4.53397082,0.02755164,96.30759927],[4.53397136,0.02755336,96.30839229],[4.5339719,0.02755508,96.30918104],[4.53397243,0.0275568,96.30996556],[4.53397297,0.02755852,96.31074588],[4.53397351,0.02756024,96.31152203],[4.53397405,0.02756196,96.31229406],[4.53397459,0.02756368,96.313062],[4.53397513,0.0275654,96.31382589],[4.53397566,0.02756712,96.31458576],[4.5339762,0.02756884,96.31534165],[4.53397674,0.02757056,96.3160936],[4.53397728,0.02757228,96.31684165],[4.53397782,0.027574,96.31758582],[4.53397836,0.02757572,96.31832617],[4.53397889,0.02757744,96.31906272],[4.53397943,0.02757916,96.3197955],[4.53397997,0.02758088,96.32052456],[4.53398051,0.0275826,96.32124991],[4.53398104,0.02758432,96.32197159],[4.53398158,0.02758604,96.32268962],[4.53398212,0.02758776,96.32340405],[4.53398266,0.02758948,96.32411489],[4.5339832,0.0275912,96.32482218],[4.53398373,0.02759292,96.32552595],[4.53398427,0.02759464,96.32622623],[4.53398481,0.02759636,96.32692304],[4.53398535,0.02759808,96.32761642],[4.53398588,0.0275998,96.3283064],[4.53398642,0.02760152,96.32899301],[4.53398696,0.02760324,96.32967627],[4.5339875,0.02760496,96.33035622],[4.53398803,0.02760668,96.33103289],[4.53398857,0.0276084,96.33170631],[4.53398911,0.02761012,96.33237651],[4.53398965,0.02761184,96.33304351],[4.53399018,0.02761356,96.33370735],[4.53399072,0.02761528,96.33436806],[4.53399126,0.027617,96.33502566],[4.5339918,0.02761872,96.33568019],[4.53399233,0.02762044,96.33633168],[4.53399287,0.02762216,96.33698016],[4.53399341,0.02762388,96.33762566],[4.53399395,0.0276256,96.3382682],[4.53399448,0.02762732,96.33890782],[4.53399502,0.02762904,96.33954454],[4.53399556,0.02763076,96.34017841],[4.5339961,0.02763248,96.34080944],[4.53399663,0.0276342,96.34143767],[4.53399717,0.02763592,96.34206312],[4.53399771,0.02763764,96.34268583],[4.53399824,0.02763936,96.34330583],[4.53399878,0.02764108,96.34392315],[4.53399932,0.0276428,96.34453781],[4.53399986,0.02764452,96.34514985],[4.53400039,0.02764624,96.3457593],[4.53400093,0.02764796,96.34636619],[4.53400147,0.02764968,96.34697054],[4.53400201,0.0276514,96.34757239],[4.53400254,0.02765312,96.34817177],[4.53400308,0.02765484,96.3487687],[4.53400362,0.02765656,96.34936323],[4.53400416,0.02765828,96.34995537],[4.53400469,0.02766,96.35054516],[4.53400523,0.02766172,96.35113262],[4.53400577,0.02766344,96.3517178],[4.53400631,0.02766517,96.35230071],[4.53400684,0.02766689,96.35288139],[4.53400738,0.02766861,96.35345987],[4.53400792,0.02767033,96.35403617],[4.53400846,0.02767205,96.35461034],[4.534009,0.02767377,96.35518239],[4.53400953,0.02767549,96.35575237],[4.53401007,0.02767721,96.35632026],[4.53401061,0.02767893,96.35688605],[4.53401115,0.02768065,96.35744972],[4.53401168,0.02768237,96.35801125],[4.53401222,0.02768409,96.35857062],[4.53401276,0.02768581,96.35912783],[4.5340133,0.02768753,96.35968289],[4.53401383,0.02768925,96.36023582],[4.53401437,0.02769097,96.36078662],[4.53401491,0.02769269,96.36133532],[4.53401545,0.02769441,96.36188193],[4.53401598,0.02769613,96.36242647],[4.53401652,0.02769785,96.36296894],[4.53401706,0.02769957,96.36350937],[4.53401759,0.02770129,96.36404776],[4.53401813,0.02770301,96.36458414],[4.53401867,0.02770473,96.36511851],[4.5340192,0.02770645,96.36565088],[4.53401974,0.02770817,96.36618128],[4.53402027,0.02770989,96.36670971],[4.53402081,0.02771161,96.36723619],[4.53402135,0.02771333,96.36776073],[4.53402188,0.02771505,96.36828333],[4.53402242,0.02771677,96.36880402],[4.53402295,0.0277185,96.36932281],[4.53402349,0.02772022,96.36983976],[4.53402402,0.02772194,96.3703549],[4.53402456,0.02772366,96.37086831],[4.53402509,0.02772538,96.37138003],[4.53402563,0.0277271,96.37189012],[4.53402616,0.02772882,96.37239863],[4.53402669,0.02773054,96.37290562],[4.53402723,0.02773226,96.37341114],[4.53402776,0.02773399,96.37391525],[4.5340283,0.02773571,96.37441801],[4.53402883,0.02773743,96.37491947],[4.53402937,0.02773915,96.37541969],[4.5340299,0.02774087,96.37591871],[4.53403043,0.02774259,96.37641661],[4.53403097,0.02774431,96.37691343],[4.5340315,0.02774604,96.37740921],[4.53403204,0.02774776,96.37790401],[4.53403257,0.02774948,96.37839789],[4.5340331,0.0277512,96.37889088],[4.53403364,0.02775292,96.37938305],[4.53403417,0.02775464,96.37987443],[4.53403471,0.02775636,96.3803651],[4.53403524,0.02775808,96.38085508],[4.53403578,0.0277598,96.38134445],[4.53403631,0.02776153,96.38183324],[4.53403685,0.02776325,96.38232152],[4.53403738,0.02776497,96.38280932],[4.53403792,0.02776669,96.38329671],[4.53403845,0.02776841,96.38378374],[4.53403899,0.02777013,96.38427046],[4.53403952,0.02777185,96.38475692],[4.53404006,0.02777357,96.38524318],[4.53404059,0.02777529,96.38572927],[4.53404113,0.02777701,96.38621525],[4.53404167,0.02777873,96.38670111],[4.5340422,0.02778045,96.38718683],[4.53404274,0.02778217,96.38767241],[4.53404328,0.02778389,96.38815782],[4.53404382,0.02778562,96.38864306],[4.53404435,0.02778734,96.38912812],[4.53404489,0.02778906,96.38961297],[4.53404543,0.02779078,96.3900976],[4.53404597,0.0277925,96.39058201],[4.5340465,0.02779422,96.39106617],[4.53404704,0.02779594,96.39155007],[4.53404758,0.02779766,96.39203369],[4.53404812,0.02779938,96.39251702],[4.53404866,0.0278011,96.39300004],[4.53404919,0.02780282,96.39348262],[4.53404973,0.02780454,96.39396451],[4.53405027,0.02780626,96.39444546],[4.53405081,0.02780798,96.39492522],[4.53405134,0.0278097,96.39540353],[4.53405188,0.02781142,96.39588014],[4.53405242,0.02781314,96.39635479],[4.53405295,0.02781486,96.39682723],[4.53405349,0.02781658,96.39729718],[4.53405402,0.0278183,96.39776439],[4.53405455,0.02782002,96.39822859],[4.53405508,0.02782175,96.39868952],[4.53405561,0.02782347,96.39914692],[4.53405614,0.02782519,96.3996005],[4.53405667,0.02782692,96.40005001],[4.53405719,0.02782864,96.40049516],[4.53405771,0.02783036,96.40093574],[4.53405824,0.02783209,96.40137164],[4.53405876,0.02783382,96.4018032],[4.53405928,0.02783554,96.40223086],[4.53405979,0.02783727,96.40265506],[4.53406031,0.02783899,96.40307624],[4.53406083,0.02784072,96.40349484],[4.53406134,0.02784245,96.40391132],[4.53406185,0.02784418,96.40432613],[4.53406237,0.0278459,96.40473971],[4.53406288,0.02784763,96.40515253],[4.53406339,0.02784936,96.40556504],[4.53406391,0.02785109,96.40597771],[4.53406442,0.02785282,96.40639099],[4.53406494,0.02785454,96.40680536],[4.53406545,0.02785627,96.40722128],[4.53406597,0.027858,96.40763922],[4.53406648,0.02785972,96.40805966],[4.534067,0.02786145,96.40848307],[4.53406752,0.02786318,96.40890991],[4.53406804,0.0278649,96.40934057],[4.53406856,0.02786663,96.40977532],[4.53406908,0.02786835,96.41021404],[4.5340696,0.02787008,96.41065653],[4.53407013,0.0278718,96.41110257],[4.53407065,0.02787353,96.41155195],[4.53407118,0.02787525,96.41200445],[4.53407171,0.02787697,96.41245985],[4.53407224,0.0278787,96.41291794],[4.53407277,0.02788042,96.4133785],[4.5340733,0.02788214,96.4138413],[4.53407383,0.02788386,96.41430613],[4.53407436,0.02788559,96.41477276],[4.53407489,0.02788731,96.41524095],[4.53407542,0.02788903,96.41571039],[4.53407595,0.02789075,96.41618063],[4.53407648,0.02789247,96.41665125],[4.53407702,0.0278942,96.4171218],[4.53407755,0.02789592,96.41759201],[4.53407808,0.02789764,96.4180619],[4.53407861,0.02789936,96.41853156],[4.53407914,0.02790109,96.41900109],[4.53407967,0.02790281,96.41947058],[4.5340802,0.02790453,96.41994013],[4.53408072,0.02790626,96.42040982],[4.53408125,0.02790798,96.42087975],[4.53408178,0.0279097,96.42135001],[4.53408231,0.02791142,96.4218207],[4.53408284,0.02791315,96.42229192],[4.53408337,0.02791487,96.42276375],[4.5340839,0.02791659,96.4232363],[4.53408442,0.02791832,96.42370966],[4.53408495,0.02792004,96.42418392],[4.53408548,0.02792176,96.42465919],[4.53408601,0.02792349,96.42513556],[4.53408654,0.02792521,96.42561313],[4.53408706,0.02792693,96.426092],[4.53408759,0.02792866,96.42657226],[4.53408812,0.02793038,96.42705401],[4.53408865,0.0279321,96.42753736],[4.53408918,0.02793382,96.42802252],[4.53408971,0.02793555,96.42850982],[4.53409024,0.02793727,96.42899959],[4.53409077,0.02793899,96.42949211],[4.5340913,0.02794071,96.42998739],[4.53409183,0.02794244,96.43048536],[4.53409236,0.02794416,96.43098598],[4.5340929,0.02794588,96.43148917],[4.53409343,0.0279476,96.4319949],[4.53409396,0.02794932,96.43250309],[4.5340945,0.02795105,96.43301368],[4.53409503,0.02795277,96.43352663],[4.53409556,0.02795449,96.43404186],[4.5340961,0.02795621,96.43455932],[4.53409663,0.02795793,96.43507895],[4.53409717,0.02795965,96.43560068],[4.5340977,0.02796137,96.43612446],[4.53409824,0.02796309,96.43665022],[4.53409877,0.02796481,96.43717786],[4.53409931,0.02796654,96.43770715],[4.53409984,0.02796826,96.43823781],[4.53410038,0.02796998,96.43876956],[4.53410091,0.0279717,96.43930213],[4.53410145,0.02797342,96.43983524],[4.53410198,0.02797514,96.44036861],[4.53410252,0.02797686,96.44090196],[4.53410305,0.02797858,96.441435],[4.53410358,0.02798031,96.44196745],[4.53410411,0.02798203,96.44249903],[4.53410464,0.02798375,96.44302944],[4.53410517,0.02798547,96.44355842],[4.5341057,0.0279872,96.44408565],[4.53410623,0.02798892,96.44461087],[4.53410675,0.02799065,96.44513377],[4.53410728,0.02799237,96.44565412],[4.5341078,0.02799409,96.44617189],[4.53410832,0.02799582,96.44668711],[4.53410884,0.02799755,96.4471998],[4.53410936,0.02799927,96.44770999],[4.53410987,0.028001,96.44821776],[4.53411039,0.02800273,96.44872337],[4.5341109,0.02800445,96.44922715],[4.53411142,0.02800618,96.44972942],[4.53411193,0.02800791,96.45023051],[4.53411244,0.02800964,96.45073072],[4.53411295,0.02801137,96.45123028],[4.53411346,0.0280131,96.4517294],[4.53411397,0.02801483,96.45222828],[4.53411447,0.02801656,96.45272714],[4.53411498,0.02801829,96.45322617],[4.53411549,0.02802002,96.45372559],[4.53411599,0.02802175,96.45422561],[4.5341165,0.02802348,96.45472644],[4.53411701,0.02802521,96.45522829],[4.53411751,0.02802694,96.45573138],[4.53411802,0.02802867,96.45623591],[4.53411852,0.0280304,96.45674211],[4.53411903,0.02803213,96.45725018],[4.53411953,0.02803386,96.45776035],[4.53412004,0.02803559,96.45827283],[4.53412054,0.02803732,96.45878784],[4.53412104,0.02803905,96.4593056],[4.53412155,0.02804078,96.45982632],[4.53412206,0.02804251,96.46035023],[4.53412256,0.02804424,96.46087755],[4.53412307,0.02804597,96.4614084],[4.53412357,0.0280477,96.46194284],[4.53412408,0.02804943,96.46248092],[4.53412459,0.02805116,96.46302268],[4.5341251,0.02805289,96.46356819],[4.5341256,0.02805462,96.46411747],[4.53412611,0.02805635,96.4646706],[4.53412662,0.02805808,96.4652276],[4.53412713,0.02805981,96.46578854],[4.53412764,0.02806153,96.46635345],[4.53412815,0.02806326,96.4669224],[4.53412866,0.02806499,96.46749543],[4.53412917,0.02806672,96.46807258],[4.53412969,0.02806845,96.46865391],[4.5341302,0.02807018,96.46923946],[4.53413071,0.0280719,96.46982929],[4.53413122,0.02807363,96.47042346],[4.53413174,0.02807536,96.47102205],[4.53413225,0.02807709,96.47162496],[4.53413277,0.02807881,96.47223208],[4.53413328,0.02808054,96.47284328],[4.5341338,0.02808227,96.47345846],[4.53413431,0.028084,96.47407749],[4.53413483,0.02808572,96.47470024],[4.53413535,0.02808745,96.47532661],[4.53413586,0.02808918,96.47595646],[4.53413638,0.0280909,96.47658967],[4.5341369,0.02809263,96.47722613],[4.53413741,0.02809436,96.47786572],[4.53413793,0.02809608,96.4785083],[4.53413845,0.02809781,96.47915377],[4.53413896,0.02809954,96.47980199],[4.53413948,0.02810126,96.48045285],[4.53414,0.02810299,96.48110621],[4.53414051,0.02810472,96.48176197],[4.53414103,0.02810645,96.48242],[4.53414154,0.02810817,96.48308017],[4.53414206,0.0281099,96.48374236],[4.53414257,0.02811163,96.48440644],[4.53414309,0.02811336,96.48507231],[4.5341436,0.02811508,96.48573985],[4.53414411,0.02811681,96.486409],[4.53414463,0.02811854,96.48707968],[4.53414514,0.02812027,96.48775182],[4.53414565,0.028122,96.48842535],[4.53414616,0.02812372,96.4891002],[4.53414667,0.02812545,96.48977629],[4.53414718,0.02812718,96.49045356],[4.53414769,0.02812891,96.49113193],[4.53414819,0.02813064,96.49181133],[4.5341487,0.02813237,96.49249169],[4.53414921,0.0281341,96.49317294],[4.53414971,0.02813583,96.49385501],[4.53415021,0.02813756,96.49453782],[4.53415072,0.02813929,96.49522135],[4.53415122,0.02814103,96.49590575],[4.53415172,0.02814276,96.49659118],[4.53415222,0.02814449,96.49727784],[4.53415272,0.02814622,96.4979659],[4.53415322,0.02814795,96.49865556],[4.53415372,0.02814969,96.49934699],[4.53415422,0.02815142,96.50004037],[4.53415471,0.02815315,96.5007359],[4.53415521,0.02815488,96.50143374],[4.53415571,0.02815662,96.5021341],[4.5341562,0.02815835,96.50283715],[4.5341567,0.02816008,96.50354307],[4.5341572,0.02816182,96.50425205],[4.53415769,0.02816355,96.50496428],[4.53415819,0.02816528,96.50567993],[4.53415868,0.02816702,96.50639916],[4.53415918,0.02816875,96.507122],[4.53415967,0.02817048,96.50784846],[4.53416017,0.02817222,96.50857854],[4.53416066,0.02817395,96.50931223],[4.53416115,0.02817569,96.51004953],[4.53416165,0.02817742,96.51079046],[4.53416214,0.02817915,96.51153501],[4.53416264,0.02818089,96.51228318],[4.53416313,0.02818262,96.51303498],[4.53416362,0.02818435,96.51379041],[4.53416411,0.02818609,96.51454946],[4.53416461,0.02818782,96.51531215],[4.5341651,0.02818956,96.51607848],[4.53416559,0.02819129,96.51684844],[4.53416608,0.02819302,96.51762204],[4.53416658,0.02819476,96.51839929],[4.53416707,0.02819649,96.51918018],[4.53416756,0.02819823,96.51996473],[4.53416805,0.02819996,96.52075293],[4.53416854,0.0282017,96.52154478],[4.53416903,0.02820343,96.5223403],[4.53416952,0.02820517,96.52313948],[4.53417001,0.0282069,96.52394234],[4.5341705,0.02820864,96.52474886],[4.53417099,0.02821037,96.52555917],[4.53417148,0.02821211,96.52637378],[4.53417197,0.02821384,96.5271933],[4.53417246,0.02821558,96.52801836],[4.53417295,0.02821731,96.52884956],[4.53417344,0.02821905,96.52968752],[4.53417393,0.02822078,96.53053286],[4.53417442,0.02822252,96.53138618],[4.53417491,0.02822425,96.53224809],[4.53417541,0.02822598,96.53311919],[4.5341759,0.02822772,96.53400009],[4.5341764,0.02822945,96.53489139],[4.5341769,0.02823118,96.53579368],[4.5341774,0.02823291,96.53670685],[4.53417791,0.02823464,96.53762786],[4.53417841,0.02823637,96.53855299],[4.53417891,0.0282381,96.53947852],[4.53417941,0.02823983,96.54040074],[4.5341799,0.02824156,96.54131597],[4.53418039,0.0282433,96.54222053],[4.53418087,0.02824504,96.54311075],[4.53418135,0.02824677,96.54398301],[4.53418181,0.02824851,96.54483368],[4.53413895,0.02826181,96.54483368]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-5,"type":"none","predecessorId":0,"sOffset":0.0}},{"geometry":{"coordinates":[[[4.53418181,0.02824851,96.54483368],[4.53418135,0.02824677,96.54398301],[4.53418087,0.02824504,96.54311075],[4.53418039,0.0282433,96.54222053],[4.5341799,0.02824156,96.54131597],[4.53417941,0.02823983,96.54040074],[4.53417891,0.0282381,96.53947852],[4.53417841,0.02823637,96.53855299],[4.53417791,0.02823464,96.53762786],[4.5341774,0.02823291,96.53670685],[4.5341769,0.02823118,96.53579368],[4.5341764,0.02822945,96.53489139],[4.5341759,0.02822772,96.53400009],[4.53417541,0.02822598,96.53311919],[4.53417491,0.02822425,96.53224809],[4.53417442,0.02822252,96.53138618],[4.53417393,0.02822078,96.53053286],[4.53417344,0.02821905,96.52968752],[4.53417295,0.02821731,96.52884956],[4.53417246,0.02821558,96.52801836],[4.53417197,0.02821384,96.5271933],[4.53417148,0.02821211,96.52637378],[4.53417099,0.02821037,96.52555917],[4.5341705,0.02820864,96.52474886],[4.53417001,0.0282069,96.52394234],[4.53416952,0.02820517,96.52313948],[4.53416903,0.02820343,96.5223403],[4.53416854,0.0282017,96.52154478],[4.53416805,0.02819996,96.52075293],[4.53416756,0.02819823,96.51996473],[4.53416707,0.02819649,96.51918018],[4.53416658,0.02819476,96.51839929],[4.53416608,0.02819302,96.51762204],[4.53416559,0.02819129,96.51684844],[4.5341651,0.02818956,96.51607848],[4.53416461,0.02818782,96.51531215],[4.53416411,0.02818609,96.51454946],[4.53416362,0.02818435,96.51379041],[4.53416313,0.02818262,96.51303498],[4.53416264,0.02818089,96.51228318],[4.53416214,0.02817915,96.51153501],[4.53416165,0.02817742,96.51079046],[4.53416115,0.02817569,96.51004953],[4.53416066,0.02817395,96.50931223],[4.53416017,0.02817222,96.50857854],[4.53415967,0.02817048,96.50784846],[4.53415918,0.02816875,96.507122],[4.53415868,0.02816702,96.50639916],[4.53415819,0.02816528,96.50567993],[4.53415769,0.02816355,96.50496428],[4.5341572,0.02816182,96.50425205],[4.5341567,0.02816008,96.50354307],[4.5341562,0.02815835,96.50283715],[4.53415571,0.02815662,96.5021341],[4.53415521,0.02815488,96.50143374],[4.53415471,0.02815315,96.5007359],[4.53415422,0.02815142,96.50004037],[4.53415372,0.02814969,96.49934699],[4.53415322,0.02814795,96.49865556],[4.53415272,0.02814622,96.4979659],[4.53415222,0.02814449,96.49727784],[4.53415172,0.02814276,96.49659118],[4.53415122,0.02814103,96.49590575],[4.53415072,0.02813929,96.49522135],[4.53415021,0.02813756,96.49453782],[4.53414971,0.02813583,96.49385501],[4.53414921,0.0281341,96.49317294],[4.5341487,0.02813237,96.49249169],[4.53414819,0.02813064,96.49181133],[4.53414769,0.02812891,96.49113193],[4.53414718,0.02812718,96.49045356],[4.53414667,0.02812545,96.48977629],[4.53414616,0.02812372,96.4891002],[4.53414565,0.028122,96.48842535],[4.53414514,0.02812027,96.48775182],[4.53414463,0.02811854,96.48707968],[4.53414411,0.02811681,96.486409],[4.5341436,0.02811508,96.48573985],[4.53414309,0.02811336,96.48507231],[4.53414257,0.02811163,96.48440644],[4.53414206,0.0281099,96.48374236],[4.53414154,0.02810817,96.48308017],[4.53414103,0.02810645,96.48242],[4.53414051,0.02810472,96.48176197],[4.53414,0.02810299,96.48110621],[4.53413948,0.02810126,96.48045285],[4.53413896,0.02809954,96.47980199],[4.53413845,0.02809781,96.47915377],[4.53413793,0.02809608,96.4785083],[4.53413741,0.02809436,96.47786572],[4.5341369,0.02809263,96.47722613],[4.53413638,0.0280909,96.47658967],[4.53413586,0.02808918,96.47595646],[4.53413535,0.02808745,96.47532661],[4.53413483,0.02808572,96.47470024],[4.53413431,0.028084,96.47407749],[4.5341338,0.02808227,96.47345846],[4.53413328,0.02808054,96.47284328],[4.53413277,0.02807881,96.47223208],[4.53413225,0.02807709,96.47162496],[4.53413174,0.02807536,96.47102205],[4.53413122,0.02807363,96.47042346],[4.53413071,0.0280719,96.46982929],[4.5341302,0.02807018,96.46923946],[4.53412969,0.02806845,96.46865391],[4.53412917,0.02806672,96.46807258],[4.53412866,0.02806499,96.46749543],[4.53412815,0.02806326,96.4669224],[4.53412764,0.02806153,96.46635345],[4.53412713,0.02805981,96.46578854],[4.53412662,0.02805808,96.4652276],[4.53412611,0.02805635,96.4646706],[4.5341256,0.02805462,96.46411747],[4.5341251,0.02805289,96.46356819],[4.53412459,0.02805116,96.46302268],[4.53412408,0.02804943,96.46248092],[4.53412357,0.0280477,96.46194284],[4.53412307,0.02804597,96.4614084],[4.53412256,0.02804424,96.46087755],[4.53412206,0.02804251,96.46035023],[4.53412155,0.02804078,96.45982632],[4.53412104,0.02803905,96.4593056],[4.53412054,0.02803732,96.45878784],[4.53412004,0.02803559,96.45827283],[4.53411953,0.02803386,96.45776035],[4.53411903,0.02803213,96.45725018],[4.53411852,0.0280304,96.45674211],[4.53411802,0.02802867,96.45623591],[4.53411751,0.02802694,96.45573138],[4.53411701,0.02802521,96.45522829],[4.5341165,0.02802348,96.45472644],[4.53411599,0.02802175,96.45422561],[4.53411549,0.02802002,96.45372559],[4.53411498,0.02801829,96.45322617],[4.53411447,0.02801656,96.45272714],[4.53411397,0.02801483,96.45222828],[4.53411346,0.0280131,96.4517294],[4.53411295,0.02801137,96.45123028],[4.53411244,0.02800964,96.45073072],[4.53411193,0.02800791,96.45023051],[4.53411142,0.02800618,96.44972942],[4.5341109,0.02800445,96.44922715],[4.53411039,0.02800273,96.44872337],[4.53410987,0.028001,96.44821776],[4.53410936,0.02799927,96.44770999],[4.53410884,0.02799755,96.4471998],[4.53410832,0.02799582,96.44668711],[4.5341078,0.02799409,96.44617189],[4.53410728,0.02799237,96.44565412],[4.53410675,0.02799065,96.44513377],[4.53410623,0.02798892,96.44461087],[4.5341057,0.0279872,96.44408565],[4.53410517,0.02798547,96.44355842],[4.53410464,0.02798375,96.44302944],[4.53410411,0.02798203,96.44249903],[4.53410358,0.02798031,96.44196745],[4.53410305,0.02797858,96.441435],[4.53410252,0.02797686,96.44090196],[4.53410198,0.02797514,96.44036861],[4.53410145,0.02797342,96.43983524],[4.53410091,0.0279717,96.43930213],[4.53410038,0.02796998,96.43876956],[4.53409984,0.02796826,96.43823781],[4.53409931,0.02796654,96.43770715],[4.53409877,0.02796481,96.43717786],[4.53409824,0.02796309,96.43665022],[4.5340977,0.02796137,96.43612446],[4.53409717,0.02795965,96.43560068],[4.53409663,0.02795793,96.43507895],[4.5340961,0.02795621,96.43455932],[4.53409556,0.02795449,96.43404186],[4.53409503,0.02795277,96.43352663],[4.5340945,0.02795105,96.43301368],[4.53409396,0.02794932,96.43250309],[4.53409343,0.0279476,96.4319949],[4.5340929,0.02794588,96.43148917],[4.53409236,0.02794416,96.43098598],[4.53409183,0.02794244,96.43048536],[4.5340913,0.02794071,96.42998739],[4.53409077,0.02793899,96.42949211],[4.53409024,0.02793727,96.42899959],[4.53408971,0.02793555,96.42850982],[4.53408918,0.02793382,96.42802252],[4.53408865,0.0279321,96.42753736],[4.53408812,0.02793038,96.42705401],[4.53408759,0.02792866,96.42657226],[4.53408706,0.02792693,96.426092],[4.53408654,0.02792521,96.42561313],[4.53408601,0.02792349,96.42513556],[4.53408548,0.02792176,96.42465919],[4.53408495,0.02792004,96.42418392],[4.53408442,0.02791832,96.42370966],[4.5340839,0.02791659,96.4232363],[4.53408337,0.02791487,96.42276375],[4.53408284,0.02791315,96.42229192],[4.53408231,0.02791142,96.4218207],[4.53408178,0.0279097,96.42135001],[4.53408125,0.02790798,96.42087975],[4.53408072,0.02790626,96.42040982],[4.5340802,0.02790453,96.41994013],[4.53407967,0.02790281,96.41947058],[4.53407914,0.02790109,96.41900109],[4.53407861,0.02789936,96.41853156],[4.53407808,0.02789764,96.4180619],[4.53407755,0.02789592,96.41759201],[4.53407702,0.0278942,96.4171218],[4.53407648,0.02789247,96.41665125],[4.53407595,0.02789075,96.41618063],[4.53407542,0.02788903,96.41571039],[4.53407489,0.02788731,96.41524095],[4.53407436,0.02788559,96.41477276],[4.53407383,0.02788386,96.41430613],[4.5340733,0.02788214,96.4138413],[4.53407277,0.02788042,96.4133785],[4.53407224,0.0278787,96.41291794],[4.53407171,0.02787697,96.41245985],[4.53407118,0.02787525,96.41200445],[4.53407065,0.02787353,96.41155195],[4.53407013,0.0278718,96.41110257],[4.5340696,0.02787008,96.41065653],[4.53406908,0.02786835,96.41021404],[4.53406856,0.02786663,96.40977532],[4.53406804,0.0278649,96.40934057],[4.53406752,0.02786318,96.40890991],[4.534067,0.02786145,96.40848307],[4.53406648,0.02785972,96.40805966],[4.53406597,0.027858,96.40763922],[4.53406545,0.02785627,96.40722128],[4.53406494,0.02785454,96.40680536],[4.53406442,0.02785282,96.40639099],[4.53406391,0.02785109,96.40597771],[4.53406339,0.02784936,96.40556504],[4.53406288,0.02784763,96.40515253],[4.53406237,0.0278459,96.40473971],[4.53406185,0.02784418,96.40432613],[4.53406134,0.02784245,96.40391132],[4.53406083,0.02784072,96.40349484],[4.53406031,0.02783899,96.40307624],[4.53405979,0.02783727,96.40265506],[4.53405928,0.02783554,96.40223086],[4.53405876,0.02783382,96.4018032],[4.53405824,0.02783209,96.40137164],[4.53405771,0.02783036,96.40093574],[4.53405719,0.02782864,96.40049516],[4.53405667,0.02782692,96.40005001],[4.53405614,0.02782519,96.3996005],[4.53405561,0.02782347,96.39914692],[4.53405508,0.02782175,96.39868952],[4.53405455,0.02782002,96.39822859],[4.53405402,0.0278183,96.39776439],[4.53405349,0.02781658,96.39729718],[4.53405295,0.02781486,96.39682723],[4.53405242,0.02781314,96.39635479],[4.53405188,0.02781142,96.39588014],[4.53405134,0.0278097,96.39540353],[4.53405081,0.02780798,96.39492522],[4.53405027,0.02780626,96.39444546],[4.53404973,0.02780454,96.39396451],[4.53404919,0.02780282,96.39348262],[4.53404866,0.0278011,96.39300004],[4.53404812,0.02779938,96.39251702],[4.53404758,0.02779766,96.39203369],[4.53404704,0.02779594,96.39155007],[4.5340465,0.02779422,96.39106617],[4.53404597,0.0277925,96.39058201],[4.53404543,0.02779078,96.3900976],[4.53404489,0.02778906,96.38961297],[4.53404435,0.02778734,96.38912812],[4.53404382,0.02778562,96.38864306],[4.53404328,0.02778389,96.38815782],[4.53404274,0.02778217,96.38767241],[4.5340422,0.02778045,96.38718683],[4.53404167,0.02777873,96.38670111],[4.53404113,0.02777701,96.38621525],[4.53404059,0.02777529,96.38572927],[4.53404006,0.02777357,96.38524318],[4.53403952,0.02777185,96.38475692],[4.53403899,0.02777013,96.38427046],[4.53403845,0.02776841,96.38378374],[4.53403792,0.02776669,96.38329671],[4.53403738,0.02776497,96.38280932],[4.53403685,0.02776325,96.38232152],[4.53403631,0.02776153,96.38183324],[4.53403578,0.0277598,96.38134445],[4.53403524,0.02775808,96.38085508],[4.53403471,0.02775636,96.3803651],[4.53403417,0.02775464,96.37987443],[4.53403364,0.02775292,96.37938305],[4.5340331,0.0277512,96.37889088],[4.53403257,0.02774948,96.37839789],[4.53403204,0.02774776,96.37790401],[4.5340315,0.02774604,96.37740921],[4.53403097,0.02774431,96.37691343],[4.53403043,0.02774259,96.37641661],[4.5340299,0.02774087,96.37591871],[4.53402937,0.02773915,96.37541969],[4.53402883,0.02773743,96.37491947],[4.5340283,0.02773571,96.37441801],[4.53402776,0.02773399,96.37391525],[4.53402723,0.02773226,96.37341114],[4.53402669,0.02773054,96.37290562],[4.53402616,0.02772882,96.37239863],[4.53402563,0.0277271,96.37189012],[4.53402509,0.02772538,96.37138003],[4.53402456,0.02772366,96.37086831],[4.53402402,0.02772194,96.3703549],[4.53402349,0.02772022,96.36983976],[4.53402295,0.0277185,96.36932281],[4.53402242,0.02771677,96.36880402],[4.53402188,0.02771505,96.36828333],[4.53402135,0.02771333,96.36776073],[4.53402081,0.02771161,96.36723619],[4.53402027,0.02770989,96.36670971],[4.53401974,0.02770817,96.36618128],[4.5340192,0.02770645,96.36565088],[4.53401867,0.02770473,96.36511851],[4.53401813,0.02770301,96.36458414],[4.53401759,0.02770129,96.36404776],[4.53401706,0.02769957,96.36350937],[4.53401652,0.02769785,96.36296894],[4.53401598,0.02769613,96.36242647],[4.53401545,0.02769441,96.36188193],[4.53401491,0.02769269,96.36133532],[4.53401437,0.02769097,96.36078662],[4.53401383,0.02768925,96.36023582],[4.5340133,0.02768753,96.35968289],[4.53401276,0.02768581,96.35912783],[4.53401222,0.02768409,96.35857062],[4.53401168,0.02768237,96.35801125],[4.53401115,0.02768065,96.35744972],[4.53401061,0.02767893,96.35688605],[4.53401007,0.02767721,96.35632026],[4.53400953,0.02767549,96.35575237],[4.534009,0.02767377,96.35518239],[4.53400846,0.02767205,96.35461034],[4.53400792,0.02767033,96.35403617],[4.53400738,0.02766861,96.35345987],[4.53400684,0.02766689,96.35288139],[4.53400631,0.02766517,96.35230071],[4.53400577,0.02766344,96.3517178],[4.53400523,0.02766172,96.35113262],[4.53400469,0.02766,96.35054516],[4.53400416,0.02765828,96.34995537],[4.53400362,0.02765656,96.34936323],[4.53400308,0.02765484,96.3487687],[4.53400254,0.02765312,96.34817177],[4.53400201,0.0276514,96.34757239],[4.53400147,0.02764968,96.34697054],[4.53400093,0.02764796,96.34636619],[4.53400039,0.02764624,96.3457593],[4.53399986,0.02764452,96.34514985],[4.53399932,0.0276428,96.34453781],[4.53399878,0.02764108,96.34392315],[4.53399824,0.02763936,96.34330583],[4.53399771,0.02763764,96.34268583],[4.53399717,0.02763592,96.34206312],[4.53399663,0.0276342,96.34143767],[4.5339961,0.02763248,96.34080944],[4.53399556,0.02763076,96.34017841],[4.53399502,0.02762904,96.33954454],[4.53399448,0.02762732,96.33890782],[4.53399395,0.0276256,96.3382682],[4.53399341,0.02762388,96.33762566],[4.53399287,0.02762216,96.33698016],[4.53399233,0.02762044,96.33633168],[4.5339918,0.02761872,96.33568019],[4.53399126,0.027617,96.33502566],[4.53399072,0.02761528,96.33436806],[4.53399018,0.02761356,96.33370735],[4.53398965,0.02761184,96.33304351],[4.53398911,0.02761012,96.33237651],[4.53398857,0.0276084,96.33170631],[4.53398803,0.02760668,96.33103289],[4.5339875,0.02760496,96.33035622],[4.53398696,0.02760324,96.32967627],[4.53398642,0.02760152,96.32899301],[4.53398588,0.0275998,96.3283064],[4.53398535,0.02759808,96.32761642],[4.53398481,0.02759636,96.32692304],[4.53398427,0.02759464,96.32622623],[4.53398373,0.02759292,96.32552595],[4.5339832,0.0275912,96.32482218],[4.53398266,0.02758948,96.32411489],[4.53398212,0.02758776,96.32340405],[4.53398158,0.02758604,96.32268962],[4.53398104,0.02758432,96.32197159],[4.53398051,0.0275826,96.32124991],[4.53397997,0.02758088,96.32052456],[4.53397943,0.02757916,96.3197955],[4.53397889,0.02757744,96.31906272],[4.53397836,0.02757572,96.31832617],[4.53397782,0.027574,96.31758582],[4.53397728,0.02757228,96.31684165],[4.53397674,0.02757056,96.3160936],[4.5339762,0.02756884,96.31534165],[4.53397566,0.02756712,96.31458576],[4.53397513,0.0275654,96.31382589],[4.53397459,0.02756368,96.313062],[4.53397405,0.02756196,96.31229406],[4.53397351,0.02756024,96.31152203],[4.53397297,0.02755852,96.31074588],[4.53397243,0.0275568,96.30996556],[4.5339719,0.02755508,96.30918104],[4.53397136,0.02755336,96.30839229],[4.53397082,0.02755164,96.30759927],[4.53397028,0.02754992,96.30680194],[4.53396974,0.0275482,96.30600026],[4.5339692,0.02754648,96.3051942],[4.53396866,0.02754476,96.30438371],[4.53396812,0.02754304,96.30356877],[4.53396758,0.02754132,96.30274934],[4.53396704,0.0275396,96.30192537],[4.5339665,0.02753789,96.30109684],[4.53396596,0.02753617,96.3002637],[4.53396542,0.02753445,96.29942592],[4.53396488,0.02753273,96.29858347],[4.53396434,0.02753101,96.29773635],[4.5339638,0.02752929,96.2968846],[4.53396326,0.02752757,96.29602823],[4.53396272,0.02752585,96.29516726],[4.53396218,0.02752413,96.29430171],[4.53396164,0.02752241,96.2934316],[4.5339611,0.02752069,96.29255696],[4.53396056,0.02751897,96.2916778],[4.53396002,0.02751726,96.29079414],[4.53395948,0.02751554,96.28990601],[4.53395894,0.02751382,96.28901343],[4.5339584,0.0275121,96.28811641],[4.53395786,0.02751038,96.28721499],[4.53395732,0.02750866,96.28630917],[4.53395678,0.02750694,96.28539898],[4.53395624,0.02750522,96.28448445],[4.5339557,0.0275035,96.2835656],[4.53395516,0.02750178,96.28264244],[4.53395463,0.02750006,96.28171501],[4.53395409,0.02749834,96.28078332],[4.53395355,0.02749662,96.27984737],[4.53395301,0.0274949,96.27890714],[4.53395247,0.02749318,96.2779626],[4.53395194,0.02749146,96.27701372],[4.5339514,0.02748974,96.27606048],[4.53395086,0.02748802,96.27510285],[4.53395033,0.0274863,96.27414081],[4.53394979,0.02748458,96.27317433],[4.53394926,0.02748286,96.27220339],[4.53394872,0.02748114,96.27122796],[4.53394819,0.02747942,96.27024801],[4.53394765,0.0274777,96.26926352],[4.53394712,0.02747598,96.26827447],[4.53394658,0.02747425,96.26728083],[4.53394605,0.02747253,96.26628257],[4.53394552,0.02747081,96.26527968],[4.53394498,0.02746909,96.26427212],[4.53394445,0.02746737,96.26325987],[4.53394392,0.02746565,96.26224292],[4.53394339,0.02746393,96.26122122],[4.53394285,0.0274622,96.26019477],[4.53394232,0.02746048,96.25916354],[4.53394179,0.02745876,96.25812749],[4.53394126,0.02745704,96.25708662],[4.53394073,0.02745532,96.25604089],[4.5339402,0.02745359,96.25499028],[4.53393967,0.02745187,96.25393478],[4.53393914,0.02745015,96.25287435],[4.53393861,0.02744843,96.25180897],[4.53393808,0.0274467,96.25073862],[4.53393755,0.02744498,96.24966329],[4.53393702,0.02744326,96.24858293],[4.5339365,0.02744153,96.24749755],[4.53393597,0.02743981,96.24640709],[4.53393544,0.02743809,96.24531146],[4.53393491,0.02743637,96.24421058],[4.53393439,0.02743464,96.24310432],[4.53393386,0.02743292,96.24199259],[4.53393333,0.0274312,96.24087529],[4.5339328,0.02742947,96.2397523],[4.53393228,0.02742775,96.23862356],[4.53393175,0.02742603,96.23748903],[4.53393122,0.0274243,96.23634867],[4.5339307,0.02742258,96.23520243],[4.53393017,0.02742086,96.23405027],[4.53392964,0.02741913,96.23289217],[4.53392912,0.02741741,96.23172807],[4.53392859,0.02741568,96.23055795],[4.53392807,0.02741396,96.22938175],[4.53392754,0.02741224,96.22819944],[4.53392701,0.02741051,96.22701097],[4.53392649,0.02740879,96.22581632],[4.53392596,0.02740707,96.22461543],[4.53392543,0.02740534,96.22340827],[4.53392491,0.02740362,96.2221948],[4.53392438,0.0274019,96.22097501],[4.53392385,0.02740017,96.21974904],[4.53392333,0.02739845,96.21851708],[4.5339228,0.02739673,96.2172793],[4.53392227,0.027395,96.21603588],[4.53392175,0.02739328,96.214787],[4.53392122,0.02739156,96.21353284],[4.53392069,0.02738983,96.21227357],[4.53392017,0.02738811,96.21100937],[4.53391964,0.02738639,96.20974043],[4.53391911,0.02738466,96.20846691],[4.53391859,0.02738294,96.20718899],[4.53391806,0.02738122,96.20590685],[4.53391753,0.02737949,96.20462067],[4.53391701,0.02737777,96.20333062],[4.53391648,0.02737605,96.20203688],[4.53391595,0.02737432,96.20073961],[4.53391542,0.0273726,96.19943901],[4.5339149,0.02737088,96.19813524],[4.53391437,0.02736915,96.19682847],[4.53391384,0.02736743,96.19551889],[4.53391331,0.02736571,96.19420666],[4.53391278,0.02736399,96.19289195],[4.53391225,0.02736226,96.19157496],[4.53391173,0.02736054,96.19025583],[4.5339112,0.02735882,96.18893476],[4.53391067,0.0273571,96.1876119],[4.53391014,0.02735537,96.18628744],[4.53390961,0.02735365,96.18496154],[4.53390908,0.02735193,96.18363438],[4.53390855,0.02735021,96.18230614],[4.53390802,0.02734848,96.18097697],[4.53390749,0.02734676,96.17964705],[4.53390696,0.02734504,96.17831656],[4.53390643,0.02734332,96.17698566],[4.5339059,0.02734159,96.17565452],[4.53390536,0.02733987,96.17432332],[4.53390483,0.02733815,96.17299222],[4.5339043,0.02733643,96.1716614],[4.53390377,0.02733471,96.17033103],[4.53390324,0.02733299,96.16900132],[4.5339027,0.02733126,96.16767248],[4.53390217,0.02732954,96.16634472],[4.53390164,0.02732782,96.16501826],[4.53390111,0.0273261,96.16369333],[4.53390057,0.02732438,96.16237013],[4.53390004,0.02732266,96.16104888],[4.5338995,0.02732094,96.15972982],[4.53389897,0.02731922,96.15841315],[4.53389844,0.0273175,96.1570991],[4.5338979,0.02731577,96.15578789],[4.53389737,0.02731405,96.15447974],[4.53389683,0.02731233,96.15317487],[4.5338963,0.02731061,96.1518735],[4.53389576,0.02730889,96.15057585],[4.53389523,0.02730717,96.14928216],[4.53389469,0.02730545,96.14799263],[4.53389416,0.02730373,96.14670749],[4.53389362,0.02730201,96.14542697],[4.53389309,0.02730029,96.14415128],[4.53389255,0.02729857,96.14288066],[4.53389202,0.02729685,96.14161533],[4.53389148,0.02729513,96.14035551],[4.53389095,0.02729341,96.13910142],[4.53389041,0.02729168,96.13785329],[4.53388988,0.02728996,96.13661135],[4.53388934,0.02728824,96.13537581],[4.53388881,0.02728652,96.13414681],[4.53388827,0.0272848,96.13292451],[4.53388774,0.02728308,96.13170905],[4.5338872,0.02728136,96.13050056],[4.53388666,0.02727964,96.12929922],[4.53388613,0.02727792,96.1281052],[4.53388559,0.0272762,96.12691868],[4.53388506,0.02727448,96.12573982],[4.53388452,0.02727276,96.12456881],[4.53388399,0.02727104,96.12340581],[4.53388345,0.02726932,96.12225099],[4.53388291,0.0272676,96.12110454],[4.53388238,0.02726588,96.11996663],[4.53388184,0.02726416,96.11883742],[4.53388131,0.02726244,96.11771709],[4.53388077,0.02726072,96.11660581],[4.53388023,0.027259,96.11550376],[4.5338797,0.02725728,96.11441111],[4.53387916,0.02725556,96.11332803],[4.53387862,0.02725384,96.1122547],[4.53387808,0.02725212,96.11119128],[4.53387755,0.0272504,96.11013795],[4.53387701,0.02724868,96.10909489],[4.53387647,0.02724696,96.10806226],[4.53387593,0.02724524,96.10704024],[4.5338754,0.02724352,96.10602901],[4.53387486,0.0272418,96.10502876],[4.53387432,0.02724008,96.10403972],[4.53387378,0.02723836,96.10306213],[4.53387324,0.02723664,96.1020962],[4.5338727,0.02723492,96.10114218],[4.53387217,0.0272332,96.10020029],[4.53387163,0.02723148,96.09927076],[4.53387109,0.02722976,96.09835382],[4.53387055,0.02722804,96.09744969],[4.53387001,0.02722632,96.09655862],[4.53386947,0.0272246,96.09568084],[4.53386893,0.02722288,96.09481656],[4.53386839,0.02722116,96.09396603],[4.53386785,0.02721945,96.09312947],[4.53386731,0.02721773,96.09230712],[4.53386677,0.02721601,96.09149921],[4.53386623,0.02721429,96.09070596],[4.53386569,0.02721257,96.08992761],[4.53386515,0.02721085,96.0891644],[4.53386461,0.02720913,96.08841654],[4.53386407,0.02720741,96.08768427],[4.53386354,0.02720569,96.08696761],[4.533863,0.02720397,96.08626638],[4.53386246,0.02720225,96.0855804],[4.53386192,0.02720053,96.08490948],[4.53386138,0.02719881,96.08425345],[4.53386084,0.02719709,96.08361212],[4.5338603,0.02719537,96.0829853],[4.53385976,0.02719366,96.0823728],[4.53385922,0.02719194,96.08177446],[4.53385869,0.02719022,96.08119006],[4.53385815,0.0271885,96.08061939],[4.53385761,0.02718678,96.08006221],[4.53385707,0.02718506,96.0795183],[4.53385654,0.02718334,96.07898743],[4.533856,0.02718162,96.07846935],[4.53385546,0.0271799,96.07796386],[4.53385492,0.02717818,96.0774707],[4.53385439,0.02717646,96.07698965],[4.53385385,0.02717474,96.07652047],[4.53385331,0.02717302,96.07606295],[4.53385278,0.0271713,96.07561683],[4.53385224,0.02716958,96.0751819],[4.5338517,0.02716786,96.07475791],[4.53385117,0.02716614,96.07434465],[4.53385063,0.02716442,96.07394186],[4.5338501,0.0271627,96.07354933],[4.53384956,0.02716097,96.07316682],[4.53384903,0.02715925,96.0727941],[4.53384849,0.02715753,96.07243093],[4.53384795,0.02715581,96.07207709],[4.53384742,0.02715409,96.07173233],[4.53384688,0.02715237,96.07139643],[4.53384635,0.02715065,96.07106916],[4.53384581,0.02714893,96.07075026],[4.53384528,0.02714721,96.07043951],[4.53384475,0.02714549,96.07013667],[4.53384421,0.02714377,96.06984151],[4.53384368,0.02714205,96.06955377],[4.53384314,0.02714033,96.06927323],[4.53384261,0.02713861,96.06899966],[4.53384207,0.02713689,96.06873281],[4.53384154,0.02713516,96.06847244],[4.533841,0.02713344,96.06821833],[4.53384047,0.02713172,96.06797023],[4.53383994,0.02713,96.0677279],[4.5338394,0.02712828,96.06749112],[4.53383887,0.02712656,96.06725964],[4.53383834,0.02712484,96.06703323],[4.5338378,0.02712312,96.06681165],[4.53383727,0.0271214,96.06659467],[4.53383673,0.02711968,96.06638206],[4.5338362,0.02711796,96.06617356],[4.53383567,0.02711623,96.06596896],[4.53383513,0.02711451,96.06576801],[4.5338346,0.02711279,96.06557048],[4.53383407,0.02711107,96.06537614],[4.53383353,0.02710935,96.06518477],[4.533833,0.02710763,96.06499612],[4.53383246,0.02710591,96.06480996],[4.53383193,0.02710419,96.06462608],[4.5338314,0.02710247,96.06444424],[4.53383086,0.02710075,96.0642642],[4.53383033,0.02709902,96.06408575],[4.5338298,0.0270973,96.06390864],[4.53382926,0.02709558,96.06373266],[4.53382873,0.02709386,96.06355759],[4.53382819,0.02709214,96.06338319],[4.53382766,0.02709042,96.06320924],[4.53382713,0.0270887,96.06303552],[4.53382659,0.02708698,96.06286181],[4.53382606,0.02708526,96.06268787],[4.53382553,0.02708354,96.06251349],[4.53382499,0.02708181,96.06233845],[4.53382446,0.02708009,96.06216251],[4.53382392,0.02707837,96.06198546],[4.53382339,0.02707665,96.06180708],[4.53382286,0.02707493,96.06162712],[4.53382232,0.02707321,96.06144539],[4.53382179,0.02707149,96.06126164],[4.53382125,0.02706977,96.06107566],[4.53382072,0.02706805,96.06088723],[4.53382019,0.02706633,96.06069612],[4.53381965,0.02706461,96.0605021],[4.53381912,0.02706288,96.06030496],[4.53381858,0.02706116,96.06010447],[4.53381805,0.02705944,96.05990041],[4.53381752,0.02705772,96.05969255],[4.53381698,0.027056,96.05948068],[4.53381645,0.02705428,96.05926457],[4.53381591,0.02705256,96.059044],[4.53381538,0.02705084,96.05881873],[4.53381484,0.02704912,96.05858857],[4.53381431,0.0270474,96.05835327],[4.53381378,0.02704568,96.05811262],[4.53381324,0.02704396,96.05786639],[4.53381271,0.02704224,96.05761437],[4.53381217,0.02704051,96.05735632],[4.53381164,0.02703879,96.05709203],[4.5338111,0.02703707,96.05682128],[4.53381057,0.02703535,96.05654384],[4.53381003,0.02703363,96.0562595],[4.5338095,0.02703191,96.05596802],[4.53380896,0.02703019,96.05566919],[4.53380843,0.02702847,96.05536278],[4.53380789,0.02702675,96.05504858],[4.53380736,0.02702503,96.05472636],[4.53380682,0.02702331,96.0543959],[4.53380629,0.02702159,96.05405698],[4.53380575,0.02701987,96.05370937],[4.53380522,0.02701815,96.05335286],[4.53380468,0.02701643,96.05298722],[4.53380415,0.02701471,96.05261224],[4.53380361,0.02701299,96.05222768],[4.53380308,0.02701127,96.05183333],[4.53380254,0.02700955,96.05142896],[4.53380201,0.02700783,96.05101437],[4.53380147,0.0270061,96.05058931],[4.53380093,0.02700438,96.05015358],[4.5338004,0.02700266,96.04970694],[4.53379986,0.02700094,96.04924919],[4.53379933,0.02699922,96.04878009],[4.53379879,0.0269975,96.04829943],[4.53379826,0.02699578,96.04780699],[4.53379772,0.02699406,96.04730253],[4.53379718,0.02699234,96.04678585],[4.53379665,0.02699062,96.04625672],[4.53379611,0.0269889,96.04571492],[4.53379557,0.02698718,96.04516022],[4.53379504,0.02698547,96.04459241],[4.5337945,0.02698375,96.04401127],[4.53379397,0.02698203,96.04341657],[4.53379343,0.02698031,96.04280809],[4.53379289,0.02697859,96.04218561],[4.53379236,0.02697687,96.04154891],[4.53379182,0.02697515,96.04089776],[4.53379128,0.02697343,96.04023195],[4.53379074,0.02697171,96.03955125],[4.53379021,0.02696999,96.03885545],[4.53378967,0.02696827,96.03814431],[4.53378913,0.02696655,96.03741764],[4.5337886,0.02696483,96.03667539],[4.53378806,0.02696311,96.03591776],[4.53378752,0.02696139,96.03514492],[4.53378698,0.02695967,96.03435704],[4.53378645,0.02695795,96.03355432],[4.53378591,0.02695623,96.03273693],[4.53378537,0.02695451,96.03190505],[4.53378483,0.02695279,96.03105886],[4.53378429,0.02695107,96.03019854],[4.53378376,0.02694935,96.02932427],[4.53378322,0.02694763,96.02843624],[4.53378268,0.02694591,96.02753462],[4.53378214,0.02694419,96.02661959],[4.5337816,0.02694247,96.02569133],[4.53378106,0.02694075,96.02475002],[4.53378052,0.02693903,96.02379584],[4.53377999,0.02693732,96.02282898],[4.53377945,0.0269356,96.0218496],[4.53377891,0.02693388,96.02085789],[4.53377837,0.02693216,96.01985403],[4.53377783,0.02693044,96.01883819],[4.53377729,0.02692872,96.01781057],[4.53377675,0.026927,96.01677132],[4.53377621,0.02692528,96.01572064],[4.53377567,0.02692356,96.01465869],[4.53377513,0.02692184,96.01358567],[4.53377459,0.02692012,96.01250174],[4.53377405,0.02691841,96.01140709],[4.53377351,0.02691669,96.01030192],[4.53377297,0.02691497,96.0091864],[4.53377243,0.02691325,96.00806074],[4.53377189,0.02691153,96.00692513],[4.53377135,0.02690981,96.00577974],[4.53377081,0.02690809,96.00462479],[4.53377027,0.02690637,96.00346045],[4.53376973,0.02690465,96.00228692],[4.53376919,0.02690294,96.00110439],[4.53376865,0.02690122,95.99991305],[4.53376811,0.0268995,95.9987131],[4.53376756,0.02689778,95.99750471],[4.53376702,0.02689606,95.99628808],[4.53376648,0.02689434,95.99506337],[4.53376594,0.02689262,95.99383078],[4.5337654,0.02689091,95.99259048],[4.53376486,0.02688919,95.99134266],[4.53376432,0.02688747,95.9900875],[4.53376378,0.02688575,95.98882517],[4.53376323,0.02688403,95.98755587],[4.53376269,0.02688231,95.98627976],[4.53376215,0.02688059,95.98499704],[4.53376161,0.02687888,95.98370788],[4.53376107,0.02687716,95.98241247],[4.53376053,0.02687544,95.98111098],[4.53375998,0.02687372,95.9798036],[4.53375944,0.026872,95.97849051],[4.5337589,0.02687028,95.97717189],[4.53375836,0.02686857,95.97584791],[4.53375782,0.02686685,95.97451878],[4.53375727,0.02686513,95.97318465],[4.53375673,0.02686341,95.97184572],[4.53375619,0.02686169,95.97050217],[4.53375565,0.02685997,95.96915418],[4.5337551,0.02685826,95.96780192],[4.53375456,0.02685654,95.96644559],[4.53375402,0.02685482,95.96508535],[4.53375348,0.0268531,95.9637214],[4.53375293,0.02685138,95.96235392],[4.53375239,0.02684967,95.96098308],[4.53375185,0.02684795,95.95960907],[4.53375131,0.02684623,95.95823207],[4.53375076,0.02684451,95.95685225],[4.53375022,0.02684279,95.95546981],[4.53374968,0.02684108,95.95408492],[4.53374913,0.02683936,95.95269777],[4.53374859,0.02683764,95.95130853],[4.53374805,0.02683592,95.94991739],[4.5337475,0.0268342,95.94852453],[4.53374696,0.02683249,95.94713013],[4.53374642,0.02683077,95.94573437],[4.53374587,0.02682905,95.94433743],[4.53374533,0.02682733,95.94293951],[4.53374479,0.02682561,95.94154076],[4.53374424,0.0268239,95.94014139],[4.5337437,0.02682218,95.93874157],[4.53374316,0.02682046,95.93734148],[4.53374261,0.02681874,95.9359413],[4.53374207,0.02681702,95.93454122],[4.53374153,0.02681531,95.93314141],[4.53374098,0.02681359,95.93174207],[4.53374044,0.02681187,95.93034337],[4.53373989,0.02681015,95.92894549],[4.53373935,0.02680844,95.92754861],[4.53373881,0.02680672,95.92615292],[4.53373826,0.026805,95.9247586],[4.53373772,0.02680328,95.92336584],[4.53373717,0.02680157,95.9219748],[4.53373663,0.02679985,95.92058568],[4.53373608,0.02679813,95.91919866],[4.53373554,0.02679641,95.91781392],[4.53373499,0.02679469,95.91643164],[4.53373445,0.02679298,95.915052],[4.53373391,0.02679126,95.91367519],[4.53373336,0.02678954,95.91230139],[4.53373282,0.02678782,95.91093078],[4.53373227,0.02678611,95.90956355],[4.53373173,0.02678439,95.90819987],[4.53373118,0.02678267,95.90683992],[4.53373064,0.02678095,95.9054839],[4.53373009,0.02677924,95.90413199],[4.53372955,0.02677752,95.90278436],[4.533729,0.0267758,95.9014412],[4.53372846,0.02677408,95.90010269],[4.53372791,0.02677237,95.89876902],[4.53372737,0.02677065,95.89744036],[4.53372682,0.02676893,95.89611691],[4.53372628,0.02676722,95.89479884],[4.53372573,0.0267655,95.89348633],[4.53372519,0.02676378,95.89217958],[4.53372464,0.02676206,95.89087875],[4.53372409,0.02676035,95.88958405],[4.53372355,0.02675863,95.88829564],[4.533723,0.02675691,95.88701371],[4.53372246,0.02675519,95.88573845],[4.53372191,0.02675348,95.88447004],[4.53372137,0.02675176,95.88320866],[4.53372082,0.02675004,95.8819545],[4.53372027,0.02674833,95.88070774],[4.53371973,0.02674661,95.87946856],[4.53371918,0.02674489,95.87823714],[4.53371864,0.02674317,95.87701368],[4.53371809,0.02674146,95.87579835],[4.53371754,0.02673974,95.87459134],[4.533717,0.02673802,95.87339279],[4.53371645,0.02673631,95.87220269],[4.5337159,0.02673459,95.87102099],[4.53371536,0.02673287,95.86984762],[4.53371481,0.02673115,95.86868254],[4.53371427,0.02672944,95.86752568],[4.53371402,0.02672866,95.86700215],[4.53371823,0.02672731,95.88059873],[4.53371847,0.02672809,95.88110848],[4.53371902,0.02672981,95.88223454],[4.53371956,0.02673153,95.88336819],[4.5337201,0.02673325,95.88450946],[4.53372065,0.02673496,95.88565843],[4.53372119,0.02673668,95.88681515],[4.53372173,0.0267384,95.88797968],[4.53372227,0.02674012,95.88915206],[4.53372282,0.02674184,95.89033213],[4.53372336,0.02674356,95.89151975],[4.5337239,0.02674527,95.89271475],[4.53372444,0.02674699,95.89391695],[4.53372498,0.02674871,95.8951262],[4.53372553,0.02675043,95.89634233],[4.53372607,0.02675215,95.89756517],[4.53372661,0.02675387,95.89879455],[4.53372715,0.02675559,95.90003032],[4.53372769,0.0267573,95.9012723],[4.53372823,0.02675902,95.90252033],[4.53372878,0.02676074,95.90377424],[4.53372932,0.02676246,95.90503388],[4.53372986,0.02676418,95.90629906],[4.5337304,0.0267659,95.90756963],[4.53373094,0.02676762,95.90884541],[4.53373148,0.02676934,95.91012625],[4.53373202,0.02677105,95.91141198],[4.53373256,0.02677277,95.91270243],[4.5337331,0.02677449,95.91399744],[4.53373364,0.02677621,95.91529684],[4.53373418,0.02677793,95.91660046],[4.53373472,0.02677965,95.91790813],[4.53373526,0.02678137,95.9192197],[4.5337358,0.02678309,95.920535],[4.53373634,0.02678481,95.92185385],[4.53373688,0.02678653,95.92317609],[4.53373742,0.02678824,95.92450156],[4.53373796,0.02678996,95.92583009],[4.5337385,0.02679168,95.92716151],[4.53373904,0.0267934,95.92849566],[4.53373958,0.02679512,95.92983237],[4.53374012,0.02679684,95.93117147],[4.53374066,0.02679856,95.9325128],[4.5337412,0.02680028,95.93385619],[4.53374174,0.026802,95.93520147],[4.53374228,0.02680372,95.93654848],[4.53374282,0.02680544,95.93789704],[4.53374336,0.02680716,95.939247],[4.5337439,0.02680888,95.94059818],[4.53374444,0.02681059,95.94195042],[4.53374498,0.02681231,95.94330354],[4.53374552,0.02681403,95.9446574],[4.53374606,0.02681575,95.9460118],[4.5337466,0.02681747,95.94736659],[4.53374713,0.02681919,95.94872161],[4.53374767,0.02682091,95.95007667],[4.53374821,0.02682263,95.95143162],[4.53374875,0.02682435,95.95278629],[4.53374929,0.02682607,95.95414051],[4.53374983,0.02682779,95.9554941],[4.53375037,0.02682951,95.95684691],[4.53375091,0.02683123,95.95819877],[4.53375145,0.02683295,95.9595495],[4.53375198,0.02683467,95.96089894],[4.53375252,0.02683639,95.96224691],[4.53375306,0.0268381,95.96359326],[4.5337536,0.02683982,95.96493782],[4.53375414,0.02684154,95.96628041],[4.53375468,0.02684326,95.96762086],[4.53375522,0.02684498,95.96895901],[4.53375576,0.0268467,95.97029469],[4.53375629,0.02684842,95.97162773],[4.53375683,0.02685014,95.97295796],[4.53375737,0.02685186,95.97428521],[4.53375791,0.02685358,95.97560931],[4.53375845,0.0268553,95.97693009],[4.53375899,0.02685702,95.97824739],[4.53375953,0.02685874,95.97956104],[4.53376007,0.02686046,95.98087086],[4.53376061,0.02686218,95.98217669],[4.53376114,0.0268639,95.98347835],[4.53376168,0.02686562,95.98477568],[4.53376222,0.02686733,95.98606851],[4.53376276,0.02686905,95.98735667],[4.5337633,0.02687077,95.98863998],[4.53376384,0.02687249,95.98991829],[4.53376438,0.02687421,95.99119141],[4.53376492,0.02687593,95.99245918],[4.53376546,0.02687765,95.99372143],[4.53376599,0.02687937,95.99497799],[4.53376653,0.02688109,95.99622869],[4.53376707,0.02688281,95.99747337],[4.53376761,0.02688453,95.99871184],[4.53376815,0.02688625,95.99994394],[4.53376869,0.02688797,96.0011695],[4.53376923,0.02688969,96.00238834],[4.53376977,0.02689141,96.00360031],[4.53377031,0.02689312,96.00480523],[4.53377085,0.02689484,96.00600293],[4.53377139,0.02689656,96.00719324],[4.53377193,0.02689828,96.00837598],[4.53377246,0.0269,96.009551],[4.533773,0.02690172,96.0107181],[4.53377354,0.02690344,96.01187713],[4.53377408,0.02690516,96.01302788],[4.53377462,0.02690688,96.01417019],[4.53377516,0.0269086,96.01530388],[4.5337757,0.02691032,96.01642875],[4.53377624,0.02691204,96.01754465],[4.53377678,0.02691375,96.01865137],[4.53377732,0.02691547,96.01974876],[4.53377786,0.02691719,96.02083661],[4.5337784,0.02691891,96.02191477],[4.53377894,0.02692063,96.02298304],[4.53377948,0.02692235,96.02404125],[4.53378002,0.02692407,96.02508922],[4.53378056,0.02692579,96.02612677],[4.5337811,0.02692751,96.02715373],[4.53378164,0.02692923,96.02816993],[4.53378218,0.02693094,96.02917519],[4.53378272,0.02693266,96.03016932],[4.53378326,0.02693438,96.03115217],[4.5337838,0.0269361,96.03212355],[4.53378434,0.02693782,96.03308328],[4.53378488,0.02693954,96.0340312],[4.53378542,0.02694126,96.03496712],[4.53378596,0.02694298,96.03589087],[4.5337865,0.0269447,96.03680227],[4.53378704,0.02694642,96.03770115],[4.53378758,0.02694813,96.03858734],[4.53378812,0.02694985,96.03946065],[4.53378866,0.02695157,96.04032091],[4.5337892,0.02695329,96.04116796],[4.53378974,0.02695501,96.0420016],[4.53379028,0.02695673,96.04282167],[4.53379082,0.02695845,96.04362799],[4.53379136,0.02696017,96.04442039],[4.5337919,0.02696189,96.04519869],[4.53379244,0.0269636,96.04596272],[4.53379299,0.02696532,96.0467123],[4.53379353,0.02696704,96.04744726],[4.53379407,0.02696876,96.04816762],[4.53379461,0.02697048,96.04887358],[4.53379515,0.0269722,96.04956536],[4.53379569,0.02697392,96.05024315],[4.53379623,0.02697564,96.05090717],[4.53379677,0.02697736,96.05155762],[4.53379731,0.02697907,96.05219472],[4.53379785,0.02698079,96.05281867],[4.53379839,0.02698251,96.05342967],[4.53379893,0.02698423,96.05402795],[4.53379947,0.02698595,96.0546137],[4.53380001,0.02698766,96.05518714],[4.53380055,0.02698938,96.05574847],[4.53380109,0.0269911,96.0562979],[4.53380163,0.02699282,96.05683564],[4.53380217,0.02699454,96.0573619],[4.53380271,0.02699626,96.05787688],[4.53380325,0.02699798,96.0583808],[4.53380379,0.0269997,96.05887386],[4.53380433,0.02700142,96.05935627],[4.53380487,0.02700314,96.05982824],[4.53380541,0.02700485,96.06028998],[4.53380595,0.02700657,96.06074169],[4.53380649,0.02700829,96.06118358],[4.53380703,0.02701001,96.06161587],[4.53380757,0.02701173,96.06203875],[4.53380811,0.02701345,96.06245245],[4.53380865,0.02701517,96.06285715],[4.53380919,0.02701689,96.06325308],[4.53380973,0.02701861,96.06364044],[4.53381027,0.02702033,96.06401943],[4.53381081,0.02702205,96.06439028],[4.53381134,0.02702376,96.06475317],[4.53381188,0.02702548,96.06510833],[4.53381242,0.0270272,96.06545596],[4.53381296,0.02702892,96.06579626],[4.5338135,0.02703064,96.06612945],[4.53381404,0.02703236,96.06645573],[4.53381458,0.02703408,96.0667753],[4.53381512,0.0270358,96.06708839],[4.53381566,0.02703752,96.06739519],[4.5338162,0.02703924,96.06769591],[4.53381674,0.02704096,96.06799075],[4.53381728,0.02704268,96.06827994],[4.53381782,0.02704439,96.06856366],[4.53381836,0.02704611,96.06884214],[4.5338189,0.02704783,96.06911557],[4.53381944,0.02704955,96.06938417],[4.53381997,0.02705127,96.06964814],[4.53382051,0.02705299,96.06990768],[4.53382105,0.02705471,96.07016301],[4.53382159,0.02705643,96.07041434],[4.53382213,0.02705815,96.07066186],[4.53382267,0.02705987,96.07090579],[4.53382321,0.02706159,96.07114633],[4.53382375,0.02706331,96.07138369],[4.53382428,0.02706503,96.07161807],[4.53382482,0.02706675,96.07184969],[4.53382536,0.02706847,96.07207874],[4.5338259,0.02707019,96.07230545],[4.53382644,0.02707191,96.07253],[4.53382698,0.02707363,96.07275261],[4.53382751,0.02707534,96.07297349],[4.53382805,0.02707706,96.07319284],[4.53382859,0.02707878,96.07341086],[4.53382913,0.0270805,96.07362777],[4.53382967,0.02708222,96.07384377],[4.5338302,0.02708394,96.07405907],[4.53383074,0.02708566,96.07427387],[4.53383128,0.02708738,96.07448837],[4.53383182,0.0270891,96.0747028],[4.53383236,0.02709082,96.07491734],[4.53383289,0.02709254,96.07513221],[4.53383343,0.02709426,96.07534762],[4.53383397,0.02709598,96.07556376],[4.53383451,0.0270977,96.07578085],[4.53383504,0.02709942,96.07599909],[4.53383558,0.02710114,96.0762187],[4.53383612,0.02710286,96.07643988],[4.53383665,0.02710458,96.07666284],[4.53383719,0.0271063,96.0768878],[4.53383773,0.02710802,96.07711496],[4.53383827,0.02710974,96.07734454],[4.5338388,0.02711146,96.07757676],[4.53383934,0.02711318,96.07781181],[4.53383988,0.0271149,96.07804991],[4.53384041,0.02711662,96.07829128],[4.53384095,0.02711834,96.07853612],[4.53384148,0.02712006,96.07878464],[4.53384202,0.02712178,96.07903706],[4.53384256,0.0271235,96.0792936],[4.53384309,0.02712522,96.07955445],[4.53384363,0.02712694,96.07981983],[4.53384417,0.02712866,96.08008996],[4.5338447,0.02713038,96.08036504],[4.53384524,0.0271321,96.08064529],[4.53384577,0.02713382,96.08093091],[4.53384631,0.02713554,96.08122213],[4.53384685,0.02713727,96.08151915],[4.53384738,0.02713899,96.08182218],[4.53384792,0.02714071,96.08213144],[4.53384845,0.02714243,96.08244714],[4.53384899,0.02714415,96.08276949],[4.53384952,0.02714587,96.0830987],[4.53385006,0.02714759,96.08343499],[4.53385059,0.02714931,96.08377856],[4.53385113,0.02715103,96.08412963],[4.53385167,0.02715275,96.08448841],[4.5338522,0.02715447,96.08485512],[4.53385274,0.02715619,96.08522996],[4.53385327,0.02715791,96.08561313],[4.53385381,0.02715963,96.08600486],[4.53385434,0.02716135,96.08640534],[4.53385488,0.02716307,96.08681478],[4.53385541,0.02716479,96.08723339],[4.53385595,0.02716651,96.08766138],[4.53385648,0.02716824,96.08809895],[4.53385702,0.02716996,96.08854632],[4.53385755,0.02717168,96.08900369],[4.53385809,0.0271734,96.08947127],[4.53385862,0.02717512,96.08994927],[4.53385915,0.02717684,96.09043789],[4.53385969,0.02717856,96.09093734],[4.53386022,0.02718028,96.09144784],[4.53386076,0.027182,96.09196959],[4.53386129,0.02718372,96.09250279],[4.53386183,0.02718544,96.09304767],[4.53386236,0.02718716,96.09360441],[4.53386289,0.02718889,96.09417324],[4.53386343,0.02719061,96.09475436],[4.53386396,0.02719233,96.09534798],[4.5338645,0.02719405,96.09595431],[4.53386503,0.02719577,96.09657356],[4.53386556,0.02719749,96.09720593],[4.5338661,0.02719921,96.09785164],[4.53386663,0.02720093,96.09851089],[4.53386717,0.02720265,96.09918389],[4.5338677,0.02720438,96.09987085],[4.53386823,0.0272061,96.10057199],[4.53386877,0.02720782,96.10128749],[4.5338693,0.02720954,96.10201738],[4.53386983,0.02721126,96.10276148],[4.53387037,0.02721298,96.10351961],[4.5338709,0.0272147,96.10429158],[4.53387143,0.02721642,96.10507721],[4.53387196,0.02721815,96.10587631],[4.5338725,0.02721987,96.1066887],[4.53387303,0.02722159,96.10751421],[4.53387356,0.02722331,96.10835264],[4.53387409,0.02722503,96.10920381],[4.53387463,0.02722675,96.11006754],[4.53387516,0.02722847,96.11094365],[4.53387569,0.0272302,96.11183195],[4.53387622,0.02723192,96.11273226],[4.53387676,0.02723364,96.11364439],[4.53387729,0.02723536,96.11456818],[4.53387782,0.02723708,96.11550342],[4.53387835,0.0272388,96.11644994],[4.53387888,0.02724053,96.11740755],[4.53387942,0.02724225,96.11837608],[4.53387995,0.02724397,96.11935533],[4.53388048,0.02724569,96.12034516],[4.53388101,0.02724741,96.12134544],[4.53388154,0.02724914,96.12235602],[4.53388207,0.02725086,96.1233768],[4.5338826,0.02725258,96.12440764],[4.53388314,0.0272543,96.12544841],[4.53388367,0.02725602,96.12649897],[4.5338842,0.02725774,96.12755921],[4.53388473,0.02725947,96.12862899],[4.53388526,0.02726119,96.12970818],[4.53388579,0.02726291,96.13079665],[4.53388632,0.02726463,96.13189426],[4.53388686,0.02726635,96.1330009],[4.53388739,0.02726808,96.13411642],[4.53388792,0.0272698,96.13524069],[4.53388845,0.02727152,96.13637358],[4.53388899,0.02727324,96.13751495],[4.53388952,0.02727496,96.13866468],[4.53389005,0.02727668,96.13982262],[4.53389059,0.0272784,96.14098865],[4.53389112,0.02728013,96.14216262],[4.53389165,0.02728185,96.1433444],[4.53389219,0.02728357,96.14453386],[4.53389272,0.02728529,96.14573085],[4.53389326,0.02728701,96.14693523],[4.53389379,0.02728873,96.14814688],[4.53389433,0.02729045,96.14936563],[4.53389486,0.02729217,96.15059129],[4.5338954,0.02729389,96.15182362],[4.53389593,0.02729561,96.1530624],[4.53389647,0.02729733,96.15430741],[4.53389701,0.02729905,96.15555843],[4.53389755,0.02730077,96.15681523],[4.53389808,0.02730249,96.1580776],[4.53389862,0.02730421,96.15934531],[4.53389916,0.02730593,96.16061814],[4.5338997,0.02730765,96.16189586],[4.53390024,0.02730937,96.16317826],[4.53390078,0.02731109,96.16446512],[4.53390131,0.02731281,96.16575621],[4.53390185,0.02731453,96.16705132],[4.53390239,0.02731625,96.16835022],[4.53390293,0.02731797,96.16965269],[4.53390347,0.02731969,96.17095852],[4.53390401,0.02732141,96.17226748],[4.53390455,0.02732312,96.17357936],[4.53390509,0.02732484,96.17489394],[4.53390564,0.02732656,96.17621099],[4.53390618,0.02732828,96.1775303],[4.53390672,0.02733,96.17885166],[4.53390726,0.02733172,96.18017485],[4.5339078,0.02733344,96.18149965],[4.53390834,0.02733516,96.18282586],[4.53390888,0.02733688,96.18415326],[4.53390942,0.0273386,96.18548164],[4.53390996,0.02734031,96.18681079],[4.5339105,0.02734203,96.1881405],[4.53391105,0.02734375,96.18947055],[4.53391159,0.02734547,96.19080075],[4.53391213,0.02734719,96.19213087],[4.53391267,0.02734891,96.19346071],[4.53391321,0.02735063,96.19479007],[4.53391375,0.02735235,96.19611872],[4.53391429,0.02735406,96.19744647],[4.53391484,0.02735578,96.19877311],[4.53391538,0.0273575,96.20009842],[4.53391592,0.02735922,96.2014222],[4.53391646,0.02736094,96.20274425],[4.533917,0.02736266,96.20406435],[4.53391754,0.02736438,96.2053823],[4.53391808,0.0273661,96.2066979],[4.53391862,0.02736782,96.20801093],[4.53391916,0.02736953,96.2093212],[4.5339197,0.02737125,96.2106285],[4.53392024,0.02737297,96.21193262],[4.53392078,0.02737469,96.21323336],[4.53392132,0.02737641,96.21453051],[4.53392186,0.02737813,96.21582388],[4.5339224,0.02737985,96.21711325],[4.53392294,0.02738157,96.21839843],[4.53392348,0.02738329,96.21967921],[4.53392402,0.02738501,96.22095538],[4.53392456,0.02738673,96.22222676],[4.5339251,0.02738845,96.22349312],[4.53392564,0.02739017,96.22475428],[4.53392618,0.02739189,96.22601002],[4.53392672,0.02739361,96.22726015],[4.53392725,0.02739533,96.22850447],[4.53392779,0.02739705,96.22974278],[4.53392833,0.02739877,96.23097486],[4.53392887,0.02740049,96.23220053],[4.5339294,0.02740221,96.23341959],[4.53392994,0.02740393,96.23463185],[4.53393047,0.02740565,96.23583731],[4.53393101,0.02740737,96.23703596],[4.53393155,0.02740909,96.23822781],[4.53393208,0.02741081,96.23941287],[4.53393262,0.02741253,96.24059115],[4.53393315,0.02741425,96.24176266],[4.53393368,0.02741597,96.24292739],[4.53393422,0.02741769,96.24408537],[4.53393475,0.02741941,96.24523659],[4.53393528,0.02742114,96.24638107],[4.53393582,0.02742286,96.2475188],[4.53393635,0.02742458,96.24864981],[4.53393688,0.0274263,96.2497741],[4.53393741,0.02742802,96.25089167],[4.53393794,0.02742975,96.25200254],[4.53393847,0.02743147,96.25310674],[4.533939,0.02743319,96.25420435],[4.53393953,0.02743491,96.25529543],[4.53394006,0.02743664,96.25638008],[4.53394059,0.02743836,96.25745834],[4.53394112,0.02744008,96.2585303],[4.53394165,0.0274418,96.25959604],[4.53394218,0.02744353,96.26065561],[4.5339427,0.02744525,96.26170909],[4.53394323,0.02744697,96.26275654],[4.53394376,0.0274487,96.26379805],[4.53394428,0.02745042,96.26483368],[4.53394481,0.02745214,96.26586349],[4.53394534,0.02745387,96.26688756],[4.53394586,0.02745559,96.26790595],[4.53394639,0.02745731,96.26891874],[4.53394691,0.02745904,96.26992598],[4.53394744,0.02746076,96.27092775],[4.53394797,0.02746249,96.27192412],[4.53394849,0.02746421,96.27291514],[4.53394902,0.02746593,96.2739009],[4.53394954,0.02746766,96.27488144],[4.53395007,0.02746938,96.27585684],[4.53395059,0.02747111,96.27682717],[4.53395112,0.02747283,96.27779249],[4.53395164,0.02747455,96.27875287],[4.53395217,0.02747628,96.27970836],[4.53395269,0.027478,96.28065904],[4.53395322,0.02747973,96.28160497],[4.53395374,0.02748145,96.28254622],[4.53395427,0.02748317,96.28348285],[4.53395479,0.0274849,96.28441492],[4.53395532,0.02748662,96.2853425],[4.53395585,0.02748834,96.28626565],[4.53395637,0.02749007,96.28718444],[4.5339569,0.02749179,96.28809893],[4.53395743,0.02749352,96.28900919],[4.53395795,0.02749524,96.28991527],[4.53395848,0.02749696,96.29081724],[4.53395901,0.02749869,96.29171518],[4.53395953,0.02750041,96.2926091],[4.53396006,0.02750213,96.29349904],[4.53396059,0.02750385,96.29438499],[4.53396112,0.02750558,96.29526699],[4.53396165,0.0275073,96.29614504],[4.53396217,0.02750902,96.29701916],[4.5339627,0.02751075,96.29788937],[4.53396323,0.02751247,96.29875567],[4.53396376,0.02751419,96.29961809],[4.53396429,0.02751591,96.30047663],[4.53396482,0.02751764,96.30133132],[4.53396535,0.02751936,96.30218217],[4.53396588,0.02752108,96.3030292],[4.53396641,0.0275228,96.30387241],[4.53396694,0.02752453,96.30471184],[4.53396748,0.02752625,96.30554749],[4.53396801,0.02752797,96.30637938],[4.53396854,0.02752969,96.30720752],[4.53396907,0.02753141,96.30803194],[4.5339696,0.02753314,96.30885264],[4.53397013,0.02753486,96.30966965],[4.53397067,0.02753658,96.31048298],[4.5339712,0.0275383,96.31129265],[4.53397173,0.02754002,96.31209868],[4.53397226,0.02754174,96.31290107],[4.5339728,0.02754347,96.31369985],[4.53397333,0.02754519,96.31449504],[4.53397386,0.02754691,96.31528665],[4.5339744,0.02754863,96.3160747],[4.53397493,0.02755035,96.31685921],[4.53397547,0.02755207,96.31764019],[4.533976,0.02755379,96.31841766],[4.53397653,0.02755551,96.31919164],[4.53397707,0.02755724,96.31996214],[4.5339776,0.02755896,96.32072919],[4.53397814,0.02756068,96.32149279],[4.53397867,0.0275624,96.32225297],[4.53397921,0.02756412,96.32300975],[4.53397974,0.02756584,96.32376314],[4.53398028,0.02756756,96.32451316],[4.53398081,0.02756928,96.32525982],[4.53398135,0.027571,96.32600316],[4.53398188,0.02757272,96.32674317],[4.53398242,0.02757445,96.32747988],[4.53398295,0.02757617,96.32821332],[4.53398349,0.02757789,96.32894348],[4.53398403,0.02757961,96.32967039],[4.53398456,0.02758133,96.33039405],[4.5339851,0.02758305,96.33111448],[4.53398563,0.02758477,96.33183169],[4.53398617,0.02758649,96.33254568],[4.53398671,0.02758821,96.33325648],[4.53398724,0.02758993,96.33396409],[4.53398778,0.02759165,96.33466852],[4.53398831,0.02759337,96.33536978],[4.53398885,0.02759509,96.33606789],[4.53398939,0.02759681,96.33676285],[4.53398992,0.02759853,96.33745468],[4.53399046,0.02760025,96.33814339],[4.533991,0.02760197,96.33882899],[4.53399153,0.02760369,96.33951149],[4.53399207,0.02760541,96.3401909],[4.53399261,0.02760714,96.34086724],[4.53399314,0.02760886,96.3415405],[4.53399368,0.02761058,96.34221072],[4.53399422,0.0276123,96.34287789],[4.53399475,0.02761402,96.34354202],[4.53399529,0.02761574,96.34420313],[4.53399583,0.02761746,96.34486123],[4.53399636,0.02761918,96.34551633],[4.5339969,0.0276209,96.34616844],[4.53399743,0.02762262,96.34681757],[4.53399797,0.02762434,96.34746373],[4.53399851,0.02762606,96.34810692],[4.53399904,0.02762778,96.34874718],[4.53399958,0.0276295,96.34938449],[4.53400011,0.02763122,96.35001887],[4.53400065,0.02763294,96.35065034],[4.53400118,0.02763467,96.3512789],[4.53400172,0.02763639,96.35190456],[4.53400225,0.02763811,96.35252733],[4.53400279,0.02763983,96.35314723],[4.53400332,0.02764155,96.35376426],[4.53400386,0.02764327,96.35437842],[4.53400439,0.02764499,96.35498975],[4.53400493,0.02764671,96.35559823],[4.53400546,0.02764843,96.35620388],[4.534006,0.02765015,96.35680671],[4.53400653,0.02765188,96.35740673],[4.53400706,0.0276536,96.35800395],[4.5340076,0.02765532,96.35859838],[4.53400813,0.02765704,96.35919002],[4.53400866,0.02765876,96.35977889],[4.5340092,0.02766048,96.36036499],[4.53400973,0.0276622,96.36094833],[4.53401026,0.02766393,96.36152893],[4.53401079,0.02766565,96.36210678],[4.53401133,0.02766737,96.36268191],[4.53401186,0.02766909,96.36325431],[4.53401239,0.02767081,96.36382399],[4.53401292,0.02767254,96.36439097],[4.53401345,0.02767426,96.36495525],[4.53401398,0.02767598,96.36551683],[4.53401451,0.0276777,96.36607575],[4.53401504,0.02767943,96.366632],[4.53401557,0.02768115,96.36718562],[4.5340161,0.02768287,96.36773662],[4.53401663,0.02768459,96.36828503],[4.53401716,0.02768632,96.36883091],[4.53401769,0.02768804,96.3693743],[4.53401822,0.02768976,96.36991527],[4.53401875,0.02769149,96.37045386],[4.53401927,0.02769321,96.37099013],[4.5340198,0.02769493,96.37152414],[4.53402033,0.02769666,96.37205593],[4.53402086,0.02769838,96.37258556],[4.53402139,0.0277001,96.37311308],[4.53402191,0.02770183,96.37363855],[4.53402244,0.02770355,96.37416202],[4.53402297,0.02770527,96.37468355],[4.53402349,0.027707,96.37520318],[4.53402402,0.02770872,96.37572098],[4.53402455,0.02771044,96.37623699],[4.53402507,0.02771217,96.37675127],[4.5340256,0.02771389,96.37726387],[4.53402613,0.02771561,96.37777485],[4.53402665,0.02771734,96.37828425],[4.53402718,0.02771906,96.37879215],[4.53402771,0.02772079,96.37929858],[4.53402823,0.02772251,96.37980361],[4.53402876,0.02772423,96.38030729],[4.53402928,0.02772596,96.38080967],[4.53402981,0.02772768,96.38131081],[4.53403034,0.0277294,96.38181077],[4.53403086,0.02773113,96.3823096],[4.53403139,0.02773285,96.38280736],[4.53403192,0.02773458,96.38330409],[4.53403244,0.0277363,96.38379987],[4.53403297,0.02773802,96.38429474],[4.5340335,0.02773975,96.38478876],[4.53403402,0.02774147,96.38528199],[4.53403455,0.02774319,96.38577448],[4.53403508,0.02774492,96.38626627],[4.53403561,0.02774664,96.38675743],[4.53403613,0.02774836,96.387248],[4.53403666,0.02775009,96.38773804],[4.53403719,0.02775181,96.38822759],[4.53403772,0.02775353,96.3887167],[4.53403825,0.02775526,96.38920544],[4.53403878,0.02775698,96.38969385],[4.53403931,0.0277587,96.39018198],[4.53403983,0.02776042,96.39066989],[4.53404036,0.02776215,96.39115763],[4.53404089,0.02776387,96.39164525],[4.53404142,0.02776559,96.39213281],[4.53404196,0.02776731,96.39262036],[4.53404249,0.02776904,96.39310795],[4.53404302,0.02777076,96.39359564],[4.53404355,0.02777248,96.39408347],[4.53404408,0.0277742,96.39457151],[4.53404461,0.02777593,96.39505979],[4.53404515,0.02777765,96.3955483],[4.53404568,0.02777937,96.39603704],[4.53404621,0.02778109,96.39652599],[4.53404674,0.02778281,96.39701515],[4.53404728,0.02778453,96.39750449],[4.53404781,0.02778625,96.39799402],[4.53404835,0.02778798,96.3984837],[4.53404888,0.0277897,96.39897354],[4.53404942,0.02779142,96.39946352],[4.53404995,0.02779314,96.39995361],[4.53405049,0.02779486,96.40044382],[4.53405102,0.02779658,96.40093413],[4.53405156,0.0277983,96.40142452],[4.53405209,0.02780002,96.40191498],[4.53405263,0.02780174,96.40240549],[4.53405317,0.02780346,96.40289604],[4.5340537,0.02780518,96.40338661],[4.53405424,0.0278069,96.4038772],[4.53405478,0.02780862,96.40436777],[4.53405531,0.02781035,96.40485833],[4.53405585,0.02781207,96.40534885],[4.53405639,0.02781379,96.40583931],[4.53405692,0.02781551,96.40632971],[4.53405746,0.02781723,96.40682002],[4.534058,0.02781895,96.40731022],[4.53405853,0.02782067,96.40780031],[4.53405907,0.02782239,96.40829026],[4.53405961,0.02782411,96.40878006],[4.53406015,0.02782583,96.40926968],[4.53406068,0.02782755,96.40975912],[4.53406122,0.02782927,96.41024839],[4.53406176,0.02783099,96.41073756],[4.53406229,0.02783271,96.4112267],[4.53406283,0.02783443,96.41171588],[4.53406337,0.02783615,96.41220517],[4.5340639,0.02783787,96.41269462],[4.53406444,0.02783959,96.41318432],[4.53406498,0.02784131,96.41367433],[4.53406551,0.02784303,96.41416473],[4.53406605,0.02784475,96.41465557],[4.53406659,0.02784647,96.41514694],[4.53406713,0.0278482,96.4156389],[4.53406766,0.02784992,96.41613152],[4.5340682,0.02785164,96.41662487],[4.53406874,0.02785336,96.41711903],[4.53406928,0.02785508,96.41761406],[4.53406982,0.0278568,96.41811004],[4.53407035,0.02785852,96.41860704],[4.53407089,0.02786024,96.41910514],[4.53407143,0.02786196,96.41960437],[4.53407197,0.02786367,96.42010473],[4.53407251,0.02786539,96.42060617],[4.53407305,0.02786711,96.42110865],[4.53407359,0.02786883,96.42161212],[4.53407413,0.02787055,96.42211654],[4.53407467,0.02787227,96.42262186],[4.53407521,0.02787399,96.42312805],[4.53407576,0.02787571,96.42363506],[4.5340763,0.02787743,96.42414283],[4.53407684,0.02787915,96.42465134],[4.53407738,0.02788087,96.42516052],[4.53407792,0.02788259,96.42567034],[4.53407846,0.02788431,96.42618075],[4.534079,0.02788603,96.42669169],[4.53407954,0.02788774,96.42720302],[4.53408008,0.02788946,96.4277145],[4.53408062,0.02789118,96.42822585],[4.53408116,0.0278929,96.42873682],[4.5340817,0.02789462,96.42924721],[4.53408224,0.02789634,96.42975703],[4.53408278,0.02789806,96.43026632],[4.53408332,0.02789978,96.43077516],[4.53408386,0.0279015,96.43128361],[4.5340844,0.02790322,96.43179173],[4.53408493,0.02790494,96.43229957],[4.53408547,0.02790666,96.43280721],[4.53408601,0.02790838,96.43331471],[4.53408654,0.0279101,96.43382213],[4.53408708,0.02791183,96.43432953],[4.53408761,0.02791355,96.43483698],[4.53408815,0.02791527,96.43534453],[4.53408868,0.02791699,96.43585227],[4.53408922,0.02791871,96.43636024],[4.53408975,0.02792043,96.43686851],[4.53409029,0.02792215,96.43737716],[4.53409082,0.02792387,96.43788623],[4.53409135,0.0279256,96.43839581],[4.53409189,0.02792732,96.43890595],[4.53409242,0.02792904,96.43941672],[4.53409295,0.02793076,96.43992819],[4.53409349,0.02793248,96.44044055],[4.53409402,0.0279342,96.44095408],[4.53409455,0.02793592,96.44146908],[4.53409509,0.02793765,96.44198581],[4.53409562,0.02793937,96.44250423],[4.53409615,0.02794109,96.44302425],[4.53409669,0.02794281,96.44354578],[4.53409722,0.02794453,96.44406873],[4.53409776,0.02794625,96.444593],[4.53409829,0.02794797,96.44511851],[4.53409883,0.0279497,96.44564516],[4.53409936,0.02795142,96.44617286],[4.53409989,0.02795314,96.44670151],[4.53410043,0.02795486,96.44723102],[4.53410096,0.02795658,96.44776129],[4.53410149,0.0279583,96.44829222],[4.53410203,0.02796003,96.44882373],[4.53410256,0.02796175,96.44935571],[4.53410309,0.02796347,96.44988807],[4.53410362,0.02796519,96.4504207],[4.53410415,0.02796691,96.45095352],[4.53410469,0.02796864,96.45148642],[4.53410522,0.02797036,96.4520193],[4.53410575,0.02797208,96.45255206],[4.53410627,0.0279738,96.45308461],[4.5341068,0.02797553,96.45361683],[4.53410733,0.02797725,96.45414865],[4.53410786,0.02797897,96.45467994],[4.53410839,0.0279807,96.45521061],[4.53410891,0.02798242,96.45574056],[4.53410944,0.02798415,96.45626968],[4.53410996,0.02798587,96.45679788],[4.53411048,0.02798759,96.45732505],[4.53411101,0.02798932,96.45785108],[4.53411153,0.02799105,96.45837593],[4.53411205,0.02799277,96.45889976],[4.53411257,0.0279945,96.45942277],[4.53411309,0.02799622,96.4599452],[4.5341136,0.02799795,96.46046724],[4.53411412,0.02799968,96.46098913],[4.53411464,0.0280014,96.46151107],[4.53411515,0.02800313,96.46203329],[4.53411567,0.02800486,96.462556],[4.53411619,0.02800658,96.46307943],[4.5341167,0.02800831,96.46360378],[4.53411722,0.02801004,96.46412917],[4.53411773,0.02801177,96.46465569],[4.53411824,0.02801349,96.46518346],[4.53411876,0.02801522,96.46571257],[4.53411927,0.02801695,96.46624312],[4.53411979,0.02801868,96.46677522],[4.5341203,0.0280204,96.46730896],[4.53412081,0.02802213,96.46784445],[4.53412133,0.02802386,96.46838179],[4.53412184,0.02802559,96.46892109],[4.53412236,0.02802731,96.46946244],[4.53412287,0.02802904,96.47000595],[4.53412338,0.02803077,96.47055174],[4.5341239,0.0280325,96.4710999],[4.53412441,0.02803423,96.47165054],[4.53412493,0.02803595,96.47220376],[4.53412544,0.02803768,96.47275968],[4.53412595,0.02803941,96.47331839],[4.53412647,0.02804114,96.47388001],[4.53412698,0.02804286,96.47444464],[4.5341275,0.02804459,96.4750123],[4.53412801,0.02804632,96.47558293],[4.53412853,0.02804804,96.47615647],[4.53412905,0.02804977,96.47673284],[4.53412956,0.0280515,96.47731199],[4.53413008,0.02805323,96.47789385],[4.53413059,0.02805495,96.47847834],[4.53413111,0.02805668,96.47906542],[4.53413163,0.02805841,96.479655],[4.53413214,0.02806013,96.48024703],[4.53413266,0.02806186,96.48084143],[4.53413317,0.02806359,96.48143815],[4.53413369,0.02806531,96.48203711],[4.53413421,0.02806704,96.48263824],[4.53413472,0.02806877,96.48324148],[4.53413524,0.0280705,96.48384676],[4.53413575,0.02807222,96.48445404],[4.53413627,0.02807395,96.48506331],[4.53413678,0.02807568,96.48567453],[4.5341373,0.02807741,96.4862877],[4.53413781,0.02807913,96.4869028],[4.53413833,0.02808086,96.48751981],[4.53413884,0.02808259,96.48813872],[4.53413935,0.02808432,96.4887595],[4.53413987,0.02808604,96.48938214],[4.53414038,0.02808777,96.49000662],[4.53414089,0.0280895,96.49063293],[4.5341414,0.02809123,96.49126104],[4.53414192,0.02809296,96.49189095],[4.53414243,0.02809468,96.49252263],[4.53414294,0.02809641,96.49315606],[4.53414345,0.02809814,96.49379124],[4.53414396,0.02809987,96.49442814],[4.53414447,0.0281016,96.49506674],[4.53414498,0.02810333,96.49570703],[4.53414549,0.02810506,96.496349],[4.534146,0.02810679,96.49699262],[4.53414651,0.02810852,96.49763787],[4.53414701,0.02811025,96.49828475],[4.53414752,0.02811198,96.49893324],[4.53414803,0.02811371,96.49958334],[4.53414854,0.02811544,96.50023509],[4.53414904,0.02811717,96.50088852],[4.53414955,0.0281189,96.50154367],[4.53415005,0.02812063,96.50220058],[4.53415056,0.02812236,96.50285927],[4.53415106,0.02812409,96.50351979],[4.53415156,0.02812582,96.50418216],[4.53415207,0.02812755,96.50484643],[4.53415257,0.02812928,96.50551263],[4.53415307,0.02813101,96.50618079],[4.53415358,0.02813274,96.50685095],[4.53415408,0.02813447,96.50752315],[4.53415458,0.02813621,96.50819743],[4.53415508,0.02813794,96.50887381],[4.53415558,0.02813967,96.50955234],[4.53415608,0.0281414,96.51023305],[4.53415658,0.02814313,96.51091598],[4.53415708,0.02814487,96.51160117],[4.53415758,0.0281466,96.51228865],[4.53415807,0.02814833,96.51297846],[4.53415857,0.02815006,96.51367064],[4.53415907,0.0281518,96.51436522],[4.53415957,0.02815353,96.51506224],[4.53416006,0.02815526,96.51576174],[4.53416056,0.028157,96.51646376],[4.53416106,0.02815873,96.51716834],[4.53416155,0.02816046,96.5178755],[4.53416205,0.0281622,96.5185853],[4.53416254,0.02816393,96.51929777],[4.53416304,0.02816566,96.52001295],[4.53416353,0.0281674,96.52073087],[4.53416402,0.02816913,96.52145158],[4.53416452,0.02817086,96.52217511],[4.53416501,0.0281726,96.52290151],[4.5341655,0.02817433,96.5236308],[4.534166,0.02817607,96.52436304],[4.53416649,0.0281778,96.52509825],[4.53416698,0.02817954,96.52583649],[4.53416747,0.02818127,96.52657778],[4.53416796,0.028183,96.52732217],[4.53416845,0.02818474,96.5280697],[4.53416895,0.02818647,96.52882041],[4.53416944,0.02818821,96.52957433],[4.53416993,0.02818994,96.53033151],[4.53417042,0.02819168,96.53109199],[4.53417091,0.02819341,96.5318558],[4.53417139,0.02819515,96.53262299],[4.53417188,0.02819688,96.5333936],[4.53417237,0.02819862,96.53416767],[4.53417286,0.02820035,96.53494524],[4.53417335,0.02820209,96.53572634],[4.53417384,0.02820383,96.53651103],[4.53417432,0.02820556,96.53729933],[4.53417481,0.0282073,96.5380913],[4.5341753,0.02820903,96.53888697],[4.53417578,0.02821077,96.53968639],[4.53417627,0.0282125,96.54048959],[4.53417676,0.02821424,96.54129662],[4.53417724,0.02821598,96.54210751],[4.53417773,0.02821771,96.54292231],[4.53417822,0.02821945,96.54374107],[4.5341787,0.02822119,96.54456381],[4.53417919,0.02822292,96.54539059],[4.53417967,0.02822466,96.54622145],[4.53418016,0.0282264,96.54705642],[4.53418064,0.02822813,96.54789555],[4.53418112,0.02822987,96.54873888],[4.53418161,0.0282316,96.54958646],[4.53418209,0.02823334,96.55043832],[4.53418258,0.02823508,96.5512945],[4.53418306,0.02823681,96.55215506],[4.53418354,0.02823855,96.55302002],[4.53418403,0.02824028,96.55388944],[4.53418451,0.02824202,96.55476336],[4.53418499,0.02824376,96.55564181],[4.53418547,0.02824549,96.55652485],[4.53418596,0.02824723,96.55741251],[4.53418181,0.02824851,96.54483368]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-4,"type":"shoulder","predecessorId":0,"sOffset":0.0}},{"geometry":{"coordinates":[[[4.53418596,0.02824723,96.55741251],[4.53418547,0.02824549,96.55652485],[4.53418499,0.02824376,96.55564181],[4.53418451,0.02824202,96.55476336],[4.53418403,0.02824028,96.55388944],[4.53418354,0.02823855,96.55302002],[4.53418306,0.02823681,96.55215506],[4.53418258,0.02823508,96.5512945],[4.53418209,0.02823334,96.55043832],[4.53418161,0.0282316,96.54958646],[4.53418112,0.02822987,96.54873888],[4.53418064,0.02822813,96.54789555],[4.53418016,0.0282264,96.54705642],[4.53417967,0.02822466,96.54622145],[4.53417919,0.02822292,96.54539059],[4.5341787,0.02822119,96.54456381],[4.53417822,0.02821945,96.54374107],[4.53417773,0.02821771,96.54292231],[4.53417724,0.02821598,96.54210751],[4.53417676,0.02821424,96.54129662],[4.53417627,0.0282125,96.54048959],[4.53417578,0.02821077,96.53968639],[4.5341753,0.02820903,96.53888697],[4.53417481,0.0282073,96.5380913],[4.53417432,0.02820556,96.53729933],[4.53417384,0.02820383,96.53651103],[4.53417335,0.02820209,96.53572634],[4.53417286,0.02820035,96.53494524],[4.53417237,0.02819862,96.53416767],[4.53417188,0.02819688,96.5333936],[4.53417139,0.02819515,96.53262299],[4.53417091,0.02819341,96.5318558],[4.53417042,0.02819168,96.53109199],[4.53416993,0.02818994,96.53033151],[4.53416944,0.02818821,96.52957433],[4.53416895,0.02818647,96.52882041],[4.53416845,0.02818474,96.5280697],[4.53416796,0.028183,96.52732217],[4.53416747,0.02818127,96.52657778],[4.53416698,0.02817954,96.52583649],[4.53416649,0.0281778,96.52509825],[4.534166,0.02817607,96.52436304],[4.5341655,0.02817433,96.5236308],[4.53416501,0.0281726,96.52290151],[4.53416452,0.02817086,96.52217511],[4.53416402,0.02816913,96.52145158],[4.53416353,0.0281674,96.52073087],[4.53416304,0.02816566,96.52001295],[4.53416254,0.02816393,96.51929777],[4.53416205,0.0281622,96.5185853],[4.53416155,0.02816046,96.5178755],[4.53416106,0.02815873,96.51716834],[4.53416056,0.028157,96.51646376],[4.53416006,0.02815526,96.51576174],[4.53415957,0.02815353,96.51506224],[4.53415907,0.0281518,96.51436522],[4.53415857,0.02815006,96.51367064],[4.53415807,0.02814833,96.51297846],[4.53415758,0.0281466,96.51228865],[4.53415708,0.02814487,96.51160117],[4.53415658,0.02814313,96.51091598],[4.53415608,0.0281414,96.51023305],[4.53415558,0.02813967,96.50955234],[4.53415508,0.02813794,96.50887381],[4.53415458,0.02813621,96.50819743],[4.53415408,0.02813447,96.50752315],[4.53415358,0.02813274,96.50685095],[4.53415307,0.02813101,96.50618079],[4.53415257,0.02812928,96.50551263],[4.53415207,0.02812755,96.50484643],[4.53415156,0.02812582,96.50418216],[4.53415106,0.02812409,96.50351979],[4.53415056,0.02812236,96.50285927],[4.53415005,0.02812063,96.50220058],[4.53414955,0.0281189,96.50154367],[4.53414904,0.02811717,96.50088852],[4.53414854,0.02811544,96.50023509],[4.53414803,0.02811371,96.49958334],[4.53414752,0.02811198,96.49893324],[4.53414701,0.02811025,96.49828475],[4.53414651,0.02810852,96.49763787],[4.534146,0.02810679,96.49699262],[4.53414549,0.02810506,96.496349],[4.53414498,0.02810333,96.49570703],[4.53414447,0.0281016,96.49506674],[4.53414396,0.02809987,96.49442814],[4.53414345,0.02809814,96.49379124],[4.53414294,0.02809641,96.49315606],[4.53414243,0.02809468,96.49252263],[4.53414192,0.02809296,96.49189095],[4.5341414,0.02809123,96.49126104],[4.53414089,0.0280895,96.49063293],[4.53414038,0.02808777,96.49000662],[4.53413987,0.02808604,96.48938214],[4.53413935,0.02808432,96.4887595],[4.53413884,0.02808259,96.48813872],[4.53413833,0.02808086,96.48751981],[4.53413781,0.02807913,96.4869028],[4.5341373,0.02807741,96.4862877],[4.53413678,0.02807568,96.48567453],[4.53413627,0.02807395,96.48506331],[4.53413575,0.02807222,96.48445404],[4.53413524,0.0280705,96.48384676],[4.53413472,0.02806877,96.48324148],[4.53413421,0.02806704,96.48263824],[4.53413369,0.02806531,96.48203711],[4.53413317,0.02806359,96.48143815],[4.53413266,0.02806186,96.48084143],[4.53413214,0.02806013,96.48024703],[4.53413163,0.02805841,96.479655],[4.53413111,0.02805668,96.47906542],[4.53413059,0.02805495,96.47847834],[4.53413008,0.02805323,96.47789385],[4.53412956,0.0280515,96.47731199],[4.53412905,0.02804977,96.47673284],[4.53412853,0.02804804,96.47615647],[4.53412801,0.02804632,96.47558293],[4.5341275,0.02804459,96.4750123],[4.53412698,0.02804286,96.47444464],[4.53412647,0.02804114,96.47388001],[4.53412595,0.02803941,96.47331839],[4.53412544,0.02803768,96.47275968],[4.53412493,0.02803595,96.47220376],[4.53412441,0.02803423,96.47165054],[4.5341239,0.0280325,96.4710999],[4.53412338,0.02803077,96.47055174],[4.53412287,0.02802904,96.47000595],[4.53412236,0.02802731,96.46946244],[4.53412184,0.02802559,96.46892109],[4.53412133,0.02802386,96.46838179],[4.53412081,0.02802213,96.46784445],[4.5341203,0.0280204,96.46730896],[4.53411979,0.02801868,96.46677522],[4.53411927,0.02801695,96.46624312],[4.53411876,0.02801522,96.46571257],[4.53411824,0.02801349,96.46518346],[4.53411773,0.02801177,96.46465569],[4.53411722,0.02801004,96.46412917],[4.5341167,0.02800831,96.46360378],[4.53411619,0.02800658,96.46307943],[4.53411567,0.02800486,96.462556],[4.53411515,0.02800313,96.46203329],[4.53411464,0.0280014,96.46151107],[4.53411412,0.02799968,96.46098913],[4.5341136,0.02799795,96.46046724],[4.53411309,0.02799622,96.4599452],[4.53411257,0.0279945,96.45942277],[4.53411205,0.02799277,96.45889976],[4.53411153,0.02799105,96.45837593],[4.53411101,0.02798932,96.45785108],[4.53411048,0.02798759,96.45732505],[4.53410996,0.02798587,96.45679788],[4.53410944,0.02798415,96.45626968],[4.53410891,0.02798242,96.45574056],[4.53410839,0.0279807,96.45521061],[4.53410786,0.02797897,96.45467994],[4.53410733,0.02797725,96.45414865],[4.5341068,0.02797553,96.45361683],[4.53410627,0.0279738,96.45308461],[4.53410575,0.02797208,96.45255206],[4.53410522,0.02797036,96.4520193],[4.53410469,0.02796864,96.45148642],[4.53410415,0.02796691,96.45095352],[4.53410362,0.02796519,96.4504207],[4.53410309,0.02796347,96.44988807],[4.53410256,0.02796175,96.44935571],[4.53410203,0.02796003,96.44882373],[4.53410149,0.0279583,96.44829222],[4.53410096,0.02795658,96.44776129],[4.53410043,0.02795486,96.44723102],[4.53409989,0.02795314,96.44670151],[4.53409936,0.02795142,96.44617286],[4.53409883,0.0279497,96.44564516],[4.53409829,0.02794797,96.44511851],[4.53409776,0.02794625,96.444593],[4.53409722,0.02794453,96.44406873],[4.53409669,0.02794281,96.44354578],[4.53409615,0.02794109,96.44302425],[4.53409562,0.02793937,96.44250423],[4.53409509,0.02793765,96.44198581],[4.53409455,0.02793592,96.44146908],[4.53409402,0.0279342,96.44095408],[4.53409349,0.02793248,96.44044055],[4.53409295,0.02793076,96.43992819],[4.53409242,0.02792904,96.43941672],[4.53409189,0.02792732,96.43890595],[4.53409135,0.0279256,96.43839581],[4.53409082,0.02792387,96.43788623],[4.53409029,0.02792215,96.43737716],[4.53408975,0.02792043,96.43686851],[4.53408922,0.02791871,96.43636024],[4.53408868,0.02791699,96.43585227],[4.53408815,0.02791527,96.43534453],[4.53408761,0.02791355,96.43483698],[4.53408708,0.02791183,96.43432953],[4.53408654,0.0279101,96.43382213],[4.53408601,0.02790838,96.43331471],[4.53408547,0.02790666,96.43280721],[4.53408493,0.02790494,96.43229957],[4.5340844,0.02790322,96.43179173],[4.53408386,0.0279015,96.43128361],[4.53408332,0.02789978,96.43077516],[4.53408278,0.02789806,96.43026632],[4.53408224,0.02789634,96.42975703],[4.5340817,0.02789462,96.42924721],[4.53408116,0.0278929,96.42873682],[4.53408062,0.02789118,96.42822585],[4.53408008,0.02788946,96.4277145],[4.53407954,0.02788774,96.42720302],[4.534079,0.02788603,96.42669169],[4.53407846,0.02788431,96.42618075],[4.53407792,0.02788259,96.42567034],[4.53407738,0.02788087,96.42516052],[4.53407684,0.02787915,96.42465134],[4.5340763,0.02787743,96.42414283],[4.53407576,0.02787571,96.42363506],[4.53407521,0.02787399,96.42312805],[4.53407467,0.02787227,96.42262186],[4.53407413,0.02787055,96.42211654],[4.53407359,0.02786883,96.42161212],[4.53407305,0.02786711,96.42110865],[4.53407251,0.02786539,96.42060617],[4.53407197,0.02786367,96.42010473],[4.53407143,0.02786196,96.41960437],[4.53407089,0.02786024,96.41910514],[4.53407035,0.02785852,96.41860704],[4.53406982,0.0278568,96.41811004],[4.53406928,0.02785508,96.41761406],[4.53406874,0.02785336,96.41711903],[4.5340682,0.02785164,96.41662487],[4.53406766,0.02784992,96.41613152],[4.53406713,0.0278482,96.4156389],[4.53406659,0.02784647,96.41514694],[4.53406605,0.02784475,96.41465557],[4.53406551,0.02784303,96.41416473],[4.53406498,0.02784131,96.41367433],[4.53406444,0.02783959,96.41318432],[4.5340639,0.02783787,96.41269462],[4.53406337,0.02783615,96.41220517],[4.53406283,0.02783443,96.41171588],[4.53406229,0.02783271,96.4112267],[4.53406176,0.02783099,96.41073756],[4.53406122,0.02782927,96.41024839],[4.53406068,0.02782755,96.40975912],[4.53406015,0.02782583,96.40926968],[4.53405961,0.02782411,96.40878006],[4.53405907,0.02782239,96.40829026],[4.53405853,0.02782067,96.40780031],[4.534058,0.02781895,96.40731022],[4.53405746,0.02781723,96.40682002],[4.53405692,0.02781551,96.40632971],[4.53405639,0.02781379,96.40583931],[4.53405585,0.02781207,96.40534885],[4.53405531,0.02781035,96.40485833],[4.53405478,0.02780862,96.40436777],[4.53405424,0.0278069,96.4038772],[4.5340537,0.02780518,96.40338661],[4.53405317,0.02780346,96.40289604],[4.53405263,0.02780174,96.40240549],[4.53405209,0.02780002,96.40191498],[4.53405156,0.0277983,96.40142452],[4.53405102,0.02779658,96.40093413],[4.53405049,0.02779486,96.40044382],[4.53404995,0.02779314,96.39995361],[4.53404942,0.02779142,96.39946352],[4.53404888,0.0277897,96.39897354],[4.53404835,0.02778798,96.3984837],[4.53404781,0.02778625,96.39799402],[4.53404728,0.02778453,96.39750449],[4.53404674,0.02778281,96.39701515],[4.53404621,0.02778109,96.39652599],[4.53404568,0.02777937,96.39603704],[4.53404515,0.02777765,96.3955483],[4.53404461,0.02777593,96.39505979],[4.53404408,0.0277742,96.39457151],[4.53404355,0.02777248,96.39408347],[4.53404302,0.02777076,96.39359564],[4.53404249,0.02776904,96.39310795],[4.53404196,0.02776731,96.39262036],[4.53404142,0.02776559,96.39213281],[4.53404089,0.02776387,96.39164525],[4.53404036,0.02776215,96.39115763],[4.53403983,0.02776042,96.39066989],[4.53403931,0.0277587,96.39018198],[4.53403878,0.02775698,96.38969385],[4.53403825,0.02775526,96.38920544],[4.53403772,0.02775353,96.3887167],[4.53403719,0.02775181,96.38822759],[4.53403666,0.02775009,96.38773804],[4.53403613,0.02774836,96.387248],[4.53403561,0.02774664,96.38675743],[4.53403508,0.02774492,96.38626627],[4.53403455,0.02774319,96.38577448],[4.53403402,0.02774147,96.38528199],[4.5340335,0.02773975,96.38478876],[4.53403297,0.02773802,96.38429474],[4.53403244,0.0277363,96.38379987],[4.53403192,0.02773458,96.38330409],[4.53403139,0.02773285,96.38280736],[4.53403086,0.02773113,96.3823096],[4.53403034,0.0277294,96.38181077],[4.53402981,0.02772768,96.38131081],[4.53402928,0.02772596,96.38080967],[4.53402876,0.02772423,96.38030729],[4.53402823,0.02772251,96.37980361],[4.53402771,0.02772079,96.37929858],[4.53402718,0.02771906,96.37879215],[4.53402665,0.02771734,96.37828425],[4.53402613,0.02771561,96.37777485],[4.5340256,0.02771389,96.37726387],[4.53402507,0.02771217,96.37675127],[4.53402455,0.02771044,96.37623699],[4.53402402,0.02770872,96.37572098],[4.53402349,0.027707,96.37520318],[4.53402297,0.02770527,96.37468355],[4.53402244,0.02770355,96.37416202],[4.53402191,0.02770183,96.37363855],[4.53402139,0.0277001,96.37311308],[4.53402086,0.02769838,96.37258556],[4.53402033,0.02769666,96.37205593],[4.5340198,0.02769493,96.37152414],[4.53401927,0.02769321,96.37099013],[4.53401875,0.02769149,96.37045386],[4.53401822,0.02768976,96.36991527],[4.53401769,0.02768804,96.3693743],[4.53401716,0.02768632,96.36883091],[4.53401663,0.02768459,96.36828503],[4.5340161,0.02768287,96.36773662],[4.53401557,0.02768115,96.36718562],[4.53401504,0.02767943,96.366632],[4.53401451,0.0276777,96.36607575],[4.53401398,0.02767598,96.36551683],[4.53401345,0.02767426,96.36495525],[4.53401292,0.02767254,96.36439097],[4.53401239,0.02767081,96.36382399],[4.53401186,0.02766909,96.36325431],[4.53401133,0.02766737,96.36268191],[4.53401079,0.02766565,96.36210678],[4.53401026,0.02766393,96.36152893],[4.53400973,0.0276622,96.36094833],[4.5340092,0.02766048,96.36036499],[4.53400866,0.02765876,96.35977889],[4.53400813,0.02765704,96.35919002],[4.5340076,0.02765532,96.35859838],[4.53400706,0.0276536,96.35800395],[4.53400653,0.02765188,96.35740673],[4.534006,0.02765015,96.35680671],[4.53400546,0.02764843,96.35620388],[4.53400493,0.02764671,96.35559823],[4.53400439,0.02764499,96.35498975],[4.53400386,0.02764327,96.35437842],[4.53400332,0.02764155,96.35376426],[4.53400279,0.02763983,96.35314723],[4.53400225,0.02763811,96.35252733],[4.53400172,0.02763639,96.35190456],[4.53400118,0.02763467,96.3512789],[4.53400065,0.02763294,96.35065034],[4.53400011,0.02763122,96.35001887],[4.53399958,0.0276295,96.34938449],[4.53399904,0.02762778,96.34874718],[4.53399851,0.02762606,96.34810692],[4.53399797,0.02762434,96.34746373],[4.53399743,0.02762262,96.34681757],[4.5339969,0.0276209,96.34616844],[4.53399636,0.02761918,96.34551633],[4.53399583,0.02761746,96.34486123],[4.53399529,0.02761574,96.34420313],[4.53399475,0.02761402,96.34354202],[4.53399422,0.0276123,96.34287789],[4.53399368,0.02761058,96.34221072],[4.53399314,0.02760886,96.3415405],[4.53399261,0.02760714,96.34086724],[4.53399207,0.02760541,96.3401909],[4.53399153,0.02760369,96.33951149],[4.533991,0.02760197,96.33882899],[4.53399046,0.02760025,96.33814339],[4.53398992,0.02759853,96.33745468],[4.53398939,0.02759681,96.33676285],[4.53398885,0.02759509,96.33606789],[4.53398831,0.02759337,96.33536978],[4.53398778,0.02759165,96.33466852],[4.53398724,0.02758993,96.33396409],[4.53398671,0.02758821,96.33325648],[4.53398617,0.02758649,96.33254568],[4.53398563,0.02758477,96.33183169],[4.5339851,0.02758305,96.33111448],[4.53398456,0.02758133,96.33039405],[4.53398403,0.02757961,96.32967039],[4.53398349,0.02757789,96.32894348],[4.53398295,0.02757617,96.32821332],[4.53398242,0.02757445,96.32747988],[4.53398188,0.02757272,96.32674317],[4.53398135,0.027571,96.32600316],[4.53398081,0.02756928,96.32525982],[4.53398028,0.02756756,96.32451316],[4.53397974,0.02756584,96.32376314],[4.53397921,0.02756412,96.32300975],[4.53397867,0.0275624,96.32225297],[4.53397814,0.02756068,96.32149279],[4.5339776,0.02755896,96.32072919],[4.53397707,0.02755724,96.31996214],[4.53397653,0.02755551,96.31919164],[4.533976,0.02755379,96.31841766],[4.53397547,0.02755207,96.31764019],[4.53397493,0.02755035,96.31685921],[4.5339744,0.02754863,96.3160747],[4.53397386,0.02754691,96.31528665],[4.53397333,0.02754519,96.31449504],[4.5339728,0.02754347,96.31369985],[4.53397226,0.02754174,96.31290107],[4.53397173,0.02754002,96.31209868],[4.5339712,0.0275383,96.31129265],[4.53397067,0.02753658,96.31048298],[4.53397013,0.02753486,96.30966965],[4.5339696,0.02753314,96.30885264],[4.53396907,0.02753141,96.30803194],[4.53396854,0.02752969,96.30720752],[4.53396801,0.02752797,96.30637938],[4.53396748,0.02752625,96.30554749],[4.53396694,0.02752453,96.30471184],[4.53396641,0.0275228,96.30387241],[4.53396588,0.02752108,96.3030292],[4.53396535,0.02751936,96.30218217],[4.53396482,0.02751764,96.30133132],[4.53396429,0.02751591,96.30047663],[4.53396376,0.02751419,96.29961809],[4.53396323,0.02751247,96.29875567],[4.5339627,0.02751075,96.29788937],[4.53396217,0.02750902,96.29701916],[4.53396165,0.0275073,96.29614504],[4.53396112,0.02750558,96.29526699],[4.53396059,0.02750385,96.29438499],[4.53396006,0.02750213,96.29349904],[4.53395953,0.02750041,96.2926091],[4.53395901,0.02749869,96.29171518],[4.53395848,0.02749696,96.29081724],[4.53395795,0.02749524,96.28991527],[4.53395743,0.02749352,96.28900919],[4.5339569,0.02749179,96.28809893],[4.53395637,0.02749007,96.28718444],[4.53395585,0.02748834,96.28626565],[4.53395532,0.02748662,96.2853425],[4.53395479,0.0274849,96.28441492],[4.53395427,0.02748317,96.28348285],[4.53395374,0.02748145,96.28254622],[4.53395322,0.02747973,96.28160497],[4.53395269,0.027478,96.28065904],[4.53395217,0.02747628,96.27970836],[4.53395164,0.02747455,96.27875287],[4.53395112,0.02747283,96.27779249],[4.53395059,0.02747111,96.27682717],[4.53395007,0.02746938,96.27585684],[4.53394954,0.02746766,96.27488144],[4.53394902,0.02746593,96.2739009],[4.53394849,0.02746421,96.27291514],[4.53394797,0.02746249,96.27192412],[4.53394744,0.02746076,96.27092775],[4.53394691,0.02745904,96.26992598],[4.53394639,0.02745731,96.26891874],[4.53394586,0.02745559,96.26790595],[4.53394534,0.02745387,96.26688756],[4.53394481,0.02745214,96.26586349],[4.53394428,0.02745042,96.26483368],[4.53394376,0.0274487,96.26379805],[4.53394323,0.02744697,96.26275654],[4.5339427,0.02744525,96.26170909],[4.53394218,0.02744353,96.26065561],[4.53394165,0.0274418,96.25959604],[4.53394112,0.02744008,96.2585303],[4.53394059,0.02743836,96.25745834],[4.53394006,0.02743664,96.25638008],[4.53393953,0.02743491,96.25529543],[4.533939,0.02743319,96.25420435],[4.53393847,0.02743147,96.25310674],[4.53393794,0.02742975,96.25200254],[4.53393741,0.02742802,96.25089167],[4.53393688,0.0274263,96.2497741],[4.53393635,0.02742458,96.24864981],[4.53393582,0.02742286,96.2475188],[4.53393528,0.02742114,96.24638107],[4.53393475,0.02741941,96.24523659],[4.53393422,0.02741769,96.24408537],[4.53393368,0.02741597,96.24292739],[4.53393315,0.02741425,96.24176266],[4.53393262,0.02741253,96.24059115],[4.53393208,0.02741081,96.23941287],[4.53393155,0.02740909,96.23822781],[4.53393101,0.02740737,96.23703596],[4.53393047,0.02740565,96.23583731],[4.53392994,0.02740393,96.23463185],[4.5339294,0.02740221,96.23341959],[4.53392887,0.02740049,96.23220053],[4.53392833,0.02739877,96.23097486],[4.53392779,0.02739705,96.22974278],[4.53392725,0.02739533,96.22850447],[4.53392672,0.02739361,96.22726015],[4.53392618,0.02739189,96.22601002],[4.53392564,0.02739017,96.22475428],[4.5339251,0.02738845,96.22349312],[4.53392456,0.02738673,96.22222676],[4.53392402,0.02738501,96.22095538],[4.53392348,0.02738329,96.21967921],[4.53392294,0.02738157,96.21839843],[4.5339224,0.02737985,96.21711325],[4.53392186,0.02737813,96.21582388],[4.53392132,0.02737641,96.21453051],[4.53392078,0.02737469,96.21323336],[4.53392024,0.02737297,96.21193262],[4.5339197,0.02737125,96.2106285],[4.53391916,0.02736953,96.2093212],[4.53391862,0.02736782,96.20801093],[4.53391808,0.0273661,96.2066979],[4.53391754,0.02736438,96.2053823],[4.533917,0.02736266,96.20406435],[4.53391646,0.02736094,96.20274425],[4.53391592,0.02735922,96.2014222],[4.53391538,0.0273575,96.20009842],[4.53391484,0.02735578,96.19877311],[4.53391429,0.02735406,96.19744647],[4.53391375,0.02735235,96.19611872],[4.53391321,0.02735063,96.19479007],[4.53391267,0.02734891,96.19346071],[4.53391213,0.02734719,96.19213087],[4.53391159,0.02734547,96.19080075],[4.53391105,0.02734375,96.18947055],[4.5339105,0.02734203,96.1881405],[4.53390996,0.02734031,96.18681079],[4.53390942,0.0273386,96.18548164],[4.53390888,0.02733688,96.18415326],[4.53390834,0.02733516,96.18282586],[4.5339078,0.02733344,96.18149965],[4.53390726,0.02733172,96.18017485],[4.53390672,0.02733,96.17885166],[4.53390618,0.02732828,96.1775303],[4.53390564,0.02732656,96.17621099],[4.53390509,0.02732484,96.17489394],[4.53390455,0.02732312,96.17357936],[4.53390401,0.02732141,96.17226748],[4.53390347,0.02731969,96.17095852],[4.53390293,0.02731797,96.16965269],[4.53390239,0.02731625,96.16835022],[4.53390185,0.02731453,96.16705132],[4.53390131,0.02731281,96.16575621],[4.53390078,0.02731109,96.16446512],[4.53390024,0.02730937,96.16317826],[4.5338997,0.02730765,96.16189586],[4.53389916,0.02730593,96.16061814],[4.53389862,0.02730421,96.15934531],[4.53389808,0.02730249,96.1580776],[4.53389755,0.02730077,96.15681523],[4.53389701,0.02729905,96.15555843],[4.53389647,0.02729733,96.15430741],[4.53389593,0.02729561,96.1530624],[4.5338954,0.02729389,96.15182362],[4.53389486,0.02729217,96.15059129],[4.53389433,0.02729045,96.14936563],[4.53389379,0.02728873,96.14814688],[4.53389326,0.02728701,96.14693523],[4.53389272,0.02728529,96.14573085],[4.53389219,0.02728357,96.14453386],[4.53389165,0.02728185,96.1433444],[4.53389112,0.02728013,96.14216262],[4.53389059,0.0272784,96.14098865],[4.53389005,0.02727668,96.13982262],[4.53388952,0.02727496,96.13866468],[4.53388899,0.02727324,96.13751495],[4.53388845,0.02727152,96.13637358],[4.53388792,0.0272698,96.13524069],[4.53388739,0.02726808,96.13411642],[4.53388686,0.02726635,96.1330009],[4.53388632,0.02726463,96.13189426],[4.53388579,0.02726291,96.13079665],[4.53388526,0.02726119,96.12970818],[4.53388473,0.02725947,96.12862899],[4.5338842,0.02725774,96.12755921],[4.53388367,0.02725602,96.12649897],[4.53388314,0.0272543,96.12544841],[4.5338826,0.02725258,96.12440764],[4.53388207,0.02725086,96.1233768],[4.53388154,0.02724914,96.12235602],[4.53388101,0.02724741,96.12134544],[4.53388048,0.02724569,96.12034516],[4.53387995,0.02724397,96.11935533],[4.53387942,0.02724225,96.11837608],[4.53387888,0.02724053,96.11740755],[4.53387835,0.0272388,96.11644994],[4.53387782,0.02723708,96.11550342],[4.53387729,0.02723536,96.11456818],[4.53387676,0.02723364,96.11364439],[4.53387622,0.02723192,96.11273226],[4.53387569,0.0272302,96.11183195],[4.53387516,0.02722847,96.11094365],[4.53387463,0.02722675,96.11006754],[4.53387409,0.02722503,96.10920381],[4.53387356,0.02722331,96.10835264],[4.53387303,0.02722159,96.10751421],[4.5338725,0.02721987,96.1066887],[4.53387196,0.02721815,96.10587631],[4.53387143,0.02721642,96.10507721],[4.5338709,0.0272147,96.10429158],[4.53387037,0.02721298,96.10351961],[4.53386983,0.02721126,96.10276148],[4.5338693,0.02720954,96.10201738],[4.53386877,0.02720782,96.10128749],[4.53386823,0.0272061,96.10057199],[4.5338677,0.02720438,96.09987085],[4.53386717,0.02720265,96.09918389],[4.53386663,0.02720093,96.09851089],[4.5338661,0.02719921,96.09785164],[4.53386556,0.02719749,96.09720593],[4.53386503,0.02719577,96.09657356],[4.5338645,0.02719405,96.09595431],[4.53386396,0.02719233,96.09534798],[4.53386343,0.02719061,96.09475436],[4.53386289,0.02718889,96.09417324],[4.53386236,0.02718716,96.09360441],[4.53386183,0.02718544,96.09304767],[4.53386129,0.02718372,96.09250279],[4.53386076,0.027182,96.09196959],[4.53386022,0.02718028,96.09144784],[4.53385969,0.02717856,96.09093734],[4.53385915,0.02717684,96.09043789],[4.53385862,0.02717512,96.08994927],[4.53385809,0.0271734,96.08947127],[4.53385755,0.02717168,96.08900369],[4.53385702,0.02716996,96.08854632],[4.53385648,0.02716824,96.08809895],[4.53385595,0.02716651,96.08766138],[4.53385541,0.02716479,96.08723339],[4.53385488,0.02716307,96.08681478],[4.53385434,0.02716135,96.08640534],[4.53385381,0.02715963,96.08600486],[4.53385327,0.02715791,96.08561313],[4.53385274,0.02715619,96.08522996],[4.5338522,0.02715447,96.08485512],[4.53385167,0.02715275,96.08448841],[4.53385113,0.02715103,96.08412963],[4.53385059,0.02714931,96.08377856],[4.53385006,0.02714759,96.08343499],[4.53384952,0.02714587,96.0830987],[4.53384899,0.02714415,96.08276949],[4.53384845,0.02714243,96.08244714],[4.53384792,0.02714071,96.08213144],[4.53384738,0.02713899,96.08182218],[4.53384685,0.02713727,96.08151915],[4.53384631,0.02713554,96.08122213],[4.53384577,0.02713382,96.08093091],[4.53384524,0.0271321,96.08064529],[4.5338447,0.02713038,96.08036504],[4.53384417,0.02712866,96.08008996],[4.53384363,0.02712694,96.07981983],[4.53384309,0.02712522,96.07955445],[4.53384256,0.0271235,96.0792936],[4.53384202,0.02712178,96.07903706],[4.53384148,0.02712006,96.07878464],[4.53384095,0.02711834,96.07853612],[4.53384041,0.02711662,96.07829128],[4.53383988,0.0271149,96.07804991],[4.53383934,0.02711318,96.07781181],[4.5338388,0.02711146,96.07757676],[4.53383827,0.02710974,96.07734454],[4.53383773,0.02710802,96.07711496],[4.53383719,0.0271063,96.0768878],[4.53383665,0.02710458,96.07666284],[4.53383612,0.02710286,96.07643988],[4.53383558,0.02710114,96.0762187],[4.53383504,0.02709942,96.07599909],[4.53383451,0.0270977,96.07578085],[4.53383397,0.02709598,96.07556376],[4.53383343,0.02709426,96.07534762],[4.53383289,0.02709254,96.07513221],[4.53383236,0.02709082,96.07491734],[4.53383182,0.0270891,96.0747028],[4.53383128,0.02708738,96.07448837],[4.53383074,0.02708566,96.07427387],[4.5338302,0.02708394,96.07405907],[4.53382967,0.02708222,96.07384377],[4.53382913,0.0270805,96.07362777],[4.53382859,0.02707878,96.07341086],[4.53382805,0.02707706,96.07319284],[4.53382751,0.02707534,96.07297349],[4.53382698,0.02707363,96.07275261],[4.53382644,0.02707191,96.07253],[4.5338259,0.02707019,96.07230545],[4.53382536,0.02706847,96.07207874],[4.53382482,0.02706675,96.07184969],[4.53382428,0.02706503,96.07161807],[4.53382375,0.02706331,96.07138369],[4.53382321,0.02706159,96.07114633],[4.53382267,0.02705987,96.07090579],[4.53382213,0.02705815,96.07066186],[4.53382159,0.02705643,96.07041434],[4.53382105,0.02705471,96.07016301],[4.53382051,0.02705299,96.06990768],[4.53381997,0.02705127,96.06964814],[4.53381944,0.02704955,96.06938417],[4.5338189,0.02704783,96.06911557],[4.53381836,0.02704611,96.06884214],[4.53381782,0.02704439,96.06856366],[4.53381728,0.02704268,96.06827994],[4.53381674,0.02704096,96.06799075],[4.5338162,0.02703924,96.06769591],[4.53381566,0.02703752,96.06739519],[4.53381512,0.0270358,96.06708839],[4.53381458,0.02703408,96.0667753],[4.53381404,0.02703236,96.06645573],[4.5338135,0.02703064,96.06612945],[4.53381296,0.02702892,96.06579626],[4.53381242,0.0270272,96.06545596],[4.53381188,0.02702548,96.06510833],[4.53381134,0.02702376,96.06475317],[4.53381081,0.02702205,96.06439028],[4.53381027,0.02702033,96.06401943],[4.53380973,0.02701861,96.06364044],[4.53380919,0.02701689,96.06325308],[4.53380865,0.02701517,96.06285715],[4.53380811,0.02701345,96.06245245],[4.53380757,0.02701173,96.06203875],[4.53380703,0.02701001,96.06161587],[4.53380649,0.02700829,96.06118358],[4.53380595,0.02700657,96.06074169],[4.53380541,0.02700485,96.06028998],[4.53380487,0.02700314,96.05982824],[4.53380433,0.02700142,96.05935627],[4.53380379,0.0269997,96.05887386],[4.53380325,0.02699798,96.0583808],[4.53380271,0.02699626,96.05787688],[4.53380217,0.02699454,96.0573619],[4.53380163,0.02699282,96.05683564],[4.53380109,0.0269911,96.0562979],[4.53380055,0.02698938,96.05574847],[4.53380001,0.02698766,96.05518714],[4.53379947,0.02698595,96.0546137],[4.53379893,0.02698423,96.05402795],[4.53379839,0.02698251,96.05342967],[4.53379785,0.02698079,96.05281867],[4.53379731,0.02697907,96.05219472],[4.53379677,0.02697736,96.05155762],[4.53379623,0.02697564,96.05090717],[4.53379569,0.02697392,96.05024315],[4.53379515,0.0269722,96.04956536],[4.53379461,0.02697048,96.04887358],[4.53379407,0.02696876,96.04816762],[4.53379353,0.02696704,96.04744726],[4.53379299,0.02696532,96.0467123],[4.53379244,0.0269636,96.04596272],[4.5337919,0.02696189,96.04519869],[4.53379136,0.02696017,96.04442039],[4.53379082,0.02695845,96.04362799],[4.53379028,0.02695673,96.04282167],[4.53378974,0.02695501,96.0420016],[4.5337892,0.02695329,96.04116796],[4.53378866,0.02695157,96.04032091],[4.53378812,0.02694985,96.03946065],[4.53378758,0.02694813,96.03858734],[4.53378704,0.02694642,96.03770115],[4.5337865,0.0269447,96.03680227],[4.53378596,0.02694298,96.03589087],[4.53378542,0.02694126,96.03496712],[4.53378488,0.02693954,96.0340312],[4.53378434,0.02693782,96.03308328],[4.5337838,0.0269361,96.03212355],[4.53378326,0.02693438,96.03115217],[4.53378272,0.02693266,96.03016932],[4.53378218,0.02693094,96.02917519],[4.53378164,0.02692923,96.02816993],[4.5337811,0.02692751,96.02715373],[4.53378056,0.02692579,96.02612677],[4.53378002,0.02692407,96.02508922],[4.53377948,0.02692235,96.02404125],[4.53377894,0.02692063,96.02298304],[4.5337784,0.02691891,96.02191477],[4.53377786,0.02691719,96.02083661],[4.53377732,0.02691547,96.01974876],[4.53377678,0.02691375,96.01865137],[4.53377624,0.02691204,96.01754465],[4.5337757,0.02691032,96.01642875],[4.53377516,0.0269086,96.01530388],[4.53377462,0.02690688,96.01417019],[4.53377408,0.02690516,96.01302788],[4.53377354,0.02690344,96.01187713],[4.533773,0.02690172,96.0107181],[4.53377246,0.0269,96.009551],[4.53377193,0.02689828,96.00837598],[4.53377139,0.02689656,96.00719324],[4.53377085,0.02689484,96.00600293],[4.53377031,0.02689312,96.00480523],[4.53376977,0.02689141,96.00360031],[4.53376923,0.02688969,96.00238834],[4.53376869,0.02688797,96.0011695],[4.53376815,0.02688625,95.99994394],[4.53376761,0.02688453,95.99871184],[4.53376707,0.02688281,95.99747337],[4.53376653,0.02688109,95.99622869],[4.53376599,0.02687937,95.99497799],[4.53376546,0.02687765,95.99372143],[4.53376492,0.02687593,95.99245918],[4.53376438,0.02687421,95.99119141],[4.53376384,0.02687249,95.98991829],[4.5337633,0.02687077,95.98863998],[4.53376276,0.02686905,95.98735667],[4.53376222,0.02686733,95.98606851],[4.53376168,0.02686562,95.98477568],[4.53376114,0.0268639,95.98347835],[4.53376061,0.02686218,95.98217669],[4.53376007,0.02686046,95.98087086],[4.53375953,0.02685874,95.97956104],[4.53375899,0.02685702,95.97824739],[4.53375845,0.0268553,95.97693009],[4.53375791,0.02685358,95.97560931],[4.53375737,0.02685186,95.97428521],[4.53375683,0.02685014,95.97295796],[4.53375629,0.02684842,95.97162773],[4.53375576,0.0268467,95.97029469],[4.53375522,0.02684498,95.96895901],[4.53375468,0.02684326,95.96762086],[4.53375414,0.02684154,95.96628041],[4.5337536,0.02683982,95.96493782],[4.53375306,0.0268381,95.96359326],[4.53375252,0.02683639,95.96224691],[4.53375198,0.02683467,95.96089894],[4.53375145,0.02683295,95.9595495],[4.53375091,0.02683123,95.95819877],[4.53375037,0.02682951,95.95684691],[4.53374983,0.02682779,95.9554941],[4.53374929,0.02682607,95.95414051],[4.53374875,0.02682435,95.95278629],[4.53374821,0.02682263,95.95143162],[4.53374767,0.02682091,95.95007667],[4.53374713,0.02681919,95.94872161],[4.5337466,0.02681747,95.94736659],[4.53374606,0.02681575,95.9460118],[4.53374552,0.02681403,95.9446574],[4.53374498,0.02681231,95.94330354],[4.53374444,0.02681059,95.94195042],[4.5337439,0.02680888,95.94059818],[4.53374336,0.02680716,95.939247],[4.53374282,0.02680544,95.93789704],[4.53374228,0.02680372,95.93654848],[4.53374174,0.026802,95.93520147],[4.5337412,0.02680028,95.93385619],[4.53374066,0.02679856,95.9325128],[4.53374012,0.02679684,95.93117147],[4.53373958,0.02679512,95.92983237],[4.53373904,0.0267934,95.92849566],[4.5337385,0.02679168,95.92716151],[4.53373796,0.02678996,95.92583009],[4.53373742,0.02678824,95.92450156],[4.53373688,0.02678653,95.92317609],[4.53373634,0.02678481,95.92185385],[4.5337358,0.02678309,95.920535],[4.53373526,0.02678137,95.9192197],[4.53373472,0.02677965,95.91790813],[4.53373418,0.02677793,95.91660046],[4.53373364,0.02677621,95.91529684],[4.5337331,0.02677449,95.91399744],[4.53373256,0.02677277,95.91270243],[4.53373202,0.02677105,95.91141198],[4.53373148,0.02676934,95.91012625],[4.53373094,0.02676762,95.90884541],[4.5337304,0.0267659,95.90756963],[4.53372986,0.02676418,95.90629906],[4.53372932,0.02676246,95.90503388],[4.53372878,0.02676074,95.90377424],[4.53372823,0.02675902,95.90252033],[4.53372769,0.0267573,95.9012723],[4.53372715,0.02675559,95.90003032],[4.53372661,0.02675387,95.89879455],[4.53372607,0.02675215,95.89756517],[4.53372553,0.02675043,95.89634233],[4.53372498,0.02674871,95.8951262],[4.53372444,0.02674699,95.89391695],[4.5337239,0.02674527,95.89271475],[4.53372336,0.02674356,95.89151975],[4.53372282,0.02674184,95.89033213],[4.53372227,0.02674012,95.88915206],[4.53372173,0.0267384,95.88797968],[4.53372119,0.02673668,95.88681515],[4.53372065,0.02673496,95.88565843],[4.5337201,0.02673325,95.88450946],[4.53371956,0.02673153,95.88336819],[4.53371902,0.02672981,95.88223454],[4.53371847,0.02672809,95.88110848],[4.53371823,0.02672731,95.88059873],[4.53374739,0.02671799,95.97479853],[4.53374763,0.02671877,95.97524295],[4.53374817,0.02672049,95.97622352],[4.53374872,0.02672221,95.97720905],[4.53374926,0.02672393,95.97819958],[4.5337498,0.02672564,95.97919512],[4.53375034,0.02672736,95.98019572],[4.53375089,0.02672908,95.9812014],[4.53375143,0.0267308,95.98221217],[4.53375197,0.02673252,95.98322795],[4.53375251,0.02673424,95.98424861],[4.53375306,0.02673596,95.98527407],[4.5337536,0.02673768,95.9863042],[4.53375414,0.02673939,95.9873389],[4.53375468,0.02674111,95.98837806],[4.53375522,0.02674283,95.98942157],[4.53375577,0.02674455,95.99046932],[4.53375631,0.02674627,95.99152121],[4.53375685,0.02674799,95.99257712],[4.53375739,0.02674971,95.99363695],[4.53375794,0.02675143,95.99470059],[4.53375848,0.02675314,95.99576792],[4.53375902,0.02675486,95.99683884],[4.53375956,0.02675658,95.99791325],[4.53376011,0.0267583,95.99899103],[4.53376065,0.02676002,96.00007208],[4.53376119,0.02676174,96.00115628],[4.53376173,0.02676346,96.00224352],[4.53376227,0.02676518,96.00333371],[4.53376282,0.02676689,96.00442673],[4.53376336,0.02676861,96.00552247],[4.5337639,0.02677033,96.00662082],[4.53376444,0.02677205,96.00772167],[4.53376498,0.02677377,96.00882493],[4.53376553,0.02677549,96.00993047],[4.53376607,0.02677721,96.01103819],[4.53376661,0.02677893,96.01214798],[4.53376715,0.02678064,96.01325973],[4.5337677,0.02678236,96.01437334],[4.53376824,0.02678408,96.0154887],[4.53376878,0.0267858,96.01660569],[4.53376932,0.02678752,96.01772421],[4.53376986,0.02678924,96.01884416],[4.53377041,0.02679096,96.01996541],[4.53377095,0.02679268,96.02108788],[4.53377149,0.0267944,96.02221144],[4.53377203,0.02679611,96.02333598],[4.53377257,0.02679783,96.02446141],[4.53377312,0.02679955,96.02558761],[4.53377366,0.02680127,96.02671448],[4.5337742,0.02680299,96.0278419],[4.53377474,0.02680471,96.02896977],[4.53377528,0.02680643,96.03009798],[4.53377582,0.02680815,96.03122642],[4.53377637,0.02680986,96.03235498],[4.53377691,0.02681158,96.03348357],[4.53377745,0.0268133,96.03461206],[4.53377799,0.02681502,96.03574035],[4.53377853,0.02681674,96.03686834],[4.53377907,0.02681846,96.03799591],[4.53377962,0.02682018,96.03912295],[4.53378016,0.0268219,96.04024937],[4.5337807,0.02682362,96.04137505],[4.53378124,0.02682534,96.04249988],[4.53378178,0.02682705,96.04362376],[4.53378232,0.02682877,96.04474658],[4.53378286,0.02683049,96.04586822],[4.53378341,0.02683221,96.04698859],[4.53378395,0.02683393,96.04810758],[4.53378449,0.02683565,96.04922508],[4.53378503,0.02683737,96.05034097],[4.53378557,0.02683909,96.05145516],[4.53378611,0.02684081,96.05256753],[4.53378665,0.02684253,96.05367798],[4.53378719,0.02684424,96.05478641],[4.53378774,0.02684596,96.05589269],[4.53378828,0.02684768,96.05699673],[4.53378882,0.0268494,96.05809842],[4.53378936,0.02685112,96.05919764],[4.5337899,0.02685284,96.06029431],[4.53379044,0.02685456,96.06138829],[4.53379098,0.02685628,96.0624795],[4.53379152,0.026858,96.06356781],[4.53379206,0.02685972,96.06465313],[4.5337926,0.02686144,96.06573535],[4.53379314,0.02686316,96.06681435],[4.53379368,0.02686487,96.06789003],[4.53379422,0.02686659,96.06896229],[4.53379477,0.02686831,96.07003102],[4.53379531,0.02687003,96.0710961],[4.53379585,0.02687175,96.07215744],[4.53379639,0.02687347,96.07321492],[4.53379693,0.02687519,96.07426844],[4.53379747,0.02687691,96.07531789],[4.53379801,0.02687863,96.07636316],[4.53379855,0.02688035,96.07740414],[4.53379909,0.02688207,96.07844074],[4.53379963,0.02688379,96.07947283],[4.53380017,0.02688551,96.08050032],[4.53380071,0.02688723,96.08152309],[4.53380125,0.02688895,96.08254105],[4.53380179,0.02689067,96.08355407],[4.53380233,0.02689238,96.08456206],[4.53380287,0.0268941,96.0855649],[4.53380341,0.02689582,96.08656249],[4.53380395,0.02689754,96.08755473],[4.53380449,0.02689926,96.0885415],[4.53380502,0.02690098,96.08952269],[4.53380556,0.0269027,96.09049821],[4.5338061,0.02690442,96.09146793],[4.53380664,0.02690614,96.09243176],[4.53380718,0.02690786,96.09338959],[4.53380772,0.02690958,96.09434131],[4.53380826,0.0269113,96.0952868],[4.5338088,0.02691302,96.09622597],[4.53380934,0.02691474,96.09715871],[4.53380988,0.02691646,96.09808492],[4.53381042,0.02691818,96.09900448],[4.53381095,0.0269199,96.0999173],[4.53381149,0.02692162,96.10082327],[4.53381203,0.02692334,96.10172229],[4.53381257,0.02692506,96.10261425],[4.53381311,0.02692678,96.10349904],[4.53381365,0.0269285,96.10437657],[4.53381419,0.02693022,96.10524673],[4.53381472,0.02693194,96.10610941],[4.53381526,0.02693366,96.1069645],[4.5338158,0.02693538,96.10781191],[4.53381634,0.0269371,96.10865153],[4.53381688,0.02693882,96.10948324],[4.53381742,0.02694054,96.11030696],[4.53381795,0.02694226,96.11112256],[4.53381849,0.02694398,96.11192995],[4.53381903,0.0269457,96.11272902],[4.53381957,0.02694742,96.11351966],[4.53382011,0.02694914,96.11430178],[4.53382064,0.02695086,96.11507525],[4.53382118,0.02695258,96.11583999],[4.53382172,0.0269543,96.11659587],[4.53382226,0.02695602,96.11734281],[4.53382279,0.02695774,96.11808069],[4.53382333,0.02695946,96.11880952],[4.53382387,0.02696118,96.11952944],[4.53382441,0.0269629,96.12024057],[4.53382495,0.02696462,96.12094304],[4.53382548,0.02696634,96.12163698],[4.53382602,0.02696806,96.12232252],[4.53382656,0.02696978,96.12299979],[4.53382709,0.0269715,96.12366892],[4.53382763,0.02697322,96.12433004],[4.53382817,0.02697494,96.12498328],[4.53382871,0.02697666,96.12562876],[4.53382924,0.02697838,96.12626663],[4.53382978,0.0269801,96.126897],[4.53383032,0.02698182,96.12752],[4.53383085,0.02698354,96.12813578],[4.53383139,0.02698526,96.12874445],[4.53383193,0.02698698,96.12934614],[4.53383246,0.0269887,96.129941],[4.533833,0.02699042,96.13052913],[4.53383354,0.02699214,96.13111069],[4.53383408,0.02699386,96.13168578],[4.53383461,0.02699558,96.13225455],[4.53383515,0.0269973,96.13281713],[4.53383569,0.02699902,96.13337364],[4.53383622,0.02700074,96.13392421],[4.53383676,0.02700246,96.13446898],[4.5338373,0.02700418,96.13500807],[4.53383783,0.0270059,96.13554162],[4.53383837,0.02700762,96.13606974],[4.53383891,0.02700934,96.13659259],[4.53383944,0.02701107,96.13711027],[4.53383998,0.02701279,96.13762293],[4.53384052,0.02701451,96.1381307],[4.53384105,0.02701623,96.13863369],[4.53384159,0.02701795,96.13913206],[4.53384213,0.02701967,96.13962591],[4.53384266,0.02702139,96.14011539],[4.5338432,0.02702311,96.14060063],[4.53384373,0.02702483,96.14108175],[4.53384427,0.02702655,96.14155889],[4.53384481,0.02702827,96.14203217],[4.53384534,0.02702999,96.14250173],[4.53384588,0.02703171,96.1429677],[4.53384642,0.02703343,96.1434302],[4.53384695,0.02703515,96.14388937],[4.53384749,0.02703687,96.14434534],[4.53384803,0.02703859,96.14479824],[4.53384856,0.02704031,96.1452482],[4.5338491,0.02704204,96.14569535],[4.53384963,0.02704376,96.14613982],[4.53385017,0.02704548,96.14658174],[4.53385071,0.0270472,96.14702125],[4.53385124,0.02704892,96.14745847],[4.53385178,0.02705064,96.14789354],[4.53385232,0.02705236,96.14832658],[4.53385285,0.02705408,96.14875773],[4.53385339,0.0270558,96.14918711],[4.53385392,0.02705752,96.14961487],[4.53385446,0.02705924,96.15004112],[4.533855,0.02706096,96.15046601],[4.53385553,0.02706268,96.15088966],[4.53385607,0.0270644,96.15131221],[4.5338566,0.02706612,96.15173377],[4.53385714,0.02706785,96.1521545],[4.53385768,0.02706957,96.15257451],[4.53385821,0.02707129,96.15299395],[4.53385875,0.02707301,96.15341293],[4.53385929,0.02707473,96.1538316],[4.53385982,0.02707645,96.15425008],[4.53386036,0.02707817,96.15466851],[4.53386089,0.02707989,96.15508701],[4.53386143,0.02708161,96.15550572],[4.53386197,0.02708333,96.15592478],[4.5338625,0.02708505,96.1563443],[4.53386304,0.02708677,96.15676443],[4.53386357,0.02708849,96.1571853],[4.53386411,0.02709021,96.15760703],[4.53386465,0.02709193,96.15802976],[4.53386518,0.02709365,96.15845363],[4.53386572,0.02709538,96.15887876],[4.53386626,0.0270971,96.15930528],[4.53386679,0.02709882,96.15973333],[4.53386733,0.02710054,96.16016304],[4.53386786,0.02710226,96.16059455],[4.5338684,0.02710398,96.16102797],[4.53386894,0.0271057,96.16146345],[4.53386947,0.02710742,96.16190112],[4.53387001,0.02710914,96.16234111],[4.53387055,0.02711086,96.16278356],[4.53387108,0.02711258,96.16322858],[4.53387162,0.0271143,96.16367632],[4.53387215,0.02711602,96.16412692],[4.53387269,0.02711774,96.16458049],[4.53387323,0.02711946,96.16503718],[4.53387376,0.02712119,96.16549711],[4.5338743,0.02712291,96.16596042],[4.53387484,0.02712463,96.16642724],[4.53387537,0.02712635,96.1668977],[4.53387591,0.02712807,96.16737194],[4.53387645,0.02712979,96.16785008],[4.53387698,0.02713151,96.16833227],[4.53387752,0.02713323,96.16881862],[4.53387806,0.02713495,96.16930928],[4.53387859,0.02713667,96.16980438],[4.53387913,0.02713839,96.17030404],[4.53387966,0.02714011,96.17080841],[4.5338802,0.02714183,96.17131761],[4.53388074,0.02714355,96.17183177],[4.53388127,0.02714527,96.17235103],[4.53388181,0.02714699,96.17287552],[4.53388235,0.02714871,96.17340536],[4.53388289,0.02715043,96.17394068],[4.53388342,0.02715215,96.17448161],[4.53388396,0.02715388,96.17502827],[4.5338845,0.0271556,96.17558079],[4.53388503,0.02715732,96.1761393],[4.53388557,0.02715904,96.17670393],[4.53388611,0.02716076,96.1772748],[4.53388664,0.02716248,96.17785205],[4.53388718,0.0271642,96.17843579],[4.53388772,0.02716592,96.17902615],[4.53388825,0.02716764,96.17962326],[4.53388879,0.02716936,96.18022726],[4.53388933,0.02717108,96.18083825],[4.53388986,0.0271728,96.18145638],[4.5338904,0.02717452,96.18208177],[4.53389094,0.02717624,96.18271454],[4.53389148,0.02717796,96.18335483],[4.53389201,0.02717968,96.18400275],[4.53389255,0.0271814,96.18465844],[4.53389309,0.02718312,96.18532201],[4.53389362,0.02718484,96.18599361],[4.53389416,0.02718656,96.18667335],[4.5338947,0.02718828,96.18736136],[4.53389524,0.02719,96.18805776],[4.53389577,0.02719173,96.18876269],[4.53389631,0.02719345,96.18947627],[4.53389685,0.02719517,96.19019863],[4.53389738,0.02719689,96.19092988],[4.53389792,0.02719861,96.19167016],[4.53389846,0.02720033,96.19241947],[4.53389899,0.02720205,96.1931777],[4.53389953,0.02720377,96.19394473],[4.53390007,0.02720549,96.19472044],[4.53390061,0.02720721,96.19550472],[4.53390114,0.02720893,96.19629746],[4.53390168,0.02721065,96.19709853],[4.53390222,0.02721237,96.19790783],[4.53390275,0.02721409,96.19872523],[4.53390329,0.02721581,96.19955062],[4.53390383,0.02721753,96.20038389],[4.53390436,0.02721925,96.20122491],[4.5339049,0.02722097,96.20207358],[4.53390544,0.02722269,96.20292977],[4.53390598,0.02722441,96.20379338],[4.53390651,0.02722613,96.20466428],[4.53390705,0.02722785,96.20554236],[4.53390759,0.02722957,96.2064275],[4.53390812,0.0272313,96.20731959],[4.53390866,0.02723302,96.20821851],[4.5339092,0.02723474,96.20912414],[4.53390973,0.02723646,96.21003638],[4.53391027,0.02723818,96.2109551],[4.53391081,0.0272399,96.21188019],[4.53391134,0.02724162,96.21281153],[4.53391188,0.02724334,96.21374901],[4.53391242,0.02724506,96.21469252],[4.53391295,0.02724678,96.21564192],[4.53391349,0.0272485,96.21659712],[4.53391403,0.02725022,96.21755799],[4.53391456,0.02725194,96.21852443],[4.5339151,0.02725366,96.2194963],[4.53391564,0.02725538,96.22047351],[4.53391617,0.0272571,96.22145592],[4.53391671,0.02725882,96.22244344],[4.53391724,0.02726055,96.22343593],[4.53391778,0.02726227,96.2244333],[4.53391832,0.02726399,96.22543541],[4.53391885,0.02726571,96.22644217],[4.53391939,0.02726743,96.22745344],[4.53391993,0.02726915,96.22846912],[4.53392046,0.02727087,96.22948909],[4.533921,0.02727259,96.23051324],[4.53392153,0.02727431,96.23154144],[4.53392207,0.02727603,96.23257359],[4.53392261,0.02727775,96.23360958],[4.53392314,0.02727947,96.23464928],[4.53392368,0.02728119,96.23569257],[4.53392421,0.02728292,96.23673936],[4.53392475,0.02728464,96.23778952],[4.53392529,0.02728636,96.23884293],[4.53392582,0.02728808,96.23989948],[4.53392636,0.0272898,96.24095906],[4.53392689,0.02729152,96.24202156],[4.53392743,0.02729324,96.24308685],[4.53392796,0.02729496,96.24415482],[4.5339285,0.02729668,96.24522536],[4.53392903,0.0272984,96.24629836],[4.53392957,0.02730012,96.24737369],[4.5339301,0.02730185,96.24845125],[4.53393064,0.02730357,96.24953093],[4.53393117,0.02730529,96.25061259],[4.53393171,0.02730701,96.25169614],[4.53393224,0.02730873,96.25278146],[4.53393278,0.02731045,96.25386842],[4.53393331,0.02731217,96.25495693],[4.53393385,0.02731389,96.25604687],[4.53393438,0.02731561,96.25713811],[4.53393492,0.02731734,96.25823055],[4.53393545,0.02731906,96.25932407],[4.53393599,0.02732078,96.26041856],[4.53393652,0.0273225,96.26151391],[4.53393706,0.02732422,96.26261],[4.53393759,0.02732594,96.26370673],[4.53393813,0.02732766,96.26480399],[4.53393866,0.02732938,96.26590167],[4.53393919,0.02733111,96.26699966],[4.53393973,0.02733283,96.26809784],[4.53394026,0.02733455,96.26919612],[4.5339408,0.02733627,96.27029437],[4.53394133,0.02733799,96.2713925],[4.53394186,0.02733971,96.27249038],[4.5339424,0.02734143,96.27358792],[4.53394293,0.02734316,96.274685],[4.53394347,0.02734488,96.27578151],[4.533944,0.0273466,96.27687734],[4.53394453,0.02734832,96.27797238],[4.53394507,0.02735004,96.27906653],[4.5339456,0.02735176,96.28015967],[4.53394613,0.02735349,96.28125168],[4.53394667,0.02735521,96.28234247],[4.5339472,0.02735693,96.28343193],[4.53394773,0.02735865,96.28451993],[4.53394827,0.02736037,96.28560637],[4.5339488,0.02736209,96.28669115],[4.53394933,0.02736382,96.28777415],[4.53394987,0.02736554,96.28885526],[4.5339504,0.02736726,96.28993437],[4.53395093,0.02736898,96.29101137],[4.53395147,0.0273707,96.29208615],[4.533952,0.02737242,96.2931586],[4.53395253,0.02737415,96.29422861],[4.53395306,0.02737587,96.29529606],[4.5339536,0.02737759,96.29636086],[4.53395413,0.02737931,96.29742288],[4.53395466,0.02738103,96.29848202],[4.53395519,0.02738276,96.29953817],[4.53395573,0.02738448,96.30059121],[4.53395626,0.0273862,96.30164103],[4.53395679,0.02738792,96.30268754],[4.53395733,0.02738964,96.3037306],[4.53395786,0.02739136,96.30477011],[4.53395839,0.02739309,96.30580597],[4.53395892,0.02739481,96.30683808],[4.53395946,0.02739653,96.30786644],[4.53395999,0.02739825,96.30889106],[4.53396052,0.02739997,96.30991196],[4.53396105,0.0274017,96.31092916],[4.53396158,0.02740342,96.31194268],[4.53396212,0.02740514,96.31295254],[4.53396265,0.02740686,96.31395874],[4.53396318,0.02740858,96.31496131],[4.53396371,0.02741031,96.31596027],[4.53396425,0.02741203,96.31695563],[4.53396478,0.02741375,96.31794741],[4.53396531,0.02741547,96.31893563],[4.53396584,0.02741719,96.3199203],[4.53396637,0.02741892,96.32090144],[4.53396691,0.02742064,96.32187907],[4.53396744,0.02742236,96.3228532],[4.53396797,0.02742408,96.32382386],[4.5339685,0.02742581,96.32479106],[4.53396903,0.02742753,96.32575482],[4.53396956,0.02742925,96.32671516],[4.5339701,0.02743097,96.32767208],[4.53397063,0.02743269,96.32862562],[4.53397116,0.02743442,96.32957579],[4.53397169,0.02743614,96.3305226],[4.53397222,0.02743786,96.33146607],[4.53397276,0.02743958,96.33240622],[4.53397329,0.0274413,96.33334307],[4.53397382,0.02744303,96.33427664],[4.53397435,0.02744475,96.33520693],[4.53397488,0.02744647,96.33613398],[4.53397541,0.02744819,96.33705779],[4.53397595,0.02744992,96.33797838],[4.53397648,0.02745164,96.33889578],[4.53397701,0.02745336,96.33980999],[4.53397754,0.02745508,96.34072104],[4.53397807,0.0274568,96.34162894],[4.5339786,0.02745853,96.34253371],[4.53397914,0.02746025,96.34343536],[4.53397967,0.02746197,96.34433392],[4.5339802,0.02746369,96.34522941],[4.53398073,0.02746542,96.34612183],[4.53398126,0.02746714,96.3470112],[4.5339818,0.02746886,96.34789755],[4.53398233,0.02747058,96.34878089],[4.53398286,0.0274723,96.34966123],[4.53398339,0.02747403,96.3505386],[4.53398392,0.02747575,96.35141302],[4.53398445,0.02747747,96.35228449],[4.53398499,0.02747919,96.35315303],[4.53398552,0.02748092,96.35401867],[4.53398605,0.02748264,96.35488142],[4.53398658,0.02748436,96.3557413],[4.53398711,0.02748608,96.35659833],[4.53398764,0.0274878,96.35745251],[4.53398818,0.02748953,96.35830388],[4.53398871,0.02749125,96.35915244],[4.53398924,0.02749297,96.35999822],[4.53398977,0.02749469,96.36084123],[4.5339903,0.02749641,96.36168148],[4.53399084,0.02749814,96.36251901],[4.53399137,0.02749986,96.36335381],[4.5339919,0.02750158,96.36418592],[4.53399243,0.0275033,96.36501534],[4.53399296,0.02750503,96.3658421],[4.53399349,0.02750675,96.36666621],[4.53399403,0.02750847,96.3674877],[4.53399456,0.02751019,96.36830656],[4.53399509,0.02751191,96.36912284],[4.53399562,0.02751364,96.36993653],[4.53399616,0.02751536,96.37074767],[4.53399669,0.02751708,96.37155626],[4.53399722,0.0275188,96.37236232],[4.53399775,0.02752052,96.37316588],[4.53399828,0.02752225,96.37396694],[4.53399882,0.02752397,96.37476553],[4.53399935,0.02752569,96.37556167],[4.53399988,0.02752741,96.37635536],[4.53400041,0.02752913,96.37714664],[4.53400095,0.02753086,96.37793551],[4.53400148,0.02753258,96.378722],[4.53400201,0.0275343,96.37950611],[4.53400254,0.02753602,96.38028788],[4.53400308,0.02753774,96.38106731],[4.53400361,0.02753947,96.38184442],[4.53400414,0.02754119,96.38261924],[4.53400467,0.02754291,96.38339177],[4.53400521,0.02754463,96.38416205],[4.53400574,0.02754635,96.38493007],[4.53400627,0.02754808,96.38569587],[4.5340068,0.0275498,96.38645946],[4.53400734,0.02755152,96.38722085],[4.53400787,0.02755324,96.38798008],[4.5340084,0.02755496,96.38873714],[4.53400894,0.02755669,96.38949206],[4.53400947,0.02755841,96.39024487],[4.53401,0.02756013,96.39099556],[4.53401054,0.02756185,96.39174418],[4.53401107,0.02756357,96.39249072],[4.5340116,0.02756529,96.39323522],[4.53401213,0.02756702,96.39397768],[4.53401267,0.02756874,96.39471812],[4.5340132,0.02757046,96.39545656],[4.53401374,0.02757218,96.396193],[4.53401427,0.0275739,96.39692746],[4.5340148,0.02757562,96.39765994],[4.53401534,0.02757735,96.39839047],[4.53401587,0.02757907,96.39911904],[4.5340164,0.02758079,96.39984568],[4.53401694,0.02758251,96.40057039],[4.53401747,0.02758423,96.40129319],[4.534018,0.02758595,96.40201408],[4.53401854,0.02758768,96.40273308],[4.53401907,0.0275894,96.4034502],[4.53401961,0.02759112,96.40416546],[4.53402014,0.02759284,96.40487885],[4.53402067,0.02759456,96.4055904],[4.53402121,0.02759628,96.40630011],[4.53402174,0.027598,96.407008],[4.53402228,0.02759973,96.40771408],[4.53402281,0.02760145,96.40841836],[4.53402334,0.02760317,96.40912085],[4.53402388,0.02760489,96.40982156],[4.53402441,0.02760661,96.41052051],[4.53402495,0.02760833,96.4112177],[4.53402548,0.02761006,96.41191315],[4.53402601,0.02761178,96.41260687],[4.53402655,0.0276135,96.41329886],[4.53402708,0.02761522,96.41398915],[4.53402762,0.02761694,96.41467774],[4.53402815,0.02761866,96.41536465],[4.53402868,0.02762038,96.41604988],[4.53402922,0.02762211,96.41673345],[4.53402975,0.02762383,96.41741536],[4.53403029,0.02762555,96.41809564],[4.53403082,0.02762727,96.41877428],[4.53403135,0.02762899,96.41945131],[4.53403189,0.02763071,96.42012673],[4.53403242,0.02763244,96.42080055],[4.53403296,0.02763416,96.42147279],[4.53403349,0.02763588,96.42214346],[4.53403402,0.0276376,96.42281256],[4.53403456,0.02763932,96.42348012],[4.53403509,0.02764104,96.42414613],[4.53403563,0.02764276,96.42481062],[4.53403616,0.02764449,96.42547359],[4.53403669,0.02764621,96.42613505],[4.53403723,0.02764793,96.42679501],[4.53403776,0.02764965,96.42745349],[4.53403829,0.02765137,96.4281105],[4.53403883,0.02765309,96.42876605],[4.53403936,0.02765482,96.42942014],[4.53403989,0.02765654,96.43007279],[4.53404043,0.02765826,96.43072402],[4.53404096,0.02765998,96.43137382],[4.53404149,0.0276617,96.43202221],[4.53404203,0.02766343,96.43266921],[4.53404256,0.02766515,96.43331482],[4.53404309,0.02766687,96.43395906],[4.53404363,0.02766859,96.43460194],[4.53404416,0.02767031,96.43524349],[4.53404469,0.02767203,96.43588372],[4.53404523,0.02767376,96.43652266],[4.53404576,0.02767548,96.43716033],[4.53404629,0.0276772,96.43779674],[4.53404682,0.02767892,96.43843192],[4.53404736,0.02768064,96.43906589],[4.53404789,0.02768237,96.43969867],[4.53404842,0.02768409,96.44033028],[4.53404895,0.02768581,96.44096074],[4.53404949,0.02768753,96.44159007],[4.53405002,0.02768925,96.4422183],[4.53405055,0.02769098,96.44284543],[4.53405108,0.0276927,96.4434715],[4.53405162,0.02769442,96.44409653],[4.53405215,0.02769614,96.44472053],[4.53405268,0.02769786,96.44534352],[4.53405321,0.02769959,96.44596553],[4.53405375,0.02770131,96.44658656],[4.53405428,0.02770303,96.44720666],[4.53405481,0.02770475,96.44782582],[4.53405534,0.02770647,96.44844407],[4.53405588,0.0277082,96.44906144],[4.53405641,0.02770992,96.44967794],[4.53405694,0.02771164,96.4502936],[4.53405747,0.02771336,96.45090842],[4.53405801,0.02771509,96.45152243],[4.53405854,0.02771681,96.45213566],[4.53405907,0.02771853,96.45274812],[4.5340596,0.02772025,96.45335983],[4.53406013,0.02772197,96.45397081],[4.53406067,0.0277237,96.45458109],[4.5340612,0.02772542,96.45519067],[4.53406173,0.02772714,96.45579959],[4.53406226,0.02772886,96.45640786],[4.5340628,0.02773058,96.4570155],[4.53406333,0.02773231,96.45762253],[4.53406386,0.02773403,96.45822897],[4.53406439,0.02773575,96.45883484],[4.53406493,0.02773747,96.45944015],[4.53406546,0.02773919,96.46004492],[4.53406599,0.02774092,96.46064916],[4.53406652,0.02774264,96.46125289],[4.53406706,0.02774436,96.46185613],[4.53406759,0.02774608,96.46245889],[4.53406812,0.02774781,96.4630612],[4.53406865,0.02774953,96.46366306],[4.53406919,0.02775125,96.4642645],[4.53406972,0.02775297,96.46486553],[4.53407025,0.02775469,96.46546617],[4.53407078,0.02775642,96.46606643],[4.53407132,0.02775814,96.46666634],[4.53407185,0.02775986,96.4672659],[4.53407238,0.02776158,96.46786514],[4.53407291,0.0277633,96.46846406],[4.53407345,0.02776502,96.46906269],[4.53407398,0.02776675,96.46966104],[4.53407451,0.02776847,96.47025911],[4.53407505,0.02777019,96.47085692],[4.53407558,0.02777191,96.47145448],[4.53407611,0.02777363,96.4720518],[4.53407665,0.02777536,96.47264891],[4.53407718,0.02777708,96.47324579],[4.53407771,0.0277788,96.47384249],[4.53407825,0.02778052,96.47443899],[4.53407878,0.02778224,96.47503532],[4.53407931,0.02778397,96.47563148],[4.53407985,0.02778569,96.4762275],[4.53408038,0.02778741,96.47682338],[4.53408091,0.02778913,96.47741913],[4.53408145,0.02779085,96.47801477],[4.53408198,0.02779257,96.4786103],[4.53408251,0.0277943,96.47920575],[4.53408305,0.02779602,96.47980112],[4.53408358,0.02779774,96.48039643],[4.53408411,0.02779946,96.48099169],[4.53408465,0.02780118,96.4815869],[4.53408518,0.0278029,96.48218209],[4.53408572,0.02780463,96.48277727],[4.53408625,0.02780635,96.48337244],[4.53408678,0.02780807,96.48396762],[4.53408732,0.02780979,96.48456282],[4.53408785,0.02781151,96.48515805],[4.53408839,0.02781323,96.48575334],[4.53408892,0.02781496,96.48634868],[4.53408945,0.02781668,96.48694409],[4.53408999,0.0278184,96.48753958],[4.53409052,0.02782012,96.48813517],[4.53409106,0.02782184,96.48873086],[4.53409159,0.02782356,96.48932668],[4.53409212,0.02782528,96.48992262],[4.53409266,0.02782701,96.49051871],[4.53409319,0.02782873,96.49111496],[4.53409373,0.02783045,96.49171137],[4.53409426,0.02783217,96.49230797],[4.5340948,0.02783389,96.49290476],[4.53409533,0.02783561,96.49350175],[4.53409587,0.02783733,96.49409896],[4.5340964,0.02783906,96.4946964],[4.53409694,0.02784078,96.49529408],[4.53409747,0.0278425,96.49589201],[4.53409801,0.02784422,96.49649021],[4.53409854,0.02784594,96.49708868],[4.53409907,0.02784766,96.49768745],[4.53409961,0.02784938,96.49828652],[4.53410014,0.02785111,96.4988859],[4.53410068,0.02785283,96.49948559],[4.53410121,0.02785455,96.5000855],[4.53410175,0.02785627,96.50068554],[4.53410228,0.02785799,96.50128559],[4.53410282,0.02785971,96.50188555],[4.53410335,0.02786143,96.50248531],[4.53410389,0.02786315,96.50308478],[4.53410442,0.02786488,96.50368384],[4.53410495,0.0278666,96.50428239],[4.53410549,0.02786832,96.50488031],[4.53410602,0.02787004,96.5054775],[4.53410655,0.02787176,96.50607386],[4.53410709,0.02787349,96.50666927],[4.53410762,0.02787521,96.50726361],[4.53410815,0.02787693,96.50785679],[4.53410868,0.02787865,96.50844868],[4.53410921,0.02788038,96.50903918],[4.53410974,0.0278821,96.50962817],[4.53411027,0.02788382,96.51021555],[4.53411079,0.02788555,96.51080124],[4.53411132,0.02788727,96.5113854],[4.53411185,0.02788899,96.51196824],[4.53411237,0.02789072,96.51254998],[4.5341129,0.02789244,96.51313083],[4.53411342,0.02789417,96.51371099],[4.53411395,0.02789589,96.51429068],[4.53411447,0.02789762,96.51487012],[4.534115,0.02789934,96.51544952],[4.53411552,0.02790107,96.5160291],[4.53411604,0.02790279,96.51660907],[4.53411657,0.02790452,96.51718967],[4.53411709,0.02790624,96.5177711],[4.53411762,0.02790796,96.51835359],[4.53411814,0.02790969,96.51893736],[4.53411867,0.02791141,96.51952263],[4.53411919,0.02791314,96.52010963],[4.53411972,0.02791486,96.52069859],[4.53412024,0.02791659,96.52128972],[4.53412077,0.02791831,96.52188327],[4.5341213,0.02792003,96.52247945],[4.53412183,0.02792176,96.5230785],[4.53412236,0.02792348,96.52368064],[4.53412289,0.0279252,96.52428611],[4.53412342,0.02792693,96.52489514],[4.53412395,0.02792865,96.52550791],[4.53412448,0.02793037,96.5261243],[4.53412502,0.02793209,96.52674416],[4.53412555,0.02793381,96.52736733],[4.53412609,0.02793553,96.52799365],[4.53412663,0.02793725,96.52862294],[4.53412716,0.02793897,96.52925505],[4.5341277,0.02794069,96.5298898],[4.53412824,0.02794242,96.53052703],[4.53412878,0.02794414,96.53116658],[4.53412932,0.02794586,96.53180826],[4.53412986,0.02794757,96.53245191],[4.5341304,0.02794929,96.53309736],[4.53413094,0.02795101,96.53374444],[4.53413148,0.02795273,96.53439296],[4.53413202,0.02795445,96.53504277],[4.53413256,0.02795617,96.53569369],[4.5341331,0.02795789,96.53634553],[4.53413364,0.02795961,96.53699813],[4.53413418,0.02796133,96.5376513],[4.53413472,0.02796305,96.53830487],[4.53413526,0.02796477,96.53895866],[4.5341358,0.02796649,96.53961249],[4.53413634,0.02796821,96.54026617],[4.53413688,0.02796993,96.54091954],[4.53413742,0.02797165,96.5415724],[4.53413795,0.02797337,96.54222457],[4.53413849,0.02797509,96.54287588],[4.53413903,0.02797681,96.54352613],[4.53413956,0.02797854,96.54417514],[4.5341401,0.02798026,96.54482273],[4.53414063,0.02798198,96.54546876],[4.53414116,0.0279837,96.54611332],[4.53414169,0.02798542,96.54675653],[4.53414223,0.02798715,96.54739852],[4.53414276,0.02798887,96.54803944],[4.53414329,0.02799059,96.5486794],[4.53414381,0.02799231,96.54931855],[4.53414434,0.02799404,96.54995702],[4.53414487,0.02799576,96.55059494],[4.5341454,0.02799748,96.55123246],[4.53414593,0.02799921,96.5518697],[4.53414645,0.02800093,96.5525068],[4.53414698,0.02800266,96.55314391],[4.5341475,0.02800438,96.55378115],[4.53414803,0.0280061,96.55441866],[4.53414855,0.02800783,96.5550566],[4.53414908,0.02800955,96.55569508],[4.5341496,0.02801128,96.55633426],[4.53415013,0.028013,96.55697427],[4.53415065,0.02801473,96.55761525],[4.53415118,0.02801645,96.55825735],[4.5341517,0.02801818,96.5589007],[4.53415223,0.0280199,96.55954546],[4.53415275,0.02802163,96.56019176],[4.53415327,0.02802335,96.56083975],[4.5341538,0.02802508,96.56148957],[4.53415432,0.0280268,96.56214137],[4.53415485,0.02802852,96.56279529],[4.53415538,0.02803025,96.56345148],[4.5341559,0.02803197,96.56411009],[4.53415643,0.0280337,96.56477126],[4.53415695,0.02803542,96.56543504],[4.53415748,0.02803714,96.56610142],[4.53415801,0.02803887,96.56677037],[4.53415854,0.02804059,96.56744187],[4.53415906,0.02804232,96.56811589],[4.53415959,0.02804404,96.5687924],[4.53416012,0.02804576,96.56947139],[4.53416065,0.02804749,96.57015281],[4.53416118,0.02804921,96.57083665],[4.53416171,0.02805093,96.57152288],[4.53416224,0.02805265,96.57221148],[4.53416277,0.02805438,96.57290241],[4.5341633,0.0280561,96.57359565],[4.53416383,0.02805782,96.57429118],[4.53416436,0.02805955,96.57498896],[4.53416489,0.02806127,96.57568897],[4.53416542,0.02806299,96.57639118],[4.53416595,0.02806471,96.57709556],[4.53416648,0.02806644,96.57780209],[4.53416701,0.02806816,96.57851074],[4.53416755,0.02806988,96.57922148],[4.53416808,0.0280716,96.57993428],[4.53416861,0.02807333,96.58064912],[4.53416914,0.02807505,96.58136596],[4.53416967,0.02807677,96.58208478],[4.5341702,0.02807849,96.58280554],[4.53417074,0.02808021,96.58352823],[4.53417127,0.02808194,96.58425282],[4.5341718,0.02808366,96.58497926],[4.53417233,0.02808538,96.58570755],[4.53417287,0.0280871,96.58643763],[4.5341734,0.02808883,96.5871695],[4.53417393,0.02809055,96.58790312],[4.53417446,0.02809227,96.58863845],[4.53417499,0.02809399,96.58937548],[4.53417553,0.02809571,96.59011417],[4.53417606,0.02809744,96.59085449],[4.53417659,0.02809916,96.59159642],[4.53417712,0.02810088,96.59233992],[4.53417765,0.0281026,96.59308497],[4.53417818,0.02810433,96.59383156],[4.53417871,0.02810605,96.59457972],[4.53417925,0.02810777,96.59532946],[4.53417978,0.02810949,96.59608081],[4.53418031,0.02811122,96.59683378],[4.53418084,0.02811294,96.59758841],[4.53418137,0.02811466,96.59834471],[4.5341819,0.02811638,96.5991027],[4.53418243,0.02811811,96.59986241],[4.53418296,0.02811983,96.60062386],[4.53418349,0.02812155,96.60138706],[4.53418402,0.02812328,96.60215205],[4.53418455,0.028125,96.60291884],[4.53418508,0.02812672,96.60368746],[4.53418561,0.02812844,96.60445792],[4.53418614,0.02813017,96.60523025],[4.53418667,0.02813189,96.60600447],[4.5341872,0.02813361,96.6067806],[4.53418773,0.02813534,96.60755867],[4.53418826,0.02813706,96.6083387],[4.53418879,0.02813878,96.6091207],[4.53418932,0.02814051,96.60990471],[4.53418985,0.02814223,96.61069073],[4.53419038,0.02814395,96.61147881],[4.53419091,0.02814567,96.61226894],[4.53419144,0.0281474,96.61306117],[4.53419197,0.02814912,96.61385551],[4.5341925,0.02815084,96.61465198],[4.53419303,0.02815257,96.61545061],[4.53419356,0.02815429,96.61625141],[4.53419408,0.02815601,96.61705441],[4.53419461,0.02815774,96.61785963],[4.53419514,0.02815946,96.6186671],[4.53419567,0.02816118,96.61947683],[4.5341962,0.02816291,96.62028884],[4.53419673,0.02816463,96.62110317],[4.53419726,0.02816635,96.62191983],[4.53419779,0.02816807,96.62273884],[4.53419832,0.0281698,96.62356022],[4.53419885,0.02817152,96.624384],[4.53419938,0.02817324,96.6252102],[4.5341999,0.02817497,96.62603884],[4.53420043,0.02817669,96.62686995],[4.53420096,0.02817841,96.62770353],[4.53420149,0.02818014,96.62853962],[4.53420202,0.02818186,96.62937825],[4.53420255,0.02818358,96.63021942],[4.53420308,0.0281853,96.63106316],[4.53420361,0.02818703,96.63190949],[4.53420414,0.02818875,96.63275844],[4.53420467,0.02819047,96.63361003],[4.5342052,0.0281922,96.63446427],[4.53420573,0.02819392,96.63532119],[4.53420626,0.02819564,96.63618081],[4.53420679,0.02819737,96.63704316],[4.53420731,0.02819909,96.63790825],[4.53420784,0.02820081,96.6387761],[4.53420837,0.02820253,96.63964674],[4.5342089,0.02820426,96.64052019],[4.53420943,0.02820598,96.64139646],[4.53420996,0.0282077,96.64227559],[4.53421049,0.02820943,96.64315759],[4.53421102,0.02821115,96.64404248],[4.53421155,0.02821287,96.64493028],[4.53421208,0.02821459,96.64582101],[4.53421261,0.02821632,96.6467147],[4.53421314,0.02821804,96.64761137],[4.53421367,0.02821976,96.64851103],[4.53421421,0.02822148,96.64941371],[4.53421474,0.02822321,96.65031942],[4.53421527,0.02822493,96.6512282],[4.5342158,0.02822665,96.65214005],[4.53421633,0.02822837,96.653055],[4.53421686,0.02823009,96.65397306],[4.53421739,0.02823182,96.65489427],[4.53421792,0.02823354,96.65581864],[4.53421845,0.02823526,96.65674618],[4.53421898,0.02823698,96.65767692],[4.53418596,0.02824723,96.55741251]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"entry","predecessorId":0,"sOffset":0.0}},{"geometry":{"coordinates":[[[4.53421898,0.02823698,96.65767692],[4.53421845,0.02823526,96.65674618],[4.53421792,0.02823354,96.65581864],[4.53421739,0.02823182,96.65489427],[4.53421686,0.02823009,96.65397306],[4.53421633,0.02822837,96.653055],[4.5342158,0.02822665,96.65214005],[4.53421527,0.02822493,96.6512282],[4.53421474,0.02822321,96.65031942],[4.53421421,0.02822148,96.64941371],[4.53421367,0.02821976,96.64851103],[4.53421314,0.02821804,96.64761137],[4.53421261,0.02821632,96.6467147],[4.53421208,0.02821459,96.64582101],[4.53421155,0.02821287,96.64493028],[4.53421102,0.02821115,96.64404248],[4.53421049,0.02820943,96.64315759],[4.53420996,0.0282077,96.64227559],[4.53420943,0.02820598,96.64139646],[4.5342089,0.02820426,96.64052019],[4.53420837,0.02820253,96.63964674],[4.53420784,0.02820081,96.6387761],[4.53420731,0.02819909,96.63790825],[4.53420679,0.02819737,96.63704316],[4.53420626,0.02819564,96.63618081],[4.53420573,0.02819392,96.63532119],[4.5342052,0.0281922,96.63446427],[4.53420467,0.02819047,96.63361003],[4.53420414,0.02818875,96.63275844],[4.53420361,0.02818703,96.63190949],[4.53420308,0.0281853,96.63106316],[4.53420255,0.02818358,96.63021942],[4.53420202,0.02818186,96.62937825],[4.53420149,0.02818014,96.62853962],[4.53420096,0.02817841,96.62770353],[4.53420043,0.02817669,96.62686995],[4.5341999,0.02817497,96.62603884],[4.53419938,0.02817324,96.6252102],[4.53419885,0.02817152,96.624384],[4.53419832,0.0281698,96.62356022],[4.53419779,0.02816807,96.62273884],[4.53419726,0.02816635,96.62191983],[4.53419673,0.02816463,96.62110317],[4.5341962,0.02816291,96.62028884],[4.53419567,0.02816118,96.61947683],[4.53419514,0.02815946,96.6186671],[4.53419461,0.02815774,96.61785963],[4.53419408,0.02815601,96.61705441],[4.53419356,0.02815429,96.61625141],[4.53419303,0.02815257,96.61545061],[4.5341925,0.02815084,96.61465198],[4.53419197,0.02814912,96.61385551],[4.53419144,0.0281474,96.61306117],[4.53419091,0.02814567,96.61226894],[4.53419038,0.02814395,96.61147881],[4.53418985,0.02814223,96.61069073],[4.53418932,0.02814051,96.60990471],[4.53418879,0.02813878,96.6091207],[4.53418826,0.02813706,96.6083387],[4.53418773,0.02813534,96.60755867],[4.5341872,0.02813361,96.6067806],[4.53418667,0.02813189,96.60600447],[4.53418614,0.02813017,96.60523025],[4.53418561,0.02812844,96.60445792],[4.53418508,0.02812672,96.60368746],[4.53418455,0.028125,96.60291884],[4.53418402,0.02812328,96.60215205],[4.53418349,0.02812155,96.60138706],[4.53418296,0.02811983,96.60062386],[4.53418243,0.02811811,96.59986241],[4.5341819,0.02811638,96.5991027],[4.53418137,0.02811466,96.59834471],[4.53418084,0.02811294,96.59758841],[4.53418031,0.02811122,96.59683378],[4.53417978,0.02810949,96.59608081],[4.53417925,0.02810777,96.59532946],[4.53417871,0.02810605,96.59457972],[4.53417818,0.02810433,96.59383156],[4.53417765,0.0281026,96.59308497],[4.53417712,0.02810088,96.59233992],[4.53417659,0.02809916,96.59159642],[4.53417606,0.02809744,96.59085449],[4.53417553,0.02809571,96.59011417],[4.53417499,0.02809399,96.58937548],[4.53417446,0.02809227,96.58863845],[4.53417393,0.02809055,96.58790312],[4.5341734,0.02808883,96.5871695],[4.53417287,0.0280871,96.58643763],[4.53417233,0.02808538,96.58570755],[4.5341718,0.02808366,96.58497926],[4.53417127,0.02808194,96.58425282],[4.53417074,0.02808021,96.58352823],[4.5341702,0.02807849,96.58280554],[4.53416967,0.02807677,96.58208478],[4.53416914,0.02807505,96.58136596],[4.53416861,0.02807333,96.58064912],[4.53416808,0.0280716,96.57993428],[4.53416755,0.02806988,96.57922148],[4.53416701,0.02806816,96.57851074],[4.53416648,0.02806644,96.57780209],[4.53416595,0.02806471,96.57709556],[4.53416542,0.02806299,96.57639118],[4.53416489,0.02806127,96.57568897],[4.53416436,0.02805955,96.57498896],[4.53416383,0.02805782,96.57429118],[4.5341633,0.0280561,96.57359565],[4.53416277,0.02805438,96.57290241],[4.53416224,0.02805265,96.57221148],[4.53416171,0.02805093,96.57152288],[4.53416118,0.02804921,96.57083665],[4.53416065,0.02804749,96.57015281],[4.53416012,0.02804576,96.56947139],[4.53415959,0.02804404,96.5687924],[4.53415906,0.02804232,96.56811589],[4.53415854,0.02804059,96.56744187],[4.53415801,0.02803887,96.56677037],[4.53415748,0.02803714,96.56610142],[4.53415695,0.02803542,96.56543504],[4.53415643,0.0280337,96.56477126],[4.5341559,0.02803197,96.56411009],[4.53415538,0.02803025,96.56345148],[4.53415485,0.02802852,96.56279529],[4.53415432,0.0280268,96.56214137],[4.5341538,0.02802508,96.56148957],[4.53415327,0.02802335,96.56083975],[4.53415275,0.02802163,96.56019176],[4.53415223,0.0280199,96.55954546],[4.5341517,0.02801818,96.5589007],[4.53415118,0.02801645,96.55825735],[4.53415065,0.02801473,96.55761525],[4.53415013,0.028013,96.55697427],[4.5341496,0.02801128,96.55633426],[4.53414908,0.02800955,96.55569508],[4.53414855,0.02800783,96.5550566],[4.53414803,0.0280061,96.55441866],[4.5341475,0.02800438,96.55378115],[4.53414698,0.02800266,96.55314391],[4.53414645,0.02800093,96.5525068],[4.53414593,0.02799921,96.5518697],[4.5341454,0.02799748,96.55123246],[4.53414487,0.02799576,96.55059494],[4.53414434,0.02799404,96.54995702],[4.53414381,0.02799231,96.54931855],[4.53414329,0.02799059,96.5486794],[4.53414276,0.02798887,96.54803944],[4.53414223,0.02798715,96.54739852],[4.53414169,0.02798542,96.54675653],[4.53414116,0.0279837,96.54611332],[4.53414063,0.02798198,96.54546876],[4.5341401,0.02798026,96.54482273],[4.53413956,0.02797854,96.54417514],[4.53413903,0.02797681,96.54352613],[4.53413849,0.02797509,96.54287588],[4.53413795,0.02797337,96.54222457],[4.53413742,0.02797165,96.5415724],[4.53413688,0.02796993,96.54091954],[4.53413634,0.02796821,96.54026617],[4.5341358,0.02796649,96.53961249],[4.53413526,0.02796477,96.53895866],[4.53413472,0.02796305,96.53830487],[4.53413418,0.02796133,96.5376513],[4.53413364,0.02795961,96.53699813],[4.5341331,0.02795789,96.53634553],[4.53413256,0.02795617,96.53569369],[4.53413202,0.02795445,96.53504277],[4.53413148,0.02795273,96.53439296],[4.53413094,0.02795101,96.53374444],[4.5341304,0.02794929,96.53309736],[4.53412986,0.02794757,96.53245191],[4.53412932,0.02794586,96.53180826],[4.53412878,0.02794414,96.53116658],[4.53412824,0.02794242,96.53052703],[4.5341277,0.02794069,96.5298898],[4.53412716,0.02793897,96.52925505],[4.53412663,0.02793725,96.52862294],[4.53412609,0.02793553,96.52799365],[4.53412555,0.02793381,96.52736733],[4.53412502,0.02793209,96.52674416],[4.53412448,0.02793037,96.5261243],[4.53412395,0.02792865,96.52550791],[4.53412342,0.02792693,96.52489514],[4.53412289,0.0279252,96.52428611],[4.53412236,0.02792348,96.52368064],[4.53412183,0.02792176,96.5230785],[4.5341213,0.02792003,96.52247945],[4.53412077,0.02791831,96.52188327],[4.53412024,0.02791659,96.52128972],[4.53411972,0.02791486,96.52069859],[4.53411919,0.02791314,96.52010963],[4.53411867,0.02791141,96.51952263],[4.53411814,0.02790969,96.51893736],[4.53411762,0.02790796,96.51835359],[4.53411709,0.02790624,96.5177711],[4.53411657,0.02790452,96.51718967],[4.53411604,0.02790279,96.51660907],[4.53411552,0.02790107,96.5160291],[4.534115,0.02789934,96.51544952],[4.53411447,0.02789762,96.51487012],[4.53411395,0.02789589,96.51429068],[4.53411342,0.02789417,96.51371099],[4.5341129,0.02789244,96.51313083],[4.53411237,0.02789072,96.51254998],[4.53411185,0.02788899,96.51196824],[4.53411132,0.02788727,96.5113854],[4.53411079,0.02788555,96.51080124],[4.53411027,0.02788382,96.51021555],[4.53410974,0.0278821,96.50962817],[4.53410921,0.02788038,96.50903918],[4.53410868,0.02787865,96.50844868],[4.53410815,0.02787693,96.50785679],[4.53410762,0.02787521,96.50726361],[4.53410709,0.02787349,96.50666927],[4.53410655,0.02787176,96.50607386],[4.53410602,0.02787004,96.5054775],[4.53410549,0.02786832,96.50488031],[4.53410495,0.0278666,96.50428239],[4.53410442,0.02786488,96.50368384],[4.53410389,0.02786315,96.50308478],[4.53410335,0.02786143,96.50248531],[4.53410282,0.02785971,96.50188555],[4.53410228,0.02785799,96.50128559],[4.53410175,0.02785627,96.50068554],[4.53410121,0.02785455,96.5000855],[4.53410068,0.02785283,96.49948559],[4.53410014,0.02785111,96.4988859],[4.53409961,0.02784938,96.49828652],[4.53409907,0.02784766,96.49768745],[4.53409854,0.02784594,96.49708868],[4.53409801,0.02784422,96.49649021],[4.53409747,0.0278425,96.49589201],[4.53409694,0.02784078,96.49529408],[4.5340964,0.02783906,96.4946964],[4.53409587,0.02783733,96.49409896],[4.53409533,0.02783561,96.49350175],[4.5340948,0.02783389,96.49290476],[4.53409426,0.02783217,96.49230797],[4.53409373,0.02783045,96.49171137],[4.53409319,0.02782873,96.49111496],[4.53409266,0.02782701,96.49051871],[4.53409212,0.02782528,96.48992262],[4.53409159,0.02782356,96.48932668],[4.53409106,0.02782184,96.48873086],[4.53409052,0.02782012,96.48813517],[4.53408999,0.0278184,96.48753958],[4.53408945,0.02781668,96.48694409],[4.53408892,0.02781496,96.48634868],[4.53408839,0.02781323,96.48575334],[4.53408785,0.02781151,96.48515805],[4.53408732,0.02780979,96.48456282],[4.53408678,0.02780807,96.48396762],[4.53408625,0.02780635,96.48337244],[4.53408572,0.02780463,96.48277727],[4.53408518,0.0278029,96.48218209],[4.53408465,0.02780118,96.4815869],[4.53408411,0.02779946,96.48099169],[4.53408358,0.02779774,96.48039643],[4.53408305,0.02779602,96.47980112],[4.53408251,0.0277943,96.47920575],[4.53408198,0.02779257,96.4786103],[4.53408145,0.02779085,96.47801477],[4.53408091,0.02778913,96.47741913],[4.53408038,0.02778741,96.47682338],[4.53407985,0.02778569,96.4762275],[4.53407931,0.02778397,96.47563148],[4.53407878,0.02778224,96.47503532],[4.53407825,0.02778052,96.47443899],[4.53407771,0.0277788,96.47384249],[4.53407718,0.02777708,96.47324579],[4.53407665,0.02777536,96.47264891],[4.53407611,0.02777363,96.4720518],[4.53407558,0.02777191,96.47145448],[4.53407505,0.02777019,96.47085692],[4.53407451,0.02776847,96.47025911],[4.53407398,0.02776675,96.46966104],[4.53407345,0.02776502,96.46906269],[4.53407291,0.0277633,96.46846406],[4.53407238,0.02776158,96.46786514],[4.53407185,0.02775986,96.4672659],[4.53407132,0.02775814,96.46666634],[4.53407078,0.02775642,96.46606643],[4.53407025,0.02775469,96.46546617],[4.53406972,0.02775297,96.46486553],[4.53406919,0.02775125,96.4642645],[4.53406865,0.02774953,96.46366306],[4.53406812,0.02774781,96.4630612],[4.53406759,0.02774608,96.46245889],[4.53406706,0.02774436,96.46185613],[4.53406652,0.02774264,96.46125289],[4.53406599,0.02774092,96.46064916],[4.53406546,0.02773919,96.46004492],[4.53406493,0.02773747,96.45944015],[4.53406439,0.02773575,96.45883484],[4.53406386,0.02773403,96.45822897],[4.53406333,0.02773231,96.45762253],[4.5340628,0.02773058,96.4570155],[4.53406226,0.02772886,96.45640786],[4.53406173,0.02772714,96.45579959],[4.5340612,0.02772542,96.45519067],[4.53406067,0.0277237,96.45458109],[4.53406013,0.02772197,96.45397081],[4.5340596,0.02772025,96.45335983],[4.53405907,0.02771853,96.45274812],[4.53405854,0.02771681,96.45213566],[4.53405801,0.02771509,96.45152243],[4.53405747,0.02771336,96.45090842],[4.53405694,0.02771164,96.4502936],[4.53405641,0.02770992,96.44967794],[4.53405588,0.0277082,96.44906144],[4.53405534,0.02770647,96.44844407],[4.53405481,0.02770475,96.44782582],[4.53405428,0.02770303,96.44720666],[4.53405375,0.02770131,96.44658656],[4.53405321,0.02769959,96.44596553],[4.53405268,0.02769786,96.44534352],[4.53405215,0.02769614,96.44472053],[4.53405162,0.02769442,96.44409653],[4.53405108,0.0276927,96.4434715],[4.53405055,0.02769098,96.44284543],[4.53405002,0.02768925,96.4422183],[4.53404949,0.02768753,96.44159007],[4.53404895,0.02768581,96.44096074],[4.53404842,0.02768409,96.44033028],[4.53404789,0.02768237,96.43969867],[4.53404736,0.02768064,96.43906589],[4.53404682,0.02767892,96.43843192],[4.53404629,0.0276772,96.43779674],[4.53404576,0.02767548,96.43716033],[4.53404523,0.02767376,96.43652266],[4.53404469,0.02767203,96.43588372],[4.53404416,0.02767031,96.43524349],[4.53404363,0.02766859,96.43460194],[4.53404309,0.02766687,96.43395906],[4.53404256,0.02766515,96.43331482],[4.53404203,0.02766343,96.43266921],[4.53404149,0.0276617,96.43202221],[4.53404096,0.02765998,96.43137382],[4.53404043,0.02765826,96.43072402],[4.53403989,0.02765654,96.43007279],[4.53403936,0.02765482,96.42942014],[4.53403883,0.02765309,96.42876605],[4.53403829,0.02765137,96.4281105],[4.53403776,0.02764965,96.42745349],[4.53403723,0.02764793,96.42679501],[4.53403669,0.02764621,96.42613505],[4.53403616,0.02764449,96.42547359],[4.53403563,0.02764276,96.42481062],[4.53403509,0.02764104,96.42414613],[4.53403456,0.02763932,96.42348012],[4.53403402,0.0276376,96.42281256],[4.53403349,0.02763588,96.42214346],[4.53403296,0.02763416,96.42147279],[4.53403242,0.02763244,96.42080055],[4.53403189,0.02763071,96.42012673],[4.53403135,0.02762899,96.41945131],[4.53403082,0.02762727,96.41877428],[4.53403029,0.02762555,96.41809564],[4.53402975,0.02762383,96.41741536],[4.53402922,0.02762211,96.41673345],[4.53402868,0.02762038,96.41604988],[4.53402815,0.02761866,96.41536465],[4.53402762,0.02761694,96.41467774],[4.53402708,0.02761522,96.41398915],[4.53402655,0.0276135,96.41329886],[4.53402601,0.02761178,96.41260687],[4.53402548,0.02761006,96.41191315],[4.53402495,0.02760833,96.4112177],[4.53402441,0.02760661,96.41052051],[4.53402388,0.02760489,96.40982156],[4.53402334,0.02760317,96.40912085],[4.53402281,0.02760145,96.40841836],[4.53402228,0.02759973,96.40771408],[4.53402174,0.027598,96.407008],[4.53402121,0.02759628,96.40630011],[4.53402067,0.02759456,96.4055904],[4.53402014,0.02759284,96.40487885],[4.53401961,0.02759112,96.40416546],[4.53401907,0.0275894,96.4034502],[4.53401854,0.02758768,96.40273308],[4.534018,0.02758595,96.40201408],[4.53401747,0.02758423,96.40129319],[4.53401694,0.02758251,96.40057039],[4.5340164,0.02758079,96.39984568],[4.53401587,0.02757907,96.39911904],[4.53401534,0.02757735,96.39839047],[4.5340148,0.02757562,96.39765994],[4.53401427,0.0275739,96.39692746],[4.53401374,0.02757218,96.396193],[4.5340132,0.02757046,96.39545656],[4.53401267,0.02756874,96.39471812],[4.53401213,0.02756702,96.39397768],[4.5340116,0.02756529,96.39323522],[4.53401107,0.02756357,96.39249072],[4.53401054,0.02756185,96.39174418],[4.53401,0.02756013,96.39099556],[4.53400947,0.02755841,96.39024487],[4.53400894,0.02755669,96.38949206],[4.5340084,0.02755496,96.38873714],[4.53400787,0.02755324,96.38798008],[4.53400734,0.02755152,96.38722085],[4.5340068,0.0275498,96.38645946],[4.53400627,0.02754808,96.38569587],[4.53400574,0.02754635,96.38493007],[4.53400521,0.02754463,96.38416205],[4.53400467,0.02754291,96.38339177],[4.53400414,0.02754119,96.38261924],[4.53400361,0.02753947,96.38184442],[4.53400308,0.02753774,96.38106731],[4.53400254,0.02753602,96.38028788],[4.53400201,0.0275343,96.37950611],[4.53400148,0.02753258,96.378722],[4.53400095,0.02753086,96.37793551],[4.53400041,0.02752913,96.37714664],[4.53399988,0.02752741,96.37635536],[4.53399935,0.02752569,96.37556167],[4.53399882,0.02752397,96.37476553],[4.53399828,0.02752225,96.37396694],[4.53399775,0.02752052,96.37316588],[4.53399722,0.0275188,96.37236232],[4.53399669,0.02751708,96.37155626],[4.53399616,0.02751536,96.37074767],[4.53399562,0.02751364,96.36993653],[4.53399509,0.02751191,96.36912284],[4.53399456,0.02751019,96.36830656],[4.53399403,0.02750847,96.3674877],[4.53399349,0.02750675,96.36666621],[4.53399296,0.02750503,96.3658421],[4.53399243,0.0275033,96.36501534],[4.5339919,0.02750158,96.36418592],[4.53399137,0.02749986,96.36335381],[4.53399084,0.02749814,96.36251901],[4.5339903,0.02749641,96.36168148],[4.53398977,0.02749469,96.36084123],[4.53398924,0.02749297,96.35999822],[4.53398871,0.02749125,96.35915244],[4.53398818,0.02748953,96.35830388],[4.53398764,0.0274878,96.35745251],[4.53398711,0.02748608,96.35659833],[4.53398658,0.02748436,96.3557413],[4.53398605,0.02748264,96.35488142],[4.53398552,0.02748092,96.35401867],[4.53398499,0.02747919,96.35315303],[4.53398445,0.02747747,96.35228449],[4.53398392,0.02747575,96.35141302],[4.53398339,0.02747403,96.3505386],[4.53398286,0.0274723,96.34966123],[4.53398233,0.02747058,96.34878089],[4.5339818,0.02746886,96.34789755],[4.53398126,0.02746714,96.3470112],[4.53398073,0.02746542,96.34612183],[4.5339802,0.02746369,96.34522941],[4.53397967,0.02746197,96.34433392],[4.53397914,0.02746025,96.34343536],[4.5339786,0.02745853,96.34253371],[4.53397807,0.0274568,96.34162894],[4.53397754,0.02745508,96.34072104],[4.53397701,0.02745336,96.33980999],[4.53397648,0.02745164,96.33889578],[4.53397595,0.02744992,96.33797838],[4.53397541,0.02744819,96.33705779],[4.53397488,0.02744647,96.33613398],[4.53397435,0.02744475,96.33520693],[4.53397382,0.02744303,96.33427664],[4.53397329,0.0274413,96.33334307],[4.53397276,0.02743958,96.33240622],[4.53397222,0.02743786,96.33146607],[4.53397169,0.02743614,96.3305226],[4.53397116,0.02743442,96.32957579],[4.53397063,0.02743269,96.32862562],[4.5339701,0.02743097,96.32767208],[4.53396956,0.02742925,96.32671516],[4.53396903,0.02742753,96.32575482],[4.5339685,0.02742581,96.32479106],[4.53396797,0.02742408,96.32382386],[4.53396744,0.02742236,96.3228532],[4.53396691,0.02742064,96.32187907],[4.53396637,0.02741892,96.32090144],[4.53396584,0.02741719,96.3199203],[4.53396531,0.02741547,96.31893563],[4.53396478,0.02741375,96.31794741],[4.53396425,0.02741203,96.31695563],[4.53396371,0.02741031,96.31596027],[4.53396318,0.02740858,96.31496131],[4.53396265,0.02740686,96.31395874],[4.53396212,0.02740514,96.31295254],[4.53396158,0.02740342,96.31194268],[4.53396105,0.0274017,96.31092916],[4.53396052,0.02739997,96.30991196],[4.53395999,0.02739825,96.30889106],[4.53395946,0.02739653,96.30786644],[4.53395892,0.02739481,96.30683808],[4.53395839,0.02739309,96.30580597],[4.53395786,0.02739136,96.30477011],[4.53395733,0.02738964,96.3037306],[4.53395679,0.02738792,96.30268754],[4.53395626,0.0273862,96.30164103],[4.53395573,0.02738448,96.30059121],[4.53395519,0.02738276,96.29953817],[4.53395466,0.02738103,96.29848202],[4.53395413,0.02737931,96.29742288],[4.5339536,0.02737759,96.29636086],[4.53395306,0.02737587,96.29529606],[4.53395253,0.02737415,96.29422861],[4.533952,0.02737242,96.2931586],[4.53395147,0.0273707,96.29208615],[4.53395093,0.02736898,96.29101137],[4.5339504,0.02736726,96.28993437],[4.53394987,0.02736554,96.28885526],[4.53394933,0.02736382,96.28777415],[4.5339488,0.02736209,96.28669115],[4.53394827,0.02736037,96.28560637],[4.53394773,0.02735865,96.28451993],[4.5339472,0.02735693,96.28343193],[4.53394667,0.02735521,96.28234247],[4.53394613,0.02735349,96.28125168],[4.5339456,0.02735176,96.28015967],[4.53394507,0.02735004,96.27906653],[4.53394453,0.02734832,96.27797238],[4.533944,0.0273466,96.27687734],[4.53394347,0.02734488,96.27578151],[4.53394293,0.02734316,96.274685],[4.5339424,0.02734143,96.27358792],[4.53394186,0.02733971,96.27249038],[4.53394133,0.02733799,96.2713925],[4.5339408,0.02733627,96.27029437],[4.53394026,0.02733455,96.26919612],[4.53393973,0.02733283,96.26809784],[4.53393919,0.02733111,96.26699966],[4.53393866,0.02732938,96.26590167],[4.53393813,0.02732766,96.26480399],[4.53393759,0.02732594,96.26370673],[4.53393706,0.02732422,96.26261],[4.53393652,0.0273225,96.26151391],[4.53393599,0.02732078,96.26041856],[4.53393545,0.02731906,96.25932407],[4.53393492,0.02731734,96.25823055],[4.53393438,0.02731561,96.25713811],[4.53393385,0.02731389,96.25604687],[4.53393331,0.02731217,96.25495693],[4.53393278,0.02731045,96.25386842],[4.53393224,0.02730873,96.25278146],[4.53393171,0.02730701,96.25169614],[4.53393117,0.02730529,96.25061259],[4.53393064,0.02730357,96.24953093],[4.5339301,0.02730185,96.24845125],[4.53392957,0.02730012,96.24737369],[4.53392903,0.0272984,96.24629836],[4.5339285,0.02729668,96.24522536],[4.53392796,0.02729496,96.24415482],[4.53392743,0.02729324,96.24308685],[4.53392689,0.02729152,96.24202156],[4.53392636,0.0272898,96.24095906],[4.53392582,0.02728808,96.23989948],[4.53392529,0.02728636,96.23884293],[4.53392475,0.02728464,96.23778952],[4.53392421,0.02728292,96.23673936],[4.53392368,0.02728119,96.23569257],[4.53392314,0.02727947,96.23464928],[4.53392261,0.02727775,96.23360958],[4.53392207,0.02727603,96.23257359],[4.53392153,0.02727431,96.23154144],[4.533921,0.02727259,96.23051324],[4.53392046,0.02727087,96.22948909],[4.53391993,0.02726915,96.22846912],[4.53391939,0.02726743,96.22745344],[4.53391885,0.02726571,96.22644217],[4.53391832,0.02726399,96.22543541],[4.53391778,0.02726227,96.2244333],[4.53391724,0.02726055,96.22343593],[4.53391671,0.02725882,96.22244344],[4.53391617,0.0272571,96.22145592],[4.53391564,0.02725538,96.22047351],[4.5339151,0.02725366,96.2194963],[4.53391456,0.02725194,96.21852443],[4.53391403,0.02725022,96.21755799],[4.53391349,0.0272485,96.21659712],[4.53391295,0.02724678,96.21564192],[4.53391242,0.02724506,96.21469252],[4.53391188,0.02724334,96.21374901],[4.53391134,0.02724162,96.21281153],[4.53391081,0.0272399,96.21188019],[4.53391027,0.02723818,96.2109551],[4.53390973,0.02723646,96.21003638],[4.5339092,0.02723474,96.20912414],[4.53390866,0.02723302,96.20821851],[4.53390812,0.0272313,96.20731959],[4.53390759,0.02722957,96.2064275],[4.53390705,0.02722785,96.20554236],[4.53390651,0.02722613,96.20466428],[4.53390598,0.02722441,96.20379338],[4.53390544,0.02722269,96.20292977],[4.5339049,0.02722097,96.20207358],[4.53390436,0.02721925,96.20122491],[4.53390383,0.02721753,96.20038389],[4.53390329,0.02721581,96.19955062],[4.53390275,0.02721409,96.19872523],[4.53390222,0.02721237,96.19790783],[4.53390168,0.02721065,96.19709853],[4.53390114,0.02720893,96.19629746],[4.53390061,0.02720721,96.19550472],[4.53390007,0.02720549,96.19472044],[4.53389953,0.02720377,96.19394473],[4.53389899,0.02720205,96.1931777],[4.53389846,0.02720033,96.19241947],[4.53389792,0.02719861,96.19167016],[4.53389738,0.02719689,96.19092988],[4.53389685,0.02719517,96.19019863],[4.53389631,0.02719345,96.18947627],[4.53389577,0.02719173,96.18876269],[4.53389524,0.02719,96.18805776],[4.5338947,0.02718828,96.18736136],[4.53389416,0.02718656,96.18667335],[4.53389362,0.02718484,96.18599361],[4.53389309,0.02718312,96.18532201],[4.53389255,0.0271814,96.18465844],[4.53389201,0.02717968,96.18400275],[4.53389148,0.02717796,96.18335483],[4.53389094,0.02717624,96.18271454],[4.5338904,0.02717452,96.18208177],[4.53388986,0.0271728,96.18145638],[4.53388933,0.02717108,96.18083825],[4.53388879,0.02716936,96.18022726],[4.53388825,0.02716764,96.17962326],[4.53388772,0.02716592,96.17902615],[4.53388718,0.0271642,96.17843579],[4.53388664,0.02716248,96.17785205],[4.53388611,0.02716076,96.1772748],[4.53388557,0.02715904,96.17670393],[4.53388503,0.02715732,96.1761393],[4.5338845,0.0271556,96.17558079],[4.53388396,0.02715388,96.17502827],[4.53388342,0.02715215,96.17448161],[4.53388289,0.02715043,96.17394068],[4.53388235,0.02714871,96.17340536],[4.53388181,0.02714699,96.17287552],[4.53388127,0.02714527,96.17235103],[4.53388074,0.02714355,96.17183177],[4.5338802,0.02714183,96.17131761],[4.53387966,0.02714011,96.17080841],[4.53387913,0.02713839,96.17030404],[4.53387859,0.02713667,96.16980438],[4.53387806,0.02713495,96.16930928],[4.53387752,0.02713323,96.16881862],[4.53387698,0.02713151,96.16833227],[4.53387645,0.02712979,96.16785008],[4.53387591,0.02712807,96.16737194],[4.53387537,0.02712635,96.1668977],[4.53387484,0.02712463,96.16642724],[4.5338743,0.02712291,96.16596042],[4.53387376,0.02712119,96.16549711],[4.53387323,0.02711946,96.16503718],[4.53387269,0.02711774,96.16458049],[4.53387215,0.02711602,96.16412692],[4.53387162,0.0271143,96.16367632],[4.53387108,0.02711258,96.16322858],[4.53387055,0.02711086,96.16278356],[4.53387001,0.02710914,96.16234111],[4.53386947,0.02710742,96.16190112],[4.53386894,0.0271057,96.16146345],[4.5338684,0.02710398,96.16102797],[4.53386786,0.02710226,96.16059455],[4.53386733,0.02710054,96.16016304],[4.53386679,0.02709882,96.15973333],[4.53386626,0.0270971,96.15930528],[4.53386572,0.02709538,96.15887876],[4.53386518,0.02709365,96.15845363],[4.53386465,0.02709193,96.15802976],[4.53386411,0.02709021,96.15760703],[4.53386357,0.02708849,96.1571853],[4.53386304,0.02708677,96.15676443],[4.5338625,0.02708505,96.1563443],[4.53386197,0.02708333,96.15592478],[4.53386143,0.02708161,96.15550572],[4.53386089,0.02707989,96.15508701],[4.53386036,0.02707817,96.15466851],[4.53385982,0.02707645,96.15425008],[4.53385929,0.02707473,96.1538316],[4.53385875,0.02707301,96.15341293],[4.53385821,0.02707129,96.15299395],[4.53385768,0.02706957,96.15257451],[4.53385714,0.02706785,96.1521545],[4.5338566,0.02706612,96.15173377],[4.53385607,0.0270644,96.15131221],[4.53385553,0.02706268,96.15088966],[4.533855,0.02706096,96.15046601],[4.53385446,0.02705924,96.15004112],[4.53385392,0.02705752,96.14961487],[4.53385339,0.0270558,96.14918711],[4.53385285,0.02705408,96.14875773],[4.53385232,0.02705236,96.14832658],[4.53385178,0.02705064,96.14789354],[4.53385124,0.02704892,96.14745847],[4.53385071,0.0270472,96.14702125],[4.53385017,0.02704548,96.14658174],[4.53384963,0.02704376,96.14613982],[4.5338491,0.02704204,96.14569535],[4.53384856,0.02704031,96.1452482],[4.53384803,0.02703859,96.14479824],[4.53384749,0.02703687,96.14434534],[4.53384695,0.02703515,96.14388937],[4.53384642,0.02703343,96.1434302],[4.53384588,0.02703171,96.1429677],[4.53384534,0.02702999,96.14250173],[4.53384481,0.02702827,96.14203217],[4.53384427,0.02702655,96.14155889],[4.53384373,0.02702483,96.14108175],[4.5338432,0.02702311,96.14060063],[4.53384266,0.02702139,96.14011539],[4.53384213,0.02701967,96.13962591],[4.53384159,0.02701795,96.13913206],[4.53384105,0.02701623,96.13863369],[4.53384052,0.02701451,96.1381307],[4.53383998,0.02701279,96.13762293],[4.53383944,0.02701107,96.13711027],[4.53383891,0.02700934,96.13659259],[4.53383837,0.02700762,96.13606974],[4.53383783,0.0270059,96.13554162],[4.5338373,0.02700418,96.13500807],[4.53383676,0.02700246,96.13446898],[4.53383622,0.02700074,96.13392421],[4.53383569,0.02699902,96.13337364],[4.53383515,0.0269973,96.13281713],[4.53383461,0.02699558,96.13225455],[4.53383408,0.02699386,96.13168578],[4.53383354,0.02699214,96.13111069],[4.533833,0.02699042,96.13052913],[4.53383246,0.0269887,96.129941],[4.53383193,0.02698698,96.12934614],[4.53383139,0.02698526,96.12874445],[4.53383085,0.02698354,96.12813578],[4.53383032,0.02698182,96.12752],[4.53382978,0.0269801,96.126897],[4.53382924,0.02697838,96.12626663],[4.53382871,0.02697666,96.12562876],[4.53382817,0.02697494,96.12498328],[4.53382763,0.02697322,96.12433004],[4.53382709,0.0269715,96.12366892],[4.53382656,0.02696978,96.12299979],[4.53382602,0.02696806,96.12232252],[4.53382548,0.02696634,96.12163698],[4.53382495,0.02696462,96.12094304],[4.53382441,0.0269629,96.12024057],[4.53382387,0.02696118,96.11952944],[4.53382333,0.02695946,96.11880952],[4.53382279,0.02695774,96.11808069],[4.53382226,0.02695602,96.11734281],[4.53382172,0.0269543,96.11659587],[4.53382118,0.02695258,96.11583999],[4.53382064,0.02695086,96.11507525],[4.53382011,0.02694914,96.11430178],[4.53381957,0.02694742,96.11351966],[4.53381903,0.0269457,96.11272902],[4.53381849,0.02694398,96.11192995],[4.53381795,0.02694226,96.11112256],[4.53381742,0.02694054,96.11030696],[4.53381688,0.02693882,96.10948324],[4.53381634,0.0269371,96.10865153],[4.5338158,0.02693538,96.10781191],[4.53381526,0.02693366,96.1069645],[4.53381472,0.02693194,96.10610941],[4.53381419,0.02693022,96.10524673],[4.53381365,0.0269285,96.10437657],[4.53381311,0.02692678,96.10349904],[4.53381257,0.02692506,96.10261425],[4.53381203,0.02692334,96.10172229],[4.53381149,0.02692162,96.10082327],[4.53381095,0.0269199,96.0999173],[4.53381042,0.02691818,96.09900448],[4.53380988,0.02691646,96.09808492],[4.53380934,0.02691474,96.09715871],[4.5338088,0.02691302,96.09622597],[4.53380826,0.0269113,96.0952868],[4.53380772,0.02690958,96.09434131],[4.53380718,0.02690786,96.09338959],[4.53380664,0.02690614,96.09243176],[4.5338061,0.02690442,96.09146793],[4.53380556,0.0269027,96.09049821],[4.53380502,0.02690098,96.08952269],[4.53380449,0.02689926,96.0885415],[4.53380395,0.02689754,96.08755473],[4.53380341,0.02689582,96.08656249],[4.53380287,0.0268941,96.0855649],[4.53380233,0.02689238,96.08456206],[4.53380179,0.02689067,96.08355407],[4.53380125,0.02688895,96.08254105],[4.53380071,0.02688723,96.08152309],[4.53380017,0.02688551,96.08050032],[4.53379963,0.02688379,96.07947283],[4.53379909,0.02688207,96.07844074],[4.53379855,0.02688035,96.07740414],[4.53379801,0.02687863,96.07636316],[4.53379747,0.02687691,96.07531789],[4.53379693,0.02687519,96.07426844],[4.53379639,0.02687347,96.07321492],[4.53379585,0.02687175,96.07215744],[4.53379531,0.02687003,96.0710961],[4.53379477,0.02686831,96.07003102],[4.53379422,0.02686659,96.06896229],[4.53379368,0.02686487,96.06789003],[4.53379314,0.02686316,96.06681435],[4.5337926,0.02686144,96.06573535],[4.53379206,0.02685972,96.06465313],[4.53379152,0.026858,96.06356781],[4.53379098,0.02685628,96.0624795],[4.53379044,0.02685456,96.06138829],[4.5337899,0.02685284,96.06029431],[4.53378936,0.02685112,96.05919764],[4.53378882,0.0268494,96.05809842],[4.53378828,0.02684768,96.05699673],[4.53378774,0.02684596,96.05589269],[4.53378719,0.02684424,96.05478641],[4.53378665,0.02684253,96.05367798],[4.53378611,0.02684081,96.05256753],[4.53378557,0.02683909,96.05145516],[4.53378503,0.02683737,96.05034097],[4.53378449,0.02683565,96.04922508],[4.53378395,0.02683393,96.04810758],[4.53378341,0.02683221,96.04698859],[4.53378286,0.02683049,96.04586822],[4.53378232,0.02682877,96.04474658],[4.53378178,0.02682705,96.04362376],[4.53378124,0.02682534,96.04249988],[4.5337807,0.02682362,96.04137505],[4.53378016,0.0268219,96.04024937],[4.53377962,0.02682018,96.03912295],[4.53377907,0.02681846,96.03799591],[4.53377853,0.02681674,96.03686834],[4.53377799,0.02681502,96.03574035],[4.53377745,0.0268133,96.03461206],[4.53377691,0.02681158,96.03348357],[4.53377637,0.02680986,96.03235498],[4.53377582,0.02680815,96.03122642],[4.53377528,0.02680643,96.03009798],[4.53377474,0.02680471,96.02896977],[4.5337742,0.02680299,96.0278419],[4.53377366,0.02680127,96.02671448],[4.53377312,0.02679955,96.02558761],[4.53377257,0.02679783,96.02446141],[4.53377203,0.02679611,96.02333598],[4.53377149,0.0267944,96.02221144],[4.53377095,0.02679268,96.02108788],[4.53377041,0.02679096,96.01996541],[4.53376986,0.02678924,96.01884416],[4.53376932,0.02678752,96.01772421],[4.53376878,0.0267858,96.01660569],[4.53376824,0.02678408,96.0154887],[4.5337677,0.02678236,96.01437334],[4.53376715,0.02678064,96.01325973],[4.53376661,0.02677893,96.01214798],[4.53376607,0.02677721,96.01103819],[4.53376553,0.02677549,96.00993047],[4.53376498,0.02677377,96.00882493],[4.53376444,0.02677205,96.00772167],[4.5337639,0.02677033,96.00662082],[4.53376336,0.02676861,96.00552247],[4.53376282,0.02676689,96.00442673],[4.53376227,0.02676518,96.00333371],[4.53376173,0.02676346,96.00224352],[4.53376119,0.02676174,96.00115628],[4.53376065,0.02676002,96.00007208],[4.53376011,0.0267583,95.99899103],[4.53375956,0.02675658,95.99791325],[4.53375902,0.02675486,95.99683884],[4.53375848,0.02675314,95.99576792],[4.53375794,0.02675143,95.99470059],[4.53375739,0.02674971,95.99363695],[4.53375685,0.02674799,95.99257712],[4.53375631,0.02674627,95.99152121],[4.53375577,0.02674455,95.99046932],[4.53375522,0.02674283,95.98942157],[4.53375468,0.02674111,95.98837806],[4.53375414,0.02673939,95.9873389],[4.5337536,0.02673768,95.9863042],[4.53375306,0.02673596,95.98527407],[4.53375251,0.02673424,95.98424861],[4.53375197,0.02673252,95.98322795],[4.53375143,0.0267308,95.98221217],[4.53375089,0.02672908,95.9812014],[4.53375034,0.02672736,95.98019572],[4.5337498,0.02672564,95.97919512],[4.53374926,0.02672393,95.97819958],[4.53374872,0.02672221,95.97720905],[4.53374817,0.02672049,95.97622352],[4.53374763,0.02671877,95.97524295],[4.53374739,0.02671799,95.97479853],[4.53377879,0.02670795,96.07624817],[4.53377904,0.02670873,96.07662411],[4.53377958,0.02671045,96.07745164],[4.53378012,0.02671217,96.0782807],[4.53378066,0.02671389,96.0791113],[4.53378121,0.02671561,96.07994345],[4.53378175,0.02671732,96.08077717],[4.53378229,0.02671904,96.08161246],[4.53378283,0.02672076,96.08244934],[4.53378337,0.02672248,96.08328776],[4.53378392,0.0267242,96.0841277],[4.53378446,0.02672592,96.08496913],[4.533785,0.02672764,96.08581202],[4.53378554,0.02672936,96.08665632],[4.53378608,0.02673108,96.08750201],[4.53378663,0.0267328,96.08834904],[4.53378717,0.02673452,96.0891974],[4.53378771,0.02673624,96.09004704],[4.53378825,0.02673796,96.09089793],[4.53378879,0.02673968,96.09175004],[4.53378933,0.02674139,96.09260334],[4.53378988,0.02674311,96.09345778],[4.53379042,0.02674483,96.09431334],[4.53379096,0.02674655,96.09516999],[4.5337915,0.02674827,96.09602768],[4.53379204,0.02674999,96.0968864],[4.53379258,0.02675171,96.09774609],[4.53379312,0.02675343,96.09860673],[4.53379367,0.02675515,96.09946829],[4.53379421,0.02675687,96.10033073],[4.53379475,0.02675859,96.10119402],[4.53379529,0.02676031,96.10205813],[4.53379583,0.02676203,96.10292302],[4.53379637,0.02676375,96.10378865],[4.53379691,0.02676547,96.104655],[4.53379745,0.02676719,96.10552203],[4.533798,0.02676891,96.10638971],[4.53379854,0.02677063,96.107258],[4.53379908,0.02677234,96.10812688],[4.53379962,0.02677406,96.1089963],[4.53380016,0.02677578,96.10986623],[4.5338007,0.0267775,96.11073664],[4.53380124,0.02677922,96.1116075],[4.53380178,0.02678094,96.11247876],[4.53380232,0.02678266,96.11335041],[4.53380286,0.02678438,96.11422241],[4.5338034,0.0267861,96.11509471],[4.53380394,0.02678782,96.11596729],[4.53380448,0.02678954,96.11684012],[4.53380503,0.02679126,96.11771315],[4.53380557,0.02679298,96.11858636],[4.53380611,0.0267947,96.11945972],[4.53380665,0.02679642,96.12033318],[4.53380719,0.02679814,96.12120672],[4.53380773,0.02679986,96.1220803],[4.53380827,0.02680158,96.12295389],[4.53380881,0.0268033,96.12382745],[4.53380935,0.02680502,96.12470095],[4.53380989,0.02680674,96.12557436],[4.53381043,0.02680846,96.12644764],[4.53381097,0.02681018,96.12732076],[4.53381151,0.0268119,96.12819368],[4.53381205,0.02681362,96.12906637],[4.53381259,0.02681534,96.1299388],[4.53381313,0.02681706,96.13081094],[4.53381367,0.02681878,96.13168274],[4.53381421,0.0268205,96.13255418],[4.53381475,0.02682222,96.13342522],[4.53381529,0.02682394,96.13429582],[4.53381583,0.02682566,96.13516596],[4.53381637,0.02682738,96.1360356],[4.53381691,0.0268291,96.1369047],[4.53381745,0.02683082,96.13777324],[4.53381799,0.02683254,96.13864117],[4.53381853,0.02683426,96.13950846],[4.53381907,0.02683598,96.14037508],[4.53381961,0.0268377,96.141241],[4.53382015,0.02683942,96.14210617],[4.53382069,0.02684114,96.14297058],[4.53382123,0.02684286,96.14383417],[4.53382177,0.02684458,96.14469692],[4.53382231,0.0268463,96.1455588],[4.53382285,0.02684802,96.14641976],[4.53382338,0.02684974,96.14727978],[4.53382392,0.02685146,96.14813882],[4.53382446,0.02685318,96.14899685],[4.533825,0.0268549,96.14985383],[4.53382554,0.02685662,96.15070972],[4.53382608,0.02685834,96.1515645],[4.53382662,0.02686006,96.15241813],[4.53382716,0.02686178,96.15327057],[4.5338277,0.0268635,96.15412179],[4.53382824,0.02686522,96.15497176],[4.53382878,0.02686694,96.15582044],[4.53382932,0.02686866,96.1566678],[4.53382986,0.02687038,96.1575138],[4.5338304,0.0268721,96.1583584],[4.53383093,0.02687382,96.15920158],[4.53383147,0.02687554,96.1600433],[4.53383201,0.02687726,96.16088352],[4.53383255,0.02687898,96.16172221],[4.53383309,0.0268807,96.16255933],[4.53383363,0.02688242,96.16339485],[4.53383417,0.02688414,96.16422874],[4.53383471,0.02688586,96.16506097],[4.53383525,0.02688758,96.16589148],[4.53383579,0.0268893,96.16672026],[4.53383632,0.02689102,96.16754726],[4.53383686,0.02689274,96.16837246],[4.5338374,0.02689446,96.16919581],[4.53383794,0.02689618,96.17001729],[4.53383848,0.0268979,96.17083685],[4.53383902,0.02689962,96.17165447],[4.53383956,0.02690134,96.1724701],[4.5338401,0.02690306,96.17328371],[4.53384063,0.02690478,96.17409528],[4.53384117,0.0269065,96.17490476],[4.53384171,0.02690822,96.17571211],[4.53384225,0.02690994,96.17651731],[4.53384279,0.02691166,96.17732032],[4.53384333,0.02691338,96.1781211],[4.53384387,0.0269151,96.17891962],[4.53384441,0.02691682,96.17971584],[4.53384494,0.02691854,96.18050973],[4.53384548,0.02692026,96.18130125],[4.53384602,0.02692198,96.18209037],[4.53384656,0.0269237,96.18287704],[4.5338471,0.02692542,96.18366125],[4.53384764,0.02692714,96.18444294],[4.53384817,0.02692887,96.18522209],[4.53384871,0.02693059,96.18599865],[4.53384925,0.02693231,96.1867726],[4.53384979,0.02693403,96.1875439],[4.53385033,0.02693575,96.18831251],[4.53385087,0.02693747,96.18907839],[4.5338514,0.02693919,96.18984152],[4.53385194,0.02694091,96.19060185],[4.53385248,0.02694263,96.19135935],[4.53385302,0.02694435,96.19211398],[4.53385356,0.02694607,96.19286571],[4.5338541,0.02694779,96.19361451],[4.53385463,0.02694951,96.19436037],[4.53385517,0.02695123,96.19510334],[4.53385571,0.02695295,96.19584346],[4.53385625,0.02695467,96.19658077],[4.53385679,0.02695639,96.19731531],[4.53385732,0.02695811,96.19804712],[4.53385786,0.02695983,96.19877625],[4.5338584,0.02696155,96.19950273],[4.53385894,0.02696327,96.20022662],[4.53385948,0.02696499,96.20094794],[4.53386001,0.02696671,96.20166675],[4.53386055,0.02696843,96.20238308],[4.53386109,0.02697015,96.20309697],[4.53386163,0.02697187,96.20380847],[4.53386216,0.02697359,96.20451762],[4.5338627,0.02697531,96.20522446],[4.53386324,0.02697703,96.20592904],[4.53386378,0.02697875,96.20663138],[4.53386431,0.02698048,96.20733155],[4.53386485,0.0269822,96.20802957],[4.53386539,0.02698392,96.20872549],[4.53386593,0.02698564,96.20941935],[4.53386647,0.02698736,96.2101112],[4.533867,0.02698908,96.21080107],[4.53386754,0.0269908,96.21148901],[4.53386808,0.02699252,96.21217505],[4.53386862,0.02699424,96.21285925],[4.53386915,0.02699596,96.21354165],[4.53386969,0.02699768,96.21422227],[4.53387023,0.0269994,96.21490118],[4.53387077,0.02700112,96.2155784],[4.5338713,0.02700284,96.21625399],[4.53387184,0.02700456,96.21692797],[4.53387238,0.02700628,96.21760041],[4.53387292,0.02700801,96.21827133],[4.53387345,0.02700973,96.21894078],[4.53387399,0.02701145,96.2196088],[4.53387453,0.02701317,96.22027543],[4.53387507,0.02701489,96.22094072],[4.5338756,0.02701661,96.22160471],[4.53387614,0.02701833,96.22226744],[4.53387668,0.02702005,96.22292895],[4.53387721,0.02702177,96.22358929],[4.53387775,0.02702349,96.22424849],[4.53387829,0.02702521,96.2249066],[4.53387883,0.02702693,96.22556366],[4.53387936,0.02702865,96.22621971],[4.5338799,0.02703037,96.2268748],[4.53388044,0.0270321,96.22752896],[4.53388097,0.02703382,96.22818225],[4.53388151,0.02703554,96.2288347],[4.53388205,0.02703726,96.22948635],[4.53388259,0.02703898,96.23013725],[4.53388312,0.0270407,96.23078744],[4.53388366,0.02704242,96.23143696],[4.5338842,0.02704414,96.23208585],[4.53388473,0.02704586,96.23273416],[4.53388527,0.02704758,96.23338193],[4.53388581,0.0270493,96.2340292],[4.53388634,0.02705102,96.23467601],[4.53388688,0.02705275,96.23532241],[4.53388742,0.02705447,96.23596844],[4.53388795,0.02705619,96.23661414],[4.53388849,0.02705791,96.23725955],[4.53388903,0.02705963,96.23790471],[4.53388956,0.02706135,96.23854968],[4.5338901,0.02706307,96.23919448],[4.53389064,0.02706479,96.23983917],[4.53389117,0.02706651,96.24048378],[4.53389171,0.02706823,96.24112837],[4.53389225,0.02706995,96.24177296],[4.53389278,0.02707168,96.2424176],[4.53389332,0.0270734,96.24306235],[4.53389386,0.02707512,96.24370723],[4.53389439,0.02707684,96.24435229],[4.53389493,0.02707856,96.24499757],[4.53389547,0.02708028,96.24564312],[4.533896,0.027082,96.24628899],[4.53389654,0.02708372,96.2469352],[4.53389708,0.02708544,96.24758181],[4.53389761,0.02708716,96.24822885],[4.53389815,0.02708889,96.24887637],[4.53389869,0.02709061,96.24952442],[4.53389922,0.02709233,96.25017303],[4.53389976,0.02709405,96.25082225],[4.5339003,0.02709577,96.25147212],[4.53390083,0.02709749,96.25212269],[4.53390137,0.02709921,96.25277399],[4.5339019,0.02710093,96.25342607],[4.53390244,0.02710265,96.25407897],[4.53390298,0.02710438,96.25473274],[4.53390351,0.0271061,96.25538742],[4.53390405,0.02710782,96.25604304],[4.53390459,0.02710954,96.25669966],[4.53390512,0.02711126,96.25735732],[4.53390566,0.02711298,96.25801605],[4.53390619,0.0271147,96.25867591],[4.53390673,0.02711642,96.25933693],[4.53390727,0.02711814,96.25999916],[4.5339078,0.02711987,96.26066264],[4.53390834,0.02712159,96.26132742],[4.53390887,0.02712331,96.26199353],[4.53390941,0.02712503,96.26266103],[4.53390995,0.02712675,96.26332994],[4.53391048,0.02712847,96.26400032],[4.53391102,0.02713019,96.26467222],[4.53391155,0.02713191,96.26534566],[4.53391209,0.02713363,96.2660207],[4.53391263,0.02713536,96.26669738],[4.53391316,0.02713708,96.26737573],[4.5339137,0.0271388,96.26805582],[4.53391423,0.02714052,96.26873767],[4.53391477,0.02714224,96.26942133],[4.5339153,0.02714396,96.27010685],[4.53391584,0.02714568,96.27079426],[4.53391638,0.0271474,96.27148361],[4.53391691,0.02714913,96.27217495],[4.53391745,0.02715085,96.27286831],[4.53391798,0.02715257,96.27356375],[4.53391852,0.02715429,96.27426129],[4.53391905,0.02715601,96.274961],[4.53391959,0.02715773,96.2756629],[4.53392013,0.02715945,96.27636705],[4.53392066,0.02716117,96.27707348],[4.5339212,0.0271629,96.27778224],[4.53392173,0.02716462,96.27849338],[4.53392227,0.02716634,96.27920693],[4.5339228,0.02716806,96.27992294],[4.53392334,0.02716978,96.28064145],[4.53392387,0.0271715,96.28136251],[4.53392441,0.02717322,96.28208616],[4.53392494,0.02717494,96.28281244],[4.53392548,0.02717667,96.2835414],[4.53392602,0.02717839,96.28427308],[4.53392655,0.02718011,96.28500753],[4.53392709,0.02718183,96.28574478],[4.53392762,0.02718355,96.28648488],[4.53392816,0.02718527,96.28722787],[4.53392869,0.02718699,96.2879738],[4.53392923,0.02718872,96.28872271],[4.53392976,0.02719044,96.28947461],[4.5339303,0.02719216,96.29022945],[4.53393083,0.02719388,96.2909872],[4.53393137,0.0271956,96.29174783],[4.5339319,0.02719732,96.29251129],[4.53393244,0.02719904,96.29327756],[4.53393297,0.02720077,96.29404659],[4.53393351,0.02720249,96.29481835],[4.53393404,0.02720421,96.29559281],[4.53393458,0.02720593,96.29636991],[4.53393511,0.02720765,96.29714964],[4.53393565,0.02720937,96.29793195],[4.53393618,0.02721109,96.2987168],[4.53393672,0.02721282,96.29950416],[4.53393725,0.02721454,96.30029399],[4.53393779,0.02721626,96.30108626],[4.53393832,0.02721798,96.30188093],[4.53393886,0.0272197,96.30267796],[4.53393939,0.02722142,96.30347731],[4.53393993,0.02722314,96.30427895],[4.53394046,0.02722487,96.30508284],[4.533941,0.02722659,96.30588895],[4.53394153,0.02722831,96.30669724],[4.53394207,0.02723003,96.30750766],[4.5339426,0.02723175,96.30832019],[4.53394314,0.02723347,96.30913479],[4.53394367,0.0272352,96.30995142],[4.53394421,0.02723692,96.31077004],[4.53394474,0.02723864,96.31159062],[4.53394527,0.02724036,96.31241312],[4.53394581,0.02724208,96.3132375],[4.53394634,0.0272438,96.31406373],[4.53394688,0.02724553,96.31489176],[4.53394741,0.02724725,96.31572157],[4.53394795,0.02724897,96.31655312],[4.53394848,0.02725069,96.31738636],[4.53394902,0.02725241,96.31822126],[4.53394955,0.02725413,96.31905779],[4.53395009,0.02725586,96.31989591],[4.53395062,0.02725758,96.32073558],[4.53395115,0.0272593,96.32157676],[4.53395169,0.02726102,96.32241942],[4.53395222,0.02726274,96.32326351],[4.53395276,0.02726446,96.32410901],[4.53395329,0.02726618,96.32495588],[4.53395383,0.02726791,96.32580407],[4.53395436,0.02726963,96.32665355],[4.53395489,0.02727135,96.32750429],[4.53395543,0.02727307,96.32835625],[4.53395596,0.02727479,96.32920938],[4.5339565,0.02727652,96.33006366],[4.53395703,0.02727824,96.33091904],[4.53395757,0.02727996,96.3317755],[4.5339581,0.02728168,96.33263298],[4.53395863,0.0272834,96.33349146],[4.53395917,0.02728512,96.33435089],[4.5339597,0.02728685,96.33521125],[4.53396024,0.02728857,96.33607248],[4.53396077,0.02729029,96.33693456],[4.53396131,0.02729201,96.33779745],[4.53396184,0.02729373,96.33866112],[4.53396237,0.02729545,96.33952551],[4.53396291,0.02729718,96.3403906],[4.53396344,0.0272989,96.34125635],[4.53396398,0.02730062,96.34212272],[4.53396451,0.02730234,96.34298968],[4.53396504,0.02730406,96.34385718],[4.53396558,0.02730579,96.34472519],[4.53396611,0.02730751,96.34559368],[4.53396664,0.02730923,96.3464626],[4.53396718,0.02731095,96.34733191],[4.53396771,0.02731267,96.34820159],[4.53396825,0.02731439,96.34907159],[4.53396878,0.02731612,96.34994188],[4.53396931,0.02731784,96.35081241],[4.53396985,0.02731956,96.35168315],[4.53397038,0.02732128,96.35255407],[4.53397092,0.027323,96.35342513],[4.53397145,0.02732473,96.35429628],[4.53397198,0.02732645,96.35516749],[4.53397252,0.02732817,96.35603872],[4.53397305,0.02732989,96.35690994],[4.53397358,0.02733161,96.35778111],[4.53397412,0.02733333,96.35865219],[4.53397465,0.02733506,96.35952314],[4.53397518,0.02733678,96.36039393],[4.53397572,0.0273385,96.36126452],[4.53397625,0.02734022,96.36213486],[4.53397679,0.02734194,96.36300493],[4.53397732,0.02734367,96.36387469],[4.53397785,0.02734539,96.36474409],[4.53397839,0.02734711,96.3656131],[4.53397892,0.02734883,96.36648168],[4.53397945,0.02735055,96.3673498],[4.53397999,0.02735228,96.36821742],[4.53398052,0.027354,96.36908449],[4.53398105,0.02735572,96.36995099],[4.53398159,0.02735744,96.37081687],[4.53398212,0.02735916,96.3716821],[4.53398265,0.02736089,96.37254663],[4.53398319,0.02736261,96.37341044],[4.53398372,0.02736433,96.37427347],[4.53398425,0.02736605,96.37513571],[4.53398479,0.02736777,96.3759971],[4.53398532,0.0273695,96.37685761],[4.53398585,0.02737122,96.3777172],[4.53398639,0.02737294,96.37857584],[4.53398692,0.02737466,96.37943348],[4.53398745,0.02737638,96.38029009],[4.53398799,0.02737811,96.38114563],[4.53398852,0.02737983,96.38200006],[4.53398905,0.02738155,96.38285335],[4.53398959,0.02738327,96.38370546],[4.53399012,0.02738499,96.38455635],[4.53399065,0.02738672,96.38540602],[4.53399119,0.02738844,96.38625449],[4.53399172,0.02739016,96.38710175],[4.53399225,0.02739188,96.3879478],[4.53399278,0.0273936,96.38879266],[4.53399332,0.02739533,96.38963633],[4.53399385,0.02739705,96.39047881],[4.53399438,0.02739877,96.39132011],[4.53399492,0.02740049,96.39216024],[4.53399545,0.02740222,96.39299919],[4.53399598,0.02740394,96.39383697],[4.53399652,0.02740566,96.3946736],[4.53399705,0.02740738,96.39550906],[4.53399758,0.0274091,96.39634338],[4.53399811,0.02741083,96.39717654],[4.53399865,0.02741255,96.39800857],[4.53399918,0.02741427,96.39883946],[4.53399971,0.02741599,96.39966923],[4.53400025,0.02741771,96.40049786],[4.53400078,0.02741944,96.40132538],[4.53400131,0.02742116,96.40215179],[4.53400184,0.02742288,96.40297708],[4.53400238,0.0274246,96.40380127],[4.53400291,0.02742633,96.40462437],[4.53400344,0.02742805,96.40544637],[4.53400398,0.02742977,96.40626728],[4.53400451,0.02743149,96.40708712],[4.53400504,0.02743321,96.40790587],[4.53400557,0.02743494,96.40872356],[4.53400611,0.02743666,96.40954018],[4.53400664,0.02743838,96.41035574],[4.53400717,0.0274401,96.41117024],[4.5340077,0.02744183,96.41198369],[4.53400824,0.02744355,96.4127961],[4.53400877,0.02744527,96.41360747],[4.5340093,0.02744699,96.41441781],[4.53400983,0.02744871,96.41522712],[4.53401037,0.02745044,96.4160354],[4.5340109,0.02745216,96.41684267],[4.53401143,0.02745388,96.41764893],[4.53401196,0.0274556,96.41845418],[4.5340125,0.02745733,96.41925842],[4.53401303,0.02745905,96.42006167],[4.53401356,0.02746077,96.42086393],[4.53401409,0.02746249,96.42166521],[4.53401463,0.02746422,96.4224655],[4.53401516,0.02746594,96.42326482],[4.53401569,0.02746766,96.42406317],[4.53401622,0.02746938,96.42486056],[4.53401676,0.0274711,96.42565699],[4.53401729,0.02747283,96.42645246],[4.53401782,0.02747455,96.42724699],[4.53401835,0.02747627,96.42804058],[4.53401889,0.02747799,96.42883322],[4.53401942,0.02747972,96.42962494],[4.53401995,0.02748144,96.43041573],[4.53402048,0.02748316,96.4312056],[4.53402102,0.02748488,96.43199455],[4.53402155,0.0274866,96.4327826],[4.53402208,0.02748833,96.43356974],[4.53402261,0.02749005,96.43435598],[4.53402315,0.02749177,96.43514132],[4.53402368,0.02749349,96.43592578],[4.53402421,0.02749522,96.43670936],[4.53402474,0.02749694,96.43749206],[4.53402528,0.02749866,96.43827388],[4.53402581,0.02750038,96.43905484],[4.53402634,0.02750211,96.43983494],[4.53402687,0.02750383,96.44061418],[4.5340274,0.02750555,96.44139257],[4.53402794,0.02750727,96.44217012],[4.53402847,0.027509,96.44294683],[4.534029,0.02751072,96.4437227],[4.53402953,0.02751244,96.44449775],[4.53403007,0.02751416,96.44527197],[4.5340306,0.02751588,96.44604537],[4.53403113,0.02751761,96.44681797],[4.53403166,0.02751933,96.44758975],[4.5340322,0.02752105,96.44836074],[4.53403273,0.02752277,96.44913093],[4.53403326,0.0275245,96.44990033],[4.53403379,0.02752622,96.45066894],[4.53403432,0.02752794,96.45143678],[4.53403486,0.02752966,96.45220384],[4.53403539,0.02753139,96.45297013],[4.53403592,0.02753311,96.45373566],[4.53403645,0.02753483,96.45450044],[4.53403699,0.02753655,96.45526446],[4.53403752,0.02753828,96.45602774],[4.53403805,0.02754,96.45679028],[4.53403858,0.02754172,96.45755208],[4.53403911,0.02754344,96.45831315],[4.53403965,0.02754516,96.4590735],[4.53404018,0.02754689,96.45983313],[4.53404071,0.02754861,96.46059205],[4.53404124,0.02755033,96.46135026],[4.53404178,0.02755205,96.46210777],[4.53404231,0.02755378,96.46286458],[4.53404284,0.0275555,96.4636207],[4.53404337,0.02755722,96.46437614],[4.5340439,0.02755894,96.4651309],[4.53404444,0.02756067,96.46588498],[4.53404497,0.02756239,96.4666384],[4.5340455,0.02756411,96.46739116],[4.53404603,0.02756583,96.46814325],[4.53404657,0.02756756,96.4688947],[4.5340471,0.02756928,96.4696455],[4.53404763,0.027571,96.47039566],[4.53404816,0.02757272,96.47114519],[4.5340487,0.02757444,96.47189409],[4.53404923,0.02757617,96.47264237],[4.53404976,0.02757789,96.47339003],[4.53405029,0.02757961,96.47413707],[4.53405082,0.02758133,96.47488351],[4.53405136,0.02758306,96.47562935],[4.53405189,0.02758478,96.4763746],[4.53405242,0.0275865,96.47711926],[4.53405295,0.02758822,96.47786333],[4.53405349,0.02758995,96.47860683],[4.53405402,0.02759167,96.47934976],[4.53405455,0.02759339,96.48009211],[4.53405508,0.02759511,96.48083391],[4.53405562,0.02759684,96.48157516],[4.53405615,0.02759856,96.48231585],[4.53405668,0.02760028,96.483056],[4.53405721,0.027602,96.48379562],[4.53405774,0.02760372,96.4845347],[4.53405828,0.02760545,96.48527326],[4.53405881,0.02760717,96.4860113],[4.53405934,0.02760889,96.48674882],[4.53405987,0.02761061,96.48748583],[4.53406041,0.02761234,96.48822234],[4.53406094,0.02761406,96.48895836],[4.53406147,0.02761578,96.48969388],[4.534062,0.0276175,96.49042892],[4.53406254,0.02761923,96.49116347],[4.53406307,0.02762095,96.49189756],[4.5340636,0.02762267,96.49263117],[4.53406413,0.02762439,96.49336432],[4.53406467,0.02762611,96.49409702],[4.5340652,0.02762784,96.49482927],[4.53406573,0.02762956,96.49556107],[4.53406626,0.02763128,96.49629243],[4.5340668,0.027633,96.49702336],[4.53406733,0.02763473,96.49775386],[4.53406786,0.02763645,96.49848394],[4.53406839,0.02763817,96.49921361],[4.53406893,0.02763989,96.49994286],[4.53406946,0.02764162,96.50067171],[4.53406999,0.02764334,96.50140016],[4.53407052,0.02764506,96.50212823],[4.53407106,0.02764678,96.5028559],[4.53407159,0.0276485,96.50358319],[4.53407212,0.02765023,96.50431012],[4.53407265,0.02765195,96.50503667],[4.53407319,0.02765367,96.50576286],[4.53407372,0.02765539,96.50648869],[4.53407425,0.02765712,96.50721417],[4.53407478,0.02765884,96.50793931],[4.53407532,0.02766056,96.50866411],[4.53407585,0.02766228,96.50938857],[4.53407638,0.02766401,96.51011271],[4.53407691,0.02766573,96.51083653],[4.53407745,0.02766745,96.51156003],[4.53407798,0.02766917,96.51228322],[4.53407851,0.02767089,96.51300611],[4.53407905,0.02767262,96.5137287],[4.53407958,0.02767434,96.514451],[4.53408011,0.02767606,96.51517302],[4.53408064,0.02767778,96.51589476],[4.53408118,0.02767951,96.51661622],[4.53408171,0.02768123,96.51733742],[4.53408224,0.02768295,96.51805835],[4.53408278,0.02768467,96.51877903],[4.53408331,0.02768639,96.51949946],[4.53408384,0.02768812,96.52021964],[4.53408437,0.02768984,96.52093958],[4.53408491,0.02769156,96.52165928],[4.53408544,0.02769328,96.52237875],[4.53408597,0.027695,96.523098],[4.53408651,0.02769673,96.52381702],[4.53408704,0.02769845,96.52453583],[4.53408757,0.02770017,96.52525442],[4.5340881,0.02770189,96.52597281],[4.53408864,0.02770362,96.526691],[4.53408917,0.02770534,96.52740898],[4.5340897,0.02770706,96.52812678],[4.53409024,0.02770878,96.52884438],[4.53409077,0.0277105,96.5295618],[4.5340913,0.02771223,96.53027905],[4.53409184,0.02771395,96.53099612],[4.53409237,0.02771567,96.53171302],[4.5340929,0.02771739,96.53242976],[4.53409344,0.02771911,96.53314634],[4.53409397,0.02772084,96.53386277],[4.5340945,0.02772256,96.53457904],[4.53409503,0.02772428,96.53529517],[4.53409557,0.027726,96.53601116],[4.5340961,0.02772773,96.53672701],[4.53409663,0.02772945,96.53744272],[4.53409717,0.02773117,96.5381583],[4.5340977,0.02773289,96.53887375],[4.53409823,0.02773461,96.53958908],[4.53409877,0.02773634,96.54030429],[4.5340993,0.02773806,96.54101938],[4.53409983,0.02773978,96.54173435],[4.53410037,0.0277415,96.54244922],[4.5341009,0.02774322,96.54316397],[4.53410143,0.02774495,96.54387863],[4.53410197,0.02774667,96.54459318],[4.5341025,0.02774839,96.54530764],[4.53410303,0.02775011,96.546022],[4.53410357,0.02775183,96.54673628],[4.5341041,0.02775356,96.54745046],[4.53410463,0.02775528,96.54816457],[4.53410517,0.027757,96.5488786],[4.5341057,0.02775872,96.54959255],[4.53410623,0.02776044,96.55030642],[4.53410677,0.02776217,96.55102023],[4.5341073,0.02776389,96.55173397],[4.53410783,0.02776561,96.55244766],[4.53410836,0.02776733,96.55316128],[4.5341089,0.02776906,96.55387484],[4.53410943,0.02777078,96.55458836],[4.53410996,0.0277725,96.55530183],[4.5341105,0.02777422,96.55601525],[4.53411103,0.02777594,96.55672863],[4.53411156,0.02777767,96.55744197],[4.5341121,0.02777939,96.55815528],[4.53411263,0.02778111,96.55886855],[4.53411316,0.02778283,96.5595818],[4.5341137,0.02778455,96.56029502],[4.53411423,0.02778628,96.56100822],[4.53411476,0.027788,96.56172141],[4.5341153,0.02778972,96.56243457],[4.53411583,0.02779144,96.56314773],[4.53411636,0.02779316,96.56386088],[4.5341169,0.02779489,96.56457402],[4.53411743,0.02779661,96.56528717],[4.53411796,0.02779833,96.56600031],[4.5341185,0.02780005,96.56671346],[4.53411903,0.02780177,96.56742662],[4.53411956,0.0278035,96.56813979],[4.5341201,0.02780522,96.56885298],[4.53412063,0.02780694,96.56956618],[4.53412116,0.02780866,96.57027941],[4.5341217,0.02781038,96.57099266],[4.53412223,0.02781211,96.57170594],[4.53412276,0.02781383,96.57241925],[4.5341233,0.02781555,96.57313259],[4.53412383,0.02781727,96.57384597],[4.53412436,0.027819,96.5745594],[4.53412489,0.02782072,96.57527286],[4.53412543,0.02782244,96.57598638],[4.53412596,0.02782416,96.57669995],[4.53412649,0.02782588,96.57741357],[4.53412703,0.02782761,96.57812724],[4.53412756,0.02782933,96.57884098],[4.53412809,0.02783105,96.57955478],[4.53412863,0.02783277,96.58026865],[4.53412916,0.02783449,96.58098259],[4.53412969,0.02783622,96.5816966],[4.53413023,0.02783794,96.58241069],[4.53413076,0.02783966,96.58312486],[4.53413129,0.02784138,96.5838391],[4.53413182,0.02784311,96.58455344],[4.53413236,0.02784483,96.58526786],[4.53413289,0.02784655,96.58598238],[4.53413342,0.02784827,96.58669699],[4.53413396,0.02784999,96.5874117],[4.53413449,0.02785172,96.58812651],[4.53413502,0.02785344,96.58884142],[4.53413556,0.02785516,96.58955644],[4.53413609,0.02785688,96.59027157],[4.53413662,0.0278586,96.59098682],[4.53413715,0.02786033,96.59170218],[4.53413769,0.02786205,96.59241766],[4.53413822,0.02786377,96.59313326],[4.53413875,0.02786549,96.59384899],[4.53413929,0.02786722,96.59456485],[4.53413982,0.02786894,96.59528084],[4.53414035,0.02787066,96.59599696],[4.53414088,0.02787238,96.59671322],[4.53414142,0.0278741,96.59742962],[4.53414195,0.02787583,96.59814617],[4.53414248,0.02787755,96.59886286],[4.53414302,0.02787927,96.5995797],[4.53414355,0.02788099,96.6002967],[4.53414408,0.02788272,96.60101385],[4.53414461,0.02788444,96.60173116],[4.53414515,0.02788616,96.60244863],[4.53414568,0.02788788,96.60316627],[4.53414621,0.02788961,96.60388407],[4.53414674,0.02789133,96.60460204],[4.53414728,0.02789305,96.60532019],[4.53414781,0.02789477,96.60603851],[4.53414834,0.02789649,96.60675701],[4.53414887,0.02789822,96.6074757],[4.53414941,0.02789994,96.60819457],[4.53414994,0.02790166,96.60891363],[4.53415047,0.02790338,96.60963287],[4.534151,0.02790511,96.61035231],[4.53415154,0.02790683,96.61107195],[4.53415207,0.02790855,96.61179179],[4.5341526,0.02791027,96.61251183],[4.53415313,0.027912,96.61323208],[4.53415367,0.02791372,96.61395253],[4.5341542,0.02791544,96.61467319],[4.53415473,0.02791716,96.61539407],[4.53415526,0.02791888,96.61611517],[4.53415579,0.02792061,96.61683648],[4.53415633,0.02792233,96.61755802],[4.53415686,0.02792405,96.61827978],[4.53415739,0.02792577,96.61900177],[4.53415792,0.0279275,96.61972399],[4.53415846,0.02792922,96.62044644],[4.53415899,0.02793094,96.62116913],[4.53415952,0.02793266,96.62189206],[4.53416005,0.02793439,96.62261523],[4.53416058,0.02793611,96.62333865],[4.53416112,0.02793783,96.62406231],[4.53416165,0.02793955,96.62478622],[4.53416218,0.02794128,96.62551039],[4.53416271,0.027943,96.62623481],[4.53416324,0.02794472,96.62695949],[4.53416377,0.02794644,96.62768444],[4.53416431,0.02794817,96.62840964],[4.53416484,0.02794989,96.62913512],[4.53416537,0.02795161,96.62986086],[4.5341659,0.02795333,96.63058688],[4.53416643,0.02795506,96.63131317],[4.53416696,0.02795678,96.63203974],[4.5341675,0.0279585,96.63276659],[4.53416803,0.02796022,96.63349372],[4.53416856,0.02796195,96.63422114],[4.53416909,0.02796367,96.63494885],[4.53416962,0.02796539,96.63567685],[4.53417015,0.02796712,96.63640515],[4.53417069,0.02796884,96.63713374],[4.53417122,0.02797056,96.63786263],[4.53417175,0.02797228,96.63859183],[4.53417228,0.02797401,96.63932133],[4.53417281,0.02797573,96.64005114],[4.53417334,0.02797745,96.64078126],[4.53417387,0.02797917,96.64151169],[4.5341744,0.0279809,96.64224244],[4.53417494,0.02798262,96.6429735],[4.53417547,0.02798434,96.64370489],[4.534176,0.02798607,96.64443661],[4.53417653,0.02798779,96.64516865],[4.53417706,0.02798951,96.64590101],[4.53417759,0.02799123,96.64663372],[4.53417812,0.02799296,96.64736675],[4.53417865,0.02799468,96.64810013],[4.53417918,0.0279964,96.64883384],[4.53417971,0.02799813,96.6495679],[4.53418024,0.02799985,96.65030231],[4.53418078,0.02800157,96.65103706],[4.53418131,0.02800329,96.65177217],[4.53418184,0.02800502,96.65250762],[4.53418237,0.02800674,96.65324344],[4.5341829,0.02800846,96.65397962],[4.53418343,0.02801019,96.65471616],[4.53418396,0.02801191,96.65545307],[4.53418449,0.02801363,96.65619036],[4.53418502,0.02801535,96.65692802],[4.53418555,0.02801708,96.65766607],[4.53418608,0.0280188,96.65840451],[4.53418661,0.02802052,96.65914334],[4.53418714,0.02802225,96.65988256],[4.53418767,0.02802397,96.66062219],[4.5341882,0.02802569,96.66136222],[4.53418873,0.02802742,96.66210266],[4.53418926,0.02802914,96.66284352],[4.53418979,0.02803086,96.66358479],[4.53419032,0.02803258,96.66432649],[4.53419085,0.02803431,96.66506862],[4.53419138,0.02803603,96.66581118],[4.53419191,0.02803775,96.66655417],[4.53419244,0.02803948,96.66729761],[4.53419297,0.0280412,96.6680415],[4.5341935,0.02804292,96.66878583],[4.53419403,0.02804465,96.66953062],[4.53419456,0.02804637,96.67027587],[4.53419509,0.02804809,96.67102158],[4.53419562,0.02804982,96.67176777],[4.53419615,0.02805154,96.67251442],[4.53419668,0.02805326,96.67326155],[4.53419721,0.02805499,96.67400917],[4.53419774,0.02805671,96.67475727],[4.53419827,0.02805843,96.67550587],[4.5341988,0.02806016,96.67625496],[4.53419933,0.02806188,96.67700455],[4.53419986,0.0280636,96.67775464],[4.53420039,0.02806533,96.67850525],[4.53420092,0.02806705,96.67925637],[4.53420145,0.02806877,96.68000801],[4.53420198,0.02807049,96.68076017],[4.5342025,0.02807222,96.68151287],[4.53420303,0.02807394,96.68226609],[4.53420356,0.02807566,96.68301985],[4.53420409,0.02807739,96.68377416],[4.53420462,0.02807911,96.68452901],[4.53420515,0.02808083,96.68528441],[4.53420568,0.02808256,96.68604037],[4.53420621,0.02808428,96.68679689],[4.53420674,0.02808601,96.68755398],[4.53420727,0.02808773,96.68831163],[4.5342078,0.02808945,96.68906986],[4.53420833,0.02809118,96.68982867],[4.53420885,0.0280929,96.69058806],[4.53420938,0.02809462,96.69134805],[4.53420991,0.02809635,96.69210862],[4.53421044,0.02809807,96.6928698],[4.53421097,0.02809979,96.69363157],[4.5342115,0.02810152,96.69439396],[4.53421203,0.02810324,96.69515695],[4.53421256,0.02810496,96.69592057],[4.53421309,0.02810669,96.6966848],[4.53421361,0.02810841,96.69744966],[4.53421414,0.02811013,96.69821515],[4.53421467,0.02811186,96.69898128],[4.5342152,0.02811358,96.69974805],[4.53421573,0.0281153,96.70051546],[4.53421626,0.02811703,96.70128353],[4.53421679,0.02811875,96.70205224],[4.53421732,0.02812047,96.70282162],[4.53421784,0.0281222,96.70359166],[4.53421837,0.02812392,96.70436237],[4.5342189,0.02812564,96.70513376],[4.53421943,0.02812737,96.70590582],[4.53421996,0.02812909,96.70667856],[4.53422049,0.02813082,96.70745199],[4.53422102,0.02813254,96.70822612],[4.53422154,0.02813426,96.70900094],[4.53422207,0.02813599,96.70977646],[4.5342226,0.02813771,96.71055269],[4.53422313,0.02813943,96.71132964],[4.53422366,0.02814116,96.71210729],[4.53422419,0.02814288,96.71288567],[4.53422471,0.0281446,96.71366478],[4.53422524,0.02814633,96.71444461],[4.53422577,0.02814805,96.71522518],[4.5342263,0.02814978,96.7160065],[4.53422683,0.0281515,96.71678855],[4.53422736,0.02815322,96.71757136],[4.53422788,0.02815495,96.71835492],[4.53422841,0.02815667,96.71913923],[4.53422894,0.02815839,96.71992432],[4.53422947,0.02816012,96.72071017],[4.53423,0.02816184,96.72149679],[4.53423053,0.02816356,96.72228419],[4.53423105,0.02816529,96.72307238],[4.53423158,0.02816701,96.72386135],[4.53423211,0.02816874,96.72465112],[4.53423264,0.02817046,96.72544168],[4.53423317,0.02817218,96.72623304],[4.53423369,0.02817391,96.72702521],[4.53423422,0.02817563,96.7278182],[4.53423475,0.02817735,96.728612],[4.53423528,0.02817908,96.72940662],[4.53423581,0.0281808,96.73020206],[4.53423633,0.02818252,96.73099834],[4.53423686,0.02818425,96.73179545],[4.53423739,0.02818597,96.7325934],[4.53423792,0.0281877,96.7333922],[4.53423845,0.02818942,96.73419184],[4.53423897,0.02819114,96.73499234],[4.5342395,0.02819287,96.7357937],[4.53424003,0.02819459,96.73659593],[4.53424056,0.02819631,96.73739902],[4.53424109,0.02819804,96.73820298],[4.53424161,0.02819976,96.73900783],[4.53424214,0.02820149,96.73981355],[4.53424267,0.02820321,96.74062017],[4.5342432,0.02820493,96.74142767],[4.53424373,0.02820666,96.74223608],[4.53424425,0.02820838,96.74304538],[4.53424478,0.0282101,96.74385559],[4.53424531,0.02821183,96.74466671],[4.53424584,0.02821355,96.74547875],[4.53424636,0.02821528,96.74629171],[4.53424689,0.028217,96.7471056],[4.53424742,0.02821872,96.74792041],[4.53424795,0.02822045,96.74873616],[4.53424847,0.02822217,96.74955285],[4.534249,0.02822389,96.75037048],[4.53424953,0.02822562,96.75118906],[4.53425006,0.02822734,96.7520086],[4.53421898,0.02823698,96.65767692]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":0,"sOffset":0.0}},{"geometry":{"coordinates":[[[4.53425006,0.02822734,96.7520086],[4.53424953,0.02822562,96.75118906],[4.534249,0.02822389,96.75037048],[4.53424847,0.02822217,96.74955285],[4.53424795,0.02822045,96.74873616],[4.53424742,0.02821872,96.74792041],[4.53424689,0.028217,96.7471056],[4.53424636,0.02821528,96.74629171],[4.53424584,0.02821355,96.74547875],[4.53424531,0.02821183,96.74466671],[4.53424478,0.0282101,96.74385559],[4.53424425,0.02820838,96.74304538],[4.53424373,0.02820666,96.74223608],[4.5342432,0.02820493,96.74142767],[4.53424267,0.02820321,96.74062017],[4.53424214,0.02820149,96.73981355],[4.53424161,0.02819976,96.73900783],[4.53424109,0.02819804,96.73820298],[4.53424056,0.02819631,96.73739902],[4.53424003,0.02819459,96.73659593],[4.5342395,0.02819287,96.7357937],[4.53423897,0.02819114,96.73499234],[4.53423845,0.02818942,96.73419184],[4.53423792,0.0281877,96.7333922],[4.53423739,0.02818597,96.7325934],[4.53423686,0.02818425,96.73179545],[4.53423633,0.02818252,96.73099834],[4.53423581,0.0281808,96.73020206],[4.53423528,0.02817908,96.72940662],[4.53423475,0.02817735,96.728612],[4.53423422,0.02817563,96.7278182],[4.53423369,0.02817391,96.72702521],[4.53423317,0.02817218,96.72623304],[4.53423264,0.02817046,96.72544168],[4.53423211,0.02816874,96.72465112],[4.53423158,0.02816701,96.72386135],[4.53423105,0.02816529,96.72307238],[4.53423053,0.02816356,96.72228419],[4.53423,0.02816184,96.72149679],[4.53422947,0.02816012,96.72071017],[4.53422894,0.02815839,96.71992432],[4.53422841,0.02815667,96.71913923],[4.53422788,0.02815495,96.71835492],[4.53422736,0.02815322,96.71757136],[4.53422683,0.0281515,96.71678855],[4.5342263,0.02814978,96.7160065],[4.53422577,0.02814805,96.71522518],[4.53422524,0.02814633,96.71444461],[4.53422471,0.0281446,96.71366478],[4.53422419,0.02814288,96.71288567],[4.53422366,0.02814116,96.71210729],[4.53422313,0.02813943,96.71132964],[4.5342226,0.02813771,96.71055269],[4.53422207,0.02813599,96.70977646],[4.53422154,0.02813426,96.70900094],[4.53422102,0.02813254,96.70822612],[4.53422049,0.02813082,96.70745199],[4.53421996,0.02812909,96.70667856],[4.53421943,0.02812737,96.70590582],[4.5342189,0.02812564,96.70513376],[4.53421837,0.02812392,96.70436237],[4.53421784,0.0281222,96.70359166],[4.53421732,0.02812047,96.70282162],[4.53421679,0.02811875,96.70205224],[4.53421626,0.02811703,96.70128353],[4.53421573,0.0281153,96.70051546],[4.5342152,0.02811358,96.69974805],[4.53421467,0.02811186,96.69898128],[4.53421414,0.02811013,96.69821515],[4.53421361,0.02810841,96.69744966],[4.53421309,0.02810669,96.6966848],[4.53421256,0.02810496,96.69592057],[4.53421203,0.02810324,96.69515695],[4.5342115,0.02810152,96.69439396],[4.53421097,0.02809979,96.69363157],[4.53421044,0.02809807,96.6928698],[4.53420991,0.02809635,96.69210862],[4.53420938,0.02809462,96.69134805],[4.53420885,0.0280929,96.69058806],[4.53420833,0.02809118,96.68982867],[4.5342078,0.02808945,96.68906986],[4.53420727,0.02808773,96.68831163],[4.53420674,0.02808601,96.68755398],[4.53420621,0.02808428,96.68679689],[4.53420568,0.02808256,96.68604037],[4.53420515,0.02808083,96.68528441],[4.53420462,0.02807911,96.68452901],[4.53420409,0.02807739,96.68377416],[4.53420356,0.02807566,96.68301985],[4.53420303,0.02807394,96.68226609],[4.5342025,0.02807222,96.68151287],[4.53420198,0.02807049,96.68076017],[4.53420145,0.02806877,96.68000801],[4.53420092,0.02806705,96.67925637],[4.53420039,0.02806533,96.67850525],[4.53419986,0.0280636,96.67775464],[4.53419933,0.02806188,96.67700455],[4.5341988,0.02806016,96.67625496],[4.53419827,0.02805843,96.67550587],[4.53419774,0.02805671,96.67475727],[4.53419721,0.02805499,96.67400917],[4.53419668,0.02805326,96.67326155],[4.53419615,0.02805154,96.67251442],[4.53419562,0.02804982,96.67176777],[4.53419509,0.02804809,96.67102158],[4.53419456,0.02804637,96.67027587],[4.53419403,0.02804465,96.66953062],[4.5341935,0.02804292,96.66878583],[4.53419297,0.0280412,96.6680415],[4.53419244,0.02803948,96.66729761],[4.53419191,0.02803775,96.66655417],[4.53419138,0.02803603,96.66581118],[4.53419085,0.02803431,96.66506862],[4.53419032,0.02803258,96.66432649],[4.53418979,0.02803086,96.66358479],[4.53418926,0.02802914,96.66284352],[4.53418873,0.02802742,96.66210266],[4.5341882,0.02802569,96.66136222],[4.53418767,0.02802397,96.66062219],[4.53418714,0.02802225,96.65988256],[4.53418661,0.02802052,96.65914334],[4.53418608,0.0280188,96.65840451],[4.53418555,0.02801708,96.65766607],[4.53418502,0.02801535,96.65692802],[4.53418449,0.02801363,96.65619036],[4.53418396,0.02801191,96.65545307],[4.53418343,0.02801019,96.65471616],[4.5341829,0.02800846,96.65397962],[4.53418237,0.02800674,96.65324344],[4.53418184,0.02800502,96.65250762],[4.53418131,0.02800329,96.65177217],[4.53418078,0.02800157,96.65103706],[4.53418024,0.02799985,96.65030231],[4.53417971,0.02799813,96.6495679],[4.53417918,0.0279964,96.64883384],[4.53417865,0.02799468,96.64810013],[4.53417812,0.02799296,96.64736675],[4.53417759,0.02799123,96.64663372],[4.53417706,0.02798951,96.64590101],[4.53417653,0.02798779,96.64516865],[4.534176,0.02798607,96.64443661],[4.53417547,0.02798434,96.64370489],[4.53417494,0.02798262,96.6429735],[4.5341744,0.0279809,96.64224244],[4.53417387,0.02797917,96.64151169],[4.53417334,0.02797745,96.64078126],[4.53417281,0.02797573,96.64005114],[4.53417228,0.02797401,96.63932133],[4.53417175,0.02797228,96.63859183],[4.53417122,0.02797056,96.63786263],[4.53417069,0.02796884,96.63713374],[4.53417015,0.02796712,96.63640515],[4.53416962,0.02796539,96.63567685],[4.53416909,0.02796367,96.63494885],[4.53416856,0.02796195,96.63422114],[4.53416803,0.02796022,96.63349372],[4.5341675,0.0279585,96.63276659],[4.53416696,0.02795678,96.63203974],[4.53416643,0.02795506,96.63131317],[4.5341659,0.02795333,96.63058688],[4.53416537,0.02795161,96.62986086],[4.53416484,0.02794989,96.62913512],[4.53416431,0.02794817,96.62840964],[4.53416377,0.02794644,96.62768444],[4.53416324,0.02794472,96.62695949],[4.53416271,0.027943,96.62623481],[4.53416218,0.02794128,96.62551039],[4.53416165,0.02793955,96.62478622],[4.53416112,0.02793783,96.62406231],[4.53416058,0.02793611,96.62333865],[4.53416005,0.02793439,96.62261523],[4.53415952,0.02793266,96.62189206],[4.53415899,0.02793094,96.62116913],[4.53415846,0.02792922,96.62044644],[4.53415792,0.0279275,96.61972399],[4.53415739,0.02792577,96.61900177],[4.53415686,0.02792405,96.61827978],[4.53415633,0.02792233,96.61755802],[4.53415579,0.02792061,96.61683648],[4.53415526,0.02791888,96.61611517],[4.53415473,0.02791716,96.61539407],[4.5341542,0.02791544,96.61467319],[4.53415367,0.02791372,96.61395253],[4.53415313,0.027912,96.61323208],[4.5341526,0.02791027,96.61251183],[4.53415207,0.02790855,96.61179179],[4.53415154,0.02790683,96.61107195],[4.534151,0.02790511,96.61035231],[4.53415047,0.02790338,96.60963287],[4.53414994,0.02790166,96.60891363],[4.53414941,0.02789994,96.60819457],[4.53414887,0.02789822,96.6074757],[4.53414834,0.02789649,96.60675701],[4.53414781,0.02789477,96.60603851],[4.53414728,0.02789305,96.60532019],[4.53414674,0.02789133,96.60460204],[4.53414621,0.02788961,96.60388407],[4.53414568,0.02788788,96.60316627],[4.53414515,0.02788616,96.60244863],[4.53414461,0.02788444,96.60173116],[4.53414408,0.02788272,96.60101385],[4.53414355,0.02788099,96.6002967],[4.53414302,0.02787927,96.5995797],[4.53414248,0.02787755,96.59886286],[4.53414195,0.02787583,96.59814617],[4.53414142,0.0278741,96.59742962],[4.53414088,0.02787238,96.59671322],[4.53414035,0.02787066,96.59599696],[4.53413982,0.02786894,96.59528084],[4.53413929,0.02786722,96.59456485],[4.53413875,0.02786549,96.59384899],[4.53413822,0.02786377,96.59313326],[4.53413769,0.02786205,96.59241766],[4.53413715,0.02786033,96.59170218],[4.53413662,0.0278586,96.59098682],[4.53413609,0.02785688,96.59027157],[4.53413556,0.02785516,96.58955644],[4.53413502,0.02785344,96.58884142],[4.53413449,0.02785172,96.58812651],[4.53413396,0.02784999,96.5874117],[4.53413342,0.02784827,96.58669699],[4.53413289,0.02784655,96.58598238],[4.53413236,0.02784483,96.58526786],[4.53413182,0.02784311,96.58455344],[4.53413129,0.02784138,96.5838391],[4.53413076,0.02783966,96.58312486],[4.53413023,0.02783794,96.58241069],[4.53412969,0.02783622,96.5816966],[4.53412916,0.02783449,96.58098259],[4.53412863,0.02783277,96.58026865],[4.53412809,0.02783105,96.57955478],[4.53412756,0.02782933,96.57884098],[4.53412703,0.02782761,96.57812724],[4.53412649,0.02782588,96.57741357],[4.53412596,0.02782416,96.57669995],[4.53412543,0.02782244,96.57598638],[4.53412489,0.02782072,96.57527286],[4.53412436,0.027819,96.5745594],[4.53412383,0.02781727,96.57384597],[4.5341233,0.02781555,96.57313259],[4.53412276,0.02781383,96.57241925],[4.53412223,0.02781211,96.57170594],[4.5341217,0.02781038,96.57099266],[4.53412116,0.02780866,96.57027941],[4.53412063,0.02780694,96.56956618],[4.5341201,0.02780522,96.56885298],[4.53411956,0.0278035,96.56813979],[4.53411903,0.02780177,96.56742662],[4.5341185,0.02780005,96.56671346],[4.53411796,0.02779833,96.56600031],[4.53411743,0.02779661,96.56528717],[4.5341169,0.02779489,96.56457402],[4.53411636,0.02779316,96.56386088],[4.53411583,0.02779144,96.56314773],[4.5341153,0.02778972,96.56243457],[4.53411476,0.027788,96.56172141],[4.53411423,0.02778628,96.56100822],[4.5341137,0.02778455,96.56029502],[4.53411316,0.02778283,96.5595818],[4.53411263,0.02778111,96.55886855],[4.5341121,0.02777939,96.55815528],[4.53411156,0.02777767,96.55744197],[4.53411103,0.02777594,96.55672863],[4.5341105,0.02777422,96.55601525],[4.53410996,0.0277725,96.55530183],[4.53410943,0.02777078,96.55458836],[4.5341089,0.02776906,96.55387484],[4.53410836,0.02776733,96.55316128],[4.53410783,0.02776561,96.55244766],[4.5341073,0.02776389,96.55173397],[4.53410677,0.02776217,96.55102023],[4.53410623,0.02776044,96.55030642],[4.5341057,0.02775872,96.54959255],[4.53410517,0.027757,96.5488786],[4.53410463,0.02775528,96.54816457],[4.5341041,0.02775356,96.54745046],[4.53410357,0.02775183,96.54673628],[4.53410303,0.02775011,96.546022],[4.5341025,0.02774839,96.54530764],[4.53410197,0.02774667,96.54459318],[4.53410143,0.02774495,96.54387863],[4.5341009,0.02774322,96.54316397],[4.53410037,0.0277415,96.54244922],[4.53409983,0.02773978,96.54173435],[4.5340993,0.02773806,96.54101938],[4.53409877,0.02773634,96.54030429],[4.53409823,0.02773461,96.53958908],[4.5340977,0.02773289,96.53887375],[4.53409717,0.02773117,96.5381583],[4.53409663,0.02772945,96.53744272],[4.5340961,0.02772773,96.53672701],[4.53409557,0.027726,96.53601116],[4.53409503,0.02772428,96.53529517],[4.5340945,0.02772256,96.53457904],[4.53409397,0.02772084,96.53386277],[4.53409344,0.02771911,96.53314634],[4.5340929,0.02771739,96.53242976],[4.53409237,0.02771567,96.53171302],[4.53409184,0.02771395,96.53099612],[4.5340913,0.02771223,96.53027905],[4.53409077,0.0277105,96.5295618],[4.53409024,0.02770878,96.52884438],[4.5340897,0.02770706,96.52812678],[4.53408917,0.02770534,96.52740898],[4.53408864,0.02770362,96.526691],[4.5340881,0.02770189,96.52597281],[4.53408757,0.02770017,96.52525442],[4.53408704,0.02769845,96.52453583],[4.53408651,0.02769673,96.52381702],[4.53408597,0.027695,96.523098],[4.53408544,0.02769328,96.52237875],[4.53408491,0.02769156,96.52165928],[4.53408437,0.02768984,96.52093958],[4.53408384,0.02768812,96.52021964],[4.53408331,0.02768639,96.51949946],[4.53408278,0.02768467,96.51877903],[4.53408224,0.02768295,96.51805835],[4.53408171,0.02768123,96.51733742],[4.53408118,0.02767951,96.51661622],[4.53408064,0.02767778,96.51589476],[4.53408011,0.02767606,96.51517302],[4.53407958,0.02767434,96.514451],[4.53407905,0.02767262,96.5137287],[4.53407851,0.02767089,96.51300611],[4.53407798,0.02766917,96.51228322],[4.53407745,0.02766745,96.51156003],[4.53407691,0.02766573,96.51083653],[4.53407638,0.02766401,96.51011271],[4.53407585,0.02766228,96.50938857],[4.53407532,0.02766056,96.50866411],[4.53407478,0.02765884,96.50793931],[4.53407425,0.02765712,96.50721417],[4.53407372,0.02765539,96.50648869],[4.53407319,0.02765367,96.50576286],[4.53407265,0.02765195,96.50503667],[4.53407212,0.02765023,96.50431012],[4.53407159,0.0276485,96.50358319],[4.53407106,0.02764678,96.5028559],[4.53407052,0.02764506,96.50212823],[4.53406999,0.02764334,96.50140016],[4.53406946,0.02764162,96.50067171],[4.53406893,0.02763989,96.49994286],[4.53406839,0.02763817,96.49921361],[4.53406786,0.02763645,96.49848394],[4.53406733,0.02763473,96.49775386],[4.5340668,0.027633,96.49702336],[4.53406626,0.02763128,96.49629243],[4.53406573,0.02762956,96.49556107],[4.5340652,0.02762784,96.49482927],[4.53406467,0.02762611,96.49409702],[4.53406413,0.02762439,96.49336432],[4.5340636,0.02762267,96.49263117],[4.53406307,0.02762095,96.49189756],[4.53406254,0.02761923,96.49116347],[4.534062,0.0276175,96.49042892],[4.53406147,0.02761578,96.48969388],[4.53406094,0.02761406,96.48895836],[4.53406041,0.02761234,96.48822234],[4.53405987,0.02761061,96.48748583],[4.53405934,0.02760889,96.48674882],[4.53405881,0.02760717,96.4860113],[4.53405828,0.02760545,96.48527326],[4.53405774,0.02760372,96.4845347],[4.53405721,0.027602,96.48379562],[4.53405668,0.02760028,96.483056],[4.53405615,0.02759856,96.48231585],[4.53405562,0.02759684,96.48157516],[4.53405508,0.02759511,96.48083391],[4.53405455,0.02759339,96.48009211],[4.53405402,0.02759167,96.47934976],[4.53405349,0.02758995,96.47860683],[4.53405295,0.02758822,96.47786333],[4.53405242,0.0275865,96.47711926],[4.53405189,0.02758478,96.4763746],[4.53405136,0.02758306,96.47562935],[4.53405082,0.02758133,96.47488351],[4.53405029,0.02757961,96.47413707],[4.53404976,0.02757789,96.47339003],[4.53404923,0.02757617,96.47264237],[4.5340487,0.02757444,96.47189409],[4.53404816,0.02757272,96.47114519],[4.53404763,0.027571,96.47039566],[4.5340471,0.02756928,96.4696455],[4.53404657,0.02756756,96.4688947],[4.53404603,0.02756583,96.46814325],[4.5340455,0.02756411,96.46739116],[4.53404497,0.02756239,96.4666384],[4.53404444,0.02756067,96.46588498],[4.5340439,0.02755894,96.4651309],[4.53404337,0.02755722,96.46437614],[4.53404284,0.0275555,96.4636207],[4.53404231,0.02755378,96.46286458],[4.53404178,0.02755205,96.46210777],[4.53404124,0.02755033,96.46135026],[4.53404071,0.02754861,96.46059205],[4.53404018,0.02754689,96.45983313],[4.53403965,0.02754516,96.4590735],[4.53403911,0.02754344,96.45831315],[4.53403858,0.02754172,96.45755208],[4.53403805,0.02754,96.45679028],[4.53403752,0.02753828,96.45602774],[4.53403699,0.02753655,96.45526446],[4.53403645,0.02753483,96.45450044],[4.53403592,0.02753311,96.45373566],[4.53403539,0.02753139,96.45297013],[4.53403486,0.02752966,96.45220384],[4.53403432,0.02752794,96.45143678],[4.53403379,0.02752622,96.45066894],[4.53403326,0.0275245,96.44990033],[4.53403273,0.02752277,96.44913093],[4.5340322,0.02752105,96.44836074],[4.53403166,0.02751933,96.44758975],[4.53403113,0.02751761,96.44681797],[4.5340306,0.02751588,96.44604537],[4.53403007,0.02751416,96.44527197],[4.53402953,0.02751244,96.44449775],[4.534029,0.02751072,96.4437227],[4.53402847,0.027509,96.44294683],[4.53402794,0.02750727,96.44217012],[4.5340274,0.02750555,96.44139257],[4.53402687,0.02750383,96.44061418],[4.53402634,0.02750211,96.43983494],[4.53402581,0.02750038,96.43905484],[4.53402528,0.02749866,96.43827388],[4.53402474,0.02749694,96.43749206],[4.53402421,0.02749522,96.43670936],[4.53402368,0.02749349,96.43592578],[4.53402315,0.02749177,96.43514132],[4.53402261,0.02749005,96.43435598],[4.53402208,0.02748833,96.43356974],[4.53402155,0.0274866,96.4327826],[4.53402102,0.02748488,96.43199455],[4.53402048,0.02748316,96.4312056],[4.53401995,0.02748144,96.43041573],[4.53401942,0.02747972,96.42962494],[4.53401889,0.02747799,96.42883322],[4.53401835,0.02747627,96.42804058],[4.53401782,0.02747455,96.42724699],[4.53401729,0.02747283,96.42645246],[4.53401676,0.0274711,96.42565699],[4.53401622,0.02746938,96.42486056],[4.53401569,0.02746766,96.42406317],[4.53401516,0.02746594,96.42326482],[4.53401463,0.02746422,96.4224655],[4.53401409,0.02746249,96.42166521],[4.53401356,0.02746077,96.42086393],[4.53401303,0.02745905,96.42006167],[4.5340125,0.02745733,96.41925842],[4.53401196,0.0274556,96.41845418],[4.53401143,0.02745388,96.41764893],[4.5340109,0.02745216,96.41684267],[4.53401037,0.02745044,96.4160354],[4.53400983,0.02744871,96.41522712],[4.5340093,0.02744699,96.41441781],[4.53400877,0.02744527,96.41360747],[4.53400824,0.02744355,96.4127961],[4.5340077,0.02744183,96.41198369],[4.53400717,0.0274401,96.41117024],[4.53400664,0.02743838,96.41035574],[4.53400611,0.02743666,96.40954018],[4.53400557,0.02743494,96.40872356],[4.53400504,0.02743321,96.40790587],[4.53400451,0.02743149,96.40708712],[4.53400398,0.02742977,96.40626728],[4.53400344,0.02742805,96.40544637],[4.53400291,0.02742633,96.40462437],[4.53400238,0.0274246,96.40380127],[4.53400184,0.02742288,96.40297708],[4.53400131,0.02742116,96.40215179],[4.53400078,0.02741944,96.40132538],[4.53400025,0.02741771,96.40049786],[4.53399971,0.02741599,96.39966923],[4.53399918,0.02741427,96.39883946],[4.53399865,0.02741255,96.39800857],[4.53399811,0.02741083,96.39717654],[4.53399758,0.0274091,96.39634338],[4.53399705,0.02740738,96.39550906],[4.53399652,0.02740566,96.3946736],[4.53399598,0.02740394,96.39383697],[4.53399545,0.02740222,96.39299919],[4.53399492,0.02740049,96.39216024],[4.53399438,0.02739877,96.39132011],[4.53399385,0.02739705,96.39047881],[4.53399332,0.02739533,96.38963633],[4.53399278,0.0273936,96.38879266],[4.53399225,0.02739188,96.3879478],[4.53399172,0.02739016,96.38710175],[4.53399119,0.02738844,96.38625449],[4.53399065,0.02738672,96.38540602],[4.53399012,0.02738499,96.38455635],[4.53398959,0.02738327,96.38370546],[4.53398905,0.02738155,96.38285335],[4.53398852,0.02737983,96.38200006],[4.53398799,0.02737811,96.38114563],[4.53398745,0.02737638,96.38029009],[4.53398692,0.02737466,96.37943348],[4.53398639,0.02737294,96.37857584],[4.53398585,0.02737122,96.3777172],[4.53398532,0.0273695,96.37685761],[4.53398479,0.02736777,96.3759971],[4.53398425,0.02736605,96.37513571],[4.53398372,0.02736433,96.37427347],[4.53398319,0.02736261,96.37341044],[4.53398265,0.02736089,96.37254663],[4.53398212,0.02735916,96.3716821],[4.53398159,0.02735744,96.37081687],[4.53398105,0.02735572,96.36995099],[4.53398052,0.027354,96.36908449],[4.53397999,0.02735228,96.36821742],[4.53397945,0.02735055,96.3673498],[4.53397892,0.02734883,96.36648168],[4.53397839,0.02734711,96.3656131],[4.53397785,0.02734539,96.36474409],[4.53397732,0.02734367,96.36387469],[4.53397679,0.02734194,96.36300493],[4.53397625,0.02734022,96.36213486],[4.53397572,0.0273385,96.36126452],[4.53397518,0.02733678,96.36039393],[4.53397465,0.02733506,96.35952314],[4.53397412,0.02733333,96.35865219],[4.53397358,0.02733161,96.35778111],[4.53397305,0.02732989,96.35690994],[4.53397252,0.02732817,96.35603872],[4.53397198,0.02732645,96.35516749],[4.53397145,0.02732473,96.35429628],[4.53397092,0.027323,96.35342513],[4.53397038,0.02732128,96.35255407],[4.53396985,0.02731956,96.35168315],[4.53396931,0.02731784,96.35081241],[4.53396878,0.02731612,96.34994188],[4.53396825,0.02731439,96.34907159],[4.53396771,0.02731267,96.34820159],[4.53396718,0.02731095,96.34733191],[4.53396664,0.02730923,96.3464626],[4.53396611,0.02730751,96.34559368],[4.53396558,0.02730579,96.34472519],[4.53396504,0.02730406,96.34385718],[4.53396451,0.02730234,96.34298968],[4.53396398,0.02730062,96.34212272],[4.53396344,0.0272989,96.34125635],[4.53396291,0.02729718,96.3403906],[4.53396237,0.02729545,96.33952551],[4.53396184,0.02729373,96.33866112],[4.53396131,0.02729201,96.33779745],[4.53396077,0.02729029,96.33693456],[4.53396024,0.02728857,96.33607248],[4.5339597,0.02728685,96.33521125],[4.53395917,0.02728512,96.33435089],[4.53395863,0.0272834,96.33349146],[4.5339581,0.02728168,96.33263298],[4.53395757,0.02727996,96.3317755],[4.53395703,0.02727824,96.33091904],[4.5339565,0.02727652,96.33006366],[4.53395596,0.02727479,96.32920938],[4.53395543,0.02727307,96.32835625],[4.53395489,0.02727135,96.32750429],[4.53395436,0.02726963,96.32665355],[4.53395383,0.02726791,96.32580407],[4.53395329,0.02726618,96.32495588],[4.53395276,0.02726446,96.32410901],[4.53395222,0.02726274,96.32326351],[4.53395169,0.02726102,96.32241942],[4.53395115,0.0272593,96.32157676],[4.53395062,0.02725758,96.32073558],[4.53395009,0.02725586,96.31989591],[4.53394955,0.02725413,96.31905779],[4.53394902,0.02725241,96.31822126],[4.53394848,0.02725069,96.31738636],[4.53394795,0.02724897,96.31655312],[4.53394741,0.02724725,96.31572157],[4.53394688,0.02724553,96.31489176],[4.53394634,0.0272438,96.31406373],[4.53394581,0.02724208,96.3132375],[4.53394527,0.02724036,96.31241312],[4.53394474,0.02723864,96.31159062],[4.53394421,0.02723692,96.31077004],[4.53394367,0.0272352,96.30995142],[4.53394314,0.02723347,96.30913479],[4.5339426,0.02723175,96.30832019],[4.53394207,0.02723003,96.30750766],[4.53394153,0.02722831,96.30669724],[4.533941,0.02722659,96.30588895],[4.53394046,0.02722487,96.30508284],[4.53393993,0.02722314,96.30427895],[4.53393939,0.02722142,96.30347731],[4.53393886,0.0272197,96.30267796],[4.53393832,0.02721798,96.30188093],[4.53393779,0.02721626,96.30108626],[4.53393725,0.02721454,96.30029399],[4.53393672,0.02721282,96.29950416],[4.53393618,0.02721109,96.2987168],[4.53393565,0.02720937,96.29793195],[4.53393511,0.02720765,96.29714964],[4.53393458,0.02720593,96.29636991],[4.53393404,0.02720421,96.29559281],[4.53393351,0.02720249,96.29481835],[4.53393297,0.02720077,96.29404659],[4.53393244,0.02719904,96.29327756],[4.5339319,0.02719732,96.29251129],[4.53393137,0.0271956,96.29174783],[4.53393083,0.02719388,96.2909872],[4.5339303,0.02719216,96.29022945],[4.53392976,0.02719044,96.28947461],[4.53392923,0.02718872,96.28872271],[4.53392869,0.02718699,96.2879738],[4.53392816,0.02718527,96.28722787],[4.53392762,0.02718355,96.28648488],[4.53392709,0.02718183,96.28574478],[4.53392655,0.02718011,96.28500753],[4.53392602,0.02717839,96.28427308],[4.53392548,0.02717667,96.2835414],[4.53392494,0.02717494,96.28281244],[4.53392441,0.02717322,96.28208616],[4.53392387,0.0271715,96.28136251],[4.53392334,0.02716978,96.28064145],[4.5339228,0.02716806,96.27992294],[4.53392227,0.02716634,96.27920693],[4.53392173,0.02716462,96.27849338],[4.5339212,0.0271629,96.27778224],[4.53392066,0.02716117,96.27707348],[4.53392013,0.02715945,96.27636705],[4.53391959,0.02715773,96.2756629],[4.53391905,0.02715601,96.274961],[4.53391852,0.02715429,96.27426129],[4.53391798,0.02715257,96.27356375],[4.53391745,0.02715085,96.27286831],[4.53391691,0.02714913,96.27217495],[4.53391638,0.0271474,96.27148361],[4.53391584,0.02714568,96.27079426],[4.5339153,0.02714396,96.27010685],[4.53391477,0.02714224,96.26942133],[4.53391423,0.02714052,96.26873767],[4.5339137,0.0271388,96.26805582],[4.53391316,0.02713708,96.26737573],[4.53391263,0.02713536,96.26669738],[4.53391209,0.02713363,96.2660207],[4.53391155,0.02713191,96.26534566],[4.53391102,0.02713019,96.26467222],[4.53391048,0.02712847,96.26400032],[4.53390995,0.02712675,96.26332994],[4.53390941,0.02712503,96.26266103],[4.53390887,0.02712331,96.26199353],[4.53390834,0.02712159,96.26132742],[4.5339078,0.02711987,96.26066264],[4.53390727,0.02711814,96.25999916],[4.53390673,0.02711642,96.25933693],[4.53390619,0.0271147,96.25867591],[4.53390566,0.02711298,96.25801605],[4.53390512,0.02711126,96.25735732],[4.53390459,0.02710954,96.25669966],[4.53390405,0.02710782,96.25604304],[4.53390351,0.0271061,96.25538742],[4.53390298,0.02710438,96.25473274],[4.53390244,0.02710265,96.25407897],[4.5339019,0.02710093,96.25342607],[4.53390137,0.02709921,96.25277399],[4.53390083,0.02709749,96.25212269],[4.5339003,0.02709577,96.25147212],[4.53389976,0.02709405,96.25082225],[4.53389922,0.02709233,96.25017303],[4.53389869,0.02709061,96.24952442],[4.53389815,0.02708889,96.24887637],[4.53389761,0.02708716,96.24822885],[4.53389708,0.02708544,96.24758181],[4.53389654,0.02708372,96.2469352],[4.533896,0.027082,96.24628899],[4.53389547,0.02708028,96.24564312],[4.53389493,0.02707856,96.24499757],[4.53389439,0.02707684,96.24435229],[4.53389386,0.02707512,96.24370723],[4.53389332,0.0270734,96.24306235],[4.53389278,0.02707168,96.2424176],[4.53389225,0.02706995,96.24177296],[4.53389171,0.02706823,96.24112837],[4.53389117,0.02706651,96.24048378],[4.53389064,0.02706479,96.23983917],[4.5338901,0.02706307,96.23919448],[4.53388956,0.02706135,96.23854968],[4.53388903,0.02705963,96.23790471],[4.53388849,0.02705791,96.23725955],[4.53388795,0.02705619,96.23661414],[4.53388742,0.02705447,96.23596844],[4.53388688,0.02705275,96.23532241],[4.53388634,0.02705102,96.23467601],[4.53388581,0.0270493,96.2340292],[4.53388527,0.02704758,96.23338193],[4.53388473,0.02704586,96.23273416],[4.5338842,0.02704414,96.23208585],[4.53388366,0.02704242,96.23143696],[4.53388312,0.0270407,96.23078744],[4.53388259,0.02703898,96.23013725],[4.53388205,0.02703726,96.22948635],[4.53388151,0.02703554,96.2288347],[4.53388097,0.02703382,96.22818225],[4.53388044,0.0270321,96.22752896],[4.5338799,0.02703037,96.2268748],[4.53387936,0.02702865,96.22621971],[4.53387883,0.02702693,96.22556366],[4.53387829,0.02702521,96.2249066],[4.53387775,0.02702349,96.22424849],[4.53387721,0.02702177,96.22358929],[4.53387668,0.02702005,96.22292895],[4.53387614,0.02701833,96.22226744],[4.5338756,0.02701661,96.22160471],[4.53387507,0.02701489,96.22094072],[4.53387453,0.02701317,96.22027543],[4.53387399,0.02701145,96.2196088],[4.53387345,0.02700973,96.21894078],[4.53387292,0.02700801,96.21827133],[4.53387238,0.02700628,96.21760041],[4.53387184,0.02700456,96.21692797],[4.5338713,0.02700284,96.21625399],[4.53387077,0.02700112,96.2155784],[4.53387023,0.0269994,96.21490118],[4.53386969,0.02699768,96.21422227],[4.53386915,0.02699596,96.21354165],[4.53386862,0.02699424,96.21285925],[4.53386808,0.02699252,96.21217505],[4.53386754,0.0269908,96.21148901],[4.533867,0.02698908,96.21080107],[4.53386647,0.02698736,96.2101112],[4.53386593,0.02698564,96.20941935],[4.53386539,0.02698392,96.20872549],[4.53386485,0.0269822,96.20802957],[4.53386431,0.02698048,96.20733155],[4.53386378,0.02697875,96.20663138],[4.53386324,0.02697703,96.20592904],[4.5338627,0.02697531,96.20522446],[4.53386216,0.02697359,96.20451762],[4.53386163,0.02697187,96.20380847],[4.53386109,0.02697015,96.20309697],[4.53386055,0.02696843,96.20238308],[4.53386001,0.02696671,96.20166675],[4.53385948,0.02696499,96.20094794],[4.53385894,0.02696327,96.20022662],[4.5338584,0.02696155,96.19950273],[4.53385786,0.02695983,96.19877625],[4.53385732,0.02695811,96.19804712],[4.53385679,0.02695639,96.19731531],[4.53385625,0.02695467,96.19658077],[4.53385571,0.02695295,96.19584346],[4.53385517,0.02695123,96.19510334],[4.53385463,0.02694951,96.19436037],[4.5338541,0.02694779,96.19361451],[4.53385356,0.02694607,96.19286571],[4.53385302,0.02694435,96.19211398],[4.53385248,0.02694263,96.19135935],[4.53385194,0.02694091,96.19060185],[4.5338514,0.02693919,96.18984152],[4.53385087,0.02693747,96.18907839],[4.53385033,0.02693575,96.18831251],[4.53384979,0.02693403,96.1875439],[4.53384925,0.02693231,96.1867726],[4.53384871,0.02693059,96.18599865],[4.53384817,0.02692887,96.18522209],[4.53384764,0.02692714,96.18444294],[4.5338471,0.02692542,96.18366125],[4.53384656,0.0269237,96.18287704],[4.53384602,0.02692198,96.18209037],[4.53384548,0.02692026,96.18130125],[4.53384494,0.02691854,96.18050973],[4.53384441,0.02691682,96.17971584],[4.53384387,0.0269151,96.17891962],[4.53384333,0.02691338,96.1781211],[4.53384279,0.02691166,96.17732032],[4.53384225,0.02690994,96.17651731],[4.53384171,0.02690822,96.17571211],[4.53384117,0.0269065,96.17490476],[4.53384063,0.02690478,96.17409528],[4.5338401,0.02690306,96.17328371],[4.53383956,0.02690134,96.1724701],[4.53383902,0.02689962,96.17165447],[4.53383848,0.0268979,96.17083685],[4.53383794,0.02689618,96.17001729],[4.5338374,0.02689446,96.16919581],[4.53383686,0.02689274,96.16837246],[4.53383632,0.02689102,96.16754726],[4.53383579,0.0268893,96.16672026],[4.53383525,0.02688758,96.16589148],[4.53383471,0.02688586,96.16506097],[4.53383417,0.02688414,96.16422874],[4.53383363,0.02688242,96.16339485],[4.53383309,0.0268807,96.16255933],[4.53383255,0.02687898,96.16172221],[4.53383201,0.02687726,96.16088352],[4.53383147,0.02687554,96.1600433],[4.53383093,0.02687382,96.15920158],[4.5338304,0.0268721,96.1583584],[4.53382986,0.02687038,96.1575138],[4.53382932,0.02686866,96.1566678],[4.53382878,0.02686694,96.15582044],[4.53382824,0.02686522,96.15497176],[4.5338277,0.0268635,96.15412179],[4.53382716,0.02686178,96.15327057],[4.53382662,0.02686006,96.15241813],[4.53382608,0.02685834,96.1515645],[4.53382554,0.02685662,96.15070972],[4.533825,0.0268549,96.14985383],[4.53382446,0.02685318,96.14899685],[4.53382392,0.02685146,96.14813882],[4.53382338,0.02684974,96.14727978],[4.53382285,0.02684802,96.14641976],[4.53382231,0.0268463,96.1455588],[4.53382177,0.02684458,96.14469692],[4.53382123,0.02684286,96.14383417],[4.53382069,0.02684114,96.14297058],[4.53382015,0.02683942,96.14210617],[4.53381961,0.0268377,96.141241],[4.53381907,0.02683598,96.14037508],[4.53381853,0.02683426,96.13950846],[4.53381799,0.02683254,96.13864117],[4.53381745,0.02683082,96.13777324],[4.53381691,0.0268291,96.1369047],[4.53381637,0.02682738,96.1360356],[4.53381583,0.02682566,96.13516596],[4.53381529,0.02682394,96.13429582],[4.53381475,0.02682222,96.13342522],[4.53381421,0.0268205,96.13255418],[4.53381367,0.02681878,96.13168274],[4.53381313,0.02681706,96.13081094],[4.53381259,0.02681534,96.1299388],[4.53381205,0.02681362,96.12906637],[4.53381151,0.0268119,96.12819368],[4.53381097,0.02681018,96.12732076],[4.53381043,0.02680846,96.12644764],[4.53380989,0.02680674,96.12557436],[4.53380935,0.02680502,96.12470095],[4.53380881,0.0268033,96.12382745],[4.53380827,0.02680158,96.12295389],[4.53380773,0.02679986,96.1220803],[4.53380719,0.02679814,96.12120672],[4.53380665,0.02679642,96.12033318],[4.53380611,0.0267947,96.11945972],[4.53380557,0.02679298,96.11858636],[4.53380503,0.02679126,96.11771315],[4.53380448,0.02678954,96.11684012],[4.53380394,0.02678782,96.11596729],[4.5338034,0.0267861,96.11509471],[4.53380286,0.02678438,96.11422241],[4.53380232,0.02678266,96.11335041],[4.53380178,0.02678094,96.11247876],[4.53380124,0.02677922,96.1116075],[4.5338007,0.0267775,96.11073664],[4.53380016,0.02677578,96.10986623],[4.53379962,0.02677406,96.1089963],[4.53379908,0.02677234,96.10812688],[4.53379854,0.02677063,96.107258],[4.533798,0.02676891,96.10638971],[4.53379745,0.02676719,96.10552203],[4.53379691,0.02676547,96.104655],[4.53379637,0.02676375,96.10378865],[4.53379583,0.02676203,96.10292302],[4.53379529,0.02676031,96.10205813],[4.53379475,0.02675859,96.10119402],[4.53379421,0.02675687,96.10033073],[4.53379367,0.02675515,96.09946829],[4.53379312,0.02675343,96.09860673],[4.53379258,0.02675171,96.09774609],[4.53379204,0.02674999,96.0968864],[4.5337915,0.02674827,96.09602768],[4.53379096,0.02674655,96.09516999],[4.53379042,0.02674483,96.09431334],[4.53378988,0.02674311,96.09345778],[4.53378933,0.02674139,96.09260334],[4.53378879,0.02673968,96.09175004],[4.53378825,0.02673796,96.09089793],[4.53378771,0.02673624,96.09004704],[4.53378717,0.02673452,96.0891974],[4.53378663,0.0267328,96.08834904],[4.53378608,0.02673108,96.08750201],[4.53378554,0.02672936,96.08665632],[4.533785,0.02672764,96.08581202],[4.53378446,0.02672592,96.08496913],[4.53378392,0.0267242,96.0841277],[4.53378337,0.02672248,96.08328776],[4.53378283,0.02672076,96.08244934],[4.53378229,0.02671904,96.08161246],[4.53378175,0.02671732,96.08077717],[4.53378121,0.02671561,96.07994345],[4.53378066,0.02671389,96.0791113],[4.53378012,0.02671217,96.0782807],[4.53377958,0.02671045,96.07745164],[4.53377904,0.02670873,96.07662411],[4.53377879,0.02670795,96.07624817],[4.53380924,0.02669821,96.17462261],[4.53380949,0.02669899,96.17493244],[4.53381003,0.02670071,96.17561234],[4.53381057,0.02670243,96.17629059],[4.53381112,0.02670415,96.17696719],[4.53381166,0.02670587,96.17764211],[4.5338122,0.02670759,96.17831535],[4.53381274,0.02670931,96.1789869],[4.53381329,0.02671103,96.17965676],[4.53381383,0.02671275,96.18032496],[4.53381437,0.02671447,96.18099153],[4.53381491,0.02671619,96.18165651],[4.53381546,0.02671791,96.18231993],[4.533816,0.02671963,96.18298183],[4.53381654,0.02672135,96.18364225],[4.53381708,0.02672307,96.18430122],[4.53381762,0.02672479,96.18495878],[4.53381817,0.0267265,96.18561497],[4.53381871,0.02672822,96.18626981],[4.53381925,0.02672994,96.18692335],[4.53381979,0.02673166,96.18757562],[4.53382033,0.02673338,96.18822666],[4.53382088,0.0267351,96.18887651],[4.53382142,0.02673682,96.18952519],[4.53382196,0.02673854,96.19017275],[4.5338225,0.02674026,96.19081922],[4.53382304,0.02674198,96.19146465],[4.53382359,0.0267437,96.19210905],[4.53382413,0.02674542,96.19275248],[4.53382467,0.02674714,96.19339496],[4.53382521,0.02674886,96.19403654],[4.53382575,0.02675058,96.19467724],[4.53382629,0.0267523,96.19531711],[4.53382683,0.02675402,96.19595618],[4.53382738,0.02675574,96.19659448],[4.53382792,0.02675746,96.19723206],[4.53382846,0.02675918,96.19786894],[4.533829,0.0267609,96.19850517],[4.53382954,0.02676262,96.19914078],[4.53383008,0.02676434,96.19977581],[4.53383062,0.02676606,96.20041029],[4.53383117,0.02676778,96.20104426],[4.53383171,0.0267695,96.20167775],[4.53383225,0.02677122,96.2023108],[4.53383279,0.02677294,96.20294345],[4.53383333,0.02677466,96.20357573],[4.53383387,0.02677638,96.20420768],[4.53383441,0.0267781,96.20483933],[4.53383495,0.02677982,96.20547073],[4.53383549,0.02678154,96.2061019],[4.53383603,0.02678326,96.20673288],[4.53383658,0.02678498,96.2073637],[4.53383712,0.0267867,96.20799442],[4.53383766,0.02678842,96.20862505],[4.5338382,0.02679014,96.20925563],[4.53383874,0.02679186,96.20988621],[4.53383928,0.02679358,96.21051681],[4.53383982,0.0267953,96.21114748],[4.53384036,0.02679702,96.21177824],[4.5338409,0.02679874,96.21240914],[4.53384144,0.02680046,96.21304021],[4.53384198,0.02680218,96.21367149],[4.53384252,0.0268039,96.214303],[4.53384306,0.02680562,96.2149348],[4.5338436,0.02680734,96.2155669],[4.53384414,0.02680906,96.21619936],[4.53384468,0.02681078,96.2168322],[4.53384522,0.0268125,96.21746545],[4.53384576,0.02681422,96.21809917],[4.5338463,0.02681594,96.21873337],[4.53384684,0.02681766,96.21936811],[4.53384738,0.02681938,96.2200034],[4.53384792,0.0268211,96.22063929],[4.53384847,0.02682282,96.22127582],[4.53384901,0.02682454,96.22191301],[4.53384955,0.02682626,96.22255091],[4.53385009,0.02682798,96.22318955],[4.53385063,0.0268297,96.22382897],[4.53385117,0.02683142,96.2244692],[4.53385171,0.02683314,96.22511027],[4.53385225,0.02683486,96.22575223],[4.53385279,0.02683658,96.2263951],[4.53385332,0.0268383,96.22703892],[4.53385386,0.02684002,96.22768374],[4.5338544,0.02684174,96.22832957],[4.53385494,0.02684346,96.22897647],[4.53385548,0.02684518,96.22962446],[4.53385602,0.0268469,96.23027358],[4.53385656,0.02684863,96.23092387],[4.5338571,0.02685035,96.23157535],[4.53385764,0.02685207,96.23222807],[4.53385818,0.02685379,96.23288206],[4.53385872,0.02685551,96.23353736],[4.53385926,0.02685723,96.234194],[4.5338598,0.02685895,96.23485202],[4.53386034,0.02686067,96.23551144],[4.53386088,0.02686239,96.23617232],[4.53386142,0.02686411,96.23683467],[4.53386196,0.02686583,96.23749855],[4.5338625,0.02686755,96.23816397],[4.53386304,0.02686927,96.23883098],[4.53386358,0.02687099,96.23949962],[4.53386412,0.02687271,96.24016991],[4.53386466,0.02687443,96.24084189],[4.53386519,0.02687615,96.2415156],[4.53386573,0.02687787,96.24219108],[4.53386627,0.02687959,96.24286835],[4.53386681,0.02688131,96.24354745],[4.53386735,0.02688303,96.24422843],[4.53386789,0.02688475,96.2449113],[4.53386843,0.02688648,96.24559611],[4.53386897,0.0268882,96.24628289],[4.53386951,0.02688992,96.24697168],[4.53387005,0.02689164,96.24766252],[4.53387059,0.02689336,96.24835543],[4.53387113,0.02689508,96.24905045],[4.53387166,0.0268968,96.24974762],[4.5338722,0.02689852,96.25044696],[4.53387274,0.02690024,96.25114853],[4.53387328,0.02690196,96.25185235],[4.53387382,0.02690368,96.25255845],[4.53387436,0.0269054,96.25326687],[4.5338749,0.02690712,96.25397765],[4.53387544,0.02690884,96.25469082],[4.53387598,0.02691056,96.25540641],[4.53387651,0.02691228,96.25612445],[4.53387705,0.02691401,96.25684499],[4.53387759,0.02691573,96.25756805],[4.53387813,0.02691745,96.25829368],[4.53387867,0.02691917,96.2590219],[4.53387921,0.02692089,96.25975274],[4.53387975,0.02692261,96.26048625],[4.53388029,0.02692433,96.26122246],[4.53388082,0.02692605,96.2619614],[4.53388136,0.02692777,96.2627031],[4.5338819,0.02692949,96.2634476],[4.53388244,0.02693121,96.26419493],[4.53388298,0.02693293,96.26494514],[4.53388352,0.02693465,96.26569824],[4.53388405,0.02693637,96.26645428],[4.53388459,0.0269381,96.26721328],[4.53388513,0.02693982,96.26797525],[4.53388567,0.02694154,96.26874015],[4.53388621,0.02694326,96.26950792],[4.53388675,0.02694498,96.27027853],[4.53388729,0.0269467,96.27105193],[4.53388782,0.02694842,96.27182809],[4.53388836,0.02695014,96.27260696],[4.5338889,0.02695186,96.27338849],[4.53388944,0.02695358,96.27417264],[4.53388998,0.0269553,96.27495938],[4.53389051,0.02695702,96.27574865],[4.53389105,0.02695874,96.27654042],[4.53389159,0.02696046,96.27733465],[4.53389213,0.02696218,96.27813128],[4.53389267,0.0269639,96.27893028],[4.5338932,0.02696562,96.27973161],[4.53389374,0.02696735,96.28053522],[4.53389428,0.02696907,96.28134107],[4.53389482,0.02697079,96.28214912],[4.53389536,0.02697251,96.28295932],[4.53389589,0.02697423,96.28377164],[4.53389643,0.02697595,96.28458602],[4.53389697,0.02697767,96.28540243],[4.53389751,0.02697939,96.28622083],[4.53389805,0.02698111,96.28704117],[4.53389858,0.02698283,96.28786342],[4.53389912,0.02698456,96.28868752],[4.53389966,0.02698628,96.28951343],[4.5339002,0.026988,96.29034112],[4.53390074,0.02698972,96.29117054],[4.53390127,0.02699144,96.29200164],[4.53390181,0.02699316,96.29283439],[4.53390235,0.02699488,96.29366875],[4.53390289,0.0269966,96.29450467],[4.53390342,0.02699832,96.2953421],[4.53390396,0.02700004,96.29618102],[4.5339045,0.02700177,96.29702136],[4.53390504,0.02700349,96.2978631],[4.53390557,0.02700521,96.29870619],[4.53390611,0.02700693,96.29955058],[4.53390665,0.02700865,96.30039624],[4.53390719,0.02701037,96.30124312],[4.53390772,0.02701209,96.30209119],[4.53390826,0.02701381,96.30294039],[4.5339088,0.02701553,96.30379068],[4.53390934,0.02701726,96.30464203],[4.53390987,0.02701898,96.3054944],[4.53391041,0.0270207,96.30634773],[4.53391095,0.02702242,96.30720199],[4.53391149,0.02702414,96.30805713],[4.53391202,0.02702586,96.30891312],[4.53391256,0.02702758,96.3097699],[4.5339131,0.0270293,96.31062745],[4.53391364,0.02703102,96.31148571],[4.53391417,0.02703275,96.31234465],[4.53391471,0.02703447,96.31320422],[4.53391525,0.02703619,96.31406438],[4.53391578,0.02703791,96.31492509],[4.53391632,0.02703963,96.3157863],[4.53391686,0.02704135,96.31664798],[4.5339174,0.02704307,96.31751008],[4.53391793,0.02704479,96.31837256],[4.53391847,0.02704652,96.31923538],[4.53391901,0.02704824,96.3200985],[4.53391954,0.02704996,96.32096187],[4.53392008,0.02705168,96.32182545],[4.53392062,0.0270534,96.3226892],[4.53392116,0.02705512,96.32355308],[4.53392169,0.02705684,96.32441705],[4.53392223,0.02705856,96.32528106],[4.53392277,0.02706029,96.32614508],[4.5339233,0.02706201,96.32700905],[4.53392384,0.02706373,96.32787295],[4.53392438,0.02706545,96.32873672],[4.53392491,0.02706717,96.32960032],[4.53392545,0.02706889,96.33046372],[4.53392599,0.02707061,96.33132687],[4.53392652,0.02707233,96.33218973],[4.53392706,0.02707406,96.33305226],[4.5339276,0.02707578,96.33391442],[4.53392813,0.0270775,96.33477616],[4.53392867,0.02707922,96.33563744],[4.53392921,0.02708094,96.33649822],[4.53392974,0.02708266,96.33735846],[4.53393028,0.02708438,96.33821812],[4.53393082,0.02708611,96.33907715],[4.53393135,0.02708783,96.33993552],[4.53393189,0.02708955,96.34079318],[4.53393243,0.02709127,96.3416501],[4.53393296,0.02709299,96.34250622],[4.5339335,0.02709471,96.3433615],[4.53393404,0.02709643,96.34421592],[4.53393457,0.02709816,96.34506941],[4.53393511,0.02709988,96.34592195],[4.53393565,0.0271016,96.34677349],[4.53393618,0.02710332,96.34762399],[4.53393672,0.02710504,96.34847341],[4.53393725,0.02710676,96.3493217],[4.53393779,0.02710848,96.35016883],[4.53393833,0.02711021,96.35101475],[4.53393886,0.02711193,96.35185942],[4.5339394,0.02711365,96.35270281],[4.53393994,0.02711537,96.35354486],[4.53394047,0.02711709,96.35438553],[4.53394101,0.02711881,96.3552248],[4.53394154,0.02712053,96.3560626],[4.53394208,0.02712226,96.35689891],[4.53394262,0.02712398,96.35773368],[4.53394315,0.0271257,96.35856687],[4.53394369,0.02712742,96.35939844],[4.53394422,0.02712914,96.36022834],[4.53394476,0.02713086,96.36105654],[4.5339453,0.02713258,96.361883],[4.53394583,0.02713431,96.36270766],[4.53394637,0.02713603,96.3635305],[4.53394691,0.02713775,96.36435147],[4.53394744,0.02713947,96.36517053],[4.53394798,0.02714119,96.36598763],[4.53394851,0.02714291,96.36680274],[4.53394905,0.02714464,96.36761581],[4.53394958,0.02714636,96.36842681],[4.53395012,0.02714808,96.36923569],[4.53395066,0.0271498,96.37004241],[4.53395119,0.02715152,96.37084693],[4.53395173,0.02715324,96.37164921],[4.53395226,0.02715497,96.3724492],[4.5339528,0.02715669,96.37324687],[4.53395334,0.02715841,96.37404218],[4.53395387,0.02716013,96.37483508],[4.53395441,0.02716185,96.37562553],[4.53395494,0.02716357,96.37641349],[4.53395548,0.02716529,96.37719892],[4.53395601,0.02716702,96.37798178],[4.53395655,0.02716874,96.37876203],[4.53395708,0.02717046,96.37953963],[4.53395762,0.02717218,96.38031453],[4.53395816,0.0271739,96.38108669],[4.53395869,0.02717562,96.38185608],[4.53395923,0.02717735,96.38262265],[4.53395976,0.02717907,96.38338636],[4.5339603,0.02718079,96.38414721],[4.53396083,0.02718251,96.38490524],[4.53396137,0.02718423,96.38566048],[4.5339619,0.02718596,96.38641297],[4.53396244,0.02718768,96.38716275],[4.53396298,0.0271894,96.38790985],[4.53396351,0.02719112,96.3886543],[4.53396405,0.02719284,96.38939616],[4.53396458,0.02719456,96.39013545],[4.53396512,0.02719629,96.39087221],[4.53396565,0.02719801,96.39160647],[4.53396619,0.02719973,96.39233828],[4.53396672,0.02720145,96.39306767],[4.53396726,0.02720317,96.39379468],[4.53396779,0.02720489,96.39451934],[4.53396833,0.02720662,96.39524169],[4.53396886,0.02720834,96.39596177],[4.5339694,0.02721006,96.39667961],[4.53396993,0.02721178,96.39739525],[4.53397047,0.0272135,96.39810873],[4.533971,0.02721523,96.39882008],[4.53397154,0.02721695,96.39952934],[4.53397207,0.02721867,96.40023655],[4.53397261,0.02722039,96.40094174],[4.53397314,0.02722211,96.40164495],[4.53397368,0.02722383,96.40234622],[4.53397421,0.02722556,96.40304559],[4.53397475,0.02722728,96.40374308],[4.53397528,0.027229,96.40443874],[4.53397582,0.02723072,96.4051326],[4.53397635,0.02723244,96.4058247],[4.53397689,0.02723417,96.40651508],[4.53397742,0.02723589,96.40720377],[4.53397796,0.02723761,96.4078908],[4.53397849,0.02723933,96.40857623],[4.53397903,0.02724105,96.40926007],[4.53397956,0.02724277,96.40994238],[4.5339801,0.0272445,96.41062318],[4.53398063,0.02724622,96.41130251],[4.53398117,0.02724794,96.4119804],[4.5339817,0.02724966,96.41265691],[4.53398224,0.02725138,96.41333205],[4.53398277,0.02725311,96.41400587],[4.53398331,0.02725483,96.4146784],[4.53398384,0.02725655,96.41534968],[4.53398438,0.02725827,96.41601975],[4.53398491,0.02725999,96.41668864],[4.53398545,0.02726172,96.41735639],[4.53398598,0.02726344,96.41802304],[4.53398651,0.02726516,96.41868862],[4.53398705,0.02726688,96.41935316],[4.53398758,0.0272686,96.42001671],[4.53398812,0.02727033,96.4206793],[4.53398865,0.02727205,96.42134096],[4.53398919,0.02727377,96.42200174],[4.53398972,0.02727549,96.42266167],[4.53399026,0.02727721,96.42332079],[4.53399079,0.02727894,96.42397912],[4.53399133,0.02728066,96.42463672],[4.53399186,0.02728238,96.42529361],[4.53399239,0.0272841,96.42594982],[4.53399293,0.02728582,96.42660541],[4.53399346,0.02728755,96.4272604],[4.533994,0.02728927,96.42791483],[4.53399453,0.02729099,96.42856873],[4.53399507,0.02729271,96.42922214],[4.5339956,0.02729443,96.42987511],[4.53399613,0.02729616,96.43052765],[4.53399667,0.02729788,96.43117982],[4.5339972,0.0272996,96.43183164],[4.53399774,0.02730132,96.43248316],[4.53399827,0.02730304,96.4331344],[4.53399881,0.02730477,96.43378541],[4.53399934,0.02730649,96.43443621],[4.53399987,0.02730821,96.43508686],[4.53400041,0.02730993,96.43573738],[4.53400094,0.02731166,96.4363878],[4.53400148,0.02731338,96.43703817],[4.53400201,0.0273151,96.43768852],[4.53400254,0.02731682,96.43833889],[4.53400308,0.02731854,96.43898931],[4.53400361,0.02732027,96.43963982],[4.53400415,0.02732199,96.44029046],[4.53400468,0.02732371,96.44094125],[4.53400521,0.02732543,96.44159225],[4.53400575,0.02732715,96.44224347],[4.53400628,0.02732888,96.44289497],[4.53400682,0.0273306,96.44354677],[4.53400735,0.02733232,96.44419891],[4.53400788,0.02733404,96.44485142],[4.53400842,0.02733577,96.44550435],[4.53400895,0.02733749,96.44615773],[4.53400948,0.02733921,96.44681159],[4.53401002,0.02734093,96.44746598],[4.53401055,0.02734265,96.44812091],[4.53401109,0.02734438,96.44877645],[4.53401162,0.0273461,96.4494326],[4.53401215,0.02734782,96.45008943],[4.53401269,0.02734954,96.45074695],[4.53401322,0.02735127,96.45140521],[4.53401375,0.02735299,96.45206423],[4.53401429,0.02735471,96.45272407],[4.53401482,0.02735643,96.45338475],[4.53401536,0.02735815,96.4540463],[4.53401589,0.02735988,96.45470878],[4.53401642,0.0273616,96.4553722],[4.53401696,0.02736332,96.45603661],[4.53401749,0.02736504,96.45670203],[4.53401802,0.02736677,96.45736852],[4.53401856,0.02736849,96.4580361],[4.53401909,0.02737021,96.45870481],[4.53401962,0.02737193,96.45937468],[4.53402016,0.02737365,96.46004576],[4.53402069,0.02737538,96.46071806],[4.53402122,0.0273771,96.46139159],[4.53402176,0.02737882,96.46206635],[4.53402229,0.02738054,96.46274233],[4.53402282,0.02738227,96.46341953],[4.53402336,0.02738399,96.46409793],[4.53402389,0.02738571,96.46477754],[4.53402442,0.02738743,96.46545835],[4.53402496,0.02738916,96.46614035],[4.53402549,0.02739088,96.46682354],[4.53402602,0.0273926,96.46750791],[4.53402656,0.02739432,96.46819346],[4.53402709,0.02739605,96.46888019],[4.53402762,0.02739777,96.46956808],[4.53402816,0.02739949,96.47025713],[4.53402869,0.02740121,96.47094735],[4.53402922,0.02740293,96.47163871],[4.53402976,0.02740466,96.47233123],[4.53403029,0.02740638,96.47302489],[4.53403082,0.0274081,96.47371968],[4.53403136,0.02740982,96.47441562],[4.53403189,0.02741155,96.47511268],[4.53403242,0.02741327,96.47581086],[4.53403296,0.02741499,96.47651017],[4.53403349,0.02741671,96.47721059],[4.53403402,0.02741844,96.47791211],[4.53403455,0.02742016,96.47861475],[4.53403509,0.02742188,96.47931848],[4.53403562,0.0274236,96.48002331],[4.53403615,0.02742533,96.48072923],[4.53403669,0.02742705,96.48143624],[4.53403722,0.02742877,96.48214432],[4.53403775,0.02743049,96.48285349],[4.53403829,0.02743222,96.48356372],[4.53403882,0.02743394,96.48427502],[4.53403935,0.02743566,96.48498738],[4.53403988,0.02743738,96.4857008],[4.53404042,0.02743911,96.48641527],[4.53404095,0.02744083,96.48713078],[4.53404148,0.02744255,96.48784734],[4.53404202,0.02744427,96.48856493],[4.53404255,0.027446,96.48928356],[4.53404308,0.02744772,96.49000322],[4.53404361,0.02744944,96.49072389],[4.53404415,0.02745116,96.49144559],[4.53404468,0.02745289,96.4921683],[4.53404521,0.02745461,96.49289202],[4.53404575,0.02745633,96.49361674],[4.53404628,0.02745805,96.49434246],[4.53404681,0.02745978,96.49506917],[4.53404734,0.0274615,96.49579687],[4.53404788,0.02746322,96.49652556],[4.53404841,0.02746494,96.49725522],[4.53404894,0.02746667,96.49798586],[4.53404947,0.02746839,96.49871747],[4.53405001,0.02747011,96.49945004],[4.53405054,0.02747183,96.50018358],[4.53405107,0.02747356,96.50091807],[4.53405161,0.02747528,96.50165351],[4.53405214,0.027477,96.50238989],[4.53405267,0.02747872,96.50312722],[4.5340532,0.02748045,96.50386548],[4.53405374,0.02748217,96.50460468],[4.53405427,0.02748389,96.5053448],[4.5340548,0.02748561,96.50608584],[4.53405533,0.02748734,96.5068278],[4.53405587,0.02748906,96.50757067],[4.5340564,0.02749078,96.50831445],[4.53405693,0.0274925,96.50905913],[4.53405746,0.02749423,96.50980471],[4.534058,0.02749595,96.51055118],[4.53405853,0.02749767,96.51129855],[4.53405906,0.02749939,96.51204679],[4.53405959,0.02750112,96.51279591],[4.53406013,0.02750284,96.51354591],[4.53406066,0.02750456,96.51429678],[4.53406119,0.02750628,96.51504851],[4.53406172,0.02750801,96.5158011],[4.53406226,0.02750973,96.51655455],[4.53406279,0.02751145,96.51730885],[4.53406332,0.02751318,96.51806399],[4.53406385,0.0275149,96.51881997],[4.53406439,0.02751662,96.51957679],[4.53406492,0.02751834,96.52033445],[4.53406545,0.02752007,96.52109293],[4.53406598,0.02752179,96.52185223],[4.53406652,0.02752351,96.52261235],[4.53406705,0.02752523,96.52337328],[4.53406758,0.02752696,96.52413502],[4.53406811,0.02752868,96.52489756],[4.53406865,0.0275304,96.5256609],[4.53406918,0.02753212,96.52642504],[4.53406971,0.02753385,96.52718997],[4.53407024,0.02753557,96.52795568],[4.53407078,0.02753729,96.52872217],[4.53407131,0.02753901,96.52948943],[4.53407184,0.02754074,96.53025747],[4.53407237,0.02754246,96.53102628],[4.53407291,0.02754418,96.53179584],[4.53407344,0.0275459,96.53256616],[4.53407397,0.02754763,96.53333724],[4.53407451,0.02754935,96.53410906],[4.53407504,0.02755107,96.53488162],[4.53407557,0.02755279,96.53565493],[4.5340761,0.02755452,96.53642897],[4.53407664,0.02755624,96.53720373],[4.53407717,0.02755796,96.53797922],[4.5340777,0.02755968,96.53875544],[4.53407823,0.02756141,96.53953236],[4.53407877,0.02756313,96.54031],[4.5340793,0.02756485,96.54108835],[4.53407983,0.02756657,96.54186739],[4.53408036,0.0275683,96.54264714],[4.5340809,0.02757002,96.54342757],[4.53408143,0.02757174,96.5442087],[4.53408196,0.02757347,96.54499051],[4.53408249,0.02757519,96.54577299],[4.53408303,0.02757691,96.54655616],[4.53408356,0.02757863,96.54733999],[4.53408409,0.02758036,96.54812449],[4.53408462,0.02758208,96.54890965],[4.53408516,0.0275838,96.54969546],[4.53408569,0.02758552,96.55048193],[4.53408622,0.02758725,96.55126904],[4.53408675,0.02758897,96.5520568],[4.53408729,0.02759069,96.5528452],[4.53408782,0.02759241,96.55363423],[4.53408835,0.02759414,96.55442389],[4.53408888,0.02759586,96.55521417],[4.53408942,0.02759758,96.55600508],[4.53408995,0.0275993,96.5567966],[4.53409048,0.02760103,96.55758873],[4.53409101,0.02760275,96.55838147],[4.53409155,0.02760447,96.55917481],[4.53409208,0.02760619,96.55996876],[4.53409261,0.02760792,96.56076329],[4.53409314,0.02760964,96.56155842],[4.53409368,0.02761136,96.56235413],[4.53409421,0.02761308,96.56315042],[4.53409474,0.02761481,96.56394728],[4.53409528,0.02761653,96.56474472],[4.53409581,0.02761825,96.56554273],[4.53409634,0.02761997,96.5663413],[4.53409687,0.0276217,96.56714043],[4.53409741,0.02762342,96.56794011],[4.53409794,0.02762514,96.56874034],[4.53409847,0.02762686,96.56954112],[4.534099,0.02762859,96.57034244],[4.53409954,0.02763031,96.5711443],[4.53410007,0.02763203,96.57194668],[4.5341006,0.02763375,96.5727496],[4.53410114,0.02763548,96.57355304],[4.53410167,0.0276372,96.574357],[4.5341022,0.02763892,96.57516148],[4.53410273,0.02764064,96.57596646],[4.53410327,0.02764237,96.57677195],[4.5341038,0.02764409,96.57757795],[4.53410433,0.02764581,96.57838444],[4.53410487,0.02764753,96.57919143],[4.5341054,0.02764926,96.5799989],[4.53410593,0.02765098,96.58080686],[4.53410646,0.0276527,96.5816153],[4.534107,0.02765442,96.58242422],[4.53410753,0.02765615,96.58323361],[4.53410806,0.02765787,96.58404346],[4.5341086,0.02765959,96.58485378],[4.53410913,0.02766131,96.58566456],[4.53410966,0.02766304,96.5864758],[4.5341102,0.02766476,96.58728748],[4.53411073,0.02766648,96.58809961],[4.53411126,0.0276682,96.58891219],[4.53411179,0.02766992,96.5897252],[4.53411233,0.02767165,96.59053864],[4.53411286,0.02767337,96.59135252],[4.53411339,0.02767509,96.59216682],[4.53411393,0.02767681,96.59298153],[4.53411446,0.02767854,96.59379667],[4.53411499,0.02768026,96.59461221],[4.53411553,0.02768198,96.59542815],[4.53411606,0.0276837,96.59624449],[4.53411659,0.02768543,96.59706123],[4.53411713,0.02768715,96.59787835],[4.53411766,0.02768887,96.59869585],[4.53411819,0.02769059,96.59951373],[4.53411873,0.02769232,96.60033198],[4.53411926,0.02769404,96.6011506],[4.53411979,0.02769576,96.60196957],[4.53412033,0.02769748,96.6027889],[4.53412086,0.0276992,96.60360858],[4.53412139,0.02770093,96.60442861],[4.53412192,0.02770265,96.60524897],[4.53412246,0.02770437,96.60606966],[4.53412299,0.02770609,96.60689069],[4.53412352,0.02770782,96.60771203],[4.53412406,0.02770954,96.60853369],[4.53412459,0.02771126,96.60935567],[4.53412512,0.02771298,96.61017795],[4.53412566,0.02771471,96.61100053],[4.53412619,0.02771643,96.6118234],[4.53412673,0.02771815,96.61264658],[4.53412726,0.02771987,96.61347004],[4.53412779,0.02772159,96.61429378],[4.53412833,0.02772332,96.61511781],[4.53412886,0.02772504,96.61594211],[4.53412939,0.02772676,96.61676668],[4.53412993,0.02772848,96.61759152],[4.53413046,0.02773021,96.61841662],[4.53413099,0.02773193,96.61924199],[4.53413153,0.02773365,96.6200676],[4.53413206,0.02773537,96.62089347],[4.53413259,0.02773709,96.62171959],[4.53413313,0.02773882,96.62254594],[4.53413366,0.02774054,96.62337253],[4.53413419,0.02774226,96.62419936],[4.53413473,0.02774398,96.62502641],[4.53413526,0.02774571,96.62585369],[4.53413579,0.02774743,96.62668119],[4.53413633,0.02774915,96.6275089],[4.53413686,0.02775087,96.62833683],[4.53413739,0.0277526,96.62916496],[4.53413793,0.02775432,96.6299933],[4.53413846,0.02775604,96.63082183],[4.53413899,0.02775776,96.63165056],[4.53413953,0.02775948,96.63247947],[4.53414006,0.02776121,96.63330857],[4.53414059,0.02776293,96.63413786],[4.53414113,0.02776465,96.63496731],[4.53414166,0.02776637,96.63579694],[4.5341422,0.0277681,96.63662674],[4.53414273,0.02776982,96.6374567],[4.53414326,0.02777154,96.63828682],[4.5341438,0.02777326,96.63911709],[4.53414433,0.02777498,96.63994752],[4.53414486,0.02777671,96.64077808],[4.5341454,0.02777843,96.64160879],[4.53414593,0.02778015,96.64243964],[4.53414646,0.02778187,96.64327061],[4.534147,0.0277836,96.64410172],[4.53414753,0.02778532,96.64493295],[4.53414806,0.02778704,96.64576429],[4.5341486,0.02778876,96.64659575],[4.53414913,0.02779048,96.64742732],[4.53414966,0.02779221,96.64825899],[4.5341502,0.02779393,96.64909077],[4.53415073,0.02779565,96.64992263],[4.53415126,0.02779737,96.6507546],[4.5341518,0.0277991,96.65158664],[4.53415233,0.02780082,96.65241877],[4.53415286,0.02780254,96.65325098],[4.5341534,0.02780426,96.65408326],[4.53415393,0.02780599,96.65491561],[4.53415446,0.02780771,96.65574802],[4.534155,0.02780943,96.65658049],[4.53415553,0.02781115,96.65741302],[4.53415606,0.02781287,96.6582456],[4.5341566,0.0278146,96.65907822],[4.53415713,0.02781632,96.65991088],[4.53415766,0.02781804,96.66074358],[4.5341582,0.02781976,96.66157632],[4.53415873,0.02782149,96.66240907],[4.53415926,0.02782321,96.66324186],[4.5341598,0.02782493,96.66407465],[4.53416033,0.02782665,96.66490747],[4.53416086,0.02782838,96.66574029],[4.5341614,0.0278301,96.66657311],[4.53416193,0.02783182,96.66740594],[4.53416246,0.02783354,96.66823875],[4.534163,0.02783526,96.66907156],[4.53416353,0.02783699,96.66990435],[4.53416406,0.02783871,96.67073713],[4.5341646,0.02784043,96.67156988],[4.53416513,0.02784215,96.6724026],[4.53416566,0.02784388,96.67323528],[4.5341662,0.0278456,96.67406793],[4.53416673,0.02784732,96.67490053],[4.53416726,0.02784904,96.67573309],[4.5341678,0.02785077,96.67656559],[4.53416833,0.02785249,96.67739804],[4.53416886,0.02785421,96.67823042],[4.5341694,0.02785593,96.67906274],[4.53416993,0.02785765,96.67989498],[4.53417046,0.02785938,96.68072715],[4.53417099,0.0278611,96.68155923],[4.53417153,0.02786282,96.68239123],[4.53417206,0.02786454,96.68322314],[4.53417259,0.02786627,96.68405496],[4.53417313,0.02786799,96.68488667],[4.53417366,0.02786971,96.68571828],[4.53417419,0.02787143,96.68654977],[4.53417472,0.02787316,96.68738115],[4.53417526,0.02787488,96.68821241],[4.53417579,0.0278766,96.68904355],[4.53417632,0.02787832,96.68987456],[4.53417686,0.02788005,96.69070543],[4.53417739,0.02788177,96.69153616],[4.53417792,0.02788349,96.69236675],[4.53417845,0.02788521,96.69319718],[4.53417899,0.02788694,96.69402747],[4.53417952,0.02788866,96.69485759],[4.53418005,0.02789038,96.69568755],[4.53418059,0.0278921,96.69651734],[4.53418112,0.02789383,96.69734696],[4.53418165,0.02789555,96.6981764],[4.53418218,0.02789727,96.69900566],[4.53418272,0.02789899,96.69983472],[4.53418325,0.02790072,96.7006636],[4.53418378,0.02790244,96.70149227],[4.53418431,0.02790416,96.70232074],[4.53418485,0.02790588,96.703149],[4.53418538,0.02790761,96.70397705],[4.53418591,0.02790933,96.70480488],[4.53418644,0.02791105,96.70563249],[4.53418698,0.02791277,96.70645987],[4.53418751,0.0279145,96.70728701],[4.53418804,0.02791622,96.70811392],[4.53418857,0.02791794,96.70894058],[4.53418911,0.02791966,96.70976699],[4.53418964,0.02792139,96.71059315],[4.53419017,0.02792311,96.71141906],[4.5341907,0.02792483,96.7122447],[4.53419123,0.02792656,96.71307007],[4.53419177,0.02792828,96.71389516],[4.5341923,0.02793,96.71471998],[4.53419283,0.02793172,96.71554452],[4.53419336,0.02793345,96.71636876],[4.5341939,0.02793517,96.71719272],[4.53419443,0.02793689,96.71801637],[4.53419496,0.02793861,96.71883972],[4.53419549,0.02794034,96.71966276],[4.53419602,0.02794206,96.72048549],[4.53419655,0.02794378,96.72130789],[4.53419709,0.0279455,96.72212998],[4.53419762,0.02794723,96.72295173],[4.53419815,0.02794895,96.72377315],[4.53419868,0.02795067,96.72459423],[4.53419921,0.0279524,96.72541497],[4.53419975,0.02795412,96.72623536],[4.53420028,0.02795584,96.72705539],[4.53420081,0.02795756,96.72787506],[4.53420134,0.02795929,96.72869437],[4.53420187,0.02796101,96.72951331],[4.5342024,0.02796273,96.73033187],[4.53420294,0.02796446,96.73115006],[4.53420347,0.02796618,96.73196785],[4.534204,0.0279679,96.73278526],[4.53420453,0.02796962,96.73360227],[4.53420506,0.02797135,96.73441889],[4.53420559,0.02797307,96.73523509],[4.53420612,0.02797479,96.73605089],[4.53420666,0.02797652,96.73686627],[4.53420719,0.02797824,96.73768122],[4.53420772,0.02797996,96.73849576],[4.53420825,0.02798168,96.73930986],[4.53420878,0.02798341,96.74012352],[4.53420931,0.02798513,96.74093674],[4.53420984,0.02798685,96.74174952],[4.53421037,0.02798858,96.74256185],[4.5342109,0.0279903,96.74337371],[4.53421144,0.02799202,96.74418512],[4.53421197,0.02799375,96.74499606],[4.5342125,0.02799547,96.74580652],[4.53421303,0.02799719,96.74661651],[4.53421356,0.02799891,96.74742602],[4.53421409,0.02800064,96.74823504],[4.53421462,0.02800236,96.74904358],[4.53421515,0.02800408,96.74985162],[4.53421568,0.02800581,96.75065918],[4.53421621,0.02800753,96.75146623],[4.53421674,0.02800925,96.75227278],[4.53421727,0.02801098,96.75307883],[4.5342178,0.0280127,96.75388437],[4.53421833,0.02801442,96.75468939],[4.53421886,0.02801615,96.75549391],[4.5342194,0.02801787,96.7562979],[4.53421993,0.02801959,96.75710138],[4.53422046,0.02802132,96.75790432],[4.53422099,0.02802304,96.75870675],[4.53422152,0.02802476,96.75950863],[4.53422205,0.02802649,96.76030999],[4.53422258,0.02802821,96.76111081],[4.53422311,0.02802993,96.76191108],[4.53422364,0.02803166,96.76271081],[4.53422417,0.02803338,96.76350999],[4.5342247,0.0280351,96.76430863],[4.53422523,0.02803683,96.7651067],[4.53422576,0.02803855,96.76590422],[4.53422629,0.02804027,96.76670118],[4.53422682,0.028042,96.76749757],[4.53422735,0.02804372,96.7682934],[4.53422788,0.02804544,96.76908865],[4.53422841,0.02804717,96.76988333],[4.53422894,0.02804889,96.77067743],[4.53422947,0.02805061,96.77147096],[4.53423,0.02805234,96.77226389],[4.53423053,0.02805406,96.77305624],[4.53423106,0.02805578,96.773848],[4.53423159,0.02805751,96.77463917],[4.53423211,0.02805923,96.77542974],[4.53423264,0.02806095,96.77621971],[4.53423317,0.02806268,96.77700907],[4.5342337,0.0280644,96.77779783],[4.53423423,0.02806612,96.77858598],[4.53423476,0.02806785,96.77937352],[4.53423529,0.02806957,96.78016044],[4.53423582,0.02807129,96.78094674],[4.53423635,0.02807302,96.78173242],[4.53423688,0.02807474,96.78251747],[4.53423741,0.02807646,96.78330189],[4.53423794,0.02807819,96.78408568],[4.53423847,0.02807991,96.78486884],[4.534239,0.02808163,96.78565136],[4.53423953,0.02808336,96.78643323],[4.53424006,0.02808508,96.78721446],[4.53424059,0.02808681,96.78799504],[4.53424111,0.02808853,96.78877498],[4.53424164,0.02809025,96.78955425],[4.53424217,0.02809198,96.79033287],[4.5342427,0.0280937,96.79111083],[4.53424323,0.02809542,96.79188812],[4.53424376,0.02809715,96.79266475],[4.53424429,0.02809887,96.79344071],[4.53424482,0.02810059,96.79421599],[4.53424535,0.02810232,96.7949906],[4.53424588,0.02810404,96.79576453],[4.53424641,0.02810577,96.79653778],[4.53424693,0.02810749,96.79731034],[4.53424746,0.02810921,96.79808221],[4.53424799,0.02811094,96.79885339],[4.53424852,0.02811266,96.79962387],[4.53424905,0.02811438,96.80039366],[4.53424958,0.02811611,96.80116275],[4.53425011,0.02811783,96.80193113],[4.53425064,0.02811955,96.8026988],[4.53425116,0.02812128,96.80346576],[4.53425169,0.028123,96.80423201],[4.53425222,0.02812473,96.80499755],[4.53425275,0.02812645,96.80576236],[4.53425328,0.02812817,96.80652645],[4.53425381,0.0281299,96.80728981],[4.53425434,0.02813162,96.80805245],[4.53425487,0.02813334,96.80881435],[4.53425539,0.02813507,96.80957551],[4.53425592,0.02813679,96.81033594],[4.53425645,0.02813852,96.81109563],[4.53425698,0.02814024,96.81185457],[4.53425751,0.02814196,96.81261277],[4.53425804,0.02814369,96.81337021],[4.53425857,0.02814541,96.8141269],[4.53425909,0.02814713,96.81488283],[4.53425962,0.02814886,96.81563801],[4.53426015,0.02815058,96.81639242],[4.53426068,0.02815231,96.81714606],[4.53426121,0.02815403,96.81789894],[4.53426174,0.02815575,96.81865104],[4.53426226,0.02815748,96.81940237],[4.53426279,0.0281592,96.82015292],[4.53426332,0.02816093,96.82090268],[4.53426385,0.02816265,96.82165166],[4.53426438,0.02816437,96.82239986],[4.53426491,0.0281661,96.82314726],[4.53426543,0.02816782,96.82389387],[4.53426596,0.02816955,96.82463969],[4.53426649,0.02817127,96.8253847],[4.53426702,0.02817299,96.82612891],[4.53426755,0.02817472,96.82687231],[4.53426808,0.02817644,96.82761491],[4.5342686,0.02817816,96.82835669],[4.53426913,0.02817989,96.82909766],[4.53426966,0.02818161,96.8298378],[4.53427019,0.02818334,96.83057713],[4.53427072,0.02818506,96.83131563],[4.53427125,0.02818678,96.8320533],[4.53427177,0.02818851,96.83279015],[4.5342723,0.02819023,96.83352615],[4.53427283,0.02819196,96.83426133],[4.53427336,0.02819368,96.83499566],[4.53427389,0.0281954,96.83572914],[4.53427441,0.02819713,96.83646178],[4.53427494,0.02819885,96.83719357],[4.53427547,0.02820058,96.83792451],[4.534276,0.0282023,96.83865459],[4.53427653,0.02820402,96.83938382],[4.53427705,0.02820575,96.84011218],[4.53427758,0.02820747,96.84083967],[4.53427811,0.0282092,96.8415663],[4.53427864,0.02821092,96.84229205],[4.53427917,0.02821264,96.84301693],[4.53427969,0.02821437,96.84374093],[4.53428022,0.02821609,96.84446406],[4.53428075,0.02821782,96.84518629],[4.53425006,0.02822734,96.7520086]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":0,"sOffset":0.0}},{"geometry":{"coordinates":[[[4.53428075,0.02821782,96.84518629],[4.53428022,0.02821609,96.84446406],[4.53427969,0.02821437,96.84374093],[4.53427917,0.02821264,96.84301693],[4.53427864,0.02821092,96.84229205],[4.53427811,0.0282092,96.8415663],[4.53427758,0.02820747,96.84083967],[4.53427705,0.02820575,96.84011218],[4.53427653,0.02820402,96.83938382],[4.534276,0.0282023,96.83865459],[4.53427547,0.02820058,96.83792451],[4.53427494,0.02819885,96.83719357],[4.53427441,0.02819713,96.83646178],[4.53427389,0.0281954,96.83572914],[4.53427336,0.02819368,96.83499566],[4.53427283,0.02819196,96.83426133],[4.5342723,0.02819023,96.83352615],[4.53427177,0.02818851,96.83279015],[4.53427125,0.02818678,96.8320533],[4.53427072,0.02818506,96.83131563],[4.53427019,0.02818334,96.83057713],[4.53426966,0.02818161,96.8298378],[4.53426913,0.02817989,96.82909766],[4.5342686,0.02817816,96.82835669],[4.53426808,0.02817644,96.82761491],[4.53426755,0.02817472,96.82687231],[4.53426702,0.02817299,96.82612891],[4.53426649,0.02817127,96.8253847],[4.53426596,0.02816955,96.82463969],[4.53426543,0.02816782,96.82389387],[4.53426491,0.0281661,96.82314726],[4.53426438,0.02816437,96.82239986],[4.53426385,0.02816265,96.82165166],[4.53426332,0.02816093,96.82090268],[4.53426279,0.0281592,96.82015292],[4.53426226,0.02815748,96.81940237],[4.53426174,0.02815575,96.81865104],[4.53426121,0.02815403,96.81789894],[4.53426068,0.02815231,96.81714606],[4.53426015,0.02815058,96.81639242],[4.53425962,0.02814886,96.81563801],[4.53425909,0.02814713,96.81488283],[4.53425857,0.02814541,96.8141269],[4.53425804,0.02814369,96.81337021],[4.53425751,0.02814196,96.81261277],[4.53425698,0.02814024,96.81185457],[4.53425645,0.02813852,96.81109563],[4.53425592,0.02813679,96.81033594],[4.53425539,0.02813507,96.80957551],[4.53425487,0.02813334,96.80881435],[4.53425434,0.02813162,96.80805245],[4.53425381,0.0281299,96.80728981],[4.53425328,0.02812817,96.80652645],[4.53425275,0.02812645,96.80576236],[4.53425222,0.02812473,96.80499755],[4.53425169,0.028123,96.80423201],[4.53425116,0.02812128,96.80346576],[4.53425064,0.02811955,96.8026988],[4.53425011,0.02811783,96.80193113],[4.53424958,0.02811611,96.80116275],[4.53424905,0.02811438,96.80039366],[4.53424852,0.02811266,96.79962387],[4.53424799,0.02811094,96.79885339],[4.53424746,0.02810921,96.79808221],[4.53424693,0.02810749,96.79731034],[4.53424641,0.02810577,96.79653778],[4.53424588,0.02810404,96.79576453],[4.53424535,0.02810232,96.7949906],[4.53424482,0.02810059,96.79421599],[4.53424429,0.02809887,96.79344071],[4.53424376,0.02809715,96.79266475],[4.53424323,0.02809542,96.79188812],[4.5342427,0.0280937,96.79111083],[4.53424217,0.02809198,96.79033287],[4.53424164,0.02809025,96.78955425],[4.53424111,0.02808853,96.78877498],[4.53424059,0.02808681,96.78799504],[4.53424006,0.02808508,96.78721446],[4.53423953,0.02808336,96.78643323],[4.534239,0.02808163,96.78565136],[4.53423847,0.02807991,96.78486884],[4.53423794,0.02807819,96.78408568],[4.53423741,0.02807646,96.78330189],[4.53423688,0.02807474,96.78251747],[4.53423635,0.02807302,96.78173242],[4.53423582,0.02807129,96.78094674],[4.53423529,0.02806957,96.78016044],[4.53423476,0.02806785,96.77937352],[4.53423423,0.02806612,96.77858598],[4.5342337,0.0280644,96.77779783],[4.53423317,0.02806268,96.77700907],[4.53423264,0.02806095,96.77621971],[4.53423211,0.02805923,96.77542974],[4.53423159,0.02805751,96.77463917],[4.53423106,0.02805578,96.773848],[4.53423053,0.02805406,96.77305624],[4.53423,0.02805234,96.77226389],[4.53422947,0.02805061,96.77147096],[4.53422894,0.02804889,96.77067743],[4.53422841,0.02804717,96.76988333],[4.53422788,0.02804544,96.76908865],[4.53422735,0.02804372,96.7682934],[4.53422682,0.028042,96.76749757],[4.53422629,0.02804027,96.76670118],[4.53422576,0.02803855,96.76590422],[4.53422523,0.02803683,96.7651067],[4.5342247,0.0280351,96.76430863],[4.53422417,0.02803338,96.76350999],[4.53422364,0.02803166,96.76271081],[4.53422311,0.02802993,96.76191108],[4.53422258,0.02802821,96.76111081],[4.53422205,0.02802649,96.76030999],[4.53422152,0.02802476,96.75950863],[4.53422099,0.02802304,96.75870675],[4.53422046,0.02802132,96.75790432],[4.53421993,0.02801959,96.75710138],[4.5342194,0.02801787,96.7562979],[4.53421886,0.02801615,96.75549391],[4.53421833,0.02801442,96.75468939],[4.5342178,0.0280127,96.75388437],[4.53421727,0.02801098,96.75307883],[4.53421674,0.02800925,96.75227278],[4.53421621,0.02800753,96.75146623],[4.53421568,0.02800581,96.75065918],[4.53421515,0.02800408,96.74985162],[4.53421462,0.02800236,96.74904358],[4.53421409,0.02800064,96.74823504],[4.53421356,0.02799891,96.74742602],[4.53421303,0.02799719,96.74661651],[4.5342125,0.02799547,96.74580652],[4.53421197,0.02799375,96.74499606],[4.53421144,0.02799202,96.74418512],[4.5342109,0.0279903,96.74337371],[4.53421037,0.02798858,96.74256185],[4.53420984,0.02798685,96.74174952],[4.53420931,0.02798513,96.74093674],[4.53420878,0.02798341,96.74012352],[4.53420825,0.02798168,96.73930986],[4.53420772,0.02797996,96.73849576],[4.53420719,0.02797824,96.73768122],[4.53420666,0.02797652,96.73686627],[4.53420612,0.02797479,96.73605089],[4.53420559,0.02797307,96.73523509],[4.53420506,0.02797135,96.73441889],[4.53420453,0.02796962,96.73360227],[4.534204,0.0279679,96.73278526],[4.53420347,0.02796618,96.73196785],[4.53420294,0.02796446,96.73115006],[4.5342024,0.02796273,96.73033187],[4.53420187,0.02796101,96.72951331],[4.53420134,0.02795929,96.72869437],[4.53420081,0.02795756,96.72787506],[4.53420028,0.02795584,96.72705539],[4.53419975,0.02795412,96.72623536],[4.53419921,0.0279524,96.72541497],[4.53419868,0.02795067,96.72459423],[4.53419815,0.02794895,96.72377315],[4.53419762,0.02794723,96.72295173],[4.53419709,0.0279455,96.72212998],[4.53419655,0.02794378,96.72130789],[4.53419602,0.02794206,96.72048549],[4.53419549,0.02794034,96.71966276],[4.53419496,0.02793861,96.71883972],[4.53419443,0.02793689,96.71801637],[4.5341939,0.02793517,96.71719272],[4.53419336,0.02793345,96.71636876],[4.53419283,0.02793172,96.71554452],[4.5341923,0.02793,96.71471998],[4.53419177,0.02792828,96.71389516],[4.53419123,0.02792656,96.71307007],[4.5341907,0.02792483,96.7122447],[4.53419017,0.02792311,96.71141906],[4.53418964,0.02792139,96.71059315],[4.53418911,0.02791966,96.70976699],[4.53418857,0.02791794,96.70894058],[4.53418804,0.02791622,96.70811392],[4.53418751,0.0279145,96.70728701],[4.53418698,0.02791277,96.70645987],[4.53418644,0.02791105,96.70563249],[4.53418591,0.02790933,96.70480488],[4.53418538,0.02790761,96.70397705],[4.53418485,0.02790588,96.703149],[4.53418431,0.02790416,96.70232074],[4.53418378,0.02790244,96.70149227],[4.53418325,0.02790072,96.7006636],[4.53418272,0.02789899,96.69983472],[4.53418218,0.02789727,96.69900566],[4.53418165,0.02789555,96.6981764],[4.53418112,0.02789383,96.69734696],[4.53418059,0.0278921,96.69651734],[4.53418005,0.02789038,96.69568755],[4.53417952,0.02788866,96.69485759],[4.53417899,0.02788694,96.69402747],[4.53417845,0.02788521,96.69319718],[4.53417792,0.02788349,96.69236675],[4.53417739,0.02788177,96.69153616],[4.53417686,0.02788005,96.69070543],[4.53417632,0.02787832,96.68987456],[4.53417579,0.0278766,96.68904355],[4.53417526,0.02787488,96.68821241],[4.53417472,0.02787316,96.68738115],[4.53417419,0.02787143,96.68654977],[4.53417366,0.02786971,96.68571828],[4.53417313,0.02786799,96.68488667],[4.53417259,0.02786627,96.68405496],[4.53417206,0.02786454,96.68322314],[4.53417153,0.02786282,96.68239123],[4.53417099,0.0278611,96.68155923],[4.53417046,0.02785938,96.68072715],[4.53416993,0.02785765,96.67989498],[4.5341694,0.02785593,96.67906274],[4.53416886,0.02785421,96.67823042],[4.53416833,0.02785249,96.67739804],[4.5341678,0.02785077,96.67656559],[4.53416726,0.02784904,96.67573309],[4.53416673,0.02784732,96.67490053],[4.5341662,0.0278456,96.67406793],[4.53416566,0.02784388,96.67323528],[4.53416513,0.02784215,96.6724026],[4.5341646,0.02784043,96.67156988],[4.53416406,0.02783871,96.67073713],[4.53416353,0.02783699,96.66990435],[4.534163,0.02783526,96.66907156],[4.53416246,0.02783354,96.66823875],[4.53416193,0.02783182,96.66740594],[4.5341614,0.0278301,96.66657311],[4.53416086,0.02782838,96.66574029],[4.53416033,0.02782665,96.66490747],[4.5341598,0.02782493,96.66407465],[4.53415926,0.02782321,96.66324186],[4.53415873,0.02782149,96.66240907],[4.5341582,0.02781976,96.66157632],[4.53415766,0.02781804,96.66074358],[4.53415713,0.02781632,96.65991088],[4.5341566,0.0278146,96.65907822],[4.53415606,0.02781287,96.6582456],[4.53415553,0.02781115,96.65741302],[4.534155,0.02780943,96.65658049],[4.53415446,0.02780771,96.65574802],[4.53415393,0.02780599,96.65491561],[4.5341534,0.02780426,96.65408326],[4.53415286,0.02780254,96.65325098],[4.53415233,0.02780082,96.65241877],[4.5341518,0.0277991,96.65158664],[4.53415126,0.02779737,96.6507546],[4.53415073,0.02779565,96.64992263],[4.5341502,0.02779393,96.64909077],[4.53414966,0.02779221,96.64825899],[4.53414913,0.02779048,96.64742732],[4.5341486,0.02778876,96.64659575],[4.53414806,0.02778704,96.64576429],[4.53414753,0.02778532,96.64493295],[4.534147,0.0277836,96.64410172],[4.53414646,0.02778187,96.64327061],[4.53414593,0.02778015,96.64243964],[4.5341454,0.02777843,96.64160879],[4.53414486,0.02777671,96.64077808],[4.53414433,0.02777498,96.63994752],[4.5341438,0.02777326,96.63911709],[4.53414326,0.02777154,96.63828682],[4.53414273,0.02776982,96.6374567],[4.5341422,0.0277681,96.63662674],[4.53414166,0.02776637,96.63579694],[4.53414113,0.02776465,96.63496731],[4.53414059,0.02776293,96.63413786],[4.53414006,0.02776121,96.63330857],[4.53413953,0.02775948,96.63247947],[4.53413899,0.02775776,96.63165056],[4.53413846,0.02775604,96.63082183],[4.53413793,0.02775432,96.6299933],[4.53413739,0.0277526,96.62916496],[4.53413686,0.02775087,96.62833683],[4.53413633,0.02774915,96.6275089],[4.53413579,0.02774743,96.62668119],[4.53413526,0.02774571,96.62585369],[4.53413473,0.02774398,96.62502641],[4.53413419,0.02774226,96.62419936],[4.53413366,0.02774054,96.62337253],[4.53413313,0.02773882,96.62254594],[4.53413259,0.02773709,96.62171959],[4.53413206,0.02773537,96.62089347],[4.53413153,0.02773365,96.6200676],[4.53413099,0.02773193,96.61924199],[4.53413046,0.02773021,96.61841662],[4.53412993,0.02772848,96.61759152],[4.53412939,0.02772676,96.61676668],[4.53412886,0.02772504,96.61594211],[4.53412833,0.02772332,96.61511781],[4.53412779,0.02772159,96.61429378],[4.53412726,0.02771987,96.61347004],[4.53412673,0.02771815,96.61264658],[4.53412619,0.02771643,96.6118234],[4.53412566,0.02771471,96.61100053],[4.53412512,0.02771298,96.61017795],[4.53412459,0.02771126,96.60935567],[4.53412406,0.02770954,96.60853369],[4.53412352,0.02770782,96.60771203],[4.53412299,0.02770609,96.60689069],[4.53412246,0.02770437,96.60606966],[4.53412192,0.02770265,96.60524897],[4.53412139,0.02770093,96.60442861],[4.53412086,0.0276992,96.60360858],[4.53412033,0.02769748,96.6027889],[4.53411979,0.02769576,96.60196957],[4.53411926,0.02769404,96.6011506],[4.53411873,0.02769232,96.60033198],[4.53411819,0.02769059,96.59951373],[4.53411766,0.02768887,96.59869585],[4.53411713,0.02768715,96.59787835],[4.53411659,0.02768543,96.59706123],[4.53411606,0.0276837,96.59624449],[4.53411553,0.02768198,96.59542815],[4.53411499,0.02768026,96.59461221],[4.53411446,0.02767854,96.59379667],[4.53411393,0.02767681,96.59298153],[4.53411339,0.02767509,96.59216682],[4.53411286,0.02767337,96.59135252],[4.53411233,0.02767165,96.59053864],[4.53411179,0.02766992,96.5897252],[4.53411126,0.0276682,96.58891219],[4.53411073,0.02766648,96.58809961],[4.5341102,0.02766476,96.58728748],[4.53410966,0.02766304,96.5864758],[4.53410913,0.02766131,96.58566456],[4.5341086,0.02765959,96.58485378],[4.53410806,0.02765787,96.58404346],[4.53410753,0.02765615,96.58323361],[4.534107,0.02765442,96.58242422],[4.53410646,0.0276527,96.5816153],[4.53410593,0.02765098,96.58080686],[4.5341054,0.02764926,96.5799989],[4.53410487,0.02764753,96.57919143],[4.53410433,0.02764581,96.57838444],[4.5341038,0.02764409,96.57757795],[4.53410327,0.02764237,96.57677195],[4.53410273,0.02764064,96.57596646],[4.5341022,0.02763892,96.57516148],[4.53410167,0.0276372,96.574357],[4.53410114,0.02763548,96.57355304],[4.5341006,0.02763375,96.5727496],[4.53410007,0.02763203,96.57194668],[4.53409954,0.02763031,96.5711443],[4.534099,0.02762859,96.57034244],[4.53409847,0.02762686,96.56954112],[4.53409794,0.02762514,96.56874034],[4.53409741,0.02762342,96.56794011],[4.53409687,0.0276217,96.56714043],[4.53409634,0.02761997,96.5663413],[4.53409581,0.02761825,96.56554273],[4.53409528,0.02761653,96.56474472],[4.53409474,0.02761481,96.56394728],[4.53409421,0.02761308,96.56315042],[4.53409368,0.02761136,96.56235413],[4.53409314,0.02760964,96.56155842],[4.53409261,0.02760792,96.56076329],[4.53409208,0.02760619,96.55996876],[4.53409155,0.02760447,96.55917481],[4.53409101,0.02760275,96.55838147],[4.53409048,0.02760103,96.55758873],[4.53408995,0.0275993,96.5567966],[4.53408942,0.02759758,96.55600508],[4.53408888,0.02759586,96.55521417],[4.53408835,0.02759414,96.55442389],[4.53408782,0.02759241,96.55363423],[4.53408729,0.02759069,96.5528452],[4.53408675,0.02758897,96.5520568],[4.53408622,0.02758725,96.55126904],[4.53408569,0.02758552,96.55048193],[4.53408516,0.0275838,96.54969546],[4.53408462,0.02758208,96.54890965],[4.53408409,0.02758036,96.54812449],[4.53408356,0.02757863,96.54733999],[4.53408303,0.02757691,96.54655616],[4.53408249,0.02757519,96.54577299],[4.53408196,0.02757347,96.54499051],[4.53408143,0.02757174,96.5442087],[4.5340809,0.02757002,96.54342757],[4.53408036,0.0275683,96.54264714],[4.53407983,0.02756657,96.54186739],[4.5340793,0.02756485,96.54108835],[4.53407877,0.02756313,96.54031],[4.53407823,0.02756141,96.53953236],[4.5340777,0.02755968,96.53875544],[4.53407717,0.02755796,96.53797922],[4.53407664,0.02755624,96.53720373],[4.5340761,0.02755452,96.53642897],[4.53407557,0.02755279,96.53565493],[4.53407504,0.02755107,96.53488162],[4.53407451,0.02754935,96.53410906],[4.53407397,0.02754763,96.53333724],[4.53407344,0.0275459,96.53256616],[4.53407291,0.02754418,96.53179584],[4.53407237,0.02754246,96.53102628],[4.53407184,0.02754074,96.53025747],[4.53407131,0.02753901,96.52948943],[4.53407078,0.02753729,96.52872217],[4.53407024,0.02753557,96.52795568],[4.53406971,0.02753385,96.52718997],[4.53406918,0.02753212,96.52642504],[4.53406865,0.0275304,96.5256609],[4.53406811,0.02752868,96.52489756],[4.53406758,0.02752696,96.52413502],[4.53406705,0.02752523,96.52337328],[4.53406652,0.02752351,96.52261235],[4.53406598,0.02752179,96.52185223],[4.53406545,0.02752007,96.52109293],[4.53406492,0.02751834,96.52033445],[4.53406439,0.02751662,96.51957679],[4.53406385,0.0275149,96.51881997],[4.53406332,0.02751318,96.51806399],[4.53406279,0.02751145,96.51730885],[4.53406226,0.02750973,96.51655455],[4.53406172,0.02750801,96.5158011],[4.53406119,0.02750628,96.51504851],[4.53406066,0.02750456,96.51429678],[4.53406013,0.02750284,96.51354591],[4.53405959,0.02750112,96.51279591],[4.53405906,0.02749939,96.51204679],[4.53405853,0.02749767,96.51129855],[4.534058,0.02749595,96.51055118],[4.53405746,0.02749423,96.50980471],[4.53405693,0.0274925,96.50905913],[4.5340564,0.02749078,96.50831445],[4.53405587,0.02748906,96.50757067],[4.53405533,0.02748734,96.5068278],[4.5340548,0.02748561,96.50608584],[4.53405427,0.02748389,96.5053448],[4.53405374,0.02748217,96.50460468],[4.5340532,0.02748045,96.50386548],[4.53405267,0.02747872,96.50312722],[4.53405214,0.027477,96.50238989],[4.53405161,0.02747528,96.50165351],[4.53405107,0.02747356,96.50091807],[4.53405054,0.02747183,96.50018358],[4.53405001,0.02747011,96.49945004],[4.53404947,0.02746839,96.49871747],[4.53404894,0.02746667,96.49798586],[4.53404841,0.02746494,96.49725522],[4.53404788,0.02746322,96.49652556],[4.53404734,0.0274615,96.49579687],[4.53404681,0.02745978,96.49506917],[4.53404628,0.02745805,96.49434246],[4.53404575,0.02745633,96.49361674],[4.53404521,0.02745461,96.49289202],[4.53404468,0.02745289,96.4921683],[4.53404415,0.02745116,96.49144559],[4.53404361,0.02744944,96.49072389],[4.53404308,0.02744772,96.49000322],[4.53404255,0.027446,96.48928356],[4.53404202,0.02744427,96.48856493],[4.53404148,0.02744255,96.48784734],[4.53404095,0.02744083,96.48713078],[4.53404042,0.02743911,96.48641527],[4.53403988,0.02743738,96.4857008],[4.53403935,0.02743566,96.48498738],[4.53403882,0.02743394,96.48427502],[4.53403829,0.02743222,96.48356372],[4.53403775,0.02743049,96.48285349],[4.53403722,0.02742877,96.48214432],[4.53403669,0.02742705,96.48143624],[4.53403615,0.02742533,96.48072923],[4.53403562,0.0274236,96.48002331],[4.53403509,0.02742188,96.47931848],[4.53403455,0.02742016,96.47861475],[4.53403402,0.02741844,96.47791211],[4.53403349,0.02741671,96.47721059],[4.53403296,0.02741499,96.47651017],[4.53403242,0.02741327,96.47581086],[4.53403189,0.02741155,96.47511268],[4.53403136,0.02740982,96.47441562],[4.53403082,0.0274081,96.47371968],[4.53403029,0.02740638,96.47302489],[4.53402976,0.02740466,96.47233123],[4.53402922,0.02740293,96.47163871],[4.53402869,0.02740121,96.47094735],[4.53402816,0.02739949,96.47025713],[4.53402762,0.02739777,96.46956808],[4.53402709,0.02739605,96.46888019],[4.53402656,0.02739432,96.46819346],[4.53402602,0.0273926,96.46750791],[4.53402549,0.02739088,96.46682354],[4.53402496,0.02738916,96.46614035],[4.53402442,0.02738743,96.46545835],[4.53402389,0.02738571,96.46477754],[4.53402336,0.02738399,96.46409793],[4.53402282,0.02738227,96.46341953],[4.53402229,0.02738054,96.46274233],[4.53402176,0.02737882,96.46206635],[4.53402122,0.0273771,96.46139159],[4.53402069,0.02737538,96.46071806],[4.53402016,0.02737365,96.46004576],[4.53401962,0.02737193,96.45937468],[4.53401909,0.02737021,96.45870481],[4.53401856,0.02736849,96.4580361],[4.53401802,0.02736677,96.45736852],[4.53401749,0.02736504,96.45670203],[4.53401696,0.02736332,96.45603661],[4.53401642,0.0273616,96.4553722],[4.53401589,0.02735988,96.45470878],[4.53401536,0.02735815,96.4540463],[4.53401482,0.02735643,96.45338475],[4.53401429,0.02735471,96.45272407],[4.53401375,0.02735299,96.45206423],[4.53401322,0.02735127,96.45140521],[4.53401269,0.02734954,96.45074695],[4.53401215,0.02734782,96.45008943],[4.53401162,0.0273461,96.4494326],[4.53401109,0.02734438,96.44877645],[4.53401055,0.02734265,96.44812091],[4.53401002,0.02734093,96.44746598],[4.53400948,0.02733921,96.44681159],[4.53400895,0.02733749,96.44615773],[4.53400842,0.02733577,96.44550435],[4.53400788,0.02733404,96.44485142],[4.53400735,0.02733232,96.44419891],[4.53400682,0.0273306,96.44354677],[4.53400628,0.02732888,96.44289497],[4.53400575,0.02732715,96.44224347],[4.53400521,0.02732543,96.44159225],[4.53400468,0.02732371,96.44094125],[4.53400415,0.02732199,96.44029046],[4.53400361,0.02732027,96.43963982],[4.53400308,0.02731854,96.43898931],[4.53400254,0.02731682,96.43833889],[4.53400201,0.0273151,96.43768852],[4.53400148,0.02731338,96.43703817],[4.53400094,0.02731166,96.4363878],[4.53400041,0.02730993,96.43573738],[4.53399987,0.02730821,96.43508686],[4.53399934,0.02730649,96.43443621],[4.53399881,0.02730477,96.43378541],[4.53399827,0.02730304,96.4331344],[4.53399774,0.02730132,96.43248316],[4.5339972,0.0272996,96.43183164],[4.53399667,0.02729788,96.43117982],[4.53399613,0.02729616,96.43052765],[4.5339956,0.02729443,96.42987511],[4.53399507,0.02729271,96.42922214],[4.53399453,0.02729099,96.42856873],[4.533994,0.02728927,96.42791483],[4.53399346,0.02728755,96.4272604],[4.53399293,0.02728582,96.42660541],[4.53399239,0.0272841,96.42594982],[4.53399186,0.02728238,96.42529361],[4.53399133,0.02728066,96.42463672],[4.53399079,0.02727894,96.42397912],[4.53399026,0.02727721,96.42332079],[4.53398972,0.02727549,96.42266167],[4.53398919,0.02727377,96.42200174],[4.53398865,0.02727205,96.42134096],[4.53398812,0.02727033,96.4206793],[4.53398758,0.0272686,96.42001671],[4.53398705,0.02726688,96.41935316],[4.53398651,0.02726516,96.41868862],[4.53398598,0.02726344,96.41802304],[4.53398545,0.02726172,96.41735639],[4.53398491,0.02725999,96.41668864],[4.53398438,0.02725827,96.41601975],[4.53398384,0.02725655,96.41534968],[4.53398331,0.02725483,96.4146784],[4.53398277,0.02725311,96.41400587],[4.53398224,0.02725138,96.41333205],[4.5339817,0.02724966,96.41265691],[4.53398117,0.02724794,96.4119804],[4.53398063,0.02724622,96.41130251],[4.5339801,0.0272445,96.41062318],[4.53397956,0.02724277,96.40994238],[4.53397903,0.02724105,96.40926007],[4.53397849,0.02723933,96.40857623],[4.53397796,0.02723761,96.4078908],[4.53397742,0.02723589,96.40720377],[4.53397689,0.02723417,96.40651508],[4.53397635,0.02723244,96.4058247],[4.53397582,0.02723072,96.4051326],[4.53397528,0.027229,96.40443874],[4.53397475,0.02722728,96.40374308],[4.53397421,0.02722556,96.40304559],[4.53397368,0.02722383,96.40234622],[4.53397314,0.02722211,96.40164495],[4.53397261,0.02722039,96.40094174],[4.53397207,0.02721867,96.40023655],[4.53397154,0.02721695,96.39952934],[4.533971,0.02721523,96.39882008],[4.53397047,0.0272135,96.39810873],[4.53396993,0.02721178,96.39739525],[4.5339694,0.02721006,96.39667961],[4.53396886,0.02720834,96.39596177],[4.53396833,0.02720662,96.39524169],[4.53396779,0.02720489,96.39451934],[4.53396726,0.02720317,96.39379468],[4.53396672,0.02720145,96.39306767],[4.53396619,0.02719973,96.39233828],[4.53396565,0.02719801,96.39160647],[4.53396512,0.02719629,96.39087221],[4.53396458,0.02719456,96.39013545],[4.53396405,0.02719284,96.38939616],[4.53396351,0.02719112,96.3886543],[4.53396298,0.0271894,96.38790985],[4.53396244,0.02718768,96.38716275],[4.5339619,0.02718596,96.38641297],[4.53396137,0.02718423,96.38566048],[4.53396083,0.02718251,96.38490524],[4.5339603,0.02718079,96.38414721],[4.53395976,0.02717907,96.38338636],[4.53395923,0.02717735,96.38262265],[4.53395869,0.02717562,96.38185608],[4.53395816,0.0271739,96.38108669],[4.53395762,0.02717218,96.38031453],[4.53395708,0.02717046,96.37953963],[4.53395655,0.02716874,96.37876203],[4.53395601,0.02716702,96.37798178],[4.53395548,0.02716529,96.37719892],[4.53395494,0.02716357,96.37641349],[4.53395441,0.02716185,96.37562553],[4.53395387,0.02716013,96.37483508],[4.53395334,0.02715841,96.37404218],[4.5339528,0.02715669,96.37324687],[4.53395226,0.02715497,96.3724492],[4.53395173,0.02715324,96.37164921],[4.53395119,0.02715152,96.37084693],[4.53395066,0.0271498,96.37004241],[4.53395012,0.02714808,96.36923569],[4.53394958,0.02714636,96.36842681],[4.53394905,0.02714464,96.36761581],[4.53394851,0.02714291,96.36680274],[4.53394798,0.02714119,96.36598763],[4.53394744,0.02713947,96.36517053],[4.53394691,0.02713775,96.36435147],[4.53394637,0.02713603,96.3635305],[4.53394583,0.02713431,96.36270766],[4.5339453,0.02713258,96.361883],[4.53394476,0.02713086,96.36105654],[4.53394422,0.02712914,96.36022834],[4.53394369,0.02712742,96.35939844],[4.53394315,0.0271257,96.35856687],[4.53394262,0.02712398,96.35773368],[4.53394208,0.02712226,96.35689891],[4.53394154,0.02712053,96.3560626],[4.53394101,0.02711881,96.3552248],[4.53394047,0.02711709,96.35438553],[4.53393994,0.02711537,96.35354486],[4.5339394,0.02711365,96.35270281],[4.53393886,0.02711193,96.35185942],[4.53393833,0.02711021,96.35101475],[4.53393779,0.02710848,96.35016883],[4.53393725,0.02710676,96.3493217],[4.53393672,0.02710504,96.34847341],[4.53393618,0.02710332,96.34762399],[4.53393565,0.0271016,96.34677349],[4.53393511,0.02709988,96.34592195],[4.53393457,0.02709816,96.34506941],[4.53393404,0.02709643,96.34421592],[4.5339335,0.02709471,96.3433615],[4.53393296,0.02709299,96.34250622],[4.53393243,0.02709127,96.3416501],[4.53393189,0.02708955,96.34079318],[4.53393135,0.02708783,96.33993552],[4.53393082,0.02708611,96.33907715],[4.53393028,0.02708438,96.33821812],[4.53392974,0.02708266,96.33735846],[4.53392921,0.02708094,96.33649822],[4.53392867,0.02707922,96.33563744],[4.53392813,0.0270775,96.33477616],[4.5339276,0.02707578,96.33391442],[4.53392706,0.02707406,96.33305226],[4.53392652,0.02707233,96.33218973],[4.53392599,0.02707061,96.33132687],[4.53392545,0.02706889,96.33046372],[4.53392491,0.02706717,96.32960032],[4.53392438,0.02706545,96.32873672],[4.53392384,0.02706373,96.32787295],[4.5339233,0.02706201,96.32700905],[4.53392277,0.02706029,96.32614508],[4.53392223,0.02705856,96.32528106],[4.53392169,0.02705684,96.32441705],[4.53392116,0.02705512,96.32355308],[4.53392062,0.0270534,96.3226892],[4.53392008,0.02705168,96.32182545],[4.53391954,0.02704996,96.32096187],[4.53391901,0.02704824,96.3200985],[4.53391847,0.02704652,96.31923538],[4.53391793,0.02704479,96.31837256],[4.5339174,0.02704307,96.31751008],[4.53391686,0.02704135,96.31664798],[4.53391632,0.02703963,96.3157863],[4.53391578,0.02703791,96.31492509],[4.53391525,0.02703619,96.31406438],[4.53391471,0.02703447,96.31320422],[4.53391417,0.02703275,96.31234465],[4.53391364,0.02703102,96.31148571],[4.5339131,0.0270293,96.31062745],[4.53391256,0.02702758,96.3097699],[4.53391202,0.02702586,96.30891312],[4.53391149,0.02702414,96.30805713],[4.53391095,0.02702242,96.30720199],[4.53391041,0.0270207,96.30634773],[4.53390987,0.02701898,96.3054944],[4.53390934,0.02701726,96.30464203],[4.5339088,0.02701553,96.30379068],[4.53390826,0.02701381,96.30294039],[4.53390772,0.02701209,96.30209119],[4.53390719,0.02701037,96.30124312],[4.53390665,0.02700865,96.30039624],[4.53390611,0.02700693,96.29955058],[4.53390557,0.02700521,96.29870619],[4.53390504,0.02700349,96.2978631],[4.5339045,0.02700177,96.29702136],[4.53390396,0.02700004,96.29618102],[4.53390342,0.02699832,96.2953421],[4.53390289,0.0269966,96.29450467],[4.53390235,0.02699488,96.29366875],[4.53390181,0.02699316,96.29283439],[4.53390127,0.02699144,96.29200164],[4.53390074,0.02698972,96.29117054],[4.5339002,0.026988,96.29034112],[4.53389966,0.02698628,96.28951343],[4.53389912,0.02698456,96.28868752],[4.53389858,0.02698283,96.28786342],[4.53389805,0.02698111,96.28704117],[4.53389751,0.02697939,96.28622083],[4.53389697,0.02697767,96.28540243],[4.53389643,0.02697595,96.28458602],[4.53389589,0.02697423,96.28377164],[4.53389536,0.02697251,96.28295932],[4.53389482,0.02697079,96.28214912],[4.53389428,0.02696907,96.28134107],[4.53389374,0.02696735,96.28053522],[4.5338932,0.02696562,96.27973161],[4.53389267,0.0269639,96.27893028],[4.53389213,0.02696218,96.27813128],[4.53389159,0.02696046,96.27733465],[4.53389105,0.02695874,96.27654042],[4.53389051,0.02695702,96.27574865],[4.53388998,0.0269553,96.27495938],[4.53388944,0.02695358,96.27417264],[4.5338889,0.02695186,96.27338849],[4.53388836,0.02695014,96.27260696],[4.53388782,0.02694842,96.27182809],[4.53388729,0.0269467,96.27105193],[4.53388675,0.02694498,96.27027853],[4.53388621,0.02694326,96.26950792],[4.53388567,0.02694154,96.26874015],[4.53388513,0.02693982,96.26797525],[4.53388459,0.0269381,96.26721328],[4.53388405,0.02693637,96.26645428],[4.53388352,0.02693465,96.26569824],[4.53388298,0.02693293,96.26494514],[4.53388244,0.02693121,96.26419493],[4.5338819,0.02692949,96.2634476],[4.53388136,0.02692777,96.2627031],[4.53388082,0.02692605,96.2619614],[4.53388029,0.02692433,96.26122246],[4.53387975,0.02692261,96.26048625],[4.53387921,0.02692089,96.25975274],[4.53387867,0.02691917,96.2590219],[4.53387813,0.02691745,96.25829368],[4.53387759,0.02691573,96.25756805],[4.53387705,0.02691401,96.25684499],[4.53387651,0.02691228,96.25612445],[4.53387598,0.02691056,96.25540641],[4.53387544,0.02690884,96.25469082],[4.5338749,0.02690712,96.25397765],[4.53387436,0.0269054,96.25326687],[4.53387382,0.02690368,96.25255845],[4.53387328,0.02690196,96.25185235],[4.53387274,0.02690024,96.25114853],[4.5338722,0.02689852,96.25044696],[4.53387166,0.0268968,96.24974762],[4.53387113,0.02689508,96.24905045],[4.53387059,0.02689336,96.24835543],[4.53387005,0.02689164,96.24766252],[4.53386951,0.02688992,96.24697168],[4.53386897,0.0268882,96.24628289],[4.53386843,0.02688648,96.24559611],[4.53386789,0.02688475,96.2449113],[4.53386735,0.02688303,96.24422843],[4.53386681,0.02688131,96.24354745],[4.53386627,0.02687959,96.24286835],[4.53386573,0.02687787,96.24219108],[4.53386519,0.02687615,96.2415156],[4.53386466,0.02687443,96.24084189],[4.53386412,0.02687271,96.24016991],[4.53386358,0.02687099,96.23949962],[4.53386304,0.02686927,96.23883098],[4.5338625,0.02686755,96.23816397],[4.53386196,0.02686583,96.23749855],[4.53386142,0.02686411,96.23683467],[4.53386088,0.02686239,96.23617232],[4.53386034,0.02686067,96.23551144],[4.5338598,0.02685895,96.23485202],[4.53385926,0.02685723,96.234194],[4.53385872,0.02685551,96.23353736],[4.53385818,0.02685379,96.23288206],[4.53385764,0.02685207,96.23222807],[4.5338571,0.02685035,96.23157535],[4.53385656,0.02684863,96.23092387],[4.53385602,0.0268469,96.23027358],[4.53385548,0.02684518,96.22962446],[4.53385494,0.02684346,96.22897647],[4.5338544,0.02684174,96.22832957],[4.53385386,0.02684002,96.22768374],[4.53385332,0.0268383,96.22703892],[4.53385279,0.02683658,96.2263951],[4.53385225,0.02683486,96.22575223],[4.53385171,0.02683314,96.22511027],[4.53385117,0.02683142,96.2244692],[4.53385063,0.0268297,96.22382897],[4.53385009,0.02682798,96.22318955],[4.53384955,0.02682626,96.22255091],[4.53384901,0.02682454,96.22191301],[4.53384847,0.02682282,96.22127582],[4.53384792,0.0268211,96.22063929],[4.53384738,0.02681938,96.2200034],[4.53384684,0.02681766,96.21936811],[4.5338463,0.02681594,96.21873337],[4.53384576,0.02681422,96.21809917],[4.53384522,0.0268125,96.21746545],[4.53384468,0.02681078,96.2168322],[4.53384414,0.02680906,96.21619936],[4.5338436,0.02680734,96.2155669],[4.53384306,0.02680562,96.2149348],[4.53384252,0.0268039,96.214303],[4.53384198,0.02680218,96.21367149],[4.53384144,0.02680046,96.21304021],[4.5338409,0.02679874,96.21240914],[4.53384036,0.02679702,96.21177824],[4.53383982,0.0267953,96.21114748],[4.53383928,0.02679358,96.21051681],[4.53383874,0.02679186,96.20988621],[4.5338382,0.02679014,96.20925563],[4.53383766,0.02678842,96.20862505],[4.53383712,0.0267867,96.20799442],[4.53383658,0.02678498,96.2073637],[4.53383603,0.02678326,96.20673288],[4.53383549,0.02678154,96.2061019],[4.53383495,0.02677982,96.20547073],[4.53383441,0.0267781,96.20483933],[4.53383387,0.02677638,96.20420768],[4.53383333,0.02677466,96.20357573],[4.53383279,0.02677294,96.20294345],[4.53383225,0.02677122,96.2023108],[4.53383171,0.0267695,96.20167775],[4.53383117,0.02676778,96.20104426],[4.53383062,0.02676606,96.20041029],[4.53383008,0.02676434,96.19977581],[4.53382954,0.02676262,96.19914078],[4.533829,0.0267609,96.19850517],[4.53382846,0.02675918,96.19786894],[4.53382792,0.02675746,96.19723206],[4.53382738,0.02675574,96.19659448],[4.53382683,0.02675402,96.19595618],[4.53382629,0.0267523,96.19531711],[4.53382575,0.02675058,96.19467724],[4.53382521,0.02674886,96.19403654],[4.53382467,0.02674714,96.19339496],[4.53382413,0.02674542,96.19275248],[4.53382359,0.0267437,96.19210905],[4.53382304,0.02674198,96.19146465],[4.5338225,0.02674026,96.19081922],[4.53382196,0.02673854,96.19017275],[4.53382142,0.02673682,96.18952519],[4.53382088,0.0267351,96.18887651],[4.53382033,0.02673338,96.18822666],[4.53381979,0.02673166,96.18757562],[4.53381925,0.02672994,96.18692335],[4.53381871,0.02672822,96.18626981],[4.53381817,0.0267265,96.18561497],[4.53381762,0.02672479,96.18495878],[4.53381708,0.02672307,96.18430122],[4.53381654,0.02672135,96.18364225],[4.533816,0.02671963,96.18298183],[4.53381546,0.02671791,96.18231993],[4.53381491,0.02671619,96.18165651],[4.53381437,0.02671447,96.18099153],[4.53381383,0.02671275,96.18032496],[4.53381329,0.02671103,96.17965676],[4.53381274,0.02670931,96.1789869],[4.5338122,0.02670759,96.17831535],[4.53381166,0.02670587,96.17764211],[4.53381112,0.02670415,96.17696719],[4.53381057,0.02670243,96.17629059],[4.53381003,0.02670071,96.17561234],[4.53380949,0.02669899,96.17493244],[4.53380924,0.02669821,96.17462261],[4.53381307,0.02669699,96.18698408],[4.53381332,0.02669777,96.18730152],[4.53381387,0.02669948,96.18799357],[4.53381442,0.0267012,96.1886779],[4.53381497,0.02670292,96.18935476],[4.53381552,0.02670464,96.1900244],[4.53381606,0.02670636,96.19068708],[4.53381661,0.02670807,96.19134305],[4.53381715,0.02670979,96.19199258],[4.53381769,0.02671151,96.19263596],[4.53381823,0.02671323,96.19327351],[4.53381877,0.02671495,96.19390552],[4.53381931,0.02671668,96.19453231],[4.53381985,0.0267184,96.19515418],[4.53382038,0.02672012,96.19577144],[4.53382092,0.02672184,96.19638439],[4.53382145,0.02672356,96.19699332],[4.53382199,0.02672528,96.19759855],[4.53382252,0.02672701,96.19820036],[4.53382305,0.02672873,96.19879906],[4.53382358,0.02673045,96.19939493],[4.53382411,0.02673218,96.19998828],[4.53382465,0.0267339,96.20057938],[4.53382518,0.02673562,96.20116854],[4.53382571,0.02673735,96.20175603],[4.53382624,0.02673907,96.20234214],[4.53382677,0.02674079,96.20292715],[4.5338273,0.02674251,96.20351134],[4.53382783,0.02674424,96.204095],[4.53382836,0.02674596,96.20467839],[4.53382889,0.02674768,96.20526174],[4.53382942,0.02674941,96.20584515],[4.53382996,0.02675113,96.20642863],[4.53383049,0.02675285,96.20701223],[4.53383102,0.02675458,96.20759597],[4.53383155,0.0267563,96.2081799],[4.53383209,0.02675802,96.20876404],[4.53383262,0.02675974,96.20934844],[4.53383315,0.02676147,96.20993312],[4.53383369,0.02676319,96.21051812],[4.53383422,0.02676491,96.21110347],[4.53383476,0.02676663,96.21168921],[4.53383529,0.02676835,96.21227538],[4.53383583,0.02677008,96.21286199],[4.53383636,0.0267718,96.21344909],[4.5338369,0.02677352,96.21403671],[4.53383743,0.02677524,96.21462489],[4.53383797,0.02677696,96.21521366],[4.5338385,0.02677868,96.21580304],[4.53383904,0.02678041,96.21639308],[4.53383958,0.02678213,96.21698381],[4.53384011,0.02678385,96.21757525],[4.53384065,0.02678557,96.21816746],[4.53384119,0.02678729,96.21876044],[4.53384173,0.02678901,96.21935425],[4.53384227,0.02679073,96.21994891],[4.5338428,0.02679245,96.22054445],[4.53384334,0.02679417,96.22114092],[4.53384388,0.0267959,96.22173834],[4.53384442,0.02679762,96.22233674],[4.53384496,0.02679934,96.22293616],[4.5338455,0.02680106,96.22353663],[4.53384604,0.02680278,96.22413819],[4.53384658,0.0268045,96.22474087],[4.53384712,0.02680622,96.22534469],[4.53384766,0.02680794,96.22594971],[4.5338482,0.02680966,96.22655593],[4.53384874,0.02681138,96.22716339],[4.53384928,0.0268131,96.22777209],[4.53384982,0.02681482,96.22838203],[4.53385036,0.02681654,96.22899324],[4.53385091,0.02681826,96.22960571],[4.53385145,0.02681998,96.23021948],[4.53385199,0.0268217,96.23083453],[4.53385253,0.02682342,96.2314509],[4.53385308,0.02682514,96.23206859],[4.53385362,0.02682686,96.23268761],[4.53385416,0.02682857,96.23330798],[4.5338547,0.02683029,96.23392971],[4.53385525,0.02683201,96.23455282],[4.53385579,0.02683373,96.23517731],[4.53385633,0.02683545,96.23580321],[4.53385688,0.02683717,96.23643054],[4.53385742,0.02683889,96.23705929],[4.53385796,0.02684061,96.2376895],[4.53385851,0.02684233,96.23832118],[4.53385905,0.02684405,96.23895435],[4.53385959,0.02684577,96.23958901],[4.53386014,0.02684749,96.24022519],[4.53386068,0.02684921,96.24086291],[4.53386122,0.02685093,96.24150218],[4.53386177,0.02685264,96.24214303],[4.53386231,0.02685436,96.24278546],[4.53386285,0.02685608,96.24342951],[4.5338634,0.0268578,96.24407518],[4.53386394,0.02685952,96.2447225],[4.53386448,0.02686124,96.24537148],[4.53386503,0.02686296,96.24602215],[4.53386557,0.02686468,96.24667453],[4.53386611,0.0268664,96.24732863],[4.53386666,0.02686812,96.24798448],[4.5338672,0.02686984,96.2486421],[4.53386774,0.02687156,96.24930151],[4.53386829,0.02687328,96.24996272],[4.53386883,0.026875,96.25062577],[4.53386937,0.02687672,96.25129066],[4.53386991,0.02687843,96.25195743],[4.53387045,0.02688015,96.25262609],[4.533871,0.02688187,96.25329667],[4.53387154,0.02688359,96.25396919],[4.53387208,0.02688531,96.25464366],[4.53387262,0.02688703,96.25532012],[4.53387316,0.02688875,96.25599859],[4.5338737,0.02689047,96.25667911],[4.53387424,0.02689219,96.25736176],[4.53387478,0.02689391,96.25804658],[4.53387533,0.02689563,96.25873363],[4.53387587,0.02689735,96.25942297],[4.53387641,0.02689907,96.26011466],[4.53387695,0.02690079,96.26080875],[4.53387748,0.02690252,96.2615053],[4.53387802,0.02690424,96.26220437],[4.53387856,0.02690596,96.26290601],[4.5338791,0.02690768,96.26361027],[4.53387964,0.0269094,96.26431721],[4.53388018,0.02691112,96.26502689],[4.53388072,0.02691284,96.26573936],[4.53388126,0.02691456,96.26645468],[4.5338818,0.02691628,96.26717289],[4.53388234,0.026918,96.26789406],[4.53388287,0.02691972,96.26861824],[4.53388341,0.02692144,96.26934548],[4.53388395,0.02692316,96.27007583],[4.53388449,0.02692489,96.27080935],[4.53388503,0.02692661,96.2715461],[4.53388556,0.02692833,96.27228612],[4.5338861,0.02693005,96.27302947],[4.53388664,0.02693177,96.2737762],[4.53388718,0.02693349,96.27452637],[4.53388771,0.02693521,96.27528003],[4.53388825,0.02693693,96.27603723],[4.53388879,0.02693865,96.27679797],[4.53388932,0.02694038,96.27756221],[4.53388986,0.0269421,96.27832992],[4.5338904,0.02694382,96.27910105],[4.53389094,0.02694554,96.27987555],[4.53389147,0.02694726,96.28065338],[4.53389201,0.02694898,96.28143451],[4.53389255,0.0269507,96.28221889],[4.53389308,0.02695242,96.28300647],[4.53389362,0.02695415,96.28379721],[4.53389415,0.02695586,96.28459108],[4.53389469,0.02695759,96.28538803],[4.53389523,0.02695931,96.28618801],[4.53389576,0.02696103,96.28699099],[4.5338963,0.02696275,96.28779692],[4.53389684,0.02696447,96.28860576],[4.53389737,0.02696619,96.28941747],[4.53389791,0.02696791,96.29023201],[4.53389845,0.02696964,96.29104933],[4.53389898,0.02697136,96.2918694],[4.53389952,0.02697308,96.29269217],[4.53390006,0.0269748,96.2935176],[4.53390059,0.02697652,96.29434565],[4.53390113,0.02697824,96.29517628],[4.53390167,0.02697996,96.29600944],[4.5339022,0.02698168,96.29684507],[4.53390274,0.02698341,96.29768311],[4.53390328,0.02698513,96.29852351],[4.53390381,0.02698685,96.2993662],[4.53390435,0.02698857,96.30021113],[4.53390489,0.02699029,96.30105823],[4.53390543,0.02699201,96.30190746],[4.53390596,0.02699373,96.30275875],[4.5339065,0.02699546,96.30361204],[4.53390704,0.02699718,96.30446728],[4.53390757,0.0269989,96.3053244],[4.53390811,0.02700062,96.30618335],[4.53390865,0.02700234,96.30704406],[4.53390918,0.02700406,96.30790649],[4.53390972,0.02700578,96.30877057],[4.53391026,0.02700751,96.30963624],[4.53391079,0.02700923,96.31050345],[4.53391133,0.02701095,96.31137213],[4.53391187,0.02701267,96.31224223],[4.53391241,0.02701439,96.31311369],[4.53391294,0.02701611,96.31398644],[4.53391348,0.02701783,96.31486043],[4.53391402,0.02701955,96.31573561],[4.53391455,0.02702128,96.31661191],[4.53391509,0.027023,96.31748927],[4.53391563,0.02702472,96.31836763],[4.53391616,0.02702644,96.31924694],[4.5339167,0.02702816,96.32012714],[4.53391724,0.02702988,96.32100816],[4.53391777,0.0270316,96.32188995],[4.53391831,0.02703333,96.32277244],[4.53391885,0.02703505,96.32365559],[4.53391938,0.02703677,96.32453932],[4.53391992,0.02703849,96.32542358],[4.53392046,0.02704021,96.32630831],[4.53392099,0.02704193,96.32719345],[4.53392153,0.02704365,96.32807894],[4.53392206,0.02704538,96.32896473],[4.5339226,0.0270471,96.32985074],[4.53392314,0.02704882,96.33073692],[4.53392367,0.02705054,96.33162321],[4.53392421,0.02705226,96.33250956],[4.53392474,0.02705398,96.33339589],[4.53392528,0.02705571,96.33428216],[4.53392581,0.02705743,96.33516829],[4.53392635,0.02705915,96.33605424],[4.53392689,0.02706087,96.33693993],[4.53392742,0.02706259,96.33782532],[4.53392796,0.02706432,96.33871033],[4.53392849,0.02706604,96.33959492],[4.53392903,0.02706776,96.34047901],[4.53392956,0.02706948,96.34136255],[4.5339301,0.0270712,96.34224548],[4.53393063,0.02707292,96.34312774],[4.53393117,0.02707465,96.34400926],[4.5339317,0.02707637,96.34488999],[4.53393223,0.02707809,96.34576986],[4.53393277,0.02707981,96.34664882],[4.5339333,0.02708154,96.34752681],[4.53393384,0.02708326,96.34840376],[4.53393437,0.02708498,96.34927961],[4.53393491,0.0270867,96.3501543],[4.53393544,0.02708842,96.35102778],[4.53393597,0.02709015,96.35189997],[4.53393651,0.02709187,96.35277083],[4.53393704,0.02709359,96.35364029],[4.53393757,0.02709531,96.35450829],[4.53393811,0.02709704,96.3553748],[4.53393864,0.02709876,96.35623982],[4.53393917,0.02710048,96.35710335],[4.5339397,0.0271022,96.3579654],[4.53394024,0.02710393,96.35882597],[4.53394077,0.02710565,96.35968506],[4.5339413,0.02710737,96.36054268],[4.53394184,0.02710909,96.36139883],[4.53394237,0.02711082,96.36225352],[4.5339429,0.02711254,96.36310675],[4.53394343,0.02711426,96.36395852],[4.53394397,0.02711599,96.36480886],[4.5339445,0.02711771,96.36565775],[4.53394503,0.02711943,96.36650522],[4.53394557,0.02712115,96.36735127],[4.5339461,0.02712288,96.3681959],[4.53394663,0.0271246,96.36903912],[4.53394717,0.02712632,96.36988095],[4.5339477,0.02712804,96.37072139],[4.53394823,0.02712976,96.37156045],[4.53394877,0.02713149,96.37239814],[4.5339493,0.02713321,96.37323447],[4.53394984,0.02713493,96.37406946],[4.53395037,0.02713665,96.3749031],[4.53395091,0.02713837,96.37573541],[4.53395145,0.0271401,96.37656641],[4.53395198,0.02714182,96.3773961],[4.53395252,0.02714354,96.37822449],[4.53395306,0.02714526,96.37905159],[4.53395359,0.02714698,96.37987741],[4.53395413,0.0271487,96.38070196],[4.53395467,0.02715042,96.38152526],[4.53395521,0.02715214,96.38234725],[4.53395575,0.02715386,96.38316786],[4.53395629,0.02715558,96.38398698],[4.53395683,0.0271573,96.38480452],[4.53395737,0.02715902,96.3856204],[4.53395791,0.02716074,96.38643451],[4.53395845,0.02716246,96.38724677],[4.53395899,0.02716418,96.38805707],[4.53395953,0.0271659,96.38886532],[4.53396007,0.02716762,96.38967143],[4.53396062,0.02716934,96.3904753],[4.53396116,0.02717106,96.39127683],[4.5339617,0.02717278,96.39207592],[4.53396225,0.0271745,96.39287248],[4.53396279,0.02717622,96.3936664],[4.53396333,0.02717794,96.3944576],[4.53396388,0.02717966,96.39524601],[4.53396442,0.02718138,96.39603164],[4.53396497,0.0271831,96.39681447],[4.53396551,0.02718482,96.39759451],[4.53396606,0.02718653,96.39837175],[4.5339666,0.02718825,96.39914619],[4.53396715,0.02718997,96.39991782],[4.53396769,0.02719169,96.40068665],[4.53396824,0.02719341,96.40145265],[4.53396878,0.02719513,96.40221584],[4.53396933,0.02719685,96.40297621],[4.53396987,0.02719856,96.40373375],[4.53397042,0.02720028,96.40448846],[4.53397097,0.027202,96.40524034],[4.53397151,0.02720372,96.40598938],[4.53397206,0.02720544,96.40673558],[4.5339726,0.02720716,96.40747893],[4.53397315,0.02720888,96.40821944],[4.53397369,0.02721059,96.40895709],[4.53397424,0.02721231,96.40969189],[4.53397479,0.02721403,96.41042384],[4.53397533,0.02721575,96.41115293],[4.53397588,0.02721747,96.41187917],[4.53397642,0.02721919,96.41260254],[4.53397697,0.02722091,96.41332305],[4.53397751,0.02722262,96.4140407],[4.53397806,0.02722434,96.41475548],[4.5339786,0.02722606,96.41546741],[4.53397915,0.02722778,96.41617647],[4.53397969,0.0272295,96.41688268],[4.53398023,0.02723122,96.41758602],[4.53398078,0.02723294,96.41828651],[4.53398132,0.02723466,96.41898414],[4.53398187,0.02723638,96.41967893],[4.53398241,0.0272381,96.42037086],[4.53398295,0.02723982,96.42105995],[4.53398349,0.02724153,96.4217462],[4.53398404,0.02724325,96.42242961],[4.53398458,0.02724497,96.42311019],[4.53398512,0.02724669,96.42378795],[4.53398566,0.02724841,96.42446289],[4.5339862,0.02725013,96.42513502],[4.53398674,0.02725185,96.42580435],[4.53398728,0.02725357,96.42647089],[4.53398782,0.02725529,96.42713463],[4.53398836,0.02725701,96.4277956],[4.5339889,0.02725874,96.4284538],[4.53398944,0.02726046,96.42910925],[4.53398998,0.02726218,96.42976195],[4.53399052,0.0272639,96.43041191],[4.53399105,0.02726562,96.43105916],[4.53399159,0.02726734,96.43170369],[4.53399213,0.02726906,96.43234553],[4.53399266,0.02727078,96.43298468],[4.5339932,0.02727251,96.43362121],[4.53399373,0.02727423,96.43425521],[4.53399427,0.02727595,96.43488677],[4.5339948,0.02727767,96.435516],[4.53399533,0.02727939,96.43614297],[4.53399587,0.02728112,96.4367678],[4.5339964,0.02728284,96.43739057],[4.53399693,0.02728456,96.43801138],[4.53399746,0.02728629,96.43863033],[4.53399799,0.02728801,96.4392475],[4.53399852,0.02728973,96.439863],[4.53399905,0.02729146,96.44047691],[4.53399958,0.02729318,96.44108932],[4.53400011,0.0272949,96.44170034],[4.53400064,0.02729663,96.44231005],[4.53400117,0.02729835,96.44291854],[4.5340017,0.02730007,96.44352591],[4.53400223,0.0273018,96.44413224],[4.53400276,0.02730352,96.44473764],[4.53400328,0.02730525,96.44534217],[4.53400381,0.02730697,96.44594594],[4.53400434,0.02730869,96.44654904],[4.53400487,0.02731042,96.44715156],[4.53400539,0.02731214,96.44775357],[4.53400592,0.02731387,96.44835517],[4.53400645,0.02731559,96.44895645],[4.53400697,0.02731732,96.4495575],[4.5340075,0.02731904,96.45015839],[4.53400802,0.02732077,96.45075922],[4.53400855,0.02732249,96.45136008],[4.53400908,0.02732422,96.45196103],[4.5340096,0.02732594,96.45256218],[4.53401013,0.02732767,96.4531636],[4.53401065,0.02732939,96.45376538],[4.53401118,0.02733112,96.4543676],[4.5340117,0.02733284,96.45497034],[4.53401223,0.02733457,96.45557368],[4.53401275,0.02733629,96.45617771],[4.53401328,0.02733802,96.45678251],[4.5340138,0.02733974,96.45738815],[4.53401433,0.02734147,96.45799472],[4.53401486,0.02734319,96.4586023],[4.53401538,0.02734491,96.45921096],[4.53401591,0.02734664,96.45982078],[4.53401643,0.02734836,96.46043184],[4.53401696,0.02735009,96.46104423],[4.53401748,0.02735181,96.461658],[4.53401801,0.02735354,96.46227326],[4.53401854,0.02735526,96.46289006],[4.53401906,0.02735699,96.46350848],[4.53401959,0.02735871,96.46412861],[4.53402011,0.02736044,96.46475051],[4.53402064,0.02736216,96.46537426],[4.53402117,0.02736389,96.46599994],[4.5340217,0.02736561,96.46662762],[4.53402222,0.02736733,96.46725737],[4.53402275,0.02736906,96.46788926],[4.53402328,0.02737078,96.46852338],[4.53402381,0.02737251,96.46915978],[4.53402434,0.02737423,96.46979855],[4.53402486,0.02737595,96.4704397],[4.53402539,0.02737768,96.47108325],[4.53402592,0.0273794,96.47172924],[4.53402645,0.02738112,96.47237768],[4.53402698,0.02738285,96.47302858],[4.53402751,0.02738457,96.47368198],[4.53402805,0.02738629,96.4743379],[4.53402858,0.02738802,96.47499634],[4.53402911,0.02738974,96.47565734],[4.53402964,0.02739146,96.47632088],[4.53403017,0.02739319,96.47698694],[4.53403071,0.02739491,96.47765547],[4.53403124,0.02739663,96.47832646],[4.53403177,0.02739835,96.47899987],[4.53403231,0.02740007,96.47967566],[4.53403284,0.0274018,96.48035381],[4.53403338,0.02740352,96.48103428],[4.53403391,0.02740524,96.48171705],[4.53403445,0.02740696,96.48240209],[4.53403499,0.02740868,96.48308936],[4.53403552,0.02741041,96.48377884],[4.53403606,0.02741213,96.4844705],[4.5340366,0.02741385,96.48516431],[4.53403713,0.02741557,96.48586024],[4.53403767,0.02741729,96.48655826],[4.53403821,0.02741901,96.48725835],[4.53403875,0.02742073,96.48796048],[4.53403928,0.02742245,96.48866461],[4.53403982,0.02742417,96.48937073],[4.53404036,0.02742589,96.49007881],[4.5340409,0.02742761,96.49078881],[4.53404144,0.02742933,96.49150072],[4.53404198,0.02743105,96.49221451],[4.53404252,0.02743277,96.49293014],[4.53404306,0.0274345,96.4936476],[4.5340436,0.02743622,96.49436686],[4.53404414,0.02743794,96.4950879],[4.53404468,0.02743966,96.49581068],[4.53404522,0.02744138,96.49653519],[4.53404577,0.0274431,96.4972614],[4.53404631,0.02744482,96.49798928],[4.53404685,0.02744653,96.49871881],[4.53404739,0.02744825,96.49944997],[4.53404793,0.02744997,96.50018272],[4.53404847,0.02745169,96.50091706],[4.53404902,0.02745341,96.50165294],[4.53404956,0.02745513,96.50239036],[4.5340501,0.02745685,96.50312928],[4.53405064,0.02745857,96.50386968],[4.53405119,0.02746029,96.50461154],[4.53405173,0.02746201,96.50535484],[4.53405227,0.02746373,96.50609954],[4.53405282,0.02746545,96.50684564],[4.53405336,0.02746717,96.50759309],[4.5340539,0.02746889,96.5083419],[4.53405445,0.02747061,96.50909202],[4.53405499,0.02747233,96.50984343],[4.53405553,0.02747405,96.51059612],[4.53405608,0.02747577,96.51135006],[4.53405662,0.02747748,96.51210523],[4.53405716,0.0274792,96.5128616],[4.53405771,0.02748092,96.51361916],[4.53405825,0.02748264,96.51437787],[4.53405879,0.02748436,96.51513773],[4.53405934,0.02748608,96.5158987],[4.53405988,0.0274878,96.51666076],[4.53406042,0.02748952,96.51742389],[4.53406097,0.02749124,96.51818807],[4.53406151,0.02749296,96.51895328],[4.53406205,0.02749468,96.51971949],[4.5340626,0.0274964,96.52048668],[4.53406314,0.02749812,96.52125483],[4.53406368,0.02749983,96.52202391],[4.53406422,0.02750155,96.52279391],[4.53406477,0.02750327,96.52356481],[4.53406531,0.02750499,96.52433657],[4.53406585,0.02750671,96.52510918],[4.5340664,0.02750843,96.52588261],[4.53406694,0.02751015,96.52665685],[4.53406748,0.02751187,96.52743186],[4.53406802,0.02751359,96.52820764],[4.53406856,0.02751531,96.52898414],[4.53406911,0.02751703,96.52976136],[4.53406965,0.02751875,96.53053928],[4.53407019,0.02752047,96.53131785],[4.53407073,0.02752219,96.53209708],[4.53407127,0.02752391,96.53287692],[4.53407181,0.02752563,96.53365737],[4.53407235,0.02752735,96.53443839],[4.53407289,0.02752907,96.53521996],[4.53407343,0.02753079,96.53600206],[4.53407397,0.02753251,96.53678468],[4.53407451,0.02753423,96.53756777],[4.53407505,0.02753595,96.53835133],[4.53407559,0.02753767,96.53913532],[4.53407613,0.02753939,96.53991973],[4.53407667,0.02754111,96.54070453],[4.53407721,0.02754283,96.5414897],[4.53407775,0.02754455,96.54227521],[4.53407829,0.02754627,96.54306105],[4.53407883,0.02754799,96.54384717],[4.53407936,0.02754972,96.54463358],[4.5340799,0.02755144,96.54542023],[4.53408044,0.02755316,96.5462071],[4.53408097,0.02755488,96.54699417],[4.53408151,0.0275566,96.54778142],[4.53408205,0.02755832,96.54856882],[4.53408258,0.02756004,96.54935635],[4.53408312,0.02756177,96.55014398],[4.53408365,0.02756349,96.55093169],[4.53408419,0.02756521,96.55171945],[4.53408472,0.02756693,96.55250723],[4.53408525,0.02756865,96.55329502],[4.53408579,0.02757038,96.55408279],[4.53408632,0.0275721,96.55487051],[4.53408685,0.02757382,96.5556582],[4.53408738,0.02757554,96.55644589],[4.53408792,0.02757727,96.55723358],[4.53408845,0.02757899,96.5580213],[4.53408898,0.02758071,96.55880907],[4.53408951,0.02758244,96.55959691],[4.53409004,0.02758416,96.56038483],[4.53409057,0.02758588,96.56117285],[4.5340911,0.02758761,96.561961],[4.53409163,0.02758933,96.5627493],[4.53409216,0.02759105,96.56353775],[4.53409269,0.02759278,96.56432639],[4.53409322,0.0275945,96.56511523],[4.53409375,0.02759622,96.56590429],[4.53409427,0.02759795,96.56669358],[4.5340948,0.02759967,96.56748314],[4.53409533,0.0276014,96.56827298],[4.53409586,0.02760312,96.56906311],[4.53409638,0.02760484,96.56985356],[4.53409691,0.02760657,96.57064435],[4.53409744,0.02760829,96.57143549],[4.53409797,0.02761002,96.57222701],[4.53409849,0.02761174,96.57301893],[4.53409902,0.02761347,96.57381126],[4.53409955,0.02761519,96.57460403],[4.53410007,0.02761692,96.57539725],[4.5341006,0.02761864,96.57619095],[4.53410113,0.02762036,96.57698514],[4.53410165,0.02762209,96.57777986],[4.53410218,0.02762381,96.5785751],[4.53410271,0.02762554,96.57937091],[4.53410323,0.02762726,96.5801673],[4.53410376,0.02762899,96.58096428],[4.53410429,0.02763071,96.58176188],[4.53410481,0.02763244,96.58256013],[4.53410534,0.02763416,96.58335903],[4.53410587,0.02763588,96.58415862],[4.53410639,0.02763761,96.58495892],[4.53410692,0.02763933,96.58575994],[4.53410745,0.02764106,96.58656171],[4.53410797,0.02764278,96.58736425],[4.5341085,0.02764451,96.58816758],[4.53410903,0.02764623,96.58897172],[4.53410955,0.02764796,96.5897767],[4.53411008,0.02764968,96.59058254],[4.53411061,0.0276514,96.59138926],[4.53411114,0.02765313,96.59219689],[4.53411166,0.02765485,96.59300544],[4.53411219,0.02765658,96.59381494],[4.53411272,0.0276583,96.59462542],[4.53411325,0.02766002,96.59543685],[4.53411378,0.02766175,96.59624922],[4.5341143,0.02766347,96.59706254],[4.53411483,0.0276652,96.59787677],[4.53411536,0.02766692,96.59869192],[4.53411589,0.02766864,96.59950795],[4.53411642,0.02767037,96.60032488],[4.53411695,0.02767209,96.60114267],[4.53411748,0.02767381,96.60196132],[4.53411801,0.02767554,96.60278081],[4.53411854,0.02767726,96.60360113],[4.53411907,0.02767898,96.60442226],[4.5341196,0.02768071,96.60524419],[4.53412013,0.02768243,96.60606691],[4.53412066,0.02768415,96.6068904],[4.53412119,0.02768588,96.60771464],[4.53412172,0.0276876,96.60853963],[4.53412225,0.02768932,96.60936534],[4.53412279,0.02769105,96.61019177],[4.53412332,0.02769277,96.6110189],[4.53412385,0.02769449,96.61184672],[4.53412438,0.02769621,96.6126752],[4.53412491,0.02769794,96.61350434],[4.53412544,0.02769966,96.61433412],[4.53412598,0.02770138,96.61516453],[4.53412651,0.02770311,96.61599555],[4.53412704,0.02770483,96.61682716],[4.53412757,0.02770655,96.61765936],[4.5341281,0.02770827,96.61849213],[4.53412864,0.02771,96.61932545],[4.53412917,0.02771172,96.6201593],[4.5341297,0.02771344,96.62099369],[4.53413023,0.02771516,96.62182858],[4.53413077,0.02771689,96.62266397],[4.5341313,0.02771861,96.62349984],[4.53413183,0.02772033,96.62433619],[4.53413236,0.02772205,96.62517299],[4.5341329,0.02772378,96.62601024],[4.53413343,0.0277255,96.62684791],[4.53413396,0.02772722,96.627686],[4.5341345,0.02772894,96.6285245],[4.53413503,0.02773067,96.62936338],[4.53413556,0.02773239,96.63020263],[4.5341361,0.02773411,96.63104224],[4.53413663,0.02773583,96.6318822],[4.53413716,0.02773756,96.6327225],[4.53413769,0.02773928,96.63356311],[4.53413823,0.027741,96.63440402],[4.53413876,0.02774272,96.63524522],[4.53413929,0.02774445,96.6360867],[4.53413983,0.02774617,96.63692843],[4.53414036,0.02774789,96.63777042],[4.53414089,0.02774961,96.63861263],[4.53414143,0.02775133,96.63945506],[4.53414196,0.02775306,96.64029769],[4.53414249,0.02775478,96.64114051],[4.53414303,0.0277565,96.64198351],[4.53414356,0.02775822,96.64282666],[4.53414409,0.02775995,96.64366996],[4.53414463,0.02776167,96.64451342],[4.53414516,0.02776339,96.64535704],[4.53414569,0.02776511,96.64620082],[4.53414623,0.02776684,96.64704477],[4.53414676,0.02776856,96.6478889],[4.53414729,0.02777028,96.6487332],[4.53414782,0.027772,96.64957768],[4.53414836,0.02777373,96.65042234],[4.53414889,0.02777545,96.65126719],[4.53414942,0.02777717,96.65211223],[4.53414996,0.02777889,96.65295747],[4.53415049,0.02778062,96.65380291],[4.53415102,0.02778234,96.65464856],[4.53415156,0.02778406,96.65549442],[4.53415209,0.02778578,96.65634049],[4.53415262,0.02778751,96.65718678],[4.53415316,0.02778923,96.65803329],[4.53415369,0.02779095,96.65888003],[4.53415422,0.02779267,96.65972701],[4.53415476,0.02779439,96.66057422],[4.53415529,0.02779612,96.66142167],[4.53415582,0.02779784,96.66226937],[4.53415636,0.02779956,96.66311733],[4.53415689,0.02780128,96.66396554],[4.53415742,0.02780301,96.66481401],[4.53415796,0.02780473,96.66566275],[4.53415849,0.02780645,96.66651176],[4.53415902,0.02780817,96.66736105],[4.53415956,0.02780989,96.66821063],[4.53416009,0.02781162,96.66906049],[4.53416063,0.02781334,96.66991064],[4.53416116,0.02781506,96.67076109],[4.53416169,0.02781678,96.67161185],[4.53416223,0.0278185,96.67246291],[4.53416276,0.02782023,96.67331429],[4.5341633,0.02782195,96.67416599],[4.53416383,0.02782367,96.67501802],[4.53416437,0.02782539,96.67587038],[4.5341649,0.02782711,96.67672307],[4.53416544,0.02782884,96.67757611],[4.53416597,0.02783056,96.6784295],[4.53416651,0.02783228,96.67928324],[4.53416704,0.027834,96.68013734],[4.53416758,0.02783572,96.6809918],[4.53416811,0.02783744,96.68184661],[4.53416865,0.02783917,96.68270177],[4.53416919,0.02784089,96.68355727],[4.53416972,0.02784261,96.6844131],[4.53417026,0.02784433,96.68526925],[4.53417079,0.02784605,96.68612572],[4.53417133,0.02784777,96.6869825],[4.53417187,0.0278495,96.68783959],[4.5341724,0.02785122,96.68869696],[4.53417294,0.02785294,96.68955463],[4.53417348,0.02785466,96.69041257],[4.53417401,0.02785638,96.69127079],[4.53417455,0.0278581,96.69212927],[4.53417509,0.02785982,96.69298801],[4.53417562,0.02786154,96.69384701],[4.53417616,0.02786326,96.69470624],[4.5341767,0.02786499,96.69556571],[4.53417724,0.02786671,96.69642541],[4.53417777,0.02786843,96.69728532],[4.53417831,0.02787015,96.69814545],[4.53417885,0.02787187,96.69900578],[4.53417939,0.02787359,96.69986631],[4.53417993,0.02787531,96.70072703],[4.53418046,0.02787703,96.70158793],[4.534181,0.02787875,96.70244901],[4.53418154,0.02788047,96.70331024],[4.53418208,0.02788219,96.70417164],[4.53418262,0.02788392,96.70503319],[4.53418315,0.02788564,96.70589487],[4.53418369,0.02788736,96.70675669],[4.53418423,0.02788908,96.70761864],[4.53418477,0.0278908,96.7084807],[4.53418531,0.02789252,96.70934288],[4.53418585,0.02789424,96.71020515],[4.53418639,0.02789596,96.71106752],[4.53418693,0.02789768,96.71192997],[4.53418747,0.0278994,96.71279249],[4.534188,0.02790112,96.71365509],[4.53418854,0.02790284,96.71451775],[4.53418908,0.02790456,96.71538045],[4.53418962,0.02790628,96.7162432],[4.53419016,0.027908,96.71710599],[4.5341907,0.02790972,96.7179688],[4.53419124,0.02791144,96.71883162],[4.53419178,0.02791316,96.71969446],[4.53419232,0.02791489,96.7205573],[4.53419286,0.02791661,96.72142011],[4.5341934,0.02791833,96.72228282],[4.53419394,0.02792005,96.72314533],[4.53419448,0.02792177,96.72400755],[4.53419502,0.02792349,96.72486937],[4.53419556,0.02792521,96.72573071],[4.5341961,0.02792693,96.72659146],[4.53419664,0.02792865,96.72745153],[4.53419718,0.02793037,96.72831081],[4.53419772,0.02793209,96.72916922],[4.53419825,0.02793381,96.73002664],[4.53419879,0.02793553,96.73088299],[4.53419933,0.02793725,96.73173816],[4.53419987,0.02793897,96.73259205],[4.53420041,0.02794069,96.73344456],[4.53420094,0.02794241,96.73429559],[4.53420148,0.02794414,96.73514504],[4.53420202,0.02794586,96.73599281],[4.53420255,0.02794758,96.7368388],[4.53420309,0.0279493,96.7376829],[4.53420362,0.02795102,96.73852501],[4.53420415,0.02795274,96.73936502],[4.53420469,0.02795447,96.74020285],[4.53420522,0.02795619,96.74103837],[4.53420575,0.02795791,96.74187152],[4.53420628,0.02795964,96.74270231],[4.53420681,0.02796136,96.74353078],[4.53420734,0.02796308,96.74435698],[4.53420787,0.02796481,96.74518095],[4.5342084,0.02796653,96.74600273],[4.53420893,0.02796825,96.74682237],[4.53420946,0.02796998,96.74763991],[4.53420999,0.0279717,96.74845539],[4.53421051,0.02797343,96.74926886],[4.53421104,0.02797515,96.75008037],[4.53421156,0.02797688,96.75088995],[4.53421209,0.0279786,96.75169767],[4.53421261,0.02798033,96.75250355],[4.53421314,0.02798205,96.75330765],[4.53421366,0.02798378,96.75411001],[4.53421419,0.0279855,96.75491068],[4.53421471,0.02798723,96.7557097],[4.53421523,0.02798895,96.75650713],[4.53421575,0.02799068,96.75730301],[4.53421628,0.0279924,96.75809739],[4.5342168,0.02799413,96.75889031],[4.53421732,0.02799586,96.75968182],[4.53421784,0.02799758,96.76047198],[4.53421836,0.02799931,96.76126083],[4.53421888,0.02800103,96.76204842],[4.5342194,0.02800276,96.76283481],[4.53421992,0.02800449,96.76362004],[4.53422044,0.02800621,96.76440416],[4.53422096,0.02800794,96.76518724],[4.53422148,0.02800967,96.76596931],[4.534222,0.02801139,96.76675042],[4.53422252,0.02801312,96.76753064],[4.53422304,0.02801485,96.76831001],[4.53422356,0.02801657,96.76908859],[4.53422408,0.0280183,96.76986642],[4.5342246,0.02802003,96.77064356],[4.53422512,0.02802175,96.77142007],[4.53422564,0.02802348,96.77219599],[4.53422616,0.02802521,96.77297137],[4.53422667,0.02802693,96.77374628],[4.53422719,0.02802866,96.77452076],[4.53422771,0.02803039,96.77529487],[4.53422823,0.02803211,96.77606865],[4.53422875,0.02803384,96.77684217],[4.53422927,0.02803557,96.77761548],[4.53422979,0.02803729,96.77838863],[4.53423031,0.02803902,96.77916167],[4.53423083,0.02804075,96.77993467],[4.53423135,0.02804247,96.78070766],[4.53423187,0.0280442,96.78148072],[4.53423239,0.02804592,96.78225388],[4.53423292,0.02804765,96.78302721],[4.53423344,0.02804938,96.78380076],[4.53423396,0.0280511,96.78457459],[4.53423448,0.02805283,96.78534874],[4.534235,0.02805455,96.78612328],[4.53423553,0.02805628,96.78689825],[4.53423605,0.028058,96.78767372],[4.53423657,0.02805973,96.78844973],[4.5342371,0.02806146,96.78922635],[4.53423762,0.02806318,96.79000362],[4.53423815,0.02806491,96.7907816],[4.53423867,0.02806663,96.79156035],[4.5342392,0.02806835,96.79233991],[4.53423972,0.02807008,96.79312035],[4.53424025,0.0280718,96.79390172],[4.53424078,0.02807353,96.79468407],[4.53424131,0.02807525,96.79546739],[4.53424184,0.02807698,96.79625163],[4.53424236,0.0280787,96.79703672],[4.53424289,0.02808042,96.7978226],[4.53424342,0.02808215,96.7986092],[4.53424395,0.02808387,96.79939647],[4.53424448,0.02808559,96.80018433],[4.53424502,0.02808732,96.80097273],[4.53424555,0.02808904,96.80176159],[4.53424608,0.02809076,96.80255086],[4.53424661,0.02809248,96.80334047],[4.53424714,0.02809421,96.80413035],[4.53424768,0.02809593,96.80492044],[4.53424821,0.02809765,96.80571068],[4.53424874,0.02809937,96.806501],[4.53424928,0.0281011,96.80729133],[4.53424981,0.02810282,96.80808161],[4.53425035,0.02810454,96.80887178],[4.53425088,0.02810626,96.80966176],[4.53425141,0.02810798,96.8104515],[4.53425195,0.02810971,96.81124093],[4.53425248,0.02811143,96.81202998],[4.53425302,0.02811315,96.81281859],[4.53425355,0.02811487,96.81360668],[4.53425409,0.02811659,96.81439421],[4.53425462,0.02811831,96.81518109],[4.53425516,0.02812004,96.81596727],[4.53425569,0.02812176,96.81675267],[4.53425623,0.02812348,96.81753724],[4.53425676,0.0281252,96.8183209],[4.5342573,0.02812692,96.81910359],[4.53425784,0.02812865,96.81988525],[4.53425837,0.02813037,96.82066581],[4.53425891,0.02813209,96.8214452],[4.53425944,0.02813381,96.82222336],[4.53425997,0.02813553,96.82300023],[4.53426051,0.02813725,96.82377573],[4.53426104,0.02813898,96.8245498],[4.53426158,0.0281407,96.82532238],[4.53426211,0.02814242,96.82609341],[4.53426265,0.02814414,96.8268628],[4.53426318,0.02814587,96.82763052],[4.53426371,0.02814759,96.82839647],[4.53426425,0.02814931,96.82916062],[4.53426478,0.02815103,96.82992288],[4.53426531,0.02815276,96.83068319],[4.53426584,0.02815448,96.83144149],[4.53426637,0.0281562,96.83219772],[4.53426691,0.02815792,96.83295181],[4.53426744,0.02815965,96.8337037],[4.53426797,0.02816137,96.83445333],[4.5342685,0.02816309,96.83520063],[4.53426903,0.02816482,96.83594554],[4.53426956,0.02816654,96.83668799],[4.53427008,0.02816827,96.83742793],[4.53427061,0.02816999,96.8381653],[4.53427114,0.02817171,96.83890008],[4.53427167,0.02817344,96.83963231],[4.53427219,0.02817516,96.84036204],[4.53427272,0.02817689,96.84108932],[4.53427324,0.02817861,96.84181418],[4.53427377,0.02818034,96.84253666],[4.53427429,0.02818206,96.84325681],[4.53427482,0.02818379,96.84397467],[4.53427534,0.02818551,96.84469029],[4.53427587,0.02818724,96.8454037],[4.53427639,0.02818896,96.84611495],[4.53427691,0.02819069,96.84682409],[4.53427743,0.02819241,96.84753114],[4.53427796,0.02819414,96.84823617],[4.53427848,0.02819587,96.84893921],[4.534279,0.02819759,96.8496403],[4.53427952,0.02819932,96.85033948],[4.53428004,0.02820104,96.8510368],[4.53428056,0.02820277,96.85173231],[4.53428108,0.0282045,96.85242603],[4.5342816,0.02820622,96.85311802],[4.53428212,0.02820795,96.85380832],[4.53428264,0.02820968,96.85449697],[4.53428316,0.0282114,96.85518401],[4.53428368,0.02821313,96.85586948],[4.5342842,0.02821486,96.85655343],[4.53428472,0.02821659,96.8572359],[4.53428075,0.02821782,96.84518629]]],"type":"Polygon"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":1,"type":"shoulder","predecessorId":0,"sOffset":0.0}},{"geometry":{"coordinates":[[[4.53428472,0.02821659,96.8572359],[4.5342842,0.02821486,96.85655343],[4.53428368,0.02821313,96.85586948],[4.53428316,0.0282114,96.85518401],[4.53428264,0.02820968,96.85449697],[4.53428212,0.02820795,96.85380832],[4.5342816,0.02820622,96.85311802],[4.53428108,0.0282045,96.85242603],[4.53428056,0.02820277,96.85173231],[4.53428004,0.02820104,96.8510368],[4.53427952,0.02819932,96.85033948],[4.534279,0.02819759,96.8496403],[4.53427848,0.02819587,96.84893921],[4.53427796,0.02819414,96.84823617],[4.53427743,0.02819241,96.84753114],[4.53427691,0.02819069,96.84682409],[4.53427639,0.02818896,96.84611495],[4.53427587,0.02818724,96.8454037],[4.53427534,0.02818551,96.84469029],[4.53427482,0.02818379,96.84397467],[4.53427429,0.02818206,96.84325681],[4.53427377,0.02818034,96.84253666],[4.53427324,0.02817861,96.84181418],[4.53427272,0.02817689,96.84108932],[4.53427219,0.02817516,96.84036204],[4.53427167,0.02817344,96.83963231],[4.53427114,0.02817171,96.83890008],[4.53427061,0.02816999,96.8381653],[4.53427008,0.02816827,96.83742793],[4.53426956,0.02816654,96.83668799],[4.53426903,0.02816482,96.83594554],[4.5342685,0.02816309,96.83520063],[4.53426797,0.02816137,96.83445333],[4.53426744,0.02815965,96.8337037],[4.53426691,0.02815792,96.83295181],[4.53426637,0.0281562,96.83219772],[4.53426584,0.02815448,96.83144149],[4.53426531,0.02815276,96.83068319],[4.53426478,0.02815103,96.82992288],[4.53426425,0.02814931,96.82916062],[4.53426371,0.02814759,96.82839647],[4.53426318,0.02814587,96.82763052],[4.53426265,0.02814414,96.8268628],[4.53426211,0.02814242,96.82609341],[4.53426158,0.0281407,96.82532238],[4.53426104,0.02813898,96.8245498],[4.53426051,0.02813725,96.82377573],[4.53425997,0.02813553,96.82300023],[4.53425944,0.02813381,96.82222336],[4.53425891,0.02813209,96.8214452],[4.53425837,0.02813037,96.82066581],[4.53425784,0.02812865,96.81988525],[4.5342573,0.02812692,96.81910359],[4.53425676,0.0281252,96.8183209],[4.53425623,0.02812348,96.81753724],[4.53425569,0.02812176,96.81675267],[4.53425516,0.02812004,96.81596727],[4.53425462,0.02811831,96.81518109],[4.53425409,0.02811659,96.81439421],[4.53425355,0.02811487,96.81360668],[4.53425302,0.02811315,96.81281859],[4.53425248,0.02811143,96.81202998],[4.53425195,0.02810971,96.81124093],[4.53425141,0.02810798,96.8104515],[4.53425088,0.02810626,96.80966176],[4.53425035,0.02810454,96.80887178],[4.53424981,0.02810282,96.80808161],[4.53424928,0.0281011,96.80729133],[4.53424874,0.02809937,96.806501],[4.53424821,0.02809765,96.80571068],[4.53424768,0.02809593,96.80492044],[4.53424714,0.02809421,96.80413035],[4.53424661,0.02809248,96.80334047],[4.53424608,0.02809076,96.80255086],[4.53424555,0.02808904,96.80176159],[4.53424502,0.02808732,96.80097273],[4.53424448,0.02808559,96.80018433],[4.53424395,0.02808387,96.79939647],[4.53424342,0.02808215,96.7986092],[4.53424289,0.02808042,96.7978226],[4.53424236,0.0280787,96.79703672],[4.53424184,0.02807698,96.79625163],[4.53424131,0.02807525,96.79546739],[4.53424078,0.02807353,96.79468407],[4.53424025,0.0280718,96.79390172],[4.53423972,0.02807008,96.79312035],[4.5342392,0.02806835,96.79233991],[4.53423867,0.02806663,96.79156035],[4.53423815,0.02806491,96.7907816],[4.53423762,0.02806318,96.79000362],[4.5342371,0.02806146,96.78922635],[4.53423657,0.02805973,96.78844973],[4.53423605,0.028058,96.78767372],[4.53423553,0.02805628,96.78689825],[4.534235,0.02805455,96.78612328],[4.53423448,0.02805283,96.78534874],[4.53423396,0.0280511,96.78457459],[4.53423344,0.02804938,96.78380076],[4.53423292,0.02804765,96.78302721],[4.53423239,0.02804592,96.78225388],[4.53423187,0.0280442,96.78148072],[4.53423135,0.02804247,96.78070766],[4.53423083,0.02804075,96.77993467],[4.53423031,0.02803902,96.77916167],[4.53422979,0.02803729,96.77838863],[4.53422927,0.02803557,96.77761548],[4.53422875,0.02803384,96.77684217],[4.53422823,0.02803211,96.77606865],[4.53422771,0.02803039,96.77529487],[4.53422719,0.02802866,96.77452076],[4.53422667,0.02802693,96.77374628],[4.53422616,0.02802521,96.77297137],[4.53422564,0.02802348,96.77219599],[4.53422512,0.02802175,96.77142007],[4.5342246,0.02802003,96.77064356],[4.53422408,0.0280183,96.76986642],[4.53422356,0.02801657,96.76908859],[4.53422304,0.02801485,96.76831001],[4.53422252,0.02801312,96.76753064],[4.534222,0.02801139,96.76675042],[4.53422148,0.02800967,96.76596931],[4.53422096,0.02800794,96.76518724],[4.53422044,0.02800621,96.76440416],[4.53421992,0.02800449,96.76362004],[4.5342194,0.02800276,96.76283481],[4.53421888,0.02800103,96.76204842],[4.53421836,0.02799931,96.76126083],[4.53421784,0.02799758,96.76047198],[4.53421732,0.02799586,96.75968182],[4.5342168,0.02799413,96.75889031],[4.53421628,0.0279924,96.75809739],[4.53421575,0.02799068,96.75730301],[4.53421523,0.02798895,96.75650713],[4.53421471,0.02798723,96.7557097],[4.53421419,0.0279855,96.75491068],[4.53421366,0.02798378,96.75411001],[4.53421314,0.02798205,96.75330765],[4.53421261,0.02798033,96.75250355],[4.53421209,0.0279786,96.75169767],[4.53421156,0.02797688,96.75088995],[4.53421104,0.02797515,96.75008037],[4.53421051,0.02797343,96.74926886],[4.53420999,0.0279717,96.74845539],[4.53420946,0.02796998,96.74763991],[4.53420893,0.02796825,96.74682237],[4.5342084,0.02796653,96.74600273],[4.53420787,0.02796481,96.74518095],[4.53420734,0.02796308,96.74435698],[4.53420681,0.02796136,96.74353078],[4.53420628,0.02795964,96.74270231],[4.53420575,0.02795791,96.74187152],[4.53420522,0.02795619,96.74103837],[4.53420469,0.02795447,96.74020285],[4.53420415,0.02795274,96.73936502],[4.53420362,0.02795102,96.73852501],[4.53420309,0.0279493,96.7376829],[4.53420255,0.02794758,96.7368388],[4.53420202,0.02794586,96.73599281],[4.53420148,0.02794414,96.73514504],[4.53420094,0.02794241,96.73429559],[4.53420041,0.02794069,96.73344456],[4.53419987,0.02793897,96.73259205],[4.53419933,0.02793725,96.73173816],[4.53419879,0.02793553,96.73088299],[4.53419825,0.02793381,96.73002664],[4.53419772,0.02793209,96.72916922],[4.53419718,0.02793037,96.72831081],[4.53419664,0.02792865,96.72745153],[4.5341961,0.02792693,96.72659146],[4.53419556,0.02792521,96.72573071],[4.53419502,0.02792349,96.72486937],[4.53419448,0.02792177,96.72400755],[4.53419394,0.02792005,96.72314533],[4.5341934,0.02791833,96.72228282],[4.53419286,0.02791661,96.72142011],[4.53419232,0.02791489,96.7205573],[4.53419178,0.02791316,96.71969446],[4.53419124,0.02791144,96.71883162],[4.5341907,0.02790972,96.7179688],[4.53419016,0.027908,96.71710599],[4.53418962,0.02790628,96.7162432],[4.53418908,0.02790456,96.71538045],[4.53418854,0.02790284,96.71451775],[4.534188,0.02790112,96.71365509],[4.53418747,0.0278994,96.71279249],[4.53418693,0.02789768,96.71192997],[4.53418639,0.02789596,96.71106752],[4.53418585,0.02789424,96.71020515],[4.53418531,0.02789252,96.70934288],[4.53418477,0.0278908,96.7084807],[4.53418423,0.02788908,96.70761864],[4.53418369,0.02788736,96.70675669],[4.53418315,0.02788564,96.70589487],[4.53418262,0.02788392,96.70503319],[4.53418208,0.02788219,96.70417164],[4.53418154,0.02788047,96.70331024],[4.534181,0.02787875,96.70244901],[4.53418046,0.02787703,96.70158793],[4.53417993,0.02787531,96.70072703],[4.53417939,0.02787359,96.69986631],[4.53417885,0.02787187,96.69900578],[4.53417831,0.02787015,96.69814545],[4.53417777,0.02786843,96.69728532],[4.53417724,0.02786671,96.69642541],[4.5341767,0.02786499,96.69556571],[4.53417616,0.02786326,96.69470624],[4.53417562,0.02786154,96.69384701],[4.53417509,0.02785982,96.69298801],[4.53417455,0.0278581,96.69212927],[4.53417401,0.02785638,96.69127079],[4.53417348,0.02785466,96.69041257],[4.53417294,0.02785294,96.68955463],[4.5341724,0.02785122,96.68869696],[4.53417187,0.0278495,96.68783959],[4.53417133,0.02784777,96.6869825],[4.53417079,0.02784605,96.68612572],[4.53417026,0.02784433,96.68526925],[4.53416972,0.02784261,96.6844131],[4.53416919,0.02784089,96.68355727],[4.53416865,0.02783917,96.68270177],[4.53416811,0.02783744,96.68184661],[4.53416758,0.02783572,96.6809918],[4.53416704,0.027834,96.68013734],[4.53416651,0.02783228,96.67928324],[4.53416597,0.02783056,96.6784295],[4.53416544,0.02782884,96.67757611],[4.5341649,0.02782711,96.67672307],[4.53416437,0.02782539,96.67587038],[4.53416383,0.02782367,96.67501802],[4.5341633,0.02782195,96.67416599],[4.53416276,0.02782023,96.67331429],[4.53416223,0.0278185,96.67246291],[4.53416169,0.02781678,96.67161185],[4.53416116,0.02781506,96.67076109],[4.53416063,0.02781334,96.66991064],[4.53416009,0.02781162,96.66906049],[4.53415956,0.02780989,96.66821063],[4.53415902,0.02780817,96.66736105],[4.53415849,0.02780645,96.66651176],[4.53415796,0.02780473,96.66566275],[4.53415742,0.02780301,96.66481401],[4.53415689,0.02780128,96.66396554],[4.53415636,0.02779956,96.66311733],[4.53415582,0.02779784,96.66226937],[4.53415529,0.02779612,96.66142167],[4.53415476,0.02779439,96.66057422],[4.53415422,0.02779267,96.65972701],[4.53415369,0.02779095,96.65888003],[4.53415316,0.02778923,96.65803329],[4.53415262,0.02778751,96.65718678],[4.53415209,0.02778578,96.65634049],[4.53415156,0.02778406,96.65549442],[4.53415102,0.02778234,96.65464856],[4.53415049,0.02778062,96.65380291],[4.53414996,0.02777889,96.65295747],[4.53414942,0.02777717,96.65211223],[4.53414889,0.02777545,96.65126719],[4.53414836,0.02777373,96.65042234],[4.53414782,0.027772,96.64957768],[4.53414729,0.02777028,96.6487332],[4.53414676,0.02776856,96.6478889],[4.53414623,0.02776684,96.64704477],[4.53414569,0.02776511,96.64620082],[4.53414516,0.02776339,96.64535704],[4.53414463,0.02776167,96.64451342],[4.53414409,0.02775995,96.64366996],[4.53414356,0.02775822,96.64282666],[4.53414303,0.0277565,96.64198351],[4.53414249,0.02775478,96.64114051],[4.53414196,0.02775306,96.64029769],[4.53414143,0.02775133,96.63945506],[4.53414089,0.02774961,96.63861263],[4.53414036,0.02774789,96.63777042],[4.53413983,0.02774617,96.63692843],[4.53413929,0.02774445,96.6360867],[4.53413876,0.02774272,96.63524522],[4.53413823,0.027741,96.63440402],[4.53413769,0.02773928,96.63356311],[4.53413716,0.02773756,96.6327225],[4.53413663,0.02773583,96.6318822],[4.5341361,0.02773411,96.63104224],[4.53413556,0.02773239,96.63020263],[4.53413503,0.02773067,96.62936338],[4.5341345,0.02772894,96.6285245],[4.53413396,0.02772722,96.627686],[4.53413343,0.0277255,96.62684791],[4.5341329,0.02772378,96.62601024],[4.53413236,0.02772205,96.62517299],[4.53413183,0.02772033,96.62433619],[4.5341313,0.02771861,96.62349984],[4.53413077,0.02771689,96.62266397],[4.53413023,0.02771516,96.62182858],[4.5341297,0.02771344,96.62099369],[4.53412917,0.02771172,96.6201593],[4.53412864,0.02771,96.61932545],[4.5341281,0.02770827,96.61849213],[4.53412757,0.02770655,96.61765936],[4.53412704,0.02770483,96.61682716],[4.53412651,0.02770311,96.61599555],[4.53412598,0.02770138,96.61516453],[4.53412544,0.02769966,96.61433412],[4.53412491,0.02769794,96.61350434],[4.53412438,0.02769621,96.6126752],[4.53412385,0.02769449,96.61184672],[4.53412332,0.02769277,96.6110189],[4.53412279,0.02769105,96.61019177],[4.53412225,0.02768932,96.60936534],[4.53412172,0.0276876,96.60853963],[4.53412119,0.02768588,96.60771464],[4.53412066,0.02768415,96.6068904],[4.53412013,0.02768243,96.60606691],[4.5341196,0.02768071,96.60524419],[4.53411907,0.02767898,96.60442226],[4.53411854,0.02767726,96.60360113],[4.53411801,0.02767554,96.60278081],[4.53411748,0.02767381,96.60196132],[4.53411695,0.02767209,96.60114267],[4.53411642,0.02767037,96.60032488],[4.53411589,0.02766864,96.59950795],[4.53411536,0.02766692,96.59869192],[4.53411483,0.0276652,96.59787677],[4.5341143,0.02766347,96.59706254],[4.53411378,0.02766175,96.59624922],[4.53411325,0.02766002,96.59543685],[4.53411272,0.0276583,96.59462542],[4.53411219,0.02765658,96.59381494],[4.53411166,0.02765485,96.59300544],[4.53411114,0.02765313,96.59219689],[4.53411061,0.0276514,96.59138926],[4.53411008,0.02764968,96.59058254],[4.53410955,0.02764796,96.5897767],[4.53410903,0.02764623,96.58897172],[4.5341085,0.02764451,96.58816758],[4.53410797,0.02764278,96.58736425],[4.53410745,0.02764106,96.58656171],[4.53410692,0.02763933,96.58575994],[4.53410639,0.02763761,96.58495892],[4.53410587,0.02763588,96.58415862],[4.53410534,0.02763416,96.58335903],[4.53410481,0.02763244,96.58256013],[4.53410429,0.02763071,96.58176188],[4.53410376,0.02762899,96.58096428],[4.53410323,0.02762726,96.5801673],[4.53410271,0.02762554,96.57937091],[4.53410218,0.02762381,96.5785751],[4.53410165,0.02762209,96.57777986],[4.53410113,0.02762036,96.57698514],[4.5341006,0.02761864,96.57619095],[4.53410007,0.02761692,96.57539725],[4.53409955,0.02761519,96.57460403],[4.53409902,0.02761347,96.57381126],[4.53409849,0.02761174,96.57301893],[4.53409797,0.02761002,96.57222701],[4.53409744,0.02760829,96.57143549],[4.53409691,0.02760657,96.57064435],[4.53409638,0.02760484,96.56985356],[4.53409586,0.02760312,96.56906311],[4.53409533,0.0276014,96.56827298],[4.5340948,0.02759967,96.56748314],[4.53409427,0.02759795,96.56669358],[4.53409375,0.02759622,96.56590429],[4.53409322,0.0275945,96.56511523],[4.53409269,0.02759278,96.56432639],[4.53409216,0.02759105,96.56353775],[4.53409163,0.02758933,96.5627493],[4.5340911,0.02758761,96.561961],[4.53409057,0.02758588,96.56117285],[4.53409004,0.02758416,96.56038483],[4.53408951,0.02758244,96.55959691],[4.53408898,0.02758071,96.55880907],[4.53408845,0.02757899,96.5580213],[4.53408792,0.02757727,96.55723358],[4.53408738,0.02757554,96.55644589],[4.53408685,0.02757382,96.5556582],[4.53408632,0.0275721,96.55487051],[4.53408579,0.02757038,96.55408279],[4.53408525,0.02756865,96.55329502],[4.53408472,0.02756693,96.55250723],[4.53408419,0.02756521,96.55171945],[4.53408365,0.02756349,96.55093169],[4.53408312,0.02756177,96.55014398],[4.53408258,0.02756004,96.54935635],[4.53408205,0.02755832,96.54856882],[4.53408151,0.0275566,96.54778142],[4.53408097,0.02755488,96.54699417],[4.53408044,0.02755316,96.5462071],[4.5340799,0.02755144,96.54542023],[4.53407936,0.02754972,96.54463358],[4.53407883,0.02754799,96.54384717],[4.53407829,0.02754627,96.54306105],[4.53407775,0.02754455,96.54227521],[4.53407721,0.02754283,96.5414897],[4.53407667,0.02754111,96.54070453],[4.53407613,0.02753939,96.53991973],[4.53407559,0.02753767,96.53913532],[4.53407505,0.02753595,96.53835133],[4.53407451,0.02753423,96.53756777],[4.53407397,0.02753251,96.53678468],[4.53407343,0.02753079,96.53600206],[4.53407289,0.02752907,96.53521996],[4.53407235,0.02752735,96.53443839],[4.53407181,0.02752563,96.53365737],[4.53407127,0.02752391,96.53287692],[4.53407073,0.02752219,96.53209708],[4.53407019,0.02752047,96.53131785],[4.53406965,0.02751875,96.53053928],[4.53406911,0.02751703,96.52976136],[4.53406856,0.02751531,96.52898414],[4.53406802,0.02751359,96.52820764],[4.53406748,0.02751187,96.52743186],[4.53406694,0.02751015,96.52665685],[4.5340664,0.02750843,96.52588261],[4.53406585,0.02750671,96.52510918],[4.53406531,0.02750499,96.52433657],[4.53406477,0.02750327,96.52356481],[4.53406422,0.02750155,96.52279391],[4.53406368,0.02749983,96.52202391],[4.53406314,0.02749812,96.52125483],[4.5340626,0.0274964,96.52048668],[4.53406205,0.02749468,96.51971949],[4.53406151,0.02749296,96.51895328],[4.53406097,0.02749124,96.51818807],[4.53406042,0.02748952,96.51742389],[4.53405988,0.0274878,96.51666076],[4.53405934,0.02748608,96.5158987],[4.53405879,0.02748436,96.51513773],[4.53405825,0.02748264,96.51437787],[4.53405771,0.02748092,96.51361916],[4.53405716,0.0274792,96.5128616],[4.53405662,0.02747748,96.51210523],[4.53405608,0.02747577,96.51135006],[4.53405553,0.02747405,96.51059612],[4.53405499,0.02747233,96.50984343],[4.53405445,0.02747061,96.50909202],[4.5340539,0.02746889,96.5083419],[4.53405336,0.02746717,96.50759309],[4.53405282,0.02746545,96.50684564],[4.53405227,0.02746373,96.50609954],[4.53405173,0.02746201,96.50535484],[4.53405119,0.02746029,96.50461154],[4.53405064,0.02745857,96.50386968],[4.5340501,0.02745685,96.50312928],[4.53404956,0.02745513,96.50239036],[4.53404902,0.02745341,96.50165294],[4.53404847,0.02745169,96.50091706],[4.53404793,0.02744997,96.50018272],[4.53404739,0.02744825,96.49944997],[4.53404685,0.02744653,96.49871881],[4.53404631,0.02744482,96.49798928],[4.53404577,0.0274431,96.4972614],[4.53404522,0.02744138,96.49653519],[4.53404468,0.02743966,96.49581068],[4.53404414,0.02743794,96.4950879],[4.5340436,0.02743622,96.49436686],[4.53404306,0.0274345,96.4936476],[4.53404252,0.02743277,96.49293014],[4.53404198,0.02743105,96.49221451],[4.53404144,0.02742933,96.49150072],[4.5340409,0.02742761,96.49078881],[4.53404036,0.02742589,96.49007881],[4.53403982,0.02742417,96.48937073],[4.53403928,0.02742245,96.48866461],[4.53403875,0.02742073,96.48796048],[4.53403821,0.02741901,96.48725835],[4.53403767,0.02741729,96.48655826],[4.53403713,0.02741557,96.48586024],[4.5340366,0.02741385,96.48516431],[4.53403606,0.02741213,96.4844705],[4.53403552,0.02741041,96.48377884],[4.53403499,0.02740868,96.48308936],[4.53403445,0.02740696,96.48240209],[4.53403391,0.02740524,96.48171705],[4.53403338,0.02740352,96.48103428],[4.53403284,0.0274018,96.48035381],[4.53403231,0.02740007,96.47967566],[4.53403177,0.02739835,96.47899987],[4.53403124,0.02739663,96.47832646],[4.53403071,0.02739491,96.47765547],[4.53403017,0.02739319,96.47698694],[4.53402964,0.02739146,96.47632088],[4.53402911,0.02738974,96.47565734],[4.53402858,0.02738802,96.47499634],[4.53402805,0.02738629,96.4743379],[4.53402751,0.02738457,96.47368198],[4.53402698,0.02738285,96.47302858],[4.53402645,0.02738112,96.47237768],[4.53402592,0.0273794,96.47172924],[4.53402539,0.02737768,96.47108325],[4.53402486,0.02737595,96.4704397],[4.53402434,0.02737423,96.46979855],[4.53402381,0.02737251,96.46915978],[4.53402328,0.02737078,96.46852338],[4.53402275,0.02736906,96.46788926],[4.53402222,0.02736733,96.46725737],[4.5340217,0.02736561,96.46662762],[4.53402117,0.02736389,96.46599994],[4.53402064,0.02736216,96.46537426],[4.53402011,0.02736044,96.46475051],[4.53401959,0.02735871,96.46412861],[4.53401906,0.02735699,96.46350848],[4.53401854,0.02735526,96.46289006],[4.53401801,0.02735354,96.46227326],[4.53401748,0.02735181,96.461658],[4.53401696,0.02735009,96.46104423],[4.53401643,0.02734836,96.46043184],[4.53401591,0.02734664,96.45982078],[4.53401538,0.02734491,96.45921096],[4.53401486,0.02734319,96.4586023],[4.53401433,0.02734147,96.45799472],[4.5340138,0.02733974,96.45738815],[4.53401328,0.02733802,96.45678251],[4.53401275,0.02733629,96.45617771],[4.53401223,0.02733457,96.45557368],[4.5340117,0.02733284,96.45497034],[4.53401118,0.02733112,96.4543676],[4.53401065,0.02732939,96.45376538],[4.53401013,0.02732767,96.4531636],[4.5340096,0.02732594,96.45256218],[4.53400908,0.02732422,96.45196103],[4.53400855,0.02732249,96.45136008],[4.53400802,0.02732077,96.45075922],[4.5340075,0.02731904,96.45015839],[4.53400697,0.02731732,96.4495575],[4.53400645,0.02731559,96.44895645],[4.53400592,0.02731387,96.44835517],[4.53400539,0.02731214,96.44775357],[4.53400487,0.02731042,96.44715156],[4.53400434,0.02730869,96.44654904],[4.53400381,0.02730697,96.44594594],[4.53400328,0.02730525,96.44534217],[4.53400276,0.02730352,96.44473764],[4.53400223,0.0273018,96.44413224],[4.5340017,0.02730007,96.44352591],[4.53400117,0.02729835,96.44291854],[4.53400064,0.02729663,96.44231005],[4.53400011,0.0272949,96.44170034],[4.53399958,0.02729318,96.44108932],[4.53399905,0.02729146,96.44047691],[4.53399852,0.02728973,96.439863],[4.53399799,0.02728801,96.4392475],[4.53399746,0.02728629,96.43863033],[4.53399693,0.02728456,96.43801138],[4.5339964,0.02728284,96.43739057],[4.53399587,0.02728112,96.4367678],[4.53399533,0.02727939,96.43614297],[4.5339948,0.02727767,96.435516],[4.53399427,0.02727595,96.43488677],[4.53399373,0.02727423,96.43425521],[4.5339932,0.02727251,96.43362121],[4.53399266,0.02727078,96.43298468],[4.53399213,0.02726906,96.43234553],[4.53399159,0.02726734,96.43170369],[4.53399105,0.02726562,96.43105916],[4.53399052,0.0272639,96.43041191],[4.53398998,0.02726218,96.42976195],[4.53398944,0.02726046,96.42910925],[4.5339889,0.02725874,96.4284538],[4.53398836,0.02725701,96.4277956],[4.53398782,0.02725529,96.42713463],[4.53398728,0.02725357,96.42647089],[4.53398674,0.02725185,96.42580435],[4.5339862,0.02725013,96.42513502],[4.53398566,0.02724841,96.42446289],[4.53398512,0.02724669,96.42378795],[4.53398458,0.02724497,96.42311019],[4.53398404,0.02724325,96.42242961],[4.53398349,0.02724153,96.4217462],[4.53398295,0.02723982,96.42105995],[4.53398241,0.0272381,96.42037086],[4.53398187,0.02723638,96.41967893],[4.53398132,0.02723466,96.41898414],[4.53398078,0.02723294,96.41828651],[4.53398023,0.02723122,96.41758602],[4.53397969,0.0272295,96.41688268],[4.53397915,0.02722778,96.41617647],[4.5339786,0.02722606,96.41546741],[4.53397806,0.02722434,96.41475548],[4.53397751,0.02722262,96.4140407],[4.53397697,0.02722091,96.41332305],[4.53397642,0.02721919,96.41260254],[4.53397588,0.02721747,96.41187917],[4.53397533,0.02721575,96.41115293],[4.53397479,0.02721403,96.41042384],[4.53397424,0.02721231,96.40969189],[4.53397369,0.02721059,96.40895709],[4.53397315,0.02720888,96.40821944],[4.5339726,0.02720716,96.40747893],[4.53397206,0.02720544,96.40673558],[4.53397151,0.02720372,96.40598938],[4.53397097,0.027202,96.40524034],[4.53397042,0.02720028,96.40448846],[4.53396987,0.02719856,96.40373375],[4.53396933,0.02719685,96.40297621],[4.53396878,0.02719513,96.40221584],[4.53396824,0.02719341,96.40145265],[4.53396769,0.02719169,96.40068665],[4.53396715,0.02718997,96.39991782],[4.5339666,0.02718825,96.39914619],[4.53396606,0.02718653,96.39837175],[4.53396551,0.02718482,96.39759451],[4.53396497,0.0271831,96.39681447],[4.53396442,0.02718138,96.39603164],[4.53396388,0.02717966,96.39524601],[4.53396333,0.02717794,96.3944576],[4.53396279,0.02717622,96.3936664],[4.53396225,0.0271745,96.39287248],[4.5339617,0.02717278,96.39207592],[4.53396116,0.02717106,96.39127683],[4.53396062,0.02716934,96.3904753],[4.53396007,0.02716762,96.38967143],[4.53395953,0.0271659,96.38886532],[4.53395899,0.02716418,96.38805707],[4.53395845,0.02716246,96.38724677],[4.53395791,0.02716074,96.38643451],[4.53395737,0.02715902,96.3856204],[4.53395683,0.0271573,96.38480452],[4.53395629,0.02715558,96.38398698],[4.53395575,0.02715386,96.38316786],[4.53395521,0.02715214,96.38234725],[4.53395467,0.02715042,96.38152526],[4.53395413,0.0271487,96.38070196],[4.53395359,0.02714698,96.37987741],[4.53395306,0.02714526,96.37905159],[4.53395252,0.02714354,96.37822449],[4.53395198,0.02714182,96.3773961],[4.53395145,0.0271401,96.37656641],[4.53395091,0.02713837,96.37573541],[4.53395037,0.02713665,96.3749031],[4.53394984,0.02713493,96.37406946],[4.5339493,0.02713321,96.37323447],[4.53394877,0.02713149,96.37239814],[4.53394823,0.02712976,96.37156045],[4.5339477,0.02712804,96.37072139],[4.53394717,0.02712632,96.36988095],[4.53394663,0.0271246,96.36903912],[4.5339461,0.02712288,96.3681959],[4.53394557,0.02712115,96.36735127],[4.53394503,0.02711943,96.36650522],[4.5339445,0.02711771,96.36565775],[4.53394397,0.02711599,96.36480886],[4.53394343,0.02711426,96.36395852],[4.5339429,0.02711254,96.36310675],[4.53394237,0.02711082,96.36225352],[4.53394184,0.02710909,96.36139883],[4.5339413,0.02710737,96.36054268],[4.53394077,0.02710565,96.35968506],[4.53394024,0.02710393,96.35882597],[4.5339397,0.0271022,96.3579654],[4.53393917,0.02710048,96.35710335],[4.53393864,0.02709876,96.35623982],[4.53393811,0.02709704,96.3553748],[4.53393757,0.02709531,96.35450829],[4.53393704,0.02709359,96.35364029],[4.53393651,0.02709187,96.35277083],[4.53393597,0.02709015,96.35189997],[4.53393544,0.02708842,96.35102778],[4.53393491,0.0270867,96.3501543],[4.53393437,0.02708498,96.34927961],[4.53393384,0.02708326,96.34840376],[4.5339333,0.02708154,96.34752681],[4.53393277,0.02707981,96.34664882],[4.53393223,0.02707809,96.34576986],[4.5339317,0.02707637,96.34488999],[4.53393117,0.02707465,96.34400926],[4.53393063,0.02707292,96.34312774],[4.5339301,0.0270712,96.34224548],[4.53392956,0.02706948,96.34136255],[4.53392903,0.02706776,96.34047901],[4.53392849,0.02706604,96.33959492],[4.53392796,0.02706432,96.33871033],[4.53392742,0.02706259,96.33782532],[4.53392689,0.02706087,96.33693993],[4.53392635,0.02705915,96.33605424],[4.53392581,0.02705743,96.33516829],[4.53392528,0.02705571,96.33428216],[4.53392474,0.02705398,96.33339589],[4.53392421,0.02705226,96.33250956],[4.53392367,0.02705054,96.33162321],[4.53392314,0.02704882,96.33073692],[4.5339226,0.0270471,96.32985074],[4.53392206,0.02704538,96.32896473],[4.53392153,0.02704365,96.32807894],[4.53392099,0.02704193,96.32719345],[4.53392046,0.02704021,96.32630831],[4.53391992,0.02703849,96.32542358],[4.53391938,0.02703677,96.32453932],[4.53391885,0.02703505,96.32365559],[4.53391831,0.02703333,96.32277244],[4.53391777,0.0270316,96.32188995],[4.53391724,0.02702988,96.32100816],[4.5339167,0.02702816,96.32012714],[4.53391616,0.02702644,96.31924694],[4.53391563,0.02702472,96.31836763],[4.53391509,0.027023,96.31748927],[4.53391455,0.02702128,96.31661191],[4.53391402,0.02701955,96.31573561],[4.53391348,0.02701783,96.31486043],[4.53391294,0.02701611,96.31398644],[4.53391241,0.02701439,96.31311369],[4.53391187,0.02701267,96.31224223],[4.53391133,0.02701095,96.31137213],[4.53391079,0.02700923,96.31050345],[4.53391026,0.02700751,96.30963624],[4.53390972,0.02700578,96.30877057],[4.53390918,0.02700406,96.30790649],[4.53390865,0.02700234,96.30704406],[4.53390811,0.02700062,96.30618335],[4.53390757,0.0269989,96.3053244],[4.53390704,0.02699718,96.30446728],[4.5339065,0.02699546,96.30361204],[4.53390596,0.02699373,96.30275875],[4.53390543,0.02699201,96.30190746],[4.53390489,0.02699029,96.30105823],[4.53390435,0.02698857,96.30021113],[4.53390381,0.02698685,96.2993662],[4.53390328,0.02698513,96.29852351],[4.53390274,0.02698341,96.29768311],[4.5339022,0.02698168,96.29684507],[4.53390167,0.02697996,96.29600944],[4.53390113,0.02697824,96.29517628],[4.53390059,0.02697652,96.29434565],[4.53390006,0.0269748,96.2935176],[4.53389952,0.02697308,96.29269217],[4.53389898,0.02697136,96.2918694],[4.53389845,0.02696964,96.29104933],[4.53389791,0.02696791,96.29023201],[4.53389737,0.02696619,96.28941747],[4.53389684,0.02696447,96.28860576],[4.5338963,0.02696275,96.28779692],[4.53389576,0.02696103,96.28699099],[4.53389523,0.02695931,96.28618801],[4.53389469,0.02695759,96.28538803],[4.53389415,0.02695586,96.28459108],[4.53389362,0.02695415,96.28379721],[4.53389308,0.02695242,96.28300647],[4.53389255,0.0269507,96.28221889],[4.53389201,0.02694898,96.28143451],[4.53389147,0.02694726,96.28065338],[4.53389094,0.02694554,96.27987555],[4.5338904,0.02694382,96.27910105],[4.53388986,0.0269421,96.27832992],[4.53388932,0.02694038,96.27756221],[4.53388879,0.02693865,96.27679797],[4.53388825,0.02693693,96.27603723],[4.53388771,0.02693521,96.27528003],[4.53388718,0.02693349,96.27452637],[4.53388664,0.02693177,96.2737762],[4.5338861,0.02693005,96.27302947],[4.53388556,0.02692833,96.27228612],[4.53388503,0.02692661,96.2715461],[4.53388449,0.02692489,96.27080935],[4.53388395,0.02692316,96.27007583],[4.53388341,0.02692144,96.26934548],[4.53388287,0.02691972,96.26861824],[4.53388234,0.026918,96.26789406],[4.5338818,0.02691628,96.26717289],[4.53388126,0.02691456,96.26645468],[4.53388072,0.02691284,96.26573936],[4.53388018,0.02691112,96.26502689],[4.53387964,0.0269094,96.26431721],[4.5338791,0.02690768,96.26361027],[4.53387856,0.02690596,96.26290601],[4.53387802,0.02690424,96.26220437],[4.53387748,0.02690252,96.2615053],[4.53387695,0.02690079,96.26080875],[4.53387641,0.02689907,96.26011466],[4.53387587,0.02689735,96.25942297],[4.53387533,0.02689563,96.25873363],[4.53387478,0.02689391,96.25804658],[4.53387424,0.02689219,96.25736176],[4.5338737,0.02689047,96.25667911],[4.53387316,0.02688875,96.25599859],[4.53387262,0.02688703,96.25532012],[4.53387208,0.02688531,96.25464366],[4.53387154,0.02688359,96.25396919],[4.533871,0.02688187,96.25329667],[4.53387045,0.02688015,96.25262609],[4.53386991,0.02687843,96.25195743],[4.53386937,0.02687672,96.25129066],[4.53386883,0.026875,96.25062577],[4.53386829,0.02687328,96.24996272],[4.53386774,0.02687156,96.24930151],[4.5338672,0.02686984,96.2486421],[4.53386666,0.02686812,96.24798448],[4.53386611,0.0268664,96.24732863],[4.53386557,0.02686468,96.24667453],[4.53386503,0.02686296,96.24602215],[4.53386448,0.02686124,96.24537148],[4.53386394,0.02685952,96.2447225],[4.5338634,0.0268578,96.24407518],[4.53386285,0.02685608,96.24342951],[4.53386231,0.02685436,96.24278546],[4.53386177,0.02685264,96.24214303],[4.53386122,0.02685093,96.24150218],[4.53386068,0.02684921,96.24086291],[4.53386014,0.02684749,96.24022519],[4.53385959,0.02684577,96.23958901],[4.53385905,0.02684405,96.23895435],[4.53385851,0.02684233,96.23832118],[4.53385796,0.02684061,96.2376895],[4.53385742,0.02683889,96.23705929],[4.53385688,0.02683717,96.23643054],[4.53385633,0.02683545,96.23580321],[4.53385579,0.02683373,96.23517731],[4.53385525,0.02683201,96.23455282],[4.5338547,0.02683029,96.23392971],[4.53385416,0.02682857,96.23330798],[4.53385362,0.02682686,96.23268761],[4.53385308,0.02682514,96.23206859],[4.53385253,0.02682342,96.2314509],[4.53385199,0.0268217,96.23083453],[4.53385145,0.02681998,96.23021948],[4.53385091,0.02681826,96.22960571],[4.53385036,0.02681654,96.22899324],[4.53384982,0.02681482,96.22838203],[4.53384928,0.0268131,96.22777209],[4.53384874,0.02681138,96.22716339],[4.5338482,0.02680966,96.22655593],[4.53384766,0.02680794,96.22594971],[4.53384712,0.02680622,96.22534469],[4.53384658,0.0268045,96.22474087],[4.53384604,0.02680278,96.22413819],[4.5338455,0.02680106,96.22353663],[4.53384496,0.02679934,96.22293616],[4.53384442,0.02679762,96.22233674],[4.53384388,0.0267959,96.22173834],[4.53384334,0.02679417,96.22114092],[4.5338428,0.02679245,96.22054445],[4.53384227,0.02679073,96.21994891],[4.53384173,0.02678901,96.21935425],[4.53384119,0.02678729,96.21876044],[4.53384065,0.02678557,96.21816746],[4.53384011,0.02678385,96.21757525],[4.53383958,0.02678213,96.21698381],[4.53383904,0.02678041,96.21639308],[4.5338385,0.02677868,96.21580304],[4.53383797,0.02677696,96.21521366],[4.53383743,0.02677524,96.21462489],[4.5338369,0.02677352,96.21403671],[4.53383636,0.0267718,96.21344909],[4.53383583,0.02677008,96.21286199],[4.53383529,0.02676835,96.21227538],[4.53383476,0.02676663,96.21168921],[4.53383422,0.02676491,96.21110347],[4.53383369,0.02676319,96.21051812],[4.53383315,0.02676147,96.20993312],[4.53383262,0.02675974,96.20934844],[4.53383209,0.02675802,96.20876404],[4.53383155,0.0267563,96.2081799],[4.53383102,0.02675458,96.20759597],[4.53383049,0.02675285,96.20701223],[4.53382996,0.02675113,96.20642863],[4.53382942,0.02674941,96.20584515],[4.53382889,0.02674768,96.20526174],[4.53382836,0.02674596,96.20467839],[4.53382783,0.02674424,96.204095],[4.5338273,0.02674251,96.20351134],[4.53382677,0.02674079,96.20292715],[4.53382624,0.02673907,96.20234214],[4.53382571,0.02673735,96.20175603],[4.53382518,0.02673562,96.20116854],[4.53382465,0.0267339,96.20057938],[4.53382411,0.02673218,96.19998828],[4.53382358,0.02673045,96.19939493],[4.53382305,0.02672873,96.19879906],[4.53382252,0.02672701,96.19820036],[4.53382199,0.02672528,96.19759855],[4.53382145,0.02672356,96.19699332],[4.53382092,0.02672184,96.19638439],[4.53382038,0.02672012,96.19577144],[4.53381985,0.0267184,96.19515418],[4.53381931,0.02671668,96.19453231],[4.53381877,0.02671495,96.19390552],[4.53381823,0.02671323,96.19327351],[4.53381769,0.02671151,96.19263596],[4.53381715,0.02670979,96.19199258],[4.53381661,0.02670807,96.19134305],[4.53381606,0.02670636,96.19068708],[4.53381552,0.02670464,96.1900244],[4.53381497,0.02670292,96.18935476],[4.53381442,0.0267012,96.1886779],[4.53381387,0.02669948,96.18799357],[4.53381332,0.02669777,96.18730152],[4.53381307,0.02669699,96.18698408],[4.53382537,0.02669305,96.18698408],[4.53382562,0.02669384,96.18730152],[4.53382616,0.02669556,96.18799357],[4.5338267,0.02669728,96.1886779],[4.53382724,0.026699,96.18935476],[4.53382779,0.02670071,96.1900244],[4.53382833,0.02670243,96.19068708],[4.53382887,0.02670415,96.19134305],[4.53382942,0.02670587,96.19199258],[4.53382996,0.02670759,96.19263596],[4.5338305,0.02670931,96.19327351],[4.53383105,0.02671103,96.19390552],[4.53383159,0.02671275,96.19453231],[4.53383213,0.02671447,96.19515418],[4.53383267,0.02671619,96.19577144],[4.53383322,0.02671791,96.19638439],[4.53383376,0.02671963,96.19699332],[4.5338343,0.02672135,96.19759855],[4.53383484,0.02672307,96.19820036],[4.53383539,0.02672479,96.19879906],[4.53383593,0.02672651,96.19939493],[4.53383647,0.02672823,96.19998828],[4.53383701,0.02672995,96.20057938],[4.53383756,0.02673167,96.20116854],[4.5338381,0.02673339,96.20175603],[4.53383864,0.02673511,96.20234214],[4.53383918,0.02673683,96.20292715],[4.53383972,0.02673855,96.20351134],[4.53384027,0.02674027,96.204095],[4.53384081,0.02674199,96.20467839],[4.53384135,0.02674371,96.20526174],[4.53384189,0.02674543,96.20584515],[4.53384243,0.02674715,96.20642863],[4.53384298,0.02674887,96.20701223],[4.53384352,0.02675059,96.20759597],[4.53384406,0.02675231,96.2081799],[4.5338446,0.02675403,96.20876404],[4.53384514,0.02675575,96.20934844],[4.53384568,0.02675747,96.20993312],[4.53384623,0.02675919,96.21051812],[4.53384677,0.02676091,96.21110347],[4.53384731,0.02676263,96.21168921],[4.53384785,0.02676435,96.21227538],[4.53384839,0.02676607,96.21286199],[4.53384893,0.02676779,96.21344909],[4.53384947,0.02676951,96.21403671],[4.53385002,0.02677123,96.21462489],[4.53385056,0.02677295,96.21521366],[4.5338511,0.02677467,96.21580304],[4.53385164,0.02677639,96.21639308],[4.53385218,0.02677811,96.21698381],[4.53385272,0.02677983,96.21757525],[4.53385326,0.02678155,96.21816746],[4.5338538,0.02678327,96.21876044],[4.53385434,0.02678499,96.21935425],[4.53385489,0.02678671,96.21994891],[4.53385543,0.02678843,96.22054445],[4.53385597,0.02679015,96.22114092],[4.53385651,0.02679187,96.22173834],[4.53385705,0.02679359,96.22233674],[4.53385759,0.02679531,96.22293616],[4.53385813,0.02679703,96.22353663],[4.53385867,0.02679875,96.22413819],[4.53385921,0.02680047,96.22474087],[4.53385975,0.02680219,96.22534469],[4.53386029,0.02680391,96.22594971],[4.53386083,0.02680563,96.22655593],[4.53386137,0.02680735,96.22716339],[4.53386191,0.02680907,96.22777209],[4.53386245,0.02681079,96.22838203],[4.53386299,0.02681251,96.22899324],[4.53386353,0.02681423,96.22960571],[4.53386407,0.02681595,96.23021948],[4.53386461,0.02681767,96.23083453],[4.53386515,0.02681939,96.2314509],[4.53386569,0.02682111,96.23206859],[4.53386623,0.02682283,96.23268761],[4.53386677,0.02682455,96.23330798],[4.53386731,0.02682628,96.23392971],[4.53386785,0.026828,96.23455282],[4.53386839,0.02682972,96.23517731],[4.53386893,0.02683144,96.23580321],[4.53386947,0.02683316,96.23643054],[4.53387001,0.02683488,96.23705929],[4.53387055,0.0268366,96.2376895],[4.53387109,0.02683832,96.23832118],[4.53387163,0.02684004,96.23895435],[4.53387217,0.02684176,96.23958901],[4.53387271,0.02684348,96.24022519],[4.53387325,0.0268452,96.24086291],[4.53387378,0.02684692,96.24150218],[4.53387432,0.02684864,96.24214303],[4.53387486,0.02685037,96.24278546],[4.5338754,0.02685209,96.24342951],[4.53387594,0.02685381,96.24407518],[4.53387648,0.02685553,96.2447225],[4.53387702,0.02685725,96.24537148],[4.53387756,0.02685897,96.24602215],[4.5338781,0.02686069,96.24667453],[4.53387863,0.02686241,96.24732863],[4.53387917,0.02686413,96.24798448],[4.53387971,0.02686585,96.2486421],[4.53388025,0.02686757,96.24930151],[4.53388079,0.0268693,96.24996272],[4.53388133,0.02687102,96.25062577],[4.53388186,0.02687274,96.25129066],[4.5338824,0.02687446,96.25195743],[4.53388294,0.02687618,96.25262609],[4.53388348,0.0268779,96.25329667],[4.53388402,0.02687962,96.25396919],[4.53388455,0.02688134,96.25464366],[4.53388509,0.02688306,96.25532012],[4.53388563,0.02688479,96.25599859],[4.53388617,0.02688651,96.25667911],[4.53388671,0.02688823,96.25736176],[4.53388724,0.02688995,96.25804658],[4.53388778,0.02689167,96.25873363],[4.53388832,0.02689339,96.25942297],[4.53388886,0.02689511,96.26011466],[4.53388939,0.02689683,96.26080875],[4.53388993,0.02689856,96.2615053],[4.53389047,0.02690028,96.26220437],[4.53389101,0.026902,96.26290601],[4.53389154,0.02690372,96.26361027],[4.53389208,0.02690544,96.26431721],[4.53389262,0.02690716,96.26502689],[4.53389315,0.02690888,96.26573936],[4.53389369,0.02691061,96.26645468],[4.53389423,0.02691233,96.26717289],[4.53389477,0.02691405,96.26789406],[4.5338953,0.02691577,96.26861824],[4.53389584,0.02691749,96.26934548],[4.53389638,0.02691921,96.27007583],[4.53389691,0.02692093,96.27080935],[4.53389745,0.02692266,96.2715461],[4.53389799,0.02692438,96.27228612],[4.53389852,0.0269261,96.27302947],[4.53389906,0.02692782,96.2737762],[4.5338996,0.02692954,96.27452637],[4.53390013,0.02693126,96.27528003],[4.53390067,0.02693299,96.27603723],[4.53390121,0.02693471,96.27679797],[4.53390174,0.02693643,96.27756221],[4.53390228,0.02693815,96.27832992],[4.53390282,0.02693987,96.27910105],[4.53390335,0.02694159,96.27987555],[4.53390389,0.02694331,96.28065338],[4.53390443,0.02694504,96.28143451],[4.53390496,0.02694676,96.28221889],[4.5339055,0.02694848,96.28300647],[4.53390604,0.0269502,96.28379721],[4.53390657,0.02695192,96.28459108],[4.53390711,0.02695364,96.28538803],[4.53390765,0.02695536,96.28618801],[4.53390818,0.02695708,96.28699099],[4.53390872,0.0269588,96.28779692],[4.53390926,0.02696053,96.28860576],[4.53390979,0.02696225,96.28941747],[4.53391033,0.02696397,96.29023201],[4.53391087,0.02696569,96.29104933],[4.5339114,0.02696741,96.2918694],[4.53391194,0.02696913,96.29269217],[4.53391248,0.02697086,96.2935176],[4.53391301,0.02697258,96.29434565],[4.53391355,0.0269743,96.29517628],[4.53391409,0.02697602,96.29600944],[4.53391462,0.02697774,96.29684507],[4.53391516,0.02697946,96.29768311],[4.5339157,0.02698118,96.29852351],[4.53391624,0.02698291,96.2993662],[4.53391677,0.02698463,96.30021113],[4.53391731,0.02698635,96.30105823],[4.53391785,0.02698807,96.30190746],[4.53391839,0.02698979,96.30275875],[4.53391892,0.02699151,96.30361204],[4.53391946,0.02699323,96.30446728],[4.53392,0.02699496,96.3053244],[4.53392054,0.02699668,96.30618335],[4.53392107,0.0269984,96.30704406],[4.53392161,0.02700012,96.30790649],[4.53392215,0.02700184,96.30877057],[4.53392269,0.02700356,96.30963624],[4.53392322,0.02700528,96.31050345],[4.53392376,0.027007,96.31137213],[4.5339243,0.02700873,96.31224223],[4.53392484,0.02701045,96.31311369],[4.53392538,0.02701217,96.31398644],[4.53392591,0.02701389,96.31486043],[4.53392645,0.02701561,96.31573561],[4.53392699,0.02701733,96.31661191],[4.53392753,0.02701905,96.31748927],[4.53392807,0.02702077,96.31836763],[4.5339286,0.02702249,96.31924694],[4.53392914,0.02702422,96.32012714],[4.53392968,0.02702594,96.32100816],[4.53393022,0.02702766,96.32188995],[4.53393076,0.02702938,96.32277244],[4.53393129,0.0270311,96.32365559],[4.53393183,0.02703282,96.32453932],[4.53393237,0.02703454,96.32542358],[4.53393291,0.02703626,96.32630831],[4.53393345,0.02703799,96.32719345],[4.53393398,0.02703971,96.32807894],[4.53393452,0.02704143,96.32896473],[4.53393506,0.02704315,96.32985074],[4.5339356,0.02704487,96.33073692],[4.53393614,0.02704659,96.33162321],[4.53393667,0.02704831,96.33250956],[4.53393721,0.02705003,96.33339589],[4.53393775,0.02705175,96.33428216],[4.53393829,0.02705348,96.33516829],[4.53393882,0.0270552,96.33605424],[4.53393936,0.02705692,96.33693993],[4.5339399,0.02705864,96.33782532],[4.53394044,0.02706036,96.33871033],[4.53394098,0.02706208,96.33959492],[4.53394151,0.0270638,96.34047901],[4.53394205,0.02706552,96.34136255],[4.53394259,0.02706725,96.34224548],[4.53394313,0.02706897,96.34312774],[4.53394366,0.02707069,96.34400926],[4.5339442,0.02707241,96.34488999],[4.53394474,0.02707413,96.34576986],[4.53394528,0.02707585,96.34664882],[4.53394581,0.02707757,96.34752681],[4.53394635,0.02707929,96.34840376],[4.53394689,0.02708102,96.34927961],[4.53394743,0.02708274,96.3501543],[4.53394796,0.02708446,96.35102778],[4.5339485,0.02708618,96.35189997],[4.53394904,0.0270879,96.35277083],[4.53394958,0.02708962,96.35364029],[4.53395011,0.02709134,96.35450829],[4.53395065,0.02709307,96.3553748],[4.53395119,0.02709479,96.35623982],[4.53395172,0.02709651,96.35710335],[4.53395226,0.02709823,96.3579654],[4.5339528,0.02709995,96.35882597],[4.53395333,0.02710167,96.35968506],[4.53395387,0.0271034,96.36054268],[4.5339544,0.02710512,96.36139883],[4.53395494,0.02710684,96.36225352],[4.53395548,0.02710856,96.36310675],[4.53395601,0.02711028,96.36395852],[4.53395655,0.027112,96.36480886],[4.53395709,0.02711373,96.36565775],[4.53395762,0.02711545,96.36650522],[4.53395816,0.02711717,96.36735127],[4.53395869,0.02711889,96.3681959],[4.53395923,0.02712061,96.36903912],[4.53395977,0.02712233,96.36988095],[4.5339603,0.02712406,96.37072139],[4.53396084,0.02712578,96.37156045],[4.53396138,0.0271275,96.37239814],[4.53396191,0.02712922,96.37323447],[4.53396245,0.02713094,96.37406946],[4.53396298,0.02713266,96.3749031],[4.53396352,0.02713439,96.37573541],[4.53396406,0.02713611,96.37656641],[4.53396459,0.02713783,96.3773961],[4.53396513,0.02713955,96.37822449],[4.53396567,0.02714127,96.37905159],[4.5339662,0.02714299,96.37987741],[4.53396674,0.02714471,96.38070196],[4.53396728,0.02714644,96.38152526],[4.53396782,0.02714816,96.38234725],[4.53396835,0.02714988,96.38316786],[4.53396889,0.0271516,96.38398698],[4.53396943,0.02715332,96.38480452],[4.53396997,0.02715504,96.3856204],[4.5339705,0.02715676,96.38643451],[4.53397104,0.02715848,96.38724677],[4.53397158,0.02716021,96.38805707],[4.53397212,0.02716193,96.38886532],[4.53397266,0.02716365,96.38967143],[4.5339732,0.02716537,96.3904753],[4.53397373,0.02716709,96.39127683],[4.53397427,0.02716881,96.39207592],[4.53397481,0.02717053,96.39287248],[4.53397535,0.02717225,96.3936664],[4.53397589,0.02717397,96.3944576],[4.53397643,0.0271757,96.39524601],[4.53397696,0.02717742,96.39603164],[4.5339775,0.02717914,96.39681447],[4.53397804,0.02718086,96.39759451],[4.53397858,0.02718258,96.39837175],[4.53397912,0.0271843,96.39914619],[4.53397965,0.02718602,96.39991782],[4.53398019,0.02718774,96.40068665],[4.53398073,0.02718946,96.40145265],[4.53398127,0.02719118,96.40221584],[4.53398181,0.02719291,96.40297621],[4.53398234,0.02719463,96.40373375],[4.53398288,0.02719635,96.40448846],[4.53398342,0.02719807,96.40524034],[4.53398395,0.02719979,96.40598938],[4.53398449,0.02720151,96.40673558],[4.53398503,0.02720323,96.40747893],[4.53398557,0.02720496,96.40821944],[4.5339861,0.02720668,96.40895709],[4.53398664,0.0272084,96.40969189],[4.53398717,0.02721012,96.41042384],[4.53398771,0.02721184,96.41115293],[4.53398824,0.02721356,96.41187917],[4.53398878,0.02721529,96.41260254],[4.53398931,0.02721701,96.41332305],[4.53398985,0.02721873,96.4140407],[4.53399038,0.02722045,96.41475548],[4.53399092,0.02722218,96.41546741],[4.53399145,0.0272239,96.41617647],[4.53399199,0.02722562,96.41688268],[4.53399252,0.02722734,96.41758602],[4.53399305,0.02722907,96.41828651],[4.53399358,0.02723079,96.41898414],[4.53399412,0.02723251,96.41967893],[4.53399465,0.02723423,96.42037086],[4.53399518,0.02723596,96.42105995],[4.53399571,0.02723768,96.4217462],[4.53399625,0.0272394,96.42242961],[4.53399678,0.02724113,96.42311019],[4.53399731,0.02724285,96.42378795],[4.53399785,0.02724457,96.42446289],[4.53399838,0.02724629,96.42513502],[4.53399891,0.02724802,96.42580435],[4.53399945,0.02724974,96.42647089],[4.53399998,0.02725146,96.42713463],[4.53400051,0.02725318,96.4277956],[4.53400105,0.02725491,96.4284538],[4.53400158,0.02725663,96.42910925],[4.53400212,0.02725835,96.42976195],[4.53400265,0.02726007,96.43041191],[4.53400319,0.02726179,96.43105916],[4.53400373,0.02726351,96.43170369],[4.53400427,0.02726523,96.43234553],[4.5340048,0.02726696,96.43298468],[4.53400534,0.02726868,96.43362121],[4.53400588,0.0272704,96.43425521],[4.53400642,0.02727212,96.43488677],[4.53400696,0.02727384,96.435516],[4.5340075,0.02727556,96.43614297],[4.53400804,0.02727728,96.4367678],[4.53400858,0.027279,96.43739057],[4.53400912,0.02728072,96.43801138],[4.53400966,0.02728244,96.43863033],[4.5340102,0.02728416,96.4392475],[4.53401074,0.02728588,96.439863],[4.53401128,0.0272876,96.44047691],[4.53401182,0.02728932,96.44108932],[4.53401236,0.02729104,96.44170034],[4.5340129,0.02729276,96.44231005],[4.53401344,0.02729448,96.44291854],[4.53401398,0.02729621,96.44352591],[4.53401452,0.02729793,96.44413224],[4.53401505,0.02729965,96.44473764],[4.53401559,0.02730137,96.44534217],[4.53401613,0.02730309,96.44594594],[4.53401666,0.02730481,96.44654904],[4.5340172,0.02730653,96.44715156],[4.53401773,0.02730826,96.44775357],[4.53401827,0.02730998,96.44835517],[4.5340188,0.0273117,96.44895645],[4.53401934,0.02731342,96.4495575],[4.53401987,0.02731514,96.45015839],[4.5340204,0.02731687,96.45075922],[4.53402094,0.02731859,96.45136008],[4.53402147,0.02732031,96.45196103],[4.534022,0.02732204,96.45256218],[4.53402254,0.02732376,96.4531636],[4.53402307,0.02732548,96.45376538],[4.5340236,0.0273272,96.4543676],[4.53402413,0.02732893,96.45497034],[4.53402467,0.02733065,96.45557368],[4.5340252,0.02733237,96.45617771],[4.53402573,0.0273341,96.45678251],[4.53402626,0.02733582,96.45738815],[4.53402679,0.02733754,96.45799472],[4.53402733,0.02733926,96.4586023],[4.53402786,0.02734099,96.45921096],[4.53402839,0.02734271,96.45982078],[4.53402892,0.02734443,96.46043184],[4.53402946,0.02734616,96.46104423],[4.53402999,0.02734788,96.461658],[4.53403052,0.0273496,96.46227326],[4.53403106,0.02735132,96.46289006],[4.53403159,0.02735305,96.46350848],[4.53403212,0.02735477,96.46412861],[4.53403266,0.02735649,96.46475051],[4.53403319,0.02735821,96.46537426],[4.53403373,0.02735993,96.46599994],[4.53403426,0.02736166,96.46662762],[4.5340348,0.02736338,96.46725737],[4.53403534,0.0273651,96.46788926],[4.53403587,0.02736682,96.46852338],[4.53403641,0.02736854,96.46915978],[4.53403695,0.02737026,96.46979855],[4.53403749,0.02737198,96.4704397],[4.53403802,0.02737371,96.47108325],[4.53403856,0.02737543,96.47172924],[4.5340391,0.02737715,96.47237768],[4.53403964,0.02737887,96.47302858],[4.53404018,0.02738059,96.47368198],[4.53404071,0.02738231,96.4743379],[4.53404125,0.02738403,96.47499634],[4.53404179,0.02738575,96.47565734],[4.53404233,0.02738747,96.47632088],[4.53404287,0.02738919,96.47698694],[4.53404341,0.02739091,96.47765547],[4.53404395,0.02739264,96.47832646],[4.53404449,0.02739436,96.47899987],[4.53404502,0.02739608,96.47967566],[4.53404556,0.0273978,96.48035381],[4.5340461,0.02739952,96.48103428],[4.53404664,0.02740124,96.48171705],[4.53404717,0.02740296,96.48240209],[4.53404771,0.02740468,96.48308936],[4.53404824,0.02740641,96.48377884],[4.53404878,0.02740813,96.4844705],[4.53404932,0.02740985,96.48516431],[4.53404985,0.02741157,96.48586024],[4.53405038,0.02741329,96.48655826],[4.53405092,0.02741502,96.48725835],[4.53405145,0.02741674,96.48796048],[4.53405199,0.02741846,96.48866461],[4.53405252,0.02742018,96.48937073],[4.53405305,0.02742191,96.49007881],[4.53405359,0.02742363,96.49078881],[4.53405412,0.02742535,96.49150072],[4.53405465,0.02742707,96.49221451],[4.53405518,0.0274288,96.49293014],[4.53405572,0.02743052,96.4936476],[4.53405625,0.02743224,96.49436686],[4.53405678,0.02743396,96.4950879],[4.53405731,0.02743569,96.49581068],[4.53405784,0.02743741,96.49653519],[4.53405838,0.02743913,96.4972614],[4.53405891,0.02744086,96.49798928],[4.53405944,0.02744258,96.49871881],[4.53405997,0.0274443,96.49944997],[4.5340605,0.02744603,96.50018272],[4.53406103,0.02744775,96.50091706],[4.53406157,0.02744947,96.50165294],[4.5340621,0.02745119,96.50239036],[4.53406263,0.02745292,96.50312928],[4.53406316,0.02745464,96.50386968],[4.53406369,0.02745636,96.50461154],[4.53406423,0.02745809,96.50535484],[4.53406476,0.02745981,96.50609954],[4.53406529,0.02746153,96.50684564],[4.53406582,0.02746325,96.50759309],[4.53406636,0.02746498,96.5083419],[4.53406689,0.0274667,96.50909202],[4.53406742,0.02746842,96.50984343],[4.53406796,0.02747015,96.51059612],[4.53406849,0.02747187,96.51135006],[4.53406902,0.02747359,96.51210523],[4.53406955,0.02747531,96.5128616],[4.53407009,0.02747704,96.51361916],[4.53407062,0.02747876,96.51437787],[4.53407115,0.02748048,96.51513773],[4.53407169,0.0274822,96.5158987],[4.53407222,0.02748393,96.51666076],[4.53407276,0.02748565,96.51742389],[4.53407329,0.02748737,96.51818807],[4.53407382,0.02748909,96.51895328],[4.53407436,0.02749081,96.51971949],[4.53407489,0.02749254,96.52048668],[4.53407543,0.02749426,96.52125483],[4.53407596,0.02749598,96.52202391],[4.53407649,0.0274977,96.52279391],[4.53407703,0.02749943,96.52356481],[4.53407756,0.02750115,96.52433657],[4.5340781,0.02750287,96.52510918],[4.53407863,0.02750459,96.52588261],[4.53407917,0.02750631,96.52665685],[4.5340797,0.02750804,96.52743186],[4.53408023,0.02750976,96.52820764],[4.53408077,0.02751148,96.52898414],[4.5340813,0.0275132,96.52976136],[4.53408184,0.02751492,96.53053928],[4.53408237,0.02751665,96.53131785],[4.53408291,0.02751837,96.53209708],[4.53408344,0.02752009,96.53287692],[4.53408398,0.02752181,96.53365737],[4.53408451,0.02752354,96.53443839],[4.53408505,0.02752526,96.53521996],[4.53408558,0.02752698,96.53600206],[4.53408612,0.0275287,96.53678468],[4.53408665,0.02753042,96.53756777],[4.53408719,0.02753215,96.53835133],[4.53408772,0.02753387,96.53913532],[4.53408826,0.02753559,96.53991973],[4.53408879,0.02753731,96.54070453],[4.53408933,0.02753903,96.5414897],[4.53408986,0.02754076,96.54227521],[4.53409039,0.02754248,96.54306105],[4.53409093,0.0275442,96.54384717],[4.53409146,0.02754592,96.54463358],[4.534092,0.02754764,96.54542023],[4.53409253,0.02754937,96.5462071],[4.53409307,0.02755109,96.54699417],[4.5340936,0.02755281,96.54778142],[4.53409414,0.02755453,96.54856882],[4.53409467,0.02755625,96.54935635],[4.53409521,0.02755798,96.55014398],[4.53409574,0.0275597,96.55093169],[4.53409628,0.02756142,96.55171945],[4.53409681,0.02756314,96.55250723],[4.53409735,0.02756486,96.55329502],[4.53409788,0.02756659,96.55408279],[4.53409841,0.02756831,96.55487051],[4.53409895,0.02757003,96.5556582],[4.53409948,0.02757175,96.55644589],[4.53410002,0.02757347,96.55723358],[4.53410055,0.0275752,96.5580213],[4.53410109,0.02757692,96.55880907],[4.53410162,0.02757864,96.55959691],[4.53410215,0.02758036,96.56038483],[4.53410269,0.02758209,96.56117285],[4.53410322,0.02758381,96.561961],[4.53410376,0.02758553,96.5627493],[4.53410429,0.02758725,96.56353775],[4.53410482,0.02758897,96.56432639],[4.53410536,0.0275907,96.56511523],[4.53410589,0.02759242,96.56590429],[4.53410643,0.02759414,96.56669358],[4.53410696,0.02759586,96.56748314],[4.53410749,0.02759759,96.56827298],[4.53410803,0.02759931,96.56906311],[4.53410856,0.02760103,96.56985356],[4.53410909,0.02760275,96.57064435],[4.53410963,0.02760448,96.57143549],[4.53411016,0.0276062,96.57222701],[4.53411069,0.02760792,96.57301893],[4.53411123,0.02760964,96.57381126],[4.53411176,0.02761137,96.57460403],[4.53411229,0.02761309,96.57539725],[4.53411282,0.02761481,96.57619095],[4.53411336,0.02761653,96.57698514],[4.53411389,0.02761826,96.57777986],[4.53411442,0.02761998,96.5785751],[4.53411495,0.0276217,96.57937091],[4.53411549,0.02762343,96.5801673],[4.53411602,0.02762515,96.58096428],[4.53411655,0.02762687,96.58176188],[4.53411708,0.02762859,96.58256013],[4.53411761,0.02763032,96.58335903],[4.53411815,0.02763204,96.58415862],[4.53411868,0.02763376,96.58495892],[4.53411921,0.02763549,96.58575994],[4.53411974,0.02763721,96.58656171],[4.53412027,0.02763893,96.58736425],[4.53412081,0.02764065,96.58816758],[4.53412134,0.02764238,96.58897172],[4.53412187,0.0276441,96.5897767],[4.5341224,0.02764582,96.59058254],[4.53412293,0.02764755,96.59138926],[4.53412347,0.02764927,96.59219689],[4.534124,0.02765099,96.59300544],[4.53412453,0.02765271,96.59381494],[4.53412506,0.02765444,96.59462542],[4.5341256,0.02765616,96.59543685],[4.53412613,0.02765788,96.59624922],[4.53412666,0.0276596,96.59706254],[4.53412719,0.02766133,96.59787677],[4.53412773,0.02766305,96.59869192],[4.53412826,0.02766477,96.59950795],[4.53412879,0.02766649,96.60032488],[4.53412933,0.02766822,96.60114267],[4.53412986,0.02766994,96.60196132],[4.53413039,0.02767166,96.60278081],[4.53413093,0.02767339,96.60360113],[4.53413146,0.02767511,96.60442226],[4.53413199,0.02767683,96.60524419],[4.53413252,0.02767855,96.60606691],[4.53413306,0.02768028,96.6068904],[4.53413359,0.027682,96.60771464],[4.53413412,0.02768372,96.60853963],[4.53413466,0.02768544,96.60936534],[4.53413519,0.02768717,96.61019177],[4.53413572,0.02768889,96.6110189],[4.53413626,0.02769061,96.61184672],[4.53413679,0.02769233,96.6126752],[4.53413732,0.02769406,96.61350434],[4.53413785,0.02769578,96.61433412],[4.53413839,0.0276975,96.61516453],[4.53413892,0.02769922,96.61599555],[4.53413945,0.02770095,96.61682716],[4.53413999,0.02770267,96.61765936],[4.53414052,0.02770439,96.61849213],[4.53414105,0.02770611,96.61932545],[4.53414158,0.02770784,96.6201593],[4.53414211,0.02770956,96.62099369],[4.53414265,0.02771128,96.62182858],[4.53414318,0.02771301,96.62266397],[4.53414371,0.02771473,96.62349984],[4.53414424,0.02771645,96.62433619],[4.53414478,0.02771817,96.62517299],[4.53414531,0.0277199,96.62601024],[4.53414584,0.02772162,96.62684791],[4.53414637,0.02772334,96.627686],[4.5341469,0.02772506,96.6285245],[4.53414744,0.02772679,96.62936338],[4.53414797,0.02772851,96.63020263],[4.5341485,0.02773023,96.63104224],[4.53414903,0.02773196,96.6318822],[4.53414956,0.02773368,96.6327225],[4.5341501,0.0277354,96.63356311],[4.53415063,0.02773713,96.63440402],[4.53415116,0.02773885,96.63524522],[4.53415169,0.02774057,96.6360867],[4.53415222,0.02774229,96.63692843],[4.53415275,0.02774402,96.63777042],[4.53415329,0.02774574,96.63861263],[4.53415382,0.02774746,96.63945506],[4.53415435,0.02774919,96.64029769],[4.53415488,0.02775091,96.64114051],[4.53415541,0.02775263,96.64198351],[4.53415595,0.02775435,96.64282666],[4.53415648,0.02775608,96.64366996],[4.53415701,0.0277578,96.64451342],[4.53415754,0.02775952,96.64535704],[4.53415807,0.02776125,96.64620082],[4.53415861,0.02776297,96.64704477],[4.53415914,0.02776469,96.6478889],[4.53415967,0.02776641,96.6487332],[4.5341602,0.02776814,96.64957768],[4.53416073,0.02776986,96.65042234],[4.53416127,0.02777158,96.65126719],[4.5341618,0.0277733,96.65211223],[4.53416233,0.02777503,96.65295747],[4.53416286,0.02777675,96.65380291],[4.5341634,0.02777847,96.65464856],[4.53416393,0.0277802,96.65549442],[4.53416446,0.02778192,96.65634049],[4.53416499,0.02778364,96.65718678],[4.53416553,0.02778536,96.65803329],[4.53416606,0.02778709,96.65888003],[4.53416659,0.02778881,96.65972701],[4.53416712,0.02779053,96.66057422],[4.53416766,0.02779225,96.66142167],[4.53416819,0.02779398,96.66226937],[4.53416872,0.0277957,96.66311733],[4.53416925,0.02779742,96.66396554],[4.53416979,0.02779915,96.66481401],[4.53417032,0.02780087,96.66566275],[4.53417085,0.02780259,96.66651176],[4.53417138,0.02780431,96.66736105],[4.53417192,0.02780604,96.66821063],[4.53417245,0.02780776,96.66906049],[4.53417298,0.02780948,96.66991064],[4.53417351,0.0278112,96.67076109],[4.53417405,0.02781293,96.67161185],[4.53417458,0.02781465,96.67246291],[4.53417511,0.02781637,96.67331429],[4.53417565,0.02781809,96.67416599],[4.53417618,0.02781982,96.67501802],[4.53417671,0.02782154,96.67587038],[4.53417724,0.02782326,96.67672307],[4.53417778,0.02782498,96.67757611],[4.53417831,0.02782671,96.6784295],[4.53417884,0.02782843,96.67928324],[4.53417937,0.02783015,96.68013734],[4.53417991,0.02783188,96.6809918],[4.53418044,0.0278336,96.68184661],[4.53418097,0.02783532,96.68270177],[4.5341815,0.02783704,96.68355727],[4.53418204,0.02783877,96.6844131],[4.53418257,0.02784049,96.68526925],[4.5341831,0.02784221,96.68612572],[4.53418363,0.02784393,96.6869825],[4.53418417,0.02784566,96.68783959],[4.5341847,0.02784738,96.68869696],[4.53418523,0.0278491,96.68955463],[4.53418576,0.02785083,96.69041257],[4.53418629,0.02785255,96.69127079],[4.53418683,0.02785427,96.69212927],[4.53418736,0.02785599,96.69298801],[4.53418789,0.02785772,96.69384701],[4.53418842,0.02785944,96.69470624],[4.53418895,0.02786116,96.69556571],[4.53418948,0.02786289,96.69642541],[4.53419002,0.02786461,96.69728532],[4.53419055,0.02786633,96.69814545],[4.53419108,0.02786806,96.69900578],[4.53419161,0.02786978,96.69986631],[4.53419214,0.0278715,96.70072703],[4.53419267,0.02787322,96.70158793],[4.5341932,0.02787495,96.70244901],[4.53419374,0.02787667,96.70331024],[4.53419427,0.02787839,96.70417164],[4.5341948,0.02788012,96.70503319],[4.53419533,0.02788184,96.70589487],[4.53419586,0.02788356,96.70675669],[4.53419639,0.02788529,96.70761864],[4.53419692,0.02788701,96.7084807],[4.53419746,0.02788873,96.70934288],[4.53419799,0.02789045,96.71020515],[4.53419852,0.02789218,96.71106752],[4.53419905,0.0278939,96.71192997],[4.53419958,0.02789562,96.71279249],[4.53420012,0.02789735,96.71365509],[4.53420065,0.02789907,96.71451775],[4.53420118,0.02790079,96.71538045],[4.53420171,0.02790251,96.7162432],[4.53420224,0.02790424,96.71710599],[4.53420278,0.02790596,96.7179688],[4.53420331,0.02790768,96.71883162],[4.53420384,0.0279094,96.71969446],[4.53420438,0.02791113,96.7205573],[4.53420491,0.02791285,96.72142011],[4.53420544,0.02791457,96.72228282],[4.53420598,0.02791629,96.72314533],[4.53420651,0.02791802,96.72400755],[4.53420704,0.02791974,96.72486937],[4.53420758,0.02792146,96.72573071],[4.53420811,0.02792318,96.72659146],[4.53420865,0.02792491,96.72745153],[4.53420918,0.02792663,96.72831081],[4.53420971,0.02792835,96.72916922],[4.53421025,0.02793007,96.73002664],[4.53421078,0.02793179,96.73088299],[4.53421131,0.02793352,96.73173816],[4.53421185,0.02793524,96.73259205],[4.53421238,0.02793696,96.73344456],[4.53421291,0.02793868,96.73429559],[4.53421345,0.02794041,96.73514504],[4.53421398,0.02794213,96.73599281],[4.53421451,0.02794385,96.7368388],[4.53421505,0.02794557,96.7376829],[4.53421558,0.0279473,96.73852501],[4.53421611,0.02794902,96.73936502],[4.53421664,0.02795074,96.74020285],[4.53421717,0.02795247,96.74103837],[4.5342177,0.02795419,96.74187152],[4.53421824,0.02795591,96.74270231],[4.53421877,0.02795764,96.74353078],[4.5342193,0.02795936,96.74435698],[4.53421983,0.02796108,96.74518095],[4.53422036,0.0279628,96.74600273],[4.53422089,0.02796453,96.74682237],[4.53422142,0.02796625,96.74763991],[4.53422195,0.02796797,96.74845539],[4.53422248,0.0279697,96.74926886],[4.53422301,0.02797142,96.75008037],[4.53422354,0.02797314,96.75088995],[4.53422407,0.02797487,96.75169767],[4.5342246,0.02797659,96.75250355],[4.53422513,0.02797831,96.75330765],[4.53422566,0.02798004,96.75411001],[4.5342262,0.02798176,96.75491068],[4.53422673,0.02798348,96.7557097],[4.53422726,0.02798521,96.75650713],[4.53422779,0.02798693,96.75730301],[4.53422832,0.02798865,96.75809739],[4.53422885,0.02799038,96.75889031],[4.53422938,0.0279921,96.75968182],[4.53422991,0.02799382,96.76047198],[4.53423044,0.02799555,96.76126083],[4.53423097,0.02799727,96.76204842],[4.5342315,0.02799899,96.76283481],[4.53423203,0.02800072,96.76362004],[4.53423256,0.02800244,96.76440416],[4.53423309,0.02800416,96.76518724],[4.53423362,0.02800589,96.76596931],[4.53423416,0.02800761,96.76675042],[4.53423469,0.02800933,96.76753064],[4.53423522,0.02801106,96.76831001],[4.53423575,0.02801278,96.76908859],[4.53423628,0.0280145,96.76986642],[4.53423681,0.02801623,96.77064356],[4.53423734,0.02801795,96.77142007],[4.53423787,0.02801967,96.77219599],[4.5342384,0.0280214,96.77297137],[4.53423893,0.02802312,96.77374628],[4.53423946,0.02802484,96.77452076],[4.53423999,0.02802657,96.77529487],[4.53424052,0.02802829,96.77606865],[4.53424105,0.02803001,96.77684217],[4.53424158,0.02803174,96.77761548],[4.53424211,0.02803346,96.77838863],[4.53424264,0.02803518,96.77916167],[4.53424317,0.02803691,96.77993467],[4.5342437,0.02803863,96.78070766],[4.53424423,0.02804035,96.78148072],[4.53424476,0.02804208,96.78225388],[4.53424529,0.0280438,96.78302721],[4.53424582,0.02804552,96.78380076],[4.53424634,0.02804725,96.78457459],[4.53424687,0.02804897,96.78534874],[4.5342474,0.0280507,96.78612328],[4.53424793,0.02805242,96.78689825],[4.53424846,0.02805414,96.78767372],[4.53424899,0.02805587,96.78844973],[4.53424952,0.02805759,96.78922635],[4.53425005,0.02805931,96.79000362],[4.53425058,0.02806104,96.7907816],[4.53425111,0.02806276,96.79156035],[4.53425163,0.02806449,96.79233991],[4.53425216,0.02806621,96.79312035],[4.53425269,0.02806793,96.79390172],[4.53425322,0.02806966,96.79468407],[4.53425375,0.02807138,96.79546739],[4.53425428,0.02807311,96.79625163],[4.5342548,0.02807483,96.79703672],[4.53425533,0.02807655,96.7978226],[4.53425586,0.02807828,96.7986092],[4.53425639,0.02808,96.79939647],[4.53425692,0.02808173,96.80018433],[4.53425745,0.02808345,96.80097273],[4.53425797,0.02808517,96.80176159],[4.5342585,0.0280869,96.80255086],[4.53425903,0.02808862,96.80334047],[4.53425956,0.02809035,96.80413035],[4.53426009,0.02809207,96.80492044],[4.53426062,0.02809379,96.80571068],[4.53426114,0.02809552,96.806501],[4.53426167,0.02809724,96.80729133],[4.5342622,0.02809897,96.80808161],[4.53426273,0.02810069,96.80887178],[4.53426326,0.02810241,96.80966176],[4.53426378,0.02810414,96.8104515],[4.53426431,0.02810586,96.81124093],[4.53426484,0.02810759,96.81202998],[4.53426537,0.02810931,96.81281859],[4.5342659,0.02811103,96.81360668],[4.53426643,0.02811276,96.81439421],[4.53426695,0.02811448,96.81518109],[4.53426748,0.02811621,96.81596727],[4.53426801,0.02811793,96.81675267],[4.53426854,0.02811965,96.81753724],[4.53426907,0.02812138,96.8183209],[4.53426959,0.0281231,96.81910359],[4.53427012,0.02812483,96.81988525],[4.53427065,0.02812655,96.82066581],[4.53427118,0.02812827,96.8214452],[4.53427171,0.02813,96.82222336],[4.53427224,0.02813172,96.82300023],[4.53427276,0.02813345,96.82377573],[4.53427329,0.02813517,96.8245498],[4.53427382,0.02813689,96.82532238],[4.53427435,0.02813862,96.82609341],[4.53427488,0.02814034,96.8268628],[4.5342754,0.02814207,96.82763052],[4.53427593,0.02814379,96.82839647],[4.53427646,0.02814551,96.82916062],[4.53427699,0.02814724,96.82992288],[4.53427752,0.02814896,96.83068319],[4.53427804,0.02815069,96.83144149],[4.53427857,0.02815241,96.83219772],[4.5342791,0.02815414,96.83295181],[4.53427963,0.02815586,96.8337037],[4.53428016,0.02815758,96.83445333],[4.53428068,0.02815931,96.83520063],[4.53428121,0.02816103,96.83594554],[4.53428174,0.02816276,96.83668799],[4.53428227,0.02816448,96.83742793],[4.5342828,0.0281662,96.8381653],[4.53428332,0.02816793,96.83890008],[4.53428385,0.02816965,96.83963231],[4.53428438,0.02817138,96.84036204],[4.53428491,0.0281731,96.84108932],[4.53428544,0.02817483,96.84181418],[4.53428596,0.02817655,96.84253666],[4.53428649,0.02817827,96.84325681],[4.53428702,0.02818,96.84397467],[4.53428755,0.02818172,96.84469029],[4.53428808,0.02818345,96.8454037],[4.53428861,0.02818517,96.84611495],[4.53428913,0.02818689,96.84682409],[4.53428966,0.02818862,96.84753114],[4.53429019,0.02819034,96.84823617],[4.53429072,0.02819207,96.84893921],[4.53429125,0.02819379,96.8496403],[4.53429178,0.02819551,96.85033948],[4.5342923,0.02819724,96.8510368],[4.53429283,0.02819896,96.85173231],[4.53429336,0.02820069,96.85242603],[4.53429389,0.02820241,96.85311802],[4.53429442,0.02820414,96.85380832],[4.53429494,0.02820586,96.85449697],[4.53429547,0.02820758,96.85518401],[4.534296,0.02820931,96.85586948],[4.53429653,0.02821103,96.85655343],[4.53429705,0.02821276,96.8572359],[4.53428472,0.02821659,96.8572359]]],"type":"Polygon"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":2,"type":"none","predecessorId":0,"sOffset":0.0}},{"geometry":{"coordinates":[[[4.53367405,0.02674143,96.01700215],[4.5336735,0.02673972,96.01574157],[4.53367294,0.02673801,96.01448878],[4.53367239,0.02673629,96.01324372],[4.53367183,0.02673458,96.01200635],[4.53367128,0.02673286,96.01077662],[4.53367097,0.02673193,96.01010574],[4.53370947,0.02671961,95.88510574],[4.53370979,0.02672055,96.01077662],[4.53371038,0.02672225,96.01200635],[4.53371096,0.02672396,96.01324372],[4.53371154,0.02672566,96.01448878],[4.53371212,0.02672737,96.01574157],[4.53371271,0.02672908,96.01700215],[4.53367405,0.02674143,96.01700215]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-7,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15},{"outer":0.15,"inner":0.025}],"roadId":"1000100","id":-7,"type":"none","predecessorId":0,"sOffset":176.4909785948}},{"geometry":{"coordinates":[[[4.53371271,0.02672908,95.86700215],[4.53371212,0.02672737,95.86574157],[4.53371154,0.02672566,95.86448878],[4.53371096,0.02672396,95.86324372],[4.53371038,0.02672225,95.86200635],[4.53370979,0.02672055,95.86077662],[4.53370947,0.02671961,96.01010574],[4.53371079,0.02671919,96.01010574],[4.5337111,0.02672013,95.86077662],[4.53371169,0.02672183,95.86200635],[4.53371227,0.02672354,95.86324372],[4.53371285,0.02672525,95.86448878],[4.53371343,0.02672695,95.86574157],[4.53371402,0.02672866,95.86700215],[4.53371271,0.02672908,95.86700215]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-6,"level":true,"heights":[{"outer":0.0,"inner":0.0},{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-6,"type":"border","predecessorId":0,"sOffset":176.4909785948}},{"geometry":{"coordinates":[[[4.53371402,0.02672866,95.86700215],[4.53371343,0.02672695,95.86574157],[4.53371285,0.02672525,95.86448878],[4.53371227,0.02672354,95.86324372],[4.53371169,0.02672183,95.86200635],[4.5337111,0.02672013,95.86077662],[4.53371079,0.02671919,95.86010574],[4.5337137,0.02671826,95.86959087],[4.533714,0.0267192,95.87020583],[4.53371456,0.02672092,95.87133349],[4.53371511,0.02672263,95.87246875],[4.53371567,0.02672434,95.87361166],[4.53371622,0.02672606,95.87476227],[4.53371678,0.02672777,95.87592062],[4.53371402,0.02672866,95.86700215]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-5,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-5,"type":"border","predecessorId":0,"sOffset":176.4909785948}},{"geometry":{"coordinates":[[[4.53371678,0.02672777,95.87592062],[4.53371622,0.02672606,95.87476227],[4.53371567,0.02672434,95.87361166],[4.53371511,0.02672263,95.87246875],[4.53371456,0.02672092,95.87133349],[4.533714,0.0267192,95.87020583],[4.5337137,0.02671826,95.86959087],[4.53371522,0.02671778,95.87452667],[4.53371551,0.02671872,95.87511622],[4.53371606,0.02672044,95.87619751],[4.5337166,0.02672216,95.87728635],[4.53371714,0.02672387,95.8783828],[4.53371768,0.02672559,95.87948691],[4.53371823,0.02672731,95.88059873],[4.53371678,0.02672777,95.87592062]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-4,"type":"shoulder","predecessorId":0,"sOffset":176.4909785948}},{"geometry":{"coordinates":[[[4.53371823,0.02672731,95.88059873],[4.53371768,0.02672559,95.87948691],[4.53371714,0.02672387,95.8783828],[4.5337166,0.02672216,95.87728635],[4.53371606,0.02672044,95.87619751],[4.53371551,0.02671872,95.87511622],[4.53371522,0.02671778,95.87452667],[4.53374438,0.02670845,95.96947746],[4.53374468,0.02670939,95.96999683],[4.53374522,0.02671111,95.97094783],[4.53374576,0.02671283,95.97190347],[4.5337463,0.02671455,95.97286378],[4.53374684,0.02671627,95.97382879],[4.53374739,0.02671799,95.97479853],[4.53371823,0.02672731,95.88059873]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"entry","predecessorId":-3,"sOffset":176.4909785948}},{"geometry":{"coordinates":[[[4.53374739,0.02671799,95.97479853],[4.53374684,0.02671627,95.97382879],[4.5337463,0.02671455,95.97286378],[4.53374576,0.02671283,95.97190347],[4.53374522,0.02671111,95.97094783],[4.53374468,0.02670939,95.96999683],[4.53374438,0.02670845,95.96947746],[4.53377578,0.02669841,96.07170569],[4.53377608,0.02669935,96.07215248],[4.53377662,0.02670107,96.07296864],[4.53377716,0.02670279,96.07378628],[4.53377771,0.02670451,96.07460541],[4.53377825,0.02670623,96.07542603],[4.53377879,0.02670795,96.07624817],[4.53374739,0.02671799,95.97479853]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2,"sOffset":176.4909785948}},{"geometry":{"coordinates":[[[4.53377879,0.02670795,96.07624817],[4.53377825,0.02670623,96.07542603],[4.53377771,0.02670451,96.07460541],[4.53377716,0.02670279,96.07378628],[4.53377662,0.02670107,96.07296864],[4.53377608,0.02669935,96.07215248],[4.53377578,0.02669841,96.07170569],[4.53380623,0.02668867,96.17081676],[4.53380653,0.02668961,96.17119499],[4.53380707,0.02669133,96.17188373],[4.53380761,0.02669305,96.17257087],[4.53380816,0.02669477,96.1732564],[4.5338087,0.02669649,96.17394032],[4.53380924,0.02669821,96.17462261],[4.53377879,0.02670795,96.07624817]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1,"sOffset":176.4909785948}},{"geometry":{"coordinates":[[[4.53380924,0.02669821,96.17462261],[4.5338087,0.02669649,96.17394032],[4.53380816,0.02669477,96.1732564],[4.53380761,0.02669305,96.17257087],[4.53380707,0.02669133,96.17188373],[4.53380653,0.02668961,96.17119499],[4.53380623,0.02668867,96.17081676],[4.53380999,0.02668747,96.1830712],[4.5338103,0.02668841,96.18346066],[4.53381085,0.02669012,96.18416953],[4.53381141,0.02669184,96.18487632],[4.53381196,0.02669356,96.18558102],[4.53381251,0.02669527,96.18628361],[4.53381307,0.02669699,96.18698408],[4.53380924,0.02669821,96.17462261]]],"type":"Polygon"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":1,"type":"shoulder","predecessorId":1,"sOffset":176.4909785948}},{"geometry":{"coordinates":[[[4.53381307,0.02669699,96.18698408],[4.53381251,0.02669527,96.18628361],[4.53381196,0.02669356,96.18558102],[4.53381141,0.02669184,96.18487632],[4.53381085,0.02669012,96.18416953],[4.5338103,0.02668841,96.18346066],[4.53380999,0.02668747,96.1830712],[4.53382235,0.02668351,96.1830712],[4.53382265,0.02668446,96.18346066],[4.5338232,0.02668618,96.18416953],[4.53382374,0.0266879,96.18487632],[4.53382428,0.02668962,96.18558102],[4.53382483,0.02669134,96.18628361],[4.53382537,0.02669305,96.18698408],[4.53381307,0.02669699,96.18698408]]],"type":"Polygon"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":2,"type":"none","predecessorId":2,"sOffset":176.4909785948}},{"geometry":{"coordinates":[[[4.53367097,0.02673193,96.01010574],[4.53367042,0.02673021,96.00901064],[4.53366986,0.0267285,96.00792417],[4.5336693,0.02672679,96.0068462],[4.53366875,0.02672507,96.00577662],[4.53366819,0.02672336,96.00471528],[4.53366764,0.02672164,96.00366208],[4.53366708,0.02671993,96.00261688],[4.53366653,0.02671822,96.00157955],[4.53366597,0.0267165,96.00054998],[4.53366542,0.02671479,95.99952803],[4.53366486,0.02671308,95.99851358],[4.53366431,0.02671136,95.9975065],[4.53366375,0.02670965,95.99650667],[4.53366319,0.02670794,95.99551395],[4.53366264,0.02670622,95.99452822],[4.53366208,0.02670451,95.99354934],[4.53366153,0.02670279,95.9925772],[4.53366097,0.02670108,95.99161166],[4.53366041,0.02669937,95.99065259],[4.53365985,0.02669766,95.98969987],[4.5336593,0.02669594,95.98875336],[4.53365874,0.02669423,95.98781287],[4.53365818,0.02669252,95.98687742],[4.53365762,0.0266908,95.98594764],[4.53365706,0.02668909,95.9850249],[4.53365651,0.02668738,95.98411056],[4.53365596,0.02668566,95.98320598],[4.53365542,0.02668394,95.98231141],[4.53365489,0.02668222,95.98142491],[4.53365437,0.0266805,95.9805462],[4.53365384,0.02667877,95.97967511],[4.53365333,0.02667705,95.9788115],[4.53365281,0.02667532,95.9779552],[4.5336523,0.02667359,95.97710607],[4.53365178,0.02667187,95.97626393],[4.53365127,0.02667014,95.97542865],[4.53365076,0.02666841,95.97460005],[4.53365024,0.02666668,95.97377799],[4.53364973,0.02666496,95.9729623],[4.53364921,0.02666323,95.97215283],[4.53364868,0.02666151,95.97134942],[4.53364815,0.02665979,95.9705519],[4.53364761,0.02665807,95.96976008],[4.53364707,0.02665635,95.96897368],[4.53364653,0.02665463,95.96819243],[4.53364598,0.02665292,95.96741607],[4.53364543,0.0266512,95.96664433],[4.53364487,0.02664949,95.96587695],[4.53364432,0.02664777,95.96511364],[4.53364376,0.02664606,95.96435416],[4.5336432,0.02664435,95.96359857],[4.53364264,0.02664264,95.96284755],[4.53364209,0.02664092,95.96210114],[4.53364153,0.02663921,95.96135933],[4.53364097,0.0266375,95.9606221],[4.53364041,0.02663578,95.95988946],[4.53363985,0.02663407,95.95916139],[4.5336393,0.02663236,95.95843789],[4.53363874,0.02663064,95.95771895],[4.53363818,0.02662893,95.95700456],[4.53363763,0.02662722,95.95629472],[4.53363707,0.0266255,95.95558942],[4.53363652,0.02662379,95.95488865],[4.53363596,0.02662208,95.95419241],[4.53363541,0.02662036,95.95350068],[4.53363485,0.02661865,95.95281346],[4.5336343,0.02661693,95.95213074],[4.53363375,0.02661522,95.95145252],[4.5336332,0.0266135,95.95077878],[4.53363265,0.02661179,95.95010953],[4.5336321,0.02661007,95.94944474],[4.53363155,0.02660835,95.94878442],[4.53363101,0.02660664,95.94812856],[4.53363046,0.02660492,95.94747714],[4.53362992,0.0266032,95.94683016],[4.53362937,0.02660149,95.94618761],[4.53362883,0.02659977,95.94554949],[4.53362829,0.02659805,95.94491578],[4.53362775,0.02659633,95.94428644],[4.53362721,0.02659461,95.94366127],[4.53362667,0.02659289,95.94304007],[4.53362614,0.02659117,95.94242259],[4.5336256,0.02658945,95.94180869],[4.53362507,0.02658773,95.94119828],[4.53362453,0.02658601,95.94059127],[4.533624,0.02658429,95.93998758],[4.53362347,0.02658257,95.93938711],[4.53362294,0.02658085,95.93878979],[4.5336224,0.02657913,95.93819552],[4.53362187,0.0265774,95.93760423],[4.53362134,0.02657568,95.93701581],[4.53362081,0.02657396,95.9364302],[4.53362028,0.02657224,95.9358473],[4.53361975,0.02657052,95.93526702],[4.53361922,0.0265688,95.93468928],[4.53361869,0.02656707,95.93411401],[4.53361816,0.02656535,95.9335411],[4.53361763,0.02656363,95.93297047],[4.5336171,0.02656191,95.93240204],[4.53361657,0.02656019,95.93183573],[4.53361604,0.02655847,95.93127145],[4.5336155,0.02655674,95.93070911],[4.53361497,0.02655502,95.93014863],[4.53361444,0.0265533,95.92958993],[4.53361391,0.02655158,95.92903291],[4.53361337,0.02654986,95.9284775],[4.53361284,0.02654814,95.92792361],[4.5336123,0.02654642,95.92737116],[4.53361177,0.0265447,95.92682006],[4.53361123,0.02654298,95.92627024],[4.5336107,0.02654126,95.92572162],[4.53361016,0.02653954,95.92517414],[4.53360962,0.02653782,95.92462772],[4.53360909,0.0265361,95.92408229],[4.53360855,0.02653438,95.92353778],[4.53360801,0.02653266,95.92299413],[4.53360747,0.02653094,95.92245127],[4.53360693,0.02652922,95.92190911],[4.53360639,0.0265275,95.9213676],[4.53360585,0.02652578,95.92082666],[4.53360531,0.02652407,95.92028623],[4.53360477,0.02652235,95.91974623],[4.53360422,0.02652063,95.91920659],[4.53360368,0.02651891,95.91866728],[4.53360313,0.0265172,95.91812842],[4.53360259,0.02651548,95.91759016],[4.53360204,0.02651376,95.91705264],[4.5336015,0.02651204,95.916516],[4.53360095,0.02651033,95.91598041],[4.5336004,0.02650861,95.915446],[4.53359985,0.0265069,95.91491292],[4.53359931,0.02650518,95.91438132],[4.53359876,0.02650346,95.9138513],[4.53359821,0.02650175,95.91332281],[4.53359766,0.02650003,95.91279578],[4.53359711,0.02649831,95.91227012],[4.53359656,0.0264966,95.91174575],[4.53359601,0.02649488,95.91122258],[4.53359546,0.02649317,95.91070053],[4.53359491,0.02649145,95.91017952],[4.53359436,0.02648974,95.90965946],[4.53359382,0.02648802,95.90914028],[4.53359327,0.0264863,95.90862189],[4.53359272,0.02648459,95.9081042],[4.53359217,0.02648287,95.90758714],[4.53359162,0.02648116,95.90707062],[4.53359107,0.02647944,95.90655457],[4.53359052,0.02647772,95.90603889],[4.53358997,0.02647601,95.90552351],[4.53358942,0.02647429,95.90500834],[4.53358887,0.02647258,95.90449331],[4.53358833,0.02647086,95.90397832],[4.53358778,0.02646914,95.90346331],[4.53358723,0.02646743,95.90294818],[4.53358668,0.02646571,95.90243283],[4.53358614,0.02646399,95.90191702],[4.53358559,0.02646228,95.90140051],[4.53358504,0.02646056,95.90088302],[4.5335845,0.02645884,95.9003643],[4.53358395,0.02645713,95.8998442],[4.5335834,0.02645541,95.89932268],[4.53358286,0.02645369,95.89879968],[4.53358231,0.02645198,95.89827518],[4.53358177,0.02645026,95.89774912],[4.53358122,0.02644854,95.89722146],[4.53358068,0.02644682,95.89669217],[4.53358013,0.02644511,95.89616119],[4.53357958,0.02644339,95.8956285],[4.53357904,0.02644167,95.89509403],[4.53357849,0.02643996,95.89455776],[4.53357795,0.02643824,95.89401964],[4.5335774,0.02643652,95.89347963],[4.53357686,0.0264348,95.89293768],[4.53357631,0.02643309,95.89239375],[4.53357576,0.02643137,95.8918478],[4.53357522,0.02642965,95.89129978],[4.53357467,0.02642794,95.89074966],[4.53357412,0.02642622,95.89019739],[4.53357358,0.0264245,95.88964292],[4.53357303,0.02642279,95.88908622],[4.53357248,0.02642107,95.88852724],[4.53357193,0.02641935,95.88796594],[4.53357138,0.02641764,95.88740227],[4.53357083,0.02641592,95.88683619],[4.53357029,0.02641421,95.88626766],[4.53356974,0.02641249,95.88569663],[4.53356919,0.02641077,95.88512306],[4.53356863,0.02640906,95.88454691],[4.53356808,0.02640734,95.88396814],[4.53356753,0.02640563,95.88338669],[4.53356698,0.02640391,95.88280253],[4.53356643,0.0264022,95.8822156],[4.53356587,0.02640048,95.88162576],[4.53356532,0.02639877,95.88103292],[4.53356476,0.02639706,95.88043697],[4.53356421,0.02639534,95.8798378],[4.53356365,0.02639363,95.87923531],[4.5335631,0.02639191,95.87862943],[4.53356254,0.0263902,95.87802025],[4.53356198,0.02638849,95.87740789],[4.53356142,0.02638677,95.87679248],[4.53356087,0.02638506,95.87617415],[4.53356031,0.02638335,95.87555302],[4.53355975,0.02638164,95.87492922],[4.53355919,0.02637992,95.87430286],[4.53355863,0.02637821,95.87367409],[4.53355807,0.0263765,95.87304301],[4.53355751,0.02637479,95.87240975],[4.53355695,0.02637307,95.87177444],[4.53355639,0.02637136,95.8711372],[4.53355583,0.02636965,95.87049815],[4.53355526,0.02636794,95.86985742],[4.5335547,0.02636622,95.86921513],[4.53355414,0.02636451,95.8685714],[4.53355358,0.0263628,95.86792635],[4.53355302,0.02636109,95.86728011],[4.53355246,0.02635937,95.8666328],[4.53355191,0.02635766,95.86598455],[4.53355135,0.02635595,95.86533546],[4.53355079,0.02635423,95.86468568],[4.53355023,0.02635252,95.86403532],[4.53354967,0.02635081,95.86338451],[4.53354912,0.02634909,95.86273333],[4.53354856,0.02634738,95.86208151],[4.53354801,0.02634566,95.86142873],[4.53354745,0.02634395,95.86077466],[4.5335469,0.02634224,95.86011899],[4.53354635,0.02634052,95.85946139],[4.5335458,0.0263388,95.85880154],[4.53354525,0.02633709,95.85813911],[4.5335447,0.02633537,95.85747378],[4.53354416,0.02633366,95.85680524],[4.53354361,0.02633194,95.85613315],[4.53354307,0.02633022,95.85545713],[4.53354252,0.0263285,95.85477657],[4.53354198,0.02632678,95.85409123],[4.53354144,0.02632507,95.85340134],[4.5335409,0.02632335,95.85270714],[4.53354035,0.02632163,95.85200886],[4.53353981,0.02631991,95.85130677],[4.53353928,0.02631819,95.85060108],[4.53353874,0.02631647,95.84989205],[4.5335382,0.02631475,95.84917992],[4.53353766,0.02631303,95.84846493],[4.53353712,0.02631131,95.84774732],[4.53353659,0.02630959,95.84702733],[4.53353605,0.02630787,95.84630519],[4.53353551,0.02630615,95.84558116],[4.53353498,0.02630443,95.84485546],[4.53353444,0.02630271,95.84412834],[4.53353391,0.02630099,95.84339988],[4.53353337,0.02629927,95.84267006],[4.53353283,0.02629755,95.84193881],[4.5335323,0.02629583,95.8412061],[4.53353176,0.02629411,95.84047186],[4.53353123,0.02629239,95.83973606],[4.53353069,0.02629067,95.83899865],[4.53353015,0.02628895,95.83825957],[4.53352961,0.02628723,95.83751878],[4.53352908,0.02628551,95.83677624],[4.53352854,0.02628379,95.83603188],[4.533528,0.02628207,95.83528567],[4.53352746,0.02628035,95.83453756],[4.53352691,0.02627863,95.83378756],[4.53352637,0.02627691,95.83303593],[4.53352583,0.0262752,95.83228299],[4.53352528,0.02627348,95.83152906],[4.53352474,0.02627176,95.83077446],[4.53352419,0.02627004,95.83001945],[4.53352364,0.02626833,95.82926398],[4.5335231,0.02626661,95.82850797],[4.53352255,0.02626489,95.82775131],[4.533522,0.02626318,95.8269939],[4.53352145,0.02626146,95.82623566],[4.5335209,0.02625975,95.82547647],[4.53352035,0.02625803,95.82471625],[4.5335198,0.02625631,95.82395488],[4.53351925,0.0262546,95.82319228],[4.5335187,0.02625288,95.82242835],[4.53351815,0.02625117,95.82166298],[4.5335176,0.02624945,95.82089608],[4.53351706,0.02624773,95.82012755],[4.53351651,0.02624602,95.81935729],[4.53351596,0.0262443,95.81858521],[4.53351541,0.02624258,95.81781119],[4.53351486,0.02624087,95.81703515],[4.53351432,0.02623915,95.81625699],[4.53351377,0.02623743,95.8154766],[4.53351323,0.02623572,95.81469389],[4.53351268,0.026234,95.81390875],[4.53351214,0.02623228,95.81312116],[4.5335116,0.02623056,95.8123313],[4.53351106,0.02622884,95.81153928],[4.53351052,0.02622712,95.81074514],[4.53350998,0.0262254,95.80994896],[4.53350944,0.02622368,95.80915078],[4.5335089,0.02622196,95.80835067],[4.53350836,0.02622024,95.80754868],[4.53350783,0.02621852,95.80674488],[4.53350729,0.0262168,95.80593932],[4.53350675,0.02621508,95.80513207],[4.53350622,0.02621336,95.80432318],[4.53350568,0.02621164,95.80351271],[4.53350515,0.02620992,95.80270072],[4.53350461,0.0262082,95.80188727],[4.53350407,0.02620648,95.80107243],[4.53350353,0.02620476,95.80025623],[4.53350299,0.02620304,95.79943876],[4.53350245,0.02620132,95.79862006],[4.53350191,0.0261996,95.79780019],[4.53350137,0.02619789,95.79697921],[4.53350083,0.02619617,95.79615719],[4.53350029,0.02619445,95.79533418],[4.53349975,0.02619273,95.79451024],[4.5334992,0.02619101,95.79368543],[4.53349866,0.02618929,95.7928598],[4.53349811,0.02618758,95.79203343],[4.53349757,0.02618586,95.79120636],[4.53349702,0.02618414,95.79037866],[4.53349648,0.02618242,95.78955039],[4.53349593,0.02618071,95.78872161],[4.53349538,0.02617899,95.78789234],[4.53349484,0.02617727,95.78706252],[4.53349429,0.02617556,95.78623203],[4.53349375,0.02617384,95.78540079],[4.5334932,0.02617212,95.78456867],[4.53349265,0.0261704,95.78373559],[4.53349211,0.02616869,95.78290155],[4.53349156,0.02616697,95.78206657],[4.53349102,0.02616525,95.78123065],[4.53349047,0.02616353,95.78039382],[4.53348992,0.02616182,95.77955609],[4.53348938,0.0261601,95.77871746],[4.53348883,0.02615838,95.77787797],[4.53348829,0.02615667,95.77703762],[4.53348774,0.02615495,95.77619643],[4.53348719,0.02615323,95.77535442],[4.53348665,0.02615151,95.77451159],[4.5334861,0.0261498,95.77366797],[4.53348555,0.02614808,95.77282357],[4.53348501,0.02614636,95.7719784],[4.53348446,0.02614465,95.77113249],[4.53348391,0.02614293,95.77028586],[4.53348337,0.02614121,95.76943852],[4.53348282,0.02613949,95.7685905],[4.53348228,0.02613778,95.76774183],[4.53348173,0.02613606,95.76689251],[4.53348118,0.02613434,95.76604258],[4.53348064,0.02613262,95.76519205],[4.53348009,0.02613091,95.76434095],[4.53347954,0.02612919,95.76348929],[4.533479,0.02612747,95.7626371],[4.53347845,0.02612576,95.76178437],[4.53347791,0.02612404,95.76093107],[4.53347736,0.02612232,95.76007716],[4.53347681,0.0261206,95.7592226],[4.53347627,0.02611889,95.75836736],[4.53347572,0.02611717,95.7575114],[4.53347517,0.02611545,95.75665469],[4.53347463,0.02611374,95.7557972],[4.53347408,0.02611202,95.75493888],[4.53347353,0.0261103,95.7540797],[4.53347299,0.02610858,95.75321963],[4.53347244,0.02610687,95.75235863],[4.53347189,0.02610515,95.75149665],[4.53347135,0.02610343,95.75063368],[4.5334708,0.02610172,95.74976966],[4.53347025,0.0261,95.74890457],[4.5334697,0.02609828,95.74803836],[4.53346916,0.02609657,95.747171],[4.53346861,0.02609485,95.74630245],[4.53346806,0.02609313,95.74543268],[4.53346751,0.02609142,95.74456165],[4.53346696,0.0260897,95.74368934],[4.53346641,0.02608798,95.74281577],[4.53346586,0.02608627,95.74194094],[4.53346531,0.02608455,95.74106485],[4.53346476,0.02608283,95.74018753],[4.53346421,0.02608112,95.73930897],[4.53346366,0.0260794,95.73842919],[4.53346311,0.02607769,95.73754819],[4.53346256,0.02607597,95.73666599],[4.53346201,0.02607426,95.73578259],[4.53346146,0.02607254,95.73489799],[4.5334609,0.02607082,95.73401222],[4.53346035,0.02606911,95.73312527],[4.5334598,0.02606739,95.73223715],[4.53345925,0.02606568,95.73134788],[4.53345869,0.02606396,95.73045746],[4.53345814,0.02606225,95.7295659],[4.53345759,0.02606053,95.72867321],[4.53345703,0.02605882,95.72777939],[4.53345648,0.0260571,95.72688448],[4.53345592,0.02605539,95.72598858],[4.53345537,0.02605368,95.72509181],[4.53345481,0.02605196,95.72419429],[4.53345426,0.02605025,95.72329615],[4.5334537,0.02604853,95.72239751],[4.53345315,0.02604682,95.7214985],[4.53345259,0.0260451,95.72059924],[4.53345204,0.02604339,95.71969985],[4.53345148,0.02604167,95.71880046],[4.53345093,0.02603996,95.71790118],[4.53345037,0.02603825,95.71700207],[4.53344982,0.02603653,95.71610318],[4.53344926,0.02603482,95.71520455],[4.53344871,0.0260331,95.71430622],[4.53344815,0.02603139,95.71340825],[4.5334476,0.02602967,95.71251069],[4.53344705,0.02602796,95.71161357],[4.53344649,0.02602624,95.71071694],[4.53344594,0.02602453,95.70982086],[4.53344538,0.02602281,95.70892536],[4.53344483,0.0260211,95.70803049],[4.53344428,0.02601938,95.70713631],[4.53344373,0.02601767,95.70624285],[4.53344317,0.02601595,95.70535017],[4.53344262,0.02601424,95.70445831],[4.53344207,0.02601252,95.70356732],[4.53344152,0.0260108,95.70267725],[4.53344096,0.02600909,95.70178814],[4.53344041,0.02600737,95.70090004],[4.53343986,0.02600566,95.70001299],[4.53343931,0.02600394,95.69912706],[4.53343876,0.02600223,95.69824227],[4.53343821,0.02600051,95.69735869],[4.53343766,0.02599879,95.69647636],[4.53343711,0.02599708,95.69559532],[4.53343656,0.02599536,95.69471562],[4.53343602,0.02599364,95.6938373],[4.53343547,0.02599193,95.6929604],[4.53343492,0.02599021,95.69208496],[4.53343437,0.02598849,95.69121102],[4.53343383,0.02598678,95.69033863],[4.53343328,0.02598506,95.68946783],[4.53343273,0.02598334,95.68859866],[4.53343219,0.02598162,95.68773115],[4.53343164,0.02597991,95.68686536],[4.5334311,0.02597819,95.68600132],[4.53343056,0.02597647,95.68513908],[4.53343001,0.02597475,95.68427868],[4.53342999,0.02597467,95.68423833],[4.53346859,0.02596217,95.68423833],[4.53346861,0.02596226,95.68427868],[4.53346916,0.02596397,95.68513908],[4.5334697,0.02596569,95.68600132],[4.53347024,0.02596741,95.68686536],[4.53347079,0.02596913,95.68773115],[4.53347134,0.02597085,95.68859866],[4.53347188,0.02597256,95.68946783],[4.53347243,0.02597428,95.69033863],[4.53347297,0.025976,95.69121102],[4.53347352,0.02597772,95.69208496],[4.53347407,0.02597943,95.6929604],[4.53347462,0.02598115,95.6938373],[4.53347517,0.02598287,95.69471562],[4.53347571,0.02598458,95.69559532],[4.53347626,0.0259863,95.69647636],[4.53347681,0.02598802,95.69735869],[4.53347736,0.02598973,95.69824227],[4.53347791,0.02599145,95.69912706],[4.53347846,0.02599317,95.70001299],[4.53347901,0.02599488,95.70090004],[4.53347956,0.0259966,95.70178814],[4.53348012,0.02599831,95.70267725],[4.53348067,0.02600003,95.70356732],[4.53348122,0.02600175,95.70445831],[4.53348177,0.02600346,95.70535017],[4.53348232,0.02600518,95.70624285],[4.53348288,0.02600689,95.70713631],[4.53348343,0.02600861,95.70803049],[4.53348398,0.02601032,95.70892536],[4.53348453,0.02601204,95.70982086],[4.53348509,0.02601375,95.71071694],[4.53348564,0.02601547,95.71161357],[4.53348619,0.02601719,95.71251069],[4.53348675,0.0260189,95.71340825],[4.5334873,0.02602062,95.71430622],[4.53348786,0.02602233,95.71520455],[4.53348841,0.02602405,95.71610318],[4.53348896,0.02602576,95.71700207],[4.53348952,0.02602748,95.71790118],[4.53349007,0.02602919,95.71880046],[4.53349063,0.02603091,95.71969985],[4.53349118,0.02603262,95.72059924],[4.53349174,0.02603434,95.7214985],[4.53349229,0.02603605,95.72239751],[4.53349284,0.02603777,95.72329615],[4.5334934,0.02603948,95.72419429],[4.53349395,0.0260412,95.72509181],[4.53349451,0.02604291,95.72598858],[4.53349506,0.02604463,95.72688448],[4.53349561,0.02604634,95.72777939],[4.53349617,0.02604806,95.72867321],[4.53349672,0.02604977,95.7295659],[4.53349727,0.02605149,95.73045746],[4.53349783,0.0260532,95.73134788],[4.53349838,0.02605492,95.73223715],[4.53349893,0.02605663,95.73312527],[4.53349948,0.02605835,95.73401222],[4.53350003,0.02606007,95.73489799],[4.53350058,0.02606178,95.73578259],[4.53350113,0.0260635,95.73666599],[4.53350168,0.02606521,95.73754819],[4.53350223,0.02606693,95.73842919],[4.53350278,0.02606865,95.73930897],[4.53350333,0.02607036,95.74018753],[4.53350388,0.02607208,95.74106485],[4.53350443,0.0260738,95.74194094],[4.53350498,0.02607551,95.74281577],[4.53350553,0.02607723,95.74368934],[4.53350608,0.02607895,95.74456165],[4.53350663,0.02608066,95.74543268],[4.53350717,0.02608238,95.74630245],[4.53350772,0.0260841,95.747171],[4.53350827,0.02608582,95.74803836],[4.53350882,0.02608753,95.74890457],[4.53350936,0.02608925,95.74976966],[4.53350991,0.02609097,95.75063368],[4.53351045,0.02609268,95.75149665],[4.533511,0.0260944,95.75235863],[4.53351155,0.02609612,95.75321963],[4.53351209,0.02609784,95.7540797],[4.53351264,0.02609955,95.75493888],[4.53351319,0.02610127,95.7557972],[4.53351373,0.02610299,95.75665469],[4.53351428,0.02610471,95.7575114],[4.53351482,0.02610643,95.75836736],[4.53351537,0.02610814,95.7592226],[4.53351591,0.02610986,95.76007716],[4.53351646,0.02611158,95.76093107],[4.53351701,0.0261133,95.76178437],[4.53351755,0.02611501,95.7626371],[4.5335181,0.02611673,95.76348929],[4.53351864,0.02611845,95.76434095],[4.53351919,0.02612017,95.76519205],[4.53351973,0.02612188,95.76604258],[4.53352028,0.0261236,95.76689251],[4.53352083,0.02612532,95.76774183],[4.53352137,0.02612704,95.7685905],[4.53352192,0.02612875,95.76943852],[4.53352246,0.02613047,95.77028586],[4.53352301,0.02613219,95.77113249],[4.53352356,0.02613391,95.7719784],[4.5335241,0.02613563,95.77282357],[4.53352465,0.02613734,95.77366797],[4.5335252,0.02613906,95.77451159],[4.53352574,0.02614078,95.77535442],[4.53352629,0.02614249,95.77619643],[4.53352683,0.02614421,95.77703762],[4.53352738,0.02614593,95.77787797],[4.53352793,0.02614765,95.77871746],[4.53352847,0.02614936,95.77955609],[4.53352902,0.02615108,95.78039382],[4.53352957,0.0261528,95.78123065],[4.53353011,0.02615452,95.78206657],[4.53353066,0.02615623,95.78290155],[4.53353121,0.02615795,95.78373559],[4.53353175,0.02615967,95.78456867],[4.5335323,0.02616139,95.78540079],[4.53353285,0.0261631,95.78623203],[4.53353339,0.02616482,95.78706252],[4.53353394,0.02616654,95.78789234],[4.53353449,0.02616826,95.78872161],[4.53353503,0.02616997,95.78955039],[4.53353558,0.02617169,95.79037866],[4.53353613,0.02617341,95.79120636],[4.53353668,0.02617512,95.79203343],[4.53353722,0.02617684,95.7928598],[4.53353777,0.02617856,95.79368543],[4.53353832,0.02618027,95.79451024],[4.53353887,0.02618199,95.79533418],[4.53353942,0.02618371,95.79615719],[4.53353996,0.02618543,95.79697921],[4.53354051,0.02618714,95.79780019],[4.53354106,0.02618886,95.79862006],[4.53354161,0.02619058,95.79943876],[4.53354216,0.02619229,95.80025623],[4.53354271,0.02619401,95.80107243],[4.53354325,0.02619573,95.80188727],[4.5335438,0.02619744,95.80270072],[4.53354435,0.02619916,95.80351271],[4.5335449,0.02620088,95.80432318],[4.53354545,0.02620259,95.80513207],[4.533546,0.02620431,95.80593932],[4.53354654,0.02620603,95.80674488],[4.53354709,0.02620774,95.80754868],[4.53354764,0.02620946,95.80835067],[4.53354819,0.02621118,95.80915078],[4.53354873,0.0262129,95.80994896],[4.53354928,0.02621461,95.81074514],[4.53354983,0.02621633,95.81153928],[4.53355037,0.02621805,95.8123313],[4.53355092,0.02621976,95.81312116],[4.53355147,0.02622148,95.81390875],[4.53355201,0.0262232,95.81469389],[4.53355256,0.02622492,95.8154766],[4.5335531,0.02622663,95.81625699],[4.53355365,0.02622835,95.81703515],[4.53355419,0.02623007,95.81781119],[4.53355474,0.02623179,95.81858521],[4.53355528,0.02623351,95.81935729],[4.53355583,0.02623522,95.82012755],[4.53355637,0.02623694,95.82089608],[4.53355691,0.02623866,95.82166298],[4.53355746,0.02624038,95.82242835],[4.533558,0.0262421,95.82319228],[4.53355855,0.02624381,95.82395488],[4.53355909,0.02624553,95.82471625],[4.53355964,0.02624725,95.82547647],[4.53356018,0.02624897,95.82623566],[4.53356073,0.02625069,95.8269939],[4.53356127,0.0262524,95.82775131],[4.53356182,0.02625412,95.82850797],[4.53356236,0.02625584,95.82926398],[4.53356291,0.02625756,95.83001945],[4.53356346,0.02625927,95.83077446],[4.533564,0.02626099,95.83152906],[4.53356455,0.02626271,95.83228299],[4.5335651,0.02626442,95.83303593],[4.53356565,0.02626614,95.83378756],[4.5335662,0.02626786,95.83453756],[4.53356674,0.02626958,95.83528567],[4.53356729,0.02627129,95.83603188],[4.53356784,0.02627301,95.83677624],[4.53356839,0.02627473,95.83751878],[4.53356894,0.02627644,95.83825957],[4.53356948,0.02627816,95.83899865],[4.53357003,0.02627988,95.83973606],[4.53357058,0.02628159,95.84047186],[4.53357113,0.02628331,95.8412061],[4.53357168,0.02628503,95.84193881],[4.53357223,0.02628674,95.84267006],[4.53357277,0.02628846,95.84339988],[4.53357332,0.02629018,95.84412834],[4.53357387,0.02629189,95.84485546],[4.53357442,0.02629361,95.84558116],[4.53357497,0.02629532,95.84630519],[4.53357552,0.02629704,95.84702733],[4.53357607,0.02629876,95.84774732],[4.53357662,0.02630047,95.84846493],[4.53357717,0.02630219,95.84917992],[4.53357772,0.02630391,95.84989205],[4.53357827,0.02630562,95.85060108],[4.53357881,0.02630734,95.85130677],[4.53357936,0.02630906,95.85200886],[4.53357991,0.02631077,95.85270714],[4.53358045,0.02631249,95.85340134],[4.533581,0.02631421,95.85409123],[4.53358154,0.02631593,95.85477657],[4.53358209,0.02631765,95.85545713],[4.53358263,0.02631936,95.85613315],[4.53358317,0.02632108,95.85680524],[4.53358372,0.0263228,95.85747378],[4.53358426,0.02632452,95.85813911],[4.5335848,0.02632624,95.85880154],[4.53358534,0.02632796,95.85946139],[4.53358588,0.02632968,95.86011899],[4.53358642,0.0263314,95.86077466],[4.53358696,0.02633311,95.86142873],[4.53358751,0.02633483,95.86208151],[4.53358805,0.02633655,95.86273333],[4.53358859,0.02633827,95.86338451],[4.53358913,0.02633999,95.86403532],[4.53358968,0.02634171,95.86468568],[4.53359022,0.02634342,95.86533546],[4.53359077,0.02634514,95.86598455],[4.53359131,0.02634686,95.8666328],[4.53359186,0.02634858,95.86728011],[4.53359241,0.02635029,95.86792635],[4.53359295,0.02635201,95.8685714],[4.5335935,0.02635373,95.86921513],[4.53359405,0.02635545,95.86985742],[4.5335946,0.02635716,95.87049815],[4.53359515,0.02635888,95.8711372],[4.53359569,0.0263606,95.87177444],[4.53359624,0.02636231,95.87240975],[4.53359679,0.02636403,95.87304301],[4.53359734,0.02636575,95.87367409],[4.53359789,0.02636746,95.87430286],[4.53359844,0.02636918,95.87492922],[4.53359899,0.02637089,95.87555302],[4.53359954,0.02637261,95.87617415],[4.53360008,0.02637433,95.87679248],[4.53360063,0.02637604,95.87740789],[4.53360118,0.02637776,95.87802025],[4.53360173,0.02637948,95.87862943],[4.53360228,0.02638119,95.87923531],[4.53360282,0.02638291,95.8798378],[4.53360337,0.02638463,95.88043697],[4.53360392,0.02638635,95.88103292],[4.53360447,0.02638806,95.88162576],[4.53360501,0.02638978,95.8822156],[4.53360556,0.0263915,95.88280253],[4.53360611,0.02639321,95.88338669],[4.53360665,0.02639493,95.88396814],[4.5336072,0.02639665,95.88454691],[4.53360775,0.02639836,95.88512306],[4.53360829,0.02640008,95.88569663],[4.53360884,0.0264018,95.88626766],[4.53360939,0.02640352,95.88683619],[4.53360993,0.02640523,95.88740227],[4.53361048,0.02640695,95.88796594],[4.53361103,0.02640867,95.88852724],[4.53361157,0.02641039,95.88908622],[4.53361212,0.0264121,95.88964292],[4.53361266,0.02641382,95.89019739],[4.53361321,0.02641554,95.89074966],[4.53361376,0.02641726,95.89129978],[4.5336143,0.02641897,95.8918478],[4.53361485,0.02642069,95.89239375],[4.53361539,0.02642241,95.89293768],[4.53361594,0.02642413,95.89347963],[4.53361648,0.02642584,95.89401964],[4.53361703,0.02642756,95.89455776],[4.53361757,0.02642928,95.89509403],[4.53361812,0.026431,95.8956285],[4.53361866,0.02643271,95.89616119],[4.53361921,0.02643443,95.89669217],[4.53361975,0.02643615,95.89722146],[4.5336203,0.02643787,95.89774912],[4.53362084,0.02643959,95.89827518],[4.53362138,0.0264413,95.89879968],[4.53362193,0.02644302,95.89932268],[4.53362247,0.02644474,95.8998442],[4.53362301,0.02644646,95.9003643],[4.53362356,0.02644818,95.90088302],[4.5336241,0.02644989,95.90140051],[4.53362464,0.02645161,95.90191702],[4.53362519,0.02645333,95.90243283],[4.53362573,0.02645505,95.90294818],[4.53362627,0.02645677,95.90346331],[4.53362682,0.02645849,95.90397832],[4.53362736,0.0264602,95.90449331],[4.5336279,0.02646192,95.90500834],[4.53362845,0.02646364,95.90552351],[4.53362899,0.02646536,95.90603889],[4.53362953,0.02646708,95.90655457],[4.53363008,0.02646879,95.90707062],[4.53363062,0.02647051,95.90758714],[4.53363117,0.02647223,95.9081042],[4.53363171,0.02647395,95.90862189],[4.53363226,0.02647566,95.90914028],[4.5336328,0.02647738,95.90965946],[4.53363335,0.0264791,95.91017952],[4.53363389,0.02648082,95.91070053],[4.53363444,0.02648253,95.91122258],[4.53363499,0.02648425,95.91174575],[4.53363553,0.02648597,95.91227012],[4.53363608,0.02648769,95.91279578],[4.53363663,0.0264894,95.91332281],[4.53363717,0.02649112,95.9138513],[4.53363772,0.02649284,95.91438132],[4.53363827,0.02649455,95.91491292],[4.53363882,0.02649627,95.915446],[4.53363936,0.02649799,95.91598041],[4.53363991,0.0264997,95.916516],[4.53364046,0.02650142,95.91705264],[4.53364101,0.02650314,95.91759016],[4.53364156,0.02650485,95.91812842],[4.53364211,0.02650657,95.91866728],[4.53364265,0.02650829,95.91920659],[4.5336432,0.02651,95.91974623],[4.53364375,0.02651172,95.92028623],[4.53364429,0.02651344,95.92082666],[4.53364484,0.02651515,95.9213676],[4.53364539,0.02651687,95.92190911],[4.53364593,0.02651859,95.92245127],[4.53364648,0.02652031,95.92299413],[4.53364703,0.02652202,95.92353778],[4.53364757,0.02652374,95.92408229],[4.53364812,0.02652546,95.92462772],[4.53364866,0.02652718,95.92517414],[4.53364921,0.02652889,95.92572162],[4.53364975,0.02653061,95.92627024],[4.53365029,0.02653233,95.92682006],[4.53365084,0.02653405,95.92737116],[4.53365138,0.02653577,95.92792361],[4.53365193,0.02653748,95.9284775],[4.53365247,0.0265392,95.92903291],[4.53365301,0.02654092,95.92958993],[4.53365356,0.02654264,95.93014863],[4.5336541,0.02654436,95.93070911],[4.53365464,0.02654607,95.93127145],[4.53365518,0.02654779,95.93183573],[4.53365573,0.02654951,95.93240204],[4.53365627,0.02655123,95.93297047],[4.53365681,0.02655295,95.9335411],[4.53365735,0.02655467,95.93411401],[4.5336579,0.02655638,95.93468928],[4.53365844,0.0265581,95.93526702],[4.53365898,0.02655982,95.9358473],[4.53365952,0.02656154,95.9364302],[4.53366006,0.02656326,95.93701581],[4.53366061,0.02656498,95.93760423],[4.53366115,0.0265667,95.93819552],[4.53366169,0.02656842,95.93878979],[4.53366223,0.02657013,95.93938711],[4.53366277,0.02657185,95.93998758],[4.53366331,0.02657357,95.94059127],[4.53366386,0.02657529,95.94119828],[4.5336644,0.02657701,95.94180869],[4.53366494,0.02657873,95.94242259],[4.53366548,0.02658045,95.94304007],[4.53366602,0.02658216,95.94366127],[4.53366657,0.02658388,95.94428644],[4.53366711,0.0265856,95.94491578],[4.53366765,0.02658732,95.94554949],[4.53366819,0.02658904,95.94618761],[4.53366874,0.02659076,95.94683016],[4.53366928,0.02659247,95.94747714],[4.53366982,0.02659419,95.94812856],[4.53367036,0.02659591,95.94878442],[4.53367091,0.02659763,95.94944474],[4.53367145,0.02659935,95.95010953],[4.53367199,0.02660107,95.95077878],[4.53367254,0.02660278,95.95145252],[4.53367308,0.0266045,95.95213074],[4.53367362,0.02660622,95.95281346],[4.53367417,0.02660794,95.95350068],[4.53367471,0.02660965,95.95419241],[4.53367526,0.02661137,95.95488865],[4.5336758,0.02661309,95.95558942],[4.53367634,0.02661481,95.95629472],[4.53367689,0.02661653,95.95700456],[4.53367743,0.02661824,95.95771895],[4.53367797,0.02661996,95.95843789],[4.53367852,0.02662168,95.95916139],[4.53367906,0.0266234,95.95988946],[4.5336796,0.02662512,95.9606221],[4.53368015,0.02662683,95.96135933],[4.53368069,0.02662855,95.96210114],[4.53368123,0.02663027,95.96284755],[4.53368178,0.02663199,95.96359857],[4.53368232,0.02663371,95.96435416],[4.53368286,0.02663543,95.96511364],[4.5336834,0.02663714,95.96587695],[4.53368394,0.02663886,95.96664433],[4.53368449,0.02664058,95.96741607],[4.53368503,0.0266423,95.96819243],[4.53368557,0.02664402,95.96897368],[4.53368611,0.02664574,95.96976008],[4.53368665,0.02664746,95.9705519],[4.53368719,0.02664918,95.97134942],[4.53368773,0.0266509,95.97215283],[4.53368827,0.02665262,95.9729623],[4.53368881,0.02665433,95.97377799],[4.53368935,0.02665605,95.97460005],[4.53368989,0.02665777,95.97542865],[4.53369043,0.02665949,95.97626393],[4.53369097,0.02666121,95.97710607],[4.53369151,0.02666293,95.9779552],[4.53369206,0.02666465,95.9788115],[4.5336926,0.02666637,95.97967511],[4.53369314,0.02666808,95.9805462],[4.53369368,0.0266698,95.98142491],[4.53369423,0.02667152,95.98231141],[4.53369477,0.02667324,95.98320598],[4.53369531,0.02667496,95.98411056],[4.53369586,0.02667667,95.9850249],[4.53369641,0.02667839,95.98594764],[4.53369695,0.02668011,95.98687742],[4.5336975,0.02668182,95.98781287],[4.53369804,0.02668354,95.98875336],[4.53369859,0.02668526,95.98969987],[4.53369913,0.02668698,95.99065259],[4.53369968,0.02668869,95.99161166],[4.53370022,0.02669041,95.9925772],[4.53370077,0.02669213,95.99354934],[4.53370131,0.02669385,95.99452822],[4.53370186,0.02669556,95.99551395],[4.5337024,0.02669728,95.99650667],[4.53370294,0.026699,95.9975065],[4.53370349,0.02670072,95.99851358],[4.53370403,0.02670244,95.99952803],[4.53370457,0.02670415,96.00054998],[4.53370512,0.02670587,96.00157955],[4.53370566,0.02670759,96.00261688],[4.53370621,0.02670931,96.00366208],[4.53370675,0.02671103,96.00471528],[4.5337073,0.02671274,96.00577662],[4.53370784,0.02671446,96.0068462],[4.53370838,0.02671618,96.00792417],[4.53370893,0.0267179,96.00901064],[4.53370947,0.02671961,96.01010574],[4.53367097,0.02673193,96.01010574]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-7,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-7,"type":"none","predecessorId":-7,"sOffset":177.600614965}},{"geometry":{"coordinates":[[[4.53370947,0.02671961,96.01010574],[4.53370893,0.0267179,96.00901064],[4.53370838,0.02671618,96.00792417],[4.53370784,0.02671446,96.0068462],[4.5337073,0.02671274,96.00577662],[4.53370675,0.02671103,96.00471528],[4.53370621,0.02670931,96.00366208],[4.53370566,0.02670759,96.00261688],[4.53370512,0.02670587,96.00157955],[4.53370457,0.02670415,96.00054998],[4.53370403,0.02670244,95.99952803],[4.53370349,0.02670072,95.99851358],[4.53370294,0.026699,95.9975065],[4.5337024,0.02669728,95.99650667],[4.53370186,0.02669556,95.99551395],[4.53370131,0.02669385,95.99452822],[4.53370077,0.02669213,95.99354934],[4.53370022,0.02669041,95.9925772],[4.53369968,0.02668869,95.99161166],[4.53369913,0.02668698,95.99065259],[4.53369859,0.02668526,95.98969987],[4.53369804,0.02668354,95.98875336],[4.5336975,0.02668182,95.98781287],[4.53369695,0.02668011,95.98687742],[4.53369641,0.02667839,95.98594764],[4.53369586,0.02667667,95.9850249],[4.53369531,0.02667496,95.98411056],[4.53369477,0.02667324,95.98320598],[4.53369423,0.02667152,95.98231141],[4.53369368,0.0266698,95.98142491],[4.53369314,0.02666808,95.9805462],[4.5336926,0.02666637,95.97967511],[4.53369206,0.02666465,95.9788115],[4.53369151,0.02666293,95.9779552],[4.53369097,0.02666121,95.97710607],[4.53369043,0.02665949,95.97626393],[4.53368989,0.02665777,95.97542865],[4.53368935,0.02665605,95.97460005],[4.53368881,0.02665433,95.97377799],[4.53368827,0.02665262,95.9729623],[4.53368773,0.0266509,95.97215283],[4.53368719,0.02664918,95.97134942],[4.53368665,0.02664746,95.9705519],[4.53368611,0.02664574,95.96976008],[4.53368557,0.02664402,95.96897368],[4.53368503,0.0266423,95.96819243],[4.53368449,0.02664058,95.96741607],[4.53368394,0.02663886,95.96664433],[4.5336834,0.02663714,95.96587695],[4.53368286,0.02663543,95.96511364],[4.53368232,0.02663371,95.96435416],[4.53368178,0.02663199,95.96359857],[4.53368123,0.02663027,95.96284755],[4.53368069,0.02662855,95.96210114],[4.53368015,0.02662683,95.96135933],[4.5336796,0.02662512,95.9606221],[4.53367906,0.0266234,95.95988946],[4.53367852,0.02662168,95.95916139],[4.53367797,0.02661996,95.95843789],[4.53367743,0.02661824,95.95771895],[4.53367689,0.02661653,95.95700456],[4.53367634,0.02661481,95.95629472],[4.5336758,0.02661309,95.95558942],[4.53367526,0.02661137,95.95488865],[4.53367471,0.02660965,95.95419241],[4.53367417,0.02660794,95.95350068],[4.53367362,0.02660622,95.95281346],[4.53367308,0.0266045,95.95213074],[4.53367254,0.02660278,95.95145252],[4.53367199,0.02660107,95.95077878],[4.53367145,0.02659935,95.95010953],[4.53367091,0.02659763,95.94944474],[4.53367036,0.02659591,95.94878442],[4.53366982,0.02659419,95.94812856],[4.53366928,0.02659247,95.94747714],[4.53366874,0.02659076,95.94683016],[4.53366819,0.02658904,95.94618761],[4.53366765,0.02658732,95.94554949],[4.53366711,0.0265856,95.94491578],[4.53366657,0.02658388,95.94428644],[4.53366602,0.02658216,95.94366127],[4.53366548,0.02658045,95.94304007],[4.53366494,0.02657873,95.94242259],[4.5336644,0.02657701,95.94180869],[4.53366386,0.02657529,95.94119828],[4.53366331,0.02657357,95.94059127],[4.53366277,0.02657185,95.93998758],[4.53366223,0.02657013,95.93938711],[4.53366169,0.02656842,95.93878979],[4.53366115,0.0265667,95.93819552],[4.53366061,0.02656498,95.93760423],[4.53366006,0.02656326,95.93701581],[4.53365952,0.02656154,95.9364302],[4.53365898,0.02655982,95.9358473],[4.53365844,0.0265581,95.93526702],[4.5336579,0.02655638,95.93468928],[4.53365735,0.02655467,95.93411401],[4.53365681,0.02655295,95.9335411],[4.53365627,0.02655123,95.93297047],[4.53365573,0.02654951,95.93240204],[4.53365518,0.02654779,95.93183573],[4.53365464,0.02654607,95.93127145],[4.5336541,0.02654436,95.93070911],[4.53365356,0.02654264,95.93014863],[4.53365301,0.02654092,95.92958993],[4.53365247,0.0265392,95.92903291],[4.53365193,0.02653748,95.9284775],[4.53365138,0.02653577,95.92792361],[4.53365084,0.02653405,95.92737116],[4.53365029,0.02653233,95.92682006],[4.53364975,0.02653061,95.92627024],[4.53364921,0.02652889,95.92572162],[4.53364866,0.02652718,95.92517414],[4.53364812,0.02652546,95.92462772],[4.53364757,0.02652374,95.92408229],[4.53364703,0.02652202,95.92353778],[4.53364648,0.02652031,95.92299413],[4.53364593,0.02651859,95.92245127],[4.53364539,0.02651687,95.92190911],[4.53364484,0.02651515,95.9213676],[4.53364429,0.02651344,95.92082666],[4.53364375,0.02651172,95.92028623],[4.5336432,0.02651,95.91974623],[4.53364265,0.02650829,95.91920659],[4.53364211,0.02650657,95.91866728],[4.53364156,0.02650485,95.91812842],[4.53364101,0.02650314,95.91759016],[4.53364046,0.02650142,95.91705264],[4.53363991,0.0264997,95.916516],[4.53363936,0.02649799,95.91598041],[4.53363882,0.02649627,95.915446],[4.53363827,0.02649455,95.91491292],[4.53363772,0.02649284,95.91438132],[4.53363717,0.02649112,95.9138513],[4.53363663,0.0264894,95.91332281],[4.53363608,0.02648769,95.91279578],[4.53363553,0.02648597,95.91227012],[4.53363499,0.02648425,95.91174575],[4.53363444,0.02648253,95.91122258],[4.53363389,0.02648082,95.91070053],[4.53363335,0.0264791,95.91017952],[4.5336328,0.02647738,95.90965946],[4.53363226,0.02647566,95.90914028],[4.53363171,0.02647395,95.90862189],[4.53363117,0.02647223,95.9081042],[4.53363062,0.02647051,95.90758714],[4.53363008,0.02646879,95.90707062],[4.53362953,0.02646708,95.90655457],[4.53362899,0.02646536,95.90603889],[4.53362845,0.02646364,95.90552351],[4.5336279,0.02646192,95.90500834],[4.53362736,0.0264602,95.90449331],[4.53362682,0.02645849,95.90397832],[4.53362627,0.02645677,95.90346331],[4.53362573,0.02645505,95.90294818],[4.53362519,0.02645333,95.90243283],[4.53362464,0.02645161,95.90191702],[4.5336241,0.02644989,95.90140051],[4.53362356,0.02644818,95.90088302],[4.53362301,0.02644646,95.9003643],[4.53362247,0.02644474,95.8998442],[4.53362193,0.02644302,95.89932268],[4.53362138,0.0264413,95.89879968],[4.53362084,0.02643959,95.89827518],[4.5336203,0.02643787,95.89774912],[4.53361975,0.02643615,95.89722146],[4.53361921,0.02643443,95.89669217],[4.53361866,0.02643271,95.89616119],[4.53361812,0.026431,95.8956285],[4.53361757,0.02642928,95.89509403],[4.53361703,0.02642756,95.89455776],[4.53361648,0.02642584,95.89401964],[4.53361594,0.02642413,95.89347963],[4.53361539,0.02642241,95.89293768],[4.53361485,0.02642069,95.89239375],[4.5336143,0.02641897,95.8918478],[4.53361376,0.02641726,95.89129978],[4.53361321,0.02641554,95.89074966],[4.53361266,0.02641382,95.89019739],[4.53361212,0.0264121,95.88964292],[4.53361157,0.02641039,95.88908622],[4.53361103,0.02640867,95.88852724],[4.53361048,0.02640695,95.88796594],[4.53360993,0.02640523,95.88740227],[4.53360939,0.02640352,95.88683619],[4.53360884,0.0264018,95.88626766],[4.53360829,0.02640008,95.88569663],[4.53360775,0.02639836,95.88512306],[4.5336072,0.02639665,95.88454691],[4.53360665,0.02639493,95.88396814],[4.53360611,0.02639321,95.88338669],[4.53360556,0.0263915,95.88280253],[4.53360501,0.02638978,95.8822156],[4.53360447,0.02638806,95.88162576],[4.53360392,0.02638635,95.88103292],[4.53360337,0.02638463,95.88043697],[4.53360282,0.02638291,95.8798378],[4.53360228,0.02638119,95.87923531],[4.53360173,0.02637948,95.87862943],[4.53360118,0.02637776,95.87802025],[4.53360063,0.02637604,95.87740789],[4.53360008,0.02637433,95.87679248],[4.53359954,0.02637261,95.87617415],[4.53359899,0.02637089,95.87555302],[4.53359844,0.02636918,95.87492922],[4.53359789,0.02636746,95.87430286],[4.53359734,0.02636575,95.87367409],[4.53359679,0.02636403,95.87304301],[4.53359624,0.02636231,95.87240975],[4.53359569,0.0263606,95.87177444],[4.53359515,0.02635888,95.8711372],[4.5335946,0.02635716,95.87049815],[4.53359405,0.02635545,95.86985742],[4.5335935,0.02635373,95.86921513],[4.53359295,0.02635201,95.8685714],[4.53359241,0.02635029,95.86792635],[4.53359186,0.02634858,95.86728011],[4.53359131,0.02634686,95.8666328],[4.53359077,0.02634514,95.86598455],[4.53359022,0.02634342,95.86533546],[4.53358968,0.02634171,95.86468568],[4.53358913,0.02633999,95.86403532],[4.53358859,0.02633827,95.86338451],[4.53358805,0.02633655,95.86273333],[4.53358751,0.02633483,95.86208151],[4.53358696,0.02633311,95.86142873],[4.53358642,0.0263314,95.86077466],[4.53358588,0.02632968,95.86011899],[4.53358534,0.02632796,95.85946139],[4.5335848,0.02632624,95.85880154],[4.53358426,0.02632452,95.85813911],[4.53358372,0.0263228,95.85747378],[4.53358317,0.02632108,95.85680524],[4.53358263,0.02631936,95.85613315],[4.53358209,0.02631765,95.85545713],[4.53358154,0.02631593,95.85477657],[4.533581,0.02631421,95.85409123],[4.53358045,0.02631249,95.85340134],[4.53357991,0.02631077,95.85270714],[4.53357936,0.02630906,95.85200886],[4.53357881,0.02630734,95.85130677],[4.53357827,0.02630562,95.85060108],[4.53357772,0.02630391,95.84989205],[4.53357717,0.02630219,95.84917992],[4.53357662,0.02630047,95.84846493],[4.53357607,0.02629876,95.84774732],[4.53357552,0.02629704,95.84702733],[4.53357497,0.02629532,95.84630519],[4.53357442,0.02629361,95.84558116],[4.53357387,0.02629189,95.84485546],[4.53357332,0.02629018,95.84412834],[4.53357277,0.02628846,95.84339988],[4.53357223,0.02628674,95.84267006],[4.53357168,0.02628503,95.84193881],[4.53357113,0.02628331,95.8412061],[4.53357058,0.02628159,95.84047186],[4.53357003,0.02627988,95.83973606],[4.53356948,0.02627816,95.83899865],[4.53356894,0.02627644,95.83825957],[4.53356839,0.02627473,95.83751878],[4.53356784,0.02627301,95.83677624],[4.53356729,0.02627129,95.83603188],[4.53356674,0.02626958,95.83528567],[4.5335662,0.02626786,95.83453756],[4.53356565,0.02626614,95.83378756],[4.5335651,0.02626442,95.83303593],[4.53356455,0.02626271,95.83228299],[4.533564,0.02626099,95.83152906],[4.53356346,0.02625927,95.83077446],[4.53356291,0.02625756,95.83001945],[4.53356236,0.02625584,95.82926398],[4.53356182,0.02625412,95.82850797],[4.53356127,0.0262524,95.82775131],[4.53356073,0.02625069,95.8269939],[4.53356018,0.02624897,95.82623566],[4.53355964,0.02624725,95.82547647],[4.53355909,0.02624553,95.82471625],[4.53355855,0.02624381,95.82395488],[4.533558,0.0262421,95.82319228],[4.53355746,0.02624038,95.82242835],[4.53355691,0.02623866,95.82166298],[4.53355637,0.02623694,95.82089608],[4.53355583,0.02623522,95.82012755],[4.53355528,0.02623351,95.81935729],[4.53355474,0.02623179,95.81858521],[4.53355419,0.02623007,95.81781119],[4.53355365,0.02622835,95.81703515],[4.5335531,0.02622663,95.81625699],[4.53355256,0.02622492,95.8154766],[4.53355201,0.0262232,95.81469389],[4.53355147,0.02622148,95.81390875],[4.53355092,0.02621976,95.81312116],[4.53355037,0.02621805,95.8123313],[4.53354983,0.02621633,95.81153928],[4.53354928,0.02621461,95.81074514],[4.53354873,0.0262129,95.80994896],[4.53354819,0.02621118,95.80915078],[4.53354764,0.02620946,95.80835067],[4.53354709,0.02620774,95.80754868],[4.53354654,0.02620603,95.80674488],[4.533546,0.02620431,95.80593932],[4.53354545,0.02620259,95.80513207],[4.5335449,0.02620088,95.80432318],[4.53354435,0.02619916,95.80351271],[4.5335438,0.02619744,95.80270072],[4.53354325,0.02619573,95.80188727],[4.53354271,0.02619401,95.80107243],[4.53354216,0.02619229,95.80025623],[4.53354161,0.02619058,95.79943876],[4.53354106,0.02618886,95.79862006],[4.53354051,0.02618714,95.79780019],[4.53353996,0.02618543,95.79697921],[4.53353942,0.02618371,95.79615719],[4.53353887,0.02618199,95.79533418],[4.53353832,0.02618027,95.79451024],[4.53353777,0.02617856,95.79368543],[4.53353722,0.02617684,95.7928598],[4.53353668,0.02617512,95.79203343],[4.53353613,0.02617341,95.79120636],[4.53353558,0.02617169,95.79037866],[4.53353503,0.02616997,95.78955039],[4.53353449,0.02616826,95.78872161],[4.53353394,0.02616654,95.78789234],[4.53353339,0.02616482,95.78706252],[4.53353285,0.0261631,95.78623203],[4.5335323,0.02616139,95.78540079],[4.53353175,0.02615967,95.78456867],[4.53353121,0.02615795,95.78373559],[4.53353066,0.02615623,95.78290155],[4.53353011,0.02615452,95.78206657],[4.53352957,0.0261528,95.78123065],[4.53352902,0.02615108,95.78039382],[4.53352847,0.02614936,95.77955609],[4.53352793,0.02614765,95.77871746],[4.53352738,0.02614593,95.77787797],[4.53352683,0.02614421,95.77703762],[4.53352629,0.02614249,95.77619643],[4.53352574,0.02614078,95.77535442],[4.5335252,0.02613906,95.77451159],[4.53352465,0.02613734,95.77366797],[4.5335241,0.02613563,95.77282357],[4.53352356,0.02613391,95.7719784],[4.53352301,0.02613219,95.77113249],[4.53352246,0.02613047,95.77028586],[4.53352192,0.02612875,95.76943852],[4.53352137,0.02612704,95.7685905],[4.53352083,0.02612532,95.76774183],[4.53352028,0.0261236,95.76689251],[4.53351973,0.02612188,95.76604258],[4.53351919,0.02612017,95.76519205],[4.53351864,0.02611845,95.76434095],[4.5335181,0.02611673,95.76348929],[4.53351755,0.02611501,95.7626371],[4.53351701,0.0261133,95.76178437],[4.53351646,0.02611158,95.76093107],[4.53351591,0.02610986,95.76007716],[4.53351537,0.02610814,95.7592226],[4.53351482,0.02610643,95.75836736],[4.53351428,0.02610471,95.7575114],[4.53351373,0.02610299,95.75665469],[4.53351319,0.02610127,95.7557972],[4.53351264,0.02609955,95.75493888],[4.53351209,0.02609784,95.7540797],[4.53351155,0.02609612,95.75321963],[4.533511,0.0260944,95.75235863],[4.53351045,0.02609268,95.75149665],[4.53350991,0.02609097,95.75063368],[4.53350936,0.02608925,95.74976966],[4.53350882,0.02608753,95.74890457],[4.53350827,0.02608582,95.74803836],[4.53350772,0.0260841,95.747171],[4.53350717,0.02608238,95.74630245],[4.53350663,0.02608066,95.74543268],[4.53350608,0.02607895,95.74456165],[4.53350553,0.02607723,95.74368934],[4.53350498,0.02607551,95.74281577],[4.53350443,0.0260738,95.74194094],[4.53350388,0.02607208,95.74106485],[4.53350333,0.02607036,95.74018753],[4.53350278,0.02606865,95.73930897],[4.53350223,0.02606693,95.73842919],[4.53350168,0.02606521,95.73754819],[4.53350113,0.0260635,95.73666599],[4.53350058,0.02606178,95.73578259],[4.53350003,0.02606007,95.73489799],[4.53349948,0.02605835,95.73401222],[4.53349893,0.02605663,95.73312527],[4.53349838,0.02605492,95.73223715],[4.53349783,0.0260532,95.73134788],[4.53349727,0.02605149,95.73045746],[4.53349672,0.02604977,95.7295659],[4.53349617,0.02604806,95.72867321],[4.53349561,0.02604634,95.72777939],[4.53349506,0.02604463,95.72688448],[4.53349451,0.02604291,95.72598858],[4.53349395,0.0260412,95.72509181],[4.5334934,0.02603948,95.72419429],[4.53349284,0.02603777,95.72329615],[4.53349229,0.02603605,95.72239751],[4.53349174,0.02603434,95.7214985],[4.53349118,0.02603262,95.72059924],[4.53349063,0.02603091,95.71969985],[4.53349007,0.02602919,95.71880046],[4.53348952,0.02602748,95.71790118],[4.53348896,0.02602576,95.71700207],[4.53348841,0.02602405,95.71610318],[4.53348786,0.02602233,95.71520455],[4.5334873,0.02602062,95.71430622],[4.53348675,0.0260189,95.71340825],[4.53348619,0.02601719,95.71251069],[4.53348564,0.02601547,95.71161357],[4.53348509,0.02601375,95.71071694],[4.53348453,0.02601204,95.70982086],[4.53348398,0.02601032,95.70892536],[4.53348343,0.02600861,95.70803049],[4.53348288,0.02600689,95.70713631],[4.53348232,0.02600518,95.70624285],[4.53348177,0.02600346,95.70535017],[4.53348122,0.02600175,95.70445831],[4.53348067,0.02600003,95.70356732],[4.53348012,0.02599831,95.70267725],[4.53347956,0.0259966,95.70178814],[4.53347901,0.02599488,95.70090004],[4.53347846,0.02599317,95.70001299],[4.53347791,0.02599145,95.69912706],[4.53347736,0.02598973,95.69824227],[4.53347681,0.02598802,95.69735869],[4.53347626,0.0259863,95.69647636],[4.53347571,0.02598458,95.69559532],[4.53347517,0.02598287,95.69471562],[4.53347462,0.02598115,95.6938373],[4.53347407,0.02597943,95.6929604],[4.53347352,0.02597772,95.69208496],[4.53347297,0.025976,95.69121102],[4.53347243,0.02597428,95.69033863],[4.53347188,0.02597256,95.68946783],[4.53347134,0.02597085,95.68859866],[4.53347079,0.02596913,95.68773115],[4.53347024,0.02596741,95.68686536],[4.5334697,0.02596569,95.68600132],[4.53346916,0.02596397,95.68513908],[4.53346861,0.02596226,95.68427868],[4.53346859,0.02596217,95.68423833],[4.5334699,0.02596175,95.68423833],[4.53346992,0.02596183,95.68427868],[4.53347047,0.02596355,95.68513908],[4.53347101,0.02596527,95.68600132],[4.53347156,0.02596699,95.68686536],[4.5334721,0.0259687,95.68773115],[4.53347265,0.02597042,95.68859866],[4.53347319,0.02597214,95.68946783],[4.53347374,0.02597386,95.69033863],[4.53347429,0.02597557,95.69121102],[4.53347483,0.02597729,95.69208496],[4.53347538,0.02597901,95.6929604],[4.53347593,0.02598073,95.6938373],[4.53347648,0.02598244,95.69471562],[4.53347703,0.02598416,95.69559532],[4.53347757,0.02598588,95.69647636],[4.53347812,0.02598759,95.69735869],[4.53347867,0.02598931,95.69824227],[4.53347922,0.02599103,95.69912706],[4.53347977,0.02599274,95.70001299],[4.53348032,0.02599446,95.70090004],[4.53348088,0.02599617,95.70178814],[4.53348143,0.02599789,95.70267725],[4.53348198,0.02599961,95.70356732],[4.53348253,0.02600132,95.70445831],[4.53348308,0.02600304,95.70535017],[4.53348363,0.02600475,95.70624285],[4.53348419,0.02600647,95.70713631],[4.53348474,0.02600818,95.70803049],[4.53348529,0.0260099,95.70892536],[4.53348584,0.02601162,95.70982086],[4.5334864,0.02601333,95.71071694],[4.53348695,0.02601505,95.71161357],[4.5334875,0.02601676,95.71251069],[4.53348806,0.02601848,95.71340825],[4.53348861,0.02602019,95.71430622],[4.53348917,0.02602191,95.71520455],[4.53348972,0.02602362,95.71610318],[4.53349027,0.02602534,95.71700207],[4.53349083,0.02602705,95.71790118],[4.53349138,0.02602877,95.71880046],[4.53349194,0.02603048,95.71969985],[4.53349249,0.0260322,95.72059924],[4.53349305,0.02603391,95.7214985],[4.5334936,0.02603563,95.72239751],[4.53349415,0.02603734,95.72329615],[4.53349471,0.02603906,95.72419429],[4.53349526,0.02604077,95.72509181],[4.53349582,0.02604249,95.72598858],[4.53349637,0.0260442,95.72688448],[4.53349692,0.02604592,95.72777939],[4.53349748,0.02604763,95.72867321],[4.53349803,0.02604935,95.7295659],[4.53349858,0.02605106,95.73045746],[4.53349914,0.02605278,95.73134788],[4.53349969,0.02605449,95.73223715],[4.53350024,0.02605621,95.73312527],[4.53350079,0.02605793,95.73401222],[4.53350134,0.02605964,95.73489799],[4.53350189,0.02606136,95.73578259],[4.53350244,0.02606307,95.73666599],[4.53350299,0.02606479,95.73754819],[4.53350354,0.02606651,95.73842919],[4.53350409,0.02606822,95.73930897],[4.53350464,0.02606994,95.74018753],[4.53350519,0.02607166,95.74106485],[4.53350574,0.02607337,95.74194094],[4.53350629,0.02607509,95.74281577],[4.53350684,0.02607681,95.74368934],[4.53350739,0.02607852,95.74456165],[4.53350794,0.02608024,95.74543268],[4.53350848,0.02608196,95.74630245],[4.53350903,0.02608367,95.747171],[4.53350958,0.02608539,95.74803836],[4.53351012,0.02608711,95.74890457],[4.53351067,0.02608883,95.74976966],[4.53351122,0.02609054,95.75063368],[4.53351176,0.02609226,95.75149665],[4.53351231,0.02609398,95.75235863],[4.53351286,0.0260957,95.75321963],[4.5335134,0.02609741,95.7540797],[4.53351395,0.02609913,95.75493888],[4.53351449,0.02610085,95.7557972],[4.53351504,0.02610257,95.75665469],[4.53351559,0.02610428,95.7575114],[4.53351613,0.026106,95.75836736],[4.53351668,0.02610772,95.7592226],[4.53351722,0.02610944,95.76007716],[4.53351777,0.02611116,95.76093107],[4.53351831,0.02611287,95.76178437],[4.53351886,0.02611459,95.7626371],[4.53351941,0.02611631,95.76348929],[4.53351995,0.02611803,95.76434095],[4.5335205,0.02611974,95.76519205],[4.53352104,0.02612146,95.76604258],[4.53352159,0.02612318,95.76689251],[4.53352214,0.0261249,95.76774183],[4.53352268,0.02612661,95.7685905],[4.53352323,0.02612833,95.76943852],[4.53352377,0.02613005,95.77028586],[4.53352432,0.02613177,95.77113249],[4.53352487,0.02613348,95.7719784],[4.53352541,0.0261352,95.77282357],[4.53352596,0.02613692,95.77366797],[4.5335265,0.02613864,95.77451159],[4.53352705,0.02614035,95.77535442],[4.5335276,0.02614207,95.77619643],[4.53352814,0.02614379,95.77703762],[4.53352869,0.02614551,95.77787797],[4.53352924,0.02614722,95.77871746],[4.53352978,0.02614894,95.77955609],[4.53353033,0.02615066,95.78039382],[4.53353088,0.02615238,95.78123065],[4.53353142,0.02615409,95.78206657],[4.53353197,0.02615581,95.78290155],[4.53353251,0.02615753,95.78373559],[4.53353306,0.02615925,95.78456867],[4.53353361,0.02616096,95.78540079],[4.53353415,0.02616268,95.78623203],[4.5335347,0.0261644,95.78706252],[4.53353525,0.02616612,95.78789234],[4.53353579,0.02616783,95.78872161],[4.53353634,0.02616955,95.78955039],[4.53353689,0.02617127,95.79037866],[4.53353744,0.02617298,95.79120636],[4.53353798,0.0261747,95.79203343],[4.53353853,0.02617642,95.7928598],[4.53353908,0.02617814,95.79368543],[4.53353963,0.02617985,95.79451024],[4.53354018,0.02618157,95.79533418],[4.53354072,0.02618329,95.79615719],[4.53354127,0.026185,95.79697921],[4.53354182,0.02618672,95.79780019],[4.53354237,0.02618844,95.79862006],[4.53354292,0.02619015,95.79943876],[4.53354347,0.02619187,95.80025623],[4.53354401,0.02619359,95.80107243],[4.53354456,0.0261953,95.80188727],[4.53354511,0.02619702,95.80270072],[4.53354566,0.02619874,95.80351271],[4.53354621,0.02620045,95.80432318],[4.53354676,0.02620217,95.80513207],[4.5335473,0.02620389,95.80593932],[4.53354785,0.0262056,95.80674488],[4.5335484,0.02620732,95.80754868],[4.53354895,0.02620904,95.80835067],[4.53354949,0.02621076,95.80915078],[4.53355004,0.02621247,95.80994896],[4.53355059,0.02621419,95.81074514],[4.53355114,0.02621591,95.81153928],[4.53355168,0.02621762,95.8123313],[4.53355223,0.02621934,95.81312116],[4.53355277,0.02622106,95.81390875],[4.53355332,0.02622278,95.81469389],[4.53355387,0.0262245,95.8154766],[4.53355441,0.02622621,95.81625699],[4.53355496,0.02622793,95.81703515],[4.5335555,0.02622965,95.81781119],[4.53355604,0.02623137,95.81858521],[4.53355659,0.02623308,95.81935729],[4.53355713,0.0262348,95.82012755],[4.53355768,0.02623652,95.82089608],[4.53355822,0.02623824,95.82166298],[4.53355877,0.02623996,95.82242835],[4.53355931,0.02624168,95.82319228],[4.53355985,0.02624339,95.82395488],[4.5335604,0.02624511,95.82471625],[4.53356094,0.02624683,95.82547647],[4.53356149,0.02624855,95.82623566],[4.53356203,0.02625026,95.8269939],[4.53356258,0.02625198,95.82775131],[4.53356312,0.0262537,95.82850797],[4.53356367,0.02625542,95.82926398],[4.53356422,0.02625713,95.83001945],[4.53356476,0.02625885,95.83077446],[4.53356531,0.02626057,95.83152906],[4.53356586,0.02626229,95.83228299],[4.53356641,0.026264,95.83303593],[4.53356695,0.02626572,95.83378756],[4.5335675,0.02626744,95.83453756],[4.53356805,0.02626915,95.83528567],[4.5335686,0.02627087,95.83603188],[4.53356915,0.02627259,95.83677624],[4.53356969,0.0262743,95.83751878],[4.53357024,0.02627602,95.83825957],[4.53357079,0.02627774,95.83899865],[4.53357134,0.02627945,95.83973606],[4.53357189,0.02628117,95.84047186],[4.53357244,0.02628289,95.8412061],[4.53357298,0.0262846,95.84193881],[4.53357353,0.02628632,95.84267006],[4.53357408,0.02628804,95.84339988],[4.53357463,0.02628975,95.84412834],[4.53357518,0.02629147,95.84485546],[4.53357573,0.02629319,95.84558116],[4.53357628,0.0262949,95.84630519],[4.53357683,0.02629662,95.84702733],[4.53357738,0.02629834,95.84774732],[4.53357793,0.02630005,95.84846493],[4.53357848,0.02630177,95.84917992],[4.53357902,0.02630349,95.84989205],[4.53357957,0.0263052,95.85060108],[4.53358012,0.02630692,95.85130677],[4.53358067,0.02630864,95.85200886],[4.53358122,0.02631035,95.85270714],[4.53358176,0.02631207,95.85340134],[4.53358231,0.02631379,95.85409123],[4.53358285,0.02631551,95.85477657],[4.5335834,0.02631722,95.85545713],[4.53358394,0.02631894,95.85613315],[4.53358448,0.02632066,95.85680524],[4.53358502,0.02632238,95.85747378],[4.53358556,0.0263241,95.85813911],[4.53358611,0.02632582,95.85880154],[4.53358665,0.02632754,95.85946139],[4.53358719,0.02632926,95.86011899],[4.53358773,0.02633097,95.86077466],[4.53358827,0.02633269,95.86142873],[4.53358881,0.02633441,95.86208151],[4.53358936,0.02633613,95.86273333],[4.5335899,0.02633785,95.86338451],[4.53359044,0.02633957,95.86403532],[4.53359099,0.02634129,95.86468568],[4.53359153,0.026343,95.86533546],[4.53359208,0.02634472,95.86598455],[4.53359262,0.02634644,95.8666328],[4.53359317,0.02634816,95.86728011],[4.53359371,0.02634987,95.86792635],[4.53359426,0.02635159,95.8685714],[4.53359481,0.02635331,95.86921513],[4.53359536,0.02635502,95.86985742],[4.53359591,0.02635674,95.87049815],[4.53359645,0.02635846,95.8711372],[4.533597,0.02636017,95.87177444],[4.53359755,0.02636189,95.87240975],[4.5335981,0.02636361,95.87304301],[4.53359865,0.02636532,95.87367409],[4.5335992,0.02636704,95.87430286],[4.53359975,0.02636876,95.87492922],[4.53360029,0.02637047,95.87555302],[4.53360084,0.02637219,95.87617415],[4.53360139,0.02637391,95.87679248],[4.53360194,0.02637562,95.87740789],[4.53360249,0.02637734,95.87802025],[4.53360304,0.02637906,95.87862943],[4.53360359,0.02638077,95.87923531],[4.53360413,0.02638249,95.8798378],[4.53360468,0.02638421,95.88043697],[4.53360523,0.02638592,95.88103292],[4.53360577,0.02638764,95.88162576],[4.53360632,0.02638936,95.8822156],[4.53360687,0.02639108,95.88280253],[4.53360742,0.02639279,95.88338669],[4.53360796,0.02639451,95.88396814],[4.53360851,0.02639623,95.88454691],[4.53360906,0.02639794,95.88512306],[4.5336096,0.02639966,95.88569663],[4.53361015,0.02640138,95.88626766],[4.5336107,0.0264031,95.88683619],[4.53361124,0.02640481,95.88740227],[4.53361179,0.02640653,95.88796594],[4.53361233,0.02640825,95.88852724],[4.53361288,0.02640996,95.88908622],[4.53361343,0.02641168,95.88964292],[4.53361397,0.0264134,95.89019739],[4.53361452,0.02641512,95.89074966],[4.53361506,0.02641683,95.89129978],[4.53361561,0.02641855,95.8918478],[4.53361616,0.02642027,95.89239375],[4.5336167,0.02642199,95.89293768],[4.53361725,0.0264237,95.89347963],[4.53361779,0.02642542,95.89401964],[4.53361834,0.02642714,95.89455776],[4.53361888,0.02642886,95.89509403],[4.53361943,0.02643057,95.8956285],[4.53361997,0.02643229,95.89616119],[4.53362052,0.02643401,95.89669217],[4.53362106,0.02643573,95.89722146],[4.5336216,0.02643745,95.89774912],[4.53362215,0.02643916,95.89827518],[4.53362269,0.02644088,95.89879968],[4.53362324,0.0264426,95.89932268],[4.53362378,0.02644432,95.8998442],[4.53362432,0.02644604,95.9003643],[4.53362487,0.02644775,95.90088302],[4.53362541,0.02644947,95.90140051],[4.53362595,0.02645119,95.90191702],[4.5336265,0.02645291,95.90243283],[4.53362704,0.02645463,95.90294818],[4.53362758,0.02645635,95.90346331],[4.53362813,0.02645806,95.90397832],[4.53362867,0.02645978,95.90449331],[4.53362921,0.0264615,95.90500834],[4.53362976,0.02646322,95.90552351],[4.5336303,0.02646494,95.90603889],[4.53363085,0.02646665,95.90655457],[4.53363139,0.02646837,95.90707062],[4.53363193,0.02647009,95.90758714],[4.53363248,0.02647181,95.9081042],[4.53363302,0.02647353,95.90862189],[4.53363357,0.02647524,95.90914028],[4.53363411,0.02647696,95.90965946],[4.53363466,0.02647868,95.91017952],[4.53363521,0.0264804,95.91070053],[4.53363575,0.02648211,95.91122258],[4.5336363,0.02648383,95.91174575],[4.53363684,0.02648555,95.91227012],[4.53363739,0.02648726,95.91279578],[4.53363794,0.02648898,95.91332281],[4.53363848,0.0264907,95.9138513],[4.53363903,0.02649242,95.91438132],[4.53363958,0.02649413,95.91491292],[4.53364013,0.02649585,95.915446],[4.53364068,0.02649757,95.91598041],[4.53364122,0.02649928,95.916516],[4.53364177,0.026501,95.91705264],[4.53364232,0.02650272,95.91759016],[4.53364287,0.02650443,95.91812842],[4.53364342,0.02650615,95.91866728],[4.53364396,0.02650787,95.91920659],[4.53364451,0.02650958,95.91974623],[4.53364506,0.0265113,95.92028623],[4.53364561,0.02651302,95.92082666],[4.53364615,0.02651473,95.9213676],[4.5336467,0.02651645,95.92190911],[4.53364725,0.02651817,95.92245127],[4.53364779,0.02651989,95.92299413],[4.53364834,0.0265216,95.92353778],[4.53364888,0.02652332,95.92408229],[4.53364943,0.02652504,95.92462772],[4.53364997,0.02652676,95.92517414],[4.53365052,0.02652847,95.92572162],[4.53365106,0.02653019,95.92627024],[4.53365161,0.02653191,95.92682006],[4.53365215,0.02653363,95.92737116],[4.5336527,0.02653534,95.92792361],[4.53365324,0.02653706,95.9284775],[4.53365378,0.02653878,95.92903291],[4.53365433,0.0265405,95.92958993],[4.53365487,0.02654222,95.93014863],[4.53365541,0.02654393,95.93070911],[4.53365595,0.02654565,95.93127145],[4.5336565,0.02654737,95.93183573],[4.53365704,0.02654909,95.93240204],[4.53365758,0.02655081,95.93297047],[4.53365813,0.02655253,95.9335411],[4.53365867,0.02655425,95.93411401],[4.53365921,0.02655596,95.93468928],[4.53365975,0.02655768,95.93526702],[4.53366029,0.0265594,95.9358473],[4.53366084,0.02656112,95.9364302],[4.53366138,0.02656284,95.93701581],[4.53366192,0.02656456,95.93760423],[4.53366246,0.02656628,95.93819552],[4.533663,0.02656799,95.93878979],[4.53366354,0.02656971,95.93938711],[4.53366409,0.02657143,95.93998758],[4.53366463,0.02657315,95.94059127],[4.53366517,0.02657487,95.94119828],[4.53366571,0.02657659,95.94180869],[4.53366625,0.02657831,95.94242259],[4.5336668,0.02658002,95.94304007],[4.53366734,0.02658174,95.94366127],[4.53366788,0.02658346,95.94428644],[4.53366842,0.02658518,95.94491578],[4.53366896,0.0265869,95.94554949],[4.53366951,0.02658862,95.94618761],[4.53367005,0.02659033,95.94683016],[4.53367059,0.02659205,95.94747714],[4.53367113,0.02659377,95.94812856],[4.53367168,0.02659549,95.94878442],[4.53367222,0.02659721,95.94944474],[4.53367276,0.02659893,95.95010953],[4.53367331,0.02660064,95.95077878],[4.53367385,0.02660236,95.95145252],[4.5336744,0.02660408,95.95213074],[4.53367494,0.0266058,95.95281346],[4.53367548,0.02660752,95.95350068],[4.53367603,0.02660923,95.95419241],[4.53367657,0.02661095,95.95488865],[4.53367711,0.02661267,95.95558942],[4.53367766,0.02661439,95.95629472],[4.5336782,0.02661611,95.95700456],[4.53367874,0.02661782,95.95771895],[4.53367929,0.02661954,95.95843789],[4.53367983,0.02662126,95.95916139],[4.53368038,0.02662298,95.95988946],[4.53368092,0.0266247,95.9606221],[4.53368146,0.02662641,95.96135933],[4.533682,0.02662813,95.96210114],[4.53368255,0.02662985,95.96284755],[4.53368309,0.02663157,95.96359857],[4.53368363,0.02663329,95.96435416],[4.53368418,0.02663501,95.96511364],[4.53368472,0.02663672,95.96587695],[4.53368526,0.02663844,95.96664433],[4.5336858,0.02664016,95.96741607],[4.53368634,0.02664188,95.96819243],[4.53368688,0.0266436,95.96897368],[4.53368742,0.02664532,95.96976008],[4.53368796,0.02664704,95.9705519],[4.5336885,0.02664876,95.97134942],[4.53368904,0.02665048,95.97215283],[4.53368958,0.02665219,95.9729623],[4.53369012,0.02665391,95.97377799],[4.53369066,0.02665563,95.97460005],[4.5336912,0.02665735,95.97542865],[4.53369174,0.02665907,95.97626393],[4.53369229,0.02666079,95.97710607],[4.53369283,0.02666251,95.9779552],[4.53369337,0.02666423,95.9788115],[4.53369391,0.02666594,95.97967511],[4.53369445,0.02666766,95.9805462],[4.533695,0.02666938,95.98142491],[4.53369554,0.0266711,95.98231141],[4.53369608,0.02667282,95.98320598],[4.53369663,0.02667454,95.98411056],[4.53369717,0.02667625,95.9850249],[4.53369772,0.02667797,95.98594764],[4.53369827,0.02667969,95.98687742],[4.53369881,0.0266814,95.98781287],[4.53369936,0.02668312,95.98875336],[4.5336999,0.02668484,95.98969987],[4.53370045,0.02668656,95.99065259],[4.53370099,0.02668827,95.99161166],[4.53370154,0.02668999,95.9925772],[4.53370208,0.02669171,95.99354934],[4.53370262,0.02669343,95.99452822],[4.53370317,0.02669514,95.99551395],[4.53370371,0.02669686,95.99650667],[4.53370426,0.02669858,95.9975065],[4.5337048,0.0267003,95.99851358],[4.53370534,0.02670202,95.99952803],[4.53370589,0.02670373,96.00054998],[4.53370643,0.02670545,96.00157955],[4.53370698,0.02670717,96.00261688],[4.53370752,0.02670889,96.00366208],[4.53370806,0.02671061,96.00471528],[4.53370861,0.02671232,96.00577662],[4.53370915,0.02671404,96.0068462],[4.5337097,0.02671576,96.00792417],[4.53371024,0.02671748,96.00901064],[4.53371079,0.02671919,96.01010574],[4.53370947,0.02671961,96.01010574]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-6,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-6,"type":"border","predecessorId":-6,"sOffset":177.600614965}},{"geometry":{"coordinates":[[[4.53371079,0.02671919,95.86010574],[4.53371024,0.02671748,95.85901064],[4.5337097,0.02671576,95.85792417],[4.53370915,0.02671404,95.8568462],[4.53370861,0.02671232,95.85577662],[4.53370806,0.02671061,95.85471528],[4.53370752,0.02670889,95.85366208],[4.53370698,0.02670717,95.85261688],[4.53370643,0.02670545,95.85157955],[4.53370589,0.02670373,95.85054998],[4.53370534,0.02670202,95.84952803],[4.5337048,0.0267003,95.84851358],[4.53370426,0.02669858,95.8475065],[4.53370371,0.02669686,95.84650667],[4.53370317,0.02669514,95.84551395],[4.53370262,0.02669343,95.84452822],[4.53370208,0.02669171,95.84354934],[4.53370154,0.02668999,95.8425772],[4.53370099,0.02668827,95.84161166],[4.53370045,0.02668656,95.84065259],[4.5336999,0.02668484,95.83969987],[4.53369936,0.02668312,95.83875336],[4.53369881,0.0266814,95.83781287],[4.53369827,0.02667969,95.83687742],[4.53369772,0.02667797,95.83594764],[4.53369717,0.02667625,95.8350249],[4.53369663,0.02667454,95.83411056],[4.53369608,0.02667282,95.83320598],[4.53369554,0.0266711,95.83231141],[4.533695,0.02666938,95.83142491],[4.53369445,0.02666766,95.8305462],[4.53369391,0.02666594,95.82967511],[4.53369337,0.02666423,95.8288115],[4.53369283,0.02666251,95.8279552],[4.53369229,0.02666079,95.82710607],[4.53369174,0.02665907,95.82626393],[4.5336912,0.02665735,95.82542865],[4.53369066,0.02665563,95.82460005],[4.53369012,0.02665391,95.82377799],[4.53368958,0.02665219,95.8229623],[4.53368904,0.02665048,95.82215283],[4.5336885,0.02664876,95.82134942],[4.53368796,0.02664704,95.8205519],[4.53368742,0.02664532,95.81976008],[4.53368688,0.0266436,95.81897368],[4.53368634,0.02664188,95.81819243],[4.5336858,0.02664016,95.81741607],[4.53368526,0.02663844,95.81664433],[4.53368472,0.02663672,95.81587695],[4.53368418,0.02663501,95.81511364],[4.53368363,0.02663329,95.81435416],[4.53368309,0.02663157,95.81359857],[4.53368255,0.02662985,95.81284755],[4.533682,0.02662813,95.81210114],[4.53368146,0.02662641,95.81135933],[4.53368092,0.0266247,95.8106221],[4.53368038,0.02662298,95.80988946],[4.53367983,0.02662126,95.80916139],[4.53367929,0.02661954,95.80843789],[4.53367874,0.02661782,95.80771895],[4.5336782,0.02661611,95.80700456],[4.53367766,0.02661439,95.80629472],[4.53367711,0.02661267,95.80558942],[4.53367657,0.02661095,95.80488865],[4.53367603,0.02660923,95.80419241],[4.53367548,0.02660752,95.80350068],[4.53367494,0.0266058,95.80281346],[4.5336744,0.02660408,95.80213074],[4.53367385,0.02660236,95.80145252],[4.53367331,0.02660064,95.80077878],[4.53367276,0.02659893,95.80010953],[4.53367222,0.02659721,95.79944474],[4.53367168,0.02659549,95.79878442],[4.53367113,0.02659377,95.79812856],[4.53367059,0.02659205,95.79747714],[4.53367005,0.02659033,95.79683016],[4.53366951,0.02658862,95.79618761],[4.53366896,0.0265869,95.79554949],[4.53366842,0.02658518,95.79491578],[4.53366788,0.02658346,95.79428644],[4.53366734,0.02658174,95.79366127],[4.5336668,0.02658002,95.79304007],[4.53366625,0.02657831,95.79242259],[4.53366571,0.02657659,95.79180869],[4.53366517,0.02657487,95.79119828],[4.53366463,0.02657315,95.79059127],[4.53366409,0.02657143,95.78998758],[4.53366354,0.02656971,95.78938711],[4.533663,0.02656799,95.78878979],[4.53366246,0.02656628,95.78819552],[4.53366192,0.02656456,95.78760423],[4.53366138,0.02656284,95.78701581],[4.53366084,0.02656112,95.7864302],[4.53366029,0.0265594,95.7858473],[4.53365975,0.02655768,95.78526702],[4.53365921,0.02655596,95.78468928],[4.53365867,0.02655425,95.78411401],[4.53365813,0.02655253,95.7835411],[4.53365758,0.02655081,95.78297047],[4.53365704,0.02654909,95.78240204],[4.5336565,0.02654737,95.78183573],[4.53365595,0.02654565,95.78127145],[4.53365541,0.02654393,95.78070911],[4.53365487,0.02654222,95.78014863],[4.53365433,0.0265405,95.77958993],[4.53365378,0.02653878,95.77903291],[4.53365324,0.02653706,95.7784775],[4.5336527,0.02653534,95.77792361],[4.53365215,0.02653363,95.77737116],[4.53365161,0.02653191,95.77682006],[4.53365106,0.02653019,95.77627024],[4.53365052,0.02652847,95.77572162],[4.53364997,0.02652676,95.77517414],[4.53364943,0.02652504,95.77462772],[4.53364888,0.02652332,95.77408229],[4.53364834,0.0265216,95.77353778],[4.53364779,0.02651989,95.77299413],[4.53364725,0.02651817,95.77245127],[4.5336467,0.02651645,95.77190911],[4.53364615,0.02651473,95.7713676],[4.53364561,0.02651302,95.77082666],[4.53364506,0.0265113,95.77028623],[4.53364451,0.02650958,95.76974623],[4.53364396,0.02650787,95.76920659],[4.53364342,0.02650615,95.76866728],[4.53364287,0.02650443,95.76812842],[4.53364232,0.02650272,95.76759016],[4.53364177,0.026501,95.76705264],[4.53364122,0.02649928,95.766516],[4.53364068,0.02649757,95.76598041],[4.53364013,0.02649585,95.765446],[4.53363958,0.02649413,95.76491292],[4.53363903,0.02649242,95.76438132],[4.53363848,0.0264907,95.7638513],[4.53363794,0.02648898,95.76332281],[4.53363739,0.02648726,95.76279578],[4.53363684,0.02648555,95.76227012],[4.5336363,0.02648383,95.76174575],[4.53363575,0.02648211,95.76122258],[4.53363521,0.0264804,95.76070053],[4.53363466,0.02647868,95.76017952],[4.53363411,0.02647696,95.75965946],[4.53363357,0.02647524,95.75914028],[4.53363302,0.02647353,95.75862189],[4.53363248,0.02647181,95.7581042],[4.53363193,0.02647009,95.75758714],[4.53363139,0.02646837,95.75707062],[4.53363085,0.02646665,95.75655457],[4.5336303,0.02646494,95.75603889],[4.53362976,0.02646322,95.75552351],[4.53362921,0.0264615,95.75500834],[4.53362867,0.02645978,95.75449331],[4.53362813,0.02645806,95.75397832],[4.53362758,0.02645635,95.75346331],[4.53362704,0.02645463,95.75294818],[4.5336265,0.02645291,95.75243283],[4.53362595,0.02645119,95.75191702],[4.53362541,0.02644947,95.75140051],[4.53362487,0.02644775,95.75088302],[4.53362432,0.02644604,95.7503643],[4.53362378,0.02644432,95.7498442],[4.53362324,0.0264426,95.74932268],[4.53362269,0.02644088,95.74879968],[4.53362215,0.02643916,95.74827518],[4.5336216,0.02643745,95.74774912],[4.53362106,0.02643573,95.74722146],[4.53362052,0.02643401,95.74669217],[4.53361997,0.02643229,95.74616119],[4.53361943,0.02643057,95.7456285],[4.53361888,0.02642886,95.74509403],[4.53361834,0.02642714,95.74455776],[4.53361779,0.02642542,95.74401964],[4.53361725,0.0264237,95.74347963],[4.5336167,0.02642199,95.74293768],[4.53361616,0.02642027,95.74239375],[4.53361561,0.02641855,95.7418478],[4.53361506,0.02641683,95.74129978],[4.53361452,0.02641512,95.74074966],[4.53361397,0.0264134,95.74019739],[4.53361343,0.02641168,95.73964292],[4.53361288,0.02640996,95.73908622],[4.53361233,0.02640825,95.73852724],[4.53361179,0.02640653,95.73796594],[4.53361124,0.02640481,95.73740227],[4.5336107,0.0264031,95.73683619],[4.53361015,0.02640138,95.73626766],[4.5336096,0.02639966,95.73569663],[4.53360906,0.02639794,95.73512306],[4.53360851,0.02639623,95.73454691],[4.53360796,0.02639451,95.73396814],[4.53360742,0.02639279,95.73338669],[4.53360687,0.02639108,95.73280253],[4.53360632,0.02638936,95.7322156],[4.53360577,0.02638764,95.73162576],[4.53360523,0.02638592,95.73103292],[4.53360468,0.02638421,95.73043697],[4.53360413,0.02638249,95.7298378],[4.53360359,0.02638077,95.72923531],[4.53360304,0.02637906,95.72862943],[4.53360249,0.02637734,95.72802025],[4.53360194,0.02637562,95.72740789],[4.53360139,0.02637391,95.72679248],[4.53360084,0.02637219,95.72617415],[4.53360029,0.02637047,95.72555302],[4.53359975,0.02636876,95.72492922],[4.5335992,0.02636704,95.72430286],[4.53359865,0.02636532,95.72367409],[4.5335981,0.02636361,95.72304301],[4.53359755,0.02636189,95.72240975],[4.533597,0.02636017,95.72177444],[4.53359645,0.02635846,95.7211372],[4.53359591,0.02635674,95.72049815],[4.53359536,0.02635502,95.71985742],[4.53359481,0.02635331,95.71921513],[4.53359426,0.02635159,95.7185714],[4.53359371,0.02634987,95.71792635],[4.53359317,0.02634816,95.71728011],[4.53359262,0.02634644,95.7166328],[4.53359208,0.02634472,95.71598455],[4.53359153,0.026343,95.71533546],[4.53359099,0.02634129,95.71468568],[4.53359044,0.02633957,95.71403532],[4.5335899,0.02633785,95.71338451],[4.53358936,0.02633613,95.71273333],[4.53358881,0.02633441,95.71208151],[4.53358827,0.02633269,95.71142873],[4.53358773,0.02633097,95.71077466],[4.53358719,0.02632926,95.71011899],[4.53358665,0.02632754,95.70946139],[4.53358611,0.02632582,95.70880154],[4.53358556,0.0263241,95.70813911],[4.53358502,0.02632238,95.70747378],[4.53358448,0.02632066,95.70680524],[4.53358394,0.02631894,95.70613315],[4.5335834,0.02631722,95.70545713],[4.53358285,0.02631551,95.70477657],[4.53358231,0.02631379,95.70409123],[4.53358176,0.02631207,95.70340134],[4.53358122,0.02631035,95.70270714],[4.53358067,0.02630864,95.70200886],[4.53358012,0.02630692,95.70130677],[4.53357957,0.0263052,95.70060108],[4.53357902,0.02630349,95.69989205],[4.53357848,0.02630177,95.69917992],[4.53357793,0.02630005,95.69846493],[4.53357738,0.02629834,95.69774732],[4.53357683,0.02629662,95.69702733],[4.53357628,0.0262949,95.69630519],[4.53357573,0.02629319,95.69558116],[4.53357518,0.02629147,95.69485546],[4.53357463,0.02628975,95.69412834],[4.53357408,0.02628804,95.69339988],[4.53357353,0.02628632,95.69267006],[4.53357298,0.0262846,95.69193881],[4.53357244,0.02628289,95.6912061],[4.53357189,0.02628117,95.69047186],[4.53357134,0.02627945,95.68973606],[4.53357079,0.02627774,95.68899865],[4.53357024,0.02627602,95.68825957],[4.53356969,0.0262743,95.68751878],[4.53356915,0.02627259,95.68677624],[4.5335686,0.02627087,95.68603188],[4.53356805,0.02626915,95.68528567],[4.5335675,0.02626744,95.68453756],[4.53356695,0.02626572,95.68378756],[4.53356641,0.026264,95.68303593],[4.53356586,0.02626229,95.68228299],[4.53356531,0.02626057,95.68152906],[4.53356476,0.02625885,95.68077446],[4.53356422,0.02625713,95.68001945],[4.53356367,0.02625542,95.67926398],[4.53356312,0.0262537,95.67850797],[4.53356258,0.02625198,95.67775131],[4.53356203,0.02625026,95.6769939],[4.53356149,0.02624855,95.67623566],[4.53356094,0.02624683,95.67547647],[4.5335604,0.02624511,95.67471625],[4.53355985,0.02624339,95.67395488],[4.53355931,0.02624168,95.67319228],[4.53355877,0.02623996,95.67242835],[4.53355822,0.02623824,95.67166298],[4.53355768,0.02623652,95.67089608],[4.53355713,0.0262348,95.67012755],[4.53355659,0.02623308,95.66935729],[4.53355604,0.02623137,95.66858521],[4.5335555,0.02622965,95.66781119],[4.53355496,0.02622793,95.66703515],[4.53355441,0.02622621,95.66625699],[4.53355387,0.0262245,95.6654766],[4.53355332,0.02622278,95.66469389],[4.53355277,0.02622106,95.66390875],[4.53355223,0.02621934,95.66312116],[4.53355168,0.02621762,95.6623313],[4.53355114,0.02621591,95.66153928],[4.53355059,0.02621419,95.66074514],[4.53355004,0.02621247,95.65994896],[4.53354949,0.02621076,95.65915078],[4.53354895,0.02620904,95.65835067],[4.5335484,0.02620732,95.65754868],[4.53354785,0.0262056,95.65674488],[4.5335473,0.02620389,95.65593932],[4.53354676,0.02620217,95.65513207],[4.53354621,0.02620045,95.65432318],[4.53354566,0.02619874,95.65351271],[4.53354511,0.02619702,95.65270072],[4.53354456,0.0261953,95.65188727],[4.53354401,0.02619359,95.65107243],[4.53354347,0.02619187,95.65025623],[4.53354292,0.02619015,95.64943876],[4.53354237,0.02618844,95.64862006],[4.53354182,0.02618672,95.64780019],[4.53354127,0.026185,95.64697921],[4.53354072,0.02618329,95.64615719],[4.53354018,0.02618157,95.64533418],[4.53353963,0.02617985,95.64451024],[4.53353908,0.02617814,95.64368543],[4.53353853,0.02617642,95.6428598],[4.53353798,0.0261747,95.64203343],[4.53353744,0.02617298,95.64120636],[4.53353689,0.02617127,95.64037866],[4.53353634,0.02616955,95.63955039],[4.53353579,0.02616783,95.63872161],[4.53353525,0.02616612,95.63789234],[4.5335347,0.0261644,95.63706252],[4.53353415,0.02616268,95.63623203],[4.53353361,0.02616096,95.63540079],[4.53353306,0.02615925,95.63456867],[4.53353251,0.02615753,95.63373559],[4.53353197,0.02615581,95.63290155],[4.53353142,0.02615409,95.63206657],[4.53353088,0.02615238,95.63123065],[4.53353033,0.02615066,95.63039382],[4.53352978,0.02614894,95.62955609],[4.53352924,0.02614722,95.62871746],[4.53352869,0.02614551,95.62787797],[4.53352814,0.02614379,95.62703762],[4.5335276,0.02614207,95.62619643],[4.53352705,0.02614035,95.62535442],[4.5335265,0.02613864,95.62451159],[4.53352596,0.02613692,95.62366797],[4.53352541,0.0261352,95.62282357],[4.53352487,0.02613348,95.6219784],[4.53352432,0.02613177,95.62113249],[4.53352377,0.02613005,95.62028586],[4.53352323,0.02612833,95.61943852],[4.53352268,0.02612661,95.6185905],[4.53352214,0.0261249,95.61774183],[4.53352159,0.02612318,95.61689251],[4.53352104,0.02612146,95.61604258],[4.5335205,0.02611974,95.61519205],[4.53351995,0.02611803,95.61434095],[4.53351941,0.02611631,95.61348929],[4.53351886,0.02611459,95.6126371],[4.53351831,0.02611287,95.61178437],[4.53351777,0.02611116,95.61093107],[4.53351722,0.02610944,95.61007716],[4.53351668,0.02610772,95.6092226],[4.53351613,0.026106,95.60836736],[4.53351559,0.02610428,95.6075114],[4.53351504,0.02610257,95.60665469],[4.53351449,0.02610085,95.6057972],[4.53351395,0.02609913,95.60493888],[4.5335134,0.02609741,95.6040797],[4.53351286,0.0260957,95.60321963],[4.53351231,0.02609398,95.60235863],[4.53351176,0.02609226,95.60149665],[4.53351122,0.02609054,95.60063368],[4.53351067,0.02608883,95.59976966],[4.53351012,0.02608711,95.59890457],[4.53350958,0.02608539,95.59803836],[4.53350903,0.02608367,95.597171],[4.53350848,0.02608196,95.59630245],[4.53350794,0.02608024,95.59543268],[4.53350739,0.02607852,95.59456165],[4.53350684,0.02607681,95.59368934],[4.53350629,0.02607509,95.59281577],[4.53350574,0.02607337,95.59194094],[4.53350519,0.02607166,95.59106485],[4.53350464,0.02606994,95.59018753],[4.53350409,0.02606822,95.58930897],[4.53350354,0.02606651,95.58842919],[4.53350299,0.02606479,95.58754819],[4.53350244,0.02606307,95.58666599],[4.53350189,0.02606136,95.58578259],[4.53350134,0.02605964,95.58489799],[4.53350079,0.02605793,95.58401222],[4.53350024,0.02605621,95.58312527],[4.53349969,0.02605449,95.58223715],[4.53349914,0.02605278,95.58134788],[4.53349858,0.02605106,95.58045746],[4.53349803,0.02604935,95.5795659],[4.53349748,0.02604763,95.57867321],[4.53349692,0.02604592,95.57777939],[4.53349637,0.0260442,95.57688448],[4.53349582,0.02604249,95.57598858],[4.53349526,0.02604077,95.57509181],[4.53349471,0.02603906,95.57419429],[4.53349415,0.02603734,95.57329615],[4.5334936,0.02603563,95.57239751],[4.53349305,0.02603391,95.5714985],[4.53349249,0.0260322,95.57059924],[4.53349194,0.02603048,95.56969985],[4.53349138,0.02602877,95.56880046],[4.53349083,0.02602705,95.56790118],[4.53349027,0.02602534,95.56700207],[4.53348972,0.02602362,95.56610318],[4.53348917,0.02602191,95.56520455],[4.53348861,0.02602019,95.56430622],[4.53348806,0.02601848,95.56340825],[4.5334875,0.02601676,95.56251069],[4.53348695,0.02601505,95.56161357],[4.5334864,0.02601333,95.56071694],[4.53348584,0.02601162,95.55982086],[4.53348529,0.0260099,95.55892536],[4.53348474,0.02600818,95.55803049],[4.53348419,0.02600647,95.55713631],[4.53348363,0.02600475,95.55624285],[4.53348308,0.02600304,95.55535017],[4.53348253,0.02600132,95.55445831],[4.53348198,0.02599961,95.55356732],[4.53348143,0.02599789,95.55267725],[4.53348088,0.02599617,95.55178814],[4.53348032,0.02599446,95.55090004],[4.53347977,0.02599274,95.55001299],[4.53347922,0.02599103,95.54912706],[4.53347867,0.02598931,95.54824227],[4.53347812,0.02598759,95.54735869],[4.53347757,0.02598588,95.54647636],[4.53347703,0.02598416,95.54559532],[4.53347648,0.02598244,95.54471562],[4.53347593,0.02598073,95.5438373],[4.53347538,0.02597901,95.5429604],[4.53347483,0.02597729,95.54208496],[4.53347429,0.02597557,95.54121102],[4.53347374,0.02597386,95.54033863],[4.53347319,0.02597214,95.53946783],[4.53347265,0.02597042,95.53859866],[4.5334721,0.0259687,95.53773115],[4.53347156,0.02596699,95.53686536],[4.53347101,0.02596527,95.53600132],[4.53347047,0.02596355,95.53513908],[4.53346992,0.02596183,95.53427868],[4.5334699,0.02596175,95.53423833],[4.53347266,0.02596086,95.54309029],[4.53347269,0.02596094,95.54313047],[4.53347323,0.02596265,95.54398723],[4.53347377,0.02596437,95.54484556],[4.53347432,0.02596609,95.54570543],[4.53347486,0.02596781,95.5465668],[4.53347541,0.02596953,95.54742965],[4.53347596,0.02597124,95.54829394],[4.5334765,0.02597296,95.54915965],[4.53347705,0.02597468,95.55002674],[4.5334776,0.0259764,95.55089518],[4.53347814,0.02597811,95.55176495],[4.53347869,0.02597983,95.55263601],[4.53347924,0.02598155,95.55350833],[4.53347979,0.02598327,95.55438189],[4.53348034,0.02598498,95.55525665],[4.53348088,0.0259867,95.55613258],[4.53348143,0.02598842,95.55700964],[4.53348198,0.02599013,95.55788781],[4.53348253,0.02599185,95.55876704],[4.53348308,0.02599357,95.55964729],[4.53348363,0.02599528,95.56052853],[4.53348418,0.025997,95.56141073],[4.53348473,0.02599871,95.56229384],[4.53348528,0.02600043,95.56317783],[4.53348584,0.02600215,95.56406267],[4.53348639,0.02600386,95.56494831],[4.53348694,0.02600558,95.56583473],[4.53348749,0.02600729,95.56672188],[4.53348804,0.02600901,95.56760973],[4.5334886,0.02601073,95.56849825],[4.53348915,0.02601244,95.56938739],[4.5334897,0.02601416,95.57027712],[4.53349025,0.02601587,95.57116742],[4.53349081,0.02601759,95.57205823],[4.53349136,0.0260193,95.57294952],[4.53349191,0.02602102,95.57384127],[4.53349247,0.02602273,95.57473342],[4.53349302,0.02602445,95.57562596],[4.53349357,0.02602616,95.57651884],[4.53349413,0.02602788,95.57741202],[4.53349468,0.02602959,95.57830546],[4.53349524,0.02603131,95.57919906],[4.53349579,0.02603302,95.5800927],[4.53349634,0.02603474,95.58098627],[4.5334969,0.02603645,95.58187966],[4.53349745,0.02603817,95.58277274],[4.53349801,0.02603988,95.58366542],[4.53349856,0.0260416,95.58455757],[4.53349911,0.02604331,95.58544908],[4.53349967,0.02604503,95.58633984],[4.53350022,0.02604674,95.58722976],[4.53350077,0.02604846,95.58811882],[4.53350133,0.02605018,95.58900702],[4.53350188,0.02605189,95.58989436],[4.53350243,0.02605361,95.59078084],[4.53350299,0.02605532,95.59166648],[4.53350354,0.02605704,95.59255126],[4.53350409,0.02605875,95.59343519],[4.53350464,0.02606047,95.59431828],[4.53350519,0.02606218,95.59520051],[4.53350575,0.0260639,95.59608191],[4.5335063,0.02606562,95.59696246],[4.53350685,0.02606733,95.59784217],[4.5335074,0.02606905,95.59872104],[4.53350795,0.02607076,95.59959907],[4.5335085,0.02607248,95.60047627],[4.53350905,0.0260742,95.60135263],[4.5335096,0.02607591,95.60222816],[4.53351015,0.02607763,95.60310286],[4.5335107,0.02607935,95.60397673],[4.53351125,0.02608106,95.60484976],[4.5335118,0.02608278,95.60572197],[4.53351235,0.02608449,95.60659336],[4.5335129,0.02608621,95.60746392],[4.53351345,0.02608793,95.60833365],[4.533514,0.02608964,95.60920257],[4.53351455,0.02609136,95.61007066],[4.5335151,0.02609308,95.61093793],[4.53351565,0.02609479,95.61180439],[4.5335162,0.02609651,95.61267003],[4.53351675,0.02609823,95.61353485],[4.5335173,0.02609994,95.61439885],[4.53351785,0.02610166,95.61526205],[4.5335184,0.02610338,95.61612442],[4.53351894,0.02610509,95.61698599],[4.53351949,0.02610681,95.61784675],[4.53352004,0.02610853,95.61870669],[4.53352059,0.02611024,95.61956583],[4.53352114,0.02611196,95.62042416],[4.53352169,0.02611368,95.62128168],[4.53352224,0.02611539,95.6221384],[4.53352278,0.02611711,95.62299428],[4.53352333,0.02611883,95.62384927],[4.53352388,0.02612054,95.62470331],[4.53352443,0.02612226,95.62555636],[4.53352498,0.02612398,95.62640835],[4.53352553,0.0261257,95.62725923],[4.53352607,0.02612741,95.62810894],[4.53352662,0.02612913,95.62895744],[4.53352717,0.02613085,95.62980466],[4.53352772,0.02613256,95.63065054],[4.53352826,0.02613428,95.63149505],[4.53352881,0.026136,95.63233811],[4.53352936,0.02613772,95.63317968],[4.5335299,0.02613943,95.63401972],[4.53353045,0.02614115,95.63485817],[4.533531,0.02614287,95.63569499],[4.53353154,0.02614459,95.63653012],[4.53353209,0.0261463,95.63736352],[4.53353263,0.02614802,95.63819514],[4.53353318,0.02614974,95.63902493],[4.53353372,0.02615146,95.63985284],[4.53353427,0.02615318,95.64067883],[4.53353481,0.02615489,95.64150284],[4.53353535,0.02615661,95.64232483],[4.5335359,0.02615833,95.64314475],[4.53353644,0.02616005,95.64396257],[4.53353698,0.02616177,95.64477834],[4.53353753,0.02616349,95.64559214],[4.53353807,0.02616521,95.64640403],[4.53353861,0.02616692,95.6472141],[4.53353915,0.02616864,95.6480224],[4.53353969,0.02617036,95.64882901],[4.53354023,0.02617208,95.64963399],[4.53354077,0.0261738,95.65043742],[4.53354131,0.02617552,95.65123936],[4.53354185,0.02617724,95.65203989],[4.53354239,0.02617896,95.65283906],[4.53354293,0.02618068,95.65363695],[4.53354347,0.0261824,95.65443362],[4.53354402,0.02618412,95.65522915],[4.53354456,0.02618584,95.6560236],[4.5335451,0.02618756,95.65681704],[4.53354564,0.02618928,95.65760953],[4.53354618,0.02619099,95.65840115],[4.53354672,0.02619271,95.65919196],[4.53354726,0.02619443,95.65998203],[4.5335478,0.02619615,95.66077143],[4.53354834,0.02619787,95.66156021],[4.53354888,0.02619959,95.66234846],[4.53354942,0.02620131,95.66313624],[4.53354997,0.02620303,95.66392361],[4.53355051,0.02620475,95.66471064],[4.53355105,0.02620647,95.6654974],[4.53355159,0.02620818,95.66628394],[4.53355214,0.0262099,95.66707035],[4.53355268,0.02621162,95.66785668],[4.53355323,0.02621334,95.66864301],[4.53355377,0.02621506,95.66942939],[4.53355432,0.02621677,95.67021589],[4.53355486,0.02621849,95.67100259],[4.53355541,0.02622021,95.6717895],[4.53355595,0.02622193,95.6725765],[4.5335565,0.02622364,95.67336342],[4.53355705,0.02622536,95.6741501],[4.5335576,0.02622708,95.67493636],[4.53355815,0.02622879,95.67572204],[4.53355869,0.02623051,95.67650697],[4.53355924,0.02623223,95.67729098],[4.53355979,0.02623394,95.67807392],[4.53356034,0.02623566,95.6788556],[4.53356089,0.02623738,95.67963587],[4.53356144,0.02623909,95.68041456],[4.53356199,0.02624081,95.68119149],[4.53356254,0.02624253,95.68196651],[4.53356309,0.02624424,95.68273945],[4.53356363,0.02624596,95.68351014],[4.53356418,0.02624768,95.68427842],[4.53356473,0.02624939,95.68504411],[4.53356528,0.02625111,95.68580706],[4.53356582,0.02625283,95.68656709],[4.53356637,0.02625455,95.68732404],[4.53356692,0.02625626,95.68807774],[4.53356746,0.02625798,95.68882803],[4.53356801,0.0262597,95.68957474],[4.53356855,0.02626142,95.69031771],[4.53356909,0.02626314,95.69105676],[4.53356964,0.02626485,95.69179173],[4.53357018,0.02626657,95.69252245],[4.53357072,0.02626829,95.69324882],[4.53357126,0.02627001,95.69397098],[4.5335718,0.02627173,95.69468912],[4.53357234,0.02627345,95.69540345],[4.53357287,0.02627517,95.69611417],[4.53357341,0.02627689,95.69682148],[4.53357395,0.02627861,95.69752559],[4.53357448,0.02628033,95.69822668],[4.53357502,0.02628205,95.69892497],[4.53357556,0.02628378,95.69962065],[4.53357609,0.0262855,95.70031392],[4.53357663,0.02628722,95.70100499],[4.53357716,0.02628894,95.70169405],[4.5335777,0.02629066,95.70238131],[4.53357823,0.02629238,95.70306697],[4.53357877,0.0262941,95.70375123],[4.53357931,0.02629582,95.70443429],[4.53357984,0.02629754,95.70511635],[4.53358038,0.02629926,95.70579762],[4.53358092,0.02630098,95.70647829],[4.53358145,0.0263027,95.70715856],[4.53358199,0.02630442,95.70783865],[4.53358253,0.02630614,95.70851875],[4.53358307,0.02630786,95.70919906],[4.53358361,0.02630958,95.7098798],[4.53358415,0.0263113,95.71056115],[4.5335847,0.02631302,95.71124333],[4.53358524,0.02631474,95.71192654],[4.53358578,0.02631645,95.71261098],[4.53358633,0.02631817,95.71329686],[4.53358688,0.02631989,95.71398432],[4.53358742,0.02632161,95.71467325],[4.53358797,0.02632332,95.71536347],[4.53358852,0.02632504,95.71605479],[4.53358908,0.02632675,95.71674705],[4.53358963,0.02632847,95.71744006],[4.53359018,0.02633019,95.71813365],[4.53359074,0.0263319,95.71882764],[4.53359129,0.02633361,95.71952184],[4.53359185,0.02633533,95.72021609],[4.5335924,0.02633704,95.7209102],[4.53359296,0.02633876,95.72160399],[4.53359352,0.02634047,95.72229729],[4.53359407,0.02634218,95.72298992],[4.53359463,0.0263439,95.7236817],[4.53359519,0.02634561,95.72437246],[4.53359575,0.02634732,95.72506205],[4.53359631,0.02634904,95.72575029],[4.53359687,0.02635075,95.72643702],[4.53359743,0.02635246,95.72712206],[4.53359799,0.02635418,95.72780525],[4.53359855,0.02635589,95.72848643],[4.53359911,0.0263576,95.72916542],[4.53359967,0.02635932,95.72984205],[4.53360023,0.02636103,95.73051616],[4.53360079,0.02636274,95.73118757],[4.53360135,0.02636445,95.73185612],[4.53360191,0.02636617,95.73252164],[4.53360247,0.02636788,95.73318395],[4.53360303,0.02636959,95.73384289],[4.53360359,0.02637131,95.73449828],[4.53360414,0.02637302,95.73514996],[4.5336047,0.02637473,95.73579774],[4.53360526,0.02637645,95.73644147],[4.53360582,0.02637816,95.73708096],[4.53360637,0.02637988,95.73771604],[4.53360693,0.02638159,95.73834658],[4.53360748,0.02638331,95.73897259],[4.53360804,0.02638502,95.73959413],[4.53360859,0.02638674,95.74021127],[4.53360914,0.02638845,95.74082405],[4.53360969,0.02639017,95.74143254],[4.53361024,0.02639188,95.74203682],[4.5336108,0.0263936,95.74263703],[4.53361135,0.02639531,95.74323328],[4.5336119,0.02639703,95.74382571],[4.53361245,0.02639875,95.74441442],[4.53361299,0.02640046,95.74499956],[4.53361354,0.02640218,95.74558124],[4.53361409,0.0264039,95.74615959],[4.53361464,0.02640561,95.74673473],[4.53361519,0.02640733,95.74730679],[4.53361573,0.02640905,95.74787589],[4.53361628,0.02641076,95.74844216],[4.53361683,0.02641248,95.74900573],[4.53361737,0.0264142,95.74956672],[4.53361792,0.02641592,95.75012525],[4.53361847,0.02641763,95.75068146],[4.53361901,0.02641935,95.75123547],[4.53361956,0.02642107,95.7517874],[4.5336201,0.02642279,95.75233739],[4.53362065,0.0264245,95.75288555],[4.53362119,0.02642622,95.75343203],[4.53362174,0.02642794,95.75397693],[4.53362229,0.02642966,95.7545204],[4.53362283,0.02643137,95.75506257],[4.53362338,0.02643309,95.75560355],[4.53362392,0.02643481,95.75614348],[4.53362447,0.02643653,95.75668248],[4.53362501,0.02643824,95.7572207],[4.53362556,0.02643996,95.75775824],[4.5336261,0.02644168,95.75829526],[4.53362665,0.0264434,95.75883186],[4.5336272,0.02644511,95.7593682],[4.53362774,0.02644683,95.75990438],[4.53362829,0.02644855,95.76044056],[4.53362884,0.02645026,95.76097685],[4.53362938,0.02645198,95.76151339],[4.53362993,0.0264537,95.76205031],[4.53363048,0.02645542,95.76258769],[4.53363103,0.02645713,95.76312553],[4.53363157,0.02645885,95.76366376],[4.53363212,0.02646057,95.76420235],[4.53363267,0.02646228,95.76474123],[4.53363322,0.026464,95.76528035],[4.53363377,0.02646571,95.76581966],[4.53363432,0.02646743,95.76635911],[4.53363487,0.02646915,95.76689864],[4.53363542,0.02647086,95.76743821],[4.53363596,0.02647258,95.76797774],[4.53363651,0.0264743,95.7685172],[4.53363706,0.02647601,95.76905652],[4.53363761,0.02647773,95.76959565],[4.53363816,0.02647945,95.77013454],[4.53363871,0.02648116,95.77067312],[4.53363926,0.02648288,95.77121134],[4.5336398,0.0264846,95.77174914],[4.53364035,0.02648631,95.77228646],[4.5336409,0.02648803,95.77282325],[4.53364145,0.02648975,95.77335945],[4.53364199,0.02649146,95.773895],[4.53364254,0.02649318,95.77442984],[4.53364309,0.0264949,95.77496391],[4.53364363,0.02649662,95.77549714],[4.53364418,0.02649833,95.77602949],[4.53364472,0.02650005,95.77656088],[4.53364526,0.02650177,95.77709127],[4.53364581,0.02650349,95.77762058],[4.53364635,0.02650521,95.77814875],[4.53364689,0.02650693,95.77867572],[4.53364743,0.02650865,95.77920147],[4.53364797,0.02651036,95.77972612],[4.53364851,0.02651208,95.78024983],[4.53364905,0.0265138,95.78077275],[4.53364959,0.02651552,95.78129504],[4.53365012,0.02651724,95.78181686],[4.53365066,0.02651896,95.78233837],[4.5336512,0.02652068,95.78285974],[4.53365173,0.0265224,95.78338112],[4.53365227,0.02652413,95.78390267],[4.5336528,0.02652585,95.78442455],[4.53365334,0.02652757,95.78494694],[4.53365387,0.02652929,95.78546998],[4.53365441,0.02653101,95.78599385],[4.53365494,0.02653273,95.7865187],[4.53365548,0.02653445,95.7870447],[4.53365601,0.02653617,95.78757204],[4.53365654,0.02653789,95.78810089],[4.53365708,0.02653962,95.78863143],[4.53365761,0.02654134,95.78916384],[4.53365814,0.02654306,95.7896983],[4.53365868,0.02654478,95.79023498],[4.53365921,0.0265465,95.79077406],[4.53365974,0.02654822,95.79131574],[4.53366028,0.02654994,95.79186018],[4.53366081,0.02655167,95.79240757],[4.53366134,0.02655339,95.79295809],[4.53366188,0.02655511,95.79351191],[4.53366241,0.02655683,95.79406924],[4.53366295,0.02655855,95.79463023],[4.53366348,0.02656027,95.79519509],[4.53366402,0.02656199,95.79576398],[4.53366455,0.02656371,95.7963371],[4.53366509,0.02656543,95.79691462],[4.53366563,0.02656715,95.79749674],[4.53366616,0.02656887,95.79808362],[4.5336667,0.02657059,95.79867547],[4.53366724,0.02657231,95.79927245],[4.53366778,0.02657403,95.79987476],[4.53366832,0.02657575,95.80048258],[4.53366886,0.02657747,95.80109609],[4.5336694,0.02657919,95.80171548],[4.53366994,0.02658091,95.80234093],[4.53367048,0.02658263,95.80297263],[4.53367103,0.02658434,95.80361076],[4.53367157,0.02658606,95.80425546],[4.53367212,0.02658778,95.80490676],[4.53367266,0.0265895,95.8055646],[4.53367321,0.02659121,95.80622895],[4.53367376,0.02659293,95.80689979],[4.53367431,0.02659465,95.80757708],[4.53367486,0.02659636,95.80826078],[4.53367541,0.02659808,95.80895086],[4.53367596,0.02659979,95.80964728],[4.53367651,0.02660151,95.81035001],[4.53367706,0.02660323,95.81105901],[4.53367761,0.02660494,95.81177425],[4.53367817,0.02660666,95.81249568],[4.53367872,0.02660837,95.81322328],[4.53367927,0.02661008,95.813957],[4.53367983,0.0266118,95.81469681],[4.53368038,0.02661351,95.81544267],[4.53368094,0.02661523,95.81619454],[4.5336815,0.02661694,95.81695239],[4.53368205,0.02661866,95.81771616],[4.53368261,0.02662037,95.81848584],[4.53368317,0.02662208,95.81926137],[4.53368373,0.0266238,95.82004272],[4.53368428,0.02662551,95.82082984],[4.53368484,0.02662722,95.82162271],[4.5336854,0.02662894,95.82242127],[4.53368596,0.02663065,95.82322549],[4.53368652,0.02663236,95.82403529],[4.53368708,0.02663408,95.82484955],[4.53368763,0.02663579,95.82566613],[4.53368819,0.0266375,95.82648286],[4.53368874,0.02663922,95.82729754],[4.5336893,0.02664093,95.82810801],[4.53368984,0.02664265,95.82891209],[4.53369039,0.02664437,95.8297076],[4.53369093,0.02664609,95.83049237],[4.53369146,0.02664781,95.83126434],[4.53369199,0.02664953,95.8320239],[4.53369251,0.02665126,95.83277392],[4.53369303,0.02665298,95.83351737],[4.53369355,0.02665471,95.83425722],[4.53369406,0.02665644,95.83499643],[4.53369458,0.02665816,95.83573798],[4.53369509,0.02665989,95.83648481],[4.5336956,0.02666162,95.83723989],[4.53369612,0.02666335,95.83800618],[4.53369664,0.02666507,95.83878662],[4.53369716,0.0266668,95.83958414],[4.53369768,0.02666852,95.8404017],[4.53369822,0.02667024,95.84124222],[4.53369875,0.02667196,95.84210862],[4.53369929,0.02667368,95.84300256],[4.53369984,0.0266754,95.84392061],[4.5337004,0.02667711,95.84485811],[4.53370095,0.02667883,95.84581038],[4.53370151,0.02668054,95.84677276],[4.53370206,0.02668226,95.8477414],[4.53370262,0.02668397,95.84871564],[4.53370317,0.02668568,95.84969563],[4.53370373,0.0266874,95.85068149],[4.53370428,0.02668911,95.85167338],[4.53370484,0.02669083,95.85267143],[4.53370539,0.02669254,95.85367578],[4.53370594,0.02669426,95.85468657],[4.5337065,0.02669597,95.85570394],[4.53370705,0.02669769,95.85672803],[4.5337076,0.0266994,95.85775897],[4.53370816,0.02670112,95.8587969],[4.53370871,0.02670283,95.85984196],[4.53370927,0.02670455,95.86089429],[4.53370982,0.02670626,95.86195402],[4.53371037,0.02670797,95.8630213],[4.53371093,0.02670969,95.86409625],[4.53371148,0.0267114,95.86517901],[4.53371204,0.02671312,95.86626972],[4.53371259,0.02671483,95.86736851],[4.53371314,0.02671655,95.86847552],[4.5337137,0.02671826,95.86959087],[4.53371079,0.02671919,95.86010574]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-5,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-5,"type":"border","predecessorId":-5,"sOffset":177.600614965}},{"geometry":{"coordinates":[[[4.5337137,0.02671826,95.86959087],[4.53371314,0.02671655,95.86847552],[4.53371259,0.02671483,95.86736851],[4.53371204,0.02671312,95.86626972],[4.53371148,0.0267114,95.86517901],[4.53371093,0.02670969,95.86409625],[4.53371037,0.02670797,95.8630213],[4.53370982,0.02670626,95.86195402],[4.53370927,0.02670455,95.86089429],[4.53370871,0.02670283,95.85984196],[4.53370816,0.02670112,95.8587969],[4.5337076,0.0266994,95.85775897],[4.53370705,0.02669769,95.85672803],[4.5337065,0.02669597,95.85570394],[4.53370594,0.02669426,95.85468657],[4.53370539,0.02669254,95.85367578],[4.53370484,0.02669083,95.85267143],[4.53370428,0.02668911,95.85167338],[4.53370373,0.0266874,95.85068149],[4.53370317,0.02668568,95.84969563],[4.53370262,0.02668397,95.84871564],[4.53370206,0.02668226,95.8477414],[4.53370151,0.02668054,95.84677276],[4.53370095,0.02667883,95.84581038],[4.5337004,0.02667711,95.84485811],[4.53369984,0.0266754,95.84392061],[4.53369929,0.02667368,95.84300256],[4.53369875,0.02667196,95.84210862],[4.53369822,0.02667024,95.84124222],[4.53369768,0.02666852,95.8404017],[4.53369716,0.0266668,95.83958414],[4.53369664,0.02666507,95.83878662],[4.53369612,0.02666335,95.83800618],[4.5336956,0.02666162,95.83723989],[4.53369509,0.02665989,95.83648481],[4.53369458,0.02665816,95.83573798],[4.53369406,0.02665644,95.83499643],[4.53369355,0.02665471,95.83425722],[4.53369303,0.02665298,95.83351737],[4.53369251,0.02665126,95.83277392],[4.53369199,0.02664953,95.8320239],[4.53369146,0.02664781,95.83126434],[4.53369093,0.02664609,95.83049237],[4.53369039,0.02664437,95.8297076],[4.53368984,0.02664265,95.82891209],[4.5336893,0.02664093,95.82810801],[4.53368874,0.02663922,95.82729754],[4.53368819,0.0266375,95.82648286],[4.53368763,0.02663579,95.82566613],[4.53368708,0.02663408,95.82484955],[4.53368652,0.02663236,95.82403529],[4.53368596,0.02663065,95.82322549],[4.5336854,0.02662894,95.82242127],[4.53368484,0.02662722,95.82162271],[4.53368428,0.02662551,95.82082984],[4.53368373,0.0266238,95.82004272],[4.53368317,0.02662208,95.81926137],[4.53368261,0.02662037,95.81848584],[4.53368205,0.02661866,95.81771616],[4.5336815,0.02661694,95.81695239],[4.53368094,0.02661523,95.81619454],[4.53368038,0.02661351,95.81544267],[4.53367983,0.0266118,95.81469681],[4.53367927,0.02661008,95.813957],[4.53367872,0.02660837,95.81322328],[4.53367817,0.02660666,95.81249568],[4.53367761,0.02660494,95.81177425],[4.53367706,0.02660323,95.81105901],[4.53367651,0.02660151,95.81035001],[4.53367596,0.02659979,95.80964728],[4.53367541,0.02659808,95.80895086],[4.53367486,0.02659636,95.80826078],[4.53367431,0.02659465,95.80757708],[4.53367376,0.02659293,95.80689979],[4.53367321,0.02659121,95.80622895],[4.53367266,0.0265895,95.8055646],[4.53367212,0.02658778,95.80490676],[4.53367157,0.02658606,95.80425546],[4.53367103,0.02658434,95.80361076],[4.53367048,0.02658263,95.80297263],[4.53366994,0.02658091,95.80234093],[4.5336694,0.02657919,95.80171548],[4.53366886,0.02657747,95.80109609],[4.53366832,0.02657575,95.80048258],[4.53366778,0.02657403,95.79987476],[4.53366724,0.02657231,95.79927245],[4.5336667,0.02657059,95.79867547],[4.53366616,0.02656887,95.79808362],[4.53366563,0.02656715,95.79749674],[4.53366509,0.02656543,95.79691462],[4.53366455,0.02656371,95.7963371],[4.53366402,0.02656199,95.79576398],[4.53366348,0.02656027,95.79519509],[4.53366295,0.02655855,95.79463023],[4.53366241,0.02655683,95.79406924],[4.53366188,0.02655511,95.79351191],[4.53366134,0.02655339,95.79295809],[4.53366081,0.02655167,95.79240757],[4.53366028,0.02654994,95.79186018],[4.53365974,0.02654822,95.79131574],[4.53365921,0.0265465,95.79077406],[4.53365868,0.02654478,95.79023498],[4.53365814,0.02654306,95.7896983],[4.53365761,0.02654134,95.78916384],[4.53365708,0.02653962,95.78863143],[4.53365654,0.02653789,95.78810089],[4.53365601,0.02653617,95.78757204],[4.53365548,0.02653445,95.7870447],[4.53365494,0.02653273,95.7865187],[4.53365441,0.02653101,95.78599385],[4.53365387,0.02652929,95.78546998],[4.53365334,0.02652757,95.78494694],[4.5336528,0.02652585,95.78442455],[4.53365227,0.02652413,95.78390267],[4.53365173,0.0265224,95.78338112],[4.5336512,0.02652068,95.78285974],[4.53365066,0.02651896,95.78233837],[4.53365012,0.02651724,95.78181686],[4.53364959,0.02651552,95.78129504],[4.53364905,0.0265138,95.78077275],[4.53364851,0.02651208,95.78024983],[4.53364797,0.02651036,95.77972612],[4.53364743,0.02650865,95.77920147],[4.53364689,0.02650693,95.77867572],[4.53364635,0.02650521,95.77814875],[4.53364581,0.02650349,95.77762058],[4.53364526,0.02650177,95.77709127],[4.53364472,0.02650005,95.77656088],[4.53364418,0.02649833,95.77602949],[4.53364363,0.02649662,95.77549714],[4.53364309,0.0264949,95.77496391],[4.53364254,0.02649318,95.77442984],[4.53364199,0.02649146,95.773895],[4.53364145,0.02648975,95.77335945],[4.5336409,0.02648803,95.77282325],[4.53364035,0.02648631,95.77228646],[4.5336398,0.0264846,95.77174914],[4.53363926,0.02648288,95.77121134],[4.53363871,0.02648116,95.77067312],[4.53363816,0.02647945,95.77013454],[4.53363761,0.02647773,95.76959565],[4.53363706,0.02647601,95.76905652],[4.53363651,0.0264743,95.7685172],[4.53363596,0.02647258,95.76797774],[4.53363542,0.02647086,95.76743821],[4.53363487,0.02646915,95.76689864],[4.53363432,0.02646743,95.76635911],[4.53363377,0.02646571,95.76581966],[4.53363322,0.026464,95.76528035],[4.53363267,0.02646228,95.76474123],[4.53363212,0.02646057,95.76420235],[4.53363157,0.02645885,95.76366376],[4.53363103,0.02645713,95.76312553],[4.53363048,0.02645542,95.76258769],[4.53362993,0.0264537,95.76205031],[4.53362938,0.02645198,95.76151339],[4.53362884,0.02645026,95.76097685],[4.53362829,0.02644855,95.76044056],[4.53362774,0.02644683,95.75990438],[4.5336272,0.02644511,95.7593682],[4.53362665,0.0264434,95.75883186],[4.5336261,0.02644168,95.75829526],[4.53362556,0.02643996,95.75775824],[4.53362501,0.02643824,95.7572207],[4.53362447,0.02643653,95.75668248],[4.53362392,0.02643481,95.75614348],[4.53362338,0.02643309,95.75560355],[4.53362283,0.02643137,95.75506257],[4.53362229,0.02642966,95.7545204],[4.53362174,0.02642794,95.75397693],[4.53362119,0.02642622,95.75343203],[4.53362065,0.0264245,95.75288555],[4.5336201,0.02642279,95.75233739],[4.53361956,0.02642107,95.7517874],[4.53361901,0.02641935,95.75123547],[4.53361847,0.02641763,95.75068146],[4.53361792,0.02641592,95.75012525],[4.53361737,0.0264142,95.74956672],[4.53361683,0.02641248,95.74900573],[4.53361628,0.02641076,95.74844216],[4.53361573,0.02640905,95.74787589],[4.53361519,0.02640733,95.74730679],[4.53361464,0.02640561,95.74673473],[4.53361409,0.0264039,95.74615959],[4.53361354,0.02640218,95.74558124],[4.53361299,0.02640046,95.74499956],[4.53361245,0.02639875,95.74441442],[4.5336119,0.02639703,95.74382571],[4.53361135,0.02639531,95.74323328],[4.5336108,0.0263936,95.74263703],[4.53361024,0.02639188,95.74203682],[4.53360969,0.02639017,95.74143254],[4.53360914,0.02638845,95.74082405],[4.53360859,0.02638674,95.74021127],[4.53360804,0.02638502,95.73959413],[4.53360748,0.02638331,95.73897259],[4.53360693,0.02638159,95.73834658],[4.53360637,0.02637988,95.73771604],[4.53360582,0.02637816,95.73708096],[4.53360526,0.02637645,95.73644147],[4.5336047,0.02637473,95.73579774],[4.53360414,0.02637302,95.73514996],[4.53360359,0.02637131,95.73449828],[4.53360303,0.02636959,95.73384289],[4.53360247,0.02636788,95.73318395],[4.53360191,0.02636617,95.73252164],[4.53360135,0.02636445,95.73185612],[4.53360079,0.02636274,95.73118757],[4.53360023,0.02636103,95.73051616],[4.53359967,0.02635932,95.72984205],[4.53359911,0.0263576,95.72916542],[4.53359855,0.02635589,95.72848643],[4.53359799,0.02635418,95.72780525],[4.53359743,0.02635246,95.72712206],[4.53359687,0.02635075,95.72643702],[4.53359631,0.02634904,95.72575029],[4.53359575,0.02634732,95.72506205],[4.53359519,0.02634561,95.72437246],[4.53359463,0.0263439,95.7236817],[4.53359407,0.02634218,95.72298992],[4.53359352,0.02634047,95.72229729],[4.53359296,0.02633876,95.72160399],[4.5335924,0.02633704,95.7209102],[4.53359185,0.02633533,95.72021609],[4.53359129,0.02633361,95.71952184],[4.53359074,0.0263319,95.71882764],[4.53359018,0.02633019,95.71813365],[4.53358963,0.02632847,95.71744006],[4.53358908,0.02632675,95.71674705],[4.53358852,0.02632504,95.71605479],[4.53358797,0.02632332,95.71536347],[4.53358742,0.02632161,95.71467325],[4.53358688,0.02631989,95.71398432],[4.53358633,0.02631817,95.71329686],[4.53358578,0.02631645,95.71261098],[4.53358524,0.02631474,95.71192654],[4.5335847,0.02631302,95.71124333],[4.53358415,0.0263113,95.71056115],[4.53358361,0.02630958,95.7098798],[4.53358307,0.02630786,95.70919906],[4.53358253,0.02630614,95.70851875],[4.53358199,0.02630442,95.70783865],[4.53358145,0.0263027,95.70715856],[4.53358092,0.02630098,95.70647829],[4.53358038,0.02629926,95.70579762],[4.53357984,0.02629754,95.70511635],[4.53357931,0.02629582,95.70443429],[4.53357877,0.0262941,95.70375123],[4.53357823,0.02629238,95.70306697],[4.5335777,0.02629066,95.70238131],[4.53357716,0.02628894,95.70169405],[4.53357663,0.02628722,95.70100499],[4.53357609,0.0262855,95.70031392],[4.53357556,0.02628378,95.69962065],[4.53357502,0.02628205,95.69892497],[4.53357448,0.02628033,95.69822668],[4.53357395,0.02627861,95.69752559],[4.53357341,0.02627689,95.69682148],[4.53357287,0.02627517,95.69611417],[4.53357234,0.02627345,95.69540345],[4.5335718,0.02627173,95.69468912],[4.53357126,0.02627001,95.69397098],[4.53357072,0.02626829,95.69324882],[4.53357018,0.02626657,95.69252245],[4.53356964,0.02626485,95.69179173],[4.53356909,0.02626314,95.69105676],[4.53356855,0.02626142,95.69031771],[4.53356801,0.0262597,95.68957474],[4.53356746,0.02625798,95.68882803],[4.53356692,0.02625626,95.68807774],[4.53356637,0.02625455,95.68732404],[4.53356582,0.02625283,95.68656709],[4.53356528,0.02625111,95.68580706],[4.53356473,0.02624939,95.68504411],[4.53356418,0.02624768,95.68427842],[4.53356363,0.02624596,95.68351014],[4.53356309,0.02624424,95.68273945],[4.53356254,0.02624253,95.68196651],[4.53356199,0.02624081,95.68119149],[4.53356144,0.02623909,95.68041456],[4.53356089,0.02623738,95.67963587],[4.53356034,0.02623566,95.6788556],[4.53355979,0.02623394,95.67807392],[4.53355924,0.02623223,95.67729098],[4.53355869,0.02623051,95.67650697],[4.53355815,0.02622879,95.67572204],[4.5335576,0.02622708,95.67493636],[4.53355705,0.02622536,95.6741501],[4.5335565,0.02622364,95.67336342],[4.53355595,0.02622193,95.6725765],[4.53355541,0.02622021,95.6717895],[4.53355486,0.02621849,95.67100259],[4.53355432,0.02621677,95.67021589],[4.53355377,0.02621506,95.66942939],[4.53355323,0.02621334,95.66864301],[4.53355268,0.02621162,95.66785668],[4.53355214,0.0262099,95.66707035],[4.53355159,0.02620818,95.66628394],[4.53355105,0.02620647,95.6654974],[4.53355051,0.02620475,95.66471064],[4.53354997,0.02620303,95.66392361],[4.53354942,0.02620131,95.66313624],[4.53354888,0.02619959,95.66234846],[4.53354834,0.02619787,95.66156021],[4.5335478,0.02619615,95.66077143],[4.53354726,0.02619443,95.65998203],[4.53354672,0.02619271,95.65919196],[4.53354618,0.02619099,95.65840115],[4.53354564,0.02618928,95.65760953],[4.5335451,0.02618756,95.65681704],[4.53354456,0.02618584,95.6560236],[4.53354402,0.02618412,95.65522915],[4.53354347,0.0261824,95.65443362],[4.53354293,0.02618068,95.65363695],[4.53354239,0.02617896,95.65283906],[4.53354185,0.02617724,95.65203989],[4.53354131,0.02617552,95.65123936],[4.53354077,0.0261738,95.65043742],[4.53354023,0.02617208,95.64963399],[4.53353969,0.02617036,95.64882901],[4.53353915,0.02616864,95.6480224],[4.53353861,0.02616692,95.6472141],[4.53353807,0.02616521,95.64640403],[4.53353753,0.02616349,95.64559214],[4.53353698,0.02616177,95.64477834],[4.53353644,0.02616005,95.64396257],[4.5335359,0.02615833,95.64314475],[4.53353535,0.02615661,95.64232483],[4.53353481,0.02615489,95.64150284],[4.53353427,0.02615318,95.64067883],[4.53353372,0.02615146,95.63985284],[4.53353318,0.02614974,95.63902493],[4.53353263,0.02614802,95.63819514],[4.53353209,0.0261463,95.63736352],[4.53353154,0.02614459,95.63653012],[4.533531,0.02614287,95.63569499],[4.53353045,0.02614115,95.63485817],[4.5335299,0.02613943,95.63401972],[4.53352936,0.02613772,95.63317968],[4.53352881,0.026136,95.63233811],[4.53352826,0.02613428,95.63149505],[4.53352772,0.02613256,95.63065054],[4.53352717,0.02613085,95.62980466],[4.53352662,0.02612913,95.62895744],[4.53352607,0.02612741,95.62810894],[4.53352553,0.0261257,95.62725923],[4.53352498,0.02612398,95.62640835],[4.53352443,0.02612226,95.62555636],[4.53352388,0.02612054,95.62470331],[4.53352333,0.02611883,95.62384927],[4.53352278,0.02611711,95.62299428],[4.53352224,0.02611539,95.6221384],[4.53352169,0.02611368,95.62128168],[4.53352114,0.02611196,95.62042416],[4.53352059,0.02611024,95.61956583],[4.53352004,0.02610853,95.61870669],[4.53351949,0.02610681,95.61784675],[4.53351894,0.02610509,95.61698599],[4.5335184,0.02610338,95.61612442],[4.53351785,0.02610166,95.61526205],[4.5335173,0.02609994,95.61439885],[4.53351675,0.02609823,95.61353485],[4.5335162,0.02609651,95.61267003],[4.53351565,0.02609479,95.61180439],[4.5335151,0.02609308,95.61093793],[4.53351455,0.02609136,95.61007066],[4.533514,0.02608964,95.60920257],[4.53351345,0.02608793,95.60833365],[4.5335129,0.02608621,95.60746392],[4.53351235,0.02608449,95.60659336],[4.5335118,0.02608278,95.60572197],[4.53351125,0.02608106,95.60484976],[4.5335107,0.02607935,95.60397673],[4.53351015,0.02607763,95.60310286],[4.5335096,0.02607591,95.60222816],[4.53350905,0.0260742,95.60135263],[4.5335085,0.02607248,95.60047627],[4.53350795,0.02607076,95.59959907],[4.5335074,0.02606905,95.59872104],[4.53350685,0.02606733,95.59784217],[4.5335063,0.02606562,95.59696246],[4.53350575,0.0260639,95.59608191],[4.53350519,0.02606218,95.59520051],[4.53350464,0.02606047,95.59431828],[4.53350409,0.02605875,95.59343519],[4.53350354,0.02605704,95.59255126],[4.53350299,0.02605532,95.59166648],[4.53350243,0.02605361,95.59078084],[4.53350188,0.02605189,95.58989436],[4.53350133,0.02605018,95.58900702],[4.53350077,0.02604846,95.58811882],[4.53350022,0.02604674,95.58722976],[4.53349967,0.02604503,95.58633984],[4.53349911,0.02604331,95.58544908],[4.53349856,0.0260416,95.58455757],[4.53349801,0.02603988,95.58366542],[4.53349745,0.02603817,95.58277274],[4.5334969,0.02603645,95.58187966],[4.53349634,0.02603474,95.58098627],[4.53349579,0.02603302,95.5800927],[4.53349524,0.02603131,95.57919906],[4.53349468,0.02602959,95.57830546],[4.53349413,0.02602788,95.57741202],[4.53349357,0.02602616,95.57651884],[4.53349302,0.02602445,95.57562596],[4.53349247,0.02602273,95.57473342],[4.53349191,0.02602102,95.57384127],[4.53349136,0.0260193,95.57294952],[4.53349081,0.02601759,95.57205823],[4.53349025,0.02601587,95.57116742],[4.5334897,0.02601416,95.57027712],[4.53348915,0.02601244,95.56938739],[4.5334886,0.02601073,95.56849825],[4.53348804,0.02600901,95.56760973],[4.53348749,0.02600729,95.56672188],[4.53348694,0.02600558,95.56583473],[4.53348639,0.02600386,95.56494831],[4.53348584,0.02600215,95.56406267],[4.53348528,0.02600043,95.56317783],[4.53348473,0.02599871,95.56229384],[4.53348418,0.025997,95.56141073],[4.53348363,0.02599528,95.56052853],[4.53348308,0.02599357,95.55964729],[4.53348253,0.02599185,95.55876704],[4.53348198,0.02599013,95.55788781],[4.53348143,0.02598842,95.55700964],[4.53348088,0.0259867,95.55613258],[4.53348034,0.02598498,95.55525665],[4.53347979,0.02598327,95.55438189],[4.53347924,0.02598155,95.55350833],[4.53347869,0.02597983,95.55263601],[4.53347814,0.02597811,95.55176495],[4.5334776,0.0259764,95.55089518],[4.53347705,0.02597468,95.55002674],[4.5334765,0.02597296,95.54915965],[4.53347596,0.02597124,95.54829394],[4.53347541,0.02596953,95.54742965],[4.53347486,0.02596781,95.5465668],[4.53347432,0.02596609,95.54570543],[4.53347377,0.02596437,95.54484556],[4.53347323,0.02596265,95.54398723],[4.53347269,0.02596094,95.54313047],[4.53347266,0.02596086,95.54309029],[4.53347456,0.02596024,95.54917495],[4.53347459,0.02596032,95.54921565],[4.53347513,0.02596204,95.55008362],[4.53347568,0.02596375,95.55095346],[4.53347623,0.02596547,95.5518251],[4.53347678,0.02596719,95.55269845],[4.53347733,0.0259689,95.55357345],[4.53347788,0.02597062,95.55445002],[4.53347843,0.02597234,95.5553281],[4.53347899,0.02597405,95.5562076],[4.53347954,0.02597577,95.55708845],[4.53348009,0.02597748,95.55797058],[4.53348064,0.0259792,95.55885392],[4.5334812,0.02598092,95.5597384],[4.53348175,0.02598263,95.56062394],[4.5334823,0.02598435,95.56151046],[4.53348286,0.02598606,95.56239791],[4.53348341,0.02598778,95.56328619],[4.53348396,0.02598949,95.56417523],[4.53348452,0.02599121,95.56506496],[4.53348507,0.02599292,95.56595529],[4.53348563,0.02599464,95.56684614],[4.53348618,0.02599635,95.56773744],[4.53348673,0.02599807,95.56862911],[4.53348729,0.02599978,95.56952108],[4.53348784,0.0260015,95.57041325],[4.5334884,0.02600321,95.57130557],[4.53348895,0.02600493,95.57219794],[4.53348951,0.02600664,95.5730903],[4.53349006,0.02600836,95.57398256],[4.53349062,0.02601007,95.57487465],[4.53349117,0.02601179,95.5757665],[4.53349173,0.0260135,95.57665802],[4.53349228,0.02601522,95.57754913],[4.53349283,0.02601693,95.57843978],[4.53349339,0.02601865,95.57932986],[4.53349394,0.02602036,95.58021932],[4.5334945,0.02602208,95.58110808],[4.53349505,0.02602379,95.58199605],[4.5334956,0.02602551,95.58288317],[4.53349615,0.02602722,95.58376936],[4.53349671,0.02602894,95.58465454],[4.53349726,0.02603065,95.58553864],[4.53349781,0.02603237,95.58642159],[4.53349836,0.02603409,95.5873033],[4.53349891,0.0260358,95.5881837],[4.53349946,0.02603752,95.58906273],[4.53350001,0.02603923,95.5899403],[4.53350056,0.02604095,95.59081635],[4.53350111,0.02604267,95.59169078],[4.53350166,0.02604438,95.59256355],[4.53350221,0.0260461,95.59343458],[4.53350276,0.02604782,95.5943039],[4.53350331,0.02604954,95.59517155],[4.53350385,0.02605125,95.59603757],[4.5335044,0.02605297,95.596902],[4.53350495,0.02605469,95.59776488],[4.53350549,0.02605641,95.59862625],[4.53350604,0.02605812,95.59948615],[4.53350658,0.02605984,95.60034462],[4.53350713,0.02606156,95.6012017],[4.53350767,0.02606328,95.60205742],[4.53350822,0.026065,95.60291184],[4.53350876,0.02606671,95.60376498],[4.5335093,0.02606843,95.60461689],[4.53350985,0.02607015,95.6054676],[4.53351039,0.02607187,95.60631715],[4.53351093,0.02607359,95.60716559],[4.53351147,0.02607531,95.60801295],[4.53351202,0.02607703,95.60885926],[4.53351256,0.02607875,95.60970458],[4.5335131,0.02608046,95.61054893],[4.53351364,0.02608218,95.61139235],[4.53351418,0.0260839,95.61223489],[4.53351472,0.02608562,95.61307657],[4.53351527,0.02608734,95.61391745],[4.53351581,0.02608906,95.61475755],[4.53351635,0.02609078,95.61559691],[4.53351689,0.0260925,95.61643557],[4.53351743,0.02609422,95.61727357],[4.53351797,0.02609594,95.61811095],[4.53351851,0.02609766,95.61894773],[4.53351905,0.02609938,95.61978397],[4.53351959,0.0261011,95.62061969],[4.53352013,0.02610281,95.62145494],[4.53352068,0.02610453,95.62228975],[4.53352122,0.02610625,95.62312415],[4.53352176,0.02610797,95.62395819],[4.5335223,0.02610969,95.62479189],[4.53352284,0.02611141,95.62562531],[4.53352338,0.02611313,95.62645846],[4.53352392,0.02611485,95.62729139],[4.53352446,0.02611657,95.62812411],[4.53352501,0.02611829,95.6289566],[4.53352555,0.02612001,95.62978883],[4.53352609,0.02612172,95.63062078],[4.53352663,0.02612344,95.63145245],[4.53352718,0.02612516,95.63228379],[4.53352772,0.02612688,95.63311481],[4.53352826,0.0261286,95.63394547],[4.5335288,0.02613032,95.63477575],[4.53352935,0.02613204,95.63560564],[4.53352989,0.02613376,95.63643511],[4.53353043,0.02613547,95.63726415],[4.53353098,0.02613719,95.63809275],[4.53353152,0.02613891,95.63892087],[4.53353206,0.02614063,95.63974852],[4.53353261,0.02614235,95.64057568],[4.53353315,0.02614407,95.64140233],[4.53353369,0.02614578,95.64222847],[4.53353424,0.0261475,95.64305407],[4.53353478,0.02614922,95.64387912],[4.53353532,0.02615094,95.64470361],[4.53353587,0.02615266,95.64552752],[4.53353641,0.02615438,95.64635085],[4.53353696,0.02615609,95.64717357],[4.5335375,0.02615781,95.64799567],[4.53353805,0.02615953,95.64881714],[4.53353859,0.02616125,95.64963796],[4.53353914,0.02616297,95.65045813],[4.53353968,0.02616468,95.65127762],[4.53354023,0.0261664,95.65209642],[4.53354077,0.02616812,95.65291452],[4.53354132,0.02616984,95.65373189],[4.53354186,0.02617156,95.65454852],[4.53354241,0.02617327,95.6553644],[4.53354295,0.02617499,95.6561795],[4.5335435,0.02617671,95.65699381],[4.53354404,0.02617843,95.65780731],[4.53354459,0.02618014,95.65861999],[4.53354514,0.02618186,95.65943183],[4.53354568,0.02618358,95.6602428],[4.53354623,0.0261853,95.6610529],[4.53354677,0.02618701,95.66186211],[4.53354732,0.02618873,95.66267042],[4.53354787,0.02619045,95.66347779],[4.53354841,0.02619217,95.66428422],[4.53354896,0.02619388,95.6650897],[4.53354951,0.0261956,95.66589419],[4.53355005,0.02619732,95.6666977],[4.5335506,0.02619904,95.66750019],[4.53355115,0.02620075,95.66830166],[4.53355169,0.02620247,95.66910208],[4.53355224,0.02620419,95.66990144],[4.53355279,0.02620591,95.67069973],[4.53355333,0.02620762,95.67149691],[4.53355388,0.02620934,95.67229298],[4.53355443,0.02621106,95.67308793],[4.53355498,0.02621277,95.67388172],[4.53355552,0.02621449,95.67467435],[4.53355607,0.02621621,95.6754658],[4.53355662,0.02621793,95.67625604],[4.53355716,0.02621964,95.67704507],[4.53355771,0.02622136,95.67783287],[4.53355826,0.02622308,95.67861942],[4.53355881,0.02622479,95.67940469],[4.53355935,0.02622651,95.68018868],[4.5335599,0.02622823,95.68097137],[4.53356045,0.02622995,95.68175274],[4.533561,0.02623166,95.68253277],[4.53356155,0.02623338,95.68331145],[4.53356209,0.0262351,95.68408876],[4.53356264,0.02623681,95.68486468],[4.53356319,0.02623853,95.68563919],[4.53356374,0.02624025,95.68641228],[4.53356428,0.02624196,95.68718394],[4.53356483,0.02624368,95.68795413],[4.53356538,0.0262454,95.68872285],[4.53356593,0.02624711,95.68949009],[4.53356648,0.02624883,95.69025581],[4.53356702,0.02625055,95.69102001],[4.53356757,0.02625227,95.69178267],[4.53356812,0.02625398,95.69254377],[4.53356867,0.0262557,95.69330329],[4.53356922,0.02625742,95.69406122],[4.53356976,0.02625913,95.69481754],[4.53357031,0.02626085,95.69557224],[4.53357086,0.02626257,95.69632529],[4.53357141,0.02626428,95.69707668],[4.53357196,0.026266,95.69782639],[4.5335725,0.02626772,95.69857441],[4.53357305,0.02626943,95.69932071],[4.5335736,0.02627115,95.70006529],[4.53357415,0.02627287,95.70080812],[4.5335747,0.02627459,95.70154919],[4.53357524,0.0262763,95.70228848],[4.53357579,0.02627802,95.70302597],[4.53357634,0.02627974,95.70376165],[4.53357689,0.02628145,95.7044955],[4.53357743,0.02628317,95.7052275],[4.53357798,0.02628489,95.70595763],[4.53357853,0.0262866,95.70668589],[4.53357908,0.02628832,95.70741224],[4.53357963,0.02629004,95.70813668],[4.53358017,0.02629175,95.70885919],[4.53358072,0.02629347,95.70957975],[4.53358127,0.02629519,95.71029834],[4.53358182,0.02629691,95.71101495],[4.53358236,0.02629862,95.71172955],[4.53358291,0.02630034,95.71244214],[4.53358346,0.02630206,95.7131527],[4.53358401,0.02630377,95.7138612],[4.53358455,0.02630549,95.71456763],[4.5335851,0.02630721,95.71527198],[4.53358565,0.02630892,95.71597422],[4.5335862,0.02631064,95.71667435],[4.53358674,0.02631236,95.71737234],[4.53358729,0.02631408,95.71806817],[4.53358784,0.02631579,95.71876183],[4.53358838,0.02631751,95.71945331],[4.53358893,0.02631923,95.72014257],[4.53358948,0.02632094,95.72082962],[4.53359003,0.02632266,95.72151442],[4.53359057,0.02632438,95.72219697],[4.53359112,0.0263261,95.72287725],[4.53359167,0.02632781,95.72355523],[4.53359221,0.02632953,95.7242309],[4.53359276,0.02633125,95.72490425],[4.5335933,0.02633297,95.72557525],[4.53359385,0.02633468,95.7262439],[4.5335944,0.0263364,95.72691016],[4.53359494,0.02633812,95.72757403],[4.53359549,0.02633983,95.72823549],[4.53359604,0.02634155,95.72889452],[4.53359658,0.02634327,95.72955111],[4.53359713,0.02634499,95.73020525],[4.53359767,0.0263467,95.73085694],[4.53359822,0.02634842,95.73150617],[4.53359876,0.02635014,95.73215295],[4.53359931,0.02635186,95.73279725],[4.53359986,0.02635358,95.73343908],[4.5336004,0.02635529,95.73407844],[4.53360095,0.02635701,95.73471531],[4.53360149,0.02635873,95.7353497],[4.53360204,0.02636045,95.73598159],[4.53360258,0.02636216,95.73661099],[4.53360313,0.02636388,95.73723788],[4.53360367,0.0263656,95.73786227],[4.53360422,0.02636732,95.73848414],[4.53360476,0.02636903,95.73910349],[4.53360531,0.02637075,95.73972032],[4.53360585,0.02637247,95.74033463],[4.5336064,0.02637419,95.74094639],[4.53360694,0.02637591,95.74155562],[4.53360749,0.02637762,95.74216231],[4.53360803,0.02637934,95.74276644],[4.53360858,0.02638106,95.74336803],[4.53360912,0.02638278,95.74396705],[4.53360967,0.0263845,95.74456351],[4.53361021,0.02638621,95.7451574],[4.53361075,0.02638793,95.74574873],[4.5336113,0.02638965,95.74633747],[4.53361184,0.02639137,95.74692368],[4.53361239,0.02639309,95.74750739],[4.53361293,0.0263948,95.74808868],[4.53361348,0.02639652,95.74866761],[4.53361402,0.02639824,95.74924423],[4.53361457,0.02639996,95.74981861],[4.53361511,0.02640167,95.75039081],[4.53361565,0.02640339,95.75096088],[4.5336162,0.02640511,95.7515289],[4.53361674,0.02640683,95.75209492],[4.53361729,0.02640855,95.752659],[4.53361783,0.02641026,95.7532212],[4.53361838,0.02641198,95.75378158],[4.53361892,0.0264137,95.75434021],[4.53361947,0.02641542,95.75489715],[4.53362001,0.02641714,95.75545245],[4.53362055,0.02641885,95.75600618],[4.5336211,0.02642057,95.7565584],[4.53362164,0.02642229,95.75710917],[4.53362219,0.02642401,95.75765855],[4.53362273,0.02642573,95.75820661],[4.53362328,0.02642744,95.7587534],[4.53362382,0.02642916,95.75929898],[4.53362437,0.02643088,95.75984342],[4.53362491,0.0264326,95.76038678],[4.53362546,0.02643431,95.76092913],[4.533626,0.02643603,95.76147051],[4.53362655,0.02643775,95.76201099],[4.53362709,0.02643947,95.76255064],[4.53362764,0.02644119,95.76308952],[4.53362818,0.0264429,95.76362769],[4.53362873,0.02644462,95.7641652],[4.53362927,0.02644634,95.76470213],[4.53362982,0.02644806,95.76523853],[4.53363036,0.02644977,95.76577446],[4.53363091,0.02645149,95.76630999],[4.53363145,0.02645321,95.76684517],[4.533632,0.02645493,95.76738005],[4.53363254,0.02645664,95.76791469],[4.53363309,0.02645836,95.76844913],[4.53363364,0.02646008,95.76898341],[4.53363418,0.0264618,95.76951757],[4.53363473,0.02646351,95.77005165],[4.53363527,0.02646523,95.77058571],[4.53363582,0.02646695,95.77111978],[4.53363636,0.02646867,95.7716539],[4.53363691,0.02647038,95.77218812],[4.53363746,0.0264721,95.77272249],[4.533638,0.02647382,95.77325704],[4.53363855,0.02647554,95.77379182],[4.53363909,0.02647725,95.77432687],[4.53363964,0.02647897,95.77486224],[4.53364019,0.02648069,95.77539796],[4.53364073,0.02648241,95.77593408],[4.53364128,0.02648412,95.77647065],[4.53364183,0.02648584,95.7770077],[4.53364237,0.02648756,95.77754528],[4.53364292,0.02648927,95.77808343],[4.53364346,0.02649099,95.7786222],[4.53364401,0.02649271,95.77916162],[4.53364456,0.02649443,95.77970174],[4.5336451,0.02649614,95.78024261],[4.53364565,0.02649786,95.78078425],[4.5336462,0.02649958,95.78132673],[4.53364674,0.0265013,95.78187007],[4.53364729,0.02650301,95.78241432],[4.53364783,0.02650473,95.78295953],[4.53364838,0.02650645,95.78350573],[4.53364893,0.02650816,95.78405297],[4.53364947,0.02650988,95.78460129],[4.53365002,0.0265116,95.78515074],[4.53365057,0.02651332,95.78570134],[4.53365111,0.02651503,95.78625316],[4.53365166,0.02651675,95.78680622],[4.5336522,0.02651847,95.78736058],[4.53365275,0.02652019,95.78791627],[4.5336533,0.0265219,95.78847333],[4.53365384,0.02652362,95.78903181],[4.53365439,0.02652534,95.78959174],[4.53365493,0.02652706,95.79015318],[4.53365548,0.02652877,95.79071616],[4.53365602,0.02653049,95.79128072],[4.53365657,0.02653221,95.79184691],[4.53365711,0.02653393,95.79241477],[4.53365766,0.02653564,95.79298437],[4.5336582,0.02653736,95.79355574],[4.53365875,0.02653908,95.79412896],[4.53365929,0.0265408,95.79470407],[4.53365984,0.02654251,95.79528114],[4.53366038,0.02654423,95.79586021],[4.53366093,0.02654595,95.79644133],[4.53366147,0.02654767,95.79702458],[4.53366202,0.02654938,95.79761],[4.53366256,0.0265511,95.79819764],[4.53366311,0.02655282,95.79878757],[4.53366365,0.02655454,95.79937983],[4.5336642,0.02655626,95.79997449],[4.53366474,0.02655797,95.80057159],[4.53366529,0.02655969,95.8011712],[4.53366583,0.02656141,95.80177337],[4.53366637,0.02656313,95.80237815],[4.53366692,0.02656485,95.8029856],[4.53366746,0.02656656,95.80359578],[4.53366801,0.02656828,95.80420874],[4.53366855,0.02657,95.80482453],[4.53366909,0.02657172,95.80544322],[4.53366964,0.02657344,95.80606486],[4.53367018,0.02657515,95.8066895],[4.53367073,0.02657687,95.80731719],[4.53367127,0.02657859,95.807948],[4.53367181,0.02658031,95.80858199],[4.53367236,0.02658203,95.80921919],[4.5336729,0.02658374,95.80985968],[4.53367344,0.02658546,95.81050351],[4.53367399,0.02658718,95.81115072],[4.53367453,0.0265889,95.81180139],[4.53367507,0.02659062,95.81245556],[4.53367562,0.02659233,95.81311329],[4.53367616,0.02659405,95.81377463],[4.5336767,0.02659577,95.81443965],[4.53367725,0.02659749,95.81510839],[4.53367779,0.02659921,95.81578092],[4.53367833,0.02660093,95.81645728],[4.53367888,0.02660264,95.81713754],[4.53367942,0.02660436,95.81782174],[4.53367996,0.02660608,95.81850996],[4.5336805,0.0266078,95.81920223],[4.53368105,0.02660952,95.81989862],[4.53368159,0.02661124,95.82059918],[4.53368213,0.02661295,95.82130398],[4.53368268,0.02661467,95.82201305],[4.53368322,0.02661639,95.82272647],[4.53368376,0.02661811,95.82344429],[4.5336843,0.02661983,95.82416655],[4.53368485,0.02662155,95.82489333],[4.53368539,0.02662326,95.82562467],[4.53368593,0.02662498,95.82636062],[4.53368647,0.0266267,95.82710126],[4.53368702,0.02662842,95.82784663],[4.53368756,0.02663014,95.82859678],[4.5336881,0.02663186,95.82935178],[4.53368864,0.02663357,95.83011168],[4.53368919,0.02663529,95.83087653],[4.53368973,0.02663701,95.83164639],[4.53369027,0.02663873,95.83242132],[4.53369081,0.02664045,95.83320138],[4.53369136,0.02664217,95.83398661],[4.5336919,0.02664388,95.83477708],[4.53369244,0.0266456,95.83557284],[4.53369298,0.02664732,95.83637395],[4.53369352,0.02664904,95.83718046],[4.53369407,0.02665076,95.83799243],[4.53369461,0.02665248,95.83880991],[4.53369515,0.0266542,95.83963296],[4.53369569,0.02665591,95.84046164],[4.53369624,0.02665763,95.84129601],[4.53369678,0.02665935,95.84213611],[4.53369732,0.02666107,95.84298201],[4.53369786,0.02666279,95.84383375],[4.5336984,0.02666451,95.84469141],[4.53369895,0.02666622,95.84555502],[4.53369949,0.02666794,95.84642466],[4.53370003,0.02666966,95.84730037],[4.53370057,0.02667138,95.84818222],[4.53370111,0.0266731,95.84907027],[4.53370166,0.02667482,95.84996457],[4.5337022,0.02667654,95.85086518],[4.53370274,0.02667825,95.85177217],[4.53370328,0.02667997,95.85268559],[4.53370383,0.02668169,95.8536055],[4.53370437,0.02668341,95.85453196],[4.53370491,0.02668513,95.85546503],[4.53370545,0.02668685,95.85640477],[4.53370599,0.02668856,95.85735123],[4.53370654,0.02669028,95.85830447],[4.53370708,0.026692,95.85926456],[4.53370762,0.02669372,95.86023154],[4.53370816,0.02669544,95.86120549],[4.53370871,0.02669716,95.86218646],[4.53370925,0.02669888,95.8631745],[4.53370979,0.02670059,95.86416968],[4.53371033,0.02670231,95.86517205],[4.53371087,0.02670403,95.86618167],[4.53371142,0.02670575,95.8671986],[4.53371196,0.02670747,95.8682229],[4.5337125,0.02670919,95.86925462],[4.53371304,0.0267109,95.87029383],[4.53371359,0.02671262,95.87134058],[4.53371413,0.02671434,95.87239493],[4.53371467,0.02671606,95.87345694],[4.53371522,0.02671778,95.87452667],[4.5337137,0.02671826,95.86959087]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-4,"type":"shoulder","predecessorId":-4,"sOffset":177.600614965}},{"geometry":{"coordinates":[[[4.53371522,0.02671778,95.87452667],[4.53371467,0.02671606,95.87345694],[4.53371413,0.02671434,95.87239493],[4.53371359,0.02671262,95.87134058],[4.53371304,0.0267109,95.87029383],[4.5337125,0.02670919,95.86925462],[4.53371196,0.02670747,95.8682229],[4.53371142,0.02670575,95.8671986],[4.53371087,0.02670403,95.86618167],[4.53371033,0.02670231,95.86517205],[4.53370979,0.02670059,95.86416968],[4.53370925,0.02669888,95.8631745],[4.53370871,0.02669716,95.86218646],[4.53370816,0.02669544,95.86120549],[4.53370762,0.02669372,95.86023154],[4.53370708,0.026692,95.85926456],[4.53370654,0.02669028,95.85830447],[4.53370599,0.02668856,95.85735123],[4.53370545,0.02668685,95.85640477],[4.53370491,0.02668513,95.85546503],[4.53370437,0.02668341,95.85453196],[4.53370383,0.02668169,95.8536055],[4.53370328,0.02667997,95.85268559],[4.53370274,0.02667825,95.85177217],[4.5337022,0.02667654,95.85086518],[4.53370166,0.02667482,95.84996457],[4.53370111,0.0266731,95.84907027],[4.53370057,0.02667138,95.84818222],[4.53370003,0.02666966,95.84730037],[4.53369949,0.02666794,95.84642466],[4.53369895,0.02666622,95.84555502],[4.5336984,0.02666451,95.84469141],[4.53369786,0.02666279,95.84383375],[4.53369732,0.02666107,95.84298201],[4.53369678,0.02665935,95.84213611],[4.53369624,0.02665763,95.84129601],[4.53369569,0.02665591,95.84046164],[4.53369515,0.0266542,95.83963296],[4.53369461,0.02665248,95.83880991],[4.53369407,0.02665076,95.83799243],[4.53369352,0.02664904,95.83718046],[4.53369298,0.02664732,95.83637395],[4.53369244,0.0266456,95.83557284],[4.5336919,0.02664388,95.83477708],[4.53369136,0.02664217,95.83398661],[4.53369081,0.02664045,95.83320138],[4.53369027,0.02663873,95.83242132],[4.53368973,0.02663701,95.83164639],[4.53368919,0.02663529,95.83087653],[4.53368864,0.02663357,95.83011168],[4.5336881,0.02663186,95.82935178],[4.53368756,0.02663014,95.82859678],[4.53368702,0.02662842,95.82784663],[4.53368647,0.0266267,95.82710126],[4.53368593,0.02662498,95.82636062],[4.53368539,0.02662326,95.82562467],[4.53368485,0.02662155,95.82489333],[4.5336843,0.02661983,95.82416655],[4.53368376,0.02661811,95.82344429],[4.53368322,0.02661639,95.82272647],[4.53368268,0.02661467,95.82201305],[4.53368213,0.02661295,95.82130398],[4.53368159,0.02661124,95.82059918],[4.53368105,0.02660952,95.81989862],[4.5336805,0.0266078,95.81920223],[4.53367996,0.02660608,95.81850996],[4.53367942,0.02660436,95.81782174],[4.53367888,0.02660264,95.81713754],[4.53367833,0.02660093,95.81645728],[4.53367779,0.02659921,95.81578092],[4.53367725,0.02659749,95.81510839],[4.5336767,0.02659577,95.81443965],[4.53367616,0.02659405,95.81377463],[4.53367562,0.02659233,95.81311329],[4.53367507,0.02659062,95.81245556],[4.53367453,0.0265889,95.81180139],[4.53367399,0.02658718,95.81115072],[4.53367344,0.02658546,95.81050351],[4.5336729,0.02658374,95.80985968],[4.53367236,0.02658203,95.80921919],[4.53367181,0.02658031,95.80858199],[4.53367127,0.02657859,95.807948],[4.53367073,0.02657687,95.80731719],[4.53367018,0.02657515,95.8066895],[4.53366964,0.02657344,95.80606486],[4.53366909,0.02657172,95.80544322],[4.53366855,0.02657,95.80482453],[4.53366801,0.02656828,95.80420874],[4.53366746,0.02656656,95.80359578],[4.53366692,0.02656485,95.8029856],[4.53366637,0.02656313,95.80237815],[4.53366583,0.02656141,95.80177337],[4.53366529,0.02655969,95.8011712],[4.53366474,0.02655797,95.80057159],[4.5336642,0.02655626,95.79997449],[4.53366365,0.02655454,95.79937983],[4.53366311,0.02655282,95.79878757],[4.53366256,0.0265511,95.79819764],[4.53366202,0.02654938,95.79761],[4.53366147,0.02654767,95.79702458],[4.53366093,0.02654595,95.79644133],[4.53366038,0.02654423,95.79586021],[4.53365984,0.02654251,95.79528114],[4.53365929,0.0265408,95.79470407],[4.53365875,0.02653908,95.79412896],[4.5336582,0.02653736,95.79355574],[4.53365766,0.02653564,95.79298437],[4.53365711,0.02653393,95.79241477],[4.53365657,0.02653221,95.79184691],[4.53365602,0.02653049,95.79128072],[4.53365548,0.02652877,95.79071616],[4.53365493,0.02652706,95.79015318],[4.53365439,0.02652534,95.78959174],[4.53365384,0.02652362,95.78903181],[4.5336533,0.0265219,95.78847333],[4.53365275,0.02652019,95.78791627],[4.5336522,0.02651847,95.78736058],[4.53365166,0.02651675,95.78680622],[4.53365111,0.02651503,95.78625316],[4.53365057,0.02651332,95.78570134],[4.53365002,0.0265116,95.78515074],[4.53364947,0.02650988,95.78460129],[4.53364893,0.02650816,95.78405297],[4.53364838,0.02650645,95.78350573],[4.53364783,0.02650473,95.78295953],[4.53364729,0.02650301,95.78241432],[4.53364674,0.0265013,95.78187007],[4.5336462,0.02649958,95.78132673],[4.53364565,0.02649786,95.78078425],[4.5336451,0.02649614,95.78024261],[4.53364456,0.02649443,95.77970174],[4.53364401,0.02649271,95.77916162],[4.53364346,0.02649099,95.7786222],[4.53364292,0.02648927,95.77808343],[4.53364237,0.02648756,95.77754528],[4.53364183,0.02648584,95.7770077],[4.53364128,0.02648412,95.77647065],[4.53364073,0.02648241,95.77593408],[4.53364019,0.02648069,95.77539796],[4.53363964,0.02647897,95.77486224],[4.53363909,0.02647725,95.77432687],[4.53363855,0.02647554,95.77379182],[4.533638,0.02647382,95.77325704],[4.53363746,0.0264721,95.77272249],[4.53363691,0.02647038,95.77218812],[4.53363636,0.02646867,95.7716539],[4.53363582,0.02646695,95.77111978],[4.53363527,0.02646523,95.77058571],[4.53363473,0.02646351,95.77005165],[4.53363418,0.0264618,95.76951757],[4.53363364,0.02646008,95.76898341],[4.53363309,0.02645836,95.76844913],[4.53363254,0.02645664,95.76791469],[4.533632,0.02645493,95.76738005],[4.53363145,0.02645321,95.76684517],[4.53363091,0.02645149,95.76630999],[4.53363036,0.02644977,95.76577446],[4.53362982,0.02644806,95.76523853],[4.53362927,0.02644634,95.76470213],[4.53362873,0.02644462,95.7641652],[4.53362818,0.0264429,95.76362769],[4.53362764,0.02644119,95.76308952],[4.53362709,0.02643947,95.76255064],[4.53362655,0.02643775,95.76201099],[4.533626,0.02643603,95.76147051],[4.53362546,0.02643431,95.76092913],[4.53362491,0.0264326,95.76038678],[4.53362437,0.02643088,95.75984342],[4.53362382,0.02642916,95.75929898],[4.53362328,0.02642744,95.7587534],[4.53362273,0.02642573,95.75820661],[4.53362219,0.02642401,95.75765855],[4.53362164,0.02642229,95.75710917],[4.5336211,0.02642057,95.7565584],[4.53362055,0.02641885,95.75600618],[4.53362001,0.02641714,95.75545245],[4.53361947,0.02641542,95.75489715],[4.53361892,0.0264137,95.75434021],[4.53361838,0.02641198,95.75378158],[4.53361783,0.02641026,95.7532212],[4.53361729,0.02640855,95.752659],[4.53361674,0.02640683,95.75209492],[4.5336162,0.02640511,95.7515289],[4.53361565,0.02640339,95.75096088],[4.53361511,0.02640167,95.75039081],[4.53361457,0.02639996,95.74981861],[4.53361402,0.02639824,95.74924423],[4.53361348,0.02639652,95.74866761],[4.53361293,0.0263948,95.74808868],[4.53361239,0.02639309,95.74750739],[4.53361184,0.02639137,95.74692368],[4.5336113,0.02638965,95.74633747],[4.53361075,0.02638793,95.74574873],[4.53361021,0.02638621,95.7451574],[4.53360967,0.0263845,95.74456351],[4.53360912,0.02638278,95.74396705],[4.53360858,0.02638106,95.74336803],[4.53360803,0.02637934,95.74276644],[4.53360749,0.02637762,95.74216231],[4.53360694,0.02637591,95.74155562],[4.5336064,0.02637419,95.74094639],[4.53360585,0.02637247,95.74033463],[4.53360531,0.02637075,95.73972032],[4.53360476,0.02636903,95.73910349],[4.53360422,0.02636732,95.73848414],[4.53360367,0.0263656,95.73786227],[4.53360313,0.02636388,95.73723788],[4.53360258,0.02636216,95.73661099],[4.53360204,0.02636045,95.73598159],[4.53360149,0.02635873,95.7353497],[4.53360095,0.02635701,95.73471531],[4.5336004,0.02635529,95.73407844],[4.53359986,0.02635358,95.73343908],[4.53359931,0.02635186,95.73279725],[4.53359876,0.02635014,95.73215295],[4.53359822,0.02634842,95.73150617],[4.53359767,0.0263467,95.73085694],[4.53359713,0.02634499,95.73020525],[4.53359658,0.02634327,95.72955111],[4.53359604,0.02634155,95.72889452],[4.53359549,0.02633983,95.72823549],[4.53359494,0.02633812,95.72757403],[4.5335944,0.0263364,95.72691016],[4.53359385,0.02633468,95.7262439],[4.5335933,0.02633297,95.72557525],[4.53359276,0.02633125,95.72490425],[4.53359221,0.02632953,95.7242309],[4.53359167,0.02632781,95.72355523],[4.53359112,0.0263261,95.72287725],[4.53359057,0.02632438,95.72219697],[4.53359003,0.02632266,95.72151442],[4.53358948,0.02632094,95.72082962],[4.53358893,0.02631923,95.72014257],[4.53358838,0.02631751,95.71945331],[4.53358784,0.02631579,95.71876183],[4.53358729,0.02631408,95.71806817],[4.53358674,0.02631236,95.71737234],[4.5335862,0.02631064,95.71667435],[4.53358565,0.02630892,95.71597422],[4.5335851,0.02630721,95.71527198],[4.53358455,0.02630549,95.71456763],[4.53358401,0.02630377,95.7138612],[4.53358346,0.02630206,95.7131527],[4.53358291,0.02630034,95.71244214],[4.53358236,0.02629862,95.71172955],[4.53358182,0.02629691,95.71101495],[4.53358127,0.02629519,95.71029834],[4.53358072,0.02629347,95.70957975],[4.53358017,0.02629175,95.70885919],[4.53357963,0.02629004,95.70813668],[4.53357908,0.02628832,95.70741224],[4.53357853,0.0262866,95.70668589],[4.53357798,0.02628489,95.70595763],[4.53357743,0.02628317,95.7052275],[4.53357689,0.02628145,95.7044955],[4.53357634,0.02627974,95.70376165],[4.53357579,0.02627802,95.70302597],[4.53357524,0.0262763,95.70228848],[4.5335747,0.02627459,95.70154919],[4.53357415,0.02627287,95.70080812],[4.5335736,0.02627115,95.70006529],[4.53357305,0.02626943,95.69932071],[4.5335725,0.02626772,95.69857441],[4.53357196,0.026266,95.69782639],[4.53357141,0.02626428,95.69707668],[4.53357086,0.02626257,95.69632529],[4.53357031,0.02626085,95.69557224],[4.53356976,0.02625913,95.69481754],[4.53356922,0.02625742,95.69406122],[4.53356867,0.0262557,95.69330329],[4.53356812,0.02625398,95.69254377],[4.53356757,0.02625227,95.69178267],[4.53356702,0.02625055,95.69102001],[4.53356648,0.02624883,95.69025581],[4.53356593,0.02624711,95.68949009],[4.53356538,0.0262454,95.68872285],[4.53356483,0.02624368,95.68795413],[4.53356428,0.02624196,95.68718394],[4.53356374,0.02624025,95.68641228],[4.53356319,0.02623853,95.68563919],[4.53356264,0.02623681,95.68486468],[4.53356209,0.0262351,95.68408876],[4.53356155,0.02623338,95.68331145],[4.533561,0.02623166,95.68253277],[4.53356045,0.02622995,95.68175274],[4.5335599,0.02622823,95.68097137],[4.53355935,0.02622651,95.68018868],[4.53355881,0.02622479,95.67940469],[4.53355826,0.02622308,95.67861942],[4.53355771,0.02622136,95.67783287],[4.53355716,0.02621964,95.67704507],[4.53355662,0.02621793,95.67625604],[4.53355607,0.02621621,95.6754658],[4.53355552,0.02621449,95.67467435],[4.53355498,0.02621277,95.67388172],[4.53355443,0.02621106,95.67308793],[4.53355388,0.02620934,95.67229298],[4.53355333,0.02620762,95.67149691],[4.53355279,0.02620591,95.67069973],[4.53355224,0.02620419,95.66990144],[4.53355169,0.02620247,95.66910208],[4.53355115,0.02620075,95.66830166],[4.5335506,0.02619904,95.66750019],[4.53355005,0.02619732,95.6666977],[4.53354951,0.0261956,95.66589419],[4.53354896,0.02619388,95.6650897],[4.53354841,0.02619217,95.66428422],[4.53354787,0.02619045,95.66347779],[4.53354732,0.02618873,95.66267042],[4.53354677,0.02618701,95.66186211],[4.53354623,0.0261853,95.6610529],[4.53354568,0.02618358,95.6602428],[4.53354514,0.02618186,95.65943183],[4.53354459,0.02618014,95.65861999],[4.53354404,0.02617843,95.65780731],[4.5335435,0.02617671,95.65699381],[4.53354295,0.02617499,95.6561795],[4.53354241,0.02617327,95.6553644],[4.53354186,0.02617156,95.65454852],[4.53354132,0.02616984,95.65373189],[4.53354077,0.02616812,95.65291452],[4.53354023,0.0261664,95.65209642],[4.53353968,0.02616468,95.65127762],[4.53353914,0.02616297,95.65045813],[4.53353859,0.02616125,95.64963796],[4.53353805,0.02615953,95.64881714],[4.5335375,0.02615781,95.64799567],[4.53353696,0.02615609,95.64717357],[4.53353641,0.02615438,95.64635085],[4.53353587,0.02615266,95.64552752],[4.53353532,0.02615094,95.64470361],[4.53353478,0.02614922,95.64387912],[4.53353424,0.0261475,95.64305407],[4.53353369,0.02614578,95.64222847],[4.53353315,0.02614407,95.64140233],[4.53353261,0.02614235,95.64057568],[4.53353206,0.02614063,95.63974852],[4.53353152,0.02613891,95.63892087],[4.53353098,0.02613719,95.63809275],[4.53353043,0.02613547,95.63726415],[4.53352989,0.02613376,95.63643511],[4.53352935,0.02613204,95.63560564],[4.5335288,0.02613032,95.63477575],[4.53352826,0.0261286,95.63394547],[4.53352772,0.02612688,95.63311481],[4.53352718,0.02612516,95.63228379],[4.53352663,0.02612344,95.63145245],[4.53352609,0.02612172,95.63062078],[4.53352555,0.02612001,95.62978883],[4.53352501,0.02611829,95.6289566],[4.53352446,0.02611657,95.62812411],[4.53352392,0.02611485,95.62729139],[4.53352338,0.02611313,95.62645846],[4.53352284,0.02611141,95.62562531],[4.5335223,0.02610969,95.62479189],[4.53352176,0.02610797,95.62395819],[4.53352122,0.02610625,95.62312415],[4.53352068,0.02610453,95.62228975],[4.53352013,0.02610281,95.62145494],[4.53351959,0.0261011,95.62061969],[4.53351905,0.02609938,95.61978397],[4.53351851,0.02609766,95.61894773],[4.53351797,0.02609594,95.61811095],[4.53351743,0.02609422,95.61727357],[4.53351689,0.0260925,95.61643557],[4.53351635,0.02609078,95.61559691],[4.53351581,0.02608906,95.61475755],[4.53351527,0.02608734,95.61391745],[4.53351472,0.02608562,95.61307657],[4.53351418,0.0260839,95.61223489],[4.53351364,0.02608218,95.61139235],[4.5335131,0.02608046,95.61054893],[4.53351256,0.02607875,95.60970458],[4.53351202,0.02607703,95.60885926],[4.53351147,0.02607531,95.60801295],[4.53351093,0.02607359,95.60716559],[4.53351039,0.02607187,95.60631715],[4.53350985,0.02607015,95.6054676],[4.5335093,0.02606843,95.60461689],[4.53350876,0.02606671,95.60376498],[4.53350822,0.026065,95.60291184],[4.53350767,0.02606328,95.60205742],[4.53350713,0.02606156,95.6012017],[4.53350658,0.02605984,95.60034462],[4.53350604,0.02605812,95.59948615],[4.53350549,0.02605641,95.59862625],[4.53350495,0.02605469,95.59776488],[4.5335044,0.02605297,95.596902],[4.53350385,0.02605125,95.59603757],[4.53350331,0.02604954,95.59517155],[4.53350276,0.02604782,95.5943039],[4.53350221,0.0260461,95.59343458],[4.53350166,0.02604438,95.59256355],[4.53350111,0.02604267,95.59169078],[4.53350056,0.02604095,95.59081635],[4.53350001,0.02603923,95.5899403],[4.53349946,0.02603752,95.58906273],[4.53349891,0.0260358,95.5881837],[4.53349836,0.02603409,95.5873033],[4.53349781,0.02603237,95.58642159],[4.53349726,0.02603065,95.58553864],[4.53349671,0.02602894,95.58465454],[4.53349615,0.02602722,95.58376936],[4.5334956,0.02602551,95.58288317],[4.53349505,0.02602379,95.58199605],[4.5334945,0.02602208,95.58110808],[4.53349394,0.02602036,95.58021932],[4.53349339,0.02601865,95.57932986],[4.53349283,0.02601693,95.57843978],[4.53349228,0.02601522,95.57754913],[4.53349173,0.0260135,95.57665802],[4.53349117,0.02601179,95.5757665],[4.53349062,0.02601007,95.57487465],[4.53349006,0.02600836,95.57398256],[4.53348951,0.02600664,95.5730903],[4.53348895,0.02600493,95.57219794],[4.5334884,0.02600321,95.57130557],[4.53348784,0.0260015,95.57041325],[4.53348729,0.02599978,95.56952108],[4.53348673,0.02599807,95.56862911],[4.53348618,0.02599635,95.56773744],[4.53348563,0.02599464,95.56684614],[4.53348507,0.02599292,95.56595529],[4.53348452,0.02599121,95.56506496],[4.53348396,0.02598949,95.56417523],[4.53348341,0.02598778,95.56328619],[4.53348286,0.02598606,95.56239791],[4.5334823,0.02598435,95.56151046],[4.53348175,0.02598263,95.56062394],[4.5334812,0.02598092,95.5597384],[4.53348064,0.0259792,95.55885392],[4.53348009,0.02597748,95.55797058],[4.53347954,0.02597577,95.55708845],[4.53347899,0.02597405,95.5562076],[4.53347843,0.02597234,95.5553281],[4.53347788,0.02597062,95.55445002],[4.53347733,0.0259689,95.55357345],[4.53347678,0.02596719,95.55269845],[4.53347623,0.02596547,95.5518251],[4.53347568,0.02596375,95.55095346],[4.53347513,0.02596204,95.55008362],[4.53347459,0.02596032,95.54921565],[4.53347456,0.02596024,95.54917495],[4.53350366,0.02595082,95.64243587],[4.53350369,0.0259509,95.6424743],[4.53350424,0.02595262,95.64329301],[4.53350479,0.02595433,95.64411194],[4.53350534,0.02595605,95.6449311],[4.53350588,0.02595777,95.64575049],[4.53350643,0.02595949,95.64657009],[4.53350698,0.0259612,95.64738991],[4.53350753,0.02596292,95.64820995],[4.53350808,0.02596464,95.64903019],[4.53350863,0.02596635,95.64985065],[4.53350918,0.02596807,95.65067131],[4.53350972,0.02596979,95.65149217],[4.53351027,0.0259715,95.65231324],[4.53351082,0.02597322,95.6531345],[4.53351137,0.02597494,95.65395595],[4.53351192,0.02597666,95.65477759],[4.53351247,0.02597837,95.65559942],[4.53351301,0.02598009,95.65642142],[4.53351356,0.02598181,95.65724358],[4.53351411,0.02598352,95.6580659],[4.53351466,0.02598524,95.65888835],[4.53351521,0.02598696,95.65971095],[4.53351576,0.02598868,95.66053367],[4.53351631,0.02599039,95.6613565],[4.53351685,0.02599211,95.66217945],[4.5335174,0.02599383,95.66300249],[4.53351795,0.02599554,95.66382561],[4.5335185,0.02599726,95.66464882],[4.53351905,0.02599898,95.6654721],[4.5335196,0.02600069,95.66629543],[4.53352015,0.02600241,95.66711882],[4.5335207,0.02600413,95.66794225],[4.53352124,0.02600585,95.66876571],[4.53352179,0.02600756,95.66958919],[4.53352234,0.02600928,95.67041269],[4.53352289,0.026011,95.67123619],[4.53352344,0.02601271,95.67205968],[4.53352399,0.02601443,95.67288316],[4.53352454,0.02601615,95.67370662],[4.53352508,0.02601786,95.67453004],[4.53352563,0.02601958,95.67535342],[4.53352618,0.0260213,95.67617675],[4.53352673,0.02602302,95.67700002],[4.53352728,0.02602473,95.67782321],[4.53352783,0.02602645,95.67864633],[4.53352838,0.02602817,95.67946936],[4.53352892,0.02602988,95.68029229],[4.53352947,0.0260316,95.68111512],[4.53353002,0.02603332,95.68193782],[4.53353057,0.02603503,95.68276041],[4.53353112,0.02603675,95.68358285],[4.53353167,0.02603847,95.68440516],[4.53353222,0.02604019,95.6852273],[4.53353276,0.0260419,95.68604929],[4.53353331,0.02604362,95.6868711],[4.53353386,0.02604534,95.68769274],[4.53353441,0.02604705,95.68851418],[4.53353496,0.02604877,95.68933542],[4.53353551,0.02605049,95.69015646],[4.53353606,0.02605221,95.69097727],[4.5335366,0.02605392,95.69179786],[4.53353715,0.02605564,95.69261822],[4.5335377,0.02605736,95.69343832],[4.53353825,0.02605907,95.69425818],[4.5335388,0.02606079,95.69507777],[4.53353935,0.02606251,95.69589708],[4.53353989,0.02606423,95.69671612],[4.53354044,0.02606594,95.69753486],[4.53354099,0.02606766,95.6983533],[4.53354154,0.02606938,95.69917143],[4.53354209,0.02607109,95.69998925],[4.53354263,0.02607281,95.70080673],[4.53354318,0.02607453,95.70162388],[4.53354373,0.02607625,95.70244069],[4.53354428,0.02607796,95.70325713],[4.53354483,0.02607968,95.70407322],[4.53354537,0.0260814,95.70488893],[4.53354592,0.02608311,95.70570425],[4.53354647,0.02608483,95.70651919],[4.53354702,0.02608655,95.70733372],[4.53354757,0.02608827,95.70814785],[4.53354811,0.02608998,95.70896155],[4.53354866,0.0260917,95.70977483],[4.53354921,0.02609342,95.71058767],[4.53354976,0.02609513,95.71140006],[4.53355031,0.02609685,95.712212],[4.53355085,0.02609857,95.71302347],[4.5335514,0.02610029,95.71383447],[4.53355195,0.026102,95.71464499],[4.5335525,0.02610372,95.71545501],[4.53355304,0.02610544,95.71626454],[4.53355359,0.02610716,95.71707355],[4.53355414,0.02610887,95.71788204],[4.53355469,0.02611059,95.71869001],[4.53355523,0.02611231,95.71949744],[4.53355578,0.02611403,95.72030432],[4.53355633,0.02611574,95.72111065],[4.53355687,0.02611746,95.72191641],[4.53355742,0.02611918,95.7227216],[4.53355797,0.0261209,95.72352621],[4.53355852,0.02612261,95.72433023],[4.53355906,0.02612433,95.72513364],[4.53355961,0.02612605,95.72593645],[4.53356016,0.02612777,95.72673864],[4.5335607,0.02612948,95.72754022],[4.53356125,0.0261312,95.72834118],[4.5335618,0.02613292,95.72914151],[4.53356234,0.02613464,95.72994122],[4.53356289,0.02613635,95.7307403],[4.53356344,0.02613807,95.73153875],[4.53356398,0.02613979,95.73233657],[4.53356453,0.02614151,95.73313374],[4.53356508,0.02614322,95.73393028],[4.53356562,0.02614494,95.73472617],[4.53356617,0.02614666,95.73552141],[4.53356672,0.02614838,95.736316],[4.53356726,0.02615009,95.73710994],[4.53356781,0.02615181,95.73790322],[4.53356836,0.02615353,95.73869584],[4.5335689,0.02615525,95.73948779],[4.53356945,0.02615696,95.74027907],[4.53357,0.02615868,95.74106968],[4.53357054,0.0261604,95.74185961],[4.53357109,0.02616212,95.74264885],[4.53357163,0.02616384,95.7434374],[4.53357218,0.02616555,95.74422524],[4.53357273,0.02616727,95.74501238],[4.53357327,0.02616899,95.7457988],[4.53357382,0.02617071,95.74658451],[4.53357436,0.02617242,95.74736949],[4.53357491,0.02617414,95.74815373],[4.53357546,0.02617586,95.74893724],[4.533576,0.02617758,95.74972],[4.53357655,0.0261793,95.75050201],[4.53357709,0.02618101,95.75128326],[4.53357764,0.02618273,95.75206375],[4.53357819,0.02618445,95.75284346],[4.53357873,0.02618617,95.7536224],[4.53357928,0.02618788,95.75440056],[4.53357982,0.0261896,95.75517792],[4.53358037,0.02619132,95.75595449],[4.53358092,0.02619304,95.75673026],[4.53358146,0.02619476,95.75750522],[4.53358201,0.02619647,95.75827936],[4.53358255,0.02619819,95.75905268],[4.5335831,0.02619991,95.75982517],[4.53358364,0.02620163,95.76059682],[4.53358419,0.02620335,95.76136764],[4.53358474,0.02620506,95.76213761],[4.53358528,0.02620678,95.76290672],[4.53358583,0.0262085,95.76367497],[4.53358637,0.02621022,95.76444236],[4.53358692,0.02621194,95.76520887],[4.53358746,0.02621365,95.7659745],[4.53358801,0.02621537,95.76673925],[4.53358856,0.02621709,95.7675031],[4.5335891,0.02621881,95.76826606],[4.53358965,0.02622052,95.7690281],[4.53359019,0.02622224,95.76978924],[4.53359074,0.02622396,95.77054946],[4.53359128,0.02622568,95.77130875],[4.53359183,0.0262274,95.77206711],[4.53359237,0.02622911,95.77282454],[4.53359292,0.02623083,95.77358102],[4.53359346,0.02623255,95.77433655],[4.53359401,0.02623427,95.77509112],[4.53359456,0.02623599,95.77584473],[4.5335951,0.0262377,95.77659737],[4.53359565,0.02623942,95.77734903],[4.53359619,0.02624114,95.77809971],[4.53359674,0.02624286,95.7788494],[4.53359728,0.02624458,95.7795981],[4.53359783,0.02624629,95.78034579],[4.53359837,0.02624801,95.78109247],[4.53359892,0.02624973,95.78183814],[4.53359946,0.02625145,95.78258279],[4.53360001,0.02625317,95.78332641],[4.53360055,0.02625488,95.78406899],[4.5336011,0.0262566,95.78481054],[4.53360164,0.02625832,95.78555103],[4.53360219,0.02626004,95.78629047],[4.53360273,0.02626176,95.78702886],[4.53360328,0.02626347,95.78776617],[4.53360382,0.02626519,95.78850241],[4.53360437,0.02626691,95.78923757],[4.53360491,0.02626863,95.78997165],[4.53360546,0.02627035,95.79070463],[4.533606,0.02627206,95.79143651],[4.53360655,0.02627378,95.79216729],[4.53360709,0.0262755,95.79289696],[4.53360764,0.02627722,95.7936255],[4.53360819,0.02627894,95.79435292],[4.53360873,0.02628066,95.79507921],[4.53360928,0.02628237,95.79580437],[4.53360982,0.02628409,95.79652837],[4.53361037,0.02628581,95.79725123],[4.53361091,0.02628753,95.79797293],[4.53361146,0.02628925,95.79869346],[4.533612,0.02629096,95.79941283],[4.53361255,0.02629268,95.80013101],[4.53361309,0.0262944,95.80084802],[4.53361364,0.02629612,95.80156383],[4.53361418,0.02629784,95.80227845],[4.53361472,0.02629955,95.80299187],[4.53361527,0.02630127,95.80370407],[4.53361581,0.02630299,95.80441506],[4.53361636,0.02630471,95.80512483],[4.5336169,0.02630643,95.80583337],[4.53361745,0.02630814,95.80654068],[4.53361799,0.02630986,95.80724674],[4.53361854,0.02631158,95.80795155],[4.53361908,0.0263133,95.80865511],[4.53361963,0.02631502,95.80935741],[4.53362017,0.02631673,95.81005845],[4.53362072,0.02631845,95.81075821],[4.53362126,0.02632017,95.81145668],[4.53362181,0.02632189,95.81215388],[4.53362235,0.02632361,95.81284978],[4.5336229,0.02632533,95.81354437],[4.53362344,0.02632704,95.81423767],[4.53362399,0.02632876,95.81492965],[4.53362453,0.02633048,95.81562031],[4.53362508,0.0263322,95.81630965],[4.53362562,0.02633392,95.81699765],[4.53362617,0.02633563,95.81768432],[4.53362671,0.02633735,95.81836964],[4.53362726,0.02633907,95.81905361],[4.5336278,0.02634079,95.81973622],[4.53362835,0.02634251,95.82041747],[4.53362889,0.02634422,95.82109735],[4.53362944,0.02634594,95.82177585],[4.53362998,0.02634766,95.82245297],[4.53363053,0.02634938,95.8231287],[4.53363107,0.0263511,95.82380304],[4.53363162,0.02635281,95.82447597],[4.53363216,0.02635453,95.82514749],[4.53363271,0.02635625,95.8258176],[4.53363325,0.02635797,95.82648628],[4.5336338,0.02635969,95.82715354],[4.53363434,0.02636141,95.82781936],[4.53363489,0.02636312,95.82848375],[4.53363543,0.02636484,95.82914668],[4.53363597,0.02636656,95.82980817],[4.53363652,0.02636828,95.83046819],[4.53363706,0.02637,95.83112675],[4.53363761,0.02637171,95.83178383],[4.53363815,0.02637343,95.83243944],[4.5336387,0.02637515,95.83309356],[4.53363924,0.02637687,95.83374619],[4.53363979,0.02637859,95.83439732],[4.53364033,0.0263803,95.83504696],[4.53364088,0.02638202,95.83569511],[4.53364142,0.02638374,95.83634181],[4.53364197,0.02638546,95.83698709],[4.53364251,0.02638718,95.83763099],[4.53364306,0.02638889,95.83827355],[4.5336436,0.02639061,95.83891479],[4.53364415,0.02639233,95.83955476],[4.53364469,0.02639405,95.84019348],[4.53364524,0.02639577,95.840831],[4.53364578,0.02639748,95.84146734],[4.53364633,0.0263992,95.84210255],[4.53364687,0.02640092,95.84273665],[4.53364742,0.02640264,95.84336968],[4.53364796,0.02640436,95.84400168],[4.53364851,0.02640607,95.84463268],[4.53364905,0.02640779,95.84526272],[4.5336496,0.02640951,95.84589182],[4.53365014,0.02641123,95.84652004],[4.53365069,0.02641295,95.84714739],[4.53365123,0.02641466,95.84777392],[4.53365178,0.02641638,95.84839966],[4.53365232,0.0264181,95.84902464],[4.53365287,0.02641982,95.8496489],[4.53365341,0.02642154,95.85027248],[4.53365396,0.02642325,95.85089541],[4.5336545,0.02642497,95.85151773],[4.53365505,0.02642669,95.85213946],[4.53365559,0.02642841,95.85276065],[4.53365614,0.02643013,95.85338133],[4.53365669,0.02643184,95.85400153],[4.53365723,0.02643356,95.85462129],[4.53365778,0.02643528,95.85524065],[4.53365832,0.026437,95.85585964],[4.53365887,0.02643872,95.8564783],[4.53365941,0.02644043,95.85709665],[4.53365996,0.02644215,95.85771474],[4.5336605,0.02644387,95.85833259],[4.53366105,0.02644559,95.85895023],[4.53366159,0.02644731,95.8595677],[4.53366214,0.02644902,95.86018503],[4.53366269,0.02645074,95.86080224],[4.53366323,0.02645246,95.86141937],[4.53366378,0.02645418,95.86203644],[4.53366432,0.02645589,95.8626535],[4.53366487,0.02645761,95.86327056],[4.53366541,0.02645933,95.86388766],[4.53366596,0.02646105,95.86450484],[4.53366651,0.02646277,95.86512211],[4.53366705,0.02646448,95.86573952],[4.5336676,0.0264662,95.86635709],[4.53366814,0.02646792,95.86697485],[4.53366869,0.02646964,95.86759283],[4.53366923,0.02647135,95.86821107],[4.53366978,0.02647307,95.86882959],[4.53367033,0.02647479,95.86944843],[4.53367087,0.02647651,95.87006761],[4.53367142,0.02647822,95.87068717],[4.53367196,0.02647994,95.87130713],[4.53367251,0.02648166,95.87192753],[4.53367306,0.02648338,95.8725484],[4.5336736,0.0264851,95.87316977],[4.53367415,0.02648681,95.87379166],[4.53367469,0.02648853,95.87441411],[4.53367524,0.02649025,95.87503715],[4.53367579,0.02649197,95.87566081],[4.53367633,0.02649368,95.87628512],[4.53367688,0.0264954,95.87691011],[4.53367742,0.02649712,95.87753581],[4.53367797,0.02649884,95.87816226],[4.53367852,0.02650055,95.87878947],[4.53367906,0.02650227,95.87941748],[4.53367961,0.02650399,95.88004633],[4.53368015,0.02650571,95.88067604],[4.5336807,0.02650743,95.88130664],[4.53368125,0.02650914,95.88193816],[4.53368179,0.02651086,95.88257064],[4.53368234,0.02651258,95.88320409],[4.53368288,0.0265143,95.88383857],[4.53368343,0.02651601,95.88447408],[4.53368398,0.02651773,95.88511067],[4.53368452,0.02651945,95.88574837],[4.53368507,0.02652117,95.88638719],[4.53368561,0.02652288,95.88702718],[4.53368616,0.0265246,95.88766837],[4.53368671,0.02652632,95.88831078],[4.53368725,0.02652804,95.88895444],[4.5336878,0.02652975,95.88959939],[4.53368834,0.02653147,95.89024566],[4.53368889,0.02653319,95.89089327],[4.53368943,0.02653491,95.89154225],[4.53368998,0.02653663,95.89219264],[4.53369053,0.02653834,95.89284447],[4.53369107,0.02654006,95.89349775],[4.53369162,0.02654178,95.89415254],[4.53369216,0.0265435,95.89480885],[4.53369271,0.02654521,95.89546671],[4.53369326,0.02654693,95.89612616],[4.5336938,0.02654865,95.89678723],[4.53369435,0.02655037,95.89744994],[4.53369489,0.02655208,95.89811432],[4.53369544,0.0265538,95.89878041],[4.53369598,0.02655552,95.89944823],[4.53369653,0.02655724,95.90011782],[4.53369708,0.02655896,95.9007892],[4.53369762,0.02656067,95.90146241],[4.53369817,0.02656239,95.90213747],[4.53369871,0.02656411,95.90281442],[4.53369926,0.02656583,95.90349328],[4.5336998,0.02656754,95.90417409],[4.53370035,0.02656926,95.90485687],[4.53370089,0.02657098,95.90554165],[4.53370144,0.0265727,95.90622846],[4.53370199,0.02657442,95.90691734],[4.53370253,0.02657613,95.90760832],[4.53370308,0.02657785,95.90830141],[4.53370362,0.02657957,95.90899666],[4.53370417,0.02658129,95.90969409],[4.53370471,0.026583,95.91039374],[4.53370526,0.02658472,95.91109562],[4.5337058,0.02658644,95.91179978],[4.53370635,0.02658816,95.91250625],[4.53370689,0.02658988,95.91321504],[4.53370744,0.02659159,95.91392619],[4.53370798,0.02659331,95.91463974],[4.53370853,0.02659503,95.91535571],[4.53370907,0.02659675,95.91607413],[4.53370962,0.02659847,95.91679502],[4.53371016,0.02660018,95.91751844],[4.53371071,0.0266019,95.91824439],[4.53371125,0.02660362,95.91897291],[4.5337118,0.02660534,95.91970403],[4.53371234,0.02660706,95.92043778],[4.53371289,0.02660877,95.92117419],[4.53371343,0.02661049,95.92191329],[4.53371398,0.02661221,95.92265511],[4.53371452,0.02661393,95.92339968],[4.53371506,0.02661565,95.92414703],[4.53371561,0.02661736,95.92489718],[4.53371615,0.02661908,95.92565018],[4.5337167,0.0266208,95.92640604],[4.53371724,0.02662252,95.9271648],[4.53371779,0.02662424,95.9279265],[4.53371833,0.02662596,95.92869114],[4.53371887,0.02662767,95.92945878],[4.53371942,0.02662939,95.93022944],[4.53371996,0.02663111,95.93100314],[4.53372051,0.02663283,95.93177992],[4.53372105,0.02663455,95.93255981],[4.53372159,0.02663626,95.93334284],[4.53372214,0.02663798,95.93412903],[4.53372268,0.0266397,95.93491842],[4.53372323,0.02664142,95.93571104],[4.53372377,0.02664314,95.93650692],[4.53372431,0.02664486,95.93730608],[4.53372486,0.02664657,95.93810857],[4.5337254,0.02664829,95.9389144],[4.53372594,0.02665001,95.93972361],[4.53372649,0.02665173,95.94053622],[4.53372703,0.02665345,95.94135228],[4.53372757,0.02665517,95.9421718],[4.53372812,0.02665689,95.94299483],[4.53372866,0.0266586,95.94382138],[4.5337292,0.02666032,95.9446515],[4.53372975,0.02666204,95.94548521],[4.53373029,0.02666376,95.94632255],[4.53373083,0.02666548,95.94716356],[4.53373137,0.0266672,95.94800827],[4.53373192,0.02666892,95.9488567],[4.53373246,0.02667063,95.9497089],[4.533733,0.02667235,95.9505649],[4.53373354,0.02667407,95.95142472],[4.53373409,0.02667579,95.95228842],[4.53373463,0.02667751,95.953156],[4.53373517,0.02667923,95.95402753],[4.53373571,0.02668095,95.95490301],[4.53373626,0.02668267,95.95578249],[4.5337368,0.02668438,95.95666601],[4.53373734,0.0266861,95.95755359],[4.53373788,0.02668782,95.95844527],[4.53373842,0.02668954,95.95934109],[4.53373897,0.02669126,95.96024107],[4.53373951,0.02669298,95.96114525],[4.53374005,0.0266947,95.96205366],[4.53374059,0.02669642,95.96296634],[4.53374113,0.02669814,95.96388333],[4.53374168,0.02669985,95.96480465],[4.53374222,0.02670157,95.96573033],[4.53374276,0.02670329,95.96666043],[4.5337433,0.02670501,95.96759495],[4.53374384,0.02670673,95.96853395],[4.53374438,0.02670845,95.96947746],[4.53371522,0.02671778,95.87452667]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"entry","predecessorId":-3,"sOffset":177.600614965}},{"geometry":{"coordinates":[[[4.53374438,0.02670845,95.96947746],[4.53374384,0.02670673,95.96853395],[4.5337433,0.02670501,95.96759495],[4.53374276,0.02670329,95.96666043],[4.53374222,0.02670157,95.96573033],[4.53374168,0.02669985,95.96480465],[4.53374113,0.02669814,95.96388333],[4.53374059,0.02669642,95.96296634],[4.53374005,0.0266947,95.96205366],[4.53373951,0.02669298,95.96114525],[4.53373897,0.02669126,95.96024107],[4.53373842,0.02668954,95.95934109],[4.53373788,0.02668782,95.95844527],[4.53373734,0.0266861,95.95755359],[4.5337368,0.02668438,95.95666601],[4.53373626,0.02668267,95.95578249],[4.53373571,0.02668095,95.95490301],[4.53373517,0.02667923,95.95402753],[4.53373463,0.02667751,95.953156],[4.53373409,0.02667579,95.95228842],[4.53373354,0.02667407,95.95142472],[4.533733,0.02667235,95.9505649],[4.53373246,0.02667063,95.9497089],[4.53373192,0.02666892,95.9488567],[4.53373137,0.0266672,95.94800827],[4.53373083,0.02666548,95.94716356],[4.53373029,0.02666376,95.94632255],[4.53372975,0.02666204,95.94548521],[4.5337292,0.02666032,95.9446515],[4.53372866,0.0266586,95.94382138],[4.53372812,0.02665689,95.94299483],[4.53372757,0.02665517,95.9421718],[4.53372703,0.02665345,95.94135228],[4.53372649,0.02665173,95.94053622],[4.53372594,0.02665001,95.93972361],[4.5337254,0.02664829,95.9389144],[4.53372486,0.02664657,95.93810857],[4.53372431,0.02664486,95.93730608],[4.53372377,0.02664314,95.93650692],[4.53372323,0.02664142,95.93571104],[4.53372268,0.0266397,95.93491842],[4.53372214,0.02663798,95.93412903],[4.53372159,0.02663626,95.93334284],[4.53372105,0.02663455,95.93255981],[4.53372051,0.02663283,95.93177992],[4.53371996,0.02663111,95.93100314],[4.53371942,0.02662939,95.93022944],[4.53371887,0.02662767,95.92945878],[4.53371833,0.02662596,95.92869114],[4.53371779,0.02662424,95.9279265],[4.53371724,0.02662252,95.9271648],[4.5337167,0.0266208,95.92640604],[4.53371615,0.02661908,95.92565018],[4.53371561,0.02661736,95.92489718],[4.53371506,0.02661565,95.92414703],[4.53371452,0.02661393,95.92339968],[4.53371398,0.02661221,95.92265511],[4.53371343,0.02661049,95.92191329],[4.53371289,0.02660877,95.92117419],[4.53371234,0.02660706,95.92043778],[4.5337118,0.02660534,95.91970403],[4.53371125,0.02660362,95.91897291],[4.53371071,0.0266019,95.91824439],[4.53371016,0.02660018,95.91751844],[4.53370962,0.02659847,95.91679502],[4.53370907,0.02659675,95.91607413],[4.53370853,0.02659503,95.91535571],[4.53370798,0.02659331,95.91463974],[4.53370744,0.02659159,95.91392619],[4.53370689,0.02658988,95.91321504],[4.53370635,0.02658816,95.91250625],[4.5337058,0.02658644,95.91179978],[4.53370526,0.02658472,95.91109562],[4.53370471,0.026583,95.91039374],[4.53370417,0.02658129,95.90969409],[4.53370362,0.02657957,95.90899666],[4.53370308,0.02657785,95.90830141],[4.53370253,0.02657613,95.90760832],[4.53370199,0.02657442,95.90691734],[4.53370144,0.0265727,95.90622846],[4.53370089,0.02657098,95.90554165],[4.53370035,0.02656926,95.90485687],[4.5336998,0.02656754,95.90417409],[4.53369926,0.02656583,95.90349328],[4.53369871,0.02656411,95.90281442],[4.53369817,0.02656239,95.90213747],[4.53369762,0.02656067,95.90146241],[4.53369708,0.02655896,95.9007892],[4.53369653,0.02655724,95.90011782],[4.53369598,0.02655552,95.89944823],[4.53369544,0.0265538,95.89878041],[4.53369489,0.02655208,95.89811432],[4.53369435,0.02655037,95.89744994],[4.5336938,0.02654865,95.89678723],[4.53369326,0.02654693,95.89612616],[4.53369271,0.02654521,95.89546671],[4.53369216,0.0265435,95.89480885],[4.53369162,0.02654178,95.89415254],[4.53369107,0.02654006,95.89349775],[4.53369053,0.02653834,95.89284447],[4.53368998,0.02653663,95.89219264],[4.53368943,0.02653491,95.89154225],[4.53368889,0.02653319,95.89089327],[4.53368834,0.02653147,95.89024566],[4.5336878,0.02652975,95.88959939],[4.53368725,0.02652804,95.88895444],[4.53368671,0.02652632,95.88831078],[4.53368616,0.0265246,95.88766837],[4.53368561,0.02652288,95.88702718],[4.53368507,0.02652117,95.88638719],[4.53368452,0.02651945,95.88574837],[4.53368398,0.02651773,95.88511067],[4.53368343,0.02651601,95.88447408],[4.53368288,0.0265143,95.88383857],[4.53368234,0.02651258,95.88320409],[4.53368179,0.02651086,95.88257064],[4.53368125,0.02650914,95.88193816],[4.5336807,0.02650743,95.88130664],[4.53368015,0.02650571,95.88067604],[4.53367961,0.02650399,95.88004633],[4.53367906,0.02650227,95.87941748],[4.53367852,0.02650055,95.87878947],[4.53367797,0.02649884,95.87816226],[4.53367742,0.02649712,95.87753581],[4.53367688,0.0264954,95.87691011],[4.53367633,0.02649368,95.87628512],[4.53367579,0.02649197,95.87566081],[4.53367524,0.02649025,95.87503715],[4.53367469,0.02648853,95.87441411],[4.53367415,0.02648681,95.87379166],[4.5336736,0.0264851,95.87316977],[4.53367306,0.02648338,95.8725484],[4.53367251,0.02648166,95.87192753],[4.53367196,0.02647994,95.87130713],[4.53367142,0.02647822,95.87068717],[4.53367087,0.02647651,95.87006761],[4.53367033,0.02647479,95.86944843],[4.53366978,0.02647307,95.86882959],[4.53366923,0.02647135,95.86821107],[4.53366869,0.02646964,95.86759283],[4.53366814,0.02646792,95.86697485],[4.5336676,0.0264662,95.86635709],[4.53366705,0.02646448,95.86573952],[4.53366651,0.02646277,95.86512211],[4.53366596,0.02646105,95.86450484],[4.53366541,0.02645933,95.86388766],[4.53366487,0.02645761,95.86327056],[4.53366432,0.02645589,95.8626535],[4.53366378,0.02645418,95.86203644],[4.53366323,0.02645246,95.86141937],[4.53366269,0.02645074,95.86080224],[4.53366214,0.02644902,95.86018503],[4.53366159,0.02644731,95.8595677],[4.53366105,0.02644559,95.85895023],[4.5336605,0.02644387,95.85833259],[4.53365996,0.02644215,95.85771474],[4.53365941,0.02644043,95.85709665],[4.53365887,0.02643872,95.8564783],[4.53365832,0.026437,95.85585964],[4.53365778,0.02643528,95.85524065],[4.53365723,0.02643356,95.85462129],[4.53365669,0.02643184,95.85400153],[4.53365614,0.02643013,95.85338133],[4.53365559,0.02642841,95.85276065],[4.53365505,0.02642669,95.85213946],[4.5336545,0.02642497,95.85151773],[4.53365396,0.02642325,95.85089541],[4.53365341,0.02642154,95.85027248],[4.53365287,0.02641982,95.8496489],[4.53365232,0.0264181,95.84902464],[4.53365178,0.02641638,95.84839966],[4.53365123,0.02641466,95.84777392],[4.53365069,0.02641295,95.84714739],[4.53365014,0.02641123,95.84652004],[4.5336496,0.02640951,95.84589182],[4.53364905,0.02640779,95.84526272],[4.53364851,0.02640607,95.84463268],[4.53364796,0.02640436,95.84400168],[4.53364742,0.02640264,95.84336968],[4.53364687,0.02640092,95.84273665],[4.53364633,0.0263992,95.84210255],[4.53364578,0.02639748,95.84146734],[4.53364524,0.02639577,95.840831],[4.53364469,0.02639405,95.84019348],[4.53364415,0.02639233,95.83955476],[4.5336436,0.02639061,95.83891479],[4.53364306,0.02638889,95.83827355],[4.53364251,0.02638718,95.83763099],[4.53364197,0.02638546,95.83698709],[4.53364142,0.02638374,95.83634181],[4.53364088,0.02638202,95.83569511],[4.53364033,0.0263803,95.83504696],[4.53363979,0.02637859,95.83439732],[4.53363924,0.02637687,95.83374619],[4.5336387,0.02637515,95.83309356],[4.53363815,0.02637343,95.83243944],[4.53363761,0.02637171,95.83178383],[4.53363706,0.02637,95.83112675],[4.53363652,0.02636828,95.83046819],[4.53363597,0.02636656,95.82980817],[4.53363543,0.02636484,95.82914668],[4.53363489,0.02636312,95.82848375],[4.53363434,0.02636141,95.82781936],[4.5336338,0.02635969,95.82715354],[4.53363325,0.02635797,95.82648628],[4.53363271,0.02635625,95.8258176],[4.53363216,0.02635453,95.82514749],[4.53363162,0.02635281,95.82447597],[4.53363107,0.0263511,95.82380304],[4.53363053,0.02634938,95.8231287],[4.53362998,0.02634766,95.82245297],[4.53362944,0.02634594,95.82177585],[4.53362889,0.02634422,95.82109735],[4.53362835,0.02634251,95.82041747],[4.5336278,0.02634079,95.81973622],[4.53362726,0.02633907,95.81905361],[4.53362671,0.02633735,95.81836964],[4.53362617,0.02633563,95.81768432],[4.53362562,0.02633392,95.81699765],[4.53362508,0.0263322,95.81630965],[4.53362453,0.02633048,95.81562031],[4.53362399,0.02632876,95.81492965],[4.53362344,0.02632704,95.81423767],[4.5336229,0.02632533,95.81354437],[4.53362235,0.02632361,95.81284978],[4.53362181,0.02632189,95.81215388],[4.53362126,0.02632017,95.81145668],[4.53362072,0.02631845,95.81075821],[4.53362017,0.02631673,95.81005845],[4.53361963,0.02631502,95.80935741],[4.53361908,0.0263133,95.80865511],[4.53361854,0.02631158,95.80795155],[4.53361799,0.02630986,95.80724674],[4.53361745,0.02630814,95.80654068],[4.5336169,0.02630643,95.80583337],[4.53361636,0.02630471,95.80512483],[4.53361581,0.02630299,95.80441506],[4.53361527,0.02630127,95.80370407],[4.53361472,0.02629955,95.80299187],[4.53361418,0.02629784,95.80227845],[4.53361364,0.02629612,95.80156383],[4.53361309,0.0262944,95.80084802],[4.53361255,0.02629268,95.80013101],[4.533612,0.02629096,95.79941283],[4.53361146,0.02628925,95.79869346],[4.53361091,0.02628753,95.79797293],[4.53361037,0.02628581,95.79725123],[4.53360982,0.02628409,95.79652837],[4.53360928,0.02628237,95.79580437],[4.53360873,0.02628066,95.79507921],[4.53360819,0.02627894,95.79435292],[4.53360764,0.02627722,95.7936255],[4.53360709,0.0262755,95.79289696],[4.53360655,0.02627378,95.79216729],[4.533606,0.02627206,95.79143651],[4.53360546,0.02627035,95.79070463],[4.53360491,0.02626863,95.78997165],[4.53360437,0.02626691,95.78923757],[4.53360382,0.02626519,95.78850241],[4.53360328,0.02626347,95.78776617],[4.53360273,0.02626176,95.78702886],[4.53360219,0.02626004,95.78629047],[4.53360164,0.02625832,95.78555103],[4.5336011,0.0262566,95.78481054],[4.53360055,0.02625488,95.78406899],[4.53360001,0.02625317,95.78332641],[4.53359946,0.02625145,95.78258279],[4.53359892,0.02624973,95.78183814],[4.53359837,0.02624801,95.78109247],[4.53359783,0.02624629,95.78034579],[4.53359728,0.02624458,95.7795981],[4.53359674,0.02624286,95.7788494],[4.53359619,0.02624114,95.77809971],[4.53359565,0.02623942,95.77734903],[4.5335951,0.0262377,95.77659737],[4.53359456,0.02623599,95.77584473],[4.53359401,0.02623427,95.77509112],[4.53359346,0.02623255,95.77433655],[4.53359292,0.02623083,95.77358102],[4.53359237,0.02622911,95.77282454],[4.53359183,0.0262274,95.77206711],[4.53359128,0.02622568,95.77130875],[4.53359074,0.02622396,95.77054946],[4.53359019,0.02622224,95.76978924],[4.53358965,0.02622052,95.7690281],[4.5335891,0.02621881,95.76826606],[4.53358856,0.02621709,95.7675031],[4.53358801,0.02621537,95.76673925],[4.53358746,0.02621365,95.7659745],[4.53358692,0.02621194,95.76520887],[4.53358637,0.02621022,95.76444236],[4.53358583,0.0262085,95.76367497],[4.53358528,0.02620678,95.76290672],[4.53358474,0.02620506,95.76213761],[4.53358419,0.02620335,95.76136764],[4.53358364,0.02620163,95.76059682],[4.5335831,0.02619991,95.75982517],[4.53358255,0.02619819,95.75905268],[4.53358201,0.02619647,95.75827936],[4.53358146,0.02619476,95.75750522],[4.53358092,0.02619304,95.75673026],[4.53358037,0.02619132,95.75595449],[4.53357982,0.0261896,95.75517792],[4.53357928,0.02618788,95.75440056],[4.53357873,0.02618617,95.7536224],[4.53357819,0.02618445,95.75284346],[4.53357764,0.02618273,95.75206375],[4.53357709,0.02618101,95.75128326],[4.53357655,0.0261793,95.75050201],[4.533576,0.02617758,95.74972],[4.53357546,0.02617586,95.74893724],[4.53357491,0.02617414,95.74815373],[4.53357436,0.02617242,95.74736949],[4.53357382,0.02617071,95.74658451],[4.53357327,0.02616899,95.7457988],[4.53357273,0.02616727,95.74501238],[4.53357218,0.02616555,95.74422524],[4.53357163,0.02616384,95.7434374],[4.53357109,0.02616212,95.74264885],[4.53357054,0.0261604,95.74185961],[4.53357,0.02615868,95.74106968],[4.53356945,0.02615696,95.74027907],[4.5335689,0.02615525,95.73948779],[4.53356836,0.02615353,95.73869584],[4.53356781,0.02615181,95.73790322],[4.53356726,0.02615009,95.73710994],[4.53356672,0.02614838,95.736316],[4.53356617,0.02614666,95.73552141],[4.53356562,0.02614494,95.73472617],[4.53356508,0.02614322,95.73393028],[4.53356453,0.02614151,95.73313374],[4.53356398,0.02613979,95.73233657],[4.53356344,0.02613807,95.73153875],[4.53356289,0.02613635,95.7307403],[4.53356234,0.02613464,95.72994122],[4.5335618,0.02613292,95.72914151],[4.53356125,0.0261312,95.72834118],[4.5335607,0.02612948,95.72754022],[4.53356016,0.02612777,95.72673864],[4.53355961,0.02612605,95.72593645],[4.53355906,0.02612433,95.72513364],[4.53355852,0.02612261,95.72433023],[4.53355797,0.0261209,95.72352621],[4.53355742,0.02611918,95.7227216],[4.53355687,0.02611746,95.72191641],[4.53355633,0.02611574,95.72111065],[4.53355578,0.02611403,95.72030432],[4.53355523,0.02611231,95.71949744],[4.53355469,0.02611059,95.71869001],[4.53355414,0.02610887,95.71788204],[4.53355359,0.02610716,95.71707355],[4.53355304,0.02610544,95.71626454],[4.5335525,0.02610372,95.71545501],[4.53355195,0.026102,95.71464499],[4.5335514,0.02610029,95.71383447],[4.53355085,0.02609857,95.71302347],[4.53355031,0.02609685,95.712212],[4.53354976,0.02609513,95.71140006],[4.53354921,0.02609342,95.71058767],[4.53354866,0.0260917,95.70977483],[4.53354811,0.02608998,95.70896155],[4.53354757,0.02608827,95.70814785],[4.53354702,0.02608655,95.70733372],[4.53354647,0.02608483,95.70651919],[4.53354592,0.02608311,95.70570425],[4.53354537,0.0260814,95.70488893],[4.53354483,0.02607968,95.70407322],[4.53354428,0.02607796,95.70325713],[4.53354373,0.02607625,95.70244069],[4.53354318,0.02607453,95.70162388],[4.53354263,0.02607281,95.70080673],[4.53354209,0.02607109,95.69998925],[4.53354154,0.02606938,95.69917143],[4.53354099,0.02606766,95.6983533],[4.53354044,0.02606594,95.69753486],[4.53353989,0.02606423,95.69671612],[4.53353935,0.02606251,95.69589708],[4.5335388,0.02606079,95.69507777],[4.53353825,0.02605907,95.69425818],[4.5335377,0.02605736,95.69343832],[4.53353715,0.02605564,95.69261822],[4.5335366,0.02605392,95.69179786],[4.53353606,0.02605221,95.69097727],[4.53353551,0.02605049,95.69015646],[4.53353496,0.02604877,95.68933542],[4.53353441,0.02604705,95.68851418],[4.53353386,0.02604534,95.68769274],[4.53353331,0.02604362,95.6868711],[4.53353276,0.0260419,95.68604929],[4.53353222,0.02604019,95.6852273],[4.53353167,0.02603847,95.68440516],[4.53353112,0.02603675,95.68358285],[4.53353057,0.02603503,95.68276041],[4.53353002,0.02603332,95.68193782],[4.53352947,0.0260316,95.68111512],[4.53352892,0.02602988,95.68029229],[4.53352838,0.02602817,95.67946936],[4.53352783,0.02602645,95.67864633],[4.53352728,0.02602473,95.67782321],[4.53352673,0.02602302,95.67700002],[4.53352618,0.0260213,95.67617675],[4.53352563,0.02601958,95.67535342],[4.53352508,0.02601786,95.67453004],[4.53352454,0.02601615,95.67370662],[4.53352399,0.02601443,95.67288316],[4.53352344,0.02601271,95.67205968],[4.53352289,0.026011,95.67123619],[4.53352234,0.02600928,95.67041269],[4.53352179,0.02600756,95.66958919],[4.53352124,0.02600585,95.66876571],[4.5335207,0.02600413,95.66794225],[4.53352015,0.02600241,95.66711882],[4.5335196,0.02600069,95.66629543],[4.53351905,0.02599898,95.6654721],[4.5335185,0.02599726,95.66464882],[4.53351795,0.02599554,95.66382561],[4.5335174,0.02599383,95.66300249],[4.53351685,0.02599211,95.66217945],[4.53351631,0.02599039,95.6613565],[4.53351576,0.02598868,95.66053367],[4.53351521,0.02598696,95.65971095],[4.53351466,0.02598524,95.65888835],[4.53351411,0.02598352,95.6580659],[4.53351356,0.02598181,95.65724358],[4.53351301,0.02598009,95.65642142],[4.53351247,0.02597837,95.65559942],[4.53351192,0.02597666,95.65477759],[4.53351137,0.02597494,95.65395595],[4.53351082,0.02597322,95.6531345],[4.53351027,0.0259715,95.65231324],[4.53350972,0.02596979,95.65149217],[4.53350918,0.02596807,95.65067131],[4.53350863,0.02596635,95.64985065],[4.53350808,0.02596464,95.64903019],[4.53350753,0.02596292,95.64820995],[4.53350698,0.0259612,95.64738991],[4.53350643,0.02595949,95.64657009],[4.53350588,0.02595777,95.64575049],[4.53350534,0.02595605,95.6449311],[4.53350479,0.02595433,95.64411194],[4.53350424,0.02595262,95.64329301],[4.53350369,0.0259509,95.6424743],[4.53350366,0.02595082,95.64243587],[4.53353489,0.02594071,95.74248333],[4.53353491,0.02594079,95.74251936],[4.53353546,0.02594251,95.74328692],[4.53353601,0.02594423,95.74405458],[4.53353656,0.02594594,95.74482234],[4.53353711,0.02594766,95.74559022],[4.53353766,0.02594938,95.7463582],[4.53353821,0.02595109,95.7471263],[4.53353876,0.02595281,95.74789451],[4.5335393,0.02595453,95.74866284],[4.53353985,0.02595625,95.74943128],[4.5335404,0.02595796,95.75019985],[4.53354095,0.02595968,95.75096854],[4.5335415,0.0259614,95.75173735],[4.53354205,0.02596311,95.75250628],[4.5335426,0.02596483,95.75327535],[4.53354315,0.02596655,95.75404454],[4.5335437,0.02596827,95.75481386],[4.53354424,0.02596998,95.75558329],[4.53354479,0.0259717,95.75635285],[4.53354534,0.02597342,95.75712251],[4.53354589,0.02597513,95.75789228],[4.53354644,0.02597685,95.75866215],[4.53354699,0.02597857,95.75943212],[4.53354754,0.02598029,95.76020218],[4.53354809,0.025982,95.76097233],[4.53354864,0.02598372,95.76174256],[4.53354919,0.02598544,95.76251287],[4.53354973,0.02598715,95.76328325],[4.53355028,0.02598887,95.76405371],[4.53355083,0.02599059,95.76482423],[4.53355138,0.02599231,95.7655948],[4.53355193,0.02599402,95.76636544],[4.53355248,0.02599574,95.76713613],[4.53355303,0.02599746,95.76790686],[4.53355358,0.02599917,95.76867763],[4.53355413,0.02600089,95.76944845],[4.53355468,0.02600261,95.77021929],[4.53355522,0.02600433,95.77099017],[4.53355577,0.02600604,95.77176106],[4.53355632,0.02600776,95.77253198],[4.53355687,0.02600948,95.77330292],[4.53355742,0.02601119,95.77407386],[4.53355797,0.02601291,95.77484481],[4.53355852,0.02601463,95.77561576],[4.53355907,0.02601634,95.77638671],[4.53355962,0.02601806,95.77715765],[4.53356017,0.02601978,95.77792857],[4.53356071,0.0260215,95.77869949],[4.53356126,0.02602321,95.77947038],[4.53356181,0.02602493,95.78024124],[4.53356236,0.02602665,95.78101208],[4.53356291,0.02602836,95.78178288],[4.53356346,0.02603008,95.78255364],[4.53356401,0.0260318,95.78332436],[4.53356456,0.02603352,95.78409503],[4.53356511,0.02603523,95.78486565],[4.53356565,0.02603695,95.78563622],[4.5335662,0.02603867,95.78640672],[4.53356675,0.02604038,95.78717716],[4.5335673,0.0260421,95.78794752],[4.53356785,0.02604382,95.78871782],[4.5335684,0.02604554,95.78948803],[4.53356895,0.02604725,95.79025816],[4.5335695,0.02604897,95.79102821],[4.53357005,0.02605069,95.79179816],[4.53357059,0.0260524,95.79256802],[4.53357114,0.02605412,95.79333777],[4.53357169,0.02605584,95.79410742],[4.53357224,0.02605756,95.79487696],[4.53357279,0.02605927,95.79564639],[4.53357334,0.02606099,95.7964157],[4.53357389,0.02606271,95.79718489],[4.53357443,0.02606443,95.79795395],[4.53357498,0.02606614,95.79872288],[4.53357553,0.02606786,95.79949167],[4.53357608,0.02606958,95.80026033],[4.53357663,0.02607129,95.80102884],[4.53357718,0.02607301,95.8017972],[4.53357772,0.02607473,95.80256541],[4.53357827,0.02607645,95.80333346],[4.53357882,0.02607816,95.80410135],[4.53357937,0.02607988,95.80486908],[4.53357992,0.0260816,95.80563663],[4.53358047,0.02608332,95.80640401],[4.53358101,0.02608503,95.80717121],[4.53358156,0.02608675,95.80793823],[4.53358211,0.02608847,95.80870506],[4.53358266,0.02609018,95.8094717],[4.53358321,0.0260919,95.81023815],[4.53358375,0.02609362,95.81100439],[4.5335843,0.02609534,95.81177043],[4.53358485,0.02609705,95.81253626],[4.5335854,0.02609877,95.81330188],[4.53358595,0.02610049,95.81406728],[4.53358649,0.02610221,95.81483245],[4.53358704,0.02610392,95.81559741],[4.53358759,0.02610564,95.81636213],[4.53358814,0.02610736,95.81712661],[4.53358868,0.02610908,95.81789086],[4.53358923,0.02611079,95.81865487],[4.53358978,0.02611251,95.81941862],[4.53359033,0.02611423,95.82018213],[4.53359087,0.02611595,95.82094538],[4.53359142,0.02611766,95.82170838],[4.53359197,0.02611938,95.82247112],[4.53359252,0.0261211,95.82323362],[4.53359306,0.02612282,95.82399586],[4.53359361,0.02612454,95.82475786],[4.53359416,0.02612625,95.82551961],[4.5335947,0.02612797,95.82628111],[4.53359525,0.02612969,95.82704237],[4.5335958,0.02613141,95.82780339],[4.53359634,0.02613312,95.82856417],[4.53359689,0.02613484,95.82932472],[4.53359744,0.02613656,95.83008502],[4.53359799,0.02613828,95.83084509],[4.53359853,0.02614,95.83160493],[4.53359908,0.02614171,95.83236454],[4.53359963,0.02614343,95.83312391],[4.53360017,0.02614515,95.83388306],[4.53360072,0.02614687,95.83464198],[4.53360127,0.02614858,95.83540066],[4.53360181,0.0261503,95.83615912],[4.53360236,0.02615202,95.83691734],[4.53360291,0.02615374,95.83767532],[4.53360345,0.02615546,95.83843307],[4.533604,0.02615717,95.83919058],[4.53360455,0.02615889,95.83994785],[4.53360509,0.02616061,95.84070488],[4.53360564,0.02616233,95.84146167],[4.53360619,0.02616404,95.84221821],[4.53360673,0.02616576,95.84297451],[4.53360728,0.02616748,95.84373055],[4.53360782,0.0261692,95.84448635],[4.53360837,0.02617092,95.8452419],[4.53360892,0.02617263,95.84599719],[4.53360946,0.02617435,95.84675223],[4.53361001,0.02617607,95.84750702],[4.53361056,0.02617779,95.84826154],[4.5336111,0.02617951,95.84901581],[4.53361165,0.02618122,95.84976982],[4.53361219,0.02618294,95.85052356],[4.53361274,0.02618466,95.85127705],[4.53361329,0.02618638,95.85203026],[4.53361383,0.0261881,95.85278321],[4.53361438,0.02618981,95.85353589],[4.53361493,0.02619153,95.8542883],[4.53361547,0.02619325,95.85504044],[4.53361602,0.02619497,95.8557923],[4.53361656,0.02619669,95.85654389],[4.53361711,0.0261984,95.85729521],[4.53361766,0.02620012,95.85804624],[4.5336182,0.02620184,95.858797],[4.53361875,0.02620356,95.85954747],[4.53361929,0.02620528,95.86029766],[4.53361984,0.02620699,95.86104756],[4.53362039,0.02620871,95.86179718],[4.53362093,0.02621043,95.86254651],[4.53362148,0.02621215,95.86329555],[4.53362202,0.02621387,95.8640443],[4.53362257,0.02621558,95.86479276],[4.53362312,0.0262173,95.86554092],[4.53362366,0.02621902,95.86628878],[4.53362421,0.02622074,95.86703635],[4.53362475,0.02622246,95.86778362],[4.5336253,0.02622417,95.86853058],[4.53362584,0.02622589,95.86927725],[4.53362639,0.02622761,95.87002361],[4.53362694,0.02622933,95.87076966],[4.53362748,0.02623105,95.8715154],[4.53362803,0.02623277,95.87226084],[4.53362857,0.02623448,95.87300596],[4.53362912,0.0262362,95.87375077],[4.53362966,0.02623792,95.87449527],[4.53363021,0.02623964,95.87523945],[4.53363076,0.02624136,95.87598331],[4.5336313,0.02624307,95.87672685],[4.53363185,0.02624479,95.87747007],[4.53363239,0.02624651,95.87821297],[4.53363294,0.02624823,95.87895554],[4.53363348,0.02624995,95.87969779],[4.53363403,0.02625166,95.88043971],[4.53363457,0.02625338,95.8811813],[4.53363512,0.0262551,95.88192256],[4.53363567,0.02625682,95.88266348],[4.53363621,0.02625854,95.88340408],[4.53363676,0.02626026,95.88414433],[4.5336373,0.02626197,95.88488425],[4.53363785,0.02626369,95.88562383],[4.53363839,0.02626541,95.88636306],[4.53363894,0.02626713,95.88710196],[4.53363948,0.02626885,95.88784051],[4.53364003,0.02627057,95.88857871],[4.53364057,0.02627228,95.88931657],[4.53364112,0.026274,95.89005407],[4.53364167,0.02627572,95.89079123],[4.53364221,0.02627744,95.89152803],[4.53364276,0.02627916,95.89226447],[4.5336433,0.02628087,95.89300057],[4.53364385,0.02628259,95.8937363],[4.53364439,0.02628431,95.89447167],[4.53364494,0.02628603,95.89520669],[4.53364548,0.02628775,95.89594133],[4.53364603,0.02628947,95.89667562],[4.53364657,0.02629118,95.89740954],[4.53364712,0.0262929,95.89814309],[4.53364766,0.02629462,95.89887627],[4.53364821,0.02629634,95.89960908],[4.53364876,0.02629806,95.90034152],[4.5336493,0.02629977,95.90107358],[4.53364985,0.02630149,95.90180527],[4.53365039,0.02630321,95.90253658],[4.53365094,0.02630493,95.90326751],[4.53365148,0.02630665,95.90399806],[4.53365203,0.02630837,95.90472823],[4.53365257,0.02631008,95.90545801],[4.53365312,0.0263118,95.90618741],[4.53365366,0.02631352,95.90691642],[4.53365421,0.02631524,95.90764504],[4.53365475,0.02631696,95.90837327],[4.5336553,0.02631868,95.9091011],[4.53365584,0.02632039,95.90982854],[4.53365639,0.02632211,95.91055559],[4.53365693,0.02632383,95.91128224],[4.53365748,0.02632555,95.91200849],[4.53365803,0.02632727,95.91273434],[4.53365857,0.02632898,95.91345979],[4.53365912,0.0263307,95.91418483],[4.53365966,0.02633242,95.91490947],[4.53366021,0.02633414,95.9156337],[4.53366075,0.02633586,95.91635752],[4.5336613,0.02633758,95.91708094],[4.53366184,0.02633929,95.91780394],[4.53366239,0.02634101,95.91852652],[4.53366293,0.02634273,95.91924869],[4.53366348,0.02634445,95.91997045],[4.53366402,0.02634617,95.92069179],[4.53366457,0.02634789,95.9214127],[4.53366511,0.0263496,95.9221332],[4.53366566,0.02635132,95.92285327],[4.5336662,0.02635304,95.92357292],[4.53366675,0.02635476,95.92429215],[4.53366729,0.02635648,95.92501094],[4.53366784,0.0263582,95.92572931],[4.53366838,0.02635991,95.92644724],[4.53366893,0.02636163,95.92716475],[4.53366948,0.02636335,95.92788182],[4.53367002,0.02636507,95.92859845],[4.53367057,0.02636679,95.92931465],[4.53367111,0.0263685,95.93003041],[4.53367166,0.02637022,95.93074574],[4.5336722,0.02637194,95.93146064],[4.53367275,0.02637366,95.93217512],[4.53367329,0.02637538,95.9328892],[4.53367384,0.0263771,95.93360288],[4.53367438,0.02637881,95.93431619],[4.53367493,0.02638053,95.93502914],[4.53367547,0.02638225,95.93574173],[4.53367602,0.02638397,95.93645398],[4.53367656,0.02638569,95.9371659],[4.53367711,0.02638741,95.93787752],[4.53367765,0.02638912,95.93858883],[4.5336782,0.02639084,95.93929985],[4.53367875,0.02639256,95.9400106],[4.53367929,0.02639428,95.94072109],[4.53367984,0.026396,95.94143133],[4.53368038,0.02639771,95.94214133],[4.53368093,0.02639943,95.94285112],[4.53368147,0.02640115,95.94356069],[4.53368202,0.02640287,95.94427006],[4.53368256,0.02640459,95.94497926],[4.53368311,0.02640631,95.94568828],[4.53368365,0.02640802,95.94639714],[4.5336842,0.02640974,95.94710587],[4.53368475,0.02641146,95.94781446],[4.53368529,0.02641318,95.94852293],[4.53368584,0.0264149,95.9492313],[4.53368638,0.02641661,95.94993957],[4.53368693,0.02641833,95.95064777],[4.53368747,0.02642005,95.9513559],[4.53368802,0.02642177,95.95206398],[4.53368857,0.02642349,95.95277203],[4.53368911,0.0264252,95.95348004],[4.53368966,0.02642692,95.95418804],[4.5336902,0.02642864,95.95489605],[4.53369075,0.02643036,95.95560407],[4.53369129,0.02643208,95.95631211],[4.53369184,0.02643379,95.95702019],[4.53369239,0.02643551,95.9577283],[4.53369293,0.02643723,95.95843648],[4.53369348,0.02643895,95.95914471],[4.53369402,0.02644067,95.95985301],[4.53369457,0.02644238,95.96056138],[4.53369512,0.0264441,95.96126985],[4.53369566,0.02644582,95.96197841],[4.53369621,0.02644754,95.96268707],[4.53369675,0.02644926,95.96339585],[4.5336973,0.02645097,95.96410475],[4.53369785,0.02645269,95.96481378],[4.53369839,0.02645441,95.96552295],[4.53369894,0.02645613,95.96623227],[4.53369949,0.02645785,95.96694174],[4.53370003,0.02645956,95.96765138],[4.53370058,0.02646128,95.9683612],[4.53370112,0.026463,95.96907119],[4.53370167,0.02646472,95.96978138],[4.53370222,0.02646644,95.97049177],[4.53370276,0.02646815,95.97120237],[4.53370331,0.02646987,95.97191318],[4.53370386,0.02647159,95.97262422],[4.5337044,0.02647331,95.9733355],[4.53370495,0.02647502,95.97404702],[4.5337055,0.02647674,95.97475879],[4.53370604,0.02647846,95.97547082],[4.53370659,0.02648018,95.97618312],[4.53370713,0.0264819,95.9768957],[4.53370768,0.02648361,95.97760856],[4.53370823,0.02648533,95.97832172],[4.53370877,0.02648705,95.97903518],[4.53370932,0.02648877,95.97974895],[4.53370987,0.02649049,95.98046304],[4.53371041,0.0264922,95.98117746],[4.53371096,0.02649392,95.98189222],[4.53371151,0.02649564,95.98260732],[4.53371205,0.02649736,95.98332278],[4.5337126,0.02649908,95.9840386],[4.53371314,0.02650079,95.98475479],[4.53371369,0.02650251,95.98547136],[4.53371424,0.02650423,95.98618831],[4.53371478,0.02650595,95.98690566],[4.53371533,0.02650766,95.98762341],[4.53371588,0.02650938,95.98834158],[4.53371642,0.0265111,95.98906016],[4.53371697,0.02651282,95.98977918],[4.53371752,0.02651454,95.99049863],[4.53371806,0.02651625,95.99121853],[4.53371861,0.02651797,95.99193888],[4.53371915,0.02651969,95.99265969],[4.5337197,0.02652141,95.99338097],[4.53372025,0.02652313,95.99410273],[4.53372079,0.02652484,95.99482497],[4.53372134,0.02652656,95.99554771],[4.53372189,0.02652828,95.99627095],[4.53372243,0.02653,95.9969947],[4.53372298,0.02653171,95.99771898],[4.53372352,0.02653343,95.99844377],[4.53372407,0.02653515,95.9991691],[4.53372462,0.02653687,95.99989498],[4.53372516,0.02653859,96.00062141],[4.53372571,0.0265403,96.00134839],[4.53372626,0.02654202,96.00207594],[4.5337268,0.02654374,96.00280407],[4.53372735,0.02654546,96.00353278],[4.53372789,0.02654718,96.00426208],[4.53372844,0.02654889,96.00499199],[4.53372899,0.02655061,96.00572249],[4.53372953,0.02655233,96.00645362],[4.53373008,0.02655405,96.00718536],[4.53373062,0.02655577,96.00791774],[4.53373117,0.02655748,96.00865076],[4.53373172,0.0265592,96.00938442],[4.53373226,0.02656092,96.01011874],[4.53373281,0.02656264,96.01085373],[4.53373335,0.02656436,96.01158938],[4.5337339,0.02656607,96.01232571],[4.53373444,0.02656779,96.01306273],[4.53373499,0.02656951,96.01380045],[4.53373554,0.02657123,96.01453886],[4.53373608,0.02657295,96.01527799],[4.53373663,0.02657466,96.01601783],[4.53373717,0.02657638,96.01675841],[4.53373772,0.0265781,96.01749971],[4.53373826,0.02657982,96.01824176],[4.53373881,0.02658154,96.01898456],[4.53373936,0.02658325,96.01972811],[4.5337399,0.02658497,96.02047243],[4.53374045,0.02658669,96.02121753],[4.53374099,0.02658841,96.02196341],[4.53374154,0.02659013,96.02271007],[4.53374208,0.02659185,96.02345754],[4.53374263,0.02659356,96.0242058],[4.53374317,0.02659528,96.02495489],[4.53374372,0.026597,96.02570479],[4.53374426,0.02659872,96.02645552],[4.53374481,0.02660044,96.02720709],[4.53374535,0.02660216,96.0279595],[4.5337459,0.02660387,96.02871276],[4.53374644,0.02660559,96.02946689],[4.53374699,0.02660731,96.03022188],[4.53374753,0.02660903,96.03097775],[4.53374808,0.02661075,96.03173451],[4.53374862,0.02661247,96.03249215],[4.53374917,0.02661418,96.0332507],[4.53374971,0.0266159,96.03401015],[4.53375026,0.02661762,96.03477052],[4.5337508,0.02661934,96.03553181],[4.53375134,0.02662106,96.03629404],[4.53375189,0.02662278,96.03705721],[4.53375243,0.02662449,96.03782132],[4.53375298,0.02662621,96.03858639],[4.53375352,0.02662793,96.03935242],[4.53375407,0.02662965,96.04011942],[4.53375461,0.02663137,96.04088741],[4.53375515,0.02663309,96.04165638],[4.5337557,0.02663481,96.04242635],[4.53375624,0.02663652,96.04319732],[4.53375679,0.02663824,96.04396931],[4.53375733,0.02663996,96.04474231],[4.53375787,0.02664168,96.04551635],[4.53375842,0.0266434,96.04629142],[4.53375896,0.02664512,96.04706753],[4.53375951,0.02664684,96.0478447],[4.53376005,0.02664856,96.04862294],[4.53376059,0.02665027,96.04940224],[4.53376114,0.02665199,96.05018264],[4.53376168,0.02665371,96.05096413],[4.53376222,0.02665543,96.05174672],[4.53376277,0.02665715,96.05253044],[4.53376331,0.02665887,96.05331529],[4.53376385,0.02666059,96.05410128],[4.53376439,0.02666231,96.05488843],[4.53376494,0.02666402,96.05567674],[4.53376548,0.02666574,96.05646623],[4.53376602,0.02666746,96.05725691],[4.53376657,0.02666918,96.05804879],[4.53376711,0.0266709,96.05884188],[4.53376765,0.02667262,96.0596362],[4.53376819,0.02667434,96.06043175],[4.53376874,0.02667606,96.06122854],[4.53376928,0.02667778,96.0620266],[4.53376982,0.0266795,96.06282592],[4.53377036,0.02668122,96.06362653],[4.53377091,0.02668293,96.06442843],[4.53377145,0.02668465,96.06523164],[4.53377199,0.02668637,96.06603616],[4.53377253,0.02668809,96.06684201],[4.53377307,0.02668981,96.0676492],[4.53377362,0.02669153,96.06845775],[4.53377416,0.02669325,96.06926766],[4.5337747,0.02669497,96.07007894],[4.53377524,0.02669669,96.07089162],[4.53377578,0.02669841,96.07170569],[4.53374438,0.02670845,95.96947746]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2,"sOffset":177.600614965}},{"geometry":{"coordinates":[[[4.53377578,0.02669841,96.07170569],[4.53377524,0.02669669,96.07089162],[4.5337747,0.02669497,96.07007894],[4.53377416,0.02669325,96.06926766],[4.53377362,0.02669153,96.06845775],[4.53377307,0.02668981,96.0676492],[4.53377253,0.02668809,96.06684201],[4.53377199,0.02668637,96.06603616],[4.53377145,0.02668465,96.06523164],[4.53377091,0.02668293,96.06442843],[4.53377036,0.02668122,96.06362653],[4.53376982,0.0266795,96.06282592],[4.53376928,0.02667778,96.0620266],[4.53376874,0.02667606,96.06122854],[4.53376819,0.02667434,96.06043175],[4.53376765,0.02667262,96.0596362],[4.53376711,0.0266709,96.05884188],[4.53376657,0.02666918,96.05804879],[4.53376602,0.02666746,96.05725691],[4.53376548,0.02666574,96.05646623],[4.53376494,0.02666402,96.05567674],[4.53376439,0.02666231,96.05488843],[4.53376385,0.02666059,96.05410128],[4.53376331,0.02665887,96.05331529],[4.53376277,0.02665715,96.05253044],[4.53376222,0.02665543,96.05174672],[4.53376168,0.02665371,96.05096413],[4.53376114,0.02665199,96.05018264],[4.53376059,0.02665027,96.04940224],[4.53376005,0.02664856,96.04862294],[4.53375951,0.02664684,96.0478447],[4.53375896,0.02664512,96.04706753],[4.53375842,0.0266434,96.04629142],[4.53375787,0.02664168,96.04551635],[4.53375733,0.02663996,96.04474231],[4.53375679,0.02663824,96.04396931],[4.53375624,0.02663652,96.04319732],[4.5337557,0.02663481,96.04242635],[4.53375515,0.02663309,96.04165638],[4.53375461,0.02663137,96.04088741],[4.53375407,0.02662965,96.04011942],[4.53375352,0.02662793,96.03935242],[4.53375298,0.02662621,96.03858639],[4.53375243,0.02662449,96.03782132],[4.53375189,0.02662278,96.03705721],[4.53375134,0.02662106,96.03629404],[4.5337508,0.02661934,96.03553181],[4.53375026,0.02661762,96.03477052],[4.53374971,0.0266159,96.03401015],[4.53374917,0.02661418,96.0332507],[4.53374862,0.02661247,96.03249215],[4.53374808,0.02661075,96.03173451],[4.53374753,0.02660903,96.03097775],[4.53374699,0.02660731,96.03022188],[4.53374644,0.02660559,96.02946689],[4.5337459,0.02660387,96.02871276],[4.53374535,0.02660216,96.0279595],[4.53374481,0.02660044,96.02720709],[4.53374426,0.02659872,96.02645552],[4.53374372,0.026597,96.02570479],[4.53374317,0.02659528,96.02495489],[4.53374263,0.02659356,96.0242058],[4.53374208,0.02659185,96.02345754],[4.53374154,0.02659013,96.02271007],[4.53374099,0.02658841,96.02196341],[4.53374045,0.02658669,96.02121753],[4.5337399,0.02658497,96.02047243],[4.53373936,0.02658325,96.01972811],[4.53373881,0.02658154,96.01898456],[4.53373826,0.02657982,96.01824176],[4.53373772,0.0265781,96.01749971],[4.53373717,0.02657638,96.01675841],[4.53373663,0.02657466,96.01601783],[4.53373608,0.02657295,96.01527799],[4.53373554,0.02657123,96.01453886],[4.53373499,0.02656951,96.01380045],[4.53373444,0.02656779,96.01306273],[4.5337339,0.02656607,96.01232571],[4.53373335,0.02656436,96.01158938],[4.53373281,0.02656264,96.01085373],[4.53373226,0.02656092,96.01011874],[4.53373172,0.0265592,96.00938442],[4.53373117,0.02655748,96.00865076],[4.53373062,0.02655577,96.00791774],[4.53373008,0.02655405,96.00718536],[4.53372953,0.02655233,96.00645362],[4.53372899,0.02655061,96.00572249],[4.53372844,0.02654889,96.00499199],[4.53372789,0.02654718,96.00426208],[4.53372735,0.02654546,96.00353278],[4.5337268,0.02654374,96.00280407],[4.53372626,0.02654202,96.00207594],[4.53372571,0.0265403,96.00134839],[4.53372516,0.02653859,96.00062141],[4.53372462,0.02653687,95.99989498],[4.53372407,0.02653515,95.9991691],[4.53372352,0.02653343,95.99844377],[4.53372298,0.02653171,95.99771898],[4.53372243,0.02653,95.9969947],[4.53372189,0.02652828,95.99627095],[4.53372134,0.02652656,95.99554771],[4.53372079,0.02652484,95.99482497],[4.53372025,0.02652313,95.99410273],[4.5337197,0.02652141,95.99338097],[4.53371915,0.02651969,95.99265969],[4.53371861,0.02651797,95.99193888],[4.53371806,0.02651625,95.99121853],[4.53371752,0.02651454,95.99049863],[4.53371697,0.02651282,95.98977918],[4.53371642,0.0265111,95.98906016],[4.53371588,0.02650938,95.98834158],[4.53371533,0.02650766,95.98762341],[4.53371478,0.02650595,95.98690566],[4.53371424,0.02650423,95.98618831],[4.53371369,0.02650251,95.98547136],[4.53371314,0.02650079,95.98475479],[4.5337126,0.02649908,95.9840386],[4.53371205,0.02649736,95.98332278],[4.53371151,0.02649564,95.98260732],[4.53371096,0.02649392,95.98189222],[4.53371041,0.0264922,95.98117746],[4.53370987,0.02649049,95.98046304],[4.53370932,0.02648877,95.97974895],[4.53370877,0.02648705,95.97903518],[4.53370823,0.02648533,95.97832172],[4.53370768,0.02648361,95.97760856],[4.53370713,0.0264819,95.9768957],[4.53370659,0.02648018,95.97618312],[4.53370604,0.02647846,95.97547082],[4.5337055,0.02647674,95.97475879],[4.53370495,0.02647502,95.97404702],[4.5337044,0.02647331,95.9733355],[4.53370386,0.02647159,95.97262422],[4.53370331,0.02646987,95.97191318],[4.53370276,0.02646815,95.97120237],[4.53370222,0.02646644,95.97049177],[4.53370167,0.02646472,95.96978138],[4.53370112,0.026463,95.96907119],[4.53370058,0.02646128,95.9683612],[4.53370003,0.02645956,95.96765138],[4.53369949,0.02645785,95.96694174],[4.53369894,0.02645613,95.96623227],[4.53369839,0.02645441,95.96552295],[4.53369785,0.02645269,95.96481378],[4.5336973,0.02645097,95.96410475],[4.53369675,0.02644926,95.96339585],[4.53369621,0.02644754,95.96268707],[4.53369566,0.02644582,95.96197841],[4.53369512,0.0264441,95.96126985],[4.53369457,0.02644238,95.96056138],[4.53369402,0.02644067,95.95985301],[4.53369348,0.02643895,95.95914471],[4.53369293,0.02643723,95.95843648],[4.53369239,0.02643551,95.9577283],[4.53369184,0.02643379,95.95702019],[4.53369129,0.02643208,95.95631211],[4.53369075,0.02643036,95.95560407],[4.5336902,0.02642864,95.95489605],[4.53368966,0.02642692,95.95418804],[4.53368911,0.0264252,95.95348004],[4.53368857,0.02642349,95.95277203],[4.53368802,0.02642177,95.95206398],[4.53368747,0.02642005,95.9513559],[4.53368693,0.02641833,95.95064777],[4.53368638,0.02641661,95.94993957],[4.53368584,0.0264149,95.9492313],[4.53368529,0.02641318,95.94852293],[4.53368475,0.02641146,95.94781446],[4.5336842,0.02640974,95.94710587],[4.53368365,0.02640802,95.94639714],[4.53368311,0.02640631,95.94568828],[4.53368256,0.02640459,95.94497926],[4.53368202,0.02640287,95.94427006],[4.53368147,0.02640115,95.94356069],[4.53368093,0.02639943,95.94285112],[4.53368038,0.02639771,95.94214133],[4.53367984,0.026396,95.94143133],[4.53367929,0.02639428,95.94072109],[4.53367875,0.02639256,95.9400106],[4.5336782,0.02639084,95.93929985],[4.53367765,0.02638912,95.93858883],[4.53367711,0.02638741,95.93787752],[4.53367656,0.02638569,95.9371659],[4.53367602,0.02638397,95.93645398],[4.53367547,0.02638225,95.93574173],[4.53367493,0.02638053,95.93502914],[4.53367438,0.02637881,95.93431619],[4.53367384,0.0263771,95.93360288],[4.53367329,0.02637538,95.9328892],[4.53367275,0.02637366,95.93217512],[4.5336722,0.02637194,95.93146064],[4.53367166,0.02637022,95.93074574],[4.53367111,0.0263685,95.93003041],[4.53367057,0.02636679,95.92931465],[4.53367002,0.02636507,95.92859845],[4.53366948,0.02636335,95.92788182],[4.53366893,0.02636163,95.92716475],[4.53366838,0.02635991,95.92644724],[4.53366784,0.0263582,95.92572931],[4.53366729,0.02635648,95.92501094],[4.53366675,0.02635476,95.92429215],[4.5336662,0.02635304,95.92357292],[4.53366566,0.02635132,95.92285327],[4.53366511,0.0263496,95.9221332],[4.53366457,0.02634789,95.9214127],[4.53366402,0.02634617,95.92069179],[4.53366348,0.02634445,95.91997045],[4.53366293,0.02634273,95.91924869],[4.53366239,0.02634101,95.91852652],[4.53366184,0.02633929,95.91780394],[4.5336613,0.02633758,95.91708094],[4.53366075,0.02633586,95.91635752],[4.53366021,0.02633414,95.9156337],[4.53365966,0.02633242,95.91490947],[4.53365912,0.0263307,95.91418483],[4.53365857,0.02632898,95.91345979],[4.53365803,0.02632727,95.91273434],[4.53365748,0.02632555,95.91200849],[4.53365693,0.02632383,95.91128224],[4.53365639,0.02632211,95.91055559],[4.53365584,0.02632039,95.90982854],[4.5336553,0.02631868,95.9091011],[4.53365475,0.02631696,95.90837327],[4.53365421,0.02631524,95.90764504],[4.53365366,0.02631352,95.90691642],[4.53365312,0.0263118,95.90618741],[4.53365257,0.02631008,95.90545801],[4.53365203,0.02630837,95.90472823],[4.53365148,0.02630665,95.90399806],[4.53365094,0.02630493,95.90326751],[4.53365039,0.02630321,95.90253658],[4.53364985,0.02630149,95.90180527],[4.5336493,0.02629977,95.90107358],[4.53364876,0.02629806,95.90034152],[4.53364821,0.02629634,95.89960908],[4.53364766,0.02629462,95.89887627],[4.53364712,0.0262929,95.89814309],[4.53364657,0.02629118,95.89740954],[4.53364603,0.02628947,95.89667562],[4.53364548,0.02628775,95.89594133],[4.53364494,0.02628603,95.89520669],[4.53364439,0.02628431,95.89447167],[4.53364385,0.02628259,95.8937363],[4.5336433,0.02628087,95.89300057],[4.53364276,0.02627916,95.89226447],[4.53364221,0.02627744,95.89152803],[4.53364167,0.02627572,95.89079123],[4.53364112,0.026274,95.89005407],[4.53364057,0.02627228,95.88931657],[4.53364003,0.02627057,95.88857871],[4.53363948,0.02626885,95.88784051],[4.53363894,0.02626713,95.88710196],[4.53363839,0.02626541,95.88636306],[4.53363785,0.02626369,95.88562383],[4.5336373,0.02626197,95.88488425],[4.53363676,0.02626026,95.88414433],[4.53363621,0.02625854,95.88340408],[4.53363567,0.02625682,95.88266348],[4.53363512,0.0262551,95.88192256],[4.53363457,0.02625338,95.8811813],[4.53363403,0.02625166,95.88043971],[4.53363348,0.02624995,95.87969779],[4.53363294,0.02624823,95.87895554],[4.53363239,0.02624651,95.87821297],[4.53363185,0.02624479,95.87747007],[4.5336313,0.02624307,95.87672685],[4.53363076,0.02624136,95.87598331],[4.53363021,0.02623964,95.87523945],[4.53362966,0.02623792,95.87449527],[4.53362912,0.0262362,95.87375077],[4.53362857,0.02623448,95.87300596],[4.53362803,0.02623277,95.87226084],[4.53362748,0.02623105,95.8715154],[4.53362694,0.02622933,95.87076966],[4.53362639,0.02622761,95.87002361],[4.53362584,0.02622589,95.86927725],[4.5336253,0.02622417,95.86853058],[4.53362475,0.02622246,95.86778362],[4.53362421,0.02622074,95.86703635],[4.53362366,0.02621902,95.86628878],[4.53362312,0.0262173,95.86554092],[4.53362257,0.02621558,95.86479276],[4.53362202,0.02621387,95.8640443],[4.53362148,0.02621215,95.86329555],[4.53362093,0.02621043,95.86254651],[4.53362039,0.02620871,95.86179718],[4.53361984,0.02620699,95.86104756],[4.53361929,0.02620528,95.86029766],[4.53361875,0.02620356,95.85954747],[4.5336182,0.02620184,95.858797],[4.53361766,0.02620012,95.85804624],[4.53361711,0.0261984,95.85729521],[4.53361656,0.02619669,95.85654389],[4.53361602,0.02619497,95.8557923],[4.53361547,0.02619325,95.85504044],[4.53361493,0.02619153,95.8542883],[4.53361438,0.02618981,95.85353589],[4.53361383,0.0261881,95.85278321],[4.53361329,0.02618638,95.85203026],[4.53361274,0.02618466,95.85127705],[4.53361219,0.02618294,95.85052356],[4.53361165,0.02618122,95.84976982],[4.5336111,0.02617951,95.84901581],[4.53361056,0.02617779,95.84826154],[4.53361001,0.02617607,95.84750702],[4.53360946,0.02617435,95.84675223],[4.53360892,0.02617263,95.84599719],[4.53360837,0.02617092,95.8452419],[4.53360782,0.0261692,95.84448635],[4.53360728,0.02616748,95.84373055],[4.53360673,0.02616576,95.84297451],[4.53360619,0.02616404,95.84221821],[4.53360564,0.02616233,95.84146167],[4.53360509,0.02616061,95.84070488],[4.53360455,0.02615889,95.83994785],[4.533604,0.02615717,95.83919058],[4.53360345,0.02615546,95.83843307],[4.53360291,0.02615374,95.83767532],[4.53360236,0.02615202,95.83691734],[4.53360181,0.0261503,95.83615912],[4.53360127,0.02614858,95.83540066],[4.53360072,0.02614687,95.83464198],[4.53360017,0.02614515,95.83388306],[4.53359963,0.02614343,95.83312391],[4.53359908,0.02614171,95.83236454],[4.53359853,0.02614,95.83160493],[4.53359799,0.02613828,95.83084509],[4.53359744,0.02613656,95.83008502],[4.53359689,0.02613484,95.82932472],[4.53359634,0.02613312,95.82856417],[4.5335958,0.02613141,95.82780339],[4.53359525,0.02612969,95.82704237],[4.5335947,0.02612797,95.82628111],[4.53359416,0.02612625,95.82551961],[4.53359361,0.02612454,95.82475786],[4.53359306,0.02612282,95.82399586],[4.53359252,0.0261211,95.82323362],[4.53359197,0.02611938,95.82247112],[4.53359142,0.02611766,95.82170838],[4.53359087,0.02611595,95.82094538],[4.53359033,0.02611423,95.82018213],[4.53358978,0.02611251,95.81941862],[4.53358923,0.02611079,95.81865487],[4.53358868,0.02610908,95.81789086],[4.53358814,0.02610736,95.81712661],[4.53358759,0.02610564,95.81636213],[4.53358704,0.02610392,95.81559741],[4.53358649,0.02610221,95.81483245],[4.53358595,0.02610049,95.81406728],[4.5335854,0.02609877,95.81330188],[4.53358485,0.02609705,95.81253626],[4.5335843,0.02609534,95.81177043],[4.53358375,0.02609362,95.81100439],[4.53358321,0.0260919,95.81023815],[4.53358266,0.02609018,95.8094717],[4.53358211,0.02608847,95.80870506],[4.53358156,0.02608675,95.80793823],[4.53358101,0.02608503,95.80717121],[4.53358047,0.02608332,95.80640401],[4.53357992,0.0260816,95.80563663],[4.53357937,0.02607988,95.80486908],[4.53357882,0.02607816,95.80410135],[4.53357827,0.02607645,95.80333346],[4.53357772,0.02607473,95.80256541],[4.53357718,0.02607301,95.8017972],[4.53357663,0.02607129,95.80102884],[4.53357608,0.02606958,95.80026033],[4.53357553,0.02606786,95.79949167],[4.53357498,0.02606614,95.79872288],[4.53357443,0.02606443,95.79795395],[4.53357389,0.02606271,95.79718489],[4.53357334,0.02606099,95.7964157],[4.53357279,0.02605927,95.79564639],[4.53357224,0.02605756,95.79487696],[4.53357169,0.02605584,95.79410742],[4.53357114,0.02605412,95.79333777],[4.53357059,0.0260524,95.79256802],[4.53357005,0.02605069,95.79179816],[4.5335695,0.02604897,95.79102821],[4.53356895,0.02604725,95.79025816],[4.5335684,0.02604554,95.78948803],[4.53356785,0.02604382,95.78871782],[4.5335673,0.0260421,95.78794752],[4.53356675,0.02604038,95.78717716],[4.5335662,0.02603867,95.78640672],[4.53356565,0.02603695,95.78563622],[4.53356511,0.02603523,95.78486565],[4.53356456,0.02603352,95.78409503],[4.53356401,0.0260318,95.78332436],[4.53356346,0.02603008,95.78255364],[4.53356291,0.02602836,95.78178288],[4.53356236,0.02602665,95.78101208],[4.53356181,0.02602493,95.78024124],[4.53356126,0.02602321,95.77947038],[4.53356071,0.0260215,95.77869949],[4.53356017,0.02601978,95.77792857],[4.53355962,0.02601806,95.77715765],[4.53355907,0.02601634,95.77638671],[4.53355852,0.02601463,95.77561576],[4.53355797,0.02601291,95.77484481],[4.53355742,0.02601119,95.77407386],[4.53355687,0.02600948,95.77330292],[4.53355632,0.02600776,95.77253198],[4.53355577,0.02600604,95.77176106],[4.53355522,0.02600433,95.77099017],[4.53355468,0.02600261,95.77021929],[4.53355413,0.02600089,95.76944845],[4.53355358,0.02599917,95.76867763],[4.53355303,0.02599746,95.76790686],[4.53355248,0.02599574,95.76713613],[4.53355193,0.02599402,95.76636544],[4.53355138,0.02599231,95.7655948],[4.53355083,0.02599059,95.76482423],[4.53355028,0.02598887,95.76405371],[4.53354973,0.02598715,95.76328325],[4.53354919,0.02598544,95.76251287],[4.53354864,0.02598372,95.76174256],[4.53354809,0.025982,95.76097233],[4.53354754,0.02598029,95.76020218],[4.53354699,0.02597857,95.75943212],[4.53354644,0.02597685,95.75866215],[4.53354589,0.02597513,95.75789228],[4.53354534,0.02597342,95.75712251],[4.53354479,0.0259717,95.75635285],[4.53354424,0.02596998,95.75558329],[4.5335437,0.02596827,95.75481386],[4.53354315,0.02596655,95.75404454],[4.5335426,0.02596483,95.75327535],[4.53354205,0.02596311,95.75250628],[4.5335415,0.0259614,95.75173735],[4.53354095,0.02595968,95.75096854],[4.5335404,0.02595796,95.75019985],[4.53353985,0.02595625,95.74943128],[4.5335393,0.02595453,95.74866284],[4.53353876,0.02595281,95.74789451],[4.53353821,0.02595109,95.7471263],[4.53353766,0.02594938,95.7463582],[4.53353711,0.02594766,95.74559022],[4.53353656,0.02594594,95.74482234],[4.53353601,0.02594423,95.74405458],[4.53353546,0.02594251,95.74328692],[4.53353491,0.02594079,95.74251936],[4.53353489,0.02594071,95.74248333],[4.53356544,0.02593082,95.84038918],[4.53356547,0.0259309,95.84042285],[4.53356602,0.02593262,95.84114015],[4.53356657,0.02593434,95.84185753],[4.53356712,0.02593605,95.842575],[4.53356766,0.02593777,95.84329256],[4.53356821,0.02593949,95.84401023],[4.53356876,0.0259412,95.84472799],[4.53356931,0.02594292,95.84544586],[4.53356986,0.02594464,95.84616385],[4.53357041,0.02594636,95.84688195],[4.53357096,0.02594807,95.84760017],[4.53357151,0.02594979,95.84831852],[4.53357206,0.02595151,95.849037],[4.53357261,0.02595322,95.84975561],[4.53357316,0.02595494,95.85047436],[4.53357371,0.02595666,95.85119325],[4.53357426,0.02595838,95.85191228],[4.53357481,0.02596009,95.85263146],[4.53357536,0.02596181,95.85335077],[4.53357591,0.02596353,95.85407022],[4.53357646,0.02596524,95.8547898],[4.53357701,0.02596696,95.85550951],[4.53357756,0.02596868,95.85622935],[4.53357811,0.02597039,95.85694932],[4.53357866,0.02597211,95.85766942],[4.53357921,0.02597383,95.85838964],[4.53357976,0.02597555,95.85910998],[4.53358031,0.02597726,95.85983044],[4.53358086,0.02597898,95.86055102],[4.53358141,0.0259807,95.86127172],[4.53358196,0.02598241,95.86199253],[4.53358251,0.02598413,95.86271345],[4.53358306,0.02598585,95.86343449],[4.53358361,0.02598756,95.86415563],[4.53358416,0.02598928,95.86487688],[4.53358471,0.025991,95.86559824],[4.53358526,0.02599271,95.8663197],[4.53358581,0.02599443,95.86704126],[4.53358636,0.02599615,95.86776293],[4.53358691,0.02599787,95.86848469],[4.53358746,0.02599958,95.86920655],[4.53358801,0.0260013,95.8699285],[4.53358856,0.02600302,95.87065054],[4.53358911,0.02600473,95.87137268],[4.53358966,0.02600645,95.87209491],[4.53359021,0.02600817,95.87281722],[4.53359076,0.02600988,95.87353962],[4.53359131,0.0260116,95.87426211],[4.53359186,0.02601332,95.87498468],[4.53359241,0.02601503,95.87570733],[4.53359296,0.02601675,95.87643006],[4.53359351,0.02601847,95.87715287],[4.53359406,0.02602019,95.87787575],[4.53359461,0.0260219,95.87859871],[4.53359516,0.02602362,95.87932174],[4.53359571,0.02602534,95.88004484],[4.53359626,0.02602705,95.88076802],[4.53359681,0.02602877,95.88149126],[4.53359736,0.02603049,95.88221457],[4.53359791,0.0260322,95.88293794],[4.53359846,0.02603392,95.88366138],[4.53359901,0.02603564,95.88438488],[4.53359956,0.02603735,95.88510844],[4.53360011,0.02603907,95.88583205],[4.53360066,0.02604079,95.88655573],[4.53360121,0.02604251,95.88727946],[4.53360176,0.02604422,95.88800325],[4.53360231,0.02604594,95.88872709],[4.53360286,0.02604766,95.88945098],[4.53360341,0.02604937,95.89017492],[4.53360396,0.02605109,95.89089891],[4.53360451,0.02605281,95.89162294],[4.53360506,0.02605453,95.89234703],[4.53360561,0.02605624,95.89307115],[4.53360616,0.02605796,95.89379532],[4.53360671,0.02605968,95.89451953],[4.53360725,0.02606139,95.89524378],[4.5336078,0.02606311,95.89596807],[4.53360835,0.02606483,95.89669239],[4.5336089,0.02606655,95.89741676],[4.53360945,0.02606826,95.89814115],[4.53361,0.02606998,95.89886558],[4.53361055,0.0260717,95.89959004],[4.5336111,0.02607341,95.90031453],[4.53361165,0.02607513,95.90103905],[4.5336122,0.02607685,95.90176359],[4.53361275,0.02607857,95.90248816],[4.5336133,0.02608028,95.90321276],[4.53361384,0.026082,95.90393738],[4.53361439,0.02608372,95.90466202],[4.53361494,0.02608544,95.90538669],[4.53361549,0.02608715,95.90611137],[4.53361604,0.02608887,95.90683607],[4.53361659,0.02609059,95.90756078],[4.53361714,0.02609231,95.90828552],[4.53361768,0.02609402,95.90901026],[4.53361823,0.02609574,95.90973502],[4.53361878,0.02609746,95.91045979],[4.53361933,0.02609918,95.91118457],[4.53361988,0.02610089,95.91190936],[4.53362043,0.02610261,95.91263416],[4.53362097,0.02610433,95.91335896],[4.53362152,0.02610605,95.91408377],[4.53362207,0.02610776,95.91480859],[4.53362262,0.02610948,95.91553342],[4.53362316,0.0261112,95.91625827],[4.53362371,0.02611292,95.91698315],[4.53362426,0.02611463,95.91770805],[4.53362481,0.02611635,95.91843299],[4.53362535,0.02611807,95.91915797],[4.5336259,0.02611979,95.91988298],[4.53362645,0.02612151,95.92060804],[4.533627,0.02612322,95.92133316],[4.53362754,0.02612494,95.92205833],[4.53362809,0.02612666,95.92278356],[4.53362864,0.02612838,95.92350885],[4.53362918,0.0261301,95.92423422],[4.53362973,0.02613181,95.92495965],[4.53363028,0.02613353,95.92568517],[4.53363082,0.02613525,95.92641077],[4.53363137,0.02613697,95.92713646],[4.53363192,0.02613869,95.92786223],[4.53363246,0.0261404,95.92858811],[4.53363301,0.02614212,95.92931409],[4.53363356,0.02614384,95.93004017],[4.5336341,0.02614556,95.93076636],[4.53363465,0.02614728,95.93149267],[4.5336352,0.02614899,95.93221909],[4.53363574,0.02615071,95.93294564],[4.53363629,0.02615243,95.93367232],[4.53363683,0.02615415,95.93439912],[4.53363738,0.02615587,95.93512607],[4.53363793,0.02615759,95.93585316],[4.53363847,0.0261593,95.93658039],[4.53363902,0.02616102,95.93730777],[4.53363956,0.02616274,95.9380353],[4.53364011,0.02616446,95.938763],[4.53364065,0.02616618,95.93949086],[4.5336412,0.0261679,95.94021888],[4.53364175,0.02616961,95.94094708],[4.53364229,0.02617133,95.94167545],[4.53364284,0.02617305,95.942404],[4.53364338,0.02617477,95.94313274],[4.53364393,0.02617649,95.94386167],[4.53364447,0.02617821,95.94459079],[4.53364502,0.02617993,95.94532011],[4.53364556,0.02618164,95.94604963],[4.53364611,0.02618336,95.94677936],[4.53364665,0.02618508,95.9475093],[4.5336472,0.0261868,95.94823945],[4.53364774,0.02618852,95.94896983],[4.53364829,0.02619024,95.94970042],[4.53364883,0.02619196,95.95043125],[4.53364938,0.02619367,95.95116231],[4.53364992,0.02619539,95.9518936],[4.53365047,0.02619711,95.95262513],[4.53365101,0.02619883,95.95335691],[4.53365156,0.02620055,95.95408894],[4.5336521,0.02620227,95.95482123],[4.53365265,0.02620399,95.95555377],[4.53365319,0.02620571,95.95628657],[4.53365373,0.02620742,95.95701964],[4.53365428,0.02620914,95.95775298],[4.53365482,0.02621086,95.95848659],[4.53365537,0.02621258,95.95922049],[4.53365591,0.0262143,95.95995466],[4.53365646,0.02621602,95.96068913],[4.533657,0.02621774,95.96142388],[4.53365755,0.02621946,95.96215893],[4.53365809,0.02622117,95.96289428],[4.53365863,0.02622289,95.96362994],[4.53365918,0.02622461,95.9643659],[4.53365972,0.02622633,95.96510218],[4.53366027,0.02622805,95.96583877],[4.53366081,0.02622977,95.96657568],[4.53366135,0.02623149,95.96731292],[4.5336619,0.02623321,95.96805049],[4.53366244,0.02623493,95.96878839],[4.53366299,0.02623664,95.96952663],[4.53366353,0.02623836,95.97026521],[4.53366407,0.02624008,95.97100413],[4.53366462,0.0262418,95.97174341],[4.53366516,0.02624352,95.97248304],[4.53366571,0.02624524,95.97322302],[4.53366625,0.02624696,95.97396337],[4.53366679,0.02624868,95.97470409],[4.53366734,0.0262504,95.97544517],[4.53366788,0.02625211,95.97618664],[4.53366842,0.02625383,95.97692847],[4.53366897,0.02625555,95.9776707],[4.53366951,0.02625727,95.97841331],[4.53367006,0.02625899,95.97915631],[4.5336706,0.02626071,95.9798997],[4.53367114,0.02626243,95.9806435],[4.53367169,0.02626415,95.98138769],[4.53367223,0.02626587,95.9821323],[4.53367277,0.02626759,95.98287732],[4.53367332,0.02626931,95.98362275],[4.53367386,0.02627102,95.9843686],[4.5336744,0.02627274,95.98511488],[4.53367495,0.02627446,95.98586159],[4.53367549,0.02627618,95.98660872],[4.53367604,0.0262779,95.9873563],[4.53367658,0.02627962,95.98810431],[4.53367712,0.02628134,95.98885277],[4.53367767,0.02628306,95.98960167],[4.53367821,0.02628478,95.99035103],[4.53367875,0.0262865,95.99110085],[4.5336793,0.02628822,95.99185112],[4.53367984,0.02628993,95.99260187],[4.53368038,0.02629165,95.99335308],[4.53368093,0.02629337,95.99410476],[4.53368147,0.02629509,95.99485692],[4.53368201,0.02629681,95.99560956],[4.53368256,0.02629853,95.99636269],[4.5336831,0.02630025,95.99711631],[4.53368364,0.02630197,95.99787042],[4.53368419,0.02630369,95.99862503],[4.53368473,0.02630541,95.99938014],[4.53368527,0.02630713,96.00013576],[4.53368582,0.02630884,96.00089189],[4.53368636,0.02631056,96.00164853],[4.5336869,0.02631228,96.00240569],[4.53368745,0.026314,96.00316338],[4.53368799,0.02631572,96.00392159],[4.53368854,0.02631744,96.00468033],[4.53368908,0.02631916,96.0054396],[4.53368962,0.02632088,96.00619942],[4.53369017,0.0263226,96.00695978],[4.53369071,0.02632432,96.00772069],[4.53369125,0.02632604,96.00848215],[4.5336918,0.02632775,96.00924416],[4.53369234,0.02632947,96.01000674],[4.53369288,0.02633119,96.01076988],[4.53369343,0.02633291,96.01153359],[4.53369397,0.02633463,96.01229787],[4.53369451,0.02633635,96.01306273],[4.53369506,0.02633807,96.01382817],[4.5336956,0.02633979,96.01459419],[4.53369614,0.02634151,96.01536081],[4.53369669,0.02634323,96.01612802],[4.53369723,0.02634495,96.01689583],[4.53369777,0.02634666,96.01766424],[4.53369832,0.02634838,96.01843326],[4.53369886,0.0263501,96.01920289],[4.53369941,0.02635182,96.01997313],[4.53369995,0.02635354,96.020744],[4.53370049,0.02635526,96.02151548],[4.53370104,0.02635698,96.0222876],[4.53370158,0.0263587,96.02306035],[4.53370212,0.02636042,96.02383374],[4.53370267,0.02636214,96.02460776],[4.53370321,0.02636385,96.02538241],[4.53370376,0.02636557,96.02615767],[4.5337043,0.02636729,96.02693355],[4.53370484,0.02636901,96.02771003],[4.53370539,0.02637073,96.0284871],[4.53370593,0.02637245,96.02926475],[4.53370648,0.02637417,96.03004299],[4.53370702,0.02637589,96.03082179],[4.53370756,0.02637761,96.03160114],[4.53370811,0.02637933,96.03238105],[4.53370865,0.02638104,96.03316151],[4.5337092,0.02638276,96.0339425],[4.53370974,0.02638448,96.03472401],[4.53371028,0.0263862,96.03550604],[4.53371083,0.02638792,96.03628858],[4.53371137,0.02638964,96.03707163],[4.53371192,0.02639136,96.03785517],[4.53371246,0.02639308,96.03863919],[4.533713,0.0263948,96.03942369],[4.53371355,0.02639651,96.04020866],[4.53371409,0.02639823,96.04099409],[4.53371464,0.02639995,96.04177997],[4.53371518,0.02640167,96.0425663],[4.53371573,0.02640339,96.04335307],[4.53371627,0.02640511,96.04414026],[4.53371682,0.02640683,96.04492787],[4.53371736,0.02640855,96.0457159],[4.5337179,0.02641026,96.04650433],[4.53371845,0.02641198,96.04729316],[4.53371899,0.0264137,96.04808237],[4.53371954,0.02641542,96.04887197],[4.53372008,0.02641714,96.04966194],[4.53372063,0.02641886,96.05045227],[4.53372117,0.02642058,96.05124296],[4.53372172,0.0264223,96.052034],[4.53372226,0.02642401,96.05282537],[4.53372281,0.02642573,96.05361706],[4.53372335,0.02642745,96.05440907],[4.5337239,0.02642917,96.05520137],[4.53372444,0.02643089,96.05599395],[4.53372499,0.02643261,96.05678681],[4.53372553,0.02643433,96.05757993],[4.53372608,0.02643604,96.05837329],[4.53372662,0.02643776,96.05916689],[4.53372717,0.02643948,96.05996072],[4.53372771,0.0264412,96.06075476],[4.53372826,0.02644292,96.06154899],[4.5337288,0.02644464,96.06234341],[4.53372935,0.02644636,96.06313801],[4.5337299,0.02644807,96.06393277],[4.53373044,0.02644979,96.06472767],[4.53373099,0.02645151,96.06552272],[4.53373153,0.02645323,96.06631788],[4.53373208,0.02645495,96.06711316],[4.53373262,0.02645667,96.06790854],[4.53373317,0.02645838,96.06870401],[4.53373371,0.0264601,96.06949955],[4.53373426,0.02646182,96.07029515],[4.53373481,0.02646354,96.07109081],[4.53373535,0.02646526,96.0718865],[4.5337359,0.02646698,96.07268221],[4.53373644,0.02646869,96.07347794],[4.53373699,0.02647041,96.07427366],[4.53373753,0.02647213,96.07506938],[4.53373808,0.02647385,96.07586506],[4.53373863,0.02647557,96.07666071],[4.53373917,0.02647729,96.07745631],[4.53373972,0.026479,96.07825185],[4.53374026,0.02648072,96.07904731],[4.53374081,0.02648244,96.07984268],[4.53374136,0.02648416,96.08063795],[4.5337419,0.02648588,96.08143311],[4.53374245,0.0264876,96.08222814],[4.53374299,0.02648931,96.08302303],[4.53374354,0.02649103,96.08381777],[4.53374409,0.02649275,96.08461234],[4.53374463,0.02649447,96.08540674],[4.53374518,0.02649619,96.08620095],[4.53374572,0.02649791,96.08699495],[4.53374627,0.02649962,96.08778874],[4.53374682,0.02650134,96.0885823],[4.53374736,0.02650306,96.08937562],[4.53374791,0.02650478,96.09016868],[4.53374845,0.0265065,96.09096148],[4.533749,0.02650822,96.091754],[4.53374955,0.02650993,96.09254622],[4.53375009,0.02651165,96.09333814],[4.53375064,0.02651337,96.09412974],[4.53375118,0.02651509,96.09492101],[4.53375173,0.02651681,96.09571194],[4.53375228,0.02651853,96.09650251],[4.53375282,0.02652024,96.09729271],[4.53375337,0.02652196,96.09808252],[4.53375391,0.02652368,96.09887194],[4.53375446,0.0265254,96.09966095],[4.53375501,0.02652712,96.10044954],[4.53375555,0.02652884,96.10123769],[4.5337561,0.02653055,96.1020254],[4.53375665,0.02653227,96.10281264],[4.53375719,0.02653399,96.10359941],[4.53375774,0.02653571,96.10438569],[4.53375828,0.02653743,96.10517147],[4.53375883,0.02653915,96.10595674],[4.53375938,0.02654086,96.10674148],[4.53375992,0.02654258,96.10752568],[4.53376047,0.0265443,96.10830933],[4.53376101,0.02654602,96.10909241],[4.53376156,0.02654774,96.10987491],[4.53376211,0.02654945,96.11065682],[4.53376265,0.02655117,96.11143813],[4.5337632,0.02655289,96.11221881],[4.53376374,0.02655461,96.11299887],[4.53376429,0.02655633,96.11377828],[4.53376484,0.02655805,96.11455702],[4.53376538,0.02655976,96.1153351],[4.53376593,0.02656148,96.11611249],[4.53376647,0.0265632,96.11688919],[4.53376702,0.02656492,96.11766517],[4.53376756,0.02656664,96.11844043],[4.53376811,0.02656836,96.11921495],[4.53376866,0.02657007,96.11998871],[4.5337692,0.02657179,96.12076172],[4.53376975,0.02657351,96.12153394],[4.53377029,0.02657523,96.12230537],[4.53377084,0.02657695,96.123076],[4.53377139,0.02657867,96.12384581],[4.53377193,0.02658039,96.12461479],[4.53377248,0.0265821,96.12538292],[4.53377302,0.02658382,96.1261502],[4.53377357,0.02658554,96.1269166],[4.53377411,0.02658726,96.12768212],[4.53377466,0.02658898,96.12844674],[4.5337752,0.0265907,96.12921045],[4.53377575,0.02659241,96.12997323],[4.53377629,0.02659413,96.13073508],[4.53377684,0.02659585,96.13149597],[4.53377739,0.02659757,96.1322559],[4.53377793,0.02659929,96.13301485],[4.53377848,0.02660101,96.13377281],[4.53377902,0.02660273,96.13452976],[4.53377957,0.02660444,96.1352857],[4.53378011,0.02660616,96.1360406],[4.53378066,0.02660788,96.13679446],[4.5337812,0.0266096,96.13754725],[4.53378175,0.02661132,96.13829898],[4.53378229,0.02661304,96.13904962],[4.53378284,0.02661476,96.13979916],[4.53378338,0.02661647,96.14054759],[4.53378393,0.02661819,96.1412949],[4.53378447,0.02661991,96.14204106],[4.53378502,0.02662163,96.14278608],[4.53378556,0.02662335,96.14352993],[4.53378611,0.02662507,96.1442726],[4.53378665,0.02662679,96.14501407],[4.5337872,0.02662851,96.14575435],[4.53378774,0.02663022,96.1464934],[4.53378829,0.02663194,96.14723122],[4.53378883,0.02663366,96.1479678],[4.53378937,0.02663538,96.14870312],[4.53378992,0.0266371,96.14943717],[4.53379046,0.02663882,96.15016993],[4.53379101,0.02664054,96.15090141],[4.53379155,0.02664226,96.15163157],[4.5337921,0.02664398,96.15236043],[4.53379264,0.02664569,96.15308796],[4.53379318,0.02664741,96.15381416],[4.53379373,0.02664913,96.15453901],[4.53379427,0.02665085,96.15526251],[4.53379482,0.02665257,96.15598465],[4.53379536,0.02665429,96.15670541],[4.5337959,0.02665601,96.15742479],[4.53379645,0.02665773,96.15814277],[4.53379699,0.02665945,96.15885935],[4.53379754,0.02666116,96.15957452],[4.53379808,0.02666288,96.16028826],[4.53379862,0.0266646,96.16100057],[4.53379917,0.02666632,96.16171143],[4.53379971,0.02666804,96.16242084],[4.53380025,0.02666976,96.16312879],[4.5338008,0.02667148,96.16383527],[4.53380134,0.0266732,96.16454025],[4.53380188,0.02667492,96.16524375],[4.53380243,0.02667664,96.16594574],[4.53380297,0.02667836,96.16664622],[4.53380351,0.02668008,96.16734518],[4.53380406,0.02668179,96.1680426],[4.5338046,0.02668351,96.16873848],[4.53380514,0.02668523,96.16943281],[4.53380569,0.02668695,96.17012557],[4.53380623,0.02668867,96.17081676],[4.53377578,0.02669841,96.07170569]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1,"sOffset":177.600614965}},{"geometry":{"coordinates":[[[4.53380623,0.02668867,96.17081676],[4.53380569,0.02668695,96.17012557],[4.53380514,0.02668523,96.16943281],[4.5338046,0.02668351,96.16873848],[4.53380406,0.02668179,96.1680426],[4.53380351,0.02668008,96.16734518],[4.53380297,0.02667836,96.16664622],[4.53380243,0.02667664,96.16594574],[4.53380188,0.02667492,96.16524375],[4.53380134,0.0266732,96.16454025],[4.5338008,0.02667148,96.16383527],[4.53380025,0.02666976,96.16312879],[4.53379971,0.02666804,96.16242084],[4.53379917,0.02666632,96.16171143],[4.53379862,0.0266646,96.16100057],[4.53379808,0.02666288,96.16028826],[4.53379754,0.02666116,96.15957452],[4.53379699,0.02665945,96.15885935],[4.53379645,0.02665773,96.15814277],[4.5337959,0.02665601,96.15742479],[4.53379536,0.02665429,96.15670541],[4.53379482,0.02665257,96.15598465],[4.53379427,0.02665085,96.15526251],[4.53379373,0.02664913,96.15453901],[4.53379318,0.02664741,96.15381416],[4.53379264,0.02664569,96.15308796],[4.5337921,0.02664398,96.15236043],[4.53379155,0.02664226,96.15163157],[4.53379101,0.02664054,96.15090141],[4.53379046,0.02663882,96.15016993],[4.53378992,0.0266371,96.14943717],[4.53378937,0.02663538,96.14870312],[4.53378883,0.02663366,96.1479678],[4.53378829,0.02663194,96.14723122],[4.53378774,0.02663022,96.1464934],[4.5337872,0.02662851,96.14575435],[4.53378665,0.02662679,96.14501407],[4.53378611,0.02662507,96.1442726],[4.53378556,0.02662335,96.14352993],[4.53378502,0.02662163,96.14278608],[4.53378447,0.02661991,96.14204106],[4.53378393,0.02661819,96.1412949],[4.53378338,0.02661647,96.14054759],[4.53378284,0.02661476,96.13979916],[4.53378229,0.02661304,96.13904962],[4.53378175,0.02661132,96.13829898],[4.5337812,0.0266096,96.13754725],[4.53378066,0.02660788,96.13679446],[4.53378011,0.02660616,96.1360406],[4.53377957,0.02660444,96.1352857],[4.53377902,0.02660273,96.13452976],[4.53377848,0.02660101,96.13377281],[4.53377793,0.02659929,96.13301485],[4.53377739,0.02659757,96.1322559],[4.53377684,0.02659585,96.13149597],[4.53377629,0.02659413,96.13073508],[4.53377575,0.02659241,96.12997323],[4.5337752,0.0265907,96.12921045],[4.53377466,0.02658898,96.12844674],[4.53377411,0.02658726,96.12768212],[4.53377357,0.02658554,96.1269166],[4.53377302,0.02658382,96.1261502],[4.53377248,0.0265821,96.12538292],[4.53377193,0.02658039,96.12461479],[4.53377139,0.02657867,96.12384581],[4.53377084,0.02657695,96.123076],[4.53377029,0.02657523,96.12230537],[4.53376975,0.02657351,96.12153394],[4.5337692,0.02657179,96.12076172],[4.53376866,0.02657007,96.11998871],[4.53376811,0.02656836,96.11921495],[4.53376756,0.02656664,96.11844043],[4.53376702,0.02656492,96.11766517],[4.53376647,0.0265632,96.11688919],[4.53376593,0.02656148,96.11611249],[4.53376538,0.02655976,96.1153351],[4.53376484,0.02655805,96.11455702],[4.53376429,0.02655633,96.11377828],[4.53376374,0.02655461,96.11299887],[4.5337632,0.02655289,96.11221881],[4.53376265,0.02655117,96.11143813],[4.53376211,0.02654945,96.11065682],[4.53376156,0.02654774,96.10987491],[4.53376101,0.02654602,96.10909241],[4.53376047,0.0265443,96.10830933],[4.53375992,0.02654258,96.10752568],[4.53375938,0.02654086,96.10674148],[4.53375883,0.02653915,96.10595674],[4.53375828,0.02653743,96.10517147],[4.53375774,0.02653571,96.10438569],[4.53375719,0.02653399,96.10359941],[4.53375665,0.02653227,96.10281264],[4.5337561,0.02653055,96.1020254],[4.53375555,0.02652884,96.10123769],[4.53375501,0.02652712,96.10044954],[4.53375446,0.0265254,96.09966095],[4.53375391,0.02652368,96.09887194],[4.53375337,0.02652196,96.09808252],[4.53375282,0.02652024,96.09729271],[4.53375228,0.02651853,96.09650251],[4.53375173,0.02651681,96.09571194],[4.53375118,0.02651509,96.09492101],[4.53375064,0.02651337,96.09412974],[4.53375009,0.02651165,96.09333814],[4.53374955,0.02650993,96.09254622],[4.533749,0.02650822,96.091754],[4.53374845,0.0265065,96.09096148],[4.53374791,0.02650478,96.09016868],[4.53374736,0.02650306,96.08937562],[4.53374682,0.02650134,96.0885823],[4.53374627,0.02649962,96.08778874],[4.53374572,0.02649791,96.08699495],[4.53374518,0.02649619,96.08620095],[4.53374463,0.02649447,96.08540674],[4.53374409,0.02649275,96.08461234],[4.53374354,0.02649103,96.08381777],[4.53374299,0.02648931,96.08302303],[4.53374245,0.0264876,96.08222814],[4.5337419,0.02648588,96.08143311],[4.53374136,0.02648416,96.08063795],[4.53374081,0.02648244,96.07984268],[4.53374026,0.02648072,96.07904731],[4.53373972,0.026479,96.07825185],[4.53373917,0.02647729,96.07745631],[4.53373863,0.02647557,96.07666071],[4.53373808,0.02647385,96.07586506],[4.53373753,0.02647213,96.07506938],[4.53373699,0.02647041,96.07427366],[4.53373644,0.02646869,96.07347794],[4.5337359,0.02646698,96.07268221],[4.53373535,0.02646526,96.0718865],[4.53373481,0.02646354,96.07109081],[4.53373426,0.02646182,96.07029515],[4.53373371,0.0264601,96.06949955],[4.53373317,0.02645838,96.06870401],[4.53373262,0.02645667,96.06790854],[4.53373208,0.02645495,96.06711316],[4.53373153,0.02645323,96.06631788],[4.53373099,0.02645151,96.06552272],[4.53373044,0.02644979,96.06472767],[4.5337299,0.02644807,96.06393277],[4.53372935,0.02644636,96.06313801],[4.5337288,0.02644464,96.06234341],[4.53372826,0.02644292,96.06154899],[4.53372771,0.0264412,96.06075476],[4.53372717,0.02643948,96.05996072],[4.53372662,0.02643776,96.05916689],[4.53372608,0.02643604,96.05837329],[4.53372553,0.02643433,96.05757993],[4.53372499,0.02643261,96.05678681],[4.53372444,0.02643089,96.05599395],[4.5337239,0.02642917,96.05520137],[4.53372335,0.02642745,96.05440907],[4.53372281,0.02642573,96.05361706],[4.53372226,0.02642401,96.05282537],[4.53372172,0.0264223,96.052034],[4.53372117,0.02642058,96.05124296],[4.53372063,0.02641886,96.05045227],[4.53372008,0.02641714,96.04966194],[4.53371954,0.02641542,96.04887197],[4.53371899,0.0264137,96.04808237],[4.53371845,0.02641198,96.04729316],[4.5337179,0.02641026,96.04650433],[4.53371736,0.02640855,96.0457159],[4.53371682,0.02640683,96.04492787],[4.53371627,0.02640511,96.04414026],[4.53371573,0.02640339,96.04335307],[4.53371518,0.02640167,96.0425663],[4.53371464,0.02639995,96.04177997],[4.53371409,0.02639823,96.04099409],[4.53371355,0.02639651,96.04020866],[4.533713,0.0263948,96.03942369],[4.53371246,0.02639308,96.03863919],[4.53371192,0.02639136,96.03785517],[4.53371137,0.02638964,96.03707163],[4.53371083,0.02638792,96.03628858],[4.53371028,0.0263862,96.03550604],[4.53370974,0.02638448,96.03472401],[4.5337092,0.02638276,96.0339425],[4.53370865,0.02638104,96.03316151],[4.53370811,0.02637933,96.03238105],[4.53370756,0.02637761,96.03160114],[4.53370702,0.02637589,96.03082179],[4.53370648,0.02637417,96.03004299],[4.53370593,0.02637245,96.02926475],[4.53370539,0.02637073,96.0284871],[4.53370484,0.02636901,96.02771003],[4.5337043,0.02636729,96.02693355],[4.53370376,0.02636557,96.02615767],[4.53370321,0.02636385,96.02538241],[4.53370267,0.02636214,96.02460776],[4.53370212,0.02636042,96.02383374],[4.53370158,0.0263587,96.02306035],[4.53370104,0.02635698,96.0222876],[4.53370049,0.02635526,96.02151548],[4.53369995,0.02635354,96.020744],[4.53369941,0.02635182,96.01997313],[4.53369886,0.0263501,96.01920289],[4.53369832,0.02634838,96.01843326],[4.53369777,0.02634666,96.01766424],[4.53369723,0.02634495,96.01689583],[4.53369669,0.02634323,96.01612802],[4.53369614,0.02634151,96.01536081],[4.5336956,0.02633979,96.01459419],[4.53369506,0.02633807,96.01382817],[4.53369451,0.02633635,96.01306273],[4.53369397,0.02633463,96.01229787],[4.53369343,0.02633291,96.01153359],[4.53369288,0.02633119,96.01076988],[4.53369234,0.02632947,96.01000674],[4.5336918,0.02632775,96.00924416],[4.53369125,0.02632604,96.00848215],[4.53369071,0.02632432,96.00772069],[4.53369017,0.0263226,96.00695978],[4.53368962,0.02632088,96.00619942],[4.53368908,0.02631916,96.0054396],[4.53368854,0.02631744,96.00468033],[4.53368799,0.02631572,96.00392159],[4.53368745,0.026314,96.00316338],[4.5336869,0.02631228,96.00240569],[4.53368636,0.02631056,96.00164853],[4.53368582,0.02630884,96.00089189],[4.53368527,0.02630713,96.00013576],[4.53368473,0.02630541,95.99938014],[4.53368419,0.02630369,95.99862503],[4.53368364,0.02630197,95.99787042],[4.5336831,0.02630025,95.99711631],[4.53368256,0.02629853,95.99636269],[4.53368201,0.02629681,95.99560956],[4.53368147,0.02629509,95.99485692],[4.53368093,0.02629337,95.99410476],[4.53368038,0.02629165,95.99335308],[4.53367984,0.02628993,95.99260187],[4.5336793,0.02628822,95.99185112],[4.53367875,0.0262865,95.99110085],[4.53367821,0.02628478,95.99035103],[4.53367767,0.02628306,95.98960167],[4.53367712,0.02628134,95.98885277],[4.53367658,0.02627962,95.98810431],[4.53367604,0.0262779,95.9873563],[4.53367549,0.02627618,95.98660872],[4.53367495,0.02627446,95.98586159],[4.5336744,0.02627274,95.98511488],[4.53367386,0.02627102,95.9843686],[4.53367332,0.02626931,95.98362275],[4.53367277,0.02626759,95.98287732],[4.53367223,0.02626587,95.9821323],[4.53367169,0.02626415,95.98138769],[4.53367114,0.02626243,95.9806435],[4.5336706,0.02626071,95.9798997],[4.53367006,0.02625899,95.97915631],[4.53366951,0.02625727,95.97841331],[4.53366897,0.02625555,95.9776707],[4.53366842,0.02625383,95.97692847],[4.53366788,0.02625211,95.97618664],[4.53366734,0.0262504,95.97544517],[4.53366679,0.02624868,95.97470409],[4.53366625,0.02624696,95.97396337],[4.53366571,0.02624524,95.97322302],[4.53366516,0.02624352,95.97248304],[4.53366462,0.0262418,95.97174341],[4.53366407,0.02624008,95.97100413],[4.53366353,0.02623836,95.97026521],[4.53366299,0.02623664,95.96952663],[4.53366244,0.02623493,95.96878839],[4.5336619,0.02623321,95.96805049],[4.53366135,0.02623149,95.96731292],[4.53366081,0.02622977,95.96657568],[4.53366027,0.02622805,95.96583877],[4.53365972,0.02622633,95.96510218],[4.53365918,0.02622461,95.9643659],[4.53365863,0.02622289,95.96362994],[4.53365809,0.02622117,95.96289428],[4.53365755,0.02621946,95.96215893],[4.533657,0.02621774,95.96142388],[4.53365646,0.02621602,95.96068913],[4.53365591,0.0262143,95.95995466],[4.53365537,0.02621258,95.95922049],[4.53365482,0.02621086,95.95848659],[4.53365428,0.02620914,95.95775298],[4.53365373,0.02620742,95.95701964],[4.53365319,0.02620571,95.95628657],[4.53365265,0.02620399,95.95555377],[4.5336521,0.02620227,95.95482123],[4.53365156,0.02620055,95.95408894],[4.53365101,0.02619883,95.95335691],[4.53365047,0.02619711,95.95262513],[4.53364992,0.02619539,95.9518936],[4.53364938,0.02619367,95.95116231],[4.53364883,0.02619196,95.95043125],[4.53364829,0.02619024,95.94970042],[4.53364774,0.02618852,95.94896983],[4.5336472,0.0261868,95.94823945],[4.53364665,0.02618508,95.9475093],[4.53364611,0.02618336,95.94677936],[4.53364556,0.02618164,95.94604963],[4.53364502,0.02617993,95.94532011],[4.53364447,0.02617821,95.94459079],[4.53364393,0.02617649,95.94386167],[4.53364338,0.02617477,95.94313274],[4.53364284,0.02617305,95.942404],[4.53364229,0.02617133,95.94167545],[4.53364175,0.02616961,95.94094708],[4.5336412,0.0261679,95.94021888],[4.53364065,0.02616618,95.93949086],[4.53364011,0.02616446,95.938763],[4.53363956,0.02616274,95.9380353],[4.53363902,0.02616102,95.93730777],[4.53363847,0.0261593,95.93658039],[4.53363793,0.02615759,95.93585316],[4.53363738,0.02615587,95.93512607],[4.53363683,0.02615415,95.93439912],[4.53363629,0.02615243,95.93367232],[4.53363574,0.02615071,95.93294564],[4.5336352,0.02614899,95.93221909],[4.53363465,0.02614728,95.93149267],[4.5336341,0.02614556,95.93076636],[4.53363356,0.02614384,95.93004017],[4.53363301,0.02614212,95.92931409],[4.53363246,0.0261404,95.92858811],[4.53363192,0.02613869,95.92786223],[4.53363137,0.02613697,95.92713646],[4.53363082,0.02613525,95.92641077],[4.53363028,0.02613353,95.92568517],[4.53362973,0.02613181,95.92495965],[4.53362918,0.0261301,95.92423422],[4.53362864,0.02612838,95.92350885],[4.53362809,0.02612666,95.92278356],[4.53362754,0.02612494,95.92205833],[4.533627,0.02612322,95.92133316],[4.53362645,0.02612151,95.92060804],[4.5336259,0.02611979,95.91988298],[4.53362535,0.02611807,95.91915797],[4.53362481,0.02611635,95.91843299],[4.53362426,0.02611463,95.91770805],[4.53362371,0.02611292,95.91698315],[4.53362316,0.0261112,95.91625827],[4.53362262,0.02610948,95.91553342],[4.53362207,0.02610776,95.91480859],[4.53362152,0.02610605,95.91408377],[4.53362097,0.02610433,95.91335896],[4.53362043,0.02610261,95.91263416],[4.53361988,0.02610089,95.91190936],[4.53361933,0.02609918,95.91118457],[4.53361878,0.02609746,95.91045979],[4.53361823,0.02609574,95.90973502],[4.53361768,0.02609402,95.90901026],[4.53361714,0.02609231,95.90828552],[4.53361659,0.02609059,95.90756078],[4.53361604,0.02608887,95.90683607],[4.53361549,0.02608715,95.90611137],[4.53361494,0.02608544,95.90538669],[4.53361439,0.02608372,95.90466202],[4.53361384,0.026082,95.90393738],[4.5336133,0.02608028,95.90321276],[4.53361275,0.02607857,95.90248816],[4.5336122,0.02607685,95.90176359],[4.53361165,0.02607513,95.90103905],[4.5336111,0.02607341,95.90031453],[4.53361055,0.0260717,95.89959004],[4.53361,0.02606998,95.89886558],[4.53360945,0.02606826,95.89814115],[4.5336089,0.02606655,95.89741676],[4.53360835,0.02606483,95.89669239],[4.5336078,0.02606311,95.89596807],[4.53360725,0.02606139,95.89524378],[4.53360671,0.02605968,95.89451953],[4.53360616,0.02605796,95.89379532],[4.53360561,0.02605624,95.89307115],[4.53360506,0.02605453,95.89234703],[4.53360451,0.02605281,95.89162294],[4.53360396,0.02605109,95.89089891],[4.53360341,0.02604937,95.89017492],[4.53360286,0.02604766,95.88945098],[4.53360231,0.02604594,95.88872709],[4.53360176,0.02604422,95.88800325],[4.53360121,0.02604251,95.88727946],[4.53360066,0.02604079,95.88655573],[4.53360011,0.02603907,95.88583205],[4.53359956,0.02603735,95.88510844],[4.53359901,0.02603564,95.88438488],[4.53359846,0.02603392,95.88366138],[4.53359791,0.0260322,95.88293794],[4.53359736,0.02603049,95.88221457],[4.53359681,0.02602877,95.88149126],[4.53359626,0.02602705,95.88076802],[4.53359571,0.02602534,95.88004484],[4.53359516,0.02602362,95.87932174],[4.53359461,0.0260219,95.87859871],[4.53359406,0.02602019,95.87787575],[4.53359351,0.02601847,95.87715287],[4.53359296,0.02601675,95.87643006],[4.53359241,0.02601503,95.87570733],[4.53359186,0.02601332,95.87498468],[4.53359131,0.0260116,95.87426211],[4.53359076,0.02600988,95.87353962],[4.53359021,0.02600817,95.87281722],[4.53358966,0.02600645,95.87209491],[4.53358911,0.02600473,95.87137268],[4.53358856,0.02600302,95.87065054],[4.53358801,0.0260013,95.8699285],[4.53358746,0.02599958,95.86920655],[4.53358691,0.02599787,95.86848469],[4.53358636,0.02599615,95.86776293],[4.53358581,0.02599443,95.86704126],[4.53358526,0.02599271,95.8663197],[4.53358471,0.025991,95.86559824],[4.53358416,0.02598928,95.86487688],[4.53358361,0.02598756,95.86415563],[4.53358306,0.02598585,95.86343449],[4.53358251,0.02598413,95.86271345],[4.53358196,0.02598241,95.86199253],[4.53358141,0.0259807,95.86127172],[4.53358086,0.02597898,95.86055102],[4.53358031,0.02597726,95.85983044],[4.53357976,0.02597555,95.85910998],[4.53357921,0.02597383,95.85838964],[4.53357866,0.02597211,95.85766942],[4.53357811,0.02597039,95.85694932],[4.53357756,0.02596868,95.85622935],[4.53357701,0.02596696,95.85550951],[4.53357646,0.02596524,95.8547898],[4.53357591,0.02596353,95.85407022],[4.53357536,0.02596181,95.85335077],[4.53357481,0.02596009,95.85263146],[4.53357426,0.02595838,95.85191228],[4.53357371,0.02595666,95.85119325],[4.53357316,0.02595494,95.85047436],[4.53357261,0.02595322,95.84975561],[4.53357206,0.02595151,95.849037],[4.53357151,0.02594979,95.84831852],[4.53357096,0.02594807,95.84760017],[4.53357041,0.02594636,95.84688195],[4.53356986,0.02594464,95.84616385],[4.53356931,0.02594292,95.84544586],[4.53356876,0.0259412,95.84472799],[4.53356821,0.02593949,95.84401023],[4.53356766,0.02593777,95.84329256],[4.53356712,0.02593605,95.842575],[4.53356657,0.02593434,95.84185753],[4.53356602,0.02593262,95.84114015],[4.53356547,0.0259309,95.84042285],[4.53356544,0.02593082,95.84038918],[4.53356905,0.02592965,95.85195471],[4.53356908,0.02592973,95.85198917],[4.53356963,0.02593145,95.85272347],[4.53357019,0.02593316,95.85345827],[4.53357075,0.02593488,95.85419352],[4.5335713,0.02593659,95.85492919],[4.53357186,0.02593831,95.85566525],[4.53357242,0.02594002,95.85640167],[4.53357298,0.02594174,95.85713841],[4.53357353,0.02594345,95.85787545],[4.53357409,0.02594516,95.85861275],[4.53357465,0.02594688,95.85935028],[4.53357521,0.02594859,95.86008801],[4.53357576,0.02595031,95.86082591],[4.53357632,0.02595202,95.86156394],[4.53357688,0.02595374,95.86230207],[4.53357744,0.02595545,95.86304027],[4.53357799,0.02595717,95.8637785],[4.53357855,0.02595888,95.86451673],[4.53357911,0.0259606,95.86525492],[4.53357967,0.02596231,95.86599302],[4.53358022,0.02596402,95.86673101],[4.53358078,0.02596574,95.86746884],[4.53358134,0.02596745,95.86820648],[4.5335819,0.02596917,95.86894389],[4.53358245,0.02597088,95.86968103],[4.53358301,0.0259726,95.87041787],[4.53358357,0.02597431,95.87115437],[4.53358413,0.02597603,95.87189048],[4.53358468,0.02597774,95.87262619],[4.53358524,0.02597946,95.87336144],[4.5335858,0.02598117,95.8740962],[4.53358635,0.02598289,95.87483043],[4.53358691,0.0259846,95.8755641],[4.53358746,0.02598632,95.87629718],[4.53358802,0.02598803,95.87702962],[4.53358858,0.02598975,95.87776138],[4.53358913,0.02599146,95.87849245],[4.53358969,0.02599318,95.87922276],[4.53359024,0.02599489,95.8799523],[4.5335908,0.02599661,95.88068103],[4.53359135,0.02599832,95.8814089],[4.5335919,0.02600004,95.88213589],[4.53359246,0.02600176,95.88286195],[4.53359301,0.02600347,95.88358706],[4.53359356,0.02600519,95.88431117],[4.53359412,0.0260069,95.88503426],[4.53359467,0.02600862,95.88575628],[4.53359522,0.02601034,95.88647721],[4.53359577,0.02601205,95.887197],[4.53359632,0.02601377,95.88791565],[4.53359687,0.02601549,95.8886332],[4.53359742,0.0260172,95.88934967],[4.53359797,0.02601892,95.89006508],[4.53359852,0.02602064,95.89077947],[4.53359907,0.02602235,95.89149286],[4.53359962,0.02602407,95.89220528],[4.53360017,0.02602579,95.89291676],[4.53360072,0.02602751,95.89362733],[4.53360126,0.02602922,95.89433701],[4.53360181,0.02603094,95.89504583],[4.53360236,0.02603266,95.89575382],[4.5336029,0.02603438,95.896461],[4.53360345,0.0260361,95.89716741],[4.533604,0.02603781,95.89787308],[4.53360454,0.02603953,95.89857802],[4.53360509,0.02604125,95.89928226],[4.53360563,0.02604297,95.89998584],[4.53360618,0.02604469,95.90068878],[4.53360672,0.02604641,95.90139111],[4.53360727,0.02604813,95.90209285],[4.53360781,0.02604984,95.90279403],[4.53360836,0.02605156,95.90349468],[4.5336089,0.02605328,95.90419482],[4.53360944,0.026055,95.90489448],[4.53360999,0.02605672,95.9055937],[4.53361053,0.02605844,95.90629249],[4.53361107,0.02606016,95.90699088],[4.53361162,0.02606188,95.90768889],[4.53361216,0.0260636,95.90838657],[4.5336127,0.02606532,95.90908392],[4.53361324,0.02606704,95.90978098],[4.53361379,0.02606876,95.91047778],[4.53361433,0.02607048,95.91117433],[4.53361487,0.0260722,95.91187067],[4.53361541,0.02607392,95.91256682],[4.53361595,0.02607564,95.91326281],[4.53361649,0.02607736,95.91395867],[4.53361704,0.02607907,95.91465442],[4.53361758,0.02608079,95.91535008],[4.53361812,0.02608251,95.91604568],[4.53361866,0.02608423,95.91674126],[4.5336192,0.02608595,95.91743682],[4.53361974,0.02608767,95.91813241],[4.53362028,0.02608939,95.91882804],[4.53362082,0.02609111,95.91952374],[4.53362136,0.02609283,95.92021954],[4.5336219,0.02609455,95.92091546],[4.53362244,0.02609627,95.92161153],[4.53362298,0.02609799,95.92230777],[4.53362352,0.02609971,95.92300421],[4.53362406,0.02610144,95.92370087],[4.5336246,0.02610316,95.92439778],[4.53362514,0.02610488,95.92509493],[4.53362568,0.0261066,95.92579234],[4.53362623,0.02610832,95.92649004],[4.53362677,0.02611004,95.92718802],[4.53362731,0.02611176,95.92788631],[4.53362785,0.02611348,95.92858492],[4.53362839,0.0261152,95.92928386],[4.53362893,0.02611692,95.92998315],[4.53362947,0.02611864,95.9306828],[4.53363001,0.02612036,95.93138283],[4.53363055,0.02612208,95.93208324],[4.53363109,0.0261238,95.93278406],[4.53363163,0.02612552,95.9334853],[4.53363217,0.02612724,95.93418697],[4.53363271,0.02612896,95.93488908],[4.53363325,0.02613068,95.93559165],[4.53363379,0.0261324,95.9362947],[4.53363433,0.02613412,95.93699823],[4.53363487,0.02613584,95.93770227],[4.53363541,0.02613756,95.93840681],[4.53363595,0.02613928,95.93911189],[4.53363649,0.026141,95.93981751],[4.53363704,0.02614272,95.94052368],[4.53363758,0.02614444,95.94123043],[4.53363812,0.02614616,95.94193776],[4.53363866,0.02614788,95.94264568],[4.5336392,0.0261496,95.94335422],[4.53363974,0.02615132,95.94406338],[4.53364028,0.02615304,95.94477318],[4.53364082,0.02615476,95.94548363],[4.53364137,0.02615648,95.94619475],[4.53364191,0.02615819,95.94690655],[4.53364245,0.02615991,95.94761904],[4.53364299,0.02616163,95.94833223],[4.53364353,0.02616335,95.94904615],[4.53364408,0.02616507,95.94976081],[4.53364462,0.02616679,95.95047621],[4.53364516,0.02616851,95.95119237],[4.5336457,0.02617023,95.95190931],[4.53364625,0.02617195,95.95262703],[4.53364679,0.02617367,95.95334556],[4.53364733,0.02617539,95.95406491],[4.53364787,0.02617711,95.95478509],[4.53364842,0.02617883,95.95550611],[4.53364896,0.02618055,95.95622799],[4.5336495,0.02618227,95.95695073],[4.53365005,0.02618399,95.95767437],[4.53365059,0.0261857,95.9583989],[4.53365114,0.02618742,95.95912435],[4.53365168,0.02618914,95.95985072],[4.53365222,0.02619086,95.96057803],[4.53365277,0.02619258,95.96130629],[4.53365331,0.0261943,95.96203552],[4.53365386,0.02619602,95.96276574],[4.5336544,0.02619774,95.96349694],[4.53365495,0.02619945,95.96422916],[4.53365549,0.02620117,95.9649624],[4.53365604,0.02620289,95.96569667],[4.53365659,0.02620461,95.966432],[4.53365713,0.02620633,95.96716839],[4.53365768,0.02620805,95.96790585],[4.53365822,0.02620976,95.96864441],[4.53365877,0.02621148,95.96938403],[4.53365932,0.0262132,95.9701247],[4.53365986,0.02621492,95.97086639],[4.53366041,0.02621664,95.97160908],[4.53366096,0.02621835,95.97235274],[4.53366151,0.02622007,95.97309736],[4.53366205,0.02622179,95.97384291],[4.5336626,0.02622351,95.97458937],[4.53366315,0.02622523,95.97533671],[4.5336637,0.02622694,95.97608492],[4.53366425,0.02622866,95.97683397],[4.5336648,0.02623038,95.97758383],[4.53366534,0.0262321,95.97833448],[4.53366589,0.02623381,95.97908591],[4.53366644,0.02623553,95.97983809],[4.53366699,0.02623725,95.98059099],[4.53366754,0.02623897,95.98134459],[4.53366809,0.02624068,95.98209888],[4.53366864,0.0262424,95.98285382],[4.53366919,0.02624412,95.9836094],[4.53366973,0.02624583,95.98436559],[4.53367028,0.02624755,95.98512237],[4.53367083,0.02624927,95.98587972],[4.53367138,0.02625099,95.98663761],[4.53367193,0.0262527,95.98739602],[4.53367248,0.02625442,95.98815493],[4.53367303,0.02625614,95.98891432],[4.53367358,0.02625786,95.98967416],[4.53367413,0.02625957,95.99043444],[4.53367468,0.02626129,95.99119512],[4.53367522,0.02626301,95.99195618],[4.53367577,0.02626473,95.99271761],[4.53367632,0.02626644,95.99347938],[4.53367687,0.02626816,95.99424147],[4.53367742,0.02626988,95.99500385],[4.53367797,0.0262716,95.9957665],[4.53367852,0.02627331,95.9965294],[4.53367906,0.02627503,95.99729253],[4.53367961,0.02627675,95.99805586],[4.53368016,0.02627847,95.99881937],[4.53368071,0.02628018,95.99958304],[4.53368125,0.0262819,96.00034684],[4.5336818,0.02628362,96.00111075],[4.53368235,0.02628534,96.00187475],[4.5336829,0.02628705,96.00263881],[4.53368344,0.02628877,96.00340292],[4.53368399,0.02629049,96.00416704],[4.53368454,0.02629221,96.00493115],[4.53368508,0.02629393,96.00569524],[4.53368563,0.02629565,96.00645927],[4.53368618,0.02629736,96.00722323],[4.53368672,0.02629908,96.00798709],[4.53368727,0.0263008,96.00875083],[4.53368781,0.02630252,96.00951442],[4.53368836,0.02630424,96.01027783],[4.5336889,0.02630596,96.01104106],[4.53368945,0.02630768,96.01180406],[4.53368999,0.02630939,96.01256682],[4.53369053,0.02631111,96.01332931],[4.53369108,0.02631283,96.01409152],[4.53369162,0.02631455,96.0148534],[4.53369216,0.02631627,96.01561495],[4.53369271,0.02631799,96.01637616],[4.53369325,0.02631971,96.01713708],[4.53369379,0.02632143,96.01789772],[4.53369433,0.02632315,96.01865813],[4.53369487,0.02632487,96.01941835],[4.53369541,0.02632659,96.0201784],[4.53369596,0.02632831,96.02093832],[4.5336965,0.02633003,96.02169815],[4.53369704,0.02633175,96.02245792],[4.53369758,0.02633347,96.02321766],[4.53369812,0.02633519,96.02397741],[4.53369866,0.02633691,96.02473721],[4.5336992,0.02633863,96.02549708],[4.53369973,0.02634035,96.02625706],[4.53370027,0.02634207,96.02701719],[4.53370081,0.02634379,96.0277775],[4.53370135,0.02634551,96.02853803],[4.53370189,0.02634723,96.02929881],[4.53370243,0.02634895,96.03005988],[4.53370297,0.02635067,96.03082127],[4.53370351,0.0263524,96.03158301],[4.53370404,0.02635412,96.03234514],[4.53370458,0.02635584,96.0331077],[4.53370512,0.02635756,96.03387072],[4.53370566,0.02635928,96.03463423],[4.5337062,0.026361,96.03539827],[4.53370674,0.02636272,96.03616285],[4.53370727,0.02636444,96.036928],[4.53370781,0.02636616,96.03769372],[4.53370835,0.02636788,96.03846005],[4.53370889,0.0263696,96.039227],[4.53370943,0.02637133,96.03999459],[4.53370996,0.02637305,96.04076284],[4.5337105,0.02637477,96.04153178],[4.53371104,0.02637649,96.04230142],[4.53371158,0.02637821,96.04307178],[4.53371212,0.02637993,96.04384289],[4.53371265,0.02638165,96.04461477],[4.53371319,0.02638337,96.04538743],[4.53371373,0.02638509,96.04616089],[4.53371427,0.02638681,96.04693519],[4.53371481,0.02638853,96.04771034],[4.53371535,0.02639025,96.04848636],[4.53371589,0.02639197,96.04926327],[4.53371643,0.02639369,96.0500411],[4.53371697,0.02639541,96.05081986],[4.53371751,0.02639714,96.05159959],[4.53371805,0.02639886,96.0523803],[4.53371859,0.02640058,96.05316201],[4.53371913,0.0264023,96.05394475],[4.53371967,0.02640402,96.05472854],[4.53372021,0.02640574,96.05551341],[4.53372075,0.02640746,96.05629937],[4.53372129,0.02640918,96.05708645],[4.53372183,0.0264109,96.05787467],[4.53372237,0.02641262,96.058664],[4.53372291,0.02641434,96.05945443],[4.53372346,0.02641605,96.06024592],[4.533724,0.02641777,96.06103845],[4.53372454,0.02641949,96.06183199],[4.53372508,0.02642121,96.06262652],[4.53372563,0.02642293,96.063422],[4.53372617,0.02642465,96.06421841],[4.53372671,0.02642637,96.06501571],[4.53372726,0.02642809,96.06581387],[4.5337278,0.02642981,96.06661287],[4.53372835,0.02643153,96.06741266],[4.53372889,0.02643325,96.06821323],[4.53372944,0.02643496,96.06901453],[4.53372998,0.02643668,96.06981654],[4.53373053,0.0264384,96.07061923],[4.53373107,0.02644012,96.07142257],[4.53373162,0.02644184,96.07222652],[4.53373216,0.02644356,96.07303105],[4.53373271,0.02644528,96.07383614],[4.53373325,0.02644699,96.07464175],[4.5337338,0.02644871,96.07544784],[4.53373435,0.02645043,96.0762544],[4.53373489,0.02645215,96.07706138],[4.53373544,0.02645387,96.07786875],[4.53373598,0.02645559,96.07867649],[4.53373653,0.0264573,96.07948456],[4.53373708,0.02645902,96.08029292],[4.53373762,0.02646074,96.08110155],[4.53373817,0.02646246,96.08191042],[4.53373872,0.02646418,96.08271949],[4.53373926,0.02646589,96.08352873],[4.53373981,0.02646761,96.0843381],[4.53374036,0.02646933,96.08514759],[4.53374091,0.02647105,96.08595714],[4.53374145,0.02647277,96.08676673],[4.533742,0.02647448,96.08757633],[4.53374255,0.0264762,96.08838591],[4.5337431,0.02647792,96.08919542],[4.53374364,0.02647964,96.09000485],[4.53374419,0.02648136,96.09081415],[4.53374474,0.02648307,96.09162329],[4.53374528,0.02648479,96.09243224],[4.53374583,0.02648651,96.09324097],[4.53374638,0.02648823,96.09404944],[4.53374693,0.02648995,96.09485762],[4.53374747,0.02649166,96.09566547],[4.53374802,0.02649338,96.09647297],[4.53374857,0.0264951,96.09728008],[4.53374912,0.02649682,96.09808676],[4.53374966,0.02649854,96.09889298],[4.53375021,0.02650025,96.0996987],[4.53375076,0.02650197,96.1005039],[4.5337513,0.02650369,96.10130854],[4.53375185,0.02650541,96.10211259],[4.5337524,0.02650713,96.102916],[4.53375295,0.02650884,96.10371875],[4.53375349,0.02651056,96.10452079],[4.53375404,0.02651228,96.10532211],[4.53375459,0.026514,96.10612265],[4.53375513,0.02651572,96.10692239],[4.53375568,0.02651743,96.10772129],[4.53375622,0.02651915,96.10851932],[4.53375677,0.02652087,96.10931643],[4.53375732,0.02652259,96.11011261],[4.53375786,0.02652431,96.1109078],[4.53375841,0.02652603,96.11170198],[4.53375895,0.02652774,96.11249511],[4.5337595,0.02652946,96.11328715],[4.53376004,0.02653118,96.11407807],[4.53376059,0.0265329,96.11486784],[4.53376113,0.02653462,96.11565642],[4.53376168,0.02653634,96.11644377],[4.53376222,0.02653806,96.11722986],[4.53376277,0.02653978,96.11801466],[4.53376331,0.02654149,96.11879812],[4.53376385,0.02654321,96.11958022],[4.5337644,0.02654493,96.12036091],[4.53376494,0.02654665,96.12114016],[4.53376548,0.02654837,96.12191795],[4.53376603,0.02655009,96.12269427],[4.53376657,0.02655181,96.1234692],[4.53376711,0.02655353,96.12424277],[4.53376766,0.02655525,96.12501506],[4.5337682,0.02655697,96.12578612],[4.53376874,0.02655869,96.12655601],[4.53376928,0.02656041,96.12732479],[4.53376982,0.02656213,96.12809252],[4.53377037,0.02656385,96.12885925],[4.53377091,0.02656557,96.12962505],[4.53377145,0.02656729,96.13038998],[4.53377199,0.02656901,96.13115409],[4.53377253,0.02657073,96.13191744],[4.53377308,0.02657245,96.1326801],[4.53377362,0.02657416,96.13344212],[4.53377416,0.02657588,96.13420356],[4.5337747,0.0265776,96.13496449],[4.53377524,0.02657932,96.13572496],[4.53377579,0.02658104,96.13648504],[4.53377633,0.02658276,96.13724477],[4.53377687,0.02658448,96.13800423],[4.53377742,0.0265862,96.13876347],[4.53377796,0.02658792,96.13952255],[4.5337785,0.02658964,96.14028153],[4.53377905,0.02659136,96.14104047],[4.53377959,0.02659308,96.14179943],[4.53378014,0.0265948,96.14255847],[4.53378068,0.02659651,96.14331765],[4.53378123,0.02659823,96.14407703],[4.53378177,0.02659995,96.14483667],[4.53378232,0.02660167,96.14559662],[4.53378287,0.02660339,96.14635694],[4.53378341,0.02660511,96.1471177],[4.53378396,0.02660682,96.14787895],[4.53378451,0.02660854,96.14864073],[4.53378506,0.02661026,96.14940298],[4.53378561,0.02661198,96.15016565],[4.53378616,0.02661369,96.15092866],[4.53378671,0.02661541,96.15169194],[4.53378726,0.02661713,96.15245542],[4.53378781,0.02661884,96.15321903],[4.53378836,0.02662056,96.15398271],[4.53378891,0.02662228,96.15474637],[4.53378946,0.02662399,96.15550995],[4.53379001,0.02662571,96.15627339],[4.53379057,0.02662743,96.1570366],[4.53379112,0.02662914,96.15779952],[4.53379167,0.02663086,96.15856208],[4.53379223,0.02663257,96.1593242],[4.53379278,0.02663429,96.16008581],[4.53379333,0.02663601,96.16084685],[4.53379389,0.02663772,96.16160725],[4.53379444,0.02663944,96.16236693],[4.533795,0.02664115,96.16312582],[4.53379555,0.02664287,96.16388387],[4.53379611,0.02664458,96.16464099],[4.53379666,0.0266463,96.16539713],[4.53379722,0.02664801,96.16615221],[4.53379777,0.02664973,96.16690616],[4.53379833,0.02665145,96.16765893],[4.53379888,0.02665316,96.16841043],[4.53379944,0.02665488,96.1691606],[4.5338,0.02665659,96.16990937],[4.53380055,0.02665831,96.17065668],[4.53380111,0.02666002,96.17140245],[4.53380166,0.02666174,96.17214662],[4.53380222,0.02666345,96.17288912],[4.53380278,0.02666517,96.17362988],[4.53380333,0.02666688,96.17436884],[4.53380389,0.0266686,96.17510592],[4.53380444,0.02667031,96.17584107],[4.533805,0.02667203,96.17657421],[4.53380555,0.02667374,96.17730527],[4.53380611,0.02667546,96.1780342],[4.53380666,0.02667717,96.17876092],[4.53380722,0.02667889,96.17948536],[4.53380778,0.02668061,96.18020747],[4.53380833,0.02668232,96.18092717],[4.53380888,0.02668404,96.1816444],[4.53380944,0.02668575,96.1823591],[4.53380999,0.02668747,96.1830712],[4.53380623,0.02668867,96.17081676]]],"type":"Polygon"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":1,"type":"shoulder","predecessorId":1,"sOffset":177.600614965}},{"geometry":{"coordinates":[[[4.53380999,0.02668747,96.1830712],[4.53380944,0.02668575,96.1823591],[4.53380888,0.02668404,96.1816444],[4.53380833,0.02668232,96.18092717],[4.53380778,0.02668061,96.18020747],[4.53380722,0.02667889,96.17948536],[4.53380666,0.02667717,96.17876092],[4.53380611,0.02667546,96.1780342],[4.53380555,0.02667374,96.17730527],[4.533805,0.02667203,96.17657421],[4.53380444,0.02667031,96.17584107],[4.53380389,0.0266686,96.17510592],[4.53380333,0.02666688,96.17436884],[4.53380278,0.02666517,96.17362988],[4.53380222,0.02666345,96.17288912],[4.53380166,0.02666174,96.17214662],[4.53380111,0.02666002,96.17140245],[4.53380055,0.02665831,96.17065668],[4.5338,0.02665659,96.16990937],[4.53379944,0.02665488,96.1691606],[4.53379888,0.02665316,96.16841043],[4.53379833,0.02665145,96.16765893],[4.53379777,0.02664973,96.16690616],[4.53379722,0.02664801,96.16615221],[4.53379666,0.0266463,96.16539713],[4.53379611,0.02664458,96.16464099],[4.53379555,0.02664287,96.16388387],[4.533795,0.02664115,96.16312582],[4.53379444,0.02663944,96.16236693],[4.53379389,0.02663772,96.16160725],[4.53379333,0.02663601,96.16084685],[4.53379278,0.02663429,96.16008581],[4.53379223,0.02663257,96.1593242],[4.53379167,0.02663086,96.15856208],[4.53379112,0.02662914,96.15779952],[4.53379057,0.02662743,96.1570366],[4.53379001,0.02662571,96.15627339],[4.53378946,0.02662399,96.15550995],[4.53378891,0.02662228,96.15474637],[4.53378836,0.02662056,96.15398271],[4.53378781,0.02661884,96.15321903],[4.53378726,0.02661713,96.15245542],[4.53378671,0.02661541,96.15169194],[4.53378616,0.02661369,96.15092866],[4.53378561,0.02661198,96.15016565],[4.53378506,0.02661026,96.14940298],[4.53378451,0.02660854,96.14864073],[4.53378396,0.02660682,96.14787895],[4.53378341,0.02660511,96.1471177],[4.53378287,0.02660339,96.14635694],[4.53378232,0.02660167,96.14559662],[4.53378177,0.02659995,96.14483667],[4.53378123,0.02659823,96.14407703],[4.53378068,0.02659651,96.14331765],[4.53378014,0.0265948,96.14255847],[4.53377959,0.02659308,96.14179943],[4.53377905,0.02659136,96.14104047],[4.5337785,0.02658964,96.14028153],[4.53377796,0.02658792,96.13952255],[4.53377742,0.0265862,96.13876347],[4.53377687,0.02658448,96.13800423],[4.53377633,0.02658276,96.13724477],[4.53377579,0.02658104,96.13648504],[4.53377524,0.02657932,96.13572496],[4.5337747,0.0265776,96.13496449],[4.53377416,0.02657588,96.13420356],[4.53377362,0.02657416,96.13344212],[4.53377308,0.02657245,96.1326801],[4.53377253,0.02657073,96.13191744],[4.53377199,0.02656901,96.13115409],[4.53377145,0.02656729,96.13038998],[4.53377091,0.02656557,96.12962505],[4.53377037,0.02656385,96.12885925],[4.53376982,0.02656213,96.12809252],[4.53376928,0.02656041,96.12732479],[4.53376874,0.02655869,96.12655601],[4.5337682,0.02655697,96.12578612],[4.53376766,0.02655525,96.12501506],[4.53376711,0.02655353,96.12424277],[4.53376657,0.02655181,96.1234692],[4.53376603,0.02655009,96.12269427],[4.53376548,0.02654837,96.12191795],[4.53376494,0.02654665,96.12114016],[4.5337644,0.02654493,96.12036091],[4.53376385,0.02654321,96.11958022],[4.53376331,0.02654149,96.11879812],[4.53376277,0.02653978,96.11801466],[4.53376222,0.02653806,96.11722986],[4.53376168,0.02653634,96.11644377],[4.53376113,0.02653462,96.11565642],[4.53376059,0.0265329,96.11486784],[4.53376004,0.02653118,96.11407807],[4.5337595,0.02652946,96.11328715],[4.53375895,0.02652774,96.11249511],[4.53375841,0.02652603,96.11170198],[4.53375786,0.02652431,96.1109078],[4.53375732,0.02652259,96.11011261],[4.53375677,0.02652087,96.10931643],[4.53375622,0.02651915,96.10851932],[4.53375568,0.02651743,96.10772129],[4.53375513,0.02651572,96.10692239],[4.53375459,0.026514,96.10612265],[4.53375404,0.02651228,96.10532211],[4.53375349,0.02651056,96.10452079],[4.53375295,0.02650884,96.10371875],[4.5337524,0.02650713,96.102916],[4.53375185,0.02650541,96.10211259],[4.5337513,0.02650369,96.10130854],[4.53375076,0.02650197,96.1005039],[4.53375021,0.02650025,96.0996987],[4.53374966,0.02649854,96.09889298],[4.53374912,0.02649682,96.09808676],[4.53374857,0.0264951,96.09728008],[4.53374802,0.02649338,96.09647297],[4.53374747,0.02649166,96.09566547],[4.53374693,0.02648995,96.09485762],[4.53374638,0.02648823,96.09404944],[4.53374583,0.02648651,96.09324097],[4.53374528,0.02648479,96.09243224],[4.53374474,0.02648307,96.09162329],[4.53374419,0.02648136,96.09081415],[4.53374364,0.02647964,96.09000485],[4.5337431,0.02647792,96.08919542],[4.53374255,0.0264762,96.08838591],[4.533742,0.02647448,96.08757633],[4.53374145,0.02647277,96.08676673],[4.53374091,0.02647105,96.08595714],[4.53374036,0.02646933,96.08514759],[4.53373981,0.02646761,96.0843381],[4.53373926,0.02646589,96.08352873],[4.53373872,0.02646418,96.08271949],[4.53373817,0.02646246,96.08191042],[4.53373762,0.02646074,96.08110155],[4.53373708,0.02645902,96.08029292],[4.53373653,0.0264573,96.07948456],[4.53373598,0.02645559,96.07867649],[4.53373544,0.02645387,96.07786875],[4.53373489,0.02645215,96.07706138],[4.53373435,0.02645043,96.0762544],[4.5337338,0.02644871,96.07544784],[4.53373325,0.02644699,96.07464175],[4.53373271,0.02644528,96.07383614],[4.53373216,0.02644356,96.07303105],[4.53373162,0.02644184,96.07222652],[4.53373107,0.02644012,96.07142257],[4.53373053,0.0264384,96.07061923],[4.53372998,0.02643668,96.06981654],[4.53372944,0.02643496,96.06901453],[4.53372889,0.02643325,96.06821323],[4.53372835,0.02643153,96.06741266],[4.5337278,0.02642981,96.06661287],[4.53372726,0.02642809,96.06581387],[4.53372671,0.02642637,96.06501571],[4.53372617,0.02642465,96.06421841],[4.53372563,0.02642293,96.063422],[4.53372508,0.02642121,96.06262652],[4.53372454,0.02641949,96.06183199],[4.533724,0.02641777,96.06103845],[4.53372346,0.02641605,96.06024592],[4.53372291,0.02641434,96.05945443],[4.53372237,0.02641262,96.058664],[4.53372183,0.0264109,96.05787467],[4.53372129,0.02640918,96.05708645],[4.53372075,0.02640746,96.05629937],[4.53372021,0.02640574,96.05551341],[4.53371967,0.02640402,96.05472854],[4.53371913,0.0264023,96.05394475],[4.53371859,0.02640058,96.05316201],[4.53371805,0.02639886,96.0523803],[4.53371751,0.02639714,96.05159959],[4.53371697,0.02639541,96.05081986],[4.53371643,0.02639369,96.0500411],[4.53371589,0.02639197,96.04926327],[4.53371535,0.02639025,96.04848636],[4.53371481,0.02638853,96.04771034],[4.53371427,0.02638681,96.04693519],[4.53371373,0.02638509,96.04616089],[4.53371319,0.02638337,96.04538743],[4.53371265,0.02638165,96.04461477],[4.53371212,0.02637993,96.04384289],[4.53371158,0.02637821,96.04307178],[4.53371104,0.02637649,96.04230142],[4.5337105,0.02637477,96.04153178],[4.53370996,0.02637305,96.04076284],[4.53370943,0.02637133,96.03999459],[4.53370889,0.0263696,96.039227],[4.53370835,0.02636788,96.03846005],[4.53370781,0.02636616,96.03769372],[4.53370727,0.02636444,96.036928],[4.53370674,0.02636272,96.03616285],[4.5337062,0.026361,96.03539827],[4.53370566,0.02635928,96.03463423],[4.53370512,0.02635756,96.03387072],[4.53370458,0.02635584,96.0331077],[4.53370404,0.02635412,96.03234514],[4.53370351,0.0263524,96.03158301],[4.53370297,0.02635067,96.03082127],[4.53370243,0.02634895,96.03005988],[4.53370189,0.02634723,96.02929881],[4.53370135,0.02634551,96.02853803],[4.53370081,0.02634379,96.0277775],[4.53370027,0.02634207,96.02701719],[4.53369973,0.02634035,96.02625706],[4.5336992,0.02633863,96.02549708],[4.53369866,0.02633691,96.02473721],[4.53369812,0.02633519,96.02397741],[4.53369758,0.02633347,96.02321766],[4.53369704,0.02633175,96.02245792],[4.5336965,0.02633003,96.02169815],[4.53369596,0.02632831,96.02093832],[4.53369541,0.02632659,96.0201784],[4.53369487,0.02632487,96.01941835],[4.53369433,0.02632315,96.01865813],[4.53369379,0.02632143,96.01789772],[4.53369325,0.02631971,96.01713708],[4.53369271,0.02631799,96.01637616],[4.53369216,0.02631627,96.01561495],[4.53369162,0.02631455,96.0148534],[4.53369108,0.02631283,96.01409152],[4.53369053,0.02631111,96.01332931],[4.53368999,0.02630939,96.01256682],[4.53368945,0.02630768,96.01180406],[4.5336889,0.02630596,96.01104106],[4.53368836,0.02630424,96.01027783],[4.53368781,0.02630252,96.00951442],[4.53368727,0.0263008,96.00875083],[4.53368672,0.02629908,96.00798709],[4.53368618,0.02629736,96.00722323],[4.53368563,0.02629565,96.00645927],[4.53368508,0.02629393,96.00569524],[4.53368454,0.02629221,96.00493115],[4.53368399,0.02629049,96.00416704],[4.53368344,0.02628877,96.00340292],[4.5336829,0.02628705,96.00263881],[4.53368235,0.02628534,96.00187475],[4.5336818,0.02628362,96.00111075],[4.53368125,0.0262819,96.00034684],[4.53368071,0.02628018,95.99958304],[4.53368016,0.02627847,95.99881937],[4.53367961,0.02627675,95.99805586],[4.53367906,0.02627503,95.99729253],[4.53367852,0.02627331,95.9965294],[4.53367797,0.0262716,95.9957665],[4.53367742,0.02626988,95.99500385],[4.53367687,0.02626816,95.99424147],[4.53367632,0.02626644,95.99347938],[4.53367577,0.02626473,95.99271761],[4.53367522,0.02626301,95.99195618],[4.53367468,0.02626129,95.99119512],[4.53367413,0.02625957,95.99043444],[4.53367358,0.02625786,95.98967416],[4.53367303,0.02625614,95.98891432],[4.53367248,0.02625442,95.98815493],[4.53367193,0.0262527,95.98739602],[4.53367138,0.02625099,95.98663761],[4.53367083,0.02624927,95.98587972],[4.53367028,0.02624755,95.98512237],[4.53366973,0.02624583,95.98436559],[4.53366919,0.02624412,95.9836094],[4.53366864,0.0262424,95.98285382],[4.53366809,0.02624068,95.98209888],[4.53366754,0.02623897,95.98134459],[4.53366699,0.02623725,95.98059099],[4.53366644,0.02623553,95.97983809],[4.53366589,0.02623381,95.97908591],[4.53366534,0.0262321,95.97833448],[4.5336648,0.02623038,95.97758383],[4.53366425,0.02622866,95.97683397],[4.5336637,0.02622694,95.97608492],[4.53366315,0.02622523,95.97533671],[4.5336626,0.02622351,95.97458937],[4.53366205,0.02622179,95.97384291],[4.53366151,0.02622007,95.97309736],[4.53366096,0.02621835,95.97235274],[4.53366041,0.02621664,95.97160908],[4.53365986,0.02621492,95.97086639],[4.53365932,0.0262132,95.9701247],[4.53365877,0.02621148,95.96938403],[4.53365822,0.02620976,95.96864441],[4.53365768,0.02620805,95.96790585],[4.53365713,0.02620633,95.96716839],[4.53365659,0.02620461,95.966432],[4.53365604,0.02620289,95.96569667],[4.53365549,0.02620117,95.9649624],[4.53365495,0.02619945,95.96422916],[4.5336544,0.02619774,95.96349694],[4.53365386,0.02619602,95.96276574],[4.53365331,0.0261943,95.96203552],[4.53365277,0.02619258,95.96130629],[4.53365222,0.02619086,95.96057803],[4.53365168,0.02618914,95.95985072],[4.53365114,0.02618742,95.95912435],[4.53365059,0.0261857,95.9583989],[4.53365005,0.02618399,95.95767437],[4.5336495,0.02618227,95.95695073],[4.53364896,0.02618055,95.95622799],[4.53364842,0.02617883,95.95550611],[4.53364787,0.02617711,95.95478509],[4.53364733,0.02617539,95.95406491],[4.53364679,0.02617367,95.95334556],[4.53364625,0.02617195,95.95262703],[4.5336457,0.02617023,95.95190931],[4.53364516,0.02616851,95.95119237],[4.53364462,0.02616679,95.95047621],[4.53364408,0.02616507,95.94976081],[4.53364353,0.02616335,95.94904615],[4.53364299,0.02616163,95.94833223],[4.53364245,0.02615991,95.94761904],[4.53364191,0.02615819,95.94690655],[4.53364137,0.02615648,95.94619475],[4.53364082,0.02615476,95.94548363],[4.53364028,0.02615304,95.94477318],[4.53363974,0.02615132,95.94406338],[4.5336392,0.0261496,95.94335422],[4.53363866,0.02614788,95.94264568],[4.53363812,0.02614616,95.94193776],[4.53363758,0.02614444,95.94123043],[4.53363704,0.02614272,95.94052368],[4.53363649,0.026141,95.93981751],[4.53363595,0.02613928,95.93911189],[4.53363541,0.02613756,95.93840681],[4.53363487,0.02613584,95.93770227],[4.53363433,0.02613412,95.93699823],[4.53363379,0.0261324,95.9362947],[4.53363325,0.02613068,95.93559165],[4.53363271,0.02612896,95.93488908],[4.53363217,0.02612724,95.93418697],[4.53363163,0.02612552,95.9334853],[4.53363109,0.0261238,95.93278406],[4.53363055,0.02612208,95.93208324],[4.53363001,0.02612036,95.93138283],[4.53362947,0.02611864,95.9306828],[4.53362893,0.02611692,95.92998315],[4.53362839,0.0261152,95.92928386],[4.53362785,0.02611348,95.92858492],[4.53362731,0.02611176,95.92788631],[4.53362677,0.02611004,95.92718802],[4.53362623,0.02610832,95.92649004],[4.53362568,0.0261066,95.92579234],[4.53362514,0.02610488,95.92509493],[4.5336246,0.02610316,95.92439778],[4.53362406,0.02610144,95.92370087],[4.53362352,0.02609971,95.92300421],[4.53362298,0.02609799,95.92230777],[4.53362244,0.02609627,95.92161153],[4.5336219,0.02609455,95.92091546],[4.53362136,0.02609283,95.92021954],[4.53362082,0.02609111,95.91952374],[4.53362028,0.02608939,95.91882804],[4.53361974,0.02608767,95.91813241],[4.5336192,0.02608595,95.91743682],[4.53361866,0.02608423,95.91674126],[4.53361812,0.02608251,95.91604568],[4.53361758,0.02608079,95.91535008],[4.53361704,0.02607907,95.91465442],[4.53361649,0.02607736,95.91395867],[4.53361595,0.02607564,95.91326281],[4.53361541,0.02607392,95.91256682],[4.53361487,0.0260722,95.91187067],[4.53361433,0.02607048,95.91117433],[4.53361379,0.02606876,95.91047778],[4.53361324,0.02606704,95.90978098],[4.5336127,0.02606532,95.90908392],[4.53361216,0.0260636,95.90838657],[4.53361162,0.02606188,95.90768889],[4.53361107,0.02606016,95.90699088],[4.53361053,0.02605844,95.90629249],[4.53360999,0.02605672,95.9055937],[4.53360944,0.026055,95.90489448],[4.5336089,0.02605328,95.90419482],[4.53360836,0.02605156,95.90349468],[4.53360781,0.02604984,95.90279403],[4.53360727,0.02604813,95.90209285],[4.53360672,0.02604641,95.90139111],[4.53360618,0.02604469,95.90068878],[4.53360563,0.02604297,95.89998584],[4.53360509,0.02604125,95.89928226],[4.53360454,0.02603953,95.89857802],[4.533604,0.02603781,95.89787308],[4.53360345,0.0260361,95.89716741],[4.5336029,0.02603438,95.896461],[4.53360236,0.02603266,95.89575382],[4.53360181,0.02603094,95.89504583],[4.53360126,0.02602922,95.89433701],[4.53360072,0.02602751,95.89362733],[4.53360017,0.02602579,95.89291676],[4.53359962,0.02602407,95.89220528],[4.53359907,0.02602235,95.89149286],[4.53359852,0.02602064,95.89077947],[4.53359797,0.02601892,95.89006508],[4.53359742,0.0260172,95.88934967],[4.53359687,0.02601549,95.8886332],[4.53359632,0.02601377,95.88791565],[4.53359577,0.02601205,95.887197],[4.53359522,0.02601034,95.88647721],[4.53359467,0.02600862,95.88575628],[4.53359412,0.0260069,95.88503426],[4.53359356,0.02600519,95.88431117],[4.53359301,0.02600347,95.88358706],[4.53359246,0.02600176,95.88286195],[4.5335919,0.02600004,95.88213589],[4.53359135,0.02599832,95.8814089],[4.5335908,0.02599661,95.88068103],[4.53359024,0.02599489,95.8799523],[4.53358969,0.02599318,95.87922276],[4.53358913,0.02599146,95.87849245],[4.53358858,0.02598975,95.87776138],[4.53358802,0.02598803,95.87702962],[4.53358746,0.02598632,95.87629718],[4.53358691,0.0259846,95.8755641],[4.53358635,0.02598289,95.87483043],[4.5335858,0.02598117,95.8740962],[4.53358524,0.02597946,95.87336144],[4.53358468,0.02597774,95.87262619],[4.53358413,0.02597603,95.87189048],[4.53358357,0.02597431,95.87115437],[4.53358301,0.0259726,95.87041787],[4.53358245,0.02597088,95.86968103],[4.5335819,0.02596917,95.86894389],[4.53358134,0.02596745,95.86820648],[4.53358078,0.02596574,95.86746884],[4.53358022,0.02596402,95.86673101],[4.53357967,0.02596231,95.86599302],[4.53357911,0.0259606,95.86525492],[4.53357855,0.02595888,95.86451673],[4.53357799,0.02595717,95.8637785],[4.53357744,0.02595545,95.86304027],[4.53357688,0.02595374,95.86230207],[4.53357632,0.02595202,95.86156394],[4.53357576,0.02595031,95.86082591],[4.53357521,0.02594859,95.86008801],[4.53357465,0.02594688,95.85935028],[4.53357409,0.02594516,95.85861275],[4.53357353,0.02594345,95.85787545],[4.53357298,0.02594174,95.85713841],[4.53357242,0.02594002,95.85640167],[4.53357186,0.02593831,95.85566525],[4.5335713,0.02593659,95.85492919],[4.53357075,0.02593488,95.85419352],[4.53357019,0.02593316,95.85345827],[4.53356963,0.02593145,95.85272347],[4.53356908,0.02592973,95.85198917],[4.53356905,0.02592965,95.85195471],[4.53358181,0.02592552,95.85195471],[4.53358183,0.0259256,95.85198917],[4.53358238,0.02592732,95.85272347],[4.53358293,0.02592904,95.85345827],[4.53358348,0.02593076,95.85419352],[4.53358403,0.02593247,95.85492919],[4.53358458,0.02593419,95.85566525],[4.53358513,0.02593591,95.85640167],[4.53358568,0.02593762,95.85713841],[4.53358623,0.02593934,95.85787545],[4.53358678,0.02594106,95.85861275],[4.53358732,0.02594278,95.85935028],[4.53358787,0.02594449,95.86008801],[4.53358842,0.02594621,95.86082591],[4.53358897,0.02594793,95.86156394],[4.53358952,0.02594964,95.86230207],[4.53359007,0.02595136,95.86304027],[4.53359062,0.02595308,95.8637785],[4.53359117,0.0259548,95.86451673],[4.53359172,0.02595651,95.86525492],[4.53359227,0.02595823,95.86599302],[4.53359282,0.02595995,95.86673101],[4.53359337,0.02596166,95.86746884],[4.53359393,0.02596338,95.86820648],[4.53359448,0.0259651,95.86894389],[4.53359503,0.02596681,95.86968103],[4.53359558,0.02596853,95.87041787],[4.53359613,0.02597025,95.87115437],[4.53359668,0.02597197,95.87189048],[4.53359723,0.02597368,95.87262619],[4.53359778,0.0259754,95.87336144],[4.53359833,0.02597712,95.8740962],[4.53359888,0.02597883,95.87483043],[4.53359943,0.02598055,95.8755641],[4.53359998,0.02598227,95.87629718],[4.53360053,0.02598399,95.87702962],[4.53360108,0.0259857,95.87776138],[4.53360163,0.02598742,95.87849245],[4.53360218,0.02598914,95.87922276],[4.53360273,0.02599085,95.8799523],[4.53360327,0.02599257,95.88068103],[4.53360382,0.02599429,95.8814089],[4.53360437,0.02599601,95.88213589],[4.53360492,0.02599772,95.88286195],[4.53360547,0.02599944,95.88358706],[4.53360602,0.02600116,95.88431117],[4.53360657,0.02600287,95.88503426],[4.53360712,0.02600459,95.88575628],[4.53360767,0.02600631,95.88647721],[4.53360822,0.02600803,95.887197],[4.53360876,0.02600975,95.88791565],[4.53360931,0.02601146,95.8886332],[4.53360986,0.02601318,95.88934967],[4.53361041,0.0260149,95.89006508],[4.53361096,0.02601662,95.89077947],[4.5336115,0.02601833,95.89149286],[4.53361205,0.02602005,95.89220528],[4.5336126,0.02602177,95.89291676],[4.53361315,0.02602349,95.89362733],[4.53361369,0.02602521,95.89433701],[4.53361424,0.02602692,95.89504583],[4.53361479,0.02602864,95.89575382],[4.53361534,0.02603036,95.896461],[4.53361588,0.02603208,95.89716741],[4.53361643,0.02603379,95.89787308],[4.53361698,0.02603551,95.89857802],[4.53361752,0.02603723,95.89928226],[4.53361807,0.02603895,95.89998584],[4.53361862,0.02604067,95.90068878],[4.53361917,0.02604238,95.90139111],[4.53361971,0.0260441,95.90209285],[4.53362026,0.02604582,95.90279403],[4.53362081,0.02604754,95.90349468],[4.53362135,0.02604926,95.90419482],[4.5336219,0.02605097,95.90489448],[4.53362245,0.02605269,95.9055937],[4.533623,0.02605441,95.90629249],[4.53362354,0.02605613,95.90699088],[4.53362409,0.02605785,95.90768889],[4.53362464,0.02605957,95.90838657],[4.53362518,0.02606128,95.90908392],[4.53362573,0.026063,95.90978098],[4.53362628,0.02606472,95.91047778],[4.53362682,0.02606644,95.91117433],[4.53362737,0.02606816,95.91187067],[4.53362792,0.02606987,95.91256682],[4.53362846,0.02607159,95.91326281],[4.53362901,0.02607331,95.91395867],[4.53362956,0.02607503,95.91465442],[4.5336301,0.02607675,95.91535008],[4.53363065,0.02607847,95.91604568],[4.5336312,0.02608018,95.91674126],[4.53363174,0.0260819,95.91743682],[4.53363229,0.02608362,95.91813241],[4.53363283,0.02608534,95.91882804],[4.53363338,0.02608706,95.91952374],[4.53363393,0.02608877,95.92021954],[4.53363447,0.02609049,95.92091546],[4.53363502,0.02609221,95.92161153],[4.53363557,0.02609393,95.92230777],[4.53363611,0.02609565,95.92300421],[4.53363666,0.02609737,95.92370087],[4.5336372,0.02609908,95.92439778],[4.53363775,0.0261008,95.92509493],[4.5336383,0.02610252,95.92579234],[4.53363884,0.02610424,95.92649004],[4.53363939,0.02610596,95.92718802],[4.53363993,0.02610768,95.92788631],[4.53364048,0.02610939,95.92858492],[4.53364103,0.02611111,95.92928386],[4.53364157,0.02611283,95.92998315],[4.53364212,0.02611455,95.9306828],[4.53364266,0.02611627,95.93138283],[4.53364321,0.02611799,95.93208324],[4.53364376,0.02611971,95.93278406],[4.5336443,0.02612142,95.9334853],[4.53364485,0.02612314,95.93418697],[4.53364539,0.02612486,95.93488908],[4.53364594,0.02612658,95.93559165],[4.53364648,0.0261283,95.9362947],[4.53364703,0.02613002,95.93699823],[4.53364758,0.02613173,95.93770227],[4.53364812,0.02613345,95.93840681],[4.53364867,0.02613517,95.93911189],[4.53364921,0.02613689,95.93981751],[4.53364976,0.02613861,95.94052368],[4.5336503,0.02614033,95.94123043],[4.53365085,0.02614205,95.94193776],[4.53365139,0.02614376,95.94264568],[4.53365194,0.02614548,95.94335422],[4.53365248,0.0261472,95.94406338],[4.53365303,0.02614892,95.94477318],[4.53365358,0.02615064,95.94548363],[4.53365412,0.02615236,95.94619475],[4.53365467,0.02615408,95.94690655],[4.53365521,0.02615579,95.94761904],[4.53365576,0.02615751,95.94833223],[4.5336563,0.02615923,95.94904615],[4.53365685,0.02616095,95.94976081],[4.53365739,0.02616267,95.95047621],[4.53365794,0.02616439,95.95119237],[4.53365848,0.02616611,95.95190931],[4.53365903,0.02616783,95.95262703],[4.53365957,0.02616954,95.95334556],[4.53366012,0.02617126,95.95406491],[4.53366066,0.02617298,95.95478509],[4.53366121,0.0261747,95.95550611],[4.53366175,0.02617642,95.95622799],[4.53366229,0.02617814,95.95695073],[4.53366284,0.02617986,95.95767437],[4.53366338,0.02618158,95.9583989],[4.53366393,0.02618329,95.95912435],[4.53366447,0.02618501,95.95985072],[4.53366502,0.02618673,95.96057803],[4.53366556,0.02618845,95.96130629],[4.53366611,0.02619017,95.96203552],[4.53366665,0.02619189,95.96276574],[4.5336672,0.02619361,95.96349694],[4.53366774,0.02619533,95.96422916],[4.53366828,0.02619705,95.9649624],[4.53366883,0.02619877,95.96569667],[4.53366937,0.02620048,95.966432],[4.53366992,0.0262022,95.96716839],[4.53367046,0.02620392,95.96790585],[4.53367101,0.02620564,95.96864441],[4.53367155,0.02620736,95.96938403],[4.53367209,0.02620908,95.9701247],[4.53367264,0.0262108,95.97086639],[4.53367318,0.02621252,95.97160908],[4.53367373,0.02621424,95.97235274],[4.53367427,0.02621596,95.97309736],[4.53367481,0.02621767,95.97384291],[4.53367536,0.02621939,95.97458937],[4.5336759,0.02622111,95.97533671],[4.53367645,0.02622283,95.97608492],[4.53367699,0.02622455,95.97683397],[4.53367753,0.02622627,95.97758383],[4.53367808,0.02622799,95.97833448],[4.53367862,0.02622971,95.97908591],[4.53367916,0.02623143,95.97983809],[4.53367971,0.02623315,95.98059099],[4.53368025,0.02623487,95.98134459],[4.5336808,0.02623658,95.98209888],[4.53368134,0.0262383,95.98285382],[4.53368188,0.02624002,95.9836094],[4.53368243,0.02624174,95.98436559],[4.53368297,0.02624346,95.98512237],[4.53368351,0.02624518,95.98587972],[4.53368406,0.0262469,95.98663761],[4.5336846,0.02624862,95.98739602],[4.53368515,0.02625034,95.98815493],[4.53368569,0.02625206,95.98891432],[4.53368623,0.02625378,95.98967416],[4.53368678,0.0262555,95.99043444],[4.53368732,0.02625721,95.99119512],[4.53368786,0.02625893,95.99195618],[4.53368841,0.02626065,95.99271761],[4.53368895,0.02626237,95.99347938],[4.5336895,0.02626409,95.99424147],[4.53369004,0.02626581,95.99500385],[4.53369058,0.02626753,95.9957665],[4.53369113,0.02626925,95.9965294],[4.53369167,0.02627097,95.99729253],[4.53369221,0.02627269,95.99805586],[4.53369276,0.02627441,95.99881937],[4.5336933,0.02627612,95.99958304],[4.53369385,0.02627784,96.00034684],[4.53369439,0.02627956,96.00111075],[4.53369493,0.02628128,96.00187475],[4.53369548,0.026283,96.00263881],[4.53369602,0.02628472,96.00340292],[4.53369657,0.02628644,96.00416704],[4.53369711,0.02628816,96.00493115],[4.53369765,0.02628988,96.00569524],[4.5336982,0.0262916,96.00645927],[4.53369874,0.02629331,96.00722323],[4.53369929,0.02629503,96.00798709],[4.53369983,0.02629675,96.00875083],[4.53370038,0.02629847,96.00951442],[4.53370092,0.02630019,96.01027783],[4.53370147,0.02630191,96.01104106],[4.53370201,0.02630363,96.01180406],[4.53370255,0.02630535,96.01256682],[4.5337031,0.02630707,96.01332931],[4.53370364,0.02630879,96.01409152],[4.53370419,0.0263105,96.0148534],[4.53370473,0.02631222,96.01561495],[4.53370528,0.02631394,96.01637616],[4.53370582,0.02631566,96.01713708],[4.53370637,0.02631738,96.01789772],[4.53370691,0.0263191,96.01865813],[4.53370745,0.02632082,96.01941835],[4.533708,0.02632254,96.0201784],[4.53370854,0.02632426,96.02093832],[4.53370909,0.02632597,96.02169815],[4.53370963,0.02632769,96.02245792],[4.53371018,0.02632941,96.02321766],[4.53371072,0.02633113,96.02397741],[4.53371127,0.02633285,96.02473721],[4.53371181,0.02633457,96.02549708],[4.53371235,0.02633629,96.02625706],[4.5337129,0.02633801,96.02701719],[4.53371344,0.02633973,96.0277775],[4.53371399,0.02634145,96.02853803],[4.53371453,0.02634316,96.02929881],[4.53371507,0.02634488,96.03005988],[4.53371562,0.0263466,96.03082127],[4.53371616,0.02634832,96.03158301],[4.53371671,0.02635004,96.03234514],[4.53371725,0.02635176,96.0331077],[4.53371779,0.02635348,96.03387072],[4.53371834,0.0263552,96.03463423],[4.53371888,0.02635692,96.03539827],[4.53371943,0.02635864,96.03616285],[4.53371997,0.02636036,96.036928],[4.53372051,0.02636207,96.03769372],[4.53372106,0.02636379,96.03846005],[4.5337216,0.02636551,96.039227],[4.53372215,0.02636723,96.03999459],[4.53372269,0.02636895,96.04076284],[4.53372323,0.02637067,96.04153178],[4.53372378,0.02637239,96.04230142],[4.53372432,0.02637411,96.04307178],[4.53372486,0.02637583,96.04384289],[4.53372541,0.02637755,96.04461477],[4.53372595,0.02637927,96.04538743],[4.5337265,0.02638099,96.04616089],[4.53372704,0.0263827,96.04693519],[4.53372758,0.02638442,96.04771034],[4.53372813,0.02638614,96.04848636],[4.53372867,0.02638786,96.04926327],[4.53372922,0.02638958,96.0500411],[4.53372976,0.0263913,96.05081986],[4.5337303,0.02639302,96.05159959],[4.53373085,0.02639474,96.0523803],[4.53373139,0.02639646,96.05316201],[4.53373193,0.02639818,96.05394475],[4.53373248,0.0263999,96.05472854],[4.53373302,0.02640161,96.05551341],[4.53373357,0.02640333,96.05629937],[4.53373411,0.02640505,96.05708645],[4.53373465,0.02640677,96.05787467],[4.5337352,0.02640849,96.058664],[4.53373574,0.02641021,96.05945443],[4.53373629,0.02641193,96.06024592],[4.53373683,0.02641365,96.06103845],[4.53373737,0.02641537,96.06183199],[4.53373792,0.02641709,96.06262652],[4.53373846,0.02641881,96.063422],[4.533739,0.02642053,96.06421841],[4.53373955,0.02642224,96.06501571],[4.53374009,0.02642396,96.06581387],[4.53374064,0.02642568,96.06661287],[4.53374118,0.0264274,96.06741266],[4.53374173,0.02642912,96.06821323],[4.53374227,0.02643084,96.06901453],[4.53374281,0.02643256,96.06981654],[4.53374336,0.02643428,96.07061923],[4.5337439,0.026436,96.07142257],[4.53374445,0.02643772,96.07222652],[4.53374499,0.02643943,96.07303105],[4.53374553,0.02644115,96.07383614],[4.53374608,0.02644287,96.07464175],[4.53374662,0.02644459,96.07544784],[4.53374717,0.02644631,96.0762544],[4.53374771,0.02644803,96.07706138],[4.53374826,0.02644975,96.07786875],[4.5337488,0.02645147,96.07867649],[4.53374935,0.02645319,96.07948456],[4.53374989,0.02645491,96.08029292],[4.53375043,0.02645662,96.08110155],[4.53375098,0.02645834,96.08191042],[4.53375152,0.02646006,96.08271949],[4.53375207,0.02646178,96.08352873],[4.53375261,0.0264635,96.0843381],[4.53375316,0.02646522,96.08514759],[4.5337537,0.02646694,96.08595714],[4.53375425,0.02646866,96.08676673],[4.53375479,0.02647038,96.08757633],[4.53375534,0.0264721,96.08838591],[4.53375588,0.02647381,96.08919542],[4.53375642,0.02647553,96.09000485],[4.53375697,0.02647725,96.09081415],[4.53375751,0.02647897,96.09162329],[4.53375806,0.02648069,96.09243224],[4.5337586,0.02648241,96.09324097],[4.53375915,0.02648413,96.09404944],[4.53375969,0.02648585,96.09485762],[4.53376024,0.02648756,96.09566547],[4.53376078,0.02648928,96.09647297],[4.53376133,0.026491,96.09728008],[4.53376187,0.02649272,96.09808676],[4.53376242,0.02649444,96.09889298],[4.53376296,0.02649616,96.0996987],[4.53376351,0.02649788,96.1005039],[4.53376405,0.0264996,96.10130854],[4.5337646,0.02650132,96.10211259],[4.53376514,0.02650303,96.102916],[4.53376569,0.02650475,96.10371875],[4.53376623,0.02650647,96.10452079],[4.53376678,0.02650819,96.10532211],[4.53376732,0.02650991,96.10612265],[4.53376787,0.02651163,96.10692239],[4.53376841,0.02651335,96.10772129],[4.53376896,0.02651507,96.10851932],[4.5337695,0.02651678,96.10931643],[4.53377005,0.0265185,96.11011261],[4.53377059,0.02652022,96.1109078],[4.53377114,0.02652194,96.11170198],[4.53377168,0.02652366,96.11249511],[4.53377223,0.02652538,96.11328715],[4.53377277,0.0265271,96.11407807],[4.53377332,0.02652882,96.11486784],[4.53377386,0.02653054,96.11565642],[4.53377441,0.02653225,96.11644377],[4.53377495,0.02653397,96.11722986],[4.5337755,0.02653569,96.11801466],[4.53377604,0.02653741,96.11879812],[4.53377659,0.02653913,96.11958022],[4.53377713,0.02654085,96.12036091],[4.53377768,0.02654257,96.12114016],[4.53377822,0.02654429,96.12191795],[4.53377877,0.026546,96.12269427],[4.53377931,0.02654772,96.1234692],[4.53377986,0.02654944,96.12424277],[4.5337804,0.02655116,96.12501506],[4.53378095,0.02655288,96.12578612],[4.53378149,0.0265546,96.12655601],[4.53378204,0.02655632,96.12732479],[4.53378258,0.02655804,96.12809252],[4.53378313,0.02655976,96.12885925],[4.53378367,0.02656147,96.12962505],[4.53378422,0.02656319,96.13038998],[4.53378476,0.02656491,96.13115409],[4.53378531,0.02656663,96.13191744],[4.53378585,0.02656835,96.1326801],[4.5337864,0.02657007,96.13344212],[4.53378695,0.02657179,96.13420356],[4.53378749,0.0265735,96.13496449],[4.53378804,0.02657522,96.13572496],[4.53378858,0.02657694,96.13648504],[4.53378913,0.02657866,96.13724477],[4.53378967,0.02658038,96.13800423],[4.53379022,0.0265821,96.13876347],[4.53379077,0.02658382,96.13952255],[4.53379131,0.02658553,96.14028153],[4.53379186,0.02658725,96.14104047],[4.5337924,0.02658897,96.14179943],[4.53379295,0.02659069,96.14255847],[4.53379349,0.02659241,96.14331765],[4.53379404,0.02659413,96.14407703],[4.53379459,0.02659585,96.14483667],[4.53379513,0.02659756,96.14559662],[4.53379568,0.02659928,96.14635694],[4.53379622,0.026601,96.1471177],[4.53379677,0.02660272,96.14787895],[4.53379732,0.02660444,96.14864073],[4.53379786,0.02660616,96.14940298],[4.53379841,0.02660788,96.15016565],[4.53379895,0.02660959,96.15092866],[4.5337995,0.02661131,96.15169194],[4.53380004,0.02661303,96.15245542],[4.53380059,0.02661475,96.15321903],[4.53380113,0.02661647,96.15398271],[4.53380168,0.02661819,96.15474637],[4.53380223,0.02661991,96.15550995],[4.53380277,0.02662163,96.15627339],[4.53380332,0.02662334,96.1570366],[4.53380386,0.02662506,96.15779952],[4.53380441,0.02662678,96.15856208],[4.53380495,0.0266285,96.1593242],[4.53380549,0.02663022,96.16008581],[4.53380604,0.02663194,96.16084685],[4.53380658,0.02663366,96.16160725],[4.53380713,0.02663538,96.16236693],[4.53380767,0.0266371,96.16312582],[4.53380822,0.02663881,96.16388387],[4.53380876,0.02664053,96.16464099],[4.53380931,0.02664225,96.16539713],[4.53380985,0.02664397,96.16615221],[4.53381039,0.02664569,96.16690616],[4.53381094,0.02664741,96.16765893],[4.53381148,0.02664913,96.16841043],[4.53381203,0.02665085,96.1691606],[4.53381257,0.02665257,96.16990937],[4.53381311,0.02665429,96.17065668],[4.53381366,0.02665601,96.17140245],[4.5338142,0.02665773,96.17214662],[4.53381475,0.02665944,96.17288912],[4.53381529,0.02666116,96.17362988],[4.53381583,0.02666288,96.17436884],[4.53381638,0.0266646,96.17510592],[4.53381692,0.02666632,96.17584107],[4.53381746,0.02666804,96.17657421],[4.53381801,0.02666976,96.17730527],[4.53381855,0.02667148,96.1780342],[4.53381909,0.0266732,96.17876092],[4.53381964,0.02667492,96.17948536],[4.53382018,0.02667664,96.18020747],[4.53382072,0.02667836,96.18092717],[4.53382127,0.02668008,96.1816444],[4.53382181,0.0266818,96.1823591],[4.53382235,0.02668351,96.1830712],[4.53380999,0.02668747,96.1830712]]],"type":"Polygon"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":2,"type":"none","predecessorId":2,"sOffset":177.600614965}},{"geometry":{"coordinates":[[[4.53342999,0.02597467,95.68423833],[4.53342944,0.02597295,95.68336341],[4.53342889,0.02597124,95.68248904],[4.53342834,0.02596952,95.6816152],[4.53342779,0.0259678,95.6807419],[4.53342724,0.02596609,95.67986914],[4.53342669,0.02596437,95.67899693],[4.53342614,0.02596265,95.67812525],[4.53342559,0.02596094,95.67725412],[4.53342505,0.02595922,95.67638353],[4.5334245,0.0259575,95.67551348],[4.53342395,0.02595579,95.67464398],[4.5334234,0.02595407,95.67377501],[4.53342285,0.02595235,95.67290659],[4.5334223,0.02595064,95.67203871],[4.53342175,0.02594892,95.67117138],[4.5334212,0.02594721,95.67030458],[4.53342065,0.02594549,95.66943834],[4.5334201,0.02594377,95.66857263],[4.53341955,0.02594206,95.66770747],[4.533419,0.02594034,95.66684285],[4.53341845,0.02593862,95.66597877],[4.5334179,0.02593691,95.66511524],[4.53341735,0.02593519,95.66425225],[4.5334168,0.02593347,95.6633898],[4.53341625,0.02593176,95.66252789],[4.5334157,0.02593004,95.66166653],[4.53341515,0.02592833,95.66080571],[4.5334146,0.02592661,95.65994543],[4.53341405,0.02592489,95.65908569],[4.5334135,0.02592318,95.6582265],[4.53341295,0.02592146,95.65736784],[4.5334124,0.02591975,95.65650973],[4.53341185,0.02591803,95.65565215],[4.5334113,0.02591631,95.65479512],[4.53341075,0.0259146,95.65393863],[4.5334102,0.02591288,95.65308267],[4.53340965,0.02591117,95.65222725],[4.5334091,0.02590945,95.65137238],[4.53340854,0.02590773,95.65051804],[4.53340799,0.02590602,95.64966424],[4.53340744,0.0259043,95.64881097],[4.53340689,0.02590259,95.64795825],[4.53340634,0.02590087,95.64710605],[4.53340579,0.02589916,95.6462544],[4.53340523,0.02589744,95.64540327],[4.53340468,0.02589572,95.64455266],[4.53340413,0.02589401,95.64370256],[4.53340358,0.02589229,95.64285302],[4.53340302,0.02589058,95.64200417],[4.53340247,0.02588886,95.64115614],[4.53340192,0.02588715,95.64030907],[4.53340136,0.02588543,95.63946308],[4.53340081,0.02588372,95.63861832],[4.53340026,0.025882,95.63777491],[4.53339971,0.02588029,95.63693298],[4.53339916,0.02587857,95.63609267],[4.5333986,0.02587685,95.63525412],[4.53339805,0.02587514,95.63441745],[4.5333975,0.02587342,95.6335828],[4.53339695,0.02587171,95.6327503],[4.5333964,0.02586999,95.63192009],[4.53339585,0.02586827,95.63109229],[4.5333953,0.02586656,95.63026706],[4.53339476,0.02586484,95.62944451],[4.53339421,0.02586312,95.62862479],[4.53339366,0.02586141,95.62780802],[4.53339311,0.02585969,95.62699435],[4.53339257,0.02585797,95.62618386],[4.53339202,0.02585625,95.62537642],[4.53339148,0.02585453,95.62457183],[4.53339094,0.02585282,95.62376991],[4.5333904,0.0258511,95.62297046],[4.53338985,0.02584938,95.62217328],[4.53338931,0.02584766,95.62137818],[4.53338877,0.02584594,95.62058483],[4.53338823,0.02584422,95.61979279],[4.53338769,0.0258425,95.6190016],[4.53338716,0.02584078,95.61821081],[4.53338662,0.02583906,95.61741996],[4.53338608,0.02583734,95.61662861],[4.53338554,0.02583562,95.61583629],[4.53338501,0.0258339,95.61504255],[4.53338447,0.02583218,95.61424694],[4.53338393,0.02583045,95.6134491],[4.5333834,0.02582873,95.61264912],[4.53338286,0.02582701,95.61184719],[4.53338233,0.02582529,95.6110435],[4.5333818,0.02582357,95.61023823],[4.53338126,0.02582185,95.60943159],[4.53338073,0.02582013,95.60862376],[4.53338019,0.02581841,95.60781493],[4.53337966,0.02581669,95.60700529],[4.53337913,0.02581496,95.60619504],[4.53337859,0.02581324,95.60538438],[4.53337806,0.02581152,95.60457348],[4.53337753,0.0258098,95.60376254],[4.53337699,0.02580808,95.60295176],[4.53337646,0.02580636,95.60214132],[4.53337592,0.02580463,95.60133141],[4.53337539,0.02580291,95.60052221],[4.53337485,0.02580119,95.59971392],[4.53337432,0.02579947,95.59890672],[4.53337378,0.02579775,95.5981008],[4.53337325,0.02579603,95.59729635],[4.53337271,0.02579431,95.59649355],[4.53337217,0.02579259,95.59569235],[4.53337164,0.02579087,95.59489252],[4.5333711,0.02578915,95.59409391],[4.53337056,0.02578743,95.59329646],[4.53337002,0.02578571,95.59250013],[4.53336948,0.02578399,95.59170488],[4.53336893,0.02578227,95.59091067],[4.53336839,0.02578055,95.59011745],[4.53336784,0.02577883,95.58932518],[4.5333673,0.02577712,95.58853383],[4.53336675,0.0257754,95.58774334],[4.53336621,0.02577368,95.58695367],[4.53336566,0.02577196,95.58616479],[4.53336511,0.02577025,95.58537664],[4.53336456,0.02576853,95.58458919],[4.53336402,0.02576681,95.5838024],[4.53336347,0.0257651,95.58301621],[4.53336292,0.02576338,95.58223059],[4.53336237,0.02576166,95.58144549],[4.53336182,0.02575995,95.58066089],[4.53336127,0.02575823,95.57987678],[4.53336072,0.02575651,95.57909316],[4.53336017,0.0257548,95.57831002],[4.53335962,0.02575308,95.57752735],[4.53335907,0.02575136,95.57674514],[4.53335853,0.02574965,95.57596339],[4.53335798,0.02574793,95.57518212],[4.53335743,0.02574621,95.5744015],[4.53335688,0.0257445,95.57362167],[4.53335633,0.02574278,95.57284267],[4.53335578,0.02574106,95.57206447],[4.53335523,0.02573935,95.57128707],[4.53335468,0.02573763,95.57051044],[4.53335413,0.02573591,95.56973459],[4.53335358,0.0257342,95.5689595],[4.53335303,0.02573248,95.56818516],[4.53335248,0.02573077,95.56741158],[4.53335193,0.02572905,95.56663873],[4.53335138,0.02572733,95.56586662],[4.53335083,0.02572562,95.56509524],[4.53335027,0.0257239,95.56432458],[4.53334972,0.02572219,95.56355463],[4.53334916,0.02572047,95.56278539],[4.53334861,0.02571876,95.56201684],[4.53334805,0.02571705,95.56124898],[4.53334749,0.02571533,95.56048181],[4.53334693,0.02571362,95.55971532],[4.53334637,0.02571191,95.55894948],[4.53334581,0.02571019,95.55818419],[4.53334525,0.02570848,95.55741919],[4.53334469,0.02570677,95.55665423],[4.53334413,0.02570506,95.55588908],[4.53334356,0.02570335,95.55512355],[4.533343,0.02570163,95.55435771],[4.53334243,0.02569992,95.55359168],[4.53334187,0.02569821,95.55282561],[4.5333413,0.0256965,95.55205962],[4.53334073,0.02569479,95.55129384],[4.53334016,0.02569308,95.55052841],[4.5333396,0.02569137,95.54976346],[4.53333903,0.02568966,95.54899912],[4.53333846,0.02568795,95.54823553],[4.53333789,0.02568624,95.54747281],[4.53333733,0.02568453,95.5467111],[4.53333676,0.02568282,95.54595052],[4.53333619,0.02568111,95.5451912],[4.53333563,0.02567939,95.54443328],[4.53333506,0.02567768,95.54367689],[4.5333345,0.02567597,95.54292215],[4.53333394,0.02567426,95.5421692],[4.53333337,0.02567255,95.54141816],[4.53333281,0.02567083,95.54066917],[4.53333225,0.02566912,95.53992236],[4.5333317,0.02566741,95.53917785],[4.53333114,0.02566569,95.53843577],[4.53333058,0.02566398,95.53769627],[4.53333003,0.02566226,95.53695945],[4.53332948,0.02566055,95.5362252],[4.53332893,0.02565883,95.5354932],[4.53332838,0.02565712,95.53476308],[4.53332783,0.0256554,95.5340345],[4.53332729,0.02565368,95.53330711],[4.53332674,0.02565196,95.53258056],[4.5333262,0.02565024,95.5318545],[4.53332566,0.02564853,95.53112858],[4.53332512,0.02564681,95.53040247],[4.53332458,0.02564509,95.52967584],[4.53332403,0.02564337,95.52894855],[4.53332349,0.02564165,95.52822065],[4.53332295,0.02563993,95.52749218],[4.53332241,0.02563821,95.52676317],[4.53332187,0.02563649,95.52603364],[4.53332133,0.02563477,95.52530357],[4.5333208,0.02563305,95.52457298],[4.53332026,0.02563133,95.52384186],[4.53331972,0.02562961,95.52311021],[4.53331918,0.02562789,95.52237802],[4.53331864,0.02562617,95.52164531],[4.5333181,0.02562445,95.52091207],[4.53331756,0.02562274,95.52017829],[4.53331702,0.02562102,95.51944399],[4.53331648,0.0256193,95.51870915],[4.53331594,0.02561758,95.51797378],[4.53331539,0.02561586,95.51723788],[4.53331485,0.02561414,95.51650144],[4.53331431,0.02561242,95.51576447],[4.53331377,0.0256107,95.51502696],[4.53331322,0.02560899,95.51428892],[4.53331268,0.02560727,95.51355035],[4.53331213,0.02560555,95.51281124],[4.53331158,0.02560383,95.51207166],[4.53331103,0.02560212,95.51133189],[4.53331049,0.0256004,95.5105923],[4.53330994,0.02559868,95.50985321],[4.53330939,0.02559697,95.50911481],[4.53330884,0.02559525,95.50837707],[4.53330829,0.02559354,95.50763996],[4.53330774,0.02559182,95.50690348],[4.53330719,0.0255901,95.50616759],[4.53330664,0.02558839,95.50543227],[4.53330609,0.02558667,95.5046975],[4.53330553,0.02558496,95.50396325],[4.53330498,0.02558324,95.5032295],[4.53330443,0.02558153,95.50249624],[4.53330388,0.02557981,95.50176343],[4.53330332,0.02557809,95.50103105],[4.53330277,0.02557638,95.50029908],[4.53330222,0.02557466,95.4995675],[4.53330167,0.02557295,95.49883628],[4.53330111,0.02557123,95.4981054],[4.53330056,0.02556952,95.49737484],[4.5333,0.02556781,95.49664458],[4.53329945,0.02556609,95.49591458],[4.5332989,0.02556438,95.49518484],[4.53329834,0.02556266,95.49445532],[4.53329779,0.02556095,95.493726],[4.53329723,0.02555923,95.49299687],[4.53329668,0.02555752,95.49226789],[4.53329612,0.0255558,95.49153905],[4.53329557,0.02555409,95.48671351],[4.53329501,0.02555237,95.47914782],[4.53329492,0.02555209,95.47753252],[4.53332796,0.02554135,95.47753252],[4.53332865,0.02554144,95.47914782],[4.53333225,0.02554217,95.48671351],[4.5333343,0.02554339,95.49153905],[4.53333504,0.02554505,95.49226789],[4.53333559,0.02554677,95.49299687],[4.53333614,0.02554848,95.493726],[4.5333367,0.0255502,95.49445532],[4.53333725,0.02555191,95.49518484],[4.5333378,0.02555363,95.49591458],[4.53333835,0.02555534,95.49664458],[4.5333389,0.02555706,95.49737484],[4.53333946,0.02555878,95.4981054],[4.53334001,0.02556049,95.49883628],[4.53334056,0.02556221,95.4995675],[4.53334111,0.02556392,95.50029908],[4.53334166,0.02556564,95.50103105],[4.53334221,0.02556736,95.50176343],[4.53334276,0.02556907,95.50249624],[4.53334331,0.02557079,95.5032295],[4.53334386,0.0255725,95.50396325],[4.53334441,0.02557422,95.5046975],[4.53334496,0.02557594,95.50543227],[4.53334551,0.02557765,95.50616759],[4.53334606,0.02557937,95.50690348],[4.53334662,0.02558108,95.50763996],[4.53334717,0.0255828,95.50837707],[4.53334772,0.02558452,95.50911481],[4.53334827,0.02558623,95.50985321],[4.53334882,0.02558795,95.5105923],[4.53334937,0.02558966,95.51133189],[4.53334992,0.02559138,95.51207166],[4.53335047,0.0255931,95.51281124],[4.53335102,0.02559481,95.51355035],[4.53335158,0.02559653,95.51428892],[4.53335213,0.02559824,95.51502696],[4.53335268,0.02559996,95.51576447],[4.53335323,0.02560168,95.51650144],[4.53335378,0.02560339,95.51723788],[4.53335433,0.02560511,95.51797378],[4.53335488,0.02560683,95.51870915],[4.53335543,0.02560854,95.51944399],[4.53335598,0.02561026,95.52017829],[4.53335653,0.02561197,95.52091207],[4.53335708,0.02561369,95.52164531],[4.53335763,0.02561541,95.52237802],[4.53335818,0.02561712,95.52311021],[4.53335873,0.02561884,95.52384186],[4.53335928,0.02562056,95.52457298],[4.53335983,0.02562227,95.52530357],[4.53336038,0.02562399,95.52603364],[4.53336093,0.02562571,95.52676317],[4.53336148,0.02562742,95.52749218],[4.53336203,0.02562914,95.52822065],[4.53336258,0.02563086,95.52894855],[4.53336312,0.02563257,95.52967584],[4.53336367,0.02563429,95.53040247],[4.53336422,0.02563601,95.53112858],[4.53336477,0.02563772,95.5318545],[4.53336532,0.02563944,95.53258056],[4.53336587,0.02564116,95.53330711],[4.53336641,0.02564287,95.5340345],[4.53336696,0.02564459,95.53476308],[4.53336751,0.02564631,95.5354932],[4.53336806,0.02564802,95.5362252],[4.53336861,0.02564974,95.53695945],[4.53336916,0.02565146,95.53769627],[4.53336972,0.02565317,95.53843577],[4.53337027,0.02565489,95.53917785],[4.53337082,0.0256566,95.53992236],[4.53337137,0.02565832,95.54066917],[4.53337193,0.02566003,95.54141816],[4.53337248,0.02566175,95.5421692],[4.53337304,0.02566346,95.54292215],[4.53337359,0.02566518,95.54367689],[4.53337415,0.02566689,95.54443328],[4.5333747,0.02566861,95.5451912],[4.53337526,0.02567032,95.54595052],[4.53337582,0.02567204,95.5467111],[4.53337637,0.02567375,95.54747281],[4.53337693,0.02567546,95.54823553],[4.53337749,0.02567718,95.54899912],[4.53337804,0.02567889,95.54976346],[4.5333786,0.02568061,95.55052841],[4.53337916,0.02568232,95.55129384],[4.53337971,0.02568404,95.55205962],[4.53338027,0.02568575,95.55282561],[4.53338083,0.02568746,95.55359168],[4.53338138,0.02568918,95.55435771],[4.53338194,0.02569089,95.55512355],[4.53338249,0.02569261,95.55588908],[4.53338305,0.02569432,95.55665423],[4.5333836,0.02569604,95.55741919],[4.53338416,0.02569775,95.55818419],[4.53338471,0.02569947,95.55894948],[4.53338526,0.02570118,95.55971532],[4.53338582,0.0257029,95.56048181],[4.53338637,0.02570461,95.56124898],[4.53338692,0.02570633,95.56201684],[4.53338748,0.02570805,95.56278539],[4.53338803,0.02570976,95.56355463],[4.53338858,0.02571148,95.56432458],[4.53338914,0.02571319,95.56509524],[4.53338969,0.02571491,95.56586662],[4.53339024,0.02571662,95.56663873],[4.53339079,0.02571834,95.56741158],[4.53339135,0.02572005,95.56818516],[4.5333919,0.02572177,95.5689595],[4.53339245,0.02572349,95.56973459],[4.533393,0.0257252,95.57051044],[4.53339355,0.02572692,95.57128707],[4.5333941,0.02572863,95.57206447],[4.53339465,0.02573035,95.57284267],[4.5333952,0.02573207,95.57362167],[4.53339576,0.02573378,95.5744015],[4.53339631,0.0257355,95.57518212],[4.53339686,0.02573722,95.57596339],[4.53339741,0.02573893,95.57674514],[4.53339796,0.02574065,95.57752735],[4.5333985,0.02574237,95.57831002],[4.53339905,0.02574408,95.57909316],[4.5333996,0.0257458,95.57987678],[4.53340015,0.02574752,95.58066089],[4.5334007,0.02574923,95.58144549],[4.53340125,0.02575095,95.58223059],[4.5334018,0.02575267,95.58301621],[4.53340234,0.02575438,95.5838024],[4.53340289,0.0257561,95.58458919],[4.53340344,0.02575782,95.58537664],[4.53340399,0.02575954,95.58616479],[4.53340453,0.02576125,95.58695367],[4.53340508,0.02576297,95.58774334],[4.53340563,0.02576469,95.58853383],[4.53340618,0.0257664,95.58932518],[4.53340672,0.02576812,95.59011745],[4.53340727,0.02576984,95.59091067],[4.53340782,0.02577156,95.59170488],[4.53340837,0.02577327,95.59250013],[4.53340891,0.02577499,95.59329646],[4.53340946,0.02577671,95.59409391],[4.53341001,0.02577843,95.59489252],[4.53341055,0.02578014,95.59569235],[4.5334111,0.02578186,95.59649355],[4.53341165,0.02578358,95.59729635],[4.5334122,0.0257853,95.5981008],[4.53341275,0.02578701,95.59890672],[4.5334133,0.02578873,95.59971392],[4.53341384,0.02579045,95.60052221],[4.53341439,0.02579216,95.60133141],[4.53341494,0.02579388,95.60214132],[4.53341549,0.0257956,95.60295176],[4.53341604,0.02579731,95.60376254],[4.53341659,0.02579903,95.60457348],[4.53341713,0.02580075,95.60538438],[4.53341768,0.02580247,95.60619504],[4.53341823,0.02580418,95.60700529],[4.53341878,0.0258059,95.60781493],[4.53341932,0.02580762,95.60862376],[4.53341987,0.02580934,95.60943159],[4.53342042,0.02581105,95.61023823],[4.53342096,0.02581277,95.6110435],[4.5334215,0.02581449,95.61184719],[4.53342205,0.02581621,95.61264912],[4.53342259,0.02581792,95.6134491],[4.53342313,0.02581964,95.61424694],[4.53342368,0.02582136,95.61504255],[4.53342422,0.02582308,95.61583629],[4.53342476,0.0258248,95.61662861],[4.5334253,0.02582652,95.61741996],[4.53342584,0.02582824,95.61821081],[4.53342638,0.02582996,95.6190016],[4.53342691,0.02583168,95.61979279],[4.53342745,0.0258334,95.62058483],[4.53342799,0.02583512,95.62137818],[4.53342853,0.02583684,95.62217328],[4.53342907,0.02583856,95.62297046],[4.53342961,0.02584028,95.62376991],[4.53343016,0.025842,95.62457183],[4.5334307,0.02584372,95.62537642],[4.53343124,0.02584544,95.62618386],[4.53343178,0.02584716,95.62699435],[4.53343233,0.02584888,95.62780802],[4.53343287,0.02585059,95.62862479],[4.53343342,0.02585231,95.62944451],[4.53343396,0.02585403,95.63026706],[4.53343451,0.02585575,95.63109229],[4.53343506,0.02585746,95.63192009],[4.53343561,0.02585918,95.6327503],[4.53343615,0.0258609,95.6335828],[4.5334367,0.02586261,95.63441745],[4.53343725,0.02586433,95.63525412],[4.5334378,0.02586605,95.63609267],[4.53343835,0.02586776,95.63693298],[4.5334389,0.02586948,95.63777491],[4.53343945,0.0258712,95.63861832],[4.53344,0.02587291,95.63946308],[4.53344055,0.02587463,95.64030907],[4.5334411,0.02587635,95.64115614],[4.53344166,0.02587806,95.64200417],[4.53344221,0.02587978,95.64285302],[4.53344276,0.02588149,95.64370256],[4.53344331,0.02588321,95.64455266],[4.53344386,0.02588493,95.64540327],[4.53344441,0.02588664,95.6462544],[4.53344496,0.02588836,95.64710605],[4.53344551,0.02589008,95.64795825],[4.53344606,0.02589179,95.64881097],[4.53344661,0.02589351,95.64966424],[4.53344716,0.02589523,95.65051804],[4.53344771,0.02589694,95.65137238],[4.53344826,0.02589866,95.65222725],[4.53344881,0.02590037,95.65308267],[4.53344936,0.02590209,95.65393863],[4.53344991,0.02590381,95.65479512],[4.53345046,0.02590552,95.65565215],[4.53345101,0.02590724,95.65650973],[4.53345156,0.02590896,95.65736784],[4.53345211,0.02591067,95.6582265],[4.53345266,0.02591239,95.65908569],[4.53345321,0.02591411,95.65994543],[4.53345376,0.02591582,95.66080571],[4.53345431,0.02591754,95.66166653],[4.53345486,0.02591926,95.66252789],[4.53345541,0.02592097,95.6633898],[4.53345596,0.02592269,95.66425225],[4.53345651,0.02592441,95.66511524],[4.53345706,0.02592612,95.66597877],[4.5334576,0.02592784,95.66684285],[4.53345815,0.02592956,95.66770747],[4.5334587,0.02593127,95.66857263],[4.53345925,0.02593299,95.66943834],[4.5334598,0.02593471,95.67030458],[4.53346035,0.02593642,95.67117138],[4.5334609,0.02593814,95.67203871],[4.53346145,0.02593986,95.67290659],[4.533462,0.02594157,95.67377501],[4.53346255,0.02594329,95.67464398],[4.5334631,0.02594501,95.67551348],[4.53346365,0.02594672,95.67638353],[4.53346419,0.02594844,95.67725412],[4.53346474,0.02595016,95.67812525],[4.53346529,0.02595187,95.67899693],[4.53346584,0.02595359,95.67986914],[4.53346639,0.02595531,95.6807419],[4.53346694,0.02595702,95.6816152],[4.53346749,0.02595874,95.68248904],[4.53346804,0.02596046,95.68336341],[4.53346859,0.02596217,95.68423833],[4.53342999,0.02597467,95.68423833]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-7,"type":"none","predecessorId":-7,"sOffset":265.8100035851}},{"geometry":{"coordinates":[[[4.53346859,0.02596217,95.68423833],[4.53346804,0.02596046,95.68336341],[4.53346749,0.02595874,95.68248904],[4.53346694,0.02595702,95.6816152],[4.53346639,0.02595531,95.6807419],[4.53346584,0.02595359,95.67986914],[4.53346529,0.02595187,95.67899693],[4.53346474,0.02595016,95.67812525],[4.53346419,0.02594844,95.67725412],[4.53346365,0.02594672,95.67638353],[4.5334631,0.02594501,95.67551348],[4.53346255,0.02594329,95.67464398],[4.533462,0.02594157,95.67377501],[4.53346145,0.02593986,95.67290659],[4.5334609,0.02593814,95.67203871],[4.53346035,0.02593642,95.67117138],[4.5334598,0.02593471,95.67030458],[4.53345925,0.02593299,95.66943834],[4.5334587,0.02593127,95.66857263],[4.53345815,0.02592956,95.66770747],[4.5334576,0.02592784,95.66684285],[4.53345706,0.02592612,95.66597877],[4.53345651,0.02592441,95.66511524],[4.53345596,0.02592269,95.66425225],[4.53345541,0.02592097,95.6633898],[4.53345486,0.02591926,95.66252789],[4.53345431,0.02591754,95.66166653],[4.53345376,0.02591582,95.66080571],[4.53345321,0.02591411,95.65994543],[4.53345266,0.02591239,95.65908569],[4.53345211,0.02591067,95.6582265],[4.53345156,0.02590896,95.65736784],[4.53345101,0.02590724,95.65650973],[4.53345046,0.02590552,95.65565215],[4.53344991,0.02590381,95.65479512],[4.53344936,0.02590209,95.65393863],[4.53344881,0.02590037,95.65308267],[4.53344826,0.02589866,95.65222725],[4.53344771,0.02589694,95.65137238],[4.53344716,0.02589523,95.65051804],[4.53344661,0.02589351,95.64966424],[4.53344606,0.02589179,95.64881097],[4.53344551,0.02589008,95.64795825],[4.53344496,0.02588836,95.64710605],[4.53344441,0.02588664,95.6462544],[4.53344386,0.02588493,95.64540327],[4.53344331,0.02588321,95.64455266],[4.53344276,0.02588149,95.64370256],[4.53344221,0.02587978,95.64285302],[4.53344166,0.02587806,95.64200417],[4.5334411,0.02587635,95.64115614],[4.53344055,0.02587463,95.64030907],[4.53344,0.02587291,95.63946308],[4.53343945,0.0258712,95.63861832],[4.5334389,0.02586948,95.63777491],[4.53343835,0.02586776,95.63693298],[4.5334378,0.02586605,95.63609267],[4.53343725,0.02586433,95.63525412],[4.5334367,0.02586261,95.63441745],[4.53343615,0.0258609,95.6335828],[4.53343561,0.02585918,95.6327503],[4.53343506,0.02585746,95.63192009],[4.53343451,0.02585575,95.63109229],[4.53343396,0.02585403,95.63026706],[4.53343342,0.02585231,95.62944451],[4.53343287,0.02585059,95.62862479],[4.53343233,0.02584888,95.62780802],[4.53343178,0.02584716,95.62699435],[4.53343124,0.02584544,95.62618386],[4.5334307,0.02584372,95.62537642],[4.53343016,0.025842,95.62457183],[4.53342961,0.02584028,95.62376991],[4.53342907,0.02583856,95.62297046],[4.53342853,0.02583684,95.62217328],[4.53342799,0.02583512,95.62137818],[4.53342745,0.0258334,95.62058483],[4.53342691,0.02583168,95.61979279],[4.53342638,0.02582996,95.6190016],[4.53342584,0.02582824,95.61821081],[4.5334253,0.02582652,95.61741996],[4.53342476,0.0258248,95.61662861],[4.53342422,0.02582308,95.61583629],[4.53342368,0.02582136,95.61504255],[4.53342313,0.02581964,95.61424694],[4.53342259,0.02581792,95.6134491],[4.53342205,0.02581621,95.61264912],[4.5334215,0.02581449,95.61184719],[4.53342096,0.02581277,95.6110435],[4.53342042,0.02581105,95.61023823],[4.53341987,0.02580934,95.60943159],[4.53341932,0.02580762,95.60862376],[4.53341878,0.0258059,95.60781493],[4.53341823,0.02580418,95.60700529],[4.53341768,0.02580247,95.60619504],[4.53341713,0.02580075,95.60538438],[4.53341659,0.02579903,95.60457348],[4.53341604,0.02579731,95.60376254],[4.53341549,0.0257956,95.60295176],[4.53341494,0.02579388,95.60214132],[4.53341439,0.02579216,95.60133141],[4.53341384,0.02579045,95.60052221],[4.5334133,0.02578873,95.59971392],[4.53341275,0.02578701,95.59890672],[4.5334122,0.0257853,95.5981008],[4.53341165,0.02578358,95.59729635],[4.5334111,0.02578186,95.59649355],[4.53341055,0.02578014,95.59569235],[4.53341001,0.02577843,95.59489252],[4.53340946,0.02577671,95.59409391],[4.53340891,0.02577499,95.59329646],[4.53340837,0.02577327,95.59250013],[4.53340782,0.02577156,95.59170488],[4.53340727,0.02576984,95.59091067],[4.53340672,0.02576812,95.59011745],[4.53340618,0.0257664,95.58932518],[4.53340563,0.02576469,95.58853383],[4.53340508,0.02576297,95.58774334],[4.53340453,0.02576125,95.58695367],[4.53340399,0.02575954,95.58616479],[4.53340344,0.02575782,95.58537664],[4.53340289,0.0257561,95.58458919],[4.53340234,0.02575438,95.5838024],[4.5334018,0.02575267,95.58301621],[4.53340125,0.02575095,95.58223059],[4.5334007,0.02574923,95.58144549],[4.53340015,0.02574752,95.58066089],[4.5333996,0.0257458,95.57987678],[4.53339905,0.02574408,95.57909316],[4.5333985,0.02574237,95.57831002],[4.53339796,0.02574065,95.57752735],[4.53339741,0.02573893,95.57674514],[4.53339686,0.02573722,95.57596339],[4.53339631,0.0257355,95.57518212],[4.53339576,0.02573378,95.5744015],[4.5333952,0.02573207,95.57362167],[4.53339465,0.02573035,95.57284267],[4.5333941,0.02572863,95.57206447],[4.53339355,0.02572692,95.57128707],[4.533393,0.0257252,95.57051044],[4.53339245,0.02572349,95.56973459],[4.5333919,0.02572177,95.5689595],[4.53339135,0.02572005,95.56818516],[4.53339079,0.02571834,95.56741158],[4.53339024,0.02571662,95.56663873],[4.53338969,0.02571491,95.56586662],[4.53338914,0.02571319,95.56509524],[4.53338858,0.02571148,95.56432458],[4.53338803,0.02570976,95.56355463],[4.53338748,0.02570805,95.56278539],[4.53338692,0.02570633,95.56201684],[4.53338637,0.02570461,95.56124898],[4.53338582,0.0257029,95.56048181],[4.53338526,0.02570118,95.55971532],[4.53338471,0.02569947,95.55894948],[4.53338416,0.02569775,95.55818419],[4.5333836,0.02569604,95.55741919],[4.53338305,0.02569432,95.55665423],[4.53338249,0.02569261,95.55588908],[4.53338194,0.02569089,95.55512355],[4.53338138,0.02568918,95.55435771],[4.53338083,0.02568746,95.55359168],[4.53338027,0.02568575,95.55282561],[4.53337971,0.02568404,95.55205962],[4.53337916,0.02568232,95.55129384],[4.5333786,0.02568061,95.55052841],[4.53337804,0.02567889,95.54976346],[4.53337749,0.02567718,95.54899912],[4.53337693,0.02567546,95.54823553],[4.53337637,0.02567375,95.54747281],[4.53337582,0.02567204,95.5467111],[4.53337526,0.02567032,95.54595052],[4.5333747,0.02566861,95.5451912],[4.53337415,0.02566689,95.54443328],[4.53337359,0.02566518,95.54367689],[4.53337304,0.02566346,95.54292215],[4.53337248,0.02566175,95.5421692],[4.53337193,0.02566003,95.54141816],[4.53337137,0.02565832,95.54066917],[4.53337082,0.0256566,95.53992236],[4.53337027,0.02565489,95.53917785],[4.53336972,0.02565317,95.53843577],[4.53336916,0.02565146,95.53769627],[4.53336861,0.02564974,95.53695945],[4.53336806,0.02564802,95.5362252],[4.53336751,0.02564631,95.5354932],[4.53336696,0.02564459,95.53476308],[4.53336641,0.02564287,95.5340345],[4.53336587,0.02564116,95.53330711],[4.53336532,0.02563944,95.53258056],[4.53336477,0.02563772,95.5318545],[4.53336422,0.02563601,95.53112858],[4.53336367,0.02563429,95.53040247],[4.53336312,0.02563257,95.52967584],[4.53336258,0.02563086,95.52894855],[4.53336203,0.02562914,95.52822065],[4.53336148,0.02562742,95.52749218],[4.53336093,0.02562571,95.52676317],[4.53336038,0.02562399,95.52603364],[4.53335983,0.02562227,95.52530357],[4.53335928,0.02562056,95.52457298],[4.53335873,0.02561884,95.52384186],[4.53335818,0.02561712,95.52311021],[4.53335763,0.02561541,95.52237802],[4.53335708,0.02561369,95.52164531],[4.53335653,0.02561197,95.52091207],[4.53335598,0.02561026,95.52017829],[4.53335543,0.02560854,95.51944399],[4.53335488,0.02560683,95.51870915],[4.53335433,0.02560511,95.51797378],[4.53335378,0.02560339,95.51723788],[4.53335323,0.02560168,95.51650144],[4.53335268,0.02559996,95.51576447],[4.53335213,0.02559824,95.51502696],[4.53335158,0.02559653,95.51428892],[4.53335102,0.02559481,95.51355035],[4.53335047,0.0255931,95.51281124],[4.53334992,0.02559138,95.51207166],[4.53334937,0.02558966,95.51133189],[4.53334882,0.02558795,95.5105923],[4.53334827,0.02558623,95.50985321],[4.53334772,0.02558452,95.50911481],[4.53334717,0.0255828,95.50837707],[4.53334662,0.02558108,95.50763996],[4.53334606,0.02557937,95.50690348],[4.53334551,0.02557765,95.50616759],[4.53334496,0.02557594,95.50543227],[4.53334441,0.02557422,95.5046975],[4.53334386,0.0255725,95.50396325],[4.53334331,0.02557079,95.5032295],[4.53334276,0.02556907,95.50249624],[4.53334221,0.02556736,95.50176343],[4.53334166,0.02556564,95.50103105],[4.53334111,0.02556392,95.50029908],[4.53334056,0.02556221,95.4995675],[4.53334001,0.02556049,95.49883628],[4.53333946,0.02555878,95.4981054],[4.5333389,0.02555706,95.49737484],[4.53333835,0.02555534,95.49664458],[4.5333378,0.02555363,95.49591458],[4.53333725,0.02555191,95.49518484],[4.5333367,0.0255502,95.49445532],[4.53333614,0.02554848,95.493726],[4.53333559,0.02554677,95.49299687],[4.53333504,0.02554505,95.49226789],[4.5333343,0.02554339,95.49153905],[4.53333225,0.02554217,95.48671351],[4.53332865,0.02554144,95.47914782],[4.53332796,0.02554135,95.47753252],[4.5333309,0.0255404,95.47753252],[4.53333144,0.02554054,95.47914782],[4.53333402,0.02554159,95.48671351],[4.5333358,0.02554291,95.49153905],[4.53333635,0.02554462,95.49226789],[4.53333691,0.02554634,95.49299687],[4.53333746,0.02554805,95.493726],[4.53333802,0.02554977,95.49445532],[4.53333857,0.02555148,95.49518484],[4.53333913,0.0255532,95.49591458],[4.53333968,0.02555491,95.49664458],[4.53334024,0.02555663,95.49737484],[4.53334079,0.02555834,95.4981054],[4.53334134,0.02556006,95.49883628],[4.5333419,0.02556177,95.4995675],[4.53334245,0.02556349,95.50029908],[4.53334301,0.0255652,95.50103105],[4.53334356,0.02556692,95.50176343],[4.53334412,0.02556863,95.50249624],[4.53334467,0.02557035,95.5032295],[4.53334522,0.02557206,95.50396325],[4.53334578,0.02557378,95.5046975],[4.53334633,0.02557549,95.50543227],[4.53334689,0.02557721,95.50616759],[4.53334744,0.02557892,95.50690348],[4.53334799,0.02558064,95.50763996],[4.53334855,0.02558235,95.50837707],[4.5333491,0.02558407,95.50911481],[4.53334966,0.02558578,95.50985321],[4.53335021,0.0255875,95.5105923],[4.53335077,0.02558921,95.51133189],[4.53335132,0.02559093,95.51207166],[4.53335187,0.02559264,95.51281124],[4.53335243,0.02559436,95.51355035],[4.53335298,0.02559607,95.51428892],[4.53335353,0.02559779,95.51502696],[4.53335409,0.0255995,95.51576447],[4.53335464,0.02560122,95.51650144],[4.53335519,0.02560293,95.51723788],[4.53335574,0.02560465,95.51797378],[4.53335629,0.02560637,95.51870915],[4.53335685,0.02560808,95.51944399],[4.5333574,0.0256098,95.52017829],[4.53335795,0.02561151,95.52091207],[4.5333585,0.02561323,95.52164531],[4.53335905,0.02561495,95.52237802],[4.5333596,0.02561666,95.52311021],[4.53336015,0.02561838,95.52384186],[4.53336069,0.0256201,95.52457298],[4.53336124,0.02562181,95.52530357],[4.53336179,0.02562353,95.52603364],[4.53336234,0.02562525,95.52676317],[4.53336289,0.02562697,95.52749218],[4.53336343,0.02562868,95.52822065],[4.53336398,0.0256304,95.52894855],[4.53336453,0.02563212,95.52967584],[4.53336507,0.02563384,95.53040247],[4.53336562,0.02563555,95.53112858],[4.53336616,0.02563727,95.5318545],[4.53336671,0.02563899,95.53258056],[4.53336725,0.02564071,95.53330711],[4.5333678,0.02564242,95.5340345],[4.53336835,0.02564414,95.53476308],[4.53336889,0.02564586,95.5354932],[4.53336944,0.02564758,95.5362252],[4.53336998,0.0256493,95.53695945],[4.53337053,0.02565101,95.53769627],[4.53337108,0.02565273,95.53843577],[4.53337163,0.02565445,95.53917785],[4.53337218,0.02565616,95.53992236],[4.53337273,0.02565788,95.54066917],[4.53337328,0.0256596,95.54141816],[4.53337383,0.02566131,95.5421692],[4.53337438,0.02566303,95.54292215],[4.53337493,0.02566474,95.54367689],[4.53337548,0.02566646,95.54443328],[4.53337603,0.02566818,95.5451912],[4.53337658,0.02566989,95.54595052],[4.53337714,0.02567161,95.5467111],[4.53337769,0.02567332,95.54747281],[4.53337824,0.02567504,95.54823553],[4.53337879,0.02567676,95.54899912],[4.53337934,0.02567847,95.54976346],[4.5333799,0.02568019,95.55052841],[4.53338045,0.0256819,95.55129384],[4.533381,0.02568362,95.55205962],[4.53338155,0.02568533,95.55282561],[4.53338211,0.02568705,95.55359168],[4.53338266,0.02568877,95.55435771],[4.53338321,0.02569048,95.55512355],[4.53338376,0.0256922,95.55588908],[4.53338431,0.02569391,95.55665423],[4.53338486,0.02569563,95.55741919],[4.53338541,0.02569735,95.55818419],[4.53338596,0.02569906,95.55894948],[4.53338651,0.02570078,95.55971532],[4.53338706,0.02570249,95.56048181],[4.53338761,0.02570421,95.56124898],[4.53338816,0.02570593,95.56201684],[4.53338871,0.02570764,95.56278539],[4.53338926,0.02570936,95.56355463],[4.53338981,0.02571108,95.56432458],[4.53339037,0.02571279,95.56509524],[4.53339092,0.02571451,95.56586662],[4.53339147,0.02571623,95.56663873],[4.53339202,0.02571794,95.56741158],[4.53339257,0.02571966,95.56818516],[4.53339312,0.02572137,95.5689595],[4.53339367,0.02572309,95.56973459],[4.53339422,0.02572481,95.57051044],[4.53339477,0.02572652,95.57128707],[4.53339532,0.02572824,95.57206447],[4.53339587,0.02572996,95.57284267],[4.53339642,0.02573167,95.57362167],[4.53339697,0.02573339,95.5744015],[4.53339752,0.0257351,95.57518212],[4.53339807,0.02573682,95.57596339],[4.53339862,0.02573854,95.57674514],[4.53339917,0.02574025,95.57752735],[4.53339972,0.02574197,95.57831002],[4.53340027,0.02574369,95.57909316],[4.53340082,0.0257454,95.57987678],[4.53340137,0.02574712,95.58066089],[4.53340192,0.02574884,95.58144549],[4.53340247,0.02575055,95.58223059],[4.53340302,0.02575227,95.58301621],[4.53340357,0.02575399,95.5838024],[4.53340412,0.0257557,95.58458919],[4.53340467,0.02575742,95.58537664],[4.53340522,0.02575914,95.58616479],[4.53340577,0.02576085,95.58695367],[4.53340632,0.02576257,95.58774334],[4.53340687,0.02576428,95.58853383],[4.53340742,0.025766,95.58932518],[4.53340797,0.02576772,95.59011745],[4.53340852,0.02576943,95.59091067],[4.53340907,0.02577115,95.59170488],[4.53340962,0.02577287,95.59250013],[4.53341017,0.02577458,95.59329646],[4.53341072,0.0257763,95.59409391],[4.53341127,0.02577802,95.59489252],[4.53341182,0.02577973,95.59569235],[4.53341237,0.02578145,95.59649355],[4.53341292,0.02578317,95.59729635],[4.53341347,0.02578488,95.5981008],[4.53341403,0.0257866,95.59890672],[4.53341458,0.02578831,95.59971392],[4.53341513,0.02579003,95.60052221],[4.53341568,0.02579175,95.60133141],[4.53341623,0.02579346,95.60214132],[4.53341678,0.02579518,95.60295176],[4.53341733,0.02579689,95.60376254],[4.53341789,0.02579861,95.60457348],[4.53341844,0.02580033,95.60538438],[4.53341899,0.02580204,95.60619504],[4.53341954,0.02580376,95.60700529],[4.53342009,0.02580548,95.60781493],[4.53342064,0.02580719,95.60862376],[4.53342119,0.02580891,95.60943159],[4.53342173,0.02581063,95.61023823],[4.53342228,0.02581234,95.6110435],[4.53342283,0.02581406,95.61184719],[4.53342337,0.02581578,95.61264912],[4.53342392,0.02581749,95.6134491],[4.53342446,0.02581921,95.61424694],[4.53342501,0.02582093,95.61504255],[4.53342555,0.02582265,95.61583629],[4.53342609,0.02582437,95.61662861],[4.53342663,0.02582609,95.61741996],[4.53342717,0.02582781,95.61821081],[4.53342771,0.02582953,95.6190016],[4.53342826,0.02583125,95.61979279],[4.5334288,0.02583297,95.62058483],[4.53342934,0.02583469,95.62137818],[4.53342988,0.02583641,95.62217328],[4.53343042,0.02583813,95.62297046],[4.53343096,0.02583984,95.62376991],[4.5334315,0.02584156,95.62457183],[4.53343205,0.02584328,95.62537642],[4.53343259,0.025845,95.62618386],[4.53343313,0.02584672,95.62699435],[4.53343368,0.02584844,95.62780802],[4.53343422,0.02585016,95.62862479],[4.53343477,0.02585187,95.62944451],[4.53343532,0.02585359,95.63026706],[4.53343586,0.02585531,95.63109229],[4.53343641,0.02585703,95.63192009],[4.53343696,0.02585874,95.6327503],[4.53343751,0.02586046,95.6335828],[4.53343806,0.02586218,95.63441745],[4.5334386,0.02586389,95.63525412],[4.53343915,0.02586561,95.63609267],[4.5334397,0.02586733,95.63693298],[4.53344025,0.02586904,95.63777491],[4.5334408,0.02587076,95.63861832],[4.53344135,0.02587248,95.63946308],[4.53344191,0.02587419,95.64030907],[4.53344246,0.02587591,95.64115614],[4.53344301,0.02587763,95.64200417],[4.53344356,0.02587934,95.64285302],[4.53344411,0.02588106,95.64370256],[4.53344466,0.02588277,95.64455266],[4.53344521,0.02588449,95.64540327],[4.53344576,0.02588621,95.6462544],[4.53344631,0.02588792,95.64710605],[4.53344686,0.02588964,95.64795825],[4.53344741,0.02589136,95.64881097],[4.53344796,0.02589307,95.64966424],[4.53344851,0.02589479,95.65051804],[4.53344906,0.02589651,95.65137238],[4.53344961,0.02589822,95.65222725],[4.53345015,0.02589994,95.65308267],[4.5334507,0.02590166,95.65393863],[4.53345125,0.02590337,95.65479512],[4.5334518,0.02590509,95.65565215],[4.53345235,0.02590681,95.65650973],[4.5334529,0.02590852,95.65736784],[4.53345345,0.02591024,95.6582265],[4.533454,0.02591196,95.65908569],[4.53345455,0.02591367,95.65994543],[4.53345509,0.02591539,95.66080571],[4.53345564,0.02591711,95.66166653],[4.53345619,0.02591882,95.66252789],[4.53345674,0.02592054,95.6633898],[4.53345729,0.02592226,95.66425225],[4.53345784,0.02592398,95.66511524],[4.53345838,0.02592569,95.66597877],[4.53345893,0.02592741,95.66684285],[4.53345948,0.02592913,95.66770747],[4.53346003,0.02593084,95.66857263],[4.53346058,0.02593256,95.66943834],[4.53346113,0.02593428,95.67030458],[4.53346167,0.02593599,95.67117138],[4.53346222,0.02593771,95.67203871],[4.53346277,0.02593943,95.67290659],[4.53346332,0.02594115,95.67377501],[4.53346387,0.02594286,95.67464398],[4.53346442,0.02594458,95.67551348],[4.53346496,0.0259463,95.67638353],[4.53346551,0.02594801,95.67725412],[4.53346606,0.02594973,95.67812525],[4.53346661,0.02595145,95.67899693],[4.53346716,0.02595316,95.67986914],[4.5334677,0.02595488,95.6807419],[4.53346825,0.0259566,95.6816152],[4.5334688,0.02595832,95.68248904],[4.53346935,0.02596003,95.68336341],[4.5334699,0.02596175,95.68423833],[4.53346859,0.02596217,95.68423833]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-6,"type":"border","predecessorId":-6,"sOffset":265.8100035851}},{"geometry":{"coordinates":[[[4.5334699,0.02596175,95.53423833],[4.53346935,0.02596003,95.53336341],[4.5334688,0.02595832,95.53248904],[4.53346825,0.0259566,95.5316152],[4.5334677,0.02595488,95.5307419],[4.53346716,0.02595316,95.52986914],[4.53346661,0.02595145,95.52899693],[4.53346606,0.02594973,95.52812525],[4.53346551,0.02594801,95.52725412],[4.53346496,0.0259463,95.52638353],[4.53346442,0.02594458,95.52551348],[4.53346387,0.02594286,95.52464398],[4.53346332,0.02594115,95.52377501],[4.53346277,0.02593943,95.52290659],[4.53346222,0.02593771,95.52203871],[4.53346167,0.02593599,95.52117138],[4.53346113,0.02593428,95.52030458],[4.53346058,0.02593256,95.51943834],[4.53346003,0.02593084,95.51857263],[4.53345948,0.02592913,95.51770747],[4.53345893,0.02592741,95.51684285],[4.53345838,0.02592569,95.51597877],[4.53345784,0.02592398,95.51511524],[4.53345729,0.02592226,95.51425225],[4.53345674,0.02592054,95.5133898],[4.53345619,0.02591882,95.51252789],[4.53345564,0.02591711,95.51166653],[4.53345509,0.02591539,95.51080571],[4.53345455,0.02591367,95.50994543],[4.533454,0.02591196,95.50908569],[4.53345345,0.02591024,95.5082265],[4.5334529,0.02590852,95.50736784],[4.53345235,0.02590681,95.50650973],[4.5334518,0.02590509,95.50565215],[4.53345125,0.02590337,95.50479512],[4.5334507,0.02590166,95.50393863],[4.53345015,0.02589994,95.50308267],[4.53344961,0.02589822,95.50222725],[4.53344906,0.02589651,95.50137238],[4.53344851,0.02589479,95.50051804],[4.53344796,0.02589307,95.49966424],[4.53344741,0.02589136,95.49881097],[4.53344686,0.02588964,95.49795825],[4.53344631,0.02588792,95.49710605],[4.53344576,0.02588621,95.4962544],[4.53344521,0.02588449,95.49540327],[4.53344466,0.02588277,95.49455266],[4.53344411,0.02588106,95.49370256],[4.53344356,0.02587934,95.49285302],[4.53344301,0.02587763,95.49200417],[4.53344246,0.02587591,95.49115614],[4.53344191,0.02587419,95.49030907],[4.53344135,0.02587248,95.48946308],[4.5334408,0.02587076,95.48861832],[4.53344025,0.02586904,95.48777491],[4.5334397,0.02586733,95.48693298],[4.53343915,0.02586561,95.48609267],[4.5334386,0.02586389,95.48525412],[4.53343806,0.02586218,95.48441745],[4.53343751,0.02586046,95.4835828],[4.53343696,0.02585874,95.4827503],[4.53343641,0.02585703,95.48192009],[4.53343586,0.02585531,95.48109229],[4.53343532,0.02585359,95.48026706],[4.53343477,0.02585187,95.47944451],[4.53343422,0.02585016,95.47862479],[4.53343368,0.02584844,95.47780802],[4.53343313,0.02584672,95.47699435],[4.53343259,0.025845,95.47618386],[4.53343205,0.02584328,95.47537642],[4.5334315,0.02584156,95.47457183],[4.53343096,0.02583984,95.47376991],[4.53343042,0.02583813,95.47297046],[4.53342988,0.02583641,95.47217328],[4.53342934,0.02583469,95.47137818],[4.5334288,0.02583297,95.47058483],[4.53342826,0.02583125,95.46979279],[4.53342771,0.02582953,95.4690016],[4.53342717,0.02582781,95.46821081],[4.53342663,0.02582609,95.46741996],[4.53342609,0.02582437,95.46662861],[4.53342555,0.02582265,95.46583629],[4.53342501,0.02582093,95.46504255],[4.53342446,0.02581921,95.46424694],[4.53342392,0.02581749,95.4634491],[4.53342337,0.02581578,95.46264912],[4.53342283,0.02581406,95.46184719],[4.53342228,0.02581234,95.4610435],[4.53342173,0.02581063,95.46023823],[4.53342119,0.02580891,95.45943159],[4.53342064,0.02580719,95.45862376],[4.53342009,0.02580548,95.45781493],[4.53341954,0.02580376,95.45700529],[4.53341899,0.02580204,95.45619504],[4.53341844,0.02580033,95.45538438],[4.53341789,0.02579861,95.45457348],[4.53341733,0.02579689,95.45376254],[4.53341678,0.02579518,95.45295176],[4.53341623,0.02579346,95.45214132],[4.53341568,0.02579175,95.45133141],[4.53341513,0.02579003,95.45052221],[4.53341458,0.02578831,95.44971392],[4.53341403,0.0257866,95.44890672],[4.53341347,0.02578488,95.4481008],[4.53341292,0.02578317,95.44729635],[4.53341237,0.02578145,95.44649355],[4.53341182,0.02577973,95.44569235],[4.53341127,0.02577802,95.44489252],[4.53341072,0.0257763,95.44409391],[4.53341017,0.02577458,95.44329646],[4.53340962,0.02577287,95.44250013],[4.53340907,0.02577115,95.44170488],[4.53340852,0.02576943,95.44091067],[4.53340797,0.02576772,95.44011745],[4.53340742,0.025766,95.43932518],[4.53340687,0.02576428,95.43853383],[4.53340632,0.02576257,95.43774334],[4.53340577,0.02576085,95.43695367],[4.53340522,0.02575914,95.43616479],[4.53340467,0.02575742,95.43537664],[4.53340412,0.0257557,95.43458919],[4.53340357,0.02575399,95.4338024],[4.53340302,0.02575227,95.43301621],[4.53340247,0.02575055,95.43223059],[4.53340192,0.02574884,95.43144549],[4.53340137,0.02574712,95.43066089],[4.53340082,0.0257454,95.42987678],[4.53340027,0.02574369,95.42909316],[4.53339972,0.02574197,95.42831002],[4.53339917,0.02574025,95.42752735],[4.53339862,0.02573854,95.42674514],[4.53339807,0.02573682,95.42596339],[4.53339752,0.0257351,95.42518212],[4.53339697,0.02573339,95.4244015],[4.53339642,0.02573167,95.42362167],[4.53339587,0.02572996,95.42284267],[4.53339532,0.02572824,95.42206447],[4.53339477,0.02572652,95.42128707],[4.53339422,0.02572481,95.42051044],[4.53339367,0.02572309,95.41973459],[4.53339312,0.02572137,95.4189595],[4.53339257,0.02571966,95.41818516],[4.53339202,0.02571794,95.41741158],[4.53339147,0.02571623,95.41663873],[4.53339092,0.02571451,95.41586662],[4.53339037,0.02571279,95.41509524],[4.53338981,0.02571108,95.41432458],[4.53338926,0.02570936,95.41355463],[4.53338871,0.02570764,95.41278539],[4.53338816,0.02570593,95.41201684],[4.53338761,0.02570421,95.41124898],[4.53338706,0.02570249,95.41048181],[4.53338651,0.02570078,95.40971532],[4.53338596,0.02569906,95.40894948],[4.53338541,0.02569735,95.40818419],[4.53338486,0.02569563,95.40741919],[4.53338431,0.02569391,95.40665423],[4.53338376,0.0256922,95.40588908],[4.53338321,0.02569048,95.40512355],[4.53338266,0.02568877,95.40435771],[4.53338211,0.02568705,95.40359168],[4.53338155,0.02568533,95.40282561],[4.533381,0.02568362,95.40205962],[4.53338045,0.0256819,95.40129384],[4.5333799,0.02568019,95.40052841],[4.53337934,0.02567847,95.39976346],[4.53337879,0.02567676,95.39899912],[4.53337824,0.02567504,95.39823553],[4.53337769,0.02567332,95.39747281],[4.53337714,0.02567161,95.3967111],[4.53337658,0.02566989,95.39595052],[4.53337603,0.02566818,95.3951912],[4.53337548,0.02566646,95.39443328],[4.53337493,0.02566474,95.39367689],[4.53337438,0.02566303,95.39292215],[4.53337383,0.02566131,95.3921692],[4.53337328,0.0256596,95.39141816],[4.53337273,0.02565788,95.39066917],[4.53337218,0.02565616,95.38992236],[4.53337163,0.02565445,95.38917785],[4.53337108,0.02565273,95.38843577],[4.53337053,0.02565101,95.38769627],[4.53336998,0.0256493,95.38695945],[4.53336944,0.02564758,95.3862252],[4.53336889,0.02564586,95.3854932],[4.53336835,0.02564414,95.38476308],[4.5333678,0.02564242,95.3840345],[4.53336725,0.02564071,95.38330711],[4.53336671,0.02563899,95.38258056],[4.53336616,0.02563727,95.3818545],[4.53336562,0.02563555,95.38112858],[4.53336507,0.02563384,95.38040247],[4.53336453,0.02563212,95.37967584],[4.53336398,0.0256304,95.37894855],[4.53336343,0.02562868,95.37822065],[4.53336289,0.02562697,95.37749218],[4.53336234,0.02562525,95.37676317],[4.53336179,0.02562353,95.37603364],[4.53336124,0.02562181,95.37530357],[4.53336069,0.0256201,95.37457298],[4.53336015,0.02561838,95.37384186],[4.5333596,0.02561666,95.37311021],[4.53335905,0.02561495,95.37237802],[4.5333585,0.02561323,95.37164531],[4.53335795,0.02561151,95.37091207],[4.5333574,0.0256098,95.37017829],[4.53335685,0.02560808,95.36944399],[4.53335629,0.02560637,95.36870915],[4.53335574,0.02560465,95.36797378],[4.53335519,0.02560293,95.36723788],[4.53335464,0.02560122,95.36650144],[4.53335409,0.0255995,95.36576447],[4.53335353,0.02559779,95.36502696],[4.53335298,0.02559607,95.36428892],[4.53335243,0.02559436,95.36355035],[4.53335187,0.02559264,95.36281124],[4.53335132,0.02559093,95.36207166],[4.53335077,0.02558921,95.36133189],[4.53335021,0.0255875,95.3605923],[4.53334966,0.02558578,95.35985321],[4.5333491,0.02558407,95.35911481],[4.53334855,0.02558235,95.35837707],[4.53334799,0.02558064,95.35763996],[4.53334744,0.02557892,95.35690348],[4.53334689,0.02557721,95.35616759],[4.53334633,0.02557549,95.35543227],[4.53334578,0.02557378,95.3546975],[4.53334522,0.02557206,95.35396325],[4.53334467,0.02557035,95.3532295],[4.53334412,0.02556863,95.35249624],[4.53334356,0.02556692,95.35176343],[4.53334301,0.0255652,95.35103105],[4.53334245,0.02556349,95.35029908],[4.5333419,0.02556177,95.3495675],[4.53334134,0.02556006,95.34883628],[4.53334079,0.02555834,95.3481054],[4.53334024,0.02555663,95.34737484],[4.53333968,0.02555491,95.34664458],[4.53333913,0.0255532,95.34591458],[4.53333857,0.02555148,95.34518484],[4.53333802,0.02554977,95.34445532],[4.53333746,0.02554805,95.343726],[4.53333691,0.02554634,95.34299687],[4.53333635,0.02554462,95.34226789],[4.5333358,0.02554291,95.34153905],[4.53333402,0.02554159,95.33671351],[4.53333144,0.02554054,95.32914782],[4.5333309,0.0255404,95.32753252],[4.53333758,0.02553822,95.35000952],[4.53333768,0.02553851,95.35013025],[4.53333823,0.02554022,95.3508567],[4.53333879,0.02554194,95.35158462],[4.53333934,0.02554365,95.35231389],[4.5333399,0.02554537,95.35304437],[4.53334045,0.02554708,95.35377594],[4.53334101,0.0255488,95.35450847],[4.53334156,0.02555051,95.35524184],[4.53334212,0.02555223,95.35597591],[4.53334267,0.02555394,95.35671057],[4.53334323,0.02555565,95.35744569],[4.53334379,0.02555737,95.35818113],[4.53334434,0.02555908,95.35891678],[4.5333449,0.0255608,95.35965249],[4.53334545,0.02556251,95.36038816],[4.53334601,0.02556423,95.36112365],[4.53334656,0.02556594,95.36185882],[4.53334712,0.02556766,95.36259357],[4.53334767,0.02556937,95.36332775],[4.53334822,0.02557109,95.36406125],[4.53334878,0.0255728,95.36479393],[4.53334933,0.02557452,95.36552567],[4.53334988,0.02557623,95.36625633],[4.53335044,0.02557795,95.3669858],[4.53335099,0.02557966,95.36771395],[4.53335154,0.02558138,95.36844064],[4.53335209,0.0255831,95.36916576],[4.53335264,0.02558481,95.36988917],[4.53335319,0.02558653,95.37061075],[4.53335374,0.02558825,95.37133036],[4.53335428,0.02558996,95.37204789],[4.53335483,0.02559168,95.3727632],[4.53335538,0.0255934,95.37347624],[4.53335592,0.02559512,95.37418715],[4.53335646,0.02559684,95.37489617],[4.53335701,0.02559855,95.37560353],[4.53335755,0.02560027,95.37630945],[4.53335809,0.02560199,95.37701415],[4.53335864,0.02560371,95.37771786],[4.53335918,0.02560543,95.37842082],[4.53335972,0.02560715,95.37912323],[4.53336026,0.02560887,95.37982533],[4.5333608,0.02561059,95.38052735],[4.53336134,0.02561231,95.38122951],[4.53336188,0.02561403,95.38193204],[4.53336242,0.02561575,95.38263515],[4.53336296,0.02561746,95.38333909],[4.53336351,0.02561918,95.38404407],[4.53336405,0.0256209,95.38475032],[4.53336459,0.02562262,95.38545806],[4.53336513,0.02562434,95.38616753],[4.53336567,0.02562606,95.38687894],[4.53336622,0.02562778,95.38759252],[4.53336676,0.0256295,95.38830845],[4.5333673,0.02563122,95.38902692],[4.53336785,0.02563293,95.3897481],[4.53336839,0.02563465,95.39047217],[4.53336894,0.02563637,95.39119932],[4.53336948,0.02563809,95.39192973],[4.53337003,0.0256398,95.39266362],[4.53337058,0.02564152,95.39340118],[4.53337113,0.02564324,95.39414261],[4.53337168,0.02564495,95.39488814],[4.53337223,0.02564667,95.39563794],[4.53337279,0.02564839,95.39639224],[4.53337334,0.0256501,95.39715123],[4.53337389,0.02565182,95.39791486],[4.53337445,0.02565353,95.39868287],[4.53337501,0.02565524,95.399455],[4.53337557,0.02565696,95.40023095],[4.53337613,0.02565867,95.40101047],[4.53337669,0.02566038,95.40179326],[4.53337725,0.0256621,95.40257906],[4.53337781,0.02566381,95.40336759],[4.53337837,0.02566552,95.40415858],[4.53337893,0.02566724,95.40495174],[4.53337949,0.02566895,95.40574681],[4.53338006,0.02567066,95.40654351],[4.53338062,0.02567237,95.40734156],[4.53338118,0.02567408,95.40814068],[4.53338175,0.0256758,95.40894061],[4.53338231,0.02567751,95.40974107],[4.53338287,0.02567922,95.41054178],[4.53338344,0.02568093,95.41134246],[4.533384,0.02568264,95.41214283],[4.53338456,0.02568436,95.41294262],[4.53338512,0.02568607,95.41374155],[4.53338569,0.02568778,95.41453935],[4.53338625,0.0256895,95.41533573],[4.53338681,0.02569121,95.41613043],[4.53338737,0.02569292,95.41692322],[4.53338792,0.02569464,95.41771414],[4.53338848,0.02569635,95.41850331],[4.53338904,0.02569806,95.41929081],[4.5333896,0.02569978,95.42007675],[4.53339015,0.02570149,95.42086124],[4.53339071,0.02570321,95.42164438],[4.53339126,0.02570492,95.42242627],[4.53339182,0.02570664,95.423207],[4.53339237,0.02570835,95.42398669],[4.53339292,0.02571007,95.42476543],[4.53339348,0.02571178,95.42554333],[4.53339403,0.0257135,95.42632049],[4.53339458,0.02571521,95.42709701],[4.53339513,0.02571693,95.42787299],[4.53339568,0.02571865,95.42864854],[4.53339624,0.02572036,95.42942375],[4.53339679,0.02572208,95.43019873],[4.53339734,0.0257238,95.43097358],[4.53339789,0.02572551,95.4317484],[4.53339844,0.02572723,95.4325233],[4.53339899,0.02572894,95.43329838],[4.53339954,0.02573066,95.43407375],[4.53340009,0.02573238,95.43484952],[4.53340064,0.02573409,95.43562576],[4.53340119,0.02573581,95.43640241],[4.53340174,0.02573753,95.43717937],[4.53340229,0.02573924,95.43795654],[4.53340283,0.02574096,95.43873383],[4.53340338,0.02574268,95.43951114],[4.53340393,0.02574439,95.44028838],[4.53340448,0.02574611,95.44106543],[4.53340503,0.02574783,95.44184222],[4.53340558,0.02574955,95.44261863],[4.53340612,0.02575126,95.44339459],[4.53340667,0.02575298,95.44417005],[4.53340722,0.0257547,95.44494493],[4.53340776,0.02575642,95.44571918],[4.53340831,0.02575813,95.44649274],[4.53340886,0.02575985,95.44726555],[4.5334094,0.02576157,95.44803755],[4.53340995,0.02576329,95.44880866],[4.53341049,0.02576501,95.44957885],[4.53341103,0.02576672,95.45034804],[4.53341158,0.02576844,95.45111618],[4.53341212,0.02577016,95.4518832],[4.53341266,0.02577188,95.45264904],[4.5334132,0.0257736,95.45341365],[4.53341374,0.02577532,95.45417697],[4.53341428,0.02577704,95.45493893],[4.53341482,0.02577876,95.45569948],[4.53341536,0.02578048,95.45645868],[4.5334159,0.0257822,95.45721666],[4.53341644,0.02578392,95.4579736],[4.53341697,0.02578564,95.45872965],[4.53341751,0.02578736,95.45948497],[4.53341805,0.02578908,95.46023972],[4.53341858,0.0257908,95.46099406],[4.53341912,0.02579253,95.46174815],[4.53341965,0.02579425,95.46250214],[4.53342019,0.02579597,95.46325619],[4.53342072,0.02579769,95.46401046],[4.53342126,0.02579941,95.46476511],[4.53342179,0.02580113,95.46552028],[4.53342233,0.02580285,95.46627614],[4.53342286,0.02580458,95.46703282],[4.5334234,0.0258063,95.46779049],[4.53342393,0.02580802,95.4685493],[4.53342447,0.02580974,95.46930938],[4.533425,0.02581146,95.47007091],[4.53342554,0.02581318,95.47083401],[4.53342607,0.0258149,95.47159886],[4.53342661,0.02581662,95.4723656],[4.53342714,0.02581834,95.47313437],[4.53342768,0.02582007,95.47390533],[4.53342822,0.02582179,95.47467864],[4.53342876,0.02582351,95.47545444],[4.53342929,0.02582523,95.47623289],[4.53342983,0.02582695,95.47701414],[4.53343037,0.02582867,95.47779835],[4.53343091,0.02583039,95.47858568],[4.53343145,0.02583211,95.47937626],[4.53343199,0.02583383,95.48017026],[4.53343254,0.02583554,95.48096783],[4.53343308,0.02583726,95.48176898],[4.53343362,0.02583898,95.48257362],[4.53343417,0.0258407,95.48338164],[4.53343471,0.02584242,95.48419294],[4.53343526,0.02584414,95.48500742],[4.53343581,0.02584585,95.48582496],[4.53343636,0.02584757,95.48664545],[4.5334369,0.02584929,95.48746875],[4.53343745,0.025851,95.48829475],[4.533438,0.02585272,95.4891233],[4.53343855,0.02585444,95.48995428],[4.5334391,0.02585615,95.49078755],[4.53343965,0.02585787,95.49162298],[4.5334402,0.02585959,95.49246044],[4.53344076,0.0258613,95.49329981],[4.53344131,0.02586302,95.49414095],[4.53344186,0.02586473,95.49498372],[4.53344241,0.02586645,95.49582802],[4.53344296,0.02586817,95.49667369],[4.53344352,0.02586988,95.49752061],[4.53344407,0.0258716,95.49836866],[4.53344462,0.02587331,95.4992177],[4.53344517,0.02587503,95.50006761],[4.53344573,0.02587674,95.50091825],[4.53344628,0.02587846,95.50176949],[4.53344683,0.02588018,95.50262122],[4.53344738,0.02588189,95.5034733],[4.53344793,0.02588361,95.50432568],[4.53344849,0.02588532,95.50517838],[4.53344904,0.02588704,95.5060314],[4.53344959,0.02588876,95.50688477],[4.53345014,0.02589047,95.50773848],[4.53345069,0.02589219,95.50859254],[4.53345124,0.0258939,95.50944696],[4.53345179,0.02589562,95.51030173],[4.53345234,0.02589734,95.51115687],[4.53345289,0.02589905,95.51201237],[4.53345344,0.02590077,95.51286825],[4.53345399,0.02590249,95.5137245],[4.53345454,0.0259042,95.51458114],[4.53345509,0.02590592,95.51543816],[4.53345564,0.02590763,95.51629556],[4.53345619,0.02590935,95.51715336],[4.53345674,0.02591107,95.51801156],[4.53345729,0.02591278,95.51887016],[4.53345784,0.0259145,95.51972917],[4.53345839,0.02591622,95.52058858],[4.53345894,0.02591793,95.52144841],[4.53345949,0.02591965,95.52230866],[4.53346004,0.02592137,95.52316933],[4.53346059,0.02592308,95.52403043],[4.53346114,0.0259248,95.52489196],[4.53346169,0.02592652,95.52575392],[4.53346224,0.02592824,95.52661632],[4.53346278,0.02592995,95.52747916],[4.53346333,0.02593167,95.52834245],[4.53346388,0.02593339,95.52920619],[4.53346443,0.0259351,95.53007039],[4.53346498,0.02593682,95.53093504],[4.53346553,0.02593854,95.53180015],[4.53346608,0.02594025,95.53266573],[4.53346663,0.02594197,95.53353178],[4.53346717,0.02594369,95.5343983],[4.53346772,0.0259454,95.5352653],[4.53346827,0.02594712,95.53613277],[4.53346882,0.02594884,95.53700073],[4.53346937,0.02595055,95.53786918],[4.53346992,0.02595227,95.53873812],[4.53347047,0.02595399,95.53960755],[4.53347101,0.0259557,95.54047748],[4.53347156,0.02595742,95.54134791],[4.53347211,0.02595914,95.54221885],[4.53347266,0.02596086,95.54309029],[4.5334699,0.02596175,95.53423833]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-5,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-5,"type":"border","predecessorId":-5,"sOffset":265.8100035851}},{"geometry":{"coordinates":[[[4.53347266,0.02596086,95.54309029],[4.53347211,0.02595914,95.54221885],[4.53347156,0.02595742,95.54134791],[4.53347101,0.0259557,95.54047748],[4.53347047,0.02595399,95.53960755],[4.53346992,0.02595227,95.53873812],[4.53346937,0.02595055,95.53786918],[4.53346882,0.02594884,95.53700073],[4.53346827,0.02594712,95.53613277],[4.53346772,0.0259454,95.5352653],[4.53346717,0.02594369,95.5343983],[4.53346663,0.02594197,95.53353178],[4.53346608,0.02594025,95.53266573],[4.53346553,0.02593854,95.53180015],[4.53346498,0.02593682,95.53093504],[4.53346443,0.0259351,95.53007039],[4.53346388,0.02593339,95.52920619],[4.53346333,0.02593167,95.52834245],[4.53346278,0.02592995,95.52747916],[4.53346224,0.02592824,95.52661632],[4.53346169,0.02592652,95.52575392],[4.53346114,0.0259248,95.52489196],[4.53346059,0.02592308,95.52403043],[4.53346004,0.02592137,95.52316933],[4.53345949,0.02591965,95.52230866],[4.53345894,0.02591793,95.52144841],[4.53345839,0.02591622,95.52058858],[4.53345784,0.0259145,95.51972917],[4.53345729,0.02591278,95.51887016],[4.53345674,0.02591107,95.51801156],[4.53345619,0.02590935,95.51715336],[4.53345564,0.02590763,95.51629556],[4.53345509,0.02590592,95.51543816],[4.53345454,0.0259042,95.51458114],[4.53345399,0.02590249,95.5137245],[4.53345344,0.02590077,95.51286825],[4.53345289,0.02589905,95.51201237],[4.53345234,0.02589734,95.51115687],[4.53345179,0.02589562,95.51030173],[4.53345124,0.0258939,95.50944696],[4.53345069,0.02589219,95.50859254],[4.53345014,0.02589047,95.50773848],[4.53344959,0.02588876,95.50688477],[4.53344904,0.02588704,95.5060314],[4.53344849,0.02588532,95.50517838],[4.53344793,0.02588361,95.50432568],[4.53344738,0.02588189,95.5034733],[4.53344683,0.02588018,95.50262122],[4.53344628,0.02587846,95.50176949],[4.53344573,0.02587674,95.50091825],[4.53344517,0.02587503,95.50006761],[4.53344462,0.02587331,95.4992177],[4.53344407,0.0258716,95.49836866],[4.53344352,0.02586988,95.49752061],[4.53344296,0.02586817,95.49667369],[4.53344241,0.02586645,95.49582802],[4.53344186,0.02586473,95.49498372],[4.53344131,0.02586302,95.49414095],[4.53344076,0.0258613,95.49329981],[4.5334402,0.02585959,95.49246044],[4.53343965,0.02585787,95.49162298],[4.5334391,0.02585615,95.49078755],[4.53343855,0.02585444,95.48995428],[4.533438,0.02585272,95.4891233],[4.53343745,0.025851,95.48829475],[4.5334369,0.02584929,95.48746875],[4.53343636,0.02584757,95.48664545],[4.53343581,0.02584585,95.48582496],[4.53343526,0.02584414,95.48500742],[4.53343471,0.02584242,95.48419294],[4.53343417,0.0258407,95.48338164],[4.53343362,0.02583898,95.48257362],[4.53343308,0.02583726,95.48176898],[4.53343254,0.02583554,95.48096783],[4.53343199,0.02583383,95.48017026],[4.53343145,0.02583211,95.47937626],[4.53343091,0.02583039,95.47858568],[4.53343037,0.02582867,95.47779835],[4.53342983,0.02582695,95.47701414],[4.53342929,0.02582523,95.47623289],[4.53342876,0.02582351,95.47545444],[4.53342822,0.02582179,95.47467864],[4.53342768,0.02582007,95.47390533],[4.53342714,0.02581834,95.47313437],[4.53342661,0.02581662,95.4723656],[4.53342607,0.0258149,95.47159886],[4.53342554,0.02581318,95.47083401],[4.533425,0.02581146,95.47007091],[4.53342447,0.02580974,95.46930938],[4.53342393,0.02580802,95.4685493],[4.5334234,0.0258063,95.46779049],[4.53342286,0.02580458,95.46703282],[4.53342233,0.02580285,95.46627614],[4.53342179,0.02580113,95.46552028],[4.53342126,0.02579941,95.46476511],[4.53342072,0.02579769,95.46401046],[4.53342019,0.02579597,95.46325619],[4.53341965,0.02579425,95.46250214],[4.53341912,0.02579253,95.46174815],[4.53341858,0.0257908,95.46099406],[4.53341805,0.02578908,95.46023972],[4.53341751,0.02578736,95.45948497],[4.53341697,0.02578564,95.45872965],[4.53341644,0.02578392,95.4579736],[4.5334159,0.0257822,95.45721666],[4.53341536,0.02578048,95.45645868],[4.53341482,0.02577876,95.45569948],[4.53341428,0.02577704,95.45493893],[4.53341374,0.02577532,95.45417697],[4.5334132,0.0257736,95.45341365],[4.53341266,0.02577188,95.45264904],[4.53341212,0.02577016,95.4518832],[4.53341158,0.02576844,95.45111618],[4.53341103,0.02576672,95.45034804],[4.53341049,0.02576501,95.44957885],[4.53340995,0.02576329,95.44880866],[4.5334094,0.02576157,95.44803755],[4.53340886,0.02575985,95.44726555],[4.53340831,0.02575813,95.44649274],[4.53340776,0.02575642,95.44571918],[4.53340722,0.0257547,95.44494493],[4.53340667,0.02575298,95.44417005],[4.53340612,0.02575126,95.44339459],[4.53340558,0.02574955,95.44261863],[4.53340503,0.02574783,95.44184222],[4.53340448,0.02574611,95.44106543],[4.53340393,0.02574439,95.44028838],[4.53340338,0.02574268,95.43951114],[4.53340283,0.02574096,95.43873383],[4.53340229,0.02573924,95.43795654],[4.53340174,0.02573753,95.43717937],[4.53340119,0.02573581,95.43640241],[4.53340064,0.02573409,95.43562576],[4.53340009,0.02573238,95.43484952],[4.53339954,0.02573066,95.43407375],[4.53339899,0.02572894,95.43329838],[4.53339844,0.02572723,95.4325233],[4.53339789,0.02572551,95.4317484],[4.53339734,0.0257238,95.43097358],[4.53339679,0.02572208,95.43019873],[4.53339624,0.02572036,95.42942375],[4.53339568,0.02571865,95.42864854],[4.53339513,0.02571693,95.42787299],[4.53339458,0.02571521,95.42709701],[4.53339403,0.0257135,95.42632049],[4.53339348,0.02571178,95.42554333],[4.53339292,0.02571007,95.42476543],[4.53339237,0.02570835,95.42398669],[4.53339182,0.02570664,95.423207],[4.53339126,0.02570492,95.42242627],[4.53339071,0.02570321,95.42164438],[4.53339015,0.02570149,95.42086124],[4.5333896,0.02569978,95.42007675],[4.53338904,0.02569806,95.41929081],[4.53338848,0.02569635,95.41850331],[4.53338792,0.02569464,95.41771414],[4.53338737,0.02569292,95.41692322],[4.53338681,0.02569121,95.41613043],[4.53338625,0.0256895,95.41533573],[4.53338569,0.02568778,95.41453935],[4.53338512,0.02568607,95.41374155],[4.53338456,0.02568436,95.41294262],[4.533384,0.02568264,95.41214283],[4.53338344,0.02568093,95.41134246],[4.53338287,0.02567922,95.41054178],[4.53338231,0.02567751,95.40974107],[4.53338175,0.0256758,95.40894061],[4.53338118,0.02567408,95.40814068],[4.53338062,0.02567237,95.40734156],[4.53338006,0.02567066,95.40654351],[4.53337949,0.02566895,95.40574681],[4.53337893,0.02566724,95.40495174],[4.53337837,0.02566552,95.40415858],[4.53337781,0.02566381,95.40336759],[4.53337725,0.0256621,95.40257906],[4.53337669,0.02566038,95.40179326],[4.53337613,0.02565867,95.40101047],[4.53337557,0.02565696,95.40023095],[4.53337501,0.02565524,95.399455],[4.53337445,0.02565353,95.39868287],[4.53337389,0.02565182,95.39791486],[4.53337334,0.0256501,95.39715123],[4.53337279,0.02564839,95.39639224],[4.53337223,0.02564667,95.39563794],[4.53337168,0.02564495,95.39488814],[4.53337113,0.02564324,95.39414261],[4.53337058,0.02564152,95.39340118],[4.53337003,0.0256398,95.39266362],[4.53336948,0.02563809,95.39192973],[4.53336894,0.02563637,95.39119932],[4.53336839,0.02563465,95.39047217],[4.53336785,0.02563293,95.3897481],[4.5333673,0.02563122,95.38902692],[4.53336676,0.0256295,95.38830845],[4.53336622,0.02562778,95.38759252],[4.53336567,0.02562606,95.38687894],[4.53336513,0.02562434,95.38616753],[4.53336459,0.02562262,95.38545806],[4.53336405,0.0256209,95.38475032],[4.53336351,0.02561918,95.38404407],[4.53336296,0.02561746,95.38333909],[4.53336242,0.02561575,95.38263515],[4.53336188,0.02561403,95.38193204],[4.53336134,0.02561231,95.38122951],[4.5333608,0.02561059,95.38052735],[4.53336026,0.02560887,95.37982533],[4.53335972,0.02560715,95.37912323],[4.53335918,0.02560543,95.37842082],[4.53335864,0.02560371,95.37771786],[4.53335809,0.02560199,95.37701415],[4.53335755,0.02560027,95.37630945],[4.53335701,0.02559855,95.37560353],[4.53335646,0.02559684,95.37489617],[4.53335592,0.02559512,95.37418715],[4.53335538,0.0255934,95.37347624],[4.53335483,0.02559168,95.3727632],[4.53335428,0.02558996,95.37204789],[4.53335374,0.02558825,95.37133036],[4.53335319,0.02558653,95.37061075],[4.53335264,0.02558481,95.36988917],[4.53335209,0.0255831,95.36916576],[4.53335154,0.02558138,95.36844064],[4.53335099,0.02557966,95.36771395],[4.53335044,0.02557795,95.3669858],[4.53334988,0.02557623,95.36625633],[4.53334933,0.02557452,95.36552567],[4.53334878,0.0255728,95.36479393],[4.53334822,0.02557109,95.36406125],[4.53334767,0.02556937,95.36332775],[4.53334712,0.02556766,95.36259357],[4.53334656,0.02556594,95.36185882],[4.53334601,0.02556423,95.36112365],[4.53334545,0.02556251,95.36038816],[4.5333449,0.0255608,95.35965249],[4.53334434,0.02555908,95.35891678],[4.53334379,0.02555737,95.35818113],[4.53334323,0.02555565,95.35744569],[4.53334267,0.02555394,95.35671057],[4.53334212,0.02555223,95.35597591],[4.53334156,0.02555051,95.35524184],[4.53334101,0.0255488,95.35450847],[4.53334045,0.02554708,95.35377594],[4.5333399,0.02554537,95.35304437],[4.53333934,0.02554365,95.35231389],[4.53333879,0.02554194,95.35158462],[4.53333823,0.02554022,95.3508567],[4.53333768,0.02553851,95.35013025],[4.53333758,0.02553822,95.35000952],[4.53333927,0.02553767,95.35567583],[4.53333936,0.02553796,95.35579176],[4.53333991,0.02553968,95.35648888],[4.53334045,0.0255414,95.35718677],[4.533341,0.02554311,95.35788545],[4.53334154,0.02554483,95.35858492],[4.53334209,0.02554655,95.35928519],[4.53334264,0.02554827,95.35998627],[4.53334318,0.02554998,95.36068816],[4.53334373,0.0255517,95.36139087],[4.53334427,0.02555342,95.36209441],[4.53334482,0.02555514,95.36279878],[4.53334537,0.02555685,95.36350399],[4.53334591,0.02555857,95.36421005],[4.53334646,0.02556029,95.36491697],[4.53334701,0.02556201,95.36562475],[4.53334755,0.02556372,95.3663334],[4.5333481,0.02556544,95.36704292],[4.53334865,0.02556716,95.36775333],[4.5333492,0.02556888,95.36846462],[4.53334974,0.02557059,95.36917681],[4.53335029,0.02557231,95.36988991],[4.53335084,0.02557403,95.37060391],[4.53335139,0.02557574,95.37131883],[4.53335194,0.02557746,95.37203468],[4.53335248,0.02557918,95.37275146],[4.53335303,0.0255809,95.37346917],[4.53335358,0.02558261,95.37418783],[4.53335413,0.02558433,95.37490744],[4.53335468,0.02558605,95.37562801],[4.53335523,0.02558776,95.37634955],[4.53335577,0.02558948,95.37707205],[4.53335632,0.0255912,95.37779554],[4.53335687,0.02559291,95.37852001],[4.53335742,0.02559463,95.37924547],[4.53335797,0.02559635,95.37997194],[4.53335852,0.02559806,95.38069941],[4.53335907,0.02559978,95.38142789],[4.53335962,0.0256015,95.38215739],[4.53336017,0.02560321,95.38288792],[4.53336072,0.02560493,95.38361948],[4.53336127,0.02560664,95.38435209],[4.53336182,0.02560836,95.38508574],[4.53336237,0.02561008,95.38582044],[4.53336292,0.02561179,95.38655621],[4.53336347,0.02561351,95.38729304],[4.53336403,0.02561523,95.38803095],[4.53336458,0.02561694,95.38876994],[4.53336513,0.02561866,95.38951001],[4.53336568,0.02562037,95.39025118],[4.53336623,0.02562209,95.39099346],[4.53336678,0.0256238,95.39173684],[4.53336734,0.02562552,95.39248133],[4.53336789,0.02562724,95.39322694],[4.53336844,0.02562895,95.39397363],[4.53336899,0.02563067,95.39472137],[4.53336955,0.02563238,95.39547011],[4.5333701,0.0256341,95.39621982],[4.53337065,0.02563581,95.39697045],[4.5333712,0.02563753,95.39772199],[4.53337176,0.02563924,95.39847441],[4.53337231,0.02564096,95.3992277],[4.53337286,0.02564268,95.39998185],[4.53337342,0.02564439,95.40073685],[4.53337397,0.02564611,95.40149267],[4.53337452,0.02564782,95.4022493],[4.53337508,0.02564954,95.40300673],[4.53337563,0.02565125,95.40376495],[4.53337619,0.02565297,95.40452393],[4.53337674,0.02565468,95.40528367],[4.53337729,0.0256564,95.40604415],[4.53337785,0.02565811,95.40680536],[4.5333784,0.02565983,95.40756727],[4.53337895,0.02566154,95.40832988],[4.53337951,0.02566326,95.40909317],[4.53338006,0.02566497,95.40985713],[4.53338062,0.02566669,95.41062174],[4.53338117,0.0256684,95.41138699],[4.53338172,0.02567012,95.41215286],[4.53338228,0.02567183,95.41291934],[4.53338283,0.02567355,95.41368642],[4.53338339,0.02567526,95.41445407],[4.53338394,0.02567698,95.41522229],[4.53338449,0.02567869,95.41599105],[4.53338505,0.02568041,95.41676034],[4.5333856,0.02568213,95.41753014],[4.53338616,0.02568384,95.41830044],[4.53338671,0.02568556,95.41907122],[4.53338726,0.02568727,95.41984246],[4.53338782,0.02568899,95.42061415],[4.53338837,0.0256907,95.42138626],[4.53338892,0.02569242,95.42215879],[4.53338948,0.02569413,95.42293171],[4.53339003,0.02569585,95.42370501],[4.53339058,0.02569756,95.42447867],[4.53339114,0.02569928,95.42525267],[4.53339169,0.02570099,95.426027],[4.53339224,0.02570271,95.42680164],[4.5333928,0.02570442,95.42757657],[4.53339335,0.02570614,95.42835178],[4.5333939,0.02570786,95.42912725],[4.53339445,0.02570957,95.42990296],[4.53339501,0.02571129,95.4306789],[4.53339556,0.025713,95.43145505],[4.53339611,0.02571472,95.43223139],[4.53339666,0.02571643,95.43300791],[4.53339721,0.02571815,95.43378459],[4.53339777,0.02571987,95.43456141],[4.53339832,0.02572158,95.43533835],[4.53339887,0.0257233,95.43611541],[4.53339942,0.02572501,95.43689256],[4.53339997,0.02572673,95.43766978],[4.53340052,0.02572845,95.43844708],[4.53340107,0.02573016,95.43922442],[4.53340162,0.02573188,95.44000182],[4.53340217,0.0257336,95.44077925],[4.53340272,0.02573531,95.44155672],[4.53340327,0.02573703,95.44233419],[4.53340382,0.02573875,95.44311168],[4.53340437,0.02574046,95.44388917],[4.53340492,0.02574218,95.44466664],[4.53340547,0.0257439,95.44544409],[4.53340602,0.02574561,95.44622152],[4.53340657,0.02574733,95.4469989],[4.53340712,0.02574905,95.44777623],[4.53340767,0.02575076,95.44855353],[4.53340821,0.02575248,95.4493308],[4.53340876,0.0257542,95.45010809],[4.53340931,0.02575591,95.45088542],[4.53340986,0.02575763,95.45166282],[4.5334104,0.02575935,95.4524403],[4.53341095,0.02576107,95.45321791],[4.5334115,0.02576278,95.45399565],[4.53341204,0.0257645,95.45477357],[4.53341259,0.02576622,95.45555169],[4.53341314,0.02576794,95.45633003],[4.53341368,0.02576966,95.45710862],[4.53341423,0.02577137,95.45788749],[4.53341478,0.02577309,95.45866667],[4.53341532,0.02577481,95.45944617],[4.53341587,0.02577653,95.46022603],[4.53341641,0.02577824,95.46100627],[4.53341696,0.02577996,95.46178693],[4.5334175,0.02578168,95.46256801],[4.53341805,0.0257834,95.46334956],[4.53341859,0.02578512,95.4641316],[4.53341914,0.02578683,95.46491416],[4.53341968,0.02578855,95.46569725],[4.53342023,0.02579027,95.46648092],[4.53342077,0.02579199,95.46726517],[4.53342132,0.02579371,95.46805005],[4.53342186,0.02579543,95.46883558],[4.53342241,0.02579714,95.46962177],[4.53342295,0.02579886,95.47040866],[4.5334235,0.02580058,95.47119627],[4.53342404,0.0258023,95.47198462],[4.53342459,0.02580402,95.47277372],[4.53342513,0.02580573,95.4735636],[4.53342568,0.02580745,95.47435428],[4.53342622,0.02580917,95.47514578],[4.53342677,0.02581089,95.47593811],[4.53342731,0.02581261,95.47673131],[4.53342786,0.02581432,95.47752538],[4.5334284,0.02581604,95.47832035],[4.53342895,0.02581776,95.47911624],[4.53342949,0.02581948,95.47991308],[4.53343004,0.0258212,95.48071087],[4.53343058,0.02582291,95.48150966],[4.53343113,0.02582463,95.48230946],[4.53343167,0.02582635,95.48311029],[4.53343222,0.02582807,95.48391219],[4.53343276,0.02582979,95.48471518],[4.53343331,0.0258315,95.48551927],[4.53343386,0.02583322,95.4863245],[4.5334344,0.02583494,95.48713089],[4.53343495,0.02583666,95.48793846],[4.53343549,0.02583838,95.48874724],[4.53343604,0.02584009,95.48955726],[4.53343659,0.02584181,95.49036853],[4.53343713,0.02584353,95.49118107],[4.53343768,0.02584525,95.49199493],[4.53343822,0.02584696,95.49281009],[4.53343877,0.02584868,95.49362657],[4.53343932,0.0258504,95.49444436],[4.53343987,0.02585212,95.49526345],[4.53344041,0.02585383,95.49608385],[4.53344096,0.02585555,95.49690554],[4.53344151,0.02585727,95.49772853],[4.53344206,0.02585899,95.49855282],[4.5334426,0.0258607,95.49937839],[4.53344315,0.02586242,95.50020525],[4.5334437,0.02586414,95.5010334],[4.53344425,0.02586585,95.50186283],[4.5334448,0.02586757,95.50269353],[4.53344534,0.02586929,95.50352552],[4.53344589,0.02587101,95.50435877],[4.53344644,0.02587272,95.50519329],[4.53344699,0.02587444,95.50602908],[4.53344754,0.02587616,95.50686613],[4.53344809,0.02587787,95.50770444],[4.53344864,0.02587959,95.50854401],[4.53344919,0.02588131,95.50938483],[4.53344974,0.02588302,95.5102269],[4.53345029,0.02588474,95.51107022],[4.53345084,0.02588646,95.51191478],[4.53345139,0.02588817,95.51276058],[4.53345194,0.02588989,95.51360758],[4.53345249,0.02589161,95.51445579],[4.53345304,0.02589332,95.51530518],[4.53345359,0.02589504,95.51615573],[4.53345414,0.02589676,95.51700743],[4.53345469,0.02589847,95.51786026],[4.53345524,0.02590019,95.51871421],[4.53345579,0.0259019,95.51956925],[4.53345634,0.02590362,95.52042537],[4.53345689,0.02590534,95.52128256],[4.53345744,0.02590705,95.5221408],[4.53345799,0.02590877,95.52300007],[4.53345854,0.02591049,95.52386035],[4.53345909,0.0259122,95.52472163],[4.53345964,0.02591392,95.52558389],[4.5334602,0.02591563,95.52644711],[4.53346075,0.02591735,95.52731128],[4.5334613,0.02591907,95.52817639],[4.53346185,0.02592078,95.5290424],[4.5334624,0.0259225,95.52990932],[4.53346295,0.02592421,95.53077711],[4.53346351,0.02592593,95.53164578],[4.53346406,0.02592764,95.53251528],[4.53346461,0.02592936,95.53338562],[4.53346516,0.02593108,95.53425678],[4.53346571,0.02593279,95.53512873],[4.53346627,0.02593451,95.53600147],[4.53346682,0.02593622,95.53687496],[4.53346737,0.02593794,95.53774921],[4.53346792,0.02593965,95.53862419],[4.53346848,0.02594137,95.53949988],[4.53346903,0.02594309,95.54037627],[4.53346958,0.0259448,95.54125335],[4.53347014,0.02594652,95.54213109],[4.53347069,0.02594823,95.54300947],[4.53347124,0.02594995,95.54388849],[4.53347179,0.02595166,95.54476813],[4.53347235,0.02595338,95.54564836],[4.5334729,0.02595509,95.54652918],[4.53347345,0.02595681,95.54741056],[4.53347401,0.02595853,95.54829249],[4.53347456,0.02596024,95.54917495],[4.53347266,0.02596086,95.54309029]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-4,"type":"shoulder","predecessorId":-4,"sOffset":265.8100035851}},{"geometry":{"coordinates":[[[4.53347456,0.02596024,95.54917495],[4.53347401,0.02595853,95.54829249],[4.53347345,0.02595681,95.54741056],[4.5334729,0.02595509,95.54652918],[4.53347235,0.02595338,95.54564836],[4.53347179,0.02595166,95.54476813],[4.53347124,0.02594995,95.54388849],[4.53347069,0.02594823,95.54300947],[4.53347014,0.02594652,95.54213109],[4.53346958,0.0259448,95.54125335],[4.53346903,0.02594309,95.54037627],[4.53346848,0.02594137,95.53949988],[4.53346792,0.02593965,95.53862419],[4.53346737,0.02593794,95.53774921],[4.53346682,0.02593622,95.53687496],[4.53346627,0.02593451,95.53600147],[4.53346571,0.02593279,95.53512873],[4.53346516,0.02593108,95.53425678],[4.53346461,0.02592936,95.53338562],[4.53346406,0.02592764,95.53251528],[4.53346351,0.02592593,95.53164578],[4.53346295,0.02592421,95.53077711],[4.5334624,0.0259225,95.52990932],[4.53346185,0.02592078,95.5290424],[4.5334613,0.02591907,95.52817639],[4.53346075,0.02591735,95.52731128],[4.5334602,0.02591563,95.52644711],[4.53345964,0.02591392,95.52558389],[4.53345909,0.0259122,95.52472163],[4.53345854,0.02591049,95.52386035],[4.53345799,0.02590877,95.52300007],[4.53345744,0.02590705,95.5221408],[4.53345689,0.02590534,95.52128256],[4.53345634,0.02590362,95.52042537],[4.53345579,0.0259019,95.51956925],[4.53345524,0.02590019,95.51871421],[4.53345469,0.02589847,95.51786026],[4.53345414,0.02589676,95.51700743],[4.53345359,0.02589504,95.51615573],[4.53345304,0.02589332,95.51530518],[4.53345249,0.02589161,95.51445579],[4.53345194,0.02588989,95.51360758],[4.53345139,0.02588817,95.51276058],[4.53345084,0.02588646,95.51191478],[4.53345029,0.02588474,95.51107022],[4.53344974,0.02588302,95.5102269],[4.53344919,0.02588131,95.50938483],[4.53344864,0.02587959,95.50854401],[4.53344809,0.02587787,95.50770444],[4.53344754,0.02587616,95.50686613],[4.53344699,0.02587444,95.50602908],[4.53344644,0.02587272,95.50519329],[4.53344589,0.02587101,95.50435877],[4.53344534,0.02586929,95.50352552],[4.5334448,0.02586757,95.50269353],[4.53344425,0.02586585,95.50186283],[4.5334437,0.02586414,95.5010334],[4.53344315,0.02586242,95.50020525],[4.5334426,0.0258607,95.49937839],[4.53344206,0.02585899,95.49855282],[4.53344151,0.02585727,95.49772853],[4.53344096,0.02585555,95.49690554],[4.53344041,0.02585383,95.49608385],[4.53343987,0.02585212,95.49526345],[4.53343932,0.0258504,95.49444436],[4.53343877,0.02584868,95.49362657],[4.53343822,0.02584696,95.49281009],[4.53343768,0.02584525,95.49199493],[4.53343713,0.02584353,95.49118107],[4.53343659,0.02584181,95.49036853],[4.53343604,0.02584009,95.48955726],[4.53343549,0.02583838,95.48874724],[4.53343495,0.02583666,95.48793846],[4.5334344,0.02583494,95.48713089],[4.53343386,0.02583322,95.4863245],[4.53343331,0.0258315,95.48551927],[4.53343276,0.02582979,95.48471518],[4.53343222,0.02582807,95.48391219],[4.53343167,0.02582635,95.48311029],[4.53343113,0.02582463,95.48230946],[4.53343058,0.02582291,95.48150966],[4.53343004,0.0258212,95.48071087],[4.53342949,0.02581948,95.47991308],[4.53342895,0.02581776,95.47911624],[4.5334284,0.02581604,95.47832035],[4.53342786,0.02581432,95.47752538],[4.53342731,0.02581261,95.47673131],[4.53342677,0.02581089,95.47593811],[4.53342622,0.02580917,95.47514578],[4.53342568,0.02580745,95.47435428],[4.53342513,0.02580573,95.4735636],[4.53342459,0.02580402,95.47277372],[4.53342404,0.0258023,95.47198462],[4.5334235,0.02580058,95.47119627],[4.53342295,0.02579886,95.47040866],[4.53342241,0.02579714,95.46962177],[4.53342186,0.02579543,95.46883558],[4.53342132,0.02579371,95.46805005],[4.53342077,0.02579199,95.46726517],[4.53342023,0.02579027,95.46648092],[4.53341968,0.02578855,95.46569725],[4.53341914,0.02578683,95.46491416],[4.53341859,0.02578512,95.4641316],[4.53341805,0.0257834,95.46334956],[4.5334175,0.02578168,95.46256801],[4.53341696,0.02577996,95.46178693],[4.53341641,0.02577824,95.46100627],[4.53341587,0.02577653,95.46022603],[4.53341532,0.02577481,95.45944617],[4.53341478,0.02577309,95.45866667],[4.53341423,0.02577137,95.45788749],[4.53341368,0.02576966,95.45710862],[4.53341314,0.02576794,95.45633003],[4.53341259,0.02576622,95.45555169],[4.53341204,0.0257645,95.45477357],[4.5334115,0.02576278,95.45399565],[4.53341095,0.02576107,95.45321791],[4.5334104,0.02575935,95.4524403],[4.53340986,0.02575763,95.45166282],[4.53340931,0.02575591,95.45088542],[4.53340876,0.0257542,95.45010809],[4.53340821,0.02575248,95.4493308],[4.53340767,0.02575076,95.44855353],[4.53340712,0.02574905,95.44777623],[4.53340657,0.02574733,95.4469989],[4.53340602,0.02574561,95.44622152],[4.53340547,0.0257439,95.44544409],[4.53340492,0.02574218,95.44466664],[4.53340437,0.02574046,95.44388917],[4.53340382,0.02573875,95.44311168],[4.53340327,0.02573703,95.44233419],[4.53340272,0.02573531,95.44155672],[4.53340217,0.0257336,95.44077925],[4.53340162,0.02573188,95.44000182],[4.53340107,0.02573016,95.43922442],[4.53340052,0.02572845,95.43844708],[4.53339997,0.02572673,95.43766978],[4.53339942,0.02572501,95.43689256],[4.53339887,0.0257233,95.43611541],[4.53339832,0.02572158,95.43533835],[4.53339777,0.02571987,95.43456141],[4.53339721,0.02571815,95.43378459],[4.53339666,0.02571643,95.43300791],[4.53339611,0.02571472,95.43223139],[4.53339556,0.025713,95.43145505],[4.53339501,0.02571129,95.4306789],[4.53339445,0.02570957,95.42990296],[4.5333939,0.02570786,95.42912725],[4.53339335,0.02570614,95.42835178],[4.5333928,0.02570442,95.42757657],[4.53339224,0.02570271,95.42680164],[4.53339169,0.02570099,95.426027],[4.53339114,0.02569928,95.42525267],[4.53339058,0.02569756,95.42447867],[4.53339003,0.02569585,95.42370501],[4.53338948,0.02569413,95.42293171],[4.53338892,0.02569242,95.42215879],[4.53338837,0.0256907,95.42138626],[4.53338782,0.02568899,95.42061415],[4.53338726,0.02568727,95.41984246],[4.53338671,0.02568556,95.41907122],[4.53338616,0.02568384,95.41830044],[4.5333856,0.02568213,95.41753014],[4.53338505,0.02568041,95.41676034],[4.53338449,0.02567869,95.41599105],[4.53338394,0.02567698,95.41522229],[4.53338339,0.02567526,95.41445407],[4.53338283,0.02567355,95.41368642],[4.53338228,0.02567183,95.41291934],[4.53338172,0.02567012,95.41215286],[4.53338117,0.0256684,95.41138699],[4.53338062,0.02566669,95.41062174],[4.53338006,0.02566497,95.40985713],[4.53337951,0.02566326,95.40909317],[4.53337895,0.02566154,95.40832988],[4.5333784,0.02565983,95.40756727],[4.53337785,0.02565811,95.40680536],[4.53337729,0.0256564,95.40604415],[4.53337674,0.02565468,95.40528367],[4.53337619,0.02565297,95.40452393],[4.53337563,0.02565125,95.40376495],[4.53337508,0.02564954,95.40300673],[4.53337452,0.02564782,95.4022493],[4.53337397,0.02564611,95.40149267],[4.53337342,0.02564439,95.40073685],[4.53337286,0.02564268,95.39998185],[4.53337231,0.02564096,95.3992277],[4.53337176,0.02563924,95.39847441],[4.5333712,0.02563753,95.39772199],[4.53337065,0.02563581,95.39697045],[4.5333701,0.0256341,95.39621982],[4.53336955,0.02563238,95.39547011],[4.53336899,0.02563067,95.39472137],[4.53336844,0.02562895,95.39397363],[4.53336789,0.02562724,95.39322694],[4.53336734,0.02562552,95.39248133],[4.53336678,0.0256238,95.39173684],[4.53336623,0.02562209,95.39099346],[4.53336568,0.02562037,95.39025118],[4.53336513,0.02561866,95.38951001],[4.53336458,0.02561694,95.38876994],[4.53336403,0.02561523,95.38803095],[4.53336347,0.02561351,95.38729304],[4.53336292,0.02561179,95.38655621],[4.53336237,0.02561008,95.38582044],[4.53336182,0.02560836,95.38508574],[4.53336127,0.02560664,95.38435209],[4.53336072,0.02560493,95.38361948],[4.53336017,0.02560321,95.38288792],[4.53335962,0.0256015,95.38215739],[4.53335907,0.02559978,95.38142789],[4.53335852,0.02559806,95.38069941],[4.53335797,0.02559635,95.37997194],[4.53335742,0.02559463,95.37924547],[4.53335687,0.02559291,95.37852001],[4.53335632,0.0255912,95.37779554],[4.53335577,0.02558948,95.37707205],[4.53335523,0.02558776,95.37634955],[4.53335468,0.02558605,95.37562801],[4.53335413,0.02558433,95.37490744],[4.53335358,0.02558261,95.37418783],[4.53335303,0.0255809,95.37346917],[4.53335248,0.02557918,95.37275146],[4.53335194,0.02557746,95.37203468],[4.53335139,0.02557574,95.37131883],[4.53335084,0.02557403,95.37060391],[4.53335029,0.02557231,95.36988991],[4.53334974,0.02557059,95.36917681],[4.5333492,0.02556888,95.36846462],[4.53334865,0.02556716,95.36775333],[4.5333481,0.02556544,95.36704292],[4.53334755,0.02556372,95.3663334],[4.53334701,0.02556201,95.36562475],[4.53334646,0.02556029,95.36491697],[4.53334591,0.02555857,95.36421005],[4.53334537,0.02555685,95.36350399],[4.53334482,0.02555514,95.36279878],[4.53334427,0.02555342,95.36209441],[4.53334373,0.0255517,95.36139087],[4.53334318,0.02554998,95.36068816],[4.53334264,0.02554827,95.35998627],[4.53334209,0.02554655,95.35928519],[4.53334154,0.02554483,95.35858492],[4.533341,0.02554311,95.35788545],[4.53334045,0.0255414,95.35718677],[4.53333991,0.02553968,95.35648888],[4.53333936,0.02553796,95.35579176],[4.53333927,0.02553767,95.35567583],[4.53336844,0.02552819,95.45373207],[4.53336853,0.02552848,95.45384917],[4.53336907,0.0255302,95.45455364],[4.53336962,0.02553192,95.45525939],[4.53337017,0.02553363,95.45596642],[4.53337071,0.02553535,95.4566747],[4.53337126,0.02553707,95.45738421],[4.53337181,0.02553879,95.45809493],[4.53337235,0.02554051,95.45880683],[4.5333729,0.02554222,95.45951991],[4.53337345,0.02554394,95.46023413],[4.533374,0.02554566,95.46094947],[4.53337454,0.02554737,95.46166592],[4.53337509,0.02554909,95.46238346],[4.53337564,0.02555081,95.46310205],[4.53337619,0.02555253,95.46382169],[4.53337674,0.02555424,95.46454235],[4.53337729,0.02555596,95.46526401],[4.53337784,0.02555768,95.46598665],[4.53337839,0.02555939,95.46671024],[4.53337894,0.02556111,95.46743478],[4.53337949,0.02556283,95.46816022],[4.53338004,0.02556454,95.46888657],[4.53338059,0.02556626,95.46961378],[4.53338114,0.02556798,95.47034185],[4.53338169,0.02556969,95.47107075],[4.53338224,0.02557141,95.47180046],[4.53338279,0.02557312,95.47253096],[4.53338334,0.02557484,95.47326223],[4.53338389,0.02557656,95.47399425],[4.53338444,0.02557827,95.47472699],[4.53338499,0.02557999,95.47546043],[4.53338554,0.02558171,95.47619457],[4.53338609,0.02558342,95.47692936],[4.53338665,0.02558514,95.47766479],[4.5333872,0.02558685,95.47840085],[4.53338775,0.02558857,95.4791375],[4.5333883,0.02559029,95.47987473],[4.53338885,0.025592,95.48061252],[4.53338941,0.02559372,95.48135084],[4.53338996,0.02559543,95.48208968],[4.53339051,0.02559715,95.48282901],[4.53339106,0.02559887,95.48356882],[4.53339161,0.02560058,95.48430907],[4.53339217,0.0256023,95.48504976],[4.53339272,0.02560401,95.48579085],[4.53339327,0.02560573,95.48653233],[4.53339382,0.02560744,95.48727417],[4.53339437,0.02560916,95.48801636],[4.53339493,0.02561088,95.48875888],[4.53339548,0.02561259,95.4895017],[4.53339603,0.02561431,95.49024479],[4.53339658,0.02561602,95.49098815],[4.53339713,0.02561774,95.49173175],[4.53339769,0.02561946,95.49247556],[4.53339824,0.02562117,95.49321958],[4.53339879,0.02562289,95.49396376],[4.53339934,0.0256246,95.4947081],[4.53339989,0.02562632,95.49545258],[4.53340044,0.02562804,95.49619718],[4.533401,0.02562975,95.4969419],[4.53340155,0.02563147,95.49768676],[4.5334021,0.02563318,95.49843174],[4.53340265,0.0256349,95.49917687],[4.5334032,0.02563662,95.49992213],[4.53340375,0.02563833,95.50066754],[4.5334043,0.02564005,95.50141309],[4.53340486,0.02564177,95.50215879],[4.53340541,0.02564348,95.50290464],[4.53340596,0.0256452,95.50365064],[4.53340651,0.02564691,95.50439681],[4.53340706,0.02564863,95.50514313],[4.53340761,0.02565035,95.50588962],[4.53340816,0.02565206,95.50663627],[4.53340871,0.02565378,95.50738309],[4.53340926,0.0256555,95.50813009],[4.53340981,0.02565721,95.50887726],[4.53341036,0.02565893,95.50962462],[4.53341091,0.02566065,95.51037215],[4.53341146,0.02566236,95.51111987],[4.53341201,0.02566408,95.51186778],[4.53341256,0.0256658,95.51261588],[4.53341311,0.02566751,95.51336417],[4.53341366,0.02566923,95.51411266],[4.53341421,0.02567095,95.51486134],[4.53341476,0.02567266,95.51561022],[4.53341531,0.02567438,95.5163593],[4.53341586,0.0256761,95.51710857],[4.53341641,0.02567781,95.51785804],[4.53341696,0.02567953,95.51860772],[4.53341751,0.02568125,95.51935759],[4.53341806,0.02568296,95.52010766],[4.53341861,0.02568468,95.52085793],[4.53341916,0.0256864,95.5216084],[4.53341971,0.02568811,95.52235908],[4.53342026,0.02568983,95.52310996],[4.53342081,0.02569155,95.52386105],[4.53342136,0.02569326,95.52461234],[4.53342191,0.02569498,95.52536384],[4.53342245,0.0256967,95.52611555],[4.533423,0.02569841,95.52686746],[4.53342355,0.02570013,95.52761958],[4.5334241,0.02570185,95.52837191],[4.53342465,0.02570357,95.52912446],[4.5334252,0.02570528,95.52987721],[4.53342575,0.025707,95.53063017],[4.5334263,0.02570872,95.53138335],[4.53342684,0.02571043,95.53213674],[4.53342739,0.02571215,95.53289035],[4.53342794,0.02571387,95.53364417],[4.53342849,0.02571558,95.53439821],[4.53342904,0.0257173,95.53515247],[4.53342959,0.02571902,95.53590695],[4.53343013,0.02572074,95.53666166],[4.53343068,0.02572245,95.53741661],[4.53343123,0.02572417,95.53817182],[4.53343178,0.02572589,95.53892727],[4.53343233,0.02572761,95.53968299],[4.53343287,0.02572932,95.54043898],[4.53343342,0.02573104,95.54119525],[4.53343397,0.02573276,95.5419518],[4.53343452,0.02573448,95.54270865],[4.53343507,0.02573619,95.5434658],[4.53343561,0.02573791,95.54422326],[4.53343616,0.02573963,95.54498103],[4.53343671,0.02574134,95.54573913],[4.53343726,0.02574306,95.54649756],[4.5334378,0.02574478,95.54725633],[4.53343835,0.0257465,95.54801545],[4.5334389,0.02574821,95.54877492],[4.53343944,0.02574993,95.54953475],[4.53343999,0.02575165,95.55029495],[4.53344054,0.02575337,95.55105553],[4.53344109,0.02575508,95.5518165],[4.53344163,0.0257568,95.55257785],[4.53344218,0.02575852,95.55333961],[4.53344273,0.02576024,95.55410178],[4.53344328,0.02576195,95.55486436],[4.53344382,0.02576367,95.55562736],[4.53344437,0.02576539,95.55639079],[4.53344492,0.02576711,95.55715466],[4.53344546,0.02576882,95.55791898],[4.53344601,0.02577054,95.55868375],[4.53344656,0.02577226,95.55944898],[4.53344711,0.02577398,95.56021468],[4.53344765,0.0257757,95.56098086],[4.5334482,0.02577741,95.56174752],[4.53344875,0.02577913,95.56251467],[4.53344929,0.02578085,95.56328232],[4.53344984,0.02578257,95.56405047],[4.53345039,0.02578428,95.56481914],[4.53345094,0.025786,95.56558833],[4.53345148,0.02578772,95.56635804],[4.53345203,0.02578944,95.56712829],[4.53345258,0.02579115,95.56789908],[4.53345312,0.02579287,95.5686704],[4.53345367,0.02579459,95.56944226],[4.53345422,0.02579631,95.57021466],[4.53345477,0.02579802,95.5709876],[4.53345531,0.02579974,95.57176109],[4.53345586,0.02580146,95.57253512],[4.53345641,0.02580317,95.57330969],[4.53345696,0.02580489,95.57408482],[4.5334575,0.02580661,95.57486049],[4.53345805,0.02580833,95.57563672],[4.5334586,0.02581004,95.5764135],[4.53345914,0.02581176,95.57719085],[4.53345969,0.02581348,95.57796875],[4.53346024,0.0258152,95.57874723],[4.53346079,0.02581691,95.57952629],[4.53346133,0.02581863,95.58030593],[4.53346188,0.02582035,95.58108616],[4.53346243,0.02582207,95.58186698],[4.53346298,0.02582378,95.58264841],[4.53346352,0.0258255,95.58343044],[4.53346407,0.02582722,95.58421309],[4.53346462,0.02582894,95.58499636],[4.53346517,0.02583065,95.58578025],[4.53346572,0.02583237,95.58656478],[4.53346626,0.02583409,95.58734994],[4.53346681,0.02583581,95.58813575],[4.53346736,0.02583752,95.58892221],[4.53346791,0.02583924,95.58970932],[4.53346845,0.02584096,95.59049709],[4.533469,0.02584268,95.59128553],[4.53346955,0.02584439,95.59207464],[4.5334701,0.02584611,95.59286444],[4.53347065,0.02584783,95.59365491],[4.53347119,0.02584954,95.59444608],[4.53347174,0.02585126,95.59523795],[4.53347229,0.02585298,95.59603051],[4.53347284,0.0258547,95.59682379],[4.53347339,0.02585641,95.59761778],[4.53347394,0.02585813,95.59841249],[4.53347448,0.02585985,95.59920793],[4.53347503,0.02586156,95.60000409],[4.53347558,0.02586328,95.600801],[4.53347613,0.025865,95.60159865],[4.53347668,0.02586672,95.60239704],[4.53347723,0.02586843,95.6031962],[4.53347778,0.02587015,95.60399611],[4.53347832,0.02587187,95.60479679],[4.53347887,0.02587358,95.60559824],[4.53347942,0.0258753,95.60640047],[4.53347997,0.02587702,95.60720348],[4.53348052,0.02587874,95.60800727],[4.53348107,0.02588045,95.60881185],[4.53348162,0.02588217,95.6096172],[4.53348217,0.02588389,95.61042333],[4.53348272,0.0258856,95.61123023],[4.53348327,0.02588732,95.6120379],[4.53348382,0.02588904,95.61284633],[4.53348437,0.02589075,95.61365553],[4.53348492,0.02589247,95.61446549],[4.53348547,0.02589419,95.6152762],[4.53348602,0.0258959,95.61608768],[4.53348657,0.02589762,95.6168999],[4.53348712,0.02589934,95.61771288],[4.53348767,0.02590105,95.6185266],[4.53348822,0.02590277,95.61934106],[4.53348877,0.02590449,95.62015627],[4.53348932,0.0259062,95.62097221],[4.53348987,0.02590792,95.62178889],[4.53349042,0.02590964,95.6226063],[4.53349097,0.02591135,95.62342444],[4.53349152,0.02591307,95.6242433],[4.53349207,0.02591478,95.62506289],[4.53349262,0.0259165,95.6258832],[4.53349317,0.02591822,95.62670423],[4.53349372,0.02591993,95.62752597],[4.53349427,0.02592165,95.62834842],[4.53349483,0.02592337,95.62917158],[4.53349538,0.02592508,95.62999544],[4.53349593,0.0259268,95.63082001],[4.53349648,0.02592851,95.63164527],[4.53349703,0.02593023,95.63247123],[4.53349758,0.02593195,95.63329789],[4.53349814,0.02593366,95.63412523],[4.53349869,0.02593538,95.63495326],[4.53349924,0.02593709,95.63578197],[4.53349979,0.02593881,95.63661136],[4.53350035,0.02594053,95.63744143],[4.5335009,0.02594224,95.63827217],[4.53350145,0.02594396,95.63910358],[4.533502,0.02594567,95.63993566],[4.53350256,0.02594739,95.64076841],[4.53350311,0.0259491,95.64160181],[4.53350366,0.02595082,95.64243587],[4.53347456,0.02596024,95.54917495]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3,"sOffset":265.8100035851}},{"geometry":{"coordinates":[[[4.53350366,0.02595082,95.64243587],[4.53350311,0.0259491,95.64160181],[4.53350256,0.02594739,95.64076841],[4.533502,0.02594567,95.63993566],[4.53350145,0.02594396,95.63910358],[4.5335009,0.02594224,95.63827217],[4.53350035,0.02594053,95.63744143],[4.53349979,0.02593881,95.63661136],[4.53349924,0.02593709,95.63578197],[4.53349869,0.02593538,95.63495326],[4.53349814,0.02593366,95.63412523],[4.53349758,0.02593195,95.63329789],[4.53349703,0.02593023,95.63247123],[4.53349648,0.02592851,95.63164527],[4.53349593,0.0259268,95.63082001],[4.53349538,0.02592508,95.62999544],[4.53349483,0.02592337,95.62917158],[4.53349427,0.02592165,95.62834842],[4.53349372,0.02591993,95.62752597],[4.53349317,0.02591822,95.62670423],[4.53349262,0.0259165,95.6258832],[4.53349207,0.02591478,95.62506289],[4.53349152,0.02591307,95.6242433],[4.53349097,0.02591135,95.62342444],[4.53349042,0.02590964,95.6226063],[4.53348987,0.02590792,95.62178889],[4.53348932,0.0259062,95.62097221],[4.53348877,0.02590449,95.62015627],[4.53348822,0.02590277,95.61934106],[4.53348767,0.02590105,95.6185266],[4.53348712,0.02589934,95.61771288],[4.53348657,0.02589762,95.6168999],[4.53348602,0.0258959,95.61608768],[4.53348547,0.02589419,95.6152762],[4.53348492,0.02589247,95.61446549],[4.53348437,0.02589075,95.61365553],[4.53348382,0.02588904,95.61284633],[4.53348327,0.02588732,95.6120379],[4.53348272,0.0258856,95.61123023],[4.53348217,0.02588389,95.61042333],[4.53348162,0.02588217,95.6096172],[4.53348107,0.02588045,95.60881185],[4.53348052,0.02587874,95.60800727],[4.53347997,0.02587702,95.60720348],[4.53347942,0.0258753,95.60640047],[4.53347887,0.02587358,95.60559824],[4.53347832,0.02587187,95.60479679],[4.53347778,0.02587015,95.60399611],[4.53347723,0.02586843,95.6031962],[4.53347668,0.02586672,95.60239704],[4.53347613,0.025865,95.60159865],[4.53347558,0.02586328,95.600801],[4.53347503,0.02586156,95.60000409],[4.53347448,0.02585985,95.59920793],[4.53347394,0.02585813,95.59841249],[4.53347339,0.02585641,95.59761778],[4.53347284,0.0258547,95.59682379],[4.53347229,0.02585298,95.59603051],[4.53347174,0.02585126,95.59523795],[4.53347119,0.02584954,95.59444608],[4.53347065,0.02584783,95.59365491],[4.5334701,0.02584611,95.59286444],[4.53346955,0.02584439,95.59207464],[4.533469,0.02584268,95.59128553],[4.53346845,0.02584096,95.59049709],[4.53346791,0.02583924,95.58970932],[4.53346736,0.02583752,95.58892221],[4.53346681,0.02583581,95.58813575],[4.53346626,0.02583409,95.58734994],[4.53346572,0.02583237,95.58656478],[4.53346517,0.02583065,95.58578025],[4.53346462,0.02582894,95.58499636],[4.53346407,0.02582722,95.58421309],[4.53346352,0.0258255,95.58343044],[4.53346298,0.02582378,95.58264841],[4.53346243,0.02582207,95.58186698],[4.53346188,0.02582035,95.58108616],[4.53346133,0.02581863,95.58030593],[4.53346079,0.02581691,95.57952629],[4.53346024,0.0258152,95.57874723],[4.53345969,0.02581348,95.57796875],[4.53345914,0.02581176,95.57719085],[4.5334586,0.02581004,95.5764135],[4.53345805,0.02580833,95.57563672],[4.5334575,0.02580661,95.57486049],[4.53345696,0.02580489,95.57408482],[4.53345641,0.02580317,95.57330969],[4.53345586,0.02580146,95.57253512],[4.53345531,0.02579974,95.57176109],[4.53345477,0.02579802,95.5709876],[4.53345422,0.02579631,95.57021466],[4.53345367,0.02579459,95.56944226],[4.53345312,0.02579287,95.5686704],[4.53345258,0.02579115,95.56789908],[4.53345203,0.02578944,95.56712829],[4.53345148,0.02578772,95.56635804],[4.53345094,0.025786,95.56558833],[4.53345039,0.02578428,95.56481914],[4.53344984,0.02578257,95.56405047],[4.53344929,0.02578085,95.56328232],[4.53344875,0.02577913,95.56251467],[4.5334482,0.02577741,95.56174752],[4.53344765,0.0257757,95.56098086],[4.53344711,0.02577398,95.56021468],[4.53344656,0.02577226,95.55944898],[4.53344601,0.02577054,95.55868375],[4.53344546,0.02576882,95.55791898],[4.53344492,0.02576711,95.55715466],[4.53344437,0.02576539,95.55639079],[4.53344382,0.02576367,95.55562736],[4.53344328,0.02576195,95.55486436],[4.53344273,0.02576024,95.55410178],[4.53344218,0.02575852,95.55333961],[4.53344163,0.0257568,95.55257785],[4.53344109,0.02575508,95.5518165],[4.53344054,0.02575337,95.55105553],[4.53343999,0.02575165,95.55029495],[4.53343944,0.02574993,95.54953475],[4.5334389,0.02574821,95.54877492],[4.53343835,0.0257465,95.54801545],[4.5334378,0.02574478,95.54725633],[4.53343726,0.02574306,95.54649756],[4.53343671,0.02574134,95.54573913],[4.53343616,0.02573963,95.54498103],[4.53343561,0.02573791,95.54422326],[4.53343507,0.02573619,95.5434658],[4.53343452,0.02573448,95.54270865],[4.53343397,0.02573276,95.5419518],[4.53343342,0.02573104,95.54119525],[4.53343287,0.02572932,95.54043898],[4.53343233,0.02572761,95.53968299],[4.53343178,0.02572589,95.53892727],[4.53343123,0.02572417,95.53817182],[4.53343068,0.02572245,95.53741661],[4.53343013,0.02572074,95.53666166],[4.53342959,0.02571902,95.53590695],[4.53342904,0.0257173,95.53515247],[4.53342849,0.02571558,95.53439821],[4.53342794,0.02571387,95.53364417],[4.53342739,0.02571215,95.53289035],[4.53342684,0.02571043,95.53213674],[4.5334263,0.02570872,95.53138335],[4.53342575,0.025707,95.53063017],[4.5334252,0.02570528,95.52987721],[4.53342465,0.02570357,95.52912446],[4.5334241,0.02570185,95.52837191],[4.53342355,0.02570013,95.52761958],[4.533423,0.02569841,95.52686746],[4.53342245,0.0256967,95.52611555],[4.53342191,0.02569498,95.52536384],[4.53342136,0.02569326,95.52461234],[4.53342081,0.02569155,95.52386105],[4.53342026,0.02568983,95.52310996],[4.53341971,0.02568811,95.52235908],[4.53341916,0.0256864,95.5216084],[4.53341861,0.02568468,95.52085793],[4.53341806,0.02568296,95.52010766],[4.53341751,0.02568125,95.51935759],[4.53341696,0.02567953,95.51860772],[4.53341641,0.02567781,95.51785804],[4.53341586,0.0256761,95.51710857],[4.53341531,0.02567438,95.5163593],[4.53341476,0.02567266,95.51561022],[4.53341421,0.02567095,95.51486134],[4.53341366,0.02566923,95.51411266],[4.53341311,0.02566751,95.51336417],[4.53341256,0.0256658,95.51261588],[4.53341201,0.02566408,95.51186778],[4.53341146,0.02566236,95.51111987],[4.53341091,0.02566065,95.51037215],[4.53341036,0.02565893,95.50962462],[4.53340981,0.02565721,95.50887726],[4.53340926,0.0256555,95.50813009],[4.53340871,0.02565378,95.50738309],[4.53340816,0.02565206,95.50663627],[4.53340761,0.02565035,95.50588962],[4.53340706,0.02564863,95.50514313],[4.53340651,0.02564691,95.50439681],[4.53340596,0.0256452,95.50365064],[4.53340541,0.02564348,95.50290464],[4.53340486,0.02564177,95.50215879],[4.5334043,0.02564005,95.50141309],[4.53340375,0.02563833,95.50066754],[4.5334032,0.02563662,95.49992213],[4.53340265,0.0256349,95.49917687],[4.5334021,0.02563318,95.49843174],[4.53340155,0.02563147,95.49768676],[4.533401,0.02562975,95.4969419],[4.53340044,0.02562804,95.49619718],[4.53339989,0.02562632,95.49545258],[4.53339934,0.0256246,95.4947081],[4.53339879,0.02562289,95.49396376],[4.53339824,0.02562117,95.49321958],[4.53339769,0.02561946,95.49247556],[4.53339713,0.02561774,95.49173175],[4.53339658,0.02561602,95.49098815],[4.53339603,0.02561431,95.49024479],[4.53339548,0.02561259,95.4895017],[4.53339493,0.02561088,95.48875888],[4.53339437,0.02560916,95.48801636],[4.53339382,0.02560744,95.48727417],[4.53339327,0.02560573,95.48653233],[4.53339272,0.02560401,95.48579085],[4.53339217,0.0256023,95.48504976],[4.53339161,0.02560058,95.48430907],[4.53339106,0.02559887,95.48356882],[4.53339051,0.02559715,95.48282901],[4.53338996,0.02559543,95.48208968],[4.53338941,0.02559372,95.48135084],[4.53338885,0.025592,95.48061252],[4.5333883,0.02559029,95.47987473],[4.53338775,0.02558857,95.4791375],[4.5333872,0.02558685,95.47840085],[4.53338665,0.02558514,95.47766479],[4.53338609,0.02558342,95.47692936],[4.53338554,0.02558171,95.47619457],[4.53338499,0.02557999,95.47546043],[4.53338444,0.02557827,95.47472699],[4.53338389,0.02557656,95.47399425],[4.53338334,0.02557484,95.47326223],[4.53338279,0.02557312,95.47253096],[4.53338224,0.02557141,95.47180046],[4.53338169,0.02556969,95.47107075],[4.53338114,0.02556798,95.47034185],[4.53338059,0.02556626,95.46961378],[4.53338004,0.02556454,95.46888657],[4.53337949,0.02556283,95.46816022],[4.53337894,0.02556111,95.46743478],[4.53337839,0.02555939,95.46671024],[4.53337784,0.02555768,95.46598665],[4.53337729,0.02555596,95.46526401],[4.53337674,0.02555424,95.46454235],[4.53337619,0.02555253,95.46382169],[4.53337564,0.02555081,95.46310205],[4.53337509,0.02554909,95.46238346],[4.53337454,0.02554737,95.46166592],[4.533374,0.02554566,95.46094947],[4.53337345,0.02554394,95.46023413],[4.5333729,0.02554222,95.45951991],[4.53337235,0.02554051,95.45880683],[4.53337181,0.02553879,95.45809493],[4.53337126,0.02553707,95.45738421],[4.53337071,0.02553535,95.4566747],[4.53337017,0.02553363,95.45596642],[4.53336962,0.02553192,95.45525939],[4.53336907,0.0255302,95.45455364],[4.53336853,0.02552848,95.45384917],[4.53336844,0.02552819,95.45373207],[4.53339942,0.02551813,95.55788299],[4.53339951,0.02551841,95.55800403],[4.53340006,0.02552013,95.55873166],[4.53340061,0.02552185,95.55945972],[4.53340116,0.02552356,95.5601882],[4.53340171,0.02552528,95.5609171],[4.53340226,0.025527,95.56164642],[4.53340281,0.02552871,95.56237615],[4.53340336,0.02553043,95.56310629],[4.53340391,0.02553215,95.56383684],[4.53340446,0.02553386,95.5645678],[4.53340501,0.02553558,95.56529915],[4.53340556,0.0255373,95.5660309],[4.53340611,0.02553901,95.56676304],[4.53340666,0.02554073,95.56749557],[4.53340722,0.02554244,95.56822849],[4.53340777,0.02554416,95.56896178],[4.53340832,0.02554588,95.56969546],[4.53340887,0.02554759,95.57042951],[4.53340942,0.02554931,95.57116393],[4.53340997,0.02555103,95.57189872],[4.53341052,0.02555274,95.57263387],[4.53341107,0.02555446,95.57336938],[4.53341162,0.02555618,95.57410525],[4.53341218,0.02555789,95.57484147],[4.53341273,0.02555961,95.57557804],[4.53341328,0.02556132,95.57631495],[4.53341383,0.02556304,95.57705221],[4.53341438,0.02556476,95.57778981],[4.53341493,0.02556647,95.57852774],[4.53341549,0.02556819,95.579266],[4.53341604,0.02556991,95.58000459],[4.53341659,0.02557162,95.5807435],[4.53341714,0.02557334,95.58148273],[4.53341769,0.02557505,95.58222228],[4.53341825,0.02557677,95.58296214],[4.5334188,0.02557849,95.58370232],[4.53341935,0.0255802,95.58444279],[4.5334199,0.02558192,95.58518357],[4.53342045,0.02558363,95.58592465],[4.53342101,0.02558535,95.58666602],[4.53342156,0.02558707,95.58740768],[4.53342211,0.02558878,95.58814963],[4.53342266,0.0255905,95.58889186],[4.53342322,0.02559221,95.58963437],[4.53342377,0.02559393,95.59037716],[4.53342432,0.02559565,95.59112022],[4.53342487,0.02559736,95.59186355],[4.53342543,0.02559908,95.59260714],[4.53342598,0.02560079,95.593351],[4.53342653,0.02560251,95.59409511],[4.53342708,0.02560423,95.59483948],[4.53342764,0.02560594,95.59558409],[4.53342819,0.02560766,95.59632896],[4.53342874,0.02560937,95.59707406],[4.53342929,0.02561109,95.59781941],[4.53342985,0.02561281,95.59856499],[4.5334304,0.02561452,95.5993108],[4.53343095,0.02561624,95.60005684],[4.53343151,0.02561795,95.60080311],[4.53343206,0.02561967,95.60154959],[4.53343261,0.02562138,95.60229629],[4.53343316,0.0256231,95.60304321],[4.53343372,0.02562482,95.60379033],[4.53343427,0.02562653,95.60453767],[4.53343482,0.02562825,95.6052852],[4.53343538,0.02562996,95.60603293],[4.53343593,0.02563168,95.60678086],[4.53343648,0.0256334,95.60752897],[4.53343703,0.02563511,95.60827728],[4.53343759,0.02563683,95.60902576],[4.53343814,0.02563854,95.60977443],[4.53343869,0.02564026,95.61052327],[4.53343925,0.02564197,95.61127229],[4.5334398,0.02564369,95.61202147],[4.53344035,0.02564541,95.61277082],[4.5334409,0.02564712,95.61352034],[4.53344146,0.02564884,95.61427],[4.53344201,0.02565055,95.61501983],[4.53344256,0.02565227,95.6157698],[4.53344312,0.02565398,95.61651992],[4.53344367,0.0256557,95.61727018],[4.53344422,0.02565742,95.61802058],[4.53344478,0.02565913,95.61877111],[4.53344533,0.02566085,95.61952176],[4.53344588,0.02566256,95.62027254],[4.53344643,0.02566428,95.62102343],[4.53344699,0.025666,95.62177443],[4.53344754,0.02566771,95.62252553],[4.53344809,0.02566943,95.62327672],[4.53344865,0.02567114,95.62402801],[4.5334492,0.02567286,95.62477938],[4.53344975,0.02567458,95.62553082],[4.5334503,0.02567629,95.62628234],[4.53345086,0.02567801,95.62703392],[4.53345141,0.02567972,95.62778556],[4.53345196,0.02568144,95.62853726],[4.53345251,0.02568315,95.629289],[4.53345307,0.02568487,95.63004079],[4.53345362,0.02568659,95.63079261],[4.53345417,0.0256883,95.63154446],[4.53345472,0.02569002,95.63229633],[4.53345528,0.02569173,95.63304822],[4.53345583,0.02569345,95.63380013],[4.53345638,0.02569517,95.63455203],[4.53345693,0.02569688,95.63530394],[4.53345749,0.0256986,95.63605584],[4.53345804,0.02570031,95.63680773],[4.53345859,0.02570203,95.6375596],[4.53345914,0.02570375,95.63831145],[4.53345969,0.02570546,95.63906327],[4.53346025,0.02570718,95.63981505],[4.5334608,0.0257089,95.64056679],[4.53346135,0.02571061,95.6413185],[4.5334619,0.02571233,95.64207018],[4.53346245,0.02571404,95.64282183],[4.533463,0.02571576,95.64357344],[4.53346356,0.02571748,95.64432502],[4.53346411,0.02571919,95.64507657],[4.53346466,0.02572091,95.6458281],[4.53346521,0.02572263,95.64657959],[4.53346576,0.02572434,95.64733106],[4.53346631,0.02572606,95.6480825],[4.53346686,0.02572778,95.64883391],[4.53346741,0.02572949,95.6495853],[4.53346796,0.02573121,95.65033667],[4.53346852,0.02573292,95.65108801],[4.53346907,0.02573464,95.65183933],[4.53346962,0.02573636,95.65259063],[4.53347017,0.02573807,95.65334191],[4.53347072,0.02573979,95.65409317],[4.53347127,0.02574151,95.65484441],[4.53347182,0.02574322,95.65559563],[4.53347237,0.02574494,95.65634684],[4.53347292,0.02574666,95.65709803],[4.53347347,0.02574837,95.6578492],[4.53347402,0.02575009,95.65860036],[4.53347457,0.02575181,95.65935151],[4.53347512,0.02575352,95.66010265],[4.53347567,0.02575524,95.66085377],[4.53347622,0.02575696,95.66160489],[4.53347677,0.02575867,95.66235599],[4.53347732,0.02576039,95.66310709],[4.53347787,0.02576211,95.66385817],[4.53347842,0.02576382,95.66460926],[4.53347897,0.02576554,95.66536033],[4.53347952,0.02576726,95.6661114],[4.53348007,0.02576898,95.66686247],[4.53348062,0.02577069,95.66761353],[4.53348117,0.02577241,95.6683646],[4.53348172,0.02577413,95.66911566],[4.53348227,0.02577584,95.66986672],[4.53348282,0.02577756,95.67061778],[4.53348337,0.02577928,95.67136884],[4.53348392,0.02578099,95.67211991],[4.53348447,0.02578271,95.67287098],[4.53348502,0.02578443,95.67362205],[4.53348556,0.02578615,95.67437313],[4.53348611,0.02578786,95.67512422],[4.53348666,0.02578958,95.67587531],[4.53348721,0.02579129,95.67662642],[4.53348776,0.02579301,95.67737753],[4.53348831,0.02579473,95.67812865],[4.53348886,0.02579645,95.67887979],[4.53348941,0.02579816,95.67963093],[4.53348996,0.02579988,95.68038209],[4.5334905,0.0258016,95.68113327],[4.53349105,0.02580332,95.68188448],[4.5334916,0.02580503,95.68263571],[4.53349215,0.02580675,95.68338697],[4.5334927,0.02580847,95.68413828],[4.53349325,0.02581018,95.68488963],[4.53349379,0.0258119,95.68564104],[4.53349434,0.02581362,95.68639249],[4.53349489,0.02581534,95.68714401],[4.53349544,0.02581705,95.6878956],[4.53349599,0.02581877,95.68864726],[4.53349654,0.02582049,95.68939899],[4.53349708,0.02582221,95.69015081],[4.53349763,0.02582392,95.69090271],[4.53349818,0.02582564,95.69165471],[4.53349873,0.02582736,95.69240681],[4.53349928,0.02582908,95.693159],[4.53349982,0.02583079,95.69391131],[4.53350037,0.02583251,95.69466373],[4.53350092,0.02583423,95.69541628],[4.53350147,0.02583595,95.69616894],[4.53350201,0.02583766,95.69692174],[4.53350256,0.02583938,95.69767467],[4.53350311,0.0258411,95.69842774],[4.53350366,0.02584282,95.69918096],[4.53350421,0.02584453,95.69993433],[4.53350475,0.02584625,95.70068785],[4.5335053,0.02584797,95.70144154],[4.53350585,0.02584969,95.70219539],[4.5335064,0.0258514,95.70294941],[4.53350694,0.02585312,95.70370361],[4.53350749,0.02585484,95.70445799],[4.53350804,0.02585656,95.70521256],[4.53350859,0.02585827,95.70596733],[4.53350913,0.02585999,95.70672229],[4.53350968,0.02586171,95.70747745],[4.53351023,0.02586343,95.70823282],[4.53351078,0.02586514,95.70898841],[4.53351132,0.02586686,95.70974421],[4.53351187,0.02586858,95.71050023],[4.53351242,0.0258703,95.71125648],[4.53351297,0.02587201,95.71201295],[4.53351351,0.02587373,95.71276965],[4.53351406,0.02587545,95.71352659],[4.53351461,0.02587717,95.71428375],[4.53351516,0.02587888,95.71504116],[4.5335157,0.0258806,95.7157988],[4.53351625,0.02588232,95.71655668],[4.5335168,0.02588404,95.7173148],[4.53351735,0.02588576,95.71807317],[4.53351789,0.02588747,95.71883178],[4.53351844,0.02588919,95.71959065],[4.53351899,0.02589091,95.72034976],[4.53351954,0.02589263,95.72110913],[4.53352009,0.02589434,95.72186876],[4.53352063,0.02589606,95.72262864],[4.53352118,0.02589778,95.72338879],[4.53352173,0.0258995,95.72414919],[4.53352228,0.02590121,95.72490987],[4.53352282,0.02590293,95.72567081],[4.53352337,0.02590465,95.72643202],[4.53352392,0.02590637,95.7271935],[4.53352447,0.02590808,95.72795525],[4.53352502,0.0259098,95.72871728],[4.53352556,0.02591152,95.72947959],[4.53352611,0.02591323,95.73024218],[4.53352666,0.02591495,95.73100505],[4.53352721,0.02591667,95.7317682],[4.53352776,0.02591839,95.73253164],[4.53352831,0.0259201,95.73329537],[4.53352885,0.02592182,95.73405939],[4.5335294,0.02592354,95.7348237],[4.53352995,0.02592526,95.73558831],[4.5335305,0.02592697,95.73635321],[4.53353105,0.02592869,95.73711841],[4.5335316,0.02593041,95.73788391],[4.53353214,0.02593213,95.73864972],[4.53353269,0.02593384,95.73941582],[4.53353324,0.02593556,95.74018224],[4.53353379,0.02593728,95.74094896],[4.53353434,0.02593899,95.74171599],[4.53353489,0.02594071,95.74248333],[4.53350366,0.02595082,95.64243587]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2,"sOffset":265.8100035851}},{"geometry":{"coordinates":[[[4.53353489,0.02594071,95.74248333],[4.53353434,0.02593899,95.74171599],[4.53353379,0.02593728,95.74094896],[4.53353324,0.02593556,95.74018224],[4.53353269,0.02593384,95.73941582],[4.53353214,0.02593213,95.73864972],[4.5335316,0.02593041,95.73788391],[4.53353105,0.02592869,95.73711841],[4.5335305,0.02592697,95.73635321],[4.53352995,0.02592526,95.73558831],[4.5335294,0.02592354,95.7348237],[4.53352885,0.02592182,95.73405939],[4.53352831,0.0259201,95.73329537],[4.53352776,0.02591839,95.73253164],[4.53352721,0.02591667,95.7317682],[4.53352666,0.02591495,95.73100505],[4.53352611,0.02591323,95.73024218],[4.53352556,0.02591152,95.72947959],[4.53352502,0.0259098,95.72871728],[4.53352447,0.02590808,95.72795525],[4.53352392,0.02590637,95.7271935],[4.53352337,0.02590465,95.72643202],[4.53352282,0.02590293,95.72567081],[4.53352228,0.02590121,95.72490987],[4.53352173,0.0258995,95.72414919],[4.53352118,0.02589778,95.72338879],[4.53352063,0.02589606,95.72262864],[4.53352009,0.02589434,95.72186876],[4.53351954,0.02589263,95.72110913],[4.53351899,0.02589091,95.72034976],[4.53351844,0.02588919,95.71959065],[4.53351789,0.02588747,95.71883178],[4.53351735,0.02588576,95.71807317],[4.5335168,0.02588404,95.7173148],[4.53351625,0.02588232,95.71655668],[4.5335157,0.0258806,95.7157988],[4.53351516,0.02587888,95.71504116],[4.53351461,0.02587717,95.71428375],[4.53351406,0.02587545,95.71352659],[4.53351351,0.02587373,95.71276965],[4.53351297,0.02587201,95.71201295],[4.53351242,0.0258703,95.71125648],[4.53351187,0.02586858,95.71050023],[4.53351132,0.02586686,95.70974421],[4.53351078,0.02586514,95.70898841],[4.53351023,0.02586343,95.70823282],[4.53350968,0.02586171,95.70747745],[4.53350913,0.02585999,95.70672229],[4.53350859,0.02585827,95.70596733],[4.53350804,0.02585656,95.70521256],[4.53350749,0.02585484,95.70445799],[4.53350694,0.02585312,95.70370361],[4.5335064,0.0258514,95.70294941],[4.53350585,0.02584969,95.70219539],[4.5335053,0.02584797,95.70144154],[4.53350475,0.02584625,95.70068785],[4.53350421,0.02584453,95.69993433],[4.53350366,0.02584282,95.69918096],[4.53350311,0.0258411,95.69842774],[4.53350256,0.02583938,95.69767467],[4.53350201,0.02583766,95.69692174],[4.53350147,0.02583595,95.69616894],[4.53350092,0.02583423,95.69541628],[4.53350037,0.02583251,95.69466373],[4.53349982,0.02583079,95.69391131],[4.53349928,0.02582908,95.693159],[4.53349873,0.02582736,95.69240681],[4.53349818,0.02582564,95.69165471],[4.53349763,0.02582392,95.69090271],[4.53349708,0.02582221,95.69015081],[4.53349654,0.02582049,95.68939899],[4.53349599,0.02581877,95.68864726],[4.53349544,0.02581705,95.6878956],[4.53349489,0.02581534,95.68714401],[4.53349434,0.02581362,95.68639249],[4.53349379,0.0258119,95.68564104],[4.53349325,0.02581018,95.68488963],[4.5334927,0.02580847,95.68413828],[4.53349215,0.02580675,95.68338697],[4.5334916,0.02580503,95.68263571],[4.53349105,0.02580332,95.68188448],[4.5334905,0.0258016,95.68113327],[4.53348996,0.02579988,95.68038209],[4.53348941,0.02579816,95.67963093],[4.53348886,0.02579645,95.67887979],[4.53348831,0.02579473,95.67812865],[4.53348776,0.02579301,95.67737753],[4.53348721,0.02579129,95.67662642],[4.53348666,0.02578958,95.67587531],[4.53348611,0.02578786,95.67512422],[4.53348556,0.02578615,95.67437313],[4.53348502,0.02578443,95.67362205],[4.53348447,0.02578271,95.67287098],[4.53348392,0.02578099,95.67211991],[4.53348337,0.02577928,95.67136884],[4.53348282,0.02577756,95.67061778],[4.53348227,0.02577584,95.66986672],[4.53348172,0.02577413,95.66911566],[4.53348117,0.02577241,95.6683646],[4.53348062,0.02577069,95.66761353],[4.53348007,0.02576898,95.66686247],[4.53347952,0.02576726,95.6661114],[4.53347897,0.02576554,95.66536033],[4.53347842,0.02576382,95.66460926],[4.53347787,0.02576211,95.66385817],[4.53347732,0.02576039,95.66310709],[4.53347677,0.02575867,95.66235599],[4.53347622,0.02575696,95.66160489],[4.53347567,0.02575524,95.66085377],[4.53347512,0.02575352,95.66010265],[4.53347457,0.02575181,95.65935151],[4.53347402,0.02575009,95.65860036],[4.53347347,0.02574837,95.6578492],[4.53347292,0.02574666,95.65709803],[4.53347237,0.02574494,95.65634684],[4.53347182,0.02574322,95.65559563],[4.53347127,0.02574151,95.65484441],[4.53347072,0.02573979,95.65409317],[4.53347017,0.02573807,95.65334191],[4.53346962,0.02573636,95.65259063],[4.53346907,0.02573464,95.65183933],[4.53346852,0.02573292,95.65108801],[4.53346796,0.02573121,95.65033667],[4.53346741,0.02572949,95.6495853],[4.53346686,0.02572778,95.64883391],[4.53346631,0.02572606,95.6480825],[4.53346576,0.02572434,95.64733106],[4.53346521,0.02572263,95.64657959],[4.53346466,0.02572091,95.6458281],[4.53346411,0.02571919,95.64507657],[4.53346356,0.02571748,95.64432502],[4.533463,0.02571576,95.64357344],[4.53346245,0.02571404,95.64282183],[4.5334619,0.02571233,95.64207018],[4.53346135,0.02571061,95.6413185],[4.5334608,0.0257089,95.64056679],[4.53346025,0.02570718,95.63981505],[4.53345969,0.02570546,95.63906327],[4.53345914,0.02570375,95.63831145],[4.53345859,0.02570203,95.6375596],[4.53345804,0.02570031,95.63680773],[4.53345749,0.0256986,95.63605584],[4.53345693,0.02569688,95.63530394],[4.53345638,0.02569517,95.63455203],[4.53345583,0.02569345,95.63380013],[4.53345528,0.02569173,95.63304822],[4.53345472,0.02569002,95.63229633],[4.53345417,0.0256883,95.63154446],[4.53345362,0.02568659,95.63079261],[4.53345307,0.02568487,95.63004079],[4.53345251,0.02568315,95.629289],[4.53345196,0.02568144,95.62853726],[4.53345141,0.02567972,95.62778556],[4.53345086,0.02567801,95.62703392],[4.5334503,0.02567629,95.62628234],[4.53344975,0.02567458,95.62553082],[4.5334492,0.02567286,95.62477938],[4.53344865,0.02567114,95.62402801],[4.53344809,0.02566943,95.62327672],[4.53344754,0.02566771,95.62252553],[4.53344699,0.025666,95.62177443],[4.53344643,0.02566428,95.62102343],[4.53344588,0.02566256,95.62027254],[4.53344533,0.02566085,95.61952176],[4.53344478,0.02565913,95.61877111],[4.53344422,0.02565742,95.61802058],[4.53344367,0.0256557,95.61727018],[4.53344312,0.02565398,95.61651992],[4.53344256,0.02565227,95.6157698],[4.53344201,0.02565055,95.61501983],[4.53344146,0.02564884,95.61427],[4.5334409,0.02564712,95.61352034],[4.53344035,0.02564541,95.61277082],[4.5334398,0.02564369,95.61202147],[4.53343925,0.02564197,95.61127229],[4.53343869,0.02564026,95.61052327],[4.53343814,0.02563854,95.60977443],[4.53343759,0.02563683,95.60902576],[4.53343703,0.02563511,95.60827728],[4.53343648,0.0256334,95.60752897],[4.53343593,0.02563168,95.60678086],[4.53343538,0.02562996,95.60603293],[4.53343482,0.02562825,95.6052852],[4.53343427,0.02562653,95.60453767],[4.53343372,0.02562482,95.60379033],[4.53343316,0.0256231,95.60304321],[4.53343261,0.02562138,95.60229629],[4.53343206,0.02561967,95.60154959],[4.53343151,0.02561795,95.60080311],[4.53343095,0.02561624,95.60005684],[4.5334304,0.02561452,95.5993108],[4.53342985,0.02561281,95.59856499],[4.53342929,0.02561109,95.59781941],[4.53342874,0.02560937,95.59707406],[4.53342819,0.02560766,95.59632896],[4.53342764,0.02560594,95.59558409],[4.53342708,0.02560423,95.59483948],[4.53342653,0.02560251,95.59409511],[4.53342598,0.02560079,95.593351],[4.53342543,0.02559908,95.59260714],[4.53342487,0.02559736,95.59186355],[4.53342432,0.02559565,95.59112022],[4.53342377,0.02559393,95.59037716],[4.53342322,0.02559221,95.58963437],[4.53342266,0.0255905,95.58889186],[4.53342211,0.02558878,95.58814963],[4.53342156,0.02558707,95.58740768],[4.53342101,0.02558535,95.58666602],[4.53342045,0.02558363,95.58592465],[4.5334199,0.02558192,95.58518357],[4.53341935,0.0255802,95.58444279],[4.5334188,0.02557849,95.58370232],[4.53341825,0.02557677,95.58296214],[4.53341769,0.02557505,95.58222228],[4.53341714,0.02557334,95.58148273],[4.53341659,0.02557162,95.5807435],[4.53341604,0.02556991,95.58000459],[4.53341549,0.02556819,95.579266],[4.53341493,0.02556647,95.57852774],[4.53341438,0.02556476,95.57778981],[4.53341383,0.02556304,95.57705221],[4.53341328,0.02556132,95.57631495],[4.53341273,0.02555961,95.57557804],[4.53341218,0.02555789,95.57484147],[4.53341162,0.02555618,95.57410525],[4.53341107,0.02555446,95.57336938],[4.53341052,0.02555274,95.57263387],[4.53340997,0.02555103,95.57189872],[4.53340942,0.02554931,95.57116393],[4.53340887,0.02554759,95.57042951],[4.53340832,0.02554588,95.56969546],[4.53340777,0.02554416,95.56896178],[4.53340722,0.02554244,95.56822849],[4.53340666,0.02554073,95.56749557],[4.53340611,0.02553901,95.56676304],[4.53340556,0.0255373,95.5660309],[4.53340501,0.02553558,95.56529915],[4.53340446,0.02553386,95.5645678],[4.53340391,0.02553215,95.56383684],[4.53340336,0.02553043,95.56310629],[4.53340281,0.02552871,95.56237615],[4.53340226,0.025527,95.56164642],[4.53340171,0.02552528,95.5609171],[4.53340116,0.02552356,95.5601882],[4.53340061,0.02552185,95.55945972],[4.53340006,0.02552013,95.55873166],[4.53339951,0.02551841,95.55800403],[4.53339942,0.02551813,95.55788299],[4.53343009,0.02550816,95.6609931],[4.53343018,0.02550844,95.66111584],[4.53343073,0.02551016,95.66185338],[4.53343128,0.02551188,95.66259088],[4.53343183,0.02551359,95.66332835],[4.53343238,0.02551531,95.66406579],[4.53343293,0.02551703,95.66480319],[4.53343348,0.02551874,95.66554055],[4.53343403,0.02552046,95.66627788],[4.53343458,0.02552218,95.66701517],[4.53343513,0.02552389,95.66775243],[4.53343568,0.02552561,95.66848965],[4.53343624,0.02552733,95.66922684],[4.53343679,0.02552905,95.66996399],[4.53343734,0.02553076,95.67070111],[4.53343789,0.02553248,95.67143819],[4.53343844,0.0255342,95.67217524],[4.53343899,0.02553591,95.67291225],[4.53343954,0.02553763,95.67364923],[4.53344009,0.02553935,95.67438618],[4.53344064,0.02554106,95.67512309],[4.53344119,0.02554278,95.67585997],[4.53344174,0.0255445,95.67659681],[4.53344229,0.02554621,95.67733362],[4.53344284,0.02554793,95.6780704],[4.53344339,0.02554965,95.67880714],[4.53344394,0.02555136,95.67954385],[4.53344449,0.02555308,95.68028053],[4.53344504,0.0255548,95.68101718],[4.53344559,0.02555652,95.68175379],[4.53344614,0.02555823,95.68249037],[4.53344669,0.02555995,95.68322691],[4.53344724,0.02556167,95.68396342],[4.53344779,0.02556338,95.6846999],[4.53344834,0.0255651,95.68543635],[4.53344889,0.02556682,95.68617277],[4.53344944,0.02556853,95.68690915],[4.53344999,0.02557025,95.6876455],[4.53345054,0.02557197,95.68838182],[4.53345109,0.02557368,95.68911811],[4.53345164,0.0255754,95.68985437],[4.53345219,0.02557712,95.69059059],[4.53345274,0.02557883,95.69132679],[4.53345329,0.02558055,95.69206295],[4.53345384,0.02558227,95.69279908],[4.53345439,0.02558398,95.69353518],[4.53345494,0.0255857,95.69427124],[4.53345549,0.02558742,95.69500728],[4.53345605,0.02558914,95.69574329],[4.5334566,0.02559085,95.69647926],[4.53345715,0.02559257,95.69721521],[4.5334577,0.02559429,95.69795112],[4.53345825,0.025596,95.69868701],[4.5334588,0.02559772,95.69942286],[4.53345935,0.02559944,95.70015868],[4.5334599,0.02560115,95.70089447],[4.53346045,0.02560287,95.70163024],[4.533461,0.02560459,95.70236597],[4.53346155,0.0256063,95.70310167],[4.5334621,0.02560802,95.70383735],[4.53346265,0.02560974,95.70457299],[4.5334632,0.02561145,95.7053086],[4.53346375,0.02561317,95.70604419],[4.5334643,0.02561489,95.70677975],[4.53346485,0.0256166,95.70751527],[4.5334654,0.02561832,95.70825077],[4.53346595,0.02562004,95.70898624],[4.5334665,0.02562176,95.70972168],[4.53346705,0.02562347,95.71045709],[4.5334676,0.02562519,95.71119247],[4.53346815,0.02562691,95.71192782],[4.5334687,0.02562862,95.71266314],[4.53346925,0.02563034,95.71339844],[4.5334698,0.02563206,95.71413371],[4.53347036,0.02563377,95.71486894],[4.53347091,0.02563549,95.71560415],[4.53347146,0.02563721,95.71633934],[4.53347201,0.02563892,95.71707449],[4.53347256,0.02564064,95.71780962],[4.53347311,0.02564236,95.71854472],[4.53347366,0.02564407,95.71927979],[4.53347421,0.02564579,95.72001483],[4.53347476,0.02564751,95.72074984],[4.53347531,0.02564922,95.72148482],[4.53347586,0.02565094,95.72221977],[4.53347641,0.02565266,95.72295469],[4.53347696,0.02565437,95.72368957],[4.53347751,0.02565609,95.7244244],[4.53347806,0.02565781,95.7251592],[4.53347861,0.02565952,95.72589395],[4.53347916,0.02566124,95.72662865],[4.53347971,0.02566296,95.7273633],[4.53348026,0.02566467,95.7280979],[4.53348082,0.02566639,95.72883245],[4.53348137,0.02566811,95.72956695],[4.53348192,0.02566982,95.73030138],[4.53348247,0.02567154,95.73103576],[4.53348302,0.02567326,95.73177007],[4.53348357,0.02567497,95.73250432],[4.53348412,0.02567669,95.7332385],[4.53348467,0.02567841,95.73397261],[4.53348522,0.02568012,95.73470665],[4.53348577,0.02568184,95.73544061],[4.53348632,0.02568356,95.7361745],[4.53348687,0.02568528,95.73690832],[4.53348742,0.02568699,95.73764205],[4.53348797,0.02568871,95.73837569],[4.53348852,0.02569043,95.73910926],[4.53348907,0.02569214,95.73984273],[4.53348963,0.02569386,95.74057612],[4.53349018,0.02569558,95.74130941],[4.53349073,0.02569729,95.74204261],[4.53349128,0.02569901,95.74277572],[4.53349183,0.02570073,95.74350872],[4.53349238,0.02570244,95.74424163],[4.53349293,0.02570416,95.74497443],[4.53349348,0.02570588,95.74570712],[4.53349403,0.02570759,95.74643971],[4.53349458,0.02570931,95.74717219],[4.53349513,0.02571103,95.74790456],[4.53349568,0.02571274,95.74863681],[4.53349623,0.02571446,95.74936894],[4.53349678,0.02571618,95.75010096],[4.53349733,0.02571789,95.75083286],[4.53349788,0.02571961,95.75156463],[4.53349843,0.02572133,95.75229628],[4.53349898,0.02572304,95.7530278],[4.53349953,0.02572476,95.75375919],[4.53350008,0.02572648,95.75449044],[4.53350064,0.02572819,95.75522157],[4.53350119,0.02572991,95.75595255],[4.53350174,0.02573163,95.7566834],[4.53350229,0.02573334,95.75741411],[4.53350284,0.02573506,95.75814467],[4.53350339,0.02573678,95.75887509],[4.53350394,0.0257385,95.75960536],[4.53350449,0.02574021,95.76033548],[4.53350504,0.02574193,95.76106545],[4.53350559,0.02574365,95.76179526],[4.53350614,0.02574536,95.76252492],[4.53350669,0.02574708,95.76325442],[4.53350724,0.0257488,95.76398376],[4.53350779,0.02575051,95.76471293],[4.53350834,0.02575223,95.76544194],[4.53350889,0.02575395,95.76617078],[4.53350944,0.02575566,95.76689945],[4.53350999,0.02575738,95.76762795],[4.53351054,0.0257591,95.76835628],[4.53351109,0.02576081,95.76908443],[4.53351164,0.02576253,95.7698124],[4.53351219,0.02576425,95.77054019],[4.53351274,0.02576597,95.7712678],[4.53351329,0.02576768,95.77199522],[4.53351384,0.0257694,95.77272246],[4.53351439,0.02577112,95.7734495],[4.53351494,0.02577283,95.77417636],[4.53351549,0.02577455,95.77490302],[4.53351604,0.02577627,95.77562948],[4.53351659,0.02577798,95.77635575],[4.53351714,0.0257797,95.77708182],[4.53351769,0.02578142,95.77780768],[4.53351824,0.02578313,95.77853334],[4.53351878,0.02578485,95.7792588],[4.53351933,0.02578657,95.77998404],[4.53351988,0.02578828,95.78070907],[4.53352043,0.02579,95.7814339],[4.53352098,0.02579172,95.78215851],[4.53352153,0.02579344,95.78288291],[4.53352208,0.02579515,95.7836071],[4.53352263,0.02579687,95.78433109],[4.53352318,0.02579859,95.78505488],[4.53352373,0.0258003,95.78577847],[4.53352428,0.02580202,95.78650186],[4.53352483,0.02580374,95.78722506],[4.53352538,0.02580546,95.78794806],[4.53352593,0.02580717,95.78867087],[4.53352648,0.02580889,95.7893935],[4.53352702,0.02581061,95.79011593],[4.53352757,0.02581233,95.79083818],[4.53352812,0.02581404,95.79156025],[4.53352867,0.02581576,95.79228214],[4.53352922,0.02581748,95.79300385],[4.53352977,0.02581919,95.79372539],[4.53353032,0.02582091,95.79444675],[4.53353087,0.02582263,95.79516794],[4.53353142,0.02582435,95.79588897],[4.53353197,0.02582606,95.79660982],[4.53353251,0.02582778,95.79733051],[4.53353306,0.0258295,95.79805104],[4.53353361,0.02583122,95.79877141],[4.53353416,0.02583293,95.79949162],[4.53353471,0.02583465,95.80021167],[4.53353526,0.02583637,95.80093157],[4.53353581,0.02583808,95.80165132],[4.53353636,0.0258398,95.80237092],[4.5335369,0.02584152,95.80309037],[4.53353745,0.02584324,95.80380968],[4.533538,0.02584495,95.80452884],[4.53353855,0.02584667,95.80524786],[4.5335391,0.02584839,95.80596675],[4.53353965,0.02585011,95.8066855],[4.5335402,0.02585182,95.80740411],[4.53354075,0.02585354,95.80812259],[4.53354129,0.02585526,95.80884094],[4.53354184,0.02585698,95.80955916],[4.53354239,0.02585869,95.81027726],[4.53354294,0.02586041,95.81099524],[4.53354349,0.02586213,95.81171311],[4.53354404,0.02586384,95.81243086],[4.53354459,0.02586556,95.81314851],[4.53354514,0.02586728,95.81386607],[4.53354568,0.025869,95.81458352],[4.53354623,0.02587071,95.81530089],[4.53354678,0.02587243,95.81601817],[4.53354733,0.02587415,95.81673537],[4.53354788,0.02587587,95.8174525],[4.53354843,0.02587758,95.81816956],[4.53354898,0.0258793,95.81888654],[4.53354952,0.02588102,95.81960347],[4.53355007,0.02588274,95.82032035],[4.53355062,0.02588445,95.82103717],[4.53355117,0.02588617,95.82175394],[4.53355172,0.02588789,95.82247067],[4.53355227,0.02588961,95.82318737],[4.53355282,0.02589132,95.82390403],[4.53355337,0.02589304,95.82462067],[4.53355391,0.02589476,95.82533728],[4.53355446,0.02589647,95.82605387],[4.53355501,0.02589819,95.82677045],[4.53355556,0.02589991,95.82748702],[4.53355611,0.02590163,95.82820359],[4.53355666,0.02590334,95.82892016],[4.53355721,0.02590506,95.82963674],[4.53355776,0.02590678,95.83035332],[4.53355831,0.0259085,95.83106992],[4.53355885,0.02591021,95.83178654],[4.5335594,0.02591193,95.83250318],[4.53355995,0.02591365,95.83321985],[4.5335605,0.02591537,95.83393656],[4.53356105,0.02591708,95.8346533],[4.5335616,0.0259188,95.83537009],[4.53356215,0.02592052,95.83608692],[4.5335627,0.02592223,95.83680381],[4.53356325,0.02592395,95.83752075],[4.53356379,0.02592567,95.83823775],[4.53356434,0.02592739,95.83895482],[4.53356489,0.0259291,95.83967196],[4.53356544,0.02593082,95.84038918],[4.53353489,0.02594071,95.74248333]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1,"sOffset":265.8100035851}},{"geometry":{"coordinates":[[[4.53356544,0.02593082,95.84038918],[4.53356489,0.0259291,95.83967196],[4.53356434,0.02592739,95.83895482],[4.53356379,0.02592567,95.83823775],[4.53356325,0.02592395,95.83752075],[4.5335627,0.02592223,95.83680381],[4.53356215,0.02592052,95.83608692],[4.5335616,0.0259188,95.83537009],[4.53356105,0.02591708,95.8346533],[4.5335605,0.02591537,95.83393656],[4.53355995,0.02591365,95.83321985],[4.5335594,0.02591193,95.83250318],[4.53355885,0.02591021,95.83178654],[4.53355831,0.0259085,95.83106992],[4.53355776,0.02590678,95.83035332],[4.53355721,0.02590506,95.82963674],[4.53355666,0.02590334,95.82892016],[4.53355611,0.02590163,95.82820359],[4.53355556,0.02589991,95.82748702],[4.53355501,0.02589819,95.82677045],[4.53355446,0.02589647,95.82605387],[4.53355391,0.02589476,95.82533728],[4.53355337,0.02589304,95.82462067],[4.53355282,0.02589132,95.82390403],[4.53355227,0.02588961,95.82318737],[4.53355172,0.02588789,95.82247067],[4.53355117,0.02588617,95.82175394],[4.53355062,0.02588445,95.82103717],[4.53355007,0.02588274,95.82032035],[4.53354952,0.02588102,95.81960347],[4.53354898,0.0258793,95.81888654],[4.53354843,0.02587758,95.81816956],[4.53354788,0.02587587,95.8174525],[4.53354733,0.02587415,95.81673537],[4.53354678,0.02587243,95.81601817],[4.53354623,0.02587071,95.81530089],[4.53354568,0.025869,95.81458352],[4.53354514,0.02586728,95.81386607],[4.53354459,0.02586556,95.81314851],[4.53354404,0.02586384,95.81243086],[4.53354349,0.02586213,95.81171311],[4.53354294,0.02586041,95.81099524],[4.53354239,0.02585869,95.81027726],[4.53354184,0.02585698,95.80955916],[4.53354129,0.02585526,95.80884094],[4.53354075,0.02585354,95.80812259],[4.5335402,0.02585182,95.80740411],[4.53353965,0.02585011,95.8066855],[4.5335391,0.02584839,95.80596675],[4.53353855,0.02584667,95.80524786],[4.533538,0.02584495,95.80452884],[4.53353745,0.02584324,95.80380968],[4.5335369,0.02584152,95.80309037],[4.53353636,0.0258398,95.80237092],[4.53353581,0.02583808,95.80165132],[4.53353526,0.02583637,95.80093157],[4.53353471,0.02583465,95.80021167],[4.53353416,0.02583293,95.79949162],[4.53353361,0.02583122,95.79877141],[4.53353306,0.0258295,95.79805104],[4.53353251,0.02582778,95.79733051],[4.53353197,0.02582606,95.79660982],[4.53353142,0.02582435,95.79588897],[4.53353087,0.02582263,95.79516794],[4.53353032,0.02582091,95.79444675],[4.53352977,0.02581919,95.79372539],[4.53352922,0.02581748,95.79300385],[4.53352867,0.02581576,95.79228214],[4.53352812,0.02581404,95.79156025],[4.53352757,0.02581233,95.79083818],[4.53352702,0.02581061,95.79011593],[4.53352648,0.02580889,95.7893935],[4.53352593,0.02580717,95.78867087],[4.53352538,0.02580546,95.78794806],[4.53352483,0.02580374,95.78722506],[4.53352428,0.02580202,95.78650186],[4.53352373,0.0258003,95.78577847],[4.53352318,0.02579859,95.78505488],[4.53352263,0.02579687,95.78433109],[4.53352208,0.02579515,95.7836071],[4.53352153,0.02579344,95.78288291],[4.53352098,0.02579172,95.78215851],[4.53352043,0.02579,95.7814339],[4.53351988,0.02578828,95.78070907],[4.53351933,0.02578657,95.77998404],[4.53351878,0.02578485,95.7792588],[4.53351824,0.02578313,95.77853334],[4.53351769,0.02578142,95.77780768],[4.53351714,0.0257797,95.77708182],[4.53351659,0.02577798,95.77635575],[4.53351604,0.02577627,95.77562948],[4.53351549,0.02577455,95.77490302],[4.53351494,0.02577283,95.77417636],[4.53351439,0.02577112,95.7734495],[4.53351384,0.0257694,95.77272246],[4.53351329,0.02576768,95.77199522],[4.53351274,0.02576597,95.7712678],[4.53351219,0.02576425,95.77054019],[4.53351164,0.02576253,95.7698124],[4.53351109,0.02576081,95.76908443],[4.53351054,0.0257591,95.76835628],[4.53350999,0.02575738,95.76762795],[4.53350944,0.02575566,95.76689945],[4.53350889,0.02575395,95.76617078],[4.53350834,0.02575223,95.76544194],[4.53350779,0.02575051,95.76471293],[4.53350724,0.0257488,95.76398376],[4.53350669,0.02574708,95.76325442],[4.53350614,0.02574536,95.76252492],[4.53350559,0.02574365,95.76179526],[4.53350504,0.02574193,95.76106545],[4.53350449,0.02574021,95.76033548],[4.53350394,0.0257385,95.75960536],[4.53350339,0.02573678,95.75887509],[4.53350284,0.02573506,95.75814467],[4.53350229,0.02573334,95.75741411],[4.53350174,0.02573163,95.7566834],[4.53350119,0.02572991,95.75595255],[4.53350064,0.02572819,95.75522157],[4.53350008,0.02572648,95.75449044],[4.53349953,0.02572476,95.75375919],[4.53349898,0.02572304,95.7530278],[4.53349843,0.02572133,95.75229628],[4.53349788,0.02571961,95.75156463],[4.53349733,0.02571789,95.75083286],[4.53349678,0.02571618,95.75010096],[4.53349623,0.02571446,95.74936894],[4.53349568,0.02571274,95.74863681],[4.53349513,0.02571103,95.74790456],[4.53349458,0.02570931,95.74717219],[4.53349403,0.02570759,95.74643971],[4.53349348,0.02570588,95.74570712],[4.53349293,0.02570416,95.74497443],[4.53349238,0.02570244,95.74424163],[4.53349183,0.02570073,95.74350872],[4.53349128,0.02569901,95.74277572],[4.53349073,0.02569729,95.74204261],[4.53349018,0.02569558,95.74130941],[4.53348963,0.02569386,95.74057612],[4.53348907,0.02569214,95.73984273],[4.53348852,0.02569043,95.73910926],[4.53348797,0.02568871,95.73837569],[4.53348742,0.02568699,95.73764205],[4.53348687,0.02568528,95.73690832],[4.53348632,0.02568356,95.7361745],[4.53348577,0.02568184,95.73544061],[4.53348522,0.02568012,95.73470665],[4.53348467,0.02567841,95.73397261],[4.53348412,0.02567669,95.7332385],[4.53348357,0.02567497,95.73250432],[4.53348302,0.02567326,95.73177007],[4.53348247,0.02567154,95.73103576],[4.53348192,0.02566982,95.73030138],[4.53348137,0.02566811,95.72956695],[4.53348082,0.02566639,95.72883245],[4.53348026,0.02566467,95.7280979],[4.53347971,0.02566296,95.7273633],[4.53347916,0.02566124,95.72662865],[4.53347861,0.02565952,95.72589395],[4.53347806,0.02565781,95.7251592],[4.53347751,0.02565609,95.7244244],[4.53347696,0.02565437,95.72368957],[4.53347641,0.02565266,95.72295469],[4.53347586,0.02565094,95.72221977],[4.53347531,0.02564922,95.72148482],[4.53347476,0.02564751,95.72074984],[4.53347421,0.02564579,95.72001483],[4.53347366,0.02564407,95.71927979],[4.53347311,0.02564236,95.71854472],[4.53347256,0.02564064,95.71780962],[4.53347201,0.02563892,95.71707449],[4.53347146,0.02563721,95.71633934],[4.53347091,0.02563549,95.71560415],[4.53347036,0.02563377,95.71486894],[4.5334698,0.02563206,95.71413371],[4.53346925,0.02563034,95.71339844],[4.5334687,0.02562862,95.71266314],[4.53346815,0.02562691,95.71192782],[4.5334676,0.02562519,95.71119247],[4.53346705,0.02562347,95.71045709],[4.5334665,0.02562176,95.70972168],[4.53346595,0.02562004,95.70898624],[4.5334654,0.02561832,95.70825077],[4.53346485,0.0256166,95.70751527],[4.5334643,0.02561489,95.70677975],[4.53346375,0.02561317,95.70604419],[4.5334632,0.02561145,95.7053086],[4.53346265,0.02560974,95.70457299],[4.5334621,0.02560802,95.70383735],[4.53346155,0.0256063,95.70310167],[4.533461,0.02560459,95.70236597],[4.53346045,0.02560287,95.70163024],[4.5334599,0.02560115,95.70089447],[4.53345935,0.02559944,95.70015868],[4.5334588,0.02559772,95.69942286],[4.53345825,0.025596,95.69868701],[4.5334577,0.02559429,95.69795112],[4.53345715,0.02559257,95.69721521],[4.5334566,0.02559085,95.69647926],[4.53345605,0.02558914,95.69574329],[4.53345549,0.02558742,95.69500728],[4.53345494,0.0255857,95.69427124],[4.53345439,0.02558398,95.69353518],[4.53345384,0.02558227,95.69279908],[4.53345329,0.02558055,95.69206295],[4.53345274,0.02557883,95.69132679],[4.53345219,0.02557712,95.69059059],[4.53345164,0.0255754,95.68985437],[4.53345109,0.02557368,95.68911811],[4.53345054,0.02557197,95.68838182],[4.53344999,0.02557025,95.6876455],[4.53344944,0.02556853,95.68690915],[4.53344889,0.02556682,95.68617277],[4.53344834,0.0255651,95.68543635],[4.53344779,0.02556338,95.6846999],[4.53344724,0.02556167,95.68396342],[4.53344669,0.02555995,95.68322691],[4.53344614,0.02555823,95.68249037],[4.53344559,0.02555652,95.68175379],[4.53344504,0.0255548,95.68101718],[4.53344449,0.02555308,95.68028053],[4.53344394,0.02555136,95.67954385],[4.53344339,0.02554965,95.67880714],[4.53344284,0.02554793,95.6780704],[4.53344229,0.02554621,95.67733362],[4.53344174,0.0255445,95.67659681],[4.53344119,0.02554278,95.67585997],[4.53344064,0.02554106,95.67512309],[4.53344009,0.02553935,95.67438618],[4.53343954,0.02553763,95.67364923],[4.53343899,0.02553591,95.67291225],[4.53343844,0.0255342,95.67217524],[4.53343789,0.02553248,95.67143819],[4.53343734,0.02553076,95.67070111],[4.53343679,0.02552905,95.66996399],[4.53343624,0.02552733,95.66922684],[4.53343568,0.02552561,95.66848965],[4.53343513,0.02552389,95.66775243],[4.53343458,0.02552218,95.66701517],[4.53343403,0.02552046,95.66627788],[4.53343348,0.02551874,95.66554055],[4.53343293,0.02551703,95.66480319],[4.53343238,0.02551531,95.66406579],[4.53343183,0.02551359,95.66332835],[4.53343128,0.02551188,95.66259088],[4.53343073,0.02551016,95.66185338],[4.53343018,0.02550844,95.66111584],[4.53343009,0.02550816,95.6609931],[4.53343407,0.02550686,95.67438492],[4.53343417,0.02550715,95.67451339],[4.53343473,0.02550886,95.67528484],[4.53343529,0.02551058,95.67605534],[4.53343585,0.02551229,95.67682488],[4.53343641,0.025514,95.67759349],[4.53343696,0.02551572,95.67836116],[4.53343752,0.02551743,95.6791279],[4.53343808,0.02551915,95.67989373],[4.53343864,0.02552086,95.68065865],[4.5334392,0.02552257,95.68142267],[4.53343976,0.02552429,95.6821858],[4.53344031,0.025526,95.68294805],[4.53344087,0.02552772,95.68370942],[4.53344143,0.02552943,95.68446993],[4.53344198,0.02553115,95.68522958],[4.53344254,0.02553286,95.68598839],[4.5334431,0.02553458,95.68674636],[4.53344365,0.02553629,95.68750349],[4.53344421,0.02553801,95.68825981],[4.53344476,0.02553972,95.68901531],[4.53344532,0.02554144,95.68977001],[4.53344588,0.02554315,95.69052391],[4.53344643,0.02554487,95.69127703],[4.53344698,0.02554658,95.69202937],[4.53344754,0.0255483,95.69278094],[4.53344809,0.02555002,95.69353174],[4.53344865,0.02555173,95.6942818],[4.5334492,0.02555345,95.69503111],[4.53344976,0.02555516,95.69577969],[4.53345031,0.02555688,95.69652754],[4.53345086,0.02555859,95.69727468],[4.53345141,0.02556031,95.69802111],[4.53345197,0.02556203,95.69876684],[4.53345252,0.02556374,95.69951187],[4.53345307,0.02556546,95.70025623],[4.53345363,0.02556717,95.70099991],[4.53345418,0.02556889,95.70174293],[4.53345473,0.02557061,95.7024853],[4.53345528,0.02557232,95.70322702],[4.53345583,0.02557404,95.7039681],[4.53345638,0.02557576,95.70470855],[4.53345694,0.02557747,95.70544838],[4.53345749,0.02557919,95.7061876],[4.53345804,0.02558091,95.70692622],[4.53345859,0.02558262,95.70766424],[4.53345914,0.02558434,95.70840168],[4.53345969,0.02558606,95.70913855],[4.53346024,0.02558777,95.70987485],[4.53346079,0.02558949,95.71061059],[4.53346134,0.02559121,95.71134578],[4.53346189,0.02559292,95.71208043],[4.53346244,0.02559464,95.71281456],[4.53346299,0.02559636,95.71354815],[4.53346354,0.02559808,95.71428124],[4.53346409,0.02559979,95.71501382],[4.53346464,0.02560151,95.71574591],[4.53346519,0.02560323,95.71647751],[4.53346574,0.02560494,95.71720863],[4.53346629,0.02560666,95.71793928],[4.53346683,0.02560838,95.71866948],[4.53346738,0.0256101,95.71939922],[4.53346793,0.02561181,95.72012852],[4.53346848,0.02561353,95.72085739],[4.53346903,0.02561525,95.72158583],[4.53346958,0.02561697,95.72231386],[4.53347013,0.02561868,95.72304149],[4.53347067,0.0256204,95.72376872],[4.53347122,0.02562212,95.72449555],[4.53347177,0.02562384,95.72522201],[4.53347232,0.02562555,95.7259481],[4.53347287,0.02562727,95.72667383],[4.53347341,0.02562899,95.72739921],[4.53347396,0.02563071,95.72812424],[4.53347451,0.02563242,95.72884894],[4.53347506,0.02563414,95.72957331],[4.5334756,0.02563586,95.73029736],[4.53347615,0.02563758,95.73102109],[4.5334767,0.0256393,95.73174451],[4.53347725,0.02564101,95.73246762],[4.53347779,0.02564273,95.73319042],[4.53347834,0.02564445,95.73391292],[4.53347889,0.02564617,95.73463512],[4.53347943,0.02564789,95.73535703],[4.53347998,0.0256496,95.73607864],[4.53348053,0.02565132,95.73679997],[4.53348107,0.02565304,95.737521],[4.53348162,0.02565476,95.73824175],[4.53348217,0.02565648,95.73896221],[4.53348271,0.02565819,95.7396824],[4.53348326,0.02565991,95.7404023],[4.53348381,0.02566163,95.74112192],[4.53348435,0.02566335,95.74184127],[4.5334849,0.02566507,95.74256034],[4.53348545,0.02566678,95.74327914],[4.53348599,0.0256685,95.74399768],[4.53348654,0.02567022,95.74471594],[4.53348709,0.02567194,95.74543394],[4.53348763,0.02567366,95.74615168],[4.53348818,0.02567537,95.74686915],[4.53348872,0.02567709,95.74758637],[4.53348927,0.02567881,95.74830333],[4.53348982,0.02568053,95.74902004],[4.53349036,0.02568225,95.74973649],[4.53349091,0.02568397,95.7504527],[4.53349145,0.02568568,95.75116865],[4.533492,0.0256874,95.75188436],[4.53349254,0.02568912,95.75259983],[4.53349309,0.02569084,95.75331505],[4.53349364,0.02569256,95.75403004],[4.53349418,0.02569428,95.75474479],[4.53349473,0.02569599,95.7554593],[4.53349527,0.02569771,95.75617358],[4.53349582,0.02569943,95.75688763],[4.53349636,0.02570115,95.75760146],[4.53349691,0.02570287,95.75831505],[4.53349745,0.02570459,95.75902842],[4.533498,0.02570631,95.75974157],[4.53349854,0.02570802,95.7604545],[4.53349909,0.02570974,95.76116721],[4.53349964,0.02571146,95.76187971],[4.53350018,0.02571318,95.76259199],[4.53350073,0.0257149,95.76330407],[4.53350127,0.02571662,95.76401593],[4.53350182,0.02571833,95.76472759],[4.53350236,0.02572005,95.76543904],[4.53350291,0.02572177,95.76615029],[4.53350345,0.02572349,95.76686134],[4.533504,0.02572521,95.76757219],[4.53350454,0.02572693,95.76828285],[4.53350509,0.02572865,95.76899331],[4.53350563,0.02573036,95.76970358],[4.53350618,0.02573208,95.77041366],[4.53350672,0.0257338,95.77112356],[4.53350727,0.02573552,95.77183326],[4.53350781,0.02573724,95.77254279],[4.53350836,0.02573896,95.77325214],[4.5335089,0.02574068,95.7739613],[4.53350944,0.0257424,95.77467029],[4.53350999,0.02574411,95.77537911],[4.53351053,0.02574583,95.77608775],[4.53351108,0.02574755,95.77679623],[4.53351162,0.02574927,95.77750453],[4.53351217,0.02575099,95.77821267],[4.53351271,0.02575271,95.77892065],[4.53351326,0.02575443,95.77962847],[4.5335138,0.02575614,95.78033612],[4.53351435,0.02575786,95.78104362],[4.53351489,0.02575958,95.78175097],[4.53351544,0.0257613,95.78245816],[4.53351598,0.02576302,95.7831652],[4.53351653,0.02576474,95.7838721],[4.53351707,0.02576646,95.78457885],[4.53351761,0.02576818,95.78528545],[4.53351816,0.02576989,95.78599191],[4.5335187,0.02577161,95.78669823],[4.53351925,0.02577333,95.78740442],[4.53351979,0.02577505,95.78811047],[4.53352034,0.02577677,95.78881638],[4.53352088,0.02577849,95.78952216],[4.53352143,0.0257802,95.79022782],[4.53352197,0.02578192,95.79093335],[4.53352252,0.02578364,95.79163875],[4.53352306,0.02578536,95.79234403],[4.5335236,0.02578708,95.79304919],[4.53352415,0.0257888,95.79375423],[4.53352469,0.02579052,95.79445916],[4.53352524,0.02579223,95.79516398],[4.53352578,0.02579395,95.79586871],[4.53352633,0.02579567,95.79657334],[4.53352687,0.02579739,95.79727788],[4.53352742,0.02579911,95.79798235],[4.53352796,0.02580083,95.79868674],[4.53352851,0.02580255,95.79939106],[4.53352905,0.02580427,95.80009533],[4.5335296,0.02580598,95.80079953],[4.53353014,0.0258077,95.80150369],[4.53353068,0.02580942,95.80220781],[4.53353123,0.02581114,95.8029119],[4.53353177,0.02581286,95.80361595],[4.53353232,0.02581458,95.80431998],[4.53353286,0.0258163,95.805024],[4.53353341,0.02581801,95.805728],[4.53353395,0.02581973,95.806432],[4.5335345,0.02582145,95.80713601],[4.53353504,0.02582317,95.80784002],[4.53353559,0.02582489,95.80854405],[4.53353613,0.02582661,95.8092481],[4.53353668,0.02582833,95.80995217],[4.53353722,0.02583004,95.81065628],[4.53353777,0.02583176,95.81136043],[4.53353832,0.02583348,95.81206463],[4.53353886,0.0258352,95.81276888],[4.53353941,0.02583692,95.81347319],[4.53353995,0.02583864,95.81417756],[4.5335405,0.02584036,95.814882],[4.53354104,0.02584207,95.81558653],[4.53354159,0.02584379,95.81629113],[4.53354213,0.02584551,95.81699582],[4.53354268,0.02584723,95.81770061],[4.53354323,0.02584895,95.8184055],[4.53354377,0.02585067,95.8191105],[4.53354432,0.02585238,95.81981561],[4.53354486,0.0258541,95.82052084],[4.53354541,0.02585582,95.8212262],[4.53354596,0.02585754,95.82193169],[4.5335465,0.02585926,95.82263732],[4.53354705,0.02586097,95.82334311],[4.5335476,0.02586269,95.82404906],[4.53354814,0.02586441,95.82475518],[4.53354869,0.02586613,95.82546148],[4.53354924,0.02586785,95.82616797],[4.53354978,0.02586956,95.82687466],[4.53355033,0.02587128,95.82758156],[4.53355088,0.025873,95.82828868],[4.53355143,0.02587472,95.82899602],[4.53355197,0.02587644,95.8297036],[4.53355252,0.02587815,95.83041143],[4.53355307,0.02587987,95.83111954],[4.53355362,0.02588159,95.83182798],[4.53355416,0.02588331,95.83253679],[4.53355471,0.02588502,95.83324599],[4.53355526,0.02588674,95.83395564],[4.53355581,0.02588846,95.83466578],[4.53355636,0.02589018,95.83537643],[4.53355691,0.02589189,95.83608765],[4.53355745,0.02589361,95.83679947],[4.533558,0.02589533,95.83751192],[4.53355855,0.02589705,95.83822506],[4.5335591,0.02589876,95.83893891],[4.53355965,0.02590048,95.83965352],[4.5335602,0.0259022,95.84036892],[4.53356075,0.02590391,95.84108516],[4.5335613,0.02590563,95.84180226],[4.53356185,0.02590735,95.84252028],[4.53356241,0.02590906,95.84323925],[4.53356296,0.02591078,95.8439592],[4.53356351,0.0259125,95.84468018],[4.53356406,0.02591421,95.84540223],[4.53356462,0.02591593,95.84612537],[4.53356517,0.02591764,95.84684966],[4.53356572,0.02591936,95.84757512],[4.53356628,0.02592108,95.84830179],[4.53356683,0.02592279,95.84902972],[4.53356738,0.02592451,95.84975894],[4.53356794,0.02592622,95.85048948],[4.5335685,0.02592794,95.8512214],[4.53356905,0.02592965,95.85195471],[4.53356544,0.02593082,95.84038918]]],"type":"Polygon"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":1,"type":"shoulder","predecessorId":1,"sOffset":265.8100035851}},{"geometry":{"coordinates":[[[4.53356905,0.02592965,95.85195471],[4.5335685,0.02592794,95.8512214],[4.53356794,0.02592622,95.85048948],[4.53356738,0.02592451,95.84975894],[4.53356683,0.02592279,95.84902972],[4.53356628,0.02592108,95.84830179],[4.53356572,0.02591936,95.84757512],[4.53356517,0.02591764,95.84684966],[4.53356462,0.02591593,95.84612537],[4.53356406,0.02591421,95.84540223],[4.53356351,0.0259125,95.84468018],[4.53356296,0.02591078,95.8439592],[4.53356241,0.02590906,95.84323925],[4.53356185,0.02590735,95.84252028],[4.5335613,0.02590563,95.84180226],[4.53356075,0.02590391,95.84108516],[4.5335602,0.0259022,95.84036892],[4.53355965,0.02590048,95.83965352],[4.5335591,0.02589876,95.83893891],[4.53355855,0.02589705,95.83822506],[4.533558,0.02589533,95.83751192],[4.53355745,0.02589361,95.83679947],[4.53355691,0.02589189,95.83608765],[4.53355636,0.02589018,95.83537643],[4.53355581,0.02588846,95.83466578],[4.53355526,0.02588674,95.83395564],[4.53355471,0.02588502,95.83324599],[4.53355416,0.02588331,95.83253679],[4.53355362,0.02588159,95.83182798],[4.53355307,0.02587987,95.83111954],[4.53355252,0.02587815,95.83041143],[4.53355197,0.02587644,95.8297036],[4.53355143,0.02587472,95.82899602],[4.53355088,0.025873,95.82828868],[4.53355033,0.02587128,95.82758156],[4.53354978,0.02586956,95.82687466],[4.53354924,0.02586785,95.82616797],[4.53354869,0.02586613,95.82546148],[4.53354814,0.02586441,95.82475518],[4.5335476,0.02586269,95.82404906],[4.53354705,0.02586097,95.82334311],[4.5335465,0.02585926,95.82263732],[4.53354596,0.02585754,95.82193169],[4.53354541,0.02585582,95.8212262],[4.53354486,0.0258541,95.82052084],[4.53354432,0.02585238,95.81981561],[4.53354377,0.02585067,95.8191105],[4.53354323,0.02584895,95.8184055],[4.53354268,0.02584723,95.81770061],[4.53354213,0.02584551,95.81699582],[4.53354159,0.02584379,95.81629113],[4.53354104,0.02584207,95.81558653],[4.5335405,0.02584036,95.814882],[4.53353995,0.02583864,95.81417756],[4.53353941,0.02583692,95.81347319],[4.53353886,0.0258352,95.81276888],[4.53353832,0.02583348,95.81206463],[4.53353777,0.02583176,95.81136043],[4.53353722,0.02583004,95.81065628],[4.53353668,0.02582833,95.80995217],[4.53353613,0.02582661,95.8092481],[4.53353559,0.02582489,95.80854405],[4.53353504,0.02582317,95.80784002],[4.5335345,0.02582145,95.80713601],[4.53353395,0.02581973,95.806432],[4.53353341,0.02581801,95.805728],[4.53353286,0.0258163,95.805024],[4.53353232,0.02581458,95.80431998],[4.53353177,0.02581286,95.80361595],[4.53353123,0.02581114,95.8029119],[4.53353068,0.02580942,95.80220781],[4.53353014,0.0258077,95.80150369],[4.5335296,0.02580598,95.80079953],[4.53352905,0.02580427,95.80009533],[4.53352851,0.02580255,95.79939106],[4.53352796,0.02580083,95.79868674],[4.53352742,0.02579911,95.79798235],[4.53352687,0.02579739,95.79727788],[4.53352633,0.02579567,95.79657334],[4.53352578,0.02579395,95.79586871],[4.53352524,0.02579223,95.79516398],[4.53352469,0.02579052,95.79445916],[4.53352415,0.0257888,95.79375423],[4.5335236,0.02578708,95.79304919],[4.53352306,0.02578536,95.79234403],[4.53352252,0.02578364,95.79163875],[4.53352197,0.02578192,95.79093335],[4.53352143,0.0257802,95.79022782],[4.53352088,0.02577849,95.78952216],[4.53352034,0.02577677,95.78881638],[4.53351979,0.02577505,95.78811047],[4.53351925,0.02577333,95.78740442],[4.5335187,0.02577161,95.78669823],[4.53351816,0.02576989,95.78599191],[4.53351761,0.02576818,95.78528545],[4.53351707,0.02576646,95.78457885],[4.53351653,0.02576474,95.7838721],[4.53351598,0.02576302,95.7831652],[4.53351544,0.0257613,95.78245816],[4.53351489,0.02575958,95.78175097],[4.53351435,0.02575786,95.78104362],[4.5335138,0.02575614,95.78033612],[4.53351326,0.02575443,95.77962847],[4.53351271,0.02575271,95.77892065],[4.53351217,0.02575099,95.77821267],[4.53351162,0.02574927,95.77750453],[4.53351108,0.02574755,95.77679623],[4.53351053,0.02574583,95.77608775],[4.53350999,0.02574411,95.77537911],[4.53350944,0.0257424,95.77467029],[4.5335089,0.02574068,95.7739613],[4.53350836,0.02573896,95.77325214],[4.53350781,0.02573724,95.77254279],[4.53350727,0.02573552,95.77183326],[4.53350672,0.0257338,95.77112356],[4.53350618,0.02573208,95.77041366],[4.53350563,0.02573036,95.76970358],[4.53350509,0.02572865,95.76899331],[4.53350454,0.02572693,95.76828285],[4.533504,0.02572521,95.76757219],[4.53350345,0.02572349,95.76686134],[4.53350291,0.02572177,95.76615029],[4.53350236,0.02572005,95.76543904],[4.53350182,0.02571833,95.76472759],[4.53350127,0.02571662,95.76401593],[4.53350073,0.0257149,95.76330407],[4.53350018,0.02571318,95.76259199],[4.53349964,0.02571146,95.76187971],[4.53349909,0.02570974,95.76116721],[4.53349854,0.02570802,95.7604545],[4.533498,0.02570631,95.75974157],[4.53349745,0.02570459,95.75902842],[4.53349691,0.02570287,95.75831505],[4.53349636,0.02570115,95.75760146],[4.53349582,0.02569943,95.75688763],[4.53349527,0.02569771,95.75617358],[4.53349473,0.02569599,95.7554593],[4.53349418,0.02569428,95.75474479],[4.53349364,0.02569256,95.75403004],[4.53349309,0.02569084,95.75331505],[4.53349254,0.02568912,95.75259983],[4.533492,0.0256874,95.75188436],[4.53349145,0.02568568,95.75116865],[4.53349091,0.02568397,95.7504527],[4.53349036,0.02568225,95.74973649],[4.53348982,0.02568053,95.74902004],[4.53348927,0.02567881,95.74830333],[4.53348872,0.02567709,95.74758637],[4.53348818,0.02567537,95.74686915],[4.53348763,0.02567366,95.74615168],[4.53348709,0.02567194,95.74543394],[4.53348654,0.02567022,95.74471594],[4.53348599,0.0256685,95.74399768],[4.53348545,0.02566678,95.74327914],[4.5334849,0.02566507,95.74256034],[4.53348435,0.02566335,95.74184127],[4.53348381,0.02566163,95.74112192],[4.53348326,0.02565991,95.7404023],[4.53348271,0.02565819,95.7396824],[4.53348217,0.02565648,95.73896221],[4.53348162,0.02565476,95.73824175],[4.53348107,0.02565304,95.737521],[4.53348053,0.02565132,95.73679997],[4.53347998,0.0256496,95.73607864],[4.53347943,0.02564789,95.73535703],[4.53347889,0.02564617,95.73463512],[4.53347834,0.02564445,95.73391292],[4.53347779,0.02564273,95.73319042],[4.53347725,0.02564101,95.73246762],[4.5334767,0.0256393,95.73174451],[4.53347615,0.02563758,95.73102109],[4.5334756,0.02563586,95.73029736],[4.53347506,0.02563414,95.72957331],[4.53347451,0.02563242,95.72884894],[4.53347396,0.02563071,95.72812424],[4.53347341,0.02562899,95.72739921],[4.53347287,0.02562727,95.72667383],[4.53347232,0.02562555,95.7259481],[4.53347177,0.02562384,95.72522201],[4.53347122,0.02562212,95.72449555],[4.53347067,0.0256204,95.72376872],[4.53347013,0.02561868,95.72304149],[4.53346958,0.02561697,95.72231386],[4.53346903,0.02561525,95.72158583],[4.53346848,0.02561353,95.72085739],[4.53346793,0.02561181,95.72012852],[4.53346738,0.0256101,95.71939922],[4.53346683,0.02560838,95.71866948],[4.53346629,0.02560666,95.71793928],[4.53346574,0.02560494,95.71720863],[4.53346519,0.02560323,95.71647751],[4.53346464,0.02560151,95.71574591],[4.53346409,0.02559979,95.71501382],[4.53346354,0.02559808,95.71428124],[4.53346299,0.02559636,95.71354815],[4.53346244,0.02559464,95.71281456],[4.53346189,0.02559292,95.71208043],[4.53346134,0.02559121,95.71134578],[4.53346079,0.02558949,95.71061059],[4.53346024,0.02558777,95.70987485],[4.53345969,0.02558606,95.70913855],[4.53345914,0.02558434,95.70840168],[4.53345859,0.02558262,95.70766424],[4.53345804,0.02558091,95.70692622],[4.53345749,0.02557919,95.7061876],[4.53345694,0.02557747,95.70544838],[4.53345638,0.02557576,95.70470855],[4.53345583,0.02557404,95.7039681],[4.53345528,0.02557232,95.70322702],[4.53345473,0.02557061,95.7024853],[4.53345418,0.02556889,95.70174293],[4.53345363,0.02556717,95.70099991],[4.53345307,0.02556546,95.70025623],[4.53345252,0.02556374,95.69951187],[4.53345197,0.02556203,95.69876684],[4.53345141,0.02556031,95.69802111],[4.53345086,0.02555859,95.69727468],[4.53345031,0.02555688,95.69652754],[4.53344976,0.02555516,95.69577969],[4.5334492,0.02555345,95.69503111],[4.53344865,0.02555173,95.6942818],[4.53344809,0.02555002,95.69353174],[4.53344754,0.0255483,95.69278094],[4.53344698,0.02554658,95.69202937],[4.53344643,0.02554487,95.69127703],[4.53344588,0.02554315,95.69052391],[4.53344532,0.02554144,95.68977001],[4.53344476,0.02553972,95.68901531],[4.53344421,0.02553801,95.68825981],[4.53344365,0.02553629,95.68750349],[4.5334431,0.02553458,95.68674636],[4.53344254,0.02553286,95.68598839],[4.53344198,0.02553115,95.68522958],[4.53344143,0.02552943,95.68446993],[4.53344087,0.02552772,95.68370942],[4.53344031,0.025526,95.68294805],[4.53343976,0.02552429,95.6821858],[4.5334392,0.02552257,95.68142267],[4.53343864,0.02552086,95.68065865],[4.53343808,0.02551915,95.67989373],[4.53343752,0.02551743,95.6791279],[4.53343696,0.02551572,95.67836116],[4.53343641,0.025514,95.67759349],[4.53343585,0.02551229,95.67682488],[4.53343529,0.02551058,95.67605534],[4.53343473,0.02550886,95.67528484],[4.53343417,0.02550715,95.67451339],[4.53343407,0.02550686,95.67438492],[4.53344647,0.02550283,95.67438492],[4.53344656,0.02550312,95.67451339],[4.53344711,0.02550484,95.67528484],[4.53344766,0.02550655,95.67605534],[4.53344821,0.02550827,95.67682488],[4.53344876,0.02550999,95.67759349],[4.53344931,0.02551171,95.67836116],[4.53344986,0.02551342,95.6791279],[4.53345041,0.02551514,95.67989373],[4.53345096,0.02551686,95.68065865],[4.53345151,0.02551857,95.68142267],[4.53345206,0.02552029,95.6821858],[4.53345261,0.02552201,95.68294805],[4.53345316,0.02552372,95.68370942],[4.53345371,0.02552544,95.68446993],[4.53345426,0.02552716,95.68522958],[4.53345481,0.02552888,95.68598839],[4.53345536,0.02553059,95.68674636],[4.53345591,0.02553231,95.68750349],[4.53345646,0.02553403,95.68825981],[4.53345701,0.02553574,95.68901531],[4.53345756,0.02553746,95.68977001],[4.53345811,0.02553918,95.69052391],[4.53345866,0.02554089,95.69127703],[4.53345921,0.02554261,95.69202937],[4.53345976,0.02554433,95.69278094],[4.53346031,0.02554605,95.69353174],[4.53346086,0.02554776,95.6942818],[4.53346141,0.02554948,95.69503111],[4.53346196,0.0255512,95.69577969],[4.53346251,0.02555291,95.69652754],[4.53346307,0.02555463,95.69727468],[4.53346362,0.02555635,95.69802111],[4.53346417,0.02555806,95.69876684],[4.53346472,0.02555978,95.69951187],[4.53346527,0.0255615,95.70025623],[4.53346582,0.02556321,95.70099991],[4.53346637,0.02556493,95.70174293],[4.53346692,0.02556665,95.7024853],[4.53346747,0.02556836,95.70322702],[4.53346802,0.02557008,95.7039681],[4.53346857,0.0255718,95.70470855],[4.53346912,0.02557352,95.70544838],[4.53346967,0.02557523,95.7061876],[4.53347022,0.02557695,95.70692622],[4.53347077,0.02557867,95.70766424],[4.53347132,0.02558038,95.70840168],[4.53347188,0.0255821,95.70913855],[4.53347243,0.02558382,95.70987485],[4.53347298,0.02558553,95.71061059],[4.53347353,0.02558725,95.71134578],[4.53347408,0.02558897,95.71208043],[4.53347463,0.02559068,95.71281456],[4.53347518,0.0255924,95.71354815],[4.53347573,0.02559412,95.71428124],[4.53347628,0.02559583,95.71501382],[4.53347683,0.02559755,95.71574591],[4.53347738,0.02559927,95.71647751],[4.53347793,0.02560098,95.71720863],[4.53347848,0.0256027,95.71793928],[4.53347903,0.02560442,95.71866948],[4.53347959,0.02560613,95.71939922],[4.53348014,0.02560785,95.72012852],[4.53348069,0.02560957,95.72085739],[4.53348124,0.02561129,95.72158583],[4.53348179,0.025613,95.72231386],[4.53348234,0.02561472,95.72304149],[4.53348289,0.02561644,95.72376872],[4.53348344,0.02561815,95.72449555],[4.53348399,0.02561987,95.72522201],[4.53348454,0.02562159,95.7259481],[4.53348509,0.0256233,95.72667383],[4.53348564,0.02562502,95.72739921],[4.53348619,0.02562674,95.72812424],[4.53348674,0.02562845,95.72884894],[4.5334873,0.02563017,95.72957331],[4.53348785,0.02563189,95.73029736],[4.5334884,0.0256336,95.73102109],[4.53348895,0.02563532,95.73174451],[4.5334895,0.02563704,95.73246762],[4.53349005,0.02563875,95.73319042],[4.5334906,0.02564047,95.73391292],[4.53349115,0.02564219,95.73463512],[4.5334917,0.0256439,95.73535703],[4.53349225,0.02564562,95.73607864],[4.5334928,0.02564734,95.73679997],[4.53349335,0.02564905,95.737521],[4.5334939,0.02565077,95.73824175],[4.53349445,0.02565249,95.73896221],[4.53349501,0.02565421,95.7396824],[4.53349556,0.02565592,95.7404023],[4.53349611,0.02565764,95.74112192],[4.53349666,0.02565936,95.74184127],[4.53349721,0.02566107,95.74256034],[4.53349776,0.02566279,95.74327914],[4.53349831,0.02566451,95.74399768],[4.53349886,0.02566622,95.74471594],[4.53349941,0.02566794,95.74543394],[4.53349996,0.02566966,95.74615168],[4.53350051,0.02567137,95.74686915],[4.53350106,0.02567309,95.74758637],[4.53350161,0.02567481,95.74830333],[4.53350216,0.02567652,95.74902004],[4.53350271,0.02567824,95.74973649],[4.53350326,0.02567996,95.7504527],[4.53350382,0.02568167,95.75116865],[4.53350437,0.02568339,95.75188436],[4.53350492,0.02568511,95.75259983],[4.53350547,0.02568682,95.75331505],[4.53350602,0.02568854,95.75403004],[4.53350657,0.02569026,95.75474479],[4.53350712,0.02569198,95.7554593],[4.53350767,0.02569369,95.75617358],[4.53350822,0.02569541,95.75688763],[4.53350877,0.02569713,95.75760146],[4.53350932,0.02569884,95.75831505],[4.53350987,0.02570056,95.75902842],[4.53351042,0.02570228,95.75974157],[4.53351097,0.02570399,95.7604545],[4.53351152,0.02570571,95.76116721],[4.53351207,0.02570743,95.76187971],[4.53351262,0.02570914,95.76259199],[4.53351317,0.02571086,95.76330407],[4.53351372,0.02571258,95.76401593],[4.53351427,0.02571429,95.76472759],[4.53351482,0.02571601,95.76543904],[4.53351537,0.02571773,95.76615029],[4.53351592,0.02571945,95.76686134],[4.53351647,0.02572116,95.76757219],[4.53351702,0.02572288,95.76828285],[4.53351757,0.0257246,95.76899331],[4.53351812,0.02572631,95.76970358],[4.53351868,0.02572803,95.77041366],[4.53351923,0.02572975,95.77112356],[4.53351978,0.02573146,95.77183326],[4.53352033,0.02573318,95.77254279],[4.53352088,0.0257349,95.77325214],[4.53352143,0.02573662,95.7739613],[4.53352198,0.02573833,95.77467029],[4.53352253,0.02574005,95.77537911],[4.53352308,0.02574177,95.77608775],[4.53352363,0.02574348,95.77679623],[4.53352418,0.0257452,95.77750453],[4.53352473,0.02574692,95.77821267],[4.53352527,0.02574863,95.77892065],[4.53352582,0.02575035,95.77962847],[4.53352637,0.02575207,95.78033612],[4.53352692,0.02575379,95.78104362],[4.53352747,0.0257555,95.78175097],[4.53352802,0.02575722,95.78245816],[4.53352857,0.02575894,95.7831652],[4.53352912,0.02576065,95.7838721],[4.53352967,0.02576237,95.78457885],[4.53353022,0.02576409,95.78528545],[4.53353077,0.02576581,95.78599191],[4.53353132,0.02576752,95.78669823],[4.53353187,0.02576924,95.78740442],[4.53353242,0.02577096,95.78811047],[4.53353297,0.02577267,95.78881638],[4.53353352,0.02577439,95.78952216],[4.53353407,0.02577611,95.79022782],[4.53353462,0.02577782,95.79093335],[4.53353517,0.02577954,95.79163875],[4.53353572,0.02578126,95.79234403],[4.53353627,0.02578298,95.79304919],[4.53353681,0.02578469,95.79375423],[4.53353736,0.02578641,95.79445916],[4.53353791,0.02578813,95.79516398],[4.53353846,0.02578984,95.79586871],[4.53353901,0.02579156,95.79657334],[4.53353956,0.02579328,95.79727788],[4.53354011,0.025795,95.79798235],[4.53354066,0.02579671,95.79868674],[4.53354121,0.02579843,95.79939106],[4.53354176,0.02580015,95.80009533],[4.5335423,0.02580187,95.80079953],[4.53354285,0.02580358,95.80150369],[4.5335434,0.0258053,95.80220781],[4.53354395,0.02580702,95.8029119],[4.5335445,0.02580874,95.80361595],[4.53354505,0.02581045,95.80431998],[4.5335456,0.02581217,95.805024],[4.53354615,0.02581389,95.805728],[4.53354669,0.0258156,95.806432],[4.53354724,0.02581732,95.80713601],[4.53354779,0.02581904,95.80784002],[4.53354834,0.02582076,95.80854405],[4.53354889,0.02582247,95.8092481],[4.53354944,0.02582419,95.80995217],[4.53354999,0.02582591,95.81065628],[4.53355054,0.02582763,95.81136043],[4.53355108,0.02582934,95.81206463],[4.53355163,0.02583106,95.81276888],[4.53355218,0.02583278,95.81347319],[4.53355273,0.0258345,95.81417756],[4.53355328,0.02583621,95.814882],[4.53355383,0.02583793,95.81558653],[4.53355438,0.02583965,95.81629113],[4.53355492,0.02584137,95.81699582],[4.53355547,0.02584308,95.81770061],[4.53355602,0.0258448,95.8184055],[4.53355657,0.02584652,95.8191105],[4.53355712,0.02584824,95.81981561],[4.53355767,0.02584995,95.82052084],[4.53355821,0.02585167,95.8212262],[4.53355876,0.02585339,95.82193169],[4.53355931,0.02585511,95.82263732],[4.53355986,0.02585682,95.82334311],[4.53356041,0.02585854,95.82404906],[4.53356096,0.02586026,95.82475518],[4.53356151,0.02586198,95.82546148],[4.53356205,0.02586369,95.82616797],[4.5335626,0.02586541,95.82687466],[4.53356315,0.02586713,95.82758156],[4.5335637,0.02586885,95.82828868],[4.53356425,0.02587056,95.82899602],[4.5335648,0.02587228,95.8297036],[4.53356535,0.025874,95.83041143],[4.53356589,0.02587572,95.83111954],[4.53356644,0.02587743,95.83182798],[4.53356699,0.02587915,95.83253679],[4.53356754,0.02588087,95.83324599],[4.53356809,0.02588259,95.83395564],[4.53356864,0.0258843,95.83466578],[4.53356919,0.02588602,95.83537643],[4.53356973,0.02588774,95.83608765],[4.53357028,0.02588946,95.83679947],[4.53357083,0.02589117,95.83751192],[4.53357138,0.02589289,95.83822506],[4.53357193,0.02589461,95.83893891],[4.53357248,0.02589633,95.83965352],[4.53357303,0.02589804,95.84036892],[4.53357358,0.02589976,95.84108516],[4.53357412,0.02590148,95.84180226],[4.53357467,0.0259032,95.84252028],[4.53357522,0.02590491,95.84323925],[4.53357577,0.02590663,95.8439592],[4.53357632,0.02590835,95.84468018],[4.53357687,0.02591007,95.84540223],[4.53357742,0.02591178,95.84612537],[4.53357796,0.0259135,95.84684966],[4.53357851,0.02591522,95.84757512],[4.53357906,0.02591694,95.84830179],[4.53357961,0.02591865,95.84902972],[4.53358016,0.02592037,95.84975894],[4.53358071,0.02592209,95.85048948],[4.53358126,0.02592381,95.8512214],[4.53358181,0.02592552,95.85195471],[4.53356905,0.02592965,95.85195471]]],"type":"Polygon"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":2,"type":"none","predecessorId":2,"sOffset":265.8100035851}},{"geometry":{"coordinates":[[[4.53329492,0.02555209,95.47753252],[4.53329451,0.0255508,95.46819295],[4.53332077,0.02554227,95.46819295],[4.53332124,0.02554353,95.47753252],[4.53329492,0.02555209,95.47753252]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-7,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-7,"type":"none","predecessorId":0,"sOffset":315.0432848677}},{"geometry":{"coordinates":[[[4.53332124,0.02554353,95.47753252],[4.53332077,0.02554227,95.46819295],[4.53332787,0.02553996,95.46819295],[4.5333309,0.0255404,95.47753252],[4.53332124,0.02554353,95.47753252]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-6,"type":"border","predecessorId":0,"sOffset":315.0432848677}},{"geometry":{"coordinates":[[[4.5333309,0.0255404,95.32753252],[4.53332787,0.02553996,95.31819295],[4.53333717,0.02553694,95.34946543],[4.53333758,0.02553822,95.35000952],[4.5333309,0.0255404,95.32753252]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-5,"type":"border","predecessorId":-5,"sOffset":315.0432848677}},{"geometry":{"coordinates":[[[4.53333758,0.02553822,95.35000952],[4.53333717,0.02553694,95.34946543],[4.53333886,0.02553639,95.35515342],[4.53333927,0.02553767,95.35567583],[4.53333758,0.02553822,95.35000952]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-4,"type":"shoulder","predecessorId":-4,"sOffset":315.0432848677}},{"geometry":{"coordinates":[[[4.53333927,0.02553767,95.35567583],[4.53333886,0.02553639,95.35515342],[4.53336803,0.02552691,95.45320399],[4.53336844,0.02552819,95.45373207],[4.53333927,0.02553767,95.35567583]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3,"sOffset":315.0432848677}},{"geometry":{"coordinates":[[[4.53336844,0.02552819,95.45373207],[4.53336803,0.02552691,95.45320399],[4.53339901,0.02551684,95.55733742],[4.53339942,0.02551813,95.55788299],[4.53336844,0.02552819,95.45373207]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2,"sOffset":315.0432848677}},{"geometry":{"coordinates":[[[4.53339942,0.02551813,95.55788299],[4.53339901,0.02551684,95.55733742],[4.53342968,0.02550687,95.66043975],[4.53343009,0.02550816,95.6609931],[4.53339942,0.02551813,95.55788299]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1,"sOffset":315.0432848677}},{"geometry":{"coordinates":[[[4.53343009,0.02550816,95.6609931],[4.53342968,0.02550687,95.66043975],[4.53343365,0.02550558,95.67380568],[4.53343407,0.02550686,95.67438492],[4.53343009,0.02550816,95.6609931]]],"type":"Polygon"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":1,"type":"shoulder","predecessorId":1,"sOffset":315.0432848677}},{"geometry":{"coordinates":[[[4.53343407,0.02550686,95.67438492],[4.53343365,0.02550558,95.67380568],[4.53344606,0.02550155,95.67380568],[4.53344647,0.02550283,95.67438492],[4.53343407,0.02550686,95.67438492]]],"type":"Polygon"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":2,"type":"none","predecessorId":2,"sOffset":315.0432848677}},{"geometry":{"coordinates":[[[4.53329451,0.0255508,95.4487602],[4.53329396,0.02554909,95.4477707],[4.53329341,0.02554737,95.44678178],[4.53329281,0.02554567,95.46595892],[4.53329224,0.02554396,95.47548211],[4.53329174,0.02554223,95.48500393],[4.5332912,0.02554051,95.48985493],[4.53329065,0.02553879,95.48917111],[4.5332901,0.02553707,95.48848665],[4.53328956,0.02553536,95.48780156],[4.53328901,0.02553364,95.48711582],[4.53328846,0.02553192,95.48642943],[4.53328792,0.02553021,95.48574238],[4.53328737,0.02552849,95.48505467],[4.53328682,0.02552677,95.48436629],[4.53328628,0.02552505,95.48367723],[4.53328573,0.02552334,95.4829875],[4.53328519,0.02552162,95.48229708],[4.53328464,0.0255199,95.48160597],[4.5332841,0.02551818,95.48091416],[4.53328355,0.02551647,95.48022165],[4.53328301,0.02551475,95.47952843],[4.53328246,0.02551303,95.4788345],[4.53328192,0.02551131,95.47813984],[4.53328137,0.0255096,95.47744446],[4.53328082,0.02550788,95.47674835],[4.53328027,0.02550616,95.4760515],[4.53327972,0.02550445,95.47535391],[4.53327917,0.02550273,95.47465558],[4.53327862,0.02550102,95.47395648],[4.53327807,0.0254993,95.47325663],[4.53327752,0.02549759,95.47255601],[4.53327696,0.02549587,95.47185463],[4.5332764,0.02549416,95.47115246],[4.53327585,0.02549244,95.47044952],[4.53327529,0.02549073,95.46974578],[4.53327473,0.02548902,95.46904126],[4.53327417,0.0254873,95.46833594],[4.53327362,0.02548559,95.46762981],[4.53327306,0.02548388,95.46692287],[4.5332725,0.02548216,95.46621512],[4.53327194,0.02548045,95.46550654],[4.53327138,0.02547874,95.46479715],[4.53327082,0.02547702,95.46408693],[4.53327026,0.02547531,95.4633759],[4.53326971,0.0254736,95.46266409],[4.53326915,0.02547188,95.4619515],[4.5332686,0.02547017,95.46123815],[4.53326804,0.02546845,95.46052406],[4.53326749,0.02546674,95.45980924],[4.53326694,0.02546502,95.45909371],[4.53326638,0.02546331,95.45837749],[4.53326583,0.02546159,95.45766058],[4.53326528,0.02545988,95.45694302],[4.53326473,0.02545816,95.4562248],[4.53326418,0.02545645,95.45550595],[4.53326363,0.02545473,95.45478649],[4.53326308,0.02545302,95.45406642],[4.53326253,0.0254513,95.45334577],[4.53326198,0.02544958,95.45262455],[4.53326143,0.02544787,95.45190277],[4.53326088,0.02544615,95.45118046],[4.53326033,0.02544443,95.45045763],[4.53325978,0.02544272,95.44973428],[4.53325923,0.025441,95.44901045],[4.53325868,0.02543929,95.44828614],[4.53325813,0.02543757,95.44756137],[4.53325758,0.02543585,95.44683616],[4.53325703,0.02543414,95.44611052],[4.53325649,0.02543242,95.44538447],[4.53325594,0.0254307,95.44465802],[4.53325539,0.02542899,95.44393119],[4.53325484,0.02542727,95.44320399],[4.53325429,0.02542556,95.44247644],[4.53325374,0.02542384,95.44174856],[4.53325319,0.02542213,95.44102035],[4.53325264,0.02542041,95.44029185],[4.5332523,0.02541935,95.43984364],[4.53329181,0.02540649,95.43984364],[4.53329216,0.02540754,95.44029185],[4.53329272,0.02540925,95.44102035],[4.53329329,0.02541097,95.44174856],[4.53329385,0.02541268,95.44247644],[4.53329442,0.02541439,95.44320399],[4.53329498,0.0254161,95.44393119],[4.53329555,0.02541781,95.44465802],[4.53329611,0.02541952,95.44538447],[4.53329667,0.02542123,95.44611052],[4.53329724,0.02542295,95.44683616],[4.5332978,0.02542466,95.44756137],[4.53329837,0.02542637,95.44828614],[4.53329893,0.02542808,95.44901045],[4.53329949,0.02542979,95.44973428],[4.53330006,0.02543151,95.45045763],[4.53330062,0.02543322,95.45118046],[4.53330118,0.02543493,95.45190277],[4.53330174,0.02543664,95.45262455],[4.5333023,0.02543836,95.45334577],[4.53330286,0.02544007,95.45406642],[4.53330342,0.02544178,95.45478649],[4.53330398,0.02544349,95.45550595],[4.53330454,0.02544521,95.4562248],[4.5333051,0.02544692,95.45694302],[4.53330566,0.02544864,95.45766058],[4.53330621,0.02545035,95.45837749],[4.53330677,0.02545206,95.45909371],[4.53330732,0.02545378,95.45980924],[4.53330788,0.02545549,95.46052406],[4.53330843,0.02545721,95.46123815],[4.53330898,0.02545892,95.4619515],[4.53330953,0.02546064,95.46266409],[4.53331008,0.02546236,95.4633759],[4.53331063,0.02546407,95.46408693],[4.53331118,0.02546579,95.46479715],[4.53331173,0.02546751,95.46550654],[4.53331227,0.02546922,95.46621512],[4.53331282,0.02547094,95.46692287],[4.53331337,0.02547266,95.46762981],[4.53331391,0.02547438,95.46833594],[4.53331445,0.0254761,95.46904126],[4.533315,0.02547782,95.46974578],[4.53331554,0.02547953,95.47044952],[4.53331608,0.02548125,95.47115246],[4.53331662,0.02548297,95.47185463],[4.53331716,0.02548469,95.47255601],[4.5333177,0.02548641,95.47325663],[4.53331824,0.02548813,95.47395648],[4.53331878,0.02548985,95.47465558],[4.53331932,0.02549157,95.47535391],[4.53331986,0.02549329,95.4760515],[4.5333204,0.02549501,95.47674835],[4.53332093,0.02549673,95.47744446],[4.53332147,0.02549845,95.47813984],[4.53332201,0.02550017,95.4788345],[4.53332255,0.02550189,95.47952843],[4.53332309,0.02550361,95.48022165],[4.53332363,0.02550533,95.48091416],[4.53332416,0.02550705,95.48160597],[4.5333247,0.02550877,95.48229708],[4.53332524,0.02551049,95.4829875],[4.53332578,0.02551221,95.48367723],[4.53332632,0.02551393,95.48436629],[4.53332686,0.02551565,95.48505467],[4.5333274,0.02551737,95.48574238],[4.53332794,0.02551909,95.48642943],[4.53332848,0.02552081,95.48711582],[4.53332902,0.02552253,95.48780156],[4.53332956,0.02552425,95.48848665],[4.5333301,0.02552597,95.48917111],[4.53333064,0.02552769,95.48985493],[4.53332852,0.02553027,95.48500393],[4.53332597,0.02553299,95.47548211],[4.53331881,0.02553722,95.46595892],[4.5333195,0.02553889,95.44678178],[4.53332013,0.02554058,95.4477707],[4.53332077,0.02554227,95.4487602],[4.53329451,0.0255508,95.4487602]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-7,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-7,"type":"none","predecessorId":-7,"sOffset":315.1933307473}},{"geometry":{"coordinates":[[[4.53332077,0.02554227,95.4487602],[4.53332013,0.02554058,95.4477707],[4.5333195,0.02553889,95.44678178],[4.53331881,0.02553722,95.46595892],[4.53332597,0.02553299,95.47548211],[4.53332852,0.02553027,95.48500393],[4.53333064,0.02552769,95.48985493],[4.5333301,0.02552597,95.48917111],[4.53332956,0.02552425,95.48848665],[4.53332902,0.02552253,95.48780156],[4.53332848,0.02552081,95.48711582],[4.53332794,0.02551909,95.48642943],[4.5333274,0.02551737,95.48574238],[4.53332686,0.02551565,95.48505467],[4.53332632,0.02551393,95.48436629],[4.53332578,0.02551221,95.48367723],[4.53332524,0.02551049,95.4829875],[4.5333247,0.02550877,95.48229708],[4.53332416,0.02550705,95.48160597],[4.53332363,0.02550533,95.48091416],[4.53332309,0.02550361,95.48022165],[4.53332255,0.02550189,95.47952843],[4.53332201,0.02550017,95.4788345],[4.53332147,0.02549845,95.47813984],[4.53332093,0.02549673,95.47744446],[4.5333204,0.02549501,95.47674835],[4.53331986,0.02549329,95.4760515],[4.53331932,0.02549157,95.47535391],[4.53331878,0.02548985,95.47465558],[4.53331824,0.02548813,95.47395648],[4.5333177,0.02548641,95.47325663],[4.53331716,0.02548469,95.47255601],[4.53331662,0.02548297,95.47185463],[4.53331608,0.02548125,95.47115246],[4.53331554,0.02547953,95.47044952],[4.533315,0.02547782,95.46974578],[4.53331445,0.0254761,95.46904126],[4.53331391,0.02547438,95.46833594],[4.53331337,0.02547266,95.46762981],[4.53331282,0.02547094,95.46692287],[4.53331227,0.02546922,95.46621512],[4.53331173,0.02546751,95.46550654],[4.53331118,0.02546579,95.46479715],[4.53331063,0.02546407,95.46408693],[4.53331008,0.02546236,95.4633759],[4.53330953,0.02546064,95.46266409],[4.53330898,0.02545892,95.4619515],[4.53330843,0.02545721,95.46123815],[4.53330788,0.02545549,95.46052406],[4.53330732,0.02545378,95.45980924],[4.53330677,0.02545206,95.45909371],[4.53330621,0.02545035,95.45837749],[4.53330566,0.02544864,95.45766058],[4.5333051,0.02544692,95.45694302],[4.53330454,0.02544521,95.4562248],[4.53330398,0.02544349,95.45550595],[4.53330342,0.02544178,95.45478649],[4.53330286,0.02544007,95.45406642],[4.5333023,0.02543836,95.45334577],[4.53330174,0.02543664,95.45262455],[4.53330118,0.02543493,95.45190277],[4.53330062,0.02543322,95.45118046],[4.53330006,0.02543151,95.45045763],[4.53329949,0.02542979,95.44973428],[4.53329893,0.02542808,95.44901045],[4.53329837,0.02542637,95.44828614],[4.5332978,0.02542466,95.44756137],[4.53329724,0.02542295,95.44683616],[4.53329667,0.02542123,95.44611052],[4.53329611,0.02541952,95.44538447],[4.53329555,0.02541781,95.44465802],[4.53329498,0.0254161,95.44393119],[4.53329442,0.02541439,95.44320399],[4.53329385,0.02541268,95.44247644],[4.53329329,0.02541097,95.44174856],[4.53329272,0.02540925,95.44102035],[4.53329216,0.02540754,95.44029185],[4.53329181,0.02540649,95.43984364],[4.53329312,0.02540606,95.43984364],[4.53329347,0.02540712,95.44029185],[4.53329403,0.02540883,95.44102035],[4.5332946,0.02541054,95.44174856],[4.53329516,0.02541225,95.44247644],[4.53329572,0.02541396,95.44320399],[4.53329629,0.02541567,95.44393119],[4.53329685,0.02541739,95.44465802],[4.53329741,0.0254191,95.44538447],[4.53329798,0.02542081,95.44611052],[4.53329854,0.02542252,95.44683616],[4.5332991,0.02542423,95.44756137],[4.53329966,0.02542595,95.44828614],[4.53330023,0.02542766,95.44901045],[4.53330079,0.02542937,95.44973428],[4.53330135,0.02543108,95.45045763],[4.53330191,0.0254328,95.45118046],[4.53330247,0.02543451,95.45190277],[4.53330303,0.02543622,95.45262455],[4.53330359,0.02543794,95.45334577],[4.53330415,0.02543965,95.45406642],[4.53330471,0.02544136,95.45478649],[4.53330527,0.02544307,95.45550595],[4.53330583,0.02544479,95.4562248],[4.53330639,0.0254465,95.45694302],[4.53330695,0.02544821,95.45766058],[4.53330751,0.02544993,95.45837749],[4.53330807,0.02545164,95.45909371],[4.53330862,0.02545336,95.45980924],[4.53330918,0.02545507,95.46052406],[4.53330974,0.02545678,95.46123815],[4.53331029,0.0254585,95.4619515],[4.53331085,0.02546021,95.46266409],[4.53331141,0.02546193,95.4633759],[4.53331196,0.02546364,95.46408693],[4.53331252,0.02546536,95.46479715],[4.53331307,0.02546707,95.46550654],[4.53331363,0.02546878,95.46621512],[4.53331418,0.0254705,95.46692287],[4.53331474,0.02547221,95.46762981],[4.53331529,0.02547393,95.46833594],[4.53331584,0.02547565,95.46904126],[4.53331639,0.02547736,95.46974578],[4.53331695,0.02547908,95.47044952],[4.5333175,0.02548079,95.47115246],[4.53331805,0.02548251,95.47185463],[4.5333186,0.02548422,95.47255601],[4.53331915,0.02548594,95.47325663],[4.5333197,0.02548766,95.47395648],[4.53332025,0.02548937,95.47465558],[4.5333208,0.02549109,95.47535391],[4.53332135,0.0254928,95.4760515],[4.5333219,0.02549452,95.47674835],[4.53332245,0.02549624,95.47744446],[4.533323,0.02549795,95.47813984],[4.53332355,0.02549967,95.4788345],[4.5333241,0.02550139,95.47952843],[4.53332464,0.02550311,95.48022165],[4.53332519,0.02550482,95.48091416],[4.53332574,0.02550654,95.48160597],[4.53332628,0.02550826,95.48229708],[4.53332683,0.02550997,95.4829875],[4.53332738,0.02551169,95.48367723],[4.53332792,0.02551341,95.48436629],[4.53332847,0.02551513,95.48505467],[4.53332901,0.02551685,95.48574238],[4.53332956,0.02551856,95.48642943],[4.5333301,0.02552028,95.48711582],[4.53333065,0.025522,95.48780156],[4.53333119,0.02552372,95.48848665],[4.53333173,0.02552544,95.48917111],[4.53333228,0.02552716,95.48985493],[4.53333117,0.02552941,95.48500393],[4.53332868,0.02553212,95.47548211],[4.53332618,0.02553482,95.46595892],[4.53332082,0.02553846,95.44678178],[4.53332145,0.02554015,95.4477707],[4.53332208,0.02554184,95.4487602],[4.53332077,0.02554227,95.4487602]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-6,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-6,"type":"border","predecessorId":0,"sOffset":315.1933307473}},{"geometry":{"coordinates":[[[4.53332208,0.02554184,95.2987602],[4.53332145,0.02554015,95.2977707],[4.53332082,0.02553846,95.29678178],[4.53332618,0.02553482,95.31595892],[4.53332868,0.02553212,95.32548211],[4.53333117,0.02552941,95.33500393],[4.53333228,0.02552716,95.33985493],[4.53333173,0.02552544,95.33917111],[4.53333119,0.02552372,95.33848665],[4.53333065,0.025522,95.33780156],[4.5333301,0.02552028,95.33711582],[4.53332956,0.02551856,95.33642943],[4.53332901,0.02551685,95.33574238],[4.53332847,0.02551513,95.33505467],[4.53332792,0.02551341,95.33436629],[4.53332738,0.02551169,95.33367723],[4.53332683,0.02550997,95.3329875],[4.53332628,0.02550826,95.33229708],[4.53332574,0.02550654,95.33160597],[4.53332519,0.02550482,95.33091416],[4.53332464,0.02550311,95.33022165],[4.5333241,0.02550139,95.32952843],[4.53332355,0.02549967,95.3288345],[4.533323,0.02549795,95.32813984],[4.53332245,0.02549624,95.32744446],[4.5333219,0.02549452,95.32674835],[4.53332135,0.0254928,95.3260515],[4.5333208,0.02549109,95.32535391],[4.53332025,0.02548937,95.32465558],[4.5333197,0.02548766,95.32395648],[4.53331915,0.02548594,95.32325663],[4.5333186,0.02548422,95.32255601],[4.53331805,0.02548251,95.32185463],[4.5333175,0.02548079,95.32115246],[4.53331695,0.02547908,95.32044952],[4.53331639,0.02547736,95.31974578],[4.53331584,0.02547565,95.31904126],[4.53331529,0.02547393,95.31833594],[4.53331474,0.02547221,95.31762981],[4.53331418,0.0254705,95.31692287],[4.53331363,0.02546878,95.31621512],[4.53331307,0.02546707,95.31550654],[4.53331252,0.02546536,95.31479715],[4.53331196,0.02546364,95.31408693],[4.53331141,0.02546193,95.3133759],[4.53331085,0.02546021,95.31266409],[4.53331029,0.0254585,95.3119515],[4.53330974,0.02545678,95.31123815],[4.53330918,0.02545507,95.31052406],[4.53330862,0.02545336,95.30980924],[4.53330807,0.02545164,95.30909371],[4.53330751,0.02544993,95.30837749],[4.53330695,0.02544821,95.30766058],[4.53330639,0.0254465,95.30694302],[4.53330583,0.02544479,95.3062248],[4.53330527,0.02544307,95.30550595],[4.53330471,0.02544136,95.30478649],[4.53330415,0.02543965,95.30406642],[4.53330359,0.02543794,95.30334577],[4.53330303,0.02543622,95.30262455],[4.53330247,0.02543451,95.30190277],[4.53330191,0.0254328,95.30118046],[4.53330135,0.02543108,95.30045763],[4.53330079,0.02542937,95.29973428],[4.53330023,0.02542766,95.29901045],[4.53329966,0.02542595,95.29828614],[4.5332991,0.02542423,95.29756137],[4.53329854,0.02542252,95.29683616],[4.53329798,0.02542081,95.29611052],[4.53329741,0.0254191,95.29538447],[4.53329685,0.02541739,95.29465802],[4.53329629,0.02541567,95.29393119],[4.53329572,0.02541396,95.29320399],[4.53329516,0.02541225,95.29247644],[4.5332946,0.02541054,95.29174856],[4.53329403,0.02540883,95.29102035],[4.53329347,0.02540712,95.29029185],[4.53329312,0.02540606,95.28984364],[4.53329495,0.02540547,95.29592869],[4.53329529,0.02540652,95.29635108],[4.53329584,0.02540824,95.29703805],[4.53329639,0.02540995,95.29772527],[4.53329694,0.02541167,95.29841275],[4.5332975,0.02541339,95.29910048],[4.53329805,0.0254151,95.29978848],[4.5332986,0.02541682,95.30047674],[4.53329915,0.02541853,95.30116527],[4.5332997,0.02542025,95.30185406],[4.53330025,0.02542197,95.30254313],[4.5333008,0.02542368,95.30323247],[4.53330136,0.0254254,95.30392208],[4.53330191,0.02542711,95.30461198],[4.53330246,0.02542883,95.30530215],[4.53330301,0.02543054,95.30599261],[4.53330356,0.02543226,95.30668336],[4.53330411,0.02543398,95.3073744],[4.53330466,0.02543569,95.30806573],[4.53330521,0.02543741,95.30875735],[4.53330577,0.02543912,95.30944927],[4.53330632,0.02544084,95.31014149],[4.53330687,0.02544256,95.31083402],[4.53330742,0.02544427,95.31152684],[4.53330797,0.02544599,95.31221998],[4.53330852,0.0254477,95.31291343],[4.53330907,0.02544942,95.31360719],[4.53330962,0.02545113,95.31430126],[4.53331017,0.02545285,95.31499566],[4.53331073,0.02545457,95.31569037],[4.53331128,0.02545628,95.31638541],[4.53331183,0.025458,95.31708077],[4.53331238,0.02545971,95.31777647],[4.53331293,0.02546143,95.31847249],[4.53331348,0.02546315,95.31916885],[4.53331403,0.02546486,95.31986555],[4.53331458,0.02546658,95.32056258],[4.53331513,0.02546829,95.32125996],[4.53331569,0.02547001,95.32195768],[4.53331624,0.02547173,95.32265574],[4.53331679,0.02547344,95.32335416],[4.53331734,0.02547516,95.32405293],[4.53331789,0.02547687,95.32475206],[4.53331844,0.02547859,95.32545154],[4.53331899,0.02548031,95.32615138],[4.53331954,0.02548202,95.32685159],[4.53332009,0.02548374,95.32755216],[4.53332064,0.02548545,95.3282531],[4.5333212,0.02548717,95.32895441],[4.53332175,0.02548889,95.32965609],[4.5333223,0.0254906,95.33035815],[4.53332285,0.02549232,95.33106058],[4.5333234,0.02549403,95.3317634],[4.53332395,0.02549575,95.3324666],[4.5333245,0.02549747,95.33317019],[4.53332505,0.02549918,95.33387417],[4.5333256,0.0255009,95.33457854],[4.53332615,0.02550261,95.3352833],[4.5333267,0.02550433,95.33598847],[4.53332725,0.02550605,95.33669403],[4.53332781,0.02550776,95.33739999],[4.53332836,0.02550948,95.33810636],[4.53332891,0.02551119,95.33881313],[4.53332946,0.02551291,95.33952032],[4.53333001,0.02551463,95.34022791],[4.53333056,0.02551634,95.34093593],[4.53333111,0.02551806,95.34164436],[4.53333166,0.02551978,95.34235321],[4.53333221,0.02552149,95.34306248],[4.53333276,0.02552321,95.34377218],[4.53333331,0.02552492,95.34448231],[4.53333386,0.02552664,95.34519287],[4.53333441,0.02552836,95.34590386],[4.53333497,0.02553007,95.34661529],[4.53333552,0.02553179,95.34732716],[4.53333607,0.0255335,95.34803947],[4.53333662,0.02553522,95.34875223],[4.53333717,0.02553694,95.34946543],[4.53332208,0.02554184,95.2987602]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-5,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-5,"type":"border","predecessorId":0,"sOffset":315.1933307473}},{"geometry":{"coordinates":[[[4.53333717,0.02553694,95.34946543],[4.53333662,0.02553522,95.34875223],[4.53333607,0.0255335,95.34803947],[4.53333552,0.02553179,95.34732716],[4.53333497,0.02553007,95.34661529],[4.53333441,0.02552836,95.34590386],[4.53333386,0.02552664,95.34519287],[4.53333331,0.02552492,95.34448231],[4.53333276,0.02552321,95.34377218],[4.53333221,0.02552149,95.34306248],[4.53333166,0.02551978,95.34235321],[4.53333111,0.02551806,95.34164436],[4.53333056,0.02551634,95.34093593],[4.53333001,0.02551463,95.34022791],[4.53332946,0.02551291,95.33952032],[4.53332891,0.02551119,95.33881313],[4.53332836,0.02550948,95.33810636],[4.53332781,0.02550776,95.33739999],[4.53332725,0.02550605,95.33669403],[4.5333267,0.02550433,95.33598847],[4.53332615,0.02550261,95.3352833],[4.5333256,0.0255009,95.33457854],[4.53332505,0.02549918,95.33387417],[4.5333245,0.02549747,95.33317019],[4.53332395,0.02549575,95.3324666],[4.5333234,0.02549403,95.3317634],[4.53332285,0.02549232,95.33106058],[4.5333223,0.0254906,95.33035815],[4.53332175,0.02548889,95.32965609],[4.5333212,0.02548717,95.32895441],[4.53332064,0.02548545,95.3282531],[4.53332009,0.02548374,95.32755216],[4.53331954,0.02548202,95.32685159],[4.53331899,0.02548031,95.32615138],[4.53331844,0.02547859,95.32545154],[4.53331789,0.02547687,95.32475206],[4.53331734,0.02547516,95.32405293],[4.53331679,0.02547344,95.32335416],[4.53331624,0.02547173,95.32265574],[4.53331569,0.02547001,95.32195768],[4.53331513,0.02546829,95.32125996],[4.53331458,0.02546658,95.32056258],[4.53331403,0.02546486,95.31986555],[4.53331348,0.02546315,95.31916885],[4.53331293,0.02546143,95.31847249],[4.53331238,0.02545971,95.31777647],[4.53331183,0.025458,95.31708077],[4.53331128,0.02545628,95.31638541],[4.53331073,0.02545457,95.31569037],[4.53331017,0.02545285,95.31499566],[4.53330962,0.02545113,95.31430126],[4.53330907,0.02544942,95.31360719],[4.53330852,0.0254477,95.31291343],[4.53330797,0.02544599,95.31221998],[4.53330742,0.02544427,95.31152684],[4.53330687,0.02544256,95.31083402],[4.53330632,0.02544084,95.31014149],[4.53330577,0.02543912,95.30944927],[4.53330521,0.02543741,95.30875735],[4.53330466,0.02543569,95.30806573],[4.53330411,0.02543398,95.3073744],[4.53330356,0.02543226,95.30668336],[4.53330301,0.02543054,95.30599261],[4.53330246,0.02542883,95.30530215],[4.53330191,0.02542711,95.30461198],[4.53330136,0.0254254,95.30392208],[4.5333008,0.02542368,95.30323247],[4.53330025,0.02542197,95.30254313],[4.5332997,0.02542025,95.30185406],[4.53329915,0.02541853,95.30116527],[4.5332986,0.02541682,95.30047674],[4.53329805,0.0254151,95.29978848],[4.5332975,0.02541339,95.29910048],[4.53329694,0.02541167,95.29841275],[4.53329639,0.02540995,95.29772527],[4.53329584,0.02540824,95.29703805],[4.53329529,0.02540652,95.29635108],[4.53329495,0.02540547,95.29592869],[4.53329712,0.02540476,95.30316093],[4.53329746,0.02540582,95.30357126],[4.533298,0.02540753,95.3042386],[4.53329855,0.02540925,95.30490617],[4.5332991,0.02541097,95.30557399],[4.53329964,0.02541269,95.30624205],[4.53330019,0.02541441,95.30691036],[4.53330073,0.02541612,95.30757892],[4.53330128,0.02541784,95.30824773],[4.53330182,0.02541956,95.30891679],[4.53330237,0.02542128,95.30958611],[4.53330291,0.025423,95.31025569],[4.53330346,0.02542471,95.31092553],[4.533304,0.02542643,95.31159563],[4.53330455,0.02542815,95.312266],[4.53330509,0.02542987,95.31293664],[4.53330564,0.02543158,95.31360756],[4.53330618,0.0254333,95.31427875],[4.53330673,0.02543502,95.31495022],[4.53330727,0.02543674,95.31562196],[4.53330782,0.02543846,95.31629399],[4.53330836,0.02544017,95.31696631],[4.53330891,0.02544189,95.31763891],[4.53330945,0.02544361,95.31831181],[4.53331,0.02544533,95.318985],[4.53331054,0.02544705,95.31965848],[4.53331109,0.02544876,95.32033227],[4.53331163,0.02545048,95.32100635],[4.53331218,0.0254522,95.32168074],[4.53331272,0.02545392,95.32235544],[4.53331326,0.02545564,95.32303044],[4.53331381,0.02545735,95.32370576],[4.53331435,0.02545907,95.32438139],[4.5333149,0.02546079,95.32505734],[4.53331544,0.02546251,95.32573361],[4.53331599,0.02546423,95.3264102],[4.53331653,0.02546594,95.32708711],[4.53331708,0.02546766,95.32776436],[4.53331762,0.02546938,95.32844193],[4.53331817,0.0254711,95.32911984],[4.53331871,0.02547282,95.32979808],[4.53331926,0.02547453,95.33047667],[4.5333198,0.02547625,95.33115559],[4.53332035,0.02547797,95.33183486],[4.53332089,0.02547969,95.33251447],[4.53332144,0.02548141,95.33319443],[4.53332198,0.02548312,95.33387474],[4.53332252,0.02548484,95.33455541],[4.53332307,0.02548656,95.33523644],[4.53332361,0.02548828,95.33591782],[4.53332416,0.02549,95.33659957],[4.5333247,0.02549171,95.33728168],[4.53332525,0.02549343,95.33796416],[4.53332579,0.02549515,95.33864701],[4.53332634,0.02549687,95.33933023],[4.53332688,0.02549859,95.34001383],[4.53332743,0.02550031,95.34069781],[4.53332797,0.02550202,95.34138217],[4.53332852,0.02550374,95.34206691],[4.53332906,0.02550546,95.34275203],[4.5333296,0.02550718,95.34343755],[4.53333015,0.0255089,95.34412346],[4.53333069,0.02551061,95.34480976],[4.53333124,0.02551233,95.34549646],[4.53333178,0.02551405,95.34618356],[4.53333233,0.02551577,95.34687106],[4.53333287,0.02551749,95.34755896],[4.53333342,0.0255192,95.34824728],[4.53333396,0.02552092,95.348936],[4.5333345,0.02552264,95.34962514],[4.53333505,0.02552436,95.35031469],[4.53333559,0.02552608,95.35100466],[4.53333614,0.0255278,95.35169505],[4.53333668,0.02552951,95.35238587],[4.53333723,0.02553123,95.35307711],[4.53333777,0.02553295,95.35376878],[4.53333832,0.02553467,95.35446088],[4.53333886,0.02553639,95.35515342],[4.53333717,0.02553694,95.34946543]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-4,"type":"shoulder","predecessorId":-4,"sOffset":315.1933307473}},{"geometry":{"coordinates":[[[4.53333886,0.02553639,95.35515342],[4.53333832,0.02553467,95.35446088],[4.53333777,0.02553295,95.35376878],[4.53333723,0.02553123,95.35307711],[4.53333668,0.02552951,95.35238587],[4.53333614,0.0255278,95.35169505],[4.53333559,0.02552608,95.35100466],[4.53333505,0.02552436,95.35031469],[4.5333345,0.02552264,95.34962514],[4.53333396,0.02552092,95.348936],[4.53333342,0.0255192,95.34824728],[4.53333287,0.02551749,95.34755896],[4.53333233,0.02551577,95.34687106],[4.53333178,0.02551405,95.34618356],[4.53333124,0.02551233,95.34549646],[4.53333069,0.02551061,95.34480976],[4.53333015,0.0255089,95.34412346],[4.5333296,0.02550718,95.34343755],[4.53332906,0.02550546,95.34275203],[4.53332852,0.02550374,95.34206691],[4.53332797,0.02550202,95.34138217],[4.53332743,0.02550031,95.34069781],[4.53332688,0.02549859,95.34001383],[4.53332634,0.02549687,95.33933023],[4.53332579,0.02549515,95.33864701],[4.53332525,0.02549343,95.33796416],[4.5333247,0.02549171,95.33728168],[4.53332416,0.02549,95.33659957],[4.53332361,0.02548828,95.33591782],[4.53332307,0.02548656,95.33523644],[4.53332252,0.02548484,95.33455541],[4.53332198,0.02548312,95.33387474],[4.53332144,0.02548141,95.33319443],[4.53332089,0.02547969,95.33251447],[4.53332035,0.02547797,95.33183486],[4.5333198,0.02547625,95.33115559],[4.53331926,0.02547453,95.33047667],[4.53331871,0.02547282,95.32979808],[4.53331817,0.0254711,95.32911984],[4.53331762,0.02546938,95.32844193],[4.53331708,0.02546766,95.32776436],[4.53331653,0.02546594,95.32708711],[4.53331599,0.02546423,95.3264102],[4.53331544,0.02546251,95.32573361],[4.5333149,0.02546079,95.32505734],[4.53331435,0.02545907,95.32438139],[4.53331381,0.02545735,95.32370576],[4.53331326,0.02545564,95.32303044],[4.53331272,0.02545392,95.32235544],[4.53331218,0.0254522,95.32168074],[4.53331163,0.02545048,95.32100635],[4.53331109,0.02544876,95.32033227],[4.53331054,0.02544705,95.31965848],[4.53331,0.02544533,95.318985],[4.53330945,0.02544361,95.31831181],[4.53330891,0.02544189,95.31763891],[4.53330836,0.02544017,95.31696631],[4.53330782,0.02543846,95.31629399],[4.53330727,0.02543674,95.31562196],[4.53330673,0.02543502,95.31495022],[4.53330618,0.0254333,95.31427875],[4.53330564,0.02543158,95.31360756],[4.53330509,0.02542987,95.31293664],[4.53330455,0.02542815,95.312266],[4.533304,0.02542643,95.31159563],[4.53330346,0.02542471,95.31092553],[4.53330291,0.025423,95.31025569],[4.53330237,0.02542128,95.30958611],[4.53330182,0.02541956,95.30891679],[4.53330128,0.02541784,95.30824773],[4.53330073,0.02541612,95.30757892],[4.53330019,0.02541441,95.30691036],[4.53329964,0.02541269,95.30624205],[4.5332991,0.02541097,95.30557399],[4.53329855,0.02540925,95.30490617],[4.533298,0.02540753,95.3042386],[4.53329746,0.02540582,95.30357126],[4.53329712,0.02540476,95.30316093],[4.53332597,0.02539537,95.39913986],[4.53332631,0.02539642,95.39956934],[4.53332686,0.02539814,95.40026774],[4.53332741,0.02539986,95.40096629],[4.53332796,0.02540157,95.40166499],[4.53332851,0.02540329,95.40236385],[4.53332906,0.02540501,95.40306286],[4.53332961,0.02540672,95.40376203],[4.53333016,0.02540844,95.40446136],[4.5333307,0.02541016,95.40516085],[4.53333125,0.02541187,95.40586051],[4.5333318,0.02541359,95.40656033],[4.53333235,0.02541531,95.40726032],[4.5333329,0.02541702,95.40796048],[4.53333345,0.02541874,95.40866081],[4.533334,0.02542046,95.40936131],[4.53333455,0.02542218,95.41006198],[4.5333351,0.02542389,95.41076283],[4.53333565,0.02542561,95.41146386],[4.5333362,0.02542733,95.41216507],[4.53333675,0.02542904,95.41286645],[4.53333729,0.02543076,95.41356803],[4.53333784,0.02543248,95.41426978],[4.53333839,0.02543419,95.41497173],[4.53333894,0.02543591,95.41567386],[4.53333949,0.02543763,95.41637618],[4.53334004,0.02543934,95.41707869],[4.53334059,0.02544106,95.4177814],[4.53334114,0.02544278,95.41848431],[4.53334169,0.02544449,95.41918741],[4.53334224,0.02544621,95.41989071],[4.53334279,0.02544793,95.42059421],[4.53334333,0.02544964,95.42129792],[4.53334388,0.02545136,95.42200183],[4.53334443,0.02545308,95.42270594],[4.53334498,0.02545479,95.42341027],[4.53334553,0.02545651,95.4241148],[4.53334608,0.02545823,95.42481955],[4.53334663,0.02545995,95.42552451],[4.53334718,0.02546166,95.42622968],[4.53334773,0.02546338,95.42693508],[4.53334827,0.0254651,95.42764069],[4.53334882,0.02546681,95.42834652],[4.53334937,0.02546853,95.42905258],[4.53334992,0.02547025,95.42975886],[4.53335047,0.02547196,95.43046537],[4.53335102,0.02547368,95.4311721],[4.53335157,0.0254754,95.43187907],[4.53335212,0.02547711,95.43258627],[4.53335267,0.02547883,95.4332937],[4.53335321,0.02548055,95.43400136],[4.53335376,0.02548226,95.43470927],[4.53335431,0.02548398,95.43541741],[4.53335486,0.0254857,95.43612579],[4.53335541,0.02548742,95.43683442],[4.53335596,0.02548913,95.43754329],[4.53335651,0.02549085,95.43825241],[4.53335706,0.02549257,95.43896177],[4.5333576,0.02549428,95.43967139],[4.53335815,0.025496,95.44038126],[4.5333587,0.02549772,95.44109138],[4.53335925,0.02549943,95.44180175],[4.5333598,0.02550115,95.44251239],[4.53336035,0.02550287,95.44322328],[4.5333609,0.02550459,95.44393443],[4.53336144,0.0255063,95.44464585],[4.53336199,0.02550802,95.44535753],[4.53336254,0.02550974,95.44606948],[4.53336309,0.02551145,95.44678169],[4.53336364,0.02551317,95.44749418],[4.53336419,0.02551489,95.44820693],[4.53336474,0.0255166,95.44891996],[4.53336529,0.02551832,95.44963327],[4.53336583,0.02552004,95.45034685],[4.53336638,0.02552176,95.45106071],[4.53336693,0.02552347,95.45177486],[4.53336748,0.02552519,95.45248928],[4.53336803,0.02552691,95.45320399],[4.53333886,0.02553639,95.35515342]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3,"sOffset":315.1933307473}},{"geometry":{"coordinates":[[[4.53336803,0.02552691,95.45320399],[4.53336748,0.02552519,95.45248928],[4.53336693,0.02552347,95.45177486],[4.53336638,0.02552176,95.45106071],[4.53336583,0.02552004,95.45034685],[4.53336529,0.02551832,95.44963327],[4.53336474,0.0255166,95.44891996],[4.53336419,0.02551489,95.44820693],[4.53336364,0.02551317,95.44749418],[4.53336309,0.02551145,95.44678169],[4.53336254,0.02550974,95.44606948],[4.53336199,0.02550802,95.44535753],[4.53336144,0.0255063,95.44464585],[4.5333609,0.02550459,95.44393443],[4.53336035,0.02550287,95.44322328],[4.5333598,0.02550115,95.44251239],[4.53335925,0.02549943,95.44180175],[4.5333587,0.02549772,95.44109138],[4.53335815,0.025496,95.44038126],[4.5333576,0.02549428,95.43967139],[4.53335706,0.02549257,95.43896177],[4.53335651,0.02549085,95.43825241],[4.53335596,0.02548913,95.43754329],[4.53335541,0.02548742,95.43683442],[4.53335486,0.0254857,95.43612579],[4.53335431,0.02548398,95.43541741],[4.53335376,0.02548226,95.43470927],[4.53335321,0.02548055,95.43400136],[4.53335267,0.02547883,95.4332937],[4.53335212,0.02547711,95.43258627],[4.53335157,0.0254754,95.43187907],[4.53335102,0.02547368,95.4311721],[4.53335047,0.02547196,95.43046537],[4.53334992,0.02547025,95.42975886],[4.53334937,0.02546853,95.42905258],[4.53334882,0.02546681,95.42834652],[4.53334827,0.0254651,95.42764069],[4.53334773,0.02546338,95.42693508],[4.53334718,0.02546166,95.42622968],[4.53334663,0.02545995,95.42552451],[4.53334608,0.02545823,95.42481955],[4.53334553,0.02545651,95.4241148],[4.53334498,0.02545479,95.42341027],[4.53334443,0.02545308,95.42270594],[4.53334388,0.02545136,95.42200183],[4.53334333,0.02544964,95.42129792],[4.53334279,0.02544793,95.42059421],[4.53334224,0.02544621,95.41989071],[4.53334169,0.02544449,95.41918741],[4.53334114,0.02544278,95.41848431],[4.53334059,0.02544106,95.4177814],[4.53334004,0.02543934,95.41707869],[4.53333949,0.02543763,95.41637618],[4.53333894,0.02543591,95.41567386],[4.53333839,0.02543419,95.41497173],[4.53333784,0.02543248,95.41426978],[4.53333729,0.02543076,95.41356803],[4.53333675,0.02542904,95.41286645],[4.5333362,0.02542733,95.41216507],[4.53333565,0.02542561,95.41146386],[4.5333351,0.02542389,95.41076283],[4.53333455,0.02542218,95.41006198],[4.533334,0.02542046,95.40936131],[4.53333345,0.02541874,95.40866081],[4.5333329,0.02541702,95.40796048],[4.53333235,0.02541531,95.40726032],[4.5333318,0.02541359,95.40656033],[4.53333125,0.02541187,95.40586051],[4.5333307,0.02541016,95.40516085],[4.53333016,0.02540844,95.40446136],[4.53332961,0.02540672,95.40376203],[4.53332906,0.02540501,95.40306286],[4.53332851,0.02540329,95.40236385],[4.53332796,0.02540157,95.40166499],[4.53332741,0.02539986,95.40096629],[4.53332686,0.02539814,95.40026774],[4.53332631,0.02539642,95.39956934],[4.53332597,0.02539537,95.39913986],[4.53335694,0.02538529,95.50217106],[4.53335728,0.02538634,95.50261217],[4.53335783,0.02538806,95.50332942],[4.53335838,0.02538978,95.50404673],[4.53335893,0.02539149,95.50476408],[4.53335948,0.02539321,95.50548149],[4.53336003,0.02539493,95.50619895],[4.53336057,0.02539664,95.50691646],[4.53336112,0.02539836,95.50763404],[4.53336167,0.02540008,95.50835167],[4.53336222,0.02540179,95.50906936],[4.53336277,0.02540351,95.50978711],[4.53336332,0.02540523,95.51050491],[4.53336387,0.02540695,95.51122278],[4.53336442,0.02540866,95.51194072],[4.53336497,0.02541038,95.51265871],[4.53336552,0.0254121,95.51337677],[4.53336607,0.02541381,95.51409489],[4.53336662,0.02541553,95.51481308],[4.53336717,0.02541725,95.51553134],[4.53336772,0.02541896,95.51624966],[4.53336827,0.02542068,95.51696806],[4.53336881,0.0254224,95.51768652],[4.53336936,0.02542411,95.51840505],[4.53336991,0.02542583,95.51912366],[4.53337046,0.02542755,95.51984233],[4.53337101,0.02542927,95.52056108],[4.53337156,0.02543098,95.52127991],[4.53337211,0.0254327,95.52199881],[4.53337266,0.02543442,95.52271779],[4.53337321,0.02543613,95.52343684],[4.53337376,0.02543785,95.52415597],[4.53337431,0.02543957,95.52487519],[4.53337486,0.02544129,95.52559448],[4.5333754,0.025443,95.52631385],[4.53337595,0.02544472,95.52703331],[4.5333765,0.02544644,95.52775285],[4.53337705,0.02544815,95.52847247],[4.5333776,0.02544987,95.52919218],[4.53337815,0.02545159,95.52991197],[4.5333787,0.0254533,95.53063185],[4.53337925,0.02545502,95.53135182],[4.5333798,0.02545674,95.53207188],[4.53338035,0.02545846,95.53279203],[4.53338089,0.02546017,95.53351226],[4.53338144,0.02546189,95.53423259],[4.53338199,0.02546361,95.53495302],[4.53338254,0.02546532,95.53567353],[4.53338309,0.02546704,95.53639414],[4.53338364,0.02546876,95.53711485],[4.53338419,0.02547048,95.53783565],[4.53338474,0.02547219,95.53855656],[4.53338529,0.02547391,95.53927755],[4.53338583,0.02547563,95.53999865],[4.53338638,0.02547734,95.54071985],[4.53338693,0.02547906,95.54144115],[4.53338748,0.02548078,95.54216256],[4.53338803,0.0254825,95.54288407],[4.53338858,0.02548421,95.54360568],[4.53338913,0.02548593,95.54432739],[4.53338968,0.02548765,95.54504922],[4.53339023,0.02548936,95.54577115],[4.53339077,0.02549108,95.54649319],[4.53339132,0.0254928,95.54721533],[4.53339187,0.02549451,95.54793759],[4.53339242,0.02549623,95.54865996],[4.53339297,0.02549795,95.54938244],[4.53339352,0.02549967,95.55010504],[4.53339407,0.02550138,95.55082775],[4.53339462,0.0255031,95.55155057],[4.53339517,0.02550482,95.55227351],[4.53339571,0.02550653,95.55299657],[4.53339626,0.02550825,95.55371974],[4.53339681,0.02550997,95.55444303],[4.53339736,0.02551169,95.55516645],[4.53339791,0.0255134,95.55588998],[4.53339846,0.02551512,95.55661364],[4.53339901,0.02551684,95.55733742],[4.53336803,0.02552691,95.45320399]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2,"sOffset":315.1933307473}},{"geometry":{"coordinates":[[[4.53339901,0.02551684,95.55733742],[4.53339846,0.02551512,95.55661364],[4.53339791,0.0255134,95.55588998],[4.53339736,0.02551169,95.55516645],[4.53339681,0.02550997,95.55444303],[4.53339626,0.02550825,95.55371974],[4.53339571,0.02550653,95.55299657],[4.53339517,0.02550482,95.55227351],[4.53339462,0.0255031,95.55155057],[4.53339407,0.02550138,95.55082775],[4.53339352,0.02549967,95.55010504],[4.53339297,0.02549795,95.54938244],[4.53339242,0.02549623,95.54865996],[4.53339187,0.02549451,95.54793759],[4.53339132,0.0254928,95.54721533],[4.53339077,0.02549108,95.54649319],[4.53339023,0.02548936,95.54577115],[4.53338968,0.02548765,95.54504922],[4.53338913,0.02548593,95.54432739],[4.53338858,0.02548421,95.54360568],[4.53338803,0.0254825,95.54288407],[4.53338748,0.02548078,95.54216256],[4.53338693,0.02547906,95.54144115],[4.53338638,0.02547734,95.54071985],[4.53338583,0.02547563,95.53999865],[4.53338529,0.02547391,95.53927755],[4.53338474,0.02547219,95.53855656],[4.53338419,0.02547048,95.53783565],[4.53338364,0.02546876,95.53711485],[4.53338309,0.02546704,95.53639414],[4.53338254,0.02546532,95.53567353],[4.53338199,0.02546361,95.53495302],[4.53338144,0.02546189,95.53423259],[4.53338089,0.02546017,95.53351226],[4.53338035,0.02545846,95.53279203],[4.5333798,0.02545674,95.53207188],[4.53337925,0.02545502,95.53135182],[4.5333787,0.0254533,95.53063185],[4.53337815,0.02545159,95.52991197],[4.5333776,0.02544987,95.52919218],[4.53337705,0.02544815,95.52847247],[4.5333765,0.02544644,95.52775285],[4.53337595,0.02544472,95.52703331],[4.5333754,0.025443,95.52631385],[4.53337486,0.02544129,95.52559448],[4.53337431,0.02543957,95.52487519],[4.53337376,0.02543785,95.52415597],[4.53337321,0.02543613,95.52343684],[4.53337266,0.02543442,95.52271779],[4.53337211,0.0254327,95.52199881],[4.53337156,0.02543098,95.52127991],[4.53337101,0.02542927,95.52056108],[4.53337046,0.02542755,95.51984233],[4.53336991,0.02542583,95.51912366],[4.53336936,0.02542411,95.51840505],[4.53336881,0.0254224,95.51768652],[4.53336827,0.02542068,95.51696806],[4.53336772,0.02541896,95.51624966],[4.53336717,0.02541725,95.51553134],[4.53336662,0.02541553,95.51481308],[4.53336607,0.02541381,95.51409489],[4.53336552,0.0254121,95.51337677],[4.53336497,0.02541038,95.51265871],[4.53336442,0.02540866,95.51194072],[4.53336387,0.02540695,95.51122278],[4.53336332,0.02540523,95.51050491],[4.53336277,0.02540351,95.50978711],[4.53336222,0.02540179,95.50906936],[4.53336167,0.02540008,95.50835167],[4.53336112,0.02539836,95.50763404],[4.53336057,0.02539664,95.50691646],[4.53336003,0.02539493,95.50619895],[4.53335948,0.02539321,95.50548149],[4.53335893,0.02539149,95.50476408],[4.53335838,0.02538978,95.50404673],[4.53335783,0.02538806,95.50332942],[4.53335728,0.02538634,95.50261217],[4.53335694,0.02538529,95.50217106],[4.53338749,0.02537534,95.60381418],[4.53338783,0.0253764,95.60426973],[4.53338838,0.02537811,95.60501038],[4.53338893,0.02537983,95.60575099],[4.53338948,0.02538155,95.60649155],[4.53339003,0.02538326,95.60723206],[4.53339058,0.02538498,95.60797254],[4.53339114,0.0253867,95.60871297],[4.53339169,0.02538841,95.60945335],[4.53339224,0.02539013,95.61019369],[4.53339279,0.02539185,95.61093399],[4.53339334,0.02539356,95.61167424],[4.53339389,0.02539528,95.61241445],[4.53339444,0.025397,95.61315462],[4.53339499,0.02539871,95.61389474],[4.53339554,0.02540043,95.61463482],[4.53339609,0.02540215,95.61537486],[4.53339664,0.02540386,95.61611485],[4.5333972,0.02540558,95.6168548],[4.53339775,0.0254073,95.61759471],[4.5333983,0.02540901,95.61833457],[4.53339885,0.02541073,95.61907439],[4.5333994,0.02541245,95.61981417],[4.53339995,0.02541416,95.62055391],[4.5334005,0.02541588,95.6212936],[4.53340105,0.0254176,95.62203326],[4.5334016,0.02541931,95.62277287],[4.53340215,0.02542103,95.62351244],[4.5334027,0.02542275,95.62425196],[4.53340325,0.02542446,95.62499145],[4.5334038,0.02542618,95.62573089],[4.53340436,0.0254279,95.62647029],[4.53340491,0.02542961,95.62720965],[4.53340546,0.02543133,95.62794897],[4.53340601,0.02543305,95.62868825],[4.53340656,0.02543476,95.62942748],[4.53340711,0.02543648,95.63016668],[4.53340766,0.0254382,95.63090583],[4.53340821,0.02543991,95.63164495],[4.53340876,0.02544163,95.63238402],[4.53340931,0.02544335,95.63312305],[4.53340986,0.02544506,95.63386204],[4.53341041,0.02544678,95.63460099],[4.53341096,0.0254485,95.63533991],[4.53341151,0.02545021,95.63607878],[4.53341206,0.02545193,95.63681761],[4.53341261,0.02545365,95.6375564],[4.53341317,0.02545536,95.63829515],[4.53341372,0.02545708,95.63903386],[4.53341427,0.0254588,95.63977253],[4.53341482,0.02546051,95.64051117],[4.53341537,0.02546223,95.64124976],[4.53341592,0.02546395,95.64198831],[4.53341647,0.02546567,95.64272683],[4.53341702,0.02546738,95.6434653],[4.53341757,0.0254691,95.64420374],[4.53341812,0.02547082,95.64494214],[4.53341867,0.02547253,95.6456805],[4.53341922,0.02547425,95.64641882],[4.53341977,0.02547597,95.6471571],[4.53342032,0.02547768,95.64789534],[4.53342087,0.0254794,95.64863355],[4.53342142,0.02548112,95.64937172],[4.53342197,0.02548283,95.65010985],[4.53342252,0.02548455,95.65084794],[4.53342307,0.02548627,95.651586],[4.53342362,0.02548798,95.65232401],[4.53342417,0.0254897,95.65306199],[4.53342472,0.02549142,95.65379993],[4.53342527,0.02549313,95.65453784],[4.53342583,0.02549485,95.65527571],[4.53342638,0.02549657,95.65601354],[4.53342693,0.02549829,95.65675133],[4.53342748,0.0255,95.65748909],[4.53342803,0.02550172,95.65822681],[4.53342858,0.02550344,95.65896449],[4.53342913,0.02550515,95.65970214],[4.53342968,0.02550687,95.66043975],[4.53339901,0.02551684,95.55733742]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1,"sOffset":315.1933307473}},{"geometry":{"coordinates":[[[4.53342968,0.02550687,95.66043975],[4.53342913,0.02550515,95.65970214],[4.53342858,0.02550344,95.65896449],[4.53342803,0.02550172,95.65822681],[4.53342748,0.0255,95.65748909],[4.53342693,0.02549829,95.65675133],[4.53342638,0.02549657,95.65601354],[4.53342583,0.02549485,95.65527571],[4.53342527,0.02549313,95.65453784],[4.53342472,0.02549142,95.65379993],[4.53342417,0.0254897,95.65306199],[4.53342362,0.02548798,95.65232401],[4.53342307,0.02548627,95.651586],[4.53342252,0.02548455,95.65084794],[4.53342197,0.02548283,95.65010985],[4.53342142,0.02548112,95.64937172],[4.53342087,0.0254794,95.64863355],[4.53342032,0.02547768,95.64789534],[4.53341977,0.02547597,95.6471571],[4.53341922,0.02547425,95.64641882],[4.53341867,0.02547253,95.6456805],[4.53341812,0.02547082,95.64494214],[4.53341757,0.0254691,95.64420374],[4.53341702,0.02546738,95.6434653],[4.53341647,0.02546567,95.64272683],[4.53341592,0.02546395,95.64198831],[4.53341537,0.02546223,95.64124976],[4.53341482,0.02546051,95.64051117],[4.53341427,0.0254588,95.63977253],[4.53341372,0.02545708,95.63903386],[4.53341317,0.02545536,95.63829515],[4.53341261,0.02545365,95.6375564],[4.53341206,0.02545193,95.63681761],[4.53341151,0.02545021,95.63607878],[4.53341096,0.0254485,95.63533991],[4.53341041,0.02544678,95.63460099],[4.53340986,0.02544506,95.63386204],[4.53340931,0.02544335,95.63312305],[4.53340876,0.02544163,95.63238402],[4.53340821,0.02543991,95.63164495],[4.53340766,0.0254382,95.63090583],[4.53340711,0.02543648,95.63016668],[4.53340656,0.02543476,95.62942748],[4.53340601,0.02543305,95.62868825],[4.53340546,0.02543133,95.62794897],[4.53340491,0.02542961,95.62720965],[4.53340436,0.0254279,95.62647029],[4.5334038,0.02542618,95.62573089],[4.53340325,0.02542446,95.62499145],[4.5334027,0.02542275,95.62425196],[4.53340215,0.02542103,95.62351244],[4.5334016,0.02541931,95.62277287],[4.53340105,0.0254176,95.62203326],[4.5334005,0.02541588,95.6212936],[4.53339995,0.02541416,95.62055391],[4.5333994,0.02541245,95.61981417],[4.53339885,0.02541073,95.61907439],[4.5333983,0.02540901,95.61833457],[4.53339775,0.0254073,95.61759471],[4.5333972,0.02540558,95.6168548],[4.53339664,0.02540386,95.61611485],[4.53339609,0.02540215,95.61537486],[4.53339554,0.02540043,95.61463482],[4.53339499,0.02539871,95.61389474],[4.53339444,0.025397,95.61315462],[4.53339389,0.02539528,95.61241445],[4.53339334,0.02539356,95.61167424],[4.53339279,0.02539185,95.61093399],[4.53339224,0.02539013,95.61019369],[4.53339169,0.02538841,95.60945335],[4.53339114,0.0253867,95.60871297],[4.53339058,0.02538498,95.60797254],[4.53339003,0.02538326,95.60723206],[4.53338948,0.02538155,95.60649155],[4.53338893,0.02537983,95.60575099],[4.53338838,0.02537811,95.60501038],[4.53338783,0.0253764,95.60426973],[4.53338749,0.02537534,95.60381418],[4.53339118,0.02537414,95.61608841],[4.53339151,0.0253752,95.61652143],[4.53339205,0.02537692,95.61722288],[4.53339259,0.02537864,95.61792158],[4.53339312,0.02538036,95.61861807],[4.53339366,0.02538208,95.61931287],[4.5333942,0.0253838,95.62000653],[4.53339473,0.02538552,95.62069959],[4.53339527,0.02538725,95.62139257],[4.53339581,0.02538897,95.62208603],[4.53339634,0.02539069,95.62278049],[4.53339688,0.02539241,95.6234765],[4.53339742,0.02539413,95.62417459],[4.53339796,0.02539585,95.62487531],[4.5333985,0.02539757,95.62557919],[4.53339904,0.02539929,95.62628677],[4.53339958,0.02540101,95.6269986],[4.53340012,0.02540273,95.62771521],[4.53340067,0.02540445,95.62843715],[4.53340121,0.02540617,95.62916496],[4.53340176,0.02540788,95.62989918],[4.53340231,0.0254096,95.63064016],[4.53340286,0.02541132,95.63138755],[4.53340342,0.02541303,95.6321408],[4.53340398,0.02541475,95.63289936],[4.53340453,0.02541646,95.63366268],[4.53340509,0.02541818,95.63443023],[4.53340565,0.02541989,95.63520144],[4.53340621,0.0254216,95.63597577],[4.53340677,0.02542332,95.63675268],[4.53340733,0.02542503,95.63753161],[4.5334079,0.02542674,95.63831202],[4.53340846,0.02542846,95.63909335],[4.53340902,0.02543017,95.63987505],[4.53340959,0.02543188,95.64065659],[4.53341015,0.0254336,95.6414374],[4.53341071,0.02543531,95.64221725],[4.53341127,0.02543702,95.64299615],[4.53341183,0.02543873,95.64377415],[4.5334124,0.02544045,95.64455127],[4.53341296,0.02544216,95.64532756],[4.53341352,0.02544387,95.64610305],[4.53341408,0.02544559,95.64687778],[4.53341464,0.0254473,95.64765179],[4.5334152,0.02544902,95.64842511],[4.53341576,0.02545073,95.64919779],[4.53341632,0.02545244,95.64996985],[4.53341688,0.02545416,95.65074134],[4.53341744,0.02545587,95.6515123],[4.533418,0.02545758,95.65228276],[4.53341856,0.0254593,95.65305275],[4.53341912,0.02546101,95.65382232],[4.53341968,0.02546273,95.65459151],[4.53342024,0.02546444,95.65536035],[4.53342079,0.02546615,95.65612888],[4.53342135,0.02546787,95.65689713],[4.53342191,0.02546958,95.65766515],[4.53342247,0.0254713,95.65843297],[4.53342303,0.02547301,95.65920063],[4.53342359,0.02547473,95.65996816],[4.53342415,0.02547644,95.66073561],[4.53342471,0.02547815,95.66150301],[4.53342526,0.02547987,95.66227041],[4.53342582,0.02548158,95.66303782],[4.53342638,0.0254833,95.66380531],[4.53342694,0.02548501,95.66457289],[4.5334275,0.02548672,95.66534062],[4.53342806,0.02548844,95.66610853],[4.53342862,0.02549015,95.66687665],[4.53342918,0.02549187,95.66764502],[4.53342974,0.02549358,95.66841369],[4.5334303,0.02549529,95.66918268],[4.53343085,0.02549701,95.66995205],[4.53343141,0.02549872,95.67072181],[4.53343197,0.02550044,95.67149202],[4.53343253,0.02550215,95.67226271],[4.53343309,0.02550386,95.67303392],[4.53343365,0.02550558,95.67380568],[4.53342968,0.02550687,95.66043975]]],"type":"Polygon"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":1,"type":"shoulder","predecessorId":1,"sOffset":315.1933307473}},{"geometry":{"coordinates":[[[4.53343365,0.02550558,95.67380568],[4.53343309,0.02550386,95.67303392],[4.53343253,0.02550215,95.67226271],[4.53343197,0.02550044,95.67149202],[4.53343141,0.02549872,95.67072181],[4.53343085,0.02549701,95.66995205],[4.5334303,0.02549529,95.66918268],[4.53342974,0.02549358,95.66841369],[4.53342918,0.02549187,95.66764502],[4.53342862,0.02549015,95.66687665],[4.53342806,0.02548844,95.66610853],[4.5334275,0.02548672,95.66534062],[4.53342694,0.02548501,95.66457289],[4.53342638,0.0254833,95.66380531],[4.53342582,0.02548158,95.66303782],[4.53342526,0.02547987,95.66227041],[4.53342471,0.02547815,95.66150301],[4.53342415,0.02547644,95.66073561],[4.53342359,0.02547473,95.65996816],[4.53342303,0.02547301,95.65920063],[4.53342247,0.0254713,95.65843297],[4.53342191,0.02546958,95.65766515],[4.53342135,0.02546787,95.65689713],[4.53342079,0.02546615,95.65612888],[4.53342024,0.02546444,95.65536035],[4.53341968,0.02546273,95.65459151],[4.53341912,0.02546101,95.65382232],[4.53341856,0.0254593,95.65305275],[4.533418,0.02545758,95.65228276],[4.53341744,0.02545587,95.6515123],[4.53341688,0.02545416,95.65074134],[4.53341632,0.02545244,95.64996985],[4.53341576,0.02545073,95.64919779],[4.5334152,0.02544902,95.64842511],[4.53341464,0.0254473,95.64765179],[4.53341408,0.02544559,95.64687778],[4.53341352,0.02544387,95.64610305],[4.53341296,0.02544216,95.64532756],[4.5334124,0.02544045,95.64455127],[4.53341183,0.02543873,95.64377415],[4.53341127,0.02543702,95.64299615],[4.53341071,0.02543531,95.64221725],[4.53341015,0.0254336,95.6414374],[4.53340959,0.02543188,95.64065659],[4.53340902,0.02543017,95.63987505],[4.53340846,0.02542846,95.63909335],[4.5334079,0.02542674,95.63831202],[4.53340733,0.02542503,95.63753161],[4.53340677,0.02542332,95.63675268],[4.53340621,0.0254216,95.63597577],[4.53340565,0.02541989,95.63520144],[4.53340509,0.02541818,95.63443023],[4.53340453,0.02541646,95.63366268],[4.53340398,0.02541475,95.63289936],[4.53340342,0.02541303,95.6321408],[4.53340286,0.02541132,95.63138755],[4.53340231,0.0254096,95.63064016],[4.53340176,0.02540788,95.62989918],[4.53340121,0.02540617,95.62916496],[4.53340067,0.02540445,95.62843715],[4.53340012,0.02540273,95.62771521],[4.53339958,0.02540101,95.6269986],[4.53339904,0.02539929,95.62628677],[4.5333985,0.02539757,95.62557919],[4.53339796,0.02539585,95.62487531],[4.53339742,0.02539413,95.62417459],[4.53339688,0.02539241,95.6234765],[4.53339634,0.02539069,95.62278049],[4.53339581,0.02538897,95.62208603],[4.53339527,0.02538725,95.62139257],[4.53339473,0.02538552,95.62069959],[4.5333942,0.0253838,95.62000653],[4.53339366,0.02538208,95.61931287],[4.53339312,0.02538036,95.61861807],[4.53339259,0.02537864,95.61792158],[4.53339205,0.02537692,95.61722288],[4.53339151,0.0253752,95.61652143],[4.53339118,0.02537414,95.61608841],[4.53340388,0.02537,95.61608841],[4.53340422,0.02537106,95.61652143],[4.53340477,0.02537278,95.61722288],[4.53340532,0.02537449,95.61792158],[4.53340588,0.02537621,95.61861807],[4.53340643,0.02537793,95.61931287],[4.53340698,0.02537964,95.62000653],[4.53340753,0.02538136,95.62069959],[4.53340808,0.02538308,95.62139257],[4.53340863,0.02538479,95.62208603],[4.53340918,0.02538651,95.62278049],[4.53340973,0.02538823,95.6234765],[4.53341028,0.02538994,95.62417459],[4.53341083,0.02539166,95.62487531],[4.53341139,0.02539338,95.62557919],[4.53341194,0.02539509,95.62628677],[4.53341249,0.02539681,95.6269986],[4.53341304,0.02539853,95.62771521],[4.53341359,0.02540024,95.62843715],[4.53341414,0.02540196,95.62916496],[4.53341469,0.02540368,95.62989918],[4.53341524,0.02540539,95.63064016],[4.53341579,0.02540711,95.63138755],[4.53341634,0.02540883,95.6321408],[4.5334169,0.02541054,95.63289936],[4.53341745,0.02541226,95.63366268],[4.533418,0.02541398,95.63443023],[4.53341855,0.02541569,95.63520144],[4.5334191,0.02541741,95.63597577],[4.53341965,0.02541913,95.63675268],[4.5334202,0.02542084,95.63753161],[4.53342075,0.02542256,95.63831202],[4.53342131,0.02542428,95.63909335],[4.53342186,0.02542599,95.63987505],[4.53342241,0.02542771,95.64065659],[4.53342296,0.02542943,95.6414374],[4.53342351,0.02543114,95.64221725],[4.53342406,0.02543286,95.64299615],[4.53342461,0.02543458,95.64377415],[4.53342516,0.0254363,95.64455127],[4.53342571,0.02543801,95.64532756],[4.53342626,0.02543973,95.64610305],[4.53342681,0.02544145,95.64687778],[4.53342736,0.02544316,95.64765179],[4.53342791,0.02544488,95.64842511],[4.53342846,0.0254466,95.64919779],[4.53342902,0.02544831,95.64996985],[4.53342957,0.02545003,95.65074134],[4.53343012,0.02545175,95.6515123],[4.53343067,0.02545347,95.65228276],[4.53343122,0.02545518,95.65305275],[4.53343177,0.0254569,95.65382232],[4.53343232,0.02545862,95.65459151],[4.53343287,0.02546033,95.65536035],[4.53343342,0.02546205,95.65612888],[4.53343397,0.02546377,95.65689713],[4.53343452,0.02546548,95.65766515],[4.53343507,0.0254672,95.65843297],[4.53343561,0.02546892,95.65920063],[4.53343616,0.02547064,95.65996816],[4.53343671,0.02547235,95.66073561],[4.53343726,0.02547407,95.66150301],[4.53343781,0.02547579,95.66227041],[4.53343836,0.0254775,95.66303782],[4.53343891,0.02547922,95.66380531],[4.53343946,0.02548094,95.66457289],[4.53344001,0.02548266,95.66534062],[4.53344056,0.02548437,95.66610853],[4.53344111,0.02548609,95.66687665],[4.53344166,0.02548781,95.66764502],[4.53344221,0.02548953,95.66841369],[4.53344276,0.02549124,95.66918268],[4.53344331,0.02549296,95.66995205],[4.53344386,0.02549468,95.67072181],[4.53344441,0.02549639,95.67149202],[4.53344496,0.02549811,95.67226271],[4.53344551,0.02549983,95.67303392],[4.53344606,0.02550155,95.67380568],[4.53343365,0.02550558,95.67380568]]],"type":"Polygon"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":2,"type":"none","predecessorId":2,"sOffset":315.1933307473}},{"geometry":{"coordinates":[[[4.5332523,0.02541935,95.43984364],[4.53325175,0.02541764,95.43912366],[4.5332512,0.02541592,95.43840448],[4.53325065,0.02541421,95.43768687],[4.5332501,0.02541249,95.43701161],[4.53324955,0.02541077,95.43707462],[4.53324927,0.02540989,95.43703258],[4.53328907,0.02539693,95.31203258],[4.53328924,0.02539785,95.43707462],[4.53328957,0.02539964,95.43701161],[4.53329013,0.02540135,95.43768687],[4.53329069,0.02540307,95.43840448],[4.53329125,0.02540478,95.43912366],[4.53329181,0.02540649,95.43984364],[4.5332523,0.02541935,95.43984364]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15},{"outer":0.15,"inner":0.025}],"roadId":"1000100","id":-7,"type":"none","predecessorId":-7,"sOffset":330.5163397283}},{"geometry":{"coordinates":[[[4.53329181,0.02540649,95.43984364],[4.53329125,0.02540478,95.43912366],[4.53329069,0.02540307,95.43840448],[4.53329013,0.02540135,95.43768687],[4.53328957,0.02539964,95.43701161],[4.53328924,0.02539785,95.43707462],[4.53328907,0.02539693,95.31203258],[4.53329037,0.02539651,95.31203258],[4.53329056,0.02539742,95.43707462],[4.53329089,0.02539921,95.43701161],[4.53329144,0.02540093,95.43768687],[4.533292,0.02540264,95.43840448],[4.53329256,0.02540435,95.43912366],[4.53329312,0.02540606,95.43984364],[4.53329181,0.02540649,95.43984364]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-6,"level":true,"heights":[{"outer":0.15,"inner":0.15},{"outer":0.025,"inner":0.025}],"roadId":"1000100","id":-6,"type":"border","predecessorId":-6,"sOffset":330.5163397283}},{"geometry":{"coordinates":[[[4.53329312,0.02540606,95.28984364],[4.53329256,0.02540435,95.28912366],[4.533292,0.02540264,95.28840448],[4.53329144,0.02540093,95.28768687],[4.53329089,0.02539921,95.28701161],[4.53329056,0.02539742,95.28707462],[4.53329037,0.02539651,95.28703258],[4.53329291,0.02539568,95.29547782],[4.53329306,0.02539661,95.29538313],[4.53329335,0.02539841,95.29519814],[4.53329364,0.02540021,95.29501307],[4.53329393,0.02540201,95.29482791],[4.5332944,0.02540375,95.29525047],[4.53329495,0.02540547,95.29592869],[4.53329312,0.02540606,95.28984364]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-5,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-5,"type":"border","predecessorId":-5,"sOffset":330.5163397283}},{"geometry":{"coordinates":[[[4.53329495,0.02540547,95.29592869],[4.5332944,0.02540375,95.29525047],[4.53329393,0.02540201,95.29482791],[4.53329364,0.02540021,95.29501307],[4.53329335,0.02539841,95.29519814],[4.53329306,0.02539661,95.29538313],[4.53329291,0.02539568,95.29547782],[4.5332941,0.0253953,95.29943097],[4.53329438,0.02539618,95.29977719],[4.53329493,0.02539789,95.30045348],[4.53329548,0.02539961,95.30112999],[4.53329603,0.02540133,95.30180674],[4.53329658,0.02540304,95.30248372],[4.53329712,0.02540476,95.30316093],[4.53329495,0.02540547,95.29592869]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-4,"type":"shoulder","predecessorId":-4,"sOffset":330.5163397283}},{"geometry":{"coordinates":[[[4.53329712,0.02540476,95.30316093],[4.53329658,0.02540304,95.30248372],[4.53329603,0.02540133,95.30180674],[4.53329548,0.02539961,95.30112999],[4.53329493,0.02539789,95.30045348],[4.53329438,0.02539618,95.29977719],[4.5332941,0.0253953,95.29943097],[4.53332294,0.02538591,95.39527672],[4.53332322,0.02538679,95.39563542],[4.53332377,0.0253885,95.39633602],[4.53332432,0.02539022,95.39703676],[4.53332487,0.02539194,95.39773765],[4.53332542,0.02539365,95.39843868],[4.53332597,0.02539537,95.39913986],[4.53329712,0.02540476,95.30316093]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3,"sOffset":330.5163397283}},{"geometry":{"coordinates":[[[4.53332597,0.02539537,95.39913986],[4.53332542,0.02539365,95.39843868],[4.53332487,0.02539194,95.39773765],[4.53332432,0.02539022,95.39703676],[4.53332377,0.0253885,95.39633602],[4.53332322,0.02538679,95.39563542],[4.53332294,0.02538591,95.39527672],[4.5333539,0.02537582,95.49819962],[4.53335419,0.0253767,95.4985685],[4.53335474,0.02537842,95.49928891],[4.53335529,0.02538014,95.50000937],[4.53335584,0.02538185,95.50072989],[4.53335639,0.02538357,95.50145045],[4.53335694,0.02538529,95.50217106],[4.53332597,0.02539537,95.39913986]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2,"sOffset":330.5163397283}},{"geometry":{"coordinates":[[[4.53335694,0.02538529,95.50217106],[4.53335639,0.02538357,95.50145045],[4.53335584,0.02538185,95.50072989],[4.53335529,0.02538014,95.50000937],[4.53335474,0.02537842,95.49928891],[4.53335419,0.0253767,95.4985685],[4.5333539,0.02537582,95.49819962],[4.53338445,0.02536588,95.59973071],[4.53338473,0.02536676,95.60011012],[4.53338529,0.02536847,95.60085102],[4.53338584,0.02537019,95.60159187],[4.53338639,0.02537191,95.60233269],[4.53338694,0.02537362,95.60307345],[4.53338749,0.02537534,95.60381418],[4.53335694,0.02538529,95.50217106]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1,"sOffset":330.5163397283}},{"geometry":{"coordinates":[[[4.53338749,0.02537534,95.60381418],[4.53338694,0.02537362,95.60307345],[4.53338639,0.02537191,95.60233269],[4.53338584,0.02537019,95.60159187],[4.53338529,0.02536847,95.60085102],[4.53338473,0.02536676,95.60011012],[4.53338445,0.02536588,95.59973071],[4.5333882,0.02536466,95.61220037],[4.53338848,0.02536554,95.61256166],[4.53338902,0.02536726,95.61326715],[4.53338956,0.02536898,95.61397257],[4.5333901,0.0253707,95.61467792],[4.53339064,0.02537242,95.6153832],[4.53339118,0.02537414,95.61608841],[4.53338749,0.02537534,95.60381418]]],"type":"Polygon"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":1,"type":"shoulder","predecessorId":1,"sOffset":330.5163397283}},{"geometry":{"coordinates":[[[4.53339118,0.02537414,95.61608841],[4.53339064,0.02537242,95.6153832],[4.5333901,0.0253707,95.61467792],[4.53338956,0.02536898,95.61397257],[4.53338902,0.02536726,95.61326715],[4.53338848,0.02536554,95.61256166],[4.5333882,0.02536466,95.61220037],[4.53340084,0.02536054,95.61220037],[4.53340113,0.02536142,95.61256166],[4.53340168,0.02536314,95.61326715],[4.53340223,0.02536485,95.61397257],[4.53340278,0.02536657,95.61467792],[4.53340333,0.02536829,95.6153832],[4.53340388,0.02537,95.61608841],[4.53339118,0.02537414,95.61608841]]],"type":"Polygon"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":2,"type":"none","predecessorId":2,"sOffset":330.5163397283}},{"geometry":{"coordinates":[[[4.53327501,0.02540151,95.43703258],[4.53327445,0.0253998,95.43633351],[4.53327389,0.02539809,95.43563527],[4.53327333,0.02539637,95.43493727],[4.53327277,0.02539466,95.43423951],[4.53327222,0.02539295,95.43354198],[4.53327166,0.02539123,95.43284468],[4.5332711,0.02538952,95.43214761],[4.53327054,0.02538781,95.43145077],[4.53326998,0.02538609,95.43075415],[4.53326943,0.02538438,95.43005775],[4.53326892,0.02538282,95.42942553],[4.53328298,0.02537824,95.42942553],[4.53328349,0.0253798,95.30505775],[4.53328405,0.02538151,95.30575415],[4.53328461,0.02538323,95.30645077],[4.53328517,0.02538494,95.30714761],[4.53328572,0.02538665,95.30784468],[4.53328628,0.02538837,95.30854198],[4.53328684,0.02539008,95.30923951],[4.5332874,0.02539179,95.30993727],[4.53328796,0.02539351,95.31063527],[4.53328851,0.02539522,95.31133351],[4.53328907,0.02539693,95.31203258],[4.53327501,0.02540151,95.43703258]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-7,"level":true,"heights":[{"outer":0.15,"inner":0.025},{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-7,"type":"border","predecessorId":0,"sOffset":331.6187522176}},{"geometry":{"coordinates":[[[4.53328907,0.02539693,95.31203258],[4.53328851,0.02539522,95.31133351],[4.53328796,0.02539351,95.31063527],[4.5332874,0.02539179,95.30993727],[4.53328684,0.02539008,95.30923951],[4.53328628,0.02538837,95.30854198],[4.53328572,0.02538665,95.30784468],[4.53328517,0.02538494,95.30714761],[4.53328461,0.02538323,95.30645077],[4.53328405,0.02538151,95.30575415],[4.53328349,0.0253798,95.30505775],[4.53328298,0.02537824,95.42942553],[4.53328431,0.02537781,95.42942553],[4.53328481,0.02537937,95.30505775],[4.53328537,0.02538108,95.30575415],[4.53328592,0.0253828,95.30645077],[4.53328648,0.02538451,95.30714761],[4.53328704,0.02538623,95.30784468],[4.53328759,0.02538794,95.30854198],[4.53328815,0.02538965,95.30923951],[4.5332887,0.02539137,95.30993727],[4.53328926,0.02539308,95.31063527],[4.53328982,0.0253948,95.31133351],[4.53329037,0.02539651,95.31203258],[4.53328907,0.02539693,95.31203258]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-6,"level":true,"heights":[{"outer":0.025,"inner":0.025},{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-6,"type":"border","predecessorId":-6,"sOffset":331.6187522176}},{"geometry":{"coordinates":[[[4.53329037,0.02539651,95.28703258],[4.53328982,0.0253948,95.28633351],[4.53328926,0.02539308,95.28563527],[4.5332887,0.02539137,95.28493727],[4.53328815,0.02538965,95.28423951],[4.53328759,0.02538794,95.28354198],[4.53328704,0.02538623,95.28284468],[4.53328648,0.02538451,95.28214761],[4.53328592,0.0253828,95.28145077],[4.53328537,0.02538108,95.28075415],[4.53328481,0.02537937,95.28005775],[4.53328431,0.02537781,95.27942553],[4.53328705,0.02537692,95.28853466],[4.53328755,0.02537848,95.28915232],[4.5332881,0.02538019,95.28983268],[4.53328865,0.02538191,95.29051323],[4.5332892,0.02538362,95.291194],[4.53328976,0.02538534,95.29187498],[4.53329031,0.02538706,95.29255617],[4.53329086,0.02538877,95.29323758],[4.53329141,0.02539049,95.2939192],[4.53329196,0.0253922,95.29460105],[4.53329251,0.02539392,95.29528312],[4.53329291,0.02539568,95.29547782],[4.53329037,0.02539651,95.28703258]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-5,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-5,"type":"border","predecessorId":-5,"sOffset":331.6187522176}},{"geometry":{"coordinates":[[[4.53329291,0.02539568,95.29547782],[4.53329251,0.02539392,95.29528312],[4.53329196,0.0253922,95.29460105],[4.53329141,0.02539049,95.2939192],[4.53329086,0.02538877,95.29323758],[4.53329031,0.02538706,95.29255617],[4.53328976,0.02538534,95.29187498],[4.5332892,0.02538362,95.291194],[4.53328865,0.02538191,95.29051323],[4.5332881,0.02538019,95.28983268],[4.53328755,0.02537848,95.28915232],[4.53328705,0.02537692,95.28853466],[4.53328811,0.02537657,95.29204018],[4.53328861,0.02537813,95.29265454],[4.53328916,0.02537985,95.29333125],[4.53328971,0.02538157,95.29400815],[4.53329026,0.02538328,95.29468527],[4.53329081,0.025385,95.29536258],[4.53329136,0.02538671,95.29604011],[4.5332919,0.02538843,95.29671785],[4.53329245,0.02539015,95.2973958],[4.533293,0.02539186,95.29807397],[4.53329355,0.02539358,95.29875236],[4.5332941,0.0253953,95.29943097],[4.53329291,0.02539568,95.29547782]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-4,"type":"shoulder","predecessorId":-4,"sOffset":331.6187522176}},{"geometry":{"coordinates":[[[4.5332941,0.0253953,95.29943097],[4.53329355,0.02539358,95.29875236],[4.533293,0.02539186,95.29807397],[4.53329245,0.02539015,95.2973958],[4.5332919,0.02538843,95.29671785],[4.53329136,0.02538671,95.29604011],[4.53329081,0.025385,95.29536258],[4.53329026,0.02538328,95.29468527],[4.53328971,0.02538157,95.29400815],[4.53328916,0.02537985,95.29333125],[4.53328861,0.02537813,95.29265454],[4.53328811,0.02537657,95.29204018],[4.53331694,0.02536718,95.3876578],[4.53331744,0.02536874,95.38829152],[4.53331799,0.02537046,95.38898946],[4.53331854,0.02537218,95.38968753],[4.53331909,0.02537389,95.39038573],[4.53331964,0.02537561,95.39108405],[4.53332019,0.02537733,95.39178249],[4.53332074,0.02537904,95.39248107],[4.53332129,0.02538076,95.39317978],[4.53332184,0.02538247,95.39387862],[4.53332239,0.02538419,95.3945776],[4.53332294,0.02538591,95.39527672],[4.5332941,0.0253953,95.29943097]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3,"sOffset":331.6187522176}},{"geometry":{"coordinates":[[[4.53332294,0.02538591,95.39527672],[4.53332239,0.02538419,95.3945776],[4.53332184,0.02538247,95.39387862],[4.53332129,0.02538076,95.39317978],[4.53332074,0.02537904,95.39248107],[4.53332019,0.02537733,95.39178249],[4.53331964,0.02537561,95.39108405],[4.53331909,0.02537389,95.39038573],[4.53331854,0.02537218,95.38968753],[4.53331799,0.02537046,95.38898946],[4.53331744,0.02536874,95.38829152],[4.53331694,0.02536718,95.3876578],[4.53334789,0.0253571,95.49032635],[4.53334839,0.02535866,95.49098163],[4.53334894,0.02536038,95.49170324],[4.53334949,0.02536209,95.49242489],[4.53335005,0.02536381,95.49314659],[4.5333506,0.02536553,95.49386832],[4.53335115,0.02536724,95.49459009],[4.5333517,0.02536896,95.49531191],[4.53335225,0.02537068,95.49603377],[4.5333528,0.02537239,95.49675567],[4.53335335,0.02537411,95.49747762],[4.5333539,0.02537582,95.49819962],[4.53332294,0.02538591,95.39527672]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2,"sOffset":331.6187522176}},{"geometry":{"coordinates":[[[4.5333539,0.02537582,95.49819962],[4.53335335,0.02537411,95.49747762],[4.5333528,0.02537239,95.49675567],[4.53335225,0.02537068,95.49603377],[4.5333517,0.02536896,95.49531191],[4.53335115,0.02536724,95.49459009],[4.5333506,0.02536553,95.49386832],[4.53335005,0.02536381,95.49314659],[4.53334949,0.02536209,95.49242489],[4.53334894,0.02536038,95.49170324],[4.53334839,0.02535866,95.49098163],[4.53334789,0.0253571,95.49032635],[4.53337844,0.02534715,95.59164566],[4.53337894,0.02534871,95.59231897],[4.53337949,0.02535043,95.59306035],[4.53338004,0.02535215,95.59380168],[4.53338059,0.02535386,95.59454297],[4.53338114,0.02535558,95.59528421],[4.5333817,0.0253573,95.59602541],[4.53338225,0.02535901,95.59676656],[4.5333828,0.02536073,95.59750767],[4.53338335,0.02536244,95.59824873],[4.5333839,0.02536416,95.59898974],[4.53338445,0.02536588,95.59973071],[4.5333539,0.02537582,95.49819962]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1,"sOffset":331.6187522176}},{"geometry":{"coordinates":[[[4.53338445,0.02536588,95.59973071],[4.5333839,0.02536416,95.59898974],[4.53338335,0.02536244,95.59824873],[4.5333828,0.02536073,95.59750767],[4.53338225,0.02535901,95.59676656],[4.5333817,0.0253573,95.59602541],[4.53338114,0.02535558,95.59528421],[4.53338059,0.02535386,95.59454297],[4.53338004,0.02535215,95.59380168],[4.53337949,0.02535043,95.59306035],[4.53337894,0.02534871,95.59231897],[4.53337844,0.02534715,95.59164566],[4.53338231,0.02534589,95.60449918],[4.5333828,0.02534745,95.60514064],[4.53338334,0.02534917,95.60584694],[4.53338388,0.02535089,95.60655316],[4.53338442,0.02535261,95.60725931],[4.53338496,0.02535433,95.60796539],[4.5333855,0.02535606,95.6086714],[4.53338604,0.02535778,95.60937733],[4.53338658,0.0253595,95.6100832],[4.53338712,0.02536122,95.61078899],[4.53338766,0.02536294,95.61149472],[4.5333882,0.02536466,95.61220037],[4.53338445,0.02536588,95.59973071]]],"type":"Polygon"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":1,"type":"shoulder","predecessorId":1,"sOffset":331.6187522176}},{"geometry":{"coordinates":[[[4.5333882,0.02536466,95.61220037],[4.53338766,0.02536294,95.61149472],[4.53338712,0.02536122,95.61078899],[4.53338658,0.0253595,95.6100832],[4.53338604,0.02535778,95.60937733],[4.5333855,0.02535606,95.6086714],[4.53338496,0.02535433,95.60796539],[4.53338442,0.02535261,95.60725931],[4.53338388,0.02535089,95.60655316],[4.53338334,0.02534917,95.60584694],[4.5333828,0.02534745,95.60514064],[4.53338231,0.02534589,95.60449918],[4.53339483,0.02534181,95.60449918],[4.53339533,0.02534337,95.60514064],[4.53339588,0.02534509,95.60584694],[4.53339643,0.02534681,95.60655316],[4.53339699,0.02534852,95.60725931],[4.53339754,0.02535024,95.60796539],[4.53339809,0.02535196,95.6086714],[4.53339864,0.02535367,95.60937733],[4.53339919,0.02535539,95.6100832],[4.53339974,0.02535711,95.61078899],[4.53340029,0.02535882,95.61149472],[4.53340084,0.02536054,95.61220037],[4.5333882,0.02536466,95.61220037]]],"type":"Polygon"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":2,"type":"none","predecessorId":2,"sOffset":331.6187522176}},{"geometry":{"coordinates":[[[4.53326892,0.02538282,95.42942553],[4.53326837,0.02538111,95.42873503],[4.53326781,0.02537939,95.42804474],[4.53326726,0.02537768,95.42735465],[4.5332667,0.02537596,95.42666478],[4.53326615,0.02537425,95.4259751],[4.5332656,0.02537253,95.42528563],[4.53326504,0.02537082,95.42459636],[4.53326449,0.0253691,95.42390728],[4.53326394,0.02536739,95.42321839],[4.53326338,0.02536567,95.4225297],[4.53326283,0.02536396,95.42184119],[4.53326227,0.02536225,95.42115286],[4.53326172,0.02536053,95.42046472],[4.53326117,0.02535882,95.41977676],[4.53326061,0.0253571,95.41908897],[4.53326006,0.02535539,95.41840136],[4.53326004,0.02535534,95.41838169],[4.53327411,0.02535075,95.41838169],[4.53327412,0.0253508,95.41840136],[4.53327468,0.02535252,95.41908897],[4.53327523,0.02535423,95.41977676],[4.53327579,0.02535595,95.42046472],[4.53327634,0.02535766,95.42115286],[4.53327689,0.02535938,95.42184119],[4.53327745,0.02536109,95.4225297],[4.533278,0.02536281,95.42321839],[4.53327855,0.02536452,95.42390728],[4.53327911,0.02536624,95.42459636],[4.53327966,0.02536795,95.42528563],[4.53328022,0.02536967,95.4259751],[4.53328077,0.02537138,95.42666478],[4.53328132,0.0253731,95.42735465],[4.53328188,0.02537481,95.42804474],[4.53328243,0.02537653,95.42873503],[4.53328298,0.02537824,95.42942553],[4.53326892,0.02538282,95.42942553]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-7,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-7,"type":"border","predecessorId":-7,"sOffset":333.8003765968}},{"geometry":{"coordinates":[[[4.53328298,0.02537824,95.42942553],[4.53328243,0.02537653,95.42873503],[4.53328188,0.02537481,95.42804474],[4.53328132,0.0253731,95.42735465],[4.53328077,0.02537138,95.42666478],[4.53328022,0.02536967,95.4259751],[4.53327966,0.02536795,95.42528563],[4.53327911,0.02536624,95.42459636],[4.53327855,0.02536452,95.42390728],[4.533278,0.02536281,95.42321839],[4.53327745,0.02536109,95.4225297],[4.53327689,0.02535938,95.42184119],[4.53327634,0.02535766,95.42115286],[4.53327579,0.02535595,95.42046472],[4.53327523,0.02535423,95.41977676],[4.53327468,0.02535252,95.41908897],[4.53327412,0.0253508,95.41840136],[4.53327411,0.02535075,95.41838169],[4.53327542,0.02535033,95.41838169],[4.53327543,0.02535038,95.41840136],[4.53327599,0.02535209,95.41908897],[4.53327654,0.02535381,95.41977676],[4.5332771,0.02535552,95.42046472],[4.53327765,0.02535724,95.42115286],[4.53327821,0.02535895,95.42184119],[4.53327876,0.02536066,95.4225297],[4.53327932,0.02536238,95.42321839],[4.53327987,0.02536409,95.42390728],[4.53328043,0.02536581,95.42459636],[4.53328098,0.02536752,95.42528563],[4.53328153,0.02536924,95.4259751],[4.53328209,0.02537095,95.42666478],[4.53328264,0.02537267,95.42735465],[4.5332832,0.02537438,95.42804474],[4.53328375,0.0253761,95.42873503],[4.53328431,0.02537781,95.42942553],[4.53328298,0.02537824,95.42942553]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-6,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-6,"type":"border","predecessorId":-6,"sOffset":333.8003765968}},{"geometry":{"coordinates":[[[4.53328431,0.02537781,95.27942553],[4.53328375,0.0253761,95.27873503],[4.5332832,0.02537438,95.27804474],[4.53328264,0.02537267,95.27735465],[4.53328209,0.02537095,95.27666478],[4.53328153,0.02536924,95.2759751],[4.53328098,0.02536752,95.27528563],[4.53328043,0.02536581,95.27459636],[4.53327987,0.02536409,95.27390728],[4.53327932,0.02536238,95.27321839],[4.53327876,0.02536066,95.2725297],[4.53327821,0.02535895,95.27184119],[4.53327765,0.02535724,95.27115286],[4.5332771,0.02535552,95.27046472],[4.53327654,0.02535381,95.26977676],[4.53327599,0.02535209,95.26908897],[4.53327543,0.02535038,95.26840136],[4.53327542,0.02535033,95.26838169],[4.53327822,0.02534941,95.27765904],[4.53327824,0.02534946,95.27767841],[4.53327879,0.02535118,95.27835562],[4.53327934,0.02535289,95.27903299],[4.53327989,0.02535461,95.27971052],[4.53328044,0.02535633,95.28038822],[4.53328099,0.02535804,95.28106609],[4.53328154,0.02535976,95.28174414],[4.5332821,0.02536147,95.28242236],[4.53328265,0.02536319,95.28310075],[4.5332832,0.02536491,95.28377933],[4.53328375,0.02536662,95.2844581],[4.5332843,0.02536834,95.28513704],[4.53328485,0.02537005,95.28581618],[4.5332854,0.02537177,95.28649551],[4.53328595,0.02537349,95.28717503],[4.5332865,0.0253752,95.28785474],[4.53328705,0.02537692,95.28853466],[4.53328431,0.02537781,95.27942553]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-5,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-5,"type":"border","predecessorId":-5,"sOffset":333.8003765968}},{"geometry":{"coordinates":[[[4.53328705,0.02537692,95.28853466],[4.5332865,0.0253752,95.28785474],[4.53328595,0.02537349,95.28717503],[4.5332854,0.02537177,95.28649551],[4.53328485,0.02537005,95.28581618],[4.5332843,0.02536834,95.28513704],[4.53328375,0.02536662,95.2844581],[4.5332832,0.02536491,95.28377933],[4.53328265,0.02536319,95.28310075],[4.5332821,0.02536147,95.28242236],[4.53328154,0.02535976,95.28174414],[4.53328099,0.02535804,95.28106609],[4.53328044,0.02535633,95.28038822],[4.53327989,0.02535461,95.27971052],[4.53327934,0.02535289,95.27903299],[4.53327879,0.02535118,95.27835562],[4.53327824,0.02534946,95.27767841],[4.53327822,0.02534941,95.27765904],[4.53327929,0.02534907,95.28118232],[4.5332793,0.02534912,95.28120167],[4.53327986,0.02535083,95.28187779],[4.53328041,0.02535255,95.28255407],[4.53328096,0.02535426,95.28323052],[4.53328151,0.02535598,95.28390712],[4.53328206,0.0253577,95.2845839],[4.53328261,0.02535941,95.28526084],[4.53328316,0.02536113,95.28593796],[4.53328371,0.02536284,95.28661525],[4.53328426,0.02536456,95.28729272],[4.53328481,0.02536628,95.28797037],[4.53328536,0.02536799,95.2886482],[4.53328591,0.02536971,95.28932622],[4.53328646,0.02537142,95.29000442],[4.53328701,0.02537314,95.29068282],[4.53328756,0.02537486,95.2913614],[4.53328811,0.02537657,95.29204018],[4.53328705,0.02537692,95.28853466]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-4,"type":"shoulder","predecessorId":-4,"sOffset":333.8003765968}},{"geometry":{"coordinates":[[[4.53328811,0.02537657,95.29204018],[4.53328756,0.02537486,95.2913614],[4.53328701,0.02537314,95.29068282],[4.53328646,0.02537142,95.29000442],[4.53328591,0.02536971,95.28932622],[4.53328536,0.02536799,95.2886482],[4.53328481,0.02536628,95.28797037],[4.53328426,0.02536456,95.28729272],[4.53328371,0.02536284,95.28661525],[4.53328316,0.02536113,95.28593796],[4.53328261,0.02535941,95.28526084],[4.53328206,0.0253577,95.2845839],[4.53328151,0.02535598,95.28390712],[4.53328096,0.02535426,95.28323052],[4.53328041,0.02535255,95.28255407],[4.53327986,0.02535083,95.28187779],[4.5332793,0.02534912,95.28120167],[4.53327929,0.02534907,95.28118232],[4.53330809,0.02533968,95.37639242],[4.5333081,0.02533973,95.37641251],[4.53330865,0.02534145,95.37711456],[4.53330921,0.02534316,95.37781671],[4.53330976,0.02534488,95.37851896],[4.53331031,0.02534659,95.3792213],[4.53331086,0.02534831,95.37992375],[4.53331142,0.02535003,95.3806263],[4.53331197,0.02535174,95.38132895],[4.53331252,0.02535346,95.38203171],[4.53331307,0.02535517,95.38273457],[4.53331363,0.02535689,95.38343755],[4.53331418,0.02535861,95.38414064],[4.53331473,0.02536032,95.38484384],[4.53331528,0.02536204,95.38554715],[4.53331583,0.02536375,95.38625058],[4.53331639,0.02536547,95.38695413],[4.53331694,0.02536718,95.3876578],[4.53328811,0.02537657,95.29204018]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3,"sOffset":333.8003765968}},{"geometry":{"coordinates":[[[4.53331694,0.02536718,95.3876578],[4.53331639,0.02536547,95.38695413],[4.53331583,0.02536375,95.38625058],[4.53331528,0.02536204,95.38554715],[4.53331473,0.02536032,95.38484384],[4.53331418,0.02535861,95.38414064],[4.53331363,0.02535689,95.38343755],[4.53331307,0.02535517,95.38273457],[4.53331252,0.02535346,95.38203171],[4.53331197,0.02535174,95.38132895],[4.53331142,0.02535003,95.3806263],[4.53331086,0.02534831,95.37992375],[4.53331031,0.02534659,95.3792213],[4.53330976,0.02534488,95.37851896],[4.53330921,0.02534316,95.37781671],[4.53330865,0.02534145,95.37711456],[4.5333081,0.02533973,95.37641251],[4.53330809,0.02533968,95.37639242],[4.53333904,0.0253296,95.47873659],[4.53333906,0.02532965,95.47875727],[4.53333961,0.02533136,95.47948013],[4.53334016,0.02533308,95.48020301],[4.53334071,0.02533479,95.48092591],[4.53334127,0.02533651,95.48164884],[4.53334182,0.02533823,95.4823718],[4.53334237,0.02533994,95.48309478],[4.53334292,0.02534166,95.4838178],[4.53334348,0.02534337,95.48454084],[4.53334403,0.02534509,95.48526391],[4.53334458,0.02534681,95.48598702],[4.53334513,0.02534852,95.48671015],[4.53334568,0.02535024,95.48743332],[4.53334624,0.02535195,95.48815652],[4.53334679,0.02535367,95.48887976],[4.53334734,0.02535539,95.48960304],[4.53334789,0.0253571,95.49032635],[4.53331694,0.02536718,95.3876578]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2,"sOffset":333.8003765968}},{"geometry":{"coordinates":[[[4.53334789,0.0253571,95.49032635],[4.53334734,0.02535539,95.48960304],[4.53334679,0.02535367,95.48887976],[4.53334624,0.02535195,95.48815652],[4.53334568,0.02535024,95.48743332],[4.53334513,0.02534852,95.48671015],[4.53334458,0.02534681,95.48598702],[4.53334403,0.02534509,95.48526391],[4.53334348,0.02534337,95.48454084],[4.53334292,0.02534166,95.4838178],[4.53334237,0.02533994,95.48309478],[4.53334182,0.02533823,95.4823718],[4.53334127,0.02533651,95.48164884],[4.53334071,0.02533479,95.48092591],[4.53334016,0.02533308,95.48020301],[4.53333961,0.02533136,95.47948013],[4.53333906,0.02532965,95.47875727],[4.53333904,0.0253296,95.47873659],[4.5333696,0.02531964,95.57975533],[4.53336961,0.02531969,95.57977657],[4.53337016,0.02532141,95.58051874],[4.53337072,0.02532312,95.58126087],[4.53337127,0.02532484,95.58200294],[4.53337182,0.02532656,95.58274497],[4.53337237,0.02532827,95.58348695],[4.53337292,0.02532999,95.58422889],[4.53337347,0.02533171,95.58497077],[4.53337403,0.02533342,95.58571262],[4.53337458,0.02533514,95.58645441],[4.53337513,0.02533685,95.58719616],[4.53337568,0.02533857,95.58793786],[4.53337623,0.02534029,95.58867951],[4.53337678,0.025342,95.58942112],[4.53337734,0.02534372,95.59016268],[4.53337789,0.02534544,95.59090419],[4.53337844,0.02534715,95.59164566],[4.53334789,0.0253571,95.49032635]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1,"sOffset":333.8003765968}},{"geometry":{"coordinates":[[[4.53337844,0.02534715,95.59164566],[4.53337789,0.02534544,95.59090419],[4.53337734,0.02534372,95.59016268],[4.53337678,0.025342,95.58942112],[4.53337623,0.02534029,95.58867951],[4.53337568,0.02533857,95.58793786],[4.53337513,0.02533685,95.58719616],[4.53337458,0.02533514,95.58645441],[4.53337403,0.02533342,95.58571262],[4.53337347,0.02533171,95.58497077],[4.53337292,0.02532999,95.58422889],[4.53337237,0.02532827,95.58348695],[4.53337182,0.02532656,95.58274497],[4.53337127,0.02532484,95.58200294],[4.53337072,0.02532312,95.58126087],[4.53337016,0.02532141,95.58051874],[4.53336961,0.02531969,95.57977657],[4.5333696,0.02531964,95.57975533],[4.53337361,0.02531833,95.59304066],[4.53337363,0.02531838,95.59306113],[4.53337417,0.0253201,95.59377652],[4.53337472,0.02532182,95.59449185],[4.53337526,0.02532354,95.59520711],[4.5333758,0.02532526,95.59592229],[4.53337634,0.02532698,95.59663741],[4.53337689,0.0253287,95.59735246],[4.53337743,0.02533042,95.59806744],[4.53337797,0.02533214,95.59878236],[4.53337852,0.02533386,95.5994972],[4.53337906,0.02533558,95.60021197],[4.5333796,0.02533729,95.60092668],[4.53338014,0.02533901,95.60164132],[4.53338069,0.02534073,95.60235589],[4.53338123,0.02534245,95.60307039],[4.53338177,0.02534417,95.60378482],[4.53338231,0.02534589,95.60449918],[4.53337844,0.02534715,95.59164566]]],"type":"Polygon"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":1,"type":"shoulder","predecessorId":1,"sOffset":333.8003765968}},{"geometry":{"coordinates":[[[4.53338231,0.02534589,95.60449918],[4.53338177,0.02534417,95.60378482],[4.53338123,0.02534245,95.60307039],[4.53338069,0.02534073,95.60235589],[4.53338014,0.02533901,95.60164132],[4.5333796,0.02533729,95.60092668],[4.53337906,0.02533558,95.60021197],[4.53337852,0.02533386,95.5994972],[4.53337797,0.02533214,95.59878236],[4.53337743,0.02533042,95.59806744],[4.53337689,0.0253287,95.59735246],[4.53337634,0.02532698,95.59663741],[4.5333758,0.02532526,95.59592229],[4.53337526,0.02532354,95.59520711],[4.53337472,0.02532182,95.59449185],[4.53337417,0.0253201,95.59377652],[4.53337363,0.02531838,95.59306113],[4.53337361,0.02531833,95.59304066],[4.53338598,0.0253143,95.63392391],[4.533386,0.02531435,95.63394544],[4.53338655,0.02531607,95.63469797],[4.5333871,0.02531779,95.63545041],[4.53338765,0.0253195,95.63620277],[4.5333882,0.02532122,95.63695503],[4.53338875,0.02532294,95.63770722],[4.53338931,0.02532465,95.63845931],[4.53338986,0.02532637,95.63921132],[4.53339041,0.02532809,95.63996324],[4.53339096,0.0253298,95.64071507],[4.53339151,0.02533152,95.64146681],[4.53339206,0.02533324,95.64221847],[4.53339261,0.02533495,95.64297003],[4.53339316,0.02533667,95.64372151],[4.53339372,0.02533839,95.64447289],[4.53339427,0.0253401,95.64522419],[4.53339482,0.02534182,95.64597539],[4.53338231,0.02534589,95.60449918]]],"type":"Polygon"},"type":"feature","properties":{"successorId":2,"level":false,"roadId":"1000100","id":2,"type":"border","predecessorId":2,"sOffset":333.8003765968}},{"geometry":{"coordinates":[[[4.53326004,0.02535534,95.41838169],[4.53325949,0.02535362,95.41770683],[4.53325894,0.02535191,95.41703214],[4.53325839,0.02535019,95.41635761],[4.53325784,0.02534847,95.41568324],[4.53325729,0.02534676,95.41500902],[4.53325695,0.02534571,95.41459905],[4.53327102,0.02534113,95.41459905],[4.53327136,0.02534217,95.41500902],[4.53327191,0.02534389,95.41568324],[4.53327246,0.02534561,95.41635761],[4.53327301,0.02534732,95.41703214],[4.53327356,0.02534904,95.41770683],[4.53327411,0.02535075,95.41838169],[4.53326004,0.02535534,95.41838169]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-7,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-7,"type":"border","predecessorId":-7,"sOffset":337.0060991374}},{"geometry":{"coordinates":[[[4.53327411,0.02535075,95.41838169],[4.53327356,0.02534904,95.41770683],[4.53327301,0.02534732,95.41703214],[4.53327246,0.02534561,95.41635761],[4.53327191,0.02534389,95.41568324],[4.53327136,0.02534217,95.41500902],[4.53327102,0.02534113,95.41459905],[4.53327233,0.0253407,95.41459905],[4.53327266,0.02534175,95.41500902],[4.53327321,0.02534346,95.41568324],[4.53327376,0.02534518,95.41635761],[4.53327432,0.0253469,95.41703214],[4.53327487,0.02534861,95.41770683],[4.53327542,0.02535033,95.41838169],[4.53327411,0.02535075,95.41838169]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-6,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-6,"type":"border","predecessorId":-6,"sOffset":337.0060991374}},{"geometry":{"coordinates":[[[4.53327542,0.02535033,95.26838169],[4.53327487,0.02534861,95.26770683],[4.53327432,0.0253469,95.26703214],[4.53327376,0.02534518,95.26635761],[4.53327321,0.02534346,95.26568324],[4.53327266,0.02534175,95.26500902],[4.53327233,0.0253407,95.26459905],[4.53327513,0.02533979,95.27386566],[4.53327547,0.02534083,95.27427681],[4.53327602,0.02534255,95.27495295],[4.53327657,0.02534427,95.27562924],[4.53327712,0.02534598,95.27630569],[4.53327767,0.0253477,95.27698228],[4.53327822,0.02534941,95.27765904],[4.53327542,0.02535033,95.26838169]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-5,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-5,"type":"border","predecessorId":-5,"sOffset":337.0060991374}},{"geometry":{"coordinates":[[[4.53327822,0.02534941,95.27765904],[4.53327767,0.0253477,95.27698228],[4.53327712,0.02534598,95.27630569],[4.53327657,0.02534427,95.27562924],[4.53327602,0.02534255,95.27495295],[4.53327547,0.02534083,95.27427681],[4.53327513,0.02533979,95.27386566],[4.5332762,0.02533944,95.27739093],[4.53327654,0.02534049,95.27780187],[4.53327709,0.0253422,95.27847766],[4.53327764,0.02534392,95.2791536],[4.53327819,0.02534563,95.27982969],[4.53327874,0.02534735,95.28050593],[4.53327929,0.02534907,95.28118232],[4.53327822,0.02534941,95.27765904]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-4,"type":"shoulder","predecessorId":-4,"sOffset":337.0060991374}},{"geometry":{"coordinates":[[[4.53327929,0.02534907,95.28118232],[4.53327874,0.02534735,95.28050593],[4.53327819,0.02534563,95.27982969],[4.53327764,0.02534392,95.2791536],[4.53327709,0.0253422,95.27847766],[4.53327654,0.02534049,95.27780187],[4.5332762,0.02533944,95.27739093],[4.53330498,0.02533006,95.3724318],[4.53330532,0.02533111,95.37286118],[4.53330587,0.02533282,95.37356725],[4.53330643,0.02533454,95.37427341],[4.53330698,0.02533625,95.37497965],[4.53330753,0.02533797,95.37568599],[4.53330809,0.02533968,95.37639242],[4.53327929,0.02534907,95.28118232]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3,"sOffset":337.0060991374}},{"geometry":{"coordinates":[[[4.53330809,0.02533968,95.37639242],[4.53330753,0.02533797,95.37568599],[4.53330698,0.02533625,95.37497965],[4.53330643,0.02533454,95.37427341],[4.53330587,0.02533282,95.37356725],[4.53330532,0.02533111,95.37286118],[4.53330498,0.02533006,95.3724318],[4.53333594,0.02531997,95.47467956],[4.53333628,0.02532102,95.47511949],[4.53333683,0.02532273,95.47584287],[4.53333738,0.02532445,95.47656627],[4.53333794,0.02532617,95.47728969],[4.53333849,0.02532788,95.47801313],[4.53333904,0.0253296,95.47873659],[4.53330809,0.02533968,95.37639242]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2,"sOffset":337.0060991374}},{"geometry":{"coordinates":[[[4.53333904,0.0253296,95.47873659],[4.53333849,0.02532788,95.47801313],[4.53333794,0.02532617,95.47728969],[4.53333738,0.02532445,95.47656627],[4.53333683,0.02532273,95.47584287],[4.53333628,0.02532102,95.47511949],[4.53333594,0.02531997,95.47467956],[4.5333665,0.02531002,95.57559221],[4.53336684,0.02531106,95.57604376],[4.53336739,0.02531278,95.57678617],[4.53336794,0.02531449,95.57752853],[4.53336849,0.02531621,95.57827085],[4.53336904,0.02531792,95.57901311],[4.5333696,0.02531964,95.57975533],[4.53333904,0.0253296,95.47873659]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1,"sOffset":337.0060991374}},{"geometry":{"coordinates":[[[4.5333696,0.02531964,95.57975533],[4.53336904,0.02531792,95.57901311],[4.53336849,0.02531621,95.57827085],[4.53336794,0.02531449,95.57752853],[4.53336739,0.02531278,95.57678617],[4.53336684,0.02531106,95.57604376],[4.5333665,0.02531002,95.72559221],[4.53337049,0.02530872,95.67542372],[4.53337083,0.02530976,95.52586868],[4.53337139,0.02531147,95.52660032],[4.53337194,0.02531319,95.52733198],[4.5333725,0.0253149,95.52806366],[4.53337306,0.02531662,95.52879536],[4.53337362,0.02531833,95.52952707],[4.5333696,0.02531964,95.57975533]]],"type":"Polygon"},"type":"feature","properties":{"successorId":1,"level":true,"heights":[{"outer":0.0,"inner":0.0},{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":1,"type":"border","predecessorId":1,"sOffset":337.0060991374}},{"geometry":{"coordinates":[[[4.53337362,0.02531833,95.67952707],[4.53337306,0.02531662,95.67879536],[4.5333725,0.0253149,95.67806366],[4.53337194,0.02531319,95.67733198],[4.53337139,0.02531147,95.67660032],[4.53337083,0.02530976,95.67586868],[4.53337049,0.02530872,95.55042372],[4.5333829,0.02530467,95.67542372],[4.53338324,0.02530572,95.67586868],[4.53338379,0.02530743,95.67660032],[4.53338434,0.02530915,95.67733198],[4.53338489,0.02531087,95.67806366],[4.53338544,0.02531258,95.67879536],[4.53338599,0.0253143,95.67952707],[4.53337362,0.02531833,95.67952707]]],"type":"Polygon"},"type":"feature","properties":{"successorId":2,"level":true,"heights":[{"outer":0.15,"inner":0.15},{"outer":0.15,"inner":0.025}],"roadId":"1000100","id":2,"type":"border","predecessorId":2,"sOffset":337.0060991374}},{"geometry":{"coordinates":[[[4.53325695,0.02534571,95.41459905],[4.5332564,0.025344,95.4139195],[4.53325585,0.02534228,95.41324008],[4.53325529,0.02534057,95.41256079],[4.53325474,0.02533885,95.41188162],[4.53325419,0.02533714,95.41120259],[4.53325364,0.02533542,95.4105237],[4.53325308,0.02533371,95.40984496],[4.53325253,0.02533199,95.40916636],[4.53325198,0.02533028,95.40848791],[4.53325142,0.02532856,95.40780963],[4.53325087,0.02532685,95.4071315],[4.53325032,0.02532513,95.40645354],[4.53324977,0.02532342,95.40577576],[4.53324921,0.0253217,95.40509815],[4.53324866,0.02531999,95.40442071],[4.53324811,0.02531827,95.40374347],[4.53324755,0.02531656,95.40306641],[4.533247,0.02531484,95.40238955],[4.53324645,0.02531313,95.40171289],[4.53324589,0.02531141,95.40103643],[4.53324534,0.0253097,95.40036018],[4.53324479,0.02530798,95.39968413],[4.53324424,0.02530627,95.39900831],[4.53324368,0.02530455,95.39833271],[4.53324313,0.02530284,95.39765733],[4.53324258,0.02530112,95.39698218],[4.53324202,0.02529941,95.39630727],[4.53324147,0.02529769,95.39563259],[4.53324092,0.02529598,95.39495816],[4.53324037,0.02529426,95.39428397],[4.53323981,0.02529255,95.39361004],[4.53323926,0.02529083,95.39293636],[4.53323871,0.02528912,95.39226295],[4.53323815,0.0252874,95.3915898],[4.5332376,0.02528569,95.39091692],[4.53323705,0.02528397,95.39024431],[4.5332365,0.02528226,95.38957198],[4.53323594,0.02528054,95.38889994],[4.53323539,0.02527883,95.38822818],[4.53323484,0.02527711,95.38755671],[4.53323429,0.0252754,95.38688554],[4.53323373,0.02527368,95.38621467],[4.53323318,0.02527196,95.3855441],[4.53323263,0.02527025,95.38487385],[4.53323208,0.02526853,95.3842039],[4.53323152,0.02526682,95.38353428],[4.53323097,0.0252651,95.38286497],[4.53323042,0.02526339,95.38219599],[4.53322987,0.02526167,95.38152735],[4.53322932,0.02525996,95.38085903],[4.53322876,0.02525824,95.38019106],[4.53322821,0.02525653,95.37952342],[4.53322766,0.02525481,95.3788561],[4.53322711,0.0252531,95.37818909],[4.53322656,0.02525138,95.37752236],[4.53322601,0.02524967,95.37685592],[4.53322545,0.02524795,95.37618974],[4.5332249,0.02524623,95.3755238],[4.53322435,0.02524452,95.37485811],[4.5332238,0.0252428,95.37419263],[4.53322325,0.02524109,95.37352736],[4.5332227,0.02523937,95.37286229],[4.53322215,0.02523766,95.37219739],[4.5332216,0.02523594,95.37153266],[4.53322104,0.02523423,95.37086808],[4.53322049,0.02523251,95.37020365],[4.53321994,0.02523079,95.36953934],[4.53321939,0.02522908,95.36887517],[4.53321884,0.02522736,95.36821111],[4.53321829,0.02522565,95.36754716],[4.53321774,0.02522393,95.36688333],[4.53321719,0.02522222,95.36621959],[4.53321663,0.0252205,95.36555594],[4.53321608,0.02521879,95.36489237],[4.53321553,0.02521707,95.36422888],[4.53321498,0.02521535,95.36356546],[4.53321443,0.02521364,95.3629021],[4.53321388,0.02521192,95.3622388],[4.53321333,0.02521021,95.36157555],[4.53321278,0.02520849,95.36091233],[4.53321222,0.02520678,95.36024915],[4.53321167,0.02520506,95.359586],[4.53321112,0.02520335,95.35892287],[4.53321057,0.02520163,95.35825974],[4.53321002,0.02519991,95.35759663],[4.53320947,0.0251982,95.35693351],[4.53320892,0.02519648,95.35627038],[4.53320837,0.02519477,95.35560724],[4.53320781,0.02519305,95.35494407],[4.53320726,0.02519134,95.35428087],[4.53320671,0.02518962,95.35361764],[4.53320616,0.02518791,95.35295436],[4.53320561,0.02518619,95.35229102],[4.53320506,0.02518447,95.35162763],[4.53320451,0.02518276,95.35096418],[4.53320395,0.02518104,95.35030065],[4.5332034,0.02517933,95.34963704],[4.53320285,0.02517761,95.34897334],[4.5332023,0.0251759,95.34830955],[4.53320175,0.02517418,95.34764566],[4.5332012,0.02517247,95.34698166],[4.53320068,0.02517085,95.34635636],[4.53321476,0.02516625,95.34635636],[4.53321528,0.02516786,95.34698166],[4.53321583,0.02516958,95.34764566],[4.53321638,0.0251713,95.34830955],[4.53321693,0.02517301,95.34897334],[4.53321748,0.02517473,95.34963704],[4.53321804,0.02517644,95.35030065],[4.53321859,0.02517816,95.35096418],[4.53321914,0.02517987,95.35162763],[4.53321969,0.02518159,95.35229102],[4.53322024,0.02518331,95.35295436],[4.53322079,0.02518502,95.35361764],[4.53322134,0.02518674,95.35428087],[4.53322189,0.02518845,95.35494407],[4.53322245,0.02519017,95.35560724],[4.533223,0.02519188,95.35627038],[4.53322355,0.0251936,95.35693351],[4.5332241,0.02519531,95.35759663],[4.53322465,0.02519703,95.35825974],[4.5332252,0.02519875,95.35892287],[4.53322575,0.02520046,95.359586],[4.5332263,0.02520218,95.36024915],[4.53322685,0.02520389,95.36091233],[4.53322741,0.02520561,95.36157555],[4.53322796,0.02520733,95.3622388],[4.53322851,0.02520904,95.3629021],[4.53322906,0.02521076,95.36356546],[4.53322961,0.02521247,95.36422888],[4.53323016,0.02521419,95.36489237],[4.53323071,0.0252159,95.36555594],[4.53323126,0.02521762,95.36621959],[4.53323181,0.02521934,95.36688333],[4.53323237,0.02522105,95.36754716],[4.53323292,0.02522277,95.36821111],[4.53323347,0.02522448,95.36887517],[4.53323402,0.0252262,95.36953934],[4.53323457,0.02522791,95.37020365],[4.53323512,0.02522963,95.37086808],[4.53323567,0.02523135,95.37153266],[4.53323622,0.02523306,95.37219739],[4.53323677,0.02523478,95.37286229],[4.53323733,0.02523649,95.37352736],[4.53323788,0.02523821,95.37419263],[4.53323843,0.02523992,95.37485811],[4.53323898,0.02524164,95.3755238],[4.53323953,0.02524336,95.37618974],[4.53324008,0.02524507,95.37685592],[4.53324063,0.02524679,95.37752236],[4.53324119,0.0252485,95.37818909],[4.53324174,0.02525022,95.3788561],[4.53324229,0.02525193,95.37952342],[4.53324284,0.02525365,95.38019106],[4.53324339,0.02525536,95.38085903],[4.53324394,0.02525708,95.38152735],[4.5332445,0.0252588,95.38219599],[4.53324505,0.02526051,95.38286497],[4.5332456,0.02526223,95.38353428],[4.53324615,0.02526394,95.3842039],[4.5332467,0.02526566,95.38487385],[4.53324726,0.02526737,95.3855441],[4.53324781,0.02526909,95.38621467],[4.53324836,0.0252708,95.38688554],[4.53324891,0.02527252,95.38755671],[4.53324947,0.02527423,95.38822818],[4.53325002,0.02527595,95.38889994],[4.53325057,0.02527767,95.38957198],[4.53325112,0.02527938,95.39024431],[4.53325167,0.0252811,95.39091692],[4.53325223,0.02528281,95.3915898],[4.53325278,0.02528453,95.39226295],[4.53325333,0.02528624,95.39293636],[4.53325389,0.02528796,95.39361004],[4.53325444,0.02528967,95.39428397],[4.53325499,0.02529139,95.39495816],[4.53325554,0.0252931,95.39563259],[4.5332561,0.02529482,95.39630727],[4.53325665,0.02529653,95.39698218],[4.5332572,0.02529825,95.39765733],[4.53325775,0.02529996,95.39833271],[4.53325831,0.02530168,95.39900831],[4.53325886,0.02530339,95.39968413],[4.53325941,0.02530511,95.40036018],[4.53325997,0.02530682,95.40103643],[4.53326052,0.02530854,95.40171289],[4.53326107,0.02531026,95.40238955],[4.53326162,0.02531197,95.40306641],[4.53326218,0.02531369,95.40374347],[4.53326273,0.0253154,95.40442071],[4.53326328,0.02531712,95.40509815],[4.53326384,0.02531883,95.40577576],[4.53326439,0.02532055,95.40645354],[4.53326494,0.02532226,95.4071315],[4.53326549,0.02532398,95.40780963],[4.53326605,0.02532569,95.40848791],[4.5332666,0.02532741,95.40916636],[4.53326715,0.02532912,95.40984496],[4.53326771,0.02533084,95.4105237],[4.53326826,0.02533255,95.41120259],[4.53326881,0.02533427,95.41188162],[4.53326936,0.02533598,95.41256079],[4.53326992,0.0253377,95.41324008],[4.53327047,0.02533941,95.4139195],[4.53327102,0.02534113,95.41459905],[4.53325695,0.02534571,95.41459905]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-7,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-7,"type":"border","predecessorId":-7,"sOffset":338.1277365357}},{"geometry":{"coordinates":[[[4.53327102,0.02534113,95.41459905],[4.53327047,0.02533941,95.4139195],[4.53326992,0.0253377,95.41324008],[4.53326936,0.02533598,95.41256079],[4.53326881,0.02533427,95.41188162],[4.53326826,0.02533255,95.41120259],[4.53326771,0.02533084,95.4105237],[4.53326715,0.02532912,95.40984496],[4.5332666,0.02532741,95.40916636],[4.53326605,0.02532569,95.40848791],[4.53326549,0.02532398,95.40780963],[4.53326494,0.02532226,95.4071315],[4.53326439,0.02532055,95.40645354],[4.53326384,0.02531883,95.40577576],[4.53326328,0.02531712,95.40509815],[4.53326273,0.0253154,95.40442071],[4.53326218,0.02531369,95.40374347],[4.53326162,0.02531197,95.40306641],[4.53326107,0.02531026,95.40238955],[4.53326052,0.02530854,95.40171289],[4.53325997,0.02530682,95.40103643],[4.53325941,0.02530511,95.40036018],[4.53325886,0.02530339,95.39968413],[4.53325831,0.02530168,95.39900831],[4.53325775,0.02529996,95.39833271],[4.5332572,0.02529825,95.39765733],[4.53325665,0.02529653,95.39698218],[4.5332561,0.02529482,95.39630727],[4.53325554,0.0252931,95.39563259],[4.53325499,0.02529139,95.39495816],[4.53325444,0.02528967,95.39428397],[4.53325389,0.02528796,95.39361004],[4.53325333,0.02528624,95.39293636],[4.53325278,0.02528453,95.39226295],[4.53325223,0.02528281,95.3915898],[4.53325167,0.0252811,95.39091692],[4.53325112,0.02527938,95.39024431],[4.53325057,0.02527767,95.38957198],[4.53325002,0.02527595,95.38889994],[4.53324947,0.02527423,95.38822818],[4.53324891,0.02527252,95.38755671],[4.53324836,0.0252708,95.38688554],[4.53324781,0.02526909,95.38621467],[4.53324726,0.02526737,95.3855441],[4.5332467,0.02526566,95.38487385],[4.53324615,0.02526394,95.3842039],[4.5332456,0.02526223,95.38353428],[4.53324505,0.02526051,95.38286497],[4.5332445,0.0252588,95.38219599],[4.53324394,0.02525708,95.38152735],[4.53324339,0.02525536,95.38085903],[4.53324284,0.02525365,95.38019106],[4.53324229,0.02525193,95.37952342],[4.53324174,0.02525022,95.3788561],[4.53324119,0.0252485,95.37818909],[4.53324063,0.02524679,95.37752236],[4.53324008,0.02524507,95.37685592],[4.53323953,0.02524336,95.37618974],[4.53323898,0.02524164,95.3755238],[4.53323843,0.02523992,95.37485811],[4.53323788,0.02523821,95.37419263],[4.53323733,0.02523649,95.37352736],[4.53323677,0.02523478,95.37286229],[4.53323622,0.02523306,95.37219739],[4.53323567,0.02523135,95.37153266],[4.53323512,0.02522963,95.37086808],[4.53323457,0.02522791,95.37020365],[4.53323402,0.0252262,95.36953934],[4.53323347,0.02522448,95.36887517],[4.53323292,0.02522277,95.36821111],[4.53323237,0.02522105,95.36754716],[4.53323181,0.02521934,95.36688333],[4.53323126,0.02521762,95.36621959],[4.53323071,0.0252159,95.36555594],[4.53323016,0.02521419,95.36489237],[4.53322961,0.02521247,95.36422888],[4.53322906,0.02521076,95.36356546],[4.53322851,0.02520904,95.3629021],[4.53322796,0.02520733,95.3622388],[4.53322741,0.02520561,95.36157555],[4.53322685,0.02520389,95.36091233],[4.5332263,0.02520218,95.36024915],[4.53322575,0.02520046,95.359586],[4.5332252,0.02519875,95.35892287],[4.53322465,0.02519703,95.35825974],[4.5332241,0.02519531,95.35759663],[4.53322355,0.0251936,95.35693351],[4.533223,0.02519188,95.35627038],[4.53322245,0.02519017,95.35560724],[4.53322189,0.02518845,95.35494407],[4.53322134,0.02518674,95.35428087],[4.53322079,0.02518502,95.35361764],[4.53322024,0.02518331,95.35295436],[4.53321969,0.02518159,95.35229102],[4.53321914,0.02517987,95.35162763],[4.53321859,0.02517816,95.35096418],[4.53321804,0.02517644,95.35030065],[4.53321748,0.02517473,95.34963704],[4.53321693,0.02517301,95.34897334],[4.53321638,0.0251713,95.34830955],[4.53321583,0.02516958,95.34764566],[4.53321528,0.02516786,95.34698166],[4.53321476,0.02516625,95.34635636],[4.53321605,0.02516583,95.34635636],[4.53321657,0.02516744,95.34698166],[4.53321712,0.02516916,95.34764566],[4.53321767,0.02517088,95.34830955],[4.53321822,0.02517259,95.34897334],[4.53321877,0.02517431,95.34963704],[4.53321932,0.02517602,95.35030065],[4.53321988,0.02517774,95.35096418],[4.53322043,0.02517945,95.35162763],[4.53322098,0.02518117,95.35229102],[4.53322153,0.02518288,95.35295436],[4.53322208,0.0251846,95.35361764],[4.53322263,0.02518632,95.35428087],[4.53322318,0.02518803,95.35494407],[4.53322374,0.02518975,95.35560724],[4.53322429,0.02519146,95.35627038],[4.53322484,0.02519318,95.35693351],[4.53322539,0.02519489,95.35759663],[4.53322594,0.02519661,95.35825974],[4.53322649,0.02519832,95.35892287],[4.53322704,0.02520004,95.359586],[4.53322759,0.02520176,95.36024915],[4.53322815,0.02520347,95.36091233],[4.5332287,0.02520519,95.36157555],[4.53322925,0.0252069,95.3622388],[4.5332298,0.02520862,95.3629021],[4.53323035,0.02521033,95.36356546],[4.5332309,0.02521205,95.36422888],[4.53323145,0.02521377,95.36489237],[4.533232,0.02521548,95.36555594],[4.53323256,0.0252172,95.36621959],[4.53323311,0.02521891,95.36688333],[4.53323366,0.02522063,95.36754716],[4.53323421,0.02522234,95.36821111],[4.53323476,0.02522406,95.36887517],[4.53323531,0.02522578,95.36953934],[4.53323586,0.02522749,95.37020365],[4.53323641,0.02522921,95.37086808],[4.53323697,0.02523092,95.37153266],[4.53323752,0.02523264,95.37219739],[4.53323807,0.02523435,95.37286229],[4.53323862,0.02523607,95.37352736],[4.53323917,0.02523779,95.37419263],[4.53323972,0.0252395,95.37485811],[4.53324027,0.02524122,95.3755238],[4.53324083,0.02524293,95.37618974],[4.53324138,0.02524465,95.37685592],[4.53324193,0.02524636,95.37752236],[4.53324248,0.02524808,95.37818909],[4.53324303,0.0252498,95.3788561],[4.53324358,0.02525151,95.37952342],[4.53324414,0.02525323,95.38019106],[4.53324469,0.02525494,95.38085903],[4.53324524,0.02525666,95.38152735],[4.53324579,0.02525837,95.38219599],[4.53324634,0.02526009,95.38286497],[4.5332469,0.0252618,95.38353428],[4.53324745,0.02526352,95.3842039],[4.533248,0.02526523,95.38487385],[4.53324855,0.02526695,95.3855441],[4.53324911,0.02526867,95.38621467],[4.53324966,0.02527038,95.38688554],[4.53325021,0.0252721,95.38755671],[4.53325076,0.02527381,95.38822818],[4.53325132,0.02527553,95.38889994],[4.53325187,0.02527724,95.38957198],[4.53325242,0.02527896,95.39024431],[4.53325297,0.02528067,95.39091692],[4.53325353,0.02528239,95.3915898],[4.53325408,0.0252841,95.39226295],[4.53325463,0.02528582,95.39293636],[4.53325519,0.02528753,95.39361004],[4.53325574,0.02528925,95.39428397],[4.53325629,0.02529096,95.39495816],[4.53325684,0.02529268,95.39563259],[4.5332574,0.02529439,95.39630727],[4.53325795,0.02529611,95.39698218],[4.5332585,0.02529782,95.39765733],[4.53325906,0.02529954,95.39833271],[4.53325961,0.02530125,95.39900831],[4.53326016,0.02530297,95.39968413],[4.53326071,0.02530469,95.40036018],[4.53326127,0.0253064,95.40103643],[4.53326182,0.02530812,95.40171289],[4.53326237,0.02530983,95.40238955],[4.53326293,0.02531155,95.40306641],[4.53326348,0.02531326,95.40374347],[4.53326403,0.02531498,95.40442071],[4.53326459,0.02531669,95.40509815],[4.53326514,0.02531841,95.40577576],[4.53326569,0.02532012,95.40645354],[4.53326625,0.02532184,95.4071315],[4.5332668,0.02532355,95.40780963],[4.53326735,0.02532527,95.40848791],[4.5332679,0.02532698,95.40916636],[4.53326846,0.0253287,95.40984496],[4.53326901,0.02533041,95.4105237],[4.53326956,0.02533213,95.41120259],[4.53327012,0.02533384,95.41188162],[4.53327067,0.02533556,95.41256079],[4.53327122,0.02533727,95.41324008],[4.53327177,0.02533899,95.4139195],[4.53327233,0.0253407,95.41459905],[4.53327102,0.02534113,95.41459905]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-6,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-6,"type":"border","predecessorId":-6,"sOffset":338.1277365357}},{"geometry":{"coordinates":[[[4.53327233,0.0253407,95.26459905],[4.53327177,0.02533899,95.2639195],[4.53327122,0.02533727,95.26324008],[4.53327067,0.02533556,95.26256079],[4.53327012,0.02533384,95.26188162],[4.53326956,0.02533213,95.26120259],[4.53326901,0.02533041,95.2605237],[4.53326846,0.0253287,95.25984496],[4.5332679,0.02532698,95.25916636],[4.53326735,0.02532527,95.25848791],[4.5332668,0.02532355,95.25780963],[4.53326625,0.02532184,95.2571315],[4.53326569,0.02532012,95.25645354],[4.53326514,0.02531841,95.25577576],[4.53326459,0.02531669,95.25509815],[4.53326403,0.02531498,95.25442071],[4.53326348,0.02531326,95.25374347],[4.53326293,0.02531155,95.25306641],[4.53326237,0.02530983,95.25238955],[4.53326182,0.02530812,95.25171289],[4.53326127,0.0253064,95.25103643],[4.53326071,0.02530469,95.25036018],[4.53326016,0.02530297,95.24968413],[4.53325961,0.02530125,95.24900831],[4.53325906,0.02529954,95.24833271],[4.5332585,0.02529782,95.24765733],[4.53325795,0.02529611,95.24698218],[4.5332574,0.02529439,95.24630727],[4.53325684,0.02529268,95.24563259],[4.53325629,0.02529096,95.24495816],[4.53325574,0.02528925,95.24428397],[4.53325519,0.02528753,95.24361004],[4.53325463,0.02528582,95.24293636],[4.53325408,0.0252841,95.24226295],[4.53325353,0.02528239,95.2415898],[4.53325297,0.02528067,95.24091692],[4.53325242,0.02527896,95.24024431],[4.53325187,0.02527724,95.23957198],[4.53325132,0.02527553,95.23889994],[4.53325076,0.02527381,95.23822818],[4.53325021,0.0252721,95.23755671],[4.53324966,0.02527038,95.23688554],[4.53324911,0.02526867,95.23621467],[4.53324855,0.02526695,95.2355441],[4.533248,0.02526523,95.23487385],[4.53324745,0.02526352,95.2342039],[4.5332469,0.0252618,95.23353428],[4.53324634,0.02526009,95.23286497],[4.53324579,0.02525837,95.23219599],[4.53324524,0.02525666,95.23152735],[4.53324469,0.02525494,95.23085903],[4.53324414,0.02525323,95.23019106],[4.53324358,0.02525151,95.22952342],[4.53324303,0.0252498,95.2288561],[4.53324248,0.02524808,95.22818909],[4.53324193,0.02524636,95.22752236],[4.53324138,0.02524465,95.22685592],[4.53324083,0.02524293,95.22618974],[4.53324027,0.02524122,95.2255238],[4.53323972,0.0252395,95.22485811],[4.53323917,0.02523779,95.22419263],[4.53323862,0.02523607,95.22352736],[4.53323807,0.02523435,95.22286229],[4.53323752,0.02523264,95.22219739],[4.53323697,0.02523092,95.22153266],[4.53323641,0.02522921,95.22086808],[4.53323586,0.02522749,95.22020365],[4.53323531,0.02522578,95.21953934],[4.53323476,0.02522406,95.21887517],[4.53323421,0.02522234,95.21821111],[4.53323366,0.02522063,95.21754716],[4.53323311,0.02521891,95.21688333],[4.53323256,0.0252172,95.21621959],[4.533232,0.02521548,95.21555594],[4.53323145,0.02521377,95.21489237],[4.5332309,0.02521205,95.21422888],[4.53323035,0.02521033,95.21356546],[4.5332298,0.02520862,95.2129021],[4.53322925,0.0252069,95.2122388],[4.5332287,0.02520519,95.21157555],[4.53322815,0.02520347,95.21091233],[4.53322759,0.02520176,95.21024915],[4.53322704,0.02520004,95.209586],[4.53322649,0.02519832,95.20892287],[4.53322594,0.02519661,95.20825974],[4.53322539,0.02519489,95.20759663],[4.53322484,0.02519318,95.20693351],[4.53322429,0.02519146,95.20627038],[4.53322374,0.02518975,95.20560724],[4.53322318,0.02518803,95.20494407],[4.53322263,0.02518632,95.20428087],[4.53322208,0.0251846,95.20361764],[4.53322153,0.02518288,95.20295436],[4.53322098,0.02518117,95.20229102],[4.53322043,0.02517945,95.20162763],[4.53321988,0.02517774,95.20096418],[4.53321932,0.02517602,95.20030065],[4.53321877,0.02517431,95.19963704],[4.53321822,0.02517259,95.19897334],[4.53321767,0.02517088,95.19830955],[4.53321712,0.02516916,95.19764566],[4.53321657,0.02516744,95.19698166],[4.53321605,0.02516583,95.19635636],[4.53321895,0.02516488,95.20572075],[4.53321947,0.0251665,95.20634525],[4.53322002,0.02516821,95.20700841],[4.53322057,0.02516993,95.20767146],[4.53322112,0.02517164,95.20833441],[4.53322167,0.02517336,95.20899727],[4.53322222,0.02517507,95.20966003],[4.53322277,0.02517679,95.21032272],[4.53322332,0.02517851,95.21098534],[4.53322387,0.02518022,95.21164788],[4.53322442,0.02518194,95.21231037],[4.53322497,0.02518365,95.21297281],[4.53322552,0.02518537,95.2136352],[4.53322608,0.02518709,95.21429756],[4.53322663,0.0251888,95.21495988],[4.53322718,0.02519052,95.21562218],[4.53322773,0.02519223,95.21628446],[4.53322828,0.02519395,95.21694673],[4.53322883,0.02519567,95.217609],[4.53322938,0.02519738,95.21827127],[4.53322993,0.0251991,95.21893355],[4.53323048,0.02520081,95.21959585],[4.53323103,0.02520253,95.22025818],[4.53323158,0.02520425,95.22092054],[4.53323213,0.02520596,95.22158294],[4.53323268,0.02520768,95.22224538],[4.53323323,0.02520939,95.22290788],[4.53323378,0.02521111,95.22357044],[4.53323433,0.02521283,95.22423307],[4.53323488,0.02521454,95.22489577],[4.53323543,0.02521626,95.22555855],[4.53323598,0.02521797,95.22622142],[4.53323653,0.02521969,95.22688439],[4.53323708,0.02522141,95.22754746],[4.53323763,0.02522312,95.22821065],[4.53323818,0.02522484,95.22887395],[4.53323873,0.02522656,95.22953737],[4.53323928,0.02522827,95.23020093],[4.53323983,0.02522999,95.23086462],[4.53324038,0.0252317,95.23152846],[4.53324093,0.02523342,95.23219247],[4.53324148,0.02523514,95.23285665],[4.53324204,0.02523685,95.23352102],[4.53324259,0.02523857,95.2341856],[4.53324314,0.02524028,95.2348504],[4.53324369,0.025242,95.23551542],[4.53324424,0.02524372,95.2361807],[4.53324479,0.02524543,95.23684623],[4.53324534,0.02524715,95.23751204],[4.53324589,0.02524886,95.23817814],[4.53324644,0.02525058,95.23884454],[4.53324699,0.02525229,95.23951125],[4.53324754,0.02525401,95.2401783],[4.53324809,0.02525573,95.24084568],[4.53324864,0.02525744,95.24151339],[4.5332492,0.02525916,95.24218143],[4.53324975,0.02526087,95.24284979],[4.5332503,0.02526259,95.24351847],[4.53325085,0.02526431,95.24418746],[4.5332514,0.02526602,95.24485677],[4.53325195,0.02526774,95.24552637],[4.5332525,0.02526945,95.24619628],[4.53325306,0.02527117,95.24686648],[4.53325361,0.02527288,95.24753697],[4.53325416,0.0252746,95.24820776],[4.53325471,0.02527631,95.24887882],[4.53325526,0.02527803,95.24955016],[4.53325581,0.02527975,95.25022178],[4.53325637,0.02528146,95.25089366],[4.53325692,0.02528318,95.25156581],[4.53325747,0.02528489,95.25223822],[4.53325802,0.02528661,95.25291089],[4.53325857,0.02528832,95.2535838],[4.53325912,0.02529004,95.25425697],[4.53325968,0.02529176,95.25493037],[4.53326023,0.02529347,95.25560402],[4.53326078,0.02529519,95.25627789],[4.53326133,0.0252969,95.256952],[4.53326188,0.02529862,95.25762633],[4.53326244,0.02530033,95.25830088],[4.53326299,0.02530205,95.25897564],[4.53326354,0.02530376,95.25965062],[4.53326409,0.02530548,95.2603258],[4.53326465,0.02530719,95.26100119],[4.5332652,0.02530891,95.26167677],[4.53326575,0.02531063,95.26235254],[4.5332663,0.02531234,95.2630285],[4.53326685,0.02531406,95.26370464],[4.53326741,0.02531577,95.26438097],[4.53326796,0.02531749,95.26505746],[4.53326851,0.0253192,95.26573413],[4.53326906,0.02532092,95.26641096],[4.53326961,0.02532263,95.26708795],[4.53327017,0.02532435,95.2677651],[4.53327072,0.02532607,95.2684424],[4.53327127,0.02532778,95.26911984],[4.53327182,0.0253295,95.26979743],[4.53327237,0.02533121,95.27047515],[4.53327293,0.02533293,95.27115301],[4.53327348,0.02533464,95.27183099],[4.53327403,0.02533636,95.2725091],[4.53327458,0.02533807,95.27318732],[4.53327513,0.02533979,95.27386566],[4.53327233,0.0253407,95.26459905]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-5,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-5,"type":"border","predecessorId":-5,"sOffset":338.1277365357}},{"geometry":{"coordinates":[[[4.53327513,0.02533979,95.27386566],[4.53327458,0.02533807,95.27318732],[4.53327403,0.02533636,95.2725091],[4.53327348,0.02533464,95.27183099],[4.53327293,0.02533293,95.27115301],[4.53327237,0.02533121,95.27047515],[4.53327182,0.0253295,95.26979743],[4.53327127,0.02532778,95.26911984],[4.53327072,0.02532607,95.2684424],[4.53327017,0.02532435,95.2677651],[4.53326961,0.02532263,95.26708795],[4.53326906,0.02532092,95.26641096],[4.53326851,0.0253192,95.26573413],[4.53326796,0.02531749,95.26505746],[4.53326741,0.02531577,95.26438097],[4.53326685,0.02531406,95.26370464],[4.5332663,0.02531234,95.2630285],[4.53326575,0.02531063,95.26235254],[4.5332652,0.02530891,95.26167677],[4.53326465,0.02530719,95.26100119],[4.53326409,0.02530548,95.2603258],[4.53326354,0.02530376,95.25965062],[4.53326299,0.02530205,95.25897564],[4.53326244,0.02530033,95.25830088],[4.53326188,0.02529862,95.25762633],[4.53326133,0.0252969,95.256952],[4.53326078,0.02529519,95.25627789],[4.53326023,0.02529347,95.25560402],[4.53325968,0.02529176,95.25493037],[4.53325912,0.02529004,95.25425697],[4.53325857,0.02528832,95.2535838],[4.53325802,0.02528661,95.25291089],[4.53325747,0.02528489,95.25223822],[4.53325692,0.02528318,95.25156581],[4.53325637,0.02528146,95.25089366],[4.53325581,0.02527975,95.25022178],[4.53325526,0.02527803,95.24955016],[4.53325471,0.02527631,95.24887882],[4.53325416,0.0252746,95.24820776],[4.53325361,0.02527288,95.24753697],[4.53325306,0.02527117,95.24686648],[4.5332525,0.02526945,95.24619628],[4.53325195,0.02526774,95.24552637],[4.5332514,0.02526602,95.24485677],[4.53325085,0.02526431,95.24418746],[4.5332503,0.02526259,95.24351847],[4.53324975,0.02526087,95.24284979],[4.5332492,0.02525916,95.24218143],[4.53324864,0.02525744,95.24151339],[4.53324809,0.02525573,95.24084568],[4.53324754,0.02525401,95.2401783],[4.53324699,0.02525229,95.23951125],[4.53324644,0.02525058,95.23884454],[4.53324589,0.02524886,95.23817814],[4.53324534,0.02524715,95.23751204],[4.53324479,0.02524543,95.23684623],[4.53324424,0.02524372,95.2361807],[4.53324369,0.025242,95.23551542],[4.53324314,0.02524028,95.2348504],[4.53324259,0.02523857,95.2341856],[4.53324204,0.02523685,95.23352102],[4.53324148,0.02523514,95.23285665],[4.53324093,0.02523342,95.23219247],[4.53324038,0.0252317,95.23152846],[4.53323983,0.02522999,95.23086462],[4.53323928,0.02522827,95.23020093],[4.53323873,0.02522656,95.22953737],[4.53323818,0.02522484,95.22887395],[4.53323763,0.02522312,95.22821065],[4.53323708,0.02522141,95.22754746],[4.53323653,0.02521969,95.22688439],[4.53323598,0.02521797,95.22622142],[4.53323543,0.02521626,95.22555855],[4.53323488,0.02521454,95.22489577],[4.53323433,0.02521283,95.22423307],[4.53323378,0.02521111,95.22357044],[4.53323323,0.02520939,95.22290788],[4.53323268,0.02520768,95.22224538],[4.53323213,0.02520596,95.22158294],[4.53323158,0.02520425,95.22092054],[4.53323103,0.02520253,95.22025818],[4.53323048,0.02520081,95.21959585],[4.53322993,0.0251991,95.21893355],[4.53322938,0.02519738,95.21827127],[4.53322883,0.02519567,95.217609],[4.53322828,0.02519395,95.21694673],[4.53322773,0.02519223,95.21628446],[4.53322718,0.02519052,95.21562218],[4.53322663,0.0251888,95.21495988],[4.53322608,0.02518709,95.21429756],[4.53322552,0.02518537,95.2136352],[4.53322497,0.02518365,95.21297281],[4.53322442,0.02518194,95.21231037],[4.53322387,0.02518022,95.21164788],[4.53322332,0.02517851,95.21098534],[4.53322277,0.02517679,95.21032272],[4.53322222,0.02517507,95.20966003],[4.53322167,0.02517336,95.20899727],[4.53322112,0.02517164,95.20833441],[4.53322057,0.02516993,95.20767146],[4.53322002,0.02516821,95.20700841],[4.53321947,0.0251665,95.20634525],[4.53321895,0.02516488,95.20572075],[4.53322009,0.02516451,95.20939433],[4.53322061,0.02516612,95.21001753],[4.53322116,0.02516784,95.21067931],[4.53322171,0.02516956,95.21134097],[4.53322226,0.02517127,95.21200254],[4.53322281,0.02517299,95.21266401],[4.53322336,0.0251747,95.21332539],[4.53322391,0.02517642,95.21398669],[4.53322446,0.02517814,95.21464792],[4.53322501,0.02517985,95.21530908],[4.53322556,0.02518157,95.21597018],[4.53322611,0.02518328,95.21663122],[4.53322666,0.025185,95.21729223],[4.53322721,0.02518672,95.21795319],[4.53322776,0.02518843,95.21861412],[4.5332283,0.02519015,95.21927503],[4.53322885,0.02519187,95.21993591],[4.5332294,0.02519358,95.22059679],[4.53322995,0.0251953,95.22125766],[4.5332305,0.02519701,95.22191854],[4.53323105,0.02519873,95.22257943],[4.5332316,0.02520045,95.22324033],[4.53323215,0.02520216,95.22390126],[4.5332327,0.02520388,95.22456222],[4.53323325,0.0252056,95.22522322],[4.5332338,0.02520731,95.22588426],[4.53323435,0.02520903,95.22654535],[4.5332349,0.02521074,95.22720651],[4.53323545,0.02521246,95.22786773],[4.533236,0.02521418,95.22852902],[4.53323655,0.02521589,95.2291904],[4.5332371,0.02521761,95.22985186],[4.53323765,0.02521933,95.23051342],[4.5332382,0.02522104,95.23117508],[4.53323875,0.02522276,95.23183685],[4.5332393,0.02522448,95.23249873],[4.53323985,0.02522619,95.23316074],[4.5332404,0.02522791,95.23382288],[4.53324095,0.02522962,95.23448515],[4.5332415,0.02523134,95.23514758],[4.53324205,0.02523306,95.23581016],[4.53324259,0.02523477,95.23647292],[4.53324314,0.02523649,95.23713586],[4.53324369,0.02523821,95.23779901],[4.53324424,0.02523992,95.23846238],[4.53324479,0.02524164,95.23912598],[4.53324534,0.02524335,95.23978982],[4.53324589,0.02524507,95.24045392],[4.53324644,0.02524679,95.24111829],[4.53324699,0.0252485,95.24178295],[4.53324754,0.02525022,95.24244791],[4.53324809,0.02525193,95.24311318],[4.53324864,0.02525365,95.24377879],[4.5332492,0.02525537,95.24444472],[4.53324975,0.02525708,95.24511099],[4.5332503,0.0252588,95.24577758],[4.53325085,0.02526051,95.24644448],[4.5332514,0.02526223,95.24711171],[4.53325195,0.02526395,95.24777925],[4.5332525,0.02526566,95.24844709],[4.53325305,0.02526738,95.24911524],[4.5332536,0.02526909,95.24978368],[4.53325415,0.02527081,95.25045242],[4.5332547,0.02527253,95.25112145],[4.53325525,0.02527424,95.25179076],[4.5332558,0.02527596,95.25246035],[4.53325635,0.02527767,95.25313022],[4.53325691,0.02527939,95.25380036],[4.53325746,0.02528111,95.25447077],[4.53325801,0.02528282,95.25514144],[4.53325856,0.02528454,95.25581236],[4.53325911,0.02528625,95.25648354],[4.53325966,0.02528797,95.25715497],[4.53326021,0.02528968,95.25782665],[4.53326076,0.0252914,95.25849856],[4.53326132,0.02529312,95.25917071],[4.53326187,0.02529483,95.25984309],[4.53326242,0.02529655,95.26051569],[4.53326297,0.02529826,95.26118852],[4.53326352,0.02529998,95.26186156],[4.53326407,0.0253017,95.26253482],[4.53326462,0.02530341,95.26320829],[4.53326517,0.02530513,95.26388195],[4.53326573,0.02530684,95.26455582],[4.53326628,0.02530856,95.26522988],[4.53326683,0.02531027,95.26590413],[4.53326738,0.02531199,95.26657857],[4.53326793,0.02531371,95.26725319],[4.53326848,0.02531542,95.26792798],[4.53326903,0.02531714,95.26860294],[4.53326959,0.02531885,95.26927807],[4.53327014,0.02532057,95.26995336],[4.53327069,0.02532228,95.27062881],[4.53327124,0.025324,95.27130441],[4.53327179,0.02532572,95.27198016],[4.53327234,0.02532743,95.27265606],[4.53327289,0.02532915,95.27333209],[4.53327344,0.02533086,95.27400825],[4.533274,0.02533258,95.27468455],[4.53327455,0.02533429,95.27536097],[4.5332751,0.02533601,95.27603751],[4.53327565,0.02533773,95.27671416],[4.5332762,0.02533944,95.27739093],[4.53327513,0.02533979,95.27386566]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-4,"type":"shoulder","predecessorId":-4,"sOffset":338.1277365357}},{"geometry":{"coordinates":[[[4.5332762,0.02533944,95.27739093],[4.53327565,0.02533773,95.27671416],[4.5332751,0.02533601,95.27603751],[4.53327455,0.02533429,95.27536097],[4.533274,0.02533258,95.27468455],[4.53327344,0.02533086,95.27400825],[4.53327289,0.02532915,95.27333209],[4.53327234,0.02532743,95.27265606],[4.53327179,0.02532572,95.27198016],[4.53327124,0.025324,95.27130441],[4.53327069,0.02532228,95.27062881],[4.53327014,0.02532057,95.26995336],[4.53326959,0.02531885,95.26927807],[4.53326903,0.02531714,95.26860294],[4.53326848,0.02531542,95.26792798],[4.53326793,0.02531371,95.26725319],[4.53326738,0.02531199,95.26657857],[4.53326683,0.02531027,95.26590413],[4.53326628,0.02530856,95.26522988],[4.53326573,0.02530684,95.26455582],[4.53326517,0.02530513,95.26388195],[4.53326462,0.02530341,95.26320829],[4.53326407,0.0253017,95.26253482],[4.53326352,0.02529998,95.26186156],[4.53326297,0.02529826,95.26118852],[4.53326242,0.02529655,95.26051569],[4.53326187,0.02529483,95.25984309],[4.53326132,0.02529312,95.25917071],[4.53326076,0.0252914,95.25849856],[4.53326021,0.02528968,95.25782665],[4.53325966,0.02528797,95.25715497],[4.53325911,0.02528625,95.25648354],[4.53325856,0.02528454,95.25581236],[4.53325801,0.02528282,95.25514144],[4.53325746,0.02528111,95.25447077],[4.53325691,0.02527939,95.25380036],[4.53325635,0.02527767,95.25313022],[4.5332558,0.02527596,95.25246035],[4.53325525,0.02527424,95.25179076],[4.5332547,0.02527253,95.25112145],[4.53325415,0.02527081,95.25045242],[4.5332536,0.02526909,95.24978368],[4.53325305,0.02526738,95.24911524],[4.5332525,0.02526566,95.24844709],[4.53325195,0.02526395,95.24777925],[4.5332514,0.02526223,95.24711171],[4.53325085,0.02526051,95.24644448],[4.5332503,0.0252588,95.24577758],[4.53324975,0.02525708,95.24511099],[4.5332492,0.02525537,95.24444472],[4.53324864,0.02525365,95.24377879],[4.53324809,0.02525193,95.24311318],[4.53324754,0.02525022,95.24244791],[4.53324699,0.0252485,95.24178295],[4.53324644,0.02524679,95.24111829],[4.53324589,0.02524507,95.24045392],[4.53324534,0.02524335,95.23978982],[4.53324479,0.02524164,95.23912598],[4.53324424,0.02523992,95.23846238],[4.53324369,0.02523821,95.23779901],[4.53324314,0.02523649,95.23713586],[4.53324259,0.02523477,95.23647292],[4.53324205,0.02523306,95.23581016],[4.5332415,0.02523134,95.23514758],[4.53324095,0.02522962,95.23448515],[4.5332404,0.02522791,95.23382288],[4.53323985,0.02522619,95.23316074],[4.5332393,0.02522448,95.23249873],[4.53323875,0.02522276,95.23183685],[4.5332382,0.02522104,95.23117508],[4.53323765,0.02521933,95.23051342],[4.5332371,0.02521761,95.22985186],[4.53323655,0.02521589,95.2291904],[4.533236,0.02521418,95.22852902],[4.53323545,0.02521246,95.22786773],[4.5332349,0.02521074,95.22720651],[4.53323435,0.02520903,95.22654535],[4.5332338,0.02520731,95.22588426],[4.53323325,0.0252056,95.22522322],[4.5332327,0.02520388,95.22456222],[4.53323215,0.02520216,95.22390126],[4.5332316,0.02520045,95.22324033],[4.53323105,0.02519873,95.22257943],[4.5332305,0.02519701,95.22191854],[4.53322995,0.0251953,95.22125766],[4.5332294,0.02519358,95.22059679],[4.53322885,0.02519187,95.21993591],[4.5332283,0.02519015,95.21927503],[4.53322776,0.02518843,95.21861412],[4.53322721,0.02518672,95.21795319],[4.53322666,0.025185,95.21729223],[4.53322611,0.02518328,95.21663122],[4.53322556,0.02518157,95.21597018],[4.53322501,0.02517985,95.21530908],[4.53322446,0.02517814,95.21464792],[4.53322391,0.02517642,95.21398669],[4.53322336,0.0251747,95.21332539],[4.53322281,0.02517299,95.21266401],[4.53322226,0.02517127,95.21200254],[4.53322171,0.02516956,95.21134097],[4.53322116,0.02516784,95.21067931],[4.53322061,0.02516612,95.21001753],[4.53322009,0.02516451,95.20939433],[4.53324857,0.0251552,95.3012398],[4.53324909,0.02515682,95.30189269],[4.53324964,0.02515853,95.30258602],[4.5332502,0.02516025,95.30327926],[4.53325075,0.02516196,95.30397242],[4.5332513,0.02516368,95.30466551],[4.53325185,0.02516539,95.30535853],[4.53325241,0.02516711,95.30605148],[4.53325296,0.02516882,95.30674438],[4.53325351,0.02517054,95.30743723],[4.53325407,0.02517225,95.30813003],[4.53325462,0.02517397,95.3088228],[4.53325517,0.02517569,95.30951554],[4.53325572,0.0251774,95.31020825],[4.53325628,0.02517912,95.31090094],[4.53325683,0.02518083,95.31159362],[4.53325738,0.02518255,95.31228629],[4.53325793,0.02518426,95.31297896],[4.53325849,0.02518598,95.31367164],[4.53325904,0.02518769,95.31436433],[4.53325959,0.02518941,95.31505704],[4.53326014,0.02519113,95.31574978],[4.5332607,0.02519284,95.31644254],[4.53326125,0.02519456,95.31713534],[4.5332618,0.02519627,95.31782819],[4.53326235,0.02519799,95.31852108],[4.53326291,0.0251997,95.31921404],[4.53326346,0.02520142,95.31990705],[4.53326401,0.02520313,95.32060013],[4.53326456,0.02520485,95.32129329],[4.53326512,0.02520657,95.32198653],[4.53326567,0.02520828,95.32267985],[4.53326622,0.02521,95.32337327],[4.53326677,0.02521171,95.32406679],[4.53326733,0.02521343,95.32476042],[4.53326788,0.02521514,95.32545416],[4.53326843,0.02521686,95.32614802],[4.53326898,0.02521857,95.326842],[4.53326954,0.02522029,95.32753611],[4.53327009,0.02522201,95.32823037],[4.53327064,0.02522372,95.32892478],[4.5332712,0.02522544,95.32961935],[4.53327175,0.02522715,95.33031411],[4.5332723,0.02522887,95.33100906],[4.53327285,0.02523058,95.33170421],[4.53327341,0.0252323,95.33239959],[4.53327396,0.02523401,95.3330952],[4.53327451,0.02523573,95.33379105],[4.53327507,0.02523745,95.33448716],[4.53327562,0.02523916,95.33518355],[4.53327617,0.02524088,95.33588022],[4.53327672,0.02524259,95.33657718],[4.53327728,0.02524431,95.33727447],[4.53327783,0.02524602,95.33797206],[4.53327838,0.02524774,95.33866997],[4.53327894,0.02524945,95.33936818],[4.53327949,0.02525117,95.34006669],[4.53328004,0.02525288,95.3407655],[4.5332806,0.0252546,95.3414646],[4.53328115,0.02525631,95.34216398],[4.53328171,0.02525803,95.34286364],[4.53328226,0.02525974,95.34356358],[4.53328281,0.02526146,95.34426379],[4.53328337,0.02526318,95.34496426],[4.53328392,0.02526489,95.34566499],[4.53328447,0.02526661,95.34636597],[4.53328503,0.02526832,95.3470672],[4.53328558,0.02527004,95.34776867],[4.53328614,0.02527175,95.34847038],[4.53328669,0.02527347,95.34917233],[4.53328724,0.02527518,95.3498745],[4.5332878,0.0252769,95.35057689],[4.53328835,0.02527861,95.3512795],[4.53328891,0.02528033,95.35198232],[4.53328946,0.02528204,95.35268534],[4.53329002,0.02528376,95.35338857],[4.53329057,0.02528547,95.35409199],[4.53329112,0.02528719,95.3547956],[4.53329168,0.0252889,95.35549939],[4.53329223,0.02529062,95.35620337],[4.53329279,0.02529233,95.35690752],[4.53329334,0.02529405,95.35761183],[4.5332939,0.02529576,95.35831631],[4.53329445,0.02529748,95.35902095],[4.533295,0.02529919,95.35972574],[4.53329556,0.02530091,95.36043067],[4.53329611,0.02530262,95.36113575],[4.53329667,0.02530434,95.36184097],[4.53329722,0.02530605,95.36254631],[4.53329778,0.02530777,95.36325178],[4.53329833,0.02530948,95.36395737],[4.53329888,0.0253112,95.36466307],[4.53329944,0.02531291,95.36536888],[4.53329999,0.02531463,95.3660748],[4.53330055,0.02531634,95.36678082],[4.5333011,0.02531806,95.36748692],[4.53330166,0.02531977,95.36819312],[4.53330221,0.02532149,95.36889939],[4.53330276,0.0253232,95.36960574],[4.53330332,0.02532492,95.37031217],[4.53330387,0.02532663,95.37101865],[4.53330443,0.02532835,95.3717252],[4.53330498,0.02533006,95.3724318],[4.5332762,0.02533944,95.27739093]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3,"sOffset":338.1277365357}},{"geometry":{"coordinates":[[[4.53330498,0.02533006,95.3724318],[4.53330443,0.02532835,95.3717252],[4.53330387,0.02532663,95.37101865],[4.53330332,0.02532492,95.37031217],[4.53330276,0.0253232,95.36960574],[4.53330221,0.02532149,95.36889939],[4.53330166,0.02531977,95.36819312],[4.5333011,0.02531806,95.36748692],[4.53330055,0.02531634,95.36678082],[4.53329999,0.02531463,95.3660748],[4.53329944,0.02531291,95.36536888],[4.53329888,0.0253112,95.36466307],[4.53329833,0.02530948,95.36395737],[4.53329778,0.02530777,95.36325178],[4.53329722,0.02530605,95.36254631],[4.53329667,0.02530434,95.36184097],[4.53329611,0.02530262,95.36113575],[4.53329556,0.02530091,95.36043067],[4.533295,0.02529919,95.35972574],[4.53329445,0.02529748,95.35902095],[4.5332939,0.02529576,95.35831631],[4.53329334,0.02529405,95.35761183],[4.53329279,0.02529233,95.35690752],[4.53329223,0.02529062,95.35620337],[4.53329168,0.0252889,95.35549939],[4.53329112,0.02528719,95.3547956],[4.53329057,0.02528547,95.35409199],[4.53329002,0.02528376,95.35338857],[4.53328946,0.02528204,95.35268534],[4.53328891,0.02528033,95.35198232],[4.53328835,0.02527861,95.3512795],[4.5332878,0.0252769,95.35057689],[4.53328724,0.02527518,95.3498745],[4.53328669,0.02527347,95.34917233],[4.53328614,0.02527175,95.34847038],[4.53328558,0.02527004,95.34776867],[4.53328503,0.02526832,95.3470672],[4.53328447,0.02526661,95.34636597],[4.53328392,0.02526489,95.34566499],[4.53328337,0.02526318,95.34496426],[4.53328281,0.02526146,95.34426379],[4.53328226,0.02525974,95.34356358],[4.53328171,0.02525803,95.34286364],[4.53328115,0.02525631,95.34216398],[4.5332806,0.0252546,95.3414646],[4.53328004,0.02525288,95.3407655],[4.53327949,0.02525117,95.34006669],[4.53327894,0.02524945,95.33936818],[4.53327838,0.02524774,95.33866997],[4.53327783,0.02524602,95.33797206],[4.53327728,0.02524431,95.33727447],[4.53327672,0.02524259,95.33657718],[4.53327617,0.02524088,95.33588022],[4.53327562,0.02523916,95.33518355],[4.53327507,0.02523745,95.33448716],[4.53327451,0.02523573,95.33379105],[4.53327396,0.02523401,95.3330952],[4.53327341,0.0252323,95.33239959],[4.53327285,0.02523058,95.33170421],[4.5332723,0.02522887,95.33100906],[4.53327175,0.02522715,95.33031411],[4.5332712,0.02522544,95.32961935],[4.53327064,0.02522372,95.32892478],[4.53327009,0.02522201,95.32823037],[4.53326954,0.02522029,95.32753611],[4.53326898,0.02521857,95.326842],[4.53326843,0.02521686,95.32614802],[4.53326788,0.02521514,95.32545416],[4.53326733,0.02521343,95.32476042],[4.53326677,0.02521171,95.32406679],[4.53326622,0.02521,95.32337327],[4.53326567,0.02520828,95.32267985],[4.53326512,0.02520657,95.32198653],[4.53326456,0.02520485,95.32129329],[4.53326401,0.02520313,95.32060013],[4.53326346,0.02520142,95.31990705],[4.53326291,0.0251997,95.31921404],[4.53326235,0.02519799,95.31852108],[4.5332618,0.02519627,95.31782819],[4.53326125,0.02519456,95.31713534],[4.5332607,0.02519284,95.31644254],[4.53326014,0.02519113,95.31574978],[4.53325959,0.02518941,95.31505704],[4.53325904,0.02518769,95.31436433],[4.53325849,0.02518598,95.31367164],[4.53325793,0.02518426,95.31297896],[4.53325738,0.02518255,95.31228629],[4.53325683,0.02518083,95.31159362],[4.53325628,0.02517912,95.31090094],[4.53325572,0.0251774,95.31020825],[4.53325517,0.02517569,95.30951554],[4.53325462,0.02517397,95.3088228],[4.53325407,0.02517225,95.30813003],[4.53325351,0.02517054,95.30743723],[4.53325296,0.02516882,95.30674438],[4.53325241,0.02516711,95.30605148],[4.53325185,0.02516539,95.30535853],[4.5332513,0.02516368,95.30466551],[4.53325075,0.02516196,95.30397242],[4.5332502,0.02516025,95.30327926],[4.53324964,0.02515853,95.30258602],[4.53324909,0.02515682,95.30189269],[4.53324857,0.0251552,95.3012398],[4.53327968,0.02514503,95.401572],[4.5332802,0.02514665,95.40224312],[4.53328075,0.02514836,95.40295583],[4.5332813,0.02515008,95.40366846],[4.53328185,0.0251518,95.40438102],[4.5332824,0.02515351,95.40509353],[4.53328296,0.02515523,95.40580598],[4.53328351,0.02515695,95.40651838],[4.53328406,0.02515866,95.40723074],[4.53328461,0.02516038,95.40794306],[4.53328516,0.02516209,95.40865534],[4.53328571,0.02516381,95.4093676],[4.53328626,0.02516553,95.41007983],[4.53328682,0.02516724,95.41079204],[4.53328737,0.02516896,95.41150425],[4.53328792,0.02517068,95.41221644],[4.53328847,0.02517239,95.41292864],[4.53328902,0.02517411,95.41364084],[4.53328957,0.02517583,95.41435305],[4.53329012,0.02517754,95.41506527],[4.53329067,0.02517926,95.41577751],[4.53329122,0.02518097,95.41648978],[4.53329178,0.02518269,95.41720208],[4.53329233,0.02518441,95.41791442],[4.53329288,0.02518612,95.4186268],[4.53329343,0.02518784,95.41933922],[4.53329398,0.02518956,95.4200517],[4.53329453,0.02519127,95.42076424],[4.53329508,0.02519299,95.42147684],[4.53329563,0.02519471,95.42218951],[4.53329618,0.02519642,95.42290225],[4.53329674,0.02519814,95.42361507],[4.53329729,0.02519985,95.42432798],[4.53329784,0.02520157,95.42504098],[4.53329839,0.02520329,95.42575408],[4.53329894,0.025205,95.42646727],[4.53329949,0.02520672,95.42718058],[4.53330004,0.02520844,95.427894],[4.53330059,0.02521015,95.42860753],[4.53330114,0.02521187,95.42932119],[4.5333017,0.02521359,95.43003499],[4.53330225,0.0252153,95.43074894],[4.5333028,0.02521702,95.43146306],[4.53330335,0.02521873,95.43217735],[4.5333039,0.02522045,95.43289183],[4.53330445,0.02522217,95.4336065],[4.533305,0.02522388,95.43432139],[4.53330556,0.0252256,95.43503651],[4.53330611,0.02522732,95.43575186],[4.53330666,0.02522903,95.43646746],[4.53330721,0.02523075,95.43718332],[4.53330776,0.02523246,95.43789946],[4.53330831,0.02523418,95.43861588],[4.53330887,0.0252359,95.43933259],[4.53330942,0.02523761,95.44004959],[4.53330997,0.02523933,95.44076686],[4.53331052,0.02524104,95.44148441],[4.53331107,0.02524276,95.44220222],[4.53331163,0.02524448,95.44292029],[4.53331218,0.02524619,95.44363862],[4.53331273,0.02524791,95.44435719],[4.53331328,0.02524962,95.44507601],[4.53331383,0.02525134,95.44579506],[4.53331439,0.02525306,95.44651434],[4.53331494,0.02525477,95.44723384],[4.53331549,0.02525649,95.44795356],[4.53331604,0.0252582,95.44867349],[4.5333166,0.02525992,95.44939362],[4.53331715,0.02526164,95.45011396],[4.5333177,0.02526335,95.45083449],[4.53331825,0.02526507,95.4515552],[4.53331881,0.02526678,95.45227609],[4.53331936,0.0252685,95.45299716],[4.53331991,0.02527022,95.4537184],[4.53332047,0.02527193,95.4544398],[4.53332102,0.02527365,95.45516135],[4.53332157,0.02527536,95.45588306],[4.53332212,0.02527708,95.45660491],[4.53332268,0.02527879,95.45732689],[4.53332323,0.02528051,95.45804901],[4.53332378,0.02528223,95.45877125],[4.53332433,0.02528394,95.45949361],[4.53332489,0.02528566,95.46021608],[4.53332544,0.02528737,95.46093866],[4.53332599,0.02528909,95.46166134],[4.53332655,0.0252908,95.46238411],[4.5333271,0.02529252,95.46310697],[4.53332765,0.02529424,95.46382992],[4.5333282,0.02529595,95.46455293],[4.53332876,0.02529767,95.46527602],[4.53332931,0.02529938,95.46599917],[4.53332986,0.0253011,95.46672237],[4.53333042,0.02530282,95.46744563],[4.53333097,0.02530453,95.46816893],[4.53333152,0.02530625,95.46889226],[4.53333207,0.02530796,95.46961563],[4.53333263,0.02530968,95.47033903],[4.53333318,0.02531139,95.47106244],[4.53333373,0.02531311,95.47178586],[4.53333429,0.02531483,95.47250929],[4.53333484,0.02531654,95.47323272],[4.53333539,0.02531826,95.47395614],[4.53333594,0.02531997,95.47467956],[4.53330498,0.02533006,95.3724318]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2,"sOffset":338.1277365357}},{"geometry":{"coordinates":[[[4.53333594,0.02531997,95.47467956],[4.53333539,0.02531826,95.47395614],[4.53333484,0.02531654,95.47323272],[4.53333429,0.02531483,95.47250929],[4.53333373,0.02531311,95.47178586],[4.53333318,0.02531139,95.47106244],[4.53333263,0.02530968,95.47033903],[4.53333207,0.02530796,95.46961563],[4.53333152,0.02530625,95.46889226],[4.53333097,0.02530453,95.46816893],[4.53333042,0.02530282,95.46744563],[4.53332986,0.0253011,95.46672237],[4.53332931,0.02529938,95.46599917],[4.53332876,0.02529767,95.46527602],[4.5333282,0.02529595,95.46455293],[4.53332765,0.02529424,95.46382992],[4.5333271,0.02529252,95.46310697],[4.53332655,0.0252908,95.46238411],[4.53332599,0.02528909,95.46166134],[4.53332544,0.02528737,95.46093866],[4.53332489,0.02528566,95.46021608],[4.53332433,0.02528394,95.45949361],[4.53332378,0.02528223,95.45877125],[4.53332323,0.02528051,95.45804901],[4.53332268,0.02527879,95.45732689],[4.53332212,0.02527708,95.45660491],[4.53332157,0.02527536,95.45588306],[4.53332102,0.02527365,95.45516135],[4.53332047,0.02527193,95.4544398],[4.53331991,0.02527022,95.4537184],[4.53331936,0.0252685,95.45299716],[4.53331881,0.02526678,95.45227609],[4.53331825,0.02526507,95.4515552],[4.5333177,0.02526335,95.45083449],[4.53331715,0.02526164,95.45011396],[4.5333166,0.02525992,95.44939362],[4.53331604,0.0252582,95.44867349],[4.53331549,0.02525649,95.44795356],[4.53331494,0.02525477,95.44723384],[4.53331439,0.02525306,95.44651434],[4.53331383,0.02525134,95.44579506],[4.53331328,0.02524962,95.44507601],[4.53331273,0.02524791,95.44435719],[4.53331218,0.02524619,95.44363862],[4.53331163,0.02524448,95.44292029],[4.53331107,0.02524276,95.44220222],[4.53331052,0.02524104,95.44148441],[4.53330997,0.02523933,95.44076686],[4.53330942,0.02523761,95.44004959],[4.53330887,0.0252359,95.43933259],[4.53330831,0.02523418,95.43861588],[4.53330776,0.02523246,95.43789946],[4.53330721,0.02523075,95.43718332],[4.53330666,0.02522903,95.43646746],[4.53330611,0.02522732,95.43575186],[4.53330556,0.0252256,95.43503651],[4.533305,0.02522388,95.43432139],[4.53330445,0.02522217,95.4336065],[4.5333039,0.02522045,95.43289183],[4.53330335,0.02521873,95.43217735],[4.5333028,0.02521702,95.43146306],[4.53330225,0.0252153,95.43074894],[4.5333017,0.02521359,95.43003499],[4.53330114,0.02521187,95.42932119],[4.53330059,0.02521015,95.42860753],[4.53330004,0.02520844,95.427894],[4.53329949,0.02520672,95.42718058],[4.53329894,0.025205,95.42646727],[4.53329839,0.02520329,95.42575408],[4.53329784,0.02520157,95.42504098],[4.53329729,0.02519985,95.42432798],[4.53329674,0.02519814,95.42361507],[4.53329618,0.02519642,95.42290225],[4.53329563,0.02519471,95.42218951],[4.53329508,0.02519299,95.42147684],[4.53329453,0.02519127,95.42076424],[4.53329398,0.02518956,95.4200517],[4.53329343,0.02518784,95.41933922],[4.53329288,0.02518612,95.4186268],[4.53329233,0.02518441,95.41791442],[4.53329178,0.02518269,95.41720208],[4.53329122,0.02518097,95.41648978],[4.53329067,0.02517926,95.41577751],[4.53329012,0.02517754,95.41506527],[4.53328957,0.02517583,95.41435305],[4.53328902,0.02517411,95.41364084],[4.53328847,0.02517239,95.41292864],[4.53328792,0.02517068,95.41221644],[4.53328737,0.02516896,95.41150425],[4.53328682,0.02516724,95.41079204],[4.53328626,0.02516553,95.41007983],[4.53328571,0.02516381,95.4093676],[4.53328516,0.02516209,95.40865534],[4.53328461,0.02516038,95.40794306],[4.53328406,0.02515866,95.40723074],[4.53328351,0.02515695,95.40651838],[4.53328296,0.02515523,95.40580598],[4.5332824,0.02515351,95.40509353],[4.53328185,0.0251518,95.40438102],[4.5332813,0.02515008,95.40366846],[4.53328075,0.02514836,95.40295583],[4.5332802,0.02514665,95.40224312],[4.53327968,0.02514503,95.401572],[4.53331004,0.02513511,95.499487],[4.53331056,0.02513673,95.50019246],[4.53331112,0.02513844,95.50094177],[4.53331168,0.02514016,95.50169114],[4.53331223,0.02514187,95.50244058],[4.53331279,0.02514359,95.50319008],[4.53331334,0.0251453,95.50393962],[4.5333139,0.02514702,95.50468921],[4.53331445,0.02514873,95.50543884],[4.53331501,0.02515045,95.5061885],[4.53331556,0.02515216,95.50693818],[4.53331612,0.02515388,95.5076879],[4.53331668,0.02515559,95.50843763],[4.53331723,0.02515731,95.50918737],[4.53331779,0.02515902,95.50993711],[4.53331834,0.02516074,95.51068686],[4.5333189,0.02516245,95.51143661],[4.53331945,0.02516417,95.51218634],[4.53332001,0.02516588,95.51293606],[4.53332056,0.0251676,95.51368575],[4.53332112,0.02516931,95.51443543],[4.53332167,0.02517103,95.51518507],[4.53332223,0.02517274,95.51593467],[4.53332278,0.02517446,95.51668423],[4.53332334,0.02517618,95.51743374],[4.5333239,0.02517789,95.51818319],[4.53332445,0.02517961,95.51893259],[4.53332501,0.02518132,95.51968192],[4.53332556,0.02518304,95.52043119],[4.53332612,0.02518475,95.52118037],[4.53332667,0.02518647,95.52192948],[4.53332723,0.02518818,95.5226785],[4.53332778,0.0251899,95.52342742],[4.53332834,0.02519161,95.52417625],[4.53332889,0.02519333,95.52492497],[4.53332944,0.02519504,95.52567359],[4.53333,0.02519676,95.52642209],[4.53333055,0.02519848,95.52717046],[4.53333111,0.02520019,95.52791872],[4.53333166,0.02520191,95.52866684],[4.53333222,0.02520362,95.52941484],[4.53333277,0.02520534,95.53016271],[4.53333333,0.02520705,95.53091046],[4.53333388,0.02520877,95.53165808],[4.53333443,0.02521048,95.53240557],[4.53333499,0.0252122,95.53315295],[4.53333554,0.02521392,95.5339002],[4.5333361,0.02521563,95.53464734],[4.53333665,0.02521735,95.53539436],[4.5333372,0.02521906,95.53614126],[4.53333776,0.02522078,95.53688804],[4.53333831,0.02522249,95.53763472],[4.53333887,0.02522421,95.53838127],[4.53333942,0.02522593,95.53912772],[4.53333997,0.02522764,95.53987405],[4.53334053,0.02522936,95.54062028],[4.53334108,0.02523107,95.54136639],[4.53334163,0.02523279,95.5421124],[4.53334219,0.02523451,95.54285831],[4.53334274,0.02523622,95.54360411],[4.53334329,0.02523794,95.5443498],[4.53334385,0.02523965,95.54509539],[4.5333444,0.02524137,95.54584089],[4.53334495,0.02524308,95.54658628],[4.53334551,0.0252448,95.54733157],[4.53334606,0.02524652,95.54807677],[4.53334661,0.02524823,95.54882187],[4.53334717,0.02524995,95.54956688],[4.53334772,0.02525166,95.55031179],[4.53334827,0.02525338,95.55105661],[4.53334883,0.0252551,95.55180134],[4.53334938,0.02525681,95.55254598],[4.53334993,0.02525853,95.55329053],[4.53335048,0.02526024,95.55403499],[4.53335104,0.02526196,95.55477937],[4.53335159,0.02526368,95.55552366],[4.53335214,0.02526539,95.55626787],[4.5333527,0.02526711,95.557012],[4.53335325,0.02526883,95.55775605],[4.5333538,0.02527054,95.55850001],[4.53335435,0.02527226,95.5592439],[4.53335491,0.02527397,95.55998772],[4.53335546,0.02527569,95.56073145],[4.53335601,0.02527741,95.56147511],[4.53335656,0.02527912,95.5622187],[4.53335712,0.02528084,95.56296222],[4.53335767,0.02528255,95.56370566],[4.53335822,0.02528427,95.56444904],[4.53335877,0.02528599,95.56519234],[4.53335933,0.0252877,95.56593558],[4.53335988,0.02528942,95.56667876],[4.53336043,0.02529114,95.56742187],[4.53336098,0.02529285,95.56816492],[4.53336153,0.02529457,95.5689079],[4.53336209,0.02529628,95.56965083],[4.53336264,0.025298,95.57039369],[4.53336319,0.02529972,95.5711365],[4.53336374,0.02530143,95.57187925],[4.53336429,0.02530315,95.57262195],[4.53336485,0.02530487,95.57336459],[4.5333654,0.02530658,95.57410718],[4.53336595,0.0253083,95.57484972],[4.5333665,0.02531002,95.57559221],[4.53333594,0.02531997,95.47467956]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1,"sOffset":338.1277365357}},{"geometry":{"coordinates":[[[4.5333665,0.02531002,95.72559221],[4.53336595,0.0253083,95.72484972],[4.5333654,0.02530658,95.72410718],[4.53336485,0.02530487,95.72336459],[4.53336429,0.02530315,95.72262195],[4.53336374,0.02530143,95.72187925],[4.53336319,0.02529972,95.7211365],[4.53336264,0.025298,95.72039369],[4.53336209,0.02529628,95.71965083],[4.53336153,0.02529457,95.7189079],[4.53336098,0.02529285,95.71816492],[4.53336043,0.02529114,95.71742187],[4.53335988,0.02528942,95.71667876],[4.53335933,0.0252877,95.71593558],[4.53335877,0.02528599,95.71519234],[4.53335822,0.02528427,95.71444904],[4.53335767,0.02528255,95.71370566],[4.53335712,0.02528084,95.71296222],[4.53335656,0.02527912,95.7122187],[4.53335601,0.02527741,95.71147511],[4.53335546,0.02527569,95.71073145],[4.53335491,0.02527397,95.70998772],[4.53335435,0.02527226,95.7092439],[4.5333538,0.02527054,95.70850001],[4.53335325,0.02526883,95.70775605],[4.5333527,0.02526711,95.707012],[4.53335214,0.02526539,95.70626787],[4.53335159,0.02526368,95.70552366],[4.53335104,0.02526196,95.70477937],[4.53335048,0.02526024,95.70403499],[4.53334993,0.02525853,95.70329053],[4.53334938,0.02525681,95.70254598],[4.53334883,0.0252551,95.70180134],[4.53334827,0.02525338,95.70105661],[4.53334772,0.02525166,95.70031179],[4.53334717,0.02524995,95.69956688],[4.53334661,0.02524823,95.69882187],[4.53334606,0.02524652,95.69807677],[4.53334551,0.0252448,95.69733157],[4.53334495,0.02524308,95.69658628],[4.5333444,0.02524137,95.69584089],[4.53334385,0.02523965,95.69509539],[4.53334329,0.02523794,95.6943498],[4.53334274,0.02523622,95.69360411],[4.53334219,0.02523451,95.69285831],[4.53334163,0.02523279,95.6921124],[4.53334108,0.02523107,95.69136639],[4.53334053,0.02522936,95.69062028],[4.53333997,0.02522764,95.68987405],[4.53333942,0.02522593,95.68912772],[4.53333887,0.02522421,95.68838127],[4.53333831,0.02522249,95.68763472],[4.53333776,0.02522078,95.68688804],[4.5333372,0.02521906,95.68614126],[4.53333665,0.02521735,95.68539436],[4.5333361,0.02521563,95.68464734],[4.53333554,0.02521392,95.6839002],[4.53333499,0.0252122,95.68315295],[4.53333443,0.02521048,95.68240557],[4.53333388,0.02520877,95.68165808],[4.53333333,0.02520705,95.68091046],[4.53333277,0.02520534,95.68016271],[4.53333222,0.02520362,95.67941484],[4.53333166,0.02520191,95.67866684],[4.53333111,0.02520019,95.67791872],[4.53333055,0.02519848,95.67717046],[4.53333,0.02519676,95.67642209],[4.53332944,0.02519504,95.67567359],[4.53332889,0.02519333,95.67492497],[4.53332834,0.02519161,95.67417625],[4.53332778,0.0251899,95.67342742],[4.53332723,0.02518818,95.6726785],[4.53332667,0.02518647,95.67192948],[4.53332612,0.02518475,95.67118037],[4.53332556,0.02518304,95.67043119],[4.53332501,0.02518132,95.66968192],[4.53332445,0.02517961,95.66893259],[4.5333239,0.02517789,95.66818319],[4.53332334,0.02517618,95.66743374],[4.53332278,0.02517446,95.66668423],[4.53332223,0.02517274,95.66593467],[4.53332167,0.02517103,95.66518507],[4.53332112,0.02516931,95.66443543],[4.53332056,0.0251676,95.66368575],[4.53332001,0.02516588,95.66293606],[4.53331945,0.02516417,95.66218634],[4.5333189,0.02516245,95.66143661],[4.53331834,0.02516074,95.66068686],[4.53331779,0.02515902,95.65993711],[4.53331723,0.02515731,95.65918737],[4.53331668,0.02515559,95.65843763],[4.53331612,0.02515388,95.6576879],[4.53331556,0.02515216,95.65693818],[4.53331501,0.02515045,95.6561885],[4.53331445,0.02514873,95.65543884],[4.5333139,0.02514702,95.65468921],[4.53331334,0.0251453,95.65393962],[4.53331279,0.02514359,95.65319008],[4.53331223,0.02514187,95.65244058],[4.53331168,0.02514016,95.65169114],[4.53331112,0.02513844,95.65094177],[4.53331056,0.02513673,95.65019246],[4.53331004,0.02513511,95.649487],[4.53331408,0.02513379,95.60093314],[4.5333146,0.02513541,95.60162037],[4.53331515,0.02513712,95.60235027],[4.5333157,0.02513884,95.60308019],[4.53331625,0.02514056,95.60381012],[4.5333168,0.02514228,95.60454007],[4.53331735,0.02514399,95.60527003],[4.5333179,0.02514571,95.60600001],[4.53331845,0.02514743,95.60673001],[4.533319,0.02514914,95.60746001],[4.53331955,0.02515086,95.60819004],[4.5333201,0.02515258,95.60892008],[4.53332065,0.02515429,95.60965014],[4.5333212,0.02515601,95.61038021],[4.53332175,0.02515773,95.6111103],[4.53332231,0.02515944,95.6118404],[4.53332286,0.02516116,95.61257052],[4.53332341,0.02516288,95.61330065],[4.53332396,0.02516459,95.6140308],[4.53332451,0.02516631,95.61476097],[4.53332506,0.02516803,95.61549115],[4.53332561,0.02516974,95.61622135],[4.53332617,0.02517146,95.61695157],[4.53332672,0.02517318,95.6176818],[4.53332727,0.02517489,95.61841204],[4.53332782,0.02517661,95.61914231],[4.53332837,0.02517833,95.61987259],[4.53332892,0.02518004,95.62060288],[4.53332948,0.02518176,95.62133319],[4.53333003,0.02518347,95.62206352],[4.53333058,0.02518519,95.62279386],[4.53333113,0.02518691,95.62352422],[4.53333169,0.02518862,95.6242546],[4.53333224,0.02519034,95.62498499],[4.53333279,0.02519206,95.6257154],[4.53333334,0.02519377,95.62644583],[4.53333389,0.02519549,95.62717627],[4.53333445,0.0251972,95.62790673],[4.533335,0.02519892,95.6286372],[4.53333555,0.02520064,95.6293677],[4.5333361,0.02520235,95.63009821],[4.53333666,0.02520407,95.63082873],[4.53333721,0.02520579,95.63155927],[4.53333776,0.0252075,95.63228983],[4.53333831,0.02520922,95.63302041],[4.53333887,0.02521093,95.633751],[4.53333942,0.02521265,95.63448161],[4.53333997,0.02521437,95.63521223],[4.53334052,0.02521608,95.63594288],[4.53334108,0.0252178,95.63667354],[4.53334163,0.02521952,95.63740421],[4.53334218,0.02522123,95.63813491],[4.53334273,0.02522295,95.63886562],[4.53334329,0.02522466,95.63959635],[4.53334384,0.02522638,95.64032709],[4.53334439,0.0252281,95.64105786],[4.53334495,0.02522981,95.64178864],[4.5333455,0.02523153,95.64251943],[4.53334605,0.02523324,95.64325025],[4.5333466,0.02523496,95.64398108],[4.53334716,0.02523668,95.64471193],[4.53334771,0.02523839,95.64544279],[4.53334826,0.02524011,95.64617368],[4.53334882,0.02524182,95.64690458],[4.53334937,0.02524354,95.6476355],[4.53334992,0.02524526,95.64836643],[4.53335048,0.02524697,95.64909739],[4.53335103,0.02524869,95.64982836],[4.53335158,0.0252504,95.65055935],[4.53335214,0.02525212,95.65129035],[4.53335269,0.02525384,95.65202138],[4.53335324,0.02525555,95.65275242],[4.5333538,0.02525727,95.65348348],[4.53335435,0.02525898,95.65421456],[4.53335491,0.0252607,95.65494565],[4.53335546,0.02526241,95.65567677],[4.53335601,0.02526413,95.6564079],[4.53335657,0.02526585,95.65713905],[4.53335712,0.02526756,95.65787021],[4.53335768,0.02526928,95.6586014],[4.53335823,0.02527099,95.6593326],[4.53335879,0.02527271,95.66006382],[4.53335934,0.02527442,95.66079506],[4.5333599,0.02527614,95.66152632],[4.53336045,0.02527785,95.6622576],[4.53336101,0.02527957,95.66298889],[4.53336157,0.02528128,95.6637202],[4.53336212,0.025283,95.66445153],[4.53336268,0.02528471,95.66518288],[4.53336323,0.02528643,95.66591425],[4.53336379,0.02528814,95.66664564],[4.53336435,0.02528986,95.66737704],[4.5333649,0.02529157,95.66810846],[4.53336546,0.02529329,95.66883991],[4.53336602,0.025295,95.66957137],[4.53336658,0.02529672,95.67030284],[4.53336713,0.02529843,95.67103434],[4.53336769,0.02530015,95.67176586],[4.53336825,0.02530186,95.67249739],[4.53336881,0.02530358,95.67322895],[4.53336937,0.02530529,95.67396052],[4.53336993,0.025307,95.67469211],[4.53337049,0.02530872,95.67542372],[4.5333665,0.02531002,95.72559221]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":1,"type":"border","predecessorId":1,"sOffset":338.1277365357}},{"geometry":{"coordinates":[[[4.53337049,0.02530872,95.67542372],[4.53336993,0.025307,95.67469211],[4.53336937,0.02530529,95.67396052],[4.53336881,0.02530358,95.67322895],[4.53336825,0.02530186,95.67249739],[4.53336769,0.02530015,95.67176586],[4.53336713,0.02529843,95.67103434],[4.53336658,0.02529672,95.67030284],[4.53336602,0.025295,95.66957137],[4.53336546,0.02529329,95.66883991],[4.5333649,0.02529157,95.66810846],[4.53336435,0.02528986,95.66737704],[4.53336379,0.02528814,95.66664564],[4.53336323,0.02528643,95.66591425],[4.53336268,0.02528471,95.66518288],[4.53336212,0.025283,95.66445153],[4.53336157,0.02528128,95.6637202],[4.53336101,0.02527957,95.66298889],[4.53336045,0.02527785,95.6622576],[4.5333599,0.02527614,95.66152632],[4.53335934,0.02527442,95.66079506],[4.53335879,0.02527271,95.66006382],[4.53335823,0.02527099,95.6593326],[4.53335768,0.02526928,95.6586014],[4.53335712,0.02526756,95.65787021],[4.53335657,0.02526585,95.65713905],[4.53335601,0.02526413,95.6564079],[4.53335546,0.02526241,95.65567677],[4.53335491,0.0252607,95.65494565],[4.53335435,0.02525898,95.65421456],[4.5333538,0.02525727,95.65348348],[4.53335324,0.02525555,95.65275242],[4.53335269,0.02525384,95.65202138],[4.53335214,0.02525212,95.65129035],[4.53335158,0.0252504,95.65055935],[4.53335103,0.02524869,95.64982836],[4.53335048,0.02524697,95.64909739],[4.53334992,0.02524526,95.64836643],[4.53334937,0.02524354,95.6476355],[4.53334882,0.02524182,95.64690458],[4.53334826,0.02524011,95.64617368],[4.53334771,0.02523839,95.64544279],[4.53334716,0.02523668,95.64471193],[4.5333466,0.02523496,95.64398108],[4.53334605,0.02523324,95.64325025],[4.5333455,0.02523153,95.64251943],[4.53334495,0.02522981,95.64178864],[4.53334439,0.0252281,95.64105786],[4.53334384,0.02522638,95.64032709],[4.53334329,0.02522466,95.63959635],[4.53334273,0.02522295,95.63886562],[4.53334218,0.02522123,95.63813491],[4.53334163,0.02521952,95.63740421],[4.53334108,0.0252178,95.63667354],[4.53334052,0.02521608,95.63594288],[4.53333997,0.02521437,95.63521223],[4.53333942,0.02521265,95.63448161],[4.53333887,0.02521093,95.633751],[4.53333831,0.02520922,95.63302041],[4.53333776,0.0252075,95.63228983],[4.53333721,0.02520579,95.63155927],[4.53333666,0.02520407,95.63082873],[4.5333361,0.02520235,95.63009821],[4.53333555,0.02520064,95.6293677],[4.533335,0.02519892,95.6286372],[4.53333445,0.0251972,95.62790673],[4.53333389,0.02519549,95.62717627],[4.53333334,0.02519377,95.62644583],[4.53333279,0.02519206,95.6257154],[4.53333224,0.02519034,95.62498499],[4.53333169,0.02518862,95.6242546],[4.53333113,0.02518691,95.62352422],[4.53333058,0.02518519,95.62279386],[4.53333003,0.02518347,95.62206352],[4.53332948,0.02518176,95.62133319],[4.53332892,0.02518004,95.62060288],[4.53332837,0.02517833,95.61987259],[4.53332782,0.02517661,95.61914231],[4.53332727,0.02517489,95.61841204],[4.53332672,0.02517318,95.6176818],[4.53332617,0.02517146,95.61695157],[4.53332561,0.02516974,95.61622135],[4.53332506,0.02516803,95.61549115],[4.53332451,0.02516631,95.61476097],[4.53332396,0.02516459,95.6140308],[4.53332341,0.02516288,95.61330065],[4.53332286,0.02516116,95.61257052],[4.53332231,0.02515944,95.6118404],[4.53332175,0.02515773,95.6111103],[4.5333212,0.02515601,95.61038021],[4.53332065,0.02515429,95.60965014],[4.5333201,0.02515258,95.60892008],[4.53331955,0.02515086,95.60819004],[4.533319,0.02514914,95.60746001],[4.53331845,0.02514743,95.60673001],[4.5333179,0.02514571,95.60600001],[4.53331735,0.02514399,95.60527003],[4.5333168,0.02514228,95.60454007],[4.53331625,0.02514056,95.60381012],[4.5333157,0.02513884,95.60308019],[4.53331515,0.02513712,95.60235027],[4.5333146,0.02513541,95.60162037],[4.53331408,0.02513379,95.60093314],[4.53332653,0.02512972,95.60093314],[4.53332705,0.02513134,95.60162037],[4.53332761,0.02513305,95.60235027],[4.53332816,0.02513477,95.60308019],[4.53332872,0.02513648,95.60381012],[4.53332928,0.0251382,95.60454007],[4.53332983,0.02513991,95.60527003],[4.53333039,0.02514163,95.60600001],[4.53333094,0.02514334,95.60673001],[4.5333315,0.02514506,95.60746001],[4.53333205,0.02514678,95.60819004],[4.53333261,0.02514849,95.60892008],[4.53333316,0.02515021,95.60965014],[4.53333372,0.02515192,95.61038021],[4.53333427,0.02515364,95.6111103],[4.53333483,0.02515535,95.6118404],[4.53333538,0.02515707,95.61257052],[4.53333593,0.02515879,95.61330065],[4.53333649,0.0251605,95.6140308],[4.53333704,0.02516222,95.61476097],[4.5333376,0.02516393,95.61549115],[4.53333815,0.02516565,95.61622135],[4.53333871,0.02516736,95.61695157],[4.53333926,0.02516908,95.6176818],[4.53333982,0.0251708,95.61841204],[4.53334037,0.02517251,95.61914231],[4.53334092,0.02517423,95.61987259],[4.53334148,0.02517594,95.62060288],[4.53334203,0.02517766,95.62133319],[4.53334259,0.02517937,95.62206352],[4.53334314,0.02518109,95.62279386],[4.53334369,0.02518281,95.62352422],[4.53334425,0.02518452,95.6242546],[4.5333448,0.02518624,95.62498499],[4.53334535,0.02518795,95.6257154],[4.53334591,0.02518967,95.62644583],[4.53334646,0.02519139,95.62717627],[4.53334702,0.0251931,95.62790673],[4.53334757,0.02519482,95.6286372],[4.53334812,0.02519653,95.6293677],[4.53334868,0.02519825,95.63009821],[4.53334923,0.02519997,95.63082873],[4.53334978,0.02520168,95.63155927],[4.53335033,0.0252034,95.63228983],[4.53335089,0.02520511,95.63302041],[4.53335144,0.02520683,95.633751],[4.53335199,0.02520855,95.63448161],[4.53335255,0.02521026,95.63521223],[4.5333531,0.02521198,95.63594288],[4.53335365,0.0252137,95.63667354],[4.5333542,0.02521541,95.63740421],[4.53335476,0.02521713,95.63813491],[4.53335531,0.02521884,95.63886562],[4.53335586,0.02522056,95.63959635],[4.53335642,0.02522228,95.64032709],[4.53335697,0.02522399,95.64105786],[4.53335752,0.02522571,95.64178864],[4.53335807,0.02522743,95.64251943],[4.53335863,0.02522914,95.64325025],[4.53335918,0.02523086,95.64398108],[4.53335973,0.02523258,95.64471193],[4.53336028,0.02523429,95.64544279],[4.53336083,0.02523601,95.64617368],[4.53336139,0.02523772,95.64690458],[4.53336194,0.02523944,95.6476355],[4.53336249,0.02524116,95.64836643],[4.53336304,0.02524287,95.64909739],[4.5333636,0.02524459,95.64982836],[4.53336415,0.02524631,95.65055935],[4.5333647,0.02524802,95.65129035],[4.53336525,0.02524974,95.65202138],[4.5333658,0.02525146,95.65275242],[4.53336635,0.02525317,95.65348348],[4.53336691,0.02525489,95.65421456],[4.53336746,0.02525661,95.65494565],[4.53336801,0.02525832,95.65567677],[4.53336856,0.02526004,95.6564079],[4.53336911,0.02526176,95.65713905],[4.53336967,0.02526347,95.65787021],[4.53337022,0.02526519,95.6586014],[4.53337077,0.02526691,95.6593326],[4.53337132,0.02526862,95.66006382],[4.53337187,0.02527034,95.66079506],[4.53337242,0.02527205,95.66152632],[4.53337298,0.02527377,95.6622576],[4.53337353,0.02527549,95.66298889],[4.53337408,0.0252772,95.6637202],[4.53337463,0.02527892,95.66445153],[4.53337518,0.02528064,95.66518288],[4.53337573,0.02528235,95.66591425],[4.53337628,0.02528407,95.66664564],[4.53337684,0.02528579,95.66737704],[4.53337739,0.0252875,95.66810846],[4.53337794,0.02528922,95.66883991],[4.53337849,0.02529094,95.66957137],[4.53337904,0.02529265,95.67030284],[4.53337959,0.02529437,95.67103434],[4.53338014,0.02529609,95.67176586],[4.5333807,0.0252978,95.67249739],[4.53338125,0.02529952,95.67322895],[4.5333818,0.02530124,95.67396052],[4.53338235,0.02530295,95.67469211],[4.5333829,0.02530467,95.67542372],[4.53337049,0.02530872,95.67542372]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":2,"type":"border","predecessorId":2,"sOffset":338.1277365357}},{"geometry":{"coordinates":[[[4.53320068,0.02517085,95.34635636],[4.53320012,0.02516914,95.34568737],[4.53319957,0.02516742,95.34501841],[4.53319902,0.02516571,95.34434946],[4.53319846,0.02516399,95.34368053],[4.53319791,0.02516228,95.34301162],[4.53319736,0.02516056,95.34234274],[4.53319681,0.02515885,95.34167389],[4.53319625,0.02515713,95.34100507],[4.5331957,0.02515542,95.34033629],[4.53319515,0.0251537,95.33966754],[4.53319459,0.02515199,95.33899884],[4.53319404,0.02515027,95.33833018],[4.53319349,0.02514856,95.33766156],[4.53319293,0.02514684,95.33699299],[4.53319238,0.02514513,95.33632447],[4.53319183,0.02514341,95.33565601],[4.53319127,0.0251417,95.33498761],[4.53319072,0.02513998,95.33431926],[4.53319017,0.02513827,95.33365098],[4.53318962,0.02513655,95.33298276],[4.53318906,0.02513484,95.33231461],[4.53318851,0.02513312,95.33164653],[4.53318796,0.02513141,95.33097853],[4.5331874,0.02512969,95.3303106],[4.53318687,0.02512805,95.32967114],[4.53320094,0.02512345,95.32967114],[4.53320147,0.02512509,95.3303106],[4.53320202,0.02512681,95.33097853],[4.53320258,0.02512852,95.33164653],[4.53320313,0.02513024,95.33231461],[4.53320368,0.02513195,95.33298276],[4.53320424,0.02513367,95.33365098],[4.53320479,0.02513538,95.33431926],[4.53320534,0.0251371,95.33498761],[4.5332059,0.02513881,95.33565601],[4.53320645,0.02514053,95.33632447],[4.53320701,0.02514224,95.33699299],[4.53320756,0.02514396,95.33766156],[4.53320811,0.02514567,95.33833018],[4.53320867,0.02514739,95.33899884],[4.53320922,0.0251491,95.33966754],[4.53320977,0.02515082,95.34033629],[4.53321033,0.02515253,95.34100507],[4.53321088,0.02515425,95.34167389],[4.53321144,0.02515596,95.34234274],[4.53321199,0.02515768,95.34301162],[4.53321254,0.02515939,95.34368053],[4.5332131,0.0251611,95.34434946],[4.53321365,0.02516282,95.34501841],[4.53321421,0.02516453,95.34568737],[4.53321476,0.02516625,95.34635636],[4.53320068,0.02517085,95.34635636]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-7,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-7,"type":"border","predecessorId":-7,"sOffset":358.5160480171}},{"geometry":{"coordinates":[[[4.53321476,0.02516625,95.34635636],[4.53321421,0.02516453,95.34568737],[4.53321365,0.02516282,95.34501841],[4.5332131,0.0251611,95.34434946],[4.53321254,0.02515939,95.34368053],[4.53321199,0.02515768,95.34301162],[4.53321144,0.02515596,95.34234274],[4.53321088,0.02515425,95.34167389],[4.53321033,0.02515253,95.34100507],[4.53320977,0.02515082,95.34033629],[4.53320922,0.0251491,95.33966754],[4.53320867,0.02514739,95.33899884],[4.53320811,0.02514567,95.33833018],[4.53320756,0.02514396,95.33766156],[4.53320701,0.02514224,95.33699299],[4.53320645,0.02514053,95.33632447],[4.5332059,0.02513881,95.33565601],[4.53320534,0.0251371,95.33498761],[4.53320479,0.02513538,95.33431926],[4.53320424,0.02513367,95.33365098],[4.53320368,0.02513195,95.33298276],[4.53320313,0.02513024,95.33231461],[4.53320258,0.02512852,95.33164653],[4.53320202,0.02512681,95.33097853],[4.53320147,0.02512509,95.3303106],[4.53320094,0.02512345,95.32967114],[4.53320224,0.02512303,95.32967114],[4.53320277,0.02512467,95.3303106],[4.53320332,0.02512638,95.33097853],[4.53320388,0.0251281,95.33164653],[4.53320443,0.02512981,95.33231461],[4.53320498,0.02513153,95.33298276],[4.53320554,0.02513324,95.33365098],[4.53320609,0.02513496,95.33431926],[4.53320664,0.02513667,95.33498761],[4.53320719,0.02513839,95.33565601],[4.53320775,0.0251401,95.33632447],[4.5332083,0.02514182,95.33699299],[4.53320885,0.02514353,95.33766156],[4.53320941,0.02514525,95.33833018],[4.53320996,0.02514696,95.33899884],[4.53321051,0.02514868,95.33966754],[4.53321107,0.02515039,95.34033629],[4.53321162,0.02515211,95.34100507],[4.53321217,0.02515382,95.34167389],[4.53321273,0.02515554,95.34234274],[4.53321328,0.02515725,95.34301162],[4.53321383,0.02515897,95.34368053],[4.53321439,0.02516068,95.34434946],[4.53321494,0.0251624,95.34501841],[4.53321549,0.02516411,95.34568737],[4.53321605,0.02516583,95.34635636],[4.53321476,0.02516625,95.34635636]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-6,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-6,"type":"border","predecessorId":-6,"sOffset":358.5160480171}},{"geometry":{"coordinates":[[[4.53321605,0.02516583,95.19635636],[4.53321549,0.02516411,95.19568737],[4.53321494,0.0251624,95.19501841],[4.53321439,0.02516068,95.19434946],[4.53321383,0.02515897,95.19368053],[4.53321328,0.02515725,95.19301162],[4.53321273,0.02515554,95.19234274],[4.53321217,0.02515382,95.19167389],[4.53321162,0.02515211,95.19100507],[4.53321107,0.02515039,95.19033629],[4.53321051,0.02514868,95.18966754],[4.53320996,0.02514696,95.18899884],[4.53320941,0.02514525,95.18833018],[4.53320885,0.02514353,95.18766156],[4.5332083,0.02514182,95.18699299],[4.53320775,0.0251401,95.18632447],[4.53320719,0.02513839,95.18565601],[4.53320664,0.02513667,95.18498761],[4.53320609,0.02513496,95.18431926],[4.53320554,0.02513324,95.18365098],[4.53320498,0.02513153,95.18298276],[4.53320443,0.02512981,95.18231461],[4.53320388,0.0251281,95.18164653],[4.53320332,0.02512638,95.18097853],[4.53320277,0.02512467,95.1803106],[4.53320224,0.02512303,95.17967114],[4.53320519,0.02512206,95.18912438],[4.53320572,0.0251237,95.18976042],[4.53320627,0.02512542,95.19042478],[4.53320682,0.02512714,95.19108923],[4.53320737,0.02512885,95.19175374],[4.53320792,0.02513057,95.19241833],[4.53320847,0.02513228,95.19308299],[4.53320902,0.025134,95.19374771],[4.53320958,0.02513571,95.1944125],[4.53321013,0.02513743,95.19507735],[4.53321068,0.02513915,95.19574225],[4.53321123,0.02514086,95.19640721],[4.53321178,0.02514258,95.19707222],[4.53321233,0.02514429,95.19773728],[4.53321288,0.02514601,95.19840238],[4.53321344,0.02514772,95.19906753],[4.53321399,0.02514944,95.19973272],[4.53321454,0.02515115,95.20039794],[4.53321509,0.02515287,95.2010632],[4.53321564,0.02515459,95.20172849],[4.53321619,0.0251563,95.20239381],[4.53321674,0.02515802,95.20305916],[4.5332173,0.02515973,95.20372453],[4.53321785,0.02516145,95.20438992],[4.5332184,0.02516316,95.20505532],[4.53321895,0.02516488,95.20572075],[4.53321605,0.02516583,95.19635636]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-5,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-5,"type":"border","predecessorId":-5,"sOffset":358.5160480171}},{"geometry":{"coordinates":[[[4.53321895,0.02516488,95.20572075],[4.5332184,0.02516316,95.20505532],[4.53321785,0.02516145,95.20438992],[4.5332173,0.02515973,95.20372453],[4.53321674,0.02515802,95.20305916],[4.53321619,0.0251563,95.20239381],[4.53321564,0.02515459,95.20172849],[4.53321509,0.02515287,95.2010632],[4.53321454,0.02515115,95.20039794],[4.53321399,0.02514944,95.19973272],[4.53321344,0.02514772,95.19906753],[4.53321288,0.02514601,95.19840238],[4.53321233,0.02514429,95.19773728],[4.53321178,0.02514258,95.19707222],[4.53321123,0.02514086,95.19640721],[4.53321068,0.02513915,95.19574225],[4.53321013,0.02513743,95.19507735],[4.53320958,0.02513571,95.1944125],[4.53320902,0.025134,95.19374771],[4.53320847,0.02513228,95.19308299],[4.53320792,0.02513057,95.19241833],[4.53320737,0.02512885,95.19175374],[4.53320682,0.02512714,95.19108923],[4.53320627,0.02512542,95.19042478],[4.53320572,0.0251237,95.18976042],[4.53320519,0.02512206,95.18912438],[4.53320622,0.02512173,95.19240961],[4.53320675,0.02512337,95.19306045],[4.5332073,0.02512508,95.19374029],[4.53320786,0.0251268,95.19442021],[4.53320841,0.02512851,95.19510022],[4.53320897,0.02513022,95.1957803],[4.53320953,0.02513194,95.19646046],[4.53321008,0.02513365,95.19714069],[4.53321064,0.02513537,95.197821],[4.53321119,0.02513708,95.19850138],[4.53321175,0.0251388,95.19918182],[4.5332123,0.02514051,95.19986232],[4.53321286,0.02514222,95.20054288],[4.53321342,0.02514394,95.2012235],[4.53321397,0.02514565,95.20190417],[4.53321453,0.02514737,95.2025849],[4.53321508,0.02514908,95.20326567],[4.53321564,0.02515079,95.20394649],[4.5332162,0.02515251,95.20462735],[4.53321675,0.02515422,95.20530825],[4.53321731,0.02515594,95.20598919],[4.53321786,0.02515765,95.20667016],[4.53321842,0.02515937,95.20735117],[4.53321898,0.02516108,95.2080322],[4.53321953,0.02516279,95.20871325],[4.53322009,0.02516451,95.20939433],[4.53321895,0.02516488,95.20572075]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-4,"type":"shoulder","predecessorId":-4,"sOffset":358.5160480171}},{"geometry":{"coordinates":[[[4.53322009,0.02516451,95.20939433],[4.53321953,0.02516279,95.20871325],[4.53321898,0.02516108,95.2080322],[4.53321842,0.02515937,95.20735117],[4.53321786,0.02515765,95.20667016],[4.53321731,0.02515594,95.20598919],[4.53321675,0.02515422,95.20530825],[4.5332162,0.02515251,95.20462735],[4.53321564,0.02515079,95.20394649],[4.53321508,0.02514908,95.20326567],[4.53321453,0.02514737,95.2025849],[4.53321397,0.02514565,95.20190417],[4.53321342,0.02514394,95.2012235],[4.53321286,0.02514222,95.20054288],[4.5332123,0.02514051,95.19986232],[4.53321175,0.0251388,95.19918182],[4.53321119,0.02513708,95.19850138],[4.53321064,0.02513537,95.197821],[4.53321008,0.02513365,95.19714069],[4.53320953,0.02513194,95.19646046],[4.53320897,0.02513022,95.1957803],[4.53320841,0.02512851,95.19510022],[4.53320786,0.0251268,95.19442021],[4.5332073,0.02512508,95.19374029],[4.53320675,0.02512337,95.19306045],[4.53320622,0.02512173,95.19240961],[4.53323473,0.0251124,95.28381852],[4.53323526,0.02511404,95.28448578],[4.53323581,0.02511576,95.28518279],[4.53323637,0.02511747,95.28587993],[4.53323692,0.02511919,95.28657718],[4.53323748,0.0251209,95.28727454],[4.53323803,0.02512262,95.28797201],[4.53323858,0.02512433,95.28866959],[4.53323914,0.02512605,95.28936726],[4.53323969,0.02512776,95.29006504],[4.53324025,0.02512948,95.29076291],[4.5332408,0.02513119,95.29146087],[4.53324136,0.02513291,95.29215892],[4.53324191,0.02513462,95.29285705],[4.53324247,0.02513634,95.29355526],[4.53324302,0.02513805,95.29425355],[4.53324358,0.02513977,95.29495191],[4.53324413,0.02514148,95.29565034],[4.53324469,0.0251432,95.29634883],[4.53324524,0.02514491,95.29704739],[4.53324579,0.02514663,95.297746],[4.53324635,0.02514834,95.29844467],[4.5332469,0.02515006,95.29914338],[4.53324746,0.02515177,95.29984215],[4.53324801,0.02515349,95.30054095],[4.53324857,0.0251552,95.3012398],[4.53322009,0.02516451,95.20939433]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3,"sOffset":358.5160480171}},{"geometry":{"coordinates":[[[4.53324857,0.0251552,95.3012398],[4.53324801,0.02515349,95.30054095],[4.53324746,0.02515177,95.29984215],[4.5332469,0.02515006,95.29914338],[4.53324635,0.02514834,95.29844467],[4.53324579,0.02514663,95.297746],[4.53324524,0.02514491,95.29704739],[4.53324469,0.0251432,95.29634883],[4.53324413,0.02514148,95.29565034],[4.53324358,0.02513977,95.29495191],[4.53324302,0.02513805,95.29425355],[4.53324247,0.02513634,95.29355526],[4.53324191,0.02513462,95.29285705],[4.53324136,0.02513291,95.29215892],[4.5332408,0.02513119,95.29146087],[4.53324025,0.02512948,95.29076291],[4.53323969,0.02512776,95.29006504],[4.53323914,0.02512605,95.28936726],[4.53323858,0.02512433,95.28866959],[4.53323803,0.02512262,95.28797201],[4.53323748,0.0251209,95.28727454],[4.53323692,0.02511919,95.28657718],[4.53323637,0.02511747,95.28587993],[4.53323581,0.02511576,95.28518279],[4.53323526,0.02511404,95.28448578],[4.53323473,0.0251124,95.28381852],[4.53326589,0.02510221,95.38372474],[4.53326642,0.02510385,95.38440799],[4.53326697,0.02510557,95.38512174],[4.53326752,0.02510728,95.38583564],[4.53326808,0.025109,95.3865497],[4.53326863,0.02511072,95.38726391],[4.53326918,0.02511243,95.38797825],[4.53326973,0.02511415,95.38869274],[4.53327028,0.02511586,95.38940736],[4.53327084,0.02511758,95.39012211],[4.53327139,0.0251193,95.39083698],[4.53327194,0.02512101,95.39155198],[4.5332725,0.02512273,95.39226709],[4.53327305,0.02512444,95.39298231],[4.5332736,0.02512616,95.39369764],[4.53327415,0.02512787,95.39441307],[4.53327471,0.02512959,95.3951286],[4.53327526,0.02513131,95.39584422],[4.53327581,0.02513302,95.39655993],[4.53327636,0.02513474,95.39727572],[4.53327692,0.02513645,95.3979916],[4.53327747,0.02513817,95.39870755],[4.53327802,0.02513989,95.39942357],[4.53327857,0.0251416,95.40013965],[4.53327913,0.02514332,95.4008558],[4.53327968,0.02514503,95.401572],[4.53324857,0.0251552,95.3012398]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2,"sOffset":358.5160480171}},{"geometry":{"coordinates":[[[4.53327968,0.02514503,95.401572],[4.53327913,0.02514332,95.4008558],[4.53327857,0.0251416,95.40013965],[4.53327802,0.02513989,95.39942357],[4.53327747,0.02513817,95.39870755],[4.53327692,0.02513645,95.3979916],[4.53327636,0.02513474,95.39727572],[4.53327581,0.02513302,95.39655993],[4.53327526,0.02513131,95.39584422],[4.53327471,0.02512959,95.3951286],[4.53327415,0.02512787,95.39441307],[4.5332736,0.02512616,95.39369764],[4.53327305,0.02512444,95.39298231],[4.5332725,0.02512273,95.39226709],[4.53327194,0.02512101,95.39155198],[4.53327139,0.0251193,95.39083698],[4.53327084,0.02511758,95.39012211],[4.53327028,0.02511586,95.38940736],[4.53326973,0.02511415,95.38869274],[4.53326918,0.02511243,95.38797825],[4.53326863,0.02511072,95.38726391],[4.53326808,0.025109,95.3865497],[4.53326752,0.02510728,95.38583564],[4.53326697,0.02510557,95.38512174],[4.53326642,0.02510385,95.38440799],[4.53326589,0.02510221,95.38372474],[4.53329618,0.0250923,95.4808264],[4.53329671,0.02509395,95.48154042],[4.53329726,0.02509566,95.48228635],[4.53329782,0.02509738,95.48303248],[4.53329837,0.02509909,95.4837788],[4.53329893,0.02510081,95.48452532],[4.53329949,0.02510252,95.48527201],[4.53330004,0.02510424,95.48601889],[4.5333006,0.02510595,95.48676594],[4.53330115,0.02510767,95.48751315],[4.53330171,0.02510938,95.48826053],[4.53330226,0.0251111,95.48900806],[4.53330282,0.02511281,95.48975574],[4.53330337,0.02511453,95.49050357],[4.53330393,0.02511624,95.49125155],[4.53330448,0.02511796,95.49199965],[4.53330504,0.02511967,95.49274789],[4.5333056,0.02512139,95.49349625],[4.53330615,0.0251231,95.49424473],[4.53330671,0.02512482,95.49499333],[4.53330726,0.02512653,95.49574203],[4.53330782,0.02512825,95.49649084],[4.53330837,0.02512997,95.49723975],[4.53330893,0.02513168,95.49798875],[4.53330949,0.0251334,95.49873783],[4.53331004,0.02513511,95.499487],[4.53327968,0.02514503,95.401572]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1,"sOffset":358.5160480171}},{"geometry":{"coordinates":[[[4.53331004,0.02513511,95.499487],[4.53330949,0.0251334,95.49873783],[4.53330893,0.02513168,95.49798875],[4.53330837,0.02512997,95.49723975],[4.53330782,0.02512825,95.49649084],[4.53330726,0.02512653,95.49574203],[4.53330671,0.02512482,95.49499333],[4.53330615,0.0251231,95.49424473],[4.5333056,0.02512139,95.49349625],[4.53330504,0.02511967,95.49274789],[4.53330448,0.02511796,95.49199965],[4.53330393,0.02511624,95.49125155],[4.53330337,0.02511453,95.49050357],[4.53330282,0.02511281,95.48975574],[4.53330226,0.0251111,95.48900806],[4.53330171,0.02510938,95.48826053],[4.53330115,0.02510767,95.48751315],[4.5333006,0.02510595,95.48676594],[4.53330004,0.02510424,95.48601889],[4.53329949,0.02510252,95.48527201],[4.53329893,0.02510081,95.48452532],[4.53329837,0.02509909,95.4837788],[4.53329782,0.02509738,95.48303248],[4.53329726,0.02509566,95.48228635],[4.53329671,0.02509395,95.48154042],[4.53329618,0.0250923,95.4808264],[4.53329907,0.02509136,95.49008534],[4.53329959,0.025093,95.49078482],[4.53330014,0.02509472,95.49151556],[4.53330069,0.02509644,95.4922465],[4.53330124,0.02509815,95.49297762],[4.53330179,0.02509987,95.49370893],[4.53330234,0.02510159,95.49444042],[4.53330289,0.0251033,95.49517208],[4.53330344,0.02510502,95.49590391],[4.53330399,0.02510674,95.4966359],[4.53330454,0.02510846,95.49736805],[4.53330509,0.02511017,95.49810035],[4.53330564,0.02511189,95.49883279],[4.53330619,0.02511361,95.49956538],[4.53330674,0.02511532,95.5002981],[4.53330729,0.02511704,95.50103095],[4.53330784,0.02511876,95.50176392],[4.53330839,0.02512048,95.50249702],[4.53330894,0.02512219,95.50323022],[4.53330949,0.02512391,95.50396354],[4.53331004,0.02512563,95.50469696],[4.53331059,0.02512734,95.50543047],[4.53331114,0.02512906,95.50616408],[4.53331169,0.02513078,95.50689777],[4.53331224,0.02513249,95.50763154],[4.53331279,0.02513421,95.50836539],[4.53331004,0.02513511,95.499487]]],"type":"Polygon"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":1,"type":"shoulder","predecessorId":0,"sOffset":358.5160480171}},{"geometry":{"coordinates":[[[4.53331279,0.02513421,95.50836539],[4.53331224,0.02513249,95.50763154],[4.53331169,0.02513078,95.50689777],[4.53331114,0.02512906,95.50616408],[4.53331059,0.02512734,95.50543047],[4.53331004,0.02512563,95.50469696],[4.53330949,0.02512391,95.50396354],[4.53330894,0.02512219,95.50323022],[4.53330839,0.02512048,95.50249702],[4.53330784,0.02511876,95.50176392],[4.53330729,0.02511704,95.50103095],[4.53330674,0.02511532,95.5002981],[4.53330619,0.02511361,95.49956538],[4.53330564,0.02511189,95.49883279],[4.53330509,0.02511017,95.49810035],[4.53330454,0.02510846,95.49736805],[4.53330399,0.02510674,95.4966359],[4.53330344,0.02510502,95.49590391],[4.53330289,0.0251033,95.49517208],[4.53330234,0.02510159,95.49444042],[4.53330179,0.02509987,95.49370893],[4.53330124,0.02509815,95.49297762],[4.53330069,0.02509644,95.4922465],[4.53330014,0.02509472,95.49151556],[4.53329959,0.025093,95.49078482],[4.53329907,0.02509136,95.49008534],[4.53330034,0.02509094,95.49418149],[4.53330087,0.02509258,95.49488189],[4.53330142,0.0250943,95.4956136],[4.53330197,0.02509602,95.49634551],[4.53330252,0.02509774,95.49707761],[4.53330307,0.02509945,95.49780989],[4.53330362,0.02510117,95.49854235],[4.53330417,0.02510289,95.49927499],[4.53330472,0.0251046,95.5000078],[4.53330527,0.02510632,95.50074077],[4.53330582,0.02510804,95.5014739],[4.53330637,0.02510976,95.50220718],[4.53330692,0.02511147,95.5029406],[4.53330747,0.02511319,95.50367417],[4.53330802,0.02511491,95.50440788],[4.53330857,0.02511662,95.50514172],[4.53330912,0.02511834,95.50587568],[4.53330967,0.02512006,95.50660976],[4.53331022,0.02512177,95.50734396],[4.53331077,0.02512349,95.50807827],[4.53331132,0.02512521,95.50881268],[4.53331187,0.02512693,95.50954719],[4.53331242,0.02512864,95.51028179],[4.53331297,0.02513036,95.51101648],[4.53331352,0.02513208,95.51175125],[4.53331407,0.02513379,95.51248609],[4.53331279,0.02513421,95.50836539]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":2,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":2,"type":"border","predecessorId":0,"sOffset":358.5160480171}},{"geometry":{"coordinates":[[[4.53331407,0.02513379,95.51248609],[4.53331352,0.02513208,95.51175125],[4.53331297,0.02513036,95.51101648],[4.53331242,0.02512864,95.51028179],[4.53331187,0.02512693,95.50954719],[4.53331132,0.02512521,95.50881268],[4.53331077,0.02512349,95.50807827],[4.53331022,0.02512177,95.50734396],[4.53330967,0.02512006,95.50660976],[4.53330912,0.02511834,95.50587568],[4.53330857,0.02511662,95.50514172],[4.53330802,0.02511491,95.50440788],[4.53330747,0.02511319,95.50367417],[4.53330692,0.02511147,95.5029406],[4.53330637,0.02510976,95.50220718],[4.53330582,0.02510804,95.5014739],[4.53330527,0.02510632,95.50074077],[4.53330472,0.0251046,95.5000078],[4.53330417,0.02510289,95.49927499],[4.53330362,0.02510117,95.49854235],[4.53330307,0.02509945,95.49780989],[4.53330252,0.02509774,95.49707761],[4.53330197,0.02509602,95.49634551],[4.53330142,0.0250943,95.4956136],[4.53330087,0.02509258,95.49488189],[4.53330034,0.02509094,95.49418149],[4.53330163,0.02509052,95.49418149],[4.53330215,0.02509216,95.49488189],[4.5333027,0.02509388,95.4956136],[4.53330325,0.0250956,95.49634551],[4.5333038,0.02509732,95.49707761],[4.53330435,0.02509903,95.49780989],[4.5333049,0.02510075,95.49854235],[4.53330545,0.02510247,95.49927499],[4.533306,0.02510418,95.5000078],[4.53330655,0.0251059,95.50074077],[4.5333071,0.02510762,95.5014739],[4.53330765,0.02510934,95.50220718],[4.5333082,0.02511105,95.5029406],[4.53330875,0.02511277,95.50367417],[4.5333093,0.02511449,95.50440788],[4.53330985,0.0251162,95.50514172],[4.53331041,0.02511792,95.50587568],[4.53331096,0.02511964,95.50660976],[4.53331151,0.02512135,95.50734396],[4.53331206,0.02512307,95.50807827],[4.53331261,0.02512479,95.50881268],[4.53331316,0.02512651,95.50954719],[4.53331371,0.02512822,95.51028179],[4.53331426,0.02512994,95.51101648],[4.53331481,0.02513166,95.51175125],[4.53331536,0.02513337,95.51248609],[4.53331407,0.02513379,95.51248609]]],"type":"Polygon"},"type":"feature","properties":{"successorId":3,"level":true,"roadId":"1000100","id":3,"type":"border","predecessorId":0,"sOffset":358.5160480171}},{"geometry":{"coordinates":[[[4.53331536,0.02513337,95.51248609],[4.53331481,0.02513166,95.51175125],[4.53331426,0.02512994,95.51101648],[4.53331371,0.02512822,95.51028179],[4.53331316,0.02512651,95.50954719],[4.53331261,0.02512479,95.50881268],[4.53331206,0.02512307,95.50807827],[4.53331151,0.02512135,95.50734396],[4.53331096,0.02511964,95.50660976],[4.53331041,0.02511792,95.50587568],[4.53330985,0.0251162,95.50514172],[4.5333093,0.02511449,95.50440788],[4.53330875,0.02511277,95.50367417],[4.5333082,0.02511105,95.5029406],[4.53330765,0.02510934,95.50220718],[4.5333071,0.02510762,95.5014739],[4.53330655,0.0251059,95.50074077],[4.533306,0.02510418,95.5000078],[4.53330545,0.02510247,95.49927499],[4.5333049,0.02510075,95.49854235],[4.53330435,0.02509903,95.49780989],[4.5333038,0.02509732,95.49707761],[4.53330325,0.0250956,95.49634551],[4.5333027,0.02509388,95.4956136],[4.53330215,0.02509216,95.49488189],[4.53330163,0.02509052,95.49418149],[4.53331266,0.02508691,95.49418149],[4.53331319,0.02508855,95.49488189],[4.53331375,0.02509027,95.4956136],[4.5333143,0.02509198,95.49634551],[4.53331486,0.0250937,95.49707761],[4.53331542,0.02509542,95.49780989],[4.53331597,0.02509713,95.49854235],[4.53331653,0.02509885,95.49927499],[4.53331708,0.02510056,95.5000078],[4.53331764,0.02510228,95.50074077],[4.53331819,0.02510399,95.5014739],[4.53331875,0.02510571,95.50220718],[4.53331931,0.02510742,95.5029406],[4.53331986,0.02510914,95.50367417],[4.53332042,0.02511085,95.50440788],[4.53332097,0.02511257,95.50514172],[4.53332153,0.02511428,95.50587568],[4.53332208,0.025116,95.50660976],[4.53332264,0.02511771,95.50734396],[4.5333232,0.02511943,95.50807827],[4.53332375,0.02512115,95.50881268],[4.53332431,0.02512286,95.50954719],[4.53332486,0.02512458,95.51028179],[4.53332542,0.02512629,95.51101648],[4.53332598,0.02512801,95.51175125],[4.53332653,0.02512972,95.51248609],[4.53331536,0.02513337,95.51248609]]],"type":"Polygon"},"type":"feature","properties":{"successorId":4,"level":true,"roadId":"1000100","id":4,"type":"border","predecessorId":0,"sOffset":358.5160480171}},{"geometry":{"coordinates":[[[4.53318687,0.02512805,95.32967114],[4.53318632,0.02512634,95.32899238],[4.53318576,0.02512462,95.32831371],[4.53318551,0.02512384,95.32800172],[4.53319957,0.02511924,95.32800172],[4.53319983,0.02512002,95.32831371],[4.53320038,0.02512174,95.32899238],[4.53320094,0.02512345,95.32967114],[4.53318687,0.02512805,95.32967114]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-7,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-7,"type":"border","predecessorId":-7,"sOffset":363.5075432686}},{"geometry":{"coordinates":[[[4.53320094,0.02512345,95.32967114],[4.53320038,0.02512174,95.32899238],[4.53319983,0.02512002,95.32831371],[4.53319957,0.02511924,95.32800172],[4.53320087,0.02511881,95.32800172],[4.53320113,0.0251196,95.32831371],[4.53320169,0.02512131,95.32899238],[4.53320224,0.02512303,95.32967114],[4.53320094,0.02512345,95.32967114]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-6,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-6,"type":"border","predecessorId":-6,"sOffset":363.5075432686}},{"geometry":{"coordinates":[[[4.53320224,0.02512303,95.17967114],[4.53320169,0.02512131,95.17899238],[4.53320113,0.0251196,95.17831371],[4.53320087,0.02511881,95.17800172],[4.53320383,0.02511784,95.1874866],[4.53320409,0.02511863,95.18779268],[4.53320464,0.02512035,95.18845849],[4.53320519,0.02512206,95.18912438],[4.53320224,0.02512303,95.17967114]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-5,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-5,"type":"border","predecessorId":-5,"sOffset":363.5075432686}},{"geometry":{"coordinates":[[[4.53320519,0.02512206,95.18912438],[4.53320464,0.02512035,95.18845849],[4.53320409,0.02511863,95.18779268],[4.53320383,0.02511784,95.1874866],[4.53320484,0.02511751,95.19072041],[4.5332051,0.0251183,95.19103609],[4.53320566,0.02512001,95.1917228],[4.53320622,0.02512173,95.19240961],[4.53320519,0.02512206,95.18912438]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-4,"type":"shoulder","predecessorId":-4,"sOffset":363.5075432686}},{"geometry":{"coordinates":[[[4.53320622,0.02512173,95.19240961],[4.53320566,0.02512001,95.1917228],[4.5332051,0.0251183,95.19103609],[4.53320484,0.02511751,95.19072041],[4.53323336,0.02510818,95.28210345],[4.53323362,0.02510897,95.28242395],[4.53323417,0.02511069,95.28312117],[4.53323473,0.0251124,95.28381852],[4.53320622,0.02512173,95.19240961]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3,"sOffset":363.5075432686}},{"geometry":{"coordinates":[[[4.53323473,0.0251124,95.28381852],[4.53323417,0.02511069,95.28312117],[4.53323362,0.02510897,95.28242395],[4.53323336,0.02510818,95.28210345],[4.53326453,0.02509799,95.38195856],[4.53326478,0.02509878,95.3822886],[4.53326534,0.02510049,95.38300658],[4.53326589,0.02510221,95.38372474],[4.53323473,0.0251124,95.28381852]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2,"sOffset":363.5075432686}},{"geometry":{"coordinates":[[[4.53326589,0.02510221,95.38372474],[4.53326534,0.02510049,95.38300658],[4.53326478,0.02509878,95.3822886],[4.53326453,0.02509799,95.38195856],[4.53329481,0.02508808,95.47899298],[4.53329507,0.02508887,95.47933556],[4.53329562,0.02509059,95.48008087],[4.53329618,0.0250923,95.4808264],[4.53326589,0.02510221,95.38372474]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1,"sOffset":363.5075432686}},{"geometry":{"coordinates":[[[4.53329618,0.0250923,95.4808264],[4.53329562,0.02509059,95.48008087],[4.53329507,0.02508887,95.47933556],[4.53329481,0.02508808,95.47899298],[4.53329771,0.02508714,95.4882851],[4.53329796,0.02508792,95.48862148],[4.53329852,0.02508964,95.48935331],[4.53329907,0.02509136,95.49008534],[4.53329618,0.0250923,95.4808264]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":1,"type":"shoulder","predecessorId":1,"sOffset":363.5075432686}},{"geometry":{"coordinates":[[[4.53329907,0.02509136,95.49008534],[4.53329852,0.02508964,95.48935331],[4.53329796,0.02508792,95.48862148],[4.53329771,0.02508714,95.4882851],[4.53329899,0.02508672,95.49237888],[4.53329924,0.02508751,95.49271571],[4.53329979,0.02508922,95.49344849],[4.53330034,0.02509094,95.49418149],[4.53329907,0.02509136,95.49008534]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":2,"type":"border","predecessorId":2,"sOffset":363.5075432686}},{"geometry":{"coordinates":[[[4.53330034,0.02509094,95.49418149],[4.53329979,0.02508922,95.49344849],[4.53329924,0.02508751,95.49271571],[4.53329899,0.02508672,95.49237888],[4.53330027,0.0250863,95.49237888],[4.53330053,0.02508709,95.49271571],[4.53330108,0.0250888,95.49344849],[4.53330163,0.02509052,95.49418149],[4.53330034,0.02509094,95.49418149]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":true,"roadId":"1000100","id":3,"type":"border","predecessorId":3,"sOffset":363.5075432686}},{"geometry":{"coordinates":[[[4.53330163,0.02509052,95.49418149],[4.53330108,0.0250888,95.49344849],[4.53330053,0.02508709,95.49271571],[4.53330027,0.0250863,95.49237888],[4.53331129,0.02508269,95.49237888],[4.53331155,0.02508348,95.49271571],[4.53331211,0.0250852,95.49344849],[4.53331266,0.02508691,95.49418149],[4.53330163,0.02509052,95.49418149]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":4,"type":"none","predecessorId":4,"sOffset":363.5075432686}},{"geometry":{"coordinates":[[[4.53318551,0.02512384,95.32800172],[4.53318495,0.02512212,95.32732237],[4.53318439,0.02512041,95.32664311],[4.53318384,0.02511869,95.32596395],[4.53318328,0.02511698,95.3252849],[4.53318273,0.02511527,95.32460595],[4.53318217,0.02511355,95.3239271],[4.53318161,0.02511184,95.32324837],[4.53318106,0.02511012,95.32256974],[4.5331805,0.02510841,95.32189124],[4.53317995,0.0251067,95.32121285],[4.53317939,0.02510498,95.32053458],[4.53317883,0.02510327,95.31985643],[4.53317828,0.02510155,95.31917841],[4.53317772,0.02509984,95.31850051],[4.53317717,0.02509813,95.31782275],[4.53317661,0.02509641,95.31714512],[4.53317606,0.0250947,95.31646763],[4.5331755,0.02509298,95.31579027],[4.53317495,0.02509127,95.31511303],[4.53317439,0.02508956,95.31443591],[4.53317384,0.02508784,95.3137589],[4.53317328,0.02508613,95.313082],[4.53317273,0.02508441,95.3124052],[4.53317217,0.0250827,95.31172849],[4.53317162,0.02508099,95.31105187],[4.53317106,0.02507927,95.31037534],[4.53317051,0.02507756,95.30969889],[4.53316995,0.02507584,95.3090225],[4.5331694,0.02507413,95.30834619],[4.53316884,0.02507241,95.30766993],[4.53316829,0.0250707,95.30699373],[4.53316773,0.02506898,95.30631757],[4.53316718,0.02506727,95.30564146],[4.53316667,0.02506569,95.30501989],[4.53318074,0.02506109,95.30501989],[4.53318125,0.02506266,95.30564146],[4.5331818,0.02506438,95.30631757],[4.53318236,0.02506609,95.30699373],[4.53318291,0.02506781,95.30766993],[4.53318347,0.02506952,95.30834619],[4.53318402,0.02507124,95.3090225],[4.53318458,0.02507295,95.30969889],[4.53318513,0.02507467,95.31037534],[4.53318569,0.02507638,95.31105187],[4.53318624,0.02507809,95.31172849],[4.53318679,0.02507981,95.3124052],[4.53318735,0.02508152,95.313082],[4.5331879,0.02508324,95.3137589],[4.53318846,0.02508495,95.31443591],[4.53318901,0.02508667,95.31511303],[4.53318957,0.02508838,95.31579027],[4.53319012,0.02509009,95.31646763],[4.53319068,0.02509181,95.31714512],[4.53319123,0.02509352,95.31782275],[4.53319179,0.02509524,95.31850051],[4.53319235,0.02509695,95.31917841],[4.5331929,0.02509867,95.31985643],[4.53319346,0.02510038,95.32053458],[4.53319401,0.02510209,95.32121285],[4.53319457,0.02510381,95.32189124],[4.53319512,0.02510552,95.32256974],[4.53319568,0.02510724,95.32324837],[4.53319623,0.02510895,95.3239271],[4.53319679,0.02511067,95.32460595],[4.53319735,0.02511238,95.3252849],[4.5331979,0.02511409,95.32596395],[4.53319846,0.02511581,95.32664311],[4.53319901,0.02511752,95.32732237],[4.53319957,0.02511924,95.32800172],[4.53318551,0.02512384,95.32800172]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-7,"type":"border","predecessorId":-7,"sOffset":363.9994925097}},{"geometry":{"coordinates":[[[4.53319957,0.02511924,95.32800172],[4.53319901,0.02511752,95.32732237],[4.53319846,0.02511581,95.32664311],[4.5331979,0.02511409,95.32596395],[4.53319735,0.02511238,95.3252849],[4.53319679,0.02511067,95.32460595],[4.53319623,0.02510895,95.3239271],[4.53319568,0.02510724,95.32324837],[4.53319512,0.02510552,95.32256974],[4.53319457,0.02510381,95.32189124],[4.53319401,0.02510209,95.32121285],[4.53319346,0.02510038,95.32053458],[4.5331929,0.02509867,95.31985643],[4.53319235,0.02509695,95.31917841],[4.53319179,0.02509524,95.31850051],[4.53319123,0.02509352,95.31782275],[4.53319068,0.02509181,95.31714512],[4.53319012,0.02509009,95.31646763],[4.53318957,0.02508838,95.31579027],[4.53318901,0.02508667,95.31511303],[4.53318846,0.02508495,95.31443591],[4.5331879,0.02508324,95.3137589],[4.53318735,0.02508152,95.313082],[4.53318679,0.02507981,95.3124052],[4.53318624,0.02507809,95.31172849],[4.53318569,0.02507638,95.31105187],[4.53318513,0.02507467,95.31037534],[4.53318458,0.02507295,95.30969889],[4.53318402,0.02507124,95.3090225],[4.53318347,0.02506952,95.30834619],[4.53318291,0.02506781,95.30766993],[4.53318236,0.02506609,95.30699373],[4.5331818,0.02506438,95.30631757],[4.53318125,0.02506266,95.30564146],[4.53318074,0.02506109,95.30501989],[4.53318203,0.02506066,95.30501989],[4.53318254,0.02506224,95.30564146],[4.5331831,0.02506395,95.30631757],[4.53318365,0.02506567,95.30699373],[4.53318421,0.02506738,95.30766993],[4.53318476,0.0250691,95.30834619],[4.53318532,0.02507081,95.3090225],[4.53318587,0.02507253,95.30969889],[4.53318643,0.02507424,95.31037534],[4.53318698,0.02507596,95.31105187],[4.53318754,0.02507767,95.31172849],[4.53318809,0.02507938,95.3124052],[4.53318865,0.0250811,95.313082],[4.5331892,0.02508281,95.3137589],[4.53318976,0.02508453,95.31443591],[4.53319031,0.02508624,95.31511303],[4.53319087,0.02508796,95.31579027],[4.53319142,0.02508967,95.31646763],[4.53319198,0.02509138,95.31714512],[4.53319253,0.0250931,95.31782275],[4.53319309,0.02509481,95.31850051],[4.53319365,0.02509653,95.31917841],[4.5331942,0.02509824,95.31985643],[4.53319476,0.02509996,95.32053458],[4.53319531,0.02510167,95.32121285],[4.53319587,0.02510338,95.32189124],[4.53319642,0.0251051,95.32256974],[4.53319698,0.02510681,95.32324837],[4.53319754,0.02510853,95.3239271],[4.53319809,0.02511024,95.32460595],[4.53319865,0.02511195,95.3252849],[4.5331992,0.02511367,95.32596395],[4.53319976,0.02511538,95.32664311],[4.53320032,0.0251171,95.32732237],[4.53320087,0.02511881,95.32800172],[4.53319957,0.02511924,95.32800172]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-6,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-6,"type":"border","predecessorId":-6,"sOffset":363.9994925097}},{"geometry":{"coordinates":[[[4.53320087,0.02511881,95.17800172],[4.53320032,0.0251171,95.17732237],[4.53319976,0.02511538,95.17664311],[4.5331992,0.02511367,95.17596395],[4.53319865,0.02511195,95.1752849],[4.53319809,0.02511024,95.17460595],[4.53319754,0.02510853,95.1739271],[4.53319698,0.02510681,95.17324837],[4.53319642,0.0251051,95.17256974],[4.53319587,0.02510338,95.17189124],[4.53319531,0.02510167,95.17121285],[4.53319476,0.02509996,95.17053458],[4.5331942,0.02509824,95.16985643],[4.53319365,0.02509653,95.16917841],[4.53319309,0.02509481,95.16850051],[4.53319253,0.0250931,95.16782275],[4.53319198,0.02509138,95.16714512],[4.53319142,0.02508967,95.16646763],[4.53319087,0.02508796,95.16579027],[4.53319031,0.02508624,95.16511303],[4.53318976,0.02508453,95.16443591],[4.5331892,0.02508281,95.1637589],[4.53318865,0.0250811,95.163082],[4.53318809,0.02507938,95.1624052],[4.53318754,0.02507767,95.16172849],[4.53318698,0.02507596,95.16105187],[4.53318643,0.02507424,95.16037534],[4.53318587,0.02507253,95.15969889],[4.53318532,0.02507081,95.1590225],[4.53318476,0.0250691,95.15834619],[4.53318421,0.02506738,95.15766993],[4.53318365,0.02506567,95.15699373],[4.5331831,0.02506395,95.15631757],[4.53318254,0.02506224,95.15564146],[4.53318203,0.02506066,95.15501989],[4.53318513,0.02505965,95.16487972],[4.53318564,0.02506123,95.16549112],[4.53318619,0.02506294,95.16615618],[4.53318674,0.02506466,95.16682128],[4.53318729,0.02506637,95.16748643],[4.53318784,0.02506809,95.16815163],[4.53318839,0.0250698,95.1688169],[4.53318894,0.02507152,95.16948223],[4.53318949,0.02507324,95.17014763],[4.53319005,0.02507495,95.17081312],[4.5331906,0.02507667,95.17147868],[4.53319115,0.02507838,95.17214434],[4.5331917,0.0250801,95.17281009],[4.53319225,0.02508182,95.17347595],[4.5331928,0.02508353,95.17414191],[4.53319335,0.02508525,95.17480798],[4.5331939,0.02508696,95.17547417],[4.53319445,0.02508868,95.17614048],[4.533195,0.02509039,95.17680693],[4.53319556,0.02509211,95.17747351],[4.53319611,0.02509382,95.17814022],[4.53319666,0.02509554,95.17880706],[4.53319721,0.02509726,95.17947403],[4.53319776,0.02509897,95.18014113],[4.53319831,0.02510069,95.18080834],[4.53319887,0.0251024,95.18147568],[4.53319942,0.02510412,95.18214313],[4.53319997,0.02510583,95.18281069],[4.53320052,0.02510755,95.18347837],[4.53320107,0.02510926,95.18414616],[4.53320163,0.02511098,95.18481405],[4.53320218,0.0251127,95.18548204],[4.53320273,0.02511441,95.18615013],[4.53320328,0.02511613,95.18681832],[4.53320383,0.02511784,95.1874866],[4.53320087,0.02511881,95.17800172]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-5,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-5,"type":"border","predecessorId":-5,"sOffset":363.9994925097}},{"geometry":{"coordinates":[[[4.53320383,0.02511784,95.1874866],[4.53320328,0.02511613,95.18681832],[4.53320273,0.02511441,95.18615013],[4.53320218,0.0251127,95.18548204],[4.53320163,0.02511098,95.18481405],[4.53320107,0.02510926,95.18414616],[4.53320052,0.02510755,95.18347837],[4.53319997,0.02510583,95.18281069],[4.53319942,0.02510412,95.18214313],[4.53319887,0.0251024,95.18147568],[4.53319831,0.02510069,95.18080834],[4.53319776,0.02509897,95.18014113],[4.53319721,0.02509726,95.17947403],[4.53319666,0.02509554,95.17880706],[4.53319611,0.02509382,95.17814022],[4.53319556,0.02509211,95.17747351],[4.533195,0.02509039,95.17680693],[4.53319445,0.02508868,95.17614048],[4.5331939,0.02508696,95.17547417],[4.53319335,0.02508525,95.17480798],[4.5331928,0.02508353,95.17414191],[4.53319225,0.02508182,95.17347595],[4.5331917,0.0250801,95.17281009],[4.53319115,0.02507838,95.17214434],[4.5331906,0.02507667,95.17147868],[4.53319005,0.02507495,95.17081312],[4.53318949,0.02507324,95.17014763],[4.53318894,0.02507152,95.16948223],[4.53318839,0.0250698,95.1688169],[4.53318784,0.02506809,95.16815163],[4.53318729,0.02506637,95.16748643],[4.53318674,0.02506466,95.16682128],[4.53318619,0.02506294,95.16615618],[4.53318564,0.02506123,95.16549112],[4.53318513,0.02505965,95.16487972],[4.53318592,0.02505939,95.1673687],[4.53318643,0.02506097,95.16800012],[4.53318699,0.02506268,95.16868696],[4.53318754,0.02506439,95.16937385],[4.5331881,0.02506611,95.17006081],[4.53318866,0.02506782,95.17074783],[4.53318922,0.02506954,95.17143492],[4.53318977,0.02507125,95.1721221],[4.53319033,0.02507296,95.17280935],[4.53319089,0.02507468,95.1734967],[4.53319144,0.02507639,95.17418414],[4.533192,0.0250781,95.17487168],[4.53319256,0.02507982,95.17555932],[4.53319312,0.02508153,95.17624708],[4.53319368,0.02508324,95.17693496],[4.53319423,0.02508496,95.17762296],[4.53319479,0.02508667,95.17831109],[4.53319535,0.02508838,95.17899936],[4.53319591,0.0250901,95.17968777],[4.53319647,0.02509181,95.18037632],[4.53319702,0.02509353,95.18106502],[4.53319758,0.02509524,95.18175386],[4.53319814,0.02509695,95.18244284],[4.5331987,0.02509867,95.18313195],[4.53319926,0.02510038,95.1838212],[4.53319981,0.02510209,95.18451058],[4.53320037,0.02510381,95.18520008],[4.53320093,0.02510552,95.18588971],[4.53320149,0.02510723,95.18657947],[4.53320205,0.02510895,95.18726934],[4.53320261,0.02511066,95.18795933],[4.53320317,0.02511237,95.18864944],[4.53320373,0.02511408,95.18933965],[4.53320428,0.0251158,95.19002998],[4.53320484,0.02511751,95.19072041],[4.53320383,0.02511784,95.1874866]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-4,"type":"shoulder","predecessorId":-4,"sOffset":363.9994925097}},{"geometry":{"coordinates":[[[4.53320484,0.02511751,95.19072041],[4.53320428,0.0251158,95.19002998],[4.53320373,0.02511408,95.18933965],[4.53320317,0.02511237,95.18864944],[4.53320261,0.02511066,95.18795933],[4.53320205,0.02510895,95.18726934],[4.53320149,0.02510723,95.18657947],[4.53320093,0.02510552,95.18588971],[4.53320037,0.02510381,95.18520008],[4.53319981,0.02510209,95.18451058],[4.53319926,0.02510038,95.1838212],[4.5331987,0.02509867,95.18313195],[4.53319814,0.02509695,95.18244284],[4.53319758,0.02509524,95.18175386],[4.53319702,0.02509353,95.18106502],[4.53319647,0.02509181,95.18037632],[4.53319591,0.0250901,95.17968777],[4.53319535,0.02508838,95.17899936],[4.53319479,0.02508667,95.17831109],[4.53319423,0.02508496,95.17762296],[4.53319368,0.02508324,95.17693496],[4.53319312,0.02508153,95.17624708],[4.53319256,0.02507982,95.17555932],[4.533192,0.0250781,95.17487168],[4.53319144,0.02507639,95.17418414],[4.53319089,0.02507468,95.1734967],[4.53319033,0.02507296,95.17280935],[4.53318977,0.02507125,95.1721221],[4.53318922,0.02506954,95.17143492],[4.53318866,0.02506782,95.17074783],[4.5331881,0.02506611,95.17006081],[4.53318754,0.02506439,95.16937385],[4.53318699,0.02506268,95.16868696],[4.53318643,0.02506097,95.16800012],[4.53318592,0.02505939,95.1673687],[4.53321455,0.02505002,95.25841969],[4.53321506,0.02505159,95.25905931],[4.53321561,0.02505331,95.25975513],[4.53321617,0.02505502,95.26045107],[4.53321672,0.02505674,95.26114713],[4.53321727,0.02505845,95.26184331],[4.53321783,0.02506017,95.26253963],[4.53321838,0.02506188,95.26323607],[4.53321894,0.0250636,95.26393266],[4.53321949,0.02506531,95.26462939],[4.53322005,0.02506703,95.26532628],[4.5332206,0.02506874,95.26602331],[4.53322115,0.02507046,95.26672051],[4.53322171,0.02507217,95.26741787],[4.53322226,0.02507389,95.2681154],[4.53322282,0.0250756,95.26881311],[4.53322337,0.02507732,95.26951099],[4.53322393,0.02507903,95.27020906],[4.53322448,0.02508075,95.27090732],[4.53322504,0.02508246,95.27160577],[4.53322559,0.02508418,95.27230441],[4.53322615,0.02508589,95.27300324],[4.5332267,0.02508761,95.27370225],[4.53322726,0.02508932,95.27440144],[4.53322781,0.02509104,95.27510081],[4.53322837,0.02509275,95.27580036],[4.53322892,0.02509447,95.27650007],[4.53322948,0.02509618,95.27719995],[4.53323003,0.02509789,95.27789999],[4.53323059,0.02509961,95.27860019],[4.53323114,0.02510132,95.27930054],[4.5332317,0.02510304,95.28000105],[4.53323225,0.02510475,95.28070171],[4.53323281,0.02510647,95.28140251],[4.53323336,0.02510818,95.28210345],[4.53320484,0.02511751,95.19072041]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3,"sOffset":363.9994925097}},{"geometry":{"coordinates":[[[4.53323336,0.02510818,95.28210345],[4.53323281,0.02510647,95.28140251],[4.53323225,0.02510475,95.28070171],[4.5332317,0.02510304,95.28000105],[4.53323114,0.02510132,95.27930054],[4.53323059,0.02509961,95.27860019],[4.53323003,0.02509789,95.27789999],[4.53322948,0.02509618,95.27719995],[4.53322892,0.02509447,95.27650007],[4.53322837,0.02509275,95.27580036],[4.53322781,0.02509104,95.27510081],[4.53322726,0.02508932,95.27440144],[4.5332267,0.02508761,95.27370225],[4.53322615,0.02508589,95.27300324],[4.53322559,0.02508418,95.27230441],[4.53322504,0.02508246,95.27160577],[4.53322448,0.02508075,95.27090732],[4.53322393,0.02507903,95.27020906],[4.53322337,0.02507732,95.26951099],[4.53322282,0.0250756,95.26881311],[4.53322226,0.02507389,95.2681154],[4.53322171,0.02507217,95.26741787],[4.53322115,0.02507046,95.26672051],[4.5332206,0.02506874,95.26602331],[4.53322005,0.02506703,95.26532628],[4.53321949,0.02506531,95.26462939],[4.53321894,0.0250636,95.26393266],[4.53321838,0.02506188,95.26323607],[4.53321783,0.02506017,95.26253963],[4.53321727,0.02505845,95.26184331],[4.53321672,0.02505674,95.26114713],[4.53321617,0.02505502,95.26045107],[4.53321561,0.02505331,95.25975513],[4.53321506,0.02505159,95.25905931],[4.53321455,0.02505002,95.25841969],[4.5332457,0.02503982,95.3574793],[4.53324621,0.02504139,95.35813953],[4.53324677,0.02504311,95.35885784],[4.53324732,0.02504482,95.35957634],[4.53324787,0.02504654,95.36029502],[4.53324843,0.02504825,95.3610139],[4.53324898,0.02504997,95.36173298],[4.53324954,0.02505168,95.36245226],[4.53325009,0.0250534,95.36317175],[4.53325065,0.02505511,95.36389144],[4.5332512,0.02505683,95.36461135],[4.53325176,0.02505855,95.36533149],[4.53325231,0.02506026,95.36605184],[4.53325286,0.02506198,95.36677242],[4.53325342,0.02506369,95.36749323],[4.53325397,0.02506541,95.36821428],[4.53325453,0.02506712,95.36893557],[4.53325508,0.02506884,95.3696571],[4.53325564,0.02507055,95.37037887],[4.53325619,0.02507227,95.3711009],[4.53325675,0.02507398,95.37182318],[4.5332573,0.0250757,95.3725457],[4.53325786,0.02507741,95.37326845],[4.53325842,0.02507913,95.37399144],[4.53325897,0.02508084,95.37471467],[4.53325953,0.02508256,95.37543811],[4.53326008,0.02508427,95.37616178],[4.53326064,0.02508599,95.37688567],[4.53326119,0.0250877,95.37760976],[4.53326175,0.02508942,95.37833407],[4.5332623,0.02509113,95.37905858],[4.53326286,0.02509284,95.37978329],[4.53326342,0.02509456,95.38050819],[4.53326397,0.02509627,95.38123328],[4.53326453,0.02509799,95.38195856],[4.53323336,0.02510818,95.28210345]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2,"sOffset":363.9994925097}},{"geometry":{"coordinates":[[[4.53326453,0.02509799,95.38195856],[4.53326397,0.02509627,95.38123328],[4.53326342,0.02509456,95.38050819],[4.53326286,0.02509284,95.37978329],[4.5332623,0.02509113,95.37905858],[4.53326175,0.02508942,95.37833407],[4.53326119,0.0250877,95.37760976],[4.53326064,0.02508599,95.37688567],[4.53326008,0.02508427,95.37616178],[4.53325953,0.02508256,95.37543811],[4.53325897,0.02508084,95.37471467],[4.53325842,0.02507913,95.37399144],[4.53325786,0.02507741,95.37326845],[4.5332573,0.0250757,95.3725457],[4.53325675,0.02507398,95.37182318],[4.53325619,0.02507227,95.3711009],[4.53325564,0.02507055,95.37037887],[4.53325508,0.02506884,95.3696571],[4.53325453,0.02506712,95.36893557],[4.53325397,0.02506541,95.36821428],[4.53325342,0.02506369,95.36749323],[4.53325286,0.02506198,95.36677242],[4.53325231,0.02506026,95.36605184],[4.53325176,0.02505855,95.36533149],[4.5332512,0.02505683,95.36461135],[4.53325065,0.02505511,95.36389144],[4.53325009,0.0250534,95.36317175],[4.53324954,0.02505168,95.36245226],[4.53324898,0.02504997,95.36173298],[4.53324843,0.02504825,95.3610139],[4.53324787,0.02504654,95.36029502],[4.53324732,0.02504482,95.35957634],[4.53324677,0.02504311,95.35885784],[4.53324621,0.02504139,95.35813953],[4.5332457,0.02503982,95.3574793],[4.53327602,0.02502989,95.45387334],[4.53327652,0.02503147,95.45455003],[4.53327708,0.02503318,95.4552863],[4.53327763,0.0250349,95.45602283],[4.53327818,0.02503661,95.45675962],[4.53327874,0.02503833,95.45749666],[4.53327929,0.02504005,95.45823397],[4.53327984,0.02504176,95.45897155],[4.5332804,0.02504348,95.45970939],[4.53328095,0.02504519,95.46044751],[4.53328151,0.02504691,95.4611859],[4.53328206,0.02504863,95.46192457],[4.53328261,0.02505034,95.46266353],[4.53328317,0.02505206,95.46340277],[4.53328372,0.02505377,95.4641423],[4.53328427,0.02505549,95.46488213],[4.53328483,0.0250572,95.46562225],[4.53328538,0.02505892,95.46636267],[4.53328594,0.02506064,95.46710339],[4.53328649,0.02506235,95.46784442],[4.53328705,0.02506407,95.46858574],[4.5332876,0.02506578,95.46932736],[4.53328815,0.0250675,95.47006928],[4.53328871,0.02506921,95.47081148],[4.53328926,0.02507093,95.47155395],[4.53328982,0.02507264,95.47229671],[4.53329037,0.02507436,95.47303973],[4.53329093,0.02507608,95.47378301],[4.53329148,0.02507779,95.47452656],[4.53329204,0.02507951,95.47527036],[4.53329259,0.02508122,95.47601441],[4.53329315,0.02508294,95.4767587],[4.5332937,0.02508465,95.47750323],[4.53329426,0.02508637,95.47824799],[4.53329481,0.02508808,95.47899298],[4.53326453,0.02509799,95.38195856]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1,"sOffset":363.9994925097}},{"geometry":{"coordinates":[[[4.53329481,0.02508808,95.47899298],[4.53329426,0.02508637,95.47824799],[4.5332937,0.02508465,95.47750323],[4.53329315,0.02508294,95.4767587],[4.53329259,0.02508122,95.47601441],[4.53329204,0.02507951,95.47527036],[4.53329148,0.02507779,95.47452656],[4.53329093,0.02507608,95.47378301],[4.53329037,0.02507436,95.47303973],[4.53328982,0.02507264,95.47229671],[4.53328926,0.02507093,95.47155395],[4.53328871,0.02506921,95.47081148],[4.53328815,0.0250675,95.47006928],[4.5332876,0.02506578,95.46932736],[4.53328705,0.02506407,95.46858574],[4.53328649,0.02506235,95.46784442],[4.53328594,0.02506064,95.46710339],[4.53328538,0.02505892,95.46636267],[4.53328483,0.0250572,95.46562225],[4.53328427,0.02505549,95.46488213],[4.53328372,0.02505377,95.4641423],[4.53328317,0.02505206,95.46340277],[4.53328261,0.02505034,95.46266353],[4.53328206,0.02504863,95.46192457],[4.53328151,0.02504691,95.4611859],[4.53328095,0.02504519,95.46044751],[4.5332804,0.02504348,95.45970939],[4.53327984,0.02504176,95.45897155],[4.53327929,0.02504005,95.45823397],[4.53327874,0.02503833,95.45749666],[4.53327818,0.02503661,95.45675962],[4.53327763,0.0250349,95.45602283],[4.53327708,0.02503318,95.4552863],[4.53327652,0.02503147,95.45455003],[4.53327602,0.02502989,95.45387334],[4.53327984,0.02502864,95.46604691],[4.53328036,0.02503021,95.46675612],[4.53328093,0.02503192,95.46752778],[4.53328149,0.02503364,95.46829973],[4.53328205,0.02503535,95.46907195],[4.53328262,0.02503706,95.46984445],[4.53328318,0.02503877,95.47061725],[4.53328374,0.02504049,95.47139033],[4.53328431,0.0250422,95.4721637],[4.53328487,0.02504391,95.47293737],[4.53328544,0.02504562,95.47371134],[4.533286,0.02504734,95.47448561],[4.53328656,0.02504905,95.47526018],[4.53328713,0.02505076,95.47603506],[4.53328769,0.02505247,95.47681026],[4.53328826,0.02505419,95.47758577],[4.53328882,0.0250559,95.4783616],[4.53328939,0.02505761,95.47913775],[4.53328995,0.02505932,95.47991423],[4.53329051,0.02506103,95.48069103],[4.53329108,0.02506275,95.48146816],[4.53329164,0.02506446,95.4822456],[4.53329221,0.02506617,95.48302336],[4.53329277,0.02506788,95.48380142],[4.53329334,0.0250696,95.48457979],[4.5332939,0.02507131,95.48535845],[4.53329447,0.02507302,95.4861374],[4.53329503,0.02507473,95.48691664],[4.5332956,0.02507644,95.48769616],[4.53329616,0.02507816,95.48847596],[4.53329673,0.02507987,95.48925602],[4.53329729,0.02508158,95.49003635],[4.53329786,0.02508329,95.49081694],[4.53329842,0.02508501,95.49159779],[4.53329899,0.02508672,95.49237888],[4.53329481,0.02508808,95.47899298]]],"type":"Polygon"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":1,"type":"shoulder","predecessorId":0,"sOffset":363.9994925097}},{"geometry":{"coordinates":[[[4.53329899,0.02508672,95.49237888],[4.53329842,0.02508501,95.49159779],[4.53329786,0.02508329,95.49081694],[4.53329729,0.02508158,95.49003635],[4.53329673,0.02507987,95.48925602],[4.53329616,0.02507816,95.48847596],[4.5332956,0.02507644,95.48769616],[4.53329503,0.02507473,95.48691664],[4.53329447,0.02507302,95.4861374],[4.5332939,0.02507131,95.48535845],[4.53329334,0.0250696,95.48457979],[4.53329277,0.02506788,95.48380142],[4.53329221,0.02506617,95.48302336],[4.53329164,0.02506446,95.4822456],[4.53329108,0.02506275,95.48146816],[4.53329051,0.02506103,95.48069103],[4.53328995,0.02505932,95.47991423],[4.53328939,0.02505761,95.47913775],[4.53328882,0.0250559,95.4783616],[4.53328826,0.02505419,95.47758577],[4.53328769,0.02505247,95.47681026],[4.53328713,0.02505076,95.47603506],[4.53328656,0.02504905,95.47526018],[4.533286,0.02504734,95.47448561],[4.53328544,0.02504562,95.47371134],[4.53328487,0.02504391,95.47293737],[4.53328431,0.0250422,95.4721637],[4.53328374,0.02504049,95.47139033],[4.53328318,0.02503877,95.47061725],[4.53328262,0.02503706,95.46984445],[4.53328205,0.02503535,95.46907195],[4.53328149,0.02503364,95.46829973],[4.53328093,0.02503192,95.46752778],[4.53328036,0.02503021,95.46675612],[4.53327984,0.02502864,95.46604691],[4.53329246,0.02502451,95.46604691],[4.53329297,0.02502608,95.46675612],[4.53329352,0.0250278,95.46752778],[4.53329408,0.02502951,95.46829973],[4.53329463,0.02503123,95.46907195],[4.53329519,0.02503295,95.46984445],[4.53329574,0.02503466,95.47061725],[4.53329629,0.02503638,95.47139033],[4.53329685,0.02503809,95.4721637],[4.5332974,0.02503981,95.47293737],[4.53329796,0.02504152,95.47371134],[4.53329851,0.02504324,95.47448561],[4.53329907,0.02504496,95.47526018],[4.53329962,0.02504667,95.47603506],[4.53330018,0.02504839,95.47681026],[4.53330073,0.0250501,95.47758577],[4.53330129,0.02505182,95.4783616],[4.53330184,0.02505353,95.47913775],[4.5333024,0.02505525,95.47991423],[4.53330296,0.02505696,95.48069103],[4.53330351,0.02505868,95.48146816],[4.53330407,0.02506039,95.4822456],[4.53330462,0.02506211,95.48302336],[4.53330518,0.02506383,95.48380142],[4.53330573,0.02506554,95.48457979],[4.53330629,0.02506726,95.48535845],[4.53330685,0.02506897,95.4861374],[4.5333074,0.02507069,95.48691664],[4.53330796,0.0250724,95.48769616],[4.53330851,0.02507412,95.48847596],[4.53330907,0.02507583,95.48925602],[4.53330963,0.02507755,95.49003635],[4.53331018,0.02507926,95.49081694],[4.53331074,0.02508098,95.49159779],[4.53331129,0.02508269,95.49237888],[4.53329899,0.02508672,95.49237888]]],"type":"Polygon"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":2,"type":"none","predecessorId":0,"sOffset":363.9994925097}},{"geometry":{"coordinates":[[[4.53314251,0.02507361,95.30501989],[4.53314196,0.02507189,95.30434812],[4.53314141,0.02507018,95.30367503],[4.53314085,0.02506846,95.30300084],[4.5331403,0.02506675,95.30232579],[4.53313975,0.02506503,95.30165009],[4.5331392,0.02506332,95.30097399],[4.53313864,0.0250616,95.3002977],[4.53313809,0.02505989,95.29962146],[4.53313754,0.02505817,95.29894548],[4.53313698,0.02505646,95.29827],[4.53313643,0.02505474,95.29759525],[4.53313588,0.02505303,95.29692144],[4.53313532,0.02505131,95.2962488],[4.53313477,0.0250496,95.29557757],[4.53313422,0.02504788,95.29490797],[4.53313367,0.02504617,95.29424021],[4.53313313,0.02504445,95.29357454],[4.53313258,0.02504274,95.29291117],[4.53313203,0.02504102,95.29225032],[4.53313149,0.0250393,95.29159223],[4.53313095,0.02503758,95.29093694],[4.5331304,0.02503586,95.29028054],[4.53312986,0.02503415,95.2896154],[4.53312931,0.02503243,95.28893856],[4.53312876,0.02503072,95.28825195],[4.53312821,0.025029,95.2875577],[4.53312765,0.02502729,95.28685795],[4.53312709,0.02502558,95.28615482],[4.53312651,0.02502387,95.2854504],[4.53312591,0.02502217,95.28474586],[4.53312529,0.02502048,95.28404144],[4.53312467,0.02501879,95.28333733],[4.53312404,0.0250171,95.28263374],[4.53312342,0.02501541,95.28193086],[4.5331228,0.02501371,95.2812289],[4.53312221,0.02501201,95.28052761],[4.53312163,0.0250103,95.27981747],[4.53312106,0.0250086,95.27909198],[4.53312049,0.02500689,95.27835699],[4.53311993,0.02500517,95.27761886],[4.53311936,0.02500346,95.27688397],[4.5331188,0.02500175,95.27615641],[4.53311824,0.02500004,95.2754314],[4.53311767,0.02499833,95.27470543],[4.5331171,0.02499662,95.27397857],[4.53311654,0.02499491,95.27325102],[4.53311597,0.0249932,95.27252301],[4.5331154,0.02499149,95.27179473],[4.53311482,0.02498978,95.27106641],[4.53311425,0.02498808,95.27033825],[4.53311368,0.02498637,95.26961046],[4.53311311,0.02498466,95.26888326],[4.53311253,0.02498295,95.26815685],[4.53311196,0.02498124,95.26743145],[4.53311139,0.02497954,95.26670726],[4.53311082,0.02497783,95.26598449],[4.53311025,0.02497612,95.26526335],[4.53310967,0.02497441,95.26454382],[4.5331091,0.0249727,95.26382568],[4.53310853,0.02497099,95.26310869],[4.53310797,0.02496928,95.26239261],[4.5331074,0.02496758,95.26167722],[4.53310683,0.02496587,95.26096228],[4.53310626,0.02496416,95.26024755],[4.53310569,0.02496245,95.25953281],[4.53310512,0.02496074,95.25881795],[4.53310456,0.02495903,95.25810295],[4.53310399,0.02495732,95.25738783],[4.53310342,0.02495561,95.25667258],[4.53310286,0.0249539,95.25595722],[4.53310229,0.02495219,95.25524175],[4.53310172,0.02495048,95.25452616],[4.53310116,0.02494877,95.25381047],[4.53310059,0.02494706,95.25309468],[4.53310003,0.02494535,95.25237878],[4.53309946,0.02494363,95.25166275],[4.5330989,0.02494192,95.25094656],[4.53309834,0.02494021,95.25023019],[4.53309777,0.0249385,95.24951362],[4.53309721,0.02493679,95.2487968],[4.53309665,0.02493508,95.24807973],[4.53309609,0.02493337,95.24736237],[4.53309552,0.02493166,95.2466447],[4.53309496,0.02492994,95.24592668],[4.5330944,0.02492823,95.24520831],[4.53309384,0.02492652,95.24448954],[4.53309328,0.02492481,95.24377035],[4.53309272,0.0249231,95.24305071],[4.53309216,0.02492139,95.24233058],[4.5330916,0.02491967,95.24160991],[4.53309104,0.02491796,95.24088867],[4.53309048,0.02491625,95.24016682],[4.53308992,0.02491454,95.23944432],[4.53308936,0.02491282,95.23872114],[4.5330888,0.02491111,95.23799723],[4.53308825,0.0249094,95.23727256],[4.53308769,0.02490769,95.23654709],[4.53308713,0.02490597,95.23582078],[4.53308657,0.02490426,95.23509359],[4.53308601,0.02490255,95.23436548],[4.53308545,0.02490084,95.23363659],[4.5330849,0.02489912,95.23290718],[4.53308434,0.02489741,95.23217752],[4.53308378,0.0248957,95.2314479],[4.53308322,0.02489398,95.23071859],[4.53308267,0.02489227,95.22998987],[4.53308211,0.02489056,95.22926202],[4.53308155,0.02488884,95.22853531],[4.533081,0.02488713,95.22781001],[4.53308045,0.02488542,95.22708634],[4.53307989,0.0248837,95.22636417],[4.53307934,0.02488199,95.22564334],[4.53307879,0.02488027,95.22492364],[4.53307824,0.02487856,95.2242049],[4.53307769,0.02487684,95.22348694],[4.53307714,0.02487513,95.22276957],[4.53307659,0.02487341,95.22205261],[4.53307604,0.0248717,95.22133587],[4.53307549,0.02486998,95.22061917],[4.53307494,0.02486826,95.21990232],[4.53307439,0.02486655,95.21918515],[4.53307384,0.02486483,95.21846747],[4.53307329,0.02486312,95.2177491],[4.53307274,0.0248614,95.21702985],[4.53307219,0.02485969,95.21630954],[4.53307164,0.02485797,95.21558799],[4.53307108,0.02485626,95.21486501],[4.53307053,0.02485455,95.21414043],[4.53306997,0.02485283,95.21341418],[4.5330694,0.02485112,95.2126863],[4.53306884,0.02484941,95.21195683],[4.53306827,0.0248477,95.2112258],[4.53306769,0.024846,95.21049326],[4.53306712,0.02484429,95.20975926],[4.53306654,0.02484258,95.20902382],[4.53306596,0.02484088,95.20828698],[4.53306537,0.02483917,95.2075488],[4.53306479,0.02483747,95.2068093],[4.5330642,0.02483577,95.20606854],[4.53306361,0.02483406,95.20532654],[4.53306303,0.02483236,95.20458335],[4.53306244,0.02483066,95.203839],[4.53306185,0.02482895,95.20309355],[4.53306127,0.02482725,95.20234702],[4.53306068,0.02482555,95.20159946],[4.5330601,0.02482384,95.20085091],[4.53305952,0.02482214,95.2001014],[4.53305895,0.02482043,95.19935098],[4.53305837,0.02481872,95.19859969],[4.5330578,0.02481701,95.19784757],[4.53305724,0.0248153,95.1970947],[4.53305667,0.02481359,95.19634184],[4.53305611,0.02481188,95.19558944],[4.53305555,0.02481017,95.19483764],[4.53305499,0.02480846,95.19408657],[4.53305444,0.02480674,95.19333639],[4.53305388,0.02480503,95.19258724],[4.53305333,0.02480332,95.19183927],[4.53305277,0.02480161,95.19109262],[4.53305222,0.02479989,95.18971112],[4.53305167,0.02479818,95.18061959],[4.5330512,0.02479675,95.17147248],[4.53308237,0.02478648,95.17147248],[4.53308595,0.02478689,95.18061959],[4.53308978,0.02478752,95.18971112],[4.53309144,0.02478887,95.19109262],[4.53309199,0.02479058,95.19183927],[4.53309255,0.02479229,95.19258724],[4.53309311,0.02479401,95.19333639],[4.53309367,0.02479572,95.19408657],[4.53309423,0.02479743,95.19483764],[4.53309479,0.02479915,95.19558944],[4.53309535,0.02480086,95.19634184],[4.53309591,0.02480257,95.1970947],[4.53309647,0.02480428,95.19784757],[4.53309703,0.02480599,95.19859969],[4.53309759,0.02480771,95.19935098],[4.53309815,0.02480942,95.2001014],[4.53309871,0.02481113,95.20085091],[4.53309927,0.02481284,95.20159946],[4.53309983,0.02481456,95.20234702],[4.53310039,0.02481627,95.20309355],[4.53310096,0.02481798,95.203839],[4.53310152,0.02481969,95.20458335],[4.53310208,0.02482141,95.20532654],[4.53310264,0.02482312,95.20606854],[4.5331032,0.02482483,95.2068093],[4.53310376,0.02482654,95.2075488],[4.53310432,0.02482826,95.20828698],[4.53310488,0.02482997,95.20902382],[4.53310543,0.02483168,95.20975926],[4.53310599,0.02483339,95.21049326],[4.53310655,0.02483511,95.2112258],[4.53310711,0.02483682,95.21195683],[4.53310767,0.02483853,95.2126863],[4.53310823,0.02484025,95.21341418],[4.53310879,0.02484196,95.21414043],[4.53310934,0.02484367,95.21486501],[4.5331099,0.02484539,95.21558799],[4.53311046,0.0248471,95.21630954],[4.53311101,0.02484881,95.21702985],[4.53311157,0.02485053,95.2177491],[4.53311213,0.02485224,95.21846747],[4.53311268,0.02485395,95.21918515],[4.53311324,0.02485567,95.21990232],[4.5331138,0.02485738,95.22061917],[4.53311436,0.02485909,95.22133587],[4.53311491,0.02486081,95.22205261],[4.53311547,0.02486252,95.22276957],[4.53311603,0.02486423,95.22348694],[4.53311659,0.02486595,95.2242049],[4.53311715,0.02486766,95.22492364],[4.53311771,0.02486937,95.22564334],[4.53311827,0.02487109,95.22636417],[4.53311883,0.0248728,95.22708634],[4.53311939,0.02487451,95.22781001],[4.53311995,0.02487622,95.22853531],[4.53312051,0.02487793,95.22926202],[4.53312108,0.02487965,95.22998987],[4.53312164,0.02488136,95.23071859],[4.53312221,0.02488307,95.2314479],[4.53312277,0.02488478,95.23217752],[4.53312334,0.02488649,95.23290718],[4.5331239,0.0248882,95.23363659],[4.53312447,0.02488991,95.23436548],[4.53312503,0.02489162,95.23509359],[4.5331256,0.02489333,95.23582078],[4.53312616,0.02489504,95.23654709],[4.53312673,0.02489676,95.23727256],[4.53312729,0.02489847,95.23799723],[4.53312786,0.02490018,95.23872114],[4.53312842,0.02490189,95.23944432],[4.53312898,0.0249036,95.24016682],[4.53312955,0.02490531,95.24088867],[4.53313011,0.02490702,95.24160991],[4.53313068,0.02490873,95.24233058],[4.53313124,0.02491044,95.24305071],[4.53313181,0.02491215,95.24377035],[4.53313237,0.02491387,95.24448954],[4.53313294,0.02491558,95.24520831],[4.5331335,0.02491729,95.24592668],[4.53313407,0.024919,95.2466447],[4.53313463,0.02492071,95.24736237],[4.5331352,0.02492242,95.24807973],[4.53313576,0.02492413,95.2487968],[4.53313633,0.02492584,95.24951362],[4.53313689,0.02492755,95.25023019],[4.53313746,0.02492927,95.25094656],[4.53313802,0.02493098,95.25166275],[4.53313859,0.02493269,95.25237878],[4.53313915,0.0249344,95.25309468],[4.53313972,0.02493611,95.25381047],[4.53314028,0.02493782,95.25452616],[4.53314085,0.02493953,95.25524175],[4.53314141,0.02494124,95.25595722],[4.53314198,0.02494295,95.25667258],[4.53314254,0.02494466,95.25738783],[4.53314311,0.02494637,95.25810295],[4.53314367,0.02494808,95.25881795],[4.53314424,0.0249498,95.25953281],[4.53314481,0.02495151,95.26024755],[4.53314537,0.02495322,95.26096228],[4.53314594,0.02495493,95.26167722],[4.5331465,0.02495664,95.26239261],[4.53314707,0.02495835,95.26310869],[4.53314764,0.02496006,95.26382568],[4.53314821,0.02496177,95.26454382],[4.53314877,0.02496348,95.26526335],[4.53314934,0.02496519,95.26598449],[4.53314991,0.0249669,95.26670726],[4.53315048,0.02496861,95.26743145],[4.53315105,0.02497032,95.26815685],[4.53315162,0.02497203,95.26888326],[4.53315219,0.02497374,95.26961046],[4.53315276,0.02497545,95.27033825],[4.53315333,0.02497715,95.27106641],[4.5331539,0.02497886,95.27179473],[4.53315447,0.02498057,95.27252301],[4.53315505,0.02498228,95.27325102],[4.53315562,0.02498399,95.27397857],[4.53315619,0.0249857,95.27470543],[4.53315676,0.02498741,95.2754314],[4.53315733,0.02498912,95.27615641],[4.5331579,0.02499083,95.27688397],[4.53315847,0.02499254,95.27761886],[4.53315905,0.02499424,95.27835699],[4.53315962,0.02499595,95.27909198],[4.53316019,0.02499766,95.27981747],[4.53316076,0.02499937,95.28052761],[4.53316132,0.02500108,95.2812289],[4.53316188,0.0250028,95.28193086],[4.53316244,0.02500451,95.28263374],[4.53316301,0.02500622,95.28333733],[4.53316357,0.02500793,95.28404144],[4.53316413,0.02500964,95.28474586],[4.5331647,0.02501135,95.2854504],[4.53316526,0.02501307,95.28615482],[4.53316582,0.02501478,95.28685795],[4.53316639,0.02501649,95.2875577],[4.53316695,0.0250182,95.28825195],[4.5331675,0.02501992,95.28893856],[4.53316806,0.02502163,95.2896154],[4.53316861,0.02502335,95.29028054],[4.53316916,0.02502506,95.29093694],[4.5331697,0.02502678,95.29159223],[4.53317025,0.0250285,95.29225032],[4.5331708,0.02503021,95.29291117],[4.53317135,0.02503193,95.29357454],[4.5331719,0.02503364,95.29424021],[4.53317245,0.02503536,95.29490797],[4.533173,0.02503707,95.29557757],[4.53317356,0.02503879,95.2962488],[4.53317411,0.02504051,95.29692144],[4.53317466,0.02504222,95.29759525],[4.53317521,0.02504394,95.29827],[4.53317577,0.02504565,95.29894548],[4.53317632,0.02504737,95.29962146],[4.53317687,0.02504908,95.3002977],[4.53317743,0.0250508,95.30097399],[4.53317798,0.02505251,95.30165009],[4.53317853,0.02505423,95.30232579],[4.53317909,0.02505594,95.30300084],[4.53317964,0.02505766,95.30367503],[4.53318019,0.02505937,95.30434812],[4.53318074,0.02506109,95.30501989],[4.53314251,0.02507361,95.30501989]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-7,"type":"none","predecessorId":0,"sOffset":370.7833669163}},{"geometry":{"coordinates":[[[4.53318074,0.02506109,95.30501989],[4.53318019,0.02505937,95.30434812],[4.53317964,0.02505766,95.30367503],[4.53317909,0.02505594,95.30300084],[4.53317853,0.02505423,95.30232579],[4.53317798,0.02505251,95.30165009],[4.53317743,0.0250508,95.30097399],[4.53317687,0.02504908,95.3002977],[4.53317632,0.02504737,95.29962146],[4.53317577,0.02504565,95.29894548],[4.53317521,0.02504394,95.29827],[4.53317466,0.02504222,95.29759525],[4.53317411,0.02504051,95.29692144],[4.53317356,0.02503879,95.2962488],[4.533173,0.02503707,95.29557757],[4.53317245,0.02503536,95.29490797],[4.5331719,0.02503364,95.29424021],[4.53317135,0.02503193,95.29357454],[4.5331708,0.02503021,95.29291117],[4.53317025,0.0250285,95.29225032],[4.5331697,0.02502678,95.29159223],[4.53316916,0.02502506,95.29093694],[4.53316861,0.02502335,95.29028054],[4.53316806,0.02502163,95.2896154],[4.5331675,0.02501992,95.28893856],[4.53316695,0.0250182,95.28825195],[4.53316639,0.02501649,95.2875577],[4.53316582,0.02501478,95.28685795],[4.53316526,0.02501307,95.28615482],[4.5331647,0.02501135,95.2854504],[4.53316413,0.02500964,95.28474586],[4.53316357,0.02500793,95.28404144],[4.53316301,0.02500622,95.28333733],[4.53316244,0.02500451,95.28263374],[4.53316188,0.0250028,95.28193086],[4.53316132,0.02500108,95.2812289],[4.53316076,0.02499937,95.28052761],[4.53316019,0.02499766,95.27981747],[4.53315962,0.02499595,95.27909198],[4.53315905,0.02499424,95.27835699],[4.53315847,0.02499254,95.27761886],[4.5331579,0.02499083,95.27688397],[4.53315733,0.02498912,95.27615641],[4.53315676,0.02498741,95.2754314],[4.53315619,0.0249857,95.27470543],[4.53315562,0.02498399,95.27397857],[4.53315505,0.02498228,95.27325102],[4.53315447,0.02498057,95.27252301],[4.5331539,0.02497886,95.27179473],[4.53315333,0.02497715,95.27106641],[4.53315276,0.02497545,95.27033825],[4.53315219,0.02497374,95.26961046],[4.53315162,0.02497203,95.26888326],[4.53315105,0.02497032,95.26815685],[4.53315048,0.02496861,95.26743145],[4.53314991,0.0249669,95.26670726],[4.53314934,0.02496519,95.26598449],[4.53314877,0.02496348,95.26526335],[4.53314821,0.02496177,95.26454382],[4.53314764,0.02496006,95.26382568],[4.53314707,0.02495835,95.26310869],[4.5331465,0.02495664,95.26239261],[4.53314594,0.02495493,95.26167722],[4.53314537,0.02495322,95.26096228],[4.53314481,0.02495151,95.26024755],[4.53314424,0.0249498,95.25953281],[4.53314367,0.02494808,95.25881795],[4.53314311,0.02494637,95.25810295],[4.53314254,0.02494466,95.25738783],[4.53314198,0.02494295,95.25667258],[4.53314141,0.02494124,95.25595722],[4.53314085,0.02493953,95.25524175],[4.53314028,0.02493782,95.25452616],[4.53313972,0.02493611,95.25381047],[4.53313915,0.0249344,95.25309468],[4.53313859,0.02493269,95.25237878],[4.53313802,0.02493098,95.25166275],[4.53313746,0.02492927,95.25094656],[4.53313689,0.02492755,95.25023019],[4.53313633,0.02492584,95.24951362],[4.53313576,0.02492413,95.2487968],[4.5331352,0.02492242,95.24807973],[4.53313463,0.02492071,95.24736237],[4.53313407,0.024919,95.2466447],[4.5331335,0.02491729,95.24592668],[4.53313294,0.02491558,95.24520831],[4.53313237,0.02491387,95.24448954],[4.53313181,0.02491215,95.24377035],[4.53313124,0.02491044,95.24305071],[4.53313068,0.02490873,95.24233058],[4.53313011,0.02490702,95.24160991],[4.53312955,0.02490531,95.24088867],[4.53312898,0.0249036,95.24016682],[4.53312842,0.02490189,95.23944432],[4.53312786,0.02490018,95.23872114],[4.53312729,0.02489847,95.23799723],[4.53312673,0.02489676,95.23727256],[4.53312616,0.02489504,95.23654709],[4.5331256,0.02489333,95.23582078],[4.53312503,0.02489162,95.23509359],[4.53312447,0.02488991,95.23436548],[4.5331239,0.0248882,95.23363659],[4.53312334,0.02488649,95.23290718],[4.53312277,0.02488478,95.23217752],[4.53312221,0.02488307,95.2314479],[4.53312164,0.02488136,95.23071859],[4.53312108,0.02487965,95.22998987],[4.53312051,0.02487793,95.22926202],[4.53311995,0.02487622,95.22853531],[4.53311939,0.02487451,95.22781001],[4.53311883,0.0248728,95.22708634],[4.53311827,0.02487109,95.22636417],[4.53311771,0.02486937,95.22564334],[4.53311715,0.02486766,95.22492364],[4.53311659,0.02486595,95.2242049],[4.53311603,0.02486423,95.22348694],[4.53311547,0.02486252,95.22276957],[4.53311491,0.02486081,95.22205261],[4.53311436,0.02485909,95.22133587],[4.5331138,0.02485738,95.22061917],[4.53311324,0.02485567,95.21990232],[4.53311268,0.02485395,95.21918515],[4.53311213,0.02485224,95.21846747],[4.53311157,0.02485053,95.2177491],[4.53311101,0.02484881,95.21702985],[4.53311046,0.0248471,95.21630954],[4.5331099,0.02484539,95.21558799],[4.53310934,0.02484367,95.21486501],[4.53310879,0.02484196,95.21414043],[4.53310823,0.02484025,95.21341418],[4.53310767,0.02483853,95.2126863],[4.53310711,0.02483682,95.21195683],[4.53310655,0.02483511,95.2112258],[4.53310599,0.02483339,95.21049326],[4.53310543,0.02483168,95.20975926],[4.53310488,0.02482997,95.20902382],[4.53310432,0.02482826,95.20828698],[4.53310376,0.02482654,95.2075488],[4.5331032,0.02482483,95.2068093],[4.53310264,0.02482312,95.20606854],[4.53310208,0.02482141,95.20532654],[4.53310152,0.02481969,95.20458335],[4.53310096,0.02481798,95.203839],[4.53310039,0.02481627,95.20309355],[4.53309983,0.02481456,95.20234702],[4.53309927,0.02481284,95.20159946],[4.53309871,0.02481113,95.20085091],[4.53309815,0.02480942,95.2001014],[4.53309759,0.02480771,95.19935098],[4.53309703,0.02480599,95.19859969],[4.53309647,0.02480428,95.19784757],[4.53309591,0.02480257,95.1970947],[4.53309535,0.02480086,95.19634184],[4.53309479,0.02479915,95.19558944],[4.53309423,0.02479743,95.19483764],[4.53309367,0.02479572,95.19408657],[4.53309311,0.02479401,95.19333639],[4.53309255,0.02479229,95.19258724],[4.53309199,0.02479058,95.19183927],[4.53309144,0.02478887,95.19109262],[4.53308978,0.02478752,95.18971112],[4.53308595,0.02478689,95.18061959],[4.53308237,0.02478648,95.17147248],[4.53308554,0.02478543,95.17147248],[4.53308874,0.02478597,95.18061959],[4.53309198,0.0247868,95.18971112],[4.53309275,0.02478844,95.19109262],[4.53309331,0.02479015,95.19183927],[4.53309387,0.02479186,95.19258724],[4.53309444,0.02479357,95.19333639],[4.533095,0.02479528,95.19408657],[4.53309556,0.02479699,95.19483764],[4.53309613,0.0247987,95.19558944],[4.53309669,0.02480041,95.19634184],[4.53309726,0.02480213,95.1970947],[4.53309783,0.02480384,95.19784757],[4.53309839,0.02480555,95.19859969],[4.53309896,0.02480726,95.19935098],[4.53309952,0.02480897,95.2001014],[4.53310009,0.02481068,95.20085091],[4.53310065,0.02481239,95.20159946],[4.53310122,0.0248141,95.20234702],[4.53310178,0.02481581,95.20309355],[4.53310235,0.02481752,95.203839],[4.53310291,0.02481923,95.20458335],[4.53310347,0.02482095,95.20532654],[4.53310404,0.02482266,95.20606854],[4.5331046,0.02482437,95.2068093],[4.53310516,0.02482608,95.2075488],[4.53310573,0.02482779,95.20828698],[4.53310629,0.0248295,95.20902382],[4.53310685,0.02483122,95.20975926],[4.53310741,0.02483293,95.21049326],[4.53310798,0.02483464,95.2112258],[4.53310854,0.02483635,95.21195683],[4.5331091,0.02483806,95.2126863],[4.53310966,0.02483978,95.21341418],[4.53311022,0.02484149,95.21414043],[4.53311078,0.0248432,95.21486501],[4.53311134,0.02484491,95.21558799],[4.5331119,0.02484663,95.21630954],[4.53311245,0.02484834,95.21702985],[4.53311301,0.02485005,95.2177491],[4.53311357,0.02485177,95.21846747],[4.53311413,0.02485348,95.21918515],[4.53311469,0.02485519,95.21990232],[4.53311525,0.02485691,95.22061917],[4.5331158,0.02485862,95.22133587],[4.53311636,0.02486033,95.22205261],[4.53311692,0.02486204,95.22276957],[4.53311748,0.02486376,95.22348694],[4.53311804,0.02486547,95.2242049],[4.5331186,0.02486718,95.22492364],[4.53311916,0.0248689,95.22564334],[4.53311972,0.02487061,95.22636417],[4.53312028,0.02487232,95.22708634],[4.53312084,0.02487403,95.22781001],[4.5331214,0.02487574,95.22853531],[4.53312197,0.02487746,95.22926202],[4.53312253,0.02487917,95.22998987],[4.53312309,0.02488088,95.23071859],[4.53312366,0.02488259,95.2314479],[4.53312422,0.0248843,95.23217752],[4.53312479,0.02488601,95.23290718],[4.53312535,0.02488772,95.23363659],[4.53312591,0.02488944,95.23436548],[4.53312648,0.02489115,95.23509359],[4.53312704,0.02489286,95.23582078],[4.53312761,0.02489457,95.23654709],[4.53312817,0.02489628,95.23727256],[4.53312873,0.02489799,95.23799723],[4.5331293,0.0248997,95.23872114],[4.53312986,0.02490142,95.23944432],[4.53313042,0.02490313,95.24016682],[4.53313098,0.02490484,95.24088867],[4.53313155,0.02490655,95.24160991],[4.53313211,0.02490826,95.24233058],[4.53313267,0.02490997,95.24305071],[4.53313324,0.02491169,95.24377035],[4.5331338,0.0249134,95.24448954],[4.53313436,0.02491511,95.24520831],[4.53313492,0.02491682,95.24592668],[4.53313548,0.02491853,95.2466447],[4.53313605,0.02492025,95.24736237],[4.53313661,0.02492196,95.24807973],[4.53313717,0.02492367,95.2487968],[4.53313773,0.02492538,95.24951362],[4.5331383,0.02492709,95.25023019],[4.53313886,0.0249288,95.25094656],[4.53313942,0.02493052,95.25166275],[4.53313998,0.02493223,95.25237878],[4.53314055,0.02493394,95.25309468],[4.53314111,0.02493565,95.25381047],[4.53314167,0.02493736,95.25452616],[4.53314223,0.02493908,95.25524175],[4.5331428,0.02494079,95.25595722],[4.53314336,0.0249425,95.25667258],[4.53314392,0.02494421,95.25738783],[4.53314449,0.02494592,95.25810295],[4.53314505,0.02494763,95.25881795],[4.53314561,0.02494935,95.25953281],[4.53314617,0.02495106,95.26024755],[4.53314674,0.02495277,95.26096228],[4.5331473,0.02495448,95.26167722],[4.53314786,0.02495619,95.26239261],[4.53314843,0.0249579,95.26310869],[4.53314899,0.02495961,95.26382568],[4.53314956,0.02496133,95.26454382],[4.53315012,0.02496304,95.26526335],[4.53315069,0.02496475,95.26598449],[4.53315125,0.02496646,95.26670726],[4.53315182,0.02496817,95.26743145],[4.53315239,0.02496988,95.26815685],[4.53315296,0.02497159,95.26888326],[4.53315352,0.0249733,95.26961046],[4.53315409,0.02497501,95.27033825],[4.53315466,0.02497672,95.27106641],[4.53315523,0.02497843,95.27179473],[4.5331558,0.02498014,95.27252301],[4.53315637,0.02498185,95.27325102],[4.53315693,0.02498356,95.27397857],[4.5331575,0.02498527,95.27470543],[4.53315807,0.02498698,95.2754314],[4.53315864,0.02498869,95.27615641],[4.53315921,0.0249904,95.27688397],[4.53315978,0.02499211,95.27761886],[4.53316035,0.02499382,95.27835699],[4.53316092,0.02499553,95.27909198],[4.53316149,0.02499724,95.27981747],[4.53316205,0.02499895,95.28052761],[4.53316261,0.02500066,95.2812289],[4.53316317,0.02500237,95.28193086],[4.53316374,0.02500408,95.28263374],[4.5331643,0.0250058,95.28333733],[4.53316486,0.02500751,95.28404144],[4.53316542,0.02500922,95.28474586],[4.53316598,0.02501093,95.2854504],[4.53316655,0.02501264,95.28615482],[4.53316711,0.02501436,95.28685795],[4.53316767,0.02501607,95.2875577],[4.53316823,0.02501778,95.28825195],[4.53316878,0.0250195,95.28893856],[4.53316934,0.02502121,95.2896154],[4.53316989,0.02502293,95.29028054],[4.53317043,0.02502464,95.29093694],[4.53317098,0.02502636,95.29159223],[4.53317153,0.02502808,95.29225032],[4.53317208,0.02502979,95.29291117],[4.53317263,0.02503151,95.29357454],[4.53317318,0.02503323,95.29424021],[4.53317373,0.02503494,95.29490797],[4.53317428,0.02503666,95.29557757],[4.53317483,0.02503837,95.2962488],[4.53317539,0.02504009,95.29692144],[4.53317594,0.0250418,95.29759525],[4.53317649,0.02504352,95.29827],[4.53317705,0.02504523,95.29894548],[4.5331776,0.02504695,95.29962146],[4.53317816,0.02504866,95.3002977],[4.53317871,0.02505037,95.30097399],[4.53317927,0.02505209,95.30165009],[4.53317982,0.0250538,95.30232579],[4.53318037,0.02505552,95.30300084],[4.53318093,0.02505723,95.30367503],[4.53318148,0.02505895,95.30434812],[4.53318203,0.02506066,95.30501989],[4.53318074,0.02506109,95.30501989]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-6,"type":"border","predecessorId":-6,"sOffset":370.7833669163}},{"geometry":{"coordinates":[[[4.53318203,0.02506066,95.15501989],[4.53318148,0.02505895,95.15434812],[4.53318093,0.02505723,95.15367503],[4.53318037,0.02505552,95.15300084],[4.53317982,0.0250538,95.15232579],[4.53317927,0.02505209,95.15165009],[4.53317871,0.02505037,95.15097399],[4.53317816,0.02504866,95.1502977],[4.5331776,0.02504695,95.14962146],[4.53317705,0.02504523,95.14894548],[4.53317649,0.02504352,95.14827],[4.53317594,0.0250418,95.14759525],[4.53317539,0.02504009,95.14692144],[4.53317483,0.02503837,95.1462488],[4.53317428,0.02503666,95.14557757],[4.53317373,0.02503494,95.14490797],[4.53317318,0.02503323,95.14424021],[4.53317263,0.02503151,95.14357454],[4.53317208,0.02502979,95.14291117],[4.53317153,0.02502808,95.14225032],[4.53317098,0.02502636,95.14159223],[4.53317043,0.02502464,95.14093694],[4.53316989,0.02502293,95.14028054],[4.53316934,0.02502121,95.1396154],[4.53316878,0.0250195,95.13893856],[4.53316823,0.02501778,95.13825195],[4.53316767,0.02501607,95.1375577],[4.53316711,0.02501436,95.13685795],[4.53316655,0.02501264,95.13615482],[4.53316598,0.02501093,95.1354504],[4.53316542,0.02500922,95.13474586],[4.53316486,0.02500751,95.13404144],[4.5331643,0.0250058,95.13333733],[4.53316374,0.02500408,95.13263374],[4.53316317,0.02500237,95.13193086],[4.53316261,0.02500066,95.1312289],[4.53316205,0.02499895,95.13052761],[4.53316149,0.02499724,95.12981747],[4.53316092,0.02499553,95.12909198],[4.53316035,0.02499382,95.12835699],[4.53315978,0.02499211,95.12761886],[4.53315921,0.0249904,95.12688397],[4.53315864,0.02498869,95.12615641],[4.53315807,0.02498698,95.1254314],[4.5331575,0.02498527,95.12470543],[4.53315693,0.02498356,95.12397857],[4.53315637,0.02498185,95.12325102],[4.5331558,0.02498014,95.12252301],[4.53315523,0.02497843,95.12179473],[4.53315466,0.02497672,95.12106641],[4.53315409,0.02497501,95.12033825],[4.53315352,0.0249733,95.11961046],[4.53315296,0.02497159,95.11888326],[4.53315239,0.02496988,95.11815685],[4.53315182,0.02496817,95.11743145],[4.53315125,0.02496646,95.11670726],[4.53315069,0.02496475,95.11598449],[4.53315012,0.02496304,95.11526335],[4.53314956,0.02496133,95.11454382],[4.53314899,0.02495961,95.11382568],[4.53314843,0.0249579,95.11310869],[4.53314786,0.02495619,95.11239261],[4.5331473,0.02495448,95.11167722],[4.53314674,0.02495277,95.11096228],[4.53314617,0.02495106,95.11024755],[4.53314561,0.02494935,95.10953281],[4.53314505,0.02494763,95.10881795],[4.53314449,0.02494592,95.10810295],[4.53314392,0.02494421,95.10738783],[4.53314336,0.0249425,95.10667258],[4.5331428,0.02494079,95.10595722],[4.53314223,0.02493908,95.10524175],[4.53314167,0.02493736,95.10452616],[4.53314111,0.02493565,95.10381047],[4.53314055,0.02493394,95.10309468],[4.53313998,0.02493223,95.10237878],[4.53313942,0.02493052,95.10166275],[4.53313886,0.0249288,95.10094656],[4.5331383,0.02492709,95.10023019],[4.53313773,0.02492538,95.09951362],[4.53313717,0.02492367,95.0987968],[4.53313661,0.02492196,95.09807973],[4.53313605,0.02492025,95.09736237],[4.53313548,0.02491853,95.0966447],[4.53313492,0.02491682,95.09592668],[4.53313436,0.02491511,95.09520831],[4.5331338,0.0249134,95.09448954],[4.53313324,0.02491169,95.09377035],[4.53313267,0.02490997,95.09305071],[4.53313211,0.02490826,95.09233058],[4.53313155,0.02490655,95.09160991],[4.53313098,0.02490484,95.09088867],[4.53313042,0.02490313,95.09016682],[4.53312986,0.02490142,95.08944432],[4.5331293,0.0248997,95.08872114],[4.53312873,0.02489799,95.08799723],[4.53312817,0.02489628,95.08727256],[4.53312761,0.02489457,95.08654709],[4.53312704,0.02489286,95.08582078],[4.53312648,0.02489115,95.08509359],[4.53312591,0.02488944,95.08436548],[4.53312535,0.02488772,95.08363659],[4.53312479,0.02488601,95.08290718],[4.53312422,0.0248843,95.08217752],[4.53312366,0.02488259,95.0814479],[4.53312309,0.02488088,95.08071859],[4.53312253,0.02487917,95.07998987],[4.53312197,0.02487746,95.07926202],[4.5331214,0.02487574,95.07853531],[4.53312084,0.02487403,95.07781001],[4.53312028,0.02487232,95.07708634],[4.53311972,0.02487061,95.07636417],[4.53311916,0.0248689,95.07564334],[4.5331186,0.02486718,95.07492364],[4.53311804,0.02486547,95.0742049],[4.53311748,0.02486376,95.07348694],[4.53311692,0.02486204,95.07276957],[4.53311636,0.02486033,95.07205261],[4.5331158,0.02485862,95.07133587],[4.53311525,0.02485691,95.07061917],[4.53311469,0.02485519,95.06990232],[4.53311413,0.02485348,95.06918515],[4.53311357,0.02485177,95.06846747],[4.53311301,0.02485005,95.0677491],[4.53311245,0.02484834,95.06702985],[4.5331119,0.02484663,95.06630954],[4.53311134,0.02484491,95.06558799],[4.53311078,0.0248432,95.06486501],[4.53311022,0.02484149,95.06414043],[4.53310966,0.02483978,95.06341418],[4.5331091,0.02483806,95.0626863],[4.53310854,0.02483635,95.06195683],[4.53310798,0.02483464,95.0612258],[4.53310741,0.02483293,95.06049326],[4.53310685,0.02483122,95.05975926],[4.53310629,0.0248295,95.05902382],[4.53310573,0.02482779,95.05828698],[4.53310516,0.02482608,95.0575488],[4.5331046,0.02482437,95.0568093],[4.53310404,0.02482266,95.05606854],[4.53310347,0.02482095,95.05532654],[4.53310291,0.02481923,95.05458335],[4.53310235,0.02481752,95.053839],[4.53310178,0.02481581,95.05309355],[4.53310122,0.0248141,95.05234702],[4.53310065,0.02481239,95.05159946],[4.53310009,0.02481068,95.05085091],[4.53309952,0.02480897,95.0501014],[4.53309896,0.02480726,95.04935098],[4.53309839,0.02480555,95.04859969],[4.53309783,0.02480384,95.04784757],[4.53309726,0.02480213,95.0470947],[4.53309669,0.02480041,95.04634184],[4.53309613,0.0247987,95.04558944],[4.53309556,0.02479699,95.04483764],[4.533095,0.02479528,95.04408657],[4.53309444,0.02479357,95.04333639],[4.53309387,0.02479186,95.04258724],[4.53309331,0.02479015,95.04183927],[4.53309275,0.02478844,95.04109262],[4.53309198,0.0247868,95.03971112],[4.53308874,0.02478597,95.03061959],[4.53308554,0.02478543,95.02147248],[4.5330938,0.02478271,95.04724111],[4.53309427,0.02478415,95.04784901],[4.53309482,0.02478586,95.04857183],[4.53309538,0.02478758,95.04929163],[4.53309593,0.02478929,95.05000972],[4.53309648,0.024791,95.05072741],[4.53309703,0.02479271,95.05144603],[4.53309759,0.02479443,95.05216687],[4.53309815,0.02479614,95.05289127],[4.5330987,0.02479786,95.05362053],[4.53309926,0.02479957,95.05435597],[4.53309983,0.02480128,95.05509891],[4.53310039,0.02480299,95.05585033],[4.53310096,0.0248047,95.05660986],[4.53310153,0.02480641,95.0573768],[4.5331021,0.02480812,95.05815043],[4.53310268,0.02480983,95.05893005],[4.53310325,0.02481153,95.05971493],[4.53310383,0.02481324,95.06050439],[4.53310441,0.02481495,95.06129769],[4.53310499,0.02481665,95.06209414],[4.53310557,0.02481836,95.06289303],[4.53310616,0.02482006,95.06369364],[4.53310674,0.02482177,95.06449527],[4.53310732,0.02482347,95.0652972],[4.5331079,0.02482518,95.06609874],[4.53310849,0.02482688,95.06689915],[4.53310907,0.02482859,95.06769775],[4.53310965,0.02483029,95.06849381],[4.53311023,0.024832,95.06928662],[4.53311081,0.02483371,95.07007549],[4.53311139,0.02483541,95.07085968],[4.53311197,0.02483712,95.0716385],[4.53311254,0.02483883,95.07241124],[4.53311311,0.02484054,95.07317717],[4.53311368,0.02484225,95.07393562],[4.53311425,0.02484396,95.07468646],[4.53311482,0.02484567,95.07543012],[4.53311538,0.02484738,95.07616709],[4.53311594,0.02484909,95.07689782],[4.5331165,0.0248508,95.07762279],[4.53311706,0.02485251,95.07834247],[4.53311762,0.02485423,95.07905733],[4.53311818,0.02485594,95.07976783],[4.53311873,0.02485766,95.08047445],[4.53311928,0.02485937,95.08117765],[4.53311984,0.02486109,95.08187792],[4.53312039,0.0248628,95.0825757],[4.53312094,0.02486452,95.08327149],[4.53312149,0.02486623,95.08396574],[4.53312204,0.02486795,95.08465894],[4.53312259,0.02486966,95.08535154],[4.53312315,0.02487138,95.08604401],[4.5331237,0.02487309,95.08673684],[4.53312425,0.02487481,95.08743042],[4.5331248,0.02487652,95.08812483],[4.53312535,0.02487824,95.08882008],[4.53312591,0.02487995,95.08951619],[4.53312646,0.02488167,95.09021316],[4.53312701,0.02488338,95.09091101],[4.53312757,0.0248851,95.09160974],[4.53312812,0.02488681,95.09230937],[4.53312868,0.02488853,95.09300991],[4.53312923,0.02489024,95.09371136],[4.53312979,0.02489196,95.09441375],[4.53313034,0.02489367,95.09511707],[4.5331309,0.02489538,95.09582135],[4.53313146,0.0248971,95.09652658],[4.53313201,0.02489881,95.09723279],[4.53313257,0.02490052,95.09793998],[4.53313313,0.02490224,95.09864816],[4.53313369,0.02490395,95.09935735],[4.53313425,0.02490566,95.10006755],[4.53313481,0.02490738,95.10077878],[4.53313537,0.02490909,95.10149105],[4.53313593,0.0249108,95.10220436],[4.53313649,0.02491251,95.10291873],[4.53313705,0.02491423,95.10363416],[4.53313761,0.02491594,95.10435067],[4.53313817,0.02491765,95.10506824],[4.53313873,0.02491936,95.10578687],[4.5331393,0.02492107,95.10650657],[4.53313986,0.02492279,95.10722732],[4.53314042,0.0249245,95.10794914],[4.53314099,0.02492621,95.10867201],[4.53314155,0.02492792,95.10939594],[4.53314212,0.02492963,95.11012092],[4.53314268,0.02493134,95.11084695],[4.53314325,0.02493305,95.11157404],[4.53314382,0.02493476,95.11230217],[4.53314438,0.02493647,95.11303133],[4.53314495,0.02493818,95.11376147],[4.53314552,0.02493989,95.11449258],[4.53314608,0.0249416,95.11522462],[4.53314665,0.02494331,95.11595755],[4.53314722,0.02494502,95.11669135],[4.53314779,0.02494673,95.11742598],[4.53314836,0.02494844,95.11816142],[4.53314893,0.02495015,95.11889762],[4.5331495,0.02495186,95.11963457],[4.53315007,0.02495357,95.12037222],[4.53315064,0.02495528,95.12111055],[4.53315121,0.02495699,95.12184952],[4.53315178,0.0249587,95.1225891],[4.53315235,0.02496041,95.12332927],[4.53315292,0.02496212,95.12406998],[4.53315349,0.02496383,95.1248112],[4.53315406,0.02496554,95.12555268],[4.53315464,0.02496724,95.12629394],[4.53315521,0.02496895,95.12703452],[4.53315578,0.02497066,95.12777393],[4.53315635,0.02497237,95.12851169],[4.53315692,0.02497408,95.12924734],[4.53315749,0.02497579,95.12998038],[4.53315806,0.0249775,95.13071035],[4.53315863,0.02497921,95.13143676],[4.53315919,0.02498092,95.13215913],[4.53315976,0.02498263,95.13287699],[4.53316032,0.02498434,95.13358985],[4.53316088,0.02498606,95.13429723],[4.53316144,0.02498777,95.13499881],[4.533162,0.02498948,95.13569781],[4.53316256,0.02499119,95.13640102],[4.53316313,0.02499291,95.13711538],[4.5331637,0.02499462,95.13784784],[4.53316427,0.02499632,95.13860537],[4.53316486,0.02499803,95.13939494],[4.53316546,0.02499973,95.14022309],[4.53316607,0.02500142,95.14108665],[4.53316669,0.02500311,95.14197259],[4.53316731,0.02500481,95.14286741],[4.53316793,0.0250065,95.14375762],[4.53316855,0.0250082,95.14462971],[4.53316915,0.02500989,95.14547014],[4.53316974,0.0250116,95.14626585],[4.53317032,0.0250133,95.14701384],[4.53317088,0.02501502,95.14772124],[4.53317143,0.02501673,95.14839562],[4.53317198,0.02501845,95.14904455],[4.53317252,0.02502017,95.14967563],[4.53317305,0.02502189,95.15029643],[4.53317359,0.02502361,95.15091455],[4.53317412,0.02502533,95.15153741],[4.53317466,0.02502705,95.15216851],[4.5331752,0.02502877,95.15280734],[4.53317575,0.02503049,95.15345327],[4.53317629,0.02503221,95.15410562],[4.53317684,0.02503392,95.15476374],[4.53317739,0.02503564,95.15542698],[4.53317794,0.02503735,95.15609468],[4.53317849,0.02503907,95.15676617],[4.53317904,0.02504078,95.1574408],[4.5331796,0.0250425,95.15811791],[4.53318015,0.02504421,95.15879684],[4.53318071,0.02504593,95.15947692],[4.53318126,0.02504764,95.1601575],[4.53318182,0.02504936,95.16083791],[4.53318237,0.02505107,95.16151749],[4.53318293,0.02505279,95.16219558],[4.53318348,0.0250545,95.16287151],[4.53318403,0.02505622,95.16354462],[4.53318458,0.02505793,95.16421425],[4.53318513,0.02505965,95.16487972],[4.53318203,0.02506066,95.15501989]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-5,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-5,"type":"border","predecessorId":-5,"sOffset":370.7833669163}},{"geometry":{"coordinates":[[[4.53318513,0.02505965,95.16487972],[4.53318458,0.02505793,95.16421425],[4.53318403,0.02505622,95.16354462],[4.53318348,0.0250545,95.16287151],[4.53318293,0.02505279,95.16219558],[4.53318237,0.02505107,95.16151749],[4.53318182,0.02504936,95.16083791],[4.53318126,0.02504764,95.1601575],[4.53318071,0.02504593,95.15947692],[4.53318015,0.02504421,95.15879684],[4.5331796,0.0250425,95.15811791],[4.53317904,0.02504078,95.1574408],[4.53317849,0.02503907,95.15676617],[4.53317794,0.02503735,95.15609468],[4.53317739,0.02503564,95.15542698],[4.53317684,0.02503392,95.15476374],[4.53317629,0.02503221,95.15410562],[4.53317575,0.02503049,95.15345327],[4.5331752,0.02502877,95.15280734],[4.53317466,0.02502705,95.15216851],[4.53317412,0.02502533,95.15153741],[4.53317359,0.02502361,95.15091455],[4.53317305,0.02502189,95.15029643],[4.53317252,0.02502017,95.14967563],[4.53317198,0.02501845,95.14904455],[4.53317143,0.02501673,95.14839562],[4.53317088,0.02501502,95.14772124],[4.53317032,0.0250133,95.14701384],[4.53316974,0.0250116,95.14626585],[4.53316915,0.02500989,95.14547014],[4.53316855,0.0250082,95.14462971],[4.53316793,0.0250065,95.14375762],[4.53316731,0.02500481,95.14286741],[4.53316669,0.02500311,95.14197259],[4.53316607,0.02500142,95.14108665],[4.53316546,0.02499973,95.14022309],[4.53316486,0.02499803,95.13939494],[4.53316427,0.02499632,95.13860537],[4.5331637,0.02499462,95.13784784],[4.53316313,0.02499291,95.13711538],[4.53316256,0.02499119,95.13640102],[4.533162,0.02498948,95.13569781],[4.53316144,0.02498777,95.13499881],[4.53316088,0.02498606,95.13429723],[4.53316032,0.02498434,95.13358985],[4.53315976,0.02498263,95.13287699],[4.53315919,0.02498092,95.13215913],[4.53315863,0.02497921,95.13143676],[4.53315806,0.0249775,95.13071035],[4.53315749,0.02497579,95.12998038],[4.53315692,0.02497408,95.12924734],[4.53315635,0.02497237,95.12851169],[4.53315578,0.02497066,95.12777393],[4.53315521,0.02496895,95.12703452],[4.53315464,0.02496724,95.12629394],[4.53315406,0.02496554,95.12555268],[4.53315349,0.02496383,95.1248112],[4.53315292,0.02496212,95.12406998],[4.53315235,0.02496041,95.12332927],[4.53315178,0.0249587,95.1225891],[4.53315121,0.02495699,95.12184952],[4.53315064,0.02495528,95.12111055],[4.53315007,0.02495357,95.12037222],[4.5331495,0.02495186,95.11963457],[4.53314893,0.02495015,95.11889762],[4.53314836,0.02494844,95.11816142],[4.53314779,0.02494673,95.11742598],[4.53314722,0.02494502,95.11669135],[4.53314665,0.02494331,95.11595755],[4.53314608,0.0249416,95.11522462],[4.53314552,0.02493989,95.11449258],[4.53314495,0.02493818,95.11376147],[4.53314438,0.02493647,95.11303133],[4.53314382,0.02493476,95.11230217],[4.53314325,0.02493305,95.11157404],[4.53314268,0.02493134,95.11084695],[4.53314212,0.02492963,95.11012092],[4.53314155,0.02492792,95.10939594],[4.53314099,0.02492621,95.10867201],[4.53314042,0.0249245,95.10794914],[4.53313986,0.02492279,95.10722732],[4.5331393,0.02492107,95.10650657],[4.53313873,0.02491936,95.10578687],[4.53313817,0.02491765,95.10506824],[4.53313761,0.02491594,95.10435067],[4.53313705,0.02491423,95.10363416],[4.53313649,0.02491251,95.10291873],[4.53313593,0.0249108,95.10220436],[4.53313537,0.02490909,95.10149105],[4.53313481,0.02490738,95.10077878],[4.53313425,0.02490566,95.10006755],[4.53313369,0.02490395,95.09935735],[4.53313313,0.02490224,95.09864816],[4.53313257,0.02490052,95.09793998],[4.53313201,0.02489881,95.09723279],[4.53313146,0.0248971,95.09652658],[4.5331309,0.02489538,95.09582135],[4.53313034,0.02489367,95.09511707],[4.53312979,0.02489196,95.09441375],[4.53312923,0.02489024,95.09371136],[4.53312868,0.02488853,95.09300991],[4.53312812,0.02488681,95.09230937],[4.53312757,0.0248851,95.09160974],[4.53312701,0.02488338,95.09091101],[4.53312646,0.02488167,95.09021316],[4.53312591,0.02487995,95.08951619],[4.53312535,0.02487824,95.08882008],[4.5331248,0.02487652,95.08812483],[4.53312425,0.02487481,95.08743042],[4.5331237,0.02487309,95.08673684],[4.53312315,0.02487138,95.08604401],[4.53312259,0.02486966,95.08535154],[4.53312204,0.02486795,95.08465894],[4.53312149,0.02486623,95.08396574],[4.53312094,0.02486452,95.08327149],[4.53312039,0.0248628,95.0825757],[4.53311984,0.02486109,95.08187792],[4.53311928,0.02485937,95.08117765],[4.53311873,0.02485766,95.08047445],[4.53311818,0.02485594,95.07976783],[4.53311762,0.02485423,95.07905733],[4.53311706,0.02485251,95.07834247],[4.5331165,0.0248508,95.07762279],[4.53311594,0.02484909,95.07689782],[4.53311538,0.02484738,95.07616709],[4.53311482,0.02484567,95.07543012],[4.53311425,0.02484396,95.07468646],[4.53311368,0.02484225,95.07393562],[4.53311311,0.02484054,95.07317717],[4.53311254,0.02483883,95.07241124],[4.53311197,0.02483712,95.0716385],[4.53311139,0.02483541,95.07085968],[4.53311081,0.02483371,95.07007549],[4.53311023,0.024832,95.06928662],[4.53310965,0.02483029,95.06849381],[4.53310907,0.02482859,95.06769775],[4.53310849,0.02482688,95.06689915],[4.5331079,0.02482518,95.06609874],[4.53310732,0.02482347,95.0652972],[4.53310674,0.02482177,95.06449527],[4.53310616,0.02482006,95.06369364],[4.53310557,0.02481836,95.06289303],[4.53310499,0.02481665,95.06209414],[4.53310441,0.02481495,95.06129769],[4.53310383,0.02481324,95.06050439],[4.53310325,0.02481153,95.05971493],[4.53310268,0.02480983,95.05893005],[4.5331021,0.02480812,95.05815043],[4.53310153,0.02480641,95.0573768],[4.53310096,0.0248047,95.05660986],[4.53310039,0.02480299,95.05585033],[4.53309983,0.02480128,95.05509891],[4.53309926,0.02479957,95.05435597],[4.5330987,0.02479786,95.05362053],[4.53309815,0.02479614,95.05289127],[4.53309759,0.02479443,95.05216687],[4.53309703,0.02479271,95.05144603],[4.53309648,0.024791,95.05072741],[4.53309593,0.02478929,95.05000972],[4.53309538,0.02478758,95.04929163],[4.53309482,0.02478586,95.04857183],[4.53309427,0.02478415,95.04784901],[4.5330938,0.02478271,95.04724111],[4.53309564,0.02478211,95.05297697],[4.53309611,0.02478354,95.0535917],[4.53309667,0.02478525,95.05432639],[4.53309723,0.02478697,95.05506083],[4.53309778,0.02478867,95.05579501],[4.53309834,0.02479039,95.05652891],[4.5330989,0.0247921,95.05726254],[4.53309946,0.02479381,95.05799587],[4.53310002,0.02479553,95.0587289],[4.53310058,0.02479724,95.05946163],[4.53310113,0.02479895,95.06019404],[4.53310169,0.02480067,95.06092614],[4.53310225,0.02480238,95.06165792],[4.53310281,0.02480409,95.06238936],[4.53310337,0.0248058,95.06312048],[4.53310393,0.02480752,95.06385126],[4.53310449,0.02480923,95.0645817],[4.53310505,0.02481094,95.06531179],[4.53310561,0.02481266,95.06604153],[4.53310617,0.02481437,95.06677092],[4.53310672,0.02481608,95.06749994],[4.53310728,0.02481779,95.0682286],[4.53310784,0.02481951,95.06895689],[4.5331084,0.02482122,95.0696848],[4.53310896,0.02482293,95.07041233],[4.53310952,0.02482465,95.07113948],[4.53311008,0.02482636,95.07186624],[4.53311064,0.02482807,95.0725926],[4.5331112,0.02482979,95.07331856],[4.53311176,0.0248315,95.07404411],[4.53311231,0.02483321,95.07476926],[4.53311287,0.02483492,95.07549399],[4.53311343,0.02483664,95.07621831],[4.53311399,0.02483835,95.07694219],[4.53311455,0.02484006,95.07766565],[4.53311511,0.02484178,95.07838868],[4.53311567,0.02484349,95.07911126],[4.53311623,0.0248452,95.07983341],[4.53311679,0.02484691,95.08055512],[4.53311735,0.02484863,95.0812764],[4.5331179,0.02485034,95.08199725],[4.53311846,0.02485205,95.08271768],[4.53311902,0.02485377,95.08343768],[4.53311958,0.02485548,95.08415727],[4.53312014,0.02485719,95.08487645],[4.5331207,0.02485891,95.08559522],[4.53312126,0.02486062,95.08631357],[4.53312182,0.02486233,95.08703153],[4.53312237,0.02486405,95.08774909],[4.53312293,0.02486576,95.08846625],[4.53312349,0.02486747,95.08918302],[4.53312405,0.02486918,95.08989941],[4.53312461,0.0248709,95.09061541],[4.53312517,0.02487261,95.09133102],[4.53312573,0.02487432,95.09204627],[4.53312628,0.02487604,95.09276113],[4.53312684,0.02487775,95.09347563],[4.5331274,0.02487946,95.09418976],[4.53312796,0.02488118,95.09490353],[4.53312852,0.02488289,95.09561694],[4.53312908,0.0248846,95.09633],[4.53312964,0.02488632,95.0970427],[4.53313019,0.02488803,95.09775506],[4.53313075,0.02488974,95.09846707],[4.53313131,0.02489146,95.09917874],[4.53313187,0.02489317,95.09989008],[4.53313243,0.02489488,95.10060108],[4.53313299,0.02489659,95.10131175],[4.53313354,0.02489831,95.1020221],[4.5331341,0.02490002,95.10273212],[4.53313466,0.02490173,95.10344183],[4.53313522,0.02490345,95.10415122],[4.53313578,0.02490516,95.1048603],[4.53313634,0.02490687,95.10556907],[4.5331369,0.02490859,95.10627753],[4.53313745,0.0249103,95.1069857],[4.53313801,0.02491201,95.10769357],[4.53313857,0.02491373,95.10840115],[4.53313913,0.02491544,95.10910842],[4.53313969,0.02491715,95.10981538],[4.53314025,0.02491887,95.11052203],[4.5331408,0.02492058,95.11122834],[4.53314136,0.02492229,95.11193432],[4.53314192,0.02492401,95.11263994],[4.53314248,0.02492572,95.11334522],[4.53314304,0.02492743,95.11405012],[4.5331436,0.02492915,95.11475466],[4.53314415,0.02493086,95.11545881],[4.53314471,0.02493257,95.11616257],[4.53314527,0.02493429,95.11686593],[4.53314583,0.024936,95.1175689],[4.53314639,0.02493771,95.11827149],[4.53314694,0.02493943,95.11897368],[4.5331475,0.02494114,95.1196755],[4.53314806,0.02494285,95.12037694],[4.53314862,0.02494457,95.121078],[4.53314917,0.02494628,95.12177869],[4.53314973,0.02494799,95.12247902],[4.53315029,0.02494971,95.12317897],[4.53315085,0.02495142,95.12387857],[4.53315141,0.02495313,95.12457781],[4.53315196,0.02495485,95.12527669],[4.53315252,0.02495656,95.12597522],[4.53315308,0.02495827,95.1266734],[4.53315364,0.02495999,95.12737123],[4.53315419,0.0249617,95.12806873],[4.53315475,0.02496341,95.12876588],[4.53315531,0.02496513,95.1294627],[4.53315586,0.02496684,95.13015919],[4.53315642,0.02496856,95.13085535],[4.53315698,0.02497027,95.13155119],[4.53315754,0.02497198,95.1322467],[4.53315809,0.0249737,95.13294189],[4.53315865,0.02497541,95.13363677],[4.53315921,0.02497712,95.13433133],[4.53315976,0.02497884,95.13502559],[4.53316032,0.02498055,95.13571954],[4.53316088,0.02498226,95.13641319],[4.53316144,0.02498398,95.13710654],[4.53316199,0.02498569,95.1377996],[4.53316255,0.02498741,95.13849236],[4.53316311,0.02498912,95.13918484],[4.53316366,0.02499083,95.13987703],[4.53316422,0.02499255,95.14056893],[4.53316478,0.02499426,95.14126056],[4.53316533,0.02499597,95.14195191],[4.53316589,0.02499769,95.14264299],[4.53316645,0.0249994,95.1433338],[4.533167,0.02500112,95.14402435],[4.53316756,0.02500283,95.14471463],[4.53316812,0.02500454,95.14540466],[4.53316867,0.02500626,95.14609443],[4.53316923,0.02500797,95.14678394],[4.53316979,0.02500969,95.14747321],[4.53317034,0.0250114,95.14816223],[4.5331709,0.02501311,95.14885102],[4.53317146,0.02501483,95.14953956],[4.53317201,0.02501654,95.15022786],[4.53317257,0.02501826,95.15091594],[4.53317313,0.02501997,95.15160378],[4.53317368,0.02502168,95.1522914],[4.53317424,0.0250234,95.1529788],[4.53317479,0.02502511,95.15366597],[4.53317535,0.02502682,95.15435294],[4.53317591,0.02502854,95.15503969],[4.53317646,0.02503025,95.15572623],[4.53317702,0.02503197,95.15641256],[4.53317758,0.02503368,95.1570987],[4.53317813,0.02503539,95.15778463],[4.53317869,0.02503711,95.15847037],[4.53317924,0.02503882,95.15915592],[4.5331798,0.02504054,95.15984127],[4.53318036,0.02504225,95.16052645],[4.53318091,0.02504397,95.16121144],[4.53318147,0.02504568,95.16189625],[4.53318202,0.02504739,95.16258088],[4.53318258,0.02504911,95.16326535],[4.53318314,0.02505082,95.16394964],[4.53318369,0.02505254,95.16463377],[4.53318425,0.02505425,95.16531774],[4.53318481,0.02505596,95.16600155],[4.53318536,0.02505768,95.1666852],[4.53318592,0.02505939,95.1673687],[4.53318513,0.02505965,95.16487972]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-4,"type":"shoulder","predecessorId":-4,"sOffset":370.7833669163}},{"geometry":{"coordinates":[[[4.53318592,0.02505939,95.1673687],[4.53318536,0.02505768,95.1666852],[4.53318481,0.02505596,95.16600155],[4.53318425,0.02505425,95.16531774],[4.53318369,0.02505254,95.16463377],[4.53318314,0.02505082,95.16394964],[4.53318258,0.02504911,95.16326535],[4.53318202,0.02504739,95.16258088],[4.53318147,0.02504568,95.16189625],[4.53318091,0.02504397,95.16121144],[4.53318036,0.02504225,95.16052645],[4.5331798,0.02504054,95.15984127],[4.53317924,0.02503882,95.15915592],[4.53317869,0.02503711,95.15847037],[4.53317813,0.02503539,95.15778463],[4.53317758,0.02503368,95.1570987],[4.53317702,0.02503197,95.15641256],[4.53317646,0.02503025,95.15572623],[4.53317591,0.02502854,95.15503969],[4.53317535,0.02502682,95.15435294],[4.53317479,0.02502511,95.15366597],[4.53317424,0.0250234,95.1529788],[4.53317368,0.02502168,95.1522914],[4.53317313,0.02501997,95.15160378],[4.53317257,0.02501826,95.15091594],[4.53317201,0.02501654,95.15022786],[4.53317146,0.02501483,95.14953956],[4.5331709,0.02501311,95.14885102],[4.53317034,0.0250114,95.14816223],[4.53316979,0.02500969,95.14747321],[4.53316923,0.02500797,95.14678394],[4.53316867,0.02500626,95.14609443],[4.53316812,0.02500454,95.14540466],[4.53316756,0.02500283,95.14471463],[4.533167,0.02500112,95.14402435],[4.53316645,0.0249994,95.1433338],[4.53316589,0.02499769,95.14264299],[4.53316533,0.02499597,95.14195191],[4.53316478,0.02499426,95.14126056],[4.53316422,0.02499255,95.14056893],[4.53316366,0.02499083,95.13987703],[4.53316311,0.02498912,95.13918484],[4.53316255,0.02498741,95.13849236],[4.53316199,0.02498569,95.1377996],[4.53316144,0.02498398,95.13710654],[4.53316088,0.02498226,95.13641319],[4.53316032,0.02498055,95.13571954],[4.53315976,0.02497884,95.13502559],[4.53315921,0.02497712,95.13433133],[4.53315865,0.02497541,95.13363677],[4.53315809,0.0249737,95.13294189],[4.53315754,0.02497198,95.1322467],[4.53315698,0.02497027,95.13155119],[4.53315642,0.02496856,95.13085535],[4.53315586,0.02496684,95.13015919],[4.53315531,0.02496513,95.1294627],[4.53315475,0.02496341,95.12876588],[4.53315419,0.0249617,95.12806873],[4.53315364,0.02495999,95.12737123],[4.53315308,0.02495827,95.1266734],[4.53315252,0.02495656,95.12597522],[4.53315196,0.02495485,95.12527669],[4.53315141,0.02495313,95.12457781],[4.53315085,0.02495142,95.12387857],[4.53315029,0.02494971,95.12317897],[4.53314973,0.02494799,95.12247902],[4.53314917,0.02494628,95.12177869],[4.53314862,0.02494457,95.121078],[4.53314806,0.02494285,95.12037694],[4.5331475,0.02494114,95.1196755],[4.53314694,0.02493943,95.11897368],[4.53314639,0.02493771,95.11827149],[4.53314583,0.024936,95.1175689],[4.53314527,0.02493429,95.11686593],[4.53314471,0.02493257,95.11616257],[4.53314415,0.02493086,95.11545881],[4.5331436,0.02492915,95.11475466],[4.53314304,0.02492743,95.11405012],[4.53314248,0.02492572,95.11334522],[4.53314192,0.02492401,95.11263994],[4.53314136,0.02492229,95.11193432],[4.5331408,0.02492058,95.11122834],[4.53314025,0.02491887,95.11052203],[4.53313969,0.02491715,95.10981538],[4.53313913,0.02491544,95.10910842],[4.53313857,0.02491373,95.10840115],[4.53313801,0.02491201,95.10769357],[4.53313745,0.0249103,95.1069857],[4.5331369,0.02490859,95.10627753],[4.53313634,0.02490687,95.10556907],[4.53313578,0.02490516,95.1048603],[4.53313522,0.02490345,95.10415122],[4.53313466,0.02490173,95.10344183],[4.5331341,0.02490002,95.10273212],[4.53313354,0.02489831,95.1020221],[4.53313299,0.02489659,95.10131175],[4.53313243,0.02489488,95.10060108],[4.53313187,0.02489317,95.09989008],[4.53313131,0.02489146,95.09917874],[4.53313075,0.02488974,95.09846707],[4.53313019,0.02488803,95.09775506],[4.53312964,0.02488632,95.0970427],[4.53312908,0.0248846,95.09633],[4.53312852,0.02488289,95.09561694],[4.53312796,0.02488118,95.09490353],[4.5331274,0.02487946,95.09418976],[4.53312684,0.02487775,95.09347563],[4.53312628,0.02487604,95.09276113],[4.53312573,0.02487432,95.09204627],[4.53312517,0.02487261,95.09133102],[4.53312461,0.0248709,95.09061541],[4.53312405,0.02486918,95.08989941],[4.53312349,0.02486747,95.08918302],[4.53312293,0.02486576,95.08846625],[4.53312237,0.02486405,95.08774909],[4.53312182,0.02486233,95.08703153],[4.53312126,0.02486062,95.08631357],[4.5331207,0.02485891,95.08559522],[4.53312014,0.02485719,95.08487645],[4.53311958,0.02485548,95.08415727],[4.53311902,0.02485377,95.08343768],[4.53311846,0.02485205,95.08271768],[4.5331179,0.02485034,95.08199725],[4.53311735,0.02484863,95.0812764],[4.53311679,0.02484691,95.08055512],[4.53311623,0.0248452,95.07983341],[4.53311567,0.02484349,95.07911126],[4.53311511,0.02484178,95.07838868],[4.53311455,0.02484006,95.07766565],[4.53311399,0.02483835,95.07694219],[4.53311343,0.02483664,95.07621831],[4.53311287,0.02483492,95.07549399],[4.53311231,0.02483321,95.07476926],[4.53311176,0.0248315,95.07404411],[4.5331112,0.02482979,95.07331856],[4.53311064,0.02482807,95.0725926],[4.53311008,0.02482636,95.07186624],[4.53310952,0.02482465,95.07113948],[4.53310896,0.02482293,95.07041233],[4.5331084,0.02482122,95.0696848],[4.53310784,0.02481951,95.06895689],[4.53310728,0.02481779,95.0682286],[4.53310672,0.02481608,95.06749994],[4.53310617,0.02481437,95.06677092],[4.53310561,0.02481266,95.06604153],[4.53310505,0.02481094,95.06531179],[4.53310449,0.02480923,95.0645817],[4.53310393,0.02480752,95.06385126],[4.53310337,0.0248058,95.06312048],[4.53310281,0.02480409,95.06238936],[4.53310225,0.02480238,95.06165792],[4.53310169,0.02480067,95.06092614],[4.53310113,0.02479895,95.06019404],[4.53310058,0.02479724,95.05946163],[4.53310002,0.02479553,95.0587289],[4.53309946,0.02479381,95.05799587],[4.5330989,0.0247921,95.05726254],[4.53309834,0.02479039,95.05652891],[4.53309778,0.02478867,95.05579501],[4.53309723,0.02478697,95.05506083],[4.53309667,0.02478525,95.05432639],[4.53309611,0.02478354,95.0535917],[4.53309564,0.02478211,95.05297697],[4.53312464,0.02477256,95.14343368],[4.5331251,0.02477399,95.14404139],[4.53312566,0.0247757,95.14476785],[4.53312622,0.02477742,95.14549424],[4.53312677,0.02477913,95.14622055],[4.53312733,0.02478084,95.14694678],[4.53312788,0.02478256,95.14767291],[4.53312844,0.02478427,95.14839894],[4.533129,0.02478598,95.14912486],[4.53312955,0.0247877,95.14985066],[4.53313011,0.02478941,95.15057633],[4.53313067,0.02479113,95.15130188],[4.53313122,0.02479284,95.15202729],[4.53313178,0.02479455,95.15275256],[4.53313234,0.02479627,95.15347768],[4.53313289,0.02479798,95.15420265],[4.53313345,0.0247997,95.15492746],[4.53313401,0.02480141,95.15565211],[4.53313456,0.02480312,95.15637659],[4.53313512,0.02480484,95.15710089],[4.53313568,0.02480655,95.15782501],[4.53313623,0.02480827,95.15854894],[4.53313679,0.02480998,95.15927268],[4.53313735,0.02481169,95.15999623],[4.5331379,0.02481341,95.16071956],[4.53313846,0.02481512,95.16144269],[4.53313902,0.02481684,95.1621656],[4.53313957,0.02481855,95.1628883],[4.53314013,0.02482026,95.16361076],[4.53314069,0.02482198,95.16433299],[4.53314124,0.02482369,95.16505498],[4.5331418,0.02482541,95.16577673],[4.53314236,0.02482712,95.16649823],[4.53314292,0.02482884,95.16721947],[4.53314347,0.02483055,95.16794046],[4.53314403,0.02483226,95.16866117],[4.53314459,0.02483398,95.16938161],[4.53314514,0.02483569,95.17010178],[4.5331457,0.02483741,95.17082168],[4.53314626,0.02483912,95.17154131],[4.53314681,0.02484083,95.17226068],[4.53314737,0.02484255,95.17297978],[4.53314792,0.02484426,95.17369862],[4.53314848,0.02484598,95.17441721],[4.53314904,0.02484769,95.17513554],[4.53314959,0.0248494,95.17585363],[4.53315015,0.02485112,95.17657146],[4.53315071,0.02485283,95.17728905],[4.53315126,0.02485455,95.17800639],[4.53315182,0.02485626,95.1787235],[4.53315238,0.02485798,95.17944037],[4.53315293,0.02485969,95.18015701],[4.53315349,0.0248614,95.18087341],[4.53315405,0.02486312,95.18158959],[4.5331546,0.02486483,95.18230554],[4.53315516,0.02486655,95.18302126],[4.53315571,0.02486826,95.18373677],[4.53315627,0.02486997,95.18445206],[4.53315683,0.02487169,95.18516714],[4.53315738,0.0248734,95.185882],[4.53315794,0.02487512,95.18659666],[4.5331585,0.02487683,95.18731111],[4.53315905,0.02487855,95.18802536],[4.53315961,0.02488026,95.1887394],[4.53316016,0.02488197,95.18945325],[4.53316072,0.02488369,95.19016691],[4.53316128,0.0248854,95.19088037],[4.53316183,0.02488712,95.19159365],[4.53316239,0.02488883,95.19230674],[4.53316295,0.02489055,95.19301964],[4.5331635,0.02489226,95.19373237],[4.53316406,0.02489397,95.19444492],[4.53316461,0.02489569,95.19515729],[4.53316517,0.0248974,95.19586949],[4.53316573,0.02489912,95.19658153],[4.53316628,0.02490083,95.19729339],[4.53316684,0.02490255,95.1980051],[4.5331674,0.02490426,95.19871664],[4.53316795,0.02490597,95.19942801],[4.53316851,0.02490769,95.2001392],[4.53316906,0.0249094,95.2008502],[4.53316962,0.02491112,95.201561],[4.53317018,0.02491283,95.20227159],[4.53317073,0.02491455,95.20298197],[4.53317129,0.02491626,95.20369211],[4.53317184,0.02491797,95.20440201],[4.5331724,0.02491969,95.20511167],[4.53317296,0.0249214,95.20582107],[4.53317351,0.02492312,95.20653019],[4.53317407,0.02492483,95.20723905],[4.53317462,0.02492655,95.20794764],[4.53317518,0.02492826,95.20865596],[4.53317573,0.02492998,95.20936401],[4.53317629,0.02493169,95.2100718],[4.53317685,0.0249334,95.21077934],[4.5331774,0.02493512,95.21148661],[4.53317796,0.02493683,95.21219363],[4.53317851,0.02493855,95.2129004],[4.53317907,0.02494026,95.21360692],[4.53317962,0.02494198,95.21431319],[4.53318018,0.02494369,95.21501922],[4.53318073,0.02494541,95.215725],[4.53318129,0.02494712,95.21643054],[4.53318184,0.02494884,95.21713585],[4.5331824,0.02495055,95.21784092],[4.53318295,0.02495226,95.21854577],[4.53318351,0.02495398,95.21925038],[4.53318406,0.02495569,95.21995476],[4.53318462,0.02495741,95.22065892],[4.53318517,0.02495912,95.22136286],[4.53318573,0.02496084,95.22206657],[4.53318628,0.02496255,95.22277007],[4.53318684,0.02496427,95.22347336],[4.53318739,0.02496598,95.22417643],[4.53318795,0.0249677,95.2248793],[4.5331885,0.02496941,95.22558195],[4.53318906,0.02497113,95.2262844],[4.53318961,0.02497284,95.22698665],[4.53319017,0.02497456,95.2276887],[4.53319072,0.02497627,95.22839056],[4.53319128,0.02497799,95.22909222],[4.53319183,0.0249797,95.22979368],[4.53319239,0.02498142,95.23049496],[4.53319294,0.02498313,95.23119605],[4.5331935,0.02498485,95.23189696],[4.53319405,0.02498656,95.23259768],[4.5331946,0.02498827,95.23329823],[4.53319516,0.02498999,95.2339986],[4.53319571,0.0249917,95.23469879],[4.53319627,0.02499342,95.23539881],[4.53319682,0.02499513,95.23609866],[4.53319738,0.02499685,95.23679835],[4.53319793,0.02499856,95.23749787],[4.53319849,0.02500028,95.23819723],[4.53319904,0.02500199,95.23889643],[4.53319959,0.02500371,95.23959547],[4.53320015,0.02500542,95.24029436],[4.5332007,0.02500714,95.2409931],[4.53320126,0.02500885,95.24169169],[4.53320181,0.02501057,95.24239013],[4.53320236,0.02501228,95.24308843],[4.53320292,0.025014,95.24378659],[4.53320347,0.02501571,95.24448461],[4.53320403,0.02501743,95.24518249],[4.53320458,0.02501914,95.24588023],[4.53320514,0.02502086,95.24657785],[4.53320569,0.02502257,95.24727534],[4.53320624,0.02502429,95.2479727],[4.5332068,0.025026,95.24866994],[4.53320735,0.02502772,95.24936705],[4.5332079,0.02502943,95.25006405],[4.53320846,0.02503115,95.25076093],[4.53320901,0.02503286,95.2514577],[4.53320957,0.02503458,95.25215435],[4.53321012,0.02503629,95.2528509],[4.53321067,0.02503801,95.25354734],[4.53321123,0.02503973,95.25424368],[4.53321178,0.02504144,95.25493992],[4.53321234,0.02504316,95.25563606],[4.53321289,0.02504487,95.2563321],[4.53321344,0.02504659,95.25702805],[4.533214,0.0250483,95.25772391],[4.53321455,0.02505002,95.25841969],[4.53318592,0.02505939,95.1673687]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3,"sOffset":370.7833669163}},{"geometry":{"coordinates":[[[4.53321455,0.02505002,95.25841969],[4.533214,0.0250483,95.25772391],[4.53321344,0.02504659,95.25702805],[4.53321289,0.02504487,95.2563321],[4.53321234,0.02504316,95.25563606],[4.53321178,0.02504144,95.25493992],[4.53321123,0.02503973,95.25424368],[4.53321067,0.02503801,95.25354734],[4.53321012,0.02503629,95.2528509],[4.53320957,0.02503458,95.25215435],[4.53320901,0.02503286,95.2514577],[4.53320846,0.02503115,95.25076093],[4.5332079,0.02502943,95.25006405],[4.53320735,0.02502772,95.24936705],[4.5332068,0.025026,95.24866994],[4.53320624,0.02502429,95.2479727],[4.53320569,0.02502257,95.24727534],[4.53320514,0.02502086,95.24657785],[4.53320458,0.02501914,95.24588023],[4.53320403,0.02501743,95.24518249],[4.53320347,0.02501571,95.24448461],[4.53320292,0.025014,95.24378659],[4.53320236,0.02501228,95.24308843],[4.53320181,0.02501057,95.24239013],[4.53320126,0.02500885,95.24169169],[4.5332007,0.02500714,95.2409931],[4.53320015,0.02500542,95.24029436],[4.53319959,0.02500371,95.23959547],[4.53319904,0.02500199,95.23889643],[4.53319849,0.02500028,95.23819723],[4.53319793,0.02499856,95.23749787],[4.53319738,0.02499685,95.23679835],[4.53319682,0.02499513,95.23609866],[4.53319627,0.02499342,95.23539881],[4.53319571,0.0249917,95.23469879],[4.53319516,0.02498999,95.2339986],[4.5331946,0.02498827,95.23329823],[4.53319405,0.02498656,95.23259768],[4.5331935,0.02498485,95.23189696],[4.53319294,0.02498313,95.23119605],[4.53319239,0.02498142,95.23049496],[4.53319183,0.0249797,95.22979368],[4.53319128,0.02497799,95.22909222],[4.53319072,0.02497627,95.22839056],[4.53319017,0.02497456,95.2276887],[4.53318961,0.02497284,95.22698665],[4.53318906,0.02497113,95.2262844],[4.5331885,0.02496941,95.22558195],[4.53318795,0.0249677,95.2248793],[4.53318739,0.02496598,95.22417643],[4.53318684,0.02496427,95.22347336],[4.53318628,0.02496255,95.22277007],[4.53318573,0.02496084,95.22206657],[4.53318517,0.02495912,95.22136286],[4.53318462,0.02495741,95.22065892],[4.53318406,0.02495569,95.21995476],[4.53318351,0.02495398,95.21925038],[4.53318295,0.02495226,95.21854577],[4.5331824,0.02495055,95.21784092],[4.53318184,0.02494884,95.21713585],[4.53318129,0.02494712,95.21643054],[4.53318073,0.02494541,95.215725],[4.53318018,0.02494369,95.21501922],[4.53317962,0.02494198,95.21431319],[4.53317907,0.02494026,95.21360692],[4.53317851,0.02493855,95.2129004],[4.53317796,0.02493683,95.21219363],[4.5331774,0.02493512,95.21148661],[4.53317685,0.0249334,95.21077934],[4.53317629,0.02493169,95.2100718],[4.53317573,0.02492998,95.20936401],[4.53317518,0.02492826,95.20865596],[4.53317462,0.02492655,95.20794764],[4.53317407,0.02492483,95.20723905],[4.53317351,0.02492312,95.20653019],[4.53317296,0.0249214,95.20582107],[4.5331724,0.02491969,95.20511167],[4.53317184,0.02491797,95.20440201],[4.53317129,0.02491626,95.20369211],[4.53317073,0.02491455,95.20298197],[4.53317018,0.02491283,95.20227159],[4.53316962,0.02491112,95.201561],[4.53316906,0.0249094,95.2008502],[4.53316851,0.02490769,95.2001392],[4.53316795,0.02490597,95.19942801],[4.5331674,0.02490426,95.19871664],[4.53316684,0.02490255,95.1980051],[4.53316628,0.02490083,95.19729339],[4.53316573,0.02489912,95.19658153],[4.53316517,0.0248974,95.19586949],[4.53316461,0.02489569,95.19515729],[4.53316406,0.02489397,95.19444492],[4.5331635,0.02489226,95.19373237],[4.53316295,0.02489055,95.19301964],[4.53316239,0.02488883,95.19230674],[4.53316183,0.02488712,95.19159365],[4.53316128,0.0248854,95.19088037],[4.53316072,0.02488369,95.19016691],[4.53316016,0.02488197,95.18945325],[4.53315961,0.02488026,95.1887394],[4.53315905,0.02487855,95.18802536],[4.5331585,0.02487683,95.18731111],[4.53315794,0.02487512,95.18659666],[4.53315738,0.0248734,95.185882],[4.53315683,0.02487169,95.18516714],[4.53315627,0.02486997,95.18445206],[4.53315571,0.02486826,95.18373677],[4.53315516,0.02486655,95.18302126],[4.5331546,0.02486483,95.18230554],[4.53315405,0.02486312,95.18158959],[4.53315349,0.0248614,95.18087341],[4.53315293,0.02485969,95.18015701],[4.53315238,0.02485798,95.17944037],[4.53315182,0.02485626,95.1787235],[4.53315126,0.02485455,95.17800639],[4.53315071,0.02485283,95.17728905],[4.53315015,0.02485112,95.17657146],[4.53314959,0.0248494,95.17585363],[4.53314904,0.02484769,95.17513554],[4.53314848,0.02484598,95.17441721],[4.53314792,0.02484426,95.17369862],[4.53314737,0.02484255,95.17297978],[4.53314681,0.02484083,95.17226068],[4.53314626,0.02483912,95.17154131],[4.5331457,0.02483741,95.17082168],[4.53314514,0.02483569,95.17010178],[4.53314459,0.02483398,95.16938161],[4.53314403,0.02483226,95.16866117],[4.53314347,0.02483055,95.16794046],[4.53314292,0.02482884,95.16721947],[4.53314236,0.02482712,95.16649823],[4.5331418,0.02482541,95.16577673],[4.53314124,0.02482369,95.16505498],[4.53314069,0.02482198,95.16433299],[4.53314013,0.02482026,95.16361076],[4.53313957,0.02481855,95.1628883],[4.53313902,0.02481684,95.1621656],[4.53313846,0.02481512,95.16144269],[4.5331379,0.02481341,95.16071956],[4.53313735,0.02481169,95.15999623],[4.53313679,0.02480998,95.15927268],[4.53313623,0.02480827,95.15854894],[4.53313568,0.02480655,95.15782501],[4.53313512,0.02480484,95.15710089],[4.53313456,0.02480312,95.15637659],[4.53313401,0.02480141,95.15565211],[4.53313345,0.0247997,95.15492746],[4.53313289,0.02479798,95.15420265],[4.53313234,0.02479627,95.15347768],[4.53313178,0.02479455,95.15275256],[4.53313122,0.02479284,95.15202729],[4.53313067,0.02479113,95.15130188],[4.53313011,0.02478941,95.15057633],[4.53312955,0.0247877,95.14985066],[4.533129,0.02478598,95.14912486],[4.53312844,0.02478427,95.14839894],[4.53312788,0.02478256,95.14767291],[4.53312733,0.02478084,95.14694678],[4.53312677,0.02477913,95.14622055],[4.53312622,0.02477742,95.14549424],[4.53312566,0.0247757,95.14476785],[4.5331251,0.02477399,95.14404139],[4.53312464,0.02477256,95.14343368],[4.53315585,0.02476227,95.24080755],[4.53315632,0.02476371,95.24141125],[4.53315687,0.02476542,95.24213283],[4.53315743,0.02476714,95.24285427],[4.53315798,0.02476885,95.24357556],[4.53315853,0.02477056,95.2442967],[4.53315909,0.02477228,95.2450177],[4.53315964,0.02477399,95.24573856],[4.5331602,0.02477571,95.24645926],[4.53316075,0.02477742,95.24717982],[4.53316131,0.02477914,95.24790023],[4.53316186,0.02478085,95.2486205],[4.53316242,0.02478257,95.24934061],[4.53316297,0.02478428,95.25006058],[4.53316353,0.024786,95.25078041],[4.53316408,0.02478771,95.25150009],[4.53316464,0.02478943,95.25221963],[4.53316519,0.02479114,95.25293902],[4.53316575,0.02479286,95.25365826],[4.5331663,0.02479458,95.25437736],[4.53316686,0.02479629,95.25509632],[4.53316741,0.02479801,95.25581514],[4.53316796,0.02479972,95.25653381],[4.53316852,0.02480144,95.25725234],[4.53316907,0.02480315,95.25797073],[4.53316963,0.02480487,95.25868898],[4.53317018,0.02480658,95.25940708],[4.53317074,0.0248083,95.26012504],[4.53317129,0.02481001,95.26084287],[4.53317184,0.02481173,95.26156055],[4.5331724,0.02481344,95.26227809],[4.53317295,0.02481516,95.26299549],[4.53317351,0.02481687,95.26371275],[4.53317406,0.02481859,95.26442988],[4.53317461,0.0248203,95.26514686],[4.53317517,0.02482202,95.26586371],[4.53317572,0.02482374,95.26658042],[4.53317627,0.02482545,95.267297],[4.53317683,0.02482717,95.26801345],[4.53317738,0.02482888,95.26872979],[4.53317794,0.0248306,95.26944602],[4.53317849,0.02483231,95.27016215],[4.53317904,0.02483403,95.2708782],[4.5331796,0.02483574,95.27159417],[4.53318015,0.02483746,95.27231006],[4.5331807,0.02483917,95.2730259],[4.53318126,0.02484089,95.27374168],[4.53318181,0.02484261,95.27445742],[4.53318237,0.02484432,95.27517312],[4.53318292,0.02484604,95.2758888],[4.53318347,0.02484775,95.27660446],[4.53318403,0.02484947,95.27732012],[4.53318458,0.02485118,95.27803577],[4.53318513,0.0248529,95.27875144],[4.53318569,0.02485461,95.27946712],[4.53318624,0.02485633,95.28018283],[4.53318679,0.02485805,95.28089858],[4.53318735,0.02485976,95.28161437],[4.5331879,0.02486148,95.28233022],[4.53318845,0.02486319,95.28304613],[4.53318901,0.02486491,95.28376212],[4.53318956,0.02486662,95.28447819],[4.53319012,0.02486834,95.28519434],[4.53319067,0.02487005,95.2859106],[4.53319122,0.02487177,95.28662696],[4.53319178,0.02487348,95.28734345],[4.53319233,0.0248752,95.28806006],[4.53319289,0.02487692,95.2887768],[4.53319344,0.02487863,95.28949369],[4.53319399,0.02488035,95.29021073],[4.53319455,0.02488206,95.29092794],[4.5331951,0.02488378,95.29164531],[4.53319566,0.02488549,95.29236287],[4.53319621,0.02488721,95.29308062],[4.53319677,0.02488892,95.29379856],[4.53319732,0.02489064,95.29451672],[4.53319787,0.02489235,95.29523509],[4.53319843,0.02489407,95.29595368],[4.53319898,0.02489578,95.2966725],[4.53319954,0.0248975,95.29739153],[4.53320009,0.02489921,95.29811079],[4.53320065,0.02490093,95.29883025],[4.5332012,0.02490264,95.29954992],[4.53320176,0.02490436,95.30026979],[4.53320231,0.02490607,95.30098987],[4.53320287,0.02490779,95.30171014],[4.53320342,0.0249095,95.30243061],[4.53320398,0.02491122,95.30315127],[4.53320453,0.02491293,95.30387211],[4.53320509,0.02491465,95.30459314],[4.53320564,0.02491636,95.30531434],[4.5332062,0.02491808,95.30603572],[4.53320676,0.02491979,95.30675728],[4.53320731,0.02492151,95.307479],[4.53320787,0.02492322,95.30820089],[4.53320842,0.02492494,95.30892294],[4.53320898,0.02492665,95.30964515],[4.53320953,0.02492837,95.31036751],[4.53321009,0.02493008,95.31109002],[4.53321065,0.0249318,95.31181268],[4.5332112,0.02493351,95.31253549],[4.53321176,0.02493523,95.31325843],[4.53321231,0.02493694,95.31398151],[4.53321287,0.02493866,95.31470472],[4.53321343,0.02494037,95.31542807],[4.53321398,0.02494208,95.31615154],[4.53321454,0.0249438,95.31687513],[4.53321509,0.02494551,95.31759884],[4.53321565,0.02494723,95.31832266],[4.53321621,0.02494894,95.31904659],[4.53321676,0.02495066,95.31977064],[4.53321732,0.02495237,95.32049479],[4.53321788,0.02495409,95.32121903],[4.53321843,0.0249558,95.32194338],[4.53321899,0.02495752,95.32266782],[4.53321955,0.02495923,95.32339234],[4.5332201,0.02496095,95.32411696],[4.53322066,0.02496266,95.32484165],[4.53322121,0.02496437,95.32556643],[4.53322177,0.02496609,95.32629128],[4.53322233,0.0249678,95.3270162],[4.53322288,0.02496952,95.32774119],[4.53322344,0.02497123,95.32846625],[4.533224,0.02497295,95.32919136],[4.53322455,0.02497466,95.32991654],[4.53322511,0.02497638,95.33064176],[4.53322567,0.02497809,95.33136704],[4.53322622,0.02497981,95.33209236],[4.53322678,0.02498152,95.33281773],[4.53322734,0.02498323,95.33354313],[4.53322789,0.02498495,95.33426857],[4.53322845,0.02498666,95.33499404],[4.53322901,0.02498838,95.33571954],[4.53322956,0.02499009,95.33644506],[4.53323012,0.02499181,95.33717061],[4.53323068,0.02499352,95.33789617],[4.53323123,0.02499524,95.33862174],[4.53323179,0.02499695,95.33934733],[4.53323235,0.02499867,95.34007292],[4.5332329,0.02500038,95.34079851],[4.53323346,0.02500209,95.3415241],[4.53323402,0.02500381,95.34224969],[4.53323457,0.02500552,95.34297526],[4.53323513,0.02500724,95.34370083],[4.53323569,0.02500895,95.34442638],[4.53323624,0.02501067,95.34515191],[4.5332368,0.02501238,95.34587742],[4.53323736,0.0250141,95.34660289],[4.53323791,0.02501581,95.34732834],[4.53323847,0.02501753,95.34805376],[4.53323903,0.02501924,95.34877913],[4.53323958,0.02502095,95.34950447],[4.53324014,0.02502267,95.35022975],[4.5332407,0.02502438,95.35095499],[4.53324125,0.0250261,95.35168018],[4.53324181,0.02502781,95.35240531],[4.53324236,0.02502953,95.35313037],[4.53324292,0.02503124,95.35385538],[4.53324348,0.02503296,95.35458031],[4.53324403,0.02503467,95.35530518],[4.53324459,0.02503639,95.35602996],[4.53324515,0.0250381,95.35675467],[4.5332457,0.02503982,95.3574793],[4.53321455,0.02505002,95.25841969]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2,"sOffset":370.7833669163}},{"geometry":{"coordinates":[[[4.5332457,0.02503982,95.3574793],[4.53324515,0.0250381,95.35675467],[4.53324459,0.02503639,95.35602996],[4.53324403,0.02503467,95.35530518],[4.53324348,0.02503296,95.35458031],[4.53324292,0.02503124,95.35385538],[4.53324236,0.02502953,95.35313037],[4.53324181,0.02502781,95.35240531],[4.53324125,0.0250261,95.35168018],[4.5332407,0.02502438,95.35095499],[4.53324014,0.02502267,95.35022975],[4.53323958,0.02502095,95.34950447],[4.53323903,0.02501924,95.34877913],[4.53323847,0.02501753,95.34805376],[4.53323791,0.02501581,95.34732834],[4.53323736,0.0250141,95.34660289],[4.5332368,0.02501238,95.34587742],[4.53323624,0.02501067,95.34515191],[4.53323569,0.02500895,95.34442638],[4.53323513,0.02500724,95.34370083],[4.53323457,0.02500552,95.34297526],[4.53323402,0.02500381,95.34224969],[4.53323346,0.02500209,95.3415241],[4.5332329,0.02500038,95.34079851],[4.53323235,0.02499867,95.34007292],[4.53323179,0.02499695,95.33934733],[4.53323123,0.02499524,95.33862174],[4.53323068,0.02499352,95.33789617],[4.53323012,0.02499181,95.33717061],[4.53322956,0.02499009,95.33644506],[4.53322901,0.02498838,95.33571954],[4.53322845,0.02498666,95.33499404],[4.53322789,0.02498495,95.33426857],[4.53322734,0.02498323,95.33354313],[4.53322678,0.02498152,95.33281773],[4.53322622,0.02497981,95.33209236],[4.53322567,0.02497809,95.33136704],[4.53322511,0.02497638,95.33064176],[4.53322455,0.02497466,95.32991654],[4.533224,0.02497295,95.32919136],[4.53322344,0.02497123,95.32846625],[4.53322288,0.02496952,95.32774119],[4.53322233,0.0249678,95.3270162],[4.53322177,0.02496609,95.32629128],[4.53322121,0.02496437,95.32556643],[4.53322066,0.02496266,95.32484165],[4.5332201,0.02496095,95.32411696],[4.53321955,0.02495923,95.32339234],[4.53321899,0.02495752,95.32266782],[4.53321843,0.0249558,95.32194338],[4.53321788,0.02495409,95.32121903],[4.53321732,0.02495237,95.32049479],[4.53321676,0.02495066,95.31977064],[4.53321621,0.02494894,95.31904659],[4.53321565,0.02494723,95.31832266],[4.53321509,0.02494551,95.31759884],[4.53321454,0.0249438,95.31687513],[4.53321398,0.02494208,95.31615154],[4.53321343,0.02494037,95.31542807],[4.53321287,0.02493866,95.31470472],[4.53321231,0.02493694,95.31398151],[4.53321176,0.02493523,95.31325843],[4.5332112,0.02493351,95.31253549],[4.53321065,0.0249318,95.31181268],[4.53321009,0.02493008,95.31109002],[4.53320953,0.02492837,95.31036751],[4.53320898,0.02492665,95.30964515],[4.53320842,0.02492494,95.30892294],[4.53320787,0.02492322,95.30820089],[4.53320731,0.02492151,95.307479],[4.53320676,0.02491979,95.30675728],[4.5332062,0.02491808,95.30603572],[4.53320564,0.02491636,95.30531434],[4.53320509,0.02491465,95.30459314],[4.53320453,0.02491293,95.30387211],[4.53320398,0.02491122,95.30315127],[4.53320342,0.0249095,95.30243061],[4.53320287,0.02490779,95.30171014],[4.53320231,0.02490607,95.30098987],[4.53320176,0.02490436,95.30026979],[4.5332012,0.02490264,95.29954992],[4.53320065,0.02490093,95.29883025],[4.53320009,0.02489921,95.29811079],[4.53319954,0.0248975,95.29739153],[4.53319898,0.02489578,95.2966725],[4.53319843,0.02489407,95.29595368],[4.53319787,0.02489235,95.29523509],[4.53319732,0.02489064,95.29451672],[4.53319677,0.02488892,95.29379856],[4.53319621,0.02488721,95.29308062],[4.53319566,0.02488549,95.29236287],[4.5331951,0.02488378,95.29164531],[4.53319455,0.02488206,95.29092794],[4.53319399,0.02488035,95.29021073],[4.53319344,0.02487863,95.28949369],[4.53319289,0.02487692,95.2887768],[4.53319233,0.0248752,95.28806006],[4.53319178,0.02487348,95.28734345],[4.53319122,0.02487177,95.28662696],[4.53319067,0.02487005,95.2859106],[4.53319012,0.02486834,95.28519434],[4.53318956,0.02486662,95.28447819],[4.53318901,0.02486491,95.28376212],[4.53318845,0.02486319,95.28304613],[4.5331879,0.02486148,95.28233022],[4.53318735,0.02485976,95.28161437],[4.53318679,0.02485805,95.28089858],[4.53318624,0.02485633,95.28018283],[4.53318569,0.02485461,95.27946712],[4.53318513,0.0248529,95.27875144],[4.53318458,0.02485118,95.27803577],[4.53318403,0.02484947,95.27732012],[4.53318347,0.02484775,95.27660446],[4.53318292,0.02484604,95.2758888],[4.53318237,0.02484432,95.27517312],[4.53318181,0.02484261,95.27445742],[4.53318126,0.02484089,95.27374168],[4.5331807,0.02483917,95.2730259],[4.53318015,0.02483746,95.27231006],[4.5331796,0.02483574,95.27159417],[4.53317904,0.02483403,95.2708782],[4.53317849,0.02483231,95.27016215],[4.53317794,0.0248306,95.26944602],[4.53317738,0.02482888,95.26872979],[4.53317683,0.02482717,95.26801345],[4.53317627,0.02482545,95.267297],[4.53317572,0.02482374,95.26658042],[4.53317517,0.02482202,95.26586371],[4.53317461,0.0248203,95.26514686],[4.53317406,0.02481859,95.26442988],[4.53317351,0.02481687,95.26371275],[4.53317295,0.02481516,95.26299549],[4.5331724,0.02481344,95.26227809],[4.53317184,0.02481173,95.26156055],[4.53317129,0.02481001,95.26084287],[4.53317074,0.0248083,95.26012504],[4.53317018,0.02480658,95.25940708],[4.53316963,0.02480487,95.25868898],[4.53316907,0.02480315,95.25797073],[4.53316852,0.02480144,95.25725234],[4.53316796,0.02479972,95.25653381],[4.53316741,0.02479801,95.25581514],[4.53316686,0.02479629,95.25509632],[4.5331663,0.02479458,95.25437736],[4.53316575,0.02479286,95.25365826],[4.53316519,0.02479114,95.25293902],[4.53316464,0.02478943,95.25221963],[4.53316408,0.02478771,95.25150009],[4.53316353,0.024786,95.25078041],[4.53316297,0.02478428,95.25006058],[4.53316242,0.02478257,95.24934061],[4.53316186,0.02478085,95.2486205],[4.53316131,0.02477914,95.24790023],[4.53316075,0.02477742,95.24717982],[4.5331602,0.02477571,95.24645926],[4.53315964,0.02477399,95.24573856],[4.53315909,0.02477228,95.2450177],[4.53315853,0.02477056,95.2442967],[4.53315798,0.02476885,95.24357556],[4.53315743,0.02476714,95.24285427],[4.53315687,0.02476542,95.24213283],[4.53315632,0.02476371,95.24141125],[4.53315585,0.02476227,95.24080755],[4.53318633,0.02475223,95.33587864],[4.53318679,0.02475367,95.33649011],[4.53318735,0.02475538,95.33722116],[4.53318791,0.0247571,95.33795224],[4.53318847,0.02475881,95.33868337],[4.53318903,0.02476052,95.33941452],[4.53318959,0.02476224,95.34014569],[4.53319014,0.02476395,95.34087689],[4.5331907,0.02476566,95.34160811],[4.53319126,0.02476738,95.34233933],[4.53319182,0.02476909,95.34307056],[4.53319238,0.02477081,95.3438018],[4.53319293,0.02477252,95.34453302],[4.53319349,0.02477424,95.34526424],[4.53319405,0.02477595,95.34599544],[4.53319461,0.02477767,95.34672662],[4.53319517,0.02477938,95.34745777],[4.53319572,0.02478109,95.34818889],[4.53319628,0.02478281,95.34891997],[4.53319684,0.02478452,95.349651],[4.5331974,0.02478624,95.35038199],[4.53319795,0.02478795,95.35111293],[4.53319851,0.02478967,95.3518438],[4.53319907,0.02479138,95.35257461],[4.53319963,0.0247931,95.35330534],[4.53320018,0.02479481,95.354036],[4.53320074,0.02479653,95.35476658],[4.5332013,0.02479824,95.35549707],[4.53320186,0.02479996,95.35622747],[4.53320241,0.02480167,95.35695777],[4.53320297,0.02480338,95.35768796],[4.53320353,0.0248051,95.35841805],[4.53320408,0.02480681,95.35914802],[4.53320464,0.02480853,95.35987787],[4.5332052,0.02481024,95.36060759],[4.53320575,0.02481196,95.36133718],[4.53320631,0.02481367,95.36206663],[4.53320686,0.02481539,95.36279595],[4.53320742,0.0248171,95.36352513],[4.53320798,0.02481882,95.36425418],[4.53320853,0.02482053,95.3649831],[4.53320909,0.02482225,95.36571189],[4.53320964,0.02482397,95.36644056],[4.5332102,0.02482568,95.36716912],[4.53321076,0.0248274,95.36789755],[4.53321131,0.02482911,95.36862587],[4.53321187,0.02483083,95.36935408],[4.53321242,0.02483254,95.37008218],[4.53321298,0.02483426,95.37081018],[4.53321353,0.02483597,95.37153807],[4.53321409,0.02483769,95.37226586],[4.53321464,0.0248394,95.37299356],[4.5332152,0.02484112,95.37372117],[4.53321575,0.02484283,95.37444868],[4.53321631,0.02484455,95.37517611],[4.53321686,0.02484627,95.37590346],[4.53321742,0.02484798,95.37663072],[4.53321797,0.0248497,95.3773579],[4.53321852,0.02485141,95.37808501],[4.53321908,0.02485313,95.37881205],[4.53321963,0.02485484,95.37953902],[4.53322019,0.02485656,95.38026592],[4.53322074,0.02485827,95.38099275],[4.5332213,0.02485999,95.38171953],[4.53322185,0.02486171,95.38244625],[4.5332224,0.02486342,95.38317292],[4.53322296,0.02486514,95.38389953],[4.53322351,0.02486685,95.3846261],[4.53322407,0.02486857,95.38535262],[4.53322462,0.02487028,95.38607909],[4.53322517,0.024872,95.38680553],[4.53322573,0.02487372,95.38753193],[4.53322628,0.02487543,95.3882583],[4.53322683,0.02487715,95.38898464],[4.53322739,0.02487886,95.38971095],[4.53322794,0.02488058,95.39043723],[4.53322849,0.0248823,95.3911635],[4.53322905,0.02488401,95.39188974],[4.5332296,0.02488573,95.39261597],[4.53323015,0.02488744,95.39334219],[4.53323071,0.02488916,95.39406839],[4.53323126,0.02489088,95.39479459],[4.53323181,0.02489259,95.39552079],[4.53323237,0.02489431,95.39624698],[4.53323292,0.02489602,95.39697318],[4.53323347,0.02489774,95.39769938],[4.53323402,0.02489946,95.39842559],[4.53323458,0.02490117,95.39915182],[4.53323513,0.02490289,95.39987805],[4.53323568,0.0249046,95.40060431],[4.53323624,0.02490632,95.40133058],[4.53323679,0.02490804,95.40205688],[4.53323734,0.02490975,95.4027832],[4.53323789,0.02491147,95.40350955],[4.53323845,0.02491319,95.40423594],[4.533239,0.0249149,95.40496236],[4.53323955,0.02491662,95.40568882],[4.5332401,0.02491833,95.40641532],[4.53324066,0.02492005,95.40714186],[4.53324121,0.02492177,95.40786846],[4.53324176,0.02492348,95.4085951],[4.53324231,0.0249252,95.40932179],[4.53324287,0.02492692,95.41004855],[4.53324342,0.02492863,95.41077536],[4.53324397,0.02493035,95.41150223],[4.53324452,0.02493206,95.41222917],[4.53324508,0.02493378,95.41295618],[4.53324563,0.0249355,95.41368326],[4.53324618,0.02493721,95.41441042],[4.53324673,0.02493893,95.41513765],[4.53324729,0.02494065,95.41586496],[4.53324784,0.02494236,95.41659236],[4.53324839,0.02494408,95.41731985],[4.53324894,0.02494579,95.41804742],[4.5332495,0.02494751,95.41877509],[4.53325005,0.02494923,95.41950285],[4.5332506,0.02495094,95.42023071],[4.53325115,0.02495266,95.42095868],[4.5332517,0.02495438,95.42168675],[4.53325226,0.02495609,95.42241493],[4.53325281,0.02495781,95.42314322],[4.53325336,0.02495953,95.42387162],[4.53325391,0.02496124,95.42460014],[4.53325447,0.02496296,95.42532879],[4.53325502,0.02496467,95.42605755],[4.53325557,0.02496639,95.42678645],[4.53325612,0.02496811,95.42751547],[4.53325667,0.02496982,95.42824463],[4.53325723,0.02497154,95.42897392],[4.53325778,0.02497326,95.42970335],[4.53325833,0.02497497,95.43043293],[4.53325888,0.02497669,95.43116265],[4.53325944,0.0249784,95.43189252],[4.53325999,0.02498012,95.43262254],[4.53326054,0.02498184,95.43335271],[4.53326109,0.02498355,95.43408305],[4.53326165,0.02498527,95.43481354],[4.5332622,0.02498699,95.4355442],[4.53326275,0.0249887,95.43627503],[4.5332633,0.02499042,95.43700603],[4.53326385,0.02499213,95.4377372],[4.53326441,0.02499385,95.43846854],[4.53326496,0.02499557,95.43920007],[4.53326551,0.02499728,95.43993178],[4.53326606,0.024999,95.44066368],[4.53326662,0.02500072,95.44139577],[4.53326717,0.02500243,95.44212805],[4.53326772,0.02500415,95.44286052],[4.53326827,0.02500586,95.4435932],[4.53326883,0.02500758,95.44432608],[4.53326938,0.0250093,95.44505916],[4.53326993,0.02501101,95.44579245],[4.53327049,0.02501273,95.44652595],[4.53327104,0.02501444,95.44725967],[4.53327159,0.02501616,95.44799361],[4.53327214,0.02501788,95.44872777],[4.5332727,0.02501959,95.44946215],[4.53327325,0.02502131,95.45019676],[4.5332738,0.02502303,95.4509316],[4.53327436,0.02502474,95.45166667],[4.53327491,0.02502646,95.45240199],[4.53327546,0.02502817,95.45313754],[4.53327602,0.02502989,95.45387334],[4.5332457,0.02503982,95.3574793]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1,"sOffset":370.7833669163}},{"geometry":{"coordinates":[[[4.53327602,0.02502989,95.45387334],[4.53327546,0.02502817,95.45313754],[4.53327491,0.02502646,95.45240199],[4.53327436,0.02502474,95.45166667],[4.5332738,0.02502303,95.4509316],[4.53327325,0.02502131,95.45019676],[4.5332727,0.02501959,95.44946215],[4.53327214,0.02501788,95.44872777],[4.53327159,0.02501616,95.44799361],[4.53327104,0.02501444,95.44725967],[4.53327049,0.02501273,95.44652595],[4.53326993,0.02501101,95.44579245],[4.53326938,0.0250093,95.44505916],[4.53326883,0.02500758,95.44432608],[4.53326827,0.02500586,95.4435932],[4.53326772,0.02500415,95.44286052],[4.53326717,0.02500243,95.44212805],[4.53326662,0.02500072,95.44139577],[4.53326606,0.024999,95.44066368],[4.53326551,0.02499728,95.43993178],[4.53326496,0.02499557,95.43920007],[4.53326441,0.02499385,95.43846854],[4.53326385,0.02499213,95.4377372],[4.5332633,0.02499042,95.43700603],[4.53326275,0.0249887,95.43627503],[4.5332622,0.02498699,95.4355442],[4.53326165,0.02498527,95.43481354],[4.53326109,0.02498355,95.43408305],[4.53326054,0.02498184,95.43335271],[4.53325999,0.02498012,95.43262254],[4.53325944,0.0249784,95.43189252],[4.53325888,0.02497669,95.43116265],[4.53325833,0.02497497,95.43043293],[4.53325778,0.02497326,95.42970335],[4.53325723,0.02497154,95.42897392],[4.53325667,0.02496982,95.42824463],[4.53325612,0.02496811,95.42751547],[4.53325557,0.02496639,95.42678645],[4.53325502,0.02496467,95.42605755],[4.53325447,0.02496296,95.42532879],[4.53325391,0.02496124,95.42460014],[4.53325336,0.02495953,95.42387162],[4.53325281,0.02495781,95.42314322],[4.53325226,0.02495609,95.42241493],[4.5332517,0.02495438,95.42168675],[4.53325115,0.02495266,95.42095868],[4.5332506,0.02495094,95.42023071],[4.53325005,0.02494923,95.41950285],[4.5332495,0.02494751,95.41877509],[4.53324894,0.02494579,95.41804742],[4.53324839,0.02494408,95.41731985],[4.53324784,0.02494236,95.41659236],[4.53324729,0.02494065,95.41586496],[4.53324673,0.02493893,95.41513765],[4.53324618,0.02493721,95.41441042],[4.53324563,0.0249355,95.41368326],[4.53324508,0.02493378,95.41295618],[4.53324452,0.02493206,95.41222917],[4.53324397,0.02493035,95.41150223],[4.53324342,0.02492863,95.41077536],[4.53324287,0.02492692,95.41004855],[4.53324231,0.0249252,95.40932179],[4.53324176,0.02492348,95.4085951],[4.53324121,0.02492177,95.40786846],[4.53324066,0.02492005,95.40714186],[4.5332401,0.02491833,95.40641532],[4.53323955,0.02491662,95.40568882],[4.533239,0.0249149,95.40496236],[4.53323845,0.02491319,95.40423594],[4.53323789,0.02491147,95.40350955],[4.53323734,0.02490975,95.4027832],[4.53323679,0.02490804,95.40205688],[4.53323624,0.02490632,95.40133058],[4.53323568,0.0249046,95.40060431],[4.53323513,0.02490289,95.39987805],[4.53323458,0.02490117,95.39915182],[4.53323402,0.02489946,95.39842559],[4.53323347,0.02489774,95.39769938],[4.53323292,0.02489602,95.39697318],[4.53323237,0.02489431,95.39624698],[4.53323181,0.02489259,95.39552079],[4.53323126,0.02489088,95.39479459],[4.53323071,0.02488916,95.39406839],[4.53323015,0.02488744,95.39334219],[4.5332296,0.02488573,95.39261597],[4.53322905,0.02488401,95.39188974],[4.53322849,0.0248823,95.3911635],[4.53322794,0.02488058,95.39043723],[4.53322739,0.02487886,95.38971095],[4.53322683,0.02487715,95.38898464],[4.53322628,0.02487543,95.3882583],[4.53322573,0.02487372,95.38753193],[4.53322517,0.024872,95.38680553],[4.53322462,0.02487028,95.38607909],[4.53322407,0.02486857,95.38535262],[4.53322351,0.02486685,95.3846261],[4.53322296,0.02486514,95.38389953],[4.5332224,0.02486342,95.38317292],[4.53322185,0.02486171,95.38244625],[4.5332213,0.02485999,95.38171953],[4.53322074,0.02485827,95.38099275],[4.53322019,0.02485656,95.38026592],[4.53321963,0.02485484,95.37953902],[4.53321908,0.02485313,95.37881205],[4.53321852,0.02485141,95.37808501],[4.53321797,0.0248497,95.3773579],[4.53321742,0.02484798,95.37663072],[4.53321686,0.02484627,95.37590346],[4.53321631,0.02484455,95.37517611],[4.53321575,0.02484283,95.37444868],[4.5332152,0.02484112,95.37372117],[4.53321464,0.0248394,95.37299356],[4.53321409,0.02483769,95.37226586],[4.53321353,0.02483597,95.37153807],[4.53321298,0.02483426,95.37081018],[4.53321242,0.02483254,95.37008218],[4.53321187,0.02483083,95.36935408],[4.53321131,0.02482911,95.36862587],[4.53321076,0.0248274,95.36789755],[4.5332102,0.02482568,95.36716912],[4.53320964,0.02482397,95.36644056],[4.53320909,0.02482225,95.36571189],[4.53320853,0.02482053,95.3649831],[4.53320798,0.02481882,95.36425418],[4.53320742,0.0248171,95.36352513],[4.53320686,0.02481539,95.36279595],[4.53320631,0.02481367,95.36206663],[4.53320575,0.02481196,95.36133718],[4.5332052,0.02481024,95.36060759],[4.53320464,0.02480853,95.35987787],[4.53320408,0.02480681,95.35914802],[4.53320353,0.0248051,95.35841805],[4.53320297,0.02480338,95.35768796],[4.53320241,0.02480167,95.35695777],[4.53320186,0.02479996,95.35622747],[4.5332013,0.02479824,95.35549707],[4.53320074,0.02479653,95.35476658],[4.53320018,0.02479481,95.354036],[4.53319963,0.0247931,95.35330534],[4.53319907,0.02479138,95.35257461],[4.53319851,0.02478967,95.3518438],[4.53319795,0.02478795,95.35111293],[4.5331974,0.02478624,95.35038199],[4.53319684,0.02478452,95.349651],[4.53319628,0.02478281,95.34891997],[4.53319572,0.02478109,95.34818889],[4.53319517,0.02477938,95.34745777],[4.53319461,0.02477767,95.34672662],[4.53319405,0.02477595,95.34599544],[4.53319349,0.02477424,95.34526424],[4.53319293,0.02477252,95.34453302],[4.53319238,0.02477081,95.3438018],[4.53319182,0.02476909,95.34307056],[4.53319126,0.02476738,95.34233933],[4.5331907,0.02476566,95.34160811],[4.53319014,0.02476395,95.34087689],[4.53318959,0.02476224,95.34014569],[4.53318903,0.02476052,95.33941452],[4.53318847,0.02475881,95.33868337],[4.53318791,0.0247571,95.33795224],[4.53318735,0.02475538,95.33722116],[4.53318679,0.02475367,95.33649011],[4.53318633,0.02475223,95.33587864],[4.53318952,0.02475118,95.34583137],[4.53318999,0.02475262,95.34644801],[4.53319055,0.02475433,95.34718539],[4.53319111,0.02475604,95.34792296],[4.53319167,0.02475775,95.34866071],[4.53319223,0.02475947,95.34939864],[4.53319279,0.02476118,95.35013675],[4.53319335,0.02476289,95.35087502],[4.53319391,0.02476461,95.35161344],[4.53319447,0.02476632,95.35235202],[4.53319503,0.02476804,95.35309074],[4.53319559,0.02476975,95.3538296],[4.53319615,0.02477146,95.35456859],[4.53319671,0.02477318,95.35530769],[4.53319727,0.02477489,95.35604691],[4.53319783,0.0247766,95.35678623],[4.53319839,0.02477832,95.35752564],[4.53319895,0.02478003,95.35826515],[4.53319951,0.02478174,95.35900473],[4.53320007,0.02478346,95.35974439],[4.53320064,0.02478517,95.36048411],[4.5332012,0.02478689,95.36122388],[4.53320176,0.0247886,95.36196371],[4.53320232,0.02479031,95.36270357],[4.53320288,0.02479203,95.36344347],[4.53320344,0.02479374,95.3641834],[4.533204,0.02479545,95.36492333],[4.53320456,0.02479717,95.36566328],[4.53320512,0.02479888,95.36640323],[4.53320568,0.0248006,95.36714318],[4.53320624,0.02480231,95.3678831],[4.5332068,0.02480402,95.36862301],[4.53320736,0.02480574,95.36936288],[4.53320791,0.02480745,95.37010272],[4.53320847,0.02480917,95.37084251],[4.53320903,0.02481088,95.37158224],[4.53320959,0.02481259,95.37232191],[4.53321015,0.02481431,95.37306152],[4.53321071,0.02481602,95.37380106],[4.53321127,0.02481774,95.37454054],[4.53321183,0.02481945,95.37527995],[4.53321239,0.02482116,95.37601931],[4.53321295,0.02482288,95.37675859],[4.53321351,0.02482459,95.37749782],[4.53321407,0.02482631,95.37823698],[4.53321462,0.02482802,95.37897609],[4.53321518,0.02482974,95.37971513],[4.53321574,0.02483145,95.38045412],[4.5332163,0.02483316,95.38119304],[4.53321686,0.02483488,95.38193191],[4.53321742,0.02483659,95.38267071],[4.53321797,0.02483831,95.38340947],[4.53321853,0.02484002,95.38414816],[4.53321909,0.02484174,95.3848868],[4.53321965,0.02484345,95.38562538],[4.53322021,0.02484517,95.38636391],[4.53322077,0.02484688,95.38710238],[4.53322132,0.02484859,95.3878408],[4.53322188,0.02485031,95.38857916],[4.53322244,0.02485202,95.38931747],[4.533223,0.02485374,95.39005573],[4.53322355,0.02485545,95.39079394],[4.53322411,0.02485717,95.39153209],[4.53322467,0.02485888,95.3922702],[4.53322523,0.0248606,95.39300826],[4.53322578,0.02486231,95.39374626],[4.53322634,0.02486403,95.39448422],[4.5332269,0.02486574,95.39522212],[4.53322745,0.02486746,95.39595998],[4.53322801,0.02486917,95.3966978],[4.53322857,0.02487089,95.39743556],[4.53322913,0.0248726,95.39817328],[4.53322968,0.02487432,95.39891095],[4.53323024,0.02487603,95.39964858],[4.5332308,0.02487774,95.40038617],[4.53323135,0.02487946,95.4011237],[4.53323191,0.02488117,95.4018612],[4.53323246,0.02488289,95.40259865],[4.53323302,0.0248846,95.40333606],[4.53323358,0.02488632,95.40407343],[4.53323413,0.02488803,95.40481075],[4.53323469,0.02488975,95.40554804],[4.53323525,0.02489146,95.40628528],[4.5332358,0.02489318,95.40702249],[4.53323636,0.0248949,95.40775965],[4.53323691,0.02489661,95.40849678],[4.53323747,0.02489833,95.40923386],[4.53323803,0.02490004,95.40997091],[4.53323858,0.02490176,95.41070792],[4.53323914,0.02490347,95.4114449],[4.53323969,0.02490519,95.41218184],[4.53324025,0.0249069,95.41291874],[4.5332408,0.02490862,95.41365561],[4.53324136,0.02491033,95.41439244],[4.53324192,0.02491205,95.41512924],[4.53324247,0.02491376,95.41586601],[4.53324303,0.02491548,95.41660278],[4.53324358,0.02491719,95.41733955],[4.53324414,0.02491891,95.41807635],[4.53324469,0.02492062,95.41881318],[4.53324525,0.02492234,95.41955008],[4.5332458,0.02492405,95.42028704],[4.53324636,0.02492577,95.4210241],[4.53324691,0.02492749,95.42176126],[4.53324747,0.0249292,95.42249855],[4.53324802,0.02493092,95.42323598],[4.53324858,0.02493263,95.42397356],[4.53324913,0.02493435,95.42471132],[4.53324969,0.02493606,95.42544926],[4.53325024,0.02493778,95.42618742],[4.5332508,0.02493949,95.42692579],[4.53325135,0.02494121,95.42766441],[4.53325191,0.02494292,95.42840328],[4.53325247,0.02494464,95.42914242],[4.53325302,0.02494635,95.42988186],[4.53325358,0.02494807,95.4306216],[4.53325413,0.02494979,95.43136166],[4.53325469,0.0249515,95.43210207],[4.53325524,0.02495322,95.43284283],[4.5332558,0.02495493,95.43358397],[4.53325635,0.02495665,95.43432549],[4.53325691,0.02495836,95.43506743],[4.53325747,0.02496008,95.43580978],[4.53325802,0.02496179,95.43655258],[4.53325858,0.02496351,95.43729584],[4.53325913,0.02496522,95.43803957],[4.53325969,0.02496694,95.43878379],[4.53326025,0.02496865,95.43952852],[4.5332608,0.02497037,95.44027377],[4.53326136,0.02497208,95.44101957],[4.53326192,0.0249738,95.44176593],[4.53326248,0.02497551,95.44251286],[4.53326303,0.02497723,95.44326039],[4.53326359,0.02497894,95.44400853],[4.53326415,0.02498065,95.44475729],[4.5332647,0.02498237,95.4455067],[4.53326526,0.02498408,95.44625677],[4.53326582,0.0249858,95.44700752],[4.53326638,0.02498751,95.44775896],[4.53326694,0.02498923,95.44851112],[4.5332675,0.02499094,95.449264],[4.53326805,0.02499266,95.45001763],[4.53326861,0.02499437,95.45077203],[4.53326917,0.02499608,95.45152721],[4.53326973,0.0249978,95.45228318],[4.53327029,0.02499951,95.45303997],[4.53327085,0.02500123,95.45379759],[4.53327141,0.02500294,95.45455607],[4.53327197,0.02500465,95.45531541],[4.53327253,0.02500637,95.45607563],[4.53327309,0.02500808,95.45683676],[4.53327365,0.02500979,95.4575988],[4.53327422,0.02501151,95.45836178],[4.53327478,0.02501322,95.45912572],[4.53327534,0.02501493,95.45989062],[4.5332759,0.02501665,95.46065652],[4.53327646,0.02501836,95.46142342],[4.53327703,0.02502007,95.46219134],[4.53327759,0.02502179,95.4629603],[4.53327815,0.0250235,95.46373032],[4.53327872,0.02502521,95.46450142],[4.53327928,0.02502692,95.46527361],[4.53327984,0.02502864,95.46604691],[4.53327602,0.02502989,95.45387334]]],"type":"Polygon"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":1,"type":"shoulder","predecessorId":1,"sOffset":370.7833669163}},{"geometry":{"coordinates":[[[4.53327984,0.02502864,95.46604691],[4.53327928,0.02502692,95.46527361],[4.53327872,0.02502521,95.46450142],[4.53327815,0.0250235,95.46373032],[4.53327759,0.02502179,95.4629603],[4.53327703,0.02502007,95.46219134],[4.53327646,0.02501836,95.46142342],[4.5332759,0.02501665,95.46065652],[4.53327534,0.02501493,95.45989062],[4.53327478,0.02501322,95.45912572],[4.53327422,0.02501151,95.45836178],[4.53327365,0.02500979,95.4575988],[4.53327309,0.02500808,95.45683676],[4.53327253,0.02500637,95.45607563],[4.53327197,0.02500465,95.45531541],[4.53327141,0.02500294,95.45455607],[4.53327085,0.02500123,95.45379759],[4.53327029,0.02499951,95.45303997],[4.53326973,0.0249978,95.45228318],[4.53326917,0.02499608,95.45152721],[4.53326861,0.02499437,95.45077203],[4.53326805,0.02499266,95.45001763],[4.5332675,0.02499094,95.449264],[4.53326694,0.02498923,95.44851112],[4.53326638,0.02498751,95.44775896],[4.53326582,0.0249858,95.44700752],[4.53326526,0.02498408,95.44625677],[4.5332647,0.02498237,95.4455067],[4.53326415,0.02498065,95.44475729],[4.53326359,0.02497894,95.44400853],[4.53326303,0.02497723,95.44326039],[4.53326248,0.02497551,95.44251286],[4.53326192,0.0249738,95.44176593],[4.53326136,0.02497208,95.44101957],[4.5332608,0.02497037,95.44027377],[4.53326025,0.02496865,95.43952852],[4.53325969,0.02496694,95.43878379],[4.53325913,0.02496522,95.43803957],[4.53325858,0.02496351,95.43729584],[4.53325802,0.02496179,95.43655258],[4.53325747,0.02496008,95.43580978],[4.53325691,0.02495836,95.43506743],[4.53325635,0.02495665,95.43432549],[4.5332558,0.02495493,95.43358397],[4.53325524,0.02495322,95.43284283],[4.53325469,0.0249515,95.43210207],[4.53325413,0.02494979,95.43136166],[4.53325358,0.02494807,95.4306216],[4.53325302,0.02494635,95.42988186],[4.53325247,0.02494464,95.42914242],[4.53325191,0.02494292,95.42840328],[4.53325135,0.02494121,95.42766441],[4.5332508,0.02493949,95.42692579],[4.53325024,0.02493778,95.42618742],[4.53324969,0.02493606,95.42544926],[4.53324913,0.02493435,95.42471132],[4.53324858,0.02493263,95.42397356],[4.53324802,0.02493092,95.42323598],[4.53324747,0.0249292,95.42249855],[4.53324691,0.02492749,95.42176126],[4.53324636,0.02492577,95.4210241],[4.5332458,0.02492405,95.42028704],[4.53324525,0.02492234,95.41955008],[4.53324469,0.02492062,95.41881318],[4.53324414,0.02491891,95.41807635],[4.53324358,0.02491719,95.41733955],[4.53324303,0.02491548,95.41660278],[4.53324247,0.02491376,95.41586601],[4.53324192,0.02491205,95.41512924],[4.53324136,0.02491033,95.41439244],[4.5332408,0.02490862,95.41365561],[4.53324025,0.0249069,95.41291874],[4.53323969,0.02490519,95.41218184],[4.53323914,0.02490347,95.4114449],[4.53323858,0.02490176,95.41070792],[4.53323803,0.02490004,95.40997091],[4.53323747,0.02489833,95.40923386],[4.53323691,0.02489661,95.40849678],[4.53323636,0.0248949,95.40775965],[4.5332358,0.02489318,95.40702249],[4.53323525,0.02489146,95.40628528],[4.53323469,0.02488975,95.40554804],[4.53323413,0.02488803,95.40481075],[4.53323358,0.02488632,95.40407343],[4.53323302,0.0248846,95.40333606],[4.53323246,0.02488289,95.40259865],[4.53323191,0.02488117,95.4018612],[4.53323135,0.02487946,95.4011237],[4.5332308,0.02487774,95.40038617],[4.53323024,0.02487603,95.39964858],[4.53322968,0.02487432,95.39891095],[4.53322913,0.0248726,95.39817328],[4.53322857,0.02487089,95.39743556],[4.53322801,0.02486917,95.3966978],[4.53322745,0.02486746,95.39595998],[4.5332269,0.02486574,95.39522212],[4.53322634,0.02486403,95.39448422],[4.53322578,0.02486231,95.39374626],[4.53322523,0.0248606,95.39300826],[4.53322467,0.02485888,95.3922702],[4.53322411,0.02485717,95.39153209],[4.53322355,0.02485545,95.39079394],[4.533223,0.02485374,95.39005573],[4.53322244,0.02485202,95.38931747],[4.53322188,0.02485031,95.38857916],[4.53322132,0.02484859,95.3878408],[4.53322077,0.02484688,95.38710238],[4.53322021,0.02484517,95.38636391],[4.53321965,0.02484345,95.38562538],[4.53321909,0.02484174,95.3848868],[4.53321853,0.02484002,95.38414816],[4.53321797,0.02483831,95.38340947],[4.53321742,0.02483659,95.38267071],[4.53321686,0.02483488,95.38193191],[4.5332163,0.02483316,95.38119304],[4.53321574,0.02483145,95.38045412],[4.53321518,0.02482974,95.37971513],[4.53321462,0.02482802,95.37897609],[4.53321407,0.02482631,95.37823698],[4.53321351,0.02482459,95.37749782],[4.53321295,0.02482288,95.37675859],[4.53321239,0.02482116,95.37601931],[4.53321183,0.02481945,95.37527995],[4.53321127,0.02481774,95.37454054],[4.53321071,0.02481602,95.37380106],[4.53321015,0.02481431,95.37306152],[4.53320959,0.02481259,95.37232191],[4.53320903,0.02481088,95.37158224],[4.53320847,0.02480917,95.37084251],[4.53320791,0.02480745,95.37010272],[4.53320736,0.02480574,95.36936288],[4.5332068,0.02480402,95.36862301],[4.53320624,0.02480231,95.3678831],[4.53320568,0.0248006,95.36714318],[4.53320512,0.02479888,95.36640323],[4.53320456,0.02479717,95.36566328],[4.533204,0.02479545,95.36492333],[4.53320344,0.02479374,95.3641834],[4.53320288,0.02479203,95.36344347],[4.53320232,0.02479031,95.36270357],[4.53320176,0.0247886,95.36196371],[4.5332012,0.02478689,95.36122388],[4.53320064,0.02478517,95.36048411],[4.53320007,0.02478346,95.35974439],[4.53319951,0.02478174,95.35900473],[4.53319895,0.02478003,95.35826515],[4.53319839,0.02477832,95.35752564],[4.53319783,0.0247766,95.35678623],[4.53319727,0.02477489,95.35604691],[4.53319671,0.02477318,95.35530769],[4.53319615,0.02477146,95.35456859],[4.53319559,0.02476975,95.3538296],[4.53319503,0.02476804,95.35309074],[4.53319447,0.02476632,95.35235202],[4.53319391,0.02476461,95.35161344],[4.53319335,0.02476289,95.35087502],[4.53319279,0.02476118,95.35013675],[4.53319223,0.02475947,95.34939864],[4.53319167,0.02475775,95.34866071],[4.53319111,0.02475604,95.34792296],[4.53319055,0.02475433,95.34718539],[4.53318999,0.02475262,95.34644801],[4.53318952,0.02475118,95.34583137],[4.53320244,0.02474693,95.34583137],[4.53320291,0.02474836,95.34644801],[4.53320347,0.02475008,95.34718539],[4.53320402,0.02475179,95.34792296],[4.53320458,0.0247535,95.34866071],[4.53320514,0.02475521,95.34939864],[4.5332057,0.02475693,95.35013675],[4.53320626,0.02475864,95.35087502],[4.53320681,0.02476036,95.35161344],[4.53320737,0.02476207,95.35235202],[4.53320793,0.02476379,95.35309074],[4.53320849,0.0247655,95.3538296],[4.53320905,0.02476722,95.35456859],[4.53320961,0.02476893,95.35530769],[4.53321017,0.02477065,95.35604691],[4.53321072,0.02477236,95.35678623],[4.53321128,0.02477407,95.35752564],[4.53321184,0.02477579,95.35826515],[4.5332124,0.0247775,95.35900473],[4.53321296,0.02477922,95.35974439],[4.53321352,0.02478093,95.36048411],[4.53321408,0.02478265,95.36122388],[4.53321464,0.02478436,95.36196371],[4.5332152,0.02478607,95.36270357],[4.53321575,0.02478779,95.36344347],[4.53321631,0.0247895,95.3641834],[4.53321687,0.02479122,95.36492333],[4.53321743,0.02479293,95.36566328],[4.53321799,0.02479465,95.36640323],[4.53321855,0.02479636,95.36714318],[4.53321911,0.02479808,95.3678831],[4.53321967,0.02479979,95.36862301],[4.53322022,0.0248015,95.36936288],[4.53322078,0.02480322,95.37010272],[4.53322134,0.02480493,95.37084251],[4.5332219,0.02480665,95.37158224],[4.53322246,0.02480836,95.37232191],[4.53322302,0.02481008,95.37306152],[4.53322358,0.02481179,95.37380106],[4.53322413,0.02481351,95.37454054],[4.53322469,0.02481522,95.37527995],[4.53322525,0.02481693,95.37601931],[4.53322581,0.02481865,95.37675859],[4.53322637,0.02482036,95.37749782],[4.53322693,0.02482208,95.37823698],[4.53322748,0.02482379,95.37897609],[4.53322804,0.02482551,95.37971513],[4.5332286,0.02482722,95.38045412],[4.53322916,0.02482894,95.38119304],[4.53322972,0.02483065,95.38193191],[4.53323027,0.02483237,95.38267071],[4.53323083,0.02483408,95.38340947],[4.53323139,0.0248358,95.38414816],[4.53323195,0.02483751,95.3848868],[4.5332325,0.02483923,95.38562538],[4.53323306,0.02484094,95.38636391],[4.53323362,0.02484265,95.38710238],[4.53323418,0.02484437,95.3878408],[4.53323473,0.02484608,95.38857916],[4.53323529,0.0248478,95.38931747],[4.53323585,0.02484951,95.39005573],[4.53323641,0.02485123,95.39079394],[4.53323696,0.02485294,95.39153209],[4.53323752,0.02485466,95.3922702],[4.53323808,0.02485637,95.39300826],[4.53323863,0.02485809,95.39374626],[4.53323919,0.0248598,95.39448422],[4.53323975,0.02486152,95.39522212],[4.5332403,0.02486323,95.39595998],[4.53324086,0.02486495,95.3966978],[4.53324142,0.02486666,95.39743556],[4.53324197,0.02486838,95.39817328],[4.53324253,0.02487009,95.39891095],[4.53324309,0.02487181,95.39964858],[4.53324364,0.02487353,95.40038617],[4.5332442,0.02487524,95.4011237],[4.53324475,0.02487696,95.4018612],[4.53324531,0.02487867,95.40259865],[4.53324587,0.02488039,95.40333606],[4.53324642,0.0248821,95.40407343],[4.53324698,0.02488382,95.40481075],[4.53324753,0.02488553,95.40554804],[4.53324809,0.02488725,95.40628528],[4.53324865,0.02488896,95.40702249],[4.5332492,0.02489068,95.40775965],[4.53324976,0.02489239,95.40849678],[4.53325031,0.02489411,95.40923386],[4.53325087,0.02489582,95.40997091],[4.53325142,0.02489754,95.41070792],[4.53325198,0.02489926,95.4114449],[4.53325253,0.02490097,95.41218184],[4.53325309,0.02490269,95.41291874],[4.53325364,0.0249044,95.41365561],[4.5332542,0.02490612,95.41439244],[4.53325475,0.02490783,95.41512924],[4.53325531,0.02490955,95.41586601],[4.53325586,0.02491127,95.41660278],[4.53325641,0.02491298,95.41733955],[4.53325697,0.0249147,95.41807635],[4.53325752,0.02491641,95.41881318],[4.53325808,0.02491813,95.41955008],[4.53325863,0.02491985,95.42028704],[4.53325919,0.02492156,95.4210241],[4.53325974,0.02492328,95.42176126],[4.53326029,0.02492499,95.42249855],[4.53326085,0.02492671,95.42323598],[4.5332614,0.02492842,95.42397356],[4.53326196,0.02493014,95.42471132],[4.53326251,0.02493186,95.42544926],[4.53326306,0.02493357,95.42618742],[4.53326362,0.02493529,95.42692579],[4.53326417,0.024937,95.42766441],[4.53326472,0.02493872,95.42840328],[4.53326528,0.02494044,95.42914242],[4.53326583,0.02494215,95.42988186],[4.53326639,0.02494387,95.4306216],[4.53326694,0.02494558,95.43136166],[4.53326749,0.0249473,95.43210207],[4.53326805,0.02494902,95.43284283],[4.5332686,0.02495073,95.43358397],[4.53326915,0.02495245,95.43432549],[4.53326971,0.02495416,95.43506743],[4.53327026,0.02495588,95.43580978],[4.53327082,0.0249576,95.43655258],[4.53327137,0.02495931,95.43729584],[4.53327192,0.02496103,95.43803957],[4.53327248,0.02496274,95.43878379],[4.53327303,0.02496446,95.43952852],[4.53327359,0.02496618,95.44027377],[4.53327414,0.02496789,95.44101957],[4.53327469,0.02496961,95.44176593],[4.53327525,0.02497132,95.44251286],[4.5332758,0.02497304,95.44326039],[4.53327636,0.02497476,95.44400853],[4.53327691,0.02497647,95.44475729],[4.53327747,0.02497819,95.4455067],[4.53327802,0.0249799,95.44625677],[4.53327858,0.02498162,95.44700752],[4.53327913,0.02498333,95.44775896],[4.53327969,0.02498505,95.44851112],[4.53328024,0.02498676,95.449264],[4.5332808,0.02498848,95.45001763],[4.53328135,0.0249902,95.45077203],[4.53328191,0.02499191,95.45152721],[4.53328246,0.02499363,95.45228318],[4.53328302,0.02499534,95.45303997],[4.53328357,0.02499706,95.45379759],[4.53328413,0.02499877,95.45455607],[4.53328468,0.02500049,95.45531541],[4.53328524,0.0250022,95.45607563],[4.53328579,0.02500392,95.45683676],[4.53328635,0.02500563,95.4575988],[4.53328691,0.02500735,95.45836178],[4.53328746,0.02500907,95.45912572],[4.53328802,0.02501078,95.45989062],[4.53328857,0.0250125,95.46065652],[4.53328913,0.02501421,95.46142342],[4.53328968,0.02501593,95.46219134],[4.53329024,0.02501764,95.4629603],[4.53329079,0.02501936,95.46373032],[4.53329135,0.02502107,95.46450142],[4.5332919,0.02502279,95.46527361],[4.53329246,0.02502451,95.46604691],[4.53327984,0.02502864,95.46604691]]],"type":"Polygon"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":2,"type":"none","predecessorId":2,"sOffset":370.7833669163}},{"geometry":{"coordinates":[[[4.5330512,0.02479675,95.17147248],[4.53305079,0.02479546,95.1617836],[4.5330722,0.02478841,95.1617836],[4.53307307,0.02478954,95.17147248],[4.5330512,0.02479675,95.17147248]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-7,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-7,"type":"none","predecessorId":0,"sOffset":403.1506617924}},{"geometry":{"coordinates":[[[4.53307307,0.02478954,95.17147248],[4.5330722,0.02478841,95.1617836],[4.53308219,0.02478511,95.1617836],[4.53308554,0.02478543,95.17147248],[4.53307307,0.02478954,95.17147248]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-6,"type":"border","predecessorId":0,"sOffset":403.1506617924}},{"geometry":{"coordinates":[[[4.53308554,0.02478543,95.02147248],[4.53308219,0.02478511,95.0117836],[4.53309339,0.02478143,95.04669868],[4.5330938,0.02478271,95.04724111],[4.53308554,0.02478543,95.02147248]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-5,"type":"border","predecessorId":-5,"sOffset":403.1506617924}},{"geometry":{"coordinates":[[[4.5330938,0.02478271,95.04724111],[4.53309339,0.02478143,95.04669868],[4.53309522,0.02478082,95.05242995],[4.53309564,0.02478211,95.05297697],[4.5330938,0.02478271,95.04724111]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-4,"type":"shoulder","predecessorId":-4,"sOffset":403.1506617924}},{"geometry":{"coordinates":[[[4.53309564,0.02478211,95.05297697],[4.53309522,0.02478082,95.05242995],[4.53312422,0.02477127,95.14288837],[4.53312464,0.02477256,95.14343368],[4.53309564,0.02478211,95.05297697]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3,"sOffset":403.1506617924}},{"geometry":{"coordinates":[[[4.53312464,0.02477256,95.14343368],[4.53312422,0.02477127,95.14288837],[4.53315543,0.02476099,95.24026581],[4.53315585,0.02476227,95.24080755],[4.53312464,0.02477256,95.14343368]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2,"sOffset":403.1506617924}},{"geometry":{"coordinates":[[[4.53315585,0.02476227,95.24080755],[4.53315543,0.02476099,95.24026581],[4.53318591,0.02475095,95.33533004],[4.53318633,0.02475223,95.33587864],[4.53315585,0.02476227,95.24080755]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1,"sOffset":403.1506617924}},{"geometry":{"coordinates":[[[4.53318633,0.02475223,95.33587864],[4.53318591,0.02475095,95.33533004],[4.5331891,0.0247499,95.34527823],[4.53318952,0.02475118,95.34583137],[4.53318633,0.02475223,95.33587864]]],"type":"Polygon"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":1,"type":"shoulder","predecessorId":1,"sOffset":403.1506617924}},{"geometry":{"coordinates":[[[4.53318952,0.02475118,95.34583137],[4.5331891,0.0247499,95.34527823],[4.53320202,0.02474564,95.34527823],[4.53320244,0.02474693,95.34583137],[4.53318952,0.02475118,95.34583137]]],"type":"Polygon"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":2,"type":"none","predecessorId":2,"sOffset":403.1506617924}},{"geometry":{"coordinates":[[[4.53305079,0.02479546,95.1349302],[4.53305023,0.02479375,95.13229914],[4.53304968,0.02479203,95.12966738],[4.53304936,0.02479106,95.12816779],[4.5330692,0.02478452,95.12816779],[4.53306986,0.02478538,95.12966738],[4.53307103,0.02478689,95.13229914],[4.5330722,0.02478841,95.1349302],[4.53305079,0.02479546,95.1349302]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-7,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-7,"type":"none","predecessorId":-7,"sOffset":403.3007615135}},{"geometry":{"coordinates":[[[4.5330722,0.02478841,95.1349302],[4.53307103,0.02478689,95.13229914],[4.53306986,0.02478538,95.12966738],[4.5330692,0.02478452,95.12816779],[4.53307059,0.02478406,95.12816779],[4.53307126,0.02478492,95.12966738],[4.53307242,0.02478644,95.13229914],[4.53307359,0.02478795,95.1349302],[4.5330722,0.02478841,95.1349302]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-6,"type":"border","predecessorId":0,"sOffset":403.3007615135}},{"geometry":{"coordinates":[[[4.53307359,0.02478795,94.9849302],[4.53307242,0.02478644,94.98229914],[4.53307126,0.02478492,94.97966738],[4.53307059,0.02478406,94.97816779],[4.53309196,0.02477702,95.04483976],[4.53309228,0.024778,95.04525217],[4.53309283,0.02477971,95.04597569],[4.53309339,0.02478143,95.04669868],[4.53307359,0.02478795,94.9849302]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-5,"type":"border","predecessorId":0,"sOffset":403.3007615135}},{"geometry":{"coordinates":[[[4.53309339,0.02478143,95.04669868],[4.53309283,0.02477971,95.04597569],[4.53309228,0.024778,95.04525217],[4.53309196,0.02477702,95.04483976],[4.53309379,0.02477642,95.05055592],[4.53309411,0.02477739,95.05097167],[4.53309467,0.02477911,95.05170106],[4.53309522,0.02478082,95.05242995],[4.53309339,0.02478143,95.04669868]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-4,"type":"shoulder","predecessorId":-4,"sOffset":403.3007615135}},{"geometry":{"coordinates":[[[4.53309522,0.02478082,95.05242995],[4.53309467,0.02477911,95.05170106],[4.53309411,0.02477739,95.05097167],[4.53309379,0.02477642,95.05055592],[4.53312279,0.02476686,95.14102044],[4.53312311,0.02476784,95.14143473],[4.53312366,0.02476955,95.14216171],[4.53312422,0.02477127,95.14288837],[4.53309522,0.02478082,95.05242995]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3,"sOffset":403.3007615135}},{"geometry":{"coordinates":[[[4.53312422,0.02477127,95.14288837],[4.53312366,0.02476955,95.14216171],[4.53312311,0.02476784,95.14143473],[4.53312279,0.02476686,95.14102044],[4.53315401,0.02475658,95.23841021],[4.53315432,0.02475756,95.23882166],[4.53315488,0.02475927,95.2395438],[4.53315543,0.02476099,95.24026581],[4.53312422,0.02477127,95.14288837]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2,"sOffset":403.3007615135}},{"geometry":{"coordinates":[[[4.53315543,0.02476099,95.24026581],[4.53315488,0.02475927,95.2395438],[4.53315432,0.02475756,95.23882166],[4.53315401,0.02475658,95.23841021],[4.53318447,0.02474654,95.33345191],[4.53318479,0.02474752,95.33386825],[4.53318535,0.02474923,95.33459912],[4.53318591,0.02475095,95.33533004],[4.53315543,0.02476099,95.24026581]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1,"sOffset":403.3007615135}},{"geometry":{"coordinates":[[[4.53318591,0.02475095,95.33533004],[4.53318535,0.02474923,95.33459912],[4.53318479,0.02474752,95.33386825],[4.53318447,0.02474654,95.33345191],[4.53318766,0.02474549,95.34338515],[4.53318798,0.02474647,95.34380479],[4.53318854,0.02474818,95.34454147],[4.5331891,0.0247499,95.34527823],[4.53318591,0.02475095,95.33533004]]],"type":"Polygon"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":1,"type":"shoulder","predecessorId":1,"sOffset":403.3007615135}},{"geometry":{"coordinates":[[[4.5331891,0.0247499,95.34527823],[4.53318854,0.02474818,95.34454147],[4.53318798,0.02474647,95.34380479],[4.53318766,0.02474549,95.34338515],[4.53320059,0.02474123,95.34338515],[4.53320091,0.02474221,95.34380479],[4.53320146,0.02474393,95.34454147],[4.53320202,0.02474564,95.34527823],[4.5331891,0.0247499,95.34527823]]],"type":"Polygon"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":2,"type":"none","predecessorId":2,"sOffset":403.3007615135}},{"geometry":{"coordinates":[[[4.53304936,0.02479106,95.16062152],[4.53304895,0.0247898,95.16899819],[4.53306834,0.02478341,95.16899819],[4.5330692,0.02478452,95.16062152],[4.53304936,0.02479106,95.16062152]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-7,"type":"none","predecessorId":-7,"sOffset":403.8146976855}},{"geometry":{"coordinates":[[[4.5330692,0.02478452,95.16062152],[4.53306834,0.02478341,95.16899819],[4.53308344,0.02477843,95.16899819],[4.53308099,0.02478063,95.16062152],[4.5330692,0.02478452,95.16062152]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-6,"type":"border","predecessorId":0,"sOffset":403.8146976855}},{"geometry":{"coordinates":[[[4.53308099,0.02478063,95.01062152],[4.53308344,0.02477843,95.01899819],[4.53309155,0.02477576,95.04430746],[4.53309196,0.02477702,95.04483976],[4.53308099,0.02478063,95.01062152]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-5,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-5,"type":"border","predecessorId":0,"sOffset":403.8146976855}},{"geometry":{"coordinates":[[[4.53309196,0.02477702,95.04483976],[4.53309155,0.02477576,95.04430746],[4.53309339,0.02477516,95.05001946],[4.53309379,0.02477642,95.05055592],[4.53309196,0.02477702,95.04483976]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-4,"type":"shoulder","predecessorId":-4,"sOffset":403.8146976855}},{"geometry":{"coordinates":[[[4.53309379,0.02477642,95.05055592],[4.53309339,0.02477516,95.05001946],[4.53312238,0.0247656,95.14048575],[4.53312279,0.02476686,95.14102044],[4.53309379,0.02477642,95.05055592]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3,"sOffset":403.8146976855}},{"geometry":{"coordinates":[[[4.53312279,0.02476686,95.14102044],[4.53312238,0.0247656,95.14048575],[4.5331536,0.02475532,95.23787914],[4.53315401,0.02475658,95.23841021],[4.53312279,0.02476686,95.14102044]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2,"sOffset":403.8146976855}},{"geometry":{"coordinates":[[[4.53315401,0.02475658,95.23841021],[4.5331536,0.02475532,95.23787914],[4.53318406,0.02474528,95.33291466],[4.53318447,0.02474654,95.33345191],[4.53315401,0.02475658,95.23841021]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1,"sOffset":403.8146976855}},{"geometry":{"coordinates":[[[4.53318447,0.02474654,95.33345191],[4.53318406,0.02474528,95.33291466],[4.53318724,0.02474423,95.3428438],[4.53318766,0.02474549,95.34338515],[4.53318447,0.02474654,95.33345191]]],"type":"Polygon"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":1,"type":"shoulder","predecessorId":1,"sOffset":403.8146976855}},{"geometry":{"coordinates":[[[4.53318766,0.02474549,95.34338515],[4.53318724,0.02474423,95.3428438],[4.53320018,0.02473997,95.3428438],[4.53320059,0.02474123,95.34338515],[4.53318766,0.02474549,95.34338515]]],"type":"Polygon"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":2,"type":"none","predecessorId":2,"sOffset":403.8146976855}},{"geometry":{"coordinates":[[[4.53304895,0.0247898,95.16899819],[4.53304847,0.02478806,95.17958311],[4.53304784,0.02478637,95.18382727],[4.53304729,0.02478465,95.18309621],[4.53304673,0.02478294,95.18236458],[4.53304618,0.02478123,95.18163238],[4.53304562,0.02477951,95.18089962],[4.53304507,0.0247778,95.1801663],[4.53304451,0.02477609,95.17943243],[4.53304395,0.02477437,95.17869801],[4.5330434,0.02477266,95.17796306],[4.53304284,0.02477095,95.17722757],[4.53304228,0.02476923,95.17649156],[4.53304173,0.02476752,95.17575502],[4.53304117,0.02476581,95.17501796],[4.53304061,0.0247641,95.17428039],[4.53304005,0.02476238,95.17354232],[4.53303949,0.02476067,95.17280375],[4.53303894,0.02475896,95.17206468],[4.53303838,0.02475725,95.17132512],[4.53303782,0.02475553,95.17058508],[4.53303726,0.02475382,95.16984457],[4.5330367,0.02475211,95.16910358],[4.53303614,0.0247504,95.16836212],[4.53303558,0.02474868,95.1676202],[4.53303502,0.02474697,95.16687783],[4.53303446,0.02474526,95.16613501],[4.5330339,0.02474355,95.16539174],[4.53303334,0.02474184,95.16464804],[4.53303278,0.02474012,95.1639039],[4.53303222,0.02473841,95.16315933],[4.53303166,0.0247367,95.16241435],[4.5330311,0.02473499,95.16166894],[4.53303054,0.02473328,95.16092313],[4.53302998,0.02473156,95.16017691],[4.53302942,0.02472985,95.15943029],[4.53302886,0.02472814,95.15868328],[4.5330283,0.02472643,95.15793588],[4.53302773,0.02472472,95.1571881],[4.53302717,0.02472301,95.15643994],[4.53302661,0.02472129,95.15569141],[4.53302605,0.02471958,95.15494252],[4.53302549,0.02471787,95.15419326],[4.53302493,0.02471616,95.15344365],[4.53302437,0.02471445,95.15269369],[4.5330238,0.02471274,95.15194339],[4.53302324,0.02471103,95.15119275],[4.53302268,0.02470931,95.15044178],[4.53302212,0.0247076,95.14969048],[4.53302156,0.02470589,95.14893886],[4.533021,0.02470418,95.1481869],[4.53302043,0.02470247,95.14743461],[4.53301987,0.02470076,95.14668199],[4.53301931,0.02469904,95.14592902],[4.53301875,0.02469733,95.14517572],[4.53301819,0.02469562,95.14442207],[4.53301763,0.02469391,95.14366807],[4.53301706,0.0246922,95.14291372],[4.5330165,0.02469049,95.14215902],[4.53301594,0.02468878,95.14140396],[4.53301538,0.02468706,95.14064855],[4.53301482,0.02468535,95.13989277],[4.53301426,0.02468364,95.13913663],[4.53301369,0.02468193,95.13838013],[4.53301313,0.02468022,95.13762328],[4.53301257,0.02467851,95.13686607],[4.53301201,0.02467679,95.13610847],[4.53301145,0.02467508,95.1353505],[4.53301089,0.02467337,95.13459214],[4.53301033,0.02467166,95.1338334],[4.53300976,0.02466995,95.1330743],[4.5330092,0.02466824,95.13231482],[4.53300864,0.02466652,95.13155498],[4.53300808,0.02466481,95.13079479],[4.53300752,0.0246631,95.13003423],[4.53300696,0.02466139,95.12927332],[4.5330064,0.02465968,95.12851206],[4.53300584,0.02465796,95.12775046],[4.53300528,0.02465625,95.12698852],[4.53300472,0.02465454,95.12622623],[4.53300416,0.02465283,95.12546362],[4.53300359,0.02465112,95.12470067],[4.53300303,0.0246494,95.1239374],[4.53300247,0.02464769,95.1231738],[4.53300191,0.02464598,95.12240989],[4.53300135,0.02464427,95.12164566],[4.53300079,0.02464256,95.12088112],[4.53300023,0.02464084,95.12011628],[4.53299967,0.02463913,95.11935112],[4.53299911,0.02463742,95.11858567],[4.53299855,0.02463571,95.11781993],[4.53299799,0.024634,95.11705389],[4.53299743,0.02463228,95.11628757],[4.53299687,0.02463057,95.11552095],[4.53299631,0.02462886,95.11475406],[4.53299575,0.02462715,95.1139869],[4.53299519,0.02462543,95.11321945],[4.53299463,0.02462372,95.11245174],[4.53299408,0.02462201,95.11168377],[4.53299352,0.0246203,95.11091553],[4.53299296,0.02461858,95.11014704],[4.5329924,0.02461687,95.10937831],[4.53299184,0.02461516,95.10860937],[4.53299128,0.02461345,95.10784022],[4.53299072,0.02461173,95.1070709],[4.53299016,0.02461002,95.10630142],[4.5329896,0.02460831,95.10553179],[4.53298904,0.0246066,95.10476205],[4.53298848,0.02460488,95.10399221],[4.53298793,0.02460317,95.10322229],[4.53298737,0.02460146,95.10245231],[4.53298681,0.02459975,95.10168228],[4.53298625,0.02459803,95.10091224],[4.53298569,0.02459632,95.10014219],[4.53298513,0.02459461,95.09937216],[4.53298458,0.0245929,95.09860217],[4.53298402,0.02459118,95.09783221],[4.53298346,0.02458947,95.09706229],[4.5329829,0.02458776,95.0962924],[4.53298234,0.02458604,95.09552255],[4.53298179,0.02458433,95.09475272],[4.53298123,0.02458262,95.09398293],[4.53298067,0.0245809,95.09321316],[4.53298011,0.02457919,95.09244342],[4.53297956,0.02457748,95.09167371],[4.532979,0.02457577,95.09090403],[4.53297844,0.02457405,95.09013436],[4.53297788,0.02457234,95.08936472],[4.53297733,0.02457063,95.0885951],[4.53297677,0.02456891,95.08782551],[4.53297621,0.0245672,95.08705593],[4.53297566,0.02456549,95.08628636],[4.5329751,0.02456377,95.08551682],[4.53297454,0.02456206,95.08474729],[4.53297399,0.02456035,95.08397777],[4.53297343,0.02455863,95.08320827],[4.53297287,0.02455692,95.08243877],[4.53297231,0.02455521,95.08166929],[4.53297176,0.02455349,95.08089981],[4.5329712,0.02455178,95.08013034],[4.53297064,0.02455007,95.07936088],[4.53297009,0.02454835,95.07859142],[4.53296953,0.02454664,95.07782197],[4.53296897,0.02454493,95.07705251],[4.53296842,0.02454321,95.07628306],[4.53296786,0.0245415,95.07551361],[4.5329673,0.02453979,95.07474415],[4.53296675,0.02453807,95.0739747],[4.53296619,0.02453636,95.07320523],[4.53296563,0.02453465,95.07243576],[4.53296508,0.02453293,95.07166629],[4.53296452,0.02453122,95.0708968],[4.53296396,0.02452951,95.07012731],[4.5329634,0.02452779,95.0693578],[4.53296285,0.02452608,95.06858829],[4.53296229,0.02452437,95.06781882],[4.53296173,0.02452265,95.06704944],[4.53296118,0.02452094,95.06628018],[4.53296062,0.02451923,95.06551104],[4.53296006,0.02451751,95.06474201],[4.5329595,0.0245158,95.06397309],[4.53295895,0.02451409,95.06320428],[4.53295839,0.02451237,95.06243557],[4.53295783,0.02451066,95.06166697],[4.53295728,0.02450895,95.06089847],[4.53295672,0.02450723,95.06013005],[4.53295616,0.02450552,95.05936172],[4.5329556,0.02450381,95.05859348],[4.53295505,0.02450209,95.0578253],[4.53295449,0.02450038,95.0570572],[4.53295393,0.02449867,95.05628915],[4.53295337,0.02449696,95.05552117],[4.53295282,0.02449524,95.05475323],[4.53295226,0.02449353,95.05398535],[4.5329517,0.02449182,95.0532175],[4.53295114,0.0244901,95.05244969],[4.53295058,0.02448839,95.05168191],[4.53295002,0.02448668,95.05091415],[4.53294947,0.02448496,95.05014641],[4.53294891,0.02448325,95.04937869],[4.53294835,0.02448154,95.04861097],[4.53294779,0.02447983,95.04784325],[4.53294723,0.02447811,95.04707553],[4.53294667,0.0244764,95.0463078],[4.53294611,0.02447469,95.04554005],[4.53294555,0.02447298,95.04477228],[4.532945,0.02447126,95.04400448],[4.53294444,0.02446955,95.04323663],[4.53294388,0.02446784,95.0424687],[4.53294332,0.02446612,95.04170067],[4.53294276,0.02446441,95.04093254],[4.5329422,0.0244627,95.04016431],[4.53294164,0.02446099,95.03939596],[4.53294108,0.02445927,95.03862747],[4.53294052,0.02445756,95.03785884],[4.53293996,0.02445585,95.03709006],[4.5329394,0.02445414,95.0363211],[4.53293884,0.02445243,95.03555195],[4.53293828,0.02445071,95.03478261],[4.53293772,0.024449,95.03401306],[4.53293716,0.02444729,95.03324328],[4.5329366,0.02444558,95.03247327],[4.53293604,0.02444386,95.031703],[4.53293547,0.02444215,95.03093247],[4.53293491,0.02444044,95.03016167],[4.53293435,0.02443873,95.02939057],[4.53293379,0.02443702,95.02861917],[4.53293323,0.0244353,95.02784745],[4.53293267,0.02443359,95.02707541],[4.53293211,0.02443188,95.02630303],[4.53293154,0.02443017,95.02553034],[4.53293098,0.02442846,95.02475734],[4.53293042,0.02442675,95.02398405],[4.53292986,0.02442503,95.02321048],[4.53292929,0.02442332,95.02243664],[4.53292873,0.02442161,95.02166255],[4.53292817,0.0244199,95.02088823],[4.53292761,0.02441819,95.02011367],[4.53292704,0.02441648,95.0193389],[4.53292648,0.02441477,95.01856394],[4.53292592,0.02441305,95.01778878],[4.53292535,0.02441134,95.01701345],[4.53292479,0.02440963,95.01623795],[4.53292423,0.02440792,95.01546231],[4.53292366,0.02440621,95.01468653],[4.5329231,0.0244045,95.01391063],[4.53292254,0.02440279,95.01313462],[4.53292197,0.02440107,95.01235852],[4.53292141,0.02439936,95.01158233],[4.53292084,0.02439765,95.01080607],[4.53292028,0.02439594,95.01002975],[4.53291972,0.02439423,95.00925339],[4.53291915,0.02439252,95.008477],[4.53291859,0.02439081,95.00770059],[4.53291803,0.0243891,95.00692417],[4.53291746,0.02438738,95.00614776],[4.5329169,0.02438567,95.00537138],[4.53291634,0.02438396,95.00459503],[4.53291577,0.02438225,95.00381872],[4.53291521,0.02438054,95.00304249],[4.53291464,0.02437883,95.00226634],[4.53291408,0.02437712,95.0014903],[4.53291352,0.02437541,95.00071437],[4.53291295,0.02437369,94.99993857],[4.53291239,0.02437198,94.99916289],[4.53291183,0.02437027,94.99838732],[4.53291126,0.02436856,94.99761187],[4.5329107,0.02436685,94.99683653],[4.53291014,0.02436514,94.9960613],[4.53290957,0.02436343,94.99528619],[4.53290901,0.02436171,94.99451118],[4.53290845,0.02436,94.99373629],[4.53290788,0.02435829,94.9929615],[4.53290732,0.02435658,94.99218682],[4.53290676,0.02435487,94.99141224],[4.5329062,0.02435316,94.99063777],[4.53290563,0.02435145,94.9898634],[4.53290507,0.02434973,94.98908913],[4.53290451,0.02434802,94.98831496],[4.53290394,0.02434631,94.98754089],[4.53290338,0.0243446,94.98676692],[4.53290282,0.02434289,94.98599305],[4.53290226,0.02434118,94.98521926],[4.5329017,0.02433946,94.98444555],[4.53290113,0.02433775,94.98367191],[4.53290057,0.02433604,94.98289835],[4.53290001,0.02433433,94.98212487],[4.53289945,0.02433262,94.98135149],[4.53289889,0.0243309,94.98057825],[4.53289832,0.02432919,94.97980515],[4.53289776,0.02432748,94.97903224],[4.5328972,0.02432577,94.97825952],[4.53289664,0.02432406,94.97748703],[4.53289608,0.02432234,94.97671479],[4.53289552,0.02432063,94.97594281],[4.53289495,0.02431892,94.97517114],[4.53289439,0.02431721,94.97439978],[4.53289383,0.0243155,94.97362877],[4.53289327,0.02431378,94.97285812],[4.53289271,0.02431207,94.97208786],[4.53289215,0.02431036,94.97131802],[4.53289159,0.02430865,94.97054862],[4.53289103,0.02430693,94.96977967],[4.53289047,0.02430522,94.96901122],[4.53288991,0.02430351,94.96824327],[4.53288935,0.0243018,94.96747582],[4.53288879,0.02430008,94.96670889],[4.53288823,0.02429837,94.96594245],[4.53288767,0.02429666,94.96517652],[4.53288711,0.02429494,94.96441109],[4.53288655,0.02429323,94.96364616],[4.53288599,0.02429152,94.96288172],[4.53288544,0.02428981,94.96211777],[4.53288488,0.02428809,94.96135432],[4.53288432,0.02428638,94.96059136],[4.53288376,0.02428467,94.95982888],[4.5328832,0.02428295,94.95906689],[4.53288264,0.02428124,94.95830539],[4.53288209,0.02427953,94.95754436],[4.53288153,0.02427781,94.95678382],[4.53288097,0.0242761,94.95602375],[4.53288041,0.02427439,94.95526416],[4.53287985,0.02427267,94.95450504],[4.5328793,0.02427096,94.95374639],[4.53287874,0.02426925,94.95298821],[4.53287818,0.02426753,94.9522305],[4.53287762,0.02426582,94.95147325],[4.53287707,0.02426411,94.95071647],[4.53287651,0.02426239,94.94996015],[4.53287595,0.02426068,94.94920429],[4.53287539,0.02425897,94.94844888],[4.53287484,0.02425725,94.94769393],[4.53287428,0.02425554,94.94693943],[4.53287372,0.02425383,94.94618539],[4.53287317,0.02425211,94.94543179],[4.53287261,0.0242504,94.94467863],[4.53287205,0.02424868,94.94392593],[4.53287149,0.02424697,94.94317366],[4.53287094,0.02424526,94.94242184],[4.53287038,0.02424354,94.94167045],[4.53286982,0.02424183,94.9409195],[4.53286927,0.02424012,94.94016898],[4.53286871,0.0242384,94.9394189],[4.53286815,0.02423669,94.93866925],[4.5328676,0.02423497,94.93792002],[4.53286704,0.02423326,94.93717122],[4.53286648,0.02423155,94.93642284],[4.53286592,0.02422983,94.93567488],[4.53286537,0.02422812,94.93492735],[4.53286481,0.02422641,94.93418023],[4.53286425,0.02422469,94.93343352],[4.5328637,0.02422298,94.93268723],[4.53286314,0.02422127,94.93194135],[4.53286258,0.02421955,94.93119588],[4.53286202,0.02421784,94.93045082],[4.53286147,0.02421612,94.92970616],[4.53286091,0.02421441,94.9289619],[4.53286035,0.0242127,94.92821804],[4.5328598,0.02421098,94.92747459],[4.53285924,0.02420927,94.92673152],[4.53285868,0.02420756,94.92598886],[4.53285812,0.02420584,94.92026247],[4.53285757,0.02420413,94.90929662],[4.53285754,0.02420406,94.90880616],[4.53288906,0.02419356,94.90880616],[4.53288931,0.02419356,94.90929662],[4.53289347,0.02419408,94.92026247],[4.53289677,0.02419487,94.92598886],[4.53289747,0.02419654,94.92673152],[4.53289804,0.02419825,94.92747459],[4.5328986,0.02419996,94.92821804],[4.53289917,0.02420167,94.9289619],[4.53289974,0.02420339,94.92970616],[4.5329003,0.0242051,94.93045082],[4.53290087,0.02420681,94.93119588],[4.53290143,0.02420852,94.93194135],[4.532902,0.02421023,94.93268723],[4.53290256,0.02421194,94.93343352],[4.53290313,0.02421365,94.93418023],[4.53290369,0.02421536,94.93492735],[4.53290426,0.02421707,94.93567488],[4.53290482,0.02421879,94.93642284],[4.53290539,0.0242205,94.93717122],[4.53290595,0.02422221,94.93792002],[4.53290652,0.02422392,94.93866925],[4.53290708,0.02422563,94.9394189],[4.53290765,0.02422734,94.94016898],[4.53290821,0.02422905,94.9409195],[4.53290878,0.02423076,94.94167045],[4.53290934,0.02423248,94.94242184],[4.53290991,0.02423419,94.94317366],[4.53291047,0.0242359,94.94392593],[4.53291104,0.02423761,94.94467863],[4.5329116,0.02423932,94.94543179],[4.53291217,0.02424103,94.94618539],[4.53291273,0.02424274,94.94693943],[4.5329133,0.02424446,94.94769393],[4.53291386,0.02424617,94.94844888],[4.53291442,0.02424788,94.94920429],[4.53291499,0.02424959,94.94996015],[4.53291555,0.0242513,94.95071647],[4.53291612,0.02425301,94.95147325],[4.53291668,0.02425472,94.9522305],[4.53291725,0.02425644,94.95298821],[4.53291781,0.02425815,94.95374639],[4.53291838,0.02425986,94.95450504],[4.53291894,0.02426157,94.95526416],[4.5329195,0.02426328,94.95602375],[4.53292007,0.02426499,94.95678382],[4.53292063,0.0242667,94.95754436],[4.5329212,0.02426842,94.95830539],[4.53292176,0.02427013,94.95906689],[4.53292233,0.02427184,94.95982888],[4.53292289,0.02427355,94.96059136],[4.53292346,0.02427526,94.96135432],[4.53292402,0.02427697,94.96211777],[4.53292458,0.02427868,94.96288172],[4.53292515,0.0242804,94.96364616],[4.53292571,0.02428211,94.96441109],[4.53292628,0.02428382,94.96517652],[4.53292684,0.02428553,94.96594245],[4.53292741,0.02428724,94.96670889],[4.53292797,0.02428895,94.96747582],[4.53292854,0.02429066,94.96824327],[4.5329291,0.02429238,94.96901122],[4.53292966,0.02429409,94.96977967],[4.53293023,0.0242958,94.97054862],[4.53293079,0.02429751,94.97131802],[4.53293136,0.02429922,94.97208786],[4.53293192,0.02430093,94.97285812],[4.53293249,0.02430264,94.97362877],[4.53293305,0.02430436,94.97439978],[4.53293362,0.02430607,94.97517114],[4.53293418,0.02430778,94.97594281],[4.53293475,0.02430949,94.97671479],[4.53293531,0.0243112,94.97748703],[4.53293588,0.02431291,94.97825952],[4.53293644,0.02431462,94.97903224],[4.532937,0.02431634,94.97980515],[4.53293757,0.02431805,94.98057825],[4.53293813,0.02431976,94.98135149],[4.5329387,0.02432147,94.98212487],[4.53293926,0.02432318,94.98289835],[4.53293983,0.02432489,94.98367191],[4.53294039,0.0243266,94.98444555],[4.53294095,0.02432832,94.98521926],[4.53294152,0.02433003,94.98599305],[4.53294208,0.02433174,94.98676692],[4.53294264,0.02433345,94.98754089],[4.53294321,0.02433516,94.98831496],[4.53294377,0.02433687,94.98908913],[4.53294433,0.02433859,94.9898634],[4.5329449,0.0243403,94.99063777],[4.53294546,0.02434201,94.99141224],[4.53294602,0.02434372,94.99218682],[4.53294659,0.02434543,94.9929615],[4.53294715,0.02434714,94.99373629],[4.53294771,0.02434886,94.99451118],[4.53294828,0.02435057,94.99528619],[4.53294884,0.02435228,94.9960613],[4.5329494,0.02435399,94.99683653],[4.53294997,0.0243557,94.99761187],[4.53295053,0.02435742,94.99838732],[4.53295109,0.02435913,94.99916289],[4.53295165,0.02436084,94.99993857],[4.53295222,0.02436255,95.00071437],[4.53295278,0.02436426,95.0014903],[4.53295334,0.02436598,95.00226634],[4.5329539,0.02436769,95.00304249],[4.53295447,0.0243694,95.00381872],[4.53295503,0.02437111,95.00459503],[4.53295559,0.02437282,95.00537138],[4.53295615,0.02437454,95.00614776],[4.53295672,0.02437625,95.00692417],[4.53295728,0.02437796,95.00770059],[4.53295784,0.02437967,95.008477],[4.5329584,0.02438138,95.00925339],[4.53295896,0.0243831,95.01002975],[4.53295953,0.02438481,95.01080607],[4.53296009,0.02438652,95.01158233],[4.53296065,0.02438823,95.01235852],[4.53296121,0.02438995,95.01313462],[4.53296177,0.02439166,95.01391063],[4.53296233,0.02439337,95.01468653],[4.53296289,0.02439508,95.01546231],[4.53296346,0.0243968,95.01623795],[4.53296402,0.02439851,95.01701345],[4.53296458,0.02440022,95.01778878],[4.53296514,0.02440193,95.01856394],[4.5329657,0.02440365,95.0193389],[4.53296626,0.02440536,95.02011367],[4.53296682,0.02440707,95.02088823],[4.53296738,0.02440878,95.02166255],[4.53296794,0.0244105,95.02243664],[4.5329685,0.02441221,95.02321048],[4.53296906,0.02441392,95.02398405],[4.53296962,0.02441563,95.02475734],[4.53297018,0.02441735,95.02553034],[4.53297074,0.02441906,95.02630303],[4.5329713,0.02442077,95.02707541],[4.53297186,0.02442249,95.02784745],[4.53297242,0.0244242,95.02861917],[4.53297298,0.02442591,95.02939057],[4.53297354,0.02442763,95.03016167],[4.53297409,0.02442934,95.03093247],[4.53297465,0.02443105,95.031703],[4.53297521,0.02443277,95.03247327],[4.53297577,0.02443448,95.03324328],[4.53297633,0.02443619,95.03401306],[4.53297689,0.02443791,95.03478261],[4.53297744,0.02443962,95.03555195],[4.532978,0.02444133,95.0363211],[4.53297856,0.02444305,95.03709006],[4.53297912,0.02444476,95.03785884],[4.53297968,0.02444647,95.03862747],[4.53298023,0.02444819,95.03939596],[4.53298079,0.0244499,95.04016431],[4.53298135,0.02445161,95.04093254],[4.53298191,0.02445333,95.04170067],[4.53298246,0.02445504,95.0424687],[4.53298302,0.02445675,95.04323663],[4.53298358,0.02445847,95.04400448],[4.53298414,0.02446018,95.04477228],[4.53298469,0.0244619,95.04554005],[4.53298525,0.02446361,95.0463078],[4.53298581,0.02446532,95.04707553],[4.53298636,0.02446704,95.04784325],[4.53298692,0.02446875,95.04861097],[4.53298748,0.02447046,95.04937869],[4.53298804,0.02447218,95.05014641],[4.53298859,0.02447389,95.05091415],[4.53298915,0.0244756,95.05168191],[4.53298971,0.02447732,95.05244969],[4.53299026,0.02447903,95.0532175],[4.53299082,0.02448075,95.05398535],[4.53299138,0.02448246,95.05475323],[4.53299194,0.02448417,95.05552117],[4.53299249,0.02448589,95.05628915],[4.53299305,0.0244876,95.0570572],[4.53299361,0.02448931,95.0578253],[4.53299417,0.02449103,95.05859348],[4.53299472,0.02449274,95.05936172],[4.53299528,0.02449446,95.06013005],[4.53299584,0.02449617,95.06089847],[4.53299639,0.02449788,95.06166697],[4.53299695,0.0244996,95.06243557],[4.53299751,0.02450131,95.06320428],[4.53299807,0.02450302,95.06397309],[4.53299862,0.02450474,95.06474201],[4.53299918,0.02450645,95.06551104],[4.53299974,0.02450816,95.06628018],[4.5330003,0.02450988,95.06704944],[4.53300086,0.02451159,95.06781882],[4.53300141,0.0245133,95.06858829],[4.53300197,0.02451502,95.0693578],[4.53300253,0.02451673,95.07012731],[4.53300309,0.02451844,95.0708968],[4.53300364,0.02452016,95.07166629],[4.5330042,0.02452187,95.07243576],[4.53300476,0.02452358,95.07320523],[4.53300532,0.0245253,95.0739747],[4.53300588,0.02452701,95.07474415],[4.53300643,0.02452872,95.07551361],[4.53300699,0.02453044,95.07628306],[4.53300755,0.02453215,95.07705251],[4.53300811,0.02453386,95.07782197],[4.53300867,0.02453558,95.07859142],[4.53300923,0.02453729,95.07936088],[4.53300978,0.024539,95.08013034],[4.53301034,0.02454072,95.08089981],[4.5330109,0.02454243,95.08166929],[4.53301146,0.02454414,95.08243877],[4.53301202,0.02454586,95.08320827],[4.53301257,0.02454757,95.08397777],[4.53301313,0.02454928,95.08474729],[4.53301369,0.024551,95.08551682],[4.53301425,0.02455271,95.08628636],[4.53301481,0.02455442,95.08705593],[4.53301537,0.02455614,95.08782551],[4.53301593,0.02455785,95.0885951],[4.53301648,0.02455956,95.08936472],[4.53301704,0.02456128,95.09013436],[4.5330176,0.02456299,95.09090403],[4.53301816,0.0245647,95.09167371],[4.53301872,0.02456642,95.09244342],[4.53301928,0.02456813,95.09321316],[4.53301984,0.02456984,95.09398293],[4.5330204,0.02457155,95.09475272],[4.53302095,0.02457327,95.09552255],[4.53302151,0.02457498,95.0962924],[4.53302207,0.02457669,95.09706229],[4.53302263,0.02457841,95.09783221],[4.53302319,0.02458012,95.09860217],[4.53302375,0.02458183,95.09937216],[4.53302431,0.02458354,95.10014219],[4.53302487,0.02458526,95.10091224],[4.53302543,0.02458697,95.10168228],[4.53302599,0.02458868,95.10245231],[4.53302655,0.0245904,95.10322229],[4.53302711,0.02459211,95.10399221],[4.53302767,0.02459382,95.10476205],[4.53302823,0.02459553,95.10553179],[4.53302879,0.02459725,95.10630142],[4.53302935,0.02459896,95.1070709],[4.53302991,0.02460067,95.10784022],[4.53303046,0.02460239,95.10860937],[4.53303102,0.0246041,95.10937831],[4.53303158,0.02460581,95.11014704],[4.53303214,0.02460752,95.11091553],[4.5330327,0.02460924,95.11168377],[4.53303326,0.02461095,95.11245174],[4.53303382,0.02461266,95.11321945],[4.53303438,0.02461438,95.1139869],[4.53303494,0.02461609,95.11475406],[4.5330355,0.0246178,95.11552095],[4.53303606,0.02461951,95.11628757],[4.53303662,0.02462123,95.11705389],[4.53303718,0.02462294,95.11781993],[4.53303774,0.02462465,95.11858567],[4.5330383,0.02462637,95.11935112],[4.53303886,0.02462808,95.12011628],[4.53303942,0.02462979,95.12088112],[4.53303997,0.0246315,95.12164566],[4.53304053,0.02463322,95.12240989],[4.53304109,0.02463493,95.1231738],[4.53304165,0.02463664,95.1239374],[4.53304221,0.02463836,95.12470067],[4.53304277,0.02464007,95.12546362],[4.53304333,0.02464178,95.12622623],[4.53304389,0.02464349,95.12698852],[4.53304445,0.02464521,95.12775046],[4.533045,0.02464692,95.12851206],[4.53304556,0.02464863,95.12927332],[4.53304612,0.02465035,95.13003423],[4.53304668,0.02465206,95.13079479],[4.53304724,0.02465377,95.13155498],[4.5330478,0.02465549,95.13231482],[4.53304835,0.0246572,95.1330743],[4.53304891,0.02465891,95.1338334],[4.53304947,0.02466063,95.13459214],[4.53305003,0.02466234,95.1353505],[4.53305059,0.02466405,95.13610847],[4.53305114,0.02466577,95.13686607],[4.5330517,0.02466748,95.13762328],[4.53305226,0.02466919,95.13838013],[4.53305281,0.02467091,95.13913663],[4.53305337,0.02467262,95.13989277],[4.53305393,0.02467433,95.14064855],[4.53305449,0.02467605,95.14140396],[4.53305504,0.02467776,95.14215902],[4.5330556,0.02467947,95.14291372],[4.53305616,0.02468119,95.14366807],[4.53305671,0.0246829,95.14442207],[4.53305727,0.02468462,95.14517572],[4.53305782,0.02468633,95.14592902],[4.53305838,0.02468804,95.14668199],[4.53305894,0.02468976,95.14743461],[4.53305949,0.02469147,95.1481869],[4.53306005,0.02469319,95.14893886],[4.5330606,0.0246949,95.14969048],[4.53306116,0.02469661,95.15044178],[4.53306171,0.02469833,95.15119275],[4.53306227,0.02470004,95.15194339],[4.53306282,0.02470176,95.15269369],[4.53306338,0.02470347,95.15344365],[4.53306393,0.02470519,95.15419326],[4.53306449,0.0247069,95.15494252],[4.53306504,0.02470861,95.15569141],[4.53306559,0.02471033,95.15643994],[4.53306615,0.02471204,95.1571881],[4.5330667,0.02471376,95.15793588],[4.53306725,0.02471547,95.15868328],[4.53306781,0.02471719,95.15943029],[4.53306836,0.0247189,95.16017691],[4.53306891,0.02472062,95.16092313],[4.53306947,0.02472233,95.16166894],[4.53307002,0.02472405,95.16241435],[4.53307057,0.02472576,95.16315933],[4.53307112,0.02472748,95.1639039],[4.53307168,0.02472919,95.16464804],[4.53307223,0.02473091,95.16539174],[4.53307278,0.02473262,95.16613501],[4.53307333,0.02473434,95.16687783],[4.53307388,0.02473605,95.1676202],[4.53307443,0.02473777,95.16836212],[4.53307498,0.02473949,95.16910358],[4.53307553,0.0247412,95.16984457],[4.53307608,0.02474292,95.17058508],[4.53307663,0.02474463,95.17132512],[4.53307718,0.02474635,95.17206468],[4.53307773,0.02474807,95.17280375],[4.53307828,0.02474978,95.17354232],[4.53307883,0.0247515,95.17428039],[4.53307938,0.02475321,95.17501796],[4.53307992,0.02475493,95.17575502],[4.53308047,0.02475665,95.17649156],[4.53308102,0.02475836,95.17722757],[4.53308157,0.02476008,95.17796306],[4.53308211,0.0247618,95.17869801],[4.53308266,0.02476351,95.17943243],[4.53308321,0.02476523,95.1801663],[4.53308375,0.02476695,95.18089962],[4.5330843,0.02476867,95.18163238],[4.53308484,0.02477038,95.18236458],[4.53308539,0.0247721,95.18309621],[4.53308593,0.02477382,95.18382727],[4.53308349,0.02477652,95.17958311],[4.53308023,0.02477949,95.16899819],[4.53304895,0.0247898,95.16899819]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-7,"type":"none","predecessorId":0,"sOffset":403.9617323989}},{"geometry":{"coordinates":[[[4.53308023,0.02477949,95.16899819],[4.53308349,0.02477652,95.17958311],[4.53308593,0.02477382,95.18382727],[4.53308539,0.0247721,95.18309621],[4.53308484,0.02477038,95.18236458],[4.5330843,0.02476867,95.18163238],[4.53308375,0.02476695,95.18089962],[4.53308321,0.02476523,95.1801663],[4.53308266,0.02476351,95.17943243],[4.53308211,0.0247618,95.17869801],[4.53308157,0.02476008,95.17796306],[4.53308102,0.02475836,95.17722757],[4.53308047,0.02475665,95.17649156],[4.53307992,0.02475493,95.17575502],[4.53307938,0.02475321,95.17501796],[4.53307883,0.0247515,95.17428039],[4.53307828,0.02474978,95.17354232],[4.53307773,0.02474807,95.17280375],[4.53307718,0.02474635,95.17206468],[4.53307663,0.02474463,95.17132512],[4.53307608,0.02474292,95.17058508],[4.53307553,0.0247412,95.16984457],[4.53307498,0.02473949,95.16910358],[4.53307443,0.02473777,95.16836212],[4.53307388,0.02473605,95.1676202],[4.53307333,0.02473434,95.16687783],[4.53307278,0.02473262,95.16613501],[4.53307223,0.02473091,95.16539174],[4.53307168,0.02472919,95.16464804],[4.53307112,0.02472748,95.1639039],[4.53307057,0.02472576,95.16315933],[4.53307002,0.02472405,95.16241435],[4.53306947,0.02472233,95.16166894],[4.53306891,0.02472062,95.16092313],[4.53306836,0.0247189,95.16017691],[4.53306781,0.02471719,95.15943029],[4.53306725,0.02471547,95.15868328],[4.5330667,0.02471376,95.15793588],[4.53306615,0.02471204,95.1571881],[4.53306559,0.02471033,95.15643994],[4.53306504,0.02470861,95.15569141],[4.53306449,0.0247069,95.15494252],[4.53306393,0.02470519,95.15419326],[4.53306338,0.02470347,95.15344365],[4.53306282,0.02470176,95.15269369],[4.53306227,0.02470004,95.15194339],[4.53306171,0.02469833,95.15119275],[4.53306116,0.02469661,95.15044178],[4.5330606,0.0246949,95.14969048],[4.53306005,0.02469319,95.14893886],[4.53305949,0.02469147,95.1481869],[4.53305894,0.02468976,95.14743461],[4.53305838,0.02468804,95.14668199],[4.53305782,0.02468633,95.14592902],[4.53305727,0.02468462,95.14517572],[4.53305671,0.0246829,95.14442207],[4.53305616,0.02468119,95.14366807],[4.5330556,0.02467947,95.14291372],[4.53305504,0.02467776,95.14215902],[4.53305449,0.02467605,95.14140396],[4.53305393,0.02467433,95.14064855],[4.53305337,0.02467262,95.13989277],[4.53305281,0.02467091,95.13913663],[4.53305226,0.02466919,95.13838013],[4.5330517,0.02466748,95.13762328],[4.53305114,0.02466577,95.13686607],[4.53305059,0.02466405,95.13610847],[4.53305003,0.02466234,95.1353505],[4.53304947,0.02466063,95.13459214],[4.53304891,0.02465891,95.1338334],[4.53304835,0.0246572,95.1330743],[4.5330478,0.02465549,95.13231482],[4.53304724,0.02465377,95.13155498],[4.53304668,0.02465206,95.13079479],[4.53304612,0.02465035,95.13003423],[4.53304556,0.02464863,95.12927332],[4.533045,0.02464692,95.12851206],[4.53304445,0.02464521,95.12775046],[4.53304389,0.02464349,95.12698852],[4.53304333,0.02464178,95.12622623],[4.53304277,0.02464007,95.12546362],[4.53304221,0.02463836,95.12470067],[4.53304165,0.02463664,95.1239374],[4.53304109,0.02463493,95.1231738],[4.53304053,0.02463322,95.12240989],[4.53303997,0.0246315,95.12164566],[4.53303942,0.02462979,95.12088112],[4.53303886,0.02462808,95.12011628],[4.5330383,0.02462637,95.11935112],[4.53303774,0.02462465,95.11858567],[4.53303718,0.02462294,95.11781993],[4.53303662,0.02462123,95.11705389],[4.53303606,0.02461951,95.11628757],[4.5330355,0.0246178,95.11552095],[4.53303494,0.02461609,95.11475406],[4.53303438,0.02461438,95.1139869],[4.53303382,0.02461266,95.11321945],[4.53303326,0.02461095,95.11245174],[4.5330327,0.02460924,95.11168377],[4.53303214,0.02460752,95.11091553],[4.53303158,0.02460581,95.11014704],[4.53303102,0.0246041,95.10937831],[4.53303046,0.02460239,95.10860937],[4.53302991,0.02460067,95.10784022],[4.53302935,0.02459896,95.1070709],[4.53302879,0.02459725,95.10630142],[4.53302823,0.02459553,95.10553179],[4.53302767,0.02459382,95.10476205],[4.53302711,0.02459211,95.10399221],[4.53302655,0.0245904,95.10322229],[4.53302599,0.02458868,95.10245231],[4.53302543,0.02458697,95.10168228],[4.53302487,0.02458526,95.10091224],[4.53302431,0.02458354,95.10014219],[4.53302375,0.02458183,95.09937216],[4.53302319,0.02458012,95.09860217],[4.53302263,0.02457841,95.09783221],[4.53302207,0.02457669,95.09706229],[4.53302151,0.02457498,95.0962924],[4.53302095,0.02457327,95.09552255],[4.5330204,0.02457155,95.09475272],[4.53301984,0.02456984,95.09398293],[4.53301928,0.02456813,95.09321316],[4.53301872,0.02456642,95.09244342],[4.53301816,0.0245647,95.09167371],[4.5330176,0.02456299,95.09090403],[4.53301704,0.02456128,95.09013436],[4.53301648,0.02455956,95.08936472],[4.53301593,0.02455785,95.0885951],[4.53301537,0.02455614,95.08782551],[4.53301481,0.02455442,95.08705593],[4.53301425,0.02455271,95.08628636],[4.53301369,0.024551,95.08551682],[4.53301313,0.02454928,95.08474729],[4.53301257,0.02454757,95.08397777],[4.53301202,0.02454586,95.08320827],[4.53301146,0.02454414,95.08243877],[4.5330109,0.02454243,95.08166929],[4.53301034,0.02454072,95.08089981],[4.53300978,0.024539,95.08013034],[4.53300923,0.02453729,95.07936088],[4.53300867,0.02453558,95.07859142],[4.53300811,0.02453386,95.07782197],[4.53300755,0.02453215,95.07705251],[4.53300699,0.02453044,95.07628306],[4.53300643,0.02452872,95.07551361],[4.53300588,0.02452701,95.07474415],[4.53300532,0.0245253,95.0739747],[4.53300476,0.02452358,95.07320523],[4.5330042,0.02452187,95.07243576],[4.53300364,0.02452016,95.07166629],[4.53300309,0.02451844,95.0708968],[4.53300253,0.02451673,95.07012731],[4.53300197,0.02451502,95.0693578],[4.53300141,0.0245133,95.06858829],[4.53300086,0.02451159,95.06781882],[4.5330003,0.02450988,95.06704944],[4.53299974,0.02450816,95.06628018],[4.53299918,0.02450645,95.06551104],[4.53299862,0.02450474,95.06474201],[4.53299807,0.02450302,95.06397309],[4.53299751,0.02450131,95.06320428],[4.53299695,0.0244996,95.06243557],[4.53299639,0.02449788,95.06166697],[4.53299584,0.02449617,95.06089847],[4.53299528,0.02449446,95.06013005],[4.53299472,0.02449274,95.05936172],[4.53299417,0.02449103,95.05859348],[4.53299361,0.02448931,95.0578253],[4.53299305,0.0244876,95.0570572],[4.53299249,0.02448589,95.05628915],[4.53299194,0.02448417,95.05552117],[4.53299138,0.02448246,95.05475323],[4.53299082,0.02448075,95.05398535],[4.53299026,0.02447903,95.0532175],[4.53298971,0.02447732,95.05244969],[4.53298915,0.0244756,95.05168191],[4.53298859,0.02447389,95.05091415],[4.53298804,0.02447218,95.05014641],[4.53298748,0.02447046,95.04937869],[4.53298692,0.02446875,95.04861097],[4.53298636,0.02446704,95.04784325],[4.53298581,0.02446532,95.04707553],[4.53298525,0.02446361,95.0463078],[4.53298469,0.0244619,95.04554005],[4.53298414,0.02446018,95.04477228],[4.53298358,0.02445847,95.04400448],[4.53298302,0.02445675,95.04323663],[4.53298246,0.02445504,95.0424687],[4.53298191,0.02445333,95.04170067],[4.53298135,0.02445161,95.04093254],[4.53298079,0.0244499,95.04016431],[4.53298023,0.02444819,95.03939596],[4.53297968,0.02444647,95.03862747],[4.53297912,0.02444476,95.03785884],[4.53297856,0.02444305,95.03709006],[4.532978,0.02444133,95.0363211],[4.53297744,0.02443962,95.03555195],[4.53297689,0.02443791,95.03478261],[4.53297633,0.02443619,95.03401306],[4.53297577,0.02443448,95.03324328],[4.53297521,0.02443277,95.03247327],[4.53297465,0.02443105,95.031703],[4.53297409,0.02442934,95.03093247],[4.53297354,0.02442763,95.03016167],[4.53297298,0.02442591,95.02939057],[4.53297242,0.0244242,95.02861917],[4.53297186,0.02442249,95.02784745],[4.5329713,0.02442077,95.02707541],[4.53297074,0.02441906,95.02630303],[4.53297018,0.02441735,95.02553034],[4.53296962,0.02441563,95.02475734],[4.53296906,0.02441392,95.02398405],[4.5329685,0.02441221,95.02321048],[4.53296794,0.0244105,95.02243664],[4.53296738,0.02440878,95.02166255],[4.53296682,0.02440707,95.02088823],[4.53296626,0.02440536,95.02011367],[4.5329657,0.02440365,95.0193389],[4.53296514,0.02440193,95.01856394],[4.53296458,0.02440022,95.01778878],[4.53296402,0.02439851,95.01701345],[4.53296346,0.0243968,95.01623795],[4.53296289,0.02439508,95.01546231],[4.53296233,0.02439337,95.01468653],[4.53296177,0.02439166,95.01391063],[4.53296121,0.02438995,95.01313462],[4.53296065,0.02438823,95.01235852],[4.53296009,0.02438652,95.01158233],[4.53295953,0.02438481,95.01080607],[4.53295896,0.0243831,95.01002975],[4.5329584,0.02438138,95.00925339],[4.53295784,0.02437967,95.008477],[4.53295728,0.02437796,95.00770059],[4.53295672,0.02437625,95.00692417],[4.53295615,0.02437454,95.00614776],[4.53295559,0.02437282,95.00537138],[4.53295503,0.02437111,95.00459503],[4.53295447,0.0243694,95.00381872],[4.5329539,0.02436769,95.00304249],[4.53295334,0.02436598,95.00226634],[4.53295278,0.02436426,95.0014903],[4.53295222,0.02436255,95.00071437],[4.53295165,0.02436084,94.99993857],[4.53295109,0.02435913,94.99916289],[4.53295053,0.02435742,94.99838732],[4.53294997,0.0243557,94.99761187],[4.5329494,0.02435399,94.99683653],[4.53294884,0.02435228,94.9960613],[4.53294828,0.02435057,94.99528619],[4.53294771,0.02434886,94.99451118],[4.53294715,0.02434714,94.99373629],[4.53294659,0.02434543,94.9929615],[4.53294602,0.02434372,94.99218682],[4.53294546,0.02434201,94.99141224],[4.5329449,0.0243403,94.99063777],[4.53294433,0.02433859,94.9898634],[4.53294377,0.02433687,94.98908913],[4.53294321,0.02433516,94.98831496],[4.53294264,0.02433345,94.98754089],[4.53294208,0.02433174,94.98676692],[4.53294152,0.02433003,94.98599305],[4.53294095,0.02432832,94.98521926],[4.53294039,0.0243266,94.98444555],[4.53293983,0.02432489,94.98367191],[4.53293926,0.02432318,94.98289835],[4.5329387,0.02432147,94.98212487],[4.53293813,0.02431976,94.98135149],[4.53293757,0.02431805,94.98057825],[4.532937,0.02431634,94.97980515],[4.53293644,0.02431462,94.97903224],[4.53293588,0.02431291,94.97825952],[4.53293531,0.0243112,94.97748703],[4.53293475,0.02430949,94.97671479],[4.53293418,0.02430778,94.97594281],[4.53293362,0.02430607,94.97517114],[4.53293305,0.02430436,94.97439978],[4.53293249,0.02430264,94.97362877],[4.53293192,0.02430093,94.97285812],[4.53293136,0.02429922,94.97208786],[4.53293079,0.02429751,94.97131802],[4.53293023,0.0242958,94.97054862],[4.53292966,0.02429409,94.96977967],[4.5329291,0.02429238,94.96901122],[4.53292854,0.02429066,94.96824327],[4.53292797,0.02428895,94.96747582],[4.53292741,0.02428724,94.96670889],[4.53292684,0.02428553,94.96594245],[4.53292628,0.02428382,94.96517652],[4.53292571,0.02428211,94.96441109],[4.53292515,0.0242804,94.96364616],[4.53292458,0.02427868,94.96288172],[4.53292402,0.02427697,94.96211777],[4.53292346,0.02427526,94.96135432],[4.53292289,0.02427355,94.96059136],[4.53292233,0.02427184,94.95982888],[4.53292176,0.02427013,94.95906689],[4.5329212,0.02426842,94.95830539],[4.53292063,0.0242667,94.95754436],[4.53292007,0.02426499,94.95678382],[4.5329195,0.02426328,94.95602375],[4.53291894,0.02426157,94.95526416],[4.53291838,0.02425986,94.95450504],[4.53291781,0.02425815,94.95374639],[4.53291725,0.02425644,94.95298821],[4.53291668,0.02425472,94.9522305],[4.53291612,0.02425301,94.95147325],[4.53291555,0.0242513,94.95071647],[4.53291499,0.02424959,94.94996015],[4.53291442,0.02424788,94.94920429],[4.53291386,0.02424617,94.94844888],[4.5329133,0.02424446,94.94769393],[4.53291273,0.02424274,94.94693943],[4.53291217,0.02424103,94.94618539],[4.5329116,0.02423932,94.94543179],[4.53291104,0.02423761,94.94467863],[4.53291047,0.0242359,94.94392593],[4.53290991,0.02423419,94.94317366],[4.53290934,0.02423248,94.94242184],[4.53290878,0.02423076,94.94167045],[4.53290821,0.02422905,94.9409195],[4.53290765,0.02422734,94.94016898],[4.53290708,0.02422563,94.9394189],[4.53290652,0.02422392,94.93866925],[4.53290595,0.02422221,94.93792002],[4.53290539,0.0242205,94.93717122],[4.53290482,0.02421879,94.93642284],[4.53290426,0.02421707,94.93567488],[4.53290369,0.02421536,94.93492735],[4.53290313,0.02421365,94.93418023],[4.53290256,0.02421194,94.93343352],[4.532902,0.02421023,94.93268723],[4.53290143,0.02420852,94.93194135],[4.53290087,0.02420681,94.93119588],[4.5329003,0.0242051,94.93045082],[4.53289974,0.02420339,94.92970616],[4.53289917,0.02420167,94.9289619],[4.5328986,0.02419996,94.92821804],[4.53289804,0.02419825,94.92747459],[4.53289747,0.02419654,94.92673152],[4.53289677,0.02419487,94.92598886],[4.53289347,0.02419408,94.92026247],[4.53288931,0.02419356,94.90929662],[4.53288906,0.02419356,94.90880616],[4.53289228,0.02419249,94.90880616],[4.53289244,0.02419252,94.90929662],[4.53289613,0.02419319,94.92026247],[4.53289821,0.02419439,94.92598886],[4.53289878,0.02419611,94.92673152],[4.53289934,0.02419782,94.92747459],[4.5328999,0.02419953,94.92821804],[4.53290047,0.02420124,94.9289619],[4.53290103,0.02420295,94.92970616],[4.53290159,0.02420467,94.93045082],[4.53290216,0.02420638,94.93119588],[4.53290272,0.02420809,94.93194135],[4.53290329,0.0242098,94.93268723],[4.53290385,0.02421151,94.93343352],[4.53290441,0.02421322,94.93418023],[4.53290498,0.02421494,94.93492735],[4.53290554,0.02421665,94.93567488],[4.5329061,0.02421836,94.93642284],[4.53290667,0.02422007,94.93717122],[4.53290723,0.02422178,94.93792002],[4.53290779,0.0242235,94.93866925],[4.53290836,0.02422521,94.9394189],[4.53290892,0.02422692,94.94016898],[4.53290948,0.02422863,94.9409195],[4.53291005,0.02423034,94.94167045],[4.53291061,0.02423205,94.94242184],[4.53291117,0.02423377,94.94317366],[4.53291174,0.02423548,94.94392593],[4.5329123,0.02423719,94.94467863],[4.53291286,0.0242389,94.94543179],[4.53291343,0.02424061,94.94618539],[4.53291399,0.02424233,94.94693943],[4.53291455,0.02424404,94.94769393],[4.53291512,0.02424575,94.94844888],[4.53291568,0.02424746,94.94920429],[4.53291624,0.02424917,94.94996015],[4.53291681,0.02425088,94.95071647],[4.53291737,0.0242526,94.95147325],[4.53291793,0.02425431,94.9522305],[4.5329185,0.02425602,94.95298821],[4.53291906,0.02425773,94.95374639],[4.53291962,0.02425944,94.95450504],[4.53292019,0.02426116,94.95526416],[4.53292075,0.02426287,94.95602375],[4.53292132,0.02426458,94.95678382],[4.53292188,0.02426629,94.95754436],[4.53292244,0.024268,94.95830539],[4.53292301,0.02426971,94.95906689],[4.53292357,0.02427143,94.95982888],[4.53292413,0.02427314,94.96059136],[4.5329247,0.02427485,94.96135432],[4.53292526,0.02427656,94.96211777],[4.53292583,0.02427827,94.96288172],[4.53292639,0.02427998,94.96364616],[4.53292695,0.0242817,94.96441109],[4.53292752,0.02428341,94.96517652],[4.53292808,0.02428512,94.96594245],[4.53292865,0.02428683,94.96670889],[4.53292921,0.02428854,94.96747582],[4.53292977,0.02429025,94.96824327],[4.53293034,0.02429196,94.96901122],[4.5329309,0.02429368,94.96977967],[4.53293147,0.02429539,94.97054862],[4.53293203,0.0242971,94.97131802],[4.5329326,0.02429881,94.97208786],[4.53293316,0.02430052,94.97285812],[4.53293373,0.02430223,94.97362877],[4.53293429,0.02430394,94.97439978],[4.53293485,0.02430566,94.97517114],[4.53293542,0.02430737,94.97594281],[4.53293598,0.02430908,94.97671479],[4.53293655,0.02431079,94.97748703],[4.53293711,0.0243125,94.97825952],[4.53293768,0.02431421,94.97903224],[4.53293824,0.02431592,94.97980515],[4.53293881,0.02431764,94.98057825],[4.53293937,0.02431935,94.98135149],[4.53293994,0.02432106,94.98212487],[4.5329405,0.02432277,94.98289835],[4.53294106,0.02432448,94.98367191],[4.53294163,0.02432619,94.98444555],[4.53294219,0.0243279,94.98521926],[4.53294276,0.02432962,94.98599305],[4.53294332,0.02433133,94.98676692],[4.53294388,0.02433304,94.98754089],[4.53294445,0.02433475,94.98831496],[4.53294501,0.02433646,94.98908913],[4.53294558,0.02433817,94.9898634],[4.53294614,0.02433989,94.99063777],[4.5329467,0.0243416,94.99141224],[4.53294727,0.02434331,94.99218682],[4.53294783,0.02434502,94.9929615],[4.53294839,0.02434673,94.99373629],[4.53294896,0.02434844,94.99451118],[4.53294952,0.02435016,94.99528619],[4.53295008,0.02435187,94.9960613],[4.53295065,0.02435358,94.99683653],[4.53295121,0.02435529,94.99761187],[4.53295177,0.024357,94.99838732],[4.53295234,0.02435871,94.99916289],[4.5329529,0.02436043,94.99993857],[4.53295346,0.02436214,95.00071437],[4.53295403,0.02436385,95.0014903],[4.53295459,0.02436556,95.00226634],[4.53295515,0.02436727,95.00304249],[4.53295572,0.02436898,95.00381872],[4.53295628,0.0243707,95.00459503],[4.53295684,0.02437241,95.00537138],[4.53295741,0.02437412,95.00614776],[4.53295797,0.02437583,95.00692417],[4.53295853,0.02437754,95.00770059],[4.53295909,0.02437926,95.008477],[4.53295966,0.02438097,95.00925339],[4.53296022,0.02438268,95.01002975],[4.53296078,0.02438439,95.01080607],[4.53296134,0.0243861,95.01158233],[4.53296191,0.02438782,95.01235852],[4.53296247,0.02438953,95.01313462],[4.53296303,0.02439124,95.01391063],[4.53296359,0.02439295,95.01468653],[4.53296416,0.02439466,95.01546231],[4.53296472,0.02439638,95.01623795],[4.53296528,0.02439809,95.01701345],[4.53296584,0.0243998,95.01778878],[4.5329664,0.02440151,95.01856394],[4.53296696,0.02440323,95.0193389],[4.53296753,0.02440494,95.02011367],[4.53296809,0.02440665,95.02088823],[4.53296865,0.02440836,95.02166255],[4.53296921,0.02441008,95.02243664],[4.53296977,0.02441179,95.02321048],[4.53297033,0.0244135,95.02398405],[4.53297089,0.02441521,95.02475734],[4.53297145,0.02441693,95.02553034],[4.53297201,0.02441864,95.02630303],[4.53297257,0.02442035,95.02707541],[4.53297313,0.02442206,95.02784745],[4.53297369,0.02442378,95.02861917],[4.53297425,0.02442549,95.02939057],[4.53297481,0.0244272,95.03016167],[4.53297537,0.02442892,95.03093247],[4.53297593,0.02443063,95.031703],[4.53297649,0.02443234,95.03247327],[4.53297705,0.02443405,95.03324328],[4.53297761,0.02443577,95.03401306],[4.53297817,0.02443748,95.03478261],[4.53297873,0.02443919,95.03555195],[4.53297928,0.02444091,95.0363211],[4.53297984,0.02444262,95.03709006],[4.5329804,0.02444433,95.03785884],[4.53298096,0.02444605,95.03862747],[4.53298152,0.02444776,95.03939596],[4.53298208,0.02444947,95.04016431],[4.53298264,0.02445119,95.04093254],[4.53298319,0.0244529,95.04170067],[4.53298375,0.02445461,95.0424687],[4.53298431,0.02445633,95.04323663],[4.53298487,0.02445804,95.04400448],[4.53298543,0.02445975,95.04477228],[4.53298598,0.02446147,95.04554005],[4.53298654,0.02446318,95.0463078],[4.5329871,0.02446489,95.04707553],[4.53298766,0.02446661,95.04784325],[4.53298822,0.02446832,95.04861097],[4.53298877,0.02447003,95.04937869],[4.53298933,0.02447175,95.05014641],[4.53298989,0.02447346,95.05091415],[4.53299045,0.02447517,95.05168191],[4.53299101,0.02447689,95.05244969],[4.53299156,0.0244786,95.0532175],[4.53299212,0.02448032,95.05398535],[4.53299268,0.02448203,95.05475323],[4.53299324,0.02448374,95.05552117],[4.53299379,0.02448546,95.05628915],[4.53299435,0.02448717,95.0570572],[4.53299491,0.02448888,95.0578253],[4.53299547,0.0244906,95.05859348],[4.53299603,0.02449231,95.05936172],[4.53299658,0.02449402,95.06013005],[4.53299714,0.02449574,95.06089847],[4.5329977,0.02449745,95.06166697],[4.53299826,0.02449916,95.06243557],[4.53299882,0.02450088,95.06320428],[4.53299937,0.02450259,95.06397309],[4.53299993,0.0245043,95.06474201],[4.53300049,0.02450602,95.06551104],[4.53300105,0.02450773,95.06628018],[4.53300161,0.02450944,95.06704944],[4.53300216,0.02451116,95.06781882],[4.53300272,0.02451287,95.06858829],[4.53300328,0.02451458,95.0693578],[4.53300384,0.0245163,95.07012731],[4.5330044,0.02451801,95.0708968],[4.53300495,0.02451972,95.07166629],[4.53300551,0.02452144,95.07243576],[4.53300607,0.02452315,95.07320523],[4.53300663,0.02452486,95.0739747],[4.53300719,0.02452658,95.07474415],[4.53300775,0.02452829,95.07551361],[4.5330083,0.02453,95.07628306],[4.53300886,0.02453172,95.07705251],[4.53300942,0.02453343,95.07782197],[4.53300998,0.02453514,95.07859142],[4.53301054,0.02453686,95.07936088],[4.5330111,0.02453857,95.08013034],[4.53301165,0.02454028,95.08089981],[4.53301221,0.024542,95.08166929],[4.53301277,0.02454371,95.08243877],[4.53301333,0.02454542,95.08320827],[4.53301389,0.02454714,95.08397777],[4.53301445,0.02454885,95.08474729],[4.533015,0.02455056,95.08551682],[4.53301556,0.02455228,95.08628636],[4.53301612,0.02455399,95.08705593],[4.53301668,0.0245557,95.08782551],[4.53301724,0.02455741,95.0885951],[4.5330178,0.02455913,95.08936472],[4.53301836,0.02456084,95.09013436],[4.53301891,0.02456255,95.09090403],[4.53301947,0.02456427,95.09167371],[4.53302003,0.02456598,95.09244342],[4.53302059,0.02456769,95.09321316],[4.53302115,0.02456941,95.09398293],[4.53302171,0.02457112,95.09475272],[4.53302227,0.02457283,95.09552255],[4.53302283,0.02457455,95.0962924],[4.53302339,0.02457626,95.09706229],[4.53302394,0.02457797,95.09783221],[4.5330245,0.02457968,95.09860217],[4.53302506,0.0245814,95.09937216],[4.53302562,0.02458311,95.10014219],[4.53302618,0.02458482,95.10091224],[4.53302674,0.02458654,95.10168228],[4.5330273,0.02458825,95.10245231],[4.53302786,0.02458996,95.10322229],[4.53302842,0.02459168,95.10399221],[4.53302898,0.02459339,95.10476205],[4.53302954,0.0245951,95.10553179],[4.5330301,0.02459681,95.10630142],[4.53303066,0.02459853,95.1070709],[4.53303122,0.02460024,95.10784022],[4.53303177,0.02460195,95.10860937],[4.53303233,0.02460367,95.10937831],[4.53303289,0.02460538,95.11014704],[4.53303345,0.02460709,95.11091553],[4.53303401,0.0246088,95.11168377],[4.53303457,0.02461052,95.11245174],[4.53303513,0.02461223,95.11321945],[4.53303569,0.02461394,95.1139869],[4.53303625,0.02461566,95.11475406],[4.53303681,0.02461737,95.11552095],[4.53303737,0.02461908,95.11628757],[4.53303793,0.02462079,95.11705389],[4.53303848,0.02462251,95.11781993],[4.53303904,0.02462422,95.11858567],[4.5330396,0.02462593,95.11935112],[4.53304016,0.02462765,95.12011628],[4.53304072,0.02462936,95.12088112],[4.53304128,0.02463107,95.12164566],[4.53304184,0.02463279,95.12240989],[4.5330424,0.0246345,95.1231738],[4.53304296,0.02463621,95.1239374],[4.53304351,0.02463792,95.12470067],[4.53304407,0.02463964,95.12546362],[4.53304463,0.02464135,95.12622623],[4.53304519,0.02464306,95.12698852],[4.53304575,0.02464478,95.12775046],[4.53304631,0.02464649,95.12851206],[4.53304687,0.0246482,95.12927332],[4.53304742,0.02464992,95.13003423],[4.53304798,0.02465163,95.13079479],[4.53304854,0.02465334,95.13155498],[4.5330491,0.02465506,95.13231482],[4.53304966,0.02465677,95.1330743],[4.53305021,0.02465848,95.1338334],[4.53305077,0.0246602,95.13459214],[4.53305133,0.02466191,95.1353505],[4.53305189,0.02466362,95.13610847],[4.53305245,0.02466534,95.13686607],[4.53305301,0.02466705,95.13762328],[4.53305356,0.02466876,95.13838013],[4.53305412,0.02467048,95.13913663],[4.53305468,0.02467219,95.13989277],[4.53305524,0.0246739,95.14064855],[4.53305579,0.02467562,95.14140396],[4.53305635,0.02467733,95.14215902],[4.53305691,0.02467904,95.14291372],[4.53305747,0.02468076,95.14366807],[4.53305803,0.02468247,95.14442207],[4.53305858,0.02468418,95.14517572],[4.53305914,0.0246859,95.14592902],[4.5330597,0.02468761,95.14668199],[4.53306026,0.02468932,95.14743461],[4.53306081,0.02469104,95.1481869],[4.53306137,0.02469275,95.14893886],[4.53306193,0.02469446,95.14969048],[4.53306249,0.02469618,95.15044178],[4.53306304,0.02469789,95.15119275],[4.5330636,0.0246996,95.15194339],[4.53306416,0.02470132,95.15269369],[4.53306472,0.02470303,95.15344365],[4.53306527,0.02470474,95.15419326],[4.53306583,0.02470646,95.15494252],[4.53306639,0.02470817,95.15569141],[4.53306695,0.02470988,95.15643994],[4.5330675,0.0247116,95.1571881],[4.53306806,0.02471331,95.15793588],[4.53306862,0.02471502,95.15868328],[4.53306918,0.02471674,95.15943029],[4.53306973,0.02471845,95.16017691],[4.53307029,0.02472016,95.16092313],[4.53307085,0.02472188,95.16166894],[4.5330714,0.02472359,95.16241435],[4.53307196,0.0247253,95.16315933],[4.53307252,0.02472702,95.1639039],[4.53307308,0.02472873,95.16464804],[4.53307363,0.02473044,95.16539174],[4.53307419,0.02473216,95.16613501],[4.53307475,0.02473387,95.16687783],[4.5330753,0.02473558,95.1676202],[4.53307586,0.0247373,95.16836212],[4.53307642,0.02473901,95.16910358],[4.53307698,0.02474073,95.16984457],[4.53307753,0.02474244,95.17058508],[4.53307809,0.02474415,95.17132512],[4.53307865,0.02474587,95.17206468],[4.5330792,0.02474758,95.17280375],[4.53307976,0.02474929,95.17354232],[4.53308032,0.02475101,95.17428039],[4.53308087,0.02475272,95.17501796],[4.53308143,0.02475443,95.17575502],[4.53308199,0.02475615,95.17649156],[4.53308254,0.02475786,95.17722757],[4.5330831,0.02475958,95.17796306],[4.53308366,0.02476129,95.17869801],[4.53308421,0.024763,95.17943243],[4.53308477,0.02476472,95.1801663],[4.53308533,0.02476643,95.18089962],[4.53308588,0.02476814,95.18163238],[4.53308644,0.02476986,95.18236458],[4.53308699,0.02477157,95.18309621],[4.53308755,0.02477328,95.18382727],[4.53308651,0.02477552,95.17958311],[4.53308344,0.02477843,95.16899819],[4.53308023,0.02477949,95.16899819]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-6,"type":"border","predecessorId":0,"sOffset":403.9617323989}},{"geometry":{"coordinates":[[[4.53308344,0.02477843,95.01899819],[4.53308651,0.02477552,95.02958311],[4.53308755,0.02477328,95.03382727],[4.53308699,0.02477157,95.03309621],[4.53308644,0.02476986,95.03236458],[4.53308588,0.02476814,95.03163238],[4.53308533,0.02476643,95.03089962],[4.53308477,0.02476472,95.0301663],[4.53308421,0.024763,95.02943243],[4.53308366,0.02476129,95.02869801],[4.5330831,0.02475958,95.02796306],[4.53308254,0.02475786,95.02722757],[4.53308199,0.02475615,95.02649156],[4.53308143,0.02475443,95.02575502],[4.53308087,0.02475272,95.02501796],[4.53308032,0.02475101,95.02428039],[4.53307976,0.02474929,95.02354232],[4.5330792,0.02474758,95.02280375],[4.53307865,0.02474587,95.02206468],[4.53307809,0.02474415,95.02132512],[4.53307753,0.02474244,95.02058508],[4.53307698,0.02474073,95.01984457],[4.53307642,0.02473901,95.01910358],[4.53307586,0.0247373,95.01836212],[4.5330753,0.02473558,95.0176202],[4.53307475,0.02473387,95.01687783],[4.53307419,0.02473216,95.01613501],[4.53307363,0.02473044,95.01539174],[4.53307308,0.02472873,95.01464804],[4.53307252,0.02472702,95.0139039],[4.53307196,0.0247253,95.01315933],[4.5330714,0.02472359,95.01241435],[4.53307085,0.02472188,95.01166894],[4.53307029,0.02472016,95.01092313],[4.53306973,0.02471845,95.01017691],[4.53306918,0.02471674,95.00943029],[4.53306862,0.02471502,95.00868328],[4.53306806,0.02471331,95.00793588],[4.5330675,0.0247116,95.0071881],[4.53306695,0.02470988,95.00643994],[4.53306639,0.02470817,95.00569141],[4.53306583,0.02470646,95.00494252],[4.53306527,0.02470474,95.00419326],[4.53306472,0.02470303,95.00344365],[4.53306416,0.02470132,95.00269369],[4.5330636,0.0246996,95.00194339],[4.53306304,0.02469789,95.00119275],[4.53306249,0.02469618,95.00044178],[4.53306193,0.02469446,94.99969048],[4.53306137,0.02469275,94.99893886],[4.53306081,0.02469104,94.9981869],[4.53306026,0.02468932,94.99743461],[4.5330597,0.02468761,94.99668199],[4.53305914,0.0246859,94.99592902],[4.53305858,0.02468418,94.99517572],[4.53305803,0.02468247,94.99442207],[4.53305747,0.02468076,94.99366807],[4.53305691,0.02467904,94.99291372],[4.53305635,0.02467733,94.99215902],[4.53305579,0.02467562,94.99140396],[4.53305524,0.0246739,94.99064855],[4.53305468,0.02467219,94.98989277],[4.53305412,0.02467048,94.98913663],[4.53305356,0.02466876,94.98838013],[4.53305301,0.02466705,94.98762328],[4.53305245,0.02466534,94.98686607],[4.53305189,0.02466362,94.98610847],[4.53305133,0.02466191,94.9853505],[4.53305077,0.0246602,94.98459214],[4.53305021,0.02465848,94.9838334],[4.53304966,0.02465677,94.9830743],[4.5330491,0.02465506,94.98231482],[4.53304854,0.02465334,94.98155498],[4.53304798,0.02465163,94.98079479],[4.53304742,0.02464992,94.98003423],[4.53304687,0.0246482,94.97927332],[4.53304631,0.02464649,94.97851206],[4.53304575,0.02464478,94.97775046],[4.53304519,0.02464306,94.97698852],[4.53304463,0.02464135,94.97622623],[4.53304407,0.02463964,94.97546362],[4.53304351,0.02463792,94.97470067],[4.53304296,0.02463621,94.9739374],[4.5330424,0.0246345,94.9731738],[4.53304184,0.02463279,94.97240989],[4.53304128,0.02463107,94.97164566],[4.53304072,0.02462936,94.97088112],[4.53304016,0.02462765,94.97011628],[4.5330396,0.02462593,94.96935112],[4.53303904,0.02462422,94.96858567],[4.53303848,0.02462251,94.96781993],[4.53303793,0.02462079,94.96705389],[4.53303737,0.02461908,94.96628757],[4.53303681,0.02461737,94.96552095],[4.53303625,0.02461566,94.96475406],[4.53303569,0.02461394,94.9639869],[4.53303513,0.02461223,94.96321945],[4.53303457,0.02461052,94.96245174],[4.53303401,0.0246088,94.96168377],[4.53303345,0.02460709,94.96091553],[4.53303289,0.02460538,94.96014704],[4.53303233,0.02460367,94.95937831],[4.53303177,0.02460195,94.95860937],[4.53303122,0.02460024,94.95784022],[4.53303066,0.02459853,94.9570709],[4.5330301,0.02459681,94.95630142],[4.53302954,0.0245951,94.95553179],[4.53302898,0.02459339,94.95476205],[4.53302842,0.02459168,94.95399221],[4.53302786,0.02458996,94.95322229],[4.5330273,0.02458825,94.95245231],[4.53302674,0.02458654,94.95168228],[4.53302618,0.02458482,94.95091224],[4.53302562,0.02458311,94.95014219],[4.53302506,0.0245814,94.94937216],[4.5330245,0.02457968,94.94860217],[4.53302394,0.02457797,94.94783221],[4.53302339,0.02457626,94.94706229],[4.53302283,0.02457455,94.9462924],[4.53302227,0.02457283,94.94552255],[4.53302171,0.02457112,94.94475272],[4.53302115,0.02456941,94.94398293],[4.53302059,0.02456769,94.94321316],[4.53302003,0.02456598,94.94244342],[4.53301947,0.02456427,94.94167371],[4.53301891,0.02456255,94.94090403],[4.53301836,0.02456084,94.94013436],[4.5330178,0.02455913,94.93936472],[4.53301724,0.02455741,94.9385951],[4.53301668,0.0245557,94.93782551],[4.53301612,0.02455399,94.93705593],[4.53301556,0.02455228,94.93628636],[4.533015,0.02455056,94.93551682],[4.53301445,0.02454885,94.93474729],[4.53301389,0.02454714,94.93397777],[4.53301333,0.02454542,94.93320827],[4.53301277,0.02454371,94.93243877],[4.53301221,0.024542,94.93166929],[4.53301165,0.02454028,94.93089981],[4.5330111,0.02453857,94.93013034],[4.53301054,0.02453686,94.92936088],[4.53300998,0.02453514,94.92859142],[4.53300942,0.02453343,94.92782197],[4.53300886,0.02453172,94.92705251],[4.5330083,0.02453,94.92628306],[4.53300775,0.02452829,94.92551361],[4.53300719,0.02452658,94.92474415],[4.53300663,0.02452486,94.9239747],[4.53300607,0.02452315,94.92320523],[4.53300551,0.02452144,94.92243576],[4.53300495,0.02451972,94.92166629],[4.5330044,0.02451801,94.9208968],[4.53300384,0.0245163,94.92012731],[4.53300328,0.02451458,94.9193578],[4.53300272,0.02451287,94.91858829],[4.53300216,0.02451116,94.91781882],[4.53300161,0.02450944,94.91704944],[4.53300105,0.02450773,94.91628018],[4.53300049,0.02450602,94.91551104],[4.53299993,0.0245043,94.91474201],[4.53299937,0.02450259,94.91397309],[4.53299882,0.02450088,94.91320428],[4.53299826,0.02449916,94.91243557],[4.5329977,0.02449745,94.91166697],[4.53299714,0.02449574,94.91089847],[4.53299658,0.02449402,94.91013005],[4.53299603,0.02449231,94.90936172],[4.53299547,0.0244906,94.90859348],[4.53299491,0.02448888,94.9078253],[4.53299435,0.02448717,94.9070572],[4.53299379,0.02448546,94.90628915],[4.53299324,0.02448374,94.90552117],[4.53299268,0.02448203,94.90475323],[4.53299212,0.02448032,94.90398535],[4.53299156,0.0244786,94.9032175],[4.53299101,0.02447689,94.90244969],[4.53299045,0.02447517,94.90168191],[4.53298989,0.02447346,94.90091415],[4.53298933,0.02447175,94.90014641],[4.53298877,0.02447003,94.89937869],[4.53298822,0.02446832,94.89861097],[4.53298766,0.02446661,94.89784325],[4.5329871,0.02446489,94.89707553],[4.53298654,0.02446318,94.8963078],[4.53298598,0.02446147,94.89554005],[4.53298543,0.02445975,94.89477228],[4.53298487,0.02445804,94.89400448],[4.53298431,0.02445633,94.89323663],[4.53298375,0.02445461,94.8924687],[4.53298319,0.0244529,94.89170067],[4.53298264,0.02445119,94.89093254],[4.53298208,0.02444947,94.89016431],[4.53298152,0.02444776,94.88939596],[4.53298096,0.02444605,94.88862747],[4.5329804,0.02444433,94.88785884],[4.53297984,0.02444262,94.88709006],[4.53297928,0.02444091,94.8863211],[4.53297873,0.02443919,94.88555195],[4.53297817,0.02443748,94.88478261],[4.53297761,0.02443577,94.88401306],[4.53297705,0.02443405,94.88324328],[4.53297649,0.02443234,94.88247327],[4.53297593,0.02443063,94.881703],[4.53297537,0.02442892,94.88093247],[4.53297481,0.0244272,94.88016167],[4.53297425,0.02442549,94.87939057],[4.53297369,0.02442378,94.87861917],[4.53297313,0.02442206,94.87784745],[4.53297257,0.02442035,94.87707541],[4.53297201,0.02441864,94.87630303],[4.53297145,0.02441693,94.87553034],[4.53297089,0.02441521,94.87475734],[4.53297033,0.0244135,94.87398405],[4.53296977,0.02441179,94.87321048],[4.53296921,0.02441008,94.87243664],[4.53296865,0.02440836,94.87166255],[4.53296809,0.02440665,94.87088823],[4.53296753,0.02440494,94.87011367],[4.53296696,0.02440323,94.8693389],[4.5329664,0.02440151,94.86856394],[4.53296584,0.0243998,94.86778878],[4.53296528,0.02439809,94.86701345],[4.53296472,0.02439638,94.86623795],[4.53296416,0.02439466,94.86546231],[4.53296359,0.02439295,94.86468653],[4.53296303,0.02439124,94.86391063],[4.53296247,0.02438953,94.86313462],[4.53296191,0.02438782,94.86235852],[4.53296134,0.0243861,94.86158233],[4.53296078,0.02438439,94.86080607],[4.53296022,0.02438268,94.86002975],[4.53295966,0.02438097,94.85925339],[4.53295909,0.02437926,94.858477],[4.53295853,0.02437754,94.85770059],[4.53295797,0.02437583,94.85692417],[4.53295741,0.02437412,94.85614776],[4.53295684,0.02437241,94.85537138],[4.53295628,0.0243707,94.85459503],[4.53295572,0.02436898,94.85381872],[4.53295515,0.02436727,94.85304249],[4.53295459,0.02436556,94.85226634],[4.53295403,0.02436385,94.8514903],[4.53295346,0.02436214,94.85071437],[4.5329529,0.02436043,94.84993857],[4.53295234,0.02435871,94.84916289],[4.53295177,0.024357,94.84838732],[4.53295121,0.02435529,94.84761187],[4.53295065,0.02435358,94.84683653],[4.53295008,0.02435187,94.8460613],[4.53294952,0.02435016,94.84528619],[4.53294896,0.02434844,94.84451118],[4.53294839,0.02434673,94.84373629],[4.53294783,0.02434502,94.8429615],[4.53294727,0.02434331,94.84218682],[4.5329467,0.0243416,94.84141224],[4.53294614,0.02433989,94.84063777],[4.53294558,0.02433817,94.8398634],[4.53294501,0.02433646,94.83908913],[4.53294445,0.02433475,94.83831496],[4.53294388,0.02433304,94.83754089],[4.53294332,0.02433133,94.83676692],[4.53294276,0.02432962,94.83599305],[4.53294219,0.0243279,94.83521926],[4.53294163,0.02432619,94.83444555],[4.53294106,0.02432448,94.83367191],[4.5329405,0.02432277,94.83289835],[4.53293994,0.02432106,94.83212487],[4.53293937,0.02431935,94.83135149],[4.53293881,0.02431764,94.83057825],[4.53293824,0.02431592,94.82980515],[4.53293768,0.02431421,94.82903224],[4.53293711,0.0243125,94.82825952],[4.53293655,0.02431079,94.82748703],[4.53293598,0.02430908,94.82671479],[4.53293542,0.02430737,94.82594281],[4.53293485,0.02430566,94.82517114],[4.53293429,0.02430394,94.82439978],[4.53293373,0.02430223,94.82362877],[4.53293316,0.02430052,94.82285812],[4.5329326,0.02429881,94.82208786],[4.53293203,0.0242971,94.82131802],[4.53293147,0.02429539,94.82054862],[4.5329309,0.02429368,94.81977967],[4.53293034,0.02429196,94.81901122],[4.53292977,0.02429025,94.81824327],[4.53292921,0.02428854,94.81747582],[4.53292865,0.02428683,94.81670889],[4.53292808,0.02428512,94.81594245],[4.53292752,0.02428341,94.81517652],[4.53292695,0.0242817,94.81441109],[4.53292639,0.02427998,94.81364616],[4.53292583,0.02427827,94.81288172],[4.53292526,0.02427656,94.81211777],[4.5329247,0.02427485,94.81135432],[4.53292413,0.02427314,94.81059136],[4.53292357,0.02427143,94.80982888],[4.53292301,0.02426971,94.80906689],[4.53292244,0.024268,94.80830539],[4.53292188,0.02426629,94.80754436],[4.53292132,0.02426458,94.80678382],[4.53292075,0.02426287,94.80602375],[4.53292019,0.02426116,94.80526416],[4.53291962,0.02425944,94.80450504],[4.53291906,0.02425773,94.80374639],[4.5329185,0.02425602,94.80298821],[4.53291793,0.02425431,94.8022305],[4.53291737,0.0242526,94.80147325],[4.53291681,0.02425088,94.80071647],[4.53291624,0.02424917,94.79996015],[4.53291568,0.02424746,94.79920429],[4.53291512,0.02424575,94.79844888],[4.53291455,0.02424404,94.79769393],[4.53291399,0.02424233,94.79693943],[4.53291343,0.02424061,94.79618539],[4.53291286,0.0242389,94.79543179],[4.5329123,0.02423719,94.79467863],[4.53291174,0.02423548,94.79392593],[4.53291117,0.02423377,94.79317366],[4.53291061,0.02423205,94.79242184],[4.53291005,0.02423034,94.79167045],[4.53290948,0.02422863,94.7909195],[4.53290892,0.02422692,94.79016898],[4.53290836,0.02422521,94.7894189],[4.53290779,0.0242235,94.78866925],[4.53290723,0.02422178,94.78792002],[4.53290667,0.02422007,94.78717122],[4.5329061,0.02421836,94.78642284],[4.53290554,0.02421665,94.78567488],[4.53290498,0.02421494,94.78492735],[4.53290441,0.02421322,94.78418023],[4.53290385,0.02421151,94.78343352],[4.53290329,0.0242098,94.78268723],[4.53290272,0.02420809,94.78194135],[4.53290216,0.02420638,94.78119588],[4.53290159,0.02420467,94.78045082],[4.53290103,0.02420295,94.77970616],[4.53290047,0.02420124,94.7789619],[4.5328999,0.02419953,94.77821804],[4.53289934,0.02419782,94.77747459],[4.53289878,0.02419611,94.77673152],[4.53289821,0.02419439,94.77598886],[4.53289613,0.02419319,94.77026247],[4.53289244,0.02419252,94.75929662],[4.53289228,0.02419249,94.75880616],[4.5329001,0.02418989,94.78442166],[4.53290013,0.02418996,94.78445283],[4.53290068,0.02419167,94.78517494],[4.53290124,0.02419339,94.78589718],[4.5329018,0.0241951,94.78661957],[4.53290236,0.02419681,94.78734212],[4.53290291,0.02419853,94.78806484],[4.53290347,0.02420024,94.78878776],[4.53290403,0.02420196,94.78951087],[4.53290458,0.02420367,94.7902342],[4.53290514,0.02420538,94.79095775],[4.5329057,0.0242071,94.79168155],[4.53290626,0.02420881,94.79240559],[4.53290681,0.02421053,94.79312991],[4.53290737,0.02421224,94.79385449],[4.53290793,0.02421395,94.79457938],[4.53290848,0.02421567,94.79530456],[4.53290904,0.02421738,94.79603006],[4.5329096,0.0242191,94.79675589],[4.53291015,0.02422081,94.79748207],[4.53291071,0.02422252,94.7982086],[4.53291127,0.02422424,94.7989355],[4.53291182,0.02422595,94.79966278],[4.53291238,0.02422767,94.80039045],[4.53291294,0.02422938,94.80111854],[4.53291349,0.0242311,94.80184704],[4.53291405,0.02423281,94.80257597],[4.53291461,0.02423452,94.80330535],[4.53291516,0.02423624,94.80403519],[4.53291572,0.02423795,94.80476551],[4.53291628,0.02423967,94.8054963],[4.53291683,0.02424138,94.80622759],[4.53291739,0.02424309,94.8069594],[4.53291795,0.02424481,94.80769172],[4.5329185,0.02424652,94.80842459],[4.53291906,0.02424824,94.809158],[4.53291962,0.02424995,94.80989197],[4.53292017,0.02425166,94.81062651],[4.53292073,0.02425338,94.81136164],[4.53292129,0.02425509,94.81209738],[4.53292185,0.02425681,94.81283372],[4.5329224,0.02425852,94.81357069],[4.53292296,0.02426023,94.8143083],[4.53292352,0.02426195,94.81504656],[4.53292407,0.02426366,94.81578548],[4.53292463,0.02426537,94.81652508],[4.53292519,0.02426709,94.81726536],[4.53292575,0.0242688,94.81800635],[4.53292631,0.02427052,94.81874805],[4.53292686,0.02427223,94.81949048],[4.53292742,0.02427394,94.82023365],[4.53292798,0.02427566,94.82097757],[4.53292854,0.02427737,94.82172226],[4.5329291,0.02427908,94.82246772],[4.53292966,0.0242808,94.82321397],[4.53293021,0.02428251,94.82396103],[4.53293077,0.02428422,94.8247089],[4.53293133,0.02428594,94.8254576],[4.53293189,0.02428765,94.82620714],[4.53293245,0.02428936,94.82695753],[4.53293301,0.02429108,94.82770879],[4.53293357,0.02429279,94.82846092],[4.53293413,0.0242945,94.82921391],[4.53293469,0.02429622,94.82996776],[4.53293525,0.02429793,94.83072245],[4.53293581,0.02429964,94.83147796],[4.53293637,0.02430135,94.83223428],[4.53293693,0.02430307,94.8329914],[4.53293749,0.02430478,94.8337493],[4.53293805,0.02430649,94.83450798],[4.53293861,0.0243082,94.83526742],[4.53293918,0.02430992,94.8360276],[4.53293974,0.02431163,94.83678851],[4.5329403,0.02431334,94.83755014],[4.53294086,0.02431505,94.83831247],[4.53294142,0.02431677,94.8390755],[4.53294198,0.02431848,94.83983921],[4.53294255,0.02432019,94.84060358],[4.53294311,0.0243219,94.8413686],[4.53294367,0.02432361,94.84213426],[4.53294423,0.02432533,94.84290055],[4.53294479,0.02432704,94.84366746],[4.53294536,0.02432875,94.84443499],[4.53294592,0.02433046,94.84520312],[4.53294648,0.02433218,94.84597187],[4.53294705,0.02433389,94.84674121],[4.53294761,0.0243356,94.84751115],[4.53294817,0.02433731,94.84828166],[4.53294873,0.02433902,94.84905274],[4.5329493,0.02434073,94.84982438],[4.53294986,0.02434245,94.85059657],[4.53295042,0.02434416,94.8513693],[4.53295099,0.02434587,94.85214255],[4.53295155,0.02434758,94.85291633],[4.53295212,0.02434929,94.85369062],[4.53295268,0.02435101,94.8544654],[4.53295324,0.02435272,94.85524068],[4.53295381,0.02435443,94.85601643],[4.53295437,0.02435614,94.85679266],[4.53295493,0.02435785,94.85756934],[4.5329555,0.02435956,94.85834648],[4.53295606,0.02436127,94.85912405],[4.53295663,0.02436299,94.85990205],[4.53295719,0.0243647,94.86068048],[4.53295776,0.02436641,94.8614593],[4.53295832,0.02436812,94.86223849],[4.53295888,0.02436983,94.86301801],[4.53295945,0.02437154,94.86379783],[4.53296001,0.02437325,94.86457793],[4.53296058,0.02437497,94.86535829],[4.53296114,0.02437668,94.86613888],[4.53296171,0.02437839,94.86691967],[4.53296227,0.0243801,94.86770065],[4.53296284,0.02438181,94.86848179],[4.5329634,0.02438352,94.86926305],[4.53296397,0.02438523,94.87004443],[4.53296453,0.02438695,94.8708259],[4.53296509,0.02438866,94.87160742],[4.53296566,0.02439037,94.87238898],[4.53296622,0.02439208,94.87317056],[4.53296679,0.02439379,94.87395212],[4.53296735,0.0243955,94.87473365],[4.53296792,0.02439721,94.87551512],[4.53296848,0.02439893,94.87629651],[4.53296904,0.02440064,94.87707779],[4.53296961,0.02440235,94.87785894],[4.53297017,0.02440406,94.87863994],[4.53297074,0.02440577,94.87942075],[4.5329713,0.02440748,94.88020137],[4.53297186,0.02440919,94.88098175],[4.53297243,0.02441091,94.88176189],[4.53297299,0.02441262,94.88254175],[4.53297355,0.02441433,94.88332131],[4.53297412,0.02441604,94.88410055],[4.53297468,0.02441775,94.88487944],[4.53297524,0.02441947,94.88565797],[4.5329758,0.02442118,94.88643609],[4.53297637,0.02442289,94.88721382],[4.53297693,0.0244246,94.88799114],[4.53297749,0.02442631,94.88876807],[4.53297805,0.02442803,94.88954459],[4.53297861,0.02442974,94.89032073],[4.53297917,0.02443145,94.89109647],[4.53297974,0.02443316,94.89187181],[4.5329803,0.02443488,94.89264678],[4.53298086,0.02443659,94.89342135],[4.53298142,0.0244383,94.89419555],[4.53298198,0.02444001,94.89496936],[4.53298254,0.02444173,94.89574279],[4.5329831,0.02444344,94.89651585],[4.53298366,0.02444515,94.89728854],[4.53298422,0.02444686,94.89806085],[4.53298478,0.02444858,94.8988328],[4.53298534,0.02445029,94.89960438],[4.5329859,0.024452,94.9003756],[4.53298646,0.02445372,94.90114645],[4.53298702,0.02445543,94.90191692],[4.53298758,0.02445714,94.90268702],[4.53298814,0.02445885,94.90345677],[4.5329887,0.02446057,94.90422618],[4.53298926,0.02446228,94.90499526],[4.53298981,0.02446399,94.90576403],[4.53299037,0.02446571,94.90653251],[4.53299093,0.02446742,94.90730069],[4.53299149,0.02446913,94.9080686],[4.53299205,0.02447085,94.90883626],[4.53299261,0.02447256,94.90960366],[4.53299317,0.02447427,94.91037084],[4.53299372,0.02447599,94.91113779],[4.53299428,0.0244777,94.91190454],[4.53299484,0.02447941,94.9126711],[4.5329954,0.02448113,94.91343747],[4.53299596,0.02448284,94.91420368],[4.53299651,0.02448455,94.91496973],[4.53299707,0.02448627,94.91573565],[4.53299763,0.02448798,94.91650143],[4.53299819,0.0244897,94.91726711],[4.53299874,0.02449141,94.91803268],[4.5329993,0.02449312,94.91879816],[4.53299986,0.02449484,94.91956357],[4.53300042,0.02449655,94.92032892],[4.53300097,0.02449826,94.92109422],[4.53300153,0.02449998,94.92185949],[4.53300209,0.02450169,94.92262473],[4.53300265,0.0245034,94.92338996],[4.5330032,0.02450512,94.92415518],[4.53300376,0.02450683,94.92492041],[4.53300432,0.02450855,94.92568566],[4.53300488,0.02451026,94.92645093],[4.53300543,0.02451197,94.92721621],[4.53300599,0.02451369,94.92798146],[4.53300655,0.0245154,94.92874663],[4.5330071,0.02451711,94.92951173],[4.53300766,0.02451883,94.93027676],[4.53300822,0.02452054,94.93104174],[4.53300878,0.02452225,94.93180667],[4.53300933,0.02452397,94.93257156],[4.53300989,0.02452568,94.93333642],[4.53301045,0.0245274,94.93410127],[4.53301101,0.02452911,94.9348661],[4.53301156,0.02453082,94.93563092],[4.53301212,0.02453254,94.93639576],[4.53301268,0.02453425,94.93716061],[4.53301324,0.02453596,94.93792548],[4.53301379,0.02453768,94.93869038],[4.53301435,0.02453939,94.93945533],[4.53301491,0.0245411,94.94022032],[4.53301546,0.02454282,94.94098537],[4.53301602,0.02454453,94.94175049],[4.53301658,0.02454624,94.94251569],[4.53301714,0.02454796,94.94328097],[4.5330177,0.02454967,94.94404634],[4.53301825,0.02455139,94.94481181],[4.53301881,0.0245531,94.9455774],[4.53301937,0.02455481,94.9463431],[4.53301993,0.02455653,94.94710893],[4.53302048,0.02455824,94.9478749],[4.53302104,0.02455995,94.94864101],[4.5330216,0.02456167,94.94940728],[4.53302216,0.02456338,94.95017371],[4.53302272,0.02456509,94.95094031],[4.53302328,0.02456681,94.95170708],[4.53302383,0.02456852,94.95247405],[4.53302439,0.02457023,94.95324121],[4.53302495,0.02457194,94.95400858],[4.53302551,0.02457366,94.95477617],[4.53302607,0.02457537,94.95554397],[4.53302663,0.02457708,94.95631201],[4.53302719,0.0245788,94.95708028],[4.53302775,0.02458051,94.95784881],[4.5330283,0.02458222,94.95861758],[4.53302886,0.02458394,94.9593866],[4.53302942,0.02458565,94.96015586],[4.53302998,0.02458736,94.96092533],[4.53303054,0.02458907,94.96169501],[4.5330311,0.02459079,94.96246488],[4.53303166,0.0245925,94.96323494],[4.53303222,0.02459421,94.96400517],[4.53303278,0.02459593,94.96477555],[4.53303334,0.02459764,94.96554608],[4.5330339,0.02459935,94.96631674],[4.53303446,0.02460106,94.96708752],[4.53303502,0.02460278,94.96785841],[4.53303558,0.02460449,94.9686294],[4.53303614,0.0246062,94.96940047],[4.53303671,0.02460791,94.97017161],[4.53303727,0.02460963,94.97094281],[4.53303783,0.02461134,94.97171406],[4.53303839,0.02461305,94.97248534],[4.53303895,0.02461476,94.97325665],[4.53303951,0.02461648,94.97402796],[4.53304007,0.02461819,94.97479927],[4.53304063,0.0246199,94.97557057],[4.53304119,0.02462161,94.97634184],[4.53304175,0.02462332,94.97711307],[4.53304231,0.02462504,94.97788425],[4.53304288,0.02462675,94.97865536],[4.53304344,0.02462846,94.9794264],[4.533044,0.02463017,94.98019736],[4.53304456,0.02463189,94.98096821],[4.53304512,0.0246336,94.98173895],[4.53304568,0.02463531,94.98250956],[4.53304624,0.02463702,94.98328004],[4.5330468,0.02463873,94.98405037],[4.53304737,0.02464045,94.98482054],[4.53304793,0.02464216,94.98559054],[4.53304849,0.02464387,94.98636035],[4.53304905,0.02464558,94.98712996],[4.53304961,0.0246473,94.98789936],[4.53305017,0.02464901,94.98866854],[4.53305073,0.02465072,94.98943749],[4.5330513,0.02465243,94.99020619],[4.53305186,0.02465414,94.99097463],[4.53305242,0.02465586,94.9917428],[4.53305298,0.02465757,94.99251069],[4.53305354,0.02465928,94.99327829],[4.5330541,0.02466099,94.99404558],[4.53305466,0.02466271,94.99481255],[4.53305523,0.02466442,94.99557919],[4.53305579,0.02466613,94.99634549],[4.53305635,0.02466784,94.99711146],[4.53305691,0.02466955,94.99787711],[4.53305747,0.02467127,94.99864242],[4.53305803,0.02467298,94.99940738],[4.53305859,0.02467469,95.00017199],[4.53305915,0.0246764,95.00093622],[4.53305971,0.02467812,95.00170009],[4.53306028,0.02467983,95.00246359],[4.53306084,0.02468154,95.0032267],[4.5330614,0.02468325,95.00398943],[4.53306196,0.02468497,95.00475176],[4.53306252,0.02468668,95.0055137],[4.53306308,0.02468839,95.00627524],[4.53306364,0.0246901,95.00703637],[4.5330642,0.02469181,95.00779709],[4.53306476,0.02469353,95.00855739],[4.53306532,0.02469524,95.00931727],[4.53306588,0.02469695,95.01007671],[4.53306644,0.02469866,95.01083571],[4.533067,0.02470038,95.01159426],[4.53306756,0.02470209,95.01235233],[4.53306812,0.0247038,95.01310992],[4.53306868,0.02470551,95.01386701],[4.53306924,0.02470723,95.01462358],[4.5330698,0.02470894,95.01537963],[4.53307036,0.02471065,95.01613514],[4.53307092,0.02471236,95.01689009],[4.53307148,0.02471408,95.01764447],[4.53307204,0.02471579,95.01839827],[4.5330726,0.0247175,95.01915148],[4.53307316,0.02471922,95.01990408],[4.53307372,0.02472093,95.02065605],[4.53307428,0.02472264,95.02140739],[4.53307484,0.02472435,95.02215807],[4.5330754,0.02472607,95.02290809],[4.53307596,0.02472778,95.02365743],[4.53307652,0.02472949,95.02440608],[4.53307708,0.02473121,95.02515402],[4.53307764,0.02473292,95.02590124],[4.5330782,0.02473463,95.02664773],[4.53307875,0.02473634,95.02739347],[4.53307931,0.02473806,95.02813845],[4.53307987,0.02473977,95.02888266],[4.53308043,0.02474148,95.02962607],[4.53308099,0.0247432,95.03036869],[4.53308154,0.02474491,95.03111048],[4.5330821,0.02474662,95.03185145],[4.53308266,0.02474834,95.03259157],[4.53308322,0.02475005,95.03333084],[4.53308377,0.02475176,95.03406923],[4.53308433,0.02475348,95.03480674],[4.53308489,0.02475519,95.03554334],[4.53308544,0.02475691,95.03627904],[4.533086,0.02475862,95.03701381],[4.53308656,0.02476033,95.03774763],[4.53308711,0.02476205,95.03848051],[4.53308767,0.02476376,95.03921241],[4.53308822,0.02476547,95.03994333],[4.53308878,0.02476719,95.04067326],[4.53308933,0.0247689,95.04140217],[4.53308989,0.02477062,95.04213007],[4.53309044,0.02477233,95.04285692],[4.533091,0.02477405,95.04358273],[4.53309155,0.02477576,95.04430746],[4.53308344,0.02477843,95.01899819]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-5,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-5,"type":"border","predecessorId":-5,"sOffset":403.9617323989}},{"geometry":{"coordinates":[[[4.53309155,0.02477576,95.04430746],[4.533091,0.02477405,95.04358273],[4.53309044,0.02477233,95.04285692],[4.53308989,0.02477062,95.04213007],[4.53308933,0.0247689,95.04140217],[4.53308878,0.02476719,95.04067326],[4.53308822,0.02476547,95.03994333],[4.53308767,0.02476376,95.03921241],[4.53308711,0.02476205,95.03848051],[4.53308656,0.02476033,95.03774763],[4.533086,0.02475862,95.03701381],[4.53308544,0.02475691,95.03627904],[4.53308489,0.02475519,95.03554334],[4.53308433,0.02475348,95.03480674],[4.53308377,0.02475176,95.03406923],[4.53308322,0.02475005,95.03333084],[4.53308266,0.02474834,95.03259157],[4.5330821,0.02474662,95.03185145],[4.53308154,0.02474491,95.03111048],[4.53308099,0.0247432,95.03036869],[4.53308043,0.02474148,95.02962607],[4.53307987,0.02473977,95.02888266],[4.53307931,0.02473806,95.02813845],[4.53307875,0.02473634,95.02739347],[4.5330782,0.02473463,95.02664773],[4.53307764,0.02473292,95.02590124],[4.53307708,0.02473121,95.02515402],[4.53307652,0.02472949,95.02440608],[4.53307596,0.02472778,95.02365743],[4.5330754,0.02472607,95.02290809],[4.53307484,0.02472435,95.02215807],[4.53307428,0.02472264,95.02140739],[4.53307372,0.02472093,95.02065605],[4.53307316,0.02471922,95.01990408],[4.5330726,0.0247175,95.01915148],[4.53307204,0.02471579,95.01839827],[4.53307148,0.02471408,95.01764447],[4.53307092,0.02471236,95.01689009],[4.53307036,0.02471065,95.01613514],[4.5330698,0.02470894,95.01537963],[4.53306924,0.02470723,95.01462358],[4.53306868,0.02470551,95.01386701],[4.53306812,0.0247038,95.01310992],[4.53306756,0.02470209,95.01235233],[4.533067,0.02470038,95.01159426],[4.53306644,0.02469866,95.01083571],[4.53306588,0.02469695,95.01007671],[4.53306532,0.02469524,95.00931727],[4.53306476,0.02469353,95.00855739],[4.5330642,0.02469181,95.00779709],[4.53306364,0.0246901,95.00703637],[4.53306308,0.02468839,95.00627524],[4.53306252,0.02468668,95.0055137],[4.53306196,0.02468497,95.00475176],[4.5330614,0.02468325,95.00398943],[4.53306084,0.02468154,95.0032267],[4.53306028,0.02467983,95.00246359],[4.53305971,0.02467812,95.00170009],[4.53305915,0.0246764,95.00093622],[4.53305859,0.02467469,95.00017199],[4.53305803,0.02467298,94.99940738],[4.53305747,0.02467127,94.99864242],[4.53305691,0.02466955,94.99787711],[4.53305635,0.02466784,94.99711146],[4.53305579,0.02466613,94.99634549],[4.53305523,0.02466442,94.99557919],[4.53305466,0.02466271,94.99481255],[4.5330541,0.02466099,94.99404558],[4.53305354,0.02465928,94.99327829],[4.53305298,0.02465757,94.99251069],[4.53305242,0.02465586,94.9917428],[4.53305186,0.02465414,94.99097463],[4.5330513,0.02465243,94.99020619],[4.53305073,0.02465072,94.98943749],[4.53305017,0.02464901,94.98866854],[4.53304961,0.0246473,94.98789936],[4.53304905,0.02464558,94.98712996],[4.53304849,0.02464387,94.98636035],[4.53304793,0.02464216,94.98559054],[4.53304737,0.02464045,94.98482054],[4.5330468,0.02463873,94.98405037],[4.53304624,0.02463702,94.98328004],[4.53304568,0.02463531,94.98250956],[4.53304512,0.0246336,94.98173895],[4.53304456,0.02463189,94.98096821],[4.533044,0.02463017,94.98019736],[4.53304344,0.02462846,94.9794264],[4.53304288,0.02462675,94.97865536],[4.53304231,0.02462504,94.97788425],[4.53304175,0.02462332,94.97711307],[4.53304119,0.02462161,94.97634184],[4.53304063,0.0246199,94.97557057],[4.53304007,0.02461819,94.97479927],[4.53303951,0.02461648,94.97402796],[4.53303895,0.02461476,94.97325665],[4.53303839,0.02461305,94.97248534],[4.53303783,0.02461134,94.97171406],[4.53303727,0.02460963,94.97094281],[4.53303671,0.02460791,94.97017161],[4.53303614,0.0246062,94.96940047],[4.53303558,0.02460449,94.9686294],[4.53303502,0.02460278,94.96785841],[4.53303446,0.02460106,94.96708752],[4.5330339,0.02459935,94.96631674],[4.53303334,0.02459764,94.96554608],[4.53303278,0.02459593,94.96477555],[4.53303222,0.02459421,94.96400517],[4.53303166,0.0245925,94.96323494],[4.5330311,0.02459079,94.96246488],[4.53303054,0.02458907,94.96169501],[4.53302998,0.02458736,94.96092533],[4.53302942,0.02458565,94.96015586],[4.53302886,0.02458394,94.9593866],[4.5330283,0.02458222,94.95861758],[4.53302775,0.02458051,94.95784881],[4.53302719,0.0245788,94.95708028],[4.53302663,0.02457708,94.95631201],[4.53302607,0.02457537,94.95554397],[4.53302551,0.02457366,94.95477617],[4.53302495,0.02457194,94.95400858],[4.53302439,0.02457023,94.95324121],[4.53302383,0.02456852,94.95247405],[4.53302328,0.02456681,94.95170708],[4.53302272,0.02456509,94.95094031],[4.53302216,0.02456338,94.95017371],[4.5330216,0.02456167,94.94940728],[4.53302104,0.02455995,94.94864101],[4.53302048,0.02455824,94.9478749],[4.53301993,0.02455653,94.94710893],[4.53301937,0.02455481,94.9463431],[4.53301881,0.0245531,94.9455774],[4.53301825,0.02455139,94.94481181],[4.5330177,0.02454967,94.94404634],[4.53301714,0.02454796,94.94328097],[4.53301658,0.02454624,94.94251569],[4.53301602,0.02454453,94.94175049],[4.53301546,0.02454282,94.94098537],[4.53301491,0.0245411,94.94022032],[4.53301435,0.02453939,94.93945533],[4.53301379,0.02453768,94.93869038],[4.53301324,0.02453596,94.93792548],[4.53301268,0.02453425,94.93716061],[4.53301212,0.02453254,94.93639576],[4.53301156,0.02453082,94.93563092],[4.53301101,0.02452911,94.9348661],[4.53301045,0.0245274,94.93410127],[4.53300989,0.02452568,94.93333642],[4.53300933,0.02452397,94.93257156],[4.53300878,0.02452225,94.93180667],[4.53300822,0.02452054,94.93104174],[4.53300766,0.02451883,94.93027676],[4.5330071,0.02451711,94.92951173],[4.53300655,0.0245154,94.92874663],[4.53300599,0.02451369,94.92798146],[4.53300543,0.02451197,94.92721621],[4.53300488,0.02451026,94.92645093],[4.53300432,0.02450855,94.92568566],[4.53300376,0.02450683,94.92492041],[4.5330032,0.02450512,94.92415518],[4.53300265,0.0245034,94.92338996],[4.53300209,0.02450169,94.92262473],[4.53300153,0.02449998,94.92185949],[4.53300097,0.02449826,94.92109422],[4.53300042,0.02449655,94.92032892],[4.53299986,0.02449484,94.91956357],[4.5329993,0.02449312,94.91879816],[4.53299874,0.02449141,94.91803268],[4.53299819,0.0244897,94.91726711],[4.53299763,0.02448798,94.91650143],[4.53299707,0.02448627,94.91573565],[4.53299651,0.02448455,94.91496973],[4.53299596,0.02448284,94.91420368],[4.5329954,0.02448113,94.91343747],[4.53299484,0.02447941,94.9126711],[4.53299428,0.0244777,94.91190454],[4.53299372,0.02447599,94.91113779],[4.53299317,0.02447427,94.91037084],[4.53299261,0.02447256,94.90960366],[4.53299205,0.02447085,94.90883626],[4.53299149,0.02446913,94.9080686],[4.53299093,0.02446742,94.90730069],[4.53299037,0.02446571,94.90653251],[4.53298981,0.02446399,94.90576403],[4.53298926,0.02446228,94.90499526],[4.5329887,0.02446057,94.90422618],[4.53298814,0.02445885,94.90345677],[4.53298758,0.02445714,94.90268702],[4.53298702,0.02445543,94.90191692],[4.53298646,0.02445372,94.90114645],[4.5329859,0.024452,94.9003756],[4.53298534,0.02445029,94.89960438],[4.53298478,0.02444858,94.8988328],[4.53298422,0.02444686,94.89806085],[4.53298366,0.02444515,94.89728854],[4.5329831,0.02444344,94.89651585],[4.53298254,0.02444173,94.89574279],[4.53298198,0.02444001,94.89496936],[4.53298142,0.0244383,94.89419555],[4.53298086,0.02443659,94.89342135],[4.5329803,0.02443488,94.89264678],[4.53297974,0.02443316,94.89187181],[4.53297917,0.02443145,94.89109647],[4.53297861,0.02442974,94.89032073],[4.53297805,0.02442803,94.88954459],[4.53297749,0.02442631,94.88876807],[4.53297693,0.0244246,94.88799114],[4.53297637,0.02442289,94.88721382],[4.5329758,0.02442118,94.88643609],[4.53297524,0.02441947,94.88565797],[4.53297468,0.02441775,94.88487944],[4.53297412,0.02441604,94.88410055],[4.53297355,0.02441433,94.88332131],[4.53297299,0.02441262,94.88254175],[4.53297243,0.02441091,94.88176189],[4.53297186,0.02440919,94.88098175],[4.5329713,0.02440748,94.88020137],[4.53297074,0.02440577,94.87942075],[4.53297017,0.02440406,94.87863994],[4.53296961,0.02440235,94.87785894],[4.53296904,0.02440064,94.87707779],[4.53296848,0.02439893,94.87629651],[4.53296792,0.02439721,94.87551512],[4.53296735,0.0243955,94.87473365],[4.53296679,0.02439379,94.87395212],[4.53296622,0.02439208,94.87317056],[4.53296566,0.02439037,94.87238898],[4.53296509,0.02438866,94.87160742],[4.53296453,0.02438695,94.8708259],[4.53296397,0.02438523,94.87004443],[4.5329634,0.02438352,94.86926305],[4.53296284,0.02438181,94.86848179],[4.53296227,0.0243801,94.86770065],[4.53296171,0.02437839,94.86691967],[4.53296114,0.02437668,94.86613888],[4.53296058,0.02437497,94.86535829],[4.53296001,0.02437325,94.86457793],[4.53295945,0.02437154,94.86379783],[4.53295888,0.02436983,94.86301801],[4.53295832,0.02436812,94.86223849],[4.53295776,0.02436641,94.8614593],[4.53295719,0.0243647,94.86068048],[4.53295663,0.02436299,94.85990205],[4.53295606,0.02436127,94.85912405],[4.5329555,0.02435956,94.85834648],[4.53295493,0.02435785,94.85756934],[4.53295437,0.02435614,94.85679266],[4.53295381,0.02435443,94.85601643],[4.53295324,0.02435272,94.85524068],[4.53295268,0.02435101,94.8544654],[4.53295212,0.02434929,94.85369062],[4.53295155,0.02434758,94.85291633],[4.53295099,0.02434587,94.85214255],[4.53295042,0.02434416,94.8513693],[4.53294986,0.02434245,94.85059657],[4.5329493,0.02434073,94.84982438],[4.53294873,0.02433902,94.84905274],[4.53294817,0.02433731,94.84828166],[4.53294761,0.0243356,94.84751115],[4.53294705,0.02433389,94.84674121],[4.53294648,0.02433218,94.84597187],[4.53294592,0.02433046,94.84520312],[4.53294536,0.02432875,94.84443499],[4.53294479,0.02432704,94.84366746],[4.53294423,0.02432533,94.84290055],[4.53294367,0.02432361,94.84213426],[4.53294311,0.0243219,94.8413686],[4.53294255,0.02432019,94.84060358],[4.53294198,0.02431848,94.83983921],[4.53294142,0.02431677,94.8390755],[4.53294086,0.02431505,94.83831247],[4.5329403,0.02431334,94.83755014],[4.53293974,0.02431163,94.83678851],[4.53293918,0.02430992,94.8360276],[4.53293861,0.0243082,94.83526742],[4.53293805,0.02430649,94.83450798],[4.53293749,0.02430478,94.8337493],[4.53293693,0.02430307,94.8329914],[4.53293637,0.02430135,94.83223428],[4.53293581,0.02429964,94.83147796],[4.53293525,0.02429793,94.83072245],[4.53293469,0.02429622,94.82996776],[4.53293413,0.0242945,94.82921391],[4.53293357,0.02429279,94.82846092],[4.53293301,0.02429108,94.82770879],[4.53293245,0.02428936,94.82695753],[4.53293189,0.02428765,94.82620714],[4.53293133,0.02428594,94.8254576],[4.53293077,0.02428422,94.8247089],[4.53293021,0.02428251,94.82396103],[4.53292966,0.0242808,94.82321397],[4.5329291,0.02427908,94.82246772],[4.53292854,0.02427737,94.82172226],[4.53292798,0.02427566,94.82097757],[4.53292742,0.02427394,94.82023365],[4.53292686,0.02427223,94.81949048],[4.53292631,0.02427052,94.81874805],[4.53292575,0.0242688,94.81800635],[4.53292519,0.02426709,94.81726536],[4.53292463,0.02426537,94.81652508],[4.53292407,0.02426366,94.81578548],[4.53292352,0.02426195,94.81504656],[4.53292296,0.02426023,94.8143083],[4.5329224,0.02425852,94.81357069],[4.53292185,0.02425681,94.81283372],[4.53292129,0.02425509,94.81209738],[4.53292073,0.02425338,94.81136164],[4.53292017,0.02425166,94.81062651],[4.53291962,0.02424995,94.80989197],[4.53291906,0.02424824,94.809158],[4.5329185,0.02424652,94.80842459],[4.53291795,0.02424481,94.80769172],[4.53291739,0.02424309,94.8069594],[4.53291683,0.02424138,94.80622759],[4.53291628,0.02423967,94.8054963],[4.53291572,0.02423795,94.80476551],[4.53291516,0.02423624,94.80403519],[4.53291461,0.02423452,94.80330535],[4.53291405,0.02423281,94.80257597],[4.53291349,0.0242311,94.80184704],[4.53291294,0.02422938,94.80111854],[4.53291238,0.02422767,94.80039045],[4.53291182,0.02422595,94.79966278],[4.53291127,0.02422424,94.7989355],[4.53291071,0.02422252,94.7982086],[4.53291015,0.02422081,94.79748207],[4.5329096,0.0242191,94.79675589],[4.53290904,0.02421738,94.79603006],[4.53290848,0.02421567,94.79530456],[4.53290793,0.02421395,94.79457938],[4.53290737,0.02421224,94.79385449],[4.53290681,0.02421053,94.79312991],[4.53290626,0.02420881,94.79240559],[4.5329057,0.0242071,94.79168155],[4.53290514,0.02420538,94.79095775],[4.53290458,0.02420367,94.7902342],[4.53290403,0.02420196,94.78951087],[4.53290347,0.02420024,94.78878776],[4.53290291,0.02419853,94.78806484],[4.53290236,0.02419681,94.78734212],[4.5329018,0.0241951,94.78661957],[4.53290124,0.02419339,94.78589718],[4.53290068,0.02419167,94.78517494],[4.53290013,0.02418996,94.78445283],[4.5329001,0.02418989,94.78442166],[4.53290187,0.0241893,94.7902222],[4.5329019,0.02418937,94.79025405],[4.53290246,0.02419108,94.79099166],[4.53290302,0.02419279,94.79172945],[4.53290359,0.02419451,94.79246743],[4.53290415,0.02419622,94.7932056],[4.53290471,0.02419793,94.79394395],[4.53290527,0.02419964,94.7946825],[4.53290583,0.02420135,94.79542123],[4.5329064,0.02420307,94.79616016],[4.53290696,0.02420478,94.79689929],[4.53290752,0.02420649,94.79763862],[4.53290808,0.0242082,94.79837814],[4.53290864,0.02420992,94.79911787],[4.53290921,0.02421163,94.7998578],[4.53290977,0.02421334,94.80059794],[4.53291033,0.02421505,94.80133828],[4.53291089,0.02421677,94.80207884],[4.53291145,0.02421848,94.80281961],[4.53291201,0.02422019,94.80356059],[4.53291257,0.0242219,94.80430179],[4.53291314,0.02422362,94.8050432],[4.5329137,0.02422533,94.80578484],[4.53291426,0.02422704,94.8065267],[4.53291482,0.02422875,94.80726878],[4.53291538,0.02423047,94.80801109],[4.53291594,0.02423218,94.80875362],[4.5329165,0.02423389,94.80949639],[4.53291706,0.02423561,94.81023939],[4.53291762,0.02423732,94.81098262],[4.53291818,0.02423903,94.81172609],[4.53291874,0.02424074,94.81246979],[4.5329193,0.02424246,94.81321374],[4.53291987,0.02424417,94.81395792],[4.53292043,0.02424588,94.81470235],[4.53292099,0.02424759,94.81544703],[4.53292155,0.02424931,94.81619196],[4.53292211,0.02425102,94.81693713],[4.53292267,0.02425273,94.81768255],[4.53292323,0.02425445,94.81842823],[4.53292379,0.02425616,94.81917417],[4.53292435,0.02425787,94.81992036],[4.53292491,0.02425959,94.82066681],[4.53292547,0.0242613,94.82141353],[4.53292603,0.02426301,94.8221605],[4.53292659,0.02426472,94.82290774],[4.53292715,0.02426644,94.82365525],[4.53292771,0.02426815,94.82440303],[4.53292827,0.02426986,94.82515108],[4.53292883,0.02427158,94.82589941],[4.53292939,0.02427329,94.826648],[4.53292995,0.024275,94.82739688],[4.53293051,0.02427671,94.82814603],[4.53293107,0.02427843,94.82889547],[4.53293163,0.02428014,94.82964519],[4.53293219,0.02428185,94.83039519],[4.53293275,0.02428357,94.83114548],[4.53293331,0.02428528,94.83189606],[4.53293387,0.02428699,94.83264693],[4.53293443,0.02428871,94.8333981],[4.53293499,0.02429042,94.83414955],[4.53293555,0.02429213,94.83490131],[4.53293611,0.02429384,94.83565336],[4.53293667,0.02429556,94.83640571],[4.53293723,0.02429727,94.83715837],[4.53293779,0.02429898,94.83791133],[4.53293835,0.0243007,94.83866459],[4.53293891,0.02430241,94.83941817],[4.53293947,0.02430412,94.84017205],[4.53294003,0.02430584,94.84092624],[4.53294059,0.02430755,94.84168075],[4.53294115,0.02430926,94.84243558],[4.53294171,0.02431097,94.84319072],[4.53294227,0.02431269,94.84394618],[4.53294283,0.0243144,94.84470196],[4.53294339,0.02431611,94.84545807],[4.53294395,0.02431783,94.8462145],[4.53294451,0.02431954,94.84697126],[4.53294507,0.02432125,94.84772834],[4.53294563,0.02432296,94.84848576],[4.53294619,0.02432468,94.84924351],[4.53294675,0.02432639,94.85000161],[4.53294731,0.0243281,94.85076006],[4.53294787,0.02432982,94.85151887],[4.53294843,0.02433153,94.85227805],[4.53294899,0.02433324,94.85303762],[4.53294955,0.02433496,94.85379758],[4.53295011,0.02433667,94.85455792],[4.53295067,0.02433838,94.85531867],[4.53295123,0.02434009,94.85607981],[4.53295179,0.02434181,94.85684137],[4.53295235,0.02434352,94.85760333],[4.53295291,0.02434523,94.85836571],[4.53295347,0.02434694,94.85912852],[4.53295403,0.02434866,94.85989175],[4.53295459,0.02435037,94.86065542],[4.53295515,0.02435208,94.86141952],[4.53295571,0.0243538,94.86218407],[4.53295627,0.02435551,94.86294906],[4.53295683,0.02435722,94.8637145],[4.53295739,0.02435893,94.86448041],[4.53295795,0.02436065,94.86524678],[4.53295852,0.02436236,94.86601361],[4.53295908,0.02436407,94.86678092],[4.53295964,0.02436578,94.86754869],[4.5329602,0.0243675,94.86831691],[4.53296076,0.02436921,94.86908556],[4.53296132,0.02437092,94.86985463],[4.53296188,0.02437263,94.8706241],[4.53296245,0.02437435,94.87139398],[4.53296301,0.02437606,94.87216423],[4.53296357,0.02437777,94.87293487],[4.53296413,0.02437948,94.87370587],[4.53296469,0.02438119,94.87447724],[4.53296525,0.02438291,94.87524895],[4.53296582,0.02438462,94.87602101],[4.53296638,0.02438633,94.8767934],[4.53296694,0.02438804,94.87756611],[4.5329675,0.02438976,94.87833913],[4.53296807,0.02439147,94.87911245],[4.53296863,0.02439318,94.87988607],[4.53296919,0.02439489,94.88065997],[4.53296975,0.0243966,94.88143415],[4.53297031,0.02439832,94.8822086],[4.53297088,0.02440003,94.8829833],[4.53297144,0.02440174,94.88375825],[4.532972,0.02440345,94.88453344],[4.53297256,0.02440516,94.88530885],[4.53297313,0.02440688,94.88608449],[4.53297369,0.02440859,94.88686033],[4.53297425,0.0244103,94.88763638],[4.53297481,0.02441201,94.88841262],[4.53297538,0.02441372,94.88918904],[4.53297594,0.02441544,94.88996563],[4.5329765,0.02441715,94.89074239],[4.53297706,0.02441886,94.8915193],[4.53297763,0.02442057,94.89229635],[4.53297819,0.02442228,94.89307355],[4.53297875,0.024424,94.89385087],[4.53297931,0.02442571,94.8946283],[4.53297988,0.02442742,94.89540585],[4.53298044,0.02442913,94.89618349],[4.532981,0.02443085,94.89696122],[4.53298156,0.02443256,94.89773904],[4.53298213,0.02443427,94.89851692],[4.53298269,0.02443598,94.89929487],[4.53298325,0.02443769,94.90007287],[4.53298381,0.02443941,94.90085091],[4.53298437,0.02444112,94.90162899],[4.53298494,0.02444283,94.90240709],[4.5329855,0.02444454,94.90318521],[4.53298606,0.02444625,94.90396334],[4.53298662,0.02444797,94.90474146],[4.53298719,0.02444968,94.90551957],[4.53298775,0.02445139,94.90629766],[4.53298831,0.0244531,94.90707571],[4.53298887,0.02445481,94.90785371],[4.53298943,0.02445653,94.90863165],[4.53299,0.02445824,94.90940953],[4.53299056,0.02445995,94.91018735],[4.53299112,0.02446166,94.91096513],[4.53299168,0.02446337,94.91174285],[4.53299224,0.02446509,94.91252053],[4.53299281,0.0244668,94.91329815],[4.53299337,0.02446851,94.91407574],[4.53299393,0.02447022,94.91485328],[4.53299449,0.02447194,94.91563078],[4.53299505,0.02447365,94.91640824],[4.53299562,0.02447536,94.91718566],[4.53299618,0.02447707,94.91796305],[4.53299674,0.02447878,94.9187404],[4.5329973,0.0244805,94.91951772],[4.53299786,0.02448221,94.92029501],[4.53299842,0.02448392,94.92107227],[4.53299899,0.02448563,94.92184951],[4.53299955,0.02448735,94.92262672],[4.53300011,0.02448906,94.9234039],[4.53300067,0.02449077,94.92418107],[4.53300123,0.02449248,94.92495822],[4.53300179,0.02449419,94.92573535],[4.53300235,0.02449591,94.92651246],[4.53300292,0.02449762,94.92728956],[4.53300348,0.02449933,94.92806665],[4.53300404,0.02450104,94.92884373],[4.5330046,0.02450276,94.92962079],[4.53300516,0.02450447,94.93039784],[4.53300572,0.02450618,94.93117488],[4.53300629,0.02450789,94.9319519],[4.53300685,0.02450961,94.93272889],[4.53300741,0.02451132,94.93350585],[4.53300797,0.02451303,94.93428269],[4.53300853,0.02451474,94.93505939],[4.53300909,0.02451645,94.93583592],[4.53300965,0.02451817,94.93661229],[4.53301021,0.02451988,94.93738849],[4.53301078,0.02452159,94.93816453],[4.53301134,0.0245233,94.93894038],[4.5330119,0.02452502,94.93971607],[4.53301246,0.02452673,94.94049158],[4.53301302,0.02452844,94.94126691],[4.53301358,0.02453015,94.94204205],[4.53301414,0.02453187,94.94281702],[4.5330147,0.02453358,94.94359179],[4.53301526,0.02453529,94.94436638],[4.53301582,0.024537,94.94514078],[4.53301639,0.02453872,94.94591498],[4.53301695,0.02454043,94.94668899],[4.53301751,0.02454214,94.9474628],[4.53301807,0.02454385,94.94823641],[4.53301863,0.02454557,94.94900981],[4.53301919,0.02454728,94.94978301],[4.53301975,0.02454899,94.95055601],[4.53302031,0.0245507,94.95132879],[4.53302087,0.02455242,94.95210136],[4.53302143,0.02455413,94.95287372],[4.53302199,0.02455584,94.95364586],[4.53302255,0.02455756,94.95441778],[4.53302311,0.02455927,94.95518948],[4.53302367,0.02456098,94.95596095],[4.53302423,0.02456269,94.9567322],[4.53302479,0.02456441,94.95750322],[4.53302535,0.02456612,94.95827401],[4.53302591,0.02456783,94.95904456],[4.53302647,0.02456954,94.95981488],[4.53302703,0.02457126,94.96058496],[4.53302759,0.02457297,94.9613548],[4.53302815,0.02457468,94.96212439],[4.53302871,0.0245764,94.96289374],[4.53302927,0.02457811,94.96366285],[4.53302983,0.02457982,94.9644317],[4.53303039,0.02458153,94.9652003],[4.53303095,0.02458325,94.96596865],[4.53303151,0.02458496,94.96673673],[4.53303207,0.02458667,94.96750456],[4.53303263,0.02458839,94.96827213],[4.53303319,0.0245901,94.96903943],[4.53303374,0.02459181,94.96980647],[4.5330343,0.02459352,94.97057324],[4.53303486,0.02459524,94.97133973],[4.53303542,0.02459695,94.97210595],[4.53303598,0.02459866,94.9728719],[4.53303654,0.02460038,94.97363756],[4.5330371,0.02460209,94.97440295],[4.53303766,0.0246038,94.97516805],[4.53303822,0.02460552,94.97593287],[4.53303878,0.02460723,94.9766974],[4.53303933,0.02460894,94.97746163],[4.53303989,0.02461065,94.97822558],[4.53304045,0.02461237,94.97898923],[4.53304101,0.02461408,94.97975258],[4.53304157,0.02461579,94.98051563],[4.53304213,0.02461751,94.98127838],[4.53304269,0.02461922,94.98204083],[4.53304325,0.02462093,94.98280297],[4.5330438,0.02462265,94.9835648],[4.53304436,0.02462436,94.98432631],[4.53304492,0.02462607,94.98508752],[4.53304548,0.02462779,94.9858484],[4.53304604,0.0246295,94.98660897],[4.5330466,0.02463121,94.98736922],[4.53304715,0.02463293,94.98812914],[4.53304771,0.02463464,94.98888873],[4.53304827,0.02463635,94.989648],[4.53304883,0.02463807,94.99040694],[4.53304939,0.02463978,94.99116554],[4.53304994,0.02464149,94.99192381],[4.5330505,0.02464321,94.99268174],[4.53305106,0.02464492,94.99343933],[4.53305162,0.02464663,94.99419657],[4.53305217,0.02464835,94.99495347],[4.53305273,0.02465006,94.99571003],[4.53305329,0.02465177,94.99646623],[4.53305385,0.02465349,94.99722208],[4.53305441,0.0246552,94.99797758],[4.53305496,0.02465691,94.99873271],[4.53305552,0.02465863,94.99948749],[4.53305608,0.02466034,95.00024191],[4.53305664,0.02466205,95.00099596],[4.53305719,0.02466377,95.00174965],[4.53305775,0.02466548,95.00250297],[4.53305831,0.0246672,95.00325595],[4.53305886,0.02466891,95.00400859],[4.53305942,0.02467062,95.0047609],[4.53305998,0.02467234,95.00551287],[4.53306054,0.02467405,95.00626451],[4.53306109,0.02467576,95.00701581],[4.53306165,0.02467748,95.00776678],[4.53306221,0.02467919,95.00851743],[4.53306276,0.0246809,95.00926776],[4.53306332,0.02468262,95.01001778],[4.53306388,0.02468433,95.01076748],[4.53306444,0.02468604,95.01151688],[4.53306499,0.02468776,95.01226597],[4.53306555,0.02468947,95.01301477],[4.53306611,0.02469119,95.01376327],[4.53306666,0.0246929,95.01451148],[4.53306722,0.02469461,95.0152594],[4.53306778,0.02469633,95.01600704],[4.53306833,0.02469804,95.0167544],[4.53306889,0.02469975,95.01750146],[4.53306945,0.02470147,95.01824823],[4.53307001,0.02470318,95.01899469],[4.53307056,0.02470489,95.01974086],[4.53307112,0.02470661,95.02048671],[4.53307168,0.02470832,95.02123225],[4.53307223,0.02471004,95.02197747],[4.53307279,0.02471175,95.02272238],[4.53307335,0.02471346,95.02346695],[4.5330739,0.02471518,95.0242112],[4.53307446,0.02471689,95.02495512],[4.53307502,0.0247186,95.02569869],[4.53307557,0.02472032,95.02644193],[4.53307613,0.02472203,95.02718481],[4.53307669,0.02472374,95.02792735],[4.53307724,0.02472546,95.02866953],[4.5330778,0.02472717,95.02941135],[4.53307836,0.02472889,95.03015281],[4.53307892,0.0247306,95.0308939],[4.53307947,0.02473231,95.03163462],[4.53308003,0.02473403,95.03237497],[4.53308059,0.02473574,95.03311493],[4.53308114,0.02473745,95.03385451],[4.5330817,0.02473917,95.0345937],[4.53308226,0.02474088,95.0353325],[4.53308281,0.0247426,95.0360709],[4.53308337,0.02474431,95.0368089],[4.53308393,0.02474602,95.03754649],[4.53308448,0.02474774,95.03828367],[4.53308504,0.02474945,95.03902044],[4.5330856,0.02475116,95.03975679],[4.53308615,0.02475288,95.04049272],[4.53308671,0.02475459,95.04122823],[4.53308726,0.02475631,95.0419633],[4.53308782,0.02475802,95.04269794],[4.53308838,0.02475973,95.04343213],[4.53308893,0.02476145,95.04416589],[4.53308949,0.02476316,95.04489919],[4.53309005,0.02476487,95.04563205],[4.5330906,0.02476659,95.04636445],[4.53309116,0.0247683,95.04709639],[4.53309172,0.02477002,95.04782786],[4.53309227,0.02477173,95.04855887],[4.53309283,0.02477344,95.0492894],[4.53309339,0.02477516,95.05001946],[4.53309155,0.02477576,95.04430746]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-4,"type":"shoulder","predecessorId":-4,"sOffset":403.9617323989}},{"geometry":{"coordinates":[[[4.53309339,0.02477516,95.05001946],[4.53309283,0.02477344,95.0492894],[4.53309227,0.02477173,95.04855887],[4.53309172,0.02477002,95.04782786],[4.53309116,0.0247683,95.04709639],[4.5330906,0.02476659,95.04636445],[4.53309005,0.02476487,95.04563205],[4.53308949,0.02476316,95.04489919],[4.53308893,0.02476145,95.04416589],[4.53308838,0.02475973,95.04343213],[4.53308782,0.02475802,95.04269794],[4.53308726,0.02475631,95.0419633],[4.53308671,0.02475459,95.04122823],[4.53308615,0.02475288,95.04049272],[4.5330856,0.02475116,95.03975679],[4.53308504,0.02474945,95.03902044],[4.53308448,0.02474774,95.03828367],[4.53308393,0.02474602,95.03754649],[4.53308337,0.02474431,95.0368089],[4.53308281,0.0247426,95.0360709],[4.53308226,0.02474088,95.0353325],[4.5330817,0.02473917,95.0345937],[4.53308114,0.02473745,95.03385451],[4.53308059,0.02473574,95.03311493],[4.53308003,0.02473403,95.03237497],[4.53307947,0.02473231,95.03163462],[4.53307892,0.0247306,95.0308939],[4.53307836,0.02472889,95.03015281],[4.5330778,0.02472717,95.02941135],[4.53307724,0.02472546,95.02866953],[4.53307669,0.02472374,95.02792735],[4.53307613,0.02472203,95.02718481],[4.53307557,0.02472032,95.02644193],[4.53307502,0.0247186,95.02569869],[4.53307446,0.02471689,95.02495512],[4.5330739,0.02471518,95.0242112],[4.53307335,0.02471346,95.02346695],[4.53307279,0.02471175,95.02272238],[4.53307223,0.02471004,95.02197747],[4.53307168,0.02470832,95.02123225],[4.53307112,0.02470661,95.02048671],[4.53307056,0.02470489,95.01974086],[4.53307001,0.02470318,95.01899469],[4.53306945,0.02470147,95.01824823],[4.53306889,0.02469975,95.01750146],[4.53306833,0.02469804,95.0167544],[4.53306778,0.02469633,95.01600704],[4.53306722,0.02469461,95.0152594],[4.53306666,0.0246929,95.01451148],[4.53306611,0.02469119,95.01376327],[4.53306555,0.02468947,95.01301477],[4.53306499,0.02468776,95.01226597],[4.53306444,0.02468604,95.01151688],[4.53306388,0.02468433,95.01076748],[4.53306332,0.02468262,95.01001778],[4.53306276,0.0246809,95.00926776],[4.53306221,0.02467919,95.00851743],[4.53306165,0.02467748,95.00776678],[4.53306109,0.02467576,95.00701581],[4.53306054,0.02467405,95.00626451],[4.53305998,0.02467234,95.00551287],[4.53305942,0.02467062,95.0047609],[4.53305886,0.02466891,95.00400859],[4.53305831,0.0246672,95.00325595],[4.53305775,0.02466548,95.00250297],[4.53305719,0.02466377,95.00174965],[4.53305664,0.02466205,95.00099596],[4.53305608,0.02466034,95.00024191],[4.53305552,0.02465863,94.99948749],[4.53305496,0.02465691,94.99873271],[4.53305441,0.0246552,94.99797758],[4.53305385,0.02465349,94.99722208],[4.53305329,0.02465177,94.99646623],[4.53305273,0.02465006,94.99571003],[4.53305217,0.02464835,94.99495347],[4.53305162,0.02464663,94.99419657],[4.53305106,0.02464492,94.99343933],[4.5330505,0.02464321,94.99268174],[4.53304994,0.02464149,94.99192381],[4.53304939,0.02463978,94.99116554],[4.53304883,0.02463807,94.99040694],[4.53304827,0.02463635,94.989648],[4.53304771,0.02463464,94.98888873],[4.53304715,0.02463293,94.98812914],[4.5330466,0.02463121,94.98736922],[4.53304604,0.0246295,94.98660897],[4.53304548,0.02462779,94.9858484],[4.53304492,0.02462607,94.98508752],[4.53304436,0.02462436,94.98432631],[4.5330438,0.02462265,94.9835648],[4.53304325,0.02462093,94.98280297],[4.53304269,0.02461922,94.98204083],[4.53304213,0.02461751,94.98127838],[4.53304157,0.02461579,94.98051563],[4.53304101,0.02461408,94.97975258],[4.53304045,0.02461237,94.97898923],[4.53303989,0.02461065,94.97822558],[4.53303933,0.02460894,94.97746163],[4.53303878,0.02460723,94.9766974],[4.53303822,0.02460552,94.97593287],[4.53303766,0.0246038,94.97516805],[4.5330371,0.02460209,94.97440295],[4.53303654,0.02460038,94.97363756],[4.53303598,0.02459866,94.9728719],[4.53303542,0.02459695,94.97210595],[4.53303486,0.02459524,94.97133973],[4.5330343,0.02459352,94.97057324],[4.53303374,0.02459181,94.96980647],[4.53303319,0.0245901,94.96903943],[4.53303263,0.02458839,94.96827213],[4.53303207,0.02458667,94.96750456],[4.53303151,0.02458496,94.96673673],[4.53303095,0.02458325,94.96596865],[4.53303039,0.02458153,94.9652003],[4.53302983,0.02457982,94.9644317],[4.53302927,0.02457811,94.96366285],[4.53302871,0.0245764,94.96289374],[4.53302815,0.02457468,94.96212439],[4.53302759,0.02457297,94.9613548],[4.53302703,0.02457126,94.96058496],[4.53302647,0.02456954,94.95981488],[4.53302591,0.02456783,94.95904456],[4.53302535,0.02456612,94.95827401],[4.53302479,0.02456441,94.95750322],[4.53302423,0.02456269,94.9567322],[4.53302367,0.02456098,94.95596095],[4.53302311,0.02455927,94.95518948],[4.53302255,0.02455756,94.95441778],[4.53302199,0.02455584,94.95364586],[4.53302143,0.02455413,94.95287372],[4.53302087,0.02455242,94.95210136],[4.53302031,0.0245507,94.95132879],[4.53301975,0.02454899,94.95055601],[4.53301919,0.02454728,94.94978301],[4.53301863,0.02454557,94.94900981],[4.53301807,0.02454385,94.94823641],[4.53301751,0.02454214,94.9474628],[4.53301695,0.02454043,94.94668899],[4.53301639,0.02453872,94.94591498],[4.53301582,0.024537,94.94514078],[4.53301526,0.02453529,94.94436638],[4.5330147,0.02453358,94.94359179],[4.53301414,0.02453187,94.94281702],[4.53301358,0.02453015,94.94204205],[4.53301302,0.02452844,94.94126691],[4.53301246,0.02452673,94.94049158],[4.5330119,0.02452502,94.93971607],[4.53301134,0.0245233,94.93894038],[4.53301078,0.02452159,94.93816453],[4.53301021,0.02451988,94.93738849],[4.53300965,0.02451817,94.93661229],[4.53300909,0.02451645,94.93583592],[4.53300853,0.02451474,94.93505939],[4.53300797,0.02451303,94.93428269],[4.53300741,0.02451132,94.93350585],[4.53300685,0.02450961,94.93272889],[4.53300629,0.02450789,94.9319519],[4.53300572,0.02450618,94.93117488],[4.53300516,0.02450447,94.93039784],[4.5330046,0.02450276,94.92962079],[4.53300404,0.02450104,94.92884373],[4.53300348,0.02449933,94.92806665],[4.53300292,0.02449762,94.92728956],[4.53300235,0.02449591,94.92651246],[4.53300179,0.02449419,94.92573535],[4.53300123,0.02449248,94.92495822],[4.53300067,0.02449077,94.92418107],[4.53300011,0.02448906,94.9234039],[4.53299955,0.02448735,94.92262672],[4.53299899,0.02448563,94.92184951],[4.53299842,0.02448392,94.92107227],[4.53299786,0.02448221,94.92029501],[4.5329973,0.0244805,94.91951772],[4.53299674,0.02447878,94.9187404],[4.53299618,0.02447707,94.91796305],[4.53299562,0.02447536,94.91718566],[4.53299505,0.02447365,94.91640824],[4.53299449,0.02447194,94.91563078],[4.53299393,0.02447022,94.91485328],[4.53299337,0.02446851,94.91407574],[4.53299281,0.0244668,94.91329815],[4.53299224,0.02446509,94.91252053],[4.53299168,0.02446337,94.91174285],[4.53299112,0.02446166,94.91096513],[4.53299056,0.02445995,94.91018735],[4.53299,0.02445824,94.90940953],[4.53298943,0.02445653,94.90863165],[4.53298887,0.02445481,94.90785371],[4.53298831,0.0244531,94.90707571],[4.53298775,0.02445139,94.90629766],[4.53298719,0.02444968,94.90551957],[4.53298662,0.02444797,94.90474146],[4.53298606,0.02444625,94.90396334],[4.5329855,0.02444454,94.90318521],[4.53298494,0.02444283,94.90240709],[4.53298437,0.02444112,94.90162899],[4.53298381,0.02443941,94.90085091],[4.53298325,0.02443769,94.90007287],[4.53298269,0.02443598,94.89929487],[4.53298213,0.02443427,94.89851692],[4.53298156,0.02443256,94.89773904],[4.532981,0.02443085,94.89696122],[4.53298044,0.02442913,94.89618349],[4.53297988,0.02442742,94.89540585],[4.53297931,0.02442571,94.8946283],[4.53297875,0.024424,94.89385087],[4.53297819,0.02442228,94.89307355],[4.53297763,0.02442057,94.89229635],[4.53297706,0.02441886,94.8915193],[4.5329765,0.02441715,94.89074239],[4.53297594,0.02441544,94.88996563],[4.53297538,0.02441372,94.88918904],[4.53297481,0.02441201,94.88841262],[4.53297425,0.0244103,94.88763638],[4.53297369,0.02440859,94.88686033],[4.53297313,0.02440688,94.88608449],[4.53297256,0.02440516,94.88530885],[4.532972,0.02440345,94.88453344],[4.53297144,0.02440174,94.88375825],[4.53297088,0.02440003,94.8829833],[4.53297031,0.02439832,94.8822086],[4.53296975,0.0243966,94.88143415],[4.53296919,0.02439489,94.88065997],[4.53296863,0.02439318,94.87988607],[4.53296807,0.02439147,94.87911245],[4.5329675,0.02438976,94.87833913],[4.53296694,0.02438804,94.87756611],[4.53296638,0.02438633,94.8767934],[4.53296582,0.02438462,94.87602101],[4.53296525,0.02438291,94.87524895],[4.53296469,0.02438119,94.87447724],[4.53296413,0.02437948,94.87370587],[4.53296357,0.02437777,94.87293487],[4.53296301,0.02437606,94.87216423],[4.53296245,0.02437435,94.87139398],[4.53296188,0.02437263,94.8706241],[4.53296132,0.02437092,94.86985463],[4.53296076,0.02436921,94.86908556],[4.5329602,0.0243675,94.86831691],[4.53295964,0.02436578,94.86754869],[4.53295908,0.02436407,94.86678092],[4.53295852,0.02436236,94.86601361],[4.53295795,0.02436065,94.86524678],[4.53295739,0.02435893,94.86448041],[4.53295683,0.02435722,94.8637145],[4.53295627,0.02435551,94.86294906],[4.53295571,0.0243538,94.86218407],[4.53295515,0.02435208,94.86141952],[4.53295459,0.02435037,94.86065542],[4.53295403,0.02434866,94.85989175],[4.53295347,0.02434694,94.85912852],[4.53295291,0.02434523,94.85836571],[4.53295235,0.02434352,94.85760333],[4.53295179,0.02434181,94.85684137],[4.53295123,0.02434009,94.85607981],[4.53295067,0.02433838,94.85531867],[4.53295011,0.02433667,94.85455792],[4.53294955,0.02433496,94.85379758],[4.53294899,0.02433324,94.85303762],[4.53294843,0.02433153,94.85227805],[4.53294787,0.02432982,94.85151887],[4.53294731,0.0243281,94.85076006],[4.53294675,0.02432639,94.85000161],[4.53294619,0.02432468,94.84924351],[4.53294563,0.02432296,94.84848576],[4.53294507,0.02432125,94.84772834],[4.53294451,0.02431954,94.84697126],[4.53294395,0.02431783,94.8462145],[4.53294339,0.02431611,94.84545807],[4.53294283,0.0243144,94.84470196],[4.53294227,0.02431269,94.84394618],[4.53294171,0.02431097,94.84319072],[4.53294115,0.02430926,94.84243558],[4.53294059,0.02430755,94.84168075],[4.53294003,0.02430584,94.84092624],[4.53293947,0.02430412,94.84017205],[4.53293891,0.02430241,94.83941817],[4.53293835,0.0243007,94.83866459],[4.53293779,0.02429898,94.83791133],[4.53293723,0.02429727,94.83715837],[4.53293667,0.02429556,94.83640571],[4.53293611,0.02429384,94.83565336],[4.53293555,0.02429213,94.83490131],[4.53293499,0.02429042,94.83414955],[4.53293443,0.02428871,94.8333981],[4.53293387,0.02428699,94.83264693],[4.53293331,0.02428528,94.83189606],[4.53293275,0.02428357,94.83114548],[4.53293219,0.02428185,94.83039519],[4.53293163,0.02428014,94.82964519],[4.53293107,0.02427843,94.82889547],[4.53293051,0.02427671,94.82814603],[4.53292995,0.024275,94.82739688],[4.53292939,0.02427329,94.826648],[4.53292883,0.02427158,94.82589941],[4.53292827,0.02426986,94.82515108],[4.53292771,0.02426815,94.82440303],[4.53292715,0.02426644,94.82365525],[4.53292659,0.02426472,94.82290774],[4.53292603,0.02426301,94.8221605],[4.53292547,0.0242613,94.82141353],[4.53292491,0.02425959,94.82066681],[4.53292435,0.02425787,94.81992036],[4.53292379,0.02425616,94.81917417],[4.53292323,0.02425445,94.81842823],[4.53292267,0.02425273,94.81768255],[4.53292211,0.02425102,94.81693713],[4.53292155,0.02424931,94.81619196],[4.53292099,0.02424759,94.81544703],[4.53292043,0.02424588,94.81470235],[4.53291987,0.02424417,94.81395792],[4.5329193,0.02424246,94.81321374],[4.53291874,0.02424074,94.81246979],[4.53291818,0.02423903,94.81172609],[4.53291762,0.02423732,94.81098262],[4.53291706,0.02423561,94.81023939],[4.5329165,0.02423389,94.80949639],[4.53291594,0.02423218,94.80875362],[4.53291538,0.02423047,94.80801109],[4.53291482,0.02422875,94.80726878],[4.53291426,0.02422704,94.8065267],[4.5329137,0.02422533,94.80578484],[4.53291314,0.02422362,94.8050432],[4.53291257,0.0242219,94.80430179],[4.53291201,0.02422019,94.80356059],[4.53291145,0.02421848,94.80281961],[4.53291089,0.02421677,94.80207884],[4.53291033,0.02421505,94.80133828],[4.53290977,0.02421334,94.80059794],[4.53290921,0.02421163,94.7998578],[4.53290864,0.02420992,94.79911787],[4.53290808,0.0242082,94.79837814],[4.53290752,0.02420649,94.79763862],[4.53290696,0.02420478,94.79689929],[4.5329064,0.02420307,94.79616016],[4.53290583,0.02420135,94.79542123],[4.53290527,0.02419964,94.7946825],[4.53290471,0.02419793,94.79394395],[4.53290415,0.02419622,94.7932056],[4.53290359,0.02419451,94.79246743],[4.53290302,0.02419279,94.79172945],[4.53290246,0.02419108,94.79099166],[4.5329019,0.02418937,94.79025405],[4.53290187,0.0241893,94.7902222],[4.532931,0.0241796,94.88554455],[4.53293102,0.02417967,94.88557672],[4.53293159,0.02418138,94.88632147],[4.53293215,0.02418309,94.88706617],[4.53293272,0.02418481,94.8878108],[4.53293328,0.02418652,94.88855537],[4.53293385,0.02418823,94.88929987],[4.53293442,0.02418994,94.89004431],[4.53293498,0.02419165,94.89078869],[4.53293555,0.02419336,94.89153301],[4.53293611,0.02419507,94.89227727],[4.53293668,0.02419679,94.89302147],[4.53293724,0.0241985,94.8937656],[4.53293781,0.02420021,94.89450968],[4.53293837,0.02420192,94.8952537],[4.53293894,0.02420363,94.89599766],[4.5329395,0.02420534,94.89674156],[4.53294006,0.02420706,94.8974854],[4.53294063,0.02420877,94.89822919],[4.53294119,0.02421048,94.89897292],[4.53294176,0.02421219,94.89971659],[4.53294232,0.0242139,94.90046021],[4.53294289,0.02421561,94.90120377],[4.53294345,0.02421733,94.90194727],[4.53294401,0.02421904,94.90269072],[4.53294458,0.02422075,94.90343412],[4.53294514,0.02422246,94.90417747],[4.5329457,0.02422417,94.90492076],[4.53294627,0.02422589,94.90566399],[4.53294683,0.0242276,94.90640718],[4.53294739,0.02422931,94.90715031],[4.53294796,0.02423102,94.90789339],[4.53294852,0.02423274,94.90863642],[4.53294908,0.02423445,94.90937941],[4.53294965,0.02423616,94.91012234],[4.53295021,0.02423787,94.91086522],[4.53295077,0.02423958,94.91160805],[4.53295133,0.0242413,94.91235084],[4.5329519,0.02424301,94.91309357],[4.53295246,0.02424472,94.91383626],[4.53295302,0.02424643,94.91457891],[4.53295358,0.02424815,94.9153215],[4.53295415,0.02424986,94.91606405],[4.53295471,0.02425157,94.91680656],[4.53295527,0.02425328,94.91754902],[4.53295583,0.024255,94.91829144],[4.53295639,0.02425671,94.91903381],[4.53295695,0.02425842,94.91977614],[4.53295752,0.02426014,94.92051842],[4.53295808,0.02426185,94.92126067],[4.53295864,0.02426356,94.92200287],[4.5329592,0.02426527,94.92274503],[4.53295976,0.02426699,94.92348715],[4.53296032,0.0242687,94.92422923],[4.53296088,0.02427041,94.92497127],[4.53296145,0.02427212,94.92571328],[4.53296201,0.02427384,94.92645524],[4.53296257,0.02427555,94.92719716],[4.53296313,0.02427726,94.92793905],[4.53296369,0.02427898,94.9286809],[4.53296425,0.02428069,94.92942271],[4.53296481,0.0242824,94.93016449],[4.53296537,0.02428412,94.93090623],[4.53296593,0.02428583,94.93164794],[4.53296649,0.02428754,94.93238961],[4.53296705,0.02428925,94.93313125],[4.53296761,0.02429097,94.93387286],[4.53296817,0.02429268,94.93461443],[4.53296873,0.02429439,94.93535597],[4.53296929,0.02429611,94.93609747],[4.53296985,0.02429782,94.93683895],[4.53297041,0.02429953,94.93758039],[4.53297097,0.02430125,94.93832181],[4.53297153,0.02430296,94.93906319],[4.53297209,0.02430467,94.93980455],[4.53297265,0.02430639,94.94054587],[4.53297321,0.0243081,94.94128717],[4.53297377,0.02430981,94.94202844],[4.53297433,0.02431153,94.94276969],[4.53297489,0.02431324,94.9435109],[4.53297545,0.02431495,94.94425209],[4.53297601,0.02431667,94.94499327],[4.53297657,0.02431838,94.94573443],[4.53297712,0.02432009,94.9464756],[4.53297768,0.02432181,94.94721678],[4.53297824,0.02432352,94.94795797],[4.5329788,0.02432523,94.94869918],[4.53297936,0.02432695,94.94944042],[4.53297992,0.02432866,94.95018169],[4.53298048,0.02433038,94.95092298],[4.53298104,0.02433209,94.95166431],[4.5329816,0.0243338,94.95240568],[4.53298215,0.02433552,94.95314709],[4.53298271,0.02433723,94.95388855],[4.53298327,0.02433894,94.95463006],[4.53298383,0.02434066,94.95537162],[4.53298439,0.02434237,94.95611324],[4.53298495,0.02434408,94.95685492],[4.53298551,0.0243458,94.95759666],[4.53298606,0.02434751,94.95833848],[4.53298662,0.02434923,94.95908036],[4.53298718,0.02435094,94.95982233],[4.53298774,0.02435265,94.96056437],[4.5329883,0.02435437,94.9613065],[4.53298886,0.02435608,94.96204871],[4.53298941,0.02435779,94.96279102],[4.53298997,0.02435951,94.96353342],[4.53299053,0.02436122,94.96427592],[4.53299109,0.02436293,94.96501854],[4.53299165,0.02436465,94.96576129],[4.53299221,0.02436636,94.96650418],[4.53299276,0.02436808,94.96724722],[4.53299332,0.02436979,94.96799043],[4.53299388,0.0243715,94.96873382],[4.53299444,0.02437322,94.9694774],[4.532995,0.02437493,94.97022118],[4.53299556,0.02437664,94.97096519],[4.53299611,0.02437836,94.97170942],[4.53299667,0.02438007,94.97245389],[4.53299723,0.02438179,94.97319862],[4.53299779,0.0243835,94.97394361],[4.53299835,0.02438521,94.97468888],[4.53299891,0.02438693,94.97543445],[4.53299947,0.02438864,94.97618032],[4.53300002,0.02439035,94.97692651],[4.53300058,0.02439207,94.97767302],[4.53300114,0.02439378,94.97841988],[4.5330017,0.02439549,94.9791671],[4.53300226,0.02439721,94.97991468],[4.53300282,0.02439892,94.98066264],[4.53300338,0.02440063,94.98141099],[4.53300394,0.02440235,94.98215974],[4.5330045,0.02440406,94.98290892],[4.53300506,0.02440577,94.98365852],[4.53300562,0.02440749,94.98440856],[4.53300618,0.0244092,94.98515906],[4.53300674,0.02441091,94.98591002],[4.5330073,0.02441263,94.98666146],[4.53300786,0.02441434,94.9874134],[4.53300842,0.02441605,94.98816583],[4.53300898,0.02441777,94.98891878],[4.53300954,0.02441948,94.98967226],[4.5330101,0.02442119,94.99042628],[4.53301066,0.0244229,94.99118085],[4.53301122,0.02442462,94.99193599],[4.53301178,0.02442633,94.9926917],[4.53301234,0.02442804,94.993448],[4.5330129,0.02442976,94.9942049],[4.53301346,0.02443147,94.99496242],[4.53301403,0.02443318,94.99572056],[4.53301459,0.02443489,94.99647934],[4.53301515,0.02443661,94.99723877],[4.53301571,0.02443832,94.99799887],[4.53301627,0.02444003,94.99875964],[4.53301684,0.02444174,94.99952109],[4.5330174,0.02444346,95.00028324],[4.53301796,0.02444517,95.00104604],[4.53301853,0.02444688,95.00180946],[4.53301909,0.02444859,95.00257346],[4.53301965,0.0244503,95.00333799],[4.53302022,0.02445202,95.00410302],[4.53302078,0.02445373,95.00486851],[4.53302134,0.02445544,95.00563442],[4.53302191,0.02445715,95.00640069],[4.53302247,0.02445886,95.00716731],[4.53302304,0.02446057,95.00793422],[4.5330236,0.02446229,95.00870138],[4.53302416,0.024464,95.00946876],[4.53302473,0.02446571,95.01023631],[4.53302529,0.02446742,95.011004],[4.53302586,0.02446913,95.01177178],[4.53302642,0.02447084,95.01253961],[4.53302699,0.02447256,95.01330746],[4.53302755,0.02447427,95.01407528],[4.53302811,0.02447598,95.01484304],[4.53302868,0.02447769,95.01561069],[4.53302924,0.0244794,95.01637819],[4.53302981,0.02448111,95.01714551],[4.53303037,0.02448283,95.01791261],[4.53303093,0.02448454,95.01867943],[4.5330315,0.02448625,95.01944595],[4.53303206,0.02448796,95.02021213],[4.53303263,0.02448967,95.02097792],[4.53303319,0.02449139,95.02174328],[4.53303375,0.0244931,95.02250818],[4.53303432,0.02449481,95.02327256],[4.53303488,0.02449652,95.02403639],[4.53303544,0.02449823,95.02479962],[4.533036,0.02449995,95.02556222],[4.53303657,0.02450166,95.02632413],[4.53303713,0.02450337,95.02708532],[4.53303769,0.02450508,95.02784575],[4.53303825,0.0245068,95.02860542],[4.53303881,0.02450851,95.02936436],[4.53303937,0.02451022,95.03012256],[4.53303993,0.02451193,95.03088005],[4.5330405,0.02451365,95.03163683],[4.53304106,0.02451536,95.03239292],[4.53304162,0.02451707,95.03314833],[4.53304218,0.02451879,95.03390306],[4.53304274,0.0245205,95.03465715],[4.5330433,0.02452221,95.03541058],[4.53304385,0.02452393,95.03616339],[4.53304441,0.02452564,95.03691557],[4.53304497,0.02452735,95.03766715],[4.53304553,0.02452907,95.03841812],[4.53304609,0.02453078,95.03916852],[4.53304665,0.02453249,95.03991834],[4.53304721,0.02453421,95.0406676],[4.53304777,0.02453592,95.04141632],[4.53304832,0.02453763,95.04216449],[4.53304888,0.02453935,95.04291215],[4.53304944,0.02454106,95.04365929],[4.53305,0.02454278,95.04440593],[4.53305055,0.02454449,95.04515208],[4.53305111,0.0245462,95.04589776],[4.53305167,0.02454792,95.04664297],[4.53305223,0.02454963,95.04738773],[4.53305278,0.02455135,95.04813205],[4.53305334,0.02455306,95.04887594],[4.5330539,0.02455477,95.04961941],[4.53305445,0.02455649,95.05036248],[4.53305501,0.0245582,95.05110516],[4.53305556,0.02455992,95.05184745],[4.53305612,0.02456163,95.05258938],[4.53305668,0.02456335,95.05333095],[4.53305723,0.02456506,95.05407217],[4.53305779,0.02456677,95.05481306],[4.53305834,0.02456849,95.05555363],[4.5330589,0.0245702,95.05629388],[4.53305945,0.02457192,95.05703384],[4.53306001,0.02457363,95.05777351],[4.53306057,0.02457535,95.05851291],[4.53306112,0.02457706,95.05925204],[4.53306168,0.02457878,95.05999093],[4.53306223,0.02458049,95.06072957],[4.53306279,0.02458221,95.06146799],[4.53306334,0.02458392,95.06220618],[4.5330639,0.02458563,95.06294418],[4.53306445,0.02458735,95.06368198],[4.53306501,0.02458906,95.0644196],[4.53306556,0.02459078,95.06515706],[4.53306612,0.02459249,95.06589435],[4.53306667,0.02459421,95.0666315],[4.53306723,0.02459592,95.06736851],[4.53306778,0.02459764,95.0681054],[4.53306834,0.02459935,95.06884218],[4.53306889,0.02460107,95.06957886],[4.53306945,0.02460278,95.07031546],[4.53307,0.0246045,95.07105197],[4.53307056,0.02460621,95.07178843],[4.53307111,0.02460793,95.07252483],[4.53307166,0.02460964,95.07326118],[4.53307222,0.02461136,95.07399751],[4.53307277,0.02461307,95.07473382],[4.53307333,0.02461479,95.07547013],[4.53307388,0.0246165,95.07620643],[4.53307444,0.02461821,95.07694276],[4.53307499,0.02461993,95.07767911],[4.53307555,0.02462164,95.0784155],[4.5330761,0.02462336,95.07915194],[4.53307666,0.02462507,95.07988845],[4.53307721,0.02462679,95.08062503],[4.53307777,0.0246285,95.08136169],[4.53307832,0.02463022,95.08209845],[4.53307888,0.02463193,95.08283532],[4.53307944,0.02463365,95.08357231],[4.53307999,0.02463536,95.08430943],[4.53308055,0.02463708,95.0850467],[4.5330811,0.02463879,95.08578412],[4.53308166,0.0246405,95.0865217],[4.53308221,0.02464222,95.08725946],[4.53308277,0.02464393,95.08799741],[4.53308332,0.02464565,95.08873556],[4.53308388,0.02464736,95.08947393],[4.53308444,0.02464908,95.09021251],[4.53308499,0.02465079,95.09095133],[4.53308555,0.0246525,95.0916904],[4.53308611,0.02465422,95.09242972],[4.53308666,0.02465593,95.09316931],[4.53308722,0.02465765,95.09390918],[4.53308778,0.02465936,95.09464933],[4.53308833,0.02466107,95.09538974],[4.53308889,0.02466279,95.09613039],[4.53308945,0.0246645,95.09687127],[4.53309001,0.02466622,95.09761237],[4.53309056,0.02466793,95.09835368],[4.53309112,0.02466964,95.09909519],[4.53309168,0.02467136,95.09983688],[4.53309224,0.02467307,95.10057876],[4.53309279,0.02467479,95.10132081],[4.53309335,0.0246765,95.10206302],[4.53309391,0.02467821,95.10280538],[4.53309447,0.02467993,95.10354788],[4.53309503,0.02468164,95.10429051],[4.53309558,0.02468335,95.10503326],[4.53309614,0.02468507,95.10577612],[4.5330967,0.02468678,95.10651907],[4.53309726,0.02468849,95.10726211],[4.53309782,0.02469021,95.10800521],[4.53309838,0.02469192,95.10874835],[4.53309894,0.02469363,95.10949152],[4.53309949,0.02469535,95.1102347],[4.53310005,0.02469706,95.11097786],[4.53310061,0.02469877,95.111721],[4.53310117,0.02470049,95.11246409],[4.53310173,0.0247022,95.11320711],[4.53310229,0.02470391,95.11395005],[4.53310285,0.02470563,95.11469288],[4.53310341,0.02470734,95.11543559],[4.53310397,0.02470905,95.11617817],[4.53310452,0.02471077,95.11692059],[4.53310508,0.02471248,95.11766283],[4.53310564,0.02471419,95.11840487],[4.5331062,0.02471591,95.11914671],[4.53310676,0.02471762,95.11988831],[4.53310732,0.02471933,95.12062967],[4.53310788,0.02472105,95.12137076],[4.53310844,0.02472276,95.12211156],[4.533109,0.02472447,95.12285206],[4.53310956,0.02472619,95.12359224],[4.53311011,0.0247279,95.12433208],[4.53311067,0.02472961,95.12507156],[4.53311123,0.02473133,95.12581067],[4.53311179,0.02473304,95.12654938],[4.53311235,0.02473475,95.12728767],[4.53311291,0.02473647,95.12802554],[4.53311346,0.02473818,95.12876296],[4.53311402,0.0247399,95.12949991],[4.53311458,0.02474161,95.13023638],[4.53311514,0.02474332,95.13097234],[4.5331157,0.02474504,95.13170778],[4.53311625,0.02474675,95.13244268],[4.53311681,0.02474846,95.13317702],[4.53311737,0.02475018,95.13391079],[4.53311793,0.02475189,95.13464396],[4.53311848,0.02475361,95.13537652],[4.53311904,0.02475532,95.13610845],[4.5331196,0.02475703,95.13683972],[4.53312016,0.02475875,95.13757034],[4.53312071,0.02476046,95.13830026],[4.53312127,0.02476218,95.13902948],[4.53312183,0.02476389,95.13975798],[4.53312238,0.0247656,95.14048575],[4.53309339,0.02477516,95.05001946]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3,"sOffset":403.9617323989}},{"geometry":{"coordinates":[[[4.53312238,0.0247656,95.14048575],[4.53312183,0.02476389,95.13975798],[4.53312127,0.02476218,95.13902948],[4.53312071,0.02476046,95.13830026],[4.53312016,0.02475875,95.13757034],[4.5331196,0.02475703,95.13683972],[4.53311904,0.02475532,95.13610845],[4.53311848,0.02475361,95.13537652],[4.53311793,0.02475189,95.13464396],[4.53311737,0.02475018,95.13391079],[4.53311681,0.02474846,95.13317702],[4.53311625,0.02474675,95.13244268],[4.5331157,0.02474504,95.13170778],[4.53311514,0.02474332,95.13097234],[4.53311458,0.02474161,95.13023638],[4.53311402,0.0247399,95.12949991],[4.53311346,0.02473818,95.12876296],[4.53311291,0.02473647,95.12802554],[4.53311235,0.02473475,95.12728767],[4.53311179,0.02473304,95.12654938],[4.53311123,0.02473133,95.12581067],[4.53311067,0.02472961,95.12507156],[4.53311011,0.0247279,95.12433208],[4.53310956,0.02472619,95.12359224],[4.533109,0.02472447,95.12285206],[4.53310844,0.02472276,95.12211156],[4.53310788,0.02472105,95.12137076],[4.53310732,0.02471933,95.12062967],[4.53310676,0.02471762,95.11988831],[4.5331062,0.02471591,95.11914671],[4.53310564,0.02471419,95.11840487],[4.53310508,0.02471248,95.11766283],[4.53310452,0.02471077,95.11692059],[4.53310397,0.02470905,95.11617817],[4.53310341,0.02470734,95.11543559],[4.53310285,0.02470563,95.11469288],[4.53310229,0.02470391,95.11395005],[4.53310173,0.0247022,95.11320711],[4.53310117,0.02470049,95.11246409],[4.53310061,0.02469877,95.111721],[4.53310005,0.02469706,95.11097786],[4.53309949,0.02469535,95.1102347],[4.53309894,0.02469363,95.10949152],[4.53309838,0.02469192,95.10874835],[4.53309782,0.02469021,95.10800521],[4.53309726,0.02468849,95.10726211],[4.5330967,0.02468678,95.10651907],[4.53309614,0.02468507,95.10577612],[4.53309558,0.02468335,95.10503326],[4.53309503,0.02468164,95.10429051],[4.53309447,0.02467993,95.10354788],[4.53309391,0.02467821,95.10280538],[4.53309335,0.0246765,95.10206302],[4.53309279,0.02467479,95.10132081],[4.53309224,0.02467307,95.10057876],[4.53309168,0.02467136,95.09983688],[4.53309112,0.02466964,95.09909519],[4.53309056,0.02466793,95.09835368],[4.53309001,0.02466622,95.09761237],[4.53308945,0.0246645,95.09687127],[4.53308889,0.02466279,95.09613039],[4.53308833,0.02466107,95.09538974],[4.53308778,0.02465936,95.09464933],[4.53308722,0.02465765,95.09390918],[4.53308666,0.02465593,95.09316931],[4.53308611,0.02465422,95.09242972],[4.53308555,0.0246525,95.0916904],[4.53308499,0.02465079,95.09095133],[4.53308444,0.02464908,95.09021251],[4.53308388,0.02464736,95.08947393],[4.53308332,0.02464565,95.08873556],[4.53308277,0.02464393,95.08799741],[4.53308221,0.02464222,95.08725946],[4.53308166,0.0246405,95.0865217],[4.5330811,0.02463879,95.08578412],[4.53308055,0.02463708,95.0850467],[4.53307999,0.02463536,95.08430943],[4.53307944,0.02463365,95.08357231],[4.53307888,0.02463193,95.08283532],[4.53307832,0.02463022,95.08209845],[4.53307777,0.0246285,95.08136169],[4.53307721,0.02462679,95.08062503],[4.53307666,0.02462507,95.07988845],[4.5330761,0.02462336,95.07915194],[4.53307555,0.02462164,95.0784155],[4.53307499,0.02461993,95.07767911],[4.53307444,0.02461821,95.07694276],[4.53307388,0.0246165,95.07620643],[4.53307333,0.02461479,95.07547013],[4.53307277,0.02461307,95.07473382],[4.53307222,0.02461136,95.07399751],[4.53307166,0.02460964,95.07326118],[4.53307111,0.02460793,95.07252483],[4.53307056,0.02460621,95.07178843],[4.53307,0.0246045,95.07105197],[4.53306945,0.02460278,95.07031546],[4.53306889,0.02460107,95.06957886],[4.53306834,0.02459935,95.06884218],[4.53306778,0.02459764,95.0681054],[4.53306723,0.02459592,95.06736851],[4.53306667,0.02459421,95.0666315],[4.53306612,0.02459249,95.06589435],[4.53306556,0.02459078,95.06515706],[4.53306501,0.02458906,95.0644196],[4.53306445,0.02458735,95.06368198],[4.5330639,0.02458563,95.06294418],[4.53306334,0.02458392,95.06220618],[4.53306279,0.02458221,95.06146799],[4.53306223,0.02458049,95.06072957],[4.53306168,0.02457878,95.05999093],[4.53306112,0.02457706,95.05925204],[4.53306057,0.02457535,95.05851291],[4.53306001,0.02457363,95.05777351],[4.53305945,0.02457192,95.05703384],[4.5330589,0.0245702,95.05629388],[4.53305834,0.02456849,95.05555363],[4.53305779,0.02456677,95.05481306],[4.53305723,0.02456506,95.05407217],[4.53305668,0.02456335,95.05333095],[4.53305612,0.02456163,95.05258938],[4.53305556,0.02455992,95.05184745],[4.53305501,0.0245582,95.05110516],[4.53305445,0.02455649,95.05036248],[4.5330539,0.02455477,95.04961941],[4.53305334,0.02455306,95.04887594],[4.53305278,0.02455135,95.04813205],[4.53305223,0.02454963,95.04738773],[4.53305167,0.02454792,95.04664297],[4.53305111,0.0245462,95.04589776],[4.53305055,0.02454449,95.04515208],[4.53305,0.02454278,95.04440593],[4.53304944,0.02454106,95.04365929],[4.53304888,0.02453935,95.04291215],[4.53304832,0.02453763,95.04216449],[4.53304777,0.02453592,95.04141632],[4.53304721,0.02453421,95.0406676],[4.53304665,0.02453249,95.03991834],[4.53304609,0.02453078,95.03916852],[4.53304553,0.02452907,95.03841812],[4.53304497,0.02452735,95.03766715],[4.53304441,0.02452564,95.03691557],[4.53304385,0.02452393,95.03616339],[4.5330433,0.02452221,95.03541058],[4.53304274,0.0245205,95.03465715],[4.53304218,0.02451879,95.03390306],[4.53304162,0.02451707,95.03314833],[4.53304106,0.02451536,95.03239292],[4.5330405,0.02451365,95.03163683],[4.53303993,0.02451193,95.03088005],[4.53303937,0.02451022,95.03012256],[4.53303881,0.02450851,95.02936436],[4.53303825,0.0245068,95.02860542],[4.53303769,0.02450508,95.02784575],[4.53303713,0.02450337,95.02708532],[4.53303657,0.02450166,95.02632413],[4.533036,0.02449995,95.02556222],[4.53303544,0.02449823,95.02479962],[4.53303488,0.02449652,95.02403639],[4.53303432,0.02449481,95.02327256],[4.53303375,0.0244931,95.02250818],[4.53303319,0.02449139,95.02174328],[4.53303263,0.02448967,95.02097792],[4.53303206,0.02448796,95.02021213],[4.5330315,0.02448625,95.01944595],[4.53303093,0.02448454,95.01867943],[4.53303037,0.02448283,95.01791261],[4.53302981,0.02448111,95.01714551],[4.53302924,0.0244794,95.01637819],[4.53302868,0.02447769,95.01561069],[4.53302811,0.02447598,95.01484304],[4.53302755,0.02447427,95.01407528],[4.53302699,0.02447256,95.01330746],[4.53302642,0.02447084,95.01253961],[4.53302586,0.02446913,95.01177178],[4.53302529,0.02446742,95.011004],[4.53302473,0.02446571,95.01023631],[4.53302416,0.024464,95.00946876],[4.5330236,0.02446229,95.00870138],[4.53302304,0.02446057,95.00793422],[4.53302247,0.02445886,95.00716731],[4.53302191,0.02445715,95.00640069],[4.53302134,0.02445544,95.00563442],[4.53302078,0.02445373,95.00486851],[4.53302022,0.02445202,95.00410302],[4.53301965,0.0244503,95.00333799],[4.53301909,0.02444859,95.00257346],[4.53301853,0.02444688,95.00180946],[4.53301796,0.02444517,95.00104604],[4.5330174,0.02444346,95.00028324],[4.53301684,0.02444174,94.99952109],[4.53301627,0.02444003,94.99875964],[4.53301571,0.02443832,94.99799887],[4.53301515,0.02443661,94.99723877],[4.53301459,0.02443489,94.99647934],[4.53301403,0.02443318,94.99572056],[4.53301346,0.02443147,94.99496242],[4.5330129,0.02442976,94.9942049],[4.53301234,0.02442804,94.993448],[4.53301178,0.02442633,94.9926917],[4.53301122,0.02442462,94.99193599],[4.53301066,0.0244229,94.99118085],[4.5330101,0.02442119,94.99042628],[4.53300954,0.02441948,94.98967226],[4.53300898,0.02441777,94.98891878],[4.53300842,0.02441605,94.98816583],[4.53300786,0.02441434,94.9874134],[4.5330073,0.02441263,94.98666146],[4.53300674,0.02441091,94.98591002],[4.53300618,0.0244092,94.98515906],[4.53300562,0.02440749,94.98440856],[4.53300506,0.02440577,94.98365852],[4.5330045,0.02440406,94.98290892],[4.53300394,0.02440235,94.98215974],[4.53300338,0.02440063,94.98141099],[4.53300282,0.02439892,94.98066264],[4.53300226,0.02439721,94.97991468],[4.5330017,0.02439549,94.9791671],[4.53300114,0.02439378,94.97841988],[4.53300058,0.02439207,94.97767302],[4.53300002,0.02439035,94.97692651],[4.53299947,0.02438864,94.97618032],[4.53299891,0.02438693,94.97543445],[4.53299835,0.02438521,94.97468888],[4.53299779,0.0243835,94.97394361],[4.53299723,0.02438179,94.97319862],[4.53299667,0.02438007,94.97245389],[4.53299611,0.02437836,94.97170942],[4.53299556,0.02437664,94.97096519],[4.532995,0.02437493,94.97022118],[4.53299444,0.02437322,94.9694774],[4.53299388,0.0243715,94.96873382],[4.53299332,0.02436979,94.96799043],[4.53299276,0.02436808,94.96724722],[4.53299221,0.02436636,94.96650418],[4.53299165,0.02436465,94.96576129],[4.53299109,0.02436293,94.96501854],[4.53299053,0.02436122,94.96427592],[4.53298997,0.02435951,94.96353342],[4.53298941,0.02435779,94.96279102],[4.53298886,0.02435608,94.96204871],[4.5329883,0.02435437,94.9613065],[4.53298774,0.02435265,94.96056437],[4.53298718,0.02435094,94.95982233],[4.53298662,0.02434923,94.95908036],[4.53298606,0.02434751,94.95833848],[4.53298551,0.0243458,94.95759666],[4.53298495,0.02434408,94.95685492],[4.53298439,0.02434237,94.95611324],[4.53298383,0.02434066,94.95537162],[4.53298327,0.02433894,94.95463006],[4.53298271,0.02433723,94.95388855],[4.53298215,0.02433552,94.95314709],[4.5329816,0.0243338,94.95240568],[4.53298104,0.02433209,94.95166431],[4.53298048,0.02433038,94.95092298],[4.53297992,0.02432866,94.95018169],[4.53297936,0.02432695,94.94944042],[4.5329788,0.02432523,94.94869918],[4.53297824,0.02432352,94.94795797],[4.53297768,0.02432181,94.94721678],[4.53297712,0.02432009,94.9464756],[4.53297657,0.02431838,94.94573443],[4.53297601,0.02431667,94.94499327],[4.53297545,0.02431495,94.94425209],[4.53297489,0.02431324,94.9435109],[4.53297433,0.02431153,94.94276969],[4.53297377,0.02430981,94.94202844],[4.53297321,0.0243081,94.94128717],[4.53297265,0.02430639,94.94054587],[4.53297209,0.02430467,94.93980455],[4.53297153,0.02430296,94.93906319],[4.53297097,0.02430125,94.93832181],[4.53297041,0.02429953,94.93758039],[4.53296985,0.02429782,94.93683895],[4.53296929,0.02429611,94.93609747],[4.53296873,0.02429439,94.93535597],[4.53296817,0.02429268,94.93461443],[4.53296761,0.02429097,94.93387286],[4.53296705,0.02428925,94.93313125],[4.53296649,0.02428754,94.93238961],[4.53296593,0.02428583,94.93164794],[4.53296537,0.02428412,94.93090623],[4.53296481,0.0242824,94.93016449],[4.53296425,0.02428069,94.92942271],[4.53296369,0.02427898,94.9286809],[4.53296313,0.02427726,94.92793905],[4.53296257,0.02427555,94.92719716],[4.53296201,0.02427384,94.92645524],[4.53296145,0.02427212,94.92571328],[4.53296088,0.02427041,94.92497127],[4.53296032,0.0242687,94.92422923],[4.53295976,0.02426699,94.92348715],[4.5329592,0.02426527,94.92274503],[4.53295864,0.02426356,94.92200287],[4.53295808,0.02426185,94.92126067],[4.53295752,0.02426014,94.92051842],[4.53295695,0.02425842,94.91977614],[4.53295639,0.02425671,94.91903381],[4.53295583,0.024255,94.91829144],[4.53295527,0.02425328,94.91754902],[4.53295471,0.02425157,94.91680656],[4.53295415,0.02424986,94.91606405],[4.53295358,0.02424815,94.9153215],[4.53295302,0.02424643,94.91457891],[4.53295246,0.02424472,94.91383626],[4.5329519,0.02424301,94.91309357],[4.53295133,0.0242413,94.91235084],[4.53295077,0.02423958,94.91160805],[4.53295021,0.02423787,94.91086522],[4.53294965,0.02423616,94.91012234],[4.53294908,0.02423445,94.90937941],[4.53294852,0.02423274,94.90863642],[4.53294796,0.02423102,94.90789339],[4.53294739,0.02422931,94.90715031],[4.53294683,0.0242276,94.90640718],[4.53294627,0.02422589,94.90566399],[4.5329457,0.02422417,94.90492076],[4.53294514,0.02422246,94.90417747],[4.53294458,0.02422075,94.90343412],[4.53294401,0.02421904,94.90269072],[4.53294345,0.02421733,94.90194727],[4.53294289,0.02421561,94.90120377],[4.53294232,0.0242139,94.90046021],[4.53294176,0.02421219,94.89971659],[4.53294119,0.02421048,94.89897292],[4.53294063,0.02420877,94.89822919],[4.53294006,0.02420706,94.8974854],[4.5329395,0.02420534,94.89674156],[4.53293894,0.02420363,94.89599766],[4.53293837,0.02420192,94.8952537],[4.53293781,0.02420021,94.89450968],[4.53293724,0.0241985,94.8937656],[4.53293668,0.02419679,94.89302147],[4.53293611,0.02419507,94.89227727],[4.53293555,0.02419336,94.89153301],[4.53293498,0.02419165,94.89078869],[4.53293442,0.02418994,94.89004431],[4.53293385,0.02418823,94.88929987],[4.53293328,0.02418652,94.88855537],[4.53293272,0.02418481,94.8878108],[4.53293215,0.02418309,94.88706617],[4.53293159,0.02418138,94.88632147],[4.53293102,0.02417967,94.88557672],[4.532931,0.0241796,94.88554455],[4.53296206,0.02416926,94.9872069],[4.53296208,0.02416933,94.98723846],[4.53296264,0.02417104,94.98796923],[4.53296321,0.02417276,94.98870014],[4.53296377,0.02417447,94.98943118],[4.53296433,0.02417618,94.99016234],[4.5329649,0.02417789,94.99089363],[4.53296546,0.0241796,94.99162505],[4.53296602,0.02418132,94.99235658],[4.53296659,0.02418303,94.99308823],[4.53296715,0.02418474,94.99382],[4.53296771,0.02418645,94.99455187],[4.53296828,0.02418817,94.99528386],[4.53296884,0.02418988,94.99601596],[4.5329694,0.02419159,94.99674816],[4.53296996,0.0241933,94.99748046],[4.53297053,0.02419502,94.99821287],[4.53297109,0.02419673,94.99894537],[4.53297165,0.02419844,94.99967797],[4.53297222,0.02420015,95.00041066],[4.53297278,0.02420187,95.00114344],[4.53297334,0.02420358,95.00187631],[4.53297391,0.02420529,95.00260927],[4.53297447,0.024207,95.00334231],[4.53297503,0.02420872,95.00407543],[4.5329756,0.02421043,95.00480863],[4.53297616,0.02421214,95.0055419],[4.53297672,0.02421385,95.00627525],[4.53297728,0.02421557,95.00700867],[4.53297785,0.02421728,95.00774215],[4.53297841,0.02421899,95.00847571],[4.53297897,0.0242207,95.00920932],[4.53297954,0.02422242,95.009943],[4.5329801,0.02422413,95.01067674],[4.53298066,0.02422584,95.01141053],[4.53298123,0.02422755,95.01214438],[4.53298179,0.02422927,95.01287828],[4.53298235,0.02423098,95.01361223],[4.53298291,0.02423269,95.01434622],[4.53298348,0.0242344,95.01508026],[4.53298404,0.02423612,95.01581434],[4.5329846,0.02423783,95.01654846],[4.53298517,0.02423954,95.01728262],[4.53298573,0.02424125,95.01801681],[4.53298629,0.02424297,95.01875103],[4.53298685,0.02424468,95.01948529],[4.53298742,0.02424639,95.02021957],[4.53298798,0.0242481,95.02095387],[4.53298854,0.02424982,95.0216882],[4.53298911,0.02425153,95.02242254],[4.53298967,0.02425324,95.02315691],[4.53299023,0.02425495,95.02389129],[4.53299079,0.02425667,95.02462568],[4.53299136,0.02425838,95.02536008],[4.53299192,0.02426009,95.02609449],[4.53299248,0.0242618,95.02682891],[4.53299304,0.02426352,95.02756333],[4.53299361,0.02426523,95.02829775],[4.53299417,0.02426694,95.02903216],[4.53299473,0.02426865,95.02976658],[4.53299529,0.02427037,95.03050098],[4.53299586,0.02427208,95.03123538],[4.53299642,0.02427379,95.03196977],[4.53299698,0.02427551,95.03270414],[4.53299754,0.02427722,95.03343849],[4.5329981,0.02427893,95.03417283],[4.53299867,0.02428064,95.03490715],[4.53299923,0.02428236,95.03564144],[4.53299979,0.02428407,95.0363757],[4.53300035,0.02428578,95.03710994],[4.53300092,0.02428749,95.03784415],[4.53300148,0.02428921,95.03857832],[4.53300204,0.02429092,95.03931246],[4.5330026,0.02429263,95.04004656],[4.53300316,0.02429435,95.04078062],[4.53300372,0.02429606,95.04151464],[4.53300429,0.02429777,95.04224862],[4.53300485,0.02429948,95.04298254],[4.53300541,0.0243012,95.04371642],[4.53300597,0.02430291,95.04445024],[4.53300653,0.02430462,95.04518401],[4.53300709,0.02430634,95.04591773],[4.53300766,0.02430805,95.04665141],[4.53300822,0.02430976,95.04738506],[4.53300878,0.02431147,95.04811867],[4.53300934,0.02431319,95.04885226],[4.5330099,0.0243149,95.04958583],[4.53301046,0.02431661,95.05031936],[4.53301102,0.02431833,95.05105288],[4.53301159,0.02432004,95.05178637],[4.53301215,0.02432175,95.05251984],[4.53301271,0.02432347,95.05325328],[4.53301327,0.02432518,95.05398671],[4.53301383,0.02432689,95.05472012],[4.53301439,0.0243286,95.05545351],[4.53301495,0.02433032,95.05618688],[4.53301551,0.02433203,95.05692024],[4.53301608,0.02433374,95.05765358],[4.53301664,0.02433546,95.0583869],[4.5330172,0.02433717,95.05912021],[4.53301776,0.02433888,95.05985351],[4.53301832,0.0243406,95.06058679],[4.53301888,0.02434231,95.06132007],[4.53301944,0.02434402,95.06205333],[4.53302,0.02434574,95.06278659],[4.53302056,0.02434745,95.06351984],[4.53302112,0.02434916,95.06425307],[4.53302168,0.02435088,95.06498631],[4.53302224,0.02435259,95.06571953],[4.53302281,0.0243543,95.06645276],[4.53302337,0.02435601,95.06718597],[4.53302393,0.02435773,95.06791919],[4.53302449,0.02435944,95.0686524],[4.53302505,0.02436115,95.06938561],[4.53302561,0.02436287,95.07011882],[4.53302617,0.02436458,95.07085204],[4.53302673,0.02436629,95.07158525],[4.53302729,0.02436801,95.07231846],[4.53302785,0.02436972,95.07305168],[4.53302841,0.02437143,95.07378491],[4.53302897,0.02437315,95.07451813],[4.53302953,0.02437486,95.07525137],[4.53303009,0.02437657,95.07598461],[4.53303065,0.02437829,95.07671786],[4.53303121,0.02438,95.07745112],[4.53303177,0.02438171,95.07818438],[4.53303233,0.02438343,95.07891766],[4.53303289,0.02438514,95.07965095],[4.53303345,0.02438685,95.08038425],[4.53303402,0.02438857,95.08111756],[4.53303458,0.02439028,95.08185089],[4.53303514,0.02439199,95.08258423],[4.5330357,0.02439371,95.08331759],[4.53303626,0.02439542,95.08405096],[4.53303682,0.02439713,95.08478436],[4.53303738,0.02439885,95.08551777],[4.53303794,0.02440056,95.0862512],[4.5330385,0.02440227,95.08698465],[4.53303906,0.02440399,95.08771812],[4.53303962,0.0244057,95.08845161],[4.53304018,0.02440741,95.08918512],[4.53304074,0.02440913,95.08991866],[4.5330413,0.02441084,95.09065223],[4.53304186,0.02441255,95.09138581],[4.53304242,0.02441427,95.09211943],[4.53304298,0.02441598,95.09285307],[4.53304354,0.02441769,95.09358674],[4.5330441,0.02441941,95.09432044],[4.53304466,0.02442112,95.09505417],[4.53304522,0.02442283,95.09578792],[4.53304578,0.02442455,95.09652171],[4.53304634,0.02442626,95.09725554],[4.5330469,0.02442797,95.09798939],[4.53304746,0.02442969,95.09872328],[4.53304802,0.0244314,95.0994572],[4.53304858,0.02443312,95.10019116],[4.53304914,0.02443483,95.10092516],[4.5330497,0.02443654,95.10165919],[4.53305026,0.02443826,95.10239326],[4.53305082,0.02443997,95.10312737],[4.53305138,0.02444168,95.10386152],[4.53305194,0.0244434,95.10459571],[4.5330525,0.02444511,95.10532995],[4.53305306,0.02444682,95.10606422],[4.53305362,0.02444854,95.10679854],[4.53305418,0.02445025,95.1075329],[4.53305474,0.02445196,95.10826731],[4.5330553,0.02445368,95.10900176],[4.53305586,0.02445539,95.10973626],[4.53305642,0.0244571,95.11047081],[4.53305698,0.02445882,95.11120541],[4.53305754,0.02446053,95.11194005],[4.5330581,0.02446224,95.11267474],[4.53305866,0.02446396,95.11340949],[4.53305922,0.02446567,95.11414429],[4.53305978,0.02446738,95.11487914],[4.53306034,0.0244691,95.11561404],[4.5330609,0.02447081,95.116349],[4.53306146,0.02447252,95.11708401],[4.53306202,0.02447424,95.11781908],[4.53306258,0.02447595,95.1185542],[4.53306314,0.02447766,95.11928938],[4.5330637,0.02447938,95.12002462],[4.53306426,0.02448109,95.12075992],[4.53306482,0.0244828,95.12149528],[4.53306538,0.02448452,95.12223068],[4.53306594,0.02448623,95.12296614],[4.5330665,0.02448794,95.12370165],[4.53306706,0.02448966,95.1244372],[4.53306762,0.02449137,95.1251728],[4.53306818,0.02449309,95.12590844],[4.53306874,0.0244948,95.12664412],[4.5330693,0.02449651,95.12737984],[4.53306986,0.02449823,95.1281156],[4.53307042,0.02449994,95.1288514],[4.53307098,0.02450165,95.12958722],[4.53307154,0.02450337,95.13032308],[4.5330721,0.02450508,95.13105897],[4.53307266,0.02450679,95.13179488],[4.53307322,0.02450851,95.13253082],[4.53307378,0.02451022,95.13326678],[4.53307434,0.02451193,95.13400276],[4.5330749,0.02451365,95.13473876],[4.53307546,0.02451536,95.13547478],[4.53307602,0.02451707,95.13621081],[4.53307658,0.02451879,95.13694685],[4.53307714,0.0245205,95.13768291],[4.5330777,0.02452221,95.13841898],[4.53307826,0.02452393,95.13915505],[4.53307882,0.02452564,95.13989112],[4.53307938,0.02452735,95.1406272],[4.53307994,0.02452907,95.14136329],[4.5330805,0.02453078,95.14209937],[4.53308106,0.02453249,95.14283544],[4.53308162,0.02453421,95.14357151],[4.53308218,0.02453592,95.14430758],[4.53308274,0.02453763,95.14504363],[4.5330833,0.02453935,95.14577968],[4.53308386,0.02454106,95.14651571],[4.53308442,0.02454277,95.14725173],[4.53308498,0.02454449,95.14798773],[4.53308554,0.0245462,95.14872371],[4.5330861,0.02454791,95.14945967],[4.53308665,0.02454963,95.15019561],[4.53308721,0.02455134,95.15093152],[4.53308777,0.02455306,95.15166741],[4.53308833,0.02455477,95.15240327],[4.53308889,0.02455648,95.15313909],[4.53308945,0.0245582,95.15387489],[4.53309001,0.02455991,95.15461065],[4.53309057,0.02456162,95.15534637],[4.53309113,0.02456334,95.15608206],[4.53309169,0.02456505,95.1568177],[4.53309225,0.02456676,95.1575533],[4.53309281,0.02456848,95.15828886],[4.53309337,0.02457019,95.15902437],[4.53309393,0.0245719,95.15975983],[4.53309449,0.02457362,95.16049525],[4.53309505,0.02457533,95.1612306],[4.53309561,0.02457704,95.16196591],[4.53309617,0.02457876,95.16270116],[4.53309673,0.02458047,95.16343635],[4.53309729,0.02458219,95.16417148],[4.53309785,0.0245839,95.16490655],[4.5330984,0.02458561,95.16564156],[4.53309896,0.02458733,95.1663765],[4.53309952,0.02458904,95.16711137],[4.53310008,0.02459075,95.16784617],[4.53310064,0.02459247,95.1685809],[4.5331012,0.02459418,95.16931555],[4.53310176,0.0245959,95.17005013],[4.53310232,0.02459761,95.17078463],[4.53310288,0.02459932,95.17151906],[4.53310344,0.02460104,95.1722534],[4.533104,0.02460275,95.17298766],[4.53310456,0.02460446,95.17372183],[4.53310511,0.02460618,95.17445591],[4.53310567,0.02460789,95.17518991],[4.53310623,0.0246096,95.17592381],[4.53310679,0.02461132,95.17665762],[4.53310735,0.02461303,95.17739134],[4.53310791,0.02461475,95.17812496],[4.53310847,0.02461646,95.17885848],[4.53310903,0.02461817,95.17959189],[4.53310958,0.02461989,95.18032521],[4.53311014,0.0246216,95.18105842],[4.5331107,0.02462332,95.18179152],[4.53311126,0.02462503,95.18252452],[4.53311182,0.02462674,95.1832574],[4.53311238,0.02462846,95.18399017],[4.53311294,0.02463017,95.18472283],[4.53311349,0.02463188,95.18545537],[4.53311405,0.0246336,95.18618779],[4.53311461,0.02463531,95.18692009],[4.53311517,0.02463703,95.18765227],[4.53311573,0.02463874,95.18838433],[4.53311629,0.02464045,95.18911626],[4.53311684,0.02464217,95.18984806],[4.5331174,0.02464388,95.19057973],[4.53311796,0.0246456,95.19131127],[4.53311852,0.02464731,95.19204267],[4.53311908,0.02464902,95.19277394],[4.53311963,0.02465074,95.19350507],[4.53312019,0.02465245,95.19423606],[4.53312075,0.02465417,95.19496692],[4.53312131,0.02465588,95.19569764],[4.53312187,0.0246576,95.19642823],[4.53312242,0.02465931,95.1971587],[4.53312298,0.02466102,95.19788905],[4.53312354,0.02466274,95.19861929],[4.5331241,0.02466445,95.19934942],[4.53312465,0.02466617,95.20007945],[4.53312521,0.02466788,95.20080939],[4.53312577,0.02466959,95.20153923],[4.53312633,0.02467131,95.20226898],[4.53312688,0.02467302,95.20299866],[4.53312744,0.02467474,95.20372826],[4.533128,0.02467645,95.20445778],[4.53312856,0.02467817,95.20518723],[4.53312911,0.02467988,95.20591659],[4.53312967,0.02468159,95.20664588],[4.53313023,0.02468331,95.20737508],[4.53313078,0.02468502,95.20810418],[4.53313134,0.02468674,95.2088332],[4.5331319,0.02468845,95.20956212],[4.53313246,0.02469017,95.21029094],[4.53313301,0.02469188,95.21101965],[4.53313357,0.02469359,95.21174826],[4.53313413,0.02469531,95.21247676],[4.53313469,0.02469702,95.21320515],[4.53313524,0.02469874,95.21393342],[4.5331358,0.02470045,95.21466157],[4.53313636,0.02470217,95.2153896],[4.53313691,0.02470388,95.2161175],[4.53313747,0.02470559,95.21684527],[4.53313803,0.02470731,95.21757291],[4.53313858,0.02470902,95.21830041],[4.53313914,0.02471074,95.21902777],[4.5331397,0.02471245,95.21975499],[4.53314025,0.02471417,95.22048206],[4.53314081,0.02471588,95.22120899],[4.53314137,0.0247176,95.22193576],[4.53314192,0.02471931,95.22266237],[4.53314248,0.02472102,95.22338882],[4.53314304,0.02472274,95.22411511],[4.53314359,0.02472445,95.22484123],[4.53314415,0.02472617,95.22556719],[4.53314471,0.02472788,95.22629297],[4.53314526,0.0247296,95.22701857],[4.53314582,0.02473131,95.22774399],[4.53314637,0.02473303,95.22846923],[4.53314693,0.02473474,95.22919428],[4.53314749,0.02473646,95.22991915],[4.53314804,0.02473817,95.23064382],[4.5331486,0.02473989,95.23136829],[4.53314915,0.0247416,95.23209256],[4.53314971,0.02474332,95.23281663],[4.53315027,0.02474503,95.23354049],[4.53315082,0.02474674,95.23426415],[4.53315138,0.02474846,95.23498758],[4.53315193,0.02475017,95.23571081],[4.53315249,0.02475189,95.23643381],[4.53315304,0.0247536,95.23715659],[4.5331536,0.02475532,95.23787914],[4.53312238,0.0247656,95.14048575]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2,"sOffset":403.9617323989}},{"geometry":{"coordinates":[[[4.5331536,0.02475532,95.23787914],[4.53315304,0.0247536,95.23715659],[4.53315249,0.02475189,95.23643381],[4.53315193,0.02475017,95.23571081],[4.53315138,0.02474846,95.23498758],[4.53315082,0.02474674,95.23426415],[4.53315027,0.02474503,95.23354049],[4.53314971,0.02474332,95.23281663],[4.53314915,0.0247416,95.23209256],[4.5331486,0.02473989,95.23136829],[4.53314804,0.02473817,95.23064382],[4.53314749,0.02473646,95.22991915],[4.53314693,0.02473474,95.22919428],[4.53314637,0.02473303,95.22846923],[4.53314582,0.02473131,95.22774399],[4.53314526,0.0247296,95.22701857],[4.53314471,0.02472788,95.22629297],[4.53314415,0.02472617,95.22556719],[4.53314359,0.02472445,95.22484123],[4.53314304,0.02472274,95.22411511],[4.53314248,0.02472102,95.22338882],[4.53314192,0.02471931,95.22266237],[4.53314137,0.0247176,95.22193576],[4.53314081,0.02471588,95.22120899],[4.53314025,0.02471417,95.22048206],[4.5331397,0.02471245,95.21975499],[4.53313914,0.02471074,95.21902777],[4.53313858,0.02470902,95.21830041],[4.53313803,0.02470731,95.21757291],[4.53313747,0.02470559,95.21684527],[4.53313691,0.02470388,95.2161175],[4.53313636,0.02470217,95.2153896],[4.5331358,0.02470045,95.21466157],[4.53313524,0.02469874,95.21393342],[4.53313469,0.02469702,95.21320515],[4.53313413,0.02469531,95.21247676],[4.53313357,0.02469359,95.21174826],[4.53313301,0.02469188,95.21101965],[4.53313246,0.02469017,95.21029094],[4.5331319,0.02468845,95.20956212],[4.53313134,0.02468674,95.2088332],[4.53313078,0.02468502,95.20810418],[4.53313023,0.02468331,95.20737508],[4.53312967,0.02468159,95.20664588],[4.53312911,0.02467988,95.20591659],[4.53312856,0.02467817,95.20518723],[4.533128,0.02467645,95.20445778],[4.53312744,0.02467474,95.20372826],[4.53312688,0.02467302,95.20299866],[4.53312633,0.02467131,95.20226898],[4.53312577,0.02466959,95.20153923],[4.53312521,0.02466788,95.20080939],[4.53312465,0.02466617,95.20007945],[4.5331241,0.02466445,95.19934942],[4.53312354,0.02466274,95.19861929],[4.53312298,0.02466102,95.19788905],[4.53312242,0.02465931,95.1971587],[4.53312187,0.0246576,95.19642823],[4.53312131,0.02465588,95.19569764],[4.53312075,0.02465417,95.19496692],[4.53312019,0.02465245,95.19423606],[4.53311963,0.02465074,95.19350507],[4.53311908,0.02464902,95.19277394],[4.53311852,0.02464731,95.19204267],[4.53311796,0.0246456,95.19131127],[4.5331174,0.02464388,95.19057973],[4.53311684,0.02464217,95.18984806],[4.53311629,0.02464045,95.18911626],[4.53311573,0.02463874,95.18838433],[4.53311517,0.02463703,95.18765227],[4.53311461,0.02463531,95.18692009],[4.53311405,0.0246336,95.18618779],[4.53311349,0.02463188,95.18545537],[4.53311294,0.02463017,95.18472283],[4.53311238,0.02462846,95.18399017],[4.53311182,0.02462674,95.1832574],[4.53311126,0.02462503,95.18252452],[4.5331107,0.02462332,95.18179152],[4.53311014,0.0246216,95.18105842],[4.53310958,0.02461989,95.18032521],[4.53310903,0.02461817,95.17959189],[4.53310847,0.02461646,95.17885848],[4.53310791,0.02461475,95.17812496],[4.53310735,0.02461303,95.17739134],[4.53310679,0.02461132,95.17665762],[4.53310623,0.0246096,95.17592381],[4.53310567,0.02460789,95.17518991],[4.53310511,0.02460618,95.17445591],[4.53310456,0.02460446,95.17372183],[4.533104,0.02460275,95.17298766],[4.53310344,0.02460104,95.1722534],[4.53310288,0.02459932,95.17151906],[4.53310232,0.02459761,95.17078463],[4.53310176,0.0245959,95.17005013],[4.5331012,0.02459418,95.16931555],[4.53310064,0.02459247,95.1685809],[4.53310008,0.02459075,95.16784617],[4.53309952,0.02458904,95.16711137],[4.53309896,0.02458733,95.1663765],[4.5330984,0.02458561,95.16564156],[4.53309785,0.0245839,95.16490655],[4.53309729,0.02458219,95.16417148],[4.53309673,0.02458047,95.16343635],[4.53309617,0.02457876,95.16270116],[4.53309561,0.02457704,95.16196591],[4.53309505,0.02457533,95.1612306],[4.53309449,0.02457362,95.16049525],[4.53309393,0.0245719,95.15975983],[4.53309337,0.02457019,95.15902437],[4.53309281,0.02456848,95.15828886],[4.53309225,0.02456676,95.1575533],[4.53309169,0.02456505,95.1568177],[4.53309113,0.02456334,95.15608206],[4.53309057,0.02456162,95.15534637],[4.53309001,0.02455991,95.15461065],[4.53308945,0.0245582,95.15387489],[4.53308889,0.02455648,95.15313909],[4.53308833,0.02455477,95.15240327],[4.53308777,0.02455306,95.15166741],[4.53308721,0.02455134,95.15093152],[4.53308665,0.02454963,95.15019561],[4.5330861,0.02454791,95.14945967],[4.53308554,0.0245462,95.14872371],[4.53308498,0.02454449,95.14798773],[4.53308442,0.02454277,95.14725173],[4.53308386,0.02454106,95.14651571],[4.5330833,0.02453935,95.14577968],[4.53308274,0.02453763,95.14504363],[4.53308218,0.02453592,95.14430758],[4.53308162,0.02453421,95.14357151],[4.53308106,0.02453249,95.14283544],[4.5330805,0.02453078,95.14209937],[4.53307994,0.02452907,95.14136329],[4.53307938,0.02452735,95.1406272],[4.53307882,0.02452564,95.13989112],[4.53307826,0.02452393,95.13915505],[4.5330777,0.02452221,95.13841898],[4.53307714,0.0245205,95.13768291],[4.53307658,0.02451879,95.13694685],[4.53307602,0.02451707,95.13621081],[4.53307546,0.02451536,95.13547478],[4.5330749,0.02451365,95.13473876],[4.53307434,0.02451193,95.13400276],[4.53307378,0.02451022,95.13326678],[4.53307322,0.02450851,95.13253082],[4.53307266,0.02450679,95.13179488],[4.5330721,0.02450508,95.13105897],[4.53307154,0.02450337,95.13032308],[4.53307098,0.02450165,95.12958722],[4.53307042,0.02449994,95.1288514],[4.53306986,0.02449823,95.1281156],[4.5330693,0.02449651,95.12737984],[4.53306874,0.0244948,95.12664412],[4.53306818,0.02449309,95.12590844],[4.53306762,0.02449137,95.1251728],[4.53306706,0.02448966,95.1244372],[4.5330665,0.02448794,95.12370165],[4.53306594,0.02448623,95.12296614],[4.53306538,0.02448452,95.12223068],[4.53306482,0.0244828,95.12149528],[4.53306426,0.02448109,95.12075992],[4.5330637,0.02447938,95.12002462],[4.53306314,0.02447766,95.11928938],[4.53306258,0.02447595,95.1185542],[4.53306202,0.02447424,95.11781908],[4.53306146,0.02447252,95.11708401],[4.5330609,0.02447081,95.116349],[4.53306034,0.0244691,95.11561404],[4.53305978,0.02446738,95.11487914],[4.53305922,0.02446567,95.11414429],[4.53305866,0.02446396,95.11340949],[4.5330581,0.02446224,95.11267474],[4.53305754,0.02446053,95.11194005],[4.53305698,0.02445882,95.11120541],[4.53305642,0.0244571,95.11047081],[4.53305586,0.02445539,95.10973626],[4.5330553,0.02445368,95.10900176],[4.53305474,0.02445196,95.10826731],[4.53305418,0.02445025,95.1075329],[4.53305362,0.02444854,95.10679854],[4.53305306,0.02444682,95.10606422],[4.5330525,0.02444511,95.10532995],[4.53305194,0.0244434,95.10459571],[4.53305138,0.02444168,95.10386152],[4.53305082,0.02443997,95.10312737],[4.53305026,0.02443826,95.10239326],[4.5330497,0.02443654,95.10165919],[4.53304914,0.02443483,95.10092516],[4.53304858,0.02443312,95.10019116],[4.53304802,0.0244314,95.0994572],[4.53304746,0.02442969,95.09872328],[4.5330469,0.02442797,95.09798939],[4.53304634,0.02442626,95.09725554],[4.53304578,0.02442455,95.09652171],[4.53304522,0.02442283,95.09578792],[4.53304466,0.02442112,95.09505417],[4.5330441,0.02441941,95.09432044],[4.53304354,0.02441769,95.09358674],[4.53304298,0.02441598,95.09285307],[4.53304242,0.02441427,95.09211943],[4.53304186,0.02441255,95.09138581],[4.5330413,0.02441084,95.09065223],[4.53304074,0.02440913,95.08991866],[4.53304018,0.02440741,95.08918512],[4.53303962,0.0244057,95.08845161],[4.53303906,0.02440399,95.08771812],[4.5330385,0.02440227,95.08698465],[4.53303794,0.02440056,95.0862512],[4.53303738,0.02439885,95.08551777],[4.53303682,0.02439713,95.08478436],[4.53303626,0.02439542,95.08405096],[4.5330357,0.02439371,95.08331759],[4.53303514,0.02439199,95.08258423],[4.53303458,0.02439028,95.08185089],[4.53303402,0.02438857,95.08111756],[4.53303345,0.02438685,95.08038425],[4.53303289,0.02438514,95.07965095],[4.53303233,0.02438343,95.07891766],[4.53303177,0.02438171,95.07818438],[4.53303121,0.02438,95.07745112],[4.53303065,0.02437829,95.07671786],[4.53303009,0.02437657,95.07598461],[4.53302953,0.02437486,95.07525137],[4.53302897,0.02437315,95.07451813],[4.53302841,0.02437143,95.07378491],[4.53302785,0.02436972,95.07305168],[4.53302729,0.02436801,95.07231846],[4.53302673,0.02436629,95.07158525],[4.53302617,0.02436458,95.07085204],[4.53302561,0.02436287,95.07011882],[4.53302505,0.02436115,95.06938561],[4.53302449,0.02435944,95.0686524],[4.53302393,0.02435773,95.06791919],[4.53302337,0.02435601,95.06718597],[4.53302281,0.0243543,95.06645276],[4.53302224,0.02435259,95.06571953],[4.53302168,0.02435088,95.06498631],[4.53302112,0.02434916,95.06425307],[4.53302056,0.02434745,95.06351984],[4.53302,0.02434574,95.06278659],[4.53301944,0.02434402,95.06205333],[4.53301888,0.02434231,95.06132007],[4.53301832,0.0243406,95.06058679],[4.53301776,0.02433888,95.05985351],[4.5330172,0.02433717,95.05912021],[4.53301664,0.02433546,95.0583869],[4.53301608,0.02433374,95.05765358],[4.53301551,0.02433203,95.05692024],[4.53301495,0.02433032,95.05618688],[4.53301439,0.0243286,95.05545351],[4.53301383,0.02432689,95.05472012],[4.53301327,0.02432518,95.05398671],[4.53301271,0.02432347,95.05325328],[4.53301215,0.02432175,95.05251984],[4.53301159,0.02432004,95.05178637],[4.53301102,0.02431833,95.05105288],[4.53301046,0.02431661,95.05031936],[4.5330099,0.0243149,95.04958583],[4.53300934,0.02431319,95.04885226],[4.53300878,0.02431147,95.04811867],[4.53300822,0.02430976,95.04738506],[4.53300766,0.02430805,95.04665141],[4.53300709,0.02430634,95.04591773],[4.53300653,0.02430462,95.04518401],[4.53300597,0.02430291,95.04445024],[4.53300541,0.0243012,95.04371642],[4.53300485,0.02429948,95.04298254],[4.53300429,0.02429777,95.04224862],[4.53300372,0.02429606,95.04151464],[4.53300316,0.02429435,95.04078062],[4.5330026,0.02429263,95.04004656],[4.53300204,0.02429092,95.03931246],[4.53300148,0.02428921,95.03857832],[4.53300092,0.02428749,95.03784415],[4.53300035,0.02428578,95.03710994],[4.53299979,0.02428407,95.0363757],[4.53299923,0.02428236,95.03564144],[4.53299867,0.02428064,95.03490715],[4.5329981,0.02427893,95.03417283],[4.53299754,0.02427722,95.03343849],[4.53299698,0.02427551,95.03270414],[4.53299642,0.02427379,95.03196977],[4.53299586,0.02427208,95.03123538],[4.53299529,0.02427037,95.03050098],[4.53299473,0.02426865,95.02976658],[4.53299417,0.02426694,95.02903216],[4.53299361,0.02426523,95.02829775],[4.53299304,0.02426352,95.02756333],[4.53299248,0.0242618,95.02682891],[4.53299192,0.02426009,95.02609449],[4.53299136,0.02425838,95.02536008],[4.53299079,0.02425667,95.02462568],[4.53299023,0.02425495,95.02389129],[4.53298967,0.02425324,95.02315691],[4.53298911,0.02425153,95.02242254],[4.53298854,0.02424982,95.0216882],[4.53298798,0.0242481,95.02095387],[4.53298742,0.02424639,95.02021957],[4.53298685,0.02424468,95.01948529],[4.53298629,0.02424297,95.01875103],[4.53298573,0.02424125,95.01801681],[4.53298517,0.02423954,95.01728262],[4.5329846,0.02423783,95.01654846],[4.53298404,0.02423612,95.01581434],[4.53298348,0.0242344,95.01508026],[4.53298291,0.02423269,95.01434622],[4.53298235,0.02423098,95.01361223],[4.53298179,0.02422927,95.01287828],[4.53298123,0.02422755,95.01214438],[4.53298066,0.02422584,95.01141053],[4.5329801,0.02422413,95.01067674],[4.53297954,0.02422242,95.009943],[4.53297897,0.0242207,95.00920932],[4.53297841,0.02421899,95.00847571],[4.53297785,0.02421728,95.00774215],[4.53297728,0.02421557,95.00700867],[4.53297672,0.02421385,95.00627525],[4.53297616,0.02421214,95.0055419],[4.5329756,0.02421043,95.00480863],[4.53297503,0.02420872,95.00407543],[4.53297447,0.024207,95.00334231],[4.53297391,0.02420529,95.00260927],[4.53297334,0.02420358,95.00187631],[4.53297278,0.02420187,95.00114344],[4.53297222,0.02420015,95.00041066],[4.53297165,0.02419844,94.99967797],[4.53297109,0.02419673,94.99894537],[4.53297053,0.02419502,94.99821287],[4.53296996,0.0241933,94.99748046],[4.5329694,0.02419159,94.99674816],[4.53296884,0.02418988,94.99601596],[4.53296828,0.02418817,94.99528386],[4.53296771,0.02418645,94.99455187],[4.53296715,0.02418474,94.99382],[4.53296659,0.02418303,94.99308823],[4.53296602,0.02418132,94.99235658],[4.53296546,0.0241796,94.99162505],[4.5329649,0.02417789,94.99089363],[4.53296433,0.02417618,94.99016234],[4.53296377,0.02417447,94.98943118],[4.53296321,0.02417276,94.98870014],[4.53296264,0.02417104,94.98796923],[4.53296208,0.02416933,94.98723846],[4.53296206,0.02416926,94.9872069],[4.53299255,0.0241591,95.0870176],[4.53299257,0.02415918,95.08704872],[4.53299314,0.02416089,95.08776934],[4.5329937,0.0241626,95.08848983],[4.53299426,0.02416432,95.0892102],[4.53299482,0.02416603,95.08993045],[4.53299538,0.02416774,95.09065059],[4.53299594,0.02416946,95.0913706],[4.5329965,0.02417117,95.09209051],[4.53299706,0.02417288,95.0928103],[4.53299763,0.0241746,95.09352999],[4.53299819,0.02417631,95.09424957],[4.53299875,0.02417802,95.09496905],[4.53299931,0.02417974,95.09568844],[4.53299987,0.02418145,95.09640772],[4.53300043,0.02418316,95.09712692],[4.53300099,0.02418488,95.09784602],[4.53300155,0.02418659,95.09856503],[4.53300212,0.0241883,95.09928397],[4.53300268,0.02419002,95.10000281],[4.53300324,0.02419173,95.10072158],[4.5330038,0.02419344,95.10144028],[4.53300436,0.02419516,95.10215889],[4.53300492,0.02419687,95.10287744],[4.53300548,0.02419858,95.10359592],[4.53300604,0.0242003,95.10431433],[4.5330066,0.02420201,95.10503268],[4.53300716,0.02420372,95.10575098],[4.53300773,0.02420544,95.10646921],[4.53300829,0.02420715,95.10718739],[4.53300885,0.02420886,95.10790551],[4.53300941,0.02421058,95.10862359],[4.53300997,0.02421229,95.10934162],[4.53301053,0.024214,95.11005961],[4.53301109,0.02421572,95.11077756],[4.53301165,0.02421743,95.11149547],[4.53301221,0.02421914,95.11221334],[4.53301277,0.02422086,95.11293118],[4.53301334,0.02422257,95.11364899],[4.5330139,0.02422428,95.11436677],[4.53301446,0.024226,95.11508453],[4.53301502,0.02422771,95.11580227],[4.53301558,0.02422942,95.11651999],[4.53301614,0.02423114,95.11723769],[4.5330167,0.02423285,95.11795538],[4.53301726,0.02423456,95.11867306],[4.53301782,0.02423628,95.11939073],[4.53301839,0.02423799,95.12010839],[4.53301895,0.0242397,95.12082605],[4.53301951,0.02424142,95.12154372],[4.53302007,0.02424313,95.12226138],[4.53302063,0.02424484,95.12297905],[4.53302119,0.02424656,95.12369673],[4.53302175,0.02424827,95.12441442],[4.53302231,0.02424998,95.12513212],[4.53302287,0.0242517,95.12584984],[4.53302343,0.02425341,95.12656758],[4.533024,0.02425512,95.12728534],[4.53302456,0.02425684,95.12800313],[4.53302512,0.02425855,95.12872094],[4.53302568,0.02426026,95.12943879],[4.53302624,0.02426198,95.13015666],[4.5330268,0.02426369,95.13087457],[4.53302736,0.0242654,95.13159252],[4.53302792,0.02426712,95.13231051],[4.53302849,0.02426883,95.13302855],[4.53302905,0.02427054,95.13374663],[4.53302961,0.02427226,95.13446475],[4.53303017,0.02427397,95.13518293],[4.53303073,0.02427568,95.13590117],[4.53303129,0.0242774,95.13661946],[4.53303185,0.02427911,95.13733781],[4.53303242,0.02428082,95.13805622],[4.53303298,0.02428254,95.1387747],[4.53303354,0.02428425,95.13949325],[4.5330341,0.02428596,95.14021186],[4.53303466,0.02428768,95.14093055],[4.53303522,0.02428939,95.14164932],[4.53303578,0.0242911,95.14236816],[4.53303635,0.02429282,95.14308709],[4.53303691,0.02429453,95.14380609],[4.53303747,0.02429624,95.14452519],[4.53303803,0.02429795,95.14524437],[4.53303859,0.02429967,95.14596365],[4.53303915,0.02430138,95.14668301],[4.53303972,0.02430309,95.14740248],[4.53304028,0.02430481,95.14812203],[4.53304084,0.02430652,95.14884167],[4.5330414,0.02430823,95.1495614],[4.53304196,0.02430995,95.1502812],[4.53304253,0.02431166,95.15100109],[4.53304309,0.02431337,95.15172106],[4.53304365,0.02431509,95.15244109],[4.53304421,0.0243168,95.1531612],[4.53304477,0.02431851,95.15388138],[4.53304533,0.02432022,95.15460163],[4.5330459,0.02432194,95.15532194],[4.53304646,0.02432365,95.15604231],[4.53304702,0.02432536,95.15676273],[4.53304758,0.02432708,95.15748322],[4.53304815,0.02432879,95.15820375],[4.53304871,0.0243305,95.15892434],[4.53304927,0.02433222,95.15964497],[4.53304983,0.02433393,95.16036564],[4.53305039,0.02433564,95.16108636],[4.53305096,0.02433736,95.16180712],[4.53305152,0.02433907,95.16252791],[4.53305208,0.02434078,95.16324874],[4.53305264,0.02434249,95.1639696],[4.5330532,0.02434421,95.16469049],[4.53305377,0.02434592,95.1654114],[4.53305433,0.02434763,95.16613233],[4.53305489,0.02434935,95.16685329],[4.53305545,0.02435106,95.16757426],[4.53305602,0.02435277,95.16829525],[4.53305658,0.02435449,95.16901625],[4.53305714,0.0243562,95.16973726],[4.5330577,0.02435791,95.17045828],[4.53305826,0.02435962,95.1711793],[4.53305883,0.02436134,95.17190032],[4.53305939,0.02436305,95.17262134],[4.53305995,0.02436476,95.17334236],[4.53306051,0.02436648,95.17406337],[4.53306107,0.02436819,95.17478437],[4.53306164,0.0243699,95.17550536],[4.5330622,0.02437162,95.17622634],[4.53306276,0.02437333,95.1769473],[4.53306332,0.02437504,95.17766824],[4.53306389,0.02437675,95.17838915],[4.53306445,0.02437847,95.17911004],[4.53306501,0.02438018,95.17983091],[4.53306557,0.02438189,95.18055174],[4.53306613,0.02438361,95.18127254],[4.5330667,0.02438532,95.18199331],[4.53306726,0.02438703,95.18271404],[4.53306782,0.02438875,95.18343473],[4.53306838,0.02439046,95.18415537],[4.53306894,0.02439217,95.18487597],[4.5330695,0.02439388,95.18559652],[4.53307007,0.0243956,95.18631701],[4.53307063,0.02439731,95.18703746],[4.53307119,0.02439902,95.18775785],[4.53307175,0.02440074,95.18847818],[4.53307231,0.02440245,95.18919844],[4.53307288,0.02440416,95.18991865],[4.53307344,0.02440588,95.19063878],[4.533074,0.02440759,95.19135885],[4.53307456,0.0244093,95.19207884],[4.53307512,0.02441102,95.19279876],[4.53307568,0.02441273,95.19351861],[4.53307624,0.02441444,95.19423837],[4.53307681,0.02441616,95.19495805],[4.53307737,0.02441787,95.19567764],[4.53307793,0.02441958,95.19639715],[4.53307849,0.0244213,95.19711657],[4.53307905,0.02442301,95.1978359],[4.53307961,0.02442472,95.19855513],[4.53308017,0.02442644,95.19927426],[4.53308074,0.02442815,95.19999329],[4.5330813,0.02442986,95.20071222],[4.53308186,0.02443158,95.20143104],[4.53308242,0.02443329,95.20214976],[4.53308298,0.024435,95.20286836],[4.53308354,0.02443672,95.20358685],[4.5330841,0.02443843,95.20430523],[4.53308466,0.02444014,95.20502348],[4.53308522,0.02444186,95.20574162],[4.53308578,0.02444357,95.20645963],[4.53308634,0.02444528,95.20717752],[4.5330869,0.024447,95.20789528],[4.53308747,0.02444871,95.20861291],[4.53308803,0.02445042,95.2093304],[4.53308859,0.02445214,95.21004776],[4.53308915,0.02445385,95.21076498],[4.53308971,0.02445557,95.21148206],[4.53309027,0.02445728,95.21219899],[4.53309083,0.02445899,95.21291578],[4.53309139,0.02446071,95.21363242],[4.53309195,0.02446242,95.21434891],[4.53309251,0.02446413,95.21506524],[4.53309307,0.02446585,95.21578142],[4.53309363,0.02446756,95.21649744],[4.53309419,0.02446927,95.2172133],[4.53309475,0.02447099,95.217929],[4.53309531,0.0244727,95.21864453],[4.53309587,0.02447442,95.21935991],[4.53309643,0.02447613,95.22007513],[4.53309699,0.02447784,95.2207902],[4.53309754,0.02447956,95.22150513],[4.5330981,0.02448127,95.22221992],[4.53309866,0.02448299,95.22293456],[4.53309922,0.0244847,95.22364908],[4.53309978,0.02448641,95.22436347],[4.53310034,0.02448813,95.22507773],[4.5331009,0.02448984,95.22579187],[4.53310146,0.02449156,95.22650589],[4.53310202,0.02449327,95.2272198],[4.53310258,0.02449498,95.2279336],[4.53310313,0.0244967,95.22864729],[4.53310369,0.02449841,95.22936089],[4.53310425,0.02450013,95.23007439],[4.53310481,0.02450184,95.23078779],[4.53310537,0.02450356,95.2315011],[4.53310593,0.02450527,95.23221433],[4.53310649,0.02450698,95.23292748],[4.53310704,0.0245087,95.23364056],[4.5331076,0.02451041,95.23435356],[4.53310816,0.02451213,95.23506649],[4.53310872,0.02451384,95.23577935],[4.53310928,0.02451556,95.23649216],[4.53310984,0.02451727,95.2372049],[4.53311039,0.02451898,95.2379176],[4.53311095,0.0245207,95.23863025],[4.53311151,0.02452241,95.23934285],[4.53311207,0.02452413,95.24005541],[4.53311263,0.02452584,95.24076793],[4.53311318,0.02452756,95.24148042],[4.53311374,0.02452927,95.24219288],[4.5331143,0.02453099,95.24290531],[4.53311486,0.0245327,95.24361773],[4.53311542,0.02453441,95.24433013],[4.53311597,0.02453613,95.24504251],[4.53311653,0.02453784,95.24575489],[4.53311709,0.02453956,95.24646726],[4.53311765,0.02454127,95.24717962],[4.5331182,0.02454299,95.24789199],[4.53311876,0.0245447,95.24860437],[4.53311932,0.02454642,95.24931676],[4.53311988,0.02454813,95.25002916],[4.53312043,0.02454984,95.25074158],[4.53312099,0.02455156,95.25145403],[4.53312155,0.02455327,95.25216649],[4.53312211,0.02455499,95.25287899],[4.53312266,0.0245567,95.25359153],[4.53312322,0.02455842,95.2543041],[4.53312378,0.02456013,95.25501671],[4.53312434,0.02456185,95.25572937],[4.53312489,0.02456356,95.25644208],[4.53312545,0.02456528,95.25715484],[4.53312601,0.02456699,95.25786767],[4.53312657,0.02456871,95.25858055],[4.53312712,0.02457042,95.25929349],[4.53312768,0.02457213,95.26000651],[4.53312824,0.02457385,95.2607196],[4.5331288,0.02457556,95.26143277],[4.53312935,0.02457728,95.26214602],[4.53312991,0.02457899,95.26285935],[4.53313047,0.02458071,95.26357277],[4.53313103,0.02458242,95.26428629],[4.53313158,0.02458414,95.2649999],[4.53313214,0.02458585,95.26571361],[4.5331327,0.02458757,95.26642743],[4.53313325,0.02458928,95.26714135],[4.53313381,0.024591,95.26785539],[4.53313437,0.02459271,95.26856954],[4.53313493,0.02459442,95.26928382],[4.53313548,0.02459614,95.26999821],[4.53313604,0.02459785,95.27071274],[4.5331366,0.02459957,95.2714274],[4.53313716,0.02460128,95.27214219],[4.53313771,0.024603,95.27285712],[4.53313827,0.02460471,95.27357219],[4.53313883,0.02460643,95.27428741],[4.53313939,0.02460814,95.27500279],[4.53313994,0.02460986,95.27571831],[4.5331405,0.02461157,95.276434],[4.53314106,0.02461329,95.27714985],[4.53314161,0.024615,95.27786586],[4.53314217,0.02461671,95.27858205],[4.53314273,0.02461843,95.27929841],[4.53314329,0.02462014,95.28001494],[4.53314384,0.02462186,95.28073166],[4.5331444,0.02462357,95.28144856],[4.53314496,0.02462529,95.28216566],[4.53314552,0.024627,95.28288295],[4.53314608,0.02462872,95.28360043],[4.53314663,0.02463043,95.28431811],[4.53314719,0.02463215,95.28503601],[4.53314775,0.02463386,95.2857541],[4.53314831,0.02463557,95.28647242],[4.53314886,0.02463729,95.28719094],[4.53314942,0.024639,95.28790969],[4.53314998,0.02464072,95.28862866],[4.53315054,0.02464243,95.28934786],[4.5331511,0.02464415,95.2900673],[4.53315165,0.02464586,95.29078696],[4.53315221,0.02464758,95.29150687],[4.53315277,0.02464929,95.29222702],[4.53315333,0.024651,95.29294742],[4.53315389,0.02465272,95.29366807],[4.53315444,0.02465443,95.29438897],[4.533155,0.02465615,95.29511014],[4.53315556,0.02465786,95.29583156],[4.53315612,0.02465958,95.29655325],[4.53315668,0.02466129,95.29727521],[4.53315723,0.024663,95.29799745],[4.53315779,0.02466472,95.29871996],[4.53315835,0.02466643,95.29944276],[4.53315891,0.02466815,95.30016582],[4.53315947,0.02466986,95.30088916],[4.53316003,0.02467158,95.30161277],[4.53316059,0.02467329,95.30233664],[4.53316114,0.024675,95.30306076],[4.5331617,0.02467672,95.30378514],[4.53316226,0.02467843,95.30450976],[4.53316282,0.02468015,95.30523463],[4.53316338,0.02468186,95.30595974],[4.53316394,0.02468358,95.30668508],[4.5331645,0.02468529,95.30741065],[4.53316506,0.024687,95.30813644],[4.53316561,0.02468872,95.30886246],[4.53316617,0.02469043,95.30958869],[4.53316673,0.02469215,95.31031513],[4.53316729,0.02469386,95.31104178],[4.53316785,0.02469557,95.31176863],[4.53316841,0.02469729,95.31249568],[4.53316897,0.024699,95.31322292],[4.53316953,0.02470072,95.31395035],[4.53317009,0.02470243,95.31467796],[4.53317065,0.02470414,95.31540575],[4.5331712,0.02470586,95.31613372],[4.53317176,0.02470757,95.31686185],[4.53317232,0.02470929,95.31759015],[4.53317288,0.024711,95.31831862],[4.53317344,0.02471272,95.31904724],[4.533174,0.02471443,95.31977601],[4.53317456,0.02471614,95.32050492],[4.53317512,0.02471786,95.32123398],[4.53317568,0.02471957,95.32196318],[4.53317624,0.02472129,95.32269252],[4.53317679,0.024723,95.32342198],[4.53317735,0.02472471,95.32415156],[4.53317791,0.02472643,95.32488127],[4.53317847,0.02472814,95.32561109],[4.53317903,0.02472986,95.32634102],[4.53317959,0.02473157,95.32707106],[4.53318015,0.02473328,95.3278012],[4.53318071,0.024735,95.32853144],[4.53318127,0.02473671,95.32926177],[4.53318183,0.02473843,95.32999219],[4.53318238,0.02474014,95.33072269],[4.53318294,0.02474185,95.33145327],[4.5331835,0.02474357,95.33218393],[4.53318406,0.02474528,95.33291466],[4.5331536,0.02475532,95.23787914]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1,"sOffset":403.9617323989}},{"geometry":{"coordinates":[[[4.53318406,0.02474528,95.33291466],[4.5331835,0.02474357,95.33218393],[4.53318294,0.02474185,95.33145327],[4.53318238,0.02474014,95.33072269],[4.53318183,0.02473843,95.32999219],[4.53318127,0.02473671,95.32926177],[4.53318071,0.024735,95.32853144],[4.53318015,0.02473328,95.3278012],[4.53317959,0.02473157,95.32707106],[4.53317903,0.02472986,95.32634102],[4.53317847,0.02472814,95.32561109],[4.53317791,0.02472643,95.32488127],[4.53317735,0.02472471,95.32415156],[4.53317679,0.024723,95.32342198],[4.53317624,0.02472129,95.32269252],[4.53317568,0.02471957,95.32196318],[4.53317512,0.02471786,95.32123398],[4.53317456,0.02471614,95.32050492],[4.533174,0.02471443,95.31977601],[4.53317344,0.02471272,95.31904724],[4.53317288,0.024711,95.31831862],[4.53317232,0.02470929,95.31759015],[4.53317176,0.02470757,95.31686185],[4.5331712,0.02470586,95.31613372],[4.53317065,0.02470414,95.31540575],[4.53317009,0.02470243,95.31467796],[4.53316953,0.02470072,95.31395035],[4.53316897,0.024699,95.31322292],[4.53316841,0.02469729,95.31249568],[4.53316785,0.02469557,95.31176863],[4.53316729,0.02469386,95.31104178],[4.53316673,0.02469215,95.31031513],[4.53316617,0.02469043,95.30958869],[4.53316561,0.02468872,95.30886246],[4.53316506,0.024687,95.30813644],[4.5331645,0.02468529,95.30741065],[4.53316394,0.02468358,95.30668508],[4.53316338,0.02468186,95.30595974],[4.53316282,0.02468015,95.30523463],[4.53316226,0.02467843,95.30450976],[4.5331617,0.02467672,95.30378514],[4.53316114,0.024675,95.30306076],[4.53316059,0.02467329,95.30233664],[4.53316003,0.02467158,95.30161277],[4.53315947,0.02466986,95.30088916],[4.53315891,0.02466815,95.30016582],[4.53315835,0.02466643,95.29944276],[4.53315779,0.02466472,95.29871996],[4.53315723,0.024663,95.29799745],[4.53315668,0.02466129,95.29727521],[4.53315612,0.02465958,95.29655325],[4.53315556,0.02465786,95.29583156],[4.533155,0.02465615,95.29511014],[4.53315444,0.02465443,95.29438897],[4.53315389,0.02465272,95.29366807],[4.53315333,0.024651,95.29294742],[4.53315277,0.02464929,95.29222702],[4.53315221,0.02464758,95.29150687],[4.53315165,0.02464586,95.29078696],[4.5331511,0.02464415,95.2900673],[4.53315054,0.02464243,95.28934786],[4.53314998,0.02464072,95.28862866],[4.53314942,0.024639,95.28790969],[4.53314886,0.02463729,95.28719094],[4.53314831,0.02463557,95.28647242],[4.53314775,0.02463386,95.2857541],[4.53314719,0.02463215,95.28503601],[4.53314663,0.02463043,95.28431811],[4.53314608,0.02462872,95.28360043],[4.53314552,0.024627,95.28288295],[4.53314496,0.02462529,95.28216566],[4.5331444,0.02462357,95.28144856],[4.53314384,0.02462186,95.28073166],[4.53314329,0.02462014,95.28001494],[4.53314273,0.02461843,95.27929841],[4.53314217,0.02461671,95.27858205],[4.53314161,0.024615,95.27786586],[4.53314106,0.02461329,95.27714985],[4.5331405,0.02461157,95.276434],[4.53313994,0.02460986,95.27571831],[4.53313939,0.02460814,95.27500279],[4.53313883,0.02460643,95.27428741],[4.53313827,0.02460471,95.27357219],[4.53313771,0.024603,95.27285712],[4.53313716,0.02460128,95.27214219],[4.5331366,0.02459957,95.2714274],[4.53313604,0.02459785,95.27071274],[4.53313548,0.02459614,95.26999821],[4.53313493,0.02459442,95.26928382],[4.53313437,0.02459271,95.26856954],[4.53313381,0.024591,95.26785539],[4.53313325,0.02458928,95.26714135],[4.5331327,0.02458757,95.26642743],[4.53313214,0.02458585,95.26571361],[4.53313158,0.02458414,95.2649999],[4.53313103,0.02458242,95.26428629],[4.53313047,0.02458071,95.26357277],[4.53312991,0.02457899,95.26285935],[4.53312935,0.02457728,95.26214602],[4.5331288,0.02457556,95.26143277],[4.53312824,0.02457385,95.2607196],[4.53312768,0.02457213,95.26000651],[4.53312712,0.02457042,95.25929349],[4.53312657,0.02456871,95.25858055],[4.53312601,0.02456699,95.25786767],[4.53312545,0.02456528,95.25715484],[4.53312489,0.02456356,95.25644208],[4.53312434,0.02456185,95.25572937],[4.53312378,0.02456013,95.25501671],[4.53312322,0.02455842,95.2543041],[4.53312266,0.0245567,95.25359153],[4.53312211,0.02455499,95.25287899],[4.53312155,0.02455327,95.25216649],[4.53312099,0.02455156,95.25145403],[4.53312043,0.02454984,95.25074158],[4.53311988,0.02454813,95.25002916],[4.53311932,0.02454642,95.24931676],[4.53311876,0.0245447,95.24860437],[4.5331182,0.02454299,95.24789199],[4.53311765,0.02454127,95.24717962],[4.53311709,0.02453956,95.24646726],[4.53311653,0.02453784,95.24575489],[4.53311597,0.02453613,95.24504251],[4.53311542,0.02453441,95.24433013],[4.53311486,0.0245327,95.24361773],[4.5331143,0.02453099,95.24290531],[4.53311374,0.02452927,95.24219288],[4.53311318,0.02452756,95.24148042],[4.53311263,0.02452584,95.24076793],[4.53311207,0.02452413,95.24005541],[4.53311151,0.02452241,95.23934285],[4.53311095,0.0245207,95.23863025],[4.53311039,0.02451898,95.2379176],[4.53310984,0.02451727,95.2372049],[4.53310928,0.02451556,95.23649216],[4.53310872,0.02451384,95.23577935],[4.53310816,0.02451213,95.23506649],[4.5331076,0.02451041,95.23435356],[4.53310704,0.0245087,95.23364056],[4.53310649,0.02450698,95.23292748],[4.53310593,0.02450527,95.23221433],[4.53310537,0.02450356,95.2315011],[4.53310481,0.02450184,95.23078779],[4.53310425,0.02450013,95.23007439],[4.53310369,0.02449841,95.22936089],[4.53310313,0.0244967,95.22864729],[4.53310258,0.02449498,95.2279336],[4.53310202,0.02449327,95.2272198],[4.53310146,0.02449156,95.22650589],[4.5331009,0.02448984,95.22579187],[4.53310034,0.02448813,95.22507773],[4.53309978,0.02448641,95.22436347],[4.53309922,0.0244847,95.22364908],[4.53309866,0.02448299,95.22293456],[4.5330981,0.02448127,95.22221992],[4.53309754,0.02447956,95.22150513],[4.53309699,0.02447784,95.2207902],[4.53309643,0.02447613,95.22007513],[4.53309587,0.02447442,95.21935991],[4.53309531,0.0244727,95.21864453],[4.53309475,0.02447099,95.217929],[4.53309419,0.02446927,95.2172133],[4.53309363,0.02446756,95.21649744],[4.53309307,0.02446585,95.21578142],[4.53309251,0.02446413,95.21506524],[4.53309195,0.02446242,95.21434891],[4.53309139,0.02446071,95.21363242],[4.53309083,0.02445899,95.21291578],[4.53309027,0.02445728,95.21219899],[4.53308971,0.02445557,95.21148206],[4.53308915,0.02445385,95.21076498],[4.53308859,0.02445214,95.21004776],[4.53308803,0.02445042,95.2093304],[4.53308747,0.02444871,95.20861291],[4.5330869,0.024447,95.20789528],[4.53308634,0.02444528,95.20717752],[4.53308578,0.02444357,95.20645963],[4.53308522,0.02444186,95.20574162],[4.53308466,0.02444014,95.20502348],[4.5330841,0.02443843,95.20430523],[4.53308354,0.02443672,95.20358685],[4.53308298,0.024435,95.20286836],[4.53308242,0.02443329,95.20214976],[4.53308186,0.02443158,95.20143104],[4.5330813,0.02442986,95.20071222],[4.53308074,0.02442815,95.19999329],[4.53308017,0.02442644,95.19927426],[4.53307961,0.02442472,95.19855513],[4.53307905,0.02442301,95.1978359],[4.53307849,0.0244213,95.19711657],[4.53307793,0.02441958,95.19639715],[4.53307737,0.02441787,95.19567764],[4.53307681,0.02441616,95.19495805],[4.53307624,0.02441444,95.19423837],[4.53307568,0.02441273,95.19351861],[4.53307512,0.02441102,95.19279876],[4.53307456,0.0244093,95.19207884],[4.533074,0.02440759,95.19135885],[4.53307344,0.02440588,95.19063878],[4.53307288,0.02440416,95.18991865],[4.53307231,0.02440245,95.18919844],[4.53307175,0.02440074,95.18847818],[4.53307119,0.02439902,95.18775785],[4.53307063,0.02439731,95.18703746],[4.53307007,0.0243956,95.18631701],[4.5330695,0.02439388,95.18559652],[4.53306894,0.02439217,95.18487597],[4.53306838,0.02439046,95.18415537],[4.53306782,0.02438875,95.18343473],[4.53306726,0.02438703,95.18271404],[4.5330667,0.02438532,95.18199331],[4.53306613,0.02438361,95.18127254],[4.53306557,0.02438189,95.18055174],[4.53306501,0.02438018,95.17983091],[4.53306445,0.02437847,95.17911004],[4.53306389,0.02437675,95.17838915],[4.53306332,0.02437504,95.17766824],[4.53306276,0.02437333,95.1769473],[4.5330622,0.02437162,95.17622634],[4.53306164,0.0243699,95.17550536],[4.53306107,0.02436819,95.17478437],[4.53306051,0.02436648,95.17406337],[4.53305995,0.02436476,95.17334236],[4.53305939,0.02436305,95.17262134],[4.53305883,0.02436134,95.17190032],[4.53305826,0.02435962,95.1711793],[4.5330577,0.02435791,95.17045828],[4.53305714,0.0243562,95.16973726],[4.53305658,0.02435449,95.16901625],[4.53305602,0.02435277,95.16829525],[4.53305545,0.02435106,95.16757426],[4.53305489,0.02434935,95.16685329],[4.53305433,0.02434763,95.16613233],[4.53305377,0.02434592,95.1654114],[4.5330532,0.02434421,95.16469049],[4.53305264,0.02434249,95.1639696],[4.53305208,0.02434078,95.16324874],[4.53305152,0.02433907,95.16252791],[4.53305096,0.02433736,95.16180712],[4.53305039,0.02433564,95.16108636],[4.53304983,0.02433393,95.16036564],[4.53304927,0.02433222,95.15964497],[4.53304871,0.0243305,95.15892434],[4.53304815,0.02432879,95.15820375],[4.53304758,0.02432708,95.15748322],[4.53304702,0.02432536,95.15676273],[4.53304646,0.02432365,95.15604231],[4.5330459,0.02432194,95.15532194],[4.53304533,0.02432022,95.15460163],[4.53304477,0.02431851,95.15388138],[4.53304421,0.0243168,95.1531612],[4.53304365,0.02431509,95.15244109],[4.53304309,0.02431337,95.15172106],[4.53304253,0.02431166,95.15100109],[4.53304196,0.02430995,95.1502812],[4.5330414,0.02430823,95.1495614],[4.53304084,0.02430652,95.14884167],[4.53304028,0.02430481,95.14812203],[4.53303972,0.02430309,95.14740248],[4.53303915,0.02430138,95.14668301],[4.53303859,0.02429967,95.14596365],[4.53303803,0.02429795,95.14524437],[4.53303747,0.02429624,95.14452519],[4.53303691,0.02429453,95.14380609],[4.53303635,0.02429282,95.14308709],[4.53303578,0.0242911,95.14236816],[4.53303522,0.02428939,95.14164932],[4.53303466,0.02428768,95.14093055],[4.5330341,0.02428596,95.14021186],[4.53303354,0.02428425,95.13949325],[4.53303298,0.02428254,95.1387747],[4.53303242,0.02428082,95.13805622],[4.53303185,0.02427911,95.13733781],[4.53303129,0.0242774,95.13661946],[4.53303073,0.02427568,95.13590117],[4.53303017,0.02427397,95.13518293],[4.53302961,0.02427226,95.13446475],[4.53302905,0.02427054,95.13374663],[4.53302849,0.02426883,95.13302855],[4.53302792,0.02426712,95.13231051],[4.53302736,0.0242654,95.13159252],[4.5330268,0.02426369,95.13087457],[4.53302624,0.02426198,95.13015666],[4.53302568,0.02426026,95.12943879],[4.53302512,0.02425855,95.12872094],[4.53302456,0.02425684,95.12800313],[4.533024,0.02425512,95.12728534],[4.53302343,0.02425341,95.12656758],[4.53302287,0.0242517,95.12584984],[4.53302231,0.02424998,95.12513212],[4.53302175,0.02424827,95.12441442],[4.53302119,0.02424656,95.12369673],[4.53302063,0.02424484,95.12297905],[4.53302007,0.02424313,95.12226138],[4.53301951,0.02424142,95.12154372],[4.53301895,0.0242397,95.12082605],[4.53301839,0.02423799,95.12010839],[4.53301782,0.02423628,95.11939073],[4.53301726,0.02423456,95.11867306],[4.5330167,0.02423285,95.11795538],[4.53301614,0.02423114,95.11723769],[4.53301558,0.02422942,95.11651999],[4.53301502,0.02422771,95.11580227],[4.53301446,0.024226,95.11508453],[4.5330139,0.02422428,95.11436677],[4.53301334,0.02422257,95.11364899],[4.53301277,0.02422086,95.11293118],[4.53301221,0.02421914,95.11221334],[4.53301165,0.02421743,95.11149547],[4.53301109,0.02421572,95.11077756],[4.53301053,0.024214,95.11005961],[4.53300997,0.02421229,95.10934162],[4.53300941,0.02421058,95.10862359],[4.53300885,0.02420886,95.10790551],[4.53300829,0.02420715,95.10718739],[4.53300773,0.02420544,95.10646921],[4.53300716,0.02420372,95.10575098],[4.5330066,0.02420201,95.10503268],[4.53300604,0.0242003,95.10431433],[4.53300548,0.02419858,95.10359592],[4.53300492,0.02419687,95.10287744],[4.53300436,0.02419516,95.10215889],[4.5330038,0.02419344,95.10144028],[4.53300324,0.02419173,95.10072158],[4.53300268,0.02419002,95.10000281],[4.53300212,0.0241883,95.09928397],[4.53300155,0.02418659,95.09856503],[4.53300099,0.02418488,95.09784602],[4.53300043,0.02418316,95.09712692],[4.53299987,0.02418145,95.09640772],[4.53299931,0.02417974,95.09568844],[4.53299875,0.02417802,95.09496905],[4.53299819,0.02417631,95.09424957],[4.53299763,0.0241746,95.09352999],[4.53299706,0.02417288,95.0928103],[4.5329965,0.02417117,95.09209051],[4.53299594,0.02416946,95.0913706],[4.53299538,0.02416774,95.09065059],[4.53299482,0.02416603,95.08993045],[4.53299426,0.02416432,95.0892102],[4.5329937,0.0241626,95.08848983],[4.53299314,0.02416089,95.08776934],[4.53299257,0.02415918,95.08704872],[4.53299255,0.0241591,95.0870176],[4.53299569,0.02415806,95.09728159],[4.53299571,0.02415813,95.09731335],[4.53299628,0.02415984,95.09804919],[4.53299684,0.02416156,95.09878577],[4.53299741,0.02416327,95.09952303],[4.53299798,0.02416498,95.10026091],[4.53299854,0.02416669,95.10099936],[4.53299911,0.0241684,95.10173832],[4.53299968,0.02417011,95.10247774],[4.53300025,0.02417182,95.10321755],[4.53300081,0.02417354,95.1039577],[4.53300138,0.02417525,95.10469813],[4.53300195,0.02417696,95.10543879],[4.53300252,0.02417867,95.10617962],[4.53300308,0.02418038,95.10692056],[4.53300365,0.02418209,95.10766156],[4.53300422,0.0241838,95.10840257],[4.53300479,0.02418551,95.10914351],[4.53300536,0.02418722,95.10988434],[4.53300593,0.02418893,95.11062501],[4.53300649,0.02419065,95.11136545],[4.53300706,0.02419236,95.1121056],[4.53300763,0.02419407,95.11284542],[4.5330082,0.02419578,95.11358484],[4.53300876,0.02419749,95.11432381],[4.53300933,0.0241992,95.11506227],[4.5330099,0.02420091,95.11580017],[4.53301047,0.02420262,95.11653745],[4.53301103,0.02420434,95.11727405],[4.5330116,0.02420605,95.11800992],[4.53301217,0.02420776,95.118745],[4.53301273,0.02420947,95.11947923],[4.5330133,0.02421118,95.12021256],[4.53301386,0.02421289,95.12094493],[4.53301443,0.02421461,95.12167629],[4.53301499,0.02421632,95.12240658],[4.53301556,0.02421803,95.12313574],[4.53301612,0.02421974,95.12386372],[4.53301669,0.02422145,95.12459046],[4.53301725,0.02422317,95.1253159],[4.53301781,0.02422488,95.12604],[4.53301838,0.02422659,95.12676268],[4.53301894,0.02422831,95.12748391],[4.5330195,0.02423002,95.12820361],[4.53302006,0.02423173,95.12892175],[4.53302062,0.02423345,95.1296383],[4.53302119,0.02423516,95.13035332],[4.53302175,0.02423687,95.13106685],[4.53302231,0.02423859,95.13177893],[4.53302286,0.0242403,95.13248962],[4.53302342,0.02424201,95.13319894],[4.53302398,0.02424373,95.13390695],[4.53302454,0.02424544,95.13461369],[4.5330251,0.02424716,95.13531921],[4.53302566,0.02424887,95.13602355],[4.53302621,0.02425059,95.13672676],[4.53302677,0.0242523,95.13742887],[4.53302733,0.02425402,95.13812994],[4.53302788,0.02425573,95.13883001],[4.53302844,0.02425745,95.13952912],[4.53302899,0.02425916,95.14022732],[4.53302955,0.02426088,95.14092465],[4.5330301,0.02426259,95.14162115],[4.53303066,0.02426431,95.14231688],[4.53303121,0.02426602,95.14301187],[4.53303177,0.02426774,95.14370617],[4.53303232,0.02426945,95.14439983],[4.53303288,0.02427117,95.14509288],[4.53303343,0.02427289,95.14578537],[4.53303398,0.0242746,95.14647735],[4.53303454,0.02427632,95.14716886],[4.53303509,0.02427803,95.14785994],[4.53303564,0.02427975,95.14855065],[4.5330362,0.02428147,95.14924101],[4.53303675,0.02428318,95.14993108],[4.5330373,0.0242849,95.15062091],[4.53303786,0.02428661,95.15131053],[4.53303841,0.02428833,95.15199998],[4.53303896,0.02429005,95.15268933],[4.53303952,0.02429176,95.15337859],[4.53304007,0.02429348,95.15406783],[4.53304062,0.02429519,95.15475709],[4.53304117,0.02429691,95.1554464],[4.53304173,0.02429863,95.15613582],[4.53304228,0.02430034,95.15682538],[4.53304283,0.02430206,95.15751513],[4.53304339,0.02430377,95.1582051],[4.53304394,0.02430549,95.15889534],[4.53304449,0.02430721,95.15958588],[4.53304505,0.02430892,95.16027676],[4.5330456,0.02431064,95.16096802],[4.53304615,0.02431235,95.16165969],[4.53304671,0.02431407,95.16235182],[4.53304726,0.02431579,95.16304444],[4.53304782,0.0243175,95.1637376],[4.53304837,0.02431922,95.16443133],[4.53304892,0.02432093,95.16512566],[4.53304948,0.02432265,95.16582064],[4.53305003,0.02432436,95.1665163],[4.53305059,0.02432608,95.16721268],[4.53305114,0.02432779,95.16790977],[4.5330517,0.02432951,95.16860756],[4.53305226,0.02433122,95.16930605],[4.53305281,0.02433294,95.17000523],[4.53305337,0.02433465,95.17070508],[4.53305392,0.02433637,95.17140561],[4.53305448,0.02433808,95.17210679],[4.53305504,0.0243398,95.17280862],[4.53305559,0.02434151,95.1735111],[4.53305615,0.02434323,95.1742142],[4.53305671,0.02434494,95.17491793],[4.53305727,0.02434666,95.17562228],[4.53305782,0.02434837,95.17632723],[4.53305838,0.02435009,95.17703278],[4.53305894,0.0243518,95.17773892],[4.5330595,0.02435352,95.17844563],[4.53306006,0.02435523,95.17915292],[4.53306062,0.02435694,95.17986077],[4.53306117,0.02435866,95.18056917],[4.53306173,0.02436037,95.18127811],[4.53306229,0.02436209,95.18198759],[4.53306285,0.0243638,95.18269759],[4.53306341,0.02436551,95.18340812],[4.53306397,0.02436723,95.18411915],[4.53306453,0.02436894,95.18483067],[4.53306509,0.02437066,95.18554269],[4.53306565,0.02437237,95.18625519],[4.53306621,0.02437408,95.18696817],[4.53306677,0.0243758,95.1876816],[4.53306733,0.02437751,95.1883955],[4.53306789,0.02437922,95.18910983],[4.53306845,0.02438094,95.18982461],[4.53306901,0.02438265,95.19053981],[4.53306957,0.02438436,95.19125544],[4.53307013,0.02438608,95.19197147],[4.5330707,0.02438779,95.19268791],[4.53307126,0.0243895,95.19340474],[4.53307182,0.02439122,95.19412195],[4.53307238,0.02439293,95.19483954],[4.53307294,0.02439464,95.1955575],[4.5330735,0.02439636,95.19627581],[4.53307407,0.02439807,95.19699448],[4.53307463,0.02439978,95.19771348],[4.53307519,0.0244015,95.19843282],[4.53307575,0.02440321,95.19915247],[4.53307631,0.02440492,95.19987245],[4.53307688,0.02440664,95.20059273],[4.53307744,0.02440835,95.2013133],[4.533078,0.02441006,95.20203416],[4.53307856,0.02441177,95.20275531],[4.53307913,0.02441349,95.20347672],[4.53307969,0.0244152,95.20419839],[4.53308025,0.02441691,95.20492032],[4.53308081,0.02441863,95.20564248],[4.53308138,0.02442034,95.20636488],[4.53308194,0.02442205,95.20708749],[4.5330825,0.02442376,95.20781032],[4.53308306,0.02442548,95.20853334],[4.53308363,0.02442719,95.20925656],[4.53308419,0.0244289,95.20997996],[4.53308475,0.02443062,95.21070353],[4.53308532,0.02443233,95.21142726],[4.53308588,0.02443404,95.21215114],[4.53308644,0.02443575,95.21287516],[4.53308701,0.02443747,95.21359931],[4.53308757,0.02443918,95.21432359],[4.53308813,0.02444089,95.21504797],[4.5330887,0.0244426,95.21577246],[4.53308926,0.02444432,95.21649703],[4.53308982,0.02444603,95.21722169],[4.53309039,0.02444774,95.21794642],[4.53309095,0.02444946,95.21867122],[4.53309151,0.02445117,95.21939606],[4.53309208,0.02445288,95.22012095],[4.53309264,0.02445459,95.22084587],[4.5330932,0.02445631,95.22157081],[4.53309377,0.02445802,95.22229576],[4.53309433,0.02445973,95.22302072],[4.53309489,0.02446144,95.22374567],[4.53309546,0.02446316,95.2244706],[4.53309602,0.02446487,95.22519551],[4.53309658,0.02446658,95.22592038],[4.53309715,0.02446829,95.22664521],[4.53309771,0.02447001,95.22736998],[4.53309827,0.02447172,95.22809468],[4.53309884,0.02447343,95.22881933],[4.5330994,0.02447515,95.22954391],[4.53309996,0.02447686,95.23026841],[4.53310052,0.02447857,95.23099285],[4.53310109,0.02448028,95.2317172],[4.53310165,0.024482,95.23244148],[4.53310221,0.02448371,95.23316567],[4.53310278,0.02448542,95.23388978],[4.53310334,0.02448714,95.23461379],[4.5331039,0.02448885,95.23533772],[4.53310446,0.02449056,95.23606155],[4.53310503,0.02449227,95.23678528],[4.53310559,0.02449399,95.23750891],[4.53310615,0.0244957,95.23823243],[4.53310671,0.02449741,95.23895584],[4.53310728,0.02449913,95.23967915],[4.53310784,0.02450084,95.24040234],[4.5331084,0.02450255,95.24112541],[4.53310896,0.02450426,95.24184836],[4.53310952,0.02450598,95.24257119],[4.53311009,0.02450769,95.24329389],[4.53311065,0.0245094,95.24401646],[4.53311121,0.02451112,95.24473889],[4.53311177,0.02451283,95.24546119],[4.53311233,0.02451454,95.24618336],[4.5331129,0.02451626,95.24690537],[4.53311346,0.02451797,95.24762725],[4.53311402,0.02451968,95.24834897],[4.53311458,0.0245214,95.24907055],[4.53311514,0.02452311,95.24979196],[4.5331157,0.02452482,95.25051322],[4.53311626,0.02452654,95.25123432],[4.53311682,0.02452825,95.25195526],[4.53311739,0.02452996,95.25267603],[4.53311795,0.02453168,95.25339663],[4.53311851,0.02453339,95.25411705],[4.53311907,0.0245351,95.2548373],[4.53311963,0.02453682,95.25555737],[4.53312019,0.02453853,95.25627725],[4.53312075,0.02454024,95.25699696],[4.53312131,0.02454196,95.25771647],[4.53312187,0.02454367,95.25843579],[4.53312243,0.02454539,95.25915491],[4.53312299,0.0245471,95.25987384],[4.53312355,0.02454881,95.26059257],[4.53312411,0.02455053,95.26131109],[4.53312467,0.02455224,95.26202941],[4.53312523,0.02455395,95.26274752],[4.53312579,0.02455567,95.26346541],[4.53312635,0.02455738,95.26418309],[4.53312691,0.0245591,95.26490055],[4.53312747,0.02456081,95.2656178],[4.53312803,0.02456252,95.26633485],[4.53312859,0.02456424,95.2670517],[4.53312915,0.02456595,95.26776838],[4.53312971,0.02456767,95.26848488],[4.53313027,0.02456938,95.26920121],[4.53313082,0.02457109,95.26991739],[4.53313138,0.02457281,95.27063341],[4.53313194,0.02457452,95.2713493],[4.5331325,0.02457624,95.27206506],[4.53313306,0.02457795,95.2727807],[4.53313362,0.02457967,95.27349622],[4.53313418,0.02458138,95.27421164],[4.53313473,0.02458309,95.27492697],[4.53313529,0.02458481,95.27564221],[4.53313585,0.02458652,95.27635737],[4.53313641,0.02458824,95.27707247],[4.53313697,0.02458995,95.2777875],[4.53313753,0.02459167,95.27850249],[4.53313808,0.02459338,95.27921743],[4.53313864,0.0245951,95.27993234],[4.5331392,0.02459681,95.28064723],[4.53313976,0.02459852,95.2813621],[4.53314032,0.02460024,95.28207696],[4.53314087,0.02460195,95.28279183],[4.53314143,0.02460367,95.2835067],[4.53314199,0.02460538,95.2842216],[4.53314255,0.0246071,95.28493652],[4.5331431,0.02460881,95.28565148],[4.53314366,0.02461053,95.28636649],[4.53314422,0.02461224,95.28708155],[4.53314478,0.02461396,95.28779667],[4.53314533,0.02461567,95.28851187],[4.53314589,0.02461738,95.28922715],[4.53314645,0.0246191,95.28994251],[4.53314701,0.02462081,95.29065798],[4.53314756,0.02462253,95.29137355],[4.53314812,0.02462424,95.29208924],[4.53314868,0.02462596,95.29280505],[4.53314924,0.02462767,95.293521],[4.53314979,0.02462939,95.29423708],[4.53315035,0.0246311,95.29495332],[4.53315091,0.02463282,95.29566972],[4.53315147,0.02463453,95.29638628],[4.53315203,0.02463624,95.29710302],[4.53315258,0.02463796,95.29781995],[4.53315314,0.02463967,95.29853707],[4.5331537,0.02464139,95.29925439],[4.53315426,0.0246431,95.29997193],[4.53315481,0.02464482,95.30068968],[4.53315537,0.02464653,95.30140766],[4.53315593,0.02464825,95.30212588],[4.53315649,0.02464996,95.30284435],[4.53315704,0.02465168,95.30356307],[4.5331576,0.02465339,95.30428205],[4.53315816,0.0246551,95.30500131],[4.53315872,0.02465682,95.30572084],[4.53315928,0.02465853,95.30644067],[4.53315983,0.02466025,95.30716079],[4.53316039,0.02466196,95.30788122],[4.53316095,0.02466368,95.30860197],[4.53316151,0.02466539,95.30932303],[4.53316207,0.02466711,95.31004442],[4.53316263,0.02466882,95.31076613],[4.53316318,0.02467053,95.31148817],[4.53316374,0.02467225,95.31221052],[4.5331643,0.02467396,95.3129332],[4.53316486,0.02467568,95.31365621],[4.53316542,0.02467739,95.31437953],[4.53316598,0.02467911,95.31510318],[4.53316653,0.02468082,95.31582716],[4.53316709,0.02468253,95.31655145],[4.53316765,0.02468425,95.31727608],[4.53316821,0.02468596,95.31800102],[4.53316877,0.02468768,95.31872629],[4.53316933,0.02468939,95.31945189],[4.53316989,0.02469111,95.32017781],[4.53317045,0.02469282,95.32090406],[4.53317101,0.02469453,95.32163063],[4.53317157,0.02469625,95.32235753],[4.53317212,0.02469796,95.32308475],[4.53317268,0.02469968,95.3238123],[4.53317324,0.02470139,95.32454017],[4.5331738,0.0247031,95.32526838],[4.53317436,0.02470482,95.32599691],[4.53317492,0.02470653,95.32672576],[4.53317548,0.02470825,95.32745494],[4.53317604,0.02470996,95.32818445],[4.5331766,0.02471167,95.32891429],[4.53317716,0.02471339,95.32964446],[4.53317772,0.0247151,95.33037495],[4.53317828,0.02471681,95.33110577],[4.53317884,0.02471853,95.33183693],[4.5331794,0.02472024,95.33256841],[4.53317996,0.02472196,95.33330021],[4.53318052,0.02472367,95.33403235],[4.53318108,0.02472538,95.33476482],[4.53318164,0.0247271,95.33549762],[4.5331822,0.02472881,95.33623075],[4.53318276,0.02473053,95.33696421],[4.53318332,0.02473224,95.33769799],[4.53318388,0.02473395,95.33843211],[4.53318444,0.02473567,95.33916657],[4.533185,0.02473738,95.33990135],[4.53318556,0.02473909,95.34063646],[4.53318612,0.02474081,95.34137191],[4.53318668,0.02474252,95.34210769],[4.53318724,0.02474423,95.3428438],[4.53318406,0.02474528,95.33291466]]],"type":"Polygon"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":1,"type":"shoulder","predecessorId":1,"sOffset":403.9617323989}},{"geometry":{"coordinates":[[[4.53318724,0.02474423,95.3428438],[4.53318668,0.02474252,95.34210769],[4.53318612,0.02474081,95.34137191],[4.53318556,0.02473909,95.34063646],[4.533185,0.02473738,95.33990135],[4.53318444,0.02473567,95.33916657],[4.53318388,0.02473395,95.33843211],[4.53318332,0.02473224,95.33769799],[4.53318276,0.02473053,95.33696421],[4.5331822,0.02472881,95.33623075],[4.53318164,0.0247271,95.33549762],[4.53318108,0.02472538,95.33476482],[4.53318052,0.02472367,95.33403235],[4.53317996,0.02472196,95.33330021],[4.5331794,0.02472024,95.33256841],[4.53317884,0.02471853,95.33183693],[4.53317828,0.02471681,95.33110577],[4.53317772,0.0247151,95.33037495],[4.53317716,0.02471339,95.32964446],[4.5331766,0.02471167,95.32891429],[4.53317604,0.02470996,95.32818445],[4.53317548,0.02470825,95.32745494],[4.53317492,0.02470653,95.32672576],[4.53317436,0.02470482,95.32599691],[4.5331738,0.0247031,95.32526838],[4.53317324,0.02470139,95.32454017],[4.53317268,0.02469968,95.3238123],[4.53317212,0.02469796,95.32308475],[4.53317157,0.02469625,95.32235753],[4.53317101,0.02469453,95.32163063],[4.53317045,0.02469282,95.32090406],[4.53316989,0.02469111,95.32017781],[4.53316933,0.02468939,95.31945189],[4.53316877,0.02468768,95.31872629],[4.53316821,0.02468596,95.31800102],[4.53316765,0.02468425,95.31727608],[4.53316709,0.02468253,95.31655145],[4.53316653,0.02468082,95.31582716],[4.53316598,0.02467911,95.31510318],[4.53316542,0.02467739,95.31437953],[4.53316486,0.02467568,95.31365621],[4.5331643,0.02467396,95.3129332],[4.53316374,0.02467225,95.31221052],[4.53316318,0.02467053,95.31148817],[4.53316263,0.02466882,95.31076613],[4.53316207,0.02466711,95.31004442],[4.53316151,0.02466539,95.30932303],[4.53316095,0.02466368,95.30860197],[4.53316039,0.02466196,95.30788122],[4.53315983,0.02466025,95.30716079],[4.53315928,0.02465853,95.30644067],[4.53315872,0.02465682,95.30572084],[4.53315816,0.0246551,95.30500131],[4.5331576,0.02465339,95.30428205],[4.53315704,0.02465168,95.30356307],[4.53315649,0.02464996,95.30284435],[4.53315593,0.02464825,95.30212588],[4.53315537,0.02464653,95.30140766],[4.53315481,0.02464482,95.30068968],[4.53315426,0.0246431,95.29997193],[4.5331537,0.02464139,95.29925439],[4.53315314,0.02463967,95.29853707],[4.53315258,0.02463796,95.29781995],[4.53315203,0.02463624,95.29710302],[4.53315147,0.02463453,95.29638628],[4.53315091,0.02463282,95.29566972],[4.53315035,0.0246311,95.29495332],[4.53314979,0.02462939,95.29423708],[4.53314924,0.02462767,95.293521],[4.53314868,0.02462596,95.29280505],[4.53314812,0.02462424,95.29208924],[4.53314756,0.02462253,95.29137355],[4.53314701,0.02462081,95.29065798],[4.53314645,0.0246191,95.28994251],[4.53314589,0.02461738,95.28922715],[4.53314533,0.02461567,95.28851187],[4.53314478,0.02461396,95.28779667],[4.53314422,0.02461224,95.28708155],[4.53314366,0.02461053,95.28636649],[4.5331431,0.02460881,95.28565148],[4.53314255,0.0246071,95.28493652],[4.53314199,0.02460538,95.2842216],[4.53314143,0.02460367,95.2835067],[4.53314087,0.02460195,95.28279183],[4.53314032,0.02460024,95.28207696],[4.53313976,0.02459852,95.2813621],[4.5331392,0.02459681,95.28064723],[4.53313864,0.0245951,95.27993234],[4.53313808,0.02459338,95.27921743],[4.53313753,0.02459167,95.27850249],[4.53313697,0.02458995,95.2777875],[4.53313641,0.02458824,95.27707247],[4.53313585,0.02458652,95.27635737],[4.53313529,0.02458481,95.27564221],[4.53313473,0.02458309,95.27492697],[4.53313418,0.02458138,95.27421164],[4.53313362,0.02457967,95.27349622],[4.53313306,0.02457795,95.2727807],[4.5331325,0.02457624,95.27206506],[4.53313194,0.02457452,95.2713493],[4.53313138,0.02457281,95.27063341],[4.53313082,0.02457109,95.26991739],[4.53313027,0.02456938,95.26920121],[4.53312971,0.02456767,95.26848488],[4.53312915,0.02456595,95.26776838],[4.53312859,0.02456424,95.2670517],[4.53312803,0.02456252,95.26633485],[4.53312747,0.02456081,95.2656178],[4.53312691,0.0245591,95.26490055],[4.53312635,0.02455738,95.26418309],[4.53312579,0.02455567,95.26346541],[4.53312523,0.02455395,95.26274752],[4.53312467,0.02455224,95.26202941],[4.53312411,0.02455053,95.26131109],[4.53312355,0.02454881,95.26059257],[4.53312299,0.0245471,95.25987384],[4.53312243,0.02454539,95.25915491],[4.53312187,0.02454367,95.25843579],[4.53312131,0.02454196,95.25771647],[4.53312075,0.02454024,95.25699696],[4.53312019,0.02453853,95.25627725],[4.53311963,0.02453682,95.25555737],[4.53311907,0.0245351,95.2548373],[4.53311851,0.02453339,95.25411705],[4.53311795,0.02453168,95.25339663],[4.53311739,0.02452996,95.25267603],[4.53311682,0.02452825,95.25195526],[4.53311626,0.02452654,95.25123432],[4.5331157,0.02452482,95.25051322],[4.53311514,0.02452311,95.24979196],[4.53311458,0.0245214,95.24907055],[4.53311402,0.02451968,95.24834897],[4.53311346,0.02451797,95.24762725],[4.5331129,0.02451626,95.24690537],[4.53311233,0.02451454,95.24618336],[4.53311177,0.02451283,95.24546119],[4.53311121,0.02451112,95.24473889],[4.53311065,0.0245094,95.24401646],[4.53311009,0.02450769,95.24329389],[4.53310952,0.02450598,95.24257119],[4.53310896,0.02450426,95.24184836],[4.5331084,0.02450255,95.24112541],[4.53310784,0.02450084,95.24040234],[4.53310728,0.02449913,95.23967915],[4.53310671,0.02449741,95.23895584],[4.53310615,0.0244957,95.23823243],[4.53310559,0.02449399,95.23750891],[4.53310503,0.02449227,95.23678528],[4.53310446,0.02449056,95.23606155],[4.5331039,0.02448885,95.23533772],[4.53310334,0.02448714,95.23461379],[4.53310278,0.02448542,95.23388978],[4.53310221,0.02448371,95.23316567],[4.53310165,0.024482,95.23244148],[4.53310109,0.02448028,95.2317172],[4.53310052,0.02447857,95.23099285],[4.53309996,0.02447686,95.23026841],[4.5330994,0.02447515,95.22954391],[4.53309884,0.02447343,95.22881933],[4.53309827,0.02447172,95.22809468],[4.53309771,0.02447001,95.22736998],[4.53309715,0.02446829,95.22664521],[4.53309658,0.02446658,95.22592038],[4.53309602,0.02446487,95.22519551],[4.53309546,0.02446316,95.2244706],[4.53309489,0.02446144,95.22374567],[4.53309433,0.02445973,95.22302072],[4.53309377,0.02445802,95.22229576],[4.5330932,0.02445631,95.22157081],[4.53309264,0.02445459,95.22084587],[4.53309208,0.02445288,95.22012095],[4.53309151,0.02445117,95.21939606],[4.53309095,0.02444946,95.21867122],[4.53309039,0.02444774,95.21794642],[4.53308982,0.02444603,95.21722169],[4.53308926,0.02444432,95.21649703],[4.5330887,0.0244426,95.21577246],[4.53308813,0.02444089,95.21504797],[4.53308757,0.02443918,95.21432359],[4.53308701,0.02443747,95.21359931],[4.53308644,0.02443575,95.21287516],[4.53308588,0.02443404,95.21215114],[4.53308532,0.02443233,95.21142726],[4.53308475,0.02443062,95.21070353],[4.53308419,0.0244289,95.20997996],[4.53308363,0.02442719,95.20925656],[4.53308306,0.02442548,95.20853334],[4.5330825,0.02442376,95.20781032],[4.53308194,0.02442205,95.20708749],[4.53308138,0.02442034,95.20636488],[4.53308081,0.02441863,95.20564248],[4.53308025,0.02441691,95.20492032],[4.53307969,0.0244152,95.20419839],[4.53307913,0.02441349,95.20347672],[4.53307856,0.02441177,95.20275531],[4.533078,0.02441006,95.20203416],[4.53307744,0.02440835,95.2013133],[4.53307688,0.02440664,95.20059273],[4.53307631,0.02440492,95.19987245],[4.53307575,0.02440321,95.19915247],[4.53307519,0.0244015,95.19843282],[4.53307463,0.02439978,95.19771348],[4.53307407,0.02439807,95.19699448],[4.5330735,0.02439636,95.19627581],[4.53307294,0.02439464,95.1955575],[4.53307238,0.02439293,95.19483954],[4.53307182,0.02439122,95.19412195],[4.53307126,0.0243895,95.19340474],[4.5330707,0.02438779,95.19268791],[4.53307013,0.02438608,95.19197147],[4.53306957,0.02438436,95.19125544],[4.53306901,0.02438265,95.19053981],[4.53306845,0.02438094,95.18982461],[4.53306789,0.02437922,95.18910983],[4.53306733,0.02437751,95.1883955],[4.53306677,0.0243758,95.1876816],[4.53306621,0.02437408,95.18696817],[4.53306565,0.02437237,95.18625519],[4.53306509,0.02437066,95.18554269],[4.53306453,0.02436894,95.18483067],[4.53306397,0.02436723,95.18411915],[4.53306341,0.02436551,95.18340812],[4.53306285,0.0243638,95.18269759],[4.53306229,0.02436209,95.18198759],[4.53306173,0.02436037,95.18127811],[4.53306117,0.02435866,95.18056917],[4.53306062,0.02435694,95.17986077],[4.53306006,0.02435523,95.17915292],[4.5330595,0.02435352,95.17844563],[4.53305894,0.0243518,95.17773892],[4.53305838,0.02435009,95.17703278],[4.53305782,0.02434837,95.17632723],[4.53305727,0.02434666,95.17562228],[4.53305671,0.02434494,95.17491793],[4.53305615,0.02434323,95.1742142],[4.53305559,0.02434151,95.1735111],[4.53305504,0.0243398,95.17280862],[4.53305448,0.02433808,95.17210679],[4.53305392,0.02433637,95.17140561],[4.53305337,0.02433465,95.17070508],[4.53305281,0.02433294,95.17000523],[4.53305226,0.02433122,95.16930605],[4.5330517,0.02432951,95.16860756],[4.53305114,0.02432779,95.16790977],[4.53305059,0.02432608,95.16721268],[4.53305003,0.02432436,95.1665163],[4.53304948,0.02432265,95.16582064],[4.53304892,0.02432093,95.16512566],[4.53304837,0.02431922,95.16443133],[4.53304782,0.0243175,95.1637376],[4.53304726,0.02431579,95.16304444],[4.53304671,0.02431407,95.16235182],[4.53304615,0.02431235,95.16165969],[4.5330456,0.02431064,95.16096802],[4.53304505,0.02430892,95.16027676],[4.53304449,0.02430721,95.15958588],[4.53304394,0.02430549,95.15889534],[4.53304339,0.02430377,95.1582051],[4.53304283,0.02430206,95.15751513],[4.53304228,0.02430034,95.15682538],[4.53304173,0.02429863,95.15613582],[4.53304117,0.02429691,95.1554464],[4.53304062,0.02429519,95.15475709],[4.53304007,0.02429348,95.15406783],[4.53303952,0.02429176,95.15337859],[4.53303896,0.02429005,95.15268933],[4.53303841,0.02428833,95.15199998],[4.53303786,0.02428661,95.15131053],[4.5330373,0.0242849,95.15062091],[4.53303675,0.02428318,95.14993108],[4.5330362,0.02428147,95.14924101],[4.53303564,0.02427975,95.14855065],[4.53303509,0.02427803,95.14785994],[4.53303454,0.02427632,95.14716886],[4.53303398,0.0242746,95.14647735],[4.53303343,0.02427289,95.14578537],[4.53303288,0.02427117,95.14509288],[4.53303232,0.02426945,95.14439983],[4.53303177,0.02426774,95.14370617],[4.53303121,0.02426602,95.14301187],[4.53303066,0.02426431,95.14231688],[4.5330301,0.02426259,95.14162115],[4.53302955,0.02426088,95.14092465],[4.53302899,0.02425916,95.14022732],[4.53302844,0.02425745,95.13952912],[4.53302788,0.02425573,95.13883001],[4.53302733,0.02425402,95.13812994],[4.53302677,0.0242523,95.13742887],[4.53302621,0.02425059,95.13672676],[4.53302566,0.02424887,95.13602355],[4.5330251,0.02424716,95.13531921],[4.53302454,0.02424544,95.13461369],[4.53302398,0.02424373,95.13390695],[4.53302342,0.02424201,95.13319894],[4.53302286,0.0242403,95.13248962],[4.53302231,0.02423859,95.13177893],[4.53302175,0.02423687,95.13106685],[4.53302119,0.02423516,95.13035332],[4.53302062,0.02423345,95.1296383],[4.53302006,0.02423173,95.12892175],[4.5330195,0.02423002,95.12820361],[4.53301894,0.02422831,95.12748391],[4.53301838,0.02422659,95.12676268],[4.53301781,0.02422488,95.12604],[4.53301725,0.02422317,95.1253159],[4.53301669,0.02422145,95.12459046],[4.53301612,0.02421974,95.12386372],[4.53301556,0.02421803,95.12313574],[4.53301499,0.02421632,95.12240658],[4.53301443,0.02421461,95.12167629],[4.53301386,0.02421289,95.12094493],[4.5330133,0.02421118,95.12021256],[4.53301273,0.02420947,95.11947923],[4.53301217,0.02420776,95.118745],[4.5330116,0.02420605,95.11800992],[4.53301103,0.02420434,95.11727405],[4.53301047,0.02420262,95.11653745],[4.5330099,0.02420091,95.11580017],[4.53300933,0.0241992,95.11506227],[4.53300876,0.02419749,95.11432381],[4.5330082,0.02419578,95.11358484],[4.53300763,0.02419407,95.11284542],[4.53300706,0.02419236,95.1121056],[4.53300649,0.02419065,95.11136545],[4.53300593,0.02418893,95.11062501],[4.53300536,0.02418722,95.10988434],[4.53300479,0.02418551,95.10914351],[4.53300422,0.0241838,95.10840257],[4.53300365,0.02418209,95.10766156],[4.53300308,0.02418038,95.10692056],[4.53300252,0.02417867,95.10617962],[4.53300195,0.02417696,95.10543879],[4.53300138,0.02417525,95.10469813],[4.53300081,0.02417354,95.1039577],[4.53300025,0.02417182,95.10321755],[4.53299968,0.02417011,95.10247774],[4.53299911,0.0241684,95.10173832],[4.53299854,0.02416669,95.10099936],[4.53299798,0.02416498,95.10026091],[4.53299741,0.02416327,95.09952303],[4.53299684,0.02416156,95.09878577],[4.53299628,0.02415984,95.09804919],[4.53299571,0.02415813,95.09731335],[4.53299569,0.02415806,95.09728159],[4.53300884,0.02415368,95.09728159],[4.53300887,0.02415375,95.09731335],[4.53300943,0.02415546,95.09804919],[4.53300999,0.02415718,95.09878577],[4.53301055,0.02415889,95.09952303],[4.53301111,0.02416061,95.10026091],[4.53301167,0.02416232,95.10099936],[4.53301224,0.02416403,95.10173832],[4.5330128,0.02416575,95.10247774],[4.53301336,0.02416746,95.10321755],[4.53301392,0.02416917,95.1039577],[4.53301448,0.02417089,95.10469813],[4.53301504,0.0241726,95.10543879],[4.5330156,0.02417431,95.10617962],[4.53301616,0.02417603,95.10692056],[4.53301672,0.02417774,95.10766156],[4.53301728,0.02417945,95.10840257],[4.53301785,0.02418117,95.10914351],[4.53301841,0.02418288,95.10988434],[4.53301897,0.02418459,95.11062501],[4.53301953,0.02418631,95.11136545],[4.53302009,0.02418802,95.1121056],[4.53302065,0.02418974,95.11284542],[4.53302121,0.02419145,95.11358484],[4.53302177,0.02419316,95.11432381],[4.53302233,0.02419488,95.11506227],[4.53302289,0.02419659,95.11580017],[4.53302345,0.0241983,95.11653745],[4.53302401,0.02420002,95.11727405],[4.53302457,0.02420173,95.11800992],[4.53302513,0.02420344,95.118745],[4.53302569,0.02420516,95.11947923],[4.53302625,0.02420687,95.12021256],[4.53302681,0.02420859,95.12094493],[4.53302737,0.0242103,95.12167629],[4.53302793,0.02421201,95.12240658],[4.53302849,0.02421373,95.12313574],[4.53302905,0.02421544,95.12386372],[4.53302961,0.02421716,95.12459046],[4.53303017,0.02421887,95.1253159],[4.53303073,0.02422058,95.12604],[4.53303129,0.0242223,95.12676268],[4.53303185,0.02422401,95.12748391],[4.53303241,0.02422572,95.12820361],[4.53303297,0.02422744,95.12892175],[4.53303353,0.02422915,95.1296383],[4.53303409,0.02423087,95.13035332],[4.53303465,0.02423258,95.13106685],[4.53303521,0.02423429,95.13177893],[4.53303577,0.02423601,95.13248962],[4.53303633,0.02423772,95.13319894],[4.53303689,0.02423944,95.13390695],[4.53303745,0.02424115,95.13461369],[4.53303801,0.02424286,95.13531921],[4.53303857,0.02424458,95.13602355],[4.53303913,0.02424629,95.13672676],[4.53303969,0.02424801,95.13742887],[4.53304025,0.02424972,95.13812994],[4.53304081,0.02425143,95.13883001],[4.53304137,0.02425315,95.13952912],[4.53304193,0.02425486,95.14022732],[4.53304249,0.02425657,95.14092465],[4.53304305,0.02425829,95.14162115],[4.53304361,0.02426,95.14231688],[4.53304417,0.02426172,95.14301187],[4.53304473,0.02426343,95.14370617],[4.53304529,0.02426514,95.14439983],[4.53304585,0.02426686,95.14509288],[4.53304641,0.02426857,95.14578537],[4.53304697,0.02427029,95.14647735],[4.53304753,0.024272,95.14716886],[4.53304809,0.02427371,95.14785994],[4.53304865,0.02427543,95.14855065],[4.53304921,0.02427714,95.14924101],[4.53304977,0.02427885,95.14993108],[4.53305033,0.02428057,95.15062091],[4.53305089,0.02428228,95.15131053],[4.53305145,0.024284,95.15199998],[4.53305201,0.02428571,95.15268933],[4.53305257,0.02428742,95.15337859],[4.53305313,0.02428914,95.15406783],[4.53305369,0.02429085,95.15475709],[4.53305425,0.02429256,95.1554464],[4.53305481,0.02429428,95.15613582],[4.53305537,0.02429599,95.15682538],[4.53305593,0.02429771,95.15751513],[4.53305649,0.02429942,95.1582051],[4.53305705,0.02430113,95.15889534],[4.53305761,0.02430285,95.15958588],[4.53305817,0.02430456,95.16027676],[4.53305873,0.02430628,95.16096802],[4.53305929,0.02430799,95.16165969],[4.53305985,0.0243097,95.16235182],[4.53306041,0.02431142,95.16304444],[4.53306097,0.02431313,95.1637376],[4.53306153,0.02431484,95.16443133],[4.53306209,0.02431656,95.16512566],[4.53306265,0.02431827,95.16582064],[4.53306321,0.02431999,95.1665163],[4.53306377,0.0243217,95.16721268],[4.53306433,0.02432341,95.16790977],[4.53306489,0.02432513,95.16860756],[4.53306545,0.02432684,95.16930605],[4.53306601,0.02432856,95.17000523],[4.53306657,0.02433027,95.17070508],[4.53306713,0.02433198,95.17140561],[4.53306769,0.0243337,95.17210679],[4.53306825,0.02433541,95.17280862],[4.53306881,0.02433713,95.1735111],[4.53306937,0.02433884,95.1742142],[4.53306993,0.02434055,95.17491793],[4.53307049,0.02434227,95.17562228],[4.53307105,0.02434398,95.17632723],[4.53307161,0.02434569,95.17703278],[4.53307217,0.02434741,95.17773892],[4.53307273,0.02434912,95.17844563],[4.53307329,0.02435084,95.17915292],[4.53307385,0.02435255,95.17986077],[4.53307441,0.02435426,95.18056917],[4.53307497,0.02435598,95.18127811],[4.53307553,0.02435769,95.18198759],[4.53307609,0.0243594,95.18269759],[4.53307665,0.02436112,95.18340812],[4.53307721,0.02436283,95.18411915],[4.53307777,0.02436455,95.18483067],[4.53307833,0.02436626,95.18554269],[4.53307889,0.02436797,95.18625519],[4.53307945,0.02436969,95.18696817],[4.53308001,0.0243714,95.1876816],[4.53308057,0.02437311,95.1883955],[4.53308113,0.02437483,95.18910983],[4.53308169,0.02437654,95.18982461],[4.53308226,0.02437826,95.19053981],[4.53308282,0.02437997,95.19125544],[4.53308338,0.02438168,95.19197147],[4.53308394,0.0243834,95.19268791],[4.5330845,0.02438511,95.19340474],[4.53308506,0.02438683,95.19412195],[4.53308562,0.02438854,95.19483954],[4.53308618,0.02439025,95.1955575],[4.53308674,0.02439197,95.19627581],[4.5330873,0.02439368,95.19699448],[4.53308786,0.02439539,95.19771348],[4.53308842,0.02439711,95.19843282],[4.53308898,0.02439882,95.19915247],[4.53308954,0.02440054,95.19987245],[4.5330901,0.02440225,95.20059273],[4.53309066,0.02440396,95.2013133],[4.53309122,0.02440568,95.20203416],[4.53309178,0.02440739,95.20275531],[4.53309234,0.02440911,95.20347672],[4.5330929,0.02441082,95.20419839],[4.53309346,0.02441253,95.20492032],[4.53309402,0.02441425,95.20564248],[4.53309458,0.02441596,95.20636488],[4.53309514,0.02441767,95.20708749],[4.5330957,0.02441939,95.20781032],[4.53309626,0.0244211,95.20853334],[4.53309682,0.02442282,95.20925656],[4.53309738,0.02442453,95.20997996],[4.53309794,0.02442624,95.21070353],[4.5330985,0.02442796,95.21142726],[4.53309906,0.02442967,95.21215114],[4.53309962,0.02443139,95.21287516],[4.53310018,0.0244331,95.21359931],[4.53310074,0.02443481,95.21432359],[4.5331013,0.02443653,95.21504797],[4.53310186,0.02443824,95.21577246],[4.53310241,0.02443996,95.21649703],[4.53310297,0.02444167,95.21722169],[4.53310353,0.02444338,95.21794642],[4.53310409,0.0244451,95.21867122],[4.53310465,0.02444681,95.21939606],[4.53310521,0.02444853,95.22012095],[4.53310577,0.02445024,95.22084587],[4.53310633,0.02445195,95.22157081],[4.53310689,0.02445367,95.22229576],[4.53310745,0.02445538,95.22302072],[4.53310801,0.0244571,95.22374567],[4.53310857,0.02445881,95.2244706],[4.53310913,0.02446053,95.22519551],[4.53310969,0.02446224,95.22592038],[4.53311025,0.02446395,95.22664521],[4.5331108,0.02446567,95.22736998],[4.53311136,0.02446738,95.22809468],[4.53311192,0.0244691,95.22881933],[4.53311248,0.02447081,95.22954391],[4.53311304,0.02447252,95.23026841],[4.5331136,0.02447424,95.23099285],[4.53311416,0.02447595,95.2317172],[4.53311472,0.02447767,95.23244148],[4.53311528,0.02447938,95.23316567],[4.53311583,0.0244811,95.23388978],[4.53311639,0.02448281,95.23461379],[4.53311695,0.02448453,95.23533772],[4.53311751,0.02448624,95.23606155],[4.53311807,0.02448795,95.23678528],[4.53311863,0.02448967,95.23750891],[4.53311919,0.02449138,95.23823243],[4.53311975,0.0244931,95.23895584],[4.5331203,0.02449481,95.23967915],[4.53312086,0.02449653,95.24040234],[4.53312142,0.02449824,95.24112541],[4.53312198,0.02449995,95.24184836],[4.53312254,0.02450167,95.24257119],[4.5331231,0.02450338,95.24329389],[4.53312365,0.0245051,95.24401646],[4.53312421,0.02450681,95.24473889],[4.53312477,0.02450853,95.24546119],[4.53312533,0.02451024,95.24618336],[4.53312589,0.02451196,95.24690537],[4.53312645,0.02451367,95.24762725],[4.53312701,0.02451538,95.24834897],[4.53312756,0.0245171,95.24907055],[4.53312812,0.02451881,95.24979196],[4.53312868,0.02452053,95.25051322],[4.53312924,0.02452224,95.25123432],[4.5331298,0.02452396,95.25195526],[4.53313036,0.02452567,95.25267603],[4.53313091,0.02452739,95.25339663],[4.53313147,0.0245291,95.25411705],[4.53313203,0.02453081,95.2548373],[4.53313259,0.02453253,95.25555737],[4.53313315,0.02453424,95.25627725],[4.53313371,0.02453596,95.25699696],[4.53313426,0.02453767,95.25771647],[4.53313482,0.02453939,95.25843579],[4.53313538,0.0245411,95.25915491],[4.53313594,0.02454282,95.25987384],[4.5331365,0.02454453,95.26059257],[4.53313706,0.02454624,95.26131109],[4.53313762,0.02454796,95.26202941],[4.53313817,0.02454967,95.26274752],[4.53313873,0.02455139,95.26346541],[4.53313929,0.0245531,95.26418309],[4.53313985,0.02455482,95.26490055],[4.53314041,0.02455653,95.2656178],[4.53314097,0.02455825,95.26633485],[4.53314152,0.02455996,95.2670517],[4.53314208,0.02456167,95.26776838],[4.53314264,0.02456339,95.26848488],[4.5331432,0.0245651,95.26920121],[4.53314376,0.02456682,95.26991739],[4.53314432,0.02456853,95.27063341],[4.53314488,0.02457025,95.2713493],[4.53314543,0.02457196,95.27206506],[4.53314599,0.02457368,95.2727807],[4.53314655,0.02457539,95.27349622],[4.53314711,0.0245771,95.27421164],[4.53314767,0.02457882,95.27492697],[4.53314823,0.02458053,95.27564221],[4.53314878,0.02458225,95.27635737],[4.53314934,0.02458396,95.27707247],[4.5331499,0.02458568,95.2777875],[4.53315046,0.02458739,95.27850249],[4.53315102,0.02458911,95.27921743],[4.53315157,0.02459082,95.27993234],[4.53315213,0.02459253,95.28064723],[4.53315269,0.02459425,95.2813621],[4.53315325,0.02459596,95.28207696],[4.53315381,0.02459768,95.28279183],[4.53315437,0.02459939,95.2835067],[4.53315492,0.02460111,95.2842216],[4.53315548,0.02460282,95.28493652],[4.53315604,0.02460454,95.28565148],[4.5331566,0.02460625,95.28636649],[4.53315716,0.02460797,95.28708155],[4.53315772,0.02460968,95.28779667],[4.53315827,0.02461139,95.28851187],[4.53315883,0.02461311,95.28922715],[4.53315939,0.02461482,95.28994251],[4.53315995,0.02461654,95.29065798],[4.53316051,0.02461825,95.29137355],[4.53316107,0.02461997,95.29208924],[4.53316163,0.02462168,95.29280505],[4.53316218,0.0246234,95.293521],[4.53316274,0.02462511,95.29423708],[4.5331633,0.02462682,95.29495332],[4.53316386,0.02462854,95.29566972],[4.53316442,0.02463025,95.29638628],[4.53316498,0.02463197,95.29710302],[4.53316553,0.02463368,95.29781995],[4.53316609,0.0246354,95.29853707],[4.53316665,0.02463711,95.29925439],[4.53316721,0.02463883,95.29997193],[4.53316777,0.02464054,95.30068968],[4.53316833,0.02464225,95.30140766],[4.53316889,0.02464397,95.30212588],[4.53316944,0.02464568,95.30284435],[4.53317,0.0246474,95.30356307],[4.53317056,0.02464911,95.30428205],[4.53317112,0.02465083,95.30500131],[4.53317168,0.02465254,95.30572084],[4.53317224,0.02465426,95.30644067],[4.5331728,0.02465597,95.30716079],[4.53317336,0.02465768,95.30788122],[4.53317391,0.0246594,95.30860197],[4.53317447,0.02466111,95.30932303],[4.53317503,0.02466283,95.31004442],[4.53317559,0.02466454,95.31076613],[4.53317615,0.02466626,95.31148817],[4.53317671,0.02466797,95.31221052],[4.53317727,0.02466968,95.3129332],[4.53317783,0.0246714,95.31365621],[4.53317839,0.02467311,95.31437953],[4.53317895,0.02467483,95.31510318],[4.5331795,0.02467654,95.31582716],[4.53318006,0.02467826,95.31655145],[4.53318062,0.02467997,95.31727608],[4.53318118,0.02468168,95.31800102],[4.53318174,0.0246834,95.31872629],[4.5331823,0.02468511,95.31945189],[4.53318286,0.02468683,95.32017781],[4.53318342,0.02468854,95.32090406],[4.53318398,0.02469026,95.32163063],[4.53318454,0.02469197,95.32235753],[4.5331851,0.02469368,95.32308475],[4.53318565,0.0246954,95.3238123],[4.53318621,0.02469711,95.32454017],[4.53318677,0.02469883,95.32526838],[4.53318733,0.02470054,95.32599691],[4.53318789,0.02470226,95.32672576],[4.53318845,0.02470397,95.32745494],[4.53318901,0.02470568,95.32818445],[4.53318957,0.0247074,95.32891429],[4.53319013,0.02470911,95.32964446],[4.53319068,0.02471083,95.33037495],[4.53319124,0.02471254,95.33110577],[4.5331918,0.02471426,95.33183693],[4.53319236,0.02471597,95.33256841],[4.53319292,0.02471768,95.33330021],[4.53319348,0.0247194,95.33403235],[4.53319404,0.02472111,95.33476482],[4.5331946,0.02472283,95.33549762],[4.53319515,0.02472454,95.33623075],[4.53319571,0.02472626,95.33696421],[4.53319627,0.02472797,95.33769799],[4.53319683,0.02472969,95.33843211],[4.53319739,0.0247314,95.33916657],[4.53319795,0.02473311,95.33990135],[4.5331985,0.02473483,95.34063646],[4.53319906,0.02473654,95.34137191],[4.53319962,0.02473826,95.34210769],[4.53320018,0.02473997,95.3428438],[4.53318724,0.02474423,95.3428438]]],"type":"Polygon"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":2,"type":"none","predecessorId":2,"sOffset":403.9617323989}},{"geometry":{"coordinates":[[[4.53285754,0.02420406,94.90880616],[4.53285712,0.02420277,94.89852339],[4.53287651,0.02419631,94.89852339],[4.53287683,0.02419763,94.90880616],[4.53285754,0.02420406,94.90880616]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-7,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-7,"type":"none","predecessorId":0,"sOffset":472.3703686125}},{"geometry":{"coordinates":[[[4.53287683,0.02419763,94.90880616],[4.53287651,0.02419631,94.89852339],[4.53288888,0.0241922,94.89852339],[4.53289228,0.02419249,94.90880616],[4.53287683,0.02419763,94.90880616]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-6,"type":"border","predecessorId":0,"sOffset":472.3703686125}},{"geometry":{"coordinates":[[[4.53289228,0.02419249,94.75880616],[4.53288888,0.0241922,94.74852339],[4.53289968,0.0241886,94.78388007],[4.5329001,0.02418989,94.78442166],[4.53289228,0.02419249,94.75880616]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-5,"type":"border","predecessorId":-5,"sOffset":472.3703686125}},{"geometry":{"coordinates":[[[4.5329001,0.02418989,94.78442166],[4.53289968,0.0241886,94.78388007],[4.53290145,0.02418801,94.78966895],[4.53290187,0.0241893,94.7902222],[4.5329001,0.02418989,94.78442166]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-4,"type":"shoulder","predecessorId":-4,"sOffset":472.3703686125}},{"geometry":{"coordinates":[[[4.53290187,0.0241893,94.7902222],[4.53290145,0.02418801,94.78966895],[4.53293057,0.02417831,94.88498572],[4.532931,0.0241796,94.88554455],[4.53290187,0.0241893,94.7902222]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3,"sOffset":472.3703686125}},{"geometry":{"coordinates":[[[4.532931,0.0241796,94.88554455],[4.53293057,0.02417831,94.88498572],[4.53296163,0.02416797,94.9866587],[4.53296206,0.02416926,94.9872069],[4.532931,0.0241796,94.88554455]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2,"sOffset":472.3703686125}},{"geometry":{"coordinates":[[[4.53296206,0.02416926,94.9872069],[4.53296163,0.02416797,94.9866587],[4.53299213,0.02415782,95.08647683],[4.53299255,0.0241591,95.0870176],[4.53296206,0.02416926,94.9872069]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1,"sOffset":472.3703686125}},{"geometry":{"coordinates":[[[4.53299255,0.0241591,95.0870176],[4.53299213,0.02415782,95.08647683],[4.53299526,0.02415677,95.09672981],[4.53299569,0.02415806,95.09728159],[4.53299255,0.0241591,95.0870176]]],"type":"Polygon"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":1,"type":"shoulder","predecessorId":1,"sOffset":472.3703686125}},{"geometry":{"coordinates":[[[4.53299569,0.02415806,95.09728159],[4.53299526,0.02415677,95.09672981],[4.53300842,0.02415239,95.09672981],[4.53300884,0.02415368,95.09728159],[4.53299569,0.02415806,95.09728159]]],"type":"Polygon"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":2,"type":"none","predecessorId":2,"sOffset":472.3703686125}},{"geometry":{"coordinates":[[[4.53285712,0.02420277,94.86234983],[4.53285657,0.02420106,94.86209563],[4.53285601,0.02419934,94.861842],[4.5328557,0.02419841,94.8617036],[4.53287546,0.02419183,94.8617036],[4.53287568,0.02419279,94.861842],[4.5328761,0.02419455,94.86209563],[4.53287651,0.02419631,94.86234983],[4.53285712,0.02420277,94.86234983]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-7,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-7,"type":"none","predecessorId":-7,"sOffset":472.5204268191}},{"geometry":{"coordinates":[[[4.53287651,0.02419631,94.86234983],[4.5328761,0.02419455,94.86209563],[4.53287568,0.02419279,94.861842],[4.53287546,0.02419183,94.8617036],[4.53287677,0.02419139,94.8617036],[4.532877,0.02419235,94.861842],[4.53287742,0.02419411,94.86209563],[4.53287783,0.02419588,94.86234983],[4.53287651,0.02419631,94.86234983]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-6,"type":"border","predecessorId":0,"sOffset":472.5204268191}},{"geometry":{"coordinates":[[[4.53287783,0.02419588,94.71234983],[4.53287742,0.02419411,94.71209563],[4.532877,0.02419235,94.711842],[4.53287677,0.02419139,94.7117036],[4.53289826,0.02418424,94.78204412],[4.53289857,0.02418517,94.78243798],[4.53289912,0.02418689,94.78315883],[4.53289968,0.0241886,94.78388007],[4.53287783,0.02419588,94.71234983]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-5,"type":"border","predecessorId":0,"sOffset":472.5204268191}},{"geometry":{"coordinates":[[[4.53289968,0.0241886,94.78388007],[4.53289912,0.02418689,94.78315883],[4.53289857,0.02418517,94.78243798],[4.53289826,0.02418424,94.78204412],[4.53290002,0.02418365,94.7877925],[4.53290033,0.02418459,94.78819507],[4.53290089,0.0241863,94.78893181],[4.53290145,0.02418801,94.78966895],[4.53289968,0.0241886,94.78388007]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-4,"type":"shoulder","predecessorId":-4,"sOffset":472.5204268191}},{"geometry":{"coordinates":[[[4.53290145,0.02418801,94.78966895],[4.53290089,0.0241863,94.78893181],[4.53290033,0.02418459,94.78819507],[4.53290002,0.02418365,94.7877925],[4.53292913,0.02417396,94.88308847],[4.53292944,0.02417489,94.8834956],[4.53293001,0.0241766,94.88424055],[4.53293057,0.02417831,94.88498572],[4.53290145,0.02418801,94.78966895]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3,"sOffset":472.5204268191}},{"geometry":{"coordinates":[[[4.53293057,0.02417831,94.88498572],[4.53293001,0.0241766,94.88424055],[4.53292944,0.02417489,94.8834956],[4.53292913,0.02417396,94.88308847],[4.5329602,0.02416361,94.98479849],[4.53296051,0.02416455,94.98519776],[4.53296107,0.02416626,94.98592821],[4.53296163,0.02416797,94.9866587],[4.53293057,0.02417831,94.88498572]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2,"sOffset":472.5204268191}},{"geometry":{"coordinates":[[[4.53296163,0.02416797,94.9866587],[4.53296107,0.02416626,94.98592821],[4.53296051,0.02416455,94.98519776],[4.5329602,0.02416361,94.98479849],[4.5329907,0.02415345,95.08464082],[4.53299101,0.02415439,95.08503499],[4.53299157,0.0241561,95.08575598],[4.53299213,0.02415782,95.08647683],[4.53296163,0.02416797,94.9866587]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1,"sOffset":472.5204268191}},{"geometry":{"coordinates":[[[4.53299213,0.02415782,95.08647683],[4.53299157,0.0241561,95.08575598],[4.53299101,0.02415439,95.08503499],[4.5329907,0.02415345,95.08464082],[4.53299382,0.02415242,95.0948569],[4.53299413,0.02415335,95.095259],[4.5329947,0.02415506,95.09599448],[4.53299526,0.02415677,95.09672981],[4.53299213,0.02415782,95.08647683]]],"type":"Polygon"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":1,"type":"shoulder","predecessorId":1,"sOffset":472.5204268191}},{"geometry":{"coordinates":[[[4.53299526,0.02415677,95.09672981],[4.5329947,0.02415506,95.09599448],[4.53299413,0.02415335,95.095259],[4.53299382,0.02415242,95.0948569],[4.53300699,0.02414803,95.0948569],[4.5330073,0.02414897,95.095259],[4.53300786,0.02415068,95.09599448],[4.53300842,0.02415239,95.09672981],[4.53299526,0.02415677,95.09672981]]],"type":"Polygon"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":2,"type":"none","predecessorId":2,"sOffset":472.5204268191}},{"geometry":{"coordinates":[[[4.5328557,0.02419841,94.89632452],[4.53285528,0.02419712,94.90802404],[4.53287515,0.02419051,94.90802404],[4.53287546,0.02419183,94.89632452],[4.5328557,0.02419841,94.89632452]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-7,"type":"none","predecessorId":-7,"sOffset":473.0297535028}},{"geometry":{"coordinates":[[[4.53287546,0.02419183,94.89632452],[4.53287515,0.02419051,94.90802404],[4.53289067,0.02418534,94.90802404],[4.53288735,0.02418787,94.89632452],[4.53287546,0.02419183,94.89632452]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-6,"type":"border","predecessorId":0,"sOffset":473.0297535028}},{"geometry":{"coordinates":[[[4.53288735,0.02418787,94.74632452],[4.53289067,0.02418534,94.75802404],[4.53289784,0.02418295,94.78150391],[4.53289826,0.02418424,94.78204412],[4.53288735,0.02418787,94.74632452]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-5,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-5,"type":"border","predecessorId":0,"sOffset":473.0297535028}},{"geometry":{"coordinates":[[[4.53289826,0.02418424,94.78204412],[4.53289784,0.02418295,94.78150391],[4.5328996,0.02418237,94.78724011],[4.53290002,0.02418365,94.7877925],[4.53289826,0.02418424,94.78204412]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-4,"type":"shoulder","predecessorId":-4,"sOffset":473.0297535028}},{"geometry":{"coordinates":[[[4.53290002,0.02418365,94.7877925],[4.5328996,0.02418237,94.78724011],[4.5329287,0.02417267,94.88252949],[4.53292913,0.02417396,94.88308847],[4.53290002,0.02418365,94.7877925]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3,"sOffset":473.0297535028}},{"geometry":{"coordinates":[[[4.53292913,0.02417396,94.88308847],[4.5329287,0.02417267,94.88252949],[4.53295978,0.02416233,94.98425062],[4.5329602,0.02416361,94.98479849],[4.53292913,0.02417396,94.88308847]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2,"sOffset":473.0297535028}},{"geometry":{"coordinates":[[[4.5329602,0.02416361,94.98479849],[4.53295978,0.02416233,94.98425062],[4.53299028,0.02415217,95.08409974],[4.5329907,0.02415345,95.08464082],[4.5329602,0.02416361,94.98479849]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1,"sOffset":473.0297535028}},{"geometry":{"coordinates":[[[4.5329907,0.02415345,95.08464082],[4.53299028,0.02415217,95.08409974],[4.5329934,0.02415113,95.09430511],[4.53299382,0.02415242,95.0948569],[4.5329907,0.02415345,95.08464082]]],"type":"Polygon"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":1,"type":"shoulder","predecessorId":1,"sOffset":473.0297535028}},{"geometry":{"coordinates":[[[4.53299382,0.02415242,95.0948569],[4.5329934,0.02415113,95.09430511],[4.53300657,0.02414674,95.09430511],[4.53300699,0.02414803,95.0948569],[4.53299382,0.02415242,95.0948569]]],"type":"Polygon"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":2,"type":"none","predecessorId":2,"sOffset":473.0297535028}},{"geometry":{"coordinates":[[[4.53285528,0.02419712,94.90802404],[4.53285473,0.02419541,94.91688025],[4.53285417,0.02419369,94.9204259],[4.53285361,0.02419198,94.91975703],[4.53285305,0.02419027,94.91908611],[4.53285248,0.02418856,94.91841285],[4.53285192,0.02418685,94.91773701],[4.53285135,0.02418514,94.9170583],[4.53285078,0.02418343,94.91637646],[4.53285021,0.02418172,94.91569124],[4.53284964,0.02418001,94.91500235],[4.53284907,0.0241783,94.91430953],[4.53284849,0.02417659,94.91361251],[4.53284792,0.02417488,94.91291104],[4.53284734,0.02417318,94.91220483],[4.53284677,0.02417147,94.91149363],[4.53284619,0.02416976,94.91077717],[4.53284561,0.02416806,94.91005518],[4.53284503,0.02416635,94.90932739],[4.53284445,0.02416464,94.90859354],[4.53284387,0.02416294,94.90785336],[4.53284329,0.02416123,94.90710658],[4.5328427,0.02415953,94.90635294],[4.53284212,0.02415782,94.90559218],[4.53284154,0.02415612,94.90482465],[4.53284096,0.02415441,94.90405323],[4.53284038,0.0241527,94.90328139],[4.5328398,0.024151,94.90251297],[4.53283923,0.02414929,94.90175267],[4.53283867,0.02414758,94.90100538],[4.53283811,0.02414586,94.90027577],[4.53283756,0.02414415,94.89956428],[4.53283702,0.02414243,94.89886709],[4.53283648,0.02414071,94.89818018],[4.53283595,0.02413899,94.89749954],[4.53283541,0.02413726,94.89682118],[4.53283488,0.02413554,94.89614107],[4.53283435,0.02413382,94.8954552],[4.53283382,0.0241321,94.89475973],[4.53283328,0.02413038,94.89405404],[4.53283275,0.02412866,94.89334077],[4.53283221,0.02412694,94.89262272],[4.53283168,0.02412522,94.89190265],[4.53283114,0.02412349,94.89118337],[4.53283061,0.02412177,94.89046764],[4.53283008,0.02412005,94.88975824],[4.53282955,0.02411833,94.88905796],[4.53282902,0.0241166,94.88836958],[4.5328285,0.02411488,94.88769586],[4.53282799,0.02411315,94.88703773],[4.53282747,0.02411142,94.88638867],[4.53282695,0.02410969,94.88574035],[4.53282643,0.02410797,94.88508442],[4.53282589,0.02410625,94.88441256],[4.53282535,0.02410453,94.88371643],[4.53282479,0.02410282,94.8829882],[4.53282421,0.02410111,94.88223135],[4.53282363,0.02409941,94.88146051],[4.53282304,0.0240977,94.88068988],[4.53282245,0.024096,94.87993056],[4.53282186,0.0240943,94.87918397],[4.53282127,0.02409259,94.87844905],[4.53282068,0.02409089,94.87772478],[4.53282009,0.02408919,94.87701013],[4.5328195,0.02408748,94.87630406],[4.53281892,0.02408578,94.87560553],[4.53281833,0.02408408,94.87491352],[4.53281775,0.02408237,94.87422699],[4.53281717,0.02408066,94.87354491],[4.53281659,0.02407896,94.87286625],[4.53281601,0.02407725,94.87218998],[4.53281544,0.02407554,94.87151506],[4.53281487,0.02407383,94.87084047],[4.5328143,0.02407213,94.87016518],[4.53281373,0.02407042,94.86948815],[4.53281316,0.02406871,94.86880842],[4.53281259,0.024067,94.86812573],[4.53281202,0.02406529,94.86744035],[4.53281145,0.02406358,94.86675256],[4.53281089,0.02406187,94.86606264],[4.53281032,0.02406016,94.86537087],[4.53280975,0.02405844,94.86467754],[4.53280918,0.02405673,94.86398291],[4.53280862,0.02405502,94.86328727],[4.53280805,0.02405331,94.8625909],[4.53280748,0.0240516,94.86189408],[4.53280691,0.02404989,94.86119709],[4.53280634,0.02404818,94.86050019],[4.53280578,0.02404647,94.85980369],[4.53280521,0.02404476,94.85910787],[4.53280464,0.02404305,94.85841302],[4.53280407,0.02404134,94.85771941],[4.53280351,0.02403963,94.85702731],[4.53280294,0.02403792,94.85633699],[4.53280238,0.02403621,94.8556487],[4.53280181,0.0240345,94.85496271],[4.53280125,0.02403279,94.85427902],[4.53280068,0.02403108,94.8535975],[4.53280012,0.02402936,94.85291799],[4.53279955,0.02402765,94.85224034],[4.53279899,0.02402594,94.85156443],[4.53279843,0.02402423,94.85089011],[4.53279787,0.02402252,94.85021726],[4.5327973,0.0240208,94.84954574],[4.53279674,0.02401909,94.84887544],[4.53279618,0.02401738,94.84820622],[4.53279562,0.02401567,94.84753794],[4.53279505,0.02401396,94.8468705],[4.53279449,0.02401224,94.84620374],[4.53279393,0.02401053,94.84553756],[4.53279337,0.02400882,94.84487181],[4.5327928,0.02400711,94.84420637],[4.53279224,0.0240054,94.84354111],[4.53279168,0.02400368,94.84287591],[4.53279111,0.02400197,94.84221064],[4.53279055,0.02400026,94.84154516],[4.53278998,0.02399855,94.84087935],[4.53278941,0.02399684,94.84021309],[4.53278885,0.02399513,94.83954624],[4.53278828,0.02399342,94.83887868],[4.53278771,0.02399171,94.83821029],[4.53278714,0.02399,94.83754097],[4.53278657,0.02398829,94.83687075],[4.532786,0.02398658,94.83619966],[4.53278543,0.02398487,94.83552774],[4.53278486,0.02398316,94.83485502],[4.53278429,0.02398145,94.83418156],[4.53278371,0.02397974,94.8335075],[4.53278314,0.02397803,94.83283309],[4.53278257,0.02397633,94.83215859],[4.53278199,0.02397462,94.83148426],[4.53278141,0.02397291,94.83081036],[4.53278084,0.0239712,94.83013714],[4.53278026,0.0239695,94.82946486],[4.53277968,0.02396779,94.82879378],[4.53277911,0.02396608,94.82812414],[4.53277853,0.02396437,94.82745622],[4.53277795,0.02396267,94.82679026],[4.53277737,0.02396096,94.82612652],[4.53277679,0.02395925,94.82546525],[4.53277622,0.02395755,94.82480671],[4.53277564,0.02395584,94.82415115],[4.53277506,0.02395413,94.82349883],[4.53277448,0.02395242,94.82284999],[4.53277391,0.02395072,94.8222049],[4.53277333,0.02394901,94.82156366],[4.53277276,0.0239473,94.82092599],[4.53277218,0.02394559,94.82029156],[4.5327716,0.02394389,94.81966],[4.53277103,0.02394218,94.81903095],[4.53277046,0.02394047,94.81840403],[4.53276988,0.02393876,94.81777886],[4.53276931,0.02393705,94.81715513],[4.53276874,0.02393534,94.81653247],[4.53276816,0.02393364,94.81591056],[4.53276759,0.02393193,94.81528904],[4.53276702,0.02393022,94.81466759],[4.53276645,0.02392851,94.81404587],[4.53276587,0.0239268,94.81342353],[4.5327653,0.02392509,94.81280023],[4.53276473,0.02392338,94.81217565],[4.53276416,0.02392167,94.81154944],[4.53276359,0.02391996,94.81092127],[4.53276302,0.02391825,94.81029081],[4.53276245,0.02391654,94.80965776],[4.53276189,0.02391483,94.80902239],[4.53276132,0.02391312,94.80838536],[4.53276075,0.02391141,94.8077471],[4.53276018,0.0239097,94.80710799],[4.53275962,0.02390799,94.80646844],[4.53275906,0.02390627,94.80582883],[4.53275849,0.02390456,94.80518956],[4.53275793,0.02390285,94.804551],[4.53275737,0.02390114,94.80391355],[4.53275681,0.02389942,94.80327759],[4.53275625,0.02389771,94.80264352],[4.5327557,0.023896,94.80201171],[4.53275514,0.02389428,94.80138256],[4.53275459,0.02389257,94.80075644],[4.53275403,0.02389085,94.80013372],[4.53275348,0.02388914,94.79951448],[4.53275293,0.02388742,94.79889861],[4.53275238,0.0238857,94.79828598],[4.53275182,0.02388399,94.79767646],[4.53275127,0.02388227,94.79706993],[4.53275072,0.02388056,94.79646628],[4.53275017,0.02387884,94.79586537],[4.53274962,0.02387712,94.79526709],[4.53274907,0.02387541,94.79467131],[4.53274852,0.02387369,94.79407792],[4.53274797,0.02387198,94.79348679],[4.53274741,0.02387026,94.79289779],[4.53274686,0.02386854,94.79231081],[4.53274631,0.02386683,94.79172565],[4.53274575,0.02386511,94.79114207],[4.5327452,0.0238634,94.79055984],[4.53274464,0.02386168,94.78997871],[4.53274409,0.02385997,94.78939845],[4.53274353,0.02385826,94.78881882],[4.53274297,0.02385654,94.78823958],[4.53274241,0.02385483,94.78766051],[4.53274185,0.02385311,94.7870815],[4.53274129,0.0238514,94.78650258],[4.53274073,0.02384969,94.78592381],[4.53274017,0.02384797,94.78534526],[4.53273961,0.02384626,94.78476702],[4.53273905,0.02384455,94.78418917],[4.53273849,0.02384284,94.78361177],[4.53273793,0.02384112,94.78303489],[4.53273737,0.02383941,94.78245859],[4.5327368,0.0238377,94.78188288],[4.53273624,0.02383599,94.78130781],[4.53273568,0.02383427,94.78073339],[4.53273512,0.02383256,94.78015967],[4.53273455,0.02383085,94.77958666],[4.53273399,0.02382914,94.77901441],[4.53273343,0.02382743,94.77844295],[4.53273287,0.02382571,94.7778723],[4.5327323,0.023824,94.7773025],[4.53273174,0.02382229,94.77673357],[4.53273118,0.02382058,94.77616555],[4.53273061,0.02381886,94.77559847],[4.53273005,0.02381715,94.77503235],[4.53272949,0.02381544,94.77446728],[4.53272893,0.02381373,94.77390335],[4.53272836,0.02381201,94.77334056],[4.5327278,0.0238103,94.77277894],[4.53272724,0.02380859,94.7722185],[4.53272668,0.02380688,94.77165925],[4.53272612,0.02380516,94.77110119],[4.53272555,0.02380345,94.77054435],[4.53272499,0.02380174,94.76998873],[4.53272443,0.02380003,94.76943434],[4.53272387,0.02379831,94.7688812],[4.53272331,0.0237966,94.76832931],[4.53272275,0.02379489,94.7677787],[4.53272219,0.02379317,94.76722936],[4.53272162,0.02379146,94.76668131],[4.53272106,0.02378975,94.76613457],[4.5327205,0.02378804,94.76558914],[4.53271994,0.02378632,94.76504503],[4.53271938,0.02378461,94.76450226],[4.53271882,0.0237829,94.76396084],[4.53271826,0.02378118,94.76342077],[4.5327177,0.02377947,94.76288208],[4.53271713,0.02377776,94.76234476],[4.53271657,0.02377605,94.76180884],[4.53271601,0.02377433,94.76127431],[4.53271545,0.02377262,94.76074121],[4.53271488,0.02377091,94.76020952],[4.53271432,0.0237692,94.75967927],[4.53271375,0.02376749,94.75915047],[4.53271319,0.02376578,94.75862312],[4.53271262,0.02376407,94.75809724],[4.53271205,0.02376236,94.75757284],[4.53271149,0.02376065,94.75704991],[4.53271092,0.02375894,94.75652819],[4.53271035,0.02375723,94.75600721],[4.53270978,0.02375552,94.75548661],[4.5327092,0.02375381,94.75496629],[4.53270863,0.0237521,94.75444627],[4.53270805,0.02375039,94.75392655],[4.53270748,0.02374869,94.75340715],[4.5327069,0.02374698,94.75288807],[4.53270632,0.02374527,94.75236932],[4.53270574,0.02374357,94.75185091],[4.53270516,0.02374186,94.75133284],[4.53270458,0.02374015,94.75081514],[4.532704,0.02373845,94.7502978],[4.53270342,0.02373674,94.74978083],[4.53270284,0.02373503,94.74926424],[4.53270226,0.02373332,94.74874805],[4.53270168,0.02373162,94.74823225],[4.5327011,0.02372991,94.74771687],[4.53270053,0.0237282,94.7472019],[4.53269995,0.02372649,94.74668735],[4.53269938,0.02372478,94.74617324],[4.5326988,0.02372307,94.74565958],[4.53269823,0.02372136,94.74514636],[4.53269766,0.02371965,94.74463361],[4.53269709,0.02371794,94.74412136],[4.53269653,0.02371623,94.74361001],[4.53269596,0.02371452,94.74309983],[4.5326954,0.02371281,94.74259095],[4.53269484,0.02371109,94.74208352],[4.53269428,0.02370938,94.7415777],[4.53269372,0.02370767,94.74107374],[4.53269317,0.02370596,94.74057189],[4.53269261,0.02370425,94.74007241],[4.53269206,0.02370253,94.73957555],[4.5326915,0.02370082,94.73908157],[4.53269095,0.02369911,94.73859072],[4.5326904,0.0236974,94.73810326],[4.53268985,0.02369568,94.73761943],[4.5326893,0.02369397,94.73713948],[4.53268875,0.02369226,94.73666367],[4.5326882,0.02369055,94.73619224],[4.53268766,0.02368884,94.73572544],[4.53268711,0.02368713,94.73526351],[4.53268656,0.02368542,94.7348067],[4.53268602,0.02368371,94.73435525],[4.53268547,0.023682,94.7339094],[4.53268492,0.02368029,94.73346938],[4.53268438,0.02367858,94.73303519],[4.53268383,0.02367687,94.73260605],[4.53268328,0.02367516,94.73218112],[4.53268273,0.02367345,94.73175952],[4.53268218,0.02367175,94.73134039],[4.53268163,0.02367004,94.73092289],[4.53268108,0.02366833,94.73050615],[4.53268052,0.02366663,94.73008934],[4.53267996,0.02366492,94.7296716],[4.53267941,0.02366321,94.72925212],[4.53267885,0.02366151,94.72883047],[4.53267828,0.0236598,94.72840664],[4.53267772,0.02365809,94.72798055],[4.53267716,0.02365639,94.72755203],[4.53267659,0.02365468,94.72712092],[4.53267603,0.02365297,94.72668707],[4.53267547,0.02365127,94.7262503],[4.5326749,0.02364956,94.72581047],[4.53267434,0.02364786,94.72536741],[4.53267377,0.02364615,94.7249209],[4.53267321,0.02364444,94.72447074],[4.53267265,0.02364274,94.72401673],[4.53267208,0.02364103,94.72355865],[4.53267152,0.02363932,94.72309631],[4.53267096,0.02363761,94.7226295],[4.5326704,0.0236359,94.72215802],[4.53266994,0.02363449,94.72176465],[4.5327081,0.02362164,94.72176465],[4.53270857,0.02362305,94.72215802],[4.53270914,0.02362476,94.7226295],[4.53270971,0.02362647,94.72309631],[4.53271028,0.02362818,94.72355865],[4.53271085,0.02362988,94.72401673],[4.53271142,0.02363159,94.72447074],[4.53271198,0.0236333,94.7249209],[4.53271255,0.023635,94.72536741],[4.53271312,0.02363671,94.72581047],[4.53271368,0.02363842,94.7262503],[4.53271425,0.02364013,94.72668707],[4.53271482,0.02364184,94.72712092],[4.53271538,0.02364354,94.72755203],[4.53271594,0.02364525,94.72798055],[4.53271651,0.02364696,94.72840664],[4.53271707,0.02364867,94.72883047],[4.53271763,0.02365038,94.72925212],[4.53271819,0.02365208,94.7296716],[4.53271875,0.02365379,94.73008934],[4.53271931,0.0236555,94.73050615],[4.53271987,0.02365721,94.73092289],[4.53272042,0.02365892,94.73134039],[4.53272098,0.02366063,94.73175952],[4.53272153,0.02366234,94.73218112],[4.53272209,0.02366404,94.73260605],[4.53272265,0.02366575,94.73303519],[4.53272321,0.02366746,94.73346938],[4.53272377,0.02366917,94.7339094],[4.53272433,0.02367087,94.73435525],[4.53272489,0.02367258,94.7348067],[4.53272545,0.02367429,94.73526351],[4.53272602,0.023676,94.73572544],[4.53272658,0.0236777,94.73619224],[4.53272715,0.02367941,94.73666367],[4.53272771,0.02368112,94.73713948],[4.53272828,0.02368283,94.73761943],[4.53272885,0.02368453,94.73810326],[4.53272942,0.02368624,94.73859072],[4.53272999,0.02368795,94.73908157],[4.53273056,0.02368966,94.73957555],[4.53273113,0.02369136,94.74007241],[4.53273171,0.02369307,94.74057189],[4.53273228,0.02369478,94.74107374],[4.53273285,0.02369649,94.7415777],[4.53273342,0.0236982,94.74208352],[4.532734,0.0236999,94.74259095],[4.53273457,0.02370161,94.74309983],[4.53273514,0.02370332,94.74361001],[4.53273571,0.02370503,94.74412136],[4.53273629,0.02370674,94.74463361],[4.53273686,0.02370845,94.74514636],[4.53273743,0.02371016,94.74565958],[4.532738,0.02371187,94.74617324],[4.53273858,0.02371358,94.74668735],[4.53273915,0.02371529,94.7472019],[4.53273972,0.023717,94.74771687],[4.53274029,0.02371871,94.74823225],[4.53274086,0.02372042,94.74874805],[4.53274143,0.02372213,94.74926424],[4.532742,0.02372384,94.74978083],[4.53274257,0.02372555,94.7502978],[4.53274314,0.02372726,94.75081514],[4.53274371,0.02372897,94.75133284],[4.53274428,0.02373068,94.75185091],[4.53274485,0.02373239,94.75236932],[4.53274541,0.0237341,94.75288807],[4.53274598,0.02373581,94.75340715],[4.53274655,0.02373753,94.75392655],[4.53274712,0.02373924,94.75444627],[4.53274768,0.02374095,94.75496629],[4.53274825,0.02374266,94.75548661],[4.53274881,0.02374437,94.75600721],[4.53274938,0.02374608,94.75652819],[4.53274994,0.02374779,94.75704991],[4.53275051,0.0237495,94.75757284],[4.53275107,0.02375121,94.75809724],[4.53275164,0.02375293,94.75862312],[4.5327522,0.02375464,94.75915047],[4.53275277,0.02375635,94.75967927],[4.53275333,0.02375806,94.76020952],[4.5327539,0.02375977,94.76074121],[4.53275446,0.02376148,94.76127431],[4.53275503,0.02376319,94.76180884],[4.53275559,0.02376491,94.76234476],[4.53275616,0.02376662,94.76288208],[4.53275672,0.02376833,94.76342077],[4.53275729,0.02377004,94.76396084],[4.53275785,0.02377175,94.76450226],[4.53275842,0.02377346,94.76504503],[4.53275898,0.02377518,94.76558914],[4.53275955,0.02377689,94.76613457],[4.53276011,0.0237786,94.76668131],[4.53276067,0.02378031,94.76722936],[4.53276124,0.02378202,94.7677787],[4.5327618,0.02378374,94.76832931],[4.53276237,0.02378545,94.7688812],[4.53276293,0.02378716,94.76943434],[4.53276349,0.02378887,94.76998873],[4.53276406,0.02379058,94.77054435],[4.53276462,0.0237923,94.77110119],[4.53276519,0.02379401,94.77165925],[4.53276575,0.02379572,94.7722185],[4.53276631,0.02379743,94.77277894],[4.53276688,0.02379915,94.77334056],[4.53276744,0.02380086,94.77390335],[4.532768,0.02380257,94.77446728],[4.53276857,0.02380428,94.77503235],[4.53276913,0.02380599,94.77559847],[4.53276969,0.02380771,94.77616555],[4.53277026,0.02380942,94.77673357],[4.53277082,0.02381113,94.7773025],[4.53277138,0.02381284,94.7778723],[4.53277194,0.02381456,94.77844295],[4.53277251,0.02381627,94.77901441],[4.53277307,0.02381798,94.77958666],[4.53277363,0.02381969,94.78015967],[4.53277419,0.02382141,94.78073339],[4.53277475,0.02382312,94.78130781],[4.53277531,0.02382483,94.78188288],[4.53277588,0.02382655,94.78245859],[4.53277644,0.02382826,94.78303489],[4.532777,0.02382997,94.78361177],[4.53277756,0.02383168,94.78418917],[4.53277812,0.0238334,94.78476702],[4.53277868,0.02383511,94.78534526],[4.53277924,0.02383682,94.78592381],[4.5327798,0.02383854,94.78650258],[4.53278036,0.02384025,94.7870815],[4.53278092,0.02384197,94.78766051],[4.53278147,0.02384368,94.78823958],[4.53278203,0.02384539,94.78881882],[4.53278259,0.02384711,94.78939845],[4.53278315,0.02384882,94.78997871],[4.53278371,0.02385053,94.79055984],[4.53278427,0.02385225,94.79114207],[4.53278482,0.02385396,94.79172565],[4.53278538,0.02385568,94.79231081],[4.53278594,0.02385739,94.79289779],[4.5327865,0.0238591,94.79348679],[4.53278706,0.02386082,94.79407792],[4.53278762,0.02386253,94.79467131],[4.53278818,0.02386424,94.79526709],[4.53278874,0.02386596,94.79586537],[4.5327893,0.02386767,94.79646628],[4.53278986,0.02386938,94.79706993],[4.53279042,0.02387109,94.79767646],[4.53279099,0.02387281,94.79828598],[4.53279155,0.02387452,94.79889861],[4.53279212,0.02387623,94.79951448],[4.53279268,0.02387794,94.80013372],[4.53279325,0.02387965,94.80075644],[4.53279381,0.02388136,94.80138256],[4.53279438,0.02388308,94.80201171],[4.53279495,0.02388479,94.80264352],[4.53279552,0.0238865,94.80327759],[4.53279609,0.02388821,94.80391355],[4.53279666,0.02388992,94.804551],[4.53279723,0.02389163,94.80518956],[4.5327978,0.02389334,94.80582883],[4.53279837,0.02389505,94.80646844],[4.53279894,0.02389676,94.80710799],[4.5327995,0.02389847,94.8077471],[4.53280007,0.02390018,94.80838536],[4.53280064,0.02390189,94.80902239],[4.53280121,0.0239036,94.80965776],[4.53280177,0.02390531,94.81029081],[4.53280234,0.02390702,94.81092127],[4.5328029,0.02390873,94.81154944],[4.53280347,0.02391045,94.81217565],[4.53280403,0.02391216,94.81280023],[4.53280459,0.02391387,94.81342353],[4.53280515,0.02391558,94.81404587],[4.53280571,0.0239173,94.81466759],[4.53280627,0.02391901,94.81528904],[4.53280683,0.02392072,94.81591056],[4.53280739,0.02392244,94.81653247],[4.53280796,0.02392415,94.81715513],[4.53280852,0.02392586,94.81777886],[4.53280908,0.02392757,94.81840403],[4.53280964,0.02392929,94.81903095],[4.5328102,0.023931,94.81966],[4.53281076,0.02393271,94.82029156],[4.53281133,0.02393442,94.82092599],[4.53281189,0.02393614,94.82156366],[4.53281246,0.02393785,94.8222049],[4.53281302,0.02393956,94.82284999],[4.53281359,0.02394127,94.82349883],[4.53281416,0.02394298,94.82415115],[4.53281472,0.02394469,94.82480671],[4.53281529,0.0239464,94.82546525],[4.53281586,0.02394811,94.82612652],[4.53281643,0.02394982,94.82679026],[4.53281701,0.02395153,94.82745622],[4.53281758,0.02395324,94.82812414],[4.53281815,0.02395495,94.82879378],[4.53281872,0.02395666,94.82946486],[4.53281929,0.02395837,94.83013714],[4.53281986,0.02396008,94.83081036],[4.53282044,0.02396179,94.83148426],[4.53282101,0.02396349,94.83215859],[4.53282158,0.0239652,94.83283309],[4.53282215,0.02396691,94.8335075],[4.53282272,0.02396862,94.83418156],[4.53282329,0.02397033,94.83485502],[4.53282386,0.02397204,94.83552774],[4.53282443,0.02397375,94.83619966],[4.532825,0.02397546,94.83687075],[4.53282557,0.02397717,94.83754097],[4.53282614,0.02397888,94.83821029],[4.53282671,0.02398059,94.83887868],[4.53282728,0.0239823,94.83954624],[4.53282784,0.02398401,94.84021309],[4.53282841,0.02398572,94.84087935],[4.53282898,0.02398744,94.84154516],[4.53282954,0.02398915,94.84221064],[4.53283011,0.02399086,94.84287591],[4.53283067,0.02399257,94.84354111],[4.53283124,0.02399428,94.84420637],[4.5328318,0.02399599,94.84487181],[4.53283237,0.0239977,94.84553756],[4.53283293,0.02399942,94.84620374],[4.5328335,0.02400113,94.8468705],[4.53283406,0.02400284,94.84753794],[4.53283463,0.02400455,94.84820622],[4.53283519,0.02400626,94.84887544],[4.53283576,0.02400797,94.84954574],[4.53283632,0.02400969,94.85021726],[4.53283689,0.0240114,94.85089011],[4.53283745,0.02401311,94.85156443],[4.53283802,0.02401482,94.85224034],[4.53283858,0.02401653,94.85291799],[4.53283915,0.02401824,94.8535975],[4.53283972,0.02401995,94.85427902],[4.53284028,0.02402166,94.85496271],[4.53284085,0.02402337,94.8556487],[4.53284142,0.02402508,94.85633699],[4.53284199,0.0240268,94.85702731],[4.53284255,0.02402851,94.85771941],[4.53284312,0.02403022,94.85841302],[4.53284369,0.02403193,94.85910787],[4.53284426,0.02403364,94.85980369],[4.53284483,0.02403535,94.86050019],[4.5328454,0.02403706,94.86119709],[4.53284597,0.02403877,94.86189408],[4.53284653,0.02404048,94.8625909],[4.5328471,0.02404219,94.86328727],[4.53284767,0.0240439,94.86398291],[4.53284824,0.02404561,94.86467754],[4.5328488,0.02404732,94.86537087],[4.53284937,0.02404903,94.86606264],[4.53284993,0.02405074,94.86675256],[4.53285049,0.02405246,94.86744035],[4.53285106,0.02405417,94.86812573],[4.53285162,0.02405588,94.86880842],[4.53285218,0.02405759,94.86948815],[4.53285274,0.02405931,94.87016518],[4.53285329,0.02406102,94.87084047],[4.53285385,0.02406273,94.87151506],[4.53285441,0.02406445,94.87218998],[4.53285497,0.02406616,94.87286625],[4.53285553,0.02406787,94.87354491],[4.53285608,0.02406959,94.87422699],[4.53285664,0.0240713,94.87491352],[4.53285721,0.02407301,94.87560553],[4.53285777,0.02407473,94.87630406],[4.53285833,0.02407644,94.87701013],[4.5328589,0.02407815,94.87772478],[4.53285947,0.02407986,94.87844905],[4.53286005,0.02408157,94.87918397],[4.53286062,0.02408327,94.87993056],[4.5328612,0.02408498,94.88068988],[4.53286179,0.02408668,94.88146051],[4.53286237,0.02408839,94.88223135],[4.53286295,0.0240901,94.8829882],[4.53286352,0.02409181,94.88371643],[4.53286408,0.02409352,94.88441256],[4.53286463,0.02409524,94.88508442],[4.53286518,0.02409695,94.88574035],[4.53286572,0.02409867,94.88638867],[4.53286627,0.02410039,94.88703773],[4.53286681,0.02410211,94.88769586],[4.53286736,0.02410382,94.88836958],[4.53286792,0.02410554,94.88905796],[4.53286848,0.02410725,94.88975824],[4.53286904,0.02410896,94.89046764],[4.5328696,0.02411067,94.89118337],[4.53287017,0.02411239,94.89190265],[4.53287073,0.0241141,94.89262272],[4.53287129,0.02411581,94.89334077],[4.53287186,0.02411752,94.89405404],[4.53287242,0.02411924,94.89475973],[4.53287297,0.02412095,94.8954552],[4.53287352,0.02412267,94.89614107],[4.53287407,0.02412438,94.89682118],[4.53287462,0.0241261,94.89749954],[4.53287517,0.02412781,94.89818018],[4.53287573,0.02412953,94.89886709],[4.53287628,0.02413125,94.89956428],[4.53287684,0.02413296,94.90027577],[4.5328774,0.02413467,94.90100538],[4.53287797,0.02413638,94.90175267],[4.53287855,0.02413809,94.90251297],[4.53287912,0.0241398,94.90328139],[4.5328797,0.0241415,94.90405323],[4.53288027,0.02414321,94.90482465],[4.53288085,0.02414492,94.90559218],[4.53288142,0.02414663,94.90635294],[4.53288199,0.02414834,94.90710658],[4.53288256,0.02415005,94.90785336],[4.53288312,0.02415176,94.90859354],[4.53288369,0.02415347,94.90932739],[4.53288425,0.02415518,94.91005518],[4.53288481,0.0241569,94.91077717],[4.53288537,0.02415861,94.91149363],[4.53288592,0.02416033,94.91220483],[4.53288648,0.02416204,94.91291104],[4.53288703,0.02416376,94.91361251],[4.53288758,0.02416547,94.91430953],[4.53288813,0.02416719,94.91500235],[4.53288867,0.02416891,94.91569124],[4.53288922,0.02417062,94.91637646],[4.53288977,0.02417234,94.9170583],[4.53289031,0.02417406,94.91773701],[4.53289085,0.02417578,94.91841285],[4.5328914,0.0241775,94.91908611],[4.53289194,0.02417922,94.91975703],[4.53289228,0.024181,94.9204259],[4.53289055,0.02418348,94.91688025],[4.53288676,0.02418664,94.90802404],[4.53285528,0.02419712,94.90802404]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-7,"type":"none","predecessorId":0,"sOffset":473.1798043251}},{"geometry":{"coordinates":[[[4.53288676,0.02418664,94.90802404],[4.53289055,0.02418348,94.91688025],[4.53289228,0.024181,94.9204259],[4.53289194,0.02417922,94.91975703],[4.5328914,0.0241775,94.91908611],[4.53289085,0.02417578,94.91841285],[4.53289031,0.02417406,94.91773701],[4.53288977,0.02417234,94.9170583],[4.53288922,0.02417062,94.91637646],[4.53288867,0.02416891,94.91569124],[4.53288813,0.02416719,94.91500235],[4.53288758,0.02416547,94.91430953],[4.53288703,0.02416376,94.91361251],[4.53288648,0.02416204,94.91291104],[4.53288592,0.02416033,94.91220483],[4.53288537,0.02415861,94.91149363],[4.53288481,0.0241569,94.91077717],[4.53288425,0.02415518,94.91005518],[4.53288369,0.02415347,94.90932739],[4.53288312,0.02415176,94.90859354],[4.53288256,0.02415005,94.90785336],[4.53288199,0.02414834,94.90710658],[4.53288142,0.02414663,94.90635294],[4.53288085,0.02414492,94.90559218],[4.53288027,0.02414321,94.90482465],[4.5328797,0.0241415,94.90405323],[4.53287912,0.0241398,94.90328139],[4.53287855,0.02413809,94.90251297],[4.53287797,0.02413638,94.90175267],[4.5328774,0.02413467,94.90100538],[4.53287684,0.02413296,94.90027577],[4.53287628,0.02413125,94.89956428],[4.53287573,0.02412953,94.89886709],[4.53287517,0.02412781,94.89818018],[4.53287462,0.0241261,94.89749954],[4.53287407,0.02412438,94.89682118],[4.53287352,0.02412267,94.89614107],[4.53287297,0.02412095,94.8954552],[4.53287242,0.02411924,94.89475973],[4.53287186,0.02411752,94.89405404],[4.53287129,0.02411581,94.89334077],[4.53287073,0.0241141,94.89262272],[4.53287017,0.02411239,94.89190265],[4.5328696,0.02411067,94.89118337],[4.53286904,0.02410896,94.89046764],[4.53286848,0.02410725,94.88975824],[4.53286792,0.02410554,94.88905796],[4.53286736,0.02410382,94.88836958],[4.53286681,0.02410211,94.88769586],[4.53286627,0.02410039,94.88703773],[4.53286572,0.02409867,94.88638867],[4.53286518,0.02409695,94.88574035],[4.53286463,0.02409524,94.88508442],[4.53286408,0.02409352,94.88441256],[4.53286352,0.02409181,94.88371643],[4.53286295,0.0240901,94.8829882],[4.53286237,0.02408839,94.88223135],[4.53286179,0.02408668,94.88146051],[4.5328612,0.02408498,94.88068988],[4.53286062,0.02408327,94.87993056],[4.53286005,0.02408157,94.87918397],[4.53285947,0.02407986,94.87844905],[4.5328589,0.02407815,94.87772478],[4.53285833,0.02407644,94.87701013],[4.53285777,0.02407473,94.87630406],[4.53285721,0.02407301,94.87560553],[4.53285664,0.0240713,94.87491352],[4.53285608,0.02406959,94.87422699],[4.53285553,0.02406787,94.87354491],[4.53285497,0.02406616,94.87286625],[4.53285441,0.02406445,94.87218998],[4.53285385,0.02406273,94.87151506],[4.53285329,0.02406102,94.87084047],[4.53285274,0.02405931,94.87016518],[4.53285218,0.02405759,94.86948815],[4.53285162,0.02405588,94.86880842],[4.53285106,0.02405417,94.86812573],[4.53285049,0.02405246,94.86744035],[4.53284993,0.02405074,94.86675256],[4.53284937,0.02404903,94.86606264],[4.5328488,0.02404732,94.86537087],[4.53284824,0.02404561,94.86467754],[4.53284767,0.0240439,94.86398291],[4.5328471,0.02404219,94.86328727],[4.53284653,0.02404048,94.8625909],[4.53284597,0.02403877,94.86189408],[4.5328454,0.02403706,94.86119709],[4.53284483,0.02403535,94.86050019],[4.53284426,0.02403364,94.85980369],[4.53284369,0.02403193,94.85910787],[4.53284312,0.02403022,94.85841302],[4.53284255,0.02402851,94.85771941],[4.53284199,0.0240268,94.85702731],[4.53284142,0.02402508,94.85633699],[4.53284085,0.02402337,94.8556487],[4.53284028,0.02402166,94.85496271],[4.53283972,0.02401995,94.85427902],[4.53283915,0.02401824,94.8535975],[4.53283858,0.02401653,94.85291799],[4.53283802,0.02401482,94.85224034],[4.53283745,0.02401311,94.85156443],[4.53283689,0.0240114,94.85089011],[4.53283632,0.02400969,94.85021726],[4.53283576,0.02400797,94.84954574],[4.53283519,0.02400626,94.84887544],[4.53283463,0.02400455,94.84820622],[4.53283406,0.02400284,94.84753794],[4.5328335,0.02400113,94.8468705],[4.53283293,0.02399942,94.84620374],[4.53283237,0.0239977,94.84553756],[4.5328318,0.02399599,94.84487181],[4.53283124,0.02399428,94.84420637],[4.53283067,0.02399257,94.84354111],[4.53283011,0.02399086,94.84287591],[4.53282954,0.02398915,94.84221064],[4.53282898,0.02398744,94.84154516],[4.53282841,0.02398572,94.84087935],[4.53282784,0.02398401,94.84021309],[4.53282728,0.0239823,94.83954624],[4.53282671,0.02398059,94.83887868],[4.53282614,0.02397888,94.83821029],[4.53282557,0.02397717,94.83754097],[4.532825,0.02397546,94.83687075],[4.53282443,0.02397375,94.83619966],[4.53282386,0.02397204,94.83552774],[4.53282329,0.02397033,94.83485502],[4.53282272,0.02396862,94.83418156],[4.53282215,0.02396691,94.8335075],[4.53282158,0.0239652,94.83283309],[4.53282101,0.02396349,94.83215859],[4.53282044,0.02396179,94.83148426],[4.53281986,0.02396008,94.83081036],[4.53281929,0.02395837,94.83013714],[4.53281872,0.02395666,94.82946486],[4.53281815,0.02395495,94.82879378],[4.53281758,0.02395324,94.82812414],[4.53281701,0.02395153,94.82745622],[4.53281643,0.02394982,94.82679026],[4.53281586,0.02394811,94.82612652],[4.53281529,0.0239464,94.82546525],[4.53281472,0.02394469,94.82480671],[4.53281416,0.02394298,94.82415115],[4.53281359,0.02394127,94.82349883],[4.53281302,0.02393956,94.82284999],[4.53281246,0.02393785,94.8222049],[4.53281189,0.02393614,94.82156366],[4.53281133,0.02393442,94.82092599],[4.53281076,0.02393271,94.82029156],[4.5328102,0.023931,94.81966],[4.53280964,0.02392929,94.81903095],[4.53280908,0.02392757,94.81840403],[4.53280852,0.02392586,94.81777886],[4.53280796,0.02392415,94.81715513],[4.53280739,0.02392244,94.81653247],[4.53280683,0.02392072,94.81591056],[4.53280627,0.02391901,94.81528904],[4.53280571,0.0239173,94.81466759],[4.53280515,0.02391558,94.81404587],[4.53280459,0.02391387,94.81342353],[4.53280403,0.02391216,94.81280023],[4.53280347,0.02391045,94.81217565],[4.5328029,0.02390873,94.81154944],[4.53280234,0.02390702,94.81092127],[4.53280177,0.02390531,94.81029081],[4.53280121,0.0239036,94.80965776],[4.53280064,0.02390189,94.80902239],[4.53280007,0.02390018,94.80838536],[4.5327995,0.02389847,94.8077471],[4.53279894,0.02389676,94.80710799],[4.53279837,0.02389505,94.80646844],[4.5327978,0.02389334,94.80582883],[4.53279723,0.02389163,94.80518956],[4.53279666,0.02388992,94.804551],[4.53279609,0.02388821,94.80391355],[4.53279552,0.0238865,94.80327759],[4.53279495,0.02388479,94.80264352],[4.53279438,0.02388308,94.80201171],[4.53279381,0.02388136,94.80138256],[4.53279325,0.02387965,94.80075644],[4.53279268,0.02387794,94.80013372],[4.53279212,0.02387623,94.79951448],[4.53279155,0.02387452,94.79889861],[4.53279099,0.02387281,94.79828598],[4.53279042,0.02387109,94.79767646],[4.53278986,0.02386938,94.79706993],[4.5327893,0.02386767,94.79646628],[4.53278874,0.02386596,94.79586537],[4.53278818,0.02386424,94.79526709],[4.53278762,0.02386253,94.79467131],[4.53278706,0.02386082,94.79407792],[4.5327865,0.0238591,94.79348679],[4.53278594,0.02385739,94.79289779],[4.53278538,0.02385568,94.79231081],[4.53278482,0.02385396,94.79172565],[4.53278427,0.02385225,94.79114207],[4.53278371,0.02385053,94.79055984],[4.53278315,0.02384882,94.78997871],[4.53278259,0.02384711,94.78939845],[4.53278203,0.02384539,94.78881882],[4.53278147,0.02384368,94.78823958],[4.53278092,0.02384197,94.78766051],[4.53278036,0.02384025,94.7870815],[4.5327798,0.02383854,94.78650258],[4.53277924,0.02383682,94.78592381],[4.53277868,0.02383511,94.78534526],[4.53277812,0.0238334,94.78476702],[4.53277756,0.02383168,94.78418917],[4.532777,0.02382997,94.78361177],[4.53277644,0.02382826,94.78303489],[4.53277588,0.02382655,94.78245859],[4.53277531,0.02382483,94.78188288],[4.53277475,0.02382312,94.78130781],[4.53277419,0.02382141,94.78073339],[4.53277363,0.02381969,94.78015967],[4.53277307,0.02381798,94.77958666],[4.53277251,0.02381627,94.77901441],[4.53277194,0.02381456,94.77844295],[4.53277138,0.02381284,94.7778723],[4.53277082,0.02381113,94.7773025],[4.53277026,0.02380942,94.77673357],[4.53276969,0.02380771,94.77616555],[4.53276913,0.02380599,94.77559847],[4.53276857,0.02380428,94.77503235],[4.532768,0.02380257,94.77446728],[4.53276744,0.02380086,94.77390335],[4.53276688,0.02379915,94.77334056],[4.53276631,0.02379743,94.77277894],[4.53276575,0.02379572,94.7722185],[4.53276519,0.02379401,94.77165925],[4.53276462,0.0237923,94.77110119],[4.53276406,0.02379058,94.77054435],[4.53276349,0.02378887,94.76998873],[4.53276293,0.02378716,94.76943434],[4.53276237,0.02378545,94.7688812],[4.5327618,0.02378374,94.76832931],[4.53276124,0.02378202,94.7677787],[4.53276067,0.02378031,94.76722936],[4.53276011,0.0237786,94.76668131],[4.53275955,0.02377689,94.76613457],[4.53275898,0.02377518,94.76558914],[4.53275842,0.02377346,94.76504503],[4.53275785,0.02377175,94.76450226],[4.53275729,0.02377004,94.76396084],[4.53275672,0.02376833,94.76342077],[4.53275616,0.02376662,94.76288208],[4.53275559,0.02376491,94.76234476],[4.53275503,0.02376319,94.76180884],[4.53275446,0.02376148,94.76127431],[4.5327539,0.02375977,94.76074121],[4.53275333,0.02375806,94.76020952],[4.53275277,0.02375635,94.75967927],[4.5327522,0.02375464,94.75915047],[4.53275164,0.02375293,94.75862312],[4.53275107,0.02375121,94.75809724],[4.53275051,0.0237495,94.75757284],[4.53274994,0.02374779,94.75704991],[4.53274938,0.02374608,94.75652819],[4.53274881,0.02374437,94.75600721],[4.53274825,0.02374266,94.75548661],[4.53274768,0.02374095,94.75496629],[4.53274712,0.02373924,94.75444627],[4.53274655,0.02373753,94.75392655],[4.53274598,0.02373581,94.75340715],[4.53274541,0.0237341,94.75288807],[4.53274485,0.02373239,94.75236932],[4.53274428,0.02373068,94.75185091],[4.53274371,0.02372897,94.75133284],[4.53274314,0.02372726,94.75081514],[4.53274257,0.02372555,94.7502978],[4.532742,0.02372384,94.74978083],[4.53274143,0.02372213,94.74926424],[4.53274086,0.02372042,94.74874805],[4.53274029,0.02371871,94.74823225],[4.53273972,0.023717,94.74771687],[4.53273915,0.02371529,94.7472019],[4.53273858,0.02371358,94.74668735],[4.532738,0.02371187,94.74617324],[4.53273743,0.02371016,94.74565958],[4.53273686,0.02370845,94.74514636],[4.53273629,0.02370674,94.74463361],[4.53273571,0.02370503,94.74412136],[4.53273514,0.02370332,94.74361001],[4.53273457,0.02370161,94.74309983],[4.532734,0.0236999,94.74259095],[4.53273342,0.0236982,94.74208352],[4.53273285,0.02369649,94.7415777],[4.53273228,0.02369478,94.74107374],[4.53273171,0.02369307,94.74057189],[4.53273113,0.02369136,94.74007241],[4.53273056,0.02368966,94.73957555],[4.53272999,0.02368795,94.73908157],[4.53272942,0.02368624,94.73859072],[4.53272885,0.02368453,94.73810326],[4.53272828,0.02368283,94.73761943],[4.53272771,0.02368112,94.73713948],[4.53272715,0.02367941,94.73666367],[4.53272658,0.0236777,94.73619224],[4.53272602,0.023676,94.73572544],[4.53272545,0.02367429,94.73526351],[4.53272489,0.02367258,94.7348067],[4.53272433,0.02367087,94.73435525],[4.53272377,0.02366917,94.7339094],[4.53272321,0.02366746,94.73346938],[4.53272265,0.02366575,94.73303519],[4.53272209,0.02366404,94.73260605],[4.53272153,0.02366234,94.73218112],[4.53272098,0.02366063,94.73175952],[4.53272042,0.02365892,94.73134039],[4.53271987,0.02365721,94.73092289],[4.53271931,0.0236555,94.73050615],[4.53271875,0.02365379,94.73008934],[4.53271819,0.02365208,94.7296716],[4.53271763,0.02365038,94.72925212],[4.53271707,0.02364867,94.72883047],[4.53271651,0.02364696,94.72840664],[4.53271594,0.02364525,94.72798055],[4.53271538,0.02364354,94.72755203],[4.53271482,0.02364184,94.72712092],[4.53271425,0.02364013,94.72668707],[4.53271368,0.02363842,94.7262503],[4.53271312,0.02363671,94.72581047],[4.53271255,0.023635,94.72536741],[4.53271198,0.0236333,94.7249209],[4.53271142,0.02363159,94.72447074],[4.53271085,0.02362988,94.72401673],[4.53271028,0.02362818,94.72355865],[4.53270971,0.02362647,94.72309631],[4.53270914,0.02362476,94.7226295],[4.53270857,0.02362305,94.72215802],[4.5327081,0.02362164,94.72176465],[4.53270956,0.02362115,94.72176465],[4.53271004,0.02362256,94.72215802],[4.53271062,0.02362426,94.7226295],[4.5327112,0.02362597,94.72309631],[4.53271177,0.02362767,94.72355865],[4.53271234,0.02362938,94.72401673],[4.53271292,0.02363109,94.72447074],[4.53271348,0.02363279,94.7249209],[4.53271405,0.0236345,94.72536741],[4.53271462,0.02363621,94.72581047],[4.53271518,0.02363792,94.7262503],[4.53271574,0.02363963,94.72668707],[4.53271631,0.02364133,94.72712092],[4.53271686,0.02364304,94.72755203],[4.53271742,0.02364475,94.72798055],[4.53271798,0.02364646,94.72840664],[4.53271853,0.02364818,94.72883047],[4.53271909,0.02364989,94.72925212],[4.53271964,0.0236516,94.7296716],[4.53272019,0.02365331,94.73008934],[4.53272074,0.02365502,94.73050615],[4.53272129,0.02365673,94.73092289],[4.53272184,0.02365844,94.73134039],[4.53272239,0.02366015,94.73175952],[4.53272294,0.02366186,94.73218112],[4.53272349,0.02366358,94.73260605],[4.53272404,0.02366529,94.73303519],[4.53272459,0.023667,94.73346938],[4.53272514,0.02366871,94.7339094],[4.5327257,0.02367041,94.73435525],[4.53272626,0.02367212,94.7348067],[4.53272681,0.02367383,94.73526351],[4.53272737,0.02367554,94.73572544],[4.53272793,0.02367725,94.73619224],[4.5327285,0.02367896,94.73666367],[4.53272906,0.02368067,94.73713948],[4.53272962,0.02368238,94.73761943],[4.53273019,0.02368409,94.73810326],[4.53273075,0.0236858,94.73859072],[4.53273132,0.0236875,94.73908157],[4.53273189,0.02368921,94.73957555],[4.53273246,0.02369092,94.74007241],[4.53273302,0.02369263,94.74057189],[4.53273359,0.02369434,94.74107374],[4.53273416,0.02369605,94.7415777],[4.53273473,0.02369776,94.74208352],[4.5327353,0.02369947,94.74259095],[4.53273587,0.02370118,94.74309983],[4.53273644,0.02370289,94.74361001],[4.53273701,0.0237046,94.74412136],[4.53273758,0.02370631,94.74463361],[4.53273815,0.02370802,94.74514636],[4.53273872,0.02370973,94.74565958],[4.53273929,0.02371144,94.74617324],[4.53273985,0.02371315,94.74668735],[4.53274042,0.02371486,94.7472019],[4.53274099,0.02371657,94.74771687],[4.53274156,0.02371829,94.74823225],[4.53274213,0.02372,94.74874805],[4.53274269,0.02372171,94.74926424],[4.53274326,0.02372342,94.74978083],[4.53274383,0.02372513,94.7502978],[4.53274439,0.02372684,94.75081514],[4.53274496,0.02372855,94.75133284],[4.53274553,0.02373027,94.75185091],[4.53274609,0.02373198,94.75236932],[4.53274666,0.02373369,94.75288807],[4.53274722,0.0237354,94.75340715],[4.53274779,0.02373711,94.75392655],[4.53274835,0.02373882,94.75444627],[4.53274891,0.02374054,94.75496629],[4.53274948,0.02374225,94.75548661],[4.53275004,0.02374396,94.75600721],[4.5327506,0.02374567,94.75652819],[4.53275117,0.02374738,94.75704991],[4.53275173,0.02374909,94.75757284],[4.53275229,0.02375081,94.75809724],[4.53275285,0.02375252,94.75862312],[4.53275342,0.02375423,94.75915047],[4.53275398,0.02375594,94.75967927],[4.53275454,0.02375765,94.76020952],[4.53275511,0.02375937,94.76074121],[4.53275567,0.02376108,94.76127431],[4.53275623,0.02376279,94.76180884],[4.5327568,0.0237645,94.76234476],[4.53275736,0.02376622,94.76288208],[4.53275793,0.02376793,94.76342077],[4.53275849,0.02376964,94.76396084],[4.53275905,0.02377135,94.76450226],[4.53275962,0.02377306,94.76504503],[4.53276018,0.02377478,94.76558914],[4.53276075,0.02377649,94.76613457],[4.53276131,0.0237782,94.76668131],[4.53276187,0.02377991,94.76722936],[4.53276244,0.02378162,94.7677787],[4.532763,0.02378333,94.76832931],[4.53276357,0.02378505,94.7688812],[4.53276413,0.02378676,94.76943434],[4.5327647,0.02378847,94.76998873],[4.53276526,0.02379018,94.77054435],[4.53276583,0.02379189,94.77110119],[4.53276639,0.02379361,94.77165925],[4.53276696,0.02379532,94.7722185],[4.53276752,0.02379703,94.77277894],[4.53276809,0.02379874,94.77334056],[4.53276865,0.02380045,94.77390335],[4.53276921,0.02380216,94.77446728],[4.53276978,0.02380388,94.77503235],[4.53277034,0.02380559,94.77559847],[4.53277091,0.0238073,94.77616555],[4.53277147,0.02380901,94.77673357],[4.53277204,0.02381072,94.7773025],[4.5327726,0.02381244,94.7778723],[4.53277317,0.02381415,94.77844295],[4.53277373,0.02381586,94.77901441],[4.5327743,0.02381757,94.77958666],[4.53277486,0.02381928,94.78015967],[4.53277542,0.02382099,94.78073339],[4.53277599,0.02382271,94.78130781],[4.53277655,0.02382442,94.78188288],[4.53277712,0.02382613,94.78245859],[4.53277768,0.02382784,94.78303489],[4.53277824,0.02382956,94.78361177],[4.53277881,0.02383127,94.78418917],[4.53277937,0.02383298,94.78476702],[4.53277993,0.02383469,94.78534526],[4.53278049,0.0238364,94.78592381],[4.53278106,0.02383812,94.78650258],[4.53278162,0.02383983,94.7870815],[4.53278218,0.02384154,94.78766051],[4.53278274,0.02384326,94.78823958],[4.5327833,0.02384497,94.78881882],[4.53278386,0.02384668,94.78939845],[4.53278443,0.02384839,94.78997871],[4.53278499,0.02385011,94.79055984],[4.53278555,0.02385182,94.79114207],[4.53278611,0.02385353,94.79172565],[4.53278667,0.02385525,94.79231081],[4.53278723,0.02385696,94.79289779],[4.53278779,0.02385867,94.79348679],[4.53278835,0.02386038,94.79407792],[4.53278892,0.0238621,94.79467131],[4.53278948,0.02386381,94.79526709],[4.53279004,0.02386552,94.79586537],[4.53279061,0.02386723,94.79646628],[4.53279117,0.02386894,94.79706993],[4.53279174,0.02387066,94.79767646],[4.5327923,0.02387237,94.79828598],[4.53279287,0.02387408,94.79889861],[4.53279344,0.02387579,94.79951448],[4.532794,0.0238775,94.80013372],[4.53279457,0.02387921,94.80075644],[4.53279514,0.02388092,94.80138256],[4.53279571,0.02388263,94.80201171],[4.53279628,0.02388434,94.80264352],[4.53279685,0.02388605,94.80327759],[4.53279742,0.02388776,94.80391355],[4.532798,0.02388947,94.804551],[4.53279857,0.02389118,94.80518956],[4.53279914,0.02389289,94.80582883],[4.53279971,0.0238946,94.80646844],[4.53280028,0.02389631,94.80710799],[4.53280085,0.02389802,94.8077471],[4.53280142,0.02389973,94.80838536],[4.53280199,0.02390144,94.80902239],[4.53280256,0.02390315,94.80965776],[4.53280313,0.02390486,94.81029081],[4.53280369,0.02390657,94.81092127],[4.53280426,0.02390828,94.81154944],[4.53280482,0.02390999,94.81217565],[4.53280538,0.02391171,94.81280023],[4.53280595,0.02391342,94.81342353],[4.53280651,0.02391513,94.81404587],[4.53280707,0.02391684,94.81466759],[4.53280763,0.02391856,94.81528904],[4.53280819,0.02392027,94.81591056],[4.53280875,0.02392198,94.81653247],[4.53280932,0.02392369,94.81715513],[4.53280988,0.02392541,94.81777886],[4.53281044,0.02392712,94.81840403],[4.532811,0.02392883,94.81903095],[4.53281156,0.02393055,94.81966],[4.53281212,0.02393226,94.82029156],[4.53281269,0.02393397,94.82092599],[4.53281325,0.02393568,94.82156366],[4.53281381,0.02393739,94.8222049],[4.53281438,0.02393911,94.82284999],[4.53281495,0.02394082,94.82349883],[4.53281551,0.02394253,94.82415115],[4.53281608,0.02394424,94.82480671],[4.53281665,0.02394595,94.82546525],[4.53281722,0.02394766,94.82612652],[4.53281779,0.02394937,94.82679026],[4.53281836,0.02395108,94.82745622],[4.53281893,0.02395279,94.82812414],[4.5328195,0.0239545,94.82879378],[4.53282007,0.02395621,94.82946486],[4.53282064,0.02395792,94.83013714],[4.53282121,0.02395963,94.83081036],[4.53282178,0.02396134,94.83148426],[4.53282235,0.02396305,94.83215859],[4.53282292,0.02396476,94.83283309],[4.53282349,0.02396647,94.8335075],[4.53282406,0.02396818,94.83418156],[4.53282463,0.02396989,94.83485502],[4.5328252,0.0239716,94.83552774],[4.53282577,0.02397331,94.83619966],[4.53282634,0.02397502,94.83687075],[4.5328269,0.02397673,94.83754097],[4.53282747,0.02397844,94.83821029],[4.53282804,0.02398015,94.83887868],[4.5328286,0.02398186,94.83954624],[4.53282917,0.02398357,94.84021309],[4.53282973,0.02398528,94.84087935],[4.5328303,0.023987,94.84154516],[4.53283086,0.02398871,94.84221064],[4.53283142,0.02399042,94.84287591],[4.53283199,0.02399213,94.84354111],[4.53283255,0.02399384,94.84420637],[4.53283311,0.02399556,94.84487181],[4.53283368,0.02399727,94.84553756],[4.53283424,0.02399898,94.84620374],[4.5328348,0.02400069,94.8468705],[4.53283536,0.0240024,94.84753794],[4.53283593,0.02400412,94.84820622],[4.53283649,0.02400583,94.84887544],[4.53283705,0.02400754,94.84954574],[4.53283762,0.02400925,94.85021726],[4.53283818,0.02401097,94.85089011],[4.53283874,0.02401268,94.85156443],[4.53283931,0.02401439,94.85224034],[4.53283987,0.0240161,94.85291799],[4.53284043,0.02401781,94.8535975],[4.532841,0.02401952,94.85427902],[4.53284156,0.02402124,94.85496271],[4.53284213,0.02402295,94.8556487],[4.53284269,0.02402466,94.85633699],[4.53284326,0.02402637,94.85702731],[4.53284383,0.02402808,94.85771941],[4.53284439,0.02402979,94.85841302],[4.53284496,0.0240315,94.85910787],[4.53284553,0.02403321,94.85980369],[4.5328461,0.02403492,94.86050019],[4.53284666,0.02403663,94.86119709],[4.53284723,0.02403835,94.86189408],[4.5328478,0.02404006,94.8625909],[4.53284836,0.02404177,94.86328727],[4.53284893,0.02404348,94.86398291],[4.53284949,0.02404519,94.86467754],[4.53285006,0.0240469,94.86537087],[4.53285062,0.02404861,94.86606264],[4.53285119,0.02405033,94.86675256],[4.53285175,0.02405204,94.86744035],[4.53285231,0.02405375,94.86812573],[4.53285287,0.02405546,94.86880842],[4.53285343,0.02405718,94.86948815],[4.53285399,0.02405889,94.87016518],[4.53285454,0.0240606,94.87084047],[4.5328551,0.02406232,94.87151506],[4.53285566,0.02406403,94.87218998],[4.53285621,0.02406574,94.87286625],[4.53285677,0.02406746,94.87354491],[4.53285733,0.02406917,94.87422699],[4.53285789,0.02407089,94.87491352],[4.53285845,0.0240726,94.87560553],[4.53285901,0.02407431,94.87630406],[4.53285958,0.02407602,94.87701013],[4.53286014,0.02407773,94.87772478],[4.53286071,0.02407944,94.87844905],[4.53286129,0.02408115,94.87918397],[4.53286186,0.02408286,94.87993056],[4.53286244,0.02408456,94.88068988],[4.53286303,0.02408627,94.88146051],[4.53286361,0.02408798,94.88223135],[4.53286419,0.02408968,94.8829882],[4.53286476,0.02409139,94.88371643],[4.53286532,0.02409311,94.88441256],[4.53286587,0.02409482,94.88508442],[4.53286642,0.02409654,94.88574035],[4.53286696,0.02409826,94.88638867],[4.53286751,0.02409997,94.88703773],[4.53286806,0.02410169,94.88769586],[4.53286861,0.02410341,94.88836958],[4.53286916,0.02410512,94.88905796],[4.53286972,0.02410684,94.88975824],[4.53287029,0.02410855,94.89046764],[4.53287085,0.02411026,94.89118337],[4.53287141,0.02411197,94.89190265],[4.53287198,0.02411368,94.89262272],[4.53287254,0.02411539,94.89334077],[4.53287311,0.02411711,94.89405404],[4.53287366,0.02411882,94.89475973],[4.53287422,0.02412053,94.8954552],[4.53287477,0.02412225,94.89614107],[4.53287533,0.02412396,94.89682118],[4.53287588,0.02412568,94.89749954],[4.53287643,0.0241274,94.89818018],[4.53287698,0.02412911,94.89886709],[4.53287754,0.02413083,94.89956428],[4.5328781,0.02413254,94.90027577],[4.53287866,0.02413425,94.90100538],[4.53287923,0.02413596,94.90175267],[4.53287981,0.02413767,94.90251297],[4.53288039,0.02413938,94.90328139],[4.53288096,0.02414108,94.90405323],[4.53288154,0.02414279,94.90482465],[4.53288212,0.0241445,94.90559218],[4.53288269,0.02414621,94.90635294],[4.53288326,0.02414792,94.90710658],[4.53288383,0.02414963,94.90785336],[4.5328844,0.02415134,94.90859354],[4.53288496,0.02415305,94.90932739],[4.53288553,0.02415476,94.91005518],[4.53288609,0.02415647,94.91077717],[4.53288665,0.02415819,94.91149363],[4.5328872,0.0241599,94.91220483],[4.53288776,0.02416161,94.91291104],[4.53288831,0.02416333,94.91361251],[4.53288887,0.02416504,94.91430953],[4.53288942,0.02416676,94.91500235],[4.53288997,0.02416848,94.91569124],[4.53289052,0.02417019,94.91637646],[4.53289106,0.02417191,94.9170583],[4.53289161,0.02417363,94.91773701],[4.53289215,0.02417535,94.91841285],[4.5328927,0.02417706,94.91908611],[4.53289324,0.02417878,94.91975703],[4.53289378,0.0241805,94.9204259],[4.53289304,0.02418265,94.91688025],[4.53289067,0.02418534,94.90802404],[4.53288676,0.02418664,94.90802404]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1000100","id":-6,"type":"border","predecessorId":0,"sOffset":473.1798043251}},{"geometry":{"coordinates":[[[4.53289067,0.02418534,94.75802404],[4.53289304,0.02418265,94.76688025],[4.53289378,0.0241805,94.7704259],[4.53289324,0.02417878,94.76975703],[4.5328927,0.02417706,94.76908611],[4.53289215,0.02417535,94.76841285],[4.53289161,0.02417363,94.76773701],[4.53289106,0.02417191,94.7670583],[4.53289052,0.02417019,94.76637646],[4.53288997,0.02416848,94.76569124],[4.53288942,0.02416676,94.76500235],[4.53288887,0.02416504,94.76430953],[4.53288831,0.02416333,94.76361251],[4.53288776,0.02416161,94.76291104],[4.5328872,0.0241599,94.76220483],[4.53288665,0.02415819,94.76149363],[4.53288609,0.02415647,94.76077717],[4.53288553,0.02415476,94.76005518],[4.53288496,0.02415305,94.75932739],[4.5328844,0.02415134,94.75859354],[4.53288383,0.02414963,94.75785336],[4.53288326,0.02414792,94.75710658],[4.53288269,0.02414621,94.75635294],[4.53288212,0.0241445,94.75559218],[4.53288154,0.02414279,94.75482465],[4.53288096,0.02414108,94.75405323],[4.53288039,0.02413938,94.75328139],[4.53287981,0.02413767,94.75251297],[4.53287923,0.02413596,94.75175267],[4.53287866,0.02413425,94.75100538],[4.5328781,0.02413254,94.75027577],[4.53287754,0.02413083,94.74956428],[4.53287698,0.02412911,94.74886709],[4.53287643,0.0241274,94.74818018],[4.53287588,0.02412568,94.74749954],[4.53287533,0.02412396,94.74682118],[4.53287477,0.02412225,94.74614107],[4.53287422,0.02412053,94.7454552],[4.53287366,0.02411882,94.74475973],[4.53287311,0.02411711,94.74405404],[4.53287254,0.02411539,94.74334077],[4.53287198,0.02411368,94.74262272],[4.53287141,0.02411197,94.74190265],[4.53287085,0.02411026,94.74118337],[4.53287029,0.02410855,94.74046764],[4.53286972,0.02410684,94.73975824],[4.53286916,0.02410512,94.73905796],[4.53286861,0.02410341,94.73836958],[4.53286806,0.02410169,94.73769586],[4.53286751,0.02409997,94.73703773],[4.53286696,0.02409826,94.73638867],[4.53286642,0.02409654,94.73574035],[4.53286587,0.02409482,94.73508442],[4.53286532,0.02409311,94.73441256],[4.53286476,0.02409139,94.73371643],[4.53286419,0.02408968,94.7329882],[4.53286361,0.02408798,94.73223135],[4.53286303,0.02408627,94.73146051],[4.53286244,0.02408456,94.73068988],[4.53286186,0.02408286,94.72993056],[4.53286129,0.02408115,94.72918397],[4.53286071,0.02407944,94.72844905],[4.53286014,0.02407773,94.72772478],[4.53285958,0.02407602,94.72701013],[4.53285901,0.02407431,94.72630406],[4.53285845,0.0240726,94.72560553],[4.53285789,0.02407089,94.72491352],[4.53285733,0.02406917,94.72422699],[4.53285677,0.02406746,94.72354491],[4.53285621,0.02406574,94.72286625],[4.53285566,0.02406403,94.72218998],[4.5328551,0.02406232,94.72151506],[4.53285454,0.0240606,94.72084047],[4.53285399,0.02405889,94.72016518],[4.53285343,0.02405718,94.71948815],[4.53285287,0.02405546,94.71880842],[4.53285231,0.02405375,94.71812573],[4.53285175,0.02405204,94.71744035],[4.53285119,0.02405033,94.71675256],[4.53285062,0.02404861,94.71606264],[4.53285006,0.0240469,94.71537087],[4.53284949,0.02404519,94.71467754],[4.53284893,0.02404348,94.71398291],[4.53284836,0.02404177,94.71328727],[4.5328478,0.02404006,94.7125909],[4.53284723,0.02403835,94.71189408],[4.53284666,0.02403663,94.71119709],[4.5328461,0.02403492,94.71050019],[4.53284553,0.02403321,94.70980369],[4.53284496,0.0240315,94.70910787],[4.53284439,0.02402979,94.70841302],[4.53284383,0.02402808,94.70771941],[4.53284326,0.02402637,94.70702731],[4.53284269,0.02402466,94.70633699],[4.53284213,0.02402295,94.7056487],[4.53284156,0.02402124,94.70496271],[4.532841,0.02401952,94.70427902],[4.53284043,0.02401781,94.7035975],[4.53283987,0.0240161,94.70291799],[4.53283931,0.02401439,94.70224034],[4.53283874,0.02401268,94.70156443],[4.53283818,0.02401097,94.70089011],[4.53283762,0.02400925,94.70021726],[4.53283705,0.02400754,94.69954574],[4.53283649,0.02400583,94.69887544],[4.53283593,0.02400412,94.69820622],[4.53283536,0.0240024,94.69753794],[4.5328348,0.02400069,94.6968705],[4.53283424,0.02399898,94.69620374],[4.53283368,0.02399727,94.69553756],[4.53283311,0.02399556,94.69487181],[4.53283255,0.02399384,94.69420637],[4.53283199,0.02399213,94.69354111],[4.53283142,0.02399042,94.69287591],[4.53283086,0.02398871,94.69221064],[4.5328303,0.023987,94.69154516],[4.53282973,0.02398528,94.69087935],[4.53282917,0.02398357,94.69021309],[4.5328286,0.02398186,94.68954624],[4.53282804,0.02398015,94.68887868],[4.53282747,0.02397844,94.68821029],[4.5328269,0.02397673,94.68754097],[4.53282634,0.02397502,94.68687075],[4.53282577,0.02397331,94.68619966],[4.5328252,0.0239716,94.68552774],[4.53282463,0.02396989,94.68485502],[4.53282406,0.02396818,94.68418156],[4.53282349,0.02396647,94.6835075],[4.53282292,0.02396476,94.68283309],[4.53282235,0.02396305,94.68215859],[4.53282178,0.02396134,94.68148426],[4.53282121,0.02395963,94.68081036],[4.53282064,0.02395792,94.68013714],[4.53282007,0.02395621,94.67946486],[4.5328195,0.0239545,94.67879378],[4.53281893,0.02395279,94.67812414],[4.53281836,0.02395108,94.67745622],[4.53281779,0.02394937,94.67679026],[4.53281722,0.02394766,94.67612652],[4.53281665,0.02394595,94.67546525],[4.53281608,0.02394424,94.67480671],[4.53281551,0.02394253,94.67415115],[4.53281495,0.02394082,94.67349883],[4.53281438,0.02393911,94.67284999],[4.53281381,0.02393739,94.6722049],[4.53281325,0.02393568,94.67156366],[4.53281269,0.02393397,94.67092599],[4.53281212,0.02393226,94.67029156],[4.53281156,0.02393055,94.66966],[4.532811,0.02392883,94.66903095],[4.53281044,0.02392712,94.66840403],[4.53280988,0.02392541,94.66777886],[4.53280932,0.02392369,94.66715513],[4.53280875,0.02392198,94.66653247],[4.53280819,0.02392027,94.66591056],[4.53280763,0.02391856,94.66528904],[4.53280707,0.02391684,94.66466759],[4.53280651,0.02391513,94.66404587],[4.53280595,0.02391342,94.66342353],[4.53280538,0.02391171,94.66280023],[4.53280482,0.02390999,94.66217565],[4.53280426,0.02390828,94.66154944],[4.53280369,0.02390657,94.66092127],[4.53280313,0.02390486,94.66029081],[4.53280256,0.02390315,94.65965776],[4.53280199,0.02390144,94.65902239],[4.53280142,0.02389973,94.65838536],[4.53280085,0.02389802,94.6577471],[4.53280028,0.02389631,94.65710799],[4.53279971,0.0238946,94.65646844],[4.53279914,0.02389289,94.65582883],[4.53279857,0.02389118,94.65518956],[4.532798,0.02388947,94.654551],[4.53279742,0.02388776,94.65391355],[4.53279685,0.02388605,94.65327759],[4.53279628,0.02388434,94.65264352],[4.53279571,0.02388263,94.65201171],[4.53279514,0.02388092,94.65138256],[4.53279457,0.02387921,94.65075644],[4.532794,0.0238775,94.65013372],[4.53279344,0.02387579,94.64951448],[4.53279287,0.02387408,94.64889861],[4.5327923,0.02387237,94.64828598],[4.53279174,0.02387066,94.64767646],[4.53279117,0.02386894,94.64706993],[4.53279061,0.02386723,94.64646628],[4.53279004,0.02386552,94.64586537],[4.53278948,0.02386381,94.64526709],[4.53278892,0.0238621,94.64467131],[4.53278835,0.02386038,94.64407792],[4.53278779,0.02385867,94.64348679],[4.53278723,0.02385696,94.64289779],[4.53278667,0.02385525,94.64231081],[4.53278611,0.02385353,94.64172565],[4.53278555,0.02385182,94.64114207],[4.53278499,0.02385011,94.64055984],[4.53278443,0.02384839,94.63997871],[4.53278386,0.02384668,94.63939845],[4.5327833,0.02384497,94.63881882],[4.53278274,0.02384326,94.63823958],[4.53278218,0.02384154,94.63766051],[4.53278162,0.02383983,94.6370815],[4.53278106,0.02383812,94.63650258],[4.53278049,0.0238364,94.63592381],[4.53277993,0.02383469,94.63534526],[4.53277937,0.02383298,94.63476702],[4.53277881,0.02383127,94.63418917],[4.53277824,0.02382956,94.63361177],[4.53277768,0.02382784,94.63303489],[4.53277712,0.02382613,94.63245859],[4.53277655,0.02382442,94.63188288],[4.53277599,0.02382271,94.63130781],[4.53277542,0.02382099,94.63073339],[4.53277486,0.02381928,94.63015967],[4.5327743,0.02381757,94.62958666],[4.53277373,0.02381586,94.62901441],[4.53277317,0.02381415,94.62844295],[4.5327726,0.02381244,94.6278723],[4.53277204,0.02381072,94.6273025],[4.53277147,0.02380901,94.62673357],[4.53277091,0.0238073,94.62616555],[4.53277034,0.02380559,94.62559847],[4.53276978,0.02380388,94.62503235],[4.53276921,0.02380216,94.62446728],[4.53276865,0.02380045,94.62390335],[4.53276809,0.02379874,94.62334056],[4.53276752,0.02379703,94.62277894],[4.53276696,0.02379532,94.6222185],[4.53276639,0.02379361,94.62165925],[4.53276583,0.02379189,94.62110119],[4.53276526,0.02379018,94.62054435],[4.5327647,0.02378847,94.61998873],[4.53276413,0.02378676,94.61943434],[4.53276357,0.02378505,94.6188812],[4.532763,0.02378333,94.61832931],[4.53276244,0.02378162,94.6177787],[4.53276187,0.02377991,94.61722936],[4.53276131,0.0237782,94.61668131],[4.53276075,0.02377649,94.61613457],[4.53276018,0.02377478,94.61558914],[4.53275962,0.02377306,94.61504503],[4.53275905,0.02377135,94.61450226],[4.53275849,0.02376964,94.61396084],[4.53275793,0.02376793,94.61342077],[4.53275736,0.02376622,94.61288208],[4.5327568,0.0237645,94.61234476],[4.53275623,0.02376279,94.61180884],[4.53275567,0.02376108,94.61127431],[4.53275511,0.02375937,94.61074121],[4.53275454,0.02375765,94.61020952],[4.53275398,0.02375594,94.60967927],[4.53275342,0.02375423,94.60915047],[4.53275285,0.02375252,94.60862312],[4.53275229,0.02375081,94.60809724],[4.53275173,0.02374909,94.60757284],[4.53275117,0.02374738,94.60704991],[4.5327506,0.02374567,94.60652819],[4.53275004,0.02374396,94.60600721],[4.53274948,0.02374225,94.60548661],[4.53274891,0.02374054,94.60496629],[4.53274835,0.02373882,94.60444627],[4.53274779,0.02373711,94.60392655],[4.53274722,0.0237354,94.60340715],[4.53274666,0.02373369,94.60288807],[4.53274609,0.02373198,94.60236932],[4.53274553,0.02373027,94.60185091],[4.53274496,0.02372855,94.60133284],[4.53274439,0.02372684,94.60081514],[4.53274383,0.02372513,94.6002978],[4.53274326,0.02372342,94.59978083],[4.53274269,0.02372171,94.59926424],[4.53274213,0.02372,94.59874805],[4.53274156,0.02371829,94.59823225],[4.53274099,0.02371657,94.59771687],[4.53274042,0.02371486,94.5972019],[4.53273985,0.02371315,94.59668735],[4.53273929,0.02371144,94.59617324],[4.53273872,0.02370973,94.59565958],[4.53273815,0.02370802,94.59514636],[4.53273758,0.02370631,94.59463361],[4.53273701,0.0237046,94.59412136],[4.53273644,0.02370289,94.59361001],[4.53273587,0.02370118,94.59309983],[4.5327353,0.02369947,94.59259095],[4.53273473,0.02369776,94.59208352],[4.53273416,0.02369605,94.5915777],[4.53273359,0.02369434,94.59107374],[4.53273302,0.02369263,94.59057189],[4.53273246,0.02369092,94.59007241],[4.53273189,0.02368921,94.58957555],[4.53273132,0.0236875,94.58908157],[4.53273075,0.0236858,94.58859072],[4.53273019,0.02368409,94.58810326],[4.53272962,0.02368238,94.58761943],[4.53272906,0.02368067,94.58713948],[4.5327285,0.02367896,94.58666367],[4.53272793,0.02367725,94.58619224],[4.53272737,0.02367554,94.58572544],[4.53272681,0.02367383,94.58526351],[4.53272626,0.02367212,94.5848067],[4.5327257,0.02367041,94.58435525],[4.53272514,0.02366871,94.5839094],[4.53272459,0.023667,94.58346938],[4.53272404,0.02366529,94.58303519],[4.53272349,0.02366358,94.58260605],[4.53272294,0.02366186,94.58218112],[4.53272239,0.02366015,94.58175952],[4.53272184,0.02365844,94.58134039],[4.53272129,0.02365673,94.58092289],[4.53272074,0.02365502,94.58050615],[4.53272019,0.02365331,94.58008934],[4.53271964,0.0236516,94.5796716],[4.53271909,0.02364989,94.57925212],[4.53271853,0.02364818,94.57883047],[4.53271798,0.02364646,94.57840664],[4.53271742,0.02364475,94.57798055],[4.53271686,0.02364304,94.57755203],[4.53271631,0.02364133,94.57712092],[4.53271574,0.02363963,94.57668707],[4.53271518,0.02363792,94.5762503],[4.53271462,0.02363621,94.57581047],[4.53271405,0.0236345,94.57536741],[4.53271348,0.02363279,94.5749209],[4.53271292,0.02363109,94.57447074],[4.53271234,0.02362938,94.57401673],[4.53271177,0.02362767,94.57355865],[4.5327112,0.02362597,94.57309631],[4.53271062,0.02362426,94.5726295],[4.53271004,0.02362256,94.57215802],[4.53270956,0.02362115,94.57176465],[4.53271245,0.02362018,94.57982557],[4.53271291,0.02362159,94.58017139],[4.53271347,0.02362331,94.58059434],[4.53271403,0.02362502,94.58102191],[4.53271459,0.02362673,94.5814537],[4.53271515,0.02362844,94.58188932],[4.53271571,0.02363014,94.58232836],[4.53271628,0.02363185,94.58277041],[4.53271684,0.02363356,94.58321507],[4.5327174,0.02363527,94.58366193],[4.53271797,0.02363698,94.58411057],[4.53271853,0.02363869,94.58456058],[4.53271909,0.0236404,94.58501155],[4.53271966,0.02364211,94.58546306],[4.53272022,0.02364381,94.58591468],[4.53272078,0.02364552,94.58636599],[4.53272134,0.02364723,94.58681657],[4.5327219,0.02364894,94.58726591],[4.53272246,0.02365065,94.58771344],[4.53272302,0.02365236,94.58815897],[4.53272357,0.02365407,94.58860274],[4.53272413,0.02365578,94.58904498],[4.53272468,0.02365749,94.58948593],[4.53272524,0.0236592,94.58992585],[4.53272579,0.02366091,94.59036497],[4.53272634,0.02366262,94.59080355],[4.53272689,0.02366433,94.59124183],[4.53272744,0.02366604,94.59168006],[4.53272799,0.02366775,94.59211849],[4.53272854,0.02366946,94.59255737],[4.53272909,0.02367117,94.59299696],[4.53272964,0.02367289,94.59343751],[4.53273019,0.0236746,94.59387928],[4.53273074,0.02367631,94.59432252],[4.53273129,0.02367803,94.59476748],[4.53273184,0.02367974,94.59521444],[4.53273239,0.02368145,94.59566364],[4.53273294,0.02368317,94.59611535],[4.53273349,0.02368488,94.59656983],[4.53273404,0.02368659,94.59702734],[4.5327346,0.02368831,94.59748816],[4.53273515,0.02369002,94.59795253],[4.53273571,0.02369173,94.59842073],[4.53273626,0.02369345,94.59889302],[4.53273682,0.02369516,94.59936968],[4.53273738,0.02369687,94.59985097],[4.53273794,0.02369859,94.60033718],[4.5327385,0.0237003,94.60082868],[4.53273906,0.02370201,94.60132585],[4.53273962,0.02370372,94.60182908],[4.53274019,0.02370543,94.60233866],[4.53274076,0.02370715,94.60285435],[4.53274133,0.02370886,94.60337583],[4.5327419,0.02371057,94.60390274],[4.53274247,0.02371228,94.60443476],[4.53274304,0.02371399,94.60497152],[4.53274362,0.0237157,94.60551269],[4.53274419,0.0237174,94.60605792],[4.53274477,0.02371911,94.60660686],[4.53274535,0.02372082,94.60715916],[4.53274592,0.02372253,94.60771447],[4.5327465,0.02372424,94.60827243],[4.53274708,0.02372594,94.60883269],[4.53274766,0.02372765,94.6093949],[4.53274824,0.02372936,94.6099587],[4.53274882,0.02373107,94.61052372],[4.5327494,0.02373277,94.61108962],[4.53274997,0.02373448,94.61165602],[4.53275055,0.02373619,94.61222258],[4.53275113,0.02373789,94.61278891],[4.53275171,0.0237396,94.61335467],[4.53275228,0.02374131,94.61391948],[4.53275286,0.02374302,94.61448297],[4.53275343,0.02374473,94.61504488],[4.532754,0.02374643,94.61560521],[4.53275458,0.02374814,94.61616407],[4.53275515,0.02374985,94.61672155],[4.53275572,0.02375156,94.61727773],[4.53275629,0.02375327,94.61783272],[4.53275686,0.02375498,94.6183866],[4.53275743,0.02375669,94.61893948],[4.53275799,0.0237584,94.61949143],[4.53275856,0.02376011,94.62004256],[4.53275913,0.02376182,94.62059296],[4.53275969,0.02376354,94.62114272],[4.53276026,0.02376525,94.62169195],[4.53276082,0.02376696,94.62224073],[4.53276139,0.02376867,94.62278917],[4.53276195,0.02377038,94.62333736],[4.53276252,0.02377209,94.62388539],[4.53276308,0.02377381,94.62443337],[4.53276364,0.02377552,94.62498138],[4.5327642,0.02377723,94.62552954],[4.53276477,0.02377894,94.62607793],[4.53276533,0.02378066,94.62662666],[4.53276589,0.02378237,94.62717583],[4.53276645,0.02378408,94.62772552],[4.53276701,0.0237858,94.62827585],[4.53276757,0.02378751,94.62882692],[4.53276814,0.02378922,94.62937881],[4.5327687,0.02379093,94.62993164],[4.53276926,0.02379265,94.63048551],[4.53276982,0.02379436,94.6310405],[4.53277038,0.02379607,94.63159674],[4.53277094,0.02379779,94.63215431],[4.5327715,0.0237995,94.63271332],[4.53277207,0.02380121,94.63327387],[4.53277263,0.02380292,94.63383606],[4.53277319,0.02380464,94.63439989],[4.53277375,0.02380635,94.63496525],[4.53277432,0.02380806,94.63553203],[4.53277488,0.02380977,94.63610012],[4.53277544,0.02381149,94.63666942],[4.532776,0.0238132,94.63723981],[4.53277657,0.02381491,94.63781118],[4.53277713,0.02381662,94.63838342],[4.53277769,0.02381834,94.63895642],[4.53277825,0.02382005,94.63953007],[4.53277882,0.02382176,94.64010426],[4.53277938,0.02382348,94.64067887],[4.53277994,0.02382519,94.6412538],[4.5327805,0.0238269,94.64182893],[4.53278106,0.02382861,94.64240415],[4.53278162,0.02383033,94.64297934],[4.53278218,0.02383204,94.64355435],[4.53278274,0.02383375,94.64412902],[4.5327833,0.02383547,94.64470318],[4.53278386,0.02383718,94.64527669],[4.53278442,0.02383889,94.64584937],[4.53278498,0.02384061,94.6464211],[4.53278554,0.02384232,94.64699176],[4.53278609,0.02384404,94.64756136],[4.53278665,0.02384575,94.64813005],[4.5327872,0.02384747,94.64869799],[4.53278776,0.02384918,94.64926534],[4.53278831,0.0238509,94.64983224],[4.53278887,0.02385261,94.65039885],[4.53278942,0.02385433,94.65096533],[4.53278997,0.02385604,94.65153183],[4.53279053,0.02385776,94.65209851],[4.53279108,0.02385947,94.65266552],[4.53279163,0.02386119,94.65323302],[4.53279219,0.02386291,94.65380118],[4.53279274,0.02386462,94.65437013],[4.53279329,0.02386634,94.65494006],[4.53279384,0.02386805,94.6555111],[4.5327944,0.02386977,94.65608342],[4.53279495,0.02387148,94.65665718],[4.5327955,0.0238732,94.65723254],[4.53279606,0.02387491,94.65780966],[4.53279661,0.02387663,94.65838869],[4.53279717,0.02387835,94.6589698],[4.53279772,0.02388006,94.65955315],[4.53279827,0.02388178,94.66013889],[4.53279883,0.02388349,94.66072719],[4.53279939,0.0238852,94.66131821],[4.53279994,0.02388692,94.66191211],[4.5328005,0.02388863,94.66250905],[4.53280106,0.02389035,94.66310919],[4.53280162,0.02389206,94.6637127],[4.53280218,0.02389377,94.66431973],[4.53280274,0.02389549,94.66493046],[4.5328033,0.0238972,94.66554503],[4.53280386,0.02389891,94.66616362],[4.53280443,0.02390062,94.66678638],[4.53280499,0.02390234,94.66741344],[4.53280556,0.02390405,94.6680447],[4.53280612,0.02390576,94.66868001],[4.53280669,0.02390747,94.66931925],[4.53280726,0.02390918,94.66996226],[4.53280783,0.02391089,94.67060891],[4.5328084,0.0239126,94.67125905],[4.53280897,0.02391431,94.67191255],[4.53280954,0.02391602,94.67256925],[4.53281011,0.02391773,94.67322902],[4.53281069,0.02391944,94.67389171],[4.53281126,0.02392114,94.67455718],[4.53281184,0.02392285,94.67522528],[4.53281241,0.02392456,94.67589588],[4.53281298,0.02392627,94.67656882],[4.53281356,0.02392798,94.67724397],[4.53281414,0.02392969,94.6779212],[4.53281471,0.02393139,94.67860039],[4.53281529,0.0239331,94.67928145],[4.53281587,0.02393481,94.67996422],[4.53281644,0.02393652,94.68064857],[4.53281702,0.02393822,94.68133435],[4.5328176,0.02393993,94.68202142],[4.53281817,0.02394164,94.68270963],[4.53281875,0.02394335,94.68339883],[4.53281933,0.02394505,94.68408888],[4.53281991,0.02394676,94.68477963],[4.53282048,0.02394847,94.68547095],[4.53282106,0.02395018,94.68616268],[4.53282164,0.02395188,94.68685467],[4.53282221,0.02395359,94.68754678],[4.53282279,0.0239553,94.68823886],[4.53282337,0.02395701,94.68893078],[4.53282394,0.02395871,94.68962237],[4.53282452,0.02396042,94.69031349],[4.53282509,0.02396213,94.691004],[4.53282567,0.02396384,94.69169375],[4.53282624,0.02396555,94.69238259],[4.53282681,0.02396726,94.69307037],[4.53282739,0.02396897,94.69375696],[4.53282796,0.02397068,94.6944423],[4.53282853,0.02397238,94.69512648],[4.5328291,0.02397409,94.69580955],[4.53282967,0.0239758,94.69649161],[4.53283024,0.02397751,94.69717271],[4.53283081,0.02397922,94.69785294],[4.53283138,0.02398093,94.69853236],[4.53283195,0.02398264,94.69921106],[4.53283251,0.02398436,94.6998891],[4.53283308,0.02398607,94.70056655],[4.53283365,0.02398778,94.7012435],[4.53283421,0.02398949,94.70192002],[4.53283478,0.0239912,94.70259617],[4.53283535,0.02399291,94.70327204],[4.53283591,0.02399462,94.7039477],[4.53283648,0.02399633,94.70462322],[4.53283704,0.02399804,94.70529868],[4.53283761,0.02399976,94.70597415],[4.53283817,0.02400147,94.7066497],[4.53283874,0.02400318,94.70732542],[4.5328393,0.02400489,94.70800138],[4.53283986,0.0240066,94.70867764],[4.53284043,0.02400832,94.7093543],[4.53284099,0.02401003,94.71003141],[4.53284156,0.02401174,94.71070906],[4.53284212,0.02401345,94.71138733],[4.53284268,0.02401516,94.71206628],[4.53284325,0.02401687,94.712746],[4.53284381,0.02401859,94.71342659],[4.53284437,0.0240203,94.71410815],[4.53284494,0.02402201,94.71479076],[4.5328455,0.02402372,94.71547452],[4.53284607,0.02402543,94.71615953],[4.53284663,0.02402715,94.71684589],[4.5328472,0.02402886,94.71753368],[4.53284776,0.02403057,94.71822301],[4.53284833,0.02403228,94.71891397],[4.53284889,0.02403399,94.71960662],[4.53284946,0.0240357,94.72030105],[4.53285002,0.02403741,94.72099733],[4.53285059,0.02403912,94.72169554],[4.53285116,0.02404084,94.72239577],[4.53285172,0.02404255,94.72309811],[4.53285229,0.02404426,94.72380263],[4.53285286,0.02404597,94.72450943],[4.53285343,0.02404768,94.72521859],[4.532854,0.02404939,94.72593019],[4.53285457,0.0240511,94.72664432],[4.53285514,0.02405281,94.72736107],[4.53285571,0.02405452,94.72808051],[4.53285628,0.02405622,94.72880274],[4.53285685,0.02405793,94.72952784],[4.53285743,0.02405964,94.73025589],[4.532858,0.02406135,94.73098698],[4.53285858,0.02406306,94.7317212],[4.53285915,0.02406477,94.73245862],[4.53285973,0.02406647,94.73319934],[4.5328603,0.02406818,94.73394344],[4.53286088,0.02406989,94.73469101],[4.53286146,0.02407159,94.73544212],[4.53286204,0.0240733,94.73619687],[4.53286262,0.02407501,94.73695535],[4.5328632,0.02407671,94.73771762],[4.53286379,0.02407842,94.73848379],[4.53286437,0.02408012,94.73925393],[4.53286495,0.02408183,94.74002814],[4.53286554,0.02408353,94.74080649],[4.53286613,0.02408524,94.74158663],[4.53286671,0.02408694,94.74235653],[4.53286728,0.02408865,94.74310172],[4.53286785,0.02409036,94.74380821],[4.5328684,0.02409208,94.74447322],[4.53286894,0.0240938,94.74510532],[4.53286947,0.02409552,94.74571353],[4.53287,0.02409725,94.74630691],[4.53287052,0.02409897,94.74689451],[4.53287105,0.02410069,94.74748537],[4.53287158,0.02410242,94.74808672],[4.53287211,0.02410414,94.74869837],[4.53287264,0.02410586,94.74931825],[4.53287318,0.02410758,94.7499443],[4.53287372,0.0241093,94.75057444],[4.53287426,0.02411102,94.75120663],[4.53287479,0.02411274,94.75183878],[4.53287533,0.02411446,94.75246883],[4.53287587,0.02411619,94.75309472],[4.5328764,0.02411791,94.75371438],[4.53287693,0.02411963,94.75432588],[4.53287746,0.02412135,94.75493053],[4.53287799,0.02412308,94.75553292],[4.53287852,0.0241248,94.75613777],[4.53287905,0.02412652,94.7567498],[4.53287958,0.02412825,94.75737375],[4.53288012,0.02412997,94.75801432],[4.53288066,0.02413168,94.75867626],[4.53288122,0.0241334,94.7593641],[4.53288178,0.02413511,94.76007812],[4.53288234,0.02413682,94.76081435],[4.53288292,0.02413853,94.76156864],[4.53288349,0.02414024,94.76233683],[4.53288407,0.02414195,94.76311476],[4.53288465,0.02414365,94.76389826],[4.53288523,0.02414536,94.76468381],[4.53288582,0.02414706,94.76547037],[4.5328864,0.02414877,94.76625753],[4.53288698,0.02415048,94.76704488],[4.53288756,0.02415218,94.76783203],[4.53288814,0.02415389,94.76861856],[4.53288872,0.02415559,94.76940408],[4.5328893,0.0241573,94.77018818],[4.53288988,0.02415901,94.77097045],[4.53289046,0.02416071,94.77175049],[4.53289104,0.02416242,94.77252789],[4.53289161,0.02416413,94.77330225],[4.53289219,0.02416584,94.77407317],[4.53289276,0.02416755,94.77484024],[4.53289333,0.02416926,94.77560305],[4.5328939,0.02417096,94.7763612],[4.53289447,0.02417267,94.77711429],[4.53289504,0.02417439,94.77786192],[4.5328956,0.0241761,94.77860367],[4.53289617,0.02417781,94.77933915],[4.53289673,0.02417952,94.78006795],[4.53289729,0.02418123,94.78078967],[4.53289784,0.02418295,94.78150391],[4.53289067,0.02418534,94.75802404]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-5,"type":"border","predecessorId":-5,"sOffset":473.1798043251}},{"geometry":{"coordinates":[[[4.53289784,0.02418295,94.78150391],[4.53289729,0.02418123,94.78078967],[4.53289673,0.02417952,94.78006795],[4.53289617,0.02417781,94.77933915],[4.5328956,0.0241761,94.77860367],[4.53289504,0.02417439,94.77786192],[4.53289447,0.02417267,94.77711429],[4.5328939,0.02417096,94.7763612],[4.53289333,0.02416926,94.77560305],[4.53289276,0.02416755,94.77484024],[4.53289219,0.02416584,94.77407317],[4.53289161,0.02416413,94.77330225],[4.53289104,0.02416242,94.77252789],[4.53289046,0.02416071,94.77175049],[4.53288988,0.02415901,94.77097045],[4.5328893,0.0241573,94.77018818],[4.53288872,0.02415559,94.76940408],[4.53288814,0.02415389,94.76861856],[4.53288756,0.02415218,94.76783203],[4.53288698,0.02415048,94.76704488],[4.5328864,0.02414877,94.76625753],[4.53288582,0.02414706,94.76547037],[4.53288523,0.02414536,94.76468381],[4.53288465,0.02414365,94.76389826],[4.53288407,0.02414195,94.76311476],[4.53288349,0.02414024,94.76233683],[4.53288292,0.02413853,94.76156864],[4.53288234,0.02413682,94.76081435],[4.53288178,0.02413511,94.76007812],[4.53288122,0.0241334,94.7593641],[4.53288066,0.02413168,94.75867626],[4.53288012,0.02412997,94.75801432],[4.53287958,0.02412825,94.75737375],[4.53287905,0.02412652,94.7567498],[4.53287852,0.0241248,94.75613777],[4.53287799,0.02412308,94.75553292],[4.53287746,0.02412135,94.75493053],[4.53287693,0.02411963,94.75432588],[4.5328764,0.02411791,94.75371438],[4.53287587,0.02411619,94.75309472],[4.53287533,0.02411446,94.75246883],[4.53287479,0.02411274,94.75183878],[4.53287426,0.02411102,94.75120663],[4.53287372,0.0241093,94.75057444],[4.53287318,0.02410758,94.7499443],[4.53287264,0.02410586,94.74931825],[4.53287211,0.02410414,94.74869837],[4.53287158,0.02410242,94.74808672],[4.53287105,0.02410069,94.74748537],[4.53287052,0.02409897,94.74689451],[4.53287,0.02409725,94.74630691],[4.53286947,0.02409552,94.74571353],[4.53286894,0.0240938,94.74510532],[4.5328684,0.02409208,94.74447322],[4.53286785,0.02409036,94.74380821],[4.53286728,0.02408865,94.74310172],[4.53286671,0.02408694,94.74235653],[4.53286613,0.02408524,94.74158663],[4.53286554,0.02408353,94.74080649],[4.53286495,0.02408183,94.74002814],[4.53286437,0.02408012,94.73925393],[4.53286379,0.02407842,94.73848379],[4.5328632,0.02407671,94.73771762],[4.53286262,0.02407501,94.73695535],[4.53286204,0.0240733,94.73619687],[4.53286146,0.02407159,94.73544212],[4.53286088,0.02406989,94.73469101],[4.5328603,0.02406818,94.73394344],[4.53285973,0.02406647,94.73319934],[4.53285915,0.02406477,94.73245862],[4.53285858,0.02406306,94.7317212],[4.532858,0.02406135,94.73098698],[4.53285743,0.02405964,94.73025589],[4.53285685,0.02405793,94.72952784],[4.53285628,0.02405622,94.72880274],[4.53285571,0.02405452,94.72808051],[4.53285514,0.02405281,94.72736107],[4.53285457,0.0240511,94.72664432],[4.532854,0.02404939,94.72593019],[4.53285343,0.02404768,94.72521859],[4.53285286,0.02404597,94.72450943],[4.53285229,0.02404426,94.72380263],[4.53285172,0.02404255,94.72309811],[4.53285116,0.02404084,94.72239577],[4.53285059,0.02403912,94.72169554],[4.53285002,0.02403741,94.72099733],[4.53284946,0.0240357,94.72030105],[4.53284889,0.02403399,94.71960662],[4.53284833,0.02403228,94.71891397],[4.53284776,0.02403057,94.71822301],[4.5328472,0.02402886,94.71753368],[4.53284663,0.02402715,94.71684589],[4.53284607,0.02402543,94.71615953],[4.5328455,0.02402372,94.71547452],[4.53284494,0.02402201,94.71479076],[4.53284437,0.0240203,94.71410815],[4.53284381,0.02401859,94.71342659],[4.53284325,0.02401687,94.712746],[4.53284268,0.02401516,94.71206628],[4.53284212,0.02401345,94.71138733],[4.53284156,0.02401174,94.71070906],[4.53284099,0.02401003,94.71003141],[4.53284043,0.02400832,94.7093543],[4.53283986,0.0240066,94.70867764],[4.5328393,0.02400489,94.70800138],[4.53283874,0.02400318,94.70732542],[4.53283817,0.02400147,94.7066497],[4.53283761,0.02399976,94.70597415],[4.53283704,0.02399804,94.70529868],[4.53283648,0.02399633,94.70462322],[4.53283591,0.02399462,94.7039477],[4.53283535,0.02399291,94.70327204],[4.53283478,0.0239912,94.70259617],[4.53283421,0.02398949,94.70192002],[4.53283365,0.02398778,94.7012435],[4.53283308,0.02398607,94.70056655],[4.53283251,0.02398436,94.6998891],[4.53283195,0.02398264,94.69921106],[4.53283138,0.02398093,94.69853236],[4.53283081,0.02397922,94.69785294],[4.53283024,0.02397751,94.69717271],[4.53282967,0.0239758,94.69649161],[4.5328291,0.02397409,94.69580955],[4.53282853,0.02397238,94.69512648],[4.53282796,0.02397068,94.6944423],[4.53282739,0.02396897,94.69375696],[4.53282681,0.02396726,94.69307037],[4.53282624,0.02396555,94.69238259],[4.53282567,0.02396384,94.69169375],[4.53282509,0.02396213,94.691004],[4.53282452,0.02396042,94.69031349],[4.53282394,0.02395871,94.68962237],[4.53282337,0.02395701,94.68893078],[4.53282279,0.0239553,94.68823886],[4.53282221,0.02395359,94.68754678],[4.53282164,0.02395188,94.68685467],[4.53282106,0.02395018,94.68616268],[4.53282048,0.02394847,94.68547095],[4.53281991,0.02394676,94.68477963],[4.53281933,0.02394505,94.68408888],[4.53281875,0.02394335,94.68339883],[4.53281817,0.02394164,94.68270963],[4.5328176,0.02393993,94.68202142],[4.53281702,0.02393822,94.68133435],[4.53281644,0.02393652,94.68064857],[4.53281587,0.02393481,94.67996422],[4.53281529,0.0239331,94.67928145],[4.53281471,0.02393139,94.67860039],[4.53281414,0.02392969,94.6779212],[4.53281356,0.02392798,94.67724397],[4.53281298,0.02392627,94.67656882],[4.53281241,0.02392456,94.67589588],[4.53281184,0.02392285,94.67522528],[4.53281126,0.02392114,94.67455718],[4.53281069,0.02391944,94.67389171],[4.53281011,0.02391773,94.67322902],[4.53280954,0.02391602,94.67256925],[4.53280897,0.02391431,94.67191255],[4.5328084,0.0239126,94.67125905],[4.53280783,0.02391089,94.67060891],[4.53280726,0.02390918,94.66996226],[4.53280669,0.02390747,94.66931925],[4.53280612,0.02390576,94.66868001],[4.53280556,0.02390405,94.6680447],[4.53280499,0.02390234,94.66741344],[4.53280443,0.02390062,94.66678638],[4.53280386,0.02389891,94.66616362],[4.5328033,0.0238972,94.66554503],[4.53280274,0.02389549,94.66493046],[4.53280218,0.02389377,94.66431973],[4.53280162,0.02389206,94.6637127],[4.53280106,0.02389035,94.66310919],[4.5328005,0.02388863,94.66250905],[4.53279994,0.02388692,94.66191211],[4.53279939,0.0238852,94.66131821],[4.53279883,0.02388349,94.66072719],[4.53279827,0.02388178,94.66013889],[4.53279772,0.02388006,94.65955315],[4.53279717,0.02387835,94.6589698],[4.53279661,0.02387663,94.65838869],[4.53279606,0.02387491,94.65780966],[4.5327955,0.0238732,94.65723254],[4.53279495,0.02387148,94.65665718],[4.5327944,0.02386977,94.65608342],[4.53279384,0.02386805,94.6555111],[4.53279329,0.02386634,94.65494006],[4.53279274,0.02386462,94.65437013],[4.53279219,0.02386291,94.65380118],[4.53279163,0.02386119,94.65323302],[4.53279108,0.02385947,94.65266552],[4.53279053,0.02385776,94.65209851],[4.53278997,0.02385604,94.65153183],[4.53278942,0.02385433,94.65096533],[4.53278887,0.02385261,94.65039885],[4.53278831,0.0238509,94.64983224],[4.53278776,0.02384918,94.64926534],[4.5327872,0.02384747,94.64869799],[4.53278665,0.02384575,94.64813005],[4.53278609,0.02384404,94.64756136],[4.53278554,0.02384232,94.64699176],[4.53278498,0.02384061,94.6464211],[4.53278442,0.02383889,94.64584937],[4.53278386,0.02383718,94.64527669],[4.5327833,0.02383547,94.64470318],[4.53278274,0.02383375,94.64412902],[4.53278218,0.02383204,94.64355435],[4.53278162,0.02383033,94.64297934],[4.53278106,0.02382861,94.64240415],[4.5327805,0.0238269,94.64182893],[4.53277994,0.02382519,94.6412538],[4.53277938,0.02382348,94.64067887],[4.53277882,0.02382176,94.64010426],[4.53277825,0.02382005,94.63953007],[4.53277769,0.02381834,94.63895642],[4.53277713,0.02381662,94.63838342],[4.53277657,0.02381491,94.63781118],[4.532776,0.0238132,94.63723981],[4.53277544,0.02381149,94.63666942],[4.53277488,0.02380977,94.63610012],[4.53277432,0.02380806,94.63553203],[4.53277375,0.02380635,94.63496525],[4.53277319,0.02380464,94.63439989],[4.53277263,0.02380292,94.63383606],[4.53277207,0.02380121,94.63327387],[4.5327715,0.0237995,94.63271332],[4.53277094,0.02379779,94.63215431],[4.53277038,0.02379607,94.63159674],[4.53276982,0.02379436,94.6310405],[4.53276926,0.02379265,94.63048551],[4.5327687,0.02379093,94.62993164],[4.53276814,0.02378922,94.62937881],[4.53276757,0.02378751,94.62882692],[4.53276701,0.0237858,94.62827585],[4.53276645,0.02378408,94.62772552],[4.53276589,0.02378237,94.62717583],[4.53276533,0.02378066,94.62662666],[4.53276477,0.02377894,94.62607793],[4.5327642,0.02377723,94.62552954],[4.53276364,0.02377552,94.62498138],[4.53276308,0.02377381,94.62443337],[4.53276252,0.02377209,94.62388539],[4.53276195,0.02377038,94.62333736],[4.53276139,0.02376867,94.62278917],[4.53276082,0.02376696,94.62224073],[4.53276026,0.02376525,94.62169195],[4.53275969,0.02376354,94.62114272],[4.53275913,0.02376182,94.62059296],[4.53275856,0.02376011,94.62004256],[4.53275799,0.0237584,94.61949143],[4.53275743,0.02375669,94.61893948],[4.53275686,0.02375498,94.6183866],[4.53275629,0.02375327,94.61783272],[4.53275572,0.02375156,94.61727773],[4.53275515,0.02374985,94.61672155],[4.53275458,0.02374814,94.61616407],[4.532754,0.02374643,94.61560521],[4.53275343,0.02374473,94.61504488],[4.53275286,0.02374302,94.61448297],[4.53275228,0.02374131,94.61391948],[4.53275171,0.0237396,94.61335467],[4.53275113,0.02373789,94.61278891],[4.53275055,0.02373619,94.61222258],[4.53274997,0.02373448,94.61165602],[4.5327494,0.02373277,94.61108962],[4.53274882,0.02373107,94.61052372],[4.53274824,0.02372936,94.6099587],[4.53274766,0.02372765,94.6093949],[4.53274708,0.02372594,94.60883269],[4.5327465,0.02372424,94.60827243],[4.53274592,0.02372253,94.60771447],[4.53274535,0.02372082,94.60715916],[4.53274477,0.02371911,94.60660686],[4.53274419,0.0237174,94.60605792],[4.53274362,0.0237157,94.60551269],[4.53274304,0.02371399,94.60497152],[4.53274247,0.02371228,94.60443476],[4.5327419,0.02371057,94.60390274],[4.53274133,0.02370886,94.60337583],[4.53274076,0.02370715,94.60285435],[4.53274019,0.02370543,94.60233866],[4.53273962,0.02370372,94.60182908],[4.53273906,0.02370201,94.60132585],[4.5327385,0.0237003,94.60082868],[4.53273794,0.02369859,94.60033718],[4.53273738,0.02369687,94.59985097],[4.53273682,0.02369516,94.59936968],[4.53273626,0.02369345,94.59889302],[4.53273571,0.02369173,94.59842073],[4.53273515,0.02369002,94.59795253],[4.5327346,0.02368831,94.59748816],[4.53273404,0.02368659,94.59702734],[4.53273349,0.02368488,94.59656983],[4.53273294,0.02368317,94.59611535],[4.53273239,0.02368145,94.59566364],[4.53273184,0.02367974,94.59521444],[4.53273129,0.02367803,94.59476748],[4.53273074,0.02367631,94.59432252],[4.53273019,0.0236746,94.59387928],[4.53272964,0.02367289,94.59343751],[4.53272909,0.02367117,94.59299696],[4.53272854,0.02366946,94.59255737],[4.53272799,0.02366775,94.59211849],[4.53272744,0.02366604,94.59168006],[4.53272689,0.02366433,94.59124183],[4.53272634,0.02366262,94.59080355],[4.53272579,0.02366091,94.59036497],[4.53272524,0.0236592,94.58992585],[4.53272468,0.02365749,94.58948593],[4.53272413,0.02365578,94.58904498],[4.53272357,0.02365407,94.58860274],[4.53272302,0.02365236,94.58815897],[4.53272246,0.02365065,94.58771344],[4.5327219,0.02364894,94.58726591],[4.53272134,0.02364723,94.58681657],[4.53272078,0.02364552,94.58636599],[4.53272022,0.02364381,94.58591468],[4.53271966,0.02364211,94.58546306],[4.53271909,0.0236404,94.58501155],[4.53271853,0.02363869,94.58456058],[4.53271797,0.02363698,94.58411057],[4.5327174,0.02363527,94.58366193],[4.53271684,0.02363356,94.58321507],[4.53271628,0.02363185,94.58277041],[4.53271571,0.02363014,94.58232836],[4.53271515,0.02362844,94.58188932],[4.53271459,0.02362673,94.5814537],[4.53271403,0.02362502,94.58102191],[4.53271347,0.02362331,94.58059434],[4.53271291,0.02362159,94.58017139],[4.53271245,0.02362018,94.57982557],[4.5327139,0.02361969,94.58386712],[4.53271436,0.02362111,94.58420527],[4.53271491,0.02362282,94.58461668],[4.53271546,0.02362453,94.5850307],[4.53271601,0.02362625,94.58544739],[4.53271657,0.02362796,94.58586683],[4.53271712,0.02362967,94.58628908],[4.53271768,0.02363138,94.58671422],[4.53271823,0.02363309,94.58714232],[4.53271879,0.0236348,94.58757345],[4.53271935,0.02363652,94.58800769],[4.5327199,0.02363823,94.58844511],[4.53272046,0.02363994,94.58888577],[4.53272102,0.02364165,94.58932977],[4.53272158,0.02364336,94.58977716],[4.53272214,0.02364507,94.59022803],[4.5327227,0.02364678,94.59068244],[4.53272326,0.02364848,94.59114038],[4.53272382,0.02365019,94.59160178],[4.53272439,0.0236519,94.59206653],[4.53272495,0.02365361,94.59253456],[4.53272551,0.02365531,94.59300576],[4.53272608,0.02365702,94.59348004],[4.53272664,0.02365873,94.59395732],[4.53272721,0.02366043,94.59443749],[4.53272777,0.02366214,94.59492047],[4.53272834,0.02366384,94.59540616],[4.5327289,0.02366555,94.59589447],[4.53272947,0.02366726,94.5963853],[4.53273004,0.02366896,94.59687855],[4.53273061,0.02367067,94.59737414],[4.53273117,0.02367237,94.59787195],[4.53273174,0.02367408,94.59837191],[4.53273231,0.02367579,94.5988739],[4.53273288,0.02367749,94.59937783],[4.53273345,0.0236792,94.5998836],[4.53273401,0.02368091,94.60039112],[4.53273458,0.02368262,94.60090028],[4.53273515,0.02368432,94.60141098],[4.53273572,0.02368603,94.60192313],[4.53273629,0.02368774,94.60243662],[4.53273686,0.02368945,94.60295135],[4.53273743,0.02369116,94.60346723],[4.532738,0.02369287,94.60398414],[4.53273857,0.02369458,94.60450199],[4.53273914,0.02369628,94.60502068],[4.53273971,0.02369799,94.60554011],[4.53274028,0.0236997,94.60606029],[4.53274084,0.02370141,94.60658123],[4.53274141,0.02370312,94.60710293],[4.53274198,0.02370483,94.60762542],[4.53274255,0.02370655,94.6081487],[4.53274312,0.02370826,94.60867279],[4.53274369,0.02370997,94.60919769],[4.53274426,0.02371168,94.60972343],[4.53274482,0.02371339,94.61025002],[4.53274539,0.0237151,94.61077746],[4.53274596,0.02371681,94.61130578],[4.53274653,0.02371852,94.61183498],[4.5327471,0.02372024,94.61236507],[4.53274766,0.02372195,94.61289608],[4.53274823,0.02372366,94.61342802],[4.5327488,0.02372537,94.61396089],[4.53274937,0.02372708,94.61449471],[4.53274993,0.02372879,94.6150295],[4.5327505,0.0237305,94.61556527],[4.53275107,0.02373221,94.61610203],[4.53275164,0.02373392,94.6166398],[4.5327522,0.02373564,94.61717859],[4.53275277,0.02373735,94.61771842],[4.53275334,0.02373906,94.61825929],[4.5327539,0.02374077,94.61880122],[4.53275447,0.02374248,94.61934424],[4.53275504,0.02374419,94.61988835],[4.5327556,0.0237459,94.62043357],[4.53275617,0.02374761,94.62097991],[4.53275674,0.02374932,94.62152737],[4.53275731,0.02375103,94.62207593],[4.53275787,0.02375274,94.62262561],[4.53275844,0.02375445,94.62317639],[4.53275901,0.02375616,94.62372829],[4.53275957,0.02375787,94.62428129],[4.53276014,0.02375959,94.6248354],[4.53276071,0.0237613,94.62539062],[4.53276127,0.02376301,94.62594694],[4.53276184,0.02376472,94.62650437],[4.53276241,0.02376643,94.6270629],[4.53276297,0.02376814,94.62762253],[4.53276354,0.02376985,94.62818327],[4.53276411,0.02377156,94.6287451],[4.53276468,0.02377327,94.62930804],[4.53276524,0.02377498,94.62987207],[4.53276581,0.0237767,94.6304372],[4.53276638,0.02377841,94.63100343],[4.53276694,0.02378012,94.63157075],[4.53276751,0.02378183,94.63213917],[4.53276808,0.02378354,94.63270869],[4.53276864,0.02378525,94.6332793],[4.53276921,0.02378696,94.633851],[4.53276978,0.02378867,94.63442379],[4.53277034,0.02379038,94.63499767],[4.53277091,0.0237921,94.63557264],[4.53277148,0.02379381,94.6361487],[4.53277205,0.02379552,94.63672585],[4.53277261,0.02379723,94.63730409],[4.53277318,0.02379894,94.63788341],[4.53277375,0.02380065,94.63846382],[4.53277431,0.02380236,94.63904532],[4.53277488,0.02380407,94.63962789],[4.53277545,0.02380578,94.64021156],[4.53277602,0.02380749,94.6407963],[4.53277658,0.02380921,94.64138213],[4.53277715,0.02381092,94.64196904],[4.53277772,0.02381263,94.64255704],[4.53277828,0.02381434,94.64314612],[4.53277885,0.02381605,94.64373629],[4.53277942,0.02381776,94.64432754],[4.53277999,0.02381947,94.64491988],[4.53278055,0.02382118,94.64551331],[4.53278112,0.02382289,94.64610782],[4.53278169,0.0238246,94.64670342],[4.53278226,0.02382631,94.64730011],[4.53278282,0.02382803,94.64789789],[4.53278339,0.02382974,94.64849675],[4.53278396,0.02383145,94.64909665],[4.53278452,0.02383316,94.64969755],[4.53278509,0.02383487,94.6502994],[4.53278566,0.02383658,94.65090216],[4.53278623,0.02383829,94.65150578],[4.53278679,0.02384,94.65211024],[4.53278736,0.02384171,94.65271553],[4.53278793,0.02384342,94.65332164],[4.5327885,0.02384513,94.65392859],[4.53278906,0.02384684,94.65453636],[4.53278963,0.02384856,94.65514495],[4.5327902,0.02385027,94.65575435],[4.53279076,0.02385198,94.65636456],[4.53279133,0.02385369,94.65697559],[4.5327919,0.0238554,94.65758742],[4.53279246,0.02385711,94.65820005],[4.53279303,0.02385882,94.65881349],[4.5327936,0.02386053,94.65942772],[4.53279416,0.02386224,94.66004274],[4.53279473,0.02386396,94.66065855],[4.5327953,0.02386567,94.66127514],[4.53279586,0.02386738,94.66189252],[4.53279643,0.02386909,94.66251068],[4.532797,0.0238708,94.66312962],[4.53279756,0.02387251,94.66374932],[4.53279813,0.02387422,94.6643698],[4.5327987,0.02387593,94.66499104],[4.53279926,0.02387764,94.66561304],[4.53279983,0.02387936,94.66623581],[4.53280039,0.02388107,94.66685932],[4.53280096,0.02388278,94.6674836],[4.53280153,0.02388449,94.66810862],[4.53280209,0.0238862,94.66873438],[4.53280266,0.02388791,94.66936089],[4.53280322,0.02388962,94.66998814],[4.53280379,0.02389134,94.67061613],[4.53280436,0.02389305,94.67124484],[4.53280492,0.02389476,94.67187429],[4.53280549,0.02389647,94.67250447],[4.53280605,0.02389818,94.67313536],[4.53280662,0.02389989,94.67376698],[4.53280718,0.0239016,94.67439931],[4.53280775,0.02390332,94.67503236],[4.53280831,0.02390503,94.67566611],[4.53280888,0.02390674,94.67630057],[4.53280944,0.02390845,94.67693574],[4.53281001,0.02391016,94.6775716],[4.53281057,0.02391187,94.67820817],[4.53281114,0.02391358,94.67884542],[4.5328117,0.0239153,94.67948337],[4.53281227,0.02391701,94.680122],[4.53281283,0.02391872,94.68076131],[4.5328134,0.02392043,94.68140131],[4.53281396,0.02392214,94.68204199],[4.53281453,0.02392385,94.68268333],[4.53281509,0.02392557,94.68332535],[4.53281566,0.02392728,94.68396804],[4.53281622,0.02392899,94.68461141],[4.53281679,0.0239307,94.6852555],[4.53281735,0.02393241,94.68590034],[4.53281792,0.02393412,94.68654592],[4.53281848,0.02393584,94.68719226],[4.53281904,0.02393755,94.68783934],[4.53281961,0.02393926,94.68848717],[4.53282017,0.02394097,94.68913574],[4.53282074,0.02394268,94.68978505],[4.5328213,0.0239444,94.69043509],[4.53282187,0.02394611,94.69108588],[4.53282243,0.02394782,94.69173739],[4.53282299,0.02394953,94.69238964],[4.53282356,0.02395124,94.69304261],[4.53282412,0.02395295,94.69369632],[4.53282469,0.02395467,94.69435075],[4.53282525,0.02395638,94.6950059],[4.53282581,0.02395809,94.69566177],[4.53282638,0.0239598,94.69631836],[4.53282694,0.02396151,94.69697566],[4.53282751,0.02396323,94.69763368],[4.53282807,0.02396494,94.69829241],[4.53282863,0.02396665,94.69895185],[4.5328292,0.02396836,94.699612],[4.53282976,0.02397007,94.70027285],[4.53283033,0.02397178,94.70093441],[4.53283089,0.0239735,94.70159667],[4.53283145,0.02397521,94.70225962],[4.53283202,0.02397692,94.70292328],[4.53283258,0.02397863,94.70358762],[4.53283315,0.02398034,94.70425266],[4.53283371,0.02398206,94.70491839],[4.53283427,0.02398377,94.70558481],[4.53283484,0.02398548,94.70625191],[4.5328354,0.02398719,94.7069197],[4.53283596,0.0239889,94.70758817],[4.53283653,0.02399062,94.70825732],[4.53283709,0.02399233,94.70892715],[4.53283765,0.02399404,94.70959765],[4.53283822,0.02399575,94.71026882],[4.53283878,0.02399746,94.71094067],[4.53283934,0.02399918,94.71161318],[4.53283991,0.02400089,94.71228636],[4.53284047,0.0240026,94.7129602],[4.53284103,0.02400431,94.71363471],[4.5328416,0.02400602,94.71430988],[4.53284216,0.02400774,94.7149857],[4.53284272,0.02400945,94.71566219],[4.53284329,0.02401116,94.71633932],[4.53284385,0.02401287,94.71701711],[4.53284441,0.02401458,94.71769555],[4.53284498,0.0240163,94.71837464],[4.53284554,0.02401801,94.71905441],[4.5328461,0.02401972,94.71973487],[4.53284667,0.02402143,94.72041605],[4.53284723,0.02402315,94.72109795],[4.53284779,0.02402486,94.72178059],[4.53284836,0.02402657,94.722464],[4.53284892,0.02402828,94.72314819],[4.53284948,0.02402999,94.72383317],[4.53285005,0.02403171,94.72451897],[4.53285061,0.02403342,94.72520557],[4.53285117,0.02403513,94.72589298],[4.53285174,0.02403684,94.72658118],[4.5328523,0.02403855,94.72727017],[4.53285286,0.02404027,94.72795994],[4.53285343,0.02404198,94.72865048],[4.53285399,0.02404369,94.72934179],[4.53285455,0.0240454,94.73003386],[4.53285512,0.02404711,94.73072668],[4.53285568,0.02404883,94.73142024],[4.53285625,0.02405054,94.73211455],[4.53285681,0.02405225,94.73280959],[4.53285737,0.02405396,94.73350535],[4.53285794,0.02405567,94.73420182],[4.5328585,0.02405738,94.73489901],[4.53285906,0.02405909,94.7355969],[4.53285963,0.02406081,94.73629549],[4.53286019,0.02406252,94.73699477],[4.53286075,0.02406423,94.73769473],[4.53286132,0.02406594,94.73839536],[4.53286188,0.02406765,94.73909667],[4.53286245,0.02406937,94.73979863],[4.53286301,0.02407108,94.74050125],[4.53286357,0.02407279,94.74120451],[4.53286414,0.0240745,94.74190842],[4.5328647,0.02407621,94.74261296],[4.53286526,0.02407793,94.74331812],[4.53286583,0.02407964,94.7440239],[4.53286639,0.02408135,94.7447303],[4.53286696,0.02408306,94.74543729],[4.53286752,0.02408477,94.74614489],[4.53286808,0.02408648,94.74685308],[4.53286865,0.0240882,94.74756185],[4.53286921,0.02408991,94.74827119],[4.53286977,0.02409162,94.74898111],[4.53287034,0.02409333,94.74969158],[4.5328709,0.02409504,94.75040262],[4.53287147,0.02409676,94.7511142],[4.53287203,0.02409847,94.75182632],[4.53287259,0.02410018,94.75253897],[4.53287316,0.02410189,94.75325215],[4.53287372,0.0241036,94.75396586],[4.53287428,0.02410532,94.75468007],[4.53287485,0.02410703,94.75539479],[4.53287541,0.02410874,94.75611001],[4.53287597,0.02411045,94.75682571],[4.53287654,0.02411216,94.75754191],[4.5328771,0.02411388,94.75825858],[4.53287766,0.02411559,94.75897572],[4.53287823,0.0241173,94.75969332],[4.53287879,0.02411901,94.76041138],[4.53287935,0.02412072,94.76112989],[4.53287992,0.02412244,94.76184884],[4.53288048,0.02412415,94.76256822],[4.53288104,0.02412586,94.76328803],[4.53288161,0.02412757,94.76400826],[4.53288217,0.02412928,94.76472891],[4.53288273,0.024131,94.76544996],[4.5328833,0.02413271,94.76617141],[4.53288386,0.02413442,94.76689326],[4.53288442,0.02413613,94.76761548],[4.53288498,0.02413784,94.76833809],[4.53288555,0.02413956,94.76906107],[4.53288611,0.02414127,94.76978441],[4.53288667,0.02414298,94.7705081],[4.53288723,0.02414469,94.77123215],[4.5328878,0.0241464,94.77195654],[4.53288836,0.02414812,94.77268127],[4.53288892,0.02414983,94.77340633],[4.53288948,0.02415154,94.77413172],[4.53289005,0.02415325,94.77485743],[4.53289061,0.02415497,94.77558346],[4.53289117,0.02415668,94.77630981],[4.53289173,0.02415839,94.77703647],[4.5328923,0.0241601,94.77776344],[4.53289286,0.02416182,94.77849072],[4.53289342,0.02416353,94.77921829],[4.53289398,0.02416524,94.77994615],[4.53289454,0.02416695,94.78067431],[4.5328951,0.02416867,94.78140275],[4.53289567,0.02417038,94.78213148],[4.53289623,0.02417209,94.78286048],[4.53289679,0.0241738,94.78358976],[4.53289735,0.02417552,94.78431931],[4.53289791,0.02417723,94.78504912],[4.53289847,0.02417894,94.7857792],[4.53289903,0.02418065,94.78650953],[4.5328996,0.02418237,94.78724011],[4.53289784,0.02418295,94.78150391]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-4,"type":"shoulder","predecessorId":-4,"sOffset":473.1798043251}},{"geometry":{"coordinates":[[[4.5328996,0.02418237,94.78724011],[4.53289903,0.02418065,94.78650953],[4.53289847,0.02417894,94.7857792],[4.53289791,0.02417723,94.78504912],[4.53289735,0.02417552,94.78431931],[4.53289679,0.0241738,94.78358976],[4.53289623,0.02417209,94.78286048],[4.53289567,0.02417038,94.78213148],[4.5328951,0.02416867,94.78140275],[4.53289454,0.02416695,94.78067431],[4.53289398,0.02416524,94.77994615],[4.53289342,0.02416353,94.77921829],[4.53289286,0.02416182,94.77849072],[4.5328923,0.0241601,94.77776344],[4.53289173,0.02415839,94.77703647],[4.53289117,0.02415668,94.77630981],[4.53289061,0.02415497,94.77558346],[4.53289005,0.02415325,94.77485743],[4.53288948,0.02415154,94.77413172],[4.53288892,0.02414983,94.77340633],[4.53288836,0.02414812,94.77268127],[4.5328878,0.0241464,94.77195654],[4.53288723,0.02414469,94.77123215],[4.53288667,0.02414298,94.7705081],[4.53288611,0.02414127,94.76978441],[4.53288555,0.02413956,94.76906107],[4.53288498,0.02413784,94.76833809],[4.53288442,0.02413613,94.76761548],[4.53288386,0.02413442,94.76689326],[4.5328833,0.02413271,94.76617141],[4.53288273,0.024131,94.76544996],[4.53288217,0.02412928,94.76472891],[4.53288161,0.02412757,94.76400826],[4.53288104,0.02412586,94.76328803],[4.53288048,0.02412415,94.76256822],[4.53287992,0.02412244,94.76184884],[4.53287935,0.02412072,94.76112989],[4.53287879,0.02411901,94.76041138],[4.53287823,0.0241173,94.75969332],[4.53287766,0.02411559,94.75897572],[4.5328771,0.02411388,94.75825858],[4.53287654,0.02411216,94.75754191],[4.53287597,0.02411045,94.75682571],[4.53287541,0.02410874,94.75611001],[4.53287485,0.02410703,94.75539479],[4.53287428,0.02410532,94.75468007],[4.53287372,0.0241036,94.75396586],[4.53287316,0.02410189,94.75325215],[4.53287259,0.02410018,94.75253897],[4.53287203,0.02409847,94.75182632],[4.53287147,0.02409676,94.7511142],[4.5328709,0.02409504,94.75040262],[4.53287034,0.02409333,94.74969158],[4.53286977,0.02409162,94.74898111],[4.53286921,0.02408991,94.74827119],[4.53286865,0.0240882,94.74756185],[4.53286808,0.02408648,94.74685308],[4.53286752,0.02408477,94.74614489],[4.53286696,0.02408306,94.74543729],[4.53286639,0.02408135,94.7447303],[4.53286583,0.02407964,94.7440239],[4.53286526,0.02407793,94.74331812],[4.5328647,0.02407621,94.74261296],[4.53286414,0.0240745,94.74190842],[4.53286357,0.02407279,94.74120451],[4.53286301,0.02407108,94.74050125],[4.53286245,0.02406937,94.73979863],[4.53286188,0.02406765,94.73909667],[4.53286132,0.02406594,94.73839536],[4.53286075,0.02406423,94.73769473],[4.53286019,0.02406252,94.73699477],[4.53285963,0.02406081,94.73629549],[4.53285906,0.02405909,94.7355969],[4.5328585,0.02405738,94.73489901],[4.53285794,0.02405567,94.73420182],[4.53285737,0.02405396,94.73350535],[4.53285681,0.02405225,94.73280959],[4.53285625,0.02405054,94.73211455],[4.53285568,0.02404883,94.73142024],[4.53285512,0.02404711,94.73072668],[4.53285455,0.0240454,94.73003386],[4.53285399,0.02404369,94.72934179],[4.53285343,0.02404198,94.72865048],[4.53285286,0.02404027,94.72795994],[4.5328523,0.02403855,94.72727017],[4.53285174,0.02403684,94.72658118],[4.53285117,0.02403513,94.72589298],[4.53285061,0.02403342,94.72520557],[4.53285005,0.02403171,94.72451897],[4.53284948,0.02402999,94.72383317],[4.53284892,0.02402828,94.72314819],[4.53284836,0.02402657,94.722464],[4.53284779,0.02402486,94.72178059],[4.53284723,0.02402315,94.72109795],[4.53284667,0.02402143,94.72041605],[4.5328461,0.02401972,94.71973487],[4.53284554,0.02401801,94.71905441],[4.53284498,0.0240163,94.71837464],[4.53284441,0.02401458,94.71769555],[4.53284385,0.02401287,94.71701711],[4.53284329,0.02401116,94.71633932],[4.53284272,0.02400945,94.71566219],[4.53284216,0.02400774,94.7149857],[4.5328416,0.02400602,94.71430988],[4.53284103,0.02400431,94.71363471],[4.53284047,0.0240026,94.7129602],[4.53283991,0.02400089,94.71228636],[4.53283934,0.02399918,94.71161318],[4.53283878,0.02399746,94.71094067],[4.53283822,0.02399575,94.71026882],[4.53283765,0.02399404,94.70959765],[4.53283709,0.02399233,94.70892715],[4.53283653,0.02399062,94.70825732],[4.53283596,0.0239889,94.70758817],[4.5328354,0.02398719,94.7069197],[4.53283484,0.02398548,94.70625191],[4.53283427,0.02398377,94.70558481],[4.53283371,0.02398206,94.70491839],[4.53283315,0.02398034,94.70425266],[4.53283258,0.02397863,94.70358762],[4.53283202,0.02397692,94.70292328],[4.53283145,0.02397521,94.70225962],[4.53283089,0.0239735,94.70159667],[4.53283033,0.02397178,94.70093441],[4.53282976,0.02397007,94.70027285],[4.5328292,0.02396836,94.699612],[4.53282863,0.02396665,94.69895185],[4.53282807,0.02396494,94.69829241],[4.53282751,0.02396323,94.69763368],[4.53282694,0.02396151,94.69697566],[4.53282638,0.0239598,94.69631836],[4.53282581,0.02395809,94.69566177],[4.53282525,0.02395638,94.6950059],[4.53282469,0.02395467,94.69435075],[4.53282412,0.02395295,94.69369632],[4.53282356,0.02395124,94.69304261],[4.53282299,0.02394953,94.69238964],[4.53282243,0.02394782,94.69173739],[4.53282187,0.02394611,94.69108588],[4.5328213,0.0239444,94.69043509],[4.53282074,0.02394268,94.68978505],[4.53282017,0.02394097,94.68913574],[4.53281961,0.02393926,94.68848717],[4.53281904,0.02393755,94.68783934],[4.53281848,0.02393584,94.68719226],[4.53281792,0.02393412,94.68654592],[4.53281735,0.02393241,94.68590034],[4.53281679,0.0239307,94.6852555],[4.53281622,0.02392899,94.68461141],[4.53281566,0.02392728,94.68396804],[4.53281509,0.02392557,94.68332535],[4.53281453,0.02392385,94.68268333],[4.53281396,0.02392214,94.68204199],[4.5328134,0.02392043,94.68140131],[4.53281283,0.02391872,94.68076131],[4.53281227,0.02391701,94.680122],[4.5328117,0.0239153,94.67948337],[4.53281114,0.02391358,94.67884542],[4.53281057,0.02391187,94.67820817],[4.53281001,0.02391016,94.6775716],[4.53280944,0.02390845,94.67693574],[4.53280888,0.02390674,94.67630057],[4.53280831,0.02390503,94.67566611],[4.53280775,0.02390332,94.67503236],[4.53280718,0.0239016,94.67439931],[4.53280662,0.02389989,94.67376698],[4.53280605,0.02389818,94.67313536],[4.53280549,0.02389647,94.67250447],[4.53280492,0.02389476,94.67187429],[4.53280436,0.02389305,94.67124484],[4.53280379,0.02389134,94.67061613],[4.53280322,0.02388962,94.66998814],[4.53280266,0.02388791,94.66936089],[4.53280209,0.0238862,94.66873438],[4.53280153,0.02388449,94.66810862],[4.53280096,0.02388278,94.6674836],[4.53280039,0.02388107,94.66685932],[4.53279983,0.02387936,94.66623581],[4.53279926,0.02387764,94.66561304],[4.5327987,0.02387593,94.66499104],[4.53279813,0.02387422,94.6643698],[4.53279756,0.02387251,94.66374932],[4.532797,0.0238708,94.66312962],[4.53279643,0.02386909,94.66251068],[4.53279586,0.02386738,94.66189252],[4.5327953,0.02386567,94.66127514],[4.53279473,0.02386396,94.66065855],[4.53279416,0.02386224,94.66004274],[4.5327936,0.02386053,94.65942772],[4.53279303,0.02385882,94.65881349],[4.53279246,0.02385711,94.65820005],[4.5327919,0.0238554,94.65758742],[4.53279133,0.02385369,94.65697559],[4.53279076,0.02385198,94.65636456],[4.5327902,0.02385027,94.65575435],[4.53278963,0.02384856,94.65514495],[4.53278906,0.02384684,94.65453636],[4.5327885,0.02384513,94.65392859],[4.53278793,0.02384342,94.65332164],[4.53278736,0.02384171,94.65271553],[4.53278679,0.02384,94.65211024],[4.53278623,0.02383829,94.65150578],[4.53278566,0.02383658,94.65090216],[4.53278509,0.02383487,94.6502994],[4.53278452,0.02383316,94.64969755],[4.53278396,0.02383145,94.64909665],[4.53278339,0.02382974,94.64849675],[4.53278282,0.02382803,94.64789789],[4.53278226,0.02382631,94.64730011],[4.53278169,0.0238246,94.64670342],[4.53278112,0.02382289,94.64610782],[4.53278055,0.02382118,94.64551331],[4.53277999,0.02381947,94.64491988],[4.53277942,0.02381776,94.64432754],[4.53277885,0.02381605,94.64373629],[4.53277828,0.02381434,94.64314612],[4.53277772,0.02381263,94.64255704],[4.53277715,0.02381092,94.64196904],[4.53277658,0.02380921,94.64138213],[4.53277602,0.02380749,94.6407963],[4.53277545,0.02380578,94.64021156],[4.53277488,0.02380407,94.63962789],[4.53277431,0.02380236,94.63904532],[4.53277375,0.02380065,94.63846382],[4.53277318,0.02379894,94.63788341],[4.53277261,0.02379723,94.63730409],[4.53277205,0.02379552,94.63672585],[4.53277148,0.02379381,94.6361487],[4.53277091,0.0237921,94.63557264],[4.53277034,0.02379038,94.63499767],[4.53276978,0.02378867,94.63442379],[4.53276921,0.02378696,94.633851],[4.53276864,0.02378525,94.6332793],[4.53276808,0.02378354,94.63270869],[4.53276751,0.02378183,94.63213917],[4.53276694,0.02378012,94.63157075],[4.53276638,0.02377841,94.63100343],[4.53276581,0.0237767,94.6304372],[4.53276524,0.02377498,94.62987207],[4.53276468,0.02377327,94.62930804],[4.53276411,0.02377156,94.6287451],[4.53276354,0.02376985,94.62818327],[4.53276297,0.02376814,94.62762253],[4.53276241,0.02376643,94.6270629],[4.53276184,0.02376472,94.62650437],[4.53276127,0.02376301,94.62594694],[4.53276071,0.0237613,94.62539062],[4.53276014,0.02375959,94.6248354],[4.53275957,0.02375787,94.62428129],[4.53275901,0.02375616,94.62372829],[4.53275844,0.02375445,94.62317639],[4.53275787,0.02375274,94.62262561],[4.53275731,0.02375103,94.62207593],[4.53275674,0.02374932,94.62152737],[4.53275617,0.02374761,94.62097991],[4.5327556,0.0237459,94.62043357],[4.53275504,0.02374419,94.61988835],[4.53275447,0.02374248,94.61934424],[4.5327539,0.02374077,94.61880122],[4.53275334,0.02373906,94.61825929],[4.53275277,0.02373735,94.61771842],[4.5327522,0.02373564,94.61717859],[4.53275164,0.02373392,94.6166398],[4.53275107,0.02373221,94.61610203],[4.5327505,0.0237305,94.61556527],[4.53274993,0.02372879,94.6150295],[4.53274937,0.02372708,94.61449471],[4.5327488,0.02372537,94.61396089],[4.53274823,0.02372366,94.61342802],[4.53274766,0.02372195,94.61289608],[4.5327471,0.02372024,94.61236507],[4.53274653,0.02371852,94.61183498],[4.53274596,0.02371681,94.61130578],[4.53274539,0.0237151,94.61077746],[4.53274482,0.02371339,94.61025002],[4.53274426,0.02371168,94.60972343],[4.53274369,0.02370997,94.60919769],[4.53274312,0.02370826,94.60867279],[4.53274255,0.02370655,94.6081487],[4.53274198,0.02370483,94.60762542],[4.53274141,0.02370312,94.60710293],[4.53274084,0.02370141,94.60658123],[4.53274028,0.0236997,94.60606029],[4.53273971,0.02369799,94.60554011],[4.53273914,0.02369628,94.60502068],[4.53273857,0.02369458,94.60450199],[4.532738,0.02369287,94.60398414],[4.53273743,0.02369116,94.60346723],[4.53273686,0.02368945,94.60295135],[4.53273629,0.02368774,94.60243662],[4.53273572,0.02368603,94.60192313],[4.53273515,0.02368432,94.60141098],[4.53273458,0.02368262,94.60090028],[4.53273401,0.02368091,94.60039112],[4.53273345,0.0236792,94.5998836],[4.53273288,0.02367749,94.59937783],[4.53273231,0.02367579,94.5988739],[4.53273174,0.02367408,94.59837191],[4.53273117,0.02367237,94.59787195],[4.53273061,0.02367067,94.59737414],[4.53273004,0.02366896,94.59687855],[4.53272947,0.02366726,94.5963853],[4.5327289,0.02366555,94.59589447],[4.53272834,0.02366384,94.59540616],[4.53272777,0.02366214,94.59492047],[4.53272721,0.02366043,94.59443749],[4.53272664,0.02365873,94.59395732],[4.53272608,0.02365702,94.59348004],[4.53272551,0.02365531,94.59300576],[4.53272495,0.02365361,94.59253456],[4.53272439,0.0236519,94.59206653],[4.53272382,0.02365019,94.59160178],[4.53272326,0.02364848,94.59114038],[4.5327227,0.02364678,94.59068244],[4.53272214,0.02364507,94.59022803],[4.53272158,0.02364336,94.58977716],[4.53272102,0.02364165,94.58932977],[4.53272046,0.02363994,94.58888577],[4.5327199,0.02363823,94.58844511],[4.53271935,0.02363652,94.58800769],[4.53271879,0.0236348,94.58757345],[4.53271823,0.02363309,94.58714232],[4.53271768,0.02363138,94.58671422],[4.53271712,0.02362967,94.58628908],[4.53271657,0.02362796,94.58586683],[4.53271601,0.02362625,94.58544739],[4.53271546,0.02362453,94.5850307],[4.53271491,0.02362282,94.58461668],[4.53271436,0.02362111,94.58420527],[4.5327139,0.02361969,94.58386712],[4.53274319,0.02360983,94.66552576],[4.53274366,0.02361124,94.66598051],[4.53274422,0.02361295,94.66653117],[4.53274479,0.02361466,94.66708238],[4.53274535,0.02361637,94.66763415],[4.53274592,0.02361809,94.66818649],[4.53274648,0.0236198,94.66873941],[4.53274704,0.02362151,94.6692929],[4.53274761,0.02362322,94.669847],[4.53274817,0.02362493,94.67040169],[4.53274873,0.02362664,94.67095699],[4.5327493,0.02362835,94.67151291],[4.53274986,0.02363006,94.67206946],[4.53275042,0.02363177,94.67262664],[4.53275098,0.02363348,94.67318447],[4.53275155,0.02363519,94.67374295],[4.53275211,0.0236369,94.6743021],[4.53275267,0.02363861,94.67486191],[4.53275323,0.02364032,94.67542241],[4.53275379,0.02364203,94.6759836],[4.53275436,0.02364374,94.67654548],[4.53275492,0.02364545,94.67710807],[4.53275548,0.02364716,94.67767138],[4.53275604,0.02364887,94.67823542],[4.5327566,0.02365058,94.67880019],[4.53275716,0.02365229,94.67936571],[4.53275772,0.023654,94.67993198],[4.53275828,0.02365571,94.68049902],[4.53275884,0.02365742,94.68106683],[4.53275941,0.02365913,94.68163542],[4.53275997,0.02366084,94.68220481],[4.53276053,0.02366255,94.682775],[4.53276109,0.02366426,94.683346],[4.53276165,0.02366597,94.68391782],[4.53276221,0.02366768,94.68449048],[4.53276277,0.02366939,94.68506398],[4.53276333,0.0236711,94.68563832],[4.53276389,0.02367281,94.68621353],[4.53276445,0.02367452,94.68678961],[4.53276501,0.02367624,94.68736658],[4.53276557,0.02367795,94.68794443],[4.53276613,0.02367966,94.68852318],[4.5327667,0.02368137,94.68910285],[4.53276726,0.02368308,94.68968344],[4.53276782,0.0236848,94.69026496],[4.53276838,0.02368651,94.69084742],[4.53276894,0.02368822,94.69143084],[4.5327695,0.02368993,94.69201521],[4.53277006,0.02369165,94.69260056],[4.53277063,0.02369336,94.6931869],[4.53277119,0.02369507,94.69377423],[4.53277175,0.02369679,94.69436256],[4.53277231,0.0236985,94.69495191],[4.53277287,0.02370021,94.69554228],[4.53277344,0.02370192,94.69613369],[4.532774,0.02370364,94.69672614],[4.53277456,0.02370535,94.69731965],[4.53277513,0.02370706,94.69791423],[4.53277569,0.02370878,94.69850989],[4.53277625,0.02371049,94.69910664],[4.53277682,0.0237122,94.69970448],[4.53277738,0.02371391,94.70030344],[4.53277794,0.02371563,94.70090352],[4.53277851,0.02371734,94.70150473],[4.53277907,0.02371905,94.70210708],[4.53277963,0.02372076,94.70271059],[4.5327802,0.02372248,94.70331526],[4.53278076,0.02372419,94.7039211],[4.53278133,0.0237259,94.70452814],[4.53278189,0.02372761,94.70513637],[4.53278246,0.02372932,94.7057458],[4.53278302,0.02373103,94.70635646],[4.53278359,0.02373275,94.70696835],[4.53278415,0.02373446,94.70758148],[4.53278472,0.02373617,94.70819584],[4.53278528,0.02373788,94.70881142],[4.53278585,0.02373959,94.70942819],[4.53278641,0.0237413,94.71004613],[4.53278698,0.02374301,94.71066522],[4.53278755,0.02374472,94.71128543],[4.53278811,0.02374644,94.71190675],[4.53278868,0.02374815,94.71252915],[4.53278924,0.02374986,94.71315261],[4.53278981,0.02375157,94.7137771],[4.53279038,0.02375328,94.71440261],[4.53279095,0.02375499,94.7150291],[4.53279151,0.0237567,94.71565657],[4.53279208,0.02375841,94.71628498],[4.53279265,0.02376012,94.71691431],[4.53279321,0.02376184,94.71754455],[4.53279378,0.02376355,94.71817565],[4.53279435,0.02376526,94.71880761],[4.53279492,0.02376697,94.71944041],[4.53279548,0.02376868,94.720074],[4.53279605,0.02377039,94.72070838],[4.53279662,0.0237721,94.72134352],[4.53279719,0.02377381,94.7219794],[4.53279775,0.02377552,94.72261599],[4.53279832,0.02377723,94.72325327],[4.53279889,0.02377895,94.72389121],[4.53279946,0.02378066,94.7245298],[4.53280002,0.02378237,94.725169],[4.53280059,0.02378408,94.7258088],[4.53280116,0.02378579,94.72644916],[4.53280173,0.0237875,94.72709008],[4.53280229,0.02378921,94.72773151],[4.53280286,0.02379092,94.72837345],[4.53280343,0.02379263,94.72901585],[4.532804,0.02379434,94.72965871],[4.53280456,0.02379605,94.73030199],[4.53280513,0.02379777,94.73094567],[4.5328057,0.02379948,94.73158974],[4.53280627,0.02380119,94.73223415],[4.53280683,0.0238029,94.7328789],[4.5328074,0.02380461,94.73352396],[4.53280797,0.02380632,94.73416931],[4.53280853,0.02380803,94.73481492],[4.5328091,0.02380974,94.73546077],[4.53280966,0.02381146,94.73610683],[4.53281023,0.02381317,94.73675308],[4.5328108,0.02381488,94.73739951],[4.53281136,0.02381659,94.73804608],[4.53281193,0.0238183,94.73869277],[4.53281249,0.02382001,94.73933955],[4.53281306,0.02382172,94.73998641],[4.53281362,0.02382344,94.74063332],[4.53281419,0.02382515,94.74128026],[4.53281475,0.02382686,94.7419272],[4.53281532,0.02382857,94.74257411],[4.53281588,0.02383028,94.74322101],[4.53281645,0.023832,94.7438679],[4.53281701,0.02383371,94.7445148],[4.53281758,0.02383542,94.74516173],[4.53281814,0.02383713,94.74580872],[4.5328187,0.02383884,94.74645577],[4.53281927,0.02384056,94.74710291],[4.53281983,0.02384227,94.74775016],[4.53282039,0.02384398,94.74839754],[4.53282095,0.02384569,94.74904506],[4.53282152,0.02384741,94.74969275],[4.53282208,0.02384912,94.75034062],[4.53282264,0.02385083,94.7509887],[4.53282321,0.02385254,94.75163699],[4.53282377,0.02385426,94.75228553],[4.53282433,0.02385597,94.75293433],[4.53282489,0.02385768,94.75358342],[4.53282545,0.02385939,94.7542328],[4.53282602,0.02386111,94.7548825],[4.53282658,0.02386282,94.75553254],[4.53282714,0.02386453,94.75618295],[4.5328277,0.02386625,94.75683373],[4.53282826,0.02386796,94.75748491],[4.53282882,0.02386967,94.75813651],[4.53282939,0.02387138,94.75878854],[4.53282995,0.0238731,94.75944104],[4.53283051,0.02387481,94.76009401],[4.53283107,0.02387652,94.76074749],[4.53283163,0.02387824,94.76140148],[4.53283219,0.02387995,94.76205601],[4.53283276,0.02388166,94.7627111],[4.53283332,0.02388337,94.76336676],[4.53283388,0.02388509,94.76402303],[4.53283444,0.0238868,94.76467992],[4.532835,0.02388851,94.76533744],[4.53283556,0.02389023,94.76599562],[4.53283613,0.02389194,94.76665449],[4.53283669,0.02389365,94.76731405],[4.53283725,0.02389536,94.76797434],[4.53283781,0.02389708,94.76863536],[4.53283837,0.02389879,94.76929715],[4.53283893,0.0239005,94.76995972],[4.5328395,0.02390221,94.77062309],[4.53284006,0.02390393,94.77128728],[4.53284062,0.02390564,94.77195232],[4.53284118,0.02390735,94.77261822],[4.53284175,0.02390907,94.77328501],[4.53284231,0.02391078,94.7739527],[4.53284287,0.02391249,94.77462132],[4.53284343,0.0239142,94.77529088],[4.532844,0.02391592,94.77596141],[4.53284456,0.02391763,94.77663293],[4.53284512,0.02391934,94.77730546],[4.53284569,0.02392105,94.77797902],[4.53284625,0.02392276,94.77865362],[4.53284681,0.02392448,94.77932925],[4.53284738,0.02392619,94.78000591],[4.53284794,0.0239279,94.78068356],[4.53284851,0.02392961,94.7813622],[4.53284907,0.02393132,94.7820418],[4.53284964,0.02393304,94.78272236],[4.5328502,0.02393475,94.78340385],[4.53285076,0.02393646,94.78408626],[4.53285133,0.02393817,94.78476957],[4.53285189,0.02393988,94.78545377],[4.53285246,0.02394159,94.78613883],[4.53285303,0.02394331,94.78682474],[4.53285359,0.02394502,94.78751149],[4.53285416,0.02394673,94.78819906],[4.53285472,0.02394844,94.78888743],[4.53285529,0.02395015,94.78957658],[4.53285585,0.02395186,94.7902665],[4.53285642,0.02395358,94.79095716],[4.53285698,0.02395529,94.79164857],[4.53285755,0.023957,94.79234068],[4.53285812,0.02395871,94.7930335],[4.53285868,0.02396042,94.793727],[4.53285925,0.02396213,94.79442117],[4.53285981,0.02396384,94.79511598],[4.53286038,0.02396555,94.79581143],[4.53286095,0.02396727,94.79650749],[4.53286151,0.02396898,94.79720414],[4.53286208,0.02397069,94.79790138],[4.53286265,0.0239724,94.79859918],[4.53286321,0.02397411,94.79929753],[4.53286378,0.02397582,94.7999964],[4.53286434,0.02397753,94.80069579],[4.53286491,0.02397924,94.80139567],[4.53286548,0.02398096,94.80209603],[4.53286604,0.02398267,94.80279684],[4.53286661,0.02398438,94.8034981],[4.53286718,0.02398609,94.80419979],[4.53286774,0.0239878,94.80490188],[4.53286831,0.02398951,94.80560437],[4.53286887,0.02399122,94.80630723],[4.53286944,0.02399293,94.80701044],[4.53287001,0.02399465,94.807714],[4.53287057,0.02399636,94.80841787],[4.53287114,0.02399807,94.80912206],[4.5328717,0.02399978,94.80982652],[4.53287227,0.02400149,94.81053126],[4.53287284,0.0240032,94.81123625],[4.5328734,0.02400491,94.81194148],[4.53287397,0.02400663,94.81264693],[4.53287453,0.02400834,94.81335261],[4.5328751,0.02401005,94.81405853],[4.53287567,0.02401176,94.81476467],[4.53287623,0.02401347,94.81547106],[4.5328768,0.02401518,94.81617768],[4.53287736,0.02401689,94.81688455],[4.53287793,0.02401861,94.81759166],[4.53287849,0.02402032,94.81829901],[4.53287906,0.02402203,94.81900661],[4.53287962,0.02402374,94.81971446],[4.53288019,0.02402545,94.82042257],[4.53288075,0.02402716,94.82113093],[4.53288132,0.02402888,94.82183954],[4.53288188,0.02403059,94.82254842],[4.53288245,0.0240323,94.82325756],[4.53288301,0.02403401,94.82396696],[4.53288358,0.02403572,94.82467662],[4.53288414,0.02403743,94.82538656],[4.53288471,0.02403915,94.82609677],[4.53288527,0.02404086,94.82680725],[4.53288584,0.02404257,94.827518],[4.5328864,0.02404428,94.82822904],[4.53288696,0.02404599,94.82894035],[4.53288753,0.0240477,94.82965195],[4.53288809,0.02404941,94.83036383],[4.53288866,0.02405113,94.831076],[4.53288922,0.02405284,94.83178846],[4.53288979,0.02405455,94.83250121],[4.53289035,0.02405626,94.83321426],[4.53289091,0.02405797,94.8339276],[4.53289148,0.02405969,94.83464125],[4.53289204,0.0240614,94.83535519],[4.53289261,0.02406311,94.83606944],[4.53289317,0.02406482,94.836784],[4.53289373,0.02406653,94.83749886],[4.5328943,0.02406825,94.83821404],[4.53289486,0.02406996,94.83892953],[4.53289543,0.02407167,94.83964533],[4.53289599,0.02407338,94.84036146],[4.53289655,0.02407509,94.8410779],[4.53289712,0.02407681,94.84179467],[4.53289768,0.02407852,94.84251177],[4.53289825,0.02408023,94.84322919],[4.53289881,0.02408194,94.84394695],[4.53289937,0.02408365,94.84466503],[4.53289994,0.02408537,94.84538345],[4.5329005,0.02408708,94.84610221],[4.53290107,0.02408879,94.84682132],[4.53290163,0.0240905,94.84754076],[4.53290219,0.02409221,94.84826055],[4.53290276,0.02409393,94.84898068],[4.53290332,0.02409564,94.84970117],[4.53290388,0.02409735,94.85042201],[4.53290445,0.02409906,94.8511432],[4.53290501,0.02410077,94.85186475],[4.53290558,0.02410249,94.85258666],[4.53290614,0.0241042,94.85330894],[4.5329067,0.02410591,94.85403157],[4.53290727,0.02410762,94.85475458],[4.53290783,0.02410933,94.85547795],[4.53290839,0.02411105,94.8562017],[4.53290896,0.02411276,94.85692582],[4.53290952,0.02411447,94.85765032],[4.53291009,0.02411618,94.85837519],[4.53291065,0.02411789,94.85910045],[4.53291121,0.02411961,94.85982609],[4.53291178,0.02412132,94.86055212],[4.53291234,0.02412303,94.86127854],[4.5329129,0.02412474,94.86200535],[4.53291347,0.02412645,94.86273255],[4.53291403,0.02412817,94.86346015],[4.5329146,0.02412988,94.86418815],[4.53291516,0.02413159,94.86491654],[4.53291572,0.0241333,94.86564535],[4.53291629,0.02413501,94.86637456],[4.53291685,0.02413673,94.86710417],[4.53291742,0.02413844,94.8678342],[4.53291798,0.02414015,94.86856465],[4.53291854,0.02414186,94.86929552],[4.53291911,0.02414357,94.87002682],[4.53291967,0.02414528,94.87075855],[4.53292024,0.024147,94.87149072],[4.5329208,0.02414871,94.87222333],[4.53292136,0.02415042,94.8729564],[4.53292193,0.02415213,94.87368992],[4.53292249,0.02415384,94.87442389],[4.53292306,0.02415556,94.87515834],[4.53292362,0.02415727,94.87589325],[4.53292419,0.02415898,94.87662864],[4.53292475,0.02416069,94.87736451],[4.53292532,0.0241624,94.87810086],[4.53292588,0.02416411,94.87883771],[4.53292644,0.02416583,94.87957505],[4.53292701,0.02416754,94.8803129],[4.53292757,0.02416925,94.88105125],[4.53292814,0.02417096,94.88179011],[4.5329287,0.02417267,94.88252949],[4.5328996,0.02418237,94.78724011]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-3,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-3,"sOffset":473.1798043251}},{"geometry":{"coordinates":[[[4.5329287,0.02417267,94.88252949],[4.53292814,0.02417096,94.88179011],[4.53292757,0.02416925,94.88105125],[4.53292701,0.02416754,94.8803129],[4.53292644,0.02416583,94.87957505],[4.53292588,0.02416411,94.87883771],[4.53292532,0.0241624,94.87810086],[4.53292475,0.02416069,94.87736451],[4.53292419,0.02415898,94.87662864],[4.53292362,0.02415727,94.87589325],[4.53292306,0.02415556,94.87515834],[4.53292249,0.02415384,94.87442389],[4.53292193,0.02415213,94.87368992],[4.53292136,0.02415042,94.8729564],[4.5329208,0.02414871,94.87222333],[4.53292024,0.024147,94.87149072],[4.53291967,0.02414528,94.87075855],[4.53291911,0.02414357,94.87002682],[4.53291854,0.02414186,94.86929552],[4.53291798,0.02414015,94.86856465],[4.53291742,0.02413844,94.8678342],[4.53291685,0.02413673,94.86710417],[4.53291629,0.02413501,94.86637456],[4.53291572,0.0241333,94.86564535],[4.53291516,0.02413159,94.86491654],[4.5329146,0.02412988,94.86418815],[4.53291403,0.02412817,94.86346015],[4.53291347,0.02412645,94.86273255],[4.5329129,0.02412474,94.86200535],[4.53291234,0.02412303,94.86127854],[4.53291178,0.02412132,94.86055212],[4.53291121,0.02411961,94.85982609],[4.53291065,0.02411789,94.85910045],[4.53291009,0.02411618,94.85837519],[4.53290952,0.02411447,94.85765032],[4.53290896,0.02411276,94.85692582],[4.53290839,0.02411105,94.8562017],[4.53290783,0.02410933,94.85547795],[4.53290727,0.02410762,94.85475458],[4.5329067,0.02410591,94.85403157],[4.53290614,0.0241042,94.85330894],[4.53290558,0.02410249,94.85258666],[4.53290501,0.02410077,94.85186475],[4.53290445,0.02409906,94.8511432],[4.53290388,0.02409735,94.85042201],[4.53290332,0.02409564,94.84970117],[4.53290276,0.02409393,94.84898068],[4.53290219,0.02409221,94.84826055],[4.53290163,0.0240905,94.84754076],[4.53290107,0.02408879,94.84682132],[4.5329005,0.02408708,94.84610221],[4.53289994,0.02408537,94.84538345],[4.53289937,0.02408365,94.84466503],[4.53289881,0.02408194,94.84394695],[4.53289825,0.02408023,94.84322919],[4.53289768,0.02407852,94.84251177],[4.53289712,0.02407681,94.84179467],[4.53289655,0.02407509,94.8410779],[4.53289599,0.02407338,94.84036146],[4.53289543,0.02407167,94.83964533],[4.53289486,0.02406996,94.83892953],[4.5328943,0.02406825,94.83821404],[4.53289373,0.02406653,94.83749886],[4.53289317,0.02406482,94.836784],[4.53289261,0.02406311,94.83606944],[4.53289204,0.0240614,94.83535519],[4.53289148,0.02405969,94.83464125],[4.53289091,0.02405797,94.8339276],[4.53289035,0.02405626,94.83321426],[4.53288979,0.02405455,94.83250121],[4.53288922,0.02405284,94.83178846],[4.53288866,0.02405113,94.831076],[4.53288809,0.02404941,94.83036383],[4.53288753,0.0240477,94.82965195],[4.53288696,0.02404599,94.82894035],[4.5328864,0.02404428,94.82822904],[4.53288584,0.02404257,94.827518],[4.53288527,0.02404086,94.82680725],[4.53288471,0.02403915,94.82609677],[4.53288414,0.02403743,94.82538656],[4.53288358,0.02403572,94.82467662],[4.53288301,0.02403401,94.82396696],[4.53288245,0.0240323,94.82325756],[4.53288188,0.02403059,94.82254842],[4.53288132,0.02402888,94.82183954],[4.53288075,0.02402716,94.82113093],[4.53288019,0.02402545,94.82042257],[4.53287962,0.02402374,94.81971446],[4.53287906,0.02402203,94.81900661],[4.53287849,0.02402032,94.81829901],[4.53287793,0.02401861,94.81759166],[4.53287736,0.02401689,94.81688455],[4.5328768,0.02401518,94.81617768],[4.53287623,0.02401347,94.81547106],[4.53287567,0.02401176,94.81476467],[4.5328751,0.02401005,94.81405853],[4.53287453,0.02400834,94.81335261],[4.53287397,0.02400663,94.81264693],[4.5328734,0.02400491,94.81194148],[4.53287284,0.0240032,94.81123625],[4.53287227,0.02400149,94.81053126],[4.5328717,0.02399978,94.80982652],[4.53287114,0.02399807,94.80912206],[4.53287057,0.02399636,94.80841787],[4.53287001,0.02399465,94.807714],[4.53286944,0.02399293,94.80701044],[4.53286887,0.02399122,94.80630723],[4.53286831,0.02398951,94.80560437],[4.53286774,0.0239878,94.80490188],[4.53286718,0.02398609,94.80419979],[4.53286661,0.02398438,94.8034981],[4.53286604,0.02398267,94.80279684],[4.53286548,0.02398096,94.80209603],[4.53286491,0.02397924,94.80139567],[4.53286434,0.02397753,94.80069579],[4.53286378,0.02397582,94.7999964],[4.53286321,0.02397411,94.79929753],[4.53286265,0.0239724,94.79859918],[4.53286208,0.02397069,94.79790138],[4.53286151,0.02396898,94.79720414],[4.53286095,0.02396727,94.79650749],[4.53286038,0.02396555,94.79581143],[4.53285981,0.02396384,94.79511598],[4.53285925,0.02396213,94.79442117],[4.53285868,0.02396042,94.793727],[4.53285812,0.02395871,94.7930335],[4.53285755,0.023957,94.79234068],[4.53285698,0.02395529,94.79164857],[4.53285642,0.02395358,94.79095716],[4.53285585,0.02395186,94.7902665],[4.53285529,0.02395015,94.78957658],[4.53285472,0.02394844,94.78888743],[4.53285416,0.02394673,94.78819906],[4.53285359,0.02394502,94.78751149],[4.53285303,0.02394331,94.78682474],[4.53285246,0.02394159,94.78613883],[4.53285189,0.02393988,94.78545377],[4.53285133,0.02393817,94.78476957],[4.53285076,0.02393646,94.78408626],[4.5328502,0.02393475,94.78340385],[4.53284964,0.02393304,94.78272236],[4.53284907,0.02393132,94.7820418],[4.53284851,0.02392961,94.7813622],[4.53284794,0.0239279,94.78068356],[4.53284738,0.02392619,94.78000591],[4.53284681,0.02392448,94.77932925],[4.53284625,0.02392276,94.77865362],[4.53284569,0.02392105,94.77797902],[4.53284512,0.02391934,94.77730546],[4.53284456,0.02391763,94.77663293],[4.532844,0.02391592,94.77596141],[4.53284343,0.0239142,94.77529088],[4.53284287,0.02391249,94.77462132],[4.53284231,0.02391078,94.7739527],[4.53284175,0.02390907,94.77328501],[4.53284118,0.02390735,94.77261822],[4.53284062,0.02390564,94.77195232],[4.53284006,0.02390393,94.77128728],[4.5328395,0.02390221,94.77062309],[4.53283893,0.0239005,94.76995972],[4.53283837,0.02389879,94.76929715],[4.53283781,0.02389708,94.76863536],[4.53283725,0.02389536,94.76797434],[4.53283669,0.02389365,94.76731405],[4.53283613,0.02389194,94.76665449],[4.53283556,0.02389023,94.76599562],[4.532835,0.02388851,94.76533744],[4.53283444,0.0238868,94.76467992],[4.53283388,0.02388509,94.76402303],[4.53283332,0.02388337,94.76336676],[4.53283276,0.02388166,94.7627111],[4.53283219,0.02387995,94.76205601],[4.53283163,0.02387824,94.76140148],[4.53283107,0.02387652,94.76074749],[4.53283051,0.02387481,94.76009401],[4.53282995,0.0238731,94.75944104],[4.53282939,0.02387138,94.75878854],[4.53282882,0.02386967,94.75813651],[4.53282826,0.02386796,94.75748491],[4.5328277,0.02386625,94.75683373],[4.53282714,0.02386453,94.75618295],[4.53282658,0.02386282,94.75553254],[4.53282602,0.02386111,94.7548825],[4.53282545,0.02385939,94.7542328],[4.53282489,0.02385768,94.75358342],[4.53282433,0.02385597,94.75293433],[4.53282377,0.02385426,94.75228553],[4.53282321,0.02385254,94.75163699],[4.53282264,0.02385083,94.7509887],[4.53282208,0.02384912,94.75034062],[4.53282152,0.02384741,94.74969275],[4.53282095,0.02384569,94.74904506],[4.53282039,0.02384398,94.74839754],[4.53281983,0.02384227,94.74775016],[4.53281927,0.02384056,94.74710291],[4.5328187,0.02383884,94.74645577],[4.53281814,0.02383713,94.74580872],[4.53281758,0.02383542,94.74516173],[4.53281701,0.02383371,94.7445148],[4.53281645,0.023832,94.7438679],[4.53281588,0.02383028,94.74322101],[4.53281532,0.02382857,94.74257411],[4.53281475,0.02382686,94.7419272],[4.53281419,0.02382515,94.74128026],[4.53281362,0.02382344,94.74063332],[4.53281306,0.02382172,94.73998641],[4.53281249,0.02382001,94.73933955],[4.53281193,0.0238183,94.73869277],[4.53281136,0.02381659,94.73804608],[4.5328108,0.02381488,94.73739951],[4.53281023,0.02381317,94.73675308],[4.53280966,0.02381146,94.73610683],[4.5328091,0.02380974,94.73546077],[4.53280853,0.02380803,94.73481492],[4.53280797,0.02380632,94.73416931],[4.5328074,0.02380461,94.73352396],[4.53280683,0.0238029,94.7328789],[4.53280627,0.02380119,94.73223415],[4.5328057,0.02379948,94.73158974],[4.53280513,0.02379777,94.73094567],[4.53280456,0.02379605,94.73030199],[4.532804,0.02379434,94.72965871],[4.53280343,0.02379263,94.72901585],[4.53280286,0.02379092,94.72837345],[4.53280229,0.02378921,94.72773151],[4.53280173,0.0237875,94.72709008],[4.53280116,0.02378579,94.72644916],[4.53280059,0.02378408,94.7258088],[4.53280002,0.02378237,94.725169],[4.53279946,0.02378066,94.7245298],[4.53279889,0.02377895,94.72389121],[4.53279832,0.02377723,94.72325327],[4.53279775,0.02377552,94.72261599],[4.53279719,0.02377381,94.7219794],[4.53279662,0.0237721,94.72134352],[4.53279605,0.02377039,94.72070838],[4.53279548,0.02376868,94.720074],[4.53279492,0.02376697,94.71944041],[4.53279435,0.02376526,94.71880761],[4.53279378,0.02376355,94.71817565],[4.53279321,0.02376184,94.71754455],[4.53279265,0.02376012,94.71691431],[4.53279208,0.02375841,94.71628498],[4.53279151,0.0237567,94.71565657],[4.53279095,0.02375499,94.7150291],[4.53279038,0.02375328,94.71440261],[4.53278981,0.02375157,94.7137771],[4.53278924,0.02374986,94.71315261],[4.53278868,0.02374815,94.71252915],[4.53278811,0.02374644,94.71190675],[4.53278755,0.02374472,94.71128543],[4.53278698,0.02374301,94.71066522],[4.53278641,0.0237413,94.71004613],[4.53278585,0.02373959,94.70942819],[4.53278528,0.02373788,94.70881142],[4.53278472,0.02373617,94.70819584],[4.53278415,0.02373446,94.70758148],[4.53278359,0.02373275,94.70696835],[4.53278302,0.02373103,94.70635646],[4.53278246,0.02372932,94.7057458],[4.53278189,0.02372761,94.70513637],[4.53278133,0.0237259,94.70452814],[4.53278076,0.02372419,94.7039211],[4.5327802,0.02372248,94.70331526],[4.53277963,0.02372076,94.70271059],[4.53277907,0.02371905,94.70210708],[4.53277851,0.02371734,94.70150473],[4.53277794,0.02371563,94.70090352],[4.53277738,0.02371391,94.70030344],[4.53277682,0.0237122,94.69970448],[4.53277625,0.02371049,94.69910664],[4.53277569,0.02370878,94.69850989],[4.53277513,0.02370706,94.69791423],[4.53277456,0.02370535,94.69731965],[4.532774,0.02370364,94.69672614],[4.53277344,0.02370192,94.69613369],[4.53277287,0.02370021,94.69554228],[4.53277231,0.0236985,94.69495191],[4.53277175,0.02369679,94.69436256],[4.53277119,0.02369507,94.69377423],[4.53277063,0.02369336,94.6931869],[4.53277006,0.02369165,94.69260056],[4.5327695,0.02368993,94.69201521],[4.53276894,0.02368822,94.69143084],[4.53276838,0.02368651,94.69084742],[4.53276782,0.0236848,94.69026496],[4.53276726,0.02368308,94.68968344],[4.5327667,0.02368137,94.68910285],[4.53276613,0.02367966,94.68852318],[4.53276557,0.02367795,94.68794443],[4.53276501,0.02367624,94.68736658],[4.53276445,0.02367452,94.68678961],[4.53276389,0.02367281,94.68621353],[4.53276333,0.0236711,94.68563832],[4.53276277,0.02366939,94.68506398],[4.53276221,0.02366768,94.68449048],[4.53276165,0.02366597,94.68391782],[4.53276109,0.02366426,94.683346],[4.53276053,0.02366255,94.682775],[4.53275997,0.02366084,94.68220481],[4.53275941,0.02365913,94.68163542],[4.53275884,0.02365742,94.68106683],[4.53275828,0.02365571,94.68049902],[4.53275772,0.023654,94.67993198],[4.53275716,0.02365229,94.67936571],[4.5327566,0.02365058,94.67880019],[4.53275604,0.02364887,94.67823542],[4.53275548,0.02364716,94.67767138],[4.53275492,0.02364545,94.67710807],[4.53275436,0.02364374,94.67654548],[4.53275379,0.02364203,94.6759836],[4.53275323,0.02364032,94.67542241],[4.53275267,0.02363861,94.67486191],[4.53275211,0.0236369,94.6743021],[4.53275155,0.02363519,94.67374295],[4.53275098,0.02363348,94.67318447],[4.53275042,0.02363177,94.67262664],[4.53274986,0.02363006,94.67206946],[4.5327493,0.02362835,94.67151291],[4.53274873,0.02362664,94.67095699],[4.53274817,0.02362493,94.67040169],[4.53274761,0.02362322,94.669847],[4.53274704,0.02362151,94.6692929],[4.53274648,0.0236198,94.66873941],[4.53274592,0.02361809,94.66818649],[4.53274535,0.02361637,94.66763415],[4.53274479,0.02361466,94.66708238],[4.53274422,0.02361295,94.66653117],[4.53274366,0.02361124,94.66598051],[4.53274319,0.02360983,94.66552576],[4.53277422,0.02359938,94.75202365],[4.53277469,0.0236008,94.75257248],[4.53277525,0.02360251,94.75323687],[4.53277582,0.02360422,94.75390168],[4.53277638,0.02360593,94.75456691],[4.53277695,0.02360765,94.75523257],[4.53277751,0.02360936,94.75589864],[4.53277808,0.02361107,94.75656514],[4.53277864,0.02361278,94.75723205],[4.5327792,0.02361449,94.75789939],[4.53277977,0.0236162,94.75856713],[4.53278033,0.02361791,94.7592353],[4.5327809,0.02361963,94.75990387],[4.53278146,0.02362134,94.76057286],[4.53278203,0.02362305,94.76124226],[4.53278259,0.02362476,94.76191207],[4.53278315,0.02362647,94.76258229],[4.53278372,0.02362818,94.76325292],[4.53278428,0.02362989,94.76392395],[4.53278485,0.0236316,94.76459538],[4.53278541,0.02363332,94.76526722],[4.53278597,0.02363503,94.76593946],[4.53278654,0.02363674,94.7666121],[4.5327871,0.02363845,94.76728514],[4.53278767,0.02364016,94.76795858],[4.53278823,0.02364187,94.76863241],[4.53278879,0.02364358,94.76930663],[4.53278936,0.02364529,94.76998125],[4.53278992,0.023647,94.77065626],[4.53279048,0.02364872,94.77133166],[4.53279105,0.02365043,94.77200745],[4.53279161,0.02365214,94.77268363],[4.53279217,0.02365385,94.77336019],[4.53279274,0.02365556,94.77403713],[4.5327933,0.02365727,94.77471446],[4.53279386,0.02365899,94.77539217],[4.53279443,0.0236607,94.77607025],[4.53279499,0.02366241,94.77674871],[4.53279556,0.02366412,94.77742755],[4.53279612,0.02366583,94.77810677],[4.53279668,0.02366754,94.77878635],[4.53279725,0.02366926,94.77946631],[4.53279781,0.02367097,94.78014663],[4.53279837,0.02367268,94.78082732],[4.53279894,0.02367439,94.78150838],[4.5327995,0.0236761,94.7821898],[4.53280006,0.02367782,94.78287159],[4.53280063,0.02367953,94.78355373],[4.53280119,0.02368124,94.78423623],[4.53280175,0.02368295,94.78491909],[4.53280232,0.02368467,94.78560231],[4.53280288,0.02368638,94.78628588],[4.53280345,0.02368809,94.7869698],[4.53280401,0.0236898,94.78765407],[4.53280457,0.02369152,94.78833868],[4.53280514,0.02369323,94.78902365],[4.5328057,0.02369494,94.78970895],[4.53280627,0.02369665,94.7903946],[4.53280683,0.02369836,94.7910806],[4.5328074,0.02370008,94.79176693],[4.53280796,0.02370179,94.79245359],[4.53280852,0.0237035,94.79314059],[4.53280909,0.02370521,94.79382793],[4.53280965,0.02370692,94.79451559],[4.53281022,0.02370864,94.79520359],[4.53281078,0.02371035,94.79589191],[4.53281135,0.02371206,94.79658056],[4.53281191,0.02371377,94.79726953],[4.53281248,0.02371548,94.79795882],[4.53281304,0.0237172,94.79864843],[4.53281361,0.02371891,94.79933836],[4.53281417,0.02372062,94.8000286],[4.53281474,0.02372233,94.80071916],[4.5328153,0.02372404,94.80141003],[4.53281587,0.02372576,94.80210121],[4.53281643,0.02372747,94.80279269],[4.53281699,0.02372918,94.80348449],[4.53281756,0.02373089,94.80417658],[4.53281812,0.0237326,94.80486898],[4.53281869,0.02373432,94.80556167],[4.53281925,0.02373603,94.80625467],[4.53281982,0.02373774,94.80694795],[4.53282038,0.02373945,94.80764153],[4.53282095,0.02374116,94.80833541],[4.53282151,0.02374287,94.80902957],[4.53282208,0.02374459,94.80972401],[4.53282264,0.0237463,94.81041875],[4.53282321,0.02374801,94.81111376],[4.53282377,0.02374972,94.81180906],[4.53282434,0.02375143,94.81250463],[4.5328249,0.02375315,94.81320048],[4.53282547,0.02375486,94.8138966],[4.53282603,0.02375657,94.814593],[4.5328266,0.02375828,94.81528966],[4.53282716,0.02375999,94.81598659],[4.53282773,0.0237617,94.81668379],[4.5328283,0.02376342,94.81738125],[4.53282886,0.02376513,94.81807897],[4.53282943,0.02376684,94.81877695],[4.53282999,0.02376855,94.81947519],[4.53283056,0.02377026,94.82017368],[4.53283112,0.02377198,94.82087242],[4.53283169,0.02377369,94.82157142],[4.53283225,0.0237754,94.82227066],[4.53283282,0.02377711,94.82297014],[4.53283338,0.02377882,94.82366987],[4.53283395,0.02378053,94.82436984],[4.53283451,0.02378225,94.82507005],[4.53283508,0.02378396,94.82577049],[4.53283564,0.02378567,94.82647117],[4.53283621,0.02378738,94.82717209],[4.53283677,0.02378909,94.82787323],[4.53283734,0.0237908,94.82857461],[4.53283791,0.02379252,94.82927621],[4.53283847,0.02379423,94.82997805],[4.53283904,0.02379594,94.83068011],[4.5328396,0.02379765,94.8313824],[4.53284017,0.02379936,94.83208491],[4.53284073,0.02380108,94.83278765],[4.5328413,0.02380279,94.83349061],[4.53284186,0.0238045,94.83419379],[4.53284243,0.02380621,94.8348972],[4.53284299,0.02380792,94.83560083],[4.53284356,0.02380963,94.83630467],[4.53284412,0.02381135,94.83700873],[4.53284469,0.02381306,94.83771301],[4.53284526,0.02381477,94.8384175],[4.53284582,0.02381648,94.83912221],[4.53284639,0.02381819,94.83982714],[4.53284695,0.0238199,94.84053227],[4.53284752,0.02382162,94.84123762],[4.53284808,0.02382333,94.84194317],[4.53284865,0.02382504,94.84264894],[4.53284921,0.02382675,94.84335491],[4.53284978,0.02382846,94.84406109],[4.53285034,0.02383017,94.84476747],[4.53285091,0.02383189,94.84547406],[4.53285148,0.0238336,94.84618085],[4.53285204,0.02383531,94.84688784],[4.53285261,0.02383702,94.84759504],[4.53285317,0.02383873,94.84830243],[4.53285374,0.02384044,94.84901003],[4.5328543,0.02384216,94.84971782],[4.53285487,0.02384387,94.8504258],[4.53285543,0.02384558,94.85113399],[4.532856,0.02384729,94.85184236],[4.53285656,0.023849,94.85255093],[4.53285713,0.02385071,94.85325969],[4.5328577,0.02385243,94.85396864],[4.53285826,0.02385414,94.85467778],[4.53285883,0.02385585,94.85538711],[4.53285939,0.02385756,94.85609663],[4.53285996,0.02385927,94.85680633],[4.53286052,0.02386098,94.85751622],[4.53286109,0.0238627,94.85822629],[4.53286165,0.02386441,94.85893654],[4.53286222,0.02386612,94.85964698],[4.53286278,0.02386783,94.86035759],[4.53286335,0.02386954,94.86106839],[4.53286391,0.02387126,94.86177936],[4.53286448,0.02387297,94.86249051],[4.53286505,0.02387468,94.86320183],[4.53286561,0.02387639,94.86391333],[4.53286618,0.0238781,94.864625],[4.53286674,0.02387981,94.86533685],[4.53286731,0.02388153,94.86604886],[4.53286787,0.02388324,94.86676105],[4.53286844,0.02388495,94.8674734],[4.532869,0.02388666,94.86818592],[4.53286957,0.02388837,94.86889861],[4.53287013,0.02389008,94.86961146],[4.5328707,0.0238918,94.87032447],[4.53287126,0.02389351,94.87103765],[4.53287183,0.02389522,94.87175099],[4.5328724,0.02389693,94.87246449],[4.53287296,0.02389864,94.87317815],[4.53287353,0.02390035,94.87389197],[4.53287409,0.02390207,94.87460594],[4.53287466,0.02390378,94.87532007],[4.53287522,0.02390549,94.87603435],[4.53287579,0.0239072,94.87674879],[4.53287635,0.02390891,94.87746338],[4.53287692,0.02391063,94.87817812],[4.53287748,0.02391234,94.87889301],[4.53287805,0.02391405,94.87960804],[4.53287861,0.02391576,94.88032323],[4.53287918,0.02391747,94.88103856],[4.53287974,0.02391918,94.88175404],[4.53288031,0.0239209,94.88246966],[4.53288087,0.02392261,94.88318542],[4.53288144,0.02392432,94.88390132],[4.532882,0.02392603,94.88461737],[4.53288257,0.02392774,94.88533355],[4.53288313,0.02392945,94.88604987],[4.5328837,0.02393117,94.88676633],[4.53288426,0.02393288,94.88748292],[4.53288483,0.02393459,94.88819965],[4.53288539,0.0239363,94.88891651],[4.53288596,0.02393801,94.8896335],[4.53288652,0.02393973,94.89035062],[4.53288709,0.02394144,94.89106787],[4.53288765,0.02394315,94.89178526],[4.53288822,0.02394486,94.89250276],[4.53288878,0.02394657,94.8932204],[4.53288935,0.02394828,94.89393815],[4.53288991,0.02395,94.89465604],[4.53289048,0.02395171,94.89537404],[4.53289104,0.02395342,94.89609216],[4.53289161,0.02395513,94.89681041],[4.53289217,0.02395684,94.89752877],[4.53289274,0.02395856,94.89824726],[4.5328933,0.02396027,94.89896585],[4.53289387,0.02396198,94.89968457],[4.53289443,0.02396369,94.90040339],[4.532895,0.0239654,94.90112233],[4.53289556,0.02396712,94.90184138],[4.53289613,0.02396883,94.90256055],[4.53289669,0.02397054,94.90327982],[4.53289726,0.02397225,94.9039992],[4.53289782,0.02397396,94.90471868],[4.53289839,0.02397567,94.90543827],[4.53289895,0.02397739,94.90615797],[4.53289952,0.0239791,94.90687777],[4.53290008,0.02398081,94.90759767],[4.53290065,0.02398252,94.90831767],[4.53290121,0.02398423,94.90903778],[4.53290177,0.02398595,94.90975798],[4.53290234,0.02398766,94.91047827],[4.5329029,0.02398937,94.91119867],[4.53290347,0.02399108,94.91191916],[4.53290403,0.02399279,94.91263974],[4.5329046,0.02399451,94.91336042],[4.53290516,0.02399622,94.91408118],[4.53290573,0.02399793,94.91480204],[4.53290629,0.02399964,94.91552299],[4.53290685,0.02400135,94.91624402],[4.53290742,0.02400307,94.91696514],[4.53290798,0.02400478,94.91768635],[4.53290855,0.02400649,94.91840764],[4.53290911,0.0240082,94.91912901],[4.53290968,0.02400991,94.91985047],[4.53291024,0.02401163,94.920572],[4.5329108,0.02401334,94.92129362],[4.53291137,0.02401505,94.92201531],[4.53291193,0.02401676,94.92273708],[4.5329125,0.02401848,94.92345893],[4.53291306,0.02402019,94.92418085],[4.53291363,0.0240219,94.92490285],[4.53291419,0.02402361,94.92562491],[4.53291475,0.02402532,94.92634705],[4.53291532,0.02402704,94.92706926],[4.53291588,0.02402875,94.92779154],[4.53291645,0.02403046,94.92851389],[4.53291701,0.02403217,94.9292363],[4.53291757,0.02403388,94.92995878],[4.53291814,0.0240356,94.93068132],[4.5329187,0.02403731,94.93140393],[4.53291926,0.02403902,94.93212659],[4.53291983,0.02404073,94.93284932],[4.53292039,0.02404244,94.93357211],[4.53292096,0.02404416,94.93429495],[4.53292152,0.02404587,94.93501786],[4.53292208,0.02404758,94.93574081],[4.53292265,0.02404929,94.93646383],[4.53292321,0.024051,94.93718689],[4.53292377,0.02405272,94.93791001],[4.53292434,0.02405443,94.93863318],[4.5329249,0.02405614,94.93935641],[4.53292546,0.02405785,94.94007968],[4.53292603,0.02405957,94.94080299],[4.53292659,0.02406128,94.94152636],[4.53292716,0.02406299,94.94224977],[4.53292772,0.0240647,94.94297322],[4.53292828,0.02406642,94.94369672],[4.53292885,0.02406813,94.94442026],[4.53292941,0.02406984,94.94514384],[4.53292997,0.02407155,94.94586746],[4.53293054,0.02407327,94.94659112],[4.5329311,0.02407498,94.94731481],[4.53293166,0.02407669,94.94803854],[4.53293222,0.0240784,94.94876231],[4.53293279,0.02408011,94.94948611],[4.53293335,0.02408183,94.95020994],[4.53293391,0.02408354,94.95093381],[4.53293448,0.02408525,94.9516577],[4.53293504,0.02408696,94.95238163],[4.5329356,0.02408868,94.95310558],[4.53293617,0.02409039,94.95382956],[4.53293673,0.0240921,94.95455356],[4.53293729,0.02409381,94.95527759],[4.53293785,0.02409553,94.95600165],[4.53293842,0.02409724,94.95672572],[4.53293898,0.02409895,94.95744982],[4.53293954,0.02410067,94.95817393],[4.53294011,0.02410238,94.95889807],[4.53294067,0.02410409,94.95962222],[4.53294123,0.0241058,94.96034639],[4.53294179,0.02410752,94.96107058],[4.53294236,0.02410923,94.96179478],[4.53294292,0.02411094,94.96251899],[4.53294348,0.02411265,94.96324322],[4.53294404,0.02411437,94.96396745],[4.53294461,0.02411608,94.9646917],[4.53294517,0.02411779,94.96541595],[4.53294573,0.0241195,94.96614021],[4.53294629,0.02412122,94.96686448],[4.53294685,0.02412293,94.96758875],[4.53294742,0.02412464,94.96831303],[4.53294798,0.02412636,94.96903731],[4.53294854,0.02412807,94.96976159],[4.5329491,0.02412978,94.97048588],[4.53294967,0.02413149,94.97121018],[4.53295023,0.02413321,94.97193448],[4.53295079,0.02413492,94.9726588],[4.53295135,0.02413663,94.97338312],[4.53295191,0.02413834,94.97410746],[4.53295248,0.02414006,94.97483182],[4.53295304,0.02414177,94.97555619],[4.5329536,0.02414348,94.97628058],[4.53295416,0.0241452,94.97700499],[4.53295472,0.02414691,94.97772943],[4.53295528,0.02414862,94.97845389],[4.53295585,0.02415034,94.97917837],[4.53295641,0.02415205,94.97990288],[4.53295697,0.02415376,94.98062742],[4.53295753,0.02415547,94.98135199],[4.53295809,0.02415719,94.9820766],[4.53295865,0.0241589,94.98280123],[4.53295922,0.02416061,94.98352591],[4.53295978,0.02416233,94.98425062],[4.5329287,0.02417267,94.88252949]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"broken","height":0.0},{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2,"sOffset":473.1798043251}},{"geometry":{"coordinates":[[[4.53295978,0.02416233,94.98425062],[4.53295922,0.02416061,94.98352591],[4.53295865,0.0241589,94.98280123],[4.53295809,0.02415719,94.9820766],[4.53295753,0.02415547,94.98135199],[4.53295697,0.02415376,94.98062742],[4.53295641,0.02415205,94.97990288],[4.53295585,0.02415034,94.97917837],[4.53295528,0.02414862,94.97845389],[4.53295472,0.02414691,94.97772943],[4.53295416,0.0241452,94.97700499],[4.5329536,0.02414348,94.97628058],[4.53295304,0.02414177,94.97555619],[4.53295248,0.02414006,94.97483182],[4.53295191,0.02413834,94.97410746],[4.53295135,0.02413663,94.97338312],[4.53295079,0.02413492,94.9726588],[4.53295023,0.02413321,94.97193448],[4.53294967,0.02413149,94.97121018],[4.5329491,0.02412978,94.97048588],[4.53294854,0.02412807,94.96976159],[4.53294798,0.02412636,94.96903731],[4.53294742,0.02412464,94.96831303],[4.53294685,0.02412293,94.96758875],[4.53294629,0.02412122,94.96686448],[4.53294573,0.0241195,94.96614021],[4.53294517,0.02411779,94.96541595],[4.53294461,0.02411608,94.9646917],[4.53294404,0.02411437,94.96396745],[4.53294348,0.02411265,94.96324322],[4.53294292,0.02411094,94.96251899],[4.53294236,0.02410923,94.96179478],[4.53294179,0.02410752,94.96107058],[4.53294123,0.0241058,94.96034639],[4.53294067,0.02410409,94.95962222],[4.53294011,0.02410238,94.95889807],[4.53293954,0.02410067,94.95817393],[4.53293898,0.02409895,94.95744982],[4.53293842,0.02409724,94.95672572],[4.53293785,0.02409553,94.95600165],[4.53293729,0.02409381,94.95527759],[4.53293673,0.0240921,94.95455356],[4.53293617,0.02409039,94.95382956],[4.5329356,0.02408868,94.95310558],[4.53293504,0.02408696,94.95238163],[4.53293448,0.02408525,94.9516577],[4.53293391,0.02408354,94.95093381],[4.53293335,0.02408183,94.95020994],[4.53293279,0.02408011,94.94948611],[4.53293222,0.0240784,94.94876231],[4.53293166,0.02407669,94.94803854],[4.5329311,0.02407498,94.94731481],[4.53293054,0.02407327,94.94659112],[4.53292997,0.02407155,94.94586746],[4.53292941,0.02406984,94.94514384],[4.53292885,0.02406813,94.94442026],[4.53292828,0.02406642,94.94369672],[4.53292772,0.0240647,94.94297322],[4.53292716,0.02406299,94.94224977],[4.53292659,0.02406128,94.94152636],[4.53292603,0.02405957,94.94080299],[4.53292546,0.02405785,94.94007968],[4.5329249,0.02405614,94.93935641],[4.53292434,0.02405443,94.93863318],[4.53292377,0.02405272,94.93791001],[4.53292321,0.024051,94.93718689],[4.53292265,0.02404929,94.93646383],[4.53292208,0.02404758,94.93574081],[4.53292152,0.02404587,94.93501786],[4.53292096,0.02404416,94.93429495],[4.53292039,0.02404244,94.93357211],[4.53291983,0.02404073,94.93284932],[4.53291926,0.02403902,94.93212659],[4.5329187,0.02403731,94.93140393],[4.53291814,0.0240356,94.93068132],[4.53291757,0.02403388,94.92995878],[4.53291701,0.02403217,94.9292363],[4.53291645,0.02403046,94.92851389],[4.53291588,0.02402875,94.92779154],[4.53291532,0.02402704,94.92706926],[4.53291475,0.02402532,94.92634705],[4.53291419,0.02402361,94.92562491],[4.53291363,0.0240219,94.92490285],[4.53291306,0.02402019,94.92418085],[4.5329125,0.02401848,94.92345893],[4.53291193,0.02401676,94.92273708],[4.53291137,0.02401505,94.92201531],[4.5329108,0.02401334,94.92129362],[4.53291024,0.02401163,94.920572],[4.53290968,0.02400991,94.91985047],[4.53290911,0.0240082,94.91912901],[4.53290855,0.02400649,94.91840764],[4.53290798,0.02400478,94.91768635],[4.53290742,0.02400307,94.91696514],[4.53290685,0.02400135,94.91624402],[4.53290629,0.02399964,94.91552299],[4.53290573,0.02399793,94.91480204],[4.53290516,0.02399622,94.91408118],[4.5329046,0.02399451,94.91336042],[4.53290403,0.02399279,94.91263974],[4.53290347,0.02399108,94.91191916],[4.5329029,0.02398937,94.91119867],[4.53290234,0.02398766,94.91047827],[4.53290177,0.02398595,94.90975798],[4.53290121,0.02398423,94.90903778],[4.53290065,0.02398252,94.90831767],[4.53290008,0.02398081,94.90759767],[4.53289952,0.0239791,94.90687777],[4.53289895,0.02397739,94.90615797],[4.53289839,0.02397567,94.90543827],[4.53289782,0.02397396,94.90471868],[4.53289726,0.02397225,94.9039992],[4.53289669,0.02397054,94.90327982],[4.53289613,0.02396883,94.90256055],[4.53289556,0.02396712,94.90184138],[4.532895,0.0239654,94.90112233],[4.53289443,0.02396369,94.90040339],[4.53289387,0.02396198,94.89968457],[4.5328933,0.02396027,94.89896585],[4.53289274,0.02395856,94.89824726],[4.53289217,0.02395684,94.89752877],[4.53289161,0.02395513,94.89681041],[4.53289104,0.02395342,94.89609216],[4.53289048,0.02395171,94.89537404],[4.53288991,0.02395,94.89465604],[4.53288935,0.02394828,94.89393815],[4.53288878,0.02394657,94.8932204],[4.53288822,0.02394486,94.89250276],[4.53288765,0.02394315,94.89178526],[4.53288709,0.02394144,94.89106787],[4.53288652,0.02393973,94.89035062],[4.53288596,0.02393801,94.8896335],[4.53288539,0.0239363,94.88891651],[4.53288483,0.02393459,94.88819965],[4.53288426,0.02393288,94.88748292],[4.5328837,0.02393117,94.88676633],[4.53288313,0.02392945,94.88604987],[4.53288257,0.02392774,94.88533355],[4.532882,0.02392603,94.88461737],[4.53288144,0.02392432,94.88390132],[4.53288087,0.02392261,94.88318542],[4.53288031,0.0239209,94.88246966],[4.53287974,0.02391918,94.88175404],[4.53287918,0.02391747,94.88103856],[4.53287861,0.02391576,94.88032323],[4.53287805,0.02391405,94.87960804],[4.53287748,0.02391234,94.87889301],[4.53287692,0.02391063,94.87817812],[4.53287635,0.02390891,94.87746338],[4.53287579,0.0239072,94.87674879],[4.53287522,0.02390549,94.87603435],[4.53287466,0.02390378,94.87532007],[4.53287409,0.02390207,94.87460594],[4.53287353,0.02390035,94.87389197],[4.53287296,0.02389864,94.87317815],[4.5328724,0.02389693,94.87246449],[4.53287183,0.02389522,94.87175099],[4.53287126,0.02389351,94.87103765],[4.5328707,0.0238918,94.87032447],[4.53287013,0.02389008,94.86961146],[4.53286957,0.02388837,94.86889861],[4.532869,0.02388666,94.86818592],[4.53286844,0.02388495,94.8674734],[4.53286787,0.02388324,94.86676105],[4.53286731,0.02388153,94.86604886],[4.53286674,0.02387981,94.86533685],[4.53286618,0.0238781,94.864625],[4.53286561,0.02387639,94.86391333],[4.53286505,0.02387468,94.86320183],[4.53286448,0.02387297,94.86249051],[4.53286391,0.02387126,94.86177936],[4.53286335,0.02386954,94.86106839],[4.53286278,0.02386783,94.86035759],[4.53286222,0.02386612,94.85964698],[4.53286165,0.02386441,94.85893654],[4.53286109,0.0238627,94.85822629],[4.53286052,0.02386098,94.85751622],[4.53285996,0.02385927,94.85680633],[4.53285939,0.02385756,94.85609663],[4.53285883,0.02385585,94.85538711],[4.53285826,0.02385414,94.85467778],[4.5328577,0.02385243,94.85396864],[4.53285713,0.02385071,94.85325969],[4.53285656,0.023849,94.85255093],[4.532856,0.02384729,94.85184236],[4.53285543,0.02384558,94.85113399],[4.53285487,0.02384387,94.8504258],[4.5328543,0.02384216,94.84971782],[4.53285374,0.02384044,94.84901003],[4.53285317,0.02383873,94.84830243],[4.53285261,0.02383702,94.84759504],[4.53285204,0.02383531,94.84688784],[4.53285148,0.0238336,94.84618085],[4.53285091,0.02383189,94.84547406],[4.53285034,0.02383017,94.84476747],[4.53284978,0.02382846,94.84406109],[4.53284921,0.02382675,94.84335491],[4.53284865,0.02382504,94.84264894],[4.53284808,0.02382333,94.84194317],[4.53284752,0.02382162,94.84123762],[4.53284695,0.0238199,94.84053227],[4.53284639,0.02381819,94.83982714],[4.53284582,0.02381648,94.83912221],[4.53284526,0.02381477,94.8384175],[4.53284469,0.02381306,94.83771301],[4.53284412,0.02381135,94.83700873],[4.53284356,0.02380963,94.83630467],[4.53284299,0.02380792,94.83560083],[4.53284243,0.02380621,94.8348972],[4.53284186,0.0238045,94.83419379],[4.5328413,0.02380279,94.83349061],[4.53284073,0.02380108,94.83278765],[4.53284017,0.02379936,94.83208491],[4.5328396,0.02379765,94.8313824],[4.53283904,0.02379594,94.83068011],[4.53283847,0.02379423,94.82997805],[4.53283791,0.02379252,94.82927621],[4.53283734,0.0237908,94.82857461],[4.53283677,0.02378909,94.82787323],[4.53283621,0.02378738,94.82717209],[4.53283564,0.02378567,94.82647117],[4.53283508,0.02378396,94.82577049],[4.53283451,0.02378225,94.82507005],[4.53283395,0.02378053,94.82436984],[4.53283338,0.02377882,94.82366987],[4.53283282,0.02377711,94.82297014],[4.53283225,0.0237754,94.82227066],[4.53283169,0.02377369,94.82157142],[4.53283112,0.02377198,94.82087242],[4.53283056,0.02377026,94.82017368],[4.53282999,0.02376855,94.81947519],[4.53282943,0.02376684,94.81877695],[4.53282886,0.02376513,94.81807897],[4.5328283,0.02376342,94.81738125],[4.53282773,0.0237617,94.81668379],[4.53282716,0.02375999,94.81598659],[4.5328266,0.02375828,94.81528966],[4.53282603,0.02375657,94.814593],[4.53282547,0.02375486,94.8138966],[4.5328249,0.02375315,94.81320048],[4.53282434,0.02375143,94.81250463],[4.53282377,0.02374972,94.81180906],[4.53282321,0.02374801,94.81111376],[4.53282264,0.0237463,94.81041875],[4.53282208,0.02374459,94.80972401],[4.53282151,0.02374287,94.80902957],[4.53282095,0.02374116,94.80833541],[4.53282038,0.02373945,94.80764153],[4.53281982,0.02373774,94.80694795],[4.53281925,0.02373603,94.80625467],[4.53281869,0.02373432,94.80556167],[4.53281812,0.0237326,94.80486898],[4.53281756,0.02373089,94.80417658],[4.53281699,0.02372918,94.80348449],[4.53281643,0.02372747,94.80279269],[4.53281587,0.02372576,94.80210121],[4.5328153,0.02372404,94.80141003],[4.53281474,0.02372233,94.80071916],[4.53281417,0.02372062,94.8000286],[4.53281361,0.02371891,94.79933836],[4.53281304,0.0237172,94.79864843],[4.53281248,0.02371548,94.79795882],[4.53281191,0.02371377,94.79726953],[4.53281135,0.02371206,94.79658056],[4.53281078,0.02371035,94.79589191],[4.53281022,0.02370864,94.79520359],[4.53280965,0.02370692,94.79451559],[4.53280909,0.02370521,94.79382793],[4.53280852,0.0237035,94.79314059],[4.53280796,0.02370179,94.79245359],[4.5328074,0.02370008,94.79176693],[4.53280683,0.02369836,94.7910806],[4.53280627,0.02369665,94.7903946],[4.5328057,0.02369494,94.78970895],[4.53280514,0.02369323,94.78902365],[4.53280457,0.02369152,94.78833868],[4.53280401,0.0236898,94.78765407],[4.53280345,0.02368809,94.7869698],[4.53280288,0.02368638,94.78628588],[4.53280232,0.02368467,94.78560231],[4.53280175,0.02368295,94.78491909],[4.53280119,0.02368124,94.78423623],[4.53280063,0.02367953,94.78355373],[4.53280006,0.02367782,94.78287159],[4.5327995,0.0236761,94.7821898],[4.53279894,0.02367439,94.78150838],[4.53279837,0.02367268,94.78082732],[4.53279781,0.02367097,94.78014663],[4.53279725,0.02366926,94.77946631],[4.53279668,0.02366754,94.77878635],[4.53279612,0.02366583,94.77810677],[4.53279556,0.02366412,94.77742755],[4.53279499,0.02366241,94.77674871],[4.53279443,0.0236607,94.77607025],[4.53279386,0.02365899,94.77539217],[4.5327933,0.02365727,94.77471446],[4.53279274,0.02365556,94.77403713],[4.53279217,0.02365385,94.77336019],[4.53279161,0.02365214,94.77268363],[4.53279105,0.02365043,94.77200745],[4.53279048,0.02364872,94.77133166],[4.53278992,0.023647,94.77065626],[4.53278936,0.02364529,94.76998125],[4.53278879,0.02364358,94.76930663],[4.53278823,0.02364187,94.76863241],[4.53278767,0.02364016,94.76795858],[4.5327871,0.02363845,94.76728514],[4.53278654,0.02363674,94.7666121],[4.53278597,0.02363503,94.76593946],[4.53278541,0.02363332,94.76526722],[4.53278485,0.0236316,94.76459538],[4.53278428,0.02362989,94.76392395],[4.53278372,0.02362818,94.76325292],[4.53278315,0.02362647,94.76258229],[4.53278259,0.02362476,94.76191207],[4.53278203,0.02362305,94.76124226],[4.53278146,0.02362134,94.76057286],[4.5327809,0.02361963,94.75990387],[4.53278033,0.02361791,94.7592353],[4.53277977,0.0236162,94.75856713],[4.5327792,0.02361449,94.75789939],[4.53277864,0.02361278,94.75723205],[4.53277808,0.02361107,94.75656514],[4.53277751,0.02360936,94.75589864],[4.53277695,0.02360765,94.75523257],[4.53277638,0.02360593,94.75456691],[4.53277582,0.02360422,94.75390168],[4.53277525,0.02360251,94.75323687],[4.53277469,0.0236008,94.75257248],[4.53277422,0.02359938,94.75202365],[4.53280471,0.02358912,94.8370077],[4.53280518,0.02359054,94.83764981],[4.53280574,0.02359225,94.83842657],[4.53280631,0.02359396,94.83920322],[4.53280687,0.02359568,94.83997976],[4.53280744,0.02359739,94.84075621],[4.532808,0.0235991,94.84153255],[4.53280857,0.02360081,94.84230879],[4.53280913,0.02360253,94.84308492],[4.53280969,0.02360424,94.84386095],[4.53281026,0.02360595,94.84463688],[4.53281082,0.02360766,94.8454127],[4.53281139,0.02360938,94.84618842],[4.53281195,0.02361109,94.84696403],[4.53281252,0.0236128,94.84773954],[4.53281308,0.02361452,94.84851495],[4.53281365,0.02361623,94.84929025],[4.53281421,0.02361794,94.85006544],[4.53281478,0.02361965,94.85084053],[4.53281534,0.02362137,94.85161551],[4.53281591,0.02362308,94.85239038],[4.53281647,0.02362479,94.85316515],[4.53281703,0.02362651,94.85393981],[4.5328176,0.02362822,94.85471437],[4.53281816,0.02362993,94.85548881],[4.53281873,0.02363165,94.85626315],[4.53281929,0.02363336,94.85703738],[4.53281986,0.02363507,94.8578115],[4.53282042,0.02363679,94.85858551],[4.53282098,0.0236385,94.85935941],[4.53282155,0.02364021,94.8601332],[4.53282211,0.02364193,94.86090688],[4.53282268,0.02364364,94.86168045],[4.53282324,0.02364535,94.86245391],[4.5328238,0.02364707,94.86322725],[4.53282437,0.02364878,94.86400048],[4.53282493,0.02365049,94.8647736],[4.5328255,0.0236522,94.8655466],[4.53282606,0.02365392,94.86631949],[4.53282662,0.02365563,94.86709227],[4.53282719,0.02365734,94.86786493],[4.53282775,0.02365906,94.86863747],[4.53282831,0.02366077,94.86940989],[4.53282888,0.02366248,94.8701822],[4.53282944,0.02366419,94.87095439],[4.53283001,0.02366591,94.87172646],[4.53283057,0.02366762,94.87249841],[4.53283113,0.02366933,94.87327024],[4.5328317,0.02367104,94.87404195],[4.53283226,0.02367276,94.87481354],[4.53283282,0.02367447,94.87558501],[4.53283339,0.02367618,94.87635635],[4.53283395,0.02367789,94.87712757],[4.53283452,0.02367961,94.87789866],[4.53283508,0.02368132,94.87866963],[4.53283564,0.02368303,94.87944048],[4.53283621,0.02368474,94.88021119],[4.53283677,0.02368645,94.88098178],[4.53283734,0.02368817,94.88175224],[4.5328379,0.02368988,94.88252258],[4.53283846,0.02369159,94.88329278],[4.53283903,0.0236933,94.88406285],[4.53283959,0.02369501,94.88483279],[4.53284016,0.02369673,94.8856026],[4.53284072,0.02369844,94.88637227],[4.53284129,0.02370015,94.88714181],[4.53284185,0.02370186,94.88791121],[4.53284242,0.02370357,94.88868048],[4.53284298,0.02370529,94.88944961],[4.53284355,0.023707,94.89021861],[4.53284411,0.02370871,94.89098746],[4.53284467,0.02371042,94.89175618],[4.53284524,0.02371214,94.89252475],[4.5328458,0.02371385,94.89329319],[4.53284637,0.02371556,94.89406148],[4.53284693,0.02371727,94.89482963],[4.5328475,0.02371898,94.89559763],[4.53284806,0.0237207,94.89636549],[4.53284863,0.02372241,94.8971332],[4.53284919,0.02372412,94.89790076],[4.53284976,0.02372583,94.89866818],[4.53285032,0.02372754,94.89943545],[4.53285089,0.02372926,94.90020256],[4.53285145,0.02373097,94.90096953],[4.53285202,0.02373268,94.90173634],[4.53285258,0.02373439,94.902503],[4.53285315,0.0237361,94.90326951],[4.53285371,0.02373782,94.90403586],[4.53285428,0.02373953,94.90480205],[4.53285484,0.02374124,94.90556809],[4.53285541,0.02374295,94.90633396],[4.53285597,0.02374466,94.90709968],[4.53285654,0.02374638,94.90786523],[4.5328571,0.02374809,94.90863063],[4.53285767,0.0237498,94.90939586],[4.53285823,0.02375151,94.91016093],[4.5328588,0.02375322,94.91092583],[4.53285936,0.02375494,94.91169056],[4.53285993,0.02375665,94.91245513],[4.53286049,0.02375836,94.91321953],[4.53286106,0.02376007,94.91398376],[4.53286162,0.02376178,94.91474781],[4.53286219,0.02376349,94.9155117],[4.53286275,0.02376521,94.91627541],[4.53286332,0.02376692,94.91703895],[4.53286389,0.02376863,94.91780231],[4.53286445,0.02377034,94.91856549],[4.53286502,0.02377205,94.9193285],[4.53286558,0.02377377,94.92009133],[4.53286615,0.02377548,94.92085397],[4.53286671,0.02377719,94.92161644],[4.53286728,0.0237789,94.92237873],[4.53286784,0.02378061,94.92314083],[4.53286841,0.02378232,94.92390276],[4.53286897,0.02378404,94.9246645],[4.53286954,0.02378575,94.92542607],[4.5328701,0.02378746,94.92618745],[4.53287067,0.02378917,94.92694865],[4.53287123,0.02379088,94.92770968],[4.5328718,0.0237926,94.92847052],[4.53287237,0.02379431,94.92923118],[4.53287293,0.02379602,94.92999166],[4.5328735,0.02379773,94.93075196],[4.53287406,0.02379944,94.93151208],[4.53287463,0.02380116,94.93227202],[4.53287519,0.02380287,94.93303177],[4.53287576,0.02380458,94.93379135],[4.53287632,0.02380629,94.93455074],[4.53287689,0.023808,94.93530996],[4.53287745,0.02380971,94.93606899],[4.53287802,0.02381143,94.93682784],[4.53287858,0.02381314,94.93758651],[4.53287915,0.02381485,94.938345],[4.53287972,0.02381656,94.93910331],[4.53288028,0.02381827,94.93986144],[4.53288085,0.02381999,94.94061938],[4.53288141,0.0238217,94.94137715],[4.53288198,0.02382341,94.94213473],[4.53288254,0.02382512,94.94289213],[4.53288311,0.02382683,94.94364935],[4.53288367,0.02382854,94.94440638],[4.53288424,0.02383026,94.94516324],[4.5328848,0.02383197,94.94591991],[4.53288537,0.02383368,94.9466764],[4.53288593,0.02383539,94.94743271],[4.5328865,0.0238371,94.94818883],[4.53288707,0.02383882,94.94894478],[4.53288763,0.02384053,94.94970054],[4.5328882,0.02384224,94.95045612],[4.53288876,0.02384395,94.95121151],[4.53288933,0.02384566,94.95196673],[4.53288989,0.02384737,94.95272176],[4.53289046,0.02384909,94.9534766],[4.53289102,0.0238508,94.95423127],[4.53289159,0.02385251,94.95498575],[4.53289215,0.02385422,94.95574005],[4.53289272,0.02385593,94.95649416],[4.53289329,0.02385765,94.9572481],[4.53289385,0.02385936,94.95800184],[4.53289442,0.02386107,94.95875541],[4.53289498,0.02386278,94.95950879],[4.53289555,0.02386449,94.96026199],[4.53289611,0.0238662,94.961015],[4.53289668,0.02386792,94.96176783],[4.53289724,0.02386963,94.96252048],[4.53289781,0.02387134,94.96327294],[4.53289837,0.02387305,94.96402521],[4.53289894,0.02387476,94.96477731],[4.5328995,0.02387648,94.96552921],[4.53290007,0.02387819,94.96628094],[4.53290063,0.0238799,94.96703248],[4.5329012,0.02388161,94.96778383],[4.53290177,0.02388332,94.968535],[4.53290233,0.02388503,94.96928598],[4.5329029,0.02388675,94.97003678],[4.53290346,0.02388846,94.97078739],[4.53290403,0.02389017,94.97153782],[4.53290459,0.02389188,94.97228806],[4.53290516,0.02389359,94.97303812],[4.53290572,0.02389531,94.97378799],[4.53290629,0.02389702,94.97453768],[4.53290685,0.02389873,94.97528718],[4.53290742,0.02390044,94.97603649],[4.53290798,0.02390215,94.97678562],[4.53290855,0.02390387,94.97753456],[4.53290911,0.02390558,94.97828331],[4.53290968,0.02390729,94.97903188],[4.53291024,0.023909,94.97978026],[4.53291081,0.02391071,94.98052845],[4.53291137,0.02391243,94.98127646],[4.53291194,0.02391414,94.98202428],[4.5329125,0.02391585,94.98277191],[4.53291307,0.02391756,94.98351935],[4.53291363,0.02391927,94.98426661],[4.5329142,0.02392098,94.98501368],[4.53291476,0.0239227,94.98576056],[4.53291533,0.02392441,94.98650726],[4.53291589,0.02392612,94.98725376],[4.53291646,0.02392783,94.98800008],[4.53291703,0.02392954,94.98874621],[4.53291759,0.02393126,94.98949215],[4.53291816,0.02393297,94.9902379],[4.53291872,0.02393468,94.99098347],[4.53291928,0.02393639,94.99172884],[4.53291985,0.0239381,94.99247403],[4.53292041,0.02393982,94.99321903],[4.53292098,0.02394153,94.99396384],[4.53292154,0.02394324,94.99470846],[4.53292211,0.02394495,94.99545289],[4.53292267,0.02394666,94.99619713],[4.53292324,0.02394838,94.99694118],[4.5329238,0.02395009,94.99768504],[4.53292437,0.0239518,94.99842871],[4.53292493,0.02395351,94.99917219],[4.5329255,0.02395522,94.99991548],[4.53292606,0.02395694,95.00065858],[4.53292663,0.02395865,95.00140149],[4.53292719,0.02396036,95.00214421],[4.53292776,0.02396207,95.00288674],[4.53292832,0.02396379,95.00362908],[4.53292889,0.0239655,95.00437122],[4.53292945,0.02396721,95.00511318],[4.53293002,0.02396892,95.00585495],[4.53293058,0.02397063,95.00659652],[4.53293115,0.02397235,95.0073379],[4.53293171,0.02397406,95.00807909],[4.53293227,0.02397577,95.00882009],[4.53293284,0.02397748,95.0095609],[4.5329334,0.02397919,95.01030151],[4.53293397,0.02398091,95.01104194],[4.53293453,0.02398262,95.01178217],[4.5329351,0.02398433,95.01252221],[4.53293566,0.02398604,95.01326205],[4.53293623,0.02398776,95.01400171],[4.53293679,0.02398947,95.01474117],[4.53293735,0.02399118,95.01548044],[4.53293792,0.02399289,95.01621951],[4.53293848,0.0239946,95.01695839],[4.53293905,0.02399632,95.01769708],[4.53293961,0.02399803,95.01843558],[4.53294018,0.02399974,95.01917388],[4.53294074,0.02400145,95.01991199],[4.5329413,0.02400317,95.0206499],[4.53294187,0.02400488,95.02138762],[4.53294243,0.02400659,95.02212515],[4.532943,0.0240083,95.02286248],[4.53294356,0.02401001,95.02359962],[4.53294413,0.02401173,95.02433657],[4.53294469,0.02401344,95.02507332],[4.53294525,0.02401515,95.02580988],[4.53294582,0.02401686,95.02654624],[4.53294638,0.02401858,95.0272824],[4.53294695,0.02402029,95.02801837],[4.53294751,0.024022,95.02875415],[4.53294807,0.02402371,95.02948973],[4.53294864,0.02402543,95.03022512],[4.5329492,0.02402714,95.03096031],[4.53294976,0.02402885,95.03169531],[4.53295033,0.02403056,95.03243011],[4.53295089,0.02403227,95.03316471],[4.53295146,0.02403399,95.03389912],[4.53295202,0.0240357,95.03463333],[4.53295258,0.02403741,95.03536735],[4.53295315,0.02403912,95.03610117],[4.53295371,0.02404083,95.0368348],[4.53295427,0.02404255,95.03756822],[4.53295484,0.02404426,95.03830146],[4.5329554,0.02404597,95.03903449],[4.53295597,0.02404768,95.03976733],[4.53295653,0.0240494,95.04049997],[4.53295709,0.02405111,95.04123242],[4.53295766,0.02405282,95.04196466],[4.53295822,0.02405454,95.04269672],[4.53295878,0.02405625,95.04342857],[4.53295935,0.02405796,95.04416023],[4.53295991,0.02405967,95.04489169],[4.53296047,0.02406139,95.04562295],[4.53296104,0.0240631,95.04635401],[4.5329616,0.02406481,95.04708488],[4.53296216,0.02406652,95.04781555],[4.53296273,0.02406824,95.04854602],[4.53296329,0.02406995,95.04927629],[4.53296385,0.02407166,95.05000637],[4.53296441,0.02407337,95.05073625],[4.53296498,0.02407509,95.05146592],[4.53296554,0.0240768,95.0521954],[4.5329661,0.02407851,95.05292469],[4.53296667,0.02408022,95.05365377],[4.53296723,0.02408194,95.05438266],[4.53296779,0.02408365,95.05511134],[4.53296836,0.02408536,95.05583983],[4.53296892,0.02408708,95.05656812],[4.53296948,0.02408879,95.05729621],[4.53297004,0.0240905,95.0580241],[4.53297061,0.02409221,95.05875179],[4.53297117,0.02409393,95.05947928],[4.53297173,0.02409564,95.06020658],[4.53297229,0.02409735,95.06093367],[4.53297286,0.02409907,95.06166057],[4.53297342,0.02410078,95.06238726],[4.53297398,0.02410249,95.06311376],[4.53297454,0.0241042,95.06384005],[4.53297511,0.02410592,95.06456615],[4.53297567,0.02410763,95.06529205],[4.53297623,0.02410934,95.06601774],[4.53297679,0.02411106,95.06674324],[4.53297736,0.02411277,95.06746854],[4.53297792,0.02411448,95.06819363],[4.53297848,0.02411619,95.06891853],[4.53297904,0.02411791,95.06964323],[4.5329796,0.02411962,95.07036773],[4.53298017,0.02412133,95.07109204],[4.53298073,0.02412305,95.07181616],[4.53298129,0.02412476,95.07254009],[4.53298185,0.02412647,95.07326383],[4.53298241,0.02412819,95.0739874],[4.53298298,0.0241299,95.07471078],[4.53298354,0.02413161,95.07543399],[4.5329841,0.02413332,95.07615703],[4.53298466,0.02413504,95.07687989],[4.53298522,0.02413675,95.07760259],[4.53298578,0.02413846,95.07832512],[4.53298635,0.02414018,95.07904749],[4.53298691,0.02414189,95.0797697],[4.53298747,0.0241436,95.08049175],[4.53298803,0.02414532,95.08121364],[4.53298859,0.02414703,95.08193539],[4.53298915,0.02414874,95.08265699],[4.53298972,0.02415046,95.08337844],[4.53299028,0.02415217,95.08409974],[4.53295978,0.02416233,94.98425062]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1,"sOffset":473.1798043251}},{"geometry":{"coordinates":[[[4.53299028,0.02415217,95.08409974],[4.53298972,0.02415046,95.08337844],[4.53298915,0.02414874,95.08265699],[4.53298859,0.02414703,95.08193539],[4.53298803,0.02414532,95.08121364],[4.53298747,0.0241436,95.08049175],[4.53298691,0.02414189,95.0797697],[4.53298635,0.02414018,95.07904749],[4.53298578,0.02413846,95.07832512],[4.53298522,0.02413675,95.07760259],[4.53298466,0.02413504,95.07687989],[4.5329841,0.02413332,95.07615703],[4.53298354,0.02413161,95.07543399],[4.53298298,0.0241299,95.07471078],[4.53298241,0.02412819,95.0739874],[4.53298185,0.02412647,95.07326383],[4.53298129,0.02412476,95.07254009],[4.53298073,0.02412305,95.07181616],[4.53298017,0.02412133,95.07109204],[4.5329796,0.02411962,95.07036773],[4.53297904,0.02411791,95.06964323],[4.53297848,0.02411619,95.06891853],[4.53297792,0.02411448,95.06819363],[4.53297736,0.02411277,95.06746854],[4.53297679,0.02411106,95.06674324],[4.53297623,0.02410934,95.06601774],[4.53297567,0.02410763,95.06529205],[4.53297511,0.02410592,95.06456615],[4.53297454,0.0241042,95.06384005],[4.53297398,0.02410249,95.06311376],[4.53297342,0.02410078,95.06238726],[4.53297286,0.02409907,95.06166057],[4.53297229,0.02409735,95.06093367],[4.53297173,0.02409564,95.06020658],[4.53297117,0.02409393,95.05947928],[4.53297061,0.02409221,95.05875179],[4.53297004,0.0240905,95.0580241],[4.53296948,0.02408879,95.05729621],[4.53296892,0.02408708,95.05656812],[4.53296836,0.02408536,95.05583983],[4.53296779,0.02408365,95.05511134],[4.53296723,0.02408194,95.05438266],[4.53296667,0.02408022,95.05365377],[4.5329661,0.02407851,95.05292469],[4.53296554,0.0240768,95.0521954],[4.53296498,0.02407509,95.05146592],[4.53296441,0.02407337,95.05073625],[4.53296385,0.02407166,95.05000637],[4.53296329,0.02406995,95.04927629],[4.53296273,0.02406824,95.04854602],[4.53296216,0.02406652,95.04781555],[4.5329616,0.02406481,95.04708488],[4.53296104,0.0240631,95.04635401],[4.53296047,0.02406139,95.04562295],[4.53295991,0.02405967,95.04489169],[4.53295935,0.02405796,95.04416023],[4.53295878,0.02405625,95.04342857],[4.53295822,0.02405454,95.04269672],[4.53295766,0.02405282,95.04196466],[4.53295709,0.02405111,95.04123242],[4.53295653,0.0240494,95.04049997],[4.53295597,0.02404768,95.03976733],[4.5329554,0.02404597,95.03903449],[4.53295484,0.02404426,95.03830146],[4.53295427,0.02404255,95.03756822],[4.53295371,0.02404083,95.0368348],[4.53295315,0.02403912,95.03610117],[4.53295258,0.02403741,95.03536735],[4.53295202,0.0240357,95.03463333],[4.53295146,0.02403399,95.03389912],[4.53295089,0.02403227,95.03316471],[4.53295033,0.02403056,95.03243011],[4.53294976,0.02402885,95.03169531],[4.5329492,0.02402714,95.03096031],[4.53294864,0.02402543,95.03022512],[4.53294807,0.02402371,95.02948973],[4.53294751,0.024022,95.02875415],[4.53294695,0.02402029,95.02801837],[4.53294638,0.02401858,95.0272824],[4.53294582,0.02401686,95.02654624],[4.53294525,0.02401515,95.02580988],[4.53294469,0.02401344,95.02507332],[4.53294413,0.02401173,95.02433657],[4.53294356,0.02401001,95.02359962],[4.532943,0.0240083,95.02286248],[4.53294243,0.02400659,95.02212515],[4.53294187,0.02400488,95.02138762],[4.5329413,0.02400317,95.0206499],[4.53294074,0.02400145,95.01991199],[4.53294018,0.02399974,95.01917388],[4.53293961,0.02399803,95.01843558],[4.53293905,0.02399632,95.01769708],[4.53293848,0.0239946,95.01695839],[4.53293792,0.02399289,95.01621951],[4.53293735,0.02399118,95.01548044],[4.53293679,0.02398947,95.01474117],[4.53293623,0.02398776,95.01400171],[4.53293566,0.02398604,95.01326205],[4.5329351,0.02398433,95.01252221],[4.53293453,0.02398262,95.01178217],[4.53293397,0.02398091,95.01104194],[4.5329334,0.02397919,95.01030151],[4.53293284,0.02397748,95.0095609],[4.53293227,0.02397577,95.00882009],[4.53293171,0.02397406,95.00807909],[4.53293115,0.02397235,95.0073379],[4.53293058,0.02397063,95.00659652],[4.53293002,0.02396892,95.00585495],[4.53292945,0.02396721,95.00511318],[4.53292889,0.0239655,95.00437122],[4.53292832,0.02396379,95.00362908],[4.53292776,0.02396207,95.00288674],[4.53292719,0.02396036,95.00214421],[4.53292663,0.02395865,95.00140149],[4.53292606,0.02395694,95.00065858],[4.5329255,0.02395522,94.99991548],[4.53292493,0.02395351,94.99917219],[4.53292437,0.0239518,94.99842871],[4.5329238,0.02395009,94.99768504],[4.53292324,0.02394838,94.99694118],[4.53292267,0.02394666,94.99619713],[4.53292211,0.02394495,94.99545289],[4.53292154,0.02394324,94.99470846],[4.53292098,0.02394153,94.99396384],[4.53292041,0.02393982,94.99321903],[4.53291985,0.0239381,94.99247403],[4.53291928,0.02393639,94.99172884],[4.53291872,0.02393468,94.99098347],[4.53291816,0.02393297,94.9902379],[4.53291759,0.02393126,94.98949215],[4.53291703,0.02392954,94.98874621],[4.53291646,0.02392783,94.98800008],[4.53291589,0.02392612,94.98725376],[4.53291533,0.02392441,94.98650726],[4.53291476,0.0239227,94.98576056],[4.5329142,0.02392098,94.98501368],[4.53291363,0.02391927,94.98426661],[4.53291307,0.02391756,94.98351935],[4.5329125,0.02391585,94.98277191],[4.53291194,0.02391414,94.98202428],[4.53291137,0.02391243,94.98127646],[4.53291081,0.02391071,94.98052845],[4.53291024,0.023909,94.97978026],[4.53290968,0.02390729,94.97903188],[4.53290911,0.02390558,94.97828331],[4.53290855,0.02390387,94.97753456],[4.53290798,0.02390215,94.97678562],[4.53290742,0.02390044,94.97603649],[4.53290685,0.02389873,94.97528718],[4.53290629,0.02389702,94.97453768],[4.53290572,0.02389531,94.97378799],[4.53290516,0.02389359,94.97303812],[4.53290459,0.02389188,94.97228806],[4.53290403,0.02389017,94.97153782],[4.53290346,0.02388846,94.97078739],[4.5329029,0.02388675,94.97003678],[4.53290233,0.02388503,94.96928598],[4.53290177,0.02388332,94.968535],[4.5329012,0.02388161,94.96778383],[4.53290063,0.0238799,94.96703248],[4.53290007,0.02387819,94.96628094],[4.5328995,0.02387648,94.96552921],[4.53289894,0.02387476,94.96477731],[4.53289837,0.02387305,94.96402521],[4.53289781,0.02387134,94.96327294],[4.53289724,0.02386963,94.96252048],[4.53289668,0.02386792,94.96176783],[4.53289611,0.0238662,94.961015],[4.53289555,0.02386449,94.96026199],[4.53289498,0.02386278,94.95950879],[4.53289442,0.02386107,94.95875541],[4.53289385,0.02385936,94.95800184],[4.53289329,0.02385765,94.9572481],[4.53289272,0.02385593,94.95649416],[4.53289215,0.02385422,94.95574005],[4.53289159,0.02385251,94.95498575],[4.53289102,0.0238508,94.95423127],[4.53289046,0.02384909,94.9534766],[4.53288989,0.02384737,94.95272176],[4.53288933,0.02384566,94.95196673],[4.53288876,0.02384395,94.95121151],[4.5328882,0.02384224,94.95045612],[4.53288763,0.02384053,94.94970054],[4.53288707,0.02383882,94.94894478],[4.5328865,0.0238371,94.94818883],[4.53288593,0.02383539,94.94743271],[4.53288537,0.02383368,94.9466764],[4.5328848,0.02383197,94.94591991],[4.53288424,0.02383026,94.94516324],[4.53288367,0.02382854,94.94440638],[4.53288311,0.02382683,94.94364935],[4.53288254,0.02382512,94.94289213],[4.53288198,0.02382341,94.94213473],[4.53288141,0.0238217,94.94137715],[4.53288085,0.02381999,94.94061938],[4.53288028,0.02381827,94.93986144],[4.53287972,0.02381656,94.93910331],[4.53287915,0.02381485,94.938345],[4.53287858,0.02381314,94.93758651],[4.53287802,0.02381143,94.93682784],[4.53287745,0.02380971,94.93606899],[4.53287689,0.023808,94.93530996],[4.53287632,0.02380629,94.93455074],[4.53287576,0.02380458,94.93379135],[4.53287519,0.02380287,94.93303177],[4.53287463,0.02380116,94.93227202],[4.53287406,0.02379944,94.93151208],[4.5328735,0.02379773,94.93075196],[4.53287293,0.02379602,94.92999166],[4.53287237,0.02379431,94.92923118],[4.5328718,0.0237926,94.92847052],[4.53287123,0.02379088,94.92770968],[4.53287067,0.02378917,94.92694865],[4.5328701,0.02378746,94.92618745],[4.53286954,0.02378575,94.92542607],[4.53286897,0.02378404,94.9246645],[4.53286841,0.02378232,94.92390276],[4.53286784,0.02378061,94.92314083],[4.53286728,0.0237789,94.92237873],[4.53286671,0.02377719,94.92161644],[4.53286615,0.02377548,94.92085397],[4.53286558,0.02377377,94.92009133],[4.53286502,0.02377205,94.9193285],[4.53286445,0.02377034,94.91856549],[4.53286389,0.02376863,94.91780231],[4.53286332,0.02376692,94.91703895],[4.53286275,0.02376521,94.91627541],[4.53286219,0.02376349,94.9155117],[4.53286162,0.02376178,94.91474781],[4.53286106,0.02376007,94.91398376],[4.53286049,0.02375836,94.91321953],[4.53285993,0.02375665,94.91245513],[4.53285936,0.02375494,94.91169056],[4.5328588,0.02375322,94.91092583],[4.53285823,0.02375151,94.91016093],[4.53285767,0.0237498,94.90939586],[4.5328571,0.02374809,94.90863063],[4.53285654,0.02374638,94.90786523],[4.53285597,0.02374466,94.90709968],[4.53285541,0.02374295,94.90633396],[4.53285484,0.02374124,94.90556809],[4.53285428,0.02373953,94.90480205],[4.53285371,0.02373782,94.90403586],[4.53285315,0.0237361,94.90326951],[4.53285258,0.02373439,94.902503],[4.53285202,0.02373268,94.90173634],[4.53285145,0.02373097,94.90096953],[4.53285089,0.02372926,94.90020256],[4.53285032,0.02372754,94.89943545],[4.53284976,0.02372583,94.89866818],[4.53284919,0.02372412,94.89790076],[4.53284863,0.02372241,94.8971332],[4.53284806,0.0237207,94.89636549],[4.5328475,0.02371898,94.89559763],[4.53284693,0.02371727,94.89482963],[4.53284637,0.02371556,94.89406148],[4.5328458,0.02371385,94.89329319],[4.53284524,0.02371214,94.89252475],[4.53284467,0.02371042,94.89175618],[4.53284411,0.02370871,94.89098746],[4.53284355,0.023707,94.89021861],[4.53284298,0.02370529,94.88944961],[4.53284242,0.02370357,94.88868048],[4.53284185,0.02370186,94.88791121],[4.53284129,0.02370015,94.88714181],[4.53284072,0.02369844,94.88637227],[4.53284016,0.02369673,94.8856026],[4.53283959,0.02369501,94.88483279],[4.53283903,0.0236933,94.88406285],[4.53283846,0.02369159,94.88329278],[4.5328379,0.02368988,94.88252258],[4.53283734,0.02368817,94.88175224],[4.53283677,0.02368645,94.88098178],[4.53283621,0.02368474,94.88021119],[4.53283564,0.02368303,94.87944048],[4.53283508,0.02368132,94.87866963],[4.53283452,0.02367961,94.87789866],[4.53283395,0.02367789,94.87712757],[4.53283339,0.02367618,94.87635635],[4.53283282,0.02367447,94.87558501],[4.53283226,0.02367276,94.87481354],[4.5328317,0.02367104,94.87404195],[4.53283113,0.02366933,94.87327024],[4.53283057,0.02366762,94.87249841],[4.53283001,0.02366591,94.87172646],[4.53282944,0.02366419,94.87095439],[4.53282888,0.02366248,94.8701822],[4.53282831,0.02366077,94.86940989],[4.53282775,0.02365906,94.86863747],[4.53282719,0.02365734,94.86786493],[4.53282662,0.02365563,94.86709227],[4.53282606,0.02365392,94.86631949],[4.5328255,0.0236522,94.8655466],[4.53282493,0.02365049,94.8647736],[4.53282437,0.02364878,94.86400048],[4.5328238,0.02364707,94.86322725],[4.53282324,0.02364535,94.86245391],[4.53282268,0.02364364,94.86168045],[4.53282211,0.02364193,94.86090688],[4.53282155,0.02364021,94.8601332],[4.53282098,0.0236385,94.85935941],[4.53282042,0.02363679,94.85858551],[4.53281986,0.02363507,94.8578115],[4.53281929,0.02363336,94.85703738],[4.53281873,0.02363165,94.85626315],[4.53281816,0.02362993,94.85548881],[4.5328176,0.02362822,94.85471437],[4.53281703,0.02362651,94.85393981],[4.53281647,0.02362479,94.85316515],[4.53281591,0.02362308,94.85239038],[4.53281534,0.02362137,94.85161551],[4.53281478,0.02361965,94.85084053],[4.53281421,0.02361794,94.85006544],[4.53281365,0.02361623,94.84929025],[4.53281308,0.02361452,94.84851495],[4.53281252,0.0236128,94.84773954],[4.53281195,0.02361109,94.84696403],[4.53281139,0.02360938,94.84618842],[4.53281082,0.02360766,94.8454127],[4.53281026,0.02360595,94.84463688],[4.53280969,0.02360424,94.84386095],[4.53280913,0.02360253,94.84308492],[4.53280857,0.02360081,94.84230879],[4.532808,0.0235991,94.84153255],[4.53280744,0.02359739,94.84075621],[4.53280687,0.02359568,94.83997976],[4.53280631,0.02359396,94.83920322],[4.53280574,0.02359225,94.83842657],[4.53280518,0.02359054,94.83764981],[4.53280471,0.02358912,94.8370077],[4.53280865,0.02358779,94.84800206],[4.53280912,0.02358921,94.8486664],[4.53280969,0.02359092,94.8494695],[4.53281026,0.02359263,94.8502719],[4.53281083,0.02359434,94.85107361],[4.5328114,0.02359605,94.85187464],[4.53281197,0.02359777,94.85267498],[4.53281254,0.02359948,94.85347466],[4.5328131,0.02360119,94.85427367],[4.53281367,0.0236029,94.85507201],[4.53281424,0.02360461,94.8558697],[4.53281481,0.02360633,94.85666674],[4.53281537,0.02360804,94.85746313],[4.53281594,0.02360975,94.85825888],[4.53281651,0.02361146,94.859054],[4.53281707,0.02361318,94.85984849],[4.53281764,0.02361489,94.86064236],[4.53281821,0.0236166,94.86143561],[4.53281877,0.02361831,94.86222825],[4.53281934,0.02362003,94.86302029],[4.5328199,0.02362174,94.86381173],[4.53282047,0.02362345,94.86460257],[4.53282103,0.02362517,94.86539283],[4.5328216,0.02362688,94.86618251],[4.53282216,0.02362859,94.86697162],[4.53282273,0.02363031,94.86776015],[4.53282329,0.02363202,94.86854813],[4.53282386,0.02363373,94.86933555],[4.53282442,0.02363545,94.87012242],[4.53282499,0.02363716,94.87090875],[4.53282555,0.02363887,94.87169454],[4.53282611,0.02364059,94.8724798],[4.53282668,0.0236423,94.87326454],[4.53282724,0.02364401,94.87404876],[4.5328278,0.02364573,94.87483248],[4.53282837,0.02364744,94.87561568],[4.53282893,0.02364915,94.87639839],[4.53282949,0.02365087,94.87718061],[4.53283005,0.02365258,94.87796234],[4.53283062,0.02365429,94.8787436],[4.53283118,0.02365601,94.87952438],[4.53283174,0.02365772,94.8803047],[4.5328323,0.02365943,94.88108456],[4.53283287,0.02366115,94.88186398],[4.53283343,0.02366286,94.88264294],[4.53283399,0.02366457,94.88342147],[4.53283455,0.02366629,94.88419957],[4.53283511,0.023668,94.88497725],[4.53283567,0.02366971,94.88575451],[4.53283624,0.02367143,94.88653136],[4.5328368,0.02367314,94.88730781],[4.53283736,0.02367485,94.88808386],[4.53283792,0.02367657,94.88885952],[4.53283848,0.02367828,94.88963481],[4.53283904,0.02367999,94.89040971],[4.53283961,0.02368171,94.89118425],[4.53284017,0.02368342,94.89195843],[4.53284073,0.02368513,94.89273226],[4.53284129,0.02368684,94.89350574],[4.53284185,0.02368856,94.89427888],[4.53284241,0.02369027,94.89505169],[4.53284297,0.02369198,94.89582418],[4.53284354,0.0236937,94.89659635],[4.5328441,0.02369541,94.8973682],[4.53284466,0.02369712,94.89813976],[4.53284522,0.02369884,94.89891102],[4.53284578,0.02370055,94.899682],[4.53284634,0.02370226,94.90045269],[4.53284691,0.02370397,94.90122311],[4.53284747,0.02370569,94.90199327],[4.53284803,0.0237074,94.90276316],[4.53284859,0.02370911,94.90353281],[4.53284915,0.02371083,94.90430221],[4.53284971,0.02371254,94.90507138],[4.53285028,0.02371425,94.90584032],[4.53285084,0.02371597,94.90660904],[4.5328514,0.02371768,94.90737754],[4.53285196,0.02371939,94.90814584],[4.53285252,0.02372111,94.90891394],[4.53285308,0.02372282,94.90968186],[4.53285365,0.02372453,94.91044958],[4.53285421,0.02372625,94.91121714],[4.53285477,0.02372796,94.91198453],[4.53285533,0.02372967,94.91275175],[4.53285589,0.02373138,94.91351883],[4.53285646,0.0237331,94.91428574],[4.53285702,0.02373481,94.91505249],[4.53285758,0.02373652,94.91581907],[4.53285814,0.02373824,94.91658548],[4.5328587,0.02373995,94.9173517],[4.53285927,0.02374166,94.91811773],[4.53285983,0.02374337,94.91888357],[4.53286039,0.02374509,94.91964921],[4.53286095,0.0237468,94.92041464],[4.53286152,0.02374851,94.92117985],[4.53286208,0.02375023,94.92194485],[4.53286264,0.02375194,94.92270962],[4.5328632,0.02375365,94.92347416],[4.53286377,0.02375536,94.92423846],[4.53286433,0.02375708,94.92500251],[4.53286489,0.02375879,94.92576631],[4.53286545,0.0237605,94.92652985],[4.53286602,0.02376222,94.92729313],[4.53286658,0.02376393,94.92805614],[4.53286714,0.02376564,94.92881887],[4.5328677,0.02376735,94.92958132],[4.53286826,0.02376907,94.93034347],[4.53286883,0.02377078,94.93110533],[4.53286939,0.02377249,94.93186688],[4.53286995,0.02377421,94.93262813],[4.53287051,0.02377592,94.93338905],[4.53287108,0.02377763,94.93414966],[4.53287164,0.02377934,94.93490994],[4.5328722,0.02378106,94.93566989],[4.53287276,0.02378277,94.9364295],[4.53287333,0.02378448,94.93718876],[4.53287389,0.0237862,94.93794768],[4.53287445,0.02378791,94.93870624],[4.53287501,0.02378962,94.93946445],[4.53287557,0.02379133,94.94022229],[4.53287614,0.02379305,94.94097976],[4.5328767,0.02379476,94.94173685],[4.53287726,0.02379647,94.94249356],[4.53287782,0.02379819,94.94324988],[4.53287838,0.0237999,94.94400581],[4.53287895,0.02380161,94.94476134],[4.53287951,0.02380333,94.94551646],[4.53288007,0.02380504,94.94627117],[4.53288063,0.02380675,94.94702547],[4.53288119,0.02380847,94.94777935],[4.53288175,0.02381018,94.9485328],[4.53288232,0.02381189,94.94928582],[4.53288288,0.0238136,94.95003839],[4.53288344,0.02381532,94.95079053],[4.532884,0.02381703,94.95154221],[4.53288456,0.02381874,94.95229344],[4.53288512,0.02382046,94.95304421],[4.53288568,0.02382217,94.95379452],[4.53288624,0.02382388,94.95454441],[4.53288681,0.0238256,94.95529388],[4.53288737,0.02382731,94.95604298],[4.53288793,0.02382902,94.95679172],[4.53288849,0.02383074,94.95754012],[4.53288905,0.02383245,94.95828821],[4.53288961,0.02383416,94.95903601],[4.53289017,0.02383588,94.95978355],[4.53289073,0.02383759,94.96053084],[4.53289129,0.0238393,94.96127792],[4.53289185,0.02384102,94.96202481],[4.53289241,0.02384273,94.96277152],[4.53289298,0.02384444,94.9635181],[4.53289354,0.02384616,94.96426455],[4.5328941,0.02384787,94.9650109],[4.53289466,0.02384958,94.96575718],[4.53289522,0.0238513,94.96650341],[4.53289578,0.02385301,94.96724962],[4.53289634,0.02385472,94.96799582],[4.5328969,0.02385644,94.96874205],[4.53289746,0.02385815,94.96948833],[4.53289803,0.02385986,94.97023467],[4.53289859,0.02386158,94.97098112],[4.53289915,0.02386329,94.97172768],[4.53289971,0.023865,94.97247439],[4.53290027,0.02386672,94.97322127],[4.53290084,0.02386843,94.97396835],[4.5329014,0.02387014,94.97471564],[4.53290196,0.02387185,94.97546317],[4.53290252,0.02387357,94.97621097],[4.53290309,0.02387528,94.97695906],[4.53290365,0.02387699,94.97770747],[4.53290421,0.0238787,94.97845622],[4.53290477,0.02388042,94.97920534],[4.53290534,0.02388213,94.97995484],[4.5329059,0.02388384,94.98070473],[4.53290647,0.02388555,94.981455],[4.53290703,0.02388727,94.98220566],[4.53290759,0.02388898,94.98295669],[4.53290816,0.02389069,94.9837081],[4.53290872,0.0238924,94.98445988],[4.53290929,0.02389412,94.98521203],[4.53290985,0.02389583,94.98596454],[4.53291042,0.02389754,94.98671742],[4.53291098,0.02389925,94.98747065],[4.53291155,0.02390096,94.98822424],[4.53291211,0.02390268,94.98897819],[4.53291268,0.02390439,94.98973248],[4.53291324,0.0239061,94.99048712],[4.53291381,0.02390781,94.99124211],[4.53291438,0.02390952,94.99199743],[4.53291494,0.02391123,94.99275309],[4.53291551,0.02391295,94.99350908],[4.53291608,0.02391466,94.99426541],[4.53291664,0.02391637,94.99502205],[4.53291721,0.02391808,94.99577903],[4.53291778,0.02391979,94.99653632],[4.53291834,0.0239215,94.99729393],[4.53291891,0.02392321,94.99805185],[4.53291948,0.02392492,94.99881008],[4.53292005,0.02392664,94.99956861],[4.53292061,0.02392835,95.00032745],[4.53292118,0.02393006,95.00108659],[4.53292175,0.02393177,95.00184602],[4.53292232,0.02393348,95.00260575],[4.53292289,0.02393519,95.00336576],[4.53292346,0.0239369,95.00412606],[4.53292403,0.02393861,95.00488664],[4.53292459,0.02394032,95.00564749],[4.53292516,0.02394203,95.00640862],[4.53292573,0.02394374,95.00717003],[4.5329263,0.02394545,95.00793169],[4.53292687,0.02394716,95.00869363],[4.53292744,0.02394887,95.00945582],[4.53292801,0.02395059,95.01021827],[4.53292858,0.0239523,95.01098097],[4.53292915,0.02395401,95.01174391],[4.53292972,0.02395572,95.01250711],[4.53293029,0.02395743,95.01327054],[4.53293086,0.02395914,95.01403422],[4.53293143,0.02396085,95.01479812],[4.532932,0.02396256,95.01556226],[4.53293257,0.02396427,95.01632663],[4.53293314,0.02396598,95.01709121],[4.53293371,0.02396769,95.01785602],[4.53293429,0.0239694,95.01862104],[4.53293486,0.02397111,95.01938627],[4.53293543,0.02397282,95.02015171],[4.532936,0.02397453,95.02091735],[4.53293657,0.02397624,95.0216832],[4.53293714,0.02397795,95.02244924],[4.53293771,0.02397966,95.02321547],[4.53293829,0.02398137,95.02398189],[4.53293886,0.02398308,95.0247485],[4.53293943,0.02398479,95.02551529],[4.53294,0.0239865,95.02628225],[4.53294057,0.0239882,95.02704939],[4.53294115,0.02398991,95.02781669],[4.53294172,0.02399162,95.02858416],[4.53294229,0.02399333,95.0293518],[4.53294286,0.02399504,95.03011959],[4.53294344,0.02399675,95.03088753],[4.53294401,0.02399846,95.03165563],[4.53294458,0.02400017,95.03242387],[4.53294516,0.02400188,95.03319225],[4.53294573,0.02400359,95.03396068],[4.5329463,0.0240053,95.03472872],[4.53294687,0.02400701,95.03549584],[4.53294745,0.02400872,95.03626151],[4.53294802,0.02401043,95.03702519],[4.53294859,0.02401214,95.03778637],[4.53294916,0.02401385,95.03854449],[4.53294973,0.02401556,95.03929904],[4.5329503,0.02401727,95.04004949],[4.53295086,0.02401898,95.04079529],[4.53295143,0.02402069,95.04153593],[4.53295199,0.02402241,95.04227086],[4.53295255,0.02402412,95.04299957],[4.53295311,0.02402583,95.04372199],[4.53295367,0.02402755,95.04443845],[4.53295422,0.02402926,95.04514932],[4.53295478,0.02403098,95.04585499],[4.53295533,0.02403269,95.0465558],[4.53295588,0.02403441,95.04725214],[4.53295643,0.02403613,95.04794436],[4.53295698,0.02403784,95.04863285],[4.53295753,0.02403956,95.04931797],[4.53295808,0.02404128,95.05000009],[4.53295863,0.024043,95.05067958],[4.53295917,0.02404472,95.0513568],[4.53295972,0.02404643,95.05203214],[4.53296026,0.02404815,95.05270596],[4.53296081,0.02404987,95.05337863],[4.53296135,0.02405159,95.05405052],[4.5329619,0.02405331,95.05472201],[4.53296244,0.02405503,95.05539346],[4.53296299,0.02405675,95.05606525],[4.53296353,0.02405847,95.05673774],[4.53296408,0.02406018,95.05741131],[4.53296462,0.0240619,95.05808633],[4.53296517,0.02406362,95.05876316],[4.53296572,0.02406534,95.05944189],[4.53296626,0.02406706,95.06012234],[4.53296681,0.02406877,95.06080432],[4.53296736,0.02407049,95.06148764],[4.53296791,0.02407221,95.0621721],[4.53296846,0.02407393,95.06285751],[4.53296901,0.02407564,95.06354368],[4.53296956,0.02407736,95.06423042],[4.53297011,0.02407908,95.06491753],[4.53297066,0.02408079,95.06560483],[4.53297121,0.02408251,95.06629211],[4.53297176,0.02408423,95.06697919],[4.53297231,0.02408595,95.06766588],[4.53297286,0.02408766,95.06835198],[4.53297341,0.02408938,95.0690373],[4.53297396,0.0240911,95.06972165],[4.53297451,0.02409281,95.07040483],[4.53297505,0.02409453,95.07108665],[4.5329756,0.02409625,95.07176692],[4.53297615,0.02409797,95.07244545],[4.5329767,0.02409969,95.07312204],[4.53297724,0.0241014,95.07379662],[4.53297779,0.02410312,95.0744696],[4.53297834,0.02410484,95.07514152],[4.53297888,0.02410656,95.0758129],[4.53297943,0.02410828,95.07648428],[4.53297997,0.02411,95.07715618],[4.53298052,0.02411171,95.07782915],[4.53298107,0.02411343,95.0785037],[4.53298161,0.02411515,95.07918039],[4.53298216,0.02411687,95.07985972],[4.53298271,0.02411859,95.08054225],[4.53298326,0.0241203,95.08122851],[4.53298381,0.02412202,95.08191903],[4.53298437,0.02412373,95.08261434],[4.53298492,0.02412545,95.08331498],[4.53298548,0.02412716,95.08402148],[4.53298604,0.02412888,95.08473436],[4.5329866,0.02413059,95.0854535],[4.53298716,0.02413231,95.0861782],[4.53298772,0.02413402,95.08690772],[4.53298829,0.02413573,95.08764131],[4.53298886,0.02413744,95.08837824],[4.53298942,0.02413915,95.08911777],[4.53298999,0.02414086,95.08985915],[4.53299056,0.02414257,95.09060166],[4.53299113,0.02414429,95.09134455],[4.53299169,0.024146,95.09208707],[4.53299226,0.02414771,95.0928285],[4.53299283,0.02414942,95.09356809],[4.5329934,0.02415113,95.09430511],[4.53299028,0.02415217,95.08409974]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":1,"type":"shoulder","predecessorId":1,"sOffset":473.1798043251}},{"geometry":{"coordinates":[[[4.5329934,0.02415113,95.09430511],[4.53299283,0.02414942,95.09356809],[4.53299226,0.02414771,95.0928285],[4.53299169,0.024146,95.09208707],[4.53299113,0.02414429,95.09134455],[4.53299056,0.02414257,95.09060166],[4.53298999,0.02414086,95.08985915],[4.53298942,0.02413915,95.08911777],[4.53298886,0.02413744,95.08837824],[4.53298829,0.02413573,95.08764131],[4.53298772,0.02413402,95.08690772],[4.53298716,0.02413231,95.0861782],[4.5329866,0.02413059,95.0854535],[4.53298604,0.02412888,95.08473436],[4.53298548,0.02412716,95.08402148],[4.53298492,0.02412545,95.08331498],[4.53298437,0.02412373,95.08261434],[4.53298381,0.02412202,95.08191903],[4.53298326,0.0241203,95.08122851],[4.53298271,0.02411859,95.08054225],[4.53298216,0.02411687,95.07985972],[4.53298161,0.02411515,95.07918039],[4.53298107,0.02411343,95.0785037],[4.53298052,0.02411171,95.07782915],[4.53297997,0.02411,95.07715618],[4.53297943,0.02410828,95.07648428],[4.53297888,0.02410656,95.0758129],[4.53297834,0.02410484,95.07514152],[4.53297779,0.02410312,95.0744696],[4.53297724,0.0241014,95.07379662],[4.5329767,0.02409969,95.07312204],[4.53297615,0.02409797,95.07244545],[4.5329756,0.02409625,95.07176692],[4.53297505,0.02409453,95.07108665],[4.53297451,0.02409281,95.07040483],[4.53297396,0.0240911,95.06972165],[4.53297341,0.02408938,95.0690373],[4.53297286,0.02408766,95.06835198],[4.53297231,0.02408595,95.06766588],[4.53297176,0.02408423,95.06697919],[4.53297121,0.02408251,95.06629211],[4.53297066,0.02408079,95.06560483],[4.53297011,0.02407908,95.06491753],[4.53296956,0.02407736,95.06423042],[4.53296901,0.02407564,95.06354368],[4.53296846,0.02407393,95.06285751],[4.53296791,0.02407221,95.0621721],[4.53296736,0.02407049,95.06148764],[4.53296681,0.02406877,95.06080432],[4.53296626,0.02406706,95.06012234],[4.53296572,0.02406534,95.05944189],[4.53296517,0.02406362,95.05876316],[4.53296462,0.0240619,95.05808633],[4.53296408,0.02406018,95.05741131],[4.53296353,0.02405847,95.05673774],[4.53296299,0.02405675,95.05606525],[4.53296244,0.02405503,95.05539346],[4.5329619,0.02405331,95.05472201],[4.53296135,0.02405159,95.05405052],[4.53296081,0.02404987,95.05337863],[4.53296026,0.02404815,95.05270596],[4.53295972,0.02404643,95.05203214],[4.53295917,0.02404472,95.0513568],[4.53295863,0.024043,95.05067958],[4.53295808,0.02404128,95.05000009],[4.53295753,0.02403956,95.04931797],[4.53295698,0.02403784,95.04863285],[4.53295643,0.02403613,95.04794436],[4.53295588,0.02403441,95.04725214],[4.53295533,0.02403269,95.0465558],[4.53295478,0.02403098,95.04585499],[4.53295422,0.02402926,95.04514932],[4.53295367,0.02402755,95.04443845],[4.53295311,0.02402583,95.04372199],[4.53295255,0.02402412,95.04299957],[4.53295199,0.02402241,95.04227086],[4.53295143,0.02402069,95.04153593],[4.53295086,0.02401898,95.04079529],[4.5329503,0.02401727,95.04004949],[4.53294973,0.02401556,95.03929904],[4.53294916,0.02401385,95.03854449],[4.53294859,0.02401214,95.03778637],[4.53294802,0.02401043,95.03702519],[4.53294745,0.02400872,95.03626151],[4.53294687,0.02400701,95.03549584],[4.5329463,0.0240053,95.03472872],[4.53294573,0.02400359,95.03396068],[4.53294516,0.02400188,95.03319225],[4.53294458,0.02400017,95.03242387],[4.53294401,0.02399846,95.03165563],[4.53294344,0.02399675,95.03088753],[4.53294286,0.02399504,95.03011959],[4.53294229,0.02399333,95.0293518],[4.53294172,0.02399162,95.02858416],[4.53294115,0.02398991,95.02781669],[4.53294057,0.0239882,95.02704939],[4.53294,0.0239865,95.02628225],[4.53293943,0.02398479,95.02551529],[4.53293886,0.02398308,95.0247485],[4.53293829,0.02398137,95.02398189],[4.53293771,0.02397966,95.02321547],[4.53293714,0.02397795,95.02244924],[4.53293657,0.02397624,95.0216832],[4.532936,0.02397453,95.02091735],[4.53293543,0.02397282,95.02015171],[4.53293486,0.02397111,95.01938627],[4.53293429,0.0239694,95.01862104],[4.53293371,0.02396769,95.01785602],[4.53293314,0.02396598,95.01709121],[4.53293257,0.02396427,95.01632663],[4.532932,0.02396256,95.01556226],[4.53293143,0.02396085,95.01479812],[4.53293086,0.02395914,95.01403422],[4.53293029,0.02395743,95.01327054],[4.53292972,0.02395572,95.01250711],[4.53292915,0.02395401,95.01174391],[4.53292858,0.0239523,95.01098097],[4.53292801,0.02395059,95.01021827],[4.53292744,0.02394887,95.00945582],[4.53292687,0.02394716,95.00869363],[4.5329263,0.02394545,95.00793169],[4.53292573,0.02394374,95.00717003],[4.53292516,0.02394203,95.00640862],[4.53292459,0.02394032,95.00564749],[4.53292403,0.02393861,95.00488664],[4.53292346,0.0239369,95.00412606],[4.53292289,0.02393519,95.00336576],[4.53292232,0.02393348,95.00260575],[4.53292175,0.02393177,95.00184602],[4.53292118,0.02393006,95.00108659],[4.53292061,0.02392835,95.00032745],[4.53292005,0.02392664,94.99956861],[4.53291948,0.02392492,94.99881008],[4.53291891,0.02392321,94.99805185],[4.53291834,0.0239215,94.99729393],[4.53291778,0.02391979,94.99653632],[4.53291721,0.02391808,94.99577903],[4.53291664,0.02391637,94.99502205],[4.53291608,0.02391466,94.99426541],[4.53291551,0.02391295,94.99350908],[4.53291494,0.02391123,94.99275309],[4.53291438,0.02390952,94.99199743],[4.53291381,0.02390781,94.99124211],[4.53291324,0.0239061,94.99048712],[4.53291268,0.02390439,94.98973248],[4.53291211,0.02390268,94.98897819],[4.53291155,0.02390096,94.98822424],[4.53291098,0.02389925,94.98747065],[4.53291042,0.02389754,94.98671742],[4.53290985,0.02389583,94.98596454],[4.53290929,0.02389412,94.98521203],[4.53290872,0.0238924,94.98445988],[4.53290816,0.02389069,94.9837081],[4.53290759,0.02388898,94.98295669],[4.53290703,0.02388727,94.98220566],[4.53290647,0.02388555,94.981455],[4.5329059,0.02388384,94.98070473],[4.53290534,0.02388213,94.97995484],[4.53290477,0.02388042,94.97920534],[4.53290421,0.0238787,94.97845622],[4.53290365,0.02387699,94.97770747],[4.53290309,0.02387528,94.97695906],[4.53290252,0.02387357,94.97621097],[4.53290196,0.02387185,94.97546317],[4.5329014,0.02387014,94.97471564],[4.53290084,0.02386843,94.97396835],[4.53290027,0.02386672,94.97322127],[4.53289971,0.023865,94.97247439],[4.53289915,0.02386329,94.97172768],[4.53289859,0.02386158,94.97098112],[4.53289803,0.02385986,94.97023467],[4.53289746,0.02385815,94.96948833],[4.5328969,0.02385644,94.96874205],[4.53289634,0.02385472,94.96799582],[4.53289578,0.02385301,94.96724962],[4.53289522,0.0238513,94.96650341],[4.53289466,0.02384958,94.96575718],[4.5328941,0.02384787,94.9650109],[4.53289354,0.02384616,94.96426455],[4.53289298,0.02384444,94.9635181],[4.53289241,0.02384273,94.96277152],[4.53289185,0.02384102,94.96202481],[4.53289129,0.0238393,94.96127792],[4.53289073,0.02383759,94.96053084],[4.53289017,0.02383588,94.95978355],[4.53288961,0.02383416,94.95903601],[4.53288905,0.02383245,94.95828821],[4.53288849,0.02383074,94.95754012],[4.53288793,0.02382902,94.95679172],[4.53288737,0.02382731,94.95604298],[4.53288681,0.0238256,94.95529388],[4.53288624,0.02382388,94.95454441],[4.53288568,0.02382217,94.95379452],[4.53288512,0.02382046,94.95304421],[4.53288456,0.02381874,94.95229344],[4.532884,0.02381703,94.95154221],[4.53288344,0.02381532,94.95079053],[4.53288288,0.0238136,94.95003839],[4.53288232,0.02381189,94.94928582],[4.53288175,0.02381018,94.9485328],[4.53288119,0.02380847,94.94777935],[4.53288063,0.02380675,94.94702547],[4.53288007,0.02380504,94.94627117],[4.53287951,0.02380333,94.94551646],[4.53287895,0.02380161,94.94476134],[4.53287838,0.0237999,94.94400581],[4.53287782,0.02379819,94.94324988],[4.53287726,0.02379647,94.94249356],[4.5328767,0.02379476,94.94173685],[4.53287614,0.02379305,94.94097976],[4.53287557,0.02379133,94.94022229],[4.53287501,0.02378962,94.93946445],[4.53287445,0.02378791,94.93870624],[4.53287389,0.0237862,94.93794768],[4.53287333,0.02378448,94.93718876],[4.53287276,0.02378277,94.9364295],[4.5328722,0.02378106,94.93566989],[4.53287164,0.02377934,94.93490994],[4.53287108,0.02377763,94.93414966],[4.53287051,0.02377592,94.93338905],[4.53286995,0.02377421,94.93262813],[4.53286939,0.02377249,94.93186688],[4.53286883,0.02377078,94.93110533],[4.53286826,0.02376907,94.93034347],[4.5328677,0.02376735,94.92958132],[4.53286714,0.02376564,94.92881887],[4.53286658,0.02376393,94.92805614],[4.53286602,0.02376222,94.92729313],[4.53286545,0.0237605,94.92652985],[4.53286489,0.02375879,94.92576631],[4.53286433,0.02375708,94.92500251],[4.53286377,0.02375536,94.92423846],[4.5328632,0.02375365,94.92347416],[4.53286264,0.02375194,94.92270962],[4.53286208,0.02375023,94.92194485],[4.53286152,0.02374851,94.92117985],[4.53286095,0.0237468,94.92041464],[4.53286039,0.02374509,94.91964921],[4.53285983,0.02374337,94.91888357],[4.53285927,0.02374166,94.91811773],[4.5328587,0.02373995,94.9173517],[4.53285814,0.02373824,94.91658548],[4.53285758,0.02373652,94.91581907],[4.53285702,0.02373481,94.91505249],[4.53285646,0.0237331,94.91428574],[4.53285589,0.02373138,94.91351883],[4.53285533,0.02372967,94.91275175],[4.53285477,0.02372796,94.91198453],[4.53285421,0.02372625,94.91121714],[4.53285365,0.02372453,94.91044958],[4.53285308,0.02372282,94.90968186],[4.53285252,0.02372111,94.90891394],[4.53285196,0.02371939,94.90814584],[4.5328514,0.02371768,94.90737754],[4.53285084,0.02371597,94.90660904],[4.53285028,0.02371425,94.90584032],[4.53284971,0.02371254,94.90507138],[4.53284915,0.02371083,94.90430221],[4.53284859,0.02370911,94.90353281],[4.53284803,0.0237074,94.90276316],[4.53284747,0.02370569,94.90199327],[4.53284691,0.02370397,94.90122311],[4.53284634,0.02370226,94.90045269],[4.53284578,0.02370055,94.899682],[4.53284522,0.02369884,94.89891102],[4.53284466,0.02369712,94.89813976],[4.5328441,0.02369541,94.8973682],[4.53284354,0.0236937,94.89659635],[4.53284297,0.02369198,94.89582418],[4.53284241,0.02369027,94.89505169],[4.53284185,0.02368856,94.89427888],[4.53284129,0.02368684,94.89350574],[4.53284073,0.02368513,94.89273226],[4.53284017,0.02368342,94.89195843],[4.53283961,0.02368171,94.89118425],[4.53283904,0.02367999,94.89040971],[4.53283848,0.02367828,94.88963481],[4.53283792,0.02367657,94.88885952],[4.53283736,0.02367485,94.88808386],[4.5328368,0.02367314,94.88730781],[4.53283624,0.02367143,94.88653136],[4.53283567,0.02366971,94.88575451],[4.53283511,0.023668,94.88497725],[4.53283455,0.02366629,94.88419957],[4.53283399,0.02366457,94.88342147],[4.53283343,0.02366286,94.88264294],[4.53283287,0.02366115,94.88186398],[4.5328323,0.02365943,94.88108456],[4.53283174,0.02365772,94.8803047],[4.53283118,0.02365601,94.87952438],[4.53283062,0.02365429,94.8787436],[4.53283005,0.02365258,94.87796234],[4.53282949,0.02365087,94.87718061],[4.53282893,0.02364915,94.87639839],[4.53282837,0.02364744,94.87561568],[4.5328278,0.02364573,94.87483248],[4.53282724,0.02364401,94.87404876],[4.53282668,0.0236423,94.87326454],[4.53282611,0.02364059,94.8724798],[4.53282555,0.02363887,94.87169454],[4.53282499,0.02363716,94.87090875],[4.53282442,0.02363545,94.87012242],[4.53282386,0.02363373,94.86933555],[4.53282329,0.02363202,94.86854813],[4.53282273,0.02363031,94.86776015],[4.53282216,0.02362859,94.86697162],[4.5328216,0.02362688,94.86618251],[4.53282103,0.02362517,94.86539283],[4.53282047,0.02362345,94.86460257],[4.5328199,0.02362174,94.86381173],[4.53281934,0.02362003,94.86302029],[4.53281877,0.02361831,94.86222825],[4.53281821,0.0236166,94.86143561],[4.53281764,0.02361489,94.86064236],[4.53281707,0.02361318,94.85984849],[4.53281651,0.02361146,94.859054],[4.53281594,0.02360975,94.85825888],[4.53281537,0.02360804,94.85746313],[4.53281481,0.02360633,94.85666674],[4.53281424,0.02360461,94.8558697],[4.53281367,0.0236029,94.85507201],[4.5328131,0.02360119,94.85427367],[4.53281254,0.02359948,94.85347466],[4.53281197,0.02359777,94.85267498],[4.5328114,0.02359605,94.85187464],[4.53281083,0.02359434,94.85107361],[4.53281026,0.02359263,94.8502719],[4.53280969,0.02359092,94.8494695],[4.53280912,0.02358921,94.8486664],[4.53280865,0.02358779,94.84800206],[4.53282095,0.02358365,94.84800206],[4.53282142,0.02358507,94.8486664],[4.53282199,0.02358678,94.8494695],[4.53282255,0.0235885,94.8502719],[4.53282311,0.02359021,94.85107361],[4.53282368,0.02359192,94.85187464],[4.53282424,0.02359364,94.85267498],[4.53282481,0.02359535,94.85347466],[4.53282537,0.02359706,94.85427367],[4.53282594,0.02359878,94.85507201],[4.5328265,0.02360049,94.8558697],[4.53282707,0.0236022,94.85666674],[4.53282763,0.02360392,94.85746313],[4.5328282,0.02360563,94.85825888],[4.53282876,0.02360734,94.859054],[4.53282933,0.02360906,94.85984849],[4.53282989,0.02361077,94.86064236],[4.53283046,0.02361249,94.86143561],[4.53283102,0.0236142,94.86222825],[4.53283158,0.02361591,94.86302029],[4.53283215,0.02361763,94.86381173],[4.53283271,0.02361934,94.86460257],[4.53283328,0.02362106,94.86539283],[4.53283384,0.02362277,94.86618251],[4.53283441,0.02362449,94.86697162],[4.53283497,0.0236262,94.86776015],[4.53283553,0.02362792,94.86854813],[4.5328361,0.02362963,94.86933555],[4.53283666,0.02363135,94.87012242],[4.53283723,0.02363306,94.87090875],[4.53283779,0.02363477,94.87169454],[4.53283835,0.02363649,94.8724798],[4.53283892,0.0236382,94.87326454],[4.53283948,0.02363992,94.87404876],[4.53284004,0.02364163,94.87483248],[4.53284061,0.02364335,94.87561568],[4.53284117,0.02364506,94.87639839],[4.53284173,0.02364677,94.87718061],[4.5328423,0.02364849,94.87796234],[4.53284286,0.0236502,94.8787436],[4.53284342,0.02365191,94.87952438],[4.53284399,0.02365363,94.8803047],[4.53284455,0.02365534,94.88108456],[4.53284511,0.02365705,94.88186398],[4.53284568,0.02365877,94.88264294],[4.53284624,0.02366048,94.88342147],[4.5328468,0.02366219,94.88419957],[4.53284737,0.0236639,94.88497725],[4.53284793,0.02366562,94.88575451],[4.53284849,0.02366733,94.88653136],[4.53284906,0.02366904,94.88730781],[4.53284962,0.02367076,94.88808386],[4.53285018,0.02367247,94.88885952],[4.53285075,0.02367418,94.88963481],[4.53285131,0.02367589,94.89040971],[4.53285187,0.0236776,94.89118425],[4.53285244,0.02367932,94.89195843],[4.532853,0.02368103,94.89273226],[4.53285356,0.02368274,94.89350574],[4.53285413,0.02368445,94.89427888],[4.53285469,0.02368617,94.89505169],[4.53285526,0.02368788,94.89582418],[4.53285582,0.02368959,94.89659635],[4.53285638,0.0236913,94.8973682],[4.53285695,0.02369301,94.89813976],[4.53285751,0.02369473,94.89891102],[4.53285808,0.02369644,94.899682],[4.53285864,0.02369815,94.90045269],[4.5328592,0.02369986,94.90122311],[4.53285977,0.02370158,94.90199327],[4.53286033,0.02370329,94.90276316],[4.5328609,0.023705,94.90353281],[4.53286146,0.02370671,94.90430221],[4.53286203,0.02370842,94.90507138],[4.53286259,0.02371014,94.90584032],[4.53286316,0.02371185,94.90660904],[4.53286372,0.02371356,94.90737754],[4.53286428,0.02371527,94.90814584],[4.53286485,0.02371699,94.90891394],[4.53286541,0.0237187,94.90968186],[4.53286598,0.02372041,94.91044958],[4.53286654,0.02372212,94.91121714],[4.53286711,0.02372383,94.91198453],[4.53286767,0.02372555,94.91275175],[4.53286824,0.02372726,94.91351883],[4.5328688,0.02372897,94.91428574],[4.53286937,0.02373068,94.91505249],[4.53286993,0.02373239,94.91581907],[4.5328705,0.02373411,94.91658548],[4.53287106,0.02373582,94.9173517],[4.53287163,0.02373753,94.91811773],[4.5328722,0.02373924,94.91888357],[4.53287276,0.02374095,94.91964921],[4.53287333,0.02374267,94.92041464],[4.53287389,0.02374438,94.92117985],[4.53287446,0.02374609,94.92194485],[4.53287502,0.0237478,94.92270962],[4.53287559,0.02374951,94.92347416],[4.53287615,0.02375123,94.92423846],[4.53287672,0.02375294,94.92500251],[4.53287728,0.02375465,94.92576631],[4.53287785,0.02375636,94.92652985],[4.53287842,0.02375807,94.92729313],[4.53287898,0.02375978,94.92805614],[4.53287955,0.0237615,94.92881887],[4.53288011,0.02376321,94.92958132],[4.53288068,0.02376492,94.93034347],[4.53288124,0.02376663,94.93110533],[4.53288181,0.02376834,94.93186688],[4.53288238,0.02377005,94.93262813],[4.53288294,0.02377177,94.93338905],[4.53288351,0.02377348,94.93414966],[4.53288407,0.02377519,94.93490994],[4.53288464,0.0237769,94.93566989],[4.5328852,0.02377861,94.9364295],[4.53288577,0.02378033,94.93718876],[4.53288634,0.02378204,94.93794768],[4.5328869,0.02378375,94.93870624],[4.53288747,0.02378546,94.93946445],[4.53288803,0.02378717,94.94022229],[4.5328886,0.02378888,94.94097976],[4.53288917,0.0237906,94.94173685],[4.53288973,0.02379231,94.94249356],[4.5328903,0.02379402,94.94324988],[4.53289086,0.02379573,94.94400581],[4.53289143,0.02379744,94.94476134],[4.532892,0.02379915,94.94551646],[4.53289256,0.02380087,94.94627117],[4.53289313,0.02380258,94.94702547],[4.53289369,0.02380429,94.94777935],[4.53289426,0.023806,94.9485328],[4.53289483,0.02380771,94.94928582],[4.53289539,0.02380942,94.95003839],[4.53289596,0.02381113,94.95079053],[4.53289653,0.02381285,94.95154221],[4.53289709,0.02381456,94.95229344],[4.53289766,0.02381627,94.95304421],[4.53289822,0.02381798,94.95379452],[4.53289879,0.02381969,94.95454441],[4.53289936,0.0238214,94.95529388],[4.53289992,0.02382312,94.95604298],[4.53290049,0.02382483,94.95679172],[4.53290106,0.02382654,94.95754012],[4.53290162,0.02382825,94.95828821],[4.53290219,0.02382996,94.95903601],[4.53290275,0.02383167,94.95978355],[4.53290332,0.02383339,94.96053084],[4.53290389,0.0238351,94.96127792],[4.53290445,0.02383681,94.96202481],[4.53290502,0.02383852,94.96277152],[4.53290559,0.02384023,94.9635181],[4.53290615,0.02384194,94.96426455],[4.53290672,0.02384366,94.9650109],[4.53290728,0.02384537,94.96575718],[4.53290785,0.02384708,94.96650341],[4.53290842,0.02384879,94.96724962],[4.53290898,0.0238505,94.96799582],[4.53290955,0.02385221,94.96874205],[4.53291012,0.02385393,94.96948833],[4.53291068,0.02385564,94.97023467],[4.53291125,0.02385735,94.97098112],[4.53291181,0.02385906,94.97172768],[4.53291238,0.02386077,94.97247439],[4.53291295,0.02386248,94.97322127],[4.53291351,0.02386419,94.97396835],[4.53291408,0.02386591,94.97471564],[4.53291464,0.02386762,94.97546317],[4.53291521,0.02386933,94.97621097],[4.53291578,0.02387104,94.97695906],[4.53291634,0.02387275,94.97770747],[4.53291691,0.02387447,94.97845622],[4.53291747,0.02387618,94.97920534],[4.53291804,0.02387789,94.97995484],[4.53291861,0.0238796,94.98070473],[4.53291917,0.02388131,94.981455],[4.53291974,0.02388302,94.98220566],[4.5329203,0.02388474,94.98295669],[4.53292087,0.02388645,94.9837081],[4.53292143,0.02388816,94.98445988],[4.532922,0.02388987,94.98521203],[4.53292256,0.02389158,94.98596454],[4.53292313,0.0238933,94.98671742],[4.5329237,0.02389501,94.98747065],[4.53292426,0.02389672,94.98822424],[4.53292483,0.02389843,94.98897819],[4.53292539,0.02390014,94.98973248],[4.53292596,0.02390185,94.99048712],[4.53292652,0.02390357,94.99124211],[4.53292709,0.02390528,94.99199743],[4.53292765,0.02390699,94.99275309],[4.53292822,0.0239087,94.99350908],[4.53292878,0.02391041,94.99426541],[4.53292935,0.02391213,94.99502205],[4.53292991,0.02391384,94.99577903],[4.53293048,0.02391555,94.99653632],[4.53293104,0.02391726,94.99729393],[4.53293161,0.02391897,94.99805185],[4.53293217,0.02392069,94.99881008],[4.53293274,0.0239224,94.99956861],[4.5329333,0.02392411,95.00032745],[4.53293387,0.02392582,95.00108659],[4.53293443,0.02392754,95.00184602],[4.532935,0.02392925,95.00260575],[4.53293556,0.02393096,95.00336576],[4.53293613,0.02393267,95.00412606],[4.53293669,0.02393438,95.00488664],[4.53293726,0.0239361,95.00564749],[4.53293782,0.02393781,95.00640862],[4.53293839,0.02393952,95.00717003],[4.53293895,0.02394123,95.00793169],[4.53293952,0.02394294,95.00869363],[4.53294008,0.02394466,95.00945582],[4.53294064,0.02394637,95.01021827],[4.53294121,0.02394808,95.01098097],[4.53294177,0.02394979,95.01174391],[4.53294234,0.02395151,95.01250711],[4.5329429,0.02395322,95.01327054],[4.53294347,0.02395493,95.01403422],[4.53294403,0.02395664,95.01479812],[4.5329446,0.02395835,95.01556226],[4.53294516,0.02396007,95.01632663],[4.53294573,0.02396178,95.01709121],[4.53294629,0.02396349,95.01785602],[4.53294686,0.0239652,95.01862104],[4.53294742,0.02396692,95.01938627],[4.53294798,0.02396863,95.02015171],[4.53294855,0.02397034,95.02091735],[4.53294911,0.02397205,95.0216832],[4.53294968,0.02397376,95.02244924],[4.53295024,0.02397548,95.02321547],[4.53295081,0.02397719,95.02398189],[4.53295137,0.0239789,95.0247485],[4.53295194,0.02398061,95.02551529],[4.5329525,0.02398233,95.02628225],[4.53295306,0.02398404,95.02704939],[4.53295363,0.02398575,95.02781669],[4.53295419,0.02398746,95.02858416],[4.53295476,0.02398917,95.0293518],[4.53295532,0.02399089,95.03011959],[4.53295589,0.0239926,95.03088753],[4.53295645,0.02399431,95.03165563],[4.53295702,0.02399602,95.03242387],[4.53295758,0.02399774,95.03319225],[4.53295814,0.02399945,95.03396068],[4.53295871,0.02400116,95.03472872],[4.53295927,0.02400287,95.03549584],[4.53295984,0.02400459,95.03626151],[4.5329604,0.0240063,95.03702519],[4.53296097,0.02400801,95.03778637],[4.53296153,0.02400972,95.03854449],[4.53296209,0.02401143,95.03929904],[4.53296266,0.02401315,95.04004949],[4.53296322,0.02401486,95.04079529],[4.53296379,0.02401657,95.04153593],[4.53296435,0.02401828,95.04227086],[4.53296492,0.02402,95.04299957],[4.53296548,0.02402171,95.04372199],[4.53296604,0.02402342,95.04443845],[4.53296661,0.02402513,95.04514932],[4.53296717,0.02402684,95.04585499],[4.53296773,0.02402856,95.0465558],[4.5329683,0.02403027,95.04725214],[4.53296886,0.02403198,95.04794436],[4.53296943,0.02403369,95.04863285],[4.53296999,0.02403541,95.04931797],[4.53297056,0.02403712,95.05000009],[4.53297112,0.02403883,95.05067958],[4.53297168,0.02404054,95.0513568],[4.53297225,0.02404226,95.05203214],[4.53297281,0.02404397,95.05270596],[4.53297338,0.02404568,95.05337863],[4.53297394,0.02404739,95.05405052],[4.53297451,0.02404911,95.05472201],[4.53297507,0.02405082,95.05539346],[4.53297563,0.02405253,95.05606525],[4.5329762,0.02405424,95.05673774],[4.53297676,0.02405595,95.05741131],[4.53297733,0.02405767,95.05808633],[4.53297789,0.02405938,95.05876316],[4.53297846,0.02406109,95.05944189],[4.53297902,0.0240628,95.06012234],[4.53297959,0.02406451,95.06080432],[4.53298016,0.02406623,95.06148764],[4.53298072,0.02406794,95.0621721],[4.53298129,0.02406965,95.06285751],[4.53298186,0.02407136,95.06354368],[4.53298242,0.02407307,95.06423042],[4.53298299,0.02407478,95.06491753],[4.53298355,0.0240765,95.06560483],[4.53298412,0.02407821,95.06629211],[4.53298469,0.02407992,95.06697919],[4.53298525,0.02408163,95.06766588],[4.53298581,0.02408334,95.06835198],[4.53298638,0.02408506,95.0690373],[4.53298694,0.02408677,95.06972165],[4.5329875,0.02408848,95.07040483],[4.53298807,0.0240902,95.07108665],[4.53298863,0.02409191,95.07176692],[4.53298919,0.02409362,95.07244545],[4.53298975,0.02409534,95.07312204],[4.5329903,0.02409705,95.07379662],[4.53299086,0.02409877,95.0744696],[4.53299142,0.02410048,95.07514152],[4.53299197,0.0241022,95.0758129],[4.53299253,0.02410391,95.07648428],[4.53299308,0.02410563,95.07715618],[4.53299364,0.02410734,95.07782915],[4.53299419,0.02410906,95.0785037],[4.53299475,0.02411077,95.07918039],[4.5329953,0.02411249,95.07985972],[4.53299586,0.0241142,95.08054225],[4.53299642,0.02411592,95.08122851],[4.53299697,0.02411763,95.08191903],[4.53299753,0.02411935,95.08261434],[4.53299809,0.02412106,95.08331498],[4.53299865,0.02412278,95.08402148],[4.53299922,0.02412449,95.08473436],[4.53299978,0.0241262,95.0854535],[4.53300035,0.02412791,95.0861782],[4.53300091,0.02412963,95.08690772],[4.53300148,0.02413134,95.08764131],[4.53300205,0.02413305,95.08837824],[4.53300261,0.02413476,95.08911777],[4.53300318,0.02413647,95.08985915],[4.53300375,0.02413818,95.09060166],[4.53300431,0.02413989,95.09134455],[4.53300488,0.02414161,95.09208707],[4.53300544,0.02414332,95.0928285],[4.53300601,0.02414503,95.09356809],[4.53300657,0.02414674,95.09430511],[4.5329934,0.02415113,95.09430511]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1000100","id":2,"type":"none","predecessorId":2,"sOffset":473.1798043251}},{"geometry":{"coordinates":[[[4.5369552,0.0386912,97.93660679],[4.53695509,0.03869087,97.93660826],[4.53695492,0.03869033,97.93664705],[4.5369547,0.03868959,97.93671694],[4.53695441,0.03868865,97.93681166],[4.53695406,0.0386875,97.93692485],[4.53695365,0.03868616,97.93705011],[4.53695317,0.03868462,97.93718096],[4.53695263,0.03868289,97.93731087],[4.53695208,0.03868115,97.93743322],[4.53695153,0.03867942,97.93754137],[4.53695097,0.03867769,97.93763055],[4.5369504,0.03867596,97.93770354],[4.53694983,0.03867424,97.937765],[4.53694926,0.03867252,97.93781962],[4.53694868,0.0386708,97.93787211],[4.53694811,0.03866908,97.93792586],[4.53694754,0.03866736,97.93798223],[4.53694696,0.03866564,97.93804227],[4.53694639,0.03866393,97.93810702],[4.53694582,0.03866221,97.93817728],[4.53694526,0.0386605,97.93825283],[4.53694469,0.03865878,97.93833319],[4.53694413,0.03865707,97.93841788],[4.53694357,0.03865535,97.93850641],[4.53694302,0.03865364,97.9385983],[4.53694246,0.03865193,97.93869305],[4.53694191,0.03865022,97.93879017],[4.53694136,0.03864851,97.93888914],[4.53694081,0.0386468,97.93898948],[4.53694026,0.03864509,97.93909071],[4.53693971,0.03864338,97.93919267],[4.53693917,0.03864167,97.9392952],[4.53693862,0.03863996,97.93939817],[4.53693808,0.03863826,97.93950145],[4.53693754,0.03863655,97.93960489],[4.53693699,0.03863485,97.93970837],[4.53693645,0.03863315,97.93981176],[4.53693591,0.03863145,97.93991495],[4.53693537,0.03862975,97.94001788],[4.53693483,0.03862805,97.94012059],[4.53693429,0.03862635,97.9402232],[4.53693374,0.03862465,97.94032577],[4.5369332,0.03862296,97.94042841],[4.53693266,0.03862127,97.9405312],[4.53693212,0.03861957,97.94063424],[4.53693158,0.03861788,97.94073761],[4.53693104,0.03861619,97.94084142],[4.5369305,0.0386145,97.94094574],[4.53692996,0.0386128,97.94105066],[4.53692942,0.03861111,97.94115628],[4.53692888,0.03860942,97.94126267],[4.53692833,0.03860773,97.94136992],[4.53692779,0.03860604,97.94147812],[4.53692725,0.03860435,97.94158734],[4.53692671,0.03860266,97.94169769],[4.53692616,0.03860097,97.94180918],[4.53692562,0.03859928,97.94192183],[4.53692508,0.03859759,97.94203563],[4.53692453,0.03859589,97.94215057],[4.53692399,0.0385942,97.94226665],[4.53692345,0.03859251,97.94238386],[4.5369229,0.03859082,97.9425022],[4.53692236,0.03858912,97.94262167],[4.53692181,0.03858743,97.94274225],[4.53692127,0.03858574,97.94286394],[4.53692072,0.03858404,97.94298673],[4.53692018,0.03858235,97.94311063],[4.53691963,0.03858066,97.94323572],[4.53691909,0.03857896,97.94336215],[4.53691854,0.03857727,97.94349012],[4.536918,0.03857557,97.94361979],[4.53691745,0.03857387,97.94375132],[4.53691691,0.03857218,97.94388478],[4.53691636,0.03857048,97.94402023],[4.53691581,0.03856879,97.94415773],[4.53691527,0.03856709,97.94429732],[4.53691472,0.03856539,97.94443907],[4.53691418,0.03856369,97.94458304],[4.53691364,0.03856199,97.9447293],[4.53691309,0.0385603,97.94487794],[4.53691255,0.0385586,97.94502903],[4.536912,0.0385569,97.94518263],[4.53691146,0.0385552,97.94533884],[4.53691091,0.0385535,97.94549772],[4.53691037,0.03855179,97.94565935],[4.53690983,0.03855009,97.9458238],[4.53690929,0.03854839,97.94599115],[4.53690874,0.03854669,97.94616139],[4.5369082,0.03854499,97.94633421],[4.53690766,0.03854328,97.9465092],[4.53690712,0.03854158,97.94668597],[4.53690658,0.03853987,97.94686417],[4.53690604,0.03853817,97.94704372],[4.53690549,0.03853646,97.94722457],[4.53690495,0.03853476,97.94740669],[4.53690441,0.03853305,97.94759004],[4.53690387,0.03853135,97.94777458],[4.53690333,0.03852964,97.94796029],[4.53690279,0.03852793,97.94814711],[4.53690224,0.03852623,97.94833502],[4.5369017,0.03852452,97.94852398],[4.53690116,0.03852281,97.94871392],[4.53690062,0.0385211,97.94890478],[4.53690008,0.0385194,97.94909649],[4.53689954,0.03851769,97.94928901],[4.53689899,0.03851598,97.94948226],[4.53689845,0.03851427,97.94967618],[4.53689791,0.03851256,97.9498707],[4.53689737,0.03851085,97.95006576],[4.53689682,0.03850914,97.95026131],[4.53689628,0.03850743,97.95045727],[4.53689574,0.03850572,97.95065358],[4.53689519,0.03850401,97.95085017],[4.53689465,0.03850229,97.95104699],[4.53689411,0.03850059,97.95124401],[4.53689357,0.03849888,97.95144137],[4.53689302,0.03849717,97.95163913],[4.53689248,0.03849546,97.95183731],[4.53689193,0.03849375,97.95203599],[4.53689139,0.03849203,97.95223518],[4.53689085,0.03849032,97.95243496],[4.5368903,0.03848861,97.95263535],[4.53688976,0.0384869,97.95283642],[4.53688922,0.03848518,97.95303819],[4.53688867,0.03848347,97.95324072],[4.53688813,0.03848176,97.95344406],[4.53688759,0.03848005,97.95364825],[4.53688704,0.03847833,97.95385333],[4.5368865,0.03847662,97.95405936],[4.53688596,0.03847491,97.95426637],[4.53688541,0.03847319,97.95447442],[4.53688487,0.03847148,97.95468355],[4.53688433,0.03846977,97.95489381],[4.53688379,0.03846805,97.95510524],[4.53688324,0.03846634,97.95531791],[4.5368827,0.03846462,97.95553185],[4.53688216,0.03846291,97.95574712],[4.53688162,0.03846119,97.95596373],[4.53688108,0.03845948,97.95618159],[4.53688054,0.03845776,97.95640058],[4.53688,0.03845605,97.95662059],[4.53687945,0.03845433,97.95684148],[4.53687891,0.03845261,97.95706314],[4.53687837,0.0384509,97.95728545],[4.53687783,0.03844918,97.95750828],[4.53687729,0.03844747,97.95773151],[4.53687675,0.03844575,97.95795503],[4.53687621,0.03844403,97.95817875],[4.53687567,0.03844232,97.95840262],[4.53687513,0.0384406,97.9586266],[4.53687459,0.03843888,97.95885065],[4.53687405,0.03843717,97.95907471],[4.53687351,0.03843545,97.95929874],[4.53687297,0.03843373,97.9595227],[4.53687243,0.03843201,97.95974655],[4.53687189,0.0384303,97.95997024],[4.53687135,0.03842858,97.96019374],[4.5368708,0.03842686,97.96041701],[4.53687026,0.03842514,97.96064002],[4.53686972,0.03842343,97.96086272],[4.53686918,0.03842171,97.96108508],[4.53686864,0.03841999,97.96130708],[4.5368681,0.03841827,97.96152872],[4.53686755,0.03841656,97.96175001],[4.53686701,0.03841484,97.96197094],[4.53686647,0.03841312,97.96219153],[4.53686593,0.0384114,97.96241177],[4.53686538,0.03840968,97.96263166],[4.53686484,0.03840796,97.96285122],[4.5368643,0.03840625,97.96307043],[4.53686375,0.03840453,97.96328931],[4.53686321,0.03840281,97.96350786],[4.53686267,0.03840109,97.96372607],[4.53686212,0.03839937,97.96394396],[4.53686158,0.03839765,97.96416153],[4.53686104,0.03839593,97.96437877],[4.53686049,0.03839421,97.9645957],[4.53685995,0.0383925,97.96481231],[4.5368594,0.03839078,97.96502861],[4.53685886,0.03838906,97.9652446],[4.53685832,0.03838734,97.96546028],[4.53685777,0.03838562,97.96567566],[4.53685723,0.0383839,97.96589074],[4.53685668,0.03838218,97.96610553],[4.53685614,0.03838046,97.96632005],[4.53685559,0.03837874,97.9665343],[4.53685505,0.03837702,97.96674829],[4.5368545,0.0383753,97.96696205],[4.53685396,0.03837358,97.96717559],[4.53685341,0.03837186,97.96738891],[4.53685287,0.03837014,97.96760204],[4.53685232,0.03836842,97.96781498],[4.53685177,0.0383667,97.96802776],[4.53685123,0.03836498,97.96824039],[4.53685068,0.03836326,97.96845293],[4.53685014,0.03836154,97.96866542],[4.53684959,0.03835982,97.9688779],[4.53684905,0.03835809,97.96909042],[4.5368485,0.03835637,97.96930303],[4.53684795,0.03835465,97.96951578],[4.53684741,0.03835293,97.9697287],[4.53684686,0.03835121,97.96994184],[4.53684632,0.03834949,97.97015524],[4.53684577,0.03834776,97.97036896],[4.53684523,0.03834604,97.97058302],[4.53684468,0.03834431,97.97079747],[4.53684413,0.03834259,97.97101234],[4.53684359,0.03834087,97.97122767],[4.53684304,0.03833915,97.9714435],[4.5368425,0.03833742,97.97165985],[4.53684196,0.0383357,97.97187678],[4.53684141,0.03833398,97.9720943],[4.53684087,0.03833225,97.97231247],[4.53684032,0.03833053,97.97253132],[4.53683978,0.0383288,97.97275087],[4.53683924,0.03832708,97.97297118],[4.53683869,0.03832535,97.97319227],[4.53683815,0.03832363,97.97341417],[4.53683761,0.0383219,97.97363693],[4.53683706,0.03832018,97.97386059],[4.53683652,0.03831845,97.97408516],[4.53683598,0.03831673,97.9743107],[4.53683544,0.038315,97.97453723],[4.5368349,0.03831327,97.97476479],[4.53683435,0.03831155,97.97499341],[4.53683381,0.03830982,97.97522313],[4.53683327,0.03830809,97.97545398],[4.53683273,0.03830636,97.975686],[4.53683219,0.03830464,97.97591921],[4.53683165,0.03830291,97.97615365],[4.53683112,0.03830118,97.97638934],[4.53683058,0.03829945,97.97662632],[4.53683004,0.03829772,97.97686462],[4.5368295,0.03829599,97.97710427],[4.53682897,0.03829426,97.9773453],[4.53682843,0.03829253,97.97758774],[4.53682789,0.0382908,97.97783161],[4.53682736,0.03828907,97.97807696],[4.53682682,0.03828734,97.97832381],[4.53682629,0.03828561,97.97857216],[4.53682575,0.03828388,97.97882195],[4.53682522,0.03828215,97.97907308],[4.53682469,0.03828041,97.97932544],[4.53682415,0.03827868,97.97957895],[4.53682362,0.03827695,97.97983351],[4.53682309,0.03827522,97.98008902],[4.53682256,0.03827348,97.9803454],[4.53682202,0.03827175,97.98060254],[4.53682149,0.03827001,97.98086035],[4.53682096,0.03826828,97.98111874],[4.53682043,0.03826655,97.98137761],[4.5368199,0.03826481,97.98163688],[4.53681937,0.03826308,97.98189645],[4.53681884,0.03826134,97.98215623],[4.53681831,0.03825961,97.98241613],[4.53681778,0.03825787,97.98267605],[4.53681725,0.03825614,97.98293591],[4.53681672,0.0382544,97.98319561],[4.53681619,0.03825266,97.98345507],[4.53681566,0.03825093,97.9837142],[4.53681513,0.03824919,97.9839729],[4.5368146,0.03824745,97.98423109],[4.53681407,0.03824572,97.98448869],[4.53681354,0.03824398,97.98474559],[4.53681301,0.03824224,97.98500172],[4.53681248,0.03824051,97.98525699],[4.53681195,0.03823877,97.98551131],[4.53681192,0.03823866,97.98552696],[4.53685465,0.03822505,97.98552696],[4.53685469,0.03822516,97.98551131],[4.53685521,0.03822689,97.98525699],[4.53685574,0.03822862,97.98500172],[4.53685627,0.03823035,97.98474559],[4.5368568,0.03823208,97.98448869],[4.53685733,0.03823381,97.98423109],[4.53685785,0.03823554,97.9839729],[4.53685838,0.03823727,97.9837142],[4.53685891,0.038239,97.98345507],[4.53685944,0.03824073,97.98319561],[4.53685997,0.03824247,97.98293591],[4.5368605,0.0382442,97.98267605],[4.53686102,0.03824593,97.98241613],[4.53686155,0.03824766,97.98215623],[4.53686208,0.03824939,97.98189645],[4.53686261,0.03825112,97.98163688],[4.53686314,0.03825285,97.98137761],[4.53686367,0.03825458,97.98111874],[4.5368642,0.03825631,97.98086035],[4.53686473,0.03825803,97.98060254],[4.53686526,0.03825976,97.9803454],[4.53686579,0.03826149,97.98008902],[4.53686632,0.03826322,97.97983351],[4.53686685,0.03826495,97.97957895],[4.53686738,0.03826668,97.97932544],[4.53686792,0.03826841,97.97907308],[4.53686845,0.03827013,97.97882195],[4.53686898,0.03827186,97.97857216],[4.53686952,0.03827359,97.97832381],[4.53687005,0.03827532,97.97807696],[4.53687058,0.03827704,97.97783161],[4.53687112,0.03827877,97.97758774],[4.53687166,0.0382805,97.9773453],[4.53687219,0.03828222,97.97710427],[4.53687273,0.03828395,97.97686462],[4.53687327,0.03828567,97.97662632],[4.5368738,0.0382874,97.97638934],[4.53687434,0.03828912,97.97615365],[4.53687488,0.03829085,97.97591921],[4.53687542,0.03829257,97.975686],[4.53687596,0.0382943,97.97545398],[4.5368765,0.03829602,97.97522313],[4.53687704,0.03829775,97.97499341],[4.53687758,0.03829947,97.97476479],[4.53687812,0.03830119,97.97453723],[4.53687866,0.03830292,97.9743107],[4.5368792,0.03830464,97.97408516],[4.53687974,0.03830636,97.97386059],[4.53688029,0.03830809,97.97363693],[4.53688083,0.03830981,97.97341417],[4.53688137,0.03831153,97.97319227],[4.53688191,0.03831325,97.97297118],[4.53688246,0.03831498,97.97275087],[4.536883,0.0383167,97.97253132],[4.53688354,0.03831842,97.97231247],[4.53688409,0.03832014,97.9720943],[4.53688463,0.03832186,97.97187678],[4.53688518,0.03832358,97.97165985],[4.53688572,0.03832531,97.9714435],[4.53688626,0.03832703,97.97122767],[4.53688681,0.03832875,97.97101234],[4.53688735,0.03833047,97.97079747],[4.5368879,0.03833219,97.97058302],[4.53688845,0.03833391,97.97036896],[4.53688899,0.03833564,97.97015524],[4.53688954,0.03833736,97.96994184],[4.53689008,0.03833908,97.9697287],[4.53689063,0.0383408,97.96951578],[4.53689117,0.03834252,97.96930303],[4.53689172,0.03834424,97.96909042],[4.53689226,0.03834595,97.9688779],[4.53689281,0.03834767,97.96866542],[4.53689335,0.03834939,97.96845293],[4.5368939,0.03835111,97.96824039],[4.53689445,0.03835283,97.96802776],[4.53689499,0.03835455,97.96781498],[4.53689554,0.03835627,97.96760204],[4.53689608,0.03835799,97.96738891],[4.53689663,0.03835971,97.96717559],[4.53689717,0.03836143,97.96696205],[4.53689772,0.03836315,97.96674829],[4.53689826,0.03836487,97.9665343],[4.53689881,0.03836659,97.96632005],[4.53689935,0.03836831,97.96610553],[4.5368999,0.03837003,97.96589074],[4.53690044,0.03837175,97.96567566],[4.53690098,0.03837346,97.96546028],[4.53690153,0.03837518,97.9652446],[4.53690207,0.0383769,97.96502861],[4.53690262,0.03837862,97.96481231],[4.53690316,0.03838034,97.9645957],[4.53690371,0.03838206,97.96437877],[4.53690425,0.03838378,97.96416153],[4.53690479,0.0383855,97.96394396],[4.53690534,0.03838722,97.96372607],[4.53690588,0.03838893,97.96350786],[4.53690642,0.03839065,97.96328931],[4.53690697,0.03839237,97.96307043],[4.53690751,0.03839409,97.96285122],[4.53690805,0.03839581,97.96263166],[4.53690859,0.03839753,97.96241177],[4.53690914,0.03839925,97.96219153],[4.53690968,0.03840097,97.96197094],[4.53691022,0.03840268,97.96175001],[4.53691076,0.0384044,97.96152872],[4.53691131,0.03840612,97.96130708],[4.53691185,0.03840784,97.96108508],[4.53691239,0.03840956,97.96086272],[4.53691293,0.03841128,97.96064002],[4.53691347,0.038413,97.96041701],[4.53691401,0.03841471,97.96019374],[4.53691455,0.03841643,97.95997024],[4.5369151,0.03841815,97.95974655],[4.53691564,0.03841987,97.9595227],[4.53691618,0.03842159,97.95929874],[4.53691672,0.03842331,97.95907471],[4.53691726,0.03842502,97.95885065],[4.5369178,0.03842674,97.9586266],[4.53691834,0.03842846,97.95840262],[4.53691888,0.03843018,97.95817875],[4.53691942,0.0384319,97.95795503],[4.53691996,0.03843362,97.95773151],[4.5369205,0.03843533,97.95750828],[4.53692104,0.03843705,97.95728545],[4.53692158,0.03843877,97.95706314],[4.53692212,0.03844049,97.95684148],[4.53692266,0.0384422,97.95662059],[4.5369232,0.03844392,97.95640058],[4.53692374,0.03844564,97.95618159],[4.53692428,0.03844736,97.95596373],[4.53692482,0.03844907,97.95574712],[4.53692537,0.03845079,97.95553185],[4.53692591,0.03845251,97.95531791],[4.53692645,0.03845422,97.95510524],[4.53692699,0.03845594,97.95489381],[4.53692753,0.03845766,97.95468355],[4.53692808,0.03845937,97.95447442],[4.53692862,0.03846109,97.95426637],[4.53692916,0.03846281,97.95405936],[4.53692971,0.03846452,97.95385333],[4.53693025,0.03846624,97.95364825],[4.53693079,0.03846795,97.95344406],[4.53693134,0.03846967,97.95324072],[4.53693188,0.03847138,97.95303819],[4.53693242,0.0384731,97.95283642],[4.53693297,0.03847482,97.95263535],[4.53693351,0.03847653,97.95243496],[4.53693405,0.03847825,97.95223518],[4.5369346,0.03847996,97.95203599],[4.53693514,0.03848168,97.95183731],[4.53693568,0.03848339,97.95163913],[4.53693623,0.03848511,97.95144137],[4.53693677,0.03848682,97.95124401],[4.53693731,0.03848853,97.95104699],[4.53693786,0.03849024,97.95085017],[4.5369384,0.03849196,97.95065358],[4.53693894,0.03849367,97.95045727],[4.53693949,0.03849539,97.95026131],[4.53694003,0.0384971,97.95006576],[4.53694057,0.03849881,97.9498707],[4.53694111,0.03850053,97.94967618],[4.53694166,0.03850224,97.94948226],[4.5369422,0.03850396,97.94928901],[4.53694274,0.03850567,97.94909649],[4.53694329,0.03850738,97.94890478],[4.53694383,0.0385091,97.94871392],[4.53694437,0.03851081,97.94852398],[4.53694491,0.03851252,97.94833502],[4.53694546,0.03851423,97.94814711],[4.536946,0.03851595,97.94796029],[4.53694654,0.03851766,97.94777458],[4.53694708,0.03851937,97.94759004],[4.53694763,0.03852108,97.94740669],[4.53694817,0.03852279,97.94722457],[4.53694871,0.0385245,97.94704372],[4.53694926,0.03852622,97.94686417],[4.5369498,0.03852793,97.94668597],[4.53695034,0.03852964,97.9465092],[4.53695089,0.03853135,97.94633421],[4.53695143,0.03853306,97.94616139],[4.53695197,0.03853477,97.94599115],[4.53695252,0.03853648,97.9458238],[4.53695306,0.03853819,97.94565935],[4.53695361,0.03853989,97.94549772],[4.53695415,0.0385416,97.94533884],[4.5369547,0.03854331,97.94518263],[4.53695525,0.03854502,97.94502903],[4.53695579,0.03854672,97.94487794],[4.53695634,0.03854843,97.9447293],[4.53695689,0.03855014,97.94458304],[4.53695744,0.03855185,97.94443907],[4.53695798,0.03855355,97.94429732],[4.53695853,0.03855526,97.94415773],[4.53695908,0.03855696,97.94402023],[4.53695963,0.03855867,97.94388478],[4.53696018,0.03856037,97.94375132],[4.53696073,0.03856208,97.94361979],[4.53696128,0.03856378,97.94349012],[4.53696183,0.03856549,97.94336215],[4.53696238,0.03856719,97.94323572],[4.53696292,0.0385689,97.94311063],[4.53696347,0.0385706,97.94298673],[4.53696402,0.0385723,97.94286394],[4.53696457,0.03857401,97.94274225],[4.53696512,0.03857571,97.94262167],[4.53696567,0.03857741,97.9425022],[4.53696622,0.03857912,97.94238386],[4.53696677,0.03858082,97.94226665],[4.53696732,0.03858252,97.94215057],[4.53696786,0.03858422,97.94203563],[4.53696841,0.03858593,97.94192183],[4.53696896,0.03858763,97.94180918],[4.53696951,0.03858933,97.94169769],[4.53697006,0.03859103,97.94158734],[4.5369706,0.03859273,97.94147812],[4.53697115,0.03859444,97.94136992],[4.5369717,0.03859614,97.94126267],[4.53697225,0.03859784,97.94115628],[4.53697279,0.03859954,97.94105066],[4.53697335,0.03860125,97.94094574],[4.53697389,0.03860295,97.94084142],[4.53697444,0.03860466,97.94073761],[4.53697499,0.03860636,97.94063424],[4.53697553,0.03860806,97.9405312],[4.53697608,0.03860976,97.94042841],[4.53697662,0.03861147,97.94032577],[4.53697717,0.03861317,97.9402232],[4.53697772,0.03861488,97.94012059],[4.53697826,0.03861659,97.94001788],[4.53697881,0.03861829,97.93991495],[4.53697936,0.03862,97.93981176],[4.5369799,0.03862171,97.93970837],[4.53698045,0.03862342,97.93960489],[4.53698099,0.03862513,97.93950145],[4.53698154,0.03862684,97.93939817],[4.53698209,0.03862855,97.9392952],[4.53698263,0.03863026,97.93919267],[4.53698318,0.03863197,97.93909071],[4.53698373,0.03863369,97.93898948],[4.53698428,0.0386354,97.93888914],[4.53698483,0.03863712,97.93879017],[4.53698538,0.03863883,97.93869305],[4.53698593,0.03864055,97.9385983],[4.53698648,0.03864226,97.93850641],[4.53698703,0.03864398,97.93841788],[4.53698759,0.03864569,97.93833319],[4.53698814,0.03864741,97.93825283],[4.5369887,0.03864912,97.93817728],[4.53698926,0.03865084,97.93810702],[4.53698982,0.03865256,97.93804227],[4.53699039,0.03865427,97.93798223],[4.53699096,0.03865599,97.93792586],[4.53699152,0.03865771,97.93787211],[4.53699209,0.03865942,97.93781962],[4.53699266,0.03866114,97.937765],[4.53699323,0.03866286,97.93770354],[4.53699379,0.03866458,97.93763055],[4.53699435,0.0386663,97.93754137],[4.53699491,0.03866803,97.93743322],[4.53699546,0.03866976,97.93731087],[4.53699601,0.03867148,97.93718096],[4.53699652,0.0386731,97.93705011],[4.53699701,0.03867462,97.93692485],[4.53699745,0.03867602,97.93681166],[4.53699786,0.03867732,97.93671694],[4.53699824,0.03867851,97.93664705],[4.53699858,0.0386796,97.93660826],[4.53699889,0.03868058,97.93660679],[4.5369552,0.0386912,97.93660679]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-4,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1000400","id":-4,"type":"none","predecessorId":0,"sOffset":0.0}},{"geometry":{"coordinates":[[[4.53699889,0.03868058,97.93660679],[4.53699858,0.0386796,97.93660826],[4.53699824,0.03867851,97.93664705],[4.53699786,0.03867732,97.93671694],[4.53699745,0.03867602,97.93681166],[4.53699701,0.03867462,97.93692485],[4.53699652,0.0386731,97.93705011],[4.53699601,0.03867148,97.93718096],[4.53699546,0.03866976,97.93731087],[4.53699491,0.03866803,97.93743322],[4.53699435,0.0386663,97.93754137],[4.53699379,0.03866458,97.93763055],[4.53699323,0.03866286,97.93770354],[4.53699266,0.03866114,97.937765],[4.53699209,0.03865942,97.93781962],[4.53699152,0.03865771,97.93787211],[4.53699096,0.03865599,97.93792586],[4.53699039,0.03865427,97.93798223],[4.53698982,0.03865256,97.93804227],[4.53698926,0.03865084,97.93810702],[4.5369887,0.03864912,97.93817728],[4.53698814,0.03864741,97.93825283],[4.53698759,0.03864569,97.93833319],[4.53698703,0.03864398,97.93841788],[4.53698648,0.03864226,97.93850641],[4.53698593,0.03864055,97.9385983],[4.53698538,0.03863883,97.93869305],[4.53698483,0.03863712,97.93879017],[4.53698428,0.0386354,97.93888914],[4.53698373,0.03863369,97.93898948],[4.53698318,0.03863197,97.93909071],[4.53698263,0.03863026,97.93919267],[4.53698209,0.03862855,97.9392952],[4.53698154,0.03862684,97.93939817],[4.53698099,0.03862513,97.93950145],[4.53698045,0.03862342,97.93960489],[4.5369799,0.03862171,97.93970837],[4.53697936,0.03862,97.93981176],[4.53697881,0.03861829,97.93991495],[4.53697826,0.03861659,97.94001788],[4.53697772,0.03861488,97.94012059],[4.53697717,0.03861317,97.9402232],[4.53697662,0.03861147,97.94032577],[4.53697608,0.03860976,97.94042841],[4.53697553,0.03860806,97.9405312],[4.53697499,0.03860636,97.94063424],[4.53697444,0.03860466,97.94073761],[4.53697389,0.03860295,97.94084142],[4.53697335,0.03860125,97.94094574],[4.53697279,0.03859954,97.94105066],[4.53697225,0.03859784,97.94115628],[4.5369717,0.03859614,97.94126267],[4.53697115,0.03859444,97.94136992],[4.5369706,0.03859273,97.94147812],[4.53697006,0.03859103,97.94158734],[4.53696951,0.03858933,97.94169769],[4.53696896,0.03858763,97.94180918],[4.53696841,0.03858593,97.94192183],[4.53696786,0.03858422,97.94203563],[4.53696732,0.03858252,97.94215057],[4.53696677,0.03858082,97.94226665],[4.53696622,0.03857912,97.94238386],[4.53696567,0.03857741,97.9425022],[4.53696512,0.03857571,97.94262167],[4.53696457,0.03857401,97.94274225],[4.53696402,0.0385723,97.94286394],[4.53696347,0.0385706,97.94298673],[4.53696292,0.0385689,97.94311063],[4.53696238,0.03856719,97.94323572],[4.53696183,0.03856549,97.94336215],[4.53696128,0.03856378,97.94349012],[4.53696073,0.03856208,97.94361979],[4.53696018,0.03856037,97.94375132],[4.53695963,0.03855867,97.94388478],[4.53695908,0.03855696,97.94402023],[4.53695853,0.03855526,97.94415773],[4.53695798,0.03855355,97.94429732],[4.53695744,0.03855185,97.94443907],[4.53695689,0.03855014,97.94458304],[4.53695634,0.03854843,97.9447293],[4.53695579,0.03854672,97.94487794],[4.53695525,0.03854502,97.94502903],[4.5369547,0.03854331,97.94518263],[4.53695415,0.0385416,97.94533884],[4.53695361,0.03853989,97.94549772],[4.53695306,0.03853819,97.94565935],[4.53695252,0.03853648,97.9458238],[4.53695197,0.03853477,97.94599115],[4.53695143,0.03853306,97.94616139],[4.53695089,0.03853135,97.94633421],[4.53695034,0.03852964,97.9465092],[4.5369498,0.03852793,97.94668597],[4.53694926,0.03852622,97.94686417],[4.53694871,0.0385245,97.94704372],[4.53694817,0.03852279,97.94722457],[4.53694763,0.03852108,97.94740669],[4.53694708,0.03851937,97.94759004],[4.53694654,0.03851766,97.94777458],[4.536946,0.03851595,97.94796029],[4.53694546,0.03851423,97.94814711],[4.53694491,0.03851252,97.94833502],[4.53694437,0.03851081,97.94852398],[4.53694383,0.0385091,97.94871392],[4.53694329,0.03850738,97.94890478],[4.53694274,0.03850567,97.94909649],[4.5369422,0.03850396,97.94928901],[4.53694166,0.03850224,97.94948226],[4.53694111,0.03850053,97.94967618],[4.53694057,0.03849881,97.9498707],[4.53694003,0.0384971,97.95006576],[4.53693949,0.03849539,97.95026131],[4.53693894,0.03849367,97.95045727],[4.5369384,0.03849196,97.95065358],[4.53693786,0.03849024,97.95085017],[4.53693731,0.03848853,97.95104699],[4.53693677,0.03848682,97.95124401],[4.53693623,0.03848511,97.95144137],[4.53693568,0.03848339,97.95163913],[4.53693514,0.03848168,97.95183731],[4.5369346,0.03847996,97.95203599],[4.53693405,0.03847825,97.95223518],[4.53693351,0.03847653,97.95243496],[4.53693297,0.03847482,97.95263535],[4.53693242,0.0384731,97.95283642],[4.53693188,0.03847138,97.95303819],[4.53693134,0.03846967,97.95324072],[4.53693079,0.03846795,97.95344406],[4.53693025,0.03846624,97.95364825],[4.53692971,0.03846452,97.95385333],[4.53692916,0.03846281,97.95405936],[4.53692862,0.03846109,97.95426637],[4.53692808,0.03845937,97.95447442],[4.53692753,0.03845766,97.95468355],[4.53692699,0.03845594,97.95489381],[4.53692645,0.03845422,97.95510524],[4.53692591,0.03845251,97.95531791],[4.53692537,0.03845079,97.95553185],[4.53692482,0.03844907,97.95574712],[4.53692428,0.03844736,97.95596373],[4.53692374,0.03844564,97.95618159],[4.5369232,0.03844392,97.95640058],[4.53692266,0.0384422,97.95662059],[4.53692212,0.03844049,97.95684148],[4.53692158,0.03843877,97.95706314],[4.53692104,0.03843705,97.95728545],[4.5369205,0.03843533,97.95750828],[4.53691996,0.03843362,97.95773151],[4.53691942,0.0384319,97.95795503],[4.53691888,0.03843018,97.95817875],[4.53691834,0.03842846,97.95840262],[4.5369178,0.03842674,97.9586266],[4.53691726,0.03842502,97.95885065],[4.53691672,0.03842331,97.95907471],[4.53691618,0.03842159,97.95929874],[4.53691564,0.03841987,97.9595227],[4.5369151,0.03841815,97.95974655],[4.53691455,0.03841643,97.95997024],[4.53691401,0.03841471,97.96019374],[4.53691347,0.038413,97.96041701],[4.53691293,0.03841128,97.96064002],[4.53691239,0.03840956,97.96086272],[4.53691185,0.03840784,97.96108508],[4.53691131,0.03840612,97.96130708],[4.53691076,0.0384044,97.96152872],[4.53691022,0.03840268,97.96175001],[4.53690968,0.03840097,97.96197094],[4.53690914,0.03839925,97.96219153],[4.53690859,0.03839753,97.96241177],[4.53690805,0.03839581,97.96263166],[4.53690751,0.03839409,97.96285122],[4.53690697,0.03839237,97.96307043],[4.53690642,0.03839065,97.96328931],[4.53690588,0.03838893,97.96350786],[4.53690534,0.03838722,97.96372607],[4.53690479,0.0383855,97.96394396],[4.53690425,0.03838378,97.96416153],[4.53690371,0.03838206,97.96437877],[4.53690316,0.03838034,97.9645957],[4.53690262,0.03837862,97.96481231],[4.53690207,0.0383769,97.96502861],[4.53690153,0.03837518,97.9652446],[4.53690098,0.03837346,97.96546028],[4.53690044,0.03837175,97.96567566],[4.5368999,0.03837003,97.96589074],[4.53689935,0.03836831,97.96610553],[4.53689881,0.03836659,97.96632005],[4.53689826,0.03836487,97.9665343],[4.53689772,0.03836315,97.96674829],[4.53689717,0.03836143,97.96696205],[4.53689663,0.03835971,97.96717559],[4.53689608,0.03835799,97.96738891],[4.53689554,0.03835627,97.96760204],[4.53689499,0.03835455,97.96781498],[4.53689445,0.03835283,97.96802776],[4.5368939,0.03835111,97.96824039],[4.53689335,0.03834939,97.96845293],[4.53689281,0.03834767,97.96866542],[4.53689226,0.03834595,97.9688779],[4.53689172,0.03834424,97.96909042],[4.53689117,0.03834252,97.96930303],[4.53689063,0.0383408,97.96951578],[4.53689008,0.03833908,97.9697287],[4.53688954,0.03833736,97.96994184],[4.53688899,0.03833564,97.97015524],[4.53688845,0.03833391,97.97036896],[4.5368879,0.03833219,97.97058302],[4.53688735,0.03833047,97.97079747],[4.53688681,0.03832875,97.97101234],[4.53688626,0.03832703,97.97122767],[4.53688572,0.03832531,97.9714435],[4.53688518,0.03832358,97.97165985],[4.53688463,0.03832186,97.97187678],[4.53688409,0.03832014,97.9720943],[4.53688354,0.03831842,97.97231247],[4.536883,0.0383167,97.97253132],[4.53688246,0.03831498,97.97275087],[4.53688191,0.03831325,97.97297118],[4.53688137,0.03831153,97.97319227],[4.53688083,0.03830981,97.97341417],[4.53688029,0.03830809,97.97363693],[4.53687974,0.03830636,97.97386059],[4.5368792,0.03830464,97.97408516],[4.53687866,0.03830292,97.9743107],[4.53687812,0.03830119,97.97453723],[4.53687758,0.03829947,97.97476479],[4.53687704,0.03829775,97.97499341],[4.5368765,0.03829602,97.97522313],[4.53687596,0.0382943,97.97545398],[4.53687542,0.03829257,97.975686],[4.53687488,0.03829085,97.97591921],[4.53687434,0.03828912,97.97615365],[4.5368738,0.0382874,97.97638934],[4.53687327,0.03828567,97.97662632],[4.53687273,0.03828395,97.97686462],[4.53687219,0.03828222,97.97710427],[4.53687166,0.0382805,97.9773453],[4.53687112,0.03827877,97.97758774],[4.53687058,0.03827704,97.97783161],[4.53687005,0.03827532,97.97807696],[4.53686952,0.03827359,97.97832381],[4.53686898,0.03827186,97.97857216],[4.53686845,0.03827013,97.97882195],[4.53686792,0.03826841,97.97907308],[4.53686738,0.03826668,97.97932544],[4.53686685,0.03826495,97.97957895],[4.53686632,0.03826322,97.97983351],[4.53686579,0.03826149,97.98008902],[4.53686526,0.03825976,97.9803454],[4.53686473,0.03825803,97.98060254],[4.5368642,0.03825631,97.98086035],[4.53686367,0.03825458,97.98111874],[4.53686314,0.03825285,97.98137761],[4.53686261,0.03825112,97.98163688],[4.53686208,0.03824939,97.98189645],[4.53686155,0.03824766,97.98215623],[4.53686102,0.03824593,97.98241613],[4.5368605,0.0382442,97.98267605],[4.53685997,0.03824247,97.98293591],[4.53685944,0.03824073,97.98319561],[4.53685891,0.038239,97.98345507],[4.53685838,0.03823727,97.9837142],[4.53685785,0.03823554,97.9839729],[4.53685733,0.03823381,97.98423109],[4.5368568,0.03823208,97.98448869],[4.53685627,0.03823035,97.98474559],[4.53685574,0.03822862,97.98500172],[4.53685521,0.03822689,97.98525699],[4.53685469,0.03822516,97.98551131],[4.53685465,0.03822505,97.98552696],[4.53685819,0.03822392,97.99754667],[4.53685822,0.03822403,97.99753136],[4.53685874,0.03822576,97.99728203],[4.53685927,0.03822749,97.99703087],[4.53685979,0.03822922,97.99677798],[4.53686032,0.03823096,97.99652346],[4.53686084,0.03823269,97.99626743],[4.53686137,0.03823442,97.99600998],[4.53686189,0.03823615,97.99575122],[4.53686242,0.03823788,97.99549125],[4.53686294,0.03823961,97.99523019],[4.53686346,0.03824135,97.99496814],[4.53686399,0.03824308,97.99470521],[4.53686451,0.03824481,97.99444151],[4.53686504,0.03824654,97.99417714],[4.53686556,0.03824827,97.99391222],[4.53686608,0.03825,97.99364685],[4.53686661,0.03825173,97.99338114],[4.53686713,0.03825347,97.99311522],[4.53686765,0.0382552,97.99284918],[4.53686818,0.03825693,97.99258313],[4.5368687,0.03825866,97.9923172],[4.53686923,0.03826039,97.9920515],[4.53686975,0.03826212,97.99178613],[4.53687028,0.03826385,97.99152121],[4.5368708,0.03826558,97.99125685],[4.53687133,0.03826731,97.99099318],[4.53687185,0.03826904,97.9907303],[4.53687238,0.03827077,97.99046833],[4.53687291,0.0382725,97.99020738],[4.53687343,0.03827423,97.98994756],[4.53687396,0.03827595,97.98968887],[4.53687449,0.03827768,97.9894313],[4.53687502,0.03827941,97.98917484],[4.53687555,0.03828114,97.98891949],[4.53687608,0.03828287,97.98866523],[4.53687661,0.03828459,97.98841205],[4.53687714,0.03828632,97.98815995],[4.53687767,0.03828805,97.9879089],[4.5368782,0.03828978,97.98765891],[4.53687873,0.0382915,97.98740996],[4.53687926,0.03829323,97.98716204],[4.53687979,0.03829496,97.98691515],[4.53688033,0.03829668,97.98666926],[4.53688086,0.03829841,97.98642437],[4.53688139,0.03830013,97.98618046],[4.53688193,0.03830186,97.98593753],[4.53688246,0.03830359,97.98569555],[4.53688299,0.03830531,97.98545451],[4.53688353,0.03830704,97.98521441],[4.53688406,0.03830876,97.98497522],[4.5368846,0.03831049,97.98473693],[4.53688514,0.03831221,97.98449953],[4.53688567,0.03831393,97.98426301],[4.53688621,0.03831566,97.98402735],[4.53688674,0.03831738,97.98379254],[4.53688728,0.03831911,97.98355856],[4.53688782,0.03832083,97.9833254],[4.53688836,0.03832255,97.98309305],[4.53688889,0.03832428,97.98286149],[4.53688943,0.038326,97.9826307],[4.53688997,0.03832772,97.98240068],[4.53689051,0.03832944,97.98217141],[4.53689105,0.03833117,97.98194287],[4.53689159,0.0383329,97.98171505],[4.53689213,0.03833462,97.98148794],[4.53689267,0.03833634,97.98126151],[4.5368932,0.03833806,97.98103576],[4.53689374,0.03833978,97.98081065],[4.53689428,0.0383415,97.98058616],[4.53689482,0.03834323,97.98036228],[4.53689537,0.03834495,97.98013897],[4.53689591,0.03834667,97.97991623],[4.53689645,0.03834839,97.97969401],[4.53689699,0.03835011,97.97947231],[4.53689753,0.03835183,97.9792511],[4.53689807,0.03835355,97.97903035],[4.53689861,0.03835527,97.97881005],[4.53689915,0.03835699,97.97859017],[4.53689969,0.03835871,97.97837068],[4.53690024,0.03836043,97.97815157],[4.53690078,0.03836215,97.97793281],[4.53690132,0.03836387,97.97771438],[4.53690186,0.03836559,97.97749625],[4.5369024,0.03836731,97.9772784],[4.53690295,0.03836903,97.97706081],[4.53690349,0.03837075,97.97684346],[4.53690403,0.03837247,97.97662633],[4.53690457,0.03837419,97.97640939],[4.53690512,0.03837591,97.97619265],[4.53690566,0.03837763,97.97597608],[4.5369062,0.03837935,97.97575967],[4.53690674,0.03838107,97.97554342],[4.53690729,0.03838279,97.9753273],[4.53690783,0.03838451,97.9751113],[4.53690837,0.03838623,97.97489542],[4.53690891,0.03838795,97.97467963],[4.53690946,0.03838967,97.97446392],[4.53691,0.03839139,97.97424828],[4.53691054,0.0383931,97.9740327],[4.53691108,0.03839482,97.97381716],[4.53691163,0.03839654,97.97360164],[4.53691217,0.03839826,97.97338615],[4.53691271,0.03839998,97.97317065],[4.53691325,0.0384017,97.97295514],[4.5369138,0.03840342,97.97273961],[4.53691434,0.03840514,97.97252404],[4.53691488,0.03840685,97.97230842],[4.53691542,0.03840857,97.97209273],[4.53691597,0.03841029,97.97187698],[4.53691651,0.03841201,97.9716612],[4.53691705,0.03841373,97.97144541],[4.53691759,0.03841544,97.97122964],[4.53691814,0.03841716,97.97101392],[4.53691868,0.03841888,97.97079827],[4.53691922,0.0384206,97.97058273],[4.53691976,0.03842232,97.97036731],[4.5369203,0.03842403,97.97015206],[4.53692085,0.03842575,97.96993701],[4.53692139,0.03842747,97.96972219],[4.53692193,0.03842919,97.96950764],[4.53692247,0.03843091,97.96929339],[4.53692301,0.03843262,97.96907947],[4.53692356,0.03843434,97.96886596],[4.5369241,0.03843606,97.96865297],[4.53692464,0.03843778,97.96844061],[4.53692518,0.03843949,97.96822898],[4.53692573,0.03844121,97.9680182],[4.53692627,0.03844293,97.96780837],[4.53692681,0.03844464,97.9675996],[4.53692736,0.03844636,97.96739201],[4.5369279,0.03844808,97.9671857],[4.53692844,0.03844979,97.96698076],[4.53692899,0.03845151,97.96677714],[4.53692953,0.03845322,97.9665748],[4.53693008,0.03845494,97.96637368],[4.53693062,0.03845666,97.9661737],[4.53693117,0.03845837,97.96597481],[4.53693171,0.03846009,97.96577695],[4.53693226,0.0384618,97.96558006],[4.53693281,0.03846352,97.96538408],[4.53693335,0.03846523,97.96518895],[4.5369339,0.03846695,97.9649946],[4.53693444,0.03846866,97.96480097],[4.53693499,0.03847038,97.96460801],[4.53693554,0.03847209,97.96441564],[4.53693608,0.03847381,97.96422382],[4.53693663,0.03847552,97.96403248],[4.53693718,0.03847724,97.96384155],[4.53693772,0.03847895,97.96365098],[4.53693827,0.03848067,97.96346071],[4.53693882,0.03848238,97.96327067],[4.53693936,0.03848409,97.9630808],[4.53693991,0.03848581,97.96289104],[4.53694045,0.03848751,97.96270133],[4.536941,0.03848923,97.96251152],[4.53694154,0.03849094,97.96232159],[4.53694209,0.03849266,97.96213162],[4.53694263,0.03849437,97.96194164],[4.53694318,0.03849608,97.9617517],[4.53694373,0.0384978,97.96156185],[4.53694427,0.03849951,97.96137215],[4.53694482,0.03850123,97.96118264],[4.53694536,0.03850294,97.96099336],[4.53694591,0.03850465,97.96080437],[4.53694645,0.03850637,97.96061572],[4.536947,0.03850808,97.96042745],[4.53694754,0.03850979,97.96023961],[4.53694808,0.0385115,97.96005225],[4.53694863,0.03851322,97.95986542],[4.53694917,0.03851493,97.95967916],[4.53694972,0.03851664,97.95949352],[4.53695026,0.03851835,97.95930855],[4.53695081,0.03852006,97.9591243],[4.53695135,0.03852178,97.95894082],[4.53695189,0.03852349,97.95875814],[4.53695244,0.0385252,97.95857632],[4.53695298,0.03852691,97.9583954],[4.53695353,0.03852862,97.95821549],[4.53695407,0.03853033,97.95803694],[4.53695462,0.03853204,97.95786017],[4.53695516,0.03853375,97.95768557],[4.53695571,0.03853546,97.95751348],[4.53695625,0.03853717,97.95734391],[4.5369568,0.03853888,97.9571768],[4.53695734,0.03854059,97.95701208],[4.53695789,0.0385423,97.9568497],[4.53695844,0.038544,97.95668957],[4.53695899,0.03854571,97.95653165],[4.53695953,0.03854742,97.95637586],[4.53696008,0.03854913,97.95622215],[4.53696063,0.03855083,97.95607043],[4.53696118,0.03855254,97.95592066],[4.53696173,0.03855425,97.95577277],[4.53696228,0.03855595,97.95562672],[4.53696282,0.03855766,97.95548245],[4.53696337,0.03855936,97.95533994],[4.53696392,0.03856107,97.95519913],[4.53696447,0.03856277,97.95505995],[4.53696502,0.03856448,97.95492227],[4.53696557,0.03856618,97.95478591],[4.53696612,0.03856789,97.95465072],[4.53696667,0.03856959,97.95451653],[4.53696722,0.0385713,97.95438328],[4.53696777,0.038573,97.95425096],[4.53696832,0.03857471,97.95411961],[4.53696887,0.03857641,97.95398923],[4.53696942,0.03857811,97.95385984],[4.53696997,0.03857982,97.95373145],[4.53697052,0.03858152,97.95360409],[4.53697106,0.03858322,97.95347776],[4.53697161,0.03858493,97.95335248],[4.53697216,0.03858663,97.95322827],[4.53697271,0.03858833,97.95310513],[4.53697326,0.03859004,97.95298308],[4.53697381,0.03859174,97.95286208],[4.53697436,0.03859344,97.95274207],[4.53697491,0.03859514,97.95262297],[4.53697545,0.03859685,97.9525047],[4.536976,0.03859855,97.95238718],[4.53697655,0.03860026,97.95227034],[4.5369771,0.03860196,97.9521541],[4.53697765,0.03860367,97.95203839],[4.5369782,0.03860537,97.95192312],[4.53697874,0.03860707,97.95180821],[4.53697929,0.03860878,97.95169357],[4.53697984,0.03861048,97.95157913],[4.53698039,0.03861219,97.9514648],[4.53698094,0.03861389,97.9513505],[4.53698148,0.0386156,97.95123614],[4.53698203,0.0386173,97.95112165],[4.53698258,0.03861901,97.95100698],[4.53698313,0.03862072,97.95089219],[4.53698368,0.03862243,97.95077741],[4.53698422,0.03862414,97.95066277],[4.53698477,0.03862585,97.9505484],[4.53698532,0.03862756,97.95043446],[4.53698587,0.03862927,97.95032108],[4.53698642,0.03863099,97.95020842],[4.53698697,0.0386327,97.95009661],[4.53698752,0.03863441,97.94998585],[4.53698807,0.03863612,97.9498766],[4.53698863,0.03863784,97.94976937],[4.53698918,0.03863955,97.94966466],[4.53698973,0.03864127,97.94956299],[4.53699029,0.03864298,97.94946486],[4.53699085,0.0386447,97.94937075],[4.53699141,0.03864641,97.94928117],[4.53699197,0.03864813,97.94919659],[4.53699253,0.03864984,97.94911749],[4.5369931,0.03865156,97.94904412],[4.53699367,0.03865327,97.94897568],[4.53699424,0.03865499,97.94891111],[4.53699481,0.0386567,97.94884939],[4.53699538,0.03865842,97.94878916],[4.53699596,0.03866013,97.94872703],[4.53699653,0.03866185,97.9486583],[4.5369971,0.03866357,97.94857828],[4.53699766,0.03866529,97.94848231],[4.53699823,0.03866701,97.94836762],[4.53699878,0.03866874,97.94823898],[4.53699934,0.03867046,97.94810305],[4.53699986,0.03867209,97.94796643],[4.53700035,0.03867361,97.94783567],[4.53700081,0.03867504,97.94771723],[4.53700124,0.03867636,97.94761755],[4.53700163,0.03867759,97.94754296],[4.53700199,0.03867871,97.94749976],[4.53700232,0.03867974,97.94749415],[4.53699889,0.03868058,97.93660679]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000400","id":-3,"type":"shoulder","predecessorId":0,"sOffset":0.0}},{"geometry":{"coordinates":[[[4.53700232,0.03867974,97.94749415],[4.53700199,0.03867871,97.94749976],[4.53700163,0.03867759,97.94754296],[4.53700124,0.03867636,97.94761755],[4.53700081,0.03867504,97.94771723],[4.53700035,0.03867361,97.94783567],[4.53699986,0.03867209,97.94796643],[4.53699934,0.03867046,97.94810305],[4.53699878,0.03866874,97.94823898],[4.53699823,0.03866701,97.94836762],[4.53699766,0.03866529,97.94848231],[4.5369971,0.03866357,97.94857828],[4.53699653,0.03866185,97.9486583],[4.53699596,0.03866013,97.94872703],[4.53699538,0.03865842,97.94878916],[4.53699481,0.0386567,97.94884939],[4.53699424,0.03865499,97.94891111],[4.53699367,0.03865327,97.94897568],[4.5369931,0.03865156,97.94904412],[4.53699253,0.03864984,97.94911749],[4.53699197,0.03864813,97.94919659],[4.53699141,0.03864641,97.94928117],[4.53699085,0.0386447,97.94937075],[4.53699029,0.03864298,97.94946486],[4.53698973,0.03864127,97.94956299],[4.53698918,0.03863955,97.94966466],[4.53698863,0.03863784,97.94976937],[4.53698807,0.03863612,97.9498766],[4.53698752,0.03863441,97.94998585],[4.53698697,0.0386327,97.95009661],[4.53698642,0.03863099,97.95020842],[4.53698587,0.03862927,97.95032108],[4.53698532,0.03862756,97.95043446],[4.53698477,0.03862585,97.9505484],[4.53698422,0.03862414,97.95066277],[4.53698368,0.03862243,97.95077741],[4.53698313,0.03862072,97.95089219],[4.53698258,0.03861901,97.95100698],[4.53698203,0.0386173,97.95112165],[4.53698148,0.0386156,97.95123614],[4.53698094,0.03861389,97.9513505],[4.53698039,0.03861219,97.9514648],[4.53697984,0.03861048,97.95157913],[4.53697929,0.03860878,97.95169357],[4.53697874,0.03860707,97.95180821],[4.5369782,0.03860537,97.95192312],[4.53697765,0.03860367,97.95203839],[4.5369771,0.03860196,97.9521541],[4.53697655,0.03860026,97.95227034],[4.536976,0.03859855,97.95238718],[4.53697545,0.03859685,97.9525047],[4.53697491,0.03859514,97.95262297],[4.53697436,0.03859344,97.95274207],[4.53697381,0.03859174,97.95286208],[4.53697326,0.03859004,97.95298308],[4.53697271,0.03858833,97.95310513],[4.53697216,0.03858663,97.95322827],[4.53697161,0.03858493,97.95335248],[4.53697106,0.03858322,97.95347776],[4.53697052,0.03858152,97.95360409],[4.53696997,0.03857982,97.95373145],[4.53696942,0.03857811,97.95385984],[4.53696887,0.03857641,97.95398923],[4.53696832,0.03857471,97.95411961],[4.53696777,0.038573,97.95425096],[4.53696722,0.0385713,97.95438328],[4.53696667,0.03856959,97.95451653],[4.53696612,0.03856789,97.95465072],[4.53696557,0.03856618,97.95478591],[4.53696502,0.03856448,97.95492227],[4.53696447,0.03856277,97.95505995],[4.53696392,0.03856107,97.95519913],[4.53696337,0.03855936,97.95533994],[4.53696282,0.03855766,97.95548245],[4.53696228,0.03855595,97.95562672],[4.53696173,0.03855425,97.95577277],[4.53696118,0.03855254,97.95592066],[4.53696063,0.03855083,97.95607043],[4.53696008,0.03854913,97.95622215],[4.53695953,0.03854742,97.95637586],[4.53695899,0.03854571,97.95653165],[4.53695844,0.038544,97.95668957],[4.53695789,0.0385423,97.9568497],[4.53695734,0.03854059,97.95701208],[4.5369568,0.03853888,97.9571768],[4.53695625,0.03853717,97.95734391],[4.53695571,0.03853546,97.95751348],[4.53695516,0.03853375,97.95768557],[4.53695462,0.03853204,97.95786017],[4.53695407,0.03853033,97.95803694],[4.53695353,0.03852862,97.95821549],[4.53695298,0.03852691,97.9583954],[4.53695244,0.0385252,97.95857632],[4.53695189,0.03852349,97.95875814],[4.53695135,0.03852178,97.95894082],[4.53695081,0.03852006,97.9591243],[4.53695026,0.03851835,97.95930855],[4.53694972,0.03851664,97.95949352],[4.53694917,0.03851493,97.95967916],[4.53694863,0.03851322,97.95986542],[4.53694808,0.0385115,97.96005225],[4.53694754,0.03850979,97.96023961],[4.536947,0.03850808,97.96042745],[4.53694645,0.03850637,97.96061572],[4.53694591,0.03850465,97.96080437],[4.53694536,0.03850294,97.96099336],[4.53694482,0.03850123,97.96118264],[4.53694427,0.03849951,97.96137215],[4.53694373,0.0384978,97.96156185],[4.53694318,0.03849608,97.9617517],[4.53694263,0.03849437,97.96194164],[4.53694209,0.03849266,97.96213162],[4.53694154,0.03849094,97.96232159],[4.536941,0.03848923,97.96251152],[4.53694045,0.03848751,97.96270133],[4.53693991,0.03848581,97.96289104],[4.53693936,0.03848409,97.9630808],[4.53693882,0.03848238,97.96327067],[4.53693827,0.03848067,97.96346071],[4.53693772,0.03847895,97.96365098],[4.53693718,0.03847724,97.96384155],[4.53693663,0.03847552,97.96403248],[4.53693608,0.03847381,97.96422382],[4.53693554,0.03847209,97.96441564],[4.53693499,0.03847038,97.96460801],[4.53693444,0.03846866,97.96480097],[4.5369339,0.03846695,97.9649946],[4.53693335,0.03846523,97.96518895],[4.53693281,0.03846352,97.96538408],[4.53693226,0.0384618,97.96558006],[4.53693171,0.03846009,97.96577695],[4.53693117,0.03845837,97.96597481],[4.53693062,0.03845666,97.9661737],[4.53693008,0.03845494,97.96637368],[4.53692953,0.03845322,97.9665748],[4.53692899,0.03845151,97.96677714],[4.53692844,0.03844979,97.96698076],[4.5369279,0.03844808,97.9671857],[4.53692736,0.03844636,97.96739201],[4.53692681,0.03844464,97.9675996],[4.53692627,0.03844293,97.96780837],[4.53692573,0.03844121,97.9680182],[4.53692518,0.03843949,97.96822898],[4.53692464,0.03843778,97.96844061],[4.5369241,0.03843606,97.96865297],[4.53692356,0.03843434,97.96886596],[4.53692301,0.03843262,97.96907947],[4.53692247,0.03843091,97.96929339],[4.53692193,0.03842919,97.96950764],[4.53692139,0.03842747,97.96972219],[4.53692085,0.03842575,97.96993701],[4.5369203,0.03842403,97.97015206],[4.53691976,0.03842232,97.97036731],[4.53691922,0.0384206,97.97058273],[4.53691868,0.03841888,97.97079827],[4.53691814,0.03841716,97.97101392],[4.53691759,0.03841544,97.97122964],[4.53691705,0.03841373,97.97144541],[4.53691651,0.03841201,97.9716612],[4.53691597,0.03841029,97.97187698],[4.53691542,0.03840857,97.97209273],[4.53691488,0.03840685,97.97230842],[4.53691434,0.03840514,97.97252404],[4.5369138,0.03840342,97.97273961],[4.53691325,0.0384017,97.97295514],[4.53691271,0.03839998,97.97317065],[4.53691217,0.03839826,97.97338615],[4.53691163,0.03839654,97.97360164],[4.53691108,0.03839482,97.97381716],[4.53691054,0.0383931,97.9740327],[4.53691,0.03839139,97.97424828],[4.53690946,0.03838967,97.97446392],[4.53690891,0.03838795,97.97467963],[4.53690837,0.03838623,97.97489542],[4.53690783,0.03838451,97.9751113],[4.53690729,0.03838279,97.9753273],[4.53690674,0.03838107,97.97554342],[4.5369062,0.03837935,97.97575967],[4.53690566,0.03837763,97.97597608],[4.53690512,0.03837591,97.97619265],[4.53690457,0.03837419,97.97640939],[4.53690403,0.03837247,97.97662633],[4.53690349,0.03837075,97.97684346],[4.53690295,0.03836903,97.97706081],[4.5369024,0.03836731,97.9772784],[4.53690186,0.03836559,97.97749625],[4.53690132,0.03836387,97.97771438],[4.53690078,0.03836215,97.97793281],[4.53690024,0.03836043,97.97815157],[4.53689969,0.03835871,97.97837068],[4.53689915,0.03835699,97.97859017],[4.53689861,0.03835527,97.97881005],[4.53689807,0.03835355,97.97903035],[4.53689753,0.03835183,97.9792511],[4.53689699,0.03835011,97.97947231],[4.53689645,0.03834839,97.97969401],[4.53689591,0.03834667,97.97991623],[4.53689537,0.03834495,97.98013897],[4.53689482,0.03834323,97.98036228],[4.53689428,0.0383415,97.98058616],[4.53689374,0.03833978,97.98081065],[4.5368932,0.03833806,97.98103576],[4.53689267,0.03833634,97.98126151],[4.53689213,0.03833462,97.98148794],[4.53689159,0.0383329,97.98171505],[4.53689105,0.03833117,97.98194287],[4.53689051,0.03832944,97.98217141],[4.53688997,0.03832772,97.98240068],[4.53688943,0.038326,97.9826307],[4.53688889,0.03832428,97.98286149],[4.53688836,0.03832255,97.98309305],[4.53688782,0.03832083,97.9833254],[4.53688728,0.03831911,97.98355856],[4.53688674,0.03831738,97.98379254],[4.53688621,0.03831566,97.98402735],[4.53688567,0.03831393,97.98426301],[4.53688514,0.03831221,97.98449953],[4.5368846,0.03831049,97.98473693],[4.53688406,0.03830876,97.98497522],[4.53688353,0.03830704,97.98521441],[4.53688299,0.03830531,97.98545451],[4.53688246,0.03830359,97.98569555],[4.53688193,0.03830186,97.98593753],[4.53688139,0.03830013,97.98618046],[4.53688086,0.03829841,97.98642437],[4.53688033,0.03829668,97.98666926],[4.53687979,0.03829496,97.98691515],[4.53687926,0.03829323,97.98716204],[4.53687873,0.0382915,97.98740996],[4.5368782,0.03828978,97.98765891],[4.53687767,0.03828805,97.9879089],[4.53687714,0.03828632,97.98815995],[4.53687661,0.03828459,97.98841205],[4.53687608,0.03828287,97.98866523],[4.53687555,0.03828114,97.98891949],[4.53687502,0.03827941,97.98917484],[4.53687449,0.03827768,97.9894313],[4.53687396,0.03827595,97.98968887],[4.53687343,0.03827423,97.98994756],[4.53687291,0.0382725,97.99020738],[4.53687238,0.03827077,97.99046833],[4.53687185,0.03826904,97.9907303],[4.53687133,0.03826731,97.99099318],[4.5368708,0.03826558,97.99125685],[4.53687028,0.03826385,97.99152121],[4.53686975,0.03826212,97.99178613],[4.53686923,0.03826039,97.9920515],[4.5368687,0.03825866,97.9923172],[4.53686818,0.03825693,97.99258313],[4.53686765,0.0382552,97.99284918],[4.53686713,0.03825347,97.99311522],[4.53686661,0.03825173,97.99338114],[4.53686608,0.03825,97.99364685],[4.53686556,0.03824827,97.99391222],[4.53686504,0.03824654,97.99417714],[4.53686451,0.03824481,97.99444151],[4.53686399,0.03824308,97.99470521],[4.53686346,0.03824135,97.99496814],[4.53686294,0.03823961,97.99523019],[4.53686242,0.03823788,97.99549125],[4.53686189,0.03823615,97.99575122],[4.53686137,0.03823442,97.99600998],[4.53686084,0.03823269,97.99626743],[4.53686032,0.03823096,97.99652346],[4.53685979,0.03822922,97.99677798],[4.53685927,0.03822749,97.99703087],[4.53685874,0.03822576,97.99728203],[4.53685822,0.03822403,97.99753136],[4.53685819,0.03822392,97.99754667],[4.53688887,0.03821415,98.10194201],[4.5368889,0.03821425,98.10193382],[4.53688943,0.03821598,98.10180107],[4.53688996,0.03821771,98.10166832],[4.53689048,0.03821943,98.10153557],[4.53689101,0.03822116,98.10140281],[4.53689154,0.03822289,98.10127004],[4.53689206,0.03822461,98.10113724],[4.53689259,0.03822634,98.10100442],[4.53689312,0.03822807,98.10087156],[4.53689365,0.03822979,98.10073865],[4.53689417,0.03823152,98.1006057],[4.5368947,0.03823324,98.10047268],[4.53689523,0.03823497,98.1003396],[4.53689576,0.0382367,98.10020645],[4.53689629,0.03823842,98.10007323],[4.53689682,0.03824015,98.09993991],[4.53689735,0.03824187,98.0998065],[4.53689788,0.0382436,98.099673],[4.53689841,0.03824532,98.09953939],[4.53689894,0.03824705,98.09940566],[4.53689947,0.03824877,98.09927182],[4.5369,0.0382505,98.09913785],[4.53690053,0.03825222,98.09900375],[4.53690106,0.03825395,98.0988695],[4.53690159,0.03825567,98.09873511],[4.53690213,0.0382574,98.09860057],[4.53690266,0.03825912,98.09846587],[4.53690319,0.03826085,98.098331],[4.53690372,0.03826257,98.09819596],[4.53690425,0.0382643,98.09806074],[4.53690479,0.03826602,98.09792533],[4.53690532,0.03826774,98.09778973],[4.53690585,0.03826947,98.09765393],[4.53690639,0.03827119,98.09751793],[4.53690692,0.03827291,98.09738172],[4.53690745,0.03827464,98.09724528],[4.53690799,0.03827636,98.09710862],[4.53690852,0.03827809,98.09697173],[4.53690906,0.03827981,98.09683461],[4.53690959,0.03828153,98.09669723],[4.53691013,0.03828326,98.09655961],[4.53691066,0.03828498,98.09642173],[4.5369112,0.0382867,98.09628359],[4.53691173,0.03828842,98.09614518],[4.53691227,0.03829015,98.09600648],[4.5369128,0.03829187,98.0958675],[4.53691334,0.03829359,98.09572822],[4.53691388,0.03829531,98.09558863],[4.53691441,0.03829704,98.09544872],[4.53691495,0.03829876,98.09530849],[4.53691548,0.03830048,98.09516793],[4.53691602,0.0383022,98.09502702],[4.53691656,0.03830393,98.09488576],[4.5369171,0.03830565,98.09474414],[4.53691763,0.03830737,98.09460215],[4.53691817,0.03830909,98.09445978],[4.53691871,0.03831081,98.09431702],[4.53691925,0.03831254,98.09417386],[4.53691978,0.03831426,98.0940303],[4.53692032,0.03831598,98.09388633],[4.53692086,0.0383177,98.09374193],[4.5369214,0.03831942,98.0935971],[4.53692194,0.03832115,98.09345184],[4.53692248,0.03832287,98.09330612],[4.53692302,0.03832459,98.09315994],[4.53692356,0.03832631,98.09301329],[4.53692409,0.03832803,98.09286616],[4.53692463,0.03832975,98.09271853],[4.53692517,0.03833147,98.09257038],[4.53692571,0.03833319,98.0924217],[4.53692625,0.03833492,98.09227247],[4.53692679,0.03833664,98.09212268],[4.53692733,0.03833836,98.0919723],[4.53692787,0.03834008,98.09182132],[4.53692841,0.0383418,98.09166973],[4.53692895,0.03834352,98.09151751],[4.53692949,0.03834524,98.09136464],[4.53693003,0.03834696,98.0912111],[4.53693057,0.03834868,98.09105688],[4.53693111,0.0383504,98.09090196],[4.53693165,0.03835212,98.09074633],[4.53693219,0.03835384,98.09058997],[4.53693273,0.03835556,98.09043285],[4.53693327,0.03835728,98.09027498],[4.53693382,0.038359,98.09011632],[4.53693436,0.03836072,98.08995686],[4.5369349,0.03836244,98.0897966],[4.53693544,0.03836416,98.08963552],[4.53693598,0.03836588,98.08947361],[4.53693652,0.0383676,98.08931087],[4.53693706,0.03836932,98.0891473],[4.5369376,0.03837104,98.08898289],[4.53693814,0.03837276,98.08881763],[4.53693869,0.03837448,98.08865151],[4.53693923,0.0383762,98.08848453],[4.53693977,0.03837792,98.08831669],[4.53694031,0.03837963,98.08814797],[4.53694085,0.03838135,98.08797836],[4.53694139,0.03838307,98.08780788],[4.53694193,0.03838479,98.0876365],[4.53694248,0.03838651,98.08746421],[4.53694302,0.03838823,98.08729103],[4.53694356,0.03838995,98.08711693],[4.5369441,0.03839167,98.08694191],[4.53694464,0.03839339,98.08676596],[4.53694518,0.03839511,98.08658909],[4.53694573,0.03839683,98.08641128],[4.53694627,0.03839855,98.08623252],[4.53694681,0.03840027,98.08605281],[4.53694735,0.03840198,98.08587215],[4.53694789,0.0384037,98.08569052],[4.53694844,0.03840542,98.08550792],[4.53694898,0.03840714,98.08532435],[4.53694952,0.03840886,98.08513979],[4.53695006,0.03841058,98.08495425],[4.5369506,0.0384123,98.08476771],[4.53695115,0.03841402,98.08458018],[4.53695169,0.03841574,98.08439166],[4.53695223,0.03841745,98.08420215],[4.53695277,0.03841917,98.08401165],[4.53695331,0.03842089,98.08382016],[4.53695386,0.03842261,98.08362769],[4.5369544,0.03842433,98.08343426],[4.53695494,0.03842605,98.08323997],[4.53695548,0.03842777,98.08304487],[4.53695603,0.03842949,98.08284905],[4.53695657,0.0384312,98.08265259],[4.53695711,0.03843292,98.08245556],[4.53695766,0.03843464,98.08225804],[4.5369582,0.03843636,98.08206009],[4.53695874,0.03843808,98.08186181],[4.53695929,0.03843979,98.08166326],[4.53695983,0.03844151,98.08146453],[4.53696037,0.03844323,98.08126568],[4.53696092,0.03844495,98.08106679],[4.53696146,0.03844667,98.08086794],[4.53696201,0.03844838,98.0806692],[4.53696255,0.0384501,98.08047066],[4.5369631,0.03845182,98.08027238],[4.53696364,0.03845353,98.08007444],[4.53696419,0.03845525,98.07987692],[4.53696474,0.03845697,98.07967989],[4.53696529,0.03845868,98.07948342],[4.53696583,0.0384604,98.0792876],[4.53696638,0.03846212,98.07909249],[4.53696693,0.03846383,98.07889817],[4.53696748,0.03846555,98.07870472],[4.53696803,0.03846726,98.0785122],[4.53696858,0.03846898,98.07832069],[4.53696913,0.0384707,98.07813027],[4.53696968,0.03847241,98.07794101],[4.53697024,0.03847412,98.07775298],[4.53697079,0.03847584,98.07756626],[4.53697134,0.03847754,98.0773809],[4.5369719,0.03847926,98.07719684],[4.53697245,0.03848097,98.07701385],[4.53697301,0.03848269,98.07683171],[4.53697356,0.0384844,98.07665017],[4.53697412,0.03848611,98.07646902],[4.53697468,0.03848783,98.07628801],[4.53697523,0.03848954,98.07610692],[4.53697579,0.03849125,98.07592551],[4.53697635,0.03849297,98.07574355],[4.53697691,0.03849468,98.0755608],[4.53697747,0.03849639,98.07537704],[4.53697802,0.0384981,98.07519204],[4.53697858,0.03849982,98.07500555],[4.53697914,0.03850153,98.07481736],[4.5369797,0.03850324,98.07462722],[4.53698025,0.03850495,98.07443492],[4.53698081,0.03850667,98.07424021],[4.53698136,0.03850838,98.07404287],[4.53698192,0.03851009,98.07384267],[4.53698247,0.0385118,98.07363938],[4.53698303,0.03851352,98.07343277],[4.53698358,0.03851523,98.07322261],[4.53698414,0.03851694,98.07300868],[4.53698469,0.03851866,98.07279081],[4.53698524,0.03852037,98.07256907],[4.53698579,0.03852209,98.07234361],[4.53698634,0.0385238,98.07211457],[4.53698689,0.03852551,98.07188208],[4.53698744,0.03852723,98.07164627],[4.53698798,0.03852894,98.0714073],[4.53698853,0.03853066,98.07116529],[4.53698908,0.03853237,98.07092039],[4.53698962,0.03853409,98.07067273],[4.53699017,0.0385358,98.07042244],[4.53699072,0.03853752,98.07016967],[4.53699126,0.03853923,98.06991455],[4.5369918,0.03854095,98.06965722],[4.53699235,0.03854266,98.0693978],[4.53699289,0.03854438,98.06913645],[4.53699344,0.03854609,98.06887332],[4.53699398,0.03854781,98.06860857],[4.53699452,0.03854952,98.06834233],[4.53699506,0.03855124,98.06807478],[4.53699561,0.03855295,98.06780604],[4.53699615,0.03855467,98.06753616],[4.53699669,0.03855638,98.06726517],[4.53699724,0.0385581,98.06699312],[4.53699778,0.03855981,98.06672002],[4.53699832,0.03856153,98.06644592],[4.53699886,0.03856324,98.06617083],[4.53699941,0.03856495,98.0658948],[4.53699995,0.03856667,98.06561785],[4.53700049,0.03856838,98.06534002],[4.53700103,0.0385701,98.06506133],[4.53700157,0.03857181,98.06478181],[4.53700212,0.03857353,98.0645015],[4.53700266,0.03857524,98.06422041],[4.5370032,0.03857696,98.06393859],[4.53700374,0.03857867,98.06365605],[4.53700428,0.03858038,98.06337282],[4.53700483,0.0385821,98.06308889],[4.53700537,0.03858381,98.06280419],[4.53700591,0.03858553,98.06251867],[4.53700645,0.03858724,98.06223225],[4.537007,0.03858895,98.06194488],[4.53700754,0.03859068,98.06165649],[4.53700808,0.03859239,98.06136703],[4.53700862,0.03859411,98.06107642],[4.53700917,0.03859582,98.0607846],[4.53700971,0.03859753,98.06049152],[4.53701025,0.03859925,98.06019711],[4.53701079,0.03860096,98.0599013],[4.53701133,0.03860268,98.05960404],[4.53701188,0.03860439,98.05930525],[4.53701242,0.03860611,98.05900489],[4.53701296,0.03860782,98.05870288],[4.5370135,0.03860954,98.0583992],[4.53701404,0.03861125,98.05809393],[4.53701459,0.03861297,98.05778722],[4.53701513,0.03861468,98.05747921],[4.53701567,0.0386164,98.05717006],[4.53701622,0.03861812,98.05685993],[4.53701676,0.03861983,98.05654899],[4.5370173,0.03862155,98.05623739],[4.53701785,0.03862327,98.0559253],[4.5370184,0.03862498,98.05561286],[4.53701894,0.0386267,98.05530025],[4.53701949,0.03862842,98.0549876],[4.53702004,0.03863013,98.05467506],[4.53702059,0.03863185,98.0543628],[4.53702114,0.03863357,98.05405096],[4.53702169,0.03863528,98.05373968],[4.53702224,0.038637,98.0534291],[4.5370228,0.03863872,98.05311938],[4.53702336,0.03864043,98.05281064],[4.53702391,0.03864215,98.05250279],[4.53702447,0.03864386,98.0521947],[4.53702503,0.03864558,98.05188498],[4.53702559,0.0386473,98.05157228],[4.53702615,0.03864901,98.05125496],[4.53702671,0.03865073,98.05093041],[4.53702726,0.03865245,98.05059574],[4.53702782,0.03865417,98.05024811],[4.53702837,0.03865589,98.04988471],[4.53702891,0.03865761,98.04950457],[4.53702946,0.03865933,98.04911427],[4.53703001,0.03866105,98.04872226],[4.53703054,0.03866274,98.04833689],[4.53703107,0.03866439,98.04796646],[4.53703159,0.03866601,98.04761919],[4.53703209,0.03866759,98.04730318],[4.53703259,0.03866914,98.0470265],[4.53703307,0.03867066,98.04679708],[4.53703355,0.03867215,98.04662279],[4.53700232,0.03867974,97.94749415]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000400","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":0,"sOffset":0.0}},{"geometry":{"coordinates":[[[4.53703355,0.03867215,98.04662279],[4.53703307,0.03867066,98.04679708],[4.53703259,0.03866914,98.0470265],[4.53703209,0.03866759,98.04730318],[4.53703159,0.03866601,98.04761919],[4.53703107,0.03866439,98.04796646],[4.53703054,0.03866274,98.04833689],[4.53703001,0.03866105,98.04872226],[4.53702946,0.03865933,98.04911427],[4.53702891,0.03865761,98.04950457],[4.53702837,0.03865589,98.04988471],[4.53702782,0.03865417,98.05024811],[4.53702726,0.03865245,98.05059574],[4.53702671,0.03865073,98.05093041],[4.53702615,0.03864901,98.05125496],[4.53702559,0.0386473,98.05157228],[4.53702503,0.03864558,98.05188498],[4.53702447,0.03864386,98.0521947],[4.53702391,0.03864215,98.05250279],[4.53702336,0.03864043,98.05281064],[4.5370228,0.03863872,98.05311938],[4.53702224,0.038637,98.0534291],[4.53702169,0.03863528,98.05373968],[4.53702114,0.03863357,98.05405096],[4.53702059,0.03863185,98.0543628],[4.53702004,0.03863013,98.05467506],[4.53701949,0.03862842,98.0549876],[4.53701894,0.0386267,98.05530025],[4.5370184,0.03862498,98.05561286],[4.53701785,0.03862327,98.0559253],[4.5370173,0.03862155,98.05623739],[4.53701676,0.03861983,98.05654899],[4.53701622,0.03861812,98.05685993],[4.53701567,0.0386164,98.05717006],[4.53701513,0.03861468,98.05747921],[4.53701459,0.03861297,98.05778722],[4.53701404,0.03861125,98.05809393],[4.5370135,0.03860954,98.0583992],[4.53701296,0.03860782,98.05870288],[4.53701242,0.03860611,98.05900489],[4.53701188,0.03860439,98.05930525],[4.53701133,0.03860268,98.05960404],[4.53701079,0.03860096,98.0599013],[4.53701025,0.03859925,98.06019711],[4.53700971,0.03859753,98.06049152],[4.53700917,0.03859582,98.0607846],[4.53700862,0.03859411,98.06107642],[4.53700808,0.03859239,98.06136703],[4.53700754,0.03859068,98.06165649],[4.537007,0.03858895,98.06194488],[4.53700645,0.03858724,98.06223225],[4.53700591,0.03858553,98.06251867],[4.53700537,0.03858381,98.06280419],[4.53700483,0.0385821,98.06308889],[4.53700428,0.03858038,98.06337282],[4.53700374,0.03857867,98.06365605],[4.5370032,0.03857696,98.06393859],[4.53700266,0.03857524,98.06422041],[4.53700212,0.03857353,98.0645015],[4.53700157,0.03857181,98.06478181],[4.53700103,0.0385701,98.06506133],[4.53700049,0.03856838,98.06534002],[4.53699995,0.03856667,98.06561785],[4.53699941,0.03856495,98.0658948],[4.53699886,0.03856324,98.06617083],[4.53699832,0.03856153,98.06644592],[4.53699778,0.03855981,98.06672002],[4.53699724,0.0385581,98.06699312],[4.53699669,0.03855638,98.06726517],[4.53699615,0.03855467,98.06753616],[4.53699561,0.03855295,98.06780604],[4.53699506,0.03855124,98.06807478],[4.53699452,0.03854952,98.06834233],[4.53699398,0.03854781,98.06860857],[4.53699344,0.03854609,98.06887332],[4.53699289,0.03854438,98.06913645],[4.53699235,0.03854266,98.0693978],[4.5369918,0.03854095,98.06965722],[4.53699126,0.03853923,98.06991455],[4.53699072,0.03853752,98.07016967],[4.53699017,0.0385358,98.07042244],[4.53698962,0.03853409,98.07067273],[4.53698908,0.03853237,98.07092039],[4.53698853,0.03853066,98.07116529],[4.53698798,0.03852894,98.0714073],[4.53698744,0.03852723,98.07164627],[4.53698689,0.03852551,98.07188208],[4.53698634,0.0385238,98.07211457],[4.53698579,0.03852209,98.07234361],[4.53698524,0.03852037,98.07256907],[4.53698469,0.03851866,98.07279081],[4.53698414,0.03851694,98.07300868],[4.53698358,0.03851523,98.07322261],[4.53698303,0.03851352,98.07343277],[4.53698247,0.0385118,98.07363938],[4.53698192,0.03851009,98.07384267],[4.53698136,0.03850838,98.07404287],[4.53698081,0.03850667,98.07424021],[4.53698025,0.03850495,98.07443492],[4.5369797,0.03850324,98.07462722],[4.53697914,0.03850153,98.07481736],[4.53697858,0.03849982,98.07500555],[4.53697802,0.0384981,98.07519204],[4.53697747,0.03849639,98.07537704],[4.53697691,0.03849468,98.0755608],[4.53697635,0.03849297,98.07574355],[4.53697579,0.03849125,98.07592551],[4.53697523,0.03848954,98.07610692],[4.53697468,0.03848783,98.07628801],[4.53697412,0.03848611,98.07646902],[4.53697356,0.0384844,98.07665017],[4.53697301,0.03848269,98.07683171],[4.53697245,0.03848097,98.07701385],[4.5369719,0.03847926,98.07719684],[4.53697134,0.03847754,98.0773809],[4.53697079,0.03847584,98.07756626],[4.53697024,0.03847412,98.07775298],[4.53696968,0.03847241,98.07794101],[4.53696913,0.0384707,98.07813027],[4.53696858,0.03846898,98.07832069],[4.53696803,0.03846726,98.0785122],[4.53696748,0.03846555,98.07870472],[4.53696693,0.03846383,98.07889817],[4.53696638,0.03846212,98.07909249],[4.53696583,0.0384604,98.0792876],[4.53696529,0.03845868,98.07948342],[4.53696474,0.03845697,98.07967989],[4.53696419,0.03845525,98.07987692],[4.53696364,0.03845353,98.08007444],[4.5369631,0.03845182,98.08027238],[4.53696255,0.0384501,98.08047066],[4.53696201,0.03844838,98.0806692],[4.53696146,0.03844667,98.08086794],[4.53696092,0.03844495,98.08106679],[4.53696037,0.03844323,98.08126568],[4.53695983,0.03844151,98.08146453],[4.53695929,0.03843979,98.08166326],[4.53695874,0.03843808,98.08186181],[4.5369582,0.03843636,98.08206009],[4.53695766,0.03843464,98.08225804],[4.53695711,0.03843292,98.08245556],[4.53695657,0.0384312,98.08265259],[4.53695603,0.03842949,98.08284905],[4.53695548,0.03842777,98.08304487],[4.53695494,0.03842605,98.08323997],[4.5369544,0.03842433,98.08343426],[4.53695386,0.03842261,98.08362769],[4.53695331,0.03842089,98.08382016],[4.53695277,0.03841917,98.08401165],[4.53695223,0.03841745,98.08420215],[4.53695169,0.03841574,98.08439166],[4.53695115,0.03841402,98.08458018],[4.5369506,0.0384123,98.08476771],[4.53695006,0.03841058,98.08495425],[4.53694952,0.03840886,98.08513979],[4.53694898,0.03840714,98.08532435],[4.53694844,0.03840542,98.08550792],[4.53694789,0.0384037,98.08569052],[4.53694735,0.03840198,98.08587215],[4.53694681,0.03840027,98.08605281],[4.53694627,0.03839855,98.08623252],[4.53694573,0.03839683,98.08641128],[4.53694518,0.03839511,98.08658909],[4.53694464,0.03839339,98.08676596],[4.5369441,0.03839167,98.08694191],[4.53694356,0.03838995,98.08711693],[4.53694302,0.03838823,98.08729103],[4.53694248,0.03838651,98.08746421],[4.53694193,0.03838479,98.0876365],[4.53694139,0.03838307,98.08780788],[4.53694085,0.03838135,98.08797836],[4.53694031,0.03837963,98.08814797],[4.53693977,0.03837792,98.08831669],[4.53693923,0.0383762,98.08848453],[4.53693869,0.03837448,98.08865151],[4.53693814,0.03837276,98.08881763],[4.5369376,0.03837104,98.08898289],[4.53693706,0.03836932,98.0891473],[4.53693652,0.0383676,98.08931087],[4.53693598,0.03836588,98.08947361],[4.53693544,0.03836416,98.08963552],[4.5369349,0.03836244,98.0897966],[4.53693436,0.03836072,98.08995686],[4.53693382,0.038359,98.09011632],[4.53693327,0.03835728,98.09027498],[4.53693273,0.03835556,98.09043285],[4.53693219,0.03835384,98.09058997],[4.53693165,0.03835212,98.09074633],[4.53693111,0.0383504,98.09090196],[4.53693057,0.03834868,98.09105688],[4.53693003,0.03834696,98.0912111],[4.53692949,0.03834524,98.09136464],[4.53692895,0.03834352,98.09151751],[4.53692841,0.0383418,98.09166973],[4.53692787,0.03834008,98.09182132],[4.53692733,0.03833836,98.0919723],[4.53692679,0.03833664,98.09212268],[4.53692625,0.03833492,98.09227247],[4.53692571,0.03833319,98.0924217],[4.53692517,0.03833147,98.09257038],[4.53692463,0.03832975,98.09271853],[4.53692409,0.03832803,98.09286616],[4.53692356,0.03832631,98.09301329],[4.53692302,0.03832459,98.09315994],[4.53692248,0.03832287,98.09330612],[4.53692194,0.03832115,98.09345184],[4.5369214,0.03831942,98.0935971],[4.53692086,0.0383177,98.09374193],[4.53692032,0.03831598,98.09388633],[4.53691978,0.03831426,98.0940303],[4.53691925,0.03831254,98.09417386],[4.53691871,0.03831081,98.09431702],[4.53691817,0.03830909,98.09445978],[4.53691763,0.03830737,98.09460215],[4.5369171,0.03830565,98.09474414],[4.53691656,0.03830393,98.09488576],[4.53691602,0.0383022,98.09502702],[4.53691548,0.03830048,98.09516793],[4.53691495,0.03829876,98.09530849],[4.53691441,0.03829704,98.09544872],[4.53691388,0.03829531,98.09558863],[4.53691334,0.03829359,98.09572822],[4.5369128,0.03829187,98.0958675],[4.53691227,0.03829015,98.09600648],[4.53691173,0.03828842,98.09614518],[4.5369112,0.0382867,98.09628359],[4.53691066,0.03828498,98.09642173],[4.53691013,0.03828326,98.09655961],[4.53690959,0.03828153,98.09669723],[4.53690906,0.03827981,98.09683461],[4.53690852,0.03827809,98.09697173],[4.53690799,0.03827636,98.09710862],[4.53690745,0.03827464,98.09724528],[4.53690692,0.03827291,98.09738172],[4.53690639,0.03827119,98.09751793],[4.53690585,0.03826947,98.09765393],[4.53690532,0.03826774,98.09778973],[4.53690479,0.03826602,98.09792533],[4.53690425,0.0382643,98.09806074],[4.53690372,0.03826257,98.09819596],[4.53690319,0.03826085,98.098331],[4.53690266,0.03825912,98.09846587],[4.53690213,0.0382574,98.09860057],[4.53690159,0.03825567,98.09873511],[4.53690106,0.03825395,98.0988695],[4.53690053,0.03825222,98.09900375],[4.5369,0.0382505,98.09913785],[4.53689947,0.03824877,98.09927182],[4.53689894,0.03824705,98.09940566],[4.53689841,0.03824532,98.09953939],[4.53689788,0.0382436,98.099673],[4.53689735,0.03824187,98.0998065],[4.53689682,0.03824015,98.09993991],[4.53689629,0.03823842,98.10007323],[4.53689576,0.0382367,98.10020645],[4.53689523,0.03823497,98.1003396],[4.5368947,0.03823324,98.10047268],[4.53689417,0.03823152,98.1006057],[4.53689365,0.03822979,98.10073865],[4.53689312,0.03822807,98.10087156],[4.53689259,0.03822634,98.10100442],[4.53689206,0.03822461,98.10113724],[4.53689154,0.03822289,98.10127004],[4.53689101,0.03822116,98.10140281],[4.53689048,0.03821943,98.10153557],[4.53688996,0.03821771,98.10166832],[4.53688943,0.03821598,98.10180107],[4.5368889,0.03821425,98.10193382],[4.53688887,0.03821415,98.10194201],[4.53692008,0.0382042,98.20811777],[4.53692011,0.03820431,98.20811909],[4.53692065,0.03820603,98.20814036],[4.53692119,0.03820775,98.20816121],[4.53692172,0.03820947,98.20818164],[4.53692226,0.03821118,98.20820162],[4.5369228,0.0382129,98.20822113],[4.53692333,0.03821462,98.20824016],[4.53692387,0.03821634,98.20825868],[4.53692441,0.03821806,98.20827667],[4.53692495,0.03821978,98.20829412],[4.53692548,0.0382215,98.20831101],[4.53692602,0.03822322,98.20832731],[4.53692656,0.03822494,98.20834301],[4.5369271,0.03822665,98.20835808],[4.53692764,0.03822837,98.20837251],[4.53692818,0.03823009,98.20838628],[4.53692872,0.03823181,98.20839937],[4.53692925,0.03823353,98.20841175],[4.53692979,0.03823525,98.20842342],[4.53693033,0.03823697,98.20843434],[4.53693087,0.03823869,98.20844451],[4.53693141,0.0382404,98.20845389],[4.53693195,0.03824212,98.20846248],[4.53693249,0.03824384,98.20847024],[4.53693303,0.03824556,98.20847717],[4.53693357,0.03824728,98.20848324],[4.53693411,0.038249,98.20848844],[4.53693466,0.03825071,98.20849274],[4.5369352,0.03825243,98.20849612],[4.53693574,0.03825415,98.20849857],[4.53693628,0.03825587,98.20850006],[4.53693682,0.03825759,98.20850058],[4.53693736,0.03825931,98.20850011],[4.5369379,0.03826102,98.20849862],[4.53693844,0.03826274,98.2084961],[4.53693899,0.03826446,98.20849253],[4.53693953,0.03826618,98.20848789],[4.53694007,0.0382679,98.20848216],[4.53694061,0.03826962,98.20847532],[4.53694115,0.03827133,98.20846735],[4.5369417,0.03827305,98.20845824],[4.53694224,0.03827477,98.20844795],[4.53694278,0.03827649,98.20843648],[4.53694332,0.03827821,98.2084238],[4.53694387,0.03827992,98.20840989],[4.53694441,0.03828164,98.20839473],[4.53694495,0.03828336,98.20837829],[4.5369455,0.03828508,98.20836056],[4.53694604,0.0382868,98.20834151],[4.53694658,0.03828852,98.20832112],[4.53694713,0.03829023,98.20829937],[4.53694767,0.03829195,98.20827623],[4.53694821,0.03829367,98.20825169],[4.53694876,0.03829539,98.20822572],[4.5369493,0.03829711,98.2081983],[4.53694984,0.03829882,98.2081694],[4.53695039,0.03830054,98.20813902],[4.53695093,0.03830226,98.20810711],[4.53695147,0.03830398,98.20807367],[4.53695202,0.0383057,98.20803868],[4.53695256,0.03830742,98.20800209],[4.53695311,0.03830913,98.20796391],[4.53695365,0.03831086,98.2079241],[4.53695419,0.03831258,98.20788265],[4.53695474,0.03831429,98.20783952],[4.53695528,0.03831601,98.2077947],[4.53695583,0.03831773,98.20774817],[4.53695637,0.03831945,98.20769991],[4.53695691,0.03832117,98.20764989],[4.53695746,0.03832288,98.20759809],[4.536958,0.0383246,98.20754449],[4.53695855,0.03832632,98.20748907],[4.53695909,0.03832804,98.2074318],[4.53695964,0.03832976,98.20737267],[4.53696018,0.03833147,98.20731165],[4.53696072,0.03833319,98.20724872],[4.53696127,0.03833491,98.20718386],[4.53696181,0.03833663,98.20711704],[4.53696236,0.03833835,98.20704825],[4.5369629,0.03834007,98.20697747],[4.53696344,0.03834178,98.20690466],[4.53696399,0.0383435,98.20682982],[4.53696453,0.03834522,98.20675291],[4.53696508,0.03834694,98.20667392],[4.53696562,0.03834866,98.20659282],[4.53696616,0.03835038,98.20650959],[4.53696671,0.0383521,98.20642422],[4.53696725,0.03835381,98.2063367],[4.5369678,0.03835553,98.206247],[4.53696834,0.03835725,98.20615513],[4.53696888,0.03835897,98.20606107],[4.53696943,0.03836069,98.20596481],[4.53696997,0.03836241,98.20586633],[4.53697051,0.03836413,98.20576563],[4.53697106,0.03836585,98.2056627],[4.5369716,0.03836756,98.20555751],[4.53697215,0.03836928,98.20545007],[4.53697269,0.038371,98.20534037],[4.53697323,0.03837272,98.20522838],[4.53697378,0.03837444,98.2051141],[4.53697432,0.03837616,98.20499752],[4.53697486,0.03837788,98.20487863],[4.53697541,0.0383796,98.20475741],[4.53697595,0.03838132,98.20463386],[4.53697649,0.03838303,98.20450796],[4.53697704,0.03838475,98.2043797],[4.53697758,0.03838647,98.20424908],[4.53697812,0.03838819,98.20411608],[4.53697867,0.03838991,98.20398069],[4.53697921,0.03839163,98.20384289],[4.53697975,0.03839335,98.20370269],[4.5369803,0.03839507,98.20356007],[4.53698084,0.03839679,98.20341501],[4.53698138,0.03839851,98.20326751],[4.53698193,0.03840023,98.20311755],[4.53698247,0.03840195,98.20296513],[4.53698301,0.03840367,98.20281025],[4.53698356,0.03840539,98.2026529],[4.5369841,0.03840711,98.20249307],[4.53698464,0.03840883,98.20233076],[4.53698519,0.03841054,98.20216598],[4.53698573,0.03841226,98.20199871],[4.53698627,0.03841398,98.20182895],[4.53698681,0.0384157,98.20165671],[4.53698736,0.03841742,98.20148196],[4.5369879,0.03841914,98.20130472],[4.53698844,0.03842086,98.20112498],[4.53698899,0.03842258,98.20094273],[4.53698953,0.0384243,98.20075798],[4.53699007,0.03842602,98.20057071],[4.53699062,0.03842774,98.20038092],[4.53699116,0.03842946,98.20018862],[4.5369917,0.03843118,98.19999379],[4.53699224,0.0384329,98.19979644],[4.53699279,0.03843462,98.19959655],[4.53699333,0.03843634,98.19939414],[4.53699387,0.03843806,98.19918918],[4.53699442,0.03843978,98.19898169],[4.53699496,0.0384415,98.19877165],[4.5369955,0.03844322,98.19855906],[4.53699605,0.03844494,98.19834392],[4.53699659,0.03844666,98.19812623],[4.53699713,0.03844838,98.19790597],[4.53699768,0.0384501,98.19768316],[4.53699822,0.03845182,98.19745778],[4.53699876,0.03845354,98.19722982],[4.53699931,0.03845526,98.19699929],[4.53699985,0.03845698,98.19676619],[4.53700039,0.0384587,98.1965305],[4.53700094,0.03846042,98.19629223],[4.53700148,0.03846214,98.19605136],[4.53700202,0.03846386,98.1958079],[4.53700257,0.03846558,98.19556185],[4.53700311,0.03846729,98.19531319],[4.53700365,0.03846901,98.19506192],[4.5370042,0.03847073,98.19480804],[4.53700474,0.03847245,98.19455155],[4.53700528,0.03847418,98.19429243],[4.53700583,0.0384759,98.19403068],[4.53700637,0.03847762,98.19376628],[4.53700692,0.03847934,98.19349923],[4.53700746,0.03848106,98.19322951],[4.537008,0.03848278,98.19295712],[4.53700855,0.0384845,98.19268205],[4.53700909,0.03848622,98.19240428],[4.53700964,0.03848794,98.1921238],[4.53701018,0.03848966,98.19184062],[4.53701073,0.03849138,98.1915547],[4.53701127,0.0384931,98.19126605],[4.53701181,0.03849482,98.19097466],[4.53701236,0.03849655,98.19068051],[4.5370129,0.03849827,98.19038359],[4.53701345,0.03849999,98.19008389],[4.53701399,0.03850171,98.1897814],[4.53701454,0.03850343,98.18947611],[4.53701508,0.03850515,98.18916801],[4.53701562,0.03850687,98.18885709],[4.53701617,0.03850859,98.18854334],[4.53701671,0.03851032,98.18822674],[4.53701726,0.03851204,98.18790729],[4.5370178,0.03851376,98.18758496],[4.53701835,0.03851548,98.18725976],[4.53701889,0.0385172,98.18693166],[4.53701943,0.03851892,98.18660067],[4.53701998,0.03852064,98.18626676],[4.53702052,0.03852237,98.18592992],[4.53702107,0.03852409,98.18559014],[4.53702161,0.03852581,98.18524741],[4.53702215,0.03852753,98.18490171],[4.5370227,0.03852925,98.18455304],[4.53702324,0.03853098,98.18420138],[4.53702379,0.0385327,98.18384671],[4.53702433,0.03853442,98.18348904],[4.53702487,0.03853614,98.18312837],[4.53702542,0.03853786,98.18276471],[4.53702596,0.03853959,98.18239807],[4.5370265,0.03854131,98.18202844],[4.53702705,0.03854303,98.18165584],[4.53702759,0.03854475,98.18128027],[4.53702814,0.03854648,98.18090174],[4.53702868,0.0385482,98.18052026],[4.53702922,0.03854992,98.18013583],[4.53702977,0.03855164,98.17974845],[4.53703031,0.03855337,98.17935813],[4.53703085,0.03855509,98.17896487],[4.53703139,0.03855681,98.17856868],[4.53703194,0.03855854,98.17816957],[4.53703248,0.03856026,98.17776753],[4.53703302,0.03856198,98.17736257],[4.53703357,0.0385637,98.17695469],[4.53703411,0.03856543,98.1765439],[4.53703465,0.03856715,98.17613019],[4.5370352,0.03856887,98.17571358],[4.53703574,0.0385706,98.17529405],[4.53703628,0.03857232,98.17487158],[4.53703683,0.03857404,98.17444606],[4.53703737,0.03857577,98.17401743],[4.53703791,0.03857749,98.17358557],[4.53703846,0.03857921,98.17315042],[4.537039,0.03858095,98.17271188],[4.53703954,0.03858267,98.17226986],[4.53704009,0.0385844,98.17182428],[4.53704063,0.03858612,98.17137504],[4.53704117,0.03858784,98.17092207],[4.53704171,0.03858956,98.17046527],[4.53704225,0.03859129,98.17000456],[4.53704279,0.03859301,98.16953985],[4.53704333,0.03859473,98.16907105],[4.53704388,0.03859645,98.16859809],[4.53704442,0.03859818,98.16812087],[4.53704496,0.0385999,98.16763933],[4.5370455,0.03860162,98.16715356],[4.53704604,0.03860334,98.16666366],[4.53704658,0.03860506,98.16616973],[4.53704712,0.03860678,98.16567188],[4.53704766,0.03860851,98.16517022],[4.5370482,0.03861023,98.16466484],[4.53704874,0.03861195,98.16415586],[4.53704928,0.03861367,98.16364337],[4.53704982,0.03861539,98.16312748],[4.53705037,0.03861711,98.16260827],[4.53705091,0.03861883,98.16208586],[4.53705145,0.03862055,98.16156034],[4.53705199,0.03862227,98.16103179],[4.53705254,0.03862399,98.16050033],[4.53705308,0.0386257,98.15996603],[4.53705363,0.03862742,98.159429],[4.53705418,0.03862914,98.15888932],[4.53705472,0.03863086,98.15834707],[4.53705527,0.03863257,98.15780211],[4.53705582,0.03863429,98.15725327],[4.53705637,0.03863601,98.1566991],[4.53705692,0.03863772,98.15613818],[4.53705747,0.03863944,98.15556912],[4.53705801,0.03864116,98.15499052],[4.53705856,0.03864287,98.15440098],[4.5370591,0.03864459,98.15379915],[4.53705965,0.03864631,98.15318365],[4.53706019,0.03864803,98.15255498],[4.53706073,0.03864974,98.15192113],[4.53706127,0.03865147,98.15129198],[4.53706183,0.03865321,98.15067729],[4.5370624,0.03865499,98.15008674],[4.53706298,0.0386568,98.14952991],[4.53706358,0.03865864,98.14901627],[4.53706419,0.03866052,98.14855522],[4.5370648,0.03866244,98.14815603],[4.53706542,0.03866439,98.14782787],[4.53703355,0.03867215,98.04662279]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"broken","height":0.0},{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000400","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":0,"sOffset":0.0}},{"geometry":{"coordinates":[[[4.53706542,0.03866439,98.14782787],[4.5370648,0.03866244,98.14815603],[4.53706419,0.03866052,98.14855522],[4.53706358,0.03865864,98.14901627],[4.53706298,0.0386568,98.14952991],[4.5370624,0.03865499,98.15008674],[4.53706183,0.03865321,98.15067729],[4.53706127,0.03865147,98.15129198],[4.53706073,0.03864974,98.15192113],[4.53706019,0.03864803,98.15255498],[4.53705965,0.03864631,98.15318365],[4.5370591,0.03864459,98.15379915],[4.53705856,0.03864287,98.15440098],[4.53705801,0.03864116,98.15499052],[4.53705747,0.03863944,98.15556912],[4.53705692,0.03863772,98.15613818],[4.53705637,0.03863601,98.1566991],[4.53705582,0.03863429,98.15725327],[4.53705527,0.03863257,98.15780211],[4.53705472,0.03863086,98.15834707],[4.53705418,0.03862914,98.15888932],[4.53705363,0.03862742,98.159429],[4.53705308,0.0386257,98.15996603],[4.53705254,0.03862399,98.16050033],[4.53705199,0.03862227,98.16103179],[4.53705145,0.03862055,98.16156034],[4.53705091,0.03861883,98.16208586],[4.53705037,0.03861711,98.16260827],[4.53704982,0.03861539,98.16312748],[4.53704928,0.03861367,98.16364337],[4.53704874,0.03861195,98.16415586],[4.5370482,0.03861023,98.16466484],[4.53704766,0.03860851,98.16517022],[4.53704712,0.03860678,98.16567188],[4.53704658,0.03860506,98.16616973],[4.53704604,0.03860334,98.16666366],[4.5370455,0.03860162,98.16715356],[4.53704496,0.0385999,98.16763933],[4.53704442,0.03859818,98.16812087],[4.53704388,0.03859645,98.16859809],[4.53704333,0.03859473,98.16907105],[4.53704279,0.03859301,98.16953985],[4.53704225,0.03859129,98.17000456],[4.53704171,0.03858956,98.17046527],[4.53704117,0.03858784,98.17092207],[4.53704063,0.03858612,98.17137504],[4.53704009,0.0385844,98.17182428],[4.53703954,0.03858267,98.17226986],[4.537039,0.03858095,98.17271188],[4.53703846,0.03857921,98.17315042],[4.53703791,0.03857749,98.17358557],[4.53703737,0.03857577,98.17401743],[4.53703683,0.03857404,98.17444606],[4.53703628,0.03857232,98.17487158],[4.53703574,0.0385706,98.17529405],[4.5370352,0.03856887,98.17571358],[4.53703465,0.03856715,98.17613019],[4.53703411,0.03856543,98.1765439],[4.53703357,0.0385637,98.17695469],[4.53703302,0.03856198,98.17736257],[4.53703248,0.03856026,98.17776753],[4.53703194,0.03855854,98.17816957],[4.53703139,0.03855681,98.17856868],[4.53703085,0.03855509,98.17896487],[4.53703031,0.03855337,98.17935813],[4.53702977,0.03855164,98.17974845],[4.53702922,0.03854992,98.18013583],[4.53702868,0.0385482,98.18052026],[4.53702814,0.03854648,98.18090174],[4.53702759,0.03854475,98.18128027],[4.53702705,0.03854303,98.18165584],[4.5370265,0.03854131,98.18202844],[4.53702596,0.03853959,98.18239807],[4.53702542,0.03853786,98.18276471],[4.53702487,0.03853614,98.18312837],[4.53702433,0.03853442,98.18348904],[4.53702379,0.0385327,98.18384671],[4.53702324,0.03853098,98.18420138],[4.5370227,0.03852925,98.18455304],[4.53702215,0.03852753,98.18490171],[4.53702161,0.03852581,98.18524741],[4.53702107,0.03852409,98.18559014],[4.53702052,0.03852237,98.18592992],[4.53701998,0.03852064,98.18626676],[4.53701943,0.03851892,98.18660067],[4.53701889,0.0385172,98.18693166],[4.53701835,0.03851548,98.18725976],[4.5370178,0.03851376,98.18758496],[4.53701726,0.03851204,98.18790729],[4.53701671,0.03851032,98.18822674],[4.53701617,0.03850859,98.18854334],[4.53701562,0.03850687,98.18885709],[4.53701508,0.03850515,98.18916801],[4.53701454,0.03850343,98.18947611],[4.53701399,0.03850171,98.1897814],[4.53701345,0.03849999,98.19008389],[4.5370129,0.03849827,98.19038359],[4.53701236,0.03849655,98.19068051],[4.53701181,0.03849482,98.19097466],[4.53701127,0.0384931,98.19126605],[4.53701073,0.03849138,98.1915547],[4.53701018,0.03848966,98.19184062],[4.53700964,0.03848794,98.1921238],[4.53700909,0.03848622,98.19240428],[4.53700855,0.0384845,98.19268205],[4.537008,0.03848278,98.19295712],[4.53700746,0.03848106,98.19322951],[4.53700692,0.03847934,98.19349923],[4.53700637,0.03847762,98.19376628],[4.53700583,0.0384759,98.19403068],[4.53700528,0.03847418,98.19429243],[4.53700474,0.03847245,98.19455155],[4.5370042,0.03847073,98.19480804],[4.53700365,0.03846901,98.19506192],[4.53700311,0.03846729,98.19531319],[4.53700257,0.03846558,98.19556185],[4.53700202,0.03846386,98.1958079],[4.53700148,0.03846214,98.19605136],[4.53700094,0.03846042,98.19629223],[4.53700039,0.0384587,98.1965305],[4.53699985,0.03845698,98.19676619],[4.53699931,0.03845526,98.19699929],[4.53699876,0.03845354,98.19722982],[4.53699822,0.03845182,98.19745778],[4.53699768,0.0384501,98.19768316],[4.53699713,0.03844838,98.19790597],[4.53699659,0.03844666,98.19812623],[4.53699605,0.03844494,98.19834392],[4.5369955,0.03844322,98.19855906],[4.53699496,0.0384415,98.19877165],[4.53699442,0.03843978,98.19898169],[4.53699387,0.03843806,98.19918918],[4.53699333,0.03843634,98.19939414],[4.53699279,0.03843462,98.19959655],[4.53699224,0.0384329,98.19979644],[4.5369917,0.03843118,98.19999379],[4.53699116,0.03842946,98.20018862],[4.53699062,0.03842774,98.20038092],[4.53699007,0.03842602,98.20057071],[4.53698953,0.0384243,98.20075798],[4.53698899,0.03842258,98.20094273],[4.53698844,0.03842086,98.20112498],[4.5369879,0.03841914,98.20130472],[4.53698736,0.03841742,98.20148196],[4.53698681,0.0384157,98.20165671],[4.53698627,0.03841398,98.20182895],[4.53698573,0.03841226,98.20199871],[4.53698519,0.03841054,98.20216598],[4.53698464,0.03840883,98.20233076],[4.5369841,0.03840711,98.20249307],[4.53698356,0.03840539,98.2026529],[4.53698301,0.03840367,98.20281025],[4.53698247,0.03840195,98.20296513],[4.53698193,0.03840023,98.20311755],[4.53698138,0.03839851,98.20326751],[4.53698084,0.03839679,98.20341501],[4.5369803,0.03839507,98.20356007],[4.53697975,0.03839335,98.20370269],[4.53697921,0.03839163,98.20384289],[4.53697867,0.03838991,98.20398069],[4.53697812,0.03838819,98.20411608],[4.53697758,0.03838647,98.20424908],[4.53697704,0.03838475,98.2043797],[4.53697649,0.03838303,98.20450796],[4.53697595,0.03838132,98.20463386],[4.53697541,0.0383796,98.20475741],[4.53697486,0.03837788,98.20487863],[4.53697432,0.03837616,98.20499752],[4.53697378,0.03837444,98.2051141],[4.53697323,0.03837272,98.20522838],[4.53697269,0.038371,98.20534037],[4.53697215,0.03836928,98.20545007],[4.5369716,0.03836756,98.20555751],[4.53697106,0.03836585,98.2056627],[4.53697051,0.03836413,98.20576563],[4.53696997,0.03836241,98.20586633],[4.53696943,0.03836069,98.20596481],[4.53696888,0.03835897,98.20606107],[4.53696834,0.03835725,98.20615513],[4.5369678,0.03835553,98.206247],[4.53696725,0.03835381,98.2063367],[4.53696671,0.0383521,98.20642422],[4.53696616,0.03835038,98.20650959],[4.53696562,0.03834866,98.20659282],[4.53696508,0.03834694,98.20667392],[4.53696453,0.03834522,98.20675291],[4.53696399,0.0383435,98.20682982],[4.53696344,0.03834178,98.20690466],[4.5369629,0.03834007,98.20697747],[4.53696236,0.03833835,98.20704825],[4.53696181,0.03833663,98.20711704],[4.53696127,0.03833491,98.20718386],[4.53696072,0.03833319,98.20724872],[4.53696018,0.03833147,98.20731165],[4.53695964,0.03832976,98.20737267],[4.53695909,0.03832804,98.2074318],[4.53695855,0.03832632,98.20748907],[4.536958,0.0383246,98.20754449],[4.53695746,0.03832288,98.20759809],[4.53695691,0.03832117,98.20764989],[4.53695637,0.03831945,98.20769991],[4.53695583,0.03831773,98.20774817],[4.53695528,0.03831601,98.2077947],[4.53695474,0.03831429,98.20783952],[4.53695419,0.03831258,98.20788265],[4.53695365,0.03831086,98.2079241],[4.53695311,0.03830913,98.20796391],[4.53695256,0.03830742,98.20800209],[4.53695202,0.0383057,98.20803868],[4.53695147,0.03830398,98.20807367],[4.53695093,0.03830226,98.20810711],[4.53695039,0.03830054,98.20813902],[4.53694984,0.03829882,98.2081694],[4.5369493,0.03829711,98.2081983],[4.53694876,0.03829539,98.20822572],[4.53694821,0.03829367,98.20825169],[4.53694767,0.03829195,98.20827623],[4.53694713,0.03829023,98.20829937],[4.53694658,0.03828852,98.20832112],[4.53694604,0.0382868,98.20834151],[4.5369455,0.03828508,98.20836056],[4.53694495,0.03828336,98.20837829],[4.53694441,0.03828164,98.20839473],[4.53694387,0.03827992,98.20840989],[4.53694332,0.03827821,98.2084238],[4.53694278,0.03827649,98.20843648],[4.53694224,0.03827477,98.20844795],[4.5369417,0.03827305,98.20845824],[4.53694115,0.03827133,98.20846735],[4.53694061,0.03826962,98.20847532],[4.53694007,0.0382679,98.20848216],[4.53693953,0.03826618,98.20848789],[4.53693899,0.03826446,98.20849253],[4.53693844,0.03826274,98.2084961],[4.5369379,0.03826102,98.20849862],[4.53693736,0.03825931,98.20850011],[4.53693682,0.03825759,98.20850058],[4.53693628,0.03825587,98.20850006],[4.53693574,0.03825415,98.20849857],[4.5369352,0.03825243,98.20849612],[4.53693466,0.03825071,98.20849274],[4.53693411,0.038249,98.20848844],[4.53693357,0.03824728,98.20848324],[4.53693303,0.03824556,98.20847717],[4.53693249,0.03824384,98.20847024],[4.53693195,0.03824212,98.20846248],[4.53693141,0.0382404,98.20845389],[4.53693087,0.03823869,98.20844451],[4.53693033,0.03823697,98.20843434],[4.53692979,0.03823525,98.20842342],[4.53692925,0.03823353,98.20841175],[4.53692872,0.03823181,98.20839937],[4.53692818,0.03823009,98.20838628],[4.53692764,0.03822837,98.20837251],[4.5369271,0.03822665,98.20835808],[4.53692656,0.03822494,98.20834301],[4.53692602,0.03822322,98.20832731],[4.53692548,0.0382215,98.20831101],[4.53692495,0.03821978,98.20829412],[4.53692441,0.03821806,98.20827667],[4.53692387,0.03821634,98.20825868],[4.53692333,0.03821462,98.20824016],[4.5369228,0.0382129,98.20822113],[4.53692226,0.03821118,98.20820162],[4.53692172,0.03820947,98.20818164],[4.53692119,0.03820775,98.20816121],[4.53692065,0.03820603,98.20814036],[4.53692011,0.03820431,98.20811909],[4.53692008,0.0382042,98.20811777],[4.53692693,0.03820202,98.23141893],[4.53692699,0.03820212,98.23151466],[4.53692797,0.03820369,98.23306897],[4.53692895,0.03820527,98.23462606],[4.53692993,0.03820685,98.23618588],[4.5369309,0.03820843,98.2377484],[4.53693188,0.03821,98.23931359],[4.53693286,0.03821158,98.24088142],[4.53693384,0.03821315,98.24245185],[4.53693482,0.03821473,98.24402485],[4.5369358,0.03821631,98.24560037],[4.53693678,0.03821788,98.24717839],[4.53693776,0.03821946,98.24875887],[4.53693874,0.03822103,98.25034176],[4.53693972,0.03822261,98.25192704],[4.5369407,0.03822419,98.25351467],[4.53694169,0.03822576,98.25510459],[4.53694267,0.03822734,98.25669679],[4.53694365,0.03822891,98.25829121],[4.53694463,0.03823049,98.25988782],[4.53694532,0.03823216,98.26046842],[4.53694579,0.03823389,98.26030925],[4.53694627,0.03823563,98.26014775],[4.53694674,0.03823737,98.25998393],[4.53694722,0.03823911,98.25981778],[4.53694769,0.03824084,98.25964933],[4.53694817,0.03824258,98.25947858],[4.53694864,0.03824432,98.25930553],[4.53694912,0.03824606,98.2591302],[4.53694959,0.0382478,98.2589526],[4.53695007,0.03824953,98.25877273],[4.53695054,0.03825127,98.25859062],[4.53695102,0.03825301,98.25840625],[4.53695149,0.03825475,98.25821966],[4.53695197,0.03825649,98.25803084],[4.53695244,0.03825823,98.2578398],[4.53695292,0.03825996,98.25764657],[4.53695339,0.0382617,98.25745115],[4.53695387,0.03826344,98.25725354],[4.53695434,0.03826518,98.25705377],[4.53695482,0.03826692,98.25685185],[4.53695529,0.03826866,98.25664778],[4.53695577,0.0382704,98.25644158],[4.53695624,0.03827214,98.25623325],[4.53695672,0.03827388,98.25602282],[4.53695719,0.03827561,98.2558103],[4.53695767,0.03827735,98.25559568],[4.53695814,0.03827909,98.25537898],[4.53695862,0.03828083,98.25516022],[4.53695909,0.03828257,98.2549394],[4.53695957,0.03828431,98.25471653],[4.53696004,0.03828605,98.25449163],[4.53696052,0.03828779,98.25426471],[4.536961,0.03828953,98.25403578],[4.53696147,0.03829127,98.25380484],[4.53696195,0.03829301,98.25357192],[4.53696242,0.03829475,98.25333703],[4.5369629,0.03829649,98.25310017],[4.53696338,0.03829822,98.25286136],[4.53696385,0.03829996,98.25262061],[4.53696433,0.0383017,98.25237793],[4.53696481,0.03830344,98.25213335],[4.53696528,0.03830518,98.25188686],[4.53696576,0.03830693,98.25163849],[4.53696624,0.03830867,98.25138825],[4.53696672,0.03831041,98.25113615],[4.53696719,0.03831215,98.2508822],[4.53696767,0.03831388,98.25062642],[4.53696815,0.03831562,98.25036883],[4.53696863,0.03831736,98.25010943],[4.5369691,0.0383191,98.24984825],[4.53696958,0.03832084,98.24958529],[4.53697006,0.03832258,98.24932057],[4.53697054,0.03832432,98.2490541],[4.53697102,0.03832606,98.24878591],[4.5369715,0.0383278,98.248516],[4.53697198,0.03832954,98.24824439],[4.53697246,0.03833127,98.2479711],[4.53697294,0.03833301,98.24769614],[4.53697342,0.03833475,98.24741953],[4.5369739,0.03833649,98.24714127],[4.53697438,0.03833823,98.24686134],[4.53697486,0.03833997,98.24657969],[4.53697534,0.03834171,98.24629628],[4.53697582,0.03834345,98.24601107],[4.5369763,0.03834518,98.24572401],[4.53697679,0.03834692,98.24543507],[4.53697727,0.03834866,98.2451442],[4.53697775,0.0383504,98.24485137],[4.53697823,0.03835214,98.24455655],[4.53697872,0.03835388,98.24425971],[4.5369792,0.03835562,98.24396081],[4.53697968,0.03835735,98.24365982],[4.53698016,0.03835909,98.24335671],[4.53698065,0.03836083,98.24305144],[4.53698113,0.03836257,98.24274399],[4.53698161,0.03836431,98.24243432],[4.5369821,0.03836605,98.2421224],[4.53698258,0.03836778,98.24180819],[4.53698307,0.03836952,98.24149166],[4.53698355,0.03837126,98.24117279],[4.53698403,0.038373,98.24085154],[4.53698452,0.03837474,98.24052787],[4.536985,0.03837648,98.24020175],[4.53698549,0.03837822,98.23987315],[4.53698597,0.03837995,98.23954205],[4.53698646,0.03838169,98.23920839],[4.53698694,0.03838343,98.23887217],[4.53698742,0.03838517,98.23853333],[4.53698791,0.03838691,98.23819186],[4.53698839,0.03838865,98.23784771],[4.53698888,0.03839038,98.23750085],[4.53698936,0.03839212,98.23715126],[4.53698985,0.03839386,98.2367989],[4.53699033,0.0383956,98.23644374],[4.53699082,0.03839734,98.23608575],[4.5369913,0.03839908,98.23572489],[4.53699179,0.03840082,98.23536115],[4.53699227,0.03840256,98.23499449],[4.53699276,0.03840429,98.2346249],[4.53699324,0.03840603,98.23425234],[4.53699373,0.03840777,98.2338768],[4.53699421,0.03840951,98.23349825],[4.53699469,0.03841125,98.23311666],[4.53699518,0.03841299,98.23273202],[4.53699566,0.03841473,98.23234429],[4.53699615,0.03841647,98.23195349],[4.53699663,0.03841821,98.23155963],[4.53699712,0.03841995,98.23116271],[4.5369976,0.03842168,98.23076276],[4.53699808,0.03842342,98.23035978],[4.53699857,0.03842516,98.22995378],[4.53699905,0.0384269,98.22954479],[4.53699954,0.03842864,98.2291328],[4.53700002,0.03843038,98.22871784],[4.53700051,0.03843212,98.22829991],[4.53700099,0.03843386,98.22787902],[4.53700147,0.0384356,98.2274552],[4.53700196,0.03843734,98.22702846],[4.53700244,0.03843908,98.22659879],[4.53700293,0.03844082,98.22616623],[4.53700341,0.03844256,98.22573078],[4.53700389,0.0384443,98.22529245],[4.53700438,0.03844604,98.22485126],[4.53700486,0.03844778,98.22440722],[4.53700535,0.03844952,98.22396034],[4.53700583,0.03845126,98.22351064],[4.53700632,0.03845299,98.22305813],[4.5370068,0.03845473,98.22260282],[4.53700729,0.03845647,98.22214472],[4.53700777,0.03845821,98.22168386],[4.53700826,0.03845995,98.22122023],[4.53700874,0.03846169,98.22075386],[4.53700923,0.03846343,98.22028475],[4.53700971,0.03846516,98.21981293],[4.53701019,0.0384669,98.2193384],[4.53701068,0.03846864,98.21886117],[4.53701116,0.03847038,98.21838127],[4.53701165,0.03847212,98.21789869],[4.53701213,0.03847386,98.21741344],[4.53701262,0.0384756,98.21692554],[4.53701311,0.03847734,98.21643499],[4.53701359,0.03847908,98.2159418],[4.53701408,0.03848082,98.21544597],[4.53701456,0.03848256,98.21494751],[4.53701505,0.0384843,98.21444644],[4.53701554,0.03848604,98.21394275],[4.53701602,0.03848778,98.21343646],[4.53701651,0.03848953,98.21292757],[4.537017,0.03849127,98.21241609],[4.53701748,0.03849301,98.21190203],[4.53701797,0.03849475,98.21138539],[4.53701846,0.03849649,98.21086618],[4.53701894,0.03849823,98.21034442],[4.53701943,0.03849997,98.20982009],[4.53701992,0.03850171,98.20929322],[4.5370204,0.03850345,98.20876381],[4.53702089,0.03850519,98.20823187],[4.53702138,0.03850693,98.20769739],[4.53702187,0.03850867,98.2071604],[4.53702235,0.03851041,98.20662089],[4.53702284,0.03851215,98.20607888],[4.53702333,0.03851389,98.20553436],[4.53702382,0.03851563,98.20498734],[4.5370243,0.03851737,98.20443784],[4.53702479,0.03851911,98.20388585],[4.53702528,0.03852085,98.20333138],[4.53702577,0.03852259,98.20277444],[4.53702626,0.03852433,98.20221504],[4.53702675,0.03852607,98.20165317],[4.53702723,0.03852781,98.20108885],[4.53702772,0.03852956,98.20052207],[4.53702821,0.0385313,98.19995285],[4.5370287,0.03853304,98.19938119],[4.53702919,0.03853478,98.19880713],[4.53702968,0.03853652,98.19823069],[4.53703017,0.03853826,98.19765188],[4.53703065,0.03854,98.19707074],[4.53703114,0.03854174,98.19648729],[4.53703163,0.03854348,98.19590156],[4.53703212,0.03854522,98.19531355],[4.53703261,0.03854696,98.19472331],[4.5370331,0.0385487,98.19413085],[4.53703359,0.03855044,98.19353616],[4.53703408,0.03855218,98.1929392],[4.53703457,0.03855392,98.19233993],[4.53703506,0.03855566,98.1917383],[4.53703555,0.0385574,98.19113428],[4.53703604,0.03855914,98.19052781],[4.53703653,0.03856089,98.18991886],[4.53703702,0.03856263,98.18930738],[4.53703751,0.03856437,98.18869333],[4.537038,0.03856611,98.18807666],[4.53703849,0.03856785,98.18745733],[4.53703898,0.03856959,98.1868353],[4.53703947,0.03857133,98.18621048],[4.53703996,0.03857307,98.18558273],[4.53704045,0.03857481,98.18495193],[4.53704094,0.03857655,98.18431795],[4.53704143,0.03857829,98.18368064],[4.53704193,0.03858005,98.18303989],[4.53704242,0.03858179,98.18239556],[4.53704291,0.03858353,98.18174752],[4.53704339,0.03858527,98.18109564],[4.53704388,0.03858701,98.18043979],[4.53704437,0.03858875,98.17977984],[4.53704486,0.03859049,98.17911567],[4.53704534,0.03859223,98.17844715],[4.53704583,0.03859397,98.17777416],[4.53704632,0.03859571,98.17709656],[4.5370468,0.03859744,98.17641423],[4.53704729,0.03859918,98.17572708],[4.53704777,0.03860092,98.17503514],[4.53704825,0.03860266,98.17433849],[4.53704874,0.0386044,98.17363719],[4.53704922,0.03860614,98.17293131],[4.53704971,0.03860788,98.17222092],[4.53705019,0.03860962,98.17150609],[4.53705067,0.03861136,98.17078688],[4.53705115,0.0386131,98.17006337],[4.53705164,0.03861483,98.16933561],[4.53705212,0.03861657,98.16860369],[4.5370526,0.03861831,98.16786765],[4.53705309,0.03862005,98.16712757],[4.53705357,0.03862179,98.1663835],[4.53705405,0.03862352,98.16563552],[4.53705454,0.03862526,98.16488369],[4.53705502,0.038627,98.16412807],[4.5370555,0.03862873,98.16336873],[4.53705599,0.03863047,98.16260585],[4.53705647,0.03863221,98.16183935],[4.53705696,0.03863394,98.16106815],[4.53705744,0.03863568,98.16029092],[4.53705793,0.03863741,98.15950633],[4.53705841,0.03863915,98.15871307],[4.53705889,0.03864089,98.15790981],[4.53705937,0.03864262,98.15709529],[4.53705985,0.03864436,98.1562682],[4.53706032,0.0386461,98.15542729],[4.5370608,0.03864784,98.15457313],[4.53706127,0.03864958,98.15371381],[4.53706175,0.03865132,98.15285929],[4.53706224,0.03865309,98.15201942],[4.53706274,0.03865489,98.15120397],[4.53706326,0.03865672,98.1504226],[4.53706379,0.03865859,98.1496849],[4.53706432,0.03866049,98.14900031],[4.53706487,0.03866242,98.14837822],[4.53706542,0.03866439,98.14782787],[4.53706542,0.03866439,98.14782787]]],"type":"Polygon"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000400","rules":[{"value":"barred"}],"id":1,"type":"restricted","predecessorId":0,"sOffset":0.0}},{"geometry":{"coordinates":[[[4.53681192,0.03823866,97.98552696],[4.53681139,0.03823693,97.98577991],[4.53681086,0.03823519,97.98603293],[4.53681074,0.03823478,97.98609238],[4.53685347,0.03822118,97.98609238],[4.5368536,0.03822159,97.98603293],[4.53685412,0.03822332,97.98577991],[4.53685465,0.03822505,97.98552696],[4.53681192,0.03823866,97.98552696]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-4,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1000400","id":-4,"type":"none","predecessorId":-4,"sOffset":53.4123301716}},{"geometry":{"coordinates":[[[4.53685465,0.03822505,97.98552696],[4.53685412,0.03822332,97.98577991],[4.5368536,0.03822159,97.98603293],[4.53685347,0.03822118,97.98609238],[4.53685701,0.03822005,97.99809997],[4.53685713,0.03822046,97.9980418],[4.53685766,0.03822219,97.99779422],[4.53685819,0.03822392,97.99754667],[4.53685465,0.03822505,97.98552696]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000400","id":-3,"type":"shoulder","predecessorId":-3,"sOffset":53.4123301716}},{"geometry":{"coordinates":[[[4.53685819,0.03822392,97.99754667],[4.53685766,0.03822219,97.99779422],[4.53685713,0.03822046,97.9980418],[4.53685701,0.03822005,97.99809997],[4.5368877,0.03821029,98.10224157],[4.53688782,0.03821069,98.10221013],[4.53688835,0.03821242,98.10207618],[4.53688887,0.03821415,98.10194201],[4.53685819,0.03822392,97.99754667]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000400","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-2,"sOffset":53.4123301716}},{"geometry":{"coordinates":[[[4.53688887,0.03821415,98.10194201],[4.53688835,0.03821242,98.10207618],[4.53688782,0.03821069,98.10221013],[4.5368877,0.03821029,98.10224157],[4.53691888,0.03820036,98.20806882],[4.53691901,0.03820076,98.20807405],[4.53691954,0.03820248,98.2080961],[4.53692008,0.0382042,98.20811777],[4.53688887,0.03821415,98.10194201]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000400","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-1,"sOffset":53.4123301716}},{"geometry":{"coordinates":[[[4.53692008,0.0382042,98.20811777],[4.53691954,0.03820248,98.2080961],[4.53691901,0.03820076,98.20807405],[4.53691888,0.03820036,98.20806882],[4.53692102,0.03819968,98.21531247],[4.53692142,0.0382,98.2162665],[4.53692314,0.03820134,98.22033236],[4.53692693,0.03820202,98.23141893],[4.53692008,0.0382042,98.20811777]]],"type":"Polygon"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000400","rules":[{"value":"barred"}],"id":1,"type":"restricted","predecessorId":1,"sOffset":53.4123301716}},{"geometry":{"coordinates":[[[4.53692693,0.03820202,98.23141893],[4.53692314,0.03820134,98.22033236],[4.53692142,0.0382,98.2162665],[4.53692102,0.03819968,98.21531247],[4.5369259,0.03819812,98.21531247],[4.53692601,0.03819853,98.2162665],[4.53692648,0.03820028,98.22033236],[4.53692694,0.03820202,98.23141893],[4.53692693,0.03820202,98.23141893]]],"type":"Polygon"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1000400","id":2,"type":"none","predecessorId":0,"sOffset":53.4123301716}},{"geometry":{"coordinates":[[[4.53681074,0.03823478,97.98609238],[4.53681021,0.03823304,97.98634425],[4.53680967,0.03823131,97.98659557],[4.53680914,0.03822957,97.98684633],[4.53680861,0.03822783,97.98709655],[4.53680808,0.03822609,97.98734623],[4.53680755,0.03822435,97.98759537],[4.53680702,0.03822262,97.98784398],[4.53680649,0.03822088,97.98809205],[4.53680596,0.03821914,97.98833959],[4.53680543,0.0382174,97.98858661],[4.5368049,0.03821566,97.98883311],[4.53680437,0.03821392,97.98907909],[4.53680384,0.03821218,97.98932456],[4.53680331,0.03821044,97.98956952],[4.53680278,0.0382087,97.98981397],[4.53680225,0.03820696,97.99005791],[4.53680172,0.03820522,97.99030136],[4.53680119,0.03820348,97.99054431],[4.53680066,0.03820174,97.99078677],[4.53680013,0.0382,97.99102875],[4.5367996,0.03819826,97.99127024],[4.53679907,0.03819652,97.99151124],[4.53679853,0.03819478,97.99175177],[4.536798,0.03819304,97.99199183],[4.53679747,0.0381913,97.99223142],[4.53679694,0.03818955,97.99247054],[4.53679641,0.03818781,97.9927092],[4.53679588,0.03818607,97.99294741],[4.53679535,0.03818433,97.99318516],[4.53679482,0.03818259,97.99342249],[4.53679429,0.03818084,97.99365952],[4.53679376,0.0381791,97.99389634],[4.53679323,0.03817736,97.99413306],[4.53679271,0.03817562,97.99436977],[4.53679218,0.03817387,97.99460657],[4.53679165,0.03817213,97.99484356],[4.53679112,0.03817038,97.99508083],[4.53679059,0.03816864,97.99531849],[4.53679006,0.0381669,97.99555663],[4.53678953,0.03816515,97.99579534],[4.53678901,0.03816341,97.99603472],[4.53678848,0.03816166,97.99627488],[4.53678795,0.03815992,97.99651589],[4.53678743,0.03815817,97.99675786],[4.5367869,0.03815642,97.99700088],[4.53678638,0.03815468,97.99724505],[4.53678586,0.03815293,97.99749041],[4.53678533,0.03815118,97.99773703],[4.53678481,0.03814944,97.99798497],[4.53678429,0.03814769,97.99823428],[4.53678377,0.03814594,97.99848502],[4.53678325,0.0381442,97.99873725],[4.53678273,0.03814246,97.99899101],[4.53678221,0.03814071,97.99924636],[4.53678169,0.03813896,97.99950337],[4.53678118,0.03813721,97.99976208],[4.53678066,0.03813546,98.00002254],[4.53678014,0.03813371,98.00028482],[4.53677963,0.03813196,98.00054897],[4.53677911,0.03813021,98.00081504],[4.5367786,0.03812846,98.00108307],[4.53677809,0.03812671,98.00135305],[4.53677758,0.03812496,98.00162488],[4.53677707,0.03812321,98.00189843],[4.53677656,0.03812146,98.00217362],[4.53677605,0.0381197,98.00245033],[4.53677554,0.03811795,98.00272845],[4.53677503,0.0381162,98.0030079],[4.53677453,0.03811445,98.00328855],[4.53677402,0.0381127,98.00357031],[4.53677352,0.03811094,98.00385308],[4.53677301,0.03810919,98.00413675],[4.53677251,0.03810744,98.00442122],[4.536772,0.03810568,98.00470639],[4.5367715,0.03810393,98.00499216],[4.536771,0.03810218,98.00527843],[4.53677049,0.03810042,98.0055651],[4.53676999,0.03809867,98.00585207],[4.53676949,0.03809692,98.00613924],[4.53676899,0.03809516,98.00642652],[4.53676849,0.03809341,98.0067138],[4.53676799,0.03809166,98.00700099],[4.53676749,0.0380899,98.00728799],[4.53676699,0.03808815,98.00757471],[4.53676648,0.0380864,98.00786105],[4.53676598,0.03808464,98.00814691],[4.53676548,0.03808289,98.00843219],[4.53676498,0.03808113,98.00871681],[4.53676448,0.03807938,98.00900067],[4.53676398,0.03807763,98.00928368],[4.53676348,0.03807587,98.00956574],[4.53676298,0.03807412,98.00984675],[4.53676248,0.03807237,98.01012664],[4.53676198,0.03807061,98.01040529],[4.53676148,0.03806886,98.01068263],[4.53676098,0.0380671,98.01095856],[4.53676048,0.03806535,98.01123299],[4.53675998,0.0380636,98.01150582],[4.53675948,0.03806184,98.01177698],[4.53675897,0.03806009,98.01204639],[4.53675847,0.03805834,98.0123141],[4.53675797,0.03805659,98.01258019],[4.53675746,0.03805483,98.01284473],[4.53675696,0.03805308,98.01310779],[4.53675646,0.03805133,98.01336945],[4.53675595,0.03804958,98.01362978],[4.53675545,0.03804782,98.01388885],[4.53675494,0.03804607,98.01414673],[4.53675444,0.03804432,98.01440351],[4.53675393,0.03804257,98.01465929],[4.53675343,0.03804081,98.0149142],[4.53675293,0.03803906,98.01516834],[4.53675242,0.03803731,98.01542185],[4.53675192,0.03803556,98.01567484],[4.53675141,0.03803381,98.01592742],[4.53675091,0.03803205,98.01617972],[4.5367504,0.0380303,98.01643184],[4.5367499,0.03802855,98.0166839],[4.53674939,0.0380268,98.01693602],[4.53674889,0.03802505,98.01718832],[4.53674839,0.03802329,98.0174409],[4.53674788,0.03802154,98.01769387],[4.53674738,0.03801979,98.01794737],[4.53674688,0.03801804,98.01820149],[4.53674637,0.03801628,98.01845635],[4.53674587,0.03801453,98.01871208],[4.53674537,0.03801278,98.01896884],[4.53674487,0.03801102,98.01922668],[4.53674437,0.03800927,98.01948563],[4.53674387,0.03800752,98.01974568],[4.53674337,0.03800576,98.02000683],[4.53674287,0.03800401,98.02026907],[4.53674238,0.03800226,98.02053241],[4.53674188,0.0380005,98.02079686],[4.53674138,0.03799875,98.0210624],[4.53674089,0.03799699,98.02132904],[4.53674039,0.03799524,98.02159677],[4.53673989,0.03799348,98.02186561],[4.5367394,0.03799173,98.02213555],[4.53673891,0.03798997,98.02240659],[4.53673841,0.03798822,98.02267872],[4.53673792,0.03798646,98.02295196],[4.53673743,0.03798471,98.0232263],[4.53673693,0.03798295,98.02350174],[4.53673644,0.0379812,98.02377828],[4.53673595,0.03797944,98.02405592],[4.53673546,0.03797768,98.02433466],[4.53673497,0.03797593,98.02461451],[4.53673448,0.03797417,98.02489547],[4.53673399,0.03797242,98.02517752],[4.53673351,0.03797066,98.02546069],[4.53673302,0.0379689,98.02574496],[4.53673253,0.03796715,98.02603034],[4.53673204,0.03796539,98.02631684],[4.53673156,0.03796363,98.02660446],[4.53673107,0.03796187,98.02689319],[4.53673059,0.03796012,98.02718295],[4.5367301,0.03795836,98.02747365],[4.53672962,0.0379566,98.0277652],[4.53672914,0.03795484,98.0280575],[4.53672865,0.03795309,98.02835046],[4.53672817,0.03795133,98.02864399],[4.53672769,0.03794957,98.028938],[4.5367272,0.03794781,98.02923238],[4.53672672,0.03794605,98.02952706],[4.53672624,0.0379443,98.02982195],[4.53672576,0.03794254,98.030117],[4.53672528,0.03794078,98.03041216],[4.53672479,0.03793902,98.03070741],[4.53672431,0.03793726,98.03100271],[4.53672383,0.0379355,98.031298],[4.53672335,0.03793375,98.03159327],[4.53672287,0.03793199,98.03188846],[4.53672239,0.03793023,98.03218351],[4.5367219,0.03792847,98.03247838],[4.53672142,0.03792671,98.03277297],[4.53672094,0.03792495,98.03306723],[4.53672046,0.0379232,98.03336107],[4.53671998,0.03792144,98.03365446],[4.5367195,0.03791968,98.03394735],[4.53671902,0.03791792,98.03423975],[4.53671853,0.03791616,98.03453164],[4.53671805,0.0379144,98.03482302],[4.53671757,0.03791265,98.03511387],[4.53671709,0.03791089,98.03540418],[4.5367166,0.03790913,98.03569395],[4.53671612,0.03790737,98.03598316],[4.53671564,0.03790561,98.0362718],[4.53671516,0.03790386,98.03655986],[4.53671467,0.0379021,98.03684733],[4.53671419,0.03790034,98.03713421],[4.53671371,0.03789858,98.03742047],[4.53671322,0.03789683,98.03770612],[4.53671274,0.03789507,98.03799113],[4.53671226,0.03789331,98.0382755],[4.53671177,0.03789155,98.03855922],[4.53671129,0.0378898,98.03884227],[4.5367108,0.03788804,98.03912465],[4.53671033,0.03788632,98.03940635],[4.53670985,0.03788457,98.03968734],[4.53670936,0.03788281,98.03996763],[4.53670888,0.03788106,98.04024719],[4.53670839,0.0378793,98.040526],[4.5367079,0.03787754,98.04080402],[4.53670742,0.03787579,98.04108123],[4.53670693,0.03787403,98.04135759],[4.53670645,0.03787228,98.04163308],[4.53670596,0.03787052,98.04190773],[4.53670547,0.03786877,98.04218188],[4.53670498,0.03786701,98.0424559],[4.5367045,0.03786526,98.04273021],[4.53670401,0.03786351,98.04300519],[4.53670352,0.03786175,98.04328124],[4.53670304,0.03786,98.04355876],[4.53670255,0.03785824,98.04383817],[4.53670207,0.03785649,98.04411986],[4.53670158,0.03785473,98.04440425],[4.5367011,0.03785298,98.04469175],[4.53670062,0.03785122,98.04498276],[4.53670014,0.03784947,98.04527769],[4.53669966,0.03784771,98.04557695],[4.53669919,0.03784596,98.04588094],[4.53669871,0.0378442,98.04619008],[4.53669824,0.03784244,98.04650466],[4.53669777,0.03784069,98.04682455],[4.5366973,0.03783893,98.0471495],[4.53669683,0.03783717,98.04747927],[4.53669636,0.03783541,98.04781361],[4.5366959,0.03783366,98.04815228],[4.53669543,0.0378319,98.04849503],[4.53669497,0.03783014,98.04884162],[4.53669451,0.03782838,98.0491918],[4.53669405,0.03782662,98.04954533],[4.53669359,0.03782486,98.04990196],[4.53669313,0.0378231,98.05026144],[4.53669268,0.03782134,98.05062354],[4.53669222,0.03781958,98.050988],[4.53669176,0.03781782,98.05135459],[4.53669131,0.03781606,98.05172305],[4.53669085,0.0378143,98.05209313],[4.5366904,0.03781254,98.05246461],[4.53668994,0.03781078,98.05283722],[4.53668949,0.03780902,98.05321072],[4.53668903,0.03780727,98.05358486],[4.53668858,0.03780551,98.05395942],[4.53668813,0.03780375,98.05433417],[4.53668767,0.03780199,98.05470888],[4.53668722,0.03780023,98.05508335],[4.53668676,0.03779847,98.05545735],[4.53668631,0.03779671,98.05583068],[4.53668585,0.03779495,98.05620312],[4.53668539,0.0377932,98.05657451],[4.53668494,0.03779144,98.05694494],[4.53668448,0.03778968,98.05731453],[4.53668402,0.03778792,98.05768343],[4.53668356,0.03778617,98.05805178],[4.5366831,0.03778441,98.0584197],[4.53668265,0.03778265,98.05878734],[4.53668219,0.0377809,98.05915484],[4.53668173,0.03777914,98.05952233],[4.53668127,0.03777739,98.05988995],[4.53668081,0.03777563,98.06025784],[4.53668035,0.03777387,98.06062614],[4.53667989,0.03777212,98.06099498],[4.53667943,0.03777036,98.0613645],[4.53667897,0.03776861,98.06173485],[4.53667851,0.03776685,98.06210615],[4.53667805,0.0377651,98.06247855],[4.53667759,0.03776334,98.06285219],[4.53667713,0.03776159,98.0632272],[4.53667667,0.03775983,98.06360372],[4.53667621,0.03775808,98.0639819],[4.53667575,0.03775632,98.06436188],[4.5366753,0.03775457,98.06474376],[4.53667484,0.03775281,98.06512756],[4.53667438,0.03775106,98.06551329],[4.53667393,0.0377493,98.06590091],[4.53667347,0.03774755,98.06629043],[4.53667301,0.03774579,98.06668181],[4.53667256,0.03774404,98.06707504],[4.5366721,0.03774228,98.06747009],[4.53667165,0.03774053,98.06786695],[4.53667119,0.03773877,98.0682656],[4.53667074,0.03773702,98.068666],[4.53667028,0.03773526,98.06906815],[4.53666983,0.03773351,98.06947202],[4.53666938,0.03773175,98.06987759],[4.53666892,0.03773,98.07028483],[4.53666847,0.03772824,98.07069374],[4.53666802,0.03772649,98.07110428],[4.53666757,0.03772474,98.07151644],[4.53666711,0.03772298,98.0719302],[4.53666666,0.03772123,98.07234553],[4.53666621,0.03771947,98.07276241],[4.53666576,0.03771772,98.07318082],[4.53666531,0.03771596,98.07360074],[4.53666486,0.03771421,98.07402215],[4.5366644,0.03771246,98.07444503],[4.53666395,0.0377107,98.07486935],[4.5366635,0.03770895,98.0752951],[4.53666305,0.03770719,98.07572225],[4.5366626,0.03770544,98.07615076],[4.53666215,0.03770369,98.0765806],[4.5366617,0.03770193,98.07701174],[4.53666125,0.03770018,98.07744414],[4.5366608,0.03769843,98.07787778],[4.53666035,0.03769667,98.07831262],[4.5366599,0.03769492,98.07874862],[4.53665945,0.03769317,98.07918576],[4.536659,0.03769142,98.07962399],[4.53665855,0.03768966,98.08006329],[4.5366581,0.03768791,98.08050363],[4.53665764,0.03768616,98.08094496],[4.53665719,0.03768441,98.08138726],[4.53665674,0.03768265,98.0818305],[4.53665629,0.0376809,98.08227466],[4.53665584,0.03767915,98.0827197],[4.53665539,0.0376774,98.08316562],[4.53665494,0.03767565,98.08361237],[4.53665449,0.0376739,98.08405994],[4.53665403,0.03767215,98.0845083],[4.53665358,0.03767039,98.08495742],[4.53665313,0.03766864,98.08540729],[4.53665268,0.03766689,98.08585787],[4.53665222,0.03766514,98.08630914],[4.53665177,0.03766339,98.08676107],[4.53665132,0.03766164,98.08721364],[4.53665086,0.03765989,98.08766683],[4.53665041,0.03765814,98.0881206],[4.53664996,0.03765639,98.08857494],[4.5366495,0.03765464,98.08902981],[4.53664905,0.03765289,98.08948519],[4.53664859,0.03765115,98.08994106],[4.53664814,0.0376494,98.09039739],[4.53664768,0.03764765,98.09085416],[4.53664722,0.0376459,98.09131133],[4.53664677,0.03764415,98.09176888],[4.53664631,0.0376424,98.09222679],[4.53664585,0.03764066,98.09268503],[4.5366454,0.03763891,98.09314358],[4.53664494,0.03763716,98.0936024],[4.53664448,0.03763542,98.09406148],[4.53664402,0.03763367,98.09452078],[4.53664356,0.03763192,98.09498029],[4.5366431,0.03763018,98.09543997],[4.53664264,0.03762843,98.09589979],[4.53664218,0.03762668,98.09635974],[4.53664172,0.03762494,98.09681979],[4.53664125,0.03762319,98.0972799],[4.53664079,0.03762145,98.09774007],[4.53664033,0.0376197,98.09820032],[4.53663987,0.03761796,98.09866078],[4.5366394,0.03761622,98.09912155],[4.53663894,0.03761447,98.09958276],[4.53663847,0.03761273,98.10004453],[4.53663801,0.03761098,98.10050695],[4.53663754,0.03760924,98.10097014],[4.53663707,0.0376075,98.10143423],[4.53663661,0.03760575,98.10189931],[4.53663614,0.03760401,98.1023655],[4.53663567,0.03760226,98.10283291],[4.53663521,0.03760052,98.10330166],[4.53663474,0.03759878,98.10377187],[4.53663427,0.03759703,98.10424363],[4.5366338,0.03759529,98.10471707],[4.53663334,0.03759355,98.1051923],[4.53663287,0.0375918,98.10566944],[4.5366324,0.03759006,98.10614859],[4.53663194,0.03758832,98.10662988],[4.53663147,0.03758657,98.10711341],[4.536631,0.03758483,98.10759931],[4.53663054,0.03758309,98.10808768],[4.53663007,0.03758134,98.10857864],[4.5366296,0.0375796,98.10907231],[4.53662914,0.03757785,98.1095688],[4.53662867,0.03757611,98.11006822],[4.53662821,0.03757437,98.1105707],[4.53662774,0.03757262,98.11107634],[4.53662728,0.03757088,98.11158527],[4.53662681,0.03756913,98.1120976],[4.53662635,0.03756739,98.11261344],[4.53662589,0.03756565,98.11313292],[4.53662543,0.0375639,98.11365614],[4.53662496,0.03756216,98.11418322],[4.5366245,0.03756041,98.11471429],[4.53662404,0.03755867,98.11524945],[4.53662358,0.03755692,98.11578884],[4.53662313,0.03755517,98.11633249],[4.53662267,0.03755343,98.11688022],[4.53662221,0.03755168,98.11743177],[4.53662175,0.03754994,98.11798686],[4.5366213,0.03754819,98.11854524],[4.53662084,0.03754644,98.11910665],[4.53662039,0.0375447,98.11967082],[4.53661993,0.03754295,98.12023749],[4.53661947,0.0375412,98.12080639],[4.53661902,0.03753946,98.12137727],[4.53661856,0.03753771,98.12194986],[4.53661811,0.03753597,98.12252388],[4.53661765,0.03753422,98.12309909],[4.53661719,0.03753247,98.12367522],[4.53661674,0.03753073,98.12425199],[4.53661628,0.03752898,98.12482915],[4.53661582,0.03752724,98.12540643],[4.53661536,0.03752549,98.12598371],[4.5366149,0.03752375,98.12656147],[4.53661444,0.037522,98.12714036],[4.53661398,0.03752026,98.127721],[4.53661352,0.03751851,98.12830402],[4.53661306,0.03751676,98.12889006],[4.5366126,0.03751502,98.12947976],[4.53661214,0.03751327,98.13007375],[4.53661169,0.03751153,98.13067266],[4.53661123,0.03750978,98.13127714],[4.53661077,0.03750804,98.13188782],[4.53661032,0.03750629,98.13250533],[4.53660987,0.03750454,98.13313031],[4.53660942,0.03750279,98.13376341],[4.53660897,0.03750105,98.13440498],[4.53660852,0.0374993,98.13505436],[4.53660808,0.03749755,98.13571059],[4.53660764,0.0374958,98.13637276],[4.53660719,0.03749405,98.1370399],[4.53660675,0.0374923,98.13771109],[4.53660631,0.03749055,98.13838539],[4.53660587,0.0374888,98.13906184],[4.53660543,0.03748705,98.13973953],[4.53660499,0.0374853,98.14041751],[4.53660454,0.03748355,98.14109484],[4.5366041,0.0374818,98.14177058],[4.53660365,0.03748005,98.14244383],[4.5366032,0.03747831,98.14311467],[4.53660275,0.03747656,98.14378411],[4.5366023,0.03747481,98.14445321],[4.53660185,0.03747306,98.14512305],[4.5366014,0.03747132,98.14579467],[4.53660095,0.03746957,98.14646915],[4.5366005,0.03746782,98.14714756],[4.53660005,0.03746607,98.14783094],[4.5365996,0.03746433,98.14852038],[4.53659915,0.03746258,98.14921693],[4.53659871,0.03746083,98.14992166],[4.53659827,0.03745908,98.15063562],[4.53659783,0.03745733,98.1513599],[4.53659739,0.03745558,98.15209553],[4.53659696,0.03745383,98.1528436],[4.53659653,0.03745207,98.15360516],[4.5365961,0.03745032,98.15438127],[4.53659568,0.03744856,98.15517293],[4.53659526,0.03744681,98.15597968],[4.53659485,0.03744505,98.15679962],[4.53659444,0.03744329,98.15763076],[4.53659403,0.03744154,98.15847114],[4.53659362,0.03743978,98.15931876],[4.53659322,0.03743802,98.16017166],[4.53659281,0.03743626,98.16102785],[4.5365924,0.0374345,98.16188536],[4.536592,0.03743274,98.16274222],[4.53659159,0.03743098,98.16359645],[4.53659118,0.03742923,98.16444608],[4.53659076,0.03742747,98.16528913],[4.53659034,0.03742571,98.16612364],[4.53658992,0.03742396,98.16694764],[4.5365895,0.03742221,98.16775969],[4.53658906,0.03742045,98.16856045],[4.53658863,0.0374187,98.16935107],[4.53658819,0.03741695,98.17013271],[4.53658774,0.0374152,98.17090652],[4.5365873,0.03741346,98.17167367],[4.53658685,0.03741171,98.1724353],[4.5365864,0.03740996,98.17319257],[4.53658594,0.03740822,98.17394634],[4.53658549,0.03740647,98.17469721],[4.53658503,0.03740472,98.17544578],[4.53658457,0.03740298,98.17619265],[4.53658411,0.03740123,98.1769384],[4.53658365,0.03739949,98.17768365],[4.53658319,0.03739774,98.17842897],[4.53658273,0.037396,98.17917497],[4.53658226,0.03739426,98.17992223],[4.5365818,0.03739251,98.18067134],[4.53658134,0.03739077,98.18142291],[4.53658087,0.03738902,98.18217752],[4.53658041,0.03738728,98.18293575],[4.53657995,0.03738553,98.18369821],[4.53657948,0.03738379,98.18446536],[4.53657902,0.03738204,98.18523726],[4.53657856,0.0373803,98.1860139],[4.5365781,0.03737855,98.18679522],[4.53657764,0.03737681,98.1875812],[4.53657718,0.03737506,98.18837182],[4.53657673,0.03737332,98.18916702],[4.53657627,0.03737157,98.18996679],[4.53657581,0.03736983,98.1907711],[4.53657536,0.03736808,98.19157989],[4.5365749,0.03736633,98.19239316],[4.53657444,0.03736459,98.19321086],[4.53657399,0.03736284,98.19403296],[4.53657354,0.0373611,98.19485942],[4.53657308,0.03735935,98.19569023],[4.53657263,0.0373576,98.19652533],[4.53657218,0.03735585,98.19736471],[4.53657172,0.03735411,98.19820832],[4.53657127,0.03735236,98.19905612],[4.53657082,0.03735061,98.19990791],[4.53657037,0.03734887,98.20076351],[4.53656992,0.03734712,98.2016227],[4.53656947,0.03734537,98.20248529],[4.53656902,0.03734362,98.20335108],[4.53656857,0.03734188,98.20421986],[4.53656811,0.03734013,98.20509143],[4.53656766,0.03733838,98.2059656],[4.53656721,0.03733663,98.20684216],[4.53656676,0.03733489,98.20772093],[4.53656631,0.03733314,98.20860169],[4.53656586,0.03733139,98.20948426],[4.5365654,0.03732964,98.21036843],[4.53656495,0.0373279,98.21125401],[4.5365645,0.03732615,98.21214081],[4.53656404,0.0373244,98.21302863],[4.53656359,0.03732266,98.21391728],[4.53656313,0.03732091,98.21480657],[4.53656268,0.03731916,98.2156963],[4.53656222,0.03731742,98.21658629],[4.53656176,0.03731567,98.21747634],[4.5365613,0.03731393,98.21836631],[4.53656084,0.03731218,98.21925626],[4.53656038,0.03731044,98.22014628],[4.53655991,0.03730869,98.22103647],[4.53655945,0.03730695,98.22192694],[4.53655898,0.0373052,98.22281778],[4.53655852,0.03730346,98.22370908],[4.53655805,0.03730172,98.22460095],[4.53655758,0.03729997,98.22549348],[4.53655711,0.03729823,98.22638678],[4.53655664,0.03729649,98.22728094],[4.53655617,0.03729474,98.22817606],[4.5365557,0.037293,98.22907224],[4.53655523,0.03729126,98.22996957],[4.53655476,0.03728952,98.23086816],[4.53655429,0.03728777,98.2317681],[4.53655381,0.03728603,98.23266949],[4.53655334,0.03728429,98.23357242],[4.53655286,0.03728255,98.234477],[4.53655239,0.03728081,98.23538332],[4.53655191,0.03727907,98.23629147],[4.53655143,0.03727732,98.23720156],[4.53655096,0.03727558,98.23811368],[4.53655048,0.03727384,98.23902792],[4.53655,0.0372721,98.23994439],[4.53654952,0.03727036,98.24086318],[4.53654904,0.03726862,98.24178438],[4.53654856,0.03726688,98.24270809],[4.53654809,0.03726514,98.2436344],[4.53654761,0.0372634,98.24456342],[4.53654713,0.03726166,98.24549522],[4.53654664,0.03725992,98.24642992],[4.53654616,0.03725818,98.24736759],[4.53654568,0.03725644,98.24830834],[4.5365452,0.0372547,98.24925226],[4.53654472,0.03725296,98.25019944],[4.53654424,0.03725122,98.25114997],[4.53654376,0.03724948,98.25210395],[4.53654328,0.03724774,98.25306146],[4.5365428,0.037246,98.2540226],[4.53654232,0.03724426,98.25498746],[4.53654184,0.03724252,98.25595613],[4.53654135,0.03724078,98.2569287],[4.53654087,0.03723904,98.25790526],[4.53654039,0.0372373,98.2588859],[4.53654006,0.03723607,98.2595775],[4.53658352,0.03722504,98.2595775],[4.53658386,0.03722627,98.2588859],[4.53658434,0.03722801,98.25790526],[4.53658482,0.03722975,98.2569287],[4.5365853,0.03723148,98.25595613],[4.53658578,0.03723322,98.25498746],[4.53658626,0.03723496,98.2540226],[4.53658674,0.0372367,98.25306146],[4.53658722,0.03723844,98.25210395],[4.5365877,0.03724018,98.25114997],[4.53658819,0.03724192,98.25019944],[4.53658867,0.03724366,98.24925226],[4.53658915,0.0372454,98.24830834],[4.53658963,0.03724714,98.24736759],[4.53659011,0.03724888,98.24642992],[4.53659059,0.03725062,98.24549522],[4.53659107,0.03725236,98.24456342],[4.53659155,0.0372541,98.2436344],[4.53659203,0.03725584,98.24270809],[4.53659251,0.03725758,98.24178438],[4.53659298,0.03725932,98.24086318],[4.53659346,0.03726106,98.23994439],[4.53659394,0.0372628,98.23902792],[4.53659442,0.03726454,98.23811368],[4.53659489,0.03726628,98.23720156],[4.53659537,0.03726802,98.23629147],[4.53659585,0.03726976,98.23538332],[4.53659632,0.0372715,98.234477],[4.5365968,0.03727324,98.23357242],[4.53659727,0.03727498,98.23266949],[4.53659775,0.03727672,98.2317681],[4.53659822,0.03727846,98.23086816],[4.53659869,0.03728021,98.22996957],[4.53659916,0.03728195,98.22907224],[4.53659963,0.03728369,98.22817606],[4.5366001,0.03728543,98.22728094],[4.53660057,0.03728717,98.22638678],[4.53660104,0.03728892,98.22549348],[4.53660151,0.03729066,98.22460095],[4.53660198,0.0372924,98.22370908],[4.53660244,0.03729414,98.22281778],[4.53660291,0.03729589,98.22192694],[4.53660337,0.03729763,98.22103647],[4.53660383,0.03729938,98.22014628],[4.53660429,0.03730112,98.21925626],[4.53660476,0.03730286,98.21836631],[4.53660522,0.03730461,98.21747634],[4.53660567,0.03730635,98.21658629],[4.53660613,0.0373081,98.2156963],[4.53660659,0.03730984,98.21480657],[4.53660704,0.03731159,98.21391728],[4.5366075,0.03731334,98.21302863],[4.53660795,0.03731508,98.21214081],[4.53660841,0.03731683,98.21125401],[4.53660886,0.03731857,98.21036843],[4.53660931,0.03732032,98.20948426],[4.53660976,0.03732207,98.20860169],[4.53661022,0.03732381,98.20772093],[4.53661067,0.03732556,98.20684216],[4.53661112,0.03732731,98.2059656],[4.53661157,0.03732905,98.20509143],[4.53661202,0.0373308,98.20421986],[4.53661247,0.03733255,98.20335108],[4.53661292,0.03733429,98.20248529],[4.53661337,0.03733604,98.2016227],[4.53661382,0.03733779,98.20076351],[4.53661427,0.03733954,98.19990791],[4.53661472,0.03734128,98.19905612],[4.53661518,0.03734303,98.19820832],[4.53661563,0.03734477,98.19736471],[4.53661608,0.03734652,98.19652533],[4.53661653,0.03734827,98.19569023],[4.53661699,0.03735001,98.19485942],[4.53661744,0.03735176,98.19403296],[4.5366179,0.0373535,98.19321086],[4.53661835,0.03735525,98.19239316],[4.53661881,0.037357,98.19157989],[4.53661926,0.03735874,98.1907711],[4.53661972,0.03736049,98.18996679],[4.53662018,0.03736223,98.18916702],[4.53662064,0.03736398,98.18837182],[4.53662109,0.03736572,98.1875812],[4.53662155,0.03736747,98.18679522],[4.53662201,0.03736921,98.1860139],[4.53662247,0.03737095,98.18523726],[4.53662293,0.0373727,98.18446536],[4.5366234,0.03737444,98.18369821],[4.53662386,0.03737619,98.18293575],[4.53662432,0.03737793,98.18217752],[4.53662478,0.03737967,98.18142291],[4.53662525,0.03738142,98.18067134],[4.53662571,0.03738316,98.17992223],[4.53662617,0.03738491,98.17917497],[4.53662664,0.03738665,98.17842897],[4.5366271,0.03738839,98.17768365],[4.53662756,0.03739014,98.1769384],[4.53662802,0.03739188,98.17619265],[4.53662848,0.03739363,98.17544578],[4.53662894,0.03739537,98.17469721],[4.53662939,0.03739712,98.17394634],[4.53662984,0.03739886,98.17319257],[4.5366303,0.03740061,98.1724353],[4.53663074,0.03740236,98.17167367],[4.53663119,0.0374041,98.17090652],[4.53663163,0.03740585,98.17013271],[4.53663207,0.0374076,98.16935107],[4.53663251,0.03740935,98.16856045],[4.53663294,0.0374111,98.16775969],[4.53663337,0.03741286,98.16694764],[4.53663379,0.03741461,98.16612364],[4.53663421,0.03741637,98.16528913],[4.53663462,0.03741812,98.16444608],[4.53663503,0.03741988,98.16359645],[4.53663544,0.03742164,98.16274222],[4.53663585,0.03742339,98.16188536],[4.53663626,0.03742515,98.16102785],[4.53663666,0.03742691,98.16017166],[4.53663707,0.03742867,98.15931876],[4.53663747,0.03743043,98.15847114],[4.53663788,0.03743218,98.15763076],[4.53663829,0.03743394,98.15679962],[4.53663871,0.0374357,98.15597968],[4.53663912,0.03743745,98.15517293],[4.53663954,0.03743921,98.15438127],[4.53663997,0.03744096,98.15360516],[4.5366404,0.03744271,98.1528436],[4.53664083,0.03744446,98.15209553],[4.53664127,0.03744621,98.1513599],[4.53664171,0.03744796,98.15063562],[4.53664215,0.03744971,98.14992166],[4.5366426,0.03745146,98.14921693],[4.53664304,0.03745321,98.14852038],[4.53664349,0.03745496,98.14783094],[4.53664394,0.0374567,98.14714756],[4.53664439,0.03745845,98.14646915],[4.53664484,0.0374602,98.14579467],[4.53664529,0.03746194,98.14512305],[4.53664574,0.03746369,98.14445321],[4.53664619,0.03746544,98.14378411],[4.53664664,0.03746718,98.14311467],[4.53664709,0.03746893,98.14244383],[4.53664754,0.03747068,98.14177058],[4.53664798,0.03747243,98.14109484],[4.53664843,0.03747418,98.14041751],[4.53664887,0.03747592,98.13973953],[4.53664931,0.03747767,98.13906184],[4.53664975,0.03747942,98.13838539],[4.53665019,0.03748117,98.13771109],[4.53665063,0.03748292,98.1370399],[4.53665108,0.03748467,98.13637276],[4.53665152,0.03748642,98.13571059],[4.53665196,0.03748817,98.13505436],[4.53665241,0.03748992,98.13440498],[4.53665286,0.03749166,98.13376341],[4.53665331,0.03749341,98.13313031],[4.53665376,0.03749516,98.13250533],[4.53665421,0.0374969,98.13188782],[4.53665467,0.03749865,98.13127714],[4.53665512,0.03750039,98.13067266],[4.53665558,0.03750214,98.13007375],[4.53665604,0.03750388,98.12947976],[4.5366565,0.03750563,98.12889006],[4.53665696,0.03750737,98.12830402],[4.53665742,0.03750912,98.127721],[4.53665788,0.03751086,98.12714036],[4.53665834,0.03751261,98.12656147],[4.5366588,0.03751435,98.12598371],[4.53665926,0.0375161,98.12540643],[4.53665971,0.03751784,98.12482915],[4.53666017,0.03751959,98.12425199],[4.53666063,0.03752133,98.12367522],[4.53666109,0.03752308,98.12309909],[4.53666154,0.03752482,98.12252388],[4.536662,0.03752657,98.12194986],[4.53666245,0.03752831,98.12137727],[4.53666291,0.03753006,98.12080639],[4.53666336,0.0375318,98.12023749],[4.53666382,0.03753355,98.11967082],[4.53666427,0.03753529,98.11910665],[4.53666473,0.03753704,98.11854524],[4.53666519,0.03753879,98.11798686],[4.53666564,0.03754053,98.11743177],[4.5366661,0.03754228,98.11688022],[4.53666656,0.03754402,98.11633249],[4.53666702,0.03754577,98.11578884],[4.53666748,0.03754751,98.11524945],[4.53666794,0.03754926,98.11471429],[4.5366684,0.037551,98.11418322],[4.53666886,0.03755274,98.11365614],[4.53666932,0.03755449,98.11313292],[4.53666978,0.03755623,98.11261344],[4.53667024,0.03755798,98.1120976],[4.53667071,0.03755972,98.11158527],[4.53667117,0.03756146,98.11107634],[4.53667164,0.03756321,98.1105707],[4.5366721,0.03756495,98.11006822],[4.53667257,0.03756669,98.1095688],[4.53667303,0.03756844,98.10907231],[4.5366735,0.03757018,98.10857864],[4.53667396,0.03757192,98.10808768],[4.53667443,0.03757366,98.10759931],[4.5366749,0.03757541,98.10711341],[4.53667536,0.03757715,98.10662988],[4.53667583,0.03757889,98.10614859],[4.5366763,0.03758064,98.10566944],[4.53667676,0.03758238,98.1051923],[4.53667723,0.03758412,98.10471707],[4.5366777,0.03758586,98.10424363],[4.53667817,0.03758761,98.10377187],[4.53667863,0.03758935,98.10330166],[4.5366791,0.03759109,98.10283291],[4.53667957,0.03759284,98.1023655],[4.53668003,0.03759458,98.10189931],[4.5366805,0.03759632,98.10143423],[4.53668096,0.03759806,98.10097014],[4.53668143,0.03759981,98.10050695],[4.5366819,0.03760155,98.10004453],[4.53668236,0.03760329,98.09958276],[4.53668282,0.03760504,98.09912155],[4.53668329,0.03760678,98.09866078],[4.53668375,0.03760852,98.09820032],[4.53668422,0.03761027,98.09774007],[4.53668468,0.03761201,98.0972799],[4.53668514,0.03761376,98.09681979],[4.5366856,0.0376155,98.09635974],[4.53668606,0.03761725,98.09589979],[4.53668652,0.03761899,98.09543997],[4.53668698,0.03762074,98.09498029],[4.53668744,0.03762248,98.09452078],[4.5366879,0.03762423,98.09406148],[4.53668836,0.03762597,98.0936024],[4.53668882,0.03762772,98.09314358],[4.53668927,0.03762946,98.09268503],[4.53668973,0.03763121,98.09222679],[4.53669019,0.03763296,98.09176888],[4.53669064,0.0376347,98.09131133],[4.5366911,0.03763645,98.09085416],[4.53669155,0.0376382,98.09039739],[4.53669201,0.03763994,98.08994106],[4.53669246,0.03764169,98.08948519],[4.53669292,0.03764344,98.08902981],[4.53669337,0.03764518,98.08857494],[4.53669383,0.03764693,98.0881206],[4.53669428,0.03764868,98.08766683],[4.53669473,0.03765043,98.08721364],[4.53669518,0.03765218,98.08676107],[4.53669564,0.03765392,98.08630914],[4.53669609,0.03765567,98.08585787],[4.53669654,0.03765742,98.08540729],[4.53669699,0.03765917,98.08495742],[4.53669744,0.03766092,98.0845083],[4.5366979,0.03766267,98.08405994],[4.53669835,0.03766442,98.08361237],[4.5366988,0.03766616,98.08316562],[4.53669925,0.03766791,98.0827197],[4.5366997,0.03766966,98.08227466],[4.53670015,0.03767141,98.0818305],[4.5367006,0.03767316,98.08138726],[4.53670105,0.03767491,98.08094496],[4.5367015,0.03767666,98.08050363],[4.53670195,0.03767841,98.08006329],[4.5367024,0.03768016,98.07962399],[4.53670285,0.03768191,98.07918576],[4.5367033,0.03768366,98.07874862],[4.53670375,0.03768541,98.07831262],[4.5367042,0.03768716,98.07787778],[4.53670465,0.03768891,98.07744414],[4.5367051,0.03769066,98.07701174],[4.53670555,0.03769241,98.0765806],[4.536706,0.03769416,98.07615076],[4.53670645,0.03769591,98.07572225],[4.5367069,0.03769766,98.0752951],[4.53670735,0.03769941,98.07486935],[4.5367078,0.03770116,98.07444503],[4.53670825,0.03770291,98.07402215],[4.5367087,0.03770466,98.07360074],[4.53670915,0.03770641,98.07318082],[4.5367096,0.03770816,98.07276241],[4.53671005,0.03770991,98.07234553],[4.5367105,0.03771166,98.0719302],[4.53671095,0.03771341,98.07151644],[4.5367114,0.03771517,98.07110428],[4.53671186,0.03771692,98.07069374],[4.53671231,0.03771867,98.07028483],[4.53671276,0.03772042,98.06987759],[4.53671321,0.03772217,98.06947202],[4.53671366,0.03772392,98.06906815],[4.53671412,0.03772567,98.068666],[4.53671457,0.03772742,98.0682656],[4.53671502,0.03772917,98.06786695],[4.53671548,0.03773092,98.06747009],[4.53671593,0.03773267,98.06707504],[4.53671639,0.03773442,98.06668181],[4.53671684,0.03773617,98.06629043],[4.5367173,0.03773792,98.06590091],[4.53671775,0.03773967,98.06551329],[4.53671821,0.03774142,98.06512756],[4.53671866,0.03774317,98.06474376],[4.53671912,0.03774492,98.06436188],[4.53671958,0.03774667,98.0639819],[4.53672003,0.03774842,98.06360372],[4.53672049,0.03775017,98.0632272],[4.53672095,0.03775192,98.06285219],[4.53672141,0.03775367,98.06247855],[4.53672187,0.03775542,98.06210615],[4.53672232,0.03775717,98.06173485],[4.53672278,0.03775892,98.0613645],[4.53672324,0.03776068,98.06099498],[4.5367237,0.03776243,98.06062614],[4.53672416,0.03776418,98.06025784],[4.53672462,0.03776593,98.05988995],[4.53672507,0.03776768,98.05952233],[4.53672553,0.03776943,98.05915484],[4.53672599,0.03777118,98.05878734],[4.53672645,0.03777293,98.0584197],[4.5367269,0.03777468,98.05805178],[4.53672736,0.03777643,98.05768343],[4.53672782,0.03777818,98.05731453],[4.53672827,0.03777993,98.05694494],[4.53672873,0.03778169,98.05657451],[4.53672918,0.03778344,98.05620312],[4.53672964,0.03778519,98.05583068],[4.53673009,0.03778694,98.05545735],[4.53673055,0.0377887,98.05508335],[4.536731,0.03779045,98.05470888],[4.53673145,0.0377922,98.05433417],[4.5367319,0.03779395,98.05395942],[4.53673236,0.03779571,98.05358486],[4.53673281,0.03779746,98.05321072],[4.53673326,0.03779921,98.05283722],[4.53673371,0.03780097,98.05246461],[4.53673417,0.03780272,98.05209313],[4.53673462,0.03780447,98.05172305],[4.53673507,0.03780623,98.05135459],[4.53673553,0.03780798,98.050988],[4.53673598,0.03780973,98.05062354],[4.53673644,0.03781149,98.05026144],[4.5367369,0.03781324,98.04990196],[4.53673735,0.03781499,98.04954533],[4.53673781,0.03781674,98.0491918],[4.53673827,0.0378185,98.04884162],[4.53673873,0.03782025,98.04849503],[4.53673919,0.037822,98.04815228],[4.53673966,0.03782375,98.04781361],[4.53674012,0.0378255,98.04747927],[4.53674059,0.03782725,98.0471495],[4.53674105,0.037829,98.04682455],[4.53674152,0.03783075,98.04650466],[4.536742,0.0378325,98.04619008],[4.53674247,0.03783425,98.04588094],[4.53674294,0.037836,98.04557695],[4.53674342,0.03783775,98.04527769],[4.5367439,0.03783949,98.04498276],[4.53674438,0.03784124,98.04469175],[4.53674486,0.03784299,98.04440425],[4.53674534,0.03784474,98.04411986],[4.53674582,0.03784648,98.04383817],[4.5367463,0.03784823,98.04355876],[4.53674679,0.03784998,98.04328124],[4.53674727,0.03785172,98.04300519],[4.53674776,0.03785347,98.04273021],[4.53674824,0.03785522,98.0424559],[4.53674873,0.03785696,98.04218188],[4.53674921,0.03785871,98.04190773],[4.5367497,0.03786046,98.04163308],[4.53675018,0.0378622,98.04135759],[4.53675066,0.03786395,98.04108123],[4.53675115,0.0378657,98.04080402],[4.53675163,0.03786744,98.040526],[4.53675212,0.03786919,98.04024719],[4.5367526,0.03787094,98.03996763],[4.53675308,0.03787269,98.03968734],[4.53675356,0.03787443,98.03940635],[4.53675403,0.03787614,98.03912465],[4.53675452,0.03787789,98.03884227],[4.536755,0.03787964,98.03855922],[4.53675548,0.03788139,98.0382755],[4.53675596,0.03788314,98.03799113],[4.53675644,0.03788488,98.03770612],[4.53675692,0.03788663,98.03742047],[4.5367574,0.03788838,98.03713421],[4.53675789,0.03789013,98.03684733],[4.53675837,0.03789188,98.03655986],[4.53675885,0.03789363,98.0362718],[4.53675933,0.03789538,98.03598316],[4.53675981,0.03789713,98.03569395],[4.53676029,0.03789888,98.03540418],[4.53676077,0.03790063,98.03511387],[4.53676125,0.03790238,98.03482302],[4.53676173,0.03790413,98.03453164],[4.53676221,0.03790588,98.03423975],[4.53676269,0.03790763,98.03394735],[4.53676316,0.03790938,98.03365446],[4.53676364,0.03791113,98.03336107],[4.53676412,0.03791288,98.03306723],[4.5367646,0.03791462,98.03277297],[4.53676508,0.03791637,98.03247838],[4.53676556,0.03791812,98.03218351],[4.53676604,0.03791987,98.03188846],[4.53676652,0.03792162,98.03159327],[4.536767,0.03792337,98.031298],[4.53676748,0.03792512,98.03100271],[4.53676796,0.03792687,98.03070741],[4.53676843,0.03792862,98.03041216],[4.53676891,0.03793037,98.030117],[4.53676939,0.03793212,98.02982195],[4.53676987,0.03793387,98.02952706],[4.53677035,0.03793562,98.02923238],[4.53677083,0.03793737,98.028938],[4.53677131,0.03793912,98.02864399],[4.53677179,0.03794087,98.02835046],[4.53677228,0.03794262,98.0280575],[4.53677276,0.03794437,98.0277652],[4.53677324,0.03794611,98.02747365],[4.53677372,0.03794786,98.02718295],[4.5367742,0.03794961,98.02689319],[4.53677469,0.03795136,98.02660446],[4.53677517,0.03795311,98.02631684],[4.53677565,0.03795486,98.02603034],[4.53677614,0.03795661,98.02574496],[4.53677662,0.03795835,98.02546069],[4.53677711,0.0379601,98.02517752],[4.5367776,0.03796185,98.02489547],[4.53677808,0.0379636,98.02461451],[4.53677857,0.03796534,98.02433466],[4.53677906,0.03796709,98.02405592],[4.53677955,0.03796884,98.02377828],[4.53678003,0.03797058,98.02350174],[4.53678052,0.03797233,98.0232263],[4.53678101,0.03797408,98.02295196],[4.5367815,0.03797582,98.02267872],[4.536782,0.03797757,98.02240659],[4.53678249,0.03797932,98.02213555],[4.53678298,0.03798106,98.02186561],[4.53678347,0.03798281,98.02159677],[4.53678397,0.03798455,98.02132904],[4.53678446,0.0379863,98.0210624],[4.53678495,0.03798805,98.02079686],[4.53678545,0.03798979,98.02053241],[4.53678594,0.03799154,98.02026907],[4.53678644,0.03799328,98.02000683],[4.53678694,0.03799503,98.01974568],[4.53678743,0.03799677,98.01948563],[4.53678793,0.03799851,98.01922668],[4.53678843,0.03800026,98.01896884],[4.53678893,0.038002,98.01871208],[4.53678943,0.03800375,98.01845635],[4.53678993,0.03800549,98.01820149],[4.53679043,0.03800723,98.01794737],[4.53679093,0.03800898,98.01769387],[4.53679143,0.03801072,98.0174409],[4.53679193,0.03801246,98.01718832],[4.53679243,0.03801421,98.01693602],[4.53679293,0.03801595,98.0166839],[4.53679343,0.03801769,98.01643184],[4.53679393,0.03801944,98.01617972],[4.53679444,0.03802118,98.01592742],[4.53679494,0.03802292,98.01567484],[4.53679544,0.03802467,98.01542185],[4.53679594,0.03802641,98.01516834],[4.53679645,0.03802815,98.0149142],[4.53679695,0.0380299,98.01465929],[4.53679745,0.03803164,98.01440351],[4.53679795,0.03803338,98.01414673],[4.53679845,0.03803513,98.01388885],[4.53679896,0.03803687,98.01362978],[4.53679946,0.03803861,98.01336945],[4.53679996,0.03804036,98.01310779],[4.53680046,0.0380421,98.01284473],[4.53680096,0.03804384,98.01258019],[4.53680146,0.03804559,98.0123141],[4.53680196,0.03804733,98.01204639],[4.53680246,0.03804907,98.01177698],[4.53680296,0.03805082,98.01150582],[4.53680346,0.03805256,98.01123299],[4.53680396,0.03805431,98.01095856],[4.53680445,0.03805605,98.01068263],[4.53680495,0.0380578,98.01040529],[4.53680545,0.03805954,98.01012664],[4.53680595,0.03806128,98.00984675],[4.53680645,0.03806303,98.00956574],[4.53680694,0.03806477,98.00928368],[4.53680744,0.03806652,98.00900067],[4.53680794,0.03806826,98.00871681],[4.53680844,0.03807001,98.00843219],[4.53680893,0.03807175,98.00814691],[4.53680943,0.0380735,98.00786105],[4.53680993,0.03807524,98.00757471],[4.53681043,0.03807699,98.00728799],[4.53681093,0.03807873,98.00700099],[4.53681142,0.03808048,98.0067138],[4.53681192,0.03808222,98.00642652],[4.53681242,0.03808396,98.00613924],[4.53681292,0.03808571,98.00585207],[4.53681342,0.03808745,98.0055651],[4.53681392,0.0380892,98.00527843],[4.53681442,0.03809094,98.00499216],[4.53681492,0.03809268,98.00470639],[4.53681542,0.03809443,98.00442122],[4.53681592,0.03809617,98.00413675],[4.53681642,0.03809792,98.00385308],[4.53681693,0.03809966,98.00357031],[4.53681743,0.0381014,98.00328855],[4.53681793,0.03810314,98.0030079],[4.53681844,0.03810489,98.00272845],[4.53681894,0.03810663,98.00245033],[4.53681945,0.03810837,98.00217362],[4.53681996,0.03811011,98.00189843],[4.53682046,0.03811186,98.00162488],[4.53682097,0.0381136,98.00135305],[4.53682148,0.03811534,98.00108307],[4.53682199,0.03811708,98.00081504],[4.5368225,0.03811882,98.00054897],[4.53682302,0.03812056,98.00028482],[4.53682353,0.0381223,98.00002254],[4.53682404,0.03812404,97.99976208],[4.53682456,0.03812578,97.99950337],[4.53682507,0.03812752,97.99924636],[4.53682559,0.03812926,97.99899101],[4.53682611,0.038131,97.99873725],[4.53682662,0.03813273,97.99848502],[4.53682714,0.03813447,97.99823428],[4.53682766,0.0381362,97.99798497],[4.53682818,0.03813794,97.99773703],[4.5368287,0.03813968,97.99749041],[4.53682922,0.03814142,97.99724505],[4.53682974,0.03814316,97.99700088],[4.53683026,0.03814489,97.99675786],[4.53683079,0.03814663,97.99651589],[4.53683131,0.03814837,97.99627488],[4.53683183,0.0381501,97.99603472],[4.53683236,0.03815184,97.99579534],[4.53683288,0.03815358,97.99555663],[4.53683341,0.03815531,97.99531849],[4.53683393,0.03815705,97.99508083],[4.53683446,0.03815878,97.99484356],[4.53683499,0.03816052,97.99460657],[4.53683551,0.03816225,97.99436977],[4.53683604,0.03816399,97.99413306],[4.53683657,0.03816572,97.99389634],[4.5368371,0.03816746,97.99365952],[4.53683762,0.03816919,97.99342249],[4.53683815,0.03817093,97.99318516],[4.53683868,0.03817266,97.99294741],[4.53683921,0.03817439,97.9927092],[4.53683973,0.03817613,97.99247054],[4.53684026,0.03817786,97.99223142],[4.53684079,0.0381796,97.99199183],[4.53684132,0.03818133,97.99175177],[4.53684185,0.03818306,97.99151124],[4.53684237,0.0381848,97.99127024],[4.5368429,0.03818653,97.99102875],[4.53684343,0.03818826,97.99078677],[4.53684396,0.03819,97.99054431],[4.53684449,0.03819173,97.99030136],[4.53684501,0.03819346,97.99005791],[4.53684554,0.0381952,97.98981397],[4.53684607,0.03819693,97.98956952],[4.5368466,0.03819866,97.98932456],[4.53684713,0.03820039,97.98907909],[4.53684766,0.03820213,97.98883311],[4.53684819,0.03820386,97.98858661],[4.53684871,0.03820559,97.98833959],[4.53684924,0.03820732,97.98809205],[4.53684977,0.03820906,97.98784398],[4.5368503,0.03821079,97.98759537],[4.53685083,0.03821252,97.98734623],[4.53685136,0.03821425,97.98709655],[4.53685189,0.03821598,97.98684633],[4.53685241,0.03821772,97.98659557],[4.53685294,0.03821945,97.98634425],[4.53685347,0.03822118,97.98609238],[4.53681074,0.03823478,97.98609238]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1000400","id":-4,"type":"none","predecessorId":-4,"sOffset":53.8593184394}},{"geometry":{"coordinates":[[[4.53685347,0.03822118,97.98609238],[4.53685294,0.03821945,97.98634425],[4.53685241,0.03821772,97.98659557],[4.53685189,0.03821598,97.98684633],[4.53685136,0.03821425,97.98709655],[4.53685083,0.03821252,97.98734623],[4.5368503,0.03821079,97.98759537],[4.53684977,0.03820906,97.98784398],[4.53684924,0.03820732,97.98809205],[4.53684871,0.03820559,97.98833959],[4.53684819,0.03820386,97.98858661],[4.53684766,0.03820213,97.98883311],[4.53684713,0.03820039,97.98907909],[4.5368466,0.03819866,97.98932456],[4.53684607,0.03819693,97.98956952],[4.53684554,0.0381952,97.98981397],[4.53684501,0.03819346,97.99005791],[4.53684449,0.03819173,97.99030136],[4.53684396,0.03819,97.99054431],[4.53684343,0.03818826,97.99078677],[4.5368429,0.03818653,97.99102875],[4.53684237,0.0381848,97.99127024],[4.53684185,0.03818306,97.99151124],[4.53684132,0.03818133,97.99175177],[4.53684079,0.0381796,97.99199183],[4.53684026,0.03817786,97.99223142],[4.53683973,0.03817613,97.99247054],[4.53683921,0.03817439,97.9927092],[4.53683868,0.03817266,97.99294741],[4.53683815,0.03817093,97.99318516],[4.53683762,0.03816919,97.99342249],[4.5368371,0.03816746,97.99365952],[4.53683657,0.03816572,97.99389634],[4.53683604,0.03816399,97.99413306],[4.53683551,0.03816225,97.99436977],[4.53683499,0.03816052,97.99460657],[4.53683446,0.03815878,97.99484356],[4.53683393,0.03815705,97.99508083],[4.53683341,0.03815531,97.99531849],[4.53683288,0.03815358,97.99555663],[4.53683236,0.03815184,97.99579534],[4.53683183,0.0381501,97.99603472],[4.53683131,0.03814837,97.99627488],[4.53683079,0.03814663,97.99651589],[4.53683026,0.03814489,97.99675786],[4.53682974,0.03814316,97.99700088],[4.53682922,0.03814142,97.99724505],[4.5368287,0.03813968,97.99749041],[4.53682818,0.03813794,97.99773703],[4.53682766,0.0381362,97.99798497],[4.53682714,0.03813447,97.99823428],[4.53682662,0.03813273,97.99848502],[4.53682611,0.038131,97.99873725],[4.53682559,0.03812926,97.99899101],[4.53682507,0.03812752,97.99924636],[4.53682456,0.03812578,97.99950337],[4.53682404,0.03812404,97.99976208],[4.53682353,0.0381223,98.00002254],[4.53682302,0.03812056,98.00028482],[4.5368225,0.03811882,98.00054897],[4.53682199,0.03811708,98.00081504],[4.53682148,0.03811534,98.00108307],[4.53682097,0.0381136,98.00135305],[4.53682046,0.03811186,98.00162488],[4.53681996,0.03811011,98.00189843],[4.53681945,0.03810837,98.00217362],[4.53681894,0.03810663,98.00245033],[4.53681844,0.03810489,98.00272845],[4.53681793,0.03810314,98.0030079],[4.53681743,0.0381014,98.00328855],[4.53681693,0.03809966,98.00357031],[4.53681642,0.03809792,98.00385308],[4.53681592,0.03809617,98.00413675],[4.53681542,0.03809443,98.00442122],[4.53681492,0.03809268,98.00470639],[4.53681442,0.03809094,98.00499216],[4.53681392,0.0380892,98.00527843],[4.53681342,0.03808745,98.0055651],[4.53681292,0.03808571,98.00585207],[4.53681242,0.03808396,98.00613924],[4.53681192,0.03808222,98.00642652],[4.53681142,0.03808048,98.0067138],[4.53681093,0.03807873,98.00700099],[4.53681043,0.03807699,98.00728799],[4.53680993,0.03807524,98.00757471],[4.53680943,0.0380735,98.00786105],[4.53680893,0.03807175,98.00814691],[4.53680844,0.03807001,98.00843219],[4.53680794,0.03806826,98.00871681],[4.53680744,0.03806652,98.00900067],[4.53680694,0.03806477,98.00928368],[4.53680645,0.03806303,98.00956574],[4.53680595,0.03806128,98.00984675],[4.53680545,0.03805954,98.01012664],[4.53680495,0.0380578,98.01040529],[4.53680445,0.03805605,98.01068263],[4.53680396,0.03805431,98.01095856],[4.53680346,0.03805256,98.01123299],[4.53680296,0.03805082,98.01150582],[4.53680246,0.03804907,98.01177698],[4.53680196,0.03804733,98.01204639],[4.53680146,0.03804559,98.0123141],[4.53680096,0.03804384,98.01258019],[4.53680046,0.0380421,98.01284473],[4.53679996,0.03804036,98.01310779],[4.53679946,0.03803861,98.01336945],[4.53679896,0.03803687,98.01362978],[4.53679845,0.03803513,98.01388885],[4.53679795,0.03803338,98.01414673],[4.53679745,0.03803164,98.01440351],[4.53679695,0.0380299,98.01465929],[4.53679645,0.03802815,98.0149142],[4.53679594,0.03802641,98.01516834],[4.53679544,0.03802467,98.01542185],[4.53679494,0.03802292,98.01567484],[4.53679444,0.03802118,98.01592742],[4.53679393,0.03801944,98.01617972],[4.53679343,0.03801769,98.01643184],[4.53679293,0.03801595,98.0166839],[4.53679243,0.03801421,98.01693602],[4.53679193,0.03801246,98.01718832],[4.53679143,0.03801072,98.0174409],[4.53679093,0.03800898,98.01769387],[4.53679043,0.03800723,98.01794737],[4.53678993,0.03800549,98.01820149],[4.53678943,0.03800375,98.01845635],[4.53678893,0.038002,98.01871208],[4.53678843,0.03800026,98.01896884],[4.53678793,0.03799851,98.01922668],[4.53678743,0.03799677,98.01948563],[4.53678694,0.03799503,98.01974568],[4.53678644,0.03799328,98.02000683],[4.53678594,0.03799154,98.02026907],[4.53678545,0.03798979,98.02053241],[4.53678495,0.03798805,98.02079686],[4.53678446,0.0379863,98.0210624],[4.53678397,0.03798455,98.02132904],[4.53678347,0.03798281,98.02159677],[4.53678298,0.03798106,98.02186561],[4.53678249,0.03797932,98.02213555],[4.536782,0.03797757,98.02240659],[4.5367815,0.03797582,98.02267872],[4.53678101,0.03797408,98.02295196],[4.53678052,0.03797233,98.0232263],[4.53678003,0.03797058,98.02350174],[4.53677955,0.03796884,98.02377828],[4.53677906,0.03796709,98.02405592],[4.53677857,0.03796534,98.02433466],[4.53677808,0.0379636,98.02461451],[4.5367776,0.03796185,98.02489547],[4.53677711,0.0379601,98.02517752],[4.53677662,0.03795835,98.02546069],[4.53677614,0.03795661,98.02574496],[4.53677565,0.03795486,98.02603034],[4.53677517,0.03795311,98.02631684],[4.53677469,0.03795136,98.02660446],[4.5367742,0.03794961,98.02689319],[4.53677372,0.03794786,98.02718295],[4.53677324,0.03794611,98.02747365],[4.53677276,0.03794437,98.0277652],[4.53677228,0.03794262,98.0280575],[4.53677179,0.03794087,98.02835046],[4.53677131,0.03793912,98.02864399],[4.53677083,0.03793737,98.028938],[4.53677035,0.03793562,98.02923238],[4.53676987,0.03793387,98.02952706],[4.53676939,0.03793212,98.02982195],[4.53676891,0.03793037,98.030117],[4.53676843,0.03792862,98.03041216],[4.53676796,0.03792687,98.03070741],[4.53676748,0.03792512,98.03100271],[4.536767,0.03792337,98.031298],[4.53676652,0.03792162,98.03159327],[4.53676604,0.03791987,98.03188846],[4.53676556,0.03791812,98.03218351],[4.53676508,0.03791637,98.03247838],[4.5367646,0.03791462,98.03277297],[4.53676412,0.03791288,98.03306723],[4.53676364,0.03791113,98.03336107],[4.53676316,0.03790938,98.03365446],[4.53676269,0.03790763,98.03394735],[4.53676221,0.03790588,98.03423975],[4.53676173,0.03790413,98.03453164],[4.53676125,0.03790238,98.03482302],[4.53676077,0.03790063,98.03511387],[4.53676029,0.03789888,98.03540418],[4.53675981,0.03789713,98.03569395],[4.53675933,0.03789538,98.03598316],[4.53675885,0.03789363,98.0362718],[4.53675837,0.03789188,98.03655986],[4.53675789,0.03789013,98.03684733],[4.5367574,0.03788838,98.03713421],[4.53675692,0.03788663,98.03742047],[4.53675644,0.03788488,98.03770612],[4.53675596,0.03788314,98.03799113],[4.53675548,0.03788139,98.0382755],[4.536755,0.03787964,98.03855922],[4.53675452,0.03787789,98.03884227],[4.53675403,0.03787614,98.03912465],[4.53675356,0.03787443,98.03940635],[4.53675308,0.03787269,98.03968734],[4.5367526,0.03787094,98.03996763],[4.53675212,0.03786919,98.04024719],[4.53675163,0.03786744,98.040526],[4.53675115,0.0378657,98.04080402],[4.53675066,0.03786395,98.04108123],[4.53675018,0.0378622,98.04135759],[4.5367497,0.03786046,98.04163308],[4.53674921,0.03785871,98.04190773],[4.53674873,0.03785696,98.04218188],[4.53674824,0.03785522,98.0424559],[4.53674776,0.03785347,98.04273021],[4.53674727,0.03785172,98.04300519],[4.53674679,0.03784998,98.04328124],[4.5367463,0.03784823,98.04355876],[4.53674582,0.03784648,98.04383817],[4.53674534,0.03784474,98.04411986],[4.53674486,0.03784299,98.04440425],[4.53674438,0.03784124,98.04469175],[4.5367439,0.03783949,98.04498276],[4.53674342,0.03783775,98.04527769],[4.53674294,0.037836,98.04557695],[4.53674247,0.03783425,98.04588094],[4.536742,0.0378325,98.04619008],[4.53674152,0.03783075,98.04650466],[4.53674105,0.037829,98.04682455],[4.53674059,0.03782725,98.0471495],[4.53674012,0.0378255,98.04747927],[4.53673966,0.03782375,98.04781361],[4.53673919,0.037822,98.04815228],[4.53673873,0.03782025,98.04849503],[4.53673827,0.0378185,98.04884162],[4.53673781,0.03781674,98.0491918],[4.53673735,0.03781499,98.04954533],[4.5367369,0.03781324,98.04990196],[4.53673644,0.03781149,98.05026144],[4.53673598,0.03780973,98.05062354],[4.53673553,0.03780798,98.050988],[4.53673507,0.03780623,98.05135459],[4.53673462,0.03780447,98.05172305],[4.53673417,0.03780272,98.05209313],[4.53673371,0.03780097,98.05246461],[4.53673326,0.03779921,98.05283722],[4.53673281,0.03779746,98.05321072],[4.53673236,0.03779571,98.05358486],[4.5367319,0.03779395,98.05395942],[4.53673145,0.0377922,98.05433417],[4.536731,0.03779045,98.05470888],[4.53673055,0.0377887,98.05508335],[4.53673009,0.03778694,98.05545735],[4.53672964,0.03778519,98.05583068],[4.53672918,0.03778344,98.05620312],[4.53672873,0.03778169,98.05657451],[4.53672827,0.03777993,98.05694494],[4.53672782,0.03777818,98.05731453],[4.53672736,0.03777643,98.05768343],[4.5367269,0.03777468,98.05805178],[4.53672645,0.03777293,98.0584197],[4.53672599,0.03777118,98.05878734],[4.53672553,0.03776943,98.05915484],[4.53672507,0.03776768,98.05952233],[4.53672462,0.03776593,98.05988995],[4.53672416,0.03776418,98.06025784],[4.5367237,0.03776243,98.06062614],[4.53672324,0.03776068,98.06099498],[4.53672278,0.03775892,98.0613645],[4.53672232,0.03775717,98.06173485],[4.53672187,0.03775542,98.06210615],[4.53672141,0.03775367,98.06247855],[4.53672095,0.03775192,98.06285219],[4.53672049,0.03775017,98.0632272],[4.53672003,0.03774842,98.06360372],[4.53671958,0.03774667,98.0639819],[4.53671912,0.03774492,98.06436188],[4.53671866,0.03774317,98.06474376],[4.53671821,0.03774142,98.06512756],[4.53671775,0.03773967,98.06551329],[4.5367173,0.03773792,98.06590091],[4.53671684,0.03773617,98.06629043],[4.53671639,0.03773442,98.06668181],[4.53671593,0.03773267,98.06707504],[4.53671548,0.03773092,98.06747009],[4.53671502,0.03772917,98.06786695],[4.53671457,0.03772742,98.0682656],[4.53671412,0.03772567,98.068666],[4.53671366,0.03772392,98.06906815],[4.53671321,0.03772217,98.06947202],[4.53671276,0.03772042,98.06987759],[4.53671231,0.03771867,98.07028483],[4.53671186,0.03771692,98.07069374],[4.5367114,0.03771517,98.07110428],[4.53671095,0.03771341,98.07151644],[4.5367105,0.03771166,98.0719302],[4.53671005,0.03770991,98.07234553],[4.5367096,0.03770816,98.07276241],[4.53670915,0.03770641,98.07318082],[4.5367087,0.03770466,98.07360074],[4.53670825,0.03770291,98.07402215],[4.5367078,0.03770116,98.07444503],[4.53670735,0.03769941,98.07486935],[4.5367069,0.03769766,98.0752951],[4.53670645,0.03769591,98.07572225],[4.536706,0.03769416,98.07615076],[4.53670555,0.03769241,98.0765806],[4.5367051,0.03769066,98.07701174],[4.53670465,0.03768891,98.07744414],[4.5367042,0.03768716,98.07787778],[4.53670375,0.03768541,98.07831262],[4.5367033,0.03768366,98.07874862],[4.53670285,0.03768191,98.07918576],[4.5367024,0.03768016,98.07962399],[4.53670195,0.03767841,98.08006329],[4.5367015,0.03767666,98.08050363],[4.53670105,0.03767491,98.08094496],[4.5367006,0.03767316,98.08138726],[4.53670015,0.03767141,98.0818305],[4.5366997,0.03766966,98.08227466],[4.53669925,0.03766791,98.0827197],[4.5366988,0.03766616,98.08316562],[4.53669835,0.03766442,98.08361237],[4.5366979,0.03766267,98.08405994],[4.53669744,0.03766092,98.0845083],[4.53669699,0.03765917,98.08495742],[4.53669654,0.03765742,98.08540729],[4.53669609,0.03765567,98.08585787],[4.53669564,0.03765392,98.08630914],[4.53669518,0.03765218,98.08676107],[4.53669473,0.03765043,98.08721364],[4.53669428,0.03764868,98.08766683],[4.53669383,0.03764693,98.0881206],[4.53669337,0.03764518,98.08857494],[4.53669292,0.03764344,98.08902981],[4.53669246,0.03764169,98.08948519],[4.53669201,0.03763994,98.08994106],[4.53669155,0.0376382,98.09039739],[4.5366911,0.03763645,98.09085416],[4.53669064,0.0376347,98.09131133],[4.53669019,0.03763296,98.09176888],[4.53668973,0.03763121,98.09222679],[4.53668927,0.03762946,98.09268503],[4.53668882,0.03762772,98.09314358],[4.53668836,0.03762597,98.0936024],[4.5366879,0.03762423,98.09406148],[4.53668744,0.03762248,98.09452078],[4.53668698,0.03762074,98.09498029],[4.53668652,0.03761899,98.09543997],[4.53668606,0.03761725,98.09589979],[4.5366856,0.0376155,98.09635974],[4.53668514,0.03761376,98.09681979],[4.53668468,0.03761201,98.0972799],[4.53668422,0.03761027,98.09774007],[4.53668375,0.03760852,98.09820032],[4.53668329,0.03760678,98.09866078],[4.53668282,0.03760504,98.09912155],[4.53668236,0.03760329,98.09958276],[4.5366819,0.03760155,98.10004453],[4.53668143,0.03759981,98.10050695],[4.53668096,0.03759806,98.10097014],[4.5366805,0.03759632,98.10143423],[4.53668003,0.03759458,98.10189931],[4.53667957,0.03759284,98.1023655],[4.5366791,0.03759109,98.10283291],[4.53667863,0.03758935,98.10330166],[4.53667817,0.03758761,98.10377187],[4.5366777,0.03758586,98.10424363],[4.53667723,0.03758412,98.10471707],[4.53667676,0.03758238,98.1051923],[4.5366763,0.03758064,98.10566944],[4.53667583,0.03757889,98.10614859],[4.53667536,0.03757715,98.10662988],[4.5366749,0.03757541,98.10711341],[4.53667443,0.03757366,98.10759931],[4.53667396,0.03757192,98.10808768],[4.5366735,0.03757018,98.10857864],[4.53667303,0.03756844,98.10907231],[4.53667257,0.03756669,98.1095688],[4.5366721,0.03756495,98.11006822],[4.53667164,0.03756321,98.1105707],[4.53667117,0.03756146,98.11107634],[4.53667071,0.03755972,98.11158527],[4.53667024,0.03755798,98.1120976],[4.53666978,0.03755623,98.11261344],[4.53666932,0.03755449,98.11313292],[4.53666886,0.03755274,98.11365614],[4.5366684,0.037551,98.11418322],[4.53666794,0.03754926,98.11471429],[4.53666748,0.03754751,98.11524945],[4.53666702,0.03754577,98.11578884],[4.53666656,0.03754402,98.11633249],[4.5366661,0.03754228,98.11688022],[4.53666564,0.03754053,98.11743177],[4.53666519,0.03753879,98.11798686],[4.53666473,0.03753704,98.11854524],[4.53666427,0.03753529,98.11910665],[4.53666382,0.03753355,98.11967082],[4.53666336,0.0375318,98.12023749],[4.53666291,0.03753006,98.12080639],[4.53666245,0.03752831,98.12137727],[4.536662,0.03752657,98.12194986],[4.53666154,0.03752482,98.12252388],[4.53666109,0.03752308,98.12309909],[4.53666063,0.03752133,98.12367522],[4.53666017,0.03751959,98.12425199],[4.53665971,0.03751784,98.12482915],[4.53665926,0.0375161,98.12540643],[4.5366588,0.03751435,98.12598371],[4.53665834,0.03751261,98.12656147],[4.53665788,0.03751086,98.12714036],[4.53665742,0.03750912,98.127721],[4.53665696,0.03750737,98.12830402],[4.5366565,0.03750563,98.12889006],[4.53665604,0.03750388,98.12947976],[4.53665558,0.03750214,98.13007375],[4.53665512,0.03750039,98.13067266],[4.53665467,0.03749865,98.13127714],[4.53665421,0.0374969,98.13188782],[4.53665376,0.03749516,98.13250533],[4.53665331,0.03749341,98.13313031],[4.53665286,0.03749166,98.13376341],[4.53665241,0.03748992,98.13440498],[4.53665196,0.03748817,98.13505436],[4.53665152,0.03748642,98.13571059],[4.53665108,0.03748467,98.13637276],[4.53665063,0.03748292,98.1370399],[4.53665019,0.03748117,98.13771109],[4.53664975,0.03747942,98.13838539],[4.53664931,0.03747767,98.13906184],[4.53664887,0.03747592,98.13973953],[4.53664843,0.03747418,98.14041751],[4.53664798,0.03747243,98.14109484],[4.53664754,0.03747068,98.14177058],[4.53664709,0.03746893,98.14244383],[4.53664664,0.03746718,98.14311467],[4.53664619,0.03746544,98.14378411],[4.53664574,0.03746369,98.14445321],[4.53664529,0.03746194,98.14512305],[4.53664484,0.0374602,98.14579467],[4.53664439,0.03745845,98.14646915],[4.53664394,0.0374567,98.14714756],[4.53664349,0.03745496,98.14783094],[4.53664304,0.03745321,98.14852038],[4.5366426,0.03745146,98.14921693],[4.53664215,0.03744971,98.14992166],[4.53664171,0.03744796,98.15063562],[4.53664127,0.03744621,98.1513599],[4.53664083,0.03744446,98.15209553],[4.5366404,0.03744271,98.1528436],[4.53663997,0.03744096,98.15360516],[4.53663954,0.03743921,98.15438127],[4.53663912,0.03743745,98.15517293],[4.53663871,0.0374357,98.15597968],[4.53663829,0.03743394,98.15679962],[4.53663788,0.03743218,98.15763076],[4.53663747,0.03743043,98.15847114],[4.53663707,0.03742867,98.15931876],[4.53663666,0.03742691,98.16017166],[4.53663626,0.03742515,98.16102785],[4.53663585,0.03742339,98.16188536],[4.53663544,0.03742164,98.16274222],[4.53663503,0.03741988,98.16359645],[4.53663462,0.03741812,98.16444608],[4.53663421,0.03741637,98.16528913],[4.53663379,0.03741461,98.16612364],[4.53663337,0.03741286,98.16694764],[4.53663294,0.0374111,98.16775969],[4.53663251,0.03740935,98.16856045],[4.53663207,0.0374076,98.16935107],[4.53663163,0.03740585,98.17013271],[4.53663119,0.0374041,98.17090652],[4.53663074,0.03740236,98.17167367],[4.5366303,0.03740061,98.1724353],[4.53662984,0.03739886,98.17319257],[4.53662939,0.03739712,98.17394634],[4.53662894,0.03739537,98.17469721],[4.53662848,0.03739363,98.17544578],[4.53662802,0.03739188,98.17619265],[4.53662756,0.03739014,98.1769384],[4.5366271,0.03738839,98.17768365],[4.53662664,0.03738665,98.17842897],[4.53662617,0.03738491,98.17917497],[4.53662571,0.03738316,98.17992223],[4.53662525,0.03738142,98.18067134],[4.53662478,0.03737967,98.18142291],[4.53662432,0.03737793,98.18217752],[4.53662386,0.03737619,98.18293575],[4.5366234,0.03737444,98.18369821],[4.53662293,0.0373727,98.18446536],[4.53662247,0.03737095,98.18523726],[4.53662201,0.03736921,98.1860139],[4.53662155,0.03736747,98.18679522],[4.53662109,0.03736572,98.1875812],[4.53662064,0.03736398,98.18837182],[4.53662018,0.03736223,98.18916702],[4.53661972,0.03736049,98.18996679],[4.53661926,0.03735874,98.1907711],[4.53661881,0.037357,98.19157989],[4.53661835,0.03735525,98.19239316],[4.5366179,0.0373535,98.19321086],[4.53661744,0.03735176,98.19403296],[4.53661699,0.03735001,98.19485942],[4.53661653,0.03734827,98.19569023],[4.53661608,0.03734652,98.19652533],[4.53661563,0.03734477,98.19736471],[4.53661518,0.03734303,98.19820832],[4.53661472,0.03734128,98.19905612],[4.53661427,0.03733954,98.19990791],[4.53661382,0.03733779,98.20076351],[4.53661337,0.03733604,98.2016227],[4.53661292,0.03733429,98.20248529],[4.53661247,0.03733255,98.20335108],[4.53661202,0.0373308,98.20421986],[4.53661157,0.03732905,98.20509143],[4.53661112,0.03732731,98.2059656],[4.53661067,0.03732556,98.20684216],[4.53661022,0.03732381,98.20772093],[4.53660976,0.03732207,98.20860169],[4.53660931,0.03732032,98.20948426],[4.53660886,0.03731857,98.21036843],[4.53660841,0.03731683,98.21125401],[4.53660795,0.03731508,98.21214081],[4.5366075,0.03731334,98.21302863],[4.53660704,0.03731159,98.21391728],[4.53660659,0.03730984,98.21480657],[4.53660613,0.0373081,98.2156963],[4.53660567,0.03730635,98.21658629],[4.53660522,0.03730461,98.21747634],[4.53660476,0.03730286,98.21836631],[4.53660429,0.03730112,98.21925626],[4.53660383,0.03729938,98.22014628],[4.53660337,0.03729763,98.22103647],[4.53660291,0.03729589,98.22192694],[4.53660244,0.03729414,98.22281778],[4.53660198,0.0372924,98.22370908],[4.53660151,0.03729066,98.22460095],[4.53660104,0.03728892,98.22549348],[4.53660057,0.03728717,98.22638678],[4.5366001,0.03728543,98.22728094],[4.53659963,0.03728369,98.22817606],[4.53659916,0.03728195,98.22907224],[4.53659869,0.03728021,98.22996957],[4.53659822,0.03727846,98.23086816],[4.53659775,0.03727672,98.2317681],[4.53659727,0.03727498,98.23266949],[4.5365968,0.03727324,98.23357242],[4.53659632,0.0372715,98.234477],[4.53659585,0.03726976,98.23538332],[4.53659537,0.03726802,98.23629147],[4.53659489,0.03726628,98.23720156],[4.53659442,0.03726454,98.23811368],[4.53659394,0.0372628,98.23902792],[4.53659346,0.03726106,98.23994439],[4.53659298,0.03725932,98.24086318],[4.53659251,0.03725758,98.24178438],[4.53659203,0.03725584,98.24270809],[4.53659155,0.0372541,98.2436344],[4.53659107,0.03725236,98.24456342],[4.53659059,0.03725062,98.24549522],[4.53659011,0.03724888,98.24642992],[4.53658963,0.03724714,98.24736759],[4.53658915,0.0372454,98.24830834],[4.53658867,0.03724366,98.24925226],[4.53658819,0.03724192,98.25019944],[4.5365877,0.03724018,98.25114997],[4.53658722,0.03723844,98.25210395],[4.53658674,0.0372367,98.25306146],[4.53658626,0.03723496,98.2540226],[4.53658578,0.03723322,98.25498746],[4.5365853,0.03723148,98.25595613],[4.53658482,0.03722975,98.2569287],[4.53658434,0.03722801,98.25790526],[4.53658386,0.03722627,98.2588859],[4.53658352,0.03722504,98.2595775],[4.53658576,0.03722448,98.26572577],[4.5365861,0.0372257,98.26503708],[4.53658657,0.03722744,98.26405902],[4.53658705,0.03722918,98.26308326],[4.53658753,0.03723092,98.26210981],[4.53658801,0.03723266,98.26113864],[4.53658848,0.0372344,98.26016975],[4.53658896,0.03723614,98.25920314],[4.53658943,0.03723788,98.25823879],[4.53658991,0.03723962,98.25727669],[4.53659038,0.03724136,98.25631683],[4.53659086,0.0372431,98.25535922],[4.53659133,0.03724485,98.25440383],[4.5365918,0.03724659,98.25345065],[4.53659228,0.03724833,98.2524997],[4.53659275,0.03725007,98.25155094],[4.53659322,0.03725181,98.25060438],[4.53659369,0.03725355,98.24966001],[4.53659416,0.03725529,98.24871783],[4.53659463,0.03725704,98.24777781],[4.5365951,0.03725878,98.24683997],[4.53659557,0.03726052,98.24590429],[4.53659604,0.03726226,98.24497076],[4.53659651,0.03726401,98.24403939],[4.53659698,0.03726575,98.24311015],[4.53659745,0.03726749,98.24218306],[4.53659791,0.03726923,98.24125809],[4.53659838,0.03727098,98.24033525],[4.53659885,0.03727272,98.23941453],[4.53659932,0.03727446,98.23849593],[4.53659978,0.0372762,98.23757943],[4.53660025,0.03727795,98.23666504],[4.53660071,0.03727969,98.23575275],[4.53660118,0.03728143,98.23484256],[4.53660164,0.03728318,98.23393446],[4.53660211,0.03728492,98.23302844],[4.53660257,0.03728667,98.23212451],[4.53660303,0.03728841,98.23122266],[4.5366035,0.03729015,98.23032288],[4.53660396,0.0372919,98.22942517],[4.53660442,0.03729364,98.22852953],[4.53660488,0.03729538,98.22763595],[4.53660535,0.03729713,98.22674443],[4.53660581,0.03729887,98.22585497],[4.53660627,0.03730062,98.22496757],[4.53660673,0.03730236,98.22408222],[4.53660719,0.03730411,98.22319891],[4.53660765,0.03730585,98.22231765],[4.53660811,0.03730759,98.22143843],[4.53660857,0.03730934,98.22056126],[4.53660903,0.03731108,98.21968612],[4.53660949,0.03731283,98.21881302],[4.53660995,0.03731457,98.21794195],[4.5366104,0.03731632,98.21707292],[4.53661086,0.03731806,98.21620592],[4.53661132,0.03731981,98.21534094],[4.53661178,0.03732155,98.21447799],[4.53661223,0.0373233,98.21361707],[4.53661269,0.03732505,98.21275817],[4.53661315,0.03732679,98.21190129],[4.5366136,0.03732854,98.21104644],[4.53661406,0.03733028,98.2101936],[4.53661451,0.03733203,98.20934279],[4.53661497,0.03733377,98.20849399],[4.53661542,0.03733552,98.20764722],[4.53661588,0.03733726,98.20680245],[4.53661633,0.03733901,98.20595971],[4.53661678,0.03734076,98.20511898],[4.53661724,0.0373425,98.20428027],[4.53661769,0.03734425,98.20344357],[4.53661814,0.03734599,98.20260889],[4.5366186,0.03734774,98.20177622],[4.53661905,0.03734949,98.20094556],[4.5366195,0.03735123,98.20011692],[4.53661995,0.03735298,98.1992903],[4.53662041,0.03735473,98.19846569],[4.53662086,0.03735647,98.1976431],[4.53662131,0.03735822,98.19682252],[4.53662176,0.03735997,98.19600396],[4.53662221,0.03736171,98.19518741],[4.53662266,0.03736346,98.19437288],[4.53662311,0.03736521,98.19356037],[4.53662356,0.03736695,98.19274988],[4.53662401,0.0373687,98.19194141],[4.53662446,0.03737045,98.19113496],[4.53662491,0.03737219,98.19033052],[4.53662536,0.03737394,98.18952811],[4.53662581,0.03737569,98.18872774],[4.53662626,0.03737744,98.18792943],[4.53662671,0.03737918,98.1871332],[4.53662715,0.03738093,98.18633908],[4.5366276,0.03738268,98.1855471],[4.53662805,0.03738443,98.18475728],[4.5366285,0.03738617,98.18396966],[4.53662895,0.03738792,98.18318424],[4.53662939,0.03738967,98.18240107],[4.53662984,0.03739142,98.18162016],[4.53663029,0.03739316,98.18084155],[4.53663074,0.03739491,98.18006525],[4.53663118,0.03739666,98.1792913],[4.53663163,0.03739841,98.17851972],[4.53663208,0.03740015,98.17775054],[4.53663252,0.0374019,98.17698377],[4.53663297,0.03740365,98.17621945],[4.53663342,0.0374054,98.17545756],[4.53663387,0.03740714,98.17469812],[4.53663431,0.03740889,98.17394113],[4.53663476,0.03741064,98.17318662],[4.53663521,0.03741239,98.17243457],[4.53663565,0.03741414,98.17168502],[4.5366361,0.03741588,98.17093796],[4.53663655,0.03741763,98.17019341],[4.53663699,0.03741938,98.16945139],[4.53663744,0.03742113,98.16871191],[4.53663789,0.03742287,98.16797497],[4.53663833,0.03742462,98.16724061],[4.53663878,0.03742637,98.16650882],[4.53663923,0.03742812,98.16577962],[4.53663967,0.03742986,98.16505303],[4.53664012,0.03743161,98.16432906],[4.53664057,0.03743336,98.16360772],[4.53664102,0.03743511,98.16288902],[4.53664146,0.03743685,98.16217298],[4.53664191,0.0374386,98.1614596],[4.53664236,0.03744035,98.16074887],[4.5366428,0.0374421,98.16004079],[4.53664325,0.03744384,98.15933534],[4.5366437,0.03744559,98.15863251],[4.53664415,0.03744734,98.1579323],[4.5366446,0.03744909,98.15723469],[4.53664504,0.03745083,98.15653968],[4.53664549,0.03745258,98.15584726],[4.53664594,0.03745433,98.15515742],[4.53664639,0.03745608,98.15447015],[4.53664684,0.03745782,98.15378544],[4.53664728,0.03745957,98.15310328],[4.53664773,0.03746132,98.15242367],[4.53664818,0.03746307,98.15174659],[4.53664863,0.03746481,98.15107204],[4.53664908,0.03746656,98.1504],[4.53664953,0.03746831,98.14973047],[4.53664997,0.03747005,98.14906344],[4.53665042,0.0374718,98.1483989],[4.53665087,0.03747355,98.14773684],[4.53665132,0.0374753,98.14707725],[4.53665177,0.03747704,98.14642012],[4.53665222,0.03747879,98.14576544],[4.53665267,0.03748054,98.14511321],[4.53665312,0.03748229,98.14446342],[4.53665357,0.03748403,98.14381606],[4.53665401,0.03748578,98.14317112],[4.53665446,0.03748753,98.1425286],[4.53665491,0.03748927,98.14188849],[4.53665536,0.03749102,98.1412508],[4.53665581,0.03749277,98.1406155],[4.53665626,0.03749451,98.13998261],[4.53665671,0.03749626,98.13935211],[4.53665716,0.03749801,98.138724],[4.53665761,0.03749976,98.13809827],[4.53665806,0.0375015,98.13747492],[4.53665851,0.03750325,98.13685394],[4.53665896,0.037505,98.13623533],[4.53665941,0.03750674,98.13561908],[4.53665986,0.03750849,98.13500519],[4.53666031,0.03751024,98.13439365],[4.53666076,0.03751198,98.13378445],[4.53666121,0.03751373,98.1331776],[4.53666166,0.03751548,98.13257308],[4.53666211,0.03751723,98.13197089],[4.53666256,0.03751897,98.13137103],[4.53666301,0.03752072,98.13077349],[4.53666346,0.03752247,98.13017826],[4.53666391,0.03752421,98.12958534],[4.53666436,0.03752596,98.12899473],[4.53666482,0.03752771,98.12840641],[4.53666527,0.03752945,98.12782039],[4.53666572,0.0375312,98.12723666],[4.53666617,0.03753295,98.12665521],[4.53666662,0.03753469,98.12607604],[4.53666707,0.03753644,98.12549914],[4.53666752,0.03753819,98.12492451],[4.53666797,0.03753993,98.12435215],[4.53666842,0.03754168,98.12378204],[4.53666888,0.03754343,98.12321418],[4.53666933,0.03754517,98.12264857],[4.53666978,0.03754692,98.1220852],[4.53667023,0.03754867,98.12152406],[4.53667068,0.03755041,98.12096516],[4.53667113,0.03755216,98.12040849],[4.53667159,0.03755391,98.11985404],[4.53667204,0.03755565,98.1193018],[4.53667249,0.0375574,98.11875179],[4.53667294,0.03755915,98.11820399],[4.5366734,0.03756089,98.1176584],[4.53667385,0.03756264,98.11711502],[4.5366743,0.03756438,98.11657385],[4.53667475,0.03756613,98.11603488],[4.53667521,0.03756788,98.11549811],[4.53667566,0.03756962,98.11496353],[4.53667611,0.03757137,98.11443115],[4.53667656,0.03757312,98.11390097],[4.53667702,0.03757486,98.11337297],[4.53667747,0.03757661,98.11284716],[4.53667792,0.03757835,98.11232353],[4.53667838,0.0375801,98.11180208],[4.53667883,0.03758185,98.1112828],[4.53667928,0.03758359,98.1107657],[4.53667974,0.03758534,98.11025078],[4.53668019,0.03758709,98.10973802],[4.53668065,0.03758883,98.10922743],[4.5366811,0.03759058,98.108719],[4.53668155,0.03759232,98.10821272],[4.53668201,0.03759407,98.10770861],[4.53668246,0.03759582,98.10720665],[4.53668292,0.03759756,98.10670684],[4.53668337,0.03759931,98.10620918],[4.53668383,0.03760105,98.10571367],[4.53668428,0.0376028,98.1052203],[4.53668474,0.03760455,98.10472906],[4.53668519,0.03760629,98.10423996],[4.53668565,0.03760804,98.10375299],[4.5366861,0.03760978,98.10326814],[4.53668656,0.03761153,98.1027854],[4.53668701,0.03761327,98.10230476],[4.53668747,0.03761502,98.10182622],[4.53668792,0.03761677,98.10134978],[4.53668838,0.03761851,98.10087542],[4.53668884,0.03762026,98.10040313],[4.53668929,0.037622,98.09993291],[4.53668975,0.03762375,98.09946476],[4.53669021,0.0376255,98.09899866],[4.53669066,0.03762724,98.09853461],[4.53669112,0.03762899,98.09807261],[4.53669158,0.03763073,98.09761264],[4.53669203,0.03763248,98.09715469],[4.53669249,0.03763423,98.09669877],[4.53669295,0.03763597,98.09624485],[4.53669341,0.03763772,98.09579295],[4.53669387,0.03763946,98.09534304],[4.53669432,0.03764121,98.09489513],[4.53669478,0.03764296,98.0944492],[4.53669524,0.0376447,98.09400525],[4.5366957,0.03764645,98.09356328],[4.53669616,0.0376482,98.09312326],[4.53669662,0.03764994,98.09268521],[4.53669708,0.03765169,98.09224911],[4.53669753,0.03765343,98.09181495],[4.53669799,0.03765518,98.09138272],[4.53669845,0.03765693,98.09095243],[4.53669891,0.03765867,98.09052406],[4.53669937,0.03766042,98.09009761],[4.53669983,0.03766217,98.08967306],[4.53670029,0.03766391,98.08925042],[4.53670076,0.03766566,98.08882968],[4.53670122,0.0376674,98.08841082],[4.53670168,0.03766915,98.08799384],[4.53670214,0.0376709,98.08757875],[4.5367026,0.03767264,98.08716552],[4.53670306,0.03767439,98.08675415],[4.53670352,0.03767614,98.08634463],[4.53670399,0.03767788,98.08593697],[4.53670445,0.03767963,98.08553114],[4.53670491,0.03768138,98.08512716],[4.53670537,0.03768312,98.084725],[4.53670584,0.03768487,98.08432466],[4.5367063,0.03768661,98.08392613],[4.53670676,0.03768836,98.08352942],[4.53670723,0.03769011,98.0831345],[4.53670769,0.03769185,98.08274138],[4.53670815,0.0376936,98.08235005],[4.53670862,0.03769535,98.0819605],[4.53670908,0.03769709,98.08157273],[4.53670955,0.03769884,98.08118672],[4.53671001,0.03770059,98.08080247],[4.53671048,0.03770233,98.08041996],[4.53671094,0.03770408,98.08003917],[4.53671141,0.03770582,98.07966008],[4.53671187,0.03770757,98.07928268],[4.53671234,0.03770932,98.07890695],[4.53671281,0.03771106,98.07853286],[4.53671327,0.03771281,98.07816041],[4.53671374,0.03771456,98.07778957],[4.53671421,0.0377163,98.07742033],[4.53671467,0.03771805,98.07705267],[4.53671514,0.0377198,98.07668657],[4.53671561,0.03772154,98.07632202],[4.53671608,0.03772329,98.07595899],[4.53671654,0.03772503,98.07559747],[4.53671701,0.03772678,98.07523745],[4.53671748,0.03772853,98.0748789],[4.53671795,0.03773027,98.07452181],[4.53671842,0.03773202,98.07416616],[4.53671889,0.03773377,98.07381194],[4.53671935,0.03773551,98.07345912],[4.53671982,0.03773726,98.07310769],[4.53672029,0.03773901,98.07275763],[4.53672076,0.03774075,98.07240892],[4.53672123,0.0377425,98.07206154],[4.5367217,0.03774424,98.07171546],[4.53672217,0.03774599,98.07137064],[4.53672264,0.03774774,98.07102705],[4.53672311,0.03774948,98.07068468],[4.53672358,0.03775123,98.07034348],[4.53672405,0.03775298,98.07000343],[4.53672452,0.03775472,98.06966449],[4.536725,0.03775647,98.06932665],[4.53672547,0.03775822,98.06898986],[4.53672594,0.03775996,98.06865411],[4.53672641,0.03776171,98.06831935],[4.53672688,0.03776346,98.06798557],[4.53672735,0.0377652,98.06765273],[4.53672782,0.03776695,98.0673208],[4.53672829,0.0377687,98.06698976],[4.53672877,0.03777044,98.06665957],[4.53672924,0.03777219,98.0663302],[4.53672971,0.03777394,98.06600163],[4.53673018,0.03777568,98.06567383],[4.53673065,0.03777743,98.06534677],[4.53673112,0.03777918,98.06502042],[4.5367316,0.03778093,98.06469474],[4.53673207,0.03778267,98.06436972],[4.53673254,0.03778442,98.06404532],[4.53673301,0.03778617,98.06372151],[4.53673348,0.03778791,98.06339827],[4.53673396,0.03778966,98.06307556],[4.53673443,0.03779141,98.06275336],[4.5367349,0.03779316,98.06243164],[4.53673537,0.0377949,98.06211036],[4.53673584,0.03779665,98.06178952],[4.53673632,0.0377984,98.06146911],[4.53673679,0.03780015,98.06114914],[4.53673726,0.03780189,98.06082959],[4.53673773,0.03780364,98.06051049],[4.5367382,0.03780539,98.06019182],[4.53673867,0.03780714,98.05987361],[4.53673915,0.03780889,98.05955584],[4.53673962,0.03781063,98.05923853],[4.53674009,0.03781238,98.05892168],[4.53674056,0.03781413,98.05860529],[4.53674103,0.03781588,98.05828936],[4.53674151,0.03781763,98.05797391],[4.53674198,0.03781937,98.05765893],[4.53674245,0.03782112,98.05734443],[4.53674292,0.03782287,98.05703042],[4.53674339,0.03782462,98.05671689],[4.53674387,0.03782637,98.05640385],[4.53674434,0.03782812,98.0560913],[4.53674481,0.03782986,98.05577925],[4.53674528,0.03783161,98.0554677],[4.53674575,0.03783336,98.05515666],[4.53674623,0.03783511,98.05484613],[4.5367467,0.03783686,98.05453611],[4.53674717,0.03783861,98.0542266],[4.53674765,0.03784036,98.05391762],[4.53674812,0.0378421,98.05360915],[4.53674859,0.03784385,98.05330122],[4.53674906,0.0378456,98.05299381],[4.53674954,0.03784735,98.05268694],[4.53675001,0.0378491,98.05238061],[4.53675049,0.03785085,98.05207482],[4.53675096,0.0378526,98.05176957],[4.53675143,0.03785435,98.05146488],[4.53675191,0.03785609,98.05116078],[4.53675238,0.03785784,98.05085726],[4.53675286,0.03785959,98.05055436],[4.53675333,0.03786134,98.05025208],[4.5367538,0.03786309,98.04995044],[4.53675428,0.03786484,98.04964947],[4.53675475,0.03786659,98.04934916],[4.53675523,0.03786834,98.04904955],[4.53675571,0.03787009,98.04875065],[4.53675618,0.03787183,98.04845247],[4.53675666,0.03787358,98.04815502],[4.53675712,0.03787529,98.0478583],[4.5367576,0.03787704,98.0475623],[4.53675808,0.03787879,98.04726702],[4.53675855,0.03788054,98.04697247],[4.53675903,0.03788229,98.04667863],[4.53675951,0.03788404,98.0463855],[4.53675999,0.03788579,98.04609309],[4.53676046,0.03788754,98.04580139],[4.53676094,0.03788929,98.0455104],[4.53676142,0.03789103,98.04522012],[4.5367619,0.03789278,98.04493054],[4.53676238,0.03789453,98.04464166],[4.53676286,0.03789628,98.04435348],[4.53676334,0.03789803,98.044066],[4.53676382,0.03789978,98.04377922],[4.5367643,0.03790153,98.04349313],[4.53676478,0.03790328,98.04320773],[4.53676526,0.03790502,98.04292303],[4.53676574,0.03790677,98.042639],[4.53676623,0.03790852,98.04235566],[4.53676671,0.03791027,98.04207301],[4.53676719,0.03791202,98.04179103],[4.53676767,0.03791377,98.04150973],[4.53676816,0.03791551,98.04122911],[4.53676864,0.03791726,98.04094916],[4.53676912,0.03791901,98.04066988],[4.5367696,0.03792076,98.04039126],[4.53677009,0.0379225,98.0401133],[4.53677057,0.03792425,98.03983595],[4.53677106,0.037926,98.03955919],[4.53677154,0.03792775,98.03928298],[4.53677203,0.03792949,98.03900728],[4.53677251,0.03793124,98.03873207],[4.536773,0.03793299,98.0384573],[4.53677348,0.03793474,98.03818296],[4.53677397,0.03793648,98.03790906],[4.53677445,0.03793823,98.0376356],[4.53677494,0.03793998,98.03736262],[4.53677543,0.03794172,98.03709014],[4.53677591,0.03794347,98.03681816],[4.5367764,0.03794522,98.03654671],[4.53677689,0.03794696,98.03627581],[4.53677737,0.03794871,98.03600548],[4.53677786,0.03795046,98.03573573],[4.53677835,0.0379522,98.0354666],[4.53677884,0.03795395,98.03519808],[4.53677933,0.0379557,98.03493022],[4.53677982,0.03795744,98.03466302],[4.53678031,0.03795919,98.0343965],[4.5367808,0.03796093,98.03413068],[4.53678129,0.03796268,98.0338656],[4.53678178,0.03796443,98.03360126],[4.53678227,0.03796617,98.0333377],[4.53678276,0.03796792,98.03307493],[4.53678325,0.03796966,98.03281297],[4.53678374,0.03797141,98.03255186],[4.53678423,0.03797315,98.0322916],[4.53678473,0.0379749,98.03203223],[4.53678522,0.03797664,98.03177376],[4.53678571,0.03797839,98.03151623],[4.53678621,0.03798013,98.03125964],[4.5367867,0.03798188,98.03100403],[4.5367872,0.03798362,98.03074942],[4.53678769,0.03798537,98.03049583],[4.53678819,0.03798711,98.03024328],[4.53678869,0.03798885,98.0299918],[4.53678918,0.0379906,98.02974141],[4.53678968,0.03799234,98.02949214],[4.53679018,0.03799408,98.029244],[4.53679068,0.03799583,98.02899703],[4.53679118,0.03799757,98.02875124],[4.53679168,0.03799931,98.02850666],[4.53679218,0.03800106,98.02826331],[4.53679268,0.0380028,98.02802114],[4.53679318,0.03800454,98.02778002],[4.53679368,0.03800628,98.02753985],[4.53679418,0.03800803,98.02730054],[4.53679469,0.03800977,98.027062],[4.53679519,0.03801151,98.02682413],[4.53679569,0.03801325,98.02658686],[4.5367962,0.038015,98.02635009],[4.5367967,0.03801674,98.02611373],[4.5367972,0.03801848,98.02587769],[4.53679771,0.03802022,98.02564189],[4.53679821,0.03802196,98.02540622],[4.53679872,0.0380237,98.0251706],[4.53679922,0.03802545,98.02493493],[4.53679973,0.03802719,98.02469913],[4.53680023,0.03802893,98.0244631],[4.53680074,0.03803067,98.02422676],[4.53680124,0.03803241,98.02399],[4.53680175,0.03803415,98.02375273],[4.53680225,0.03803589,98.02351486],[4.53680276,0.03803764,98.02327631],[4.53680327,0.03803938,98.02303698],[4.53680377,0.03804112,98.02279678],[4.53680427,0.03804286,98.02255562],[4.53680478,0.0380446,98.02231342],[4.53680528,0.03804634,98.02207007],[4.53680579,0.03804809,98.02182548],[4.53680629,0.03804983,98.0215796],[4.5368068,0.03805157,98.02133246],[4.5368073,0.03805331,98.02108414],[4.5368078,0.03805505,98.02083471],[4.53680831,0.03805679,98.02058424],[4.53680881,0.03805854,98.02033281],[4.53680931,0.03806028,98.02008048],[4.53680982,0.03806202,98.01982734],[4.53681032,0.03806376,98.01957345],[4.53681082,0.03806551,98.0193189],[4.53681133,0.03806725,98.01906375],[4.53681183,0.03806899,98.01880808],[4.53681233,0.03807073,98.01855197],[4.53681284,0.03807247,98.01829548],[4.53681334,0.03807422,98.01803871],[4.53681384,0.03807596,98.01778171],[4.53681435,0.0380777,98.01752458],[4.53681485,0.03807944,98.01726738],[4.53681535,0.03808118,98.0170102],[4.53681586,0.03808293,98.01675311],[4.53681636,0.03808467,98.01649618],[4.53681687,0.03808641,98.01623951],[4.53681737,0.03808815,98.01598316],[4.53681788,0.03808989,98.01572722],[4.53681839,0.03809163,98.01547177],[4.53681889,0.03809338,98.01521688],[4.5368194,0.03809512,98.01496263],[4.53681991,0.03809686,98.01470912],[4.53682042,0.0380986,98.01445641],[4.53682092,0.03810034,98.01420459],[4.53682143,0.03810208,98.01395374],[4.53682194,0.03810382,98.01370394],[4.53682245,0.03810556,98.01345528],[4.53682297,0.0381073,98.01320784],[4.53682348,0.03810904,98.01296171],[4.53682399,0.03811078,98.01271696],[4.5368245,0.03811252,98.01247368],[4.53682502,0.03811426,98.01223196],[4.53682553,0.038116,98.01199188],[4.53682605,0.03811774,98.01175344],[4.53682656,0.03811947,98.01151657],[4.53682708,0.03812121,98.0112812],[4.5368276,0.03812295,98.01104724],[4.53682812,0.03812469,98.01081463],[4.53682864,0.03812643,98.01058329],[4.53682916,0.03812816,98.01035314],[4.53682968,0.0381299,98.0101241],[4.53683019,0.03813162,98.00989609],[4.53683071,0.03813336,98.00966905],[4.53683124,0.0381351,98.00944288],[4.53683176,0.03813684,98.00921751],[4.53683228,0.03813857,98.00899286],[4.53683281,0.03814031,98.00876885],[4.53683333,0.03814204,98.00854541],[4.53683385,0.03814378,98.00832245],[4.53683438,0.03814552,98.00809989],[4.5368349,0.03814725,98.00787765],[4.53683543,0.03814899,98.00765565],[4.53683595,0.03815072,98.0074338],[4.53683648,0.03815246,98.00721204],[4.53683701,0.03815419,98.00699027],[4.53683753,0.03815593,98.00676841],[4.53683806,0.03815766,98.00654637],[4.53683859,0.0381594,98.00632409],[4.53683911,0.03816113,98.00610146],[4.53683964,0.03816286,98.00587842],[4.53684017,0.0381646,98.00565487],[4.53684069,0.03816633,98.00543074],[4.53684122,0.03816807,98.00520593],[4.53684175,0.0381698,98.00498037],[4.53684227,0.03817153,98.00475395],[4.5368428,0.03817327,98.00452665],[4.53684333,0.038175,98.00429848],[4.53684385,0.03817674,98.00406946],[4.53684438,0.03817847,98.0038396],[4.53684491,0.0381802,98.00360889],[4.53684543,0.03818194,98.00337737],[4.53684596,0.03818367,98.00314504],[4.53684649,0.0381854,98.00291191],[4.53684701,0.03818714,98.00267799],[4.53684754,0.03818887,98.00244329],[4.53684806,0.0381906,98.00220783],[4.53684859,0.03819233,98.00197162],[4.53684912,0.03819407,98.00173466],[4.53684964,0.0381958,98.00149698],[4.53685017,0.03819753,98.00125858],[4.5368507,0.03819927,98.00101948],[4.53685122,0.038201,98.00077969],[4.53685175,0.03820273,98.00053922],[4.53685227,0.03820446,98.00029808],[4.5368528,0.0382062,98.00005628],[4.53685333,0.03820793,97.99981385],[4.53685385,0.03820966,97.99957079],[4.53685438,0.03821139,97.99932711],[4.5368549,0.03821313,97.99908283],[4.53685543,0.03821486,97.99883797],[4.53685596,0.03821659,97.99859252],[4.53685648,0.03821832,97.99834652],[4.53685701,0.03822005,97.99809997],[4.53685347,0.03822118,97.98609238]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000400","id":-3,"type":"shoulder","predecessorId":-3,"sOffset":53.8593184394}},{"geometry":{"coordinates":[[[4.53685701,0.03822005,97.99809997],[4.53685648,0.03821832,97.99834652],[4.53685596,0.03821659,97.99859252],[4.53685543,0.03821486,97.99883797],[4.5368549,0.03821313,97.99908283],[4.53685438,0.03821139,97.99932711],[4.53685385,0.03820966,97.99957079],[4.53685333,0.03820793,97.99981385],[4.5368528,0.0382062,98.00005628],[4.53685227,0.03820446,98.00029808],[4.53685175,0.03820273,98.00053922],[4.53685122,0.038201,98.00077969],[4.5368507,0.03819927,98.00101948],[4.53685017,0.03819753,98.00125858],[4.53684964,0.0381958,98.00149698],[4.53684912,0.03819407,98.00173466],[4.53684859,0.03819233,98.00197162],[4.53684806,0.0381906,98.00220783],[4.53684754,0.03818887,98.00244329],[4.53684701,0.03818714,98.00267799],[4.53684649,0.0381854,98.00291191],[4.53684596,0.03818367,98.00314504],[4.53684543,0.03818194,98.00337737],[4.53684491,0.0381802,98.00360889],[4.53684438,0.03817847,98.0038396],[4.53684385,0.03817674,98.00406946],[4.53684333,0.038175,98.00429848],[4.5368428,0.03817327,98.00452665],[4.53684227,0.03817153,98.00475395],[4.53684175,0.0381698,98.00498037],[4.53684122,0.03816807,98.00520593],[4.53684069,0.03816633,98.00543074],[4.53684017,0.0381646,98.00565487],[4.53683964,0.03816286,98.00587842],[4.53683911,0.03816113,98.00610146],[4.53683859,0.0381594,98.00632409],[4.53683806,0.03815766,98.00654637],[4.53683753,0.03815593,98.00676841],[4.53683701,0.03815419,98.00699027],[4.53683648,0.03815246,98.00721204],[4.53683595,0.03815072,98.0074338],[4.53683543,0.03814899,98.00765565],[4.5368349,0.03814725,98.00787765],[4.53683438,0.03814552,98.00809989],[4.53683385,0.03814378,98.00832245],[4.53683333,0.03814204,98.00854541],[4.53683281,0.03814031,98.00876885],[4.53683228,0.03813857,98.00899286],[4.53683176,0.03813684,98.00921751],[4.53683124,0.0381351,98.00944288],[4.53683071,0.03813336,98.00966905],[4.53683019,0.03813162,98.00989609],[4.53682968,0.0381299,98.0101241],[4.53682916,0.03812816,98.01035314],[4.53682864,0.03812643,98.01058329],[4.53682812,0.03812469,98.01081463],[4.5368276,0.03812295,98.01104724],[4.53682708,0.03812121,98.0112812],[4.53682656,0.03811947,98.01151657],[4.53682605,0.03811774,98.01175344],[4.53682553,0.038116,98.01199188],[4.53682502,0.03811426,98.01223196],[4.5368245,0.03811252,98.01247368],[4.53682399,0.03811078,98.01271696],[4.53682348,0.03810904,98.01296171],[4.53682297,0.0381073,98.01320784],[4.53682245,0.03810556,98.01345528],[4.53682194,0.03810382,98.01370394],[4.53682143,0.03810208,98.01395374],[4.53682092,0.03810034,98.01420459],[4.53682042,0.0380986,98.01445641],[4.53681991,0.03809686,98.01470912],[4.5368194,0.03809512,98.01496263],[4.53681889,0.03809338,98.01521688],[4.53681839,0.03809163,98.01547177],[4.53681788,0.03808989,98.01572722],[4.53681737,0.03808815,98.01598316],[4.53681687,0.03808641,98.01623951],[4.53681636,0.03808467,98.01649618],[4.53681586,0.03808293,98.01675311],[4.53681535,0.03808118,98.0170102],[4.53681485,0.03807944,98.01726738],[4.53681435,0.0380777,98.01752458],[4.53681384,0.03807596,98.01778171],[4.53681334,0.03807422,98.01803871],[4.53681284,0.03807247,98.01829548],[4.53681233,0.03807073,98.01855197],[4.53681183,0.03806899,98.01880808],[4.53681133,0.03806725,98.01906375],[4.53681082,0.03806551,98.0193189],[4.53681032,0.03806376,98.01957345],[4.53680982,0.03806202,98.01982734],[4.53680931,0.03806028,98.02008048],[4.53680881,0.03805854,98.02033281],[4.53680831,0.03805679,98.02058424],[4.5368078,0.03805505,98.02083471],[4.5368073,0.03805331,98.02108414],[4.5368068,0.03805157,98.02133246],[4.53680629,0.03804983,98.0215796],[4.53680579,0.03804809,98.02182548],[4.53680528,0.03804634,98.02207007],[4.53680478,0.0380446,98.02231342],[4.53680427,0.03804286,98.02255562],[4.53680377,0.03804112,98.02279678],[4.53680327,0.03803938,98.02303698],[4.53680276,0.03803764,98.02327631],[4.53680225,0.03803589,98.02351486],[4.53680175,0.03803415,98.02375273],[4.53680124,0.03803241,98.02399],[4.53680074,0.03803067,98.02422676],[4.53680023,0.03802893,98.0244631],[4.53679973,0.03802719,98.02469913],[4.53679922,0.03802545,98.02493493],[4.53679872,0.0380237,98.0251706],[4.53679821,0.03802196,98.02540622],[4.53679771,0.03802022,98.02564189],[4.5367972,0.03801848,98.02587769],[4.5367967,0.03801674,98.02611373],[4.5367962,0.038015,98.02635009],[4.53679569,0.03801325,98.02658686],[4.53679519,0.03801151,98.02682413],[4.53679469,0.03800977,98.027062],[4.53679418,0.03800803,98.02730054],[4.53679368,0.03800628,98.02753985],[4.53679318,0.03800454,98.02778002],[4.53679268,0.0380028,98.02802114],[4.53679218,0.03800106,98.02826331],[4.53679168,0.03799931,98.02850666],[4.53679118,0.03799757,98.02875124],[4.53679068,0.03799583,98.02899703],[4.53679018,0.03799408,98.029244],[4.53678968,0.03799234,98.02949214],[4.53678918,0.0379906,98.02974141],[4.53678869,0.03798885,98.0299918],[4.53678819,0.03798711,98.03024328],[4.53678769,0.03798537,98.03049583],[4.5367872,0.03798362,98.03074942],[4.5367867,0.03798188,98.03100403],[4.53678621,0.03798013,98.03125964],[4.53678571,0.03797839,98.03151623],[4.53678522,0.03797664,98.03177376],[4.53678473,0.0379749,98.03203223],[4.53678423,0.03797315,98.0322916],[4.53678374,0.03797141,98.03255186],[4.53678325,0.03796966,98.03281297],[4.53678276,0.03796792,98.03307493],[4.53678227,0.03796617,98.0333377],[4.53678178,0.03796443,98.03360126],[4.53678129,0.03796268,98.0338656],[4.5367808,0.03796093,98.03413068],[4.53678031,0.03795919,98.0343965],[4.53677982,0.03795744,98.03466302],[4.53677933,0.0379557,98.03493022],[4.53677884,0.03795395,98.03519808],[4.53677835,0.0379522,98.0354666],[4.53677786,0.03795046,98.03573573],[4.53677737,0.03794871,98.03600548],[4.53677689,0.03794696,98.03627581],[4.5367764,0.03794522,98.03654671],[4.53677591,0.03794347,98.03681816],[4.53677543,0.03794172,98.03709014],[4.53677494,0.03793998,98.03736262],[4.53677445,0.03793823,98.0376356],[4.53677397,0.03793648,98.03790906],[4.53677348,0.03793474,98.03818296],[4.536773,0.03793299,98.0384573],[4.53677251,0.03793124,98.03873207],[4.53677203,0.03792949,98.03900728],[4.53677154,0.03792775,98.03928298],[4.53677106,0.037926,98.03955919],[4.53677057,0.03792425,98.03983595],[4.53677009,0.0379225,98.0401133],[4.5367696,0.03792076,98.04039126],[4.53676912,0.03791901,98.04066988],[4.53676864,0.03791726,98.04094916],[4.53676816,0.03791551,98.04122911],[4.53676767,0.03791377,98.04150973],[4.53676719,0.03791202,98.04179103],[4.53676671,0.03791027,98.04207301],[4.53676623,0.03790852,98.04235566],[4.53676574,0.03790677,98.042639],[4.53676526,0.03790502,98.04292303],[4.53676478,0.03790328,98.04320773],[4.5367643,0.03790153,98.04349313],[4.53676382,0.03789978,98.04377922],[4.53676334,0.03789803,98.044066],[4.53676286,0.03789628,98.04435348],[4.53676238,0.03789453,98.04464166],[4.5367619,0.03789278,98.04493054],[4.53676142,0.03789103,98.04522012],[4.53676094,0.03788929,98.0455104],[4.53676046,0.03788754,98.04580139],[4.53675999,0.03788579,98.04609309],[4.53675951,0.03788404,98.0463855],[4.53675903,0.03788229,98.04667863],[4.53675855,0.03788054,98.04697247],[4.53675808,0.03787879,98.04726702],[4.5367576,0.03787704,98.0475623],[4.53675712,0.03787529,98.0478583],[4.53675666,0.03787358,98.04815502],[4.53675618,0.03787183,98.04845247],[4.53675571,0.03787009,98.04875065],[4.53675523,0.03786834,98.04904955],[4.53675475,0.03786659,98.04934916],[4.53675428,0.03786484,98.04964947],[4.5367538,0.03786309,98.04995044],[4.53675333,0.03786134,98.05025208],[4.53675286,0.03785959,98.05055436],[4.53675238,0.03785784,98.05085726],[4.53675191,0.03785609,98.05116078],[4.53675143,0.03785435,98.05146488],[4.53675096,0.0378526,98.05176957],[4.53675049,0.03785085,98.05207482],[4.53675001,0.0378491,98.05238061],[4.53674954,0.03784735,98.05268694],[4.53674906,0.0378456,98.05299381],[4.53674859,0.03784385,98.05330122],[4.53674812,0.0378421,98.05360915],[4.53674765,0.03784036,98.05391762],[4.53674717,0.03783861,98.0542266],[4.5367467,0.03783686,98.05453611],[4.53674623,0.03783511,98.05484613],[4.53674575,0.03783336,98.05515666],[4.53674528,0.03783161,98.0554677],[4.53674481,0.03782986,98.05577925],[4.53674434,0.03782812,98.0560913],[4.53674387,0.03782637,98.05640385],[4.53674339,0.03782462,98.05671689],[4.53674292,0.03782287,98.05703042],[4.53674245,0.03782112,98.05734443],[4.53674198,0.03781937,98.05765893],[4.53674151,0.03781763,98.05797391],[4.53674103,0.03781588,98.05828936],[4.53674056,0.03781413,98.05860529],[4.53674009,0.03781238,98.05892168],[4.53673962,0.03781063,98.05923853],[4.53673915,0.03780889,98.05955584],[4.53673867,0.03780714,98.05987361],[4.5367382,0.03780539,98.06019182],[4.53673773,0.03780364,98.06051049],[4.53673726,0.03780189,98.06082959],[4.53673679,0.03780015,98.06114914],[4.53673632,0.0377984,98.06146911],[4.53673584,0.03779665,98.06178952],[4.53673537,0.0377949,98.06211036],[4.5367349,0.03779316,98.06243164],[4.53673443,0.03779141,98.06275336],[4.53673396,0.03778966,98.06307556],[4.53673348,0.03778791,98.06339827],[4.53673301,0.03778617,98.06372151],[4.53673254,0.03778442,98.06404532],[4.53673207,0.03778267,98.06436972],[4.5367316,0.03778093,98.06469474],[4.53673112,0.03777918,98.06502042],[4.53673065,0.03777743,98.06534677],[4.53673018,0.03777568,98.06567383],[4.53672971,0.03777394,98.06600163],[4.53672924,0.03777219,98.0663302],[4.53672877,0.03777044,98.06665957],[4.53672829,0.0377687,98.06698976],[4.53672782,0.03776695,98.0673208],[4.53672735,0.0377652,98.06765273],[4.53672688,0.03776346,98.06798557],[4.53672641,0.03776171,98.06831935],[4.53672594,0.03775996,98.06865411],[4.53672547,0.03775822,98.06898986],[4.536725,0.03775647,98.06932665],[4.53672452,0.03775472,98.06966449],[4.53672405,0.03775298,98.07000343],[4.53672358,0.03775123,98.07034348],[4.53672311,0.03774948,98.07068468],[4.53672264,0.03774774,98.07102705],[4.53672217,0.03774599,98.07137064],[4.5367217,0.03774424,98.07171546],[4.53672123,0.0377425,98.07206154],[4.53672076,0.03774075,98.07240892],[4.53672029,0.03773901,98.07275763],[4.53671982,0.03773726,98.07310769],[4.53671935,0.03773551,98.07345912],[4.53671889,0.03773377,98.07381194],[4.53671842,0.03773202,98.07416616],[4.53671795,0.03773027,98.07452181],[4.53671748,0.03772853,98.0748789],[4.53671701,0.03772678,98.07523745],[4.53671654,0.03772503,98.07559747],[4.53671608,0.03772329,98.07595899],[4.53671561,0.03772154,98.07632202],[4.53671514,0.0377198,98.07668657],[4.53671467,0.03771805,98.07705267],[4.53671421,0.0377163,98.07742033],[4.53671374,0.03771456,98.07778957],[4.53671327,0.03771281,98.07816041],[4.53671281,0.03771106,98.07853286],[4.53671234,0.03770932,98.07890695],[4.53671187,0.03770757,98.07928268],[4.53671141,0.03770582,98.07966008],[4.53671094,0.03770408,98.08003917],[4.53671048,0.03770233,98.08041996],[4.53671001,0.03770059,98.08080247],[4.53670955,0.03769884,98.08118672],[4.53670908,0.03769709,98.08157273],[4.53670862,0.03769535,98.0819605],[4.53670815,0.0376936,98.08235005],[4.53670769,0.03769185,98.08274138],[4.53670723,0.03769011,98.0831345],[4.53670676,0.03768836,98.08352942],[4.5367063,0.03768661,98.08392613],[4.53670584,0.03768487,98.08432466],[4.53670537,0.03768312,98.084725],[4.53670491,0.03768138,98.08512716],[4.53670445,0.03767963,98.08553114],[4.53670399,0.03767788,98.08593697],[4.53670352,0.03767614,98.08634463],[4.53670306,0.03767439,98.08675415],[4.5367026,0.03767264,98.08716552],[4.53670214,0.0376709,98.08757875],[4.53670168,0.03766915,98.08799384],[4.53670122,0.0376674,98.08841082],[4.53670076,0.03766566,98.08882968],[4.53670029,0.03766391,98.08925042],[4.53669983,0.03766217,98.08967306],[4.53669937,0.03766042,98.09009761],[4.53669891,0.03765867,98.09052406],[4.53669845,0.03765693,98.09095243],[4.53669799,0.03765518,98.09138272],[4.53669753,0.03765343,98.09181495],[4.53669708,0.03765169,98.09224911],[4.53669662,0.03764994,98.09268521],[4.53669616,0.0376482,98.09312326],[4.5366957,0.03764645,98.09356328],[4.53669524,0.0376447,98.09400525],[4.53669478,0.03764296,98.0944492],[4.53669432,0.03764121,98.09489513],[4.53669387,0.03763946,98.09534304],[4.53669341,0.03763772,98.09579295],[4.53669295,0.03763597,98.09624485],[4.53669249,0.03763423,98.09669877],[4.53669203,0.03763248,98.09715469],[4.53669158,0.03763073,98.09761264],[4.53669112,0.03762899,98.09807261],[4.53669066,0.03762724,98.09853461],[4.53669021,0.0376255,98.09899866],[4.53668975,0.03762375,98.09946476],[4.53668929,0.037622,98.09993291],[4.53668884,0.03762026,98.10040313],[4.53668838,0.03761851,98.10087542],[4.53668792,0.03761677,98.10134978],[4.53668747,0.03761502,98.10182622],[4.53668701,0.03761327,98.10230476],[4.53668656,0.03761153,98.1027854],[4.5366861,0.03760978,98.10326814],[4.53668565,0.03760804,98.10375299],[4.53668519,0.03760629,98.10423996],[4.53668474,0.03760455,98.10472906],[4.53668428,0.0376028,98.1052203],[4.53668383,0.03760105,98.10571367],[4.53668337,0.03759931,98.10620918],[4.53668292,0.03759756,98.10670684],[4.53668246,0.03759582,98.10720665],[4.53668201,0.03759407,98.10770861],[4.53668155,0.03759232,98.10821272],[4.5366811,0.03759058,98.108719],[4.53668065,0.03758883,98.10922743],[4.53668019,0.03758709,98.10973802],[4.53667974,0.03758534,98.11025078],[4.53667928,0.03758359,98.1107657],[4.53667883,0.03758185,98.1112828],[4.53667838,0.0375801,98.11180208],[4.53667792,0.03757835,98.11232353],[4.53667747,0.03757661,98.11284716],[4.53667702,0.03757486,98.11337297],[4.53667656,0.03757312,98.11390097],[4.53667611,0.03757137,98.11443115],[4.53667566,0.03756962,98.11496353],[4.53667521,0.03756788,98.11549811],[4.53667475,0.03756613,98.11603488],[4.5366743,0.03756438,98.11657385],[4.53667385,0.03756264,98.11711502],[4.5366734,0.03756089,98.1176584],[4.53667294,0.03755915,98.11820399],[4.53667249,0.0375574,98.11875179],[4.53667204,0.03755565,98.1193018],[4.53667159,0.03755391,98.11985404],[4.53667113,0.03755216,98.12040849],[4.53667068,0.03755041,98.12096516],[4.53667023,0.03754867,98.12152406],[4.53666978,0.03754692,98.1220852],[4.53666933,0.03754517,98.12264857],[4.53666888,0.03754343,98.12321418],[4.53666842,0.03754168,98.12378204],[4.53666797,0.03753993,98.12435215],[4.53666752,0.03753819,98.12492451],[4.53666707,0.03753644,98.12549914],[4.53666662,0.03753469,98.12607604],[4.53666617,0.03753295,98.12665521],[4.53666572,0.0375312,98.12723666],[4.53666527,0.03752945,98.12782039],[4.53666482,0.03752771,98.12840641],[4.53666436,0.03752596,98.12899473],[4.53666391,0.03752421,98.12958534],[4.53666346,0.03752247,98.13017826],[4.53666301,0.03752072,98.13077349],[4.53666256,0.03751897,98.13137103],[4.53666211,0.03751723,98.13197089],[4.53666166,0.03751548,98.13257308],[4.53666121,0.03751373,98.1331776],[4.53666076,0.03751198,98.13378445],[4.53666031,0.03751024,98.13439365],[4.53665986,0.03750849,98.13500519],[4.53665941,0.03750674,98.13561908],[4.53665896,0.037505,98.13623533],[4.53665851,0.03750325,98.13685394],[4.53665806,0.0375015,98.13747492],[4.53665761,0.03749976,98.13809827],[4.53665716,0.03749801,98.138724],[4.53665671,0.03749626,98.13935211],[4.53665626,0.03749451,98.13998261],[4.53665581,0.03749277,98.1406155],[4.53665536,0.03749102,98.1412508],[4.53665491,0.03748927,98.14188849],[4.53665446,0.03748753,98.1425286],[4.53665401,0.03748578,98.14317112],[4.53665357,0.03748403,98.14381606],[4.53665312,0.03748229,98.14446342],[4.53665267,0.03748054,98.14511321],[4.53665222,0.03747879,98.14576544],[4.53665177,0.03747704,98.14642012],[4.53665132,0.0374753,98.14707725],[4.53665087,0.03747355,98.14773684],[4.53665042,0.0374718,98.1483989],[4.53664997,0.03747005,98.14906344],[4.53664953,0.03746831,98.14973047],[4.53664908,0.03746656,98.1504],[4.53664863,0.03746481,98.15107204],[4.53664818,0.03746307,98.15174659],[4.53664773,0.03746132,98.15242367],[4.53664728,0.03745957,98.15310328],[4.53664684,0.03745782,98.15378544],[4.53664639,0.03745608,98.15447015],[4.53664594,0.03745433,98.15515742],[4.53664549,0.03745258,98.15584726],[4.53664504,0.03745083,98.15653968],[4.5366446,0.03744909,98.15723469],[4.53664415,0.03744734,98.1579323],[4.5366437,0.03744559,98.15863251],[4.53664325,0.03744384,98.15933534],[4.5366428,0.0374421,98.16004079],[4.53664236,0.03744035,98.16074887],[4.53664191,0.0374386,98.1614596],[4.53664146,0.03743685,98.16217298],[4.53664102,0.03743511,98.16288902],[4.53664057,0.03743336,98.16360772],[4.53664012,0.03743161,98.16432906],[4.53663967,0.03742986,98.16505303],[4.53663923,0.03742812,98.16577962],[4.53663878,0.03742637,98.16650882],[4.53663833,0.03742462,98.16724061],[4.53663789,0.03742287,98.16797497],[4.53663744,0.03742113,98.16871191],[4.53663699,0.03741938,98.16945139],[4.53663655,0.03741763,98.17019341],[4.5366361,0.03741588,98.17093796],[4.53663565,0.03741414,98.17168502],[4.53663521,0.03741239,98.17243457],[4.53663476,0.03741064,98.17318662],[4.53663431,0.03740889,98.17394113],[4.53663387,0.03740714,98.17469812],[4.53663342,0.0374054,98.17545756],[4.53663297,0.03740365,98.17621945],[4.53663252,0.0374019,98.17698377],[4.53663208,0.03740015,98.17775054],[4.53663163,0.03739841,98.17851972],[4.53663118,0.03739666,98.1792913],[4.53663074,0.03739491,98.18006525],[4.53663029,0.03739316,98.18084155],[4.53662984,0.03739142,98.18162016],[4.53662939,0.03738967,98.18240107],[4.53662895,0.03738792,98.18318424],[4.5366285,0.03738617,98.18396966],[4.53662805,0.03738443,98.18475728],[4.5366276,0.03738268,98.1855471],[4.53662715,0.03738093,98.18633908],[4.53662671,0.03737918,98.1871332],[4.53662626,0.03737744,98.18792943],[4.53662581,0.03737569,98.18872774],[4.53662536,0.03737394,98.18952811],[4.53662491,0.03737219,98.19033052],[4.53662446,0.03737045,98.19113496],[4.53662401,0.0373687,98.19194141],[4.53662356,0.03736695,98.19274988],[4.53662311,0.03736521,98.19356037],[4.53662266,0.03736346,98.19437288],[4.53662221,0.03736171,98.19518741],[4.53662176,0.03735997,98.19600396],[4.53662131,0.03735822,98.19682252],[4.53662086,0.03735647,98.1976431],[4.53662041,0.03735473,98.19846569],[4.53661995,0.03735298,98.1992903],[4.5366195,0.03735123,98.20011692],[4.53661905,0.03734949,98.20094556],[4.5366186,0.03734774,98.20177622],[4.53661814,0.03734599,98.20260889],[4.53661769,0.03734425,98.20344357],[4.53661724,0.0373425,98.20428027],[4.53661678,0.03734076,98.20511898],[4.53661633,0.03733901,98.20595971],[4.53661588,0.03733726,98.20680245],[4.53661542,0.03733552,98.20764722],[4.53661497,0.03733377,98.20849399],[4.53661451,0.03733203,98.20934279],[4.53661406,0.03733028,98.2101936],[4.5366136,0.03732854,98.21104644],[4.53661315,0.03732679,98.21190129],[4.53661269,0.03732505,98.21275817],[4.53661223,0.0373233,98.21361707],[4.53661178,0.03732155,98.21447799],[4.53661132,0.03731981,98.21534094],[4.53661086,0.03731806,98.21620592],[4.5366104,0.03731632,98.21707292],[4.53660995,0.03731457,98.21794195],[4.53660949,0.03731283,98.21881302],[4.53660903,0.03731108,98.21968612],[4.53660857,0.03730934,98.22056126],[4.53660811,0.03730759,98.22143843],[4.53660765,0.03730585,98.22231765],[4.53660719,0.03730411,98.22319891],[4.53660673,0.03730236,98.22408222],[4.53660627,0.03730062,98.22496757],[4.53660581,0.03729887,98.22585497],[4.53660535,0.03729713,98.22674443],[4.53660488,0.03729538,98.22763595],[4.53660442,0.03729364,98.22852953],[4.53660396,0.0372919,98.22942517],[4.5366035,0.03729015,98.23032288],[4.53660303,0.03728841,98.23122266],[4.53660257,0.03728667,98.23212451],[4.53660211,0.03728492,98.23302844],[4.53660164,0.03728318,98.23393446],[4.53660118,0.03728143,98.23484256],[4.53660071,0.03727969,98.23575275],[4.53660025,0.03727795,98.23666504],[4.53659978,0.0372762,98.23757943],[4.53659932,0.03727446,98.23849593],[4.53659885,0.03727272,98.23941453],[4.53659838,0.03727098,98.24033525],[4.53659791,0.03726923,98.24125809],[4.53659745,0.03726749,98.24218306],[4.53659698,0.03726575,98.24311015],[4.53659651,0.03726401,98.24403939],[4.53659604,0.03726226,98.24497076],[4.53659557,0.03726052,98.24590429],[4.5365951,0.03725878,98.24683997],[4.53659463,0.03725704,98.24777781],[4.53659416,0.03725529,98.24871783],[4.53659369,0.03725355,98.24966001],[4.53659322,0.03725181,98.25060438],[4.53659275,0.03725007,98.25155094],[4.53659228,0.03724833,98.2524997],[4.5365918,0.03724659,98.25345065],[4.53659133,0.03724485,98.25440383],[4.53659086,0.0372431,98.25535922],[4.53659038,0.03724136,98.25631683],[4.53658991,0.03723962,98.25727669],[4.53658943,0.03723788,98.25823879],[4.53658896,0.03723614,98.25920314],[4.53658848,0.0372344,98.26016975],[4.53658801,0.03723266,98.26113864],[4.53658753,0.03723092,98.26210981],[4.53658705,0.03722918,98.26308326],[4.53658657,0.03722744,98.26405902],[4.5365861,0.0372257,98.26503708],[4.53658576,0.03722448,98.26572577],[4.5366202,0.03721574,98.36027354],[4.53662051,0.03721697,98.35961148],[4.53662095,0.03721872,98.3586711],[4.53662139,0.03722047,98.35773279],[4.53662183,0.03722222,98.35679655],[4.53662226,0.03722396,98.35586237],[4.5366227,0.03722571,98.35493024],[4.53662314,0.03722746,98.35400016],[4.53662358,0.03722921,98.35307212],[4.53662402,0.03723096,98.35214611],[4.53662446,0.03723271,98.35122212],[4.5366249,0.03723446,98.35030016],[4.53662534,0.03723621,98.3493802],[4.53662578,0.03723796,98.34846225],[4.53662622,0.03723971,98.3475463],[4.53662666,0.03724146,98.34663234],[4.5366271,0.03724321,98.34572037],[4.53662754,0.03724495,98.34481037],[4.53662798,0.0372467,98.34390234],[4.53662842,0.03724845,98.34299627],[4.53662886,0.0372502,98.34209216],[4.5366293,0.03725195,98.34119],[4.53662974,0.0372537,98.34028977],[4.53663018,0.03725545,98.33939148],[4.53663062,0.0372572,98.33849511],[4.53663106,0.03725895,98.33760066],[4.5366315,0.0372607,98.33670812],[4.53663194,0.03726244,98.33581748],[4.53663238,0.03726419,98.33492873],[4.53663282,0.03726594,98.33404187],[4.53663326,0.03726769,98.33315689],[4.5366337,0.03726944,98.33227379],[4.53663415,0.03727119,98.33139254],[4.53663459,0.03727294,98.33051315],[4.53663503,0.03727469,98.3296356],[4.53663547,0.03727643,98.3287599],[4.53663591,0.03727818,98.32788602],[4.53663635,0.03727993,98.32701397],[4.53663679,0.03728168,98.32614374],[4.53663723,0.03728343,98.32527531],[4.53663768,0.03728518,98.32440868],[4.53663812,0.03728693,98.32354384],[4.53663856,0.03728868,98.32268078],[4.536639,0.03729042,98.3218195],[4.53663944,0.03729217,98.32095998],[4.53663988,0.03729392,98.32010222],[4.53664032,0.03729567,98.31924621],[4.53664077,0.03729742,98.31839194],[4.53664121,0.03729917,98.3175394],[4.53664165,0.03730092,98.31668859],[4.53664209,0.03730266,98.31583949],[4.53664253,0.03730441,98.31499211],[4.53664297,0.03730616,98.31414642],[4.53664342,0.03730791,98.31330242],[4.53664386,0.03730966,98.3124601],[4.5366443,0.03731141,98.31161946],[4.53664474,0.03731316,98.31078048],[4.53664518,0.0373149,98.30994316],[4.53664562,0.03731665,98.30910749],[4.53664606,0.0373184,98.30827346],[4.53664651,0.03732015,98.30744106],[4.53664695,0.0373219,98.30661029],[4.53664739,0.03732365,98.30578113],[4.53664783,0.0373254,98.30495357],[4.53664827,0.03732715,98.30412761],[4.53664871,0.03732889,98.30330324],[4.53664915,0.03733064,98.30248045],[4.53664959,0.03733239,98.30165924],[4.53665004,0.03733414,98.30083958],[4.53665048,0.03733589,98.30002148],[4.53665092,0.03733764,98.29920493],[4.53665136,0.03733939,98.29838992],[4.5366518,0.03734113,98.29757643],[4.53665224,0.03734288,98.29676446],[4.53665268,0.03734463,98.29595401],[4.53665312,0.03734638,98.29514506],[4.53665356,0.03734813,98.29433761],[4.536654,0.03734988,98.29353164],[4.53665444,0.03735163,98.29272715],[4.53665488,0.03735338,98.29192412],[4.53665532,0.03735513,98.29112256],[4.53665576,0.03735687,98.29032245],[4.5366562,0.03735862,98.28952379],[4.53665664,0.03736037,98.28872656],[4.53665708,0.03736212,98.28793075],[4.53665752,0.03736387,98.28713637],[4.53665796,0.03736562,98.28634339],[4.5366584,0.03736737,98.28555183],[4.53665884,0.03736912,98.2847617],[4.53665928,0.03737087,98.28397301],[4.53665972,0.03737262,98.28318578],[4.53666016,0.03737437,98.28240003],[4.5366606,0.03737612,98.28161577],[4.53666104,0.03737786,98.28083302],[4.53666148,0.03737961,98.2800518],[4.53666192,0.03738136,98.27927211],[4.53666236,0.03738311,98.27849398],[4.5366628,0.03738486,98.27771742],[4.53666324,0.03738661,98.27694246],[4.53666368,0.03738836,98.2761691],[4.53666411,0.03739011,98.27539735],[4.53666455,0.03739186,98.27462725],[4.53666499,0.03739361,98.2738588],[4.53666543,0.03739536,98.27309202],[4.53666587,0.03739711,98.27232693],[4.53666631,0.03739885,98.27156354],[4.53666675,0.0374006,98.27080187],[4.53666719,0.03740235,98.27004193],[4.53666762,0.0374041,98.26928375],[4.53666806,0.03740585,98.26852733],[4.5366685,0.0374076,98.26777271],[4.53666894,0.03740935,98.2670199],[4.53666938,0.0374111,98.26626893],[4.53666982,0.03741285,98.26551981],[4.53667026,0.0374146,98.26477257],[4.5366707,0.03741635,98.26402723],[4.53667114,0.0374181,98.26328381],[4.53667158,0.03741984,98.26254232],[4.53667202,0.03742159,98.2618028],[4.53667246,0.03742334,98.26106526],[4.5366729,0.03742509,98.26032973],[4.53667334,0.03742684,98.25959622],[4.53667378,0.03742859,98.25886475],[4.53667422,0.03743034,98.25813534],[4.53667466,0.03743209,98.25740799],[4.5366751,0.03743384,98.25668268],[4.53667554,0.03743559,98.25595943],[4.53667598,0.03743733,98.25523824],[4.53667642,0.03743908,98.25451909],[4.53667686,0.03744083,98.25380199],[4.5366773,0.03744258,98.25308693],[4.53667774,0.03744433,98.25237392],[4.53667818,0.03744608,98.25166296],[4.53667862,0.03744783,98.25095404],[4.53667906,0.03744957,98.25024716],[4.5366795,0.03745132,98.24954232],[4.53667995,0.03745307,98.24883953],[4.53668039,0.03745482,98.24813877],[4.53668083,0.03745657,98.24744004],[4.53668127,0.03745832,98.24674335],[4.53668171,0.03746007,98.24604869],[4.53668216,0.03746181,98.24535607],[4.5366826,0.03746356,98.24466548],[4.53668304,0.03746531,98.24397691],[4.53668348,0.03746706,98.24329038],[4.53668393,0.03746881,98.24260587],[4.53668437,0.03747056,98.24192338],[4.53668481,0.0374723,98.24124292],[4.53668525,0.03747405,98.24056448],[4.5366857,0.0374758,98.23988806],[4.53668614,0.03747755,98.23921366],[4.53668658,0.0374793,98.23854128],[4.53668703,0.03748104,98.23787091],[4.53668747,0.03748279,98.23720256],[4.53668791,0.03748454,98.23653622],[4.53668836,0.03748629,98.23587189],[4.5366888,0.03748804,98.23520957],[4.53668925,0.03748978,98.23454926],[4.53668969,0.03749153,98.23389096],[4.53669013,0.03749328,98.23323466],[4.53669058,0.03749503,98.23258037],[4.53669102,0.03749678,98.23192808],[4.53669147,0.03749852,98.23127778],[4.53669191,0.03750027,98.23062949],[4.53669236,0.03750202,98.2299832],[4.5366928,0.03750377,98.2293389],[4.53669325,0.03750551,98.22869659],[4.53669369,0.03750726,98.22805628],[4.53669414,0.03750901,98.22741795],[4.53669458,0.03751076,98.22678162],[4.53669503,0.03751251,98.22614727],[4.53669547,0.03751425,98.22551491],[4.53669592,0.037516,98.22488454],[4.53669636,0.03751775,98.22425615],[4.53669681,0.0375195,98.22362974],[4.53669726,0.03752124,98.2230053],[4.5366977,0.03752299,98.22238285],[4.53669815,0.03752474,98.22176237],[4.53669859,0.03752649,98.22114387],[4.53669904,0.03752823,98.22052734],[4.53669949,0.03752998,98.21991278],[4.53669993,0.03753173,98.2193002],[4.53670038,0.03753347,98.21868958],[4.53670083,0.03753522,98.21808092],[4.53670127,0.03753697,98.21747423],[4.53670172,0.03753872,98.21686951],[4.53670217,0.03754046,98.21626674],[4.53670262,0.03754221,98.21566594],[4.53670306,0.03754396,98.21506709],[4.53670351,0.0375457,98.21447021],[4.53670396,0.03754745,98.21387528],[4.53670441,0.0375492,98.21328231],[4.53670485,0.03755095,98.21269131],[4.5367053,0.03755269,98.21210227],[4.53670575,0.03755444,98.21151518],[4.5367062,0.03755619,98.21093007],[4.53670665,0.03755793,98.21034691],[4.53670709,0.03755968,98.20976572],[4.53670754,0.03756143,98.2091865],[4.53670799,0.03756317,98.20860924],[4.53670844,0.03756492,98.20803395],[4.53670889,0.03756667,98.20746062],[4.53670934,0.03756842,98.20688927],[4.53670979,0.03757016,98.20631988],[4.53671023,0.03757191,98.20575246],[4.53671068,0.03757366,98.20518701],[4.53671113,0.0375754,98.20462353],[4.53671158,0.03757715,98.20406202],[4.53671203,0.0375789,98.20350249],[4.53671248,0.03758064,98.20294493],[4.53671293,0.03758239,98.20238934],[4.53671338,0.03758413,98.20183572],[4.53671383,0.03758588,98.20128408],[4.53671428,0.03758763,98.20073441],[4.53671473,0.03758937,98.20018672],[4.53671518,0.03759112,98.19964101],[4.53671563,0.03759287,98.19909728],[4.53671608,0.03759461,98.19855552],[4.53671653,0.03759636,98.19801574],[4.53671698,0.03759811,98.19747793],[4.53671743,0.03759985,98.1969421],[4.53671788,0.0376016,98.19640824],[4.53671834,0.03760334,98.19587635],[4.53671879,0.03760509,98.19534641],[4.53671924,0.03760684,98.19481844],[4.53671969,0.03760858,98.19429242],[4.53672014,0.03761033,98.19376835],[4.53672059,0.03761208,98.19324623],[4.53672104,0.03761382,98.19272605],[4.5367215,0.03761557,98.19220782],[4.53672195,0.03761731,98.19169152],[4.5367224,0.03761906,98.19117716],[4.53672285,0.03762081,98.19066472],[4.5367233,0.03762255,98.19015422],[4.53672376,0.0376243,98.18964564],[4.53672421,0.03762605,98.18913897],[4.53672466,0.03762779,98.18863423],[4.53672512,0.03762954,98.1881314],[4.53672557,0.03763128,98.18763047],[4.53672602,0.03763303,98.18713146],[4.53672648,0.03763478,98.18663434],[4.53672693,0.03763652,98.18613913],[4.53672738,0.03763827,98.18564581],[4.53672784,0.03764001,98.18515439],[4.53672829,0.03764176,98.18466486],[4.53672874,0.03764351,98.18417721],[4.5367292,0.03764525,98.18369144],[4.53672965,0.037647,98.18320756],[4.53673011,0.03764874,98.18272555],[4.53673056,0.03765049,98.18224541],[4.53673102,0.03765223,98.18176715],[4.53673147,0.03765398,98.18129075],[4.53673193,0.03765573,98.18081621],[4.53673238,0.03765747,98.18034353],[4.53673284,0.03765922,98.17987271],[4.53673329,0.03766096,98.17940375],[4.53673375,0.03766271,98.17893663],[4.53673421,0.03766446,98.17847136],[4.53673466,0.0376662,98.17800793],[4.53673512,0.03766795,98.17754635],[4.53673557,0.03766969,98.1770866],[4.53673603,0.03767144,98.17662869],[4.53673649,0.03767318,98.17617261],[4.53673694,0.03767493,98.17571836],[4.5367374,0.03767667,98.17526593],[4.53673786,0.03767842,98.17481532],[4.53673832,0.03768017,98.17436654],[4.53673877,0.03768191,98.17391956],[4.53673923,0.03768366,98.17347441],[4.53673969,0.0376854,98.17303106],[4.53674015,0.03768715,98.17258951],[4.5367406,0.03768889,98.17214978],[4.53674106,0.03769064,98.17171184],[4.53674152,0.03769238,98.1712757],[4.53674198,0.03769413,98.17084135],[4.53674244,0.03769587,98.1704088],[4.5367429,0.03769762,98.16997803],[4.53674336,0.03769936,98.16954905],[4.53674382,0.03770111,98.16912186],[4.53674428,0.03770285,98.16869644],[4.53674474,0.0377046,98.1682728],[4.5367452,0.03770635,98.16785093],[4.53674566,0.03770809,98.16743084],[4.53674612,0.03770984,98.16701251],[4.53674658,0.03771158,98.16659595],[4.53674704,0.03771333,98.16618115],[4.5367475,0.03771507,98.16576812],[4.53674796,0.03771682,98.16535684],[4.53674842,0.03771856,98.16494731],[4.53674888,0.0377203,98.16453953],[4.53674934,0.03772205,98.16413351],[4.53674981,0.03772379,98.16372923],[4.53675027,0.03772554,98.16332669],[4.53675073,0.03772728,98.16292589],[4.53675119,0.03772903,98.16252683],[4.53675165,0.03773077,98.16212951],[4.53675212,0.03773252,98.16173391],[4.53675258,0.03773426,98.16134003],[4.53675304,0.03773601,98.16094786],[4.53675351,0.03773775,98.16055737],[4.53675397,0.0377395,98.16016855],[4.53675443,0.03774124,98.15978138],[4.5367549,0.03774299,98.15939586],[4.53675536,0.03774473,98.15901197],[4.53675582,0.03774647,98.15862968],[4.53675629,0.03774822,98.15824899],[4.53675675,0.03774996,98.15786988],[4.53675722,0.03775171,98.15749233],[4.53675768,0.03775345,98.15711634],[4.53675815,0.0377552,98.15674188],[4.53675861,0.03775694,98.15636894],[4.53675908,0.03775868,98.1559975],[4.53675954,0.03776043,98.15562756],[4.53676001,0.03776217,98.15525909],[4.53676047,0.03776392,98.15489208],[4.53676094,0.03776566,98.15452651],[4.53676141,0.0377674,98.15416238],[4.53676187,0.03776915,98.15379966],[4.53676234,0.03777089,98.15343834],[4.5367628,0.03777264,98.15307841],[4.53676327,0.03777438,98.15271985],[4.53676374,0.03777613,98.15236264],[4.5367642,0.03777787,98.15200678],[4.53676467,0.03777961,98.15165224],[4.53676514,0.03778136,98.15129901],[4.5367656,0.0377831,98.15094708],[4.53676607,0.03778485,98.15059644],[4.53676654,0.03778659,98.15024706],[4.536767,0.03778833,98.14989893],[4.53676747,0.03779008,98.14955204],[4.53676794,0.03779182,98.14920639],[4.53676841,0.03779357,98.14886199],[4.53676887,0.03779531,98.14851882],[4.53676934,0.03779705,98.14817689],[4.53676981,0.0377988,98.1478362],[4.53677028,0.03780054,98.14749676],[4.53677074,0.03780228,98.14715856],[4.53677121,0.03780403,98.1468216],[4.53677168,0.03780577,98.14648589],[4.53677215,0.03780752,98.14615142],[4.53677262,0.03780926,98.14581819],[4.53677308,0.037811,98.14548621],[4.53677355,0.03781275,98.14515548],[4.53677402,0.03781449,98.144826],[4.53677449,0.03781624,98.14449776],[4.53677496,0.03781798,98.14417077],[4.53677543,0.03781972,98.14384503],[4.5367759,0.03782147,98.14352053],[4.53677637,0.03782321,98.14319729],[4.53677683,0.03782496,98.1428753],[4.5367773,0.0378267,98.14255455],[4.53677777,0.03782844,98.14223506],[4.53677824,0.03783019,98.14191682],[4.53677871,0.03783193,98.14159983],[4.53677918,0.03783367,98.14128409],[4.53677965,0.03783542,98.1409696],[4.53678012,0.03783716,98.14065636],[4.53678059,0.0378389,98.14034438],[4.53678106,0.03784065,98.14003365],[4.53678153,0.03784239,98.13972418],[4.536782,0.03784414,98.13941595],[4.53678247,0.03784588,98.139109],[4.53678295,0.03784762,98.13880332],[4.53678342,0.03784937,98.13849894],[4.53678389,0.03785111,98.13819587],[4.53678436,0.03785285,98.13789411],[4.53678483,0.0378546,98.13759368],[4.5367853,0.03785634,98.1372946],[4.53678577,0.03785808,98.13699688],[4.53678625,0.03785983,98.13670053],[4.53678672,0.03786157,98.13640557],[4.53678719,0.03786331,98.136112],[4.53678766,0.03786506,98.13581983],[4.53678812,0.03786676,98.13552905],[4.5367886,0.0378685,98.13523966],[4.53678907,0.03787025,98.13495165],[4.53678955,0.03787199,98.13466502],[4.53679002,0.03787373,98.13437976],[4.53679049,0.03787548,98.13409587],[4.53679097,0.03787722,98.13381333],[4.53679144,0.03787896,98.13353215],[4.53679192,0.03788071,98.13325232],[4.53679239,0.03788245,98.13297384],[4.53679287,0.03788419,98.13269669],[4.53679335,0.03788594,98.13242087],[4.53679382,0.03788768,98.13214638],[4.5367943,0.03788942,98.13187321],[4.53679477,0.03789117,98.13160135],[4.53679525,0.03789291,98.13133081],[4.53679573,0.03789465,98.13106156],[4.5367962,0.0378964,98.13079362],[4.53679668,0.03789814,98.13052697],[4.53679716,0.03789988,98.1302616],[4.53679763,0.03790163,98.12999751],[4.53679811,0.03790337,98.1297347],[4.53679859,0.03790511,98.12947315],[4.53679907,0.03790685,98.12921287],[4.53679954,0.0379086,98.12895384],[4.53680002,0.03791034,98.12869606],[4.5368005,0.03791208,98.12843953],[4.53680098,0.03791382,98.12818423],[4.53680146,0.03791557,98.12793017],[4.53680194,0.03791731,98.12767732],[4.53680242,0.03791905,98.1274257],[4.5368029,0.03792079,98.12717529],[4.53680337,0.03792253,98.12692609],[4.53680385,0.03792428,98.12667808],[4.53680433,0.03792602,98.12643128],[4.53680481,0.03792776,98.12618571],[4.53680529,0.0379295,98.12594143],[4.53680577,0.03793124,98.12569848],[4.53680625,0.03793299,98.12545691],[4.53680673,0.03793473,98.12521676],[4.53680722,0.03793647,98.12497809],[4.5368077,0.03793821,98.12474093],[4.53680818,0.03793995,98.12450534],[4.53680866,0.03794169,98.12427135],[4.53680914,0.03794344,98.12403903],[4.53680963,0.03794518,98.12380841],[4.53681011,0.03794692,98.12357954],[4.53681059,0.03794866,98.12335247],[4.53681107,0.0379504,98.12312724],[4.53681156,0.03795214,98.12290391],[4.53681204,0.03795388,98.12268249],[4.53681253,0.03795562,98.12246303],[4.53681301,0.03795736,98.12224556],[4.5368135,0.0379591,98.12203013],[4.53681399,0.03796084,98.12181676],[4.53681447,0.03796258,98.12160549],[4.53681496,0.03796432,98.12139636],[4.53681545,0.03796606,98.12118942],[4.53681594,0.0379678,98.12098468],[4.53681643,0.03796954,98.1207822],[4.53681691,0.03797128,98.12058201],[4.53681741,0.03797302,98.12038414],[4.5368179,0.03797476,98.12018864],[4.53681839,0.0379765,98.11999555],[4.53681888,0.03797823,98.11980489],[4.53681937,0.03797997,98.11961672],[4.53681987,0.03798171,98.11943106],[4.53682036,0.03798345,98.11924797],[4.53682086,0.03798519,98.11906747],[4.53682135,0.03798692,98.1188896],[4.53682185,0.03798866,98.11871442],[4.53682235,0.0379904,98.11854194],[4.53682284,0.03799213,98.11837223],[4.53682334,0.03799387,98.11820523],[4.53682384,0.03799561,98.11804083],[4.53682434,0.03799734,98.11787894],[4.53682484,0.03799908,98.11771943],[4.53682534,0.03800081,98.11756219],[4.53682585,0.03800255,98.11740712],[4.53682635,0.03800428,98.11725409],[4.53682685,0.03800602,98.11710299],[4.53682736,0.03800775,98.11695372],[4.53682786,0.03800949,98.11680615],[4.53682837,0.03801122,98.11666017],[4.53682887,0.03801296,98.11651568],[4.53682938,0.03801469,98.11637254],[4.53682988,0.03801643,98.11623065],[4.53683039,0.03801816,98.11608989],[4.5368309,0.0380199,98.11595014],[4.5368314,0.03802163,98.11581129],[4.53683191,0.03802336,98.11567322],[4.53683242,0.0380251,98.11553581],[4.53683292,0.03802683,98.11539895],[4.53683343,0.03802857,98.11526253],[4.53683394,0.0380303,98.11512642],[4.53683445,0.03803203,98.11499052],[4.53683495,0.03803377,98.1148547],[4.53683546,0.0380355,98.11471886],[4.53683597,0.03803723,98.11458288],[4.53683647,0.03803897,98.11444663],[4.53683698,0.0380407,98.11431004],[4.53683749,0.03804244,98.11417311],[4.536838,0.03804417,98.1140359],[4.5368385,0.0380459,98.11389846],[4.53683901,0.03804764,98.11376083],[4.53683952,0.03804937,98.11362306],[4.53684002,0.03805111,98.1134852],[4.53684053,0.03805284,98.11334729],[4.53684103,0.03805457,98.1132094],[4.53684154,0.03805631,98.11307155],[4.53684205,0.03805804,98.11293381],[4.53684256,0.03805978,98.11279623],[4.53684306,0.03806151,98.11265885],[4.53684357,0.03806324,98.11252172],[4.53684408,0.03806498,98.11238489],[4.53684458,0.03806671,98.11224842],[4.53684509,0.03806845,98.11211235],[4.5368456,0.03807018,98.11197673],[4.53684611,0.03807191,98.11184163],[4.53684662,0.03807365,98.11170708],[4.53684712,0.03807538,98.11157314],[4.53684763,0.03807711,98.11143987],[4.53684814,0.03807885,98.11130731],[4.53684865,0.03808058,98.11117551],[4.53684916,0.03808231,98.11104454],[4.53684967,0.03808405,98.11091444],[4.53685018,0.03808578,98.11078527],[4.53685069,0.03808751,98.11065708],[4.53685121,0.03808924,98.11052992],[4.53685172,0.03809098,98.11040385],[4.53685223,0.03809271,98.11027893],[4.53685274,0.03809444,98.11015521],[4.53685326,0.03809617,98.11003274],[4.53685377,0.0380979,98.10991159],[4.53685429,0.03809964,98.1097918],[4.5368548,0.03810137,98.10967344],[4.53685532,0.0381031,98.10955655],[4.53685584,0.03810483,98.10944121],[4.53685635,0.03810656,98.10932745],[4.53685687,0.03810829,98.10921526],[4.53685739,0.03811002,98.10910455],[4.53685791,0.03811175,98.10899519],[4.53685843,0.03811348,98.1088871],[4.53685895,0.03811521,98.10878016],[4.53685947,0.03811694,98.10867428],[4.53685999,0.03811867,98.10856934],[4.53686051,0.0381204,98.10846523],[4.53686103,0.03812212,98.10836187],[4.53686155,0.03812385,98.10825912],[4.53686208,0.03812557,98.1081569],[4.5368626,0.0381273,98.10805509],[4.53686312,0.03812903,98.10795358],[4.53686365,0.03813076,98.10785226],[4.53686417,0.03813249,98.10775104],[4.5368647,0.03813422,98.10764978],[4.53686522,0.03813595,98.1075484],[4.53686575,0.03813768,98.10744676],[4.53686627,0.03813941,98.10734478],[4.5368668,0.03814114,98.10724233],[4.53686732,0.03814286,98.1071393],[4.53686784,0.03814459,98.10703557],[4.53686837,0.03814632,98.10693105],[4.53686889,0.03814805,98.10682561],[4.53686942,0.03814978,98.10671914],[4.53686994,0.03815151,98.10661153],[4.53687047,0.03815324,98.10650266],[4.53687099,0.03815496,98.10639243],[4.53687152,0.03815669,98.10628071],[4.53687204,0.03815842,98.10616739],[4.53687256,0.03816015,98.10605235],[4.53687309,0.03816188,98.10593552],[4.53687361,0.03816361,98.10581694],[4.53687413,0.03816534,98.10569667],[4.53687465,0.03816707,98.10557481],[4.53687517,0.03816879,98.10545142],[4.5368757,0.03817052,98.10532658],[4.53687622,0.03817225,98.10520038],[4.53687674,0.03817398,98.10507289],[4.53687726,0.03817571,98.10494418],[4.53687778,0.03817744,98.10481435],[4.5368783,0.03817917,98.10468347],[4.53687882,0.0381809,98.10455161],[4.53687934,0.03818263,98.10441886],[4.53687986,0.03818436,98.10428531],[4.53688039,0.03818609,98.10415103],[4.53688091,0.03818782,98.1040161],[4.53688143,0.03818954,98.10388061],[4.53688195,0.03819127,98.10374464],[4.53688247,0.038193,98.10360828],[4.53688299,0.03819473,98.1034716],[4.53688351,0.03819646,98.1033347],[4.53688404,0.03819819,98.10319765],[4.53688456,0.03819992,98.10306055],[4.53688508,0.03820165,98.10292348],[4.5368856,0.03820337,98.10278652],[4.53688613,0.0382051,98.10264976],[4.53688665,0.03820683,98.10251329],[4.53688717,0.03820856,98.1023772],[4.5368877,0.03821029,98.10224157],[4.53685701,0.03822005,97.99809997]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000400","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-2,"sOffset":53.8593184394}},{"geometry":{"coordinates":[[[4.5368877,0.03821029,98.10224157],[4.53688717,0.03820856,98.1023772],[4.53688665,0.03820683,98.10251329],[4.53688613,0.0382051,98.10264976],[4.5368856,0.03820337,98.10278652],[4.53688508,0.03820165,98.10292348],[4.53688456,0.03819992,98.10306055],[4.53688404,0.03819819,98.10319765],[4.53688351,0.03819646,98.1033347],[4.53688299,0.03819473,98.1034716],[4.53688247,0.038193,98.10360828],[4.53688195,0.03819127,98.10374464],[4.53688143,0.03818954,98.10388061],[4.53688091,0.03818782,98.1040161],[4.53688039,0.03818609,98.10415103],[4.53687986,0.03818436,98.10428531],[4.53687934,0.03818263,98.10441886],[4.53687882,0.0381809,98.10455161],[4.5368783,0.03817917,98.10468347],[4.53687778,0.03817744,98.10481435],[4.53687726,0.03817571,98.10494418],[4.53687674,0.03817398,98.10507289],[4.53687622,0.03817225,98.10520038],[4.5368757,0.03817052,98.10532658],[4.53687517,0.03816879,98.10545142],[4.53687465,0.03816707,98.10557481],[4.53687413,0.03816534,98.10569667],[4.53687361,0.03816361,98.10581694],[4.53687309,0.03816188,98.10593552],[4.53687256,0.03816015,98.10605235],[4.53687204,0.03815842,98.10616739],[4.53687152,0.03815669,98.10628071],[4.53687099,0.03815496,98.10639243],[4.53687047,0.03815324,98.10650266],[4.53686994,0.03815151,98.10661153],[4.53686942,0.03814978,98.10671914],[4.53686889,0.03814805,98.10682561],[4.53686837,0.03814632,98.10693105],[4.53686784,0.03814459,98.10703557],[4.53686732,0.03814286,98.1071393],[4.5368668,0.03814114,98.10724233],[4.53686627,0.03813941,98.10734478],[4.53686575,0.03813768,98.10744676],[4.53686522,0.03813595,98.1075484],[4.5368647,0.03813422,98.10764978],[4.53686417,0.03813249,98.10775104],[4.53686365,0.03813076,98.10785226],[4.53686312,0.03812903,98.10795358],[4.5368626,0.0381273,98.10805509],[4.53686208,0.03812557,98.1081569],[4.53686155,0.03812385,98.10825912],[4.53686103,0.03812212,98.10836187],[4.53686051,0.0381204,98.10846523],[4.53685999,0.03811867,98.10856934],[4.53685947,0.03811694,98.10867428],[4.53685895,0.03811521,98.10878016],[4.53685843,0.03811348,98.1088871],[4.53685791,0.03811175,98.10899519],[4.53685739,0.03811002,98.10910455],[4.53685687,0.03810829,98.10921526],[4.53685635,0.03810656,98.10932745],[4.53685584,0.03810483,98.10944121],[4.53685532,0.0381031,98.10955655],[4.5368548,0.03810137,98.10967344],[4.53685429,0.03809964,98.1097918],[4.53685377,0.0380979,98.10991159],[4.53685326,0.03809617,98.11003274],[4.53685274,0.03809444,98.11015521],[4.53685223,0.03809271,98.11027893],[4.53685172,0.03809098,98.11040385],[4.53685121,0.03808924,98.11052992],[4.53685069,0.03808751,98.11065708],[4.53685018,0.03808578,98.11078527],[4.53684967,0.03808405,98.11091444],[4.53684916,0.03808231,98.11104454],[4.53684865,0.03808058,98.11117551],[4.53684814,0.03807885,98.11130731],[4.53684763,0.03807711,98.11143987],[4.53684712,0.03807538,98.11157314],[4.53684662,0.03807365,98.11170708],[4.53684611,0.03807191,98.11184163],[4.5368456,0.03807018,98.11197673],[4.53684509,0.03806845,98.11211235],[4.53684458,0.03806671,98.11224842],[4.53684408,0.03806498,98.11238489],[4.53684357,0.03806324,98.11252172],[4.53684306,0.03806151,98.11265885],[4.53684256,0.03805978,98.11279623],[4.53684205,0.03805804,98.11293381],[4.53684154,0.03805631,98.11307155],[4.53684103,0.03805457,98.1132094],[4.53684053,0.03805284,98.11334729],[4.53684002,0.03805111,98.1134852],[4.53683952,0.03804937,98.11362306],[4.53683901,0.03804764,98.11376083],[4.5368385,0.0380459,98.11389846],[4.536838,0.03804417,98.1140359],[4.53683749,0.03804244,98.11417311],[4.53683698,0.0380407,98.11431004],[4.53683647,0.03803897,98.11444663],[4.53683597,0.03803723,98.11458288],[4.53683546,0.0380355,98.11471886],[4.53683495,0.03803377,98.1148547],[4.53683445,0.03803203,98.11499052],[4.53683394,0.0380303,98.11512642],[4.53683343,0.03802857,98.11526253],[4.53683292,0.03802683,98.11539895],[4.53683242,0.0380251,98.11553581],[4.53683191,0.03802336,98.11567322],[4.5368314,0.03802163,98.11581129],[4.5368309,0.0380199,98.11595014],[4.53683039,0.03801816,98.11608989],[4.53682988,0.03801643,98.11623065],[4.53682938,0.03801469,98.11637254],[4.53682887,0.03801296,98.11651568],[4.53682837,0.03801122,98.11666017],[4.53682786,0.03800949,98.11680615],[4.53682736,0.03800775,98.11695372],[4.53682685,0.03800602,98.11710299],[4.53682635,0.03800428,98.11725409],[4.53682585,0.03800255,98.11740712],[4.53682534,0.03800081,98.11756219],[4.53682484,0.03799908,98.11771943],[4.53682434,0.03799734,98.11787894],[4.53682384,0.03799561,98.11804083],[4.53682334,0.03799387,98.11820523],[4.53682284,0.03799213,98.11837223],[4.53682235,0.0379904,98.11854194],[4.53682185,0.03798866,98.11871442],[4.53682135,0.03798692,98.1188896],[4.53682086,0.03798519,98.11906747],[4.53682036,0.03798345,98.11924797],[4.53681987,0.03798171,98.11943106],[4.53681937,0.03797997,98.11961672],[4.53681888,0.03797823,98.11980489],[4.53681839,0.0379765,98.11999555],[4.5368179,0.03797476,98.12018864],[4.53681741,0.03797302,98.12038414],[4.53681691,0.03797128,98.12058201],[4.53681643,0.03796954,98.1207822],[4.53681594,0.0379678,98.12098468],[4.53681545,0.03796606,98.12118942],[4.53681496,0.03796432,98.12139636],[4.53681447,0.03796258,98.12160549],[4.53681399,0.03796084,98.12181676],[4.5368135,0.0379591,98.12203013],[4.53681301,0.03795736,98.12224556],[4.53681253,0.03795562,98.12246303],[4.53681204,0.03795388,98.12268249],[4.53681156,0.03795214,98.12290391],[4.53681107,0.0379504,98.12312724],[4.53681059,0.03794866,98.12335247],[4.53681011,0.03794692,98.12357954],[4.53680963,0.03794518,98.12380841],[4.53680914,0.03794344,98.12403903],[4.53680866,0.03794169,98.12427135],[4.53680818,0.03793995,98.12450534],[4.5368077,0.03793821,98.12474093],[4.53680722,0.03793647,98.12497809],[4.53680673,0.03793473,98.12521676],[4.53680625,0.03793299,98.12545691],[4.53680577,0.03793124,98.12569848],[4.53680529,0.0379295,98.12594143],[4.53680481,0.03792776,98.12618571],[4.53680433,0.03792602,98.12643128],[4.53680385,0.03792428,98.12667808],[4.53680337,0.03792253,98.12692609],[4.5368029,0.03792079,98.12717529],[4.53680242,0.03791905,98.1274257],[4.53680194,0.03791731,98.12767732],[4.53680146,0.03791557,98.12793017],[4.53680098,0.03791382,98.12818423],[4.5368005,0.03791208,98.12843953],[4.53680002,0.03791034,98.12869606],[4.53679954,0.0379086,98.12895384],[4.53679907,0.03790685,98.12921287],[4.53679859,0.03790511,98.12947315],[4.53679811,0.03790337,98.1297347],[4.53679763,0.03790163,98.12999751],[4.53679716,0.03789988,98.1302616],[4.53679668,0.03789814,98.13052697],[4.5367962,0.0378964,98.13079362],[4.53679573,0.03789465,98.13106156],[4.53679525,0.03789291,98.13133081],[4.53679477,0.03789117,98.13160135],[4.5367943,0.03788942,98.13187321],[4.53679382,0.03788768,98.13214638],[4.53679335,0.03788594,98.13242087],[4.53679287,0.03788419,98.13269669],[4.53679239,0.03788245,98.13297384],[4.53679192,0.03788071,98.13325232],[4.53679144,0.03787896,98.13353215],[4.53679097,0.03787722,98.13381333],[4.53679049,0.03787548,98.13409587],[4.53679002,0.03787373,98.13437976],[4.53678955,0.03787199,98.13466502],[4.53678907,0.03787025,98.13495165],[4.5367886,0.0378685,98.13523966],[4.53678812,0.03786676,98.13552905],[4.53678766,0.03786506,98.13581983],[4.53678719,0.03786331,98.136112],[4.53678672,0.03786157,98.13640557],[4.53678625,0.03785983,98.13670053],[4.53678577,0.03785808,98.13699688],[4.5367853,0.03785634,98.1372946],[4.53678483,0.0378546,98.13759368],[4.53678436,0.03785285,98.13789411],[4.53678389,0.03785111,98.13819587],[4.53678342,0.03784937,98.13849894],[4.53678295,0.03784762,98.13880332],[4.53678247,0.03784588,98.139109],[4.536782,0.03784414,98.13941595],[4.53678153,0.03784239,98.13972418],[4.53678106,0.03784065,98.14003365],[4.53678059,0.0378389,98.14034438],[4.53678012,0.03783716,98.14065636],[4.53677965,0.03783542,98.1409696],[4.53677918,0.03783367,98.14128409],[4.53677871,0.03783193,98.14159983],[4.53677824,0.03783019,98.14191682],[4.53677777,0.03782844,98.14223506],[4.5367773,0.0378267,98.14255455],[4.53677683,0.03782496,98.1428753],[4.53677637,0.03782321,98.14319729],[4.5367759,0.03782147,98.14352053],[4.53677543,0.03781972,98.14384503],[4.53677496,0.03781798,98.14417077],[4.53677449,0.03781624,98.14449776],[4.53677402,0.03781449,98.144826],[4.53677355,0.03781275,98.14515548],[4.53677308,0.037811,98.14548621],[4.53677262,0.03780926,98.14581819],[4.53677215,0.03780752,98.14615142],[4.53677168,0.03780577,98.14648589],[4.53677121,0.03780403,98.1468216],[4.53677074,0.03780228,98.14715856],[4.53677028,0.03780054,98.14749676],[4.53676981,0.0377988,98.1478362],[4.53676934,0.03779705,98.14817689],[4.53676887,0.03779531,98.14851882],[4.53676841,0.03779357,98.14886199],[4.53676794,0.03779182,98.14920639],[4.53676747,0.03779008,98.14955204],[4.536767,0.03778833,98.14989893],[4.53676654,0.03778659,98.15024706],[4.53676607,0.03778485,98.15059644],[4.5367656,0.0377831,98.15094708],[4.53676514,0.03778136,98.15129901],[4.53676467,0.03777961,98.15165224],[4.5367642,0.03777787,98.15200678],[4.53676374,0.03777613,98.15236264],[4.53676327,0.03777438,98.15271985],[4.5367628,0.03777264,98.15307841],[4.53676234,0.03777089,98.15343834],[4.53676187,0.03776915,98.15379966],[4.53676141,0.0377674,98.15416238],[4.53676094,0.03776566,98.15452651],[4.53676047,0.03776392,98.15489208],[4.53676001,0.03776217,98.15525909],[4.53675954,0.03776043,98.15562756],[4.53675908,0.03775868,98.1559975],[4.53675861,0.03775694,98.15636894],[4.53675815,0.0377552,98.15674188],[4.53675768,0.03775345,98.15711634],[4.53675722,0.03775171,98.15749233],[4.53675675,0.03774996,98.15786988],[4.53675629,0.03774822,98.15824899],[4.53675582,0.03774647,98.15862968],[4.53675536,0.03774473,98.15901197],[4.5367549,0.03774299,98.15939586],[4.53675443,0.03774124,98.15978138],[4.53675397,0.0377395,98.16016855],[4.53675351,0.03773775,98.16055737],[4.53675304,0.03773601,98.16094786],[4.53675258,0.03773426,98.16134003],[4.53675212,0.03773252,98.16173391],[4.53675165,0.03773077,98.16212951],[4.53675119,0.03772903,98.16252683],[4.53675073,0.03772728,98.16292589],[4.53675027,0.03772554,98.16332669],[4.53674981,0.03772379,98.16372923],[4.53674934,0.03772205,98.16413351],[4.53674888,0.0377203,98.16453953],[4.53674842,0.03771856,98.16494731],[4.53674796,0.03771682,98.16535684],[4.5367475,0.03771507,98.16576812],[4.53674704,0.03771333,98.16618115],[4.53674658,0.03771158,98.16659595],[4.53674612,0.03770984,98.16701251],[4.53674566,0.03770809,98.16743084],[4.5367452,0.03770635,98.16785093],[4.53674474,0.0377046,98.1682728],[4.53674428,0.03770285,98.16869644],[4.53674382,0.03770111,98.16912186],[4.53674336,0.03769936,98.16954905],[4.5367429,0.03769762,98.16997803],[4.53674244,0.03769587,98.1704088],[4.53674198,0.03769413,98.17084135],[4.53674152,0.03769238,98.1712757],[4.53674106,0.03769064,98.17171184],[4.5367406,0.03768889,98.17214978],[4.53674015,0.03768715,98.17258951],[4.53673969,0.0376854,98.17303106],[4.53673923,0.03768366,98.17347441],[4.53673877,0.03768191,98.17391956],[4.53673832,0.03768017,98.17436654],[4.53673786,0.03767842,98.17481532],[4.5367374,0.03767667,98.17526593],[4.53673694,0.03767493,98.17571836],[4.53673649,0.03767318,98.17617261],[4.53673603,0.03767144,98.17662869],[4.53673557,0.03766969,98.1770866],[4.53673512,0.03766795,98.17754635],[4.53673466,0.0376662,98.17800793],[4.53673421,0.03766446,98.17847136],[4.53673375,0.03766271,98.17893663],[4.53673329,0.03766096,98.17940375],[4.53673284,0.03765922,98.17987271],[4.53673238,0.03765747,98.18034353],[4.53673193,0.03765573,98.18081621],[4.53673147,0.03765398,98.18129075],[4.53673102,0.03765223,98.18176715],[4.53673056,0.03765049,98.18224541],[4.53673011,0.03764874,98.18272555],[4.53672965,0.037647,98.18320756],[4.5367292,0.03764525,98.18369144],[4.53672874,0.03764351,98.18417721],[4.53672829,0.03764176,98.18466486],[4.53672784,0.03764001,98.18515439],[4.53672738,0.03763827,98.18564581],[4.53672693,0.03763652,98.18613913],[4.53672648,0.03763478,98.18663434],[4.53672602,0.03763303,98.18713146],[4.53672557,0.03763128,98.18763047],[4.53672512,0.03762954,98.1881314],[4.53672466,0.03762779,98.18863423],[4.53672421,0.03762605,98.18913897],[4.53672376,0.0376243,98.18964564],[4.5367233,0.03762255,98.19015422],[4.53672285,0.03762081,98.19066472],[4.5367224,0.03761906,98.19117716],[4.53672195,0.03761731,98.19169152],[4.5367215,0.03761557,98.19220782],[4.53672104,0.03761382,98.19272605],[4.53672059,0.03761208,98.19324623],[4.53672014,0.03761033,98.19376835],[4.53671969,0.03760858,98.19429242],[4.53671924,0.03760684,98.19481844],[4.53671879,0.03760509,98.19534641],[4.53671834,0.03760334,98.19587635],[4.53671788,0.0376016,98.19640824],[4.53671743,0.03759985,98.1969421],[4.53671698,0.03759811,98.19747793],[4.53671653,0.03759636,98.19801574],[4.53671608,0.03759461,98.19855552],[4.53671563,0.03759287,98.19909728],[4.53671518,0.03759112,98.19964101],[4.53671473,0.03758937,98.20018672],[4.53671428,0.03758763,98.20073441],[4.53671383,0.03758588,98.20128408],[4.53671338,0.03758413,98.20183572],[4.53671293,0.03758239,98.20238934],[4.53671248,0.03758064,98.20294493],[4.53671203,0.0375789,98.20350249],[4.53671158,0.03757715,98.20406202],[4.53671113,0.0375754,98.20462353],[4.53671068,0.03757366,98.20518701],[4.53671023,0.03757191,98.20575246],[4.53670979,0.03757016,98.20631988],[4.53670934,0.03756842,98.20688927],[4.53670889,0.03756667,98.20746062],[4.53670844,0.03756492,98.20803395],[4.53670799,0.03756317,98.20860924],[4.53670754,0.03756143,98.2091865],[4.53670709,0.03755968,98.20976572],[4.53670665,0.03755793,98.21034691],[4.5367062,0.03755619,98.21093007],[4.53670575,0.03755444,98.21151518],[4.5367053,0.03755269,98.21210227],[4.53670485,0.03755095,98.21269131],[4.53670441,0.0375492,98.21328231],[4.53670396,0.03754745,98.21387528],[4.53670351,0.0375457,98.21447021],[4.53670306,0.03754396,98.21506709],[4.53670262,0.03754221,98.21566594],[4.53670217,0.03754046,98.21626674],[4.53670172,0.03753872,98.21686951],[4.53670127,0.03753697,98.21747423],[4.53670083,0.03753522,98.21808092],[4.53670038,0.03753347,98.21868958],[4.53669993,0.03753173,98.2193002],[4.53669949,0.03752998,98.21991278],[4.53669904,0.03752823,98.22052734],[4.53669859,0.03752649,98.22114387],[4.53669815,0.03752474,98.22176237],[4.5366977,0.03752299,98.22238285],[4.53669726,0.03752124,98.2230053],[4.53669681,0.0375195,98.22362974],[4.53669636,0.03751775,98.22425615],[4.53669592,0.037516,98.22488454],[4.53669547,0.03751425,98.22551491],[4.53669503,0.03751251,98.22614727],[4.53669458,0.03751076,98.22678162],[4.53669414,0.03750901,98.22741795],[4.53669369,0.03750726,98.22805628],[4.53669325,0.03750551,98.22869659],[4.5366928,0.03750377,98.2293389],[4.53669236,0.03750202,98.2299832],[4.53669191,0.03750027,98.23062949],[4.53669147,0.03749852,98.23127778],[4.53669102,0.03749678,98.23192808],[4.53669058,0.03749503,98.23258037],[4.53669013,0.03749328,98.23323466],[4.53668969,0.03749153,98.23389096],[4.53668925,0.03748978,98.23454926],[4.5366888,0.03748804,98.23520957],[4.53668836,0.03748629,98.23587189],[4.53668791,0.03748454,98.23653622],[4.53668747,0.03748279,98.23720256],[4.53668703,0.03748104,98.23787091],[4.53668658,0.0374793,98.23854128],[4.53668614,0.03747755,98.23921366],[4.5366857,0.0374758,98.23988806],[4.53668525,0.03747405,98.24056448],[4.53668481,0.0374723,98.24124292],[4.53668437,0.03747056,98.24192338],[4.53668393,0.03746881,98.24260587],[4.53668348,0.03746706,98.24329038],[4.53668304,0.03746531,98.24397691],[4.5366826,0.03746356,98.24466548],[4.53668216,0.03746181,98.24535607],[4.53668171,0.03746007,98.24604869],[4.53668127,0.03745832,98.24674335],[4.53668083,0.03745657,98.24744004],[4.53668039,0.03745482,98.24813877],[4.53667995,0.03745307,98.24883953],[4.5366795,0.03745132,98.24954232],[4.53667906,0.03744957,98.25024716],[4.53667862,0.03744783,98.25095404],[4.53667818,0.03744608,98.25166296],[4.53667774,0.03744433,98.25237392],[4.5366773,0.03744258,98.25308693],[4.53667686,0.03744083,98.25380199],[4.53667642,0.03743908,98.25451909],[4.53667598,0.03743733,98.25523824],[4.53667554,0.03743559,98.25595943],[4.5366751,0.03743384,98.25668268],[4.53667466,0.03743209,98.25740799],[4.53667422,0.03743034,98.25813534],[4.53667378,0.03742859,98.25886475],[4.53667334,0.03742684,98.25959622],[4.5366729,0.03742509,98.26032973],[4.53667246,0.03742334,98.26106526],[4.53667202,0.03742159,98.2618028],[4.53667158,0.03741984,98.26254232],[4.53667114,0.0374181,98.26328381],[4.5366707,0.03741635,98.26402723],[4.53667026,0.0374146,98.26477257],[4.53666982,0.03741285,98.26551981],[4.53666938,0.0374111,98.26626893],[4.53666894,0.03740935,98.2670199],[4.5366685,0.0374076,98.26777271],[4.53666806,0.03740585,98.26852733],[4.53666762,0.0374041,98.26928375],[4.53666719,0.03740235,98.27004193],[4.53666675,0.0374006,98.27080187],[4.53666631,0.03739885,98.27156354],[4.53666587,0.03739711,98.27232693],[4.53666543,0.03739536,98.27309202],[4.53666499,0.03739361,98.2738588],[4.53666455,0.03739186,98.27462725],[4.53666411,0.03739011,98.27539735],[4.53666368,0.03738836,98.2761691],[4.53666324,0.03738661,98.27694246],[4.5366628,0.03738486,98.27771742],[4.53666236,0.03738311,98.27849398],[4.53666192,0.03738136,98.27927211],[4.53666148,0.03737961,98.2800518],[4.53666104,0.03737786,98.28083302],[4.5366606,0.03737612,98.28161577],[4.53666016,0.03737437,98.28240003],[4.53665972,0.03737262,98.28318578],[4.53665928,0.03737087,98.28397301],[4.53665884,0.03736912,98.2847617],[4.5366584,0.03736737,98.28555183],[4.53665796,0.03736562,98.28634339],[4.53665752,0.03736387,98.28713637],[4.53665708,0.03736212,98.28793075],[4.53665664,0.03736037,98.28872656],[4.5366562,0.03735862,98.28952379],[4.53665576,0.03735687,98.29032245],[4.53665532,0.03735513,98.29112256],[4.53665488,0.03735338,98.29192412],[4.53665444,0.03735163,98.29272715],[4.536654,0.03734988,98.29353164],[4.53665356,0.03734813,98.29433761],[4.53665312,0.03734638,98.29514506],[4.53665268,0.03734463,98.29595401],[4.53665224,0.03734288,98.29676446],[4.5366518,0.03734113,98.29757643],[4.53665136,0.03733939,98.29838992],[4.53665092,0.03733764,98.29920493],[4.53665048,0.03733589,98.30002148],[4.53665004,0.03733414,98.30083958],[4.53664959,0.03733239,98.30165924],[4.53664915,0.03733064,98.30248045],[4.53664871,0.03732889,98.30330324],[4.53664827,0.03732715,98.30412761],[4.53664783,0.0373254,98.30495357],[4.53664739,0.03732365,98.30578113],[4.53664695,0.0373219,98.30661029],[4.53664651,0.03732015,98.30744106],[4.53664606,0.0373184,98.30827346],[4.53664562,0.03731665,98.30910749],[4.53664518,0.0373149,98.30994316],[4.53664474,0.03731316,98.31078048],[4.5366443,0.03731141,98.31161946],[4.53664386,0.03730966,98.3124601],[4.53664342,0.03730791,98.31330242],[4.53664297,0.03730616,98.31414642],[4.53664253,0.03730441,98.31499211],[4.53664209,0.03730266,98.31583949],[4.53664165,0.03730092,98.31668859],[4.53664121,0.03729917,98.3175394],[4.53664077,0.03729742,98.31839194],[4.53664032,0.03729567,98.31924621],[4.53663988,0.03729392,98.32010222],[4.53663944,0.03729217,98.32095998],[4.536639,0.03729042,98.3218195],[4.53663856,0.03728868,98.32268078],[4.53663812,0.03728693,98.32354384],[4.53663768,0.03728518,98.32440868],[4.53663723,0.03728343,98.32527531],[4.53663679,0.03728168,98.32614374],[4.53663635,0.03727993,98.32701397],[4.53663591,0.03727818,98.32788602],[4.53663547,0.03727643,98.3287599],[4.53663503,0.03727469,98.3296356],[4.53663459,0.03727294,98.33051315],[4.53663415,0.03727119,98.33139254],[4.5366337,0.03726944,98.33227379],[4.53663326,0.03726769,98.33315689],[4.53663282,0.03726594,98.33404187],[4.53663238,0.03726419,98.33492873],[4.53663194,0.03726244,98.33581748],[4.5366315,0.0372607,98.33670812],[4.53663106,0.03725895,98.33760066],[4.53663062,0.0372572,98.33849511],[4.53663018,0.03725545,98.33939148],[4.53662974,0.0372537,98.34028977],[4.5366293,0.03725195,98.34119],[4.53662886,0.0372502,98.34209216],[4.53662842,0.03724845,98.34299627],[4.53662798,0.0372467,98.34390234],[4.53662754,0.03724495,98.34481037],[4.5366271,0.03724321,98.34572037],[4.53662666,0.03724146,98.34663234],[4.53662622,0.03723971,98.3475463],[4.53662578,0.03723796,98.34846225],[4.53662534,0.03723621,98.3493802],[4.5366249,0.03723446,98.35030016],[4.53662446,0.03723271,98.35122212],[4.53662402,0.03723096,98.35214611],[4.53662358,0.03722921,98.35307212],[4.53662314,0.03722746,98.35400016],[4.5366227,0.03722571,98.35493024],[4.53662226,0.03722396,98.35586237],[4.53662183,0.03722222,98.35679655],[4.53662139,0.03722047,98.35773279],[4.53662095,0.03721872,98.3586711],[4.53662051,0.03721697,98.35961148],[4.5366202,0.03721574,98.36027354],[4.53665426,0.0372071,98.45376039],[4.53665457,0.03720833,98.45320571],[4.53665501,0.03721007,98.4524166],[4.53665545,0.03721182,98.4516278],[4.53665589,0.03721357,98.45083929],[4.53665633,0.03721532,98.45005108],[4.53665677,0.03721707,98.44926317],[4.53665721,0.03721882,98.44847558],[4.53665765,0.03722056,98.44768829],[4.53665809,0.03722231,98.44690133],[4.53665853,0.03722406,98.44611468],[4.53665897,0.03722581,98.44532835],[4.53665941,0.03722756,98.44454235],[4.53665985,0.0372293,98.44375668],[4.53666029,0.03723105,98.44297134],[4.53666073,0.0372328,98.44218634],[4.53666118,0.03723455,98.44140168],[4.53666162,0.0372363,98.44061737],[4.53666206,0.03723805,98.4398334],[4.5366625,0.03723979,98.43904978],[4.53666294,0.03724154,98.43826652],[4.53666338,0.03724329,98.43748361],[4.53666382,0.03724504,98.43670107],[4.53666426,0.03724679,98.43591889],[4.5366647,0.03724853,98.43513707],[4.53666514,0.03725028,98.43435563],[4.53666558,0.03725203,98.43357457],[4.53666602,0.03725378,98.43279388],[4.53666647,0.03725553,98.43201358],[4.53666691,0.03725727,98.43123366],[4.53666735,0.03725902,98.43045413],[4.53666779,0.03726077,98.42967499],[4.53666823,0.03726252,98.42889625],[4.53666867,0.03726427,98.4281179],[4.53666911,0.03726602,98.42733996],[4.53666955,0.03726776,98.42656243],[4.53666999,0.03726951,98.4257853],[4.53667044,0.03727126,98.42500859],[4.53667088,0.03727301,98.42423229],[4.53667132,0.03727476,98.42345641],[4.53667176,0.0372765,98.42268096],[4.5366722,0.03727825,98.42190593],[4.53667264,0.03728,98.42113133],[4.53667308,0.03728175,98.42035716],[4.53667352,0.0372835,98.41958344],[4.53667396,0.03728524,98.41881015],[4.53667441,0.03728699,98.4180373],[4.53667485,0.03728874,98.4172649],[4.53667529,0.03729049,98.41649295],[4.53667573,0.03729224,98.41572145],[4.53667617,0.03729399,98.41495041],[4.53667661,0.03729573,98.41417984],[4.53667705,0.03729748,98.41340972],[4.53667749,0.03729923,98.41264007],[4.53667793,0.03730098,98.41187089],[4.53667838,0.03730273,98.41110219],[4.53667882,0.03730447,98.41033396],[4.53667926,0.03730622,98.40956622],[4.5366797,0.03730797,98.40879895],[4.53668014,0.03730972,98.40803218],[4.53668058,0.03731147,98.4072659],[4.53668102,0.03731321,98.40650011],[4.53668146,0.03731496,98.40573482],[4.5366819,0.03731671,98.40497003],[4.53668235,0.03731846,98.40420574],[4.53668279,0.03732021,98.40344197],[4.53668323,0.03732196,98.4026787],[4.53668367,0.0373237,98.40191595],[4.53668411,0.03732545,98.40115372],[4.53668455,0.0373272,98.40039201],[4.53668499,0.03732895,98.39963082],[4.53668543,0.0373307,98.39887017],[4.53668587,0.03733244,98.39811004],[4.53668631,0.03733419,98.39735046],[4.53668675,0.03733594,98.39659141],[4.53668719,0.03733769,98.3958329],[4.53668764,0.03733944,98.39507495],[4.53668808,0.03734119,98.39431754],[4.53668852,0.03734293,98.39356068],[4.53668896,0.03734468,98.39280438],[4.5366894,0.03734643,98.39204864],[4.53668984,0.03734818,98.39129347],[4.53669028,0.03734993,98.39053886],[4.53669072,0.03735168,98.38978483],[4.53669116,0.03735342,98.38903137],[4.5366916,0.03735517,98.38827848],[4.53669204,0.03735692,98.38752618],[4.53669248,0.03735867,98.38677446],[4.53669292,0.03736042,98.38602334],[4.53669336,0.03736217,98.3852728],[4.5366938,0.03736391,98.38452286],[4.53669424,0.03736567,98.38377352],[4.53669468,0.03736741,98.38302479],[4.53669512,0.03736916,98.38227666],[4.53669556,0.03737091,98.38152914],[4.536696,0.03737266,98.38078223],[4.53669644,0.03737441,98.38003595],[4.53669688,0.03737616,98.37929028],[4.53669732,0.0373779,98.37854524],[4.53669776,0.03737965,98.37780083],[4.5366982,0.0373814,98.37705705],[4.53669864,0.03738315,98.37631391],[4.53669908,0.0373849,98.3755714],[4.53669952,0.03738665,98.37482954],[4.53669996,0.0373884,98.37408833],[4.5367004,0.03739014,98.37334777],[4.53670084,0.03739189,98.37260786],[4.53670128,0.03739364,98.37186862],[4.53670172,0.03739539,98.37113003],[4.53670216,0.03739714,98.37039211],[4.5367026,0.03739889,98.36965487],[4.53670303,0.03740064,98.36891832],[4.53670347,0.03740238,98.36818246],[4.53670391,0.03740413,98.36744731],[4.53670435,0.03740588,98.36671287],[4.53670479,0.03740763,98.36597915],[4.53670523,0.03740938,98.36524615],[4.53670567,0.03741113,98.3645139],[4.53670611,0.03741288,98.36378239],[4.53670655,0.03741463,98.36305163],[4.53670698,0.03741637,98.36232164],[4.53670742,0.03741812,98.36159242],[4.53670786,0.03741987,98.36086399],[4.5367083,0.03742162,98.36013634],[4.53670874,0.03742337,98.35940949],[4.53670918,0.03742512,98.35868344],[4.53670962,0.03742687,98.35795821],[4.53671005,0.03742862,98.35723381],[4.53671049,0.03743036,98.35651024],[4.53671093,0.03743211,98.3557875],[4.53671137,0.03743386,98.35506562],[4.53671181,0.03743561,98.3543446],[4.53671224,0.03743736,98.35362445],[4.53671268,0.03743911,98.35290517],[4.53671312,0.03744086,98.35218677],[4.53671356,0.03744261,98.35146927],[4.536714,0.03744436,98.35075267],[4.53671444,0.0374461,98.35003698],[4.53671487,0.03744785,98.34932221],[4.53671531,0.0374496,98.34860837],[4.53671575,0.03745135,98.34789547],[4.53671619,0.0374531,98.34718351],[4.53671663,0.03745485,98.34647251],[4.53671706,0.0374566,98.34576247],[4.5367175,0.03745835,98.3450534],[4.53671794,0.0374601,98.34434531],[4.53671838,0.03746184,98.34363822],[4.53671881,0.03746359,98.34293212],[4.53671925,0.03746534,98.34222702],[4.53671969,0.03746709,98.34152295],[4.53672013,0.03746884,98.34081989],[4.53672057,0.03747059,98.34011787],[4.536721,0.03747234,98.3394169],[4.53672144,0.03747409,98.33871697],[4.53672188,0.03747584,98.3380181],[4.53672232,0.03747759,98.3373203],[4.53672275,0.03747933,98.33662358],[4.53672319,0.03748108,98.33592794],[4.53672363,0.03748283,98.3352334],[4.53672407,0.03748458,98.33453996],[4.5367245,0.03748633,98.33384764],[4.53672494,0.03748808,98.33315643],[4.53672538,0.03748983,98.33246635],[4.53672582,0.03749158,98.33177741],[4.53672625,0.03749333,98.33108962],[4.53672669,0.03749508,98.33040298],[4.53672713,0.03749682,98.32971751],[4.53672757,0.03749857,98.32903321],[4.536728,0.03750032,98.3283501],[4.53672844,0.03750207,98.32766817],[4.53672888,0.03750382,98.32698744],[4.53672932,0.03750557,98.32630792],[4.53672975,0.03750732,98.32562962],[4.53673019,0.03750907,98.32495254],[4.53673063,0.03751082,98.3242767],[4.53673107,0.03751257,98.3236021],[4.5367315,0.03751432,98.32292875],[4.53673194,0.03751606,98.32225666],[4.53673238,0.03751781,98.32158584],[4.53673282,0.03751956,98.3209163],[4.53673325,0.03752131,98.32024804],[4.53673369,0.03752306,98.31958108],[4.53673413,0.03752481,98.31891542],[4.53673457,0.03752656,98.31825108],[4.536735,0.03752831,98.31758805],[4.53673544,0.03753006,98.31692636],[4.53673588,0.03753181,98.316266],[4.53673632,0.03753355,98.31560699],[4.53673675,0.0375353,98.31494934],[4.53673719,0.03753705,98.31429305],[4.53673763,0.0375388,98.31363813],[4.53673807,0.03754055,98.3129846],[4.5367385,0.0375423,98.31233245],[4.53673894,0.03754405,98.3116817],[4.53673938,0.0375458,98.31103236],[4.53673982,0.03754755,98.31038444],[4.53674026,0.0375493,98.30973794],[4.53674069,0.03755104,98.30909287],[4.53674113,0.03755279,98.30844925],[4.53674157,0.03755454,98.30780707],[4.53674201,0.03755629,98.30716636],[4.53674244,0.03755804,98.30652711],[4.53674288,0.03755979,98.30588934],[4.53674332,0.03756154,98.30525305],[4.53674376,0.03756329,98.30461825],[4.5367442,0.03756504,98.30398496],[4.53674463,0.03756679,98.30335318],[4.53674507,0.03756853,98.30272291],[4.53674551,0.03757028,98.30209417],[4.53674595,0.03757203,98.30146697],[4.53674639,0.03757378,98.30084131],[4.53674682,0.03757553,98.3002172],[4.53674726,0.03757728,98.29959466],[4.5367477,0.03757903,98.29897368],[4.53674814,0.03758078,98.29835429],[4.53674858,0.03758253,98.29773647],[4.53674902,0.03758427,98.29712026],[4.53674945,0.03758602,98.29650564],[4.53674989,0.03758777,98.29589264],[4.53675033,0.03758952,98.29528126],[4.53675077,0.03759127,98.29467149],[4.53675121,0.03759302,98.29406335],[4.53675165,0.03759477,98.29345684],[4.53675208,0.03759652,98.29285197],[4.53675252,0.03759826,98.29224873],[4.53675296,0.03760001,98.29164714],[4.5367534,0.03760176,98.29104719],[4.53675384,0.03760351,98.29044889],[4.53675428,0.03760526,98.28985225],[4.53675472,0.03760701,98.28925727],[4.53675516,0.03760876,98.28866395],[4.53675559,0.0376105,98.28807229],[4.53675603,0.03761225,98.28748231],[4.53675647,0.037614,98.286894],[4.53675691,0.03761575,98.28630738],[4.53675735,0.0376175,98.28572243],[4.53675779,0.03761925,98.28513918],[4.53675823,0.03762099,98.28455761],[4.53675867,0.03762274,98.28397775],[4.53675911,0.03762449,98.28339958],[4.53675955,0.03762624,98.28282312],[4.53675999,0.03762799,98.28224837],[4.53676043,0.03762974,98.28167533],[4.53676087,0.03763148,98.281104],[4.5367613,0.03763323,98.2805344],[4.53676174,0.03763498,98.27996652],[4.53676218,0.03763673,98.27940038],[4.53676262,0.03763848,98.27883596],[4.53676306,0.03764022,98.27827329],[4.5367635,0.03764197,98.27771235],[4.53676394,0.03764372,98.27715317],[4.53676438,0.03764547,98.27659573],[4.53676482,0.03764721,98.27604004],[4.53676526,0.03764896,98.27548612],[4.53676571,0.03765071,98.27493396],[4.53676615,0.03765246,98.27438356],[4.53676659,0.03765421,98.27383494],[4.53676703,0.03765595,98.27328809],[4.53676747,0.0376577,98.27274302],[4.53676791,0.03765945,98.27219973],[4.53676835,0.03766119,98.27165823],[4.53676879,0.03766294,98.27111852],[4.53676923,0.03766469,98.27058061],[4.53676967,0.03766644,98.2700445],[4.53677011,0.03766818,98.26951019],[4.53677055,0.03766993,98.26897769],[4.536771,0.03767168,98.268447],[4.53677144,0.03767343,98.26791813],[4.53677188,0.03767517,98.26739108],[4.53677232,0.03767692,98.26686585],[4.53677276,0.03767867,98.26634245],[4.5367732,0.03768041,98.26582089],[4.53677365,0.03768216,98.26530116],[4.53677409,0.03768391,98.26478327],[4.53677453,0.03768565,98.26426723],[4.53677497,0.0376874,98.26375304],[4.53677542,0.03768915,98.2632407],[4.53677586,0.03769089,98.26273021],[4.5367763,0.03769264,98.26222159],[4.53677674,0.03769439,98.26171484],[4.53677719,0.03769613,98.26120995],[4.53677763,0.03769788,98.26070694],[4.53677807,0.03769963,98.2602058],[4.53677852,0.03770137,98.25970655],[4.53677896,0.03770312,98.25920918],[4.5367794,0.03770486,98.25871371],[4.53677985,0.03770661,98.25822013],[4.53678029,0.03770836,98.25772844],[4.53678073,0.0377101,98.25723866],[4.53678118,0.03771185,98.25675078],[4.53678162,0.03771359,98.25626482],[4.53678207,0.03771534,98.25578077],[4.53678251,0.03771709,98.25529863],[4.53678296,0.03771883,98.25481842],[4.5367834,0.03772058,98.25434014],[4.53678384,0.03772232,98.25386379],[4.53678429,0.03772407,98.25338937],[4.53678473,0.03772581,98.25291689],[4.53678518,0.03772756,98.25244635],[4.53678562,0.03772931,98.25197776],[4.53678607,0.03773105,98.25151112],[4.53678652,0.0377328,98.25104644],[4.53678696,0.03773454,98.25058371],[4.53678741,0.03773629,98.25012294],[4.53678785,0.03773803,98.24966415],[4.5367883,0.03773978,98.24920732],[4.53678875,0.03774152,98.24875247],[4.53678919,0.03774327,98.24829959],[4.53678964,0.03774501,98.2478487],[4.53679009,0.03774676,98.2473998],[4.53679053,0.0377485,98.24695288],[4.53679098,0.03775025,98.24650796],[4.53679143,0.03775199,98.24606504],[4.53679187,0.03775374,98.24562412],[4.53679232,0.03775548,98.2451852],[4.53679277,0.03775723,98.2447483],[4.53679322,0.03775897,98.24431341],[4.53679367,0.03776071,98.24388053],[4.53679411,0.03776246,98.24344968],[4.53679456,0.0377642,98.24302086],[4.53679501,0.03776595,98.24259406],[4.53679546,0.03776769,98.24216929],[4.53679591,0.03776943,98.24174657],[4.53679636,0.03777118,98.24132588],[4.53679681,0.03777292,98.24090724],[4.53679726,0.03777467,98.24049065],[4.53679771,0.03777641,98.24007611],[4.53679816,0.03777815,98.23966362],[4.53679861,0.0377799,98.2392532],[4.53679906,0.03778164,98.23884484],[4.53679951,0.03778338,98.23843856],[4.53679996,0.03778513,98.23803439],[4.53680041,0.03778687,98.23763234],[4.53680086,0.03778862,98.23723243],[4.53680131,0.03779036,98.23683468],[4.53680176,0.0377921,98.23643911],[4.53680221,0.03779384,98.23604574],[4.53680266,0.03779559,98.23565458],[4.53680312,0.03779733,98.23526567],[4.53680357,0.03779907,98.234879],[4.53680402,0.03780082,98.23449462],[4.53680447,0.03780256,98.23411252],[4.53680493,0.0378043,98.23373274],[4.53680538,0.03780604,98.23335529],[4.53680583,0.03780779,98.23298019],[4.53680629,0.03780953,98.23260746],[4.53680674,0.03781127,98.23223713],[4.5368072,0.03781301,98.23186919],[4.53680765,0.03781475,98.23150369],[4.53680811,0.0378165,98.23114063],[4.53680856,0.03781824,98.23078004],[4.53680902,0.03781998,98.23042193],[4.53680947,0.03782172,98.23006632],[4.53680993,0.03782346,98.22971323],[4.53681039,0.0378252,98.22936269],[4.53681085,0.03782695,98.2290147],[4.5368113,0.03782869,98.22866929],[4.53681176,0.03783043,98.22832648],[4.53681222,0.03783217,98.22798629],[4.53681268,0.03783391,98.22764873],[4.53681314,0.03783565,98.22731383],[4.5368136,0.03783739,98.2269816],[4.53681406,0.03783913,98.22665206],[4.53681452,0.03784087,98.22632523],[4.53681498,0.03784261,98.22600113],[4.53681544,0.03784435,98.22567978],[4.5368159,0.03784609,98.2253612],[4.53681636,0.03784783,98.22504541],[4.53681683,0.03784957,98.22473243],[4.53681729,0.03785131,98.22442226],[4.53681775,0.03785305,98.22411495],[4.53681822,0.03785479,98.22381049],[4.53681868,0.03785653,98.22350891],[4.53681913,0.03785822,98.2232102],[4.5368196,0.03785996,98.22291435],[4.53682006,0.0378617,98.22262139],[4.53682053,0.03786344,98.22233129],[4.536821,0.03786518,98.22204407],[4.53682146,0.03786692,98.22175972],[4.53682193,0.03786866,98.22147825],[4.5368224,0.0378704,98.22119966],[4.53682287,0.03787214,98.22092394],[4.53682334,0.03787387,98.2206511],[4.53682381,0.03787561,98.22038114],[4.53682428,0.03787735,98.22011406],[4.53682475,0.03787909,98.21984986],[4.53682522,0.03788083,98.21958855],[4.53682569,0.03788257,98.21933011],[4.53682616,0.0378843,98.21907456],[4.53682664,0.03788604,98.21882189],[4.53682711,0.03788778,98.21857211],[4.53682758,0.03788952,98.21832521],[4.53682806,0.03789125,98.2180812],[4.53682853,0.03789299,98.21784008],[4.53682901,0.03789473,98.21760185],[4.53682948,0.03789646,98.21736651],[4.53682996,0.0378982,98.21713406],[4.53683043,0.03789994,98.2169045],[4.53683091,0.03790167,98.21667783],[4.53683139,0.03790341,98.21645406],[4.53683186,0.03790514,98.21623318],[4.53683234,0.03790688,98.2160152],[4.53683282,0.03790862,98.21580011],[4.5368333,0.03791035,98.21558792],[4.53683378,0.03791209,98.21537863],[4.53683426,0.03791382,98.21517224],[4.53683474,0.03791556,98.21496876],[4.53683522,0.03791729,98.21476817],[4.5368357,0.03791903,98.21457049],[4.53683618,0.03792076,98.21437571],[4.53683666,0.0379225,98.21418383],[4.53683714,0.03792423,98.21399486],[4.53683762,0.03792597,98.2138088],[4.53683811,0.0379277,98.21362565],[4.53683859,0.03792944,98.2134454],[4.53683907,0.03793117,98.21326807],[4.53683956,0.0379329,98.21309365],[4.53684004,0.03793464,98.21292214],[4.53684053,0.03793637,98.21275354],[4.53684101,0.03793811,98.21258786],[4.5368415,0.03793984,98.21242509],[4.53684198,0.03794157,98.21226524],[4.53684247,0.03794331,98.21210829],[4.53684296,0.03794504,98.21195421],[4.53684345,0.03794677,98.21180298],[4.53684393,0.0379485,98.21165458],[4.53684442,0.03795024,98.21150898],[4.53684491,0.03795197,98.21136616],[4.5368454,0.0379537,98.21122609],[4.53684589,0.03795543,98.21108874],[4.53684638,0.03795717,98.2109541],[4.53684687,0.0379589,98.21082214],[4.53684736,0.03796063,98.21069283],[4.53684785,0.03796236,98.21056615],[4.53684834,0.03796409,98.21044207],[4.53684883,0.03796583,98.21032058],[4.53684932,0.03796756,98.21020163],[4.53684982,0.03796929,98.21008522],[4.53685031,0.03797102,98.20997132],[4.5368508,0.03797275,98.2098599],[4.53685129,0.03797448,98.20975093],[4.53685179,0.03797621,98.2096444],[4.53685228,0.03797794,98.20954027],[4.53685278,0.03797968,98.20943853],[4.53685327,0.03798141,98.20933914],[4.53685377,0.03798314,98.20924209],[4.53685426,0.03798487,98.20914734],[4.53685476,0.0379866,98.20905488],[4.53685526,0.03798833,98.20896468],[4.53685575,0.03799006,98.20887671],[4.53685625,0.03799179,98.20879095],[4.53685675,0.03799352,98.20870738],[4.53685724,0.03799525,98.20862597],[4.53685774,0.03799698,98.20854669],[4.53685824,0.03799871,98.20846952],[4.53685874,0.03800043,98.20839444],[4.53685924,0.03800216,98.20832141],[4.53685974,0.03800389,98.20825043],[4.53686024,0.03800562,98.20818145],[4.53686074,0.03800735,98.20811446],[4.53686124,0.03800908,98.20804943],[4.53686174,0.03801081,98.20798634],[4.53686224,0.03801254,98.20792515],[4.53686274,0.03801427,98.20786586],[4.53686325,0.03801599,98.20780842],[4.53686375,0.03801772,98.20775282],[4.53686425,0.03801945,98.20769905],[4.53686475,0.03802118,98.20764706],[4.53686526,0.03802291,98.20759686],[4.53686576,0.03802463,98.20754841],[4.53686627,0.03802636,98.2075017],[4.53686677,0.03802809,98.2074567],[4.53686727,0.03802982,98.20741339],[4.53686778,0.03803154,98.20737176],[4.53686829,0.03803327,98.20733178],[4.53686879,0.038035,98.20729344],[4.5368693,0.03803673,98.2072567],[4.5368698,0.03803845,98.20722156],[4.53687031,0.03804018,98.20718798],[4.53687082,0.03804191,98.20715596],[4.53687133,0.03804363,98.20712546],[4.53687183,0.03804536,98.20709648],[4.53687234,0.03804709,98.20706898],[4.53687285,0.03804881,98.20704294],[4.53687336,0.03805054,98.20701836],[4.53687387,0.03805227,98.2069952],[4.53687438,0.03805399,98.20697344],[4.53687489,0.03805572,98.20695307],[4.5368754,0.03805744,98.20693406],[4.53687591,0.03805917,98.20691639],[4.53687642,0.03806089,98.20690005],[4.53687693,0.03806262,98.20688501],[4.53687744,0.03806434,98.20687125],[4.53687795,0.03806607,98.20685874],[4.53687847,0.0380678,98.20684748],[4.53687898,0.03806952,98.20683744],[4.53687949,0.03807125,98.20682859],[4.53688,0.03807297,98.20682092],[4.53688052,0.03807469,98.20681441],[4.53688103,0.03807642,98.20680903],[4.53688155,0.03807814,98.20680477],[4.53688206,0.03807987,98.2068016],[4.53688258,0.03808159,98.20679951],[4.53688309,0.03808332,98.20679846],[4.53688361,0.03808504,98.20679845],[4.53688412,0.03808676,98.20679946],[4.53688464,0.03808849,98.20680145],[4.53688516,0.03809021,98.20680441],[4.53688567,0.03809194,98.20680832],[4.53688619,0.03809366,98.20681316],[4.53688671,0.03809538,98.20681891],[4.53688723,0.03809711,98.20682554],[4.53688774,0.03809883,98.20683304],[4.53688826,0.03810055,98.20684139],[4.53688878,0.03810228,98.20685055],[4.5368893,0.038104,98.20686053],[4.53688982,0.03810572,98.20687128],[4.53689034,0.03810744,98.2068828],[4.53689086,0.03810917,98.20689506],[4.53689138,0.03811089,98.20690805],[4.5368919,0.0381126,98.20692173],[4.53689242,0.03811432,98.20693609],[4.53689294,0.03811604,98.20695111],[4.53689346,0.03811777,98.20696676],[4.53689399,0.03811949,98.20698304],[4.53689451,0.03812121,98.20699991],[4.53689503,0.03812293,98.20701735],[4.53689556,0.03812465,98.20703535],[4.53689608,0.03812638,98.20705389],[4.53689661,0.0381281,98.20707293],[4.53689713,0.03812982,98.20709247],[4.53689765,0.03813154,98.20711248],[4.53689818,0.03813326,98.20713295],[4.53689871,0.03813499,98.20715384],[4.53689923,0.03813671,98.20717514],[4.53689976,0.03813843,98.20719683],[4.53690028,0.03814015,98.20721889],[4.53690081,0.03814187,98.20724129],[4.53690134,0.03814359,98.20726403],[4.53690187,0.03814531,98.20728707],[4.53690239,0.03814704,98.2073104],[4.53690292,0.03814876,98.207334],[4.53690345,0.03815048,98.20735785],[4.53690398,0.0381522,98.20738192],[4.53690451,0.03815392,98.20740621],[4.53690504,0.03815564,98.20743069],[4.53690556,0.03815736,98.20745533],[4.53690609,0.03815908,98.20748013],[4.53690662,0.0381608,98.20750506],[4.53690715,0.03816252,98.20753009],[4.53690769,0.03816424,98.20755522],[4.53690822,0.03816596,98.20758042],[4.53690875,0.03816768,98.20760567],[4.53690928,0.0381694,98.20763095],[4.53690981,0.03817112,98.20765624],[4.53691034,0.03817284,98.20768152],[4.53691087,0.03817456,98.20770678],[4.53691141,0.03817628,98.20773198],[4.53691194,0.038178,98.20775712],[4.53691247,0.03817972,98.20778217],[4.536913,0.03818144,98.20780712],[4.53691354,0.03818316,98.20783194],[4.53691407,0.03818488,98.20785661],[4.5369146,0.0381866,98.20788112],[4.53691514,0.03818832,98.20790544],[4.53691567,0.03819004,98.20792955],[4.53691621,0.03819176,98.20795344],[4.53691674,0.03819348,98.20797709],[4.53691728,0.0381952,98.20800047],[4.53691781,0.03819692,98.20802356],[4.53691835,0.03819864,98.20804636],[4.53691888,0.03820036,98.20806882],[4.5368877,0.03821029,98.10224157]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000400","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"exit","predecessorId":-1,"sOffset":53.8593184394}},{"geometry":{"coordinates":[[[4.53691888,0.03820036,98.20806882],[4.53691835,0.03819864,98.20804636],[4.53691781,0.03819692,98.20802356],[4.53691728,0.0381952,98.20800047],[4.53691674,0.03819348,98.20797709],[4.53691621,0.03819176,98.20795344],[4.53691567,0.03819004,98.20792955],[4.53691514,0.03818832,98.20790544],[4.5369146,0.0381866,98.20788112],[4.53691407,0.03818488,98.20785661],[4.53691354,0.03818316,98.20783194],[4.536913,0.03818144,98.20780712],[4.53691247,0.03817972,98.20778217],[4.53691194,0.038178,98.20775712],[4.53691141,0.03817628,98.20773198],[4.53691087,0.03817456,98.20770678],[4.53691034,0.03817284,98.20768152],[4.53690981,0.03817112,98.20765624],[4.53690928,0.0381694,98.20763095],[4.53690875,0.03816768,98.20760567],[4.53690822,0.03816596,98.20758042],[4.53690769,0.03816424,98.20755522],[4.53690715,0.03816252,98.20753009],[4.53690662,0.0381608,98.20750506],[4.53690609,0.03815908,98.20748013],[4.53690556,0.03815736,98.20745533],[4.53690504,0.03815564,98.20743069],[4.53690451,0.03815392,98.20740621],[4.53690398,0.0381522,98.20738192],[4.53690345,0.03815048,98.20735785],[4.53690292,0.03814876,98.207334],[4.53690239,0.03814704,98.2073104],[4.53690187,0.03814531,98.20728707],[4.53690134,0.03814359,98.20726403],[4.53690081,0.03814187,98.20724129],[4.53690028,0.03814015,98.20721889],[4.53689976,0.03813843,98.20719683],[4.53689923,0.03813671,98.20717514],[4.53689871,0.03813499,98.20715384],[4.53689818,0.03813326,98.20713295],[4.53689765,0.03813154,98.20711248],[4.53689713,0.03812982,98.20709247],[4.53689661,0.0381281,98.20707293],[4.53689608,0.03812638,98.20705389],[4.53689556,0.03812465,98.20703535],[4.53689503,0.03812293,98.20701735],[4.53689451,0.03812121,98.20699991],[4.53689399,0.03811949,98.20698304],[4.53689346,0.03811777,98.20696676],[4.53689294,0.03811604,98.20695111],[4.53689242,0.03811432,98.20693609],[4.5368919,0.0381126,98.20692173],[4.53689138,0.03811089,98.20690805],[4.53689086,0.03810917,98.20689506],[4.53689034,0.03810744,98.2068828],[4.53688982,0.03810572,98.20687128],[4.5368893,0.038104,98.20686053],[4.53688878,0.03810228,98.20685055],[4.53688826,0.03810055,98.20684139],[4.53688774,0.03809883,98.20683304],[4.53688723,0.03809711,98.20682554],[4.53688671,0.03809538,98.20681891],[4.53688619,0.03809366,98.20681316],[4.53688567,0.03809194,98.20680832],[4.53688516,0.03809021,98.20680441],[4.53688464,0.03808849,98.20680145],[4.53688412,0.03808676,98.20679946],[4.53688361,0.03808504,98.20679845],[4.53688309,0.03808332,98.20679846],[4.53688258,0.03808159,98.20679951],[4.53688206,0.03807987,98.2068016],[4.53688155,0.03807814,98.20680477],[4.53688103,0.03807642,98.20680903],[4.53688052,0.03807469,98.20681441],[4.53688,0.03807297,98.20682092],[4.53687949,0.03807125,98.20682859],[4.53687898,0.03806952,98.20683744],[4.53687847,0.0380678,98.20684748],[4.53687795,0.03806607,98.20685874],[4.53687744,0.03806434,98.20687125],[4.53687693,0.03806262,98.20688501],[4.53687642,0.03806089,98.20690005],[4.53687591,0.03805917,98.20691639],[4.5368754,0.03805744,98.20693406],[4.53687489,0.03805572,98.20695307],[4.53687438,0.03805399,98.20697344],[4.53687387,0.03805227,98.2069952],[4.53687336,0.03805054,98.20701836],[4.53687285,0.03804881,98.20704294],[4.53687234,0.03804709,98.20706898],[4.53687183,0.03804536,98.20709648],[4.53687133,0.03804363,98.20712546],[4.53687082,0.03804191,98.20715596],[4.53687031,0.03804018,98.20718798],[4.5368698,0.03803845,98.20722156],[4.5368693,0.03803673,98.2072567],[4.53686879,0.038035,98.20729344],[4.53686829,0.03803327,98.20733178],[4.53686778,0.03803154,98.20737176],[4.53686727,0.03802982,98.20741339],[4.53686677,0.03802809,98.2074567],[4.53686627,0.03802636,98.2075017],[4.53686576,0.03802463,98.20754841],[4.53686526,0.03802291,98.20759686],[4.53686475,0.03802118,98.20764706],[4.53686425,0.03801945,98.20769905],[4.53686375,0.03801772,98.20775282],[4.53686325,0.03801599,98.20780842],[4.53686274,0.03801427,98.20786586],[4.53686224,0.03801254,98.20792515],[4.53686174,0.03801081,98.20798634],[4.53686124,0.03800908,98.20804943],[4.53686074,0.03800735,98.20811446],[4.53686024,0.03800562,98.20818145],[4.53685974,0.03800389,98.20825043],[4.53685924,0.03800216,98.20832141],[4.53685874,0.03800043,98.20839444],[4.53685824,0.03799871,98.20846952],[4.53685774,0.03799698,98.20854669],[4.53685724,0.03799525,98.20862597],[4.53685675,0.03799352,98.20870738],[4.53685625,0.03799179,98.20879095],[4.53685575,0.03799006,98.20887671],[4.53685526,0.03798833,98.20896468],[4.53685476,0.0379866,98.20905488],[4.53685426,0.03798487,98.20914734],[4.53685377,0.03798314,98.20924209],[4.53685327,0.03798141,98.20933914],[4.53685278,0.03797968,98.20943853],[4.53685228,0.03797794,98.20954027],[4.53685179,0.03797621,98.2096444],[4.53685129,0.03797448,98.20975093],[4.5368508,0.03797275,98.2098599],[4.53685031,0.03797102,98.20997132],[4.53684982,0.03796929,98.21008522],[4.53684932,0.03796756,98.21020163],[4.53684883,0.03796583,98.21032058],[4.53684834,0.03796409,98.21044207],[4.53684785,0.03796236,98.21056615],[4.53684736,0.03796063,98.21069283],[4.53684687,0.0379589,98.21082214],[4.53684638,0.03795717,98.2109541],[4.53684589,0.03795543,98.21108874],[4.5368454,0.0379537,98.21122609],[4.53684491,0.03795197,98.21136616],[4.53684442,0.03795024,98.21150898],[4.53684393,0.0379485,98.21165458],[4.53684345,0.03794677,98.21180298],[4.53684296,0.03794504,98.21195421],[4.53684247,0.03794331,98.21210829],[4.53684198,0.03794157,98.21226524],[4.5368415,0.03793984,98.21242509],[4.53684101,0.03793811,98.21258786],[4.53684053,0.03793637,98.21275354],[4.53684004,0.03793464,98.21292214],[4.53683956,0.0379329,98.21309365],[4.53683907,0.03793117,98.21326807],[4.53683859,0.03792944,98.2134454],[4.53683811,0.0379277,98.21362565],[4.53683762,0.03792597,98.2138088],[4.53683714,0.03792423,98.21399486],[4.53683666,0.0379225,98.21418383],[4.53683618,0.03792076,98.21437571],[4.5368357,0.03791903,98.21457049],[4.53683522,0.03791729,98.21476817],[4.53683474,0.03791556,98.21496876],[4.53683426,0.03791382,98.21517224],[4.53683378,0.03791209,98.21537863],[4.5368333,0.03791035,98.21558792],[4.53683282,0.03790862,98.21580011],[4.53683234,0.03790688,98.2160152],[4.53683186,0.03790514,98.21623318],[4.53683139,0.03790341,98.21645406],[4.53683091,0.03790167,98.21667783],[4.53683043,0.03789994,98.2169045],[4.53682996,0.0378982,98.21713406],[4.53682948,0.03789646,98.21736651],[4.53682901,0.03789473,98.21760185],[4.53682853,0.03789299,98.21784008],[4.53682806,0.03789125,98.2180812],[4.53682758,0.03788952,98.21832521],[4.53682711,0.03788778,98.21857211],[4.53682664,0.03788604,98.21882189],[4.53682616,0.0378843,98.21907456],[4.53682569,0.03788257,98.21933011],[4.53682522,0.03788083,98.21958855],[4.53682475,0.03787909,98.21984986],[4.53682428,0.03787735,98.22011406],[4.53682381,0.03787561,98.22038114],[4.53682334,0.03787387,98.2206511],[4.53682287,0.03787214,98.22092394],[4.5368224,0.0378704,98.22119966],[4.53682193,0.03786866,98.22147825],[4.53682146,0.03786692,98.22175972],[4.536821,0.03786518,98.22204407],[4.53682053,0.03786344,98.22233129],[4.53682006,0.0378617,98.22262139],[4.5368196,0.03785996,98.22291435],[4.53681913,0.03785822,98.2232102],[4.53681868,0.03785653,98.22350891],[4.53681822,0.03785479,98.22381049],[4.53681775,0.03785305,98.22411495],[4.53681729,0.03785131,98.22442226],[4.53681683,0.03784957,98.22473243],[4.53681636,0.03784783,98.22504541],[4.5368159,0.03784609,98.2253612],[4.53681544,0.03784435,98.22567978],[4.53681498,0.03784261,98.22600113],[4.53681452,0.03784087,98.22632523],[4.53681406,0.03783913,98.22665206],[4.5368136,0.03783739,98.2269816],[4.53681314,0.03783565,98.22731383],[4.53681268,0.03783391,98.22764873],[4.53681222,0.03783217,98.22798629],[4.53681176,0.03783043,98.22832648],[4.5368113,0.03782869,98.22866929],[4.53681085,0.03782695,98.2290147],[4.53681039,0.0378252,98.22936269],[4.53680993,0.03782346,98.22971323],[4.53680947,0.03782172,98.23006632],[4.53680902,0.03781998,98.23042193],[4.53680856,0.03781824,98.23078004],[4.53680811,0.0378165,98.23114063],[4.53680765,0.03781475,98.23150369],[4.5368072,0.03781301,98.23186919],[4.53680674,0.03781127,98.23223713],[4.53680629,0.03780953,98.23260746],[4.53680583,0.03780779,98.23298019],[4.53680538,0.03780604,98.23335529],[4.53680493,0.0378043,98.23373274],[4.53680447,0.03780256,98.23411252],[4.53680402,0.03780082,98.23449462],[4.53680357,0.03779907,98.234879],[4.53680312,0.03779733,98.23526567],[4.53680266,0.03779559,98.23565458],[4.53680221,0.03779384,98.23604574],[4.53680176,0.0377921,98.23643911],[4.53680131,0.03779036,98.23683468],[4.53680086,0.03778862,98.23723243],[4.53680041,0.03778687,98.23763234],[4.53679996,0.03778513,98.23803439],[4.53679951,0.03778338,98.23843856],[4.53679906,0.03778164,98.23884484],[4.53679861,0.0377799,98.2392532],[4.53679816,0.03777815,98.23966362],[4.53679771,0.03777641,98.24007611],[4.53679726,0.03777467,98.24049065],[4.53679681,0.03777292,98.24090724],[4.53679636,0.03777118,98.24132588],[4.53679591,0.03776943,98.24174657],[4.53679546,0.03776769,98.24216929],[4.53679501,0.03776595,98.24259406],[4.53679456,0.0377642,98.24302086],[4.53679411,0.03776246,98.24344968],[4.53679367,0.03776071,98.24388053],[4.53679322,0.03775897,98.24431341],[4.53679277,0.03775723,98.2447483],[4.53679232,0.03775548,98.2451852],[4.53679187,0.03775374,98.24562412],[4.53679143,0.03775199,98.24606504],[4.53679098,0.03775025,98.24650796],[4.53679053,0.0377485,98.24695288],[4.53679009,0.03774676,98.2473998],[4.53678964,0.03774501,98.2478487],[4.53678919,0.03774327,98.24829959],[4.53678875,0.03774152,98.24875247],[4.5367883,0.03773978,98.24920732],[4.53678785,0.03773803,98.24966415],[4.53678741,0.03773629,98.25012294],[4.53678696,0.03773454,98.25058371],[4.53678652,0.0377328,98.25104644],[4.53678607,0.03773105,98.25151112],[4.53678562,0.03772931,98.25197776],[4.53678518,0.03772756,98.25244635],[4.53678473,0.03772581,98.25291689],[4.53678429,0.03772407,98.25338937],[4.53678384,0.03772232,98.25386379],[4.5367834,0.03772058,98.25434014],[4.53678296,0.03771883,98.25481842],[4.53678251,0.03771709,98.25529863],[4.53678207,0.03771534,98.25578077],[4.53678162,0.03771359,98.25626482],[4.53678118,0.03771185,98.25675078],[4.53678073,0.0377101,98.25723866],[4.53678029,0.03770836,98.25772844],[4.53677985,0.03770661,98.25822013],[4.5367794,0.03770486,98.25871371],[4.53677896,0.03770312,98.25920918],[4.53677852,0.03770137,98.25970655],[4.53677807,0.03769963,98.2602058],[4.53677763,0.03769788,98.26070694],[4.53677719,0.03769613,98.26120995],[4.53677674,0.03769439,98.26171484],[4.5367763,0.03769264,98.26222159],[4.53677586,0.03769089,98.26273021],[4.53677542,0.03768915,98.2632407],[4.53677497,0.0376874,98.26375304],[4.53677453,0.03768565,98.26426723],[4.53677409,0.03768391,98.26478327],[4.53677365,0.03768216,98.26530116],[4.5367732,0.03768041,98.26582089],[4.53677276,0.03767867,98.26634245],[4.53677232,0.03767692,98.26686585],[4.53677188,0.03767517,98.26739108],[4.53677144,0.03767343,98.26791813],[4.536771,0.03767168,98.268447],[4.53677055,0.03766993,98.26897769],[4.53677011,0.03766818,98.26951019],[4.53676967,0.03766644,98.2700445],[4.53676923,0.03766469,98.27058061],[4.53676879,0.03766294,98.27111852],[4.53676835,0.03766119,98.27165823],[4.53676791,0.03765945,98.27219973],[4.53676747,0.0376577,98.27274302],[4.53676703,0.03765595,98.27328809],[4.53676659,0.03765421,98.27383494],[4.53676615,0.03765246,98.27438356],[4.53676571,0.03765071,98.27493396],[4.53676526,0.03764896,98.27548612],[4.53676482,0.03764721,98.27604004],[4.53676438,0.03764547,98.27659573],[4.53676394,0.03764372,98.27715317],[4.5367635,0.03764197,98.27771235],[4.53676306,0.03764022,98.27827329],[4.53676262,0.03763848,98.27883596],[4.53676218,0.03763673,98.27940038],[4.53676174,0.03763498,98.27996652],[4.5367613,0.03763323,98.2805344],[4.53676087,0.03763148,98.281104],[4.53676043,0.03762974,98.28167533],[4.53675999,0.03762799,98.28224837],[4.53675955,0.03762624,98.28282312],[4.53675911,0.03762449,98.28339958],[4.53675867,0.03762274,98.28397775],[4.53675823,0.03762099,98.28455761],[4.53675779,0.03761925,98.28513918],[4.53675735,0.0376175,98.28572243],[4.53675691,0.03761575,98.28630738],[4.53675647,0.037614,98.286894],[4.53675603,0.03761225,98.28748231],[4.53675559,0.0376105,98.28807229],[4.53675516,0.03760876,98.28866395],[4.53675472,0.03760701,98.28925727],[4.53675428,0.03760526,98.28985225],[4.53675384,0.03760351,98.29044889],[4.5367534,0.03760176,98.29104719],[4.53675296,0.03760001,98.29164714],[4.53675252,0.03759826,98.29224873],[4.53675208,0.03759652,98.29285197],[4.53675165,0.03759477,98.29345684],[4.53675121,0.03759302,98.29406335],[4.53675077,0.03759127,98.29467149],[4.53675033,0.03758952,98.29528126],[4.53674989,0.03758777,98.29589264],[4.53674945,0.03758602,98.29650564],[4.53674902,0.03758427,98.29712026],[4.53674858,0.03758253,98.29773647],[4.53674814,0.03758078,98.29835429],[4.5367477,0.03757903,98.29897368],[4.53674726,0.03757728,98.29959466],[4.53674682,0.03757553,98.3002172],[4.53674639,0.03757378,98.30084131],[4.53674595,0.03757203,98.30146697],[4.53674551,0.03757028,98.30209417],[4.53674507,0.03756853,98.30272291],[4.53674463,0.03756679,98.30335318],[4.5367442,0.03756504,98.30398496],[4.53674376,0.03756329,98.30461825],[4.53674332,0.03756154,98.30525305],[4.53674288,0.03755979,98.30588934],[4.53674244,0.03755804,98.30652711],[4.53674201,0.03755629,98.30716636],[4.53674157,0.03755454,98.30780707],[4.53674113,0.03755279,98.30844925],[4.53674069,0.03755104,98.30909287],[4.53674026,0.0375493,98.30973794],[4.53673982,0.03754755,98.31038444],[4.53673938,0.0375458,98.31103236],[4.53673894,0.03754405,98.3116817],[4.5367385,0.0375423,98.31233245],[4.53673807,0.03754055,98.3129846],[4.53673763,0.0375388,98.31363813],[4.53673719,0.03753705,98.31429305],[4.53673675,0.0375353,98.31494934],[4.53673632,0.03753355,98.31560699],[4.53673588,0.03753181,98.316266],[4.53673544,0.03753006,98.31692636],[4.536735,0.03752831,98.31758805],[4.53673457,0.03752656,98.31825108],[4.53673413,0.03752481,98.31891542],[4.53673369,0.03752306,98.31958108],[4.53673325,0.03752131,98.32024804],[4.53673282,0.03751956,98.3209163],[4.53673238,0.03751781,98.32158584],[4.53673194,0.03751606,98.32225666],[4.5367315,0.03751432,98.32292875],[4.53673107,0.03751257,98.3236021],[4.53673063,0.03751082,98.3242767],[4.53673019,0.03750907,98.32495254],[4.53672975,0.03750732,98.32562962],[4.53672932,0.03750557,98.32630792],[4.53672888,0.03750382,98.32698744],[4.53672844,0.03750207,98.32766817],[4.536728,0.03750032,98.3283501],[4.53672757,0.03749857,98.32903321],[4.53672713,0.03749682,98.32971751],[4.53672669,0.03749508,98.33040298],[4.53672625,0.03749333,98.33108962],[4.53672582,0.03749158,98.33177741],[4.53672538,0.03748983,98.33246635],[4.53672494,0.03748808,98.33315643],[4.5367245,0.03748633,98.33384764],[4.53672407,0.03748458,98.33453996],[4.53672363,0.03748283,98.3352334],[4.53672319,0.03748108,98.33592794],[4.53672275,0.03747933,98.33662358],[4.53672232,0.03747759,98.3373203],[4.53672188,0.03747584,98.3380181],[4.53672144,0.03747409,98.33871697],[4.536721,0.03747234,98.3394169],[4.53672057,0.03747059,98.34011787],[4.53672013,0.03746884,98.34081989],[4.53671969,0.03746709,98.34152295],[4.53671925,0.03746534,98.34222702],[4.53671881,0.03746359,98.34293212],[4.53671838,0.03746184,98.34363822],[4.53671794,0.0374601,98.34434531],[4.5367175,0.03745835,98.3450534],[4.53671706,0.0374566,98.34576247],[4.53671663,0.03745485,98.34647251],[4.53671619,0.0374531,98.34718351],[4.53671575,0.03745135,98.34789547],[4.53671531,0.0374496,98.34860837],[4.53671487,0.03744785,98.34932221],[4.53671444,0.0374461,98.35003698],[4.536714,0.03744436,98.35075267],[4.53671356,0.03744261,98.35146927],[4.53671312,0.03744086,98.35218677],[4.53671268,0.03743911,98.35290517],[4.53671224,0.03743736,98.35362445],[4.53671181,0.03743561,98.3543446],[4.53671137,0.03743386,98.35506562],[4.53671093,0.03743211,98.3557875],[4.53671049,0.03743036,98.35651024],[4.53671005,0.03742862,98.35723381],[4.53670962,0.03742687,98.35795821],[4.53670918,0.03742512,98.35868344],[4.53670874,0.03742337,98.35940949],[4.5367083,0.03742162,98.36013634],[4.53670786,0.03741987,98.36086399],[4.53670742,0.03741812,98.36159242],[4.53670698,0.03741637,98.36232164],[4.53670655,0.03741463,98.36305163],[4.53670611,0.03741288,98.36378239],[4.53670567,0.03741113,98.3645139],[4.53670523,0.03740938,98.36524615],[4.53670479,0.03740763,98.36597915],[4.53670435,0.03740588,98.36671287],[4.53670391,0.03740413,98.36744731],[4.53670347,0.03740238,98.36818246],[4.53670303,0.03740064,98.36891832],[4.5367026,0.03739889,98.36965487],[4.53670216,0.03739714,98.37039211],[4.53670172,0.03739539,98.37113003],[4.53670128,0.03739364,98.37186862],[4.53670084,0.03739189,98.37260786],[4.5367004,0.03739014,98.37334777],[4.53669996,0.0373884,98.37408833],[4.53669952,0.03738665,98.37482954],[4.53669908,0.0373849,98.3755714],[4.53669864,0.03738315,98.37631391],[4.5366982,0.0373814,98.37705705],[4.53669776,0.03737965,98.37780083],[4.53669732,0.0373779,98.37854524],[4.53669688,0.03737616,98.37929028],[4.53669644,0.03737441,98.38003595],[4.536696,0.03737266,98.38078223],[4.53669556,0.03737091,98.38152914],[4.53669512,0.03736916,98.38227666],[4.53669468,0.03736741,98.38302479],[4.53669424,0.03736567,98.38377352],[4.5366938,0.03736391,98.38452286],[4.53669336,0.03736217,98.3852728],[4.53669292,0.03736042,98.38602334],[4.53669248,0.03735867,98.38677446],[4.53669204,0.03735692,98.38752618],[4.5366916,0.03735517,98.38827848],[4.53669116,0.03735342,98.38903137],[4.53669072,0.03735168,98.38978483],[4.53669028,0.03734993,98.39053886],[4.53668984,0.03734818,98.39129347],[4.5366894,0.03734643,98.39204864],[4.53668896,0.03734468,98.39280438],[4.53668852,0.03734293,98.39356068],[4.53668808,0.03734119,98.39431754],[4.53668764,0.03733944,98.39507495],[4.53668719,0.03733769,98.3958329],[4.53668675,0.03733594,98.39659141],[4.53668631,0.03733419,98.39735046],[4.53668587,0.03733244,98.39811004],[4.53668543,0.0373307,98.39887017],[4.53668499,0.03732895,98.39963082],[4.53668455,0.0373272,98.40039201],[4.53668411,0.03732545,98.40115372],[4.53668367,0.0373237,98.40191595],[4.53668323,0.03732196,98.4026787],[4.53668279,0.03732021,98.40344197],[4.53668235,0.03731846,98.40420574],[4.5366819,0.03731671,98.40497003],[4.53668146,0.03731496,98.40573482],[4.53668102,0.03731321,98.40650011],[4.53668058,0.03731147,98.4072659],[4.53668014,0.03730972,98.40803218],[4.5366797,0.03730797,98.40879895],[4.53667926,0.03730622,98.40956622],[4.53667882,0.03730447,98.41033396],[4.53667838,0.03730273,98.41110219],[4.53667793,0.03730098,98.41187089],[4.53667749,0.03729923,98.41264007],[4.53667705,0.03729748,98.41340972],[4.53667661,0.03729573,98.41417984],[4.53667617,0.03729399,98.41495041],[4.53667573,0.03729224,98.41572145],[4.53667529,0.03729049,98.41649295],[4.53667485,0.03728874,98.4172649],[4.53667441,0.03728699,98.4180373],[4.53667396,0.03728524,98.41881015],[4.53667352,0.0372835,98.41958344],[4.53667308,0.03728175,98.42035716],[4.53667264,0.03728,98.42113133],[4.5366722,0.03727825,98.42190593],[4.53667176,0.0372765,98.42268096],[4.53667132,0.03727476,98.42345641],[4.53667088,0.03727301,98.42423229],[4.53667044,0.03727126,98.42500859],[4.53666999,0.03726951,98.4257853],[4.53666955,0.03726776,98.42656243],[4.53666911,0.03726602,98.42733996],[4.53666867,0.03726427,98.4281179],[4.53666823,0.03726252,98.42889625],[4.53666779,0.03726077,98.42967499],[4.53666735,0.03725902,98.43045413],[4.53666691,0.03725727,98.43123366],[4.53666647,0.03725553,98.43201358],[4.53666602,0.03725378,98.43279388],[4.53666558,0.03725203,98.43357457],[4.53666514,0.03725028,98.43435563],[4.5366647,0.03724853,98.43513707],[4.53666426,0.03724679,98.43591889],[4.53666382,0.03724504,98.43670107],[4.53666338,0.03724329,98.43748361],[4.53666294,0.03724154,98.43826652],[4.5366625,0.03723979,98.43904978],[4.53666206,0.03723805,98.4398334],[4.53666162,0.0372363,98.44061737],[4.53666118,0.03723455,98.44140168],[4.53666073,0.0372328,98.44218634],[4.53666029,0.03723105,98.44297134],[4.53665985,0.0372293,98.44375668],[4.53665941,0.03722756,98.44454235],[4.53665897,0.03722581,98.44532835],[4.53665853,0.03722406,98.44611468],[4.53665809,0.03722231,98.44690133],[4.53665765,0.03722056,98.44768829],[4.53665721,0.03721882,98.44847558],[4.53665677,0.03721707,98.44926317],[4.53665633,0.03721532,98.45005108],[4.53665589,0.03721357,98.45083929],[4.53665545,0.03721182,98.4516278],[4.53665501,0.03721007,98.4524166],[4.53665457,0.03720833,98.45320571],[4.53665426,0.0372071,98.45376039],[4.5366562,0.0372066,98.4590996],[4.53665651,0.03720783,98.45853248],[4.53665694,0.03720958,98.45772515],[4.53665737,0.03721134,98.45691751],[4.5366578,0.03721309,98.45610958],[4.53665823,0.03721484,98.45530139],[4.53665866,0.03721659,98.45449294],[4.53665909,0.03721834,98.45368427],[4.53665952,0.03722009,98.45287538],[4.53665995,0.03722184,98.45206631],[4.53666038,0.03722359,98.45125707],[4.53666081,0.03722534,98.45044769],[4.53666124,0.03722709,98.44963817],[4.53666167,0.03722884,98.44882855],[4.5366621,0.0372306,98.44801885],[4.53666253,0.03723235,98.44720908],[4.53666296,0.0372341,98.44639927],[4.53666338,0.03723585,98.44558944],[4.53666381,0.0372376,98.4447796],[4.53666424,0.03723935,98.44396979],[4.53666467,0.0372411,98.44316002],[4.5366651,0.03724285,98.44235032],[4.53666553,0.0372446,98.4415407],[4.53666596,0.03724635,98.44073118],[4.53666639,0.03724811,98.4399218],[4.53666682,0.03724986,98.43911257],[4.53666725,0.03725161,98.43830351],[4.53666768,0.03725336,98.43749464],[4.53666811,0.03725511,98.43668599],[4.53666854,0.03725686,98.43587758],[4.53666896,0.03725861,98.43506943],[4.53666939,0.03726036,98.43426156],[4.53666982,0.03726211,98.433454],[4.53667025,0.03726386,98.43264677],[4.53667068,0.03726562,98.43183988],[4.53667111,0.03726737,98.43103337],[4.53667154,0.03726912,98.43022726],[4.53667197,0.03727087,98.42942156],[4.5366724,0.03727262,98.4286163],[4.53667283,0.03727437,98.4278115],[4.53667326,0.03727612,98.42700719],[4.53667369,0.03727787,98.42620339],[4.53667412,0.03727962,98.42540012],[4.53667455,0.03728138,98.4245974],[4.53667498,0.03728313,98.42379526],[4.53667541,0.03728488,98.42299372],[4.53667584,0.03728663,98.4221928],[4.53667627,0.03728838,98.42139253],[4.5366767,0.03729013,98.42059293],[4.53667713,0.03729188,98.41979401],[4.53667756,0.03729363,98.41899581],[4.53667799,0.03729538,98.41819835],[4.53667842,0.03729713,98.41740165],[4.53667885,0.03729888,98.41660573],[4.53667929,0.03730063,98.41581061],[4.53667972,0.03730238,98.41501633],[4.53668015,0.03730413,98.4142229],[4.53668058,0.03730589,98.41343034],[4.53668101,0.03730764,98.41263869],[4.53668144,0.03730939,98.41184795],[4.53668188,0.03731114,98.41105816],[4.53668231,0.03731289,98.41026934],[4.53668274,0.03731464,98.40948151],[4.53668317,0.03731639,98.40869469],[4.53668361,0.03731814,98.40790891],[4.53668404,0.03731989,98.4071242],[4.53668447,0.03732164,98.40634056],[4.53668491,0.03732339,98.40555804],[4.53668534,0.03732514,98.40477664],[4.53668577,0.03732689,98.4039964],[4.53668621,0.03732864,98.40321733],[4.53668664,0.03733039,98.40243947],[4.53668708,0.03733214,98.40166282],[4.53668751,0.03733389,98.40088743],[4.53668795,0.03733564,98.4001133],[4.53668838,0.03733739,98.39934046],[4.53668882,0.03733914,98.39856894],[4.53668925,0.03734089,98.39779876],[4.53668969,0.03734264,98.39702994],[4.53669012,0.03734438,98.3962625],[4.53669056,0.03734613,98.39549647],[4.536691,0.03734788,98.39473186],[4.53669144,0.03734963,98.39396863],[4.53669187,0.03735138,98.39320674],[4.53669231,0.03735313,98.39244614],[4.53669275,0.03735488,98.39168678],[4.53669319,0.03735663,98.39092861],[4.53669362,0.03735838,98.39017159],[4.53669406,0.03736013,98.38941567],[4.5366945,0.03736188,98.3886608],[4.53669494,0.03736362,98.38790692],[4.53669538,0.03736538,98.38715401],[4.53669582,0.03736712,98.386402],[4.53669626,0.03736887,98.38565084],[4.53669669,0.03737062,98.38490049],[4.53669713,0.03737237,98.38415091],[4.53669757,0.03737412,98.38340203],[4.53669801,0.03737587,98.38265382],[4.53669845,0.03737762,98.38190623],[4.53669889,0.03737937,98.38115919],[4.53669933,0.03738111,98.38041268],[4.53669976,0.03738286,98.37966663],[4.5367002,0.03738461,98.37892101],[4.53670064,0.03738636,98.37817575],[4.53670108,0.03738811,98.37743081],[4.53670152,0.03738986,98.37668615],[4.53670195,0.03739161,98.37594171],[4.53670239,0.03739336,98.37519749],[4.53670283,0.03739511,98.37445354],[4.53670327,0.03739685,98.37370988],[4.5367037,0.0373986,98.37296658],[4.53670414,0.03740035,98.37222367],[4.53670458,0.0374021,98.3714812],[4.53670501,0.03740385,98.37073922],[4.53670545,0.0374056,98.36999777],[4.53670589,0.03740735,98.3692569],[4.53670632,0.0374091,98.36851665],[4.53670676,0.03741085,98.36777708],[4.5367072,0.0374126,98.36703821],[4.53670763,0.03741435,98.36630011],[4.53670807,0.0374161,98.36556281],[4.5367085,0.03741785,98.36482637],[4.53670894,0.0374196,98.36409083],[4.53670938,0.03742134,98.36335623],[4.53670981,0.03742309,98.36262262],[4.53671025,0.03742484,98.36189005],[4.53671068,0.03742659,98.36115856],[4.53671112,0.03742834,98.36042819],[4.53671156,0.03743009,98.35969901],[4.53671199,0.03743184,98.35897104],[4.53671243,0.03743359,98.35824434],[4.53671287,0.03743534,98.35751895],[4.5367133,0.03743709,98.35679491],[4.53671374,0.03743884,98.35607228],[4.53671418,0.03744059,98.3553511],[4.53671462,0.03744234,98.35463142],[4.53671505,0.03744408,98.35391328],[4.53671549,0.03744583,98.35319672],[4.53671593,0.03744758,98.35248179],[4.53671637,0.03744933,98.35176855],[4.53671681,0.03745108,98.35105702],[4.53671724,0.03745283,98.35034727],[4.53671768,0.03745458,98.34963933],[4.53671812,0.03745633,98.34893325],[4.53671856,0.03745807,98.34822908],[4.536719,0.03745982,98.34752686],[4.53671944,0.03746157,98.34682663],[4.53671988,0.03746332,98.34612845],[4.53672032,0.03746507,98.34543236],[4.53672077,0.03746682,98.34473839],[4.53672121,0.03746856,98.34404661],[4.53672165,0.03747031,98.34335705],[4.53672209,0.03747206,98.34266976],[4.53672253,0.03747381,98.34198477],[4.53672298,0.03747555,98.34130215],[4.53672342,0.0374773,98.34062193],[4.53672386,0.03747905,98.33994416],[4.53672431,0.0374808,98.33926888],[4.53672475,0.03748254,98.33859614],[4.5367252,0.03748429,98.33792598],[4.53672565,0.03748604,98.33725842],[4.53672609,0.03748778,98.33659335],[4.53672654,0.03748953,98.33593066],[4.53672699,0.03749128,98.33527022],[4.53672743,0.03749302,98.33461189],[4.53672788,0.03749477,98.33395555],[4.53672833,0.03749652,98.33330107],[4.53672878,0.03749826,98.33264833],[4.53672923,0.03750001,98.33199719],[4.53672968,0.03750176,98.33134754],[4.53673012,0.0375035,98.33069924],[4.53673057,0.03750525,98.33005216],[4.53673102,0.03750699,98.32940619],[4.53673147,0.03750874,98.32876119],[4.53673192,0.03751049,98.32811703],[4.53673237,0.03751223,98.3274736],[4.53673282,0.03751398,98.32683076],[4.53673326,0.03751572,98.32618839],[4.53673371,0.03751747,98.32554637],[4.53673416,0.03751922,98.32490456],[4.5367346,0.03752096,98.32426284],[4.53673505,0.03752271,98.32362109],[4.5367355,0.03752446,98.32297919],[4.53673594,0.03752621,98.322337],[4.53673639,0.03752795,98.3216944],[4.53673683,0.0375297,98.32105127],[4.53673727,0.03753145,98.32040748],[4.53673772,0.03753319,98.31976291],[4.53673816,0.03753494,98.31911744],[4.5367386,0.03753669,98.31847094],[4.53673904,0.03753844,98.31782329],[4.53673948,0.03754019,98.31717436],[4.53673992,0.03754194,98.31652404],[4.53674036,0.03754369,98.31587219],[4.53674079,0.03754543,98.3152187],[4.53674123,0.03754718,98.31456344],[4.53674166,0.03754893,98.3139063],[4.5367421,0.03755068,98.31324715],[4.53674253,0.03755243,98.31258587],[4.53674296,0.03755418,98.31192253],[4.53674339,0.03755594,98.31125736],[4.53674382,0.03755769,98.31059062],[4.53674425,0.03755944,98.30992253],[4.53674468,0.03756119,98.30925336],[4.5367451,0.03756294,98.30858334],[4.53674553,0.03756469,98.30791271],[4.53674595,0.03756645,98.30724172],[4.53674638,0.0375682,98.30657062],[4.5367468,0.03756995,98.30589964],[4.53674723,0.0375717,98.30522902],[4.53674765,0.03757346,98.30455901],[4.53674807,0.03757521,98.30388986],[4.5367485,0.03757696,98.30322179],[4.53674892,0.03757871,98.30255506],[4.53674934,0.03758047,98.3018899],[4.53674976,0.03758222,98.30122655],[4.53675019,0.03758397,98.30056525],[4.53675061,0.03758572,98.29990624],[4.53675104,0.03758748,98.29924977],[4.53675146,0.03758923,98.29859606],[4.53675189,0.03759098,98.29794535],[4.53675231,0.03759273,98.29729787],[4.53675274,0.03759449,98.29665386],[4.53675316,0.03759624,98.29601355],[4.53675359,0.03759799,98.29537718],[4.53675402,0.03759974,98.29474496],[4.53675445,0.03760149,98.29411715],[4.53675488,0.03760324,98.29349396],[4.53675531,0.03760499,98.29287562],[4.53675574,0.03760674,98.29226238],[4.53675618,0.03760849,98.29165445],[4.53675661,0.03761024,98.29105207],[4.53675705,0.03761199,98.29045547],[4.53675749,0.03761374,98.28986488],[4.53675793,0.03761549,98.28928052],[4.53675837,0.03761723,98.2887026],[4.53675882,0.03761898,98.2881309],[4.53675926,0.03762073,98.28756476],[4.53675971,0.03762247,98.2870035],[4.53676015,0.03762422,98.28644643],[4.5367606,0.03762597,98.28589288],[4.53676105,0.03762771,98.28534217],[4.5367615,0.03762946,98.28479363],[4.53676195,0.0376312,98.28424659],[4.5367624,0.03763295,98.28370072],[4.53676284,0.0376347,98.28315602],[4.53676329,0.03763644,98.28261249],[4.53676374,0.03763819,98.28207016],[4.53676419,0.03763993,98.28152902],[4.53676463,0.03764168,98.28098908],[4.53676508,0.03764342,98.28045037],[4.53676553,0.03764517,98.27991289],[4.53676598,0.03764692,98.27937665],[4.53676642,0.03764866,98.27884165],[4.53676687,0.03765041,98.27830792],[4.53676732,0.03765215,98.27777546],[4.53676777,0.0376539,98.27724428],[4.53676821,0.03765565,98.27671439],[4.53676866,0.03765739,98.2761858],[4.53676911,0.03765914,98.27565853],[4.53676955,0.03766088,98.27513258],[4.53677,0.03766263,98.27460796],[4.53677045,0.03766437,98.27408469],[4.53677089,0.03766612,98.27356277],[4.53677134,0.03766787,98.27304222],[4.53677179,0.03766961,98.27252304],[4.53677223,0.03767136,98.27200524],[4.53677268,0.0376731,98.27148884],[4.53677312,0.03767485,98.27097385],[4.53677357,0.03767659,98.27046027],[4.53677402,0.03767834,98.26994812],[4.53677446,0.03768009,98.26943741],[4.53677491,0.03768183,98.26892814],[4.53677536,0.03768358,98.26842033],[4.5367758,0.03768532,98.26791398],[4.53677625,0.03768707,98.26740912],[4.53677669,0.03768881,98.26690574],[4.53677714,0.03769056,98.26640386],[4.53677759,0.03769231,98.26590349],[4.53677803,0.03769405,98.26540463],[4.53677848,0.0376958,98.26490731],[4.53677892,0.03769754,98.26441152],[4.53677937,0.03769929,98.26391728],[4.53677982,0.03770103,98.2634246],[4.53678026,0.03770278,98.26293349],[4.53678071,0.03770452,98.26244396],[4.53678115,0.03770627,98.26195602],[4.5367816,0.03770801,98.26146967],[4.53678205,0.03770976,98.26098497],[4.53678249,0.0377115,98.26050199],[4.53678294,0.03771325,98.2600208],[4.53678338,0.037715,98.25954148],[4.53678383,0.03771674,98.2590641],[4.53678428,0.03771849,98.25858874],[4.53678472,0.03772023,98.25811547],[4.53678517,0.03772198,98.25764436],[4.53678562,0.03772372,98.2571755],[4.53678607,0.03772547,98.25670896],[4.53678651,0.03772721,98.2562448],[4.53678696,0.03772895,98.25578311],[4.53678741,0.0377307,98.25532396],[4.53678786,0.03773244,98.25486742],[4.53678831,0.03773419,98.25441357],[4.53678876,0.03773593,98.25396249],[4.53678921,0.03773768,98.25351423],[4.53678966,0.03773942,98.25306889],[4.53679011,0.03774116,98.25262647],[4.53679056,0.03774291,98.25218695],[4.53679101,0.03774465,98.2517503],[4.53679147,0.03774639,98.25131647],[4.53679192,0.03774814,98.25088545],[4.53679237,0.03774988,98.25045719],[4.53679283,0.03775162,98.25003167],[4.53679328,0.03775336,98.24960885],[4.53679373,0.03775511,98.2491887],[4.53679419,0.03775685,98.24877118],[4.53679464,0.03775859,98.24835627],[4.5367951,0.03776033,98.24794393],[4.53679556,0.03776208,98.24753413],[4.53679601,0.03776382,98.24712684],[4.53679647,0.03776556,98.24672203],[4.53679693,0.0377673,98.24631966],[4.53679738,0.03776904,98.2459197],[4.53679784,0.03777078,98.24552212],[4.5367983,0.03777253,98.24512688],[4.53679876,0.03777427,98.24473397],[4.53679921,0.03777601,98.24434333],[4.53679967,0.03777775,98.24395495],[4.53680013,0.03777949,98.24356879],[4.53680059,0.03778123,98.24318482],[4.53680105,0.03778297,98.24280302],[4.53680151,0.03778471,98.24242337],[4.53680197,0.03778645,98.24204587],[4.53680243,0.03778819,98.24167049],[4.53680289,0.03778994,98.24129722],[4.53680335,0.03779168,98.24092603],[4.53680381,0.03779342,98.24055693],[4.53680427,0.03779516,98.24018988],[4.53680473,0.0377969,98.23982487],[4.53680519,0.03779864,98.23946189],[4.53680565,0.03780038,98.23910092],[4.53680611,0.03780212,98.23874195],[4.53680658,0.03780386,98.23838495],[4.53680704,0.0378056,98.23802991],[4.5368075,0.03780734,98.23767682],[4.53680796,0.03780908,98.23732565],[4.53680842,0.03781082,98.2369764],[4.53680888,0.03781256,98.23662905],[4.53680935,0.0378143,98.23628357],[4.53680981,0.03781604,98.23593996],[4.53681027,0.03781778,98.2355982],[4.53681073,0.03781952,98.23525826],[4.53681119,0.03782126,98.23492015],[4.53681166,0.037823,98.23458383],[4.53681212,0.03782473,98.23424929],[4.53681258,0.03782647,98.23391652],[4.53681304,0.03782821,98.23358549],[4.53681351,0.03782995,98.2332562],[4.53681397,0.03783169,98.23292863],[4.53681443,0.03783343,98.23260276],[4.5368149,0.03783517,98.23227857],[4.53681536,0.03783691,98.23195604],[4.53681582,0.03783865,98.23163517],[4.53681628,0.03784039,98.23131593],[4.53681675,0.03784213,98.2309983],[4.53681721,0.03784387,98.23068228],[4.53681767,0.03784561,98.23036783],[4.53681814,0.03784735,98.23005495],[4.5368186,0.03784908,98.22974359],[4.53681906,0.03785082,98.2294337],[4.53681952,0.03785256,98.22912523],[4.53681999,0.0378543,98.22881814],[4.53682045,0.03785604,98.22851237],[4.5368209,0.03785774,98.22820785],[4.53682136,0.03785948,98.22790451],[4.53682182,0.03786122,98.22760229],[4.53682229,0.03786296,98.22730113],[4.53682275,0.0378647,98.22700095],[4.53682321,0.03786644,98.22670169],[4.53682367,0.03786818,98.22640329],[4.53682413,0.03786992,98.22610567],[4.53682459,0.03787166,98.22580878],[4.53682505,0.0378734,98.22551253],[4.53682551,0.03787514,98.22521687],[4.53682597,0.03787688,98.22492173],[4.53682643,0.03787862,98.22462704],[4.53682689,0.03788036,98.22433273],[4.53682735,0.0378821,98.22403873],[4.53682781,0.03788384,98.22374499],[4.53682827,0.03788559,98.22345141],[4.53682872,0.03788733,98.22315799],[4.53682918,0.03788907,98.22286561],[4.53682964,0.03789081,98.22257609],[4.5368301,0.03789255,98.2222913],[4.53683056,0.03789429,98.22201311],[4.53683102,0.03789603,98.22174338],[4.53683148,0.03789777,98.22148399],[4.53683195,0.03789951,98.22123681],[4.53683243,0.03790125,98.22100367],[4.53683291,0.03790298,98.22078485],[4.53683339,0.03790472,98.22057912],[4.53683387,0.03790645,98.22038517],[4.53683436,0.03790818,98.2202017],[4.53683485,0.03790991,98.22002741],[4.53683535,0.03791165,98.21986097],[4.53683584,0.03791338,98.21970108],[4.53683634,0.03791511,98.21954643],[4.53683683,0.03791684,98.21939569],[4.53683733,0.03791857,98.21924756],[4.53683783,0.0379203,98.2191007],[4.53683832,0.03792203,98.21895383],[4.53683882,0.03792376,98.21880637],[4.53683932,0.03792549,98.21865845],[4.53683981,0.03792722,98.21851027],[4.5368403,0.03792895,98.21836198],[4.5368408,0.03793068,98.21821377],[4.53684129,0.03793241,98.21806581],[4.53684178,0.03793414,98.21791828],[4.53684227,0.03793587,98.21777135],[4.53684276,0.03793761,98.2176252],[4.53684325,0.03793934,98.21748001],[4.53684374,0.03794107,98.21733596],[4.53684423,0.0379428,98.21719319],[4.53684472,0.03794453,98.21705187],[4.53684521,0.03794627,98.21691215],[4.5368457,0.037948,98.21677417],[4.53684619,0.03794973,98.2166381],[4.53684668,0.03795146,98.21650407],[4.53684717,0.03795319,98.21637225],[4.53684766,0.03795492,98.21624275],[4.53684816,0.03795666,98.21611554],[4.53684865,0.03795839,98.21599053],[4.53684914,0.03796012,98.21586765],[4.53684963,0.03796185,98.21574683],[4.53685012,0.03796358,98.21562798],[4.53685061,0.03796531,98.21551104],[4.5368511,0.03796704,98.21539592],[4.5368516,0.03796877,98.21528254],[4.53685209,0.03797051,98.21517083],[4.53685258,0.03797224,98.21506072],[4.53685307,0.03797397,98.21495211],[4.53685356,0.0379757,98.21484495],[4.53685406,0.03797743,98.21473913],[4.53685455,0.03797916,98.2146346],[4.53685504,0.03798089,98.21453126],[4.53685553,0.03798262,98.21442904],[4.53685602,0.03798435,98.21432786],[4.53685652,0.03798608,98.21422764],[4.53685701,0.03798782,98.21412831],[4.5368575,0.03798955,98.21402977],[4.53685799,0.03799128,98.21393195],[4.53685848,0.03799301,98.21383477],[4.53685897,0.03799474,98.21373815],[4.53685946,0.03799647,98.21364201],[4.53685995,0.0379982,98.21354626],[4.53686045,0.03799994,98.21345082],[4.53686094,0.03800167,98.21335562],[4.53686143,0.0380034,98.21326056],[4.53686191,0.03800513,98.21316558],[4.5368624,0.03800686,98.21307057],[4.53686289,0.03800859,98.21297547],[4.53686338,0.03801033,98.21288019],[4.53686387,0.03801206,98.21278483],[4.53686436,0.03801379,98.21268967],[4.53686485,0.03801552,98.21259499],[4.53686533,0.03801725,98.21250108],[4.53686582,0.03801899,98.21240824],[4.53686631,0.03802072,98.21231674],[4.5368668,0.03802245,98.2122269],[4.53686729,0.03802418,98.21213899],[4.53686778,0.03802591,98.21205332],[4.53686827,0.03802765,98.21197019],[4.53686876,0.03802938,98.21188989],[4.53686925,0.03803111,98.21181272],[4.53686974,0.03803284,98.21173899],[4.53687024,0.03803457,98.211669],[4.53687073,0.0380363,98.21160305],[4.53687123,0.03803803,98.21154144],[4.53687172,0.03803976,98.21148449],[4.53687222,0.03804149,98.21143251],[4.53687272,0.03804322,98.21138579],[4.53687323,0.03804494,98.21134465],[4.53687373,0.03804667,98.21130902],[4.53687424,0.0380484,98.21127849],[4.53687474,0.03805012,98.21125265],[4.53687525,0.03805185,98.21123106],[4.53687576,0.03805358,98.21121329],[4.53687627,0.0380553,98.21119892],[4.53687678,0.03805703,98.2111875],[4.53687729,0.03805875,98.21117861],[4.53687781,0.03806048,98.21117181],[4.53687832,0.0380622,98.21116666],[4.53687883,0.03806393,98.21116271],[4.53687934,0.03806565,98.21115953],[4.53687986,0.03806737,98.21115668],[4.53688037,0.0380691,98.2111537],[4.53688088,0.03807082,98.21115015],[4.5368814,0.03807255,98.21114558],[4.53688191,0.03807427,98.21113954],[4.53688242,0.038076,98.21113158],[4.53688293,0.03807772,98.21112123],[4.53688344,0.03807945,98.21110804],[4.53688395,0.03808117,98.21109156],[4.53688446,0.0380829,98.21107134],[4.53688496,0.03808463,98.21104756],[4.53688547,0.03808635,98.21102101],[4.53688597,0.03808808,98.2109925],[4.53688648,0.03808981,98.21096286],[4.53688698,0.03809154,98.21093291],[4.53688749,0.03809326,98.21090348],[4.53688799,0.03809499,98.21087541],[4.5368885,0.03809672,98.21084954],[4.53688901,0.03809844,98.2108267],[4.53688952,0.03810017,98.21080775],[4.53689003,0.03810189,98.21079353],[4.53689054,0.03810362,98.2107849],[4.53689105,0.03810534,98.21078271],[4.53689157,0.03810707,98.21078783],[4.53689209,0.03810879,98.21080112],[4.53689261,0.03811051,98.21082346],[4.53689313,0.03811222,98.21085568],[4.53689366,0.03811394,98.21089791],[4.53689419,0.03811566,98.21094955],[4.53689473,0.03811738,98.21100995],[4.53689526,0.03811909,98.21107849],[4.5368958,0.03812081,98.21115452],[4.53689635,0.03812253,98.21123739],[4.53689689,0.03812424,98.21132647],[4.53689744,0.03812596,98.21142108],[4.53689798,0.03812767,98.2115206],[4.53689853,0.03812938,98.21162435],[4.53689908,0.0381311,98.21173168],[4.53689963,0.03813281,98.21184192],[4.53690019,0.03813452,98.21195441],[4.53690074,0.03813624,98.21206849],[4.53690129,0.03813795,98.21218347],[4.53690184,0.03813966,98.21229869],[4.5369024,0.03814138,98.21241347],[4.53690295,0.03814309,98.21252713],[4.5369035,0.0381448,98.21263898],[4.53690405,0.03814652,98.21274846],[4.53690461,0.03814823,98.21285553],[4.53690516,0.03814994,98.21296025],[4.53690571,0.03815166,98.21306269],[4.53690626,0.03815337,98.21316293],[4.53690681,0.03815508,98.21326103],[4.53690736,0.0381568,98.21335708],[4.5369079,0.03815851,98.21345114],[4.53690845,0.03816023,98.21354328],[4.536909,0.03816194,98.2136336],[4.53690955,0.03816366,98.21372215],[4.53691009,0.03816537,98.21380901],[4.53691064,0.03816709,98.21389426],[4.53691119,0.0381688,98.21397798],[4.53691173,0.03817052,98.21406025],[4.53691228,0.03817223,98.21414113],[4.53691283,0.03817395,98.21422071],[4.53691337,0.03817566,98.21429907],[4.53691392,0.03817738,98.21437628],[4.53691446,0.03817909,98.21445243],[4.53691501,0.03818081,98.21452759],[4.53691555,0.03818252,98.21460184],[4.5369161,0.03818424,98.21467527],[4.53691665,0.03818596,98.21474795],[4.53691719,0.03818767,98.21481997],[4.53691774,0.03818939,98.21489141],[4.53691828,0.0381911,98.21496235],[4.53691883,0.03819282,98.21503287],[4.53691938,0.03819453,98.21510306],[4.53691992,0.03819625,98.215173],[4.53692047,0.03819796,98.21524278],[4.53692102,0.03819968,98.21531247],[4.53691888,0.03820036,98.20806882]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1000400","id":1,"type":"shoulder","predecessorId":1,"sOffset":53.8593184394}},{"geometry":{"coordinates":[[[4.53692102,0.03819968,98.21531247],[4.53692047,0.03819796,98.21524278],[4.53691992,0.03819625,98.215173],[4.53691938,0.03819453,98.21510306],[4.53691883,0.03819282,98.21503287],[4.53691828,0.0381911,98.21496235],[4.53691774,0.03818939,98.21489141],[4.53691719,0.03818767,98.21481997],[4.53691665,0.03818596,98.21474795],[4.5369161,0.03818424,98.21467527],[4.53691555,0.03818252,98.21460184],[4.53691501,0.03818081,98.21452759],[4.53691446,0.03817909,98.21445243],[4.53691392,0.03817738,98.21437628],[4.53691337,0.03817566,98.21429907],[4.53691283,0.03817395,98.21422071],[4.53691228,0.03817223,98.21414113],[4.53691173,0.03817052,98.21406025],[4.53691119,0.0381688,98.21397798],[4.53691064,0.03816709,98.21389426],[4.53691009,0.03816537,98.21380901],[4.53690955,0.03816366,98.21372215],[4.536909,0.03816194,98.2136336],[4.53690845,0.03816023,98.21354328],[4.5369079,0.03815851,98.21345114],[4.53690736,0.0381568,98.21335708],[4.53690681,0.03815508,98.21326103],[4.53690626,0.03815337,98.21316293],[4.53690571,0.03815166,98.21306269],[4.53690516,0.03814994,98.21296025],[4.53690461,0.03814823,98.21285553],[4.53690405,0.03814652,98.21274846],[4.5369035,0.0381448,98.21263898],[4.53690295,0.03814309,98.21252713],[4.5369024,0.03814138,98.21241347],[4.53690184,0.03813966,98.21229869],[4.53690129,0.03813795,98.21218347],[4.53690074,0.03813624,98.21206849],[4.53690019,0.03813452,98.21195441],[4.53689963,0.03813281,98.21184192],[4.53689908,0.0381311,98.21173168],[4.53689853,0.03812938,98.21162435],[4.53689798,0.03812767,98.2115206],[4.53689744,0.03812596,98.21142108],[4.53689689,0.03812424,98.21132647],[4.53689635,0.03812253,98.21123739],[4.5368958,0.03812081,98.21115452],[4.53689526,0.03811909,98.21107849],[4.53689473,0.03811738,98.21100995],[4.53689419,0.03811566,98.21094955],[4.53689366,0.03811394,98.21089791],[4.53689313,0.03811222,98.21085568],[4.53689261,0.03811051,98.21082346],[4.53689209,0.03810879,98.21080112],[4.53689157,0.03810707,98.21078783],[4.53689105,0.03810534,98.21078271],[4.53689054,0.03810362,98.2107849],[4.53689003,0.03810189,98.21079353],[4.53688952,0.03810017,98.21080775],[4.53688901,0.03809844,98.2108267],[4.5368885,0.03809672,98.21084954],[4.53688799,0.03809499,98.21087541],[4.53688749,0.03809326,98.21090348],[4.53688698,0.03809154,98.21093291],[4.53688648,0.03808981,98.21096286],[4.53688597,0.03808808,98.2109925],[4.53688547,0.03808635,98.21102101],[4.53688496,0.03808463,98.21104756],[4.53688446,0.0380829,98.21107134],[4.53688395,0.03808117,98.21109156],[4.53688344,0.03807945,98.21110804],[4.53688293,0.03807772,98.21112123],[4.53688242,0.038076,98.21113158],[4.53688191,0.03807427,98.21113954],[4.5368814,0.03807255,98.21114558],[4.53688088,0.03807082,98.21115015],[4.53688037,0.0380691,98.2111537],[4.53687986,0.03806737,98.21115668],[4.53687934,0.03806565,98.21115953],[4.53687883,0.03806393,98.21116271],[4.53687832,0.0380622,98.21116666],[4.53687781,0.03806048,98.21117181],[4.53687729,0.03805875,98.21117861],[4.53687678,0.03805703,98.2111875],[4.53687627,0.0380553,98.21119892],[4.53687576,0.03805358,98.21121329],[4.53687525,0.03805185,98.21123106],[4.53687474,0.03805012,98.21125265],[4.53687424,0.0380484,98.21127849],[4.53687373,0.03804667,98.21130902],[4.53687323,0.03804494,98.21134465],[4.53687272,0.03804322,98.21138579],[4.53687222,0.03804149,98.21143251],[4.53687172,0.03803976,98.21148449],[4.53687123,0.03803803,98.21154144],[4.53687073,0.0380363,98.21160305],[4.53687024,0.03803457,98.211669],[4.53686974,0.03803284,98.21173899],[4.53686925,0.03803111,98.21181272],[4.53686876,0.03802938,98.21188989],[4.53686827,0.03802765,98.21197019],[4.53686778,0.03802591,98.21205332],[4.53686729,0.03802418,98.21213899],[4.5368668,0.03802245,98.2122269],[4.53686631,0.03802072,98.21231674],[4.53686582,0.03801899,98.21240824],[4.53686533,0.03801725,98.21250108],[4.53686485,0.03801552,98.21259499],[4.53686436,0.03801379,98.21268967],[4.53686387,0.03801206,98.21278483],[4.53686338,0.03801033,98.21288019],[4.53686289,0.03800859,98.21297547],[4.5368624,0.03800686,98.21307057],[4.53686191,0.03800513,98.21316558],[4.53686143,0.0380034,98.21326056],[4.53686094,0.03800167,98.21335562],[4.53686045,0.03799994,98.21345082],[4.53685995,0.0379982,98.21354626],[4.53685946,0.03799647,98.21364201],[4.53685897,0.03799474,98.21373815],[4.53685848,0.03799301,98.21383477],[4.53685799,0.03799128,98.21393195],[4.5368575,0.03798955,98.21402977],[4.53685701,0.03798782,98.21412831],[4.53685652,0.03798608,98.21422764],[4.53685602,0.03798435,98.21432786],[4.53685553,0.03798262,98.21442904],[4.53685504,0.03798089,98.21453126],[4.53685455,0.03797916,98.2146346],[4.53685406,0.03797743,98.21473913],[4.53685356,0.0379757,98.21484495],[4.53685307,0.03797397,98.21495211],[4.53685258,0.03797224,98.21506072],[4.53685209,0.03797051,98.21517083],[4.5368516,0.03796877,98.21528254],[4.5368511,0.03796704,98.21539592],[4.53685061,0.03796531,98.21551104],[4.53685012,0.03796358,98.21562798],[4.53684963,0.03796185,98.21574683],[4.53684914,0.03796012,98.21586765],[4.53684865,0.03795839,98.21599053],[4.53684816,0.03795666,98.21611554],[4.53684766,0.03795492,98.21624275],[4.53684717,0.03795319,98.21637225],[4.53684668,0.03795146,98.21650407],[4.53684619,0.03794973,98.2166381],[4.5368457,0.037948,98.21677417],[4.53684521,0.03794627,98.21691215],[4.53684472,0.03794453,98.21705187],[4.53684423,0.0379428,98.21719319],[4.53684374,0.03794107,98.21733596],[4.53684325,0.03793934,98.21748001],[4.53684276,0.03793761,98.2176252],[4.53684227,0.03793587,98.21777135],[4.53684178,0.03793414,98.21791828],[4.53684129,0.03793241,98.21806581],[4.5368408,0.03793068,98.21821377],[4.5368403,0.03792895,98.21836198],[4.53683981,0.03792722,98.21851027],[4.53683932,0.03792549,98.21865845],[4.53683882,0.03792376,98.21880637],[4.53683832,0.03792203,98.21895383],[4.53683783,0.0379203,98.2191007],[4.53683733,0.03791857,98.21924756],[4.53683683,0.03791684,98.21939569],[4.53683634,0.03791511,98.21954643],[4.53683584,0.03791338,98.21970108],[4.53683535,0.03791165,98.21986097],[4.53683485,0.03790991,98.22002741],[4.53683436,0.03790818,98.2202017],[4.53683387,0.03790645,98.22038517],[4.53683339,0.03790472,98.22057912],[4.53683291,0.03790298,98.22078485],[4.53683243,0.03790125,98.22100367],[4.53683195,0.03789951,98.22123681],[4.53683148,0.03789777,98.22148399],[4.53683102,0.03789603,98.22174338],[4.53683056,0.03789429,98.22201311],[4.5368301,0.03789255,98.2222913],[4.53682964,0.03789081,98.22257609],[4.53682918,0.03788907,98.22286561],[4.53682872,0.03788733,98.22315799],[4.53682827,0.03788559,98.22345141],[4.53682781,0.03788384,98.22374499],[4.53682735,0.0378821,98.22403873],[4.53682689,0.03788036,98.22433273],[4.53682643,0.03787862,98.22462704],[4.53682597,0.03787688,98.22492173],[4.53682551,0.03787514,98.22521687],[4.53682505,0.0378734,98.22551253],[4.53682459,0.03787166,98.22580878],[4.53682413,0.03786992,98.22610567],[4.53682367,0.03786818,98.22640329],[4.53682321,0.03786644,98.22670169],[4.53682275,0.0378647,98.22700095],[4.53682229,0.03786296,98.22730113],[4.53682182,0.03786122,98.22760229],[4.53682136,0.03785948,98.22790451],[4.5368209,0.03785774,98.22820785],[4.53682045,0.03785604,98.22851237],[4.53681999,0.0378543,98.22881814],[4.53681952,0.03785256,98.22912523],[4.53681906,0.03785082,98.2294337],[4.5368186,0.03784908,98.22974359],[4.53681814,0.03784735,98.23005495],[4.53681767,0.03784561,98.23036783],[4.53681721,0.03784387,98.23068228],[4.53681675,0.03784213,98.2309983],[4.53681628,0.03784039,98.23131593],[4.53681582,0.03783865,98.23163517],[4.53681536,0.03783691,98.23195604],[4.5368149,0.03783517,98.23227857],[4.53681443,0.03783343,98.23260276],[4.53681397,0.03783169,98.23292863],[4.53681351,0.03782995,98.2332562],[4.53681304,0.03782821,98.23358549],[4.53681258,0.03782647,98.23391652],[4.53681212,0.03782473,98.23424929],[4.53681166,0.037823,98.23458383],[4.53681119,0.03782126,98.23492015],[4.53681073,0.03781952,98.23525826],[4.53681027,0.03781778,98.2355982],[4.53680981,0.03781604,98.23593996],[4.53680935,0.0378143,98.23628357],[4.53680888,0.03781256,98.23662905],[4.53680842,0.03781082,98.2369764],[4.53680796,0.03780908,98.23732565],[4.5368075,0.03780734,98.23767682],[4.53680704,0.0378056,98.23802991],[4.53680658,0.03780386,98.23838495],[4.53680611,0.03780212,98.23874195],[4.53680565,0.03780038,98.23910092],[4.53680519,0.03779864,98.23946189],[4.53680473,0.0377969,98.23982487],[4.53680427,0.03779516,98.24018988],[4.53680381,0.03779342,98.24055693],[4.53680335,0.03779168,98.24092603],[4.53680289,0.03778994,98.24129722],[4.53680243,0.03778819,98.24167049],[4.53680197,0.03778645,98.24204587],[4.53680151,0.03778471,98.24242337],[4.53680105,0.03778297,98.24280302],[4.53680059,0.03778123,98.24318482],[4.53680013,0.03777949,98.24356879],[4.53679967,0.03777775,98.24395495],[4.53679921,0.03777601,98.24434333],[4.53679876,0.03777427,98.24473397],[4.5367983,0.03777253,98.24512688],[4.53679784,0.03777078,98.24552212],[4.53679738,0.03776904,98.2459197],[4.53679693,0.0377673,98.24631966],[4.53679647,0.03776556,98.24672203],[4.53679601,0.03776382,98.24712684],[4.53679556,0.03776208,98.24753413],[4.5367951,0.03776033,98.24794393],[4.53679464,0.03775859,98.24835627],[4.53679419,0.03775685,98.24877118],[4.53679373,0.03775511,98.2491887],[4.53679328,0.03775336,98.24960885],[4.53679283,0.03775162,98.25003167],[4.53679237,0.03774988,98.25045719],[4.53679192,0.03774814,98.25088545],[4.53679147,0.03774639,98.25131647],[4.53679101,0.03774465,98.2517503],[4.53679056,0.03774291,98.25218695],[4.53679011,0.03774116,98.25262647],[4.53678966,0.03773942,98.25306889],[4.53678921,0.03773768,98.25351423],[4.53678876,0.03773593,98.25396249],[4.53678831,0.03773419,98.25441357],[4.53678786,0.03773244,98.25486742],[4.53678741,0.0377307,98.25532396],[4.53678696,0.03772895,98.25578311],[4.53678651,0.03772721,98.2562448],[4.53678607,0.03772547,98.25670896],[4.53678562,0.03772372,98.2571755],[4.53678517,0.03772198,98.25764436],[4.53678472,0.03772023,98.25811547],[4.53678428,0.03771849,98.25858874],[4.53678383,0.03771674,98.2590641],[4.53678338,0.037715,98.25954148],[4.53678294,0.03771325,98.2600208],[4.53678249,0.0377115,98.26050199],[4.53678205,0.03770976,98.26098497],[4.5367816,0.03770801,98.26146967],[4.53678115,0.03770627,98.26195602],[4.53678071,0.03770452,98.26244396],[4.53678026,0.03770278,98.26293349],[4.53677982,0.03770103,98.2634246],[4.53677937,0.03769929,98.26391728],[4.53677892,0.03769754,98.26441152],[4.53677848,0.0376958,98.26490731],[4.53677803,0.03769405,98.26540463],[4.53677759,0.03769231,98.26590349],[4.53677714,0.03769056,98.26640386],[4.53677669,0.03768881,98.26690574],[4.53677625,0.03768707,98.26740912],[4.5367758,0.03768532,98.26791398],[4.53677536,0.03768358,98.26842033],[4.53677491,0.03768183,98.26892814],[4.53677446,0.03768009,98.26943741],[4.53677402,0.03767834,98.26994812],[4.53677357,0.03767659,98.27046027],[4.53677312,0.03767485,98.27097385],[4.53677268,0.0376731,98.27148884],[4.53677223,0.03767136,98.27200524],[4.53677179,0.03766961,98.27252304],[4.53677134,0.03766787,98.27304222],[4.53677089,0.03766612,98.27356277],[4.53677045,0.03766437,98.27408469],[4.53677,0.03766263,98.27460796],[4.53676955,0.03766088,98.27513258],[4.53676911,0.03765914,98.27565853],[4.53676866,0.03765739,98.2761858],[4.53676821,0.03765565,98.27671439],[4.53676777,0.0376539,98.27724428],[4.53676732,0.03765215,98.27777546],[4.53676687,0.03765041,98.27830792],[4.53676642,0.03764866,98.27884165],[4.53676598,0.03764692,98.27937665],[4.53676553,0.03764517,98.27991289],[4.53676508,0.03764342,98.28045037],[4.53676463,0.03764168,98.28098908],[4.53676419,0.03763993,98.28152902],[4.53676374,0.03763819,98.28207016],[4.53676329,0.03763644,98.28261249],[4.53676284,0.0376347,98.28315602],[4.5367624,0.03763295,98.28370072],[4.53676195,0.0376312,98.28424659],[4.5367615,0.03762946,98.28479363],[4.53676105,0.03762771,98.28534217],[4.5367606,0.03762597,98.28589288],[4.53676015,0.03762422,98.28644643],[4.53675971,0.03762247,98.2870035],[4.53675926,0.03762073,98.28756476],[4.53675882,0.03761898,98.2881309],[4.53675837,0.03761723,98.2887026],[4.53675793,0.03761549,98.28928052],[4.53675749,0.03761374,98.28986488],[4.53675705,0.03761199,98.29045547],[4.53675661,0.03761024,98.29105207],[4.53675618,0.03760849,98.29165445],[4.53675574,0.03760674,98.29226238],[4.53675531,0.03760499,98.29287562],[4.53675488,0.03760324,98.29349396],[4.53675445,0.03760149,98.29411715],[4.53675402,0.03759974,98.29474496],[4.53675359,0.03759799,98.29537718],[4.53675316,0.03759624,98.29601355],[4.53675274,0.03759449,98.29665386],[4.53675231,0.03759273,98.29729787],[4.53675189,0.03759098,98.29794535],[4.53675146,0.03758923,98.29859606],[4.53675104,0.03758748,98.29924977],[4.53675061,0.03758572,98.29990624],[4.53675019,0.03758397,98.30056525],[4.53674976,0.03758222,98.30122655],[4.53674934,0.03758047,98.3018899],[4.53674892,0.03757871,98.30255506],[4.5367485,0.03757696,98.30322179],[4.53674807,0.03757521,98.30388986],[4.53674765,0.03757346,98.30455901],[4.53674723,0.0375717,98.30522902],[4.5367468,0.03756995,98.30589964],[4.53674638,0.0375682,98.30657062],[4.53674595,0.03756645,98.30724172],[4.53674553,0.03756469,98.30791271],[4.5367451,0.03756294,98.30858334],[4.53674468,0.03756119,98.30925336],[4.53674425,0.03755944,98.30992253],[4.53674382,0.03755769,98.31059062],[4.53674339,0.03755594,98.31125736],[4.53674296,0.03755418,98.31192253],[4.53674253,0.03755243,98.31258587],[4.5367421,0.03755068,98.31324715],[4.53674166,0.03754893,98.3139063],[4.53674123,0.03754718,98.31456344],[4.53674079,0.03754543,98.3152187],[4.53674036,0.03754369,98.31587219],[4.53673992,0.03754194,98.31652404],[4.53673948,0.03754019,98.31717436],[4.53673904,0.03753844,98.31782329],[4.5367386,0.03753669,98.31847094],[4.53673816,0.03753494,98.31911744],[4.53673772,0.03753319,98.31976291],[4.53673727,0.03753145,98.32040748],[4.53673683,0.0375297,98.32105127],[4.53673639,0.03752795,98.3216944],[4.53673594,0.03752621,98.322337],[4.5367355,0.03752446,98.32297919],[4.53673505,0.03752271,98.32362109],[4.5367346,0.03752096,98.32426284],[4.53673416,0.03751922,98.32490456],[4.53673371,0.03751747,98.32554637],[4.53673326,0.03751572,98.32618839],[4.53673282,0.03751398,98.32683076],[4.53673237,0.03751223,98.3274736],[4.53673192,0.03751049,98.32811703],[4.53673147,0.03750874,98.32876119],[4.53673102,0.03750699,98.32940619],[4.53673057,0.03750525,98.33005216],[4.53673012,0.0375035,98.33069924],[4.53672968,0.03750176,98.33134754],[4.53672923,0.03750001,98.33199719],[4.53672878,0.03749826,98.33264833],[4.53672833,0.03749652,98.33330107],[4.53672788,0.03749477,98.33395555],[4.53672743,0.03749302,98.33461189],[4.53672699,0.03749128,98.33527022],[4.53672654,0.03748953,98.33593066],[4.53672609,0.03748778,98.33659335],[4.53672565,0.03748604,98.33725842],[4.5367252,0.03748429,98.33792598],[4.53672475,0.03748254,98.33859614],[4.53672431,0.0374808,98.33926888],[4.53672386,0.03747905,98.33994416],[4.53672342,0.0374773,98.34062193],[4.53672298,0.03747555,98.34130215],[4.53672253,0.03747381,98.34198477],[4.53672209,0.03747206,98.34266976],[4.53672165,0.03747031,98.34335705],[4.53672121,0.03746856,98.34404661],[4.53672077,0.03746682,98.34473839],[4.53672032,0.03746507,98.34543236],[4.53671988,0.03746332,98.34612845],[4.53671944,0.03746157,98.34682663],[4.536719,0.03745982,98.34752686],[4.53671856,0.03745807,98.34822908],[4.53671812,0.03745633,98.34893325],[4.53671768,0.03745458,98.34963933],[4.53671724,0.03745283,98.35034727],[4.53671681,0.03745108,98.35105702],[4.53671637,0.03744933,98.35176855],[4.53671593,0.03744758,98.35248179],[4.53671549,0.03744583,98.35319672],[4.53671505,0.03744408,98.35391328],[4.53671462,0.03744234,98.35463142],[4.53671418,0.03744059,98.3553511],[4.53671374,0.03743884,98.35607228],[4.5367133,0.03743709,98.35679491],[4.53671287,0.03743534,98.35751895],[4.53671243,0.03743359,98.35824434],[4.53671199,0.03743184,98.35897104],[4.53671156,0.03743009,98.35969901],[4.53671112,0.03742834,98.36042819],[4.53671068,0.03742659,98.36115856],[4.53671025,0.03742484,98.36189005],[4.53670981,0.03742309,98.36262262],[4.53670938,0.03742134,98.36335623],[4.53670894,0.0374196,98.36409083],[4.5367085,0.03741785,98.36482637],[4.53670807,0.0374161,98.36556281],[4.53670763,0.03741435,98.36630011],[4.5367072,0.0374126,98.36703821],[4.53670676,0.03741085,98.36777708],[4.53670632,0.0374091,98.36851665],[4.53670589,0.03740735,98.3692569],[4.53670545,0.0374056,98.36999777],[4.53670501,0.03740385,98.37073922],[4.53670458,0.0374021,98.3714812],[4.53670414,0.03740035,98.37222367],[4.5367037,0.0373986,98.37296658],[4.53670327,0.03739685,98.37370988],[4.53670283,0.03739511,98.37445354],[4.53670239,0.03739336,98.37519749],[4.53670195,0.03739161,98.37594171],[4.53670152,0.03738986,98.37668615],[4.53670108,0.03738811,98.37743081],[4.53670064,0.03738636,98.37817575],[4.5367002,0.03738461,98.37892101],[4.53669976,0.03738286,98.37966663],[4.53669933,0.03738111,98.38041268],[4.53669889,0.03737937,98.38115919],[4.53669845,0.03737762,98.38190623],[4.53669801,0.03737587,98.38265382],[4.53669757,0.03737412,98.38340203],[4.53669713,0.03737237,98.38415091],[4.53669669,0.03737062,98.38490049],[4.53669626,0.03736887,98.38565084],[4.53669582,0.03736712,98.386402],[4.53669538,0.03736538,98.38715401],[4.53669494,0.03736362,98.38790692],[4.5366945,0.03736188,98.3886608],[4.53669406,0.03736013,98.38941567],[4.53669362,0.03735838,98.39017159],[4.53669319,0.03735663,98.39092861],[4.53669275,0.03735488,98.39168678],[4.53669231,0.03735313,98.39244614],[4.53669187,0.03735138,98.39320674],[4.53669144,0.03734963,98.39396863],[4.536691,0.03734788,98.39473186],[4.53669056,0.03734613,98.39549647],[4.53669012,0.03734438,98.3962625],[4.53668969,0.03734264,98.39702994],[4.53668925,0.03734089,98.39779876],[4.53668882,0.03733914,98.39856894],[4.53668838,0.03733739,98.39934046],[4.53668795,0.03733564,98.4001133],[4.53668751,0.03733389,98.40088743],[4.53668708,0.03733214,98.40166282],[4.53668664,0.03733039,98.40243947],[4.53668621,0.03732864,98.40321733],[4.53668577,0.03732689,98.4039964],[4.53668534,0.03732514,98.40477664],[4.53668491,0.03732339,98.40555804],[4.53668447,0.03732164,98.40634056],[4.53668404,0.03731989,98.4071242],[4.53668361,0.03731814,98.40790891],[4.53668317,0.03731639,98.40869469],[4.53668274,0.03731464,98.40948151],[4.53668231,0.03731289,98.41026934],[4.53668188,0.03731114,98.41105816],[4.53668144,0.03730939,98.41184795],[4.53668101,0.03730764,98.41263869],[4.53668058,0.03730589,98.41343034],[4.53668015,0.03730413,98.4142229],[4.53667972,0.03730238,98.41501633],[4.53667929,0.03730063,98.41581061],[4.53667885,0.03729888,98.41660573],[4.53667842,0.03729713,98.41740165],[4.53667799,0.03729538,98.41819835],[4.53667756,0.03729363,98.41899581],[4.53667713,0.03729188,98.41979401],[4.5366767,0.03729013,98.42059293],[4.53667627,0.03728838,98.42139253],[4.53667584,0.03728663,98.4221928],[4.53667541,0.03728488,98.42299372],[4.53667498,0.03728313,98.42379526],[4.53667455,0.03728138,98.4245974],[4.53667412,0.03727962,98.42540012],[4.53667369,0.03727787,98.42620339],[4.53667326,0.03727612,98.42700719],[4.53667283,0.03727437,98.4278115],[4.5366724,0.03727262,98.4286163],[4.53667197,0.03727087,98.42942156],[4.53667154,0.03726912,98.43022726],[4.53667111,0.03726737,98.43103337],[4.53667068,0.03726562,98.43183988],[4.53667025,0.03726386,98.43264677],[4.53666982,0.03726211,98.433454],[4.53666939,0.03726036,98.43426156],[4.53666896,0.03725861,98.43506943],[4.53666854,0.03725686,98.43587758],[4.53666811,0.03725511,98.43668599],[4.53666768,0.03725336,98.43749464],[4.53666725,0.03725161,98.43830351],[4.53666682,0.03724986,98.43911257],[4.53666639,0.03724811,98.4399218],[4.53666596,0.03724635,98.44073118],[4.53666553,0.0372446,98.4415407],[4.5366651,0.03724285,98.44235032],[4.53666467,0.0372411,98.44316002],[4.53666424,0.03723935,98.44396979],[4.53666381,0.0372376,98.4447796],[4.53666338,0.03723585,98.44558944],[4.53666296,0.0372341,98.44639927],[4.53666253,0.03723235,98.44720908],[4.5366621,0.0372306,98.44801885],[4.53666167,0.03722884,98.44882855],[4.53666124,0.03722709,98.44963817],[4.53666081,0.03722534,98.45044769],[4.53666038,0.03722359,98.45125707],[4.53665995,0.03722184,98.45206631],[4.53665952,0.03722009,98.45287538],[4.53665909,0.03721834,98.45368427],[4.53665866,0.03721659,98.45449294],[4.53665823,0.03721484,98.45530139],[4.5366578,0.03721309,98.45610958],[4.53665737,0.03721134,98.45691751],[4.53665694,0.03720958,98.45772515],[4.53665651,0.03720783,98.45853248],[4.5366562,0.0372066,98.4590996],[4.53667014,0.03720307,98.4590996],[4.53667044,0.0372043,98.45853248],[4.53667087,0.03720605,98.45772515],[4.5366713,0.0372078,98.45691751],[4.53667173,0.03720955,98.45610958],[4.53667216,0.0372113,98.45530139],[4.53667258,0.03721305,98.45449294],[4.53667301,0.0372148,98.45368427],[4.53667344,0.03721656,98.45287538],[4.53667387,0.03721831,98.45206631],[4.53667429,0.03722006,98.45125707],[4.53667472,0.03722181,98.45044769],[4.53667515,0.03722356,98.44963817],[4.53667557,0.03722531,98.44882855],[4.536676,0.03722706,98.44801885],[4.53667643,0.03722882,98.44720908],[4.53667685,0.03723057,98.44639927],[4.53667728,0.03723232,98.44558944],[4.53667771,0.03723407,98.4447796],[4.53667813,0.03723582,98.44396979],[4.53667856,0.03723757,98.44316002],[4.53667898,0.03723933,98.44235032],[4.53667941,0.03724108,98.4415407],[4.53667983,0.03724283,98.44073118],[4.53668026,0.03724458,98.4399218],[4.53668069,0.03724633,98.43911257],[4.53668111,0.03724808,98.43830351],[4.53668154,0.03724983,98.43749464],[4.53668196,0.03725159,98.43668599],[4.53668239,0.03725334,98.43587758],[4.53668282,0.03725509,98.43506943],[4.53668324,0.03725684,98.43426156],[4.53668367,0.03725859,98.433454],[4.53668409,0.03726034,98.43264677],[4.53668452,0.0372621,98.43183988],[4.53668495,0.03726385,98.43103337],[4.53668538,0.0372656,98.43022726],[4.5366858,0.03726735,98.42942156],[4.53668623,0.0372691,98.4286163],[4.53668666,0.03727085,98.4278115],[4.53668709,0.0372726,98.42700719],[4.53668752,0.03727435,98.42620339],[4.53668794,0.03727611,98.42540012],[4.53668837,0.03727786,98.4245974],[4.5366888,0.03727961,98.42379526],[4.53668923,0.03728136,98.42299372],[4.53668966,0.03728311,98.4221928],[4.53669009,0.03728486,98.42139253],[4.53669053,0.03728661,98.42059293],[4.53669096,0.03728836,98.41979401],[4.53669139,0.03729011,98.41899581],[4.53669182,0.03729186,98.41819835],[4.53669226,0.03729361,98.41740165],[4.53669269,0.03729536,98.41660573],[4.53669312,0.03729711,98.41581061],[4.53669356,0.03729886,98.41501633],[4.53669399,0.03730061,98.4142229],[4.53669443,0.03730236,98.41343034],[4.53669487,0.03730411,98.41263869],[4.5366953,0.03730585,98.41184795],[4.53669574,0.0373076,98.41105816],[4.53669618,0.03730935,98.41026934],[4.53669662,0.0373111,98.40948151],[4.53669706,0.03731285,98.40869469],[4.5366975,0.0373146,98.40790891],[4.53669794,0.03731634,98.4071242],[4.53669838,0.03731809,98.40634056],[4.53669882,0.03731984,98.40555804],[4.53669926,0.03732159,98.40477664],[4.53669971,0.03732334,98.4039964],[4.53670015,0.03732508,98.40321733],[4.5367006,0.03732683,98.40243947],[4.53670104,0.03732858,98.40166282],[4.53670149,0.03733032,98.40088743],[4.53670193,0.03733207,98.4001133],[4.53670238,0.03733382,98.39934046],[4.53670283,0.03733556,98.39856894],[4.53670328,0.03733731,98.39779876],[4.53670373,0.03733905,98.39702994],[4.53670417,0.0373408,98.3962625],[4.53670462,0.03734255,98.39549647],[4.53670508,0.03734429,98.39473186],[4.53670553,0.03734604,98.39396863],[4.53670598,0.03734778,98.39320674],[4.53670643,0.03734953,98.39244614],[4.53670688,0.03735127,98.39168678],[4.53670734,0.03735302,98.39092861],[4.53670779,0.03735476,98.39017159],[4.53670824,0.03735651,98.38941567],[4.5367087,0.03735825,98.3886608],[4.53670915,0.03736,98.38790692],[4.53670961,0.03736174,98.38715401],[4.53671006,0.03736349,98.386402],[4.53671052,0.03736523,98.38565084],[4.53671097,0.03736698,98.38490049],[4.53671143,0.03736872,98.38415091],[4.53671188,0.03737046,98.38340203],[4.53671234,0.03737221,98.38265382],[4.53671279,0.03737395,98.38190623],[4.53671325,0.0373757,98.38115919],[4.53671371,0.03737744,98.38041268],[4.53671416,0.03737919,98.37966663],[4.53671462,0.03738093,98.37892101],[4.53671507,0.03738267,98.37817575],[4.53671553,0.03738442,98.37743081],[4.53671598,0.03738616,98.37668615],[4.53671644,0.03738791,98.37594171],[4.53671689,0.03738965,98.37519749],[4.53671735,0.03739139,98.37445354],[4.5367178,0.03739314,98.37370988],[4.53671826,0.03739488,98.37296658],[4.53671871,0.03739663,98.37222367],[4.53671917,0.03739837,98.3714812],[4.53671962,0.03740012,98.37073922],[4.53672008,0.03740186,98.36999777],[4.53672053,0.03740361,98.3692569],[4.53672098,0.03740535,98.36851665],[4.53672144,0.0374071,98.36777708],[4.53672189,0.03740884,98.36703821],[4.53672235,0.03741058,98.36630011],[4.5367228,0.03741233,98.36556281],[4.53672325,0.03741407,98.36482637],[4.53672371,0.03741582,98.36409083],[4.53672416,0.03741756,98.36335623],[4.53672461,0.03741931,98.36262262],[4.53672506,0.03742105,98.36189005],[4.53672552,0.0374228,98.36115856],[4.53672597,0.03742454,98.36042819],[4.53672642,0.03742629,98.35969901],[4.53672688,0.03742803,98.35897104],[4.53672733,0.03742978,98.35824434],[4.53672778,0.03743152,98.35751895],[4.53672823,0.03743327,98.35679491],[4.53672869,0.03743501,98.35607228],[4.53672914,0.03743676,98.3553511],[4.53672959,0.0374385,98.35463142],[4.53673005,0.03744025,98.35391328],[4.5367305,0.03744199,98.35319672],[4.53673095,0.03744374,98.35248179],[4.53673141,0.03744548,98.35176855],[4.53673186,0.03744723,98.35105702],[4.53673231,0.03744897,98.35034727],[4.53673277,0.03745072,98.34963933],[4.53673322,0.03745246,98.34893325],[4.53673367,0.0374542,98.34822908],[4.53673413,0.03745595,98.34752686],[4.53673458,0.03745769,98.34682663],[4.53673504,0.03745944,98.34612845],[4.53673549,0.03746118,98.34543236],[4.53673595,0.03746293,98.34473839],[4.5367364,0.03746467,98.34404661],[4.53673686,0.03746641,98.34335705],[4.53673731,0.03746816,98.34266976],[4.53673777,0.0374699,98.34198477],[4.53673822,0.03747165,98.34130215],[4.53673868,0.03747339,98.34062193],[4.53673914,0.03747514,98.33994416],[4.53673959,0.03747688,98.33926888],[4.53674005,0.03747862,98.33859614],[4.53674051,0.03748037,98.33792598],[4.53674097,0.03748211,98.33725842],[4.53674142,0.03748385,98.33659335],[4.53674188,0.0374856,98.33593066],[4.53674234,0.03748734,98.33527022],[4.5367428,0.03748908,98.33461189],[4.53674326,0.03749083,98.33395555],[4.53674372,0.03749257,98.33330107],[4.53674418,0.03749431,98.33264833],[4.53674464,0.03749606,98.33199719],[4.5367451,0.0374978,98.33134754],[4.53674556,0.03749954,98.33069924],[4.53674601,0.03750129,98.33005216],[4.53674647,0.03750303,98.32940619],[4.53674693,0.03750477,98.32876119],[4.53674739,0.03750652,98.32811703],[4.53674785,0.03750826,98.3274736],[4.53674831,0.03751,98.32683076],[4.53674877,0.03751175,98.32618839],[4.53674922,0.03751349,98.32554637],[4.53674968,0.03751523,98.32490456],[4.53675014,0.03751698,98.32426284],[4.5367506,0.03751872,98.32362109],[4.53675105,0.03752046,98.32297919],[4.53675151,0.03752221,98.322337],[4.53675196,0.03752395,98.3216944],[4.53675242,0.0375257,98.32105127],[4.53675287,0.03752744,98.32040748],[4.53675333,0.03752919,98.31976291],[4.53675378,0.03753093,98.31911744],[4.53675423,0.03753268,98.31847094],[4.53675468,0.03753442,98.31782329],[4.53675514,0.03753617,98.31717436],[4.53675559,0.03753791,98.31652404],[4.53675604,0.03753966,98.31587219],[4.53675649,0.0375414,98.3152187],[4.53675694,0.03754315,98.31456344],[4.53675738,0.03754489,98.3139063],[4.53675783,0.03754664,98.31324715],[4.53675828,0.03754839,98.31258587],[4.53675873,0.03755013,98.31192253],[4.53675917,0.03755188,98.31125736],[4.53675962,0.03755362,98.31059062],[4.53676007,0.03755537,98.30992253],[4.53676051,0.03755712,98.30925336],[4.53676096,0.03755886,98.30858334],[4.53676141,0.03756061,98.30791271],[4.53676185,0.03756236,98.30724172],[4.5367623,0.0375641,98.30657062],[4.53676275,0.03756585,98.30589964],[4.5367632,0.03756759,98.30522902],[4.53676364,0.03756934,98.30455901],[4.53676409,0.03757109,98.30388986],[4.53676454,0.03757283,98.30322179],[4.53676499,0.03757458,98.30255506],[4.53676544,0.03757632,98.3018899],[4.53676589,0.03757807,98.30122655],[4.53676635,0.03757981,98.30056525],[4.5367668,0.03758156,98.29990624],[4.53676725,0.0375833,98.29924977],[4.53676771,0.03758505,98.29859606],[4.53676816,0.03758679,98.29794535],[4.53676862,0.03758853,98.29729787],[4.53676908,0.03759028,98.29665386],[4.53676954,0.03759202,98.29601355],[4.53677,0.03759376,98.29537718],[4.53677046,0.03759551,98.29474496],[4.53677092,0.03759725,98.29411715],[4.53677139,0.03759899,98.29349396],[4.53677185,0.03760073,98.29287562],[4.53677231,0.03760247,98.29226238],[4.53677278,0.03760421,98.29165445],[4.53677324,0.03760596,98.29105207],[4.5367737,0.0376077,98.29045547],[4.53677416,0.03760944,98.28986488],[4.53677461,0.03761118,98.28928052],[4.53677507,0.03761293,98.2887026],[4.53677552,0.03761467,98.2881309],[4.53677596,0.03761642,98.28756476],[4.53677641,0.03761817,98.2870035],[4.53677685,0.03761991,98.28644643],[4.53677729,0.03762166,98.28589288],[4.53677774,0.03762341,98.28534217],[4.53677818,0.03762515,98.28479363],[4.53677862,0.0376269,98.28424659],[4.53677906,0.03762865,98.28370072],[4.5367795,0.03763039,98.28315602],[4.53677994,0.03763214,98.28261249],[4.53678038,0.03763389,98.28207016],[4.53678082,0.03763563,98.28152902],[4.53678126,0.03763738,98.28098908],[4.53678171,0.03763913,98.28045037],[4.53678215,0.03764087,98.27991289],[4.53678259,0.03764262,98.27937665],[4.53678303,0.03764436,98.27884165],[4.53678348,0.03764611,98.27830792],[4.53678392,0.03764785,98.27777546],[4.53678436,0.0376496,98.27724428],[4.53678481,0.03765135,98.27671439],[4.53678525,0.03765309,98.2761858],[4.53678569,0.03765484,98.27565853],[4.53678614,0.03765658,98.27513258],[4.53678658,0.03765833,98.27460796],[4.53678702,0.03766007,98.27408469],[4.53678746,0.03766182,98.27356277],[4.53678791,0.03766357,98.27304222],[4.53678835,0.03766531,98.27252304],[4.53678879,0.03766706,98.27200524],[4.53678923,0.0376688,98.27148884],[4.53678968,0.03767055,98.27097385],[4.53679012,0.03767229,98.27046027],[4.53679056,0.03767404,98.26994812],[4.536791,0.03767578,98.26943741],[4.53679144,0.03767753,98.26892814],[4.53679188,0.03767928,98.26842033],[4.53679232,0.03768102,98.26791398],[4.53679276,0.03768277,98.26740912],[4.53679321,0.03768451,98.26690574],[4.53679365,0.03768626,98.26640386],[4.53679409,0.037688,98.26590349],[4.53679453,0.03768975,98.26540463],[4.53679497,0.03769149,98.26490731],[4.53679541,0.03769324,98.26441152],[4.53679585,0.03769498,98.26391728],[4.53679629,0.03769673,98.2634246],[4.53679673,0.03769847,98.26293349],[4.53679717,0.03770022,98.26244396],[4.53679761,0.03770196,98.26195602],[4.53679805,0.03770371,98.26146967],[4.53679849,0.03770546,98.26098497],[4.53679893,0.0377072,98.26050199],[4.53679937,0.03770894,98.2600208],[4.53679982,0.03771069,98.25954148],[4.53680026,0.03771243,98.2590641],[4.5368007,0.03771418,98.25858874],[4.53680114,0.03771592,98.25811547],[4.53680158,0.03771767,98.25764436],[4.53680202,0.03771941,98.2571755],[4.53680246,0.03772116,98.25670896],[4.5368029,0.0377229,98.2562448],[4.53680335,0.03772465,98.25578311],[4.53680379,0.03772639,98.25532396],[4.53680423,0.03772813,98.25486742],[4.53680467,0.03772988,98.25441357],[4.53680511,0.03773162,98.25396249],[4.53680556,0.03773337,98.25351423],[4.536806,0.03773511,98.25306889],[4.53680644,0.03773685,98.25262647],[4.53680689,0.0377386,98.25218695],[4.53680733,0.03774034,98.2517503],[4.53680777,0.03774208,98.25131647],[4.53680822,0.03774383,98.25088545],[4.53680866,0.03774557,98.25045719],[4.5368091,0.03774731,98.25003167],[4.53680955,0.03774906,98.24960885],[4.53680999,0.0377508,98.2491887],[4.53681043,0.03775254,98.24877118],[4.53681088,0.03775429,98.24835627],[4.53681132,0.03775603,98.24794393],[4.53681176,0.03775777,98.24753413],[4.53681221,0.03775952,98.24712684],[4.53681265,0.03776126,98.24672203],[4.53681309,0.037763,98.24631966],[4.53681354,0.03776475,98.2459197],[4.53681398,0.03776649,98.24552212],[4.53681443,0.03776823,98.24512688],[4.53681487,0.03776997,98.24473397],[4.53681531,0.03777172,98.24434333],[4.53681576,0.03777346,98.24395495],[4.5368162,0.0377752,98.24356879],[4.53681664,0.03777694,98.24318482],[4.53681709,0.03777869,98.24280302],[4.53681753,0.03778043,98.24242337],[4.53681797,0.03778217,98.24204587],[4.53681842,0.03778391,98.24167049],[4.53681886,0.03778566,98.24129722],[4.5368193,0.0377874,98.24092603],[4.53681974,0.03778914,98.24055693],[4.53682019,0.03779088,98.24018988],[4.53682063,0.03779263,98.23982487],[4.53682107,0.03779437,98.23946189],[4.53682152,0.03779611,98.23910092],[4.53682196,0.03779785,98.23874195],[4.5368224,0.0377996,98.23838495],[4.53682284,0.03780134,98.23802991],[4.53682329,0.03780308,98.23767682],[4.53682373,0.03780482,98.23732565],[4.53682417,0.03780657,98.2369764],[4.53682461,0.03780831,98.23662905],[4.53682505,0.03781005,98.23628357],[4.5368255,0.03781179,98.23593996],[4.53682594,0.03781354,98.2355982],[4.53682638,0.03781528,98.23525826],[4.53682682,0.03781702,98.23492015],[4.53682726,0.03781876,98.23458383],[4.5368277,0.0378205,98.23424929],[4.53682815,0.03782225,98.23391652],[4.53682859,0.03782399,98.23358549],[4.53682903,0.03782573,98.2332562],[4.53682947,0.03782747,98.23292863],[4.53682991,0.03782922,98.23260276],[4.53683035,0.03783096,98.23227857],[4.53683079,0.0378327,98.23195604],[4.53683124,0.03783444,98.23163517],[4.53683168,0.03783618,98.23131593],[4.53683212,0.03783793,98.2309983],[4.53683256,0.03783967,98.23068228],[4.536833,0.03784141,98.23036783],[4.53683344,0.03784315,98.23005495],[4.53683388,0.03784489,98.22974359],[4.53683432,0.03784664,98.2294337],[4.53683476,0.03784838,98.22912523],[4.53683521,0.03785012,98.22881814],[4.53683565,0.03785186,98.22851237],[4.53683608,0.03785356,98.22820785],[4.53683652,0.0378553,98.22790451],[4.53683696,0.03785704,98.22760229],[4.5368374,0.03785879,98.22730113],[4.53683784,0.03786053,98.22700095],[4.53683828,0.03786227,98.22670169],[4.53683872,0.03786402,98.22640329],[4.53683917,0.03786576,98.22610567],[4.53683961,0.0378675,98.22580878],[4.53684005,0.03786924,98.22551253],[4.53684049,0.03787099,98.22521687],[4.53684093,0.03787273,98.22492173],[4.53684137,0.03787447,98.22462704],[4.5368418,0.03787622,98.22433273],[4.53684224,0.03787796,98.22403873],[4.53684268,0.03787971,98.22374499],[4.53684311,0.03788145,98.22345141],[4.53684355,0.03788319,98.22315799],[4.53684398,0.03788494,98.22286561],[4.53684442,0.03788668,98.22257609],[4.53684485,0.03788843,98.2222913],[4.53684528,0.03789017,98.22201311],[4.53684572,0.03789192,98.22174338],[4.53684616,0.03789366,98.22148399],[4.5368466,0.0378954,98.22123681],[4.53684705,0.03789714,98.22100367],[4.5368475,0.03789888,98.22078485],[4.53684795,0.03790062,98.22057912],[4.5368484,0.03790236,98.22038517],[4.53684886,0.0379041,98.2202017],[4.53684932,0.03790584,98.22002741],[4.53684977,0.03790758,98.21986097],[4.53685023,0.03790932,98.21970108],[4.53685069,0.03791105,98.21954643],[4.53685115,0.03791279,98.21939569],[4.53685161,0.03791453,98.21924756],[4.53685207,0.03791627,98.2191007],[4.53685252,0.037918,98.21895383],[4.53685298,0.03791974,98.21880637],[4.53685343,0.03792148,98.21865845],[4.53685388,0.03792322,98.21851027],[4.53685433,0.03792496,98.21836198],[4.53685478,0.0379267,98.21821377],[4.53685523,0.03792844,98.21806581],[4.53685568,0.03793019,98.21791828],[4.53685612,0.03793193,98.21777135],[4.53685657,0.03793367,98.2176252],[4.53685701,0.03793541,98.21748001],[4.53685746,0.03793715,98.21733596],[4.5368579,0.0379389,98.21719319],[4.53685834,0.03794064,98.21705187],[4.53685878,0.03794238,98.21691215],[4.53685923,0.03794412,98.21677417],[4.53685967,0.03794586,98.2166381],[4.53686011,0.03794761,98.21650407],[4.53686055,0.03794935,98.21637225],[4.536861,0.03795109,98.21624275],[4.53686144,0.03795283,98.21611554],[4.53686188,0.03795458,98.21599053],[4.53686232,0.03795632,98.21586765],[4.53686277,0.03795806,98.21574683],[4.53686321,0.0379598,98.21562798],[4.53686366,0.03796155,98.21551104],[4.5368641,0.03796329,98.21539592],[4.53686454,0.03796503,98.21528254],[4.53686499,0.03796677,98.21517083],[4.53686544,0.03796851,98.21506072],[4.53686588,0.03797025,98.21495211],[4.53686633,0.037972,98.21484495],[4.53686678,0.03797374,98.21473913],[4.53686722,0.03797548,98.2146346],[4.53686767,0.03797722,98.21453126],[4.53686812,0.03797896,98.21442904],[4.53686857,0.0379807,98.21432786],[4.53686902,0.03798244,98.21422764],[4.53686947,0.03798418,98.21412831],[4.53686991,0.03798592,98.21402977],[4.53687036,0.03798766,98.21393195],[4.53687081,0.0379894,98.21383477],[4.53687126,0.03799115,98.21373815],[4.53687171,0.03799289,98.21364201],[4.53687216,0.03799463,98.21354626],[4.53687261,0.03799637,98.21345082],[4.53687306,0.03799811,98.21335562],[4.53687351,0.03799985,98.21326056],[4.53687396,0.03800159,98.21316558],[4.53687441,0.03800333,98.21307057],[4.53687486,0.03800507,98.21297547],[4.5368753,0.03800681,98.21288019],[4.53687575,0.03800855,98.21278483],[4.5368762,0.0380103,98.21268967],[4.53687665,0.03801204,98.21259499],[4.53687709,0.03801378,98.21250108],[4.53687754,0.03801552,98.21240824],[4.53687799,0.03801726,98.21231674],[4.53687844,0.038019,98.2122269],[4.53687888,0.03802074,98.21213899],[4.53687933,0.03802249,98.21205332],[4.53687978,0.03802423,98.21197019],[4.53688023,0.03802597,98.21188989],[4.53688068,0.03802771,98.21181272],[4.53688113,0.03802945,98.21173899],[4.53688158,0.03803119,98.211669],[4.53688203,0.03803293,98.21160305],[4.53688248,0.03803467,98.21154144],[4.53688294,0.03803641,98.21148449],[4.53688339,0.03803815,98.21143251],[4.53688385,0.03803989,98.21138579],[4.5368843,0.03804163,98.21134465],[4.53688476,0.03804337,98.21130902],[4.53688522,0.03804511,98.21127849],[4.53688568,0.03804684,98.21125265],[4.53688614,0.03804858,98.21123106],[4.5368866,0.03805032,98.21121329],[4.53688706,0.03805206,98.21119892],[4.53688753,0.03805379,98.2111875],[4.53688799,0.03805553,98.21117861],[4.53688845,0.03805727,98.21117181],[4.53688892,0.03805901,98.21116666],[4.53688938,0.03806074,98.21116271],[4.53688984,0.03806248,98.21115953],[4.53689031,0.03806422,98.21115668],[4.53689077,0.03806595,98.2111537],[4.53689123,0.03806769,98.21115015],[4.5368917,0.03806943,98.21114558],[4.53689216,0.03807117,98.21113954],[4.53689262,0.0380729,98.21113158],[4.53689308,0.03807464,98.21112123],[4.53689354,0.03807638,98.21110804],[4.53689401,0.03807812,98.21109156],[4.53689447,0.03807986,98.21107134],[4.53689493,0.03808159,98.21104756],[4.53689538,0.03808333,98.21102101],[4.53689584,0.03808507,98.2109925],[4.5368963,0.03808681,98.21096286],[4.53689676,0.03808855,98.21093291],[4.53689722,0.03809029,98.21090348],[4.53689768,0.03809203,98.21087541],[4.53689814,0.03809376,98.21084954],[4.5368986,0.0380955,98.2108267],[4.53689906,0.03809724,98.21080775],[4.53689952,0.03809898,98.21079353],[4.53689998,0.03810072,98.2107849],[4.53690044,0.03810246,98.21078271],[4.5369009,0.0381042,98.21078783],[4.53690136,0.03810593,98.21080112],[4.53690183,0.03810767,98.21082346],[4.53690229,0.0381094,98.21085568],[4.53690275,0.03811113,98.21089791],[4.53690322,0.03811287,98.21094955],[4.53690368,0.03811461,98.21100995],[4.53690415,0.03811635,98.21107849],[4.53690461,0.03811808,98.21115452],[4.53690507,0.03811982,98.21123739],[4.53690554,0.03812156,98.21132647],[4.536906,0.0381233,98.21142108],[4.53690646,0.03812504,98.2115206],[4.53690693,0.03812678,98.21162435],[4.53690739,0.03812852,98.21173168],[4.53690785,0.03813026,98.21184192],[4.53690831,0.03813199,98.21195441],[4.53690878,0.03813373,98.21206849],[4.53690924,0.03813547,98.21218347],[4.5369097,0.03813721,98.21229869],[4.53691017,0.03813895,98.21241347],[4.53691063,0.03814069,98.21252713],[4.53691109,0.03814243,98.21263898],[4.53691155,0.03814417,98.21274846],[4.53691202,0.03814591,98.21285553],[4.53691248,0.03814765,98.21296025],[4.53691294,0.03814939,98.21306269],[4.53691341,0.03815113,98.21316293],[4.53691387,0.03815287,98.21326103],[4.53691433,0.03815461,98.21335708],[4.53691479,0.03815635,98.21345114],[4.53691526,0.03815809,98.21354328],[4.53691572,0.03815983,98.2136336],[4.53691618,0.03816157,98.21372215],[4.53691665,0.03816331,98.21380901],[4.53691711,0.03816505,98.21389426],[4.53691757,0.03816679,98.21397798],[4.53691803,0.03816853,98.21406025],[4.5369185,0.03817027,98.21414113],[4.53691896,0.03817201,98.21422071],[4.53691942,0.03817375,98.21429907],[4.53691989,0.03817549,98.21437628],[4.53692035,0.03817723,98.21445243],[4.53692081,0.03817897,98.21452759],[4.53692128,0.03818071,98.21460184],[4.53692174,0.03818245,98.21467527],[4.5369222,0.0381842,98.21474795],[4.53692266,0.03818594,98.21481997],[4.53692313,0.03818768,98.21489141],[4.53692359,0.03818942,98.21496235],[4.53692405,0.03819116,98.21503287],[4.53692452,0.0381929,98.21510306],[4.53692498,0.03819464,98.215173],[4.53692544,0.03819638,98.21524278],[4.5369259,0.03819812,98.21531247],[4.53692102,0.03819968,98.21531247]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1000400","id":2,"type":"none","predecessorId":2,"sOffset":53.8593184394}},{"geometry":{"coordinates":[[[4.5341558,0.02832429,96.56789043],[4.53415534,0.02832256,96.56735559],[4.53415488,0.02832083,96.56680275],[4.53415441,0.0283191,96.56623297],[4.53415395,0.02831737,96.5656473],[4.53415348,0.02831564,96.56504681],[4.53415301,0.02831391,96.56443255],[4.53415255,0.02831217,96.56380558],[4.53415208,0.02831044,96.56316695],[4.53415161,0.0283087,96.56251772],[4.53415114,0.02830696,96.56185896],[4.53415068,0.02830523,96.56119172],[4.53415021,0.02830349,96.56051706],[4.53414974,0.02830175,96.55983603],[4.53414927,0.02830001,96.5591497],[4.5341488,0.02829827,96.55845911],[4.53414833,0.02829653,96.55776534],[4.53414786,0.02829479,96.55706944],[4.53414739,0.02829305,96.55637245],[4.53414692,0.02829131,96.55567544],[4.53414645,0.02828957,96.55497939],[4.53414598,0.02828783,96.55428527],[4.53414551,0.02828609,96.55359407],[4.53414504,0.02828435,96.55290676],[4.53414457,0.02828261,96.55222433],[4.5341441,0.02828087,96.55154775],[4.53414363,0.02827913,96.55087801],[4.53414316,0.02827738,96.55021607],[4.53414269,0.02827564,96.54956292],[4.53414222,0.0282739,96.54891954],[4.53414174,0.02827215,96.54828691],[4.53414127,0.02827041,96.547666],[4.5341408,0.02826867,96.5470578],[4.53414033,0.02826692,96.54646328],[4.53413986,0.02826518,96.54588342],[4.53413939,0.02826343,96.54531921],[4.53413895,0.02826181,96.54481181],[4.53418179,0.02824852,96.54481181],[4.53418223,0.02825013,96.54531921],[4.5341827,0.02825188,96.54588342],[4.53418317,0.02825362,96.54646328],[4.53418364,0.02825536,96.5470578],[4.53418411,0.02825711,96.547666],[4.53418458,0.02825885,96.54828691],[4.53418505,0.02826059,96.54891954],[4.53418552,0.02826233,96.54956292],[4.53418599,0.02826408,96.55021607],[4.53418646,0.02826582,96.55087801],[4.53418693,0.02826756,96.55154775],[4.5341874,0.0282693,96.55222433],[4.53418787,0.02827104,96.55290676],[4.53418834,0.02827278,96.55359407],[4.53418881,0.02827452,96.55428527],[4.53418928,0.02827627,96.55497939],[4.53418975,0.02827801,96.55567544],[4.53419022,0.02827975,96.55637245],[4.53419069,0.02828149,96.55706944],[4.53419116,0.02828323,96.55776534],[4.53419163,0.02828497,96.55845911],[4.5341921,0.02828671,96.5591497],[4.53419257,0.02828845,96.55983603],[4.53419304,0.02829019,96.56051706],[4.53419351,0.02829193,96.56119172],[4.53419398,0.02829368,96.56185896],[4.53419445,0.02829542,96.56251772],[4.53419492,0.02829716,96.56316695],[4.53419539,0.0282989,96.56380558],[4.53419586,0.02830063,96.56443255],[4.53419633,0.02830237,96.56504681],[4.53419679,0.02830411,96.5656473],[4.53419726,0.02830585,96.56623297],[4.53419773,0.02830759,96.56680275],[4.5341982,0.02830933,96.56735559],[4.53419866,0.02831106,96.56789043],[4.5341558,0.02832429,96.56789043]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-5,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"3000480","id":-3,"type":"none","predecessorId":-3,"sOffset":0.0}},{"geometry":{"coordinates":[[[4.53419866,0.02831106,96.56789043],[4.5341982,0.02830933,96.56735559],[4.53419773,0.02830759,96.56680275],[4.53419726,0.02830585,96.56623297],[4.53419679,0.02830411,96.5656473],[4.53419633,0.02830237,96.56504681],[4.53419586,0.02830063,96.56443255],[4.53419539,0.0282989,96.56380558],[4.53419492,0.02829716,96.56316695],[4.53419445,0.02829542,96.56251772],[4.53419398,0.02829368,96.56185896],[4.53419351,0.02829193,96.56119172],[4.53419304,0.02829019,96.56051706],[4.53419257,0.02828845,96.55983603],[4.5341921,0.02828671,96.5591497],[4.53419163,0.02828497,96.55845911],[4.53419116,0.02828323,96.55776534],[4.53419069,0.02828149,96.55706944],[4.53419022,0.02827975,96.55637245],[4.53418975,0.02827801,96.55567544],[4.53418928,0.02827627,96.55497939],[4.53418881,0.02827452,96.55428527],[4.53418834,0.02827278,96.55359407],[4.53418787,0.02827104,96.55290676],[4.5341874,0.0282693,96.55222433],[4.53418693,0.02826756,96.55154775],[4.53418646,0.02826582,96.55087801],[4.53418599,0.02826408,96.55021607],[4.53418552,0.02826233,96.54956292],[4.53418505,0.02826059,96.54891954],[4.53418458,0.02825885,96.54828691],[4.53418411,0.02825711,96.547666],[4.53418364,0.02825536,96.5470578],[4.53418317,0.02825362,96.54646328],[4.5341827,0.02825188,96.54588342],[4.53418223,0.02825013,96.54531921],[4.53418179,0.02824852,96.54481181],[4.53418593,0.02824724,96.55739064],[4.53418637,0.02824885,96.55794187],[4.53418685,0.02825059,96.55855353],[4.53418732,0.02825233,96.55918089],[4.5341878,0.02825407,96.559823],[4.53418827,0.02825581,96.56047886],[4.53418875,0.02825755,96.5611475],[4.53418922,0.02825929,96.56182794],[4.5341897,0.02826103,96.5625192],[4.53419017,0.02826278,96.56322031],[4.53419065,0.02826452,96.56393027],[4.53419112,0.02826626,96.56464812],[4.5341916,0.028268,96.56537288],[4.53419207,0.02826974,96.56610356],[4.53419255,0.02827148,96.56683919],[4.53419302,0.02827322,96.56757878],[4.5341935,0.02827496,96.56832137],[4.53419397,0.0282767,96.56906597],[4.53419445,0.02827844,96.5698116],[4.53419492,0.02828018,96.57055728],[4.5341954,0.02828192,96.57130195],[4.53419587,0.02828366,96.57204456],[4.53419635,0.02828539,96.57278406],[4.53419682,0.02828713,96.57351938],[4.5341973,0.02828887,96.57424947],[4.53419777,0.02829061,96.57497326],[4.53419825,0.02829235,96.57568971],[4.53419872,0.02829409,96.57639776],[4.53419919,0.02829583,96.57709634],[4.53419967,0.02829757,96.57778439],[4.53420014,0.02829931,96.57846087],[4.53420061,0.02830105,96.57912471],[4.53420109,0.02830278,96.57977485],[4.53420156,0.02830452,96.58041024],[4.53420203,0.02830626,96.58102982],[4.5342025,0.028308,96.58163253],[4.53420297,0.02830973,96.58221732],[4.53419866,0.02831106,96.56789043]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-4,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"3000480","id":-2,"type":"shoulder","predecessorId":-2,"sOffset":0.0}},{"geometry":{"coordinates":[[[4.53420297,0.02830973,96.58221732],[4.5342025,0.028308,96.58163253],[4.53420203,0.02830626,96.58102982],[4.53420156,0.02830452,96.58041024],[4.53420109,0.02830278,96.57977485],[4.53420061,0.02830105,96.57912471],[4.53420014,0.02829931,96.57846087],[4.53419967,0.02829757,96.57778439],[4.53419919,0.02829583,96.57709634],[4.53419872,0.02829409,96.57639776],[4.53419825,0.02829235,96.57568971],[4.53419777,0.02829061,96.57497326],[4.5341973,0.02828887,96.57424947],[4.53419682,0.02828713,96.57351938],[4.53419635,0.02828539,96.57278406],[4.53419587,0.02828366,96.57204456],[4.5341954,0.02828192,96.57130195],[4.53419492,0.02828018,96.57055728],[4.53419445,0.02827844,96.5698116],[4.53419397,0.0282767,96.56906597],[4.5341935,0.02827496,96.56832137],[4.53419302,0.02827322,96.56757878],[4.53419255,0.02827148,96.56683919],[4.53419207,0.02826974,96.56610356],[4.5341916,0.028268,96.56537288],[4.53419112,0.02826626,96.56464812],[4.53419065,0.02826452,96.56393027],[4.53419017,0.02826278,96.56322031],[4.5341897,0.02826103,96.5625192],[4.53418922,0.02825929,96.56182794],[4.53418875,0.02825755,96.5611475],[4.53418827,0.02825581,96.56047886],[4.5341878,0.02825407,96.559823],[4.53418732,0.02825233,96.55918089],[4.53418685,0.02825059,96.55855353],[4.53418637,0.02824885,96.55794187],[4.53418593,0.02824724,96.55739064],[4.53421896,0.02823699,96.65765505],[4.53421944,0.02823858,96.658586],[4.53421997,0.02824031,96.65960868],[4.53422049,0.02824203,96.66064783],[4.53422101,0.02824376,96.66170247],[4.53422153,0.02824548,96.66277164],[4.53422205,0.02824721,96.66385434],[4.53422257,0.02824893,96.66494961],[4.5342231,0.02825066,96.66605645],[4.53422362,0.02825238,96.6671739],[4.53422414,0.02825411,96.66830098],[4.53422466,0.02825584,96.6694367],[4.53422519,0.02825756,96.67058009],[4.53422571,0.02825929,96.67173016],[4.53422623,0.02826101,96.67288595],[4.53422675,0.02826274,96.67404646],[4.53422727,0.02826446,96.67521073],[4.5342278,0.02826619,96.67637776],[4.53422832,0.02826792,96.6775466],[4.53422884,0.02826964,96.67871623],[4.53422936,0.02827137,96.67988563],[4.53422989,0.0282731,96.68105373],[4.53423041,0.02827482,96.68221947],[4.53423093,0.02827655,96.6833818],[4.53423145,0.02827828,96.68453965],[4.53423197,0.02828,96.68569198],[4.5342325,0.02828173,96.68683772],[4.53423302,0.02828346,96.68797582],[4.53423354,0.02828518,96.68910521],[4.53423406,0.02828691,96.69022485],[4.53423458,0.02828864,96.69133366],[4.5342351,0.02829037,96.6924306],[4.53423562,0.0282921,96.6935146],[4.53423615,0.02829383,96.69458461],[4.53423667,0.02829556,96.69563957],[4.53423719,0.02829729,96.69667843],[4.53423771,0.02829902,96.69770012],[4.53420297,0.02830973,96.58221732]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"solid","height":0.0}],"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"3000480","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"entry","predecessorId":-1,"sOffset":0.0}},{"geometry":{"coordinates":[[[4.53706545,0.03866439,98.15405543],[4.53706496,0.03866265,98.15443558],[4.53706447,0.03866092,98.1548162],[4.53706398,0.03865918,98.15519727],[4.53706349,0.03865744,98.15557875],[4.537063,0.03865571,98.15596062],[4.53706251,0.03865397,98.15634286],[4.53706203,0.03865223,98.15672544],[4.53706154,0.03865049,98.15710833],[4.53706105,0.03864876,98.15749151],[4.53706056,0.03864702,98.15787495],[4.53706008,0.03864528,98.15825862],[4.53705959,0.03864355,98.15864251],[4.5370591,0.03864181,98.15902659],[4.53705862,0.03864007,98.15941083],[4.53705813,0.03863833,98.15979521],[4.53705765,0.0386366,98.16017971],[4.53705716,0.03863486,98.16056429],[4.53705668,0.03863312,98.16094894],[4.53705619,0.03863138,98.16133364],[4.53705571,0.03862965,98.16171835],[4.53705522,0.03862791,98.16210306],[4.53705474,0.03862617,98.16248774],[4.53705425,0.03862443,98.16287237],[4.53705377,0.0386227,98.16325692],[4.53705328,0.03862096,98.16364138],[4.5370528,0.03861922,98.16402572],[4.53705232,0.03861748,98.16440992],[4.53705183,0.03861574,98.16479395],[4.53705135,0.03861401,98.1651778],[4.53705086,0.03861227,98.16556144],[4.53705038,0.03861053,98.16594485],[4.5370499,0.03860879,98.166328],[4.53704941,0.03860706,98.16671089],[4.53704893,0.03860532,98.16709347],[4.53704845,0.03860358,98.16747574],[4.53704796,0.03860184,98.16785767],[4.53704748,0.0386001,98.16823924],[4.537047,0.03859837,98.16862042],[4.53704651,0.03859663,98.16900121],[4.53704603,0.03859489,98.16938157],[4.53704555,0.03859315,98.16976148],[4.53704506,0.03859141,98.17014093],[4.53704458,0.03858968,98.1705199],[4.5370441,0.03858794,98.17089835],[4.53704361,0.0385862,98.17127628],[4.53704313,0.03858446,98.17165366],[4.53704265,0.03858272,98.17203047],[4.53704216,0.03858099,98.1724067],[4.53704168,0.03857925,98.17278231],[4.53704119,0.03857751,98.17315729],[4.53704071,0.03857577,98.17353162],[4.53704023,0.03857404,98.17390528],[4.53703974,0.0385723,98.17427826],[4.53703926,0.03857056,98.17465052],[4.53703877,0.03856882,98.17502205],[4.53703829,0.03856708,98.17539283],[4.53703781,0.03856535,98.17576284],[4.53703732,0.03856361,98.17613206],[4.53703684,0.03856187,98.17650048],[4.53703635,0.03856013,98.17686806],[4.53703587,0.0385584,98.17723479],[4.53703538,0.03855666,98.1776007],[4.53703489,0.03855492,98.17796584],[4.53703441,0.03855318,98.17833022],[4.53703392,0.03855145,98.17869387],[4.53703344,0.03854971,98.1790568],[4.53703295,0.03854797,98.17941904],[4.53703247,0.03854624,98.1797806],[4.53703198,0.0385445,98.18014149],[4.53703149,0.03854276,98.18050174],[4.53703101,0.03854102,98.18086137],[4.53703052,0.03853929,98.18122039],[4.53703003,0.03853755,98.18157882],[4.53702955,0.03853581,98.18193668],[4.53702906,0.03853408,98.18229398],[4.53702857,0.03853234,98.18265076],[4.53702809,0.0385306,98.18300701],[4.5370276,0.03852886,98.18336277],[4.53702711,0.03852713,98.18371804],[4.53702662,0.03852539,98.18407286],[4.53702614,0.03852365,98.18442723],[4.53702565,0.03852192,98.18478118],[4.53702516,0.03852018,98.18513472],[4.53702468,0.03851844,98.18548788],[4.53702419,0.03851671,98.18584066],[4.5370237,0.03851497,98.1861931],[4.53702321,0.03851323,98.1865452],[4.53702273,0.0385115,98.18689699],[4.53702224,0.03850976,98.18724849],[4.53702175,0.03850802,98.18759972],[4.53702126,0.03850629,98.18795069],[4.53702078,0.03850455,98.18830142],[4.53702029,0.03850281,98.18865193],[4.5370198,0.03850107,98.18900225],[4.53701931,0.03849934,98.18935238],[4.53701883,0.0384976,98.18970236],[4.53701834,0.03849586,98.1900522],[4.53701785,0.03849413,98.19040191],[4.53701737,0.03849239,98.19075153],[4.53701688,0.03849065,98.19110106],[4.53701639,0.03848892,98.19145053],[4.5370159,0.03848718,98.19179996],[4.53701542,0.03848544,98.19214936],[4.53701493,0.03848371,98.19249877],[4.53701444,0.03848197,98.19284819],[4.53701396,0.03848023,98.19319764],[4.53701347,0.03847849,98.19354716],[4.53701298,0.03847676,98.19389675],[4.5370125,0.03847502,98.19424644],[4.53701201,0.03847328,98.19459625],[4.53701152,0.03847155,98.1949462],[4.53701104,0.03846981,98.19529631],[4.53701055,0.03846807,98.19564659],[4.53701007,0.03846633,98.19599708],[4.53700958,0.0384646,98.19634779],[4.53700909,0.03846286,98.19669874],[4.53700861,0.03846112,98.19704996],[4.53700812,0.03845939,98.19740146],[4.53700764,0.03845765,98.19775326],[4.53700715,0.03845591,98.19810538],[4.53700667,0.03845417,98.19845779],[4.53700618,0.03845244,98.19881045],[4.5370057,0.0384507,98.1991633],[4.53700521,0.03844896,98.19951632],[4.53700473,0.03844722,98.19986947],[4.53700424,0.03844549,98.20022269],[4.53700376,0.03844375,98.20057596],[4.53700327,0.03844201,98.20092922],[4.53700279,0.03844027,98.20128244],[4.53700231,0.03843854,98.20163557],[4.53700182,0.0384368,98.2019886],[4.53700134,0.03843506,98.20234153],[4.53700085,0.03843332,98.2026944],[4.53700037,0.03843159,98.20304721],[4.53699988,0.03842985,98.20339999],[4.5369994,0.03842811,98.20375274],[4.53699891,0.03842637,98.20410549],[4.53699843,0.03842464,98.20445825],[4.53699794,0.0384229,98.20481104],[4.53699746,0.03842116,98.20516387],[4.53699697,0.03841942,98.20551677],[4.53699649,0.03841769,98.20586975],[4.536996,0.03841595,98.20622284],[4.53699552,0.03841421,98.20657606],[4.53699503,0.03841247,98.20692943],[4.53699455,0.03841074,98.20728297],[4.53699407,0.038409,98.20763671],[4.53699358,0.03840726,98.20799068],[4.5369931,0.03840552,98.20834489],[4.53699261,0.03840379,98.20869936],[4.53699213,0.03840205,98.20905413],[4.53699164,0.03840031,98.20940921],[4.53699116,0.03839857,98.20976463],[4.53699067,0.03839684,98.21012041],[4.53699019,0.0383951,98.21047657],[4.53698971,0.03839336,98.21083314],[4.53698922,0.03839162,98.21119014],[4.53698874,0.03838989,98.2115476],[4.53698826,0.03838815,98.21190554],[4.53698777,0.03838641,98.21226398],[4.53698729,0.03838467,98.21262295],[4.5369868,0.03838293,98.21298247],[4.53698632,0.0383812,98.21334256],[4.53698584,0.03837946,98.21370326],[4.53698536,0.03837772,98.21406458],[4.53698487,0.03837598,98.21442656],[4.53698439,0.03837425,98.2147892],[4.53698391,0.03837251,98.21515255],[4.53698342,0.03837077,98.21551662],[4.53698294,0.03836903,98.21588144],[4.53698246,0.03836729,98.21624703],[4.53698198,0.03836556,98.21661343],[4.5369815,0.03836382,98.21698064],[4.53698102,0.03836208,98.21734871],[4.53698053,0.03836034,98.21771765],[4.53698005,0.0383586,98.2180875],[4.53697957,0.03835686,98.21845827],[4.53697909,0.03835513,98.21882999],[4.53697861,0.03835339,98.21920269],[4.53697813,0.03835165,98.21957639],[4.53697765,0.03834991,98.21995113],[4.53697717,0.03834817,98.22032696],[4.53697669,0.03834643,98.2207039],[4.53697621,0.03834469,98.22108195],[4.53697573,0.03834296,98.22146109],[4.53697525,0.03834122,98.22184133],[4.53697477,0.03833948,98.22222265],[4.53697429,0.03833774,98.22260505],[4.53697382,0.038336,98.22298852],[4.53697334,0.03833426,98.22337305],[4.53697286,0.03833252,98.22375864],[4.53697238,0.03833078,98.22414527],[4.5369719,0.03832904,98.22453294],[4.53697143,0.03832731,98.22492165],[4.53697095,0.03832557,98.22531139],[4.53697047,0.03832383,98.22570214],[4.53696999,0.03832209,98.22609391],[4.53696952,0.03832035,98.22648668],[4.53696904,0.03831861,98.22688045],[4.53696856,0.03831687,98.22727522],[4.53696809,0.03831513,98.22767096],[4.53696761,0.03831339,98.22806768],[4.53696714,0.03831165,98.22846537],[4.53696666,0.03830991,98.22886403],[4.53696618,0.03830817,98.22926364],[4.53696571,0.03830643,98.22966419],[4.53696523,0.03830469,98.23006569],[4.53696476,0.03830295,98.23046812],[4.53696428,0.03830121,98.23087148],[4.5369638,0.03829947,98.23127576],[4.53696333,0.03829774,98.23168095],[4.53696285,0.038296,98.23208704],[4.53696238,0.03829426,98.23249404],[4.5369619,0.03829252,98.23290192],[4.53696143,0.03829078,98.23331069],[4.53696095,0.03828904,98.23372033],[4.53696048,0.0382873,98.23413085],[4.53696,0.03828556,98.23454222],[4.53695952,0.03828382,98.23495445],[4.53695905,0.03828208,98.23536753],[4.53695857,0.03828034,98.23578145],[4.5369581,0.0382786,98.2361962],[4.53695762,0.03827686,98.23661177],[4.53695715,0.03827512,98.23702817],[4.53695667,0.03827338,98.23744538],[4.5369562,0.03827164,98.23786339],[4.53695572,0.0382699,98.2382822],[4.53695525,0.03826816,98.2387018],[4.53695477,0.03826642,98.23912218],[4.5369543,0.03826468,98.23954333],[4.53695382,0.03826294,98.23996526],[4.53695334,0.0382612,98.24038795],[4.53695287,0.03825946,98.24081139],[4.53695239,0.03825772,98.24123557],[4.53695192,0.03825599,98.2416605],[4.53695144,0.03825425,98.24208615],[4.53695096,0.03825251,98.24251254],[4.53695049,0.03825077,98.24293964],[4.53695001,0.03824903,98.24336745],[4.53694953,0.03824729,98.24379596],[4.53694906,0.03824555,98.24422517],[4.53694858,0.03824381,98.24465506],[4.5369481,0.03824207,98.24508561],[4.53694763,0.03824033,98.2455168],[4.53694715,0.03823859,98.24594863],[4.53694667,0.03823685,98.24638108],[4.53694619,0.03823511,98.24681412],[4.53694572,0.03823337,98.24724774],[4.53694524,0.03823164,98.24768193],[4.53694439,0.03822999,98.246982],[4.53694338,0.03822838,98.24582159],[4.53694238,0.03822677,98.24466079],[4.53694138,0.03822516,98.24349962],[4.53694038,0.03822355,98.24233811],[4.53693937,0.03822194,98.24117629],[4.53693837,0.03822033,98.2400142],[4.53693737,0.03821872,98.23885187],[4.53693636,0.03821711,98.23768932],[4.53693536,0.0382155,98.23652659],[4.53693436,0.03821389,98.23536371],[4.53693336,0.03821228,98.23420073],[4.53693235,0.03821067,98.23303766],[4.53693135,0.03820906,98.23187454],[4.53693035,0.03820744,98.23071142],[4.53692935,0.03820583,98.22954832],[4.53692834,0.03820422,98.22838528],[4.53692734,0.03820261,98.22722234],[4.53692697,0.03820201,98.22678856],[4.53695266,0.03819571,98.3055604],[4.53695282,0.03819637,98.30531617],[4.53695324,0.03819812,98.30466257],[4.53695366,0.03819987,98.30401062],[4.53695408,0.03820163,98.3033603],[4.53695451,0.03820338,98.3027116],[4.53695493,0.03820513,98.30206451],[4.53695535,0.03820688,98.30141902],[4.53695577,0.03820864,98.30077511],[4.5369562,0.03821039,98.30013278],[4.53695662,0.03821214,98.299492],[4.53695704,0.03821389,98.29885277],[4.53695746,0.03821565,98.29821508],[4.53695789,0.0382174,98.29757891],[4.53695831,0.03821915,98.29694425],[4.53695873,0.0382209,98.29631109],[4.53695916,0.03822266,98.29567941],[4.53695958,0.03822441,98.29504921],[4.53696,0.03822616,98.29442048],[4.53696043,0.03822791,98.29379319],[4.53696085,0.03822967,98.29316734],[4.53696127,0.03823142,98.29254291],[4.5369617,0.03823317,98.2919199],[4.53696212,0.03823492,98.29129829],[4.53696255,0.03823668,98.29067807],[4.53696297,0.03823843,98.29005923],[4.53696339,0.03824018,98.28944175],[4.53696382,0.03824193,98.28882562],[4.53696424,0.03824369,98.28821083],[4.53696467,0.03824544,98.28759737],[4.53696509,0.03824719,98.28698522],[4.53696551,0.03824894,98.28637435],[4.53696594,0.03825069,98.28576475],[4.53696636,0.03825245,98.28515639],[4.53696679,0.0382542,98.28454925],[4.53696721,0.03825595,98.28394332],[4.53696763,0.0382577,98.28333857],[4.53696806,0.03825946,98.28273497],[4.53696848,0.03826121,98.28213252],[4.53696891,0.03826296,98.28153118],[4.53696933,0.03826471,98.28093094],[4.53696976,0.03826646,98.28033178],[4.53697018,0.03826822,98.27973367],[4.5369706,0.03826997,98.2791366],[4.53697103,0.03827172,98.27854054],[4.53697145,0.03827347,98.27794547],[4.53697188,0.03827523,98.27735138],[4.5369723,0.03827698,98.27675824],[4.53697273,0.03827873,98.27616603],[4.53697315,0.03828048,98.27557473],[4.53697357,0.03828224,98.27498433],[4.536974,0.03828399,98.27439479],[4.53697442,0.03828574,98.2738061],[4.53697485,0.03828749,98.27321824],[4.53697527,0.03828924,98.27263119],[4.53697569,0.038291,98.27204493],[4.53697612,0.03829275,98.27145944],[4.53697654,0.0382945,98.27087469],[4.53697696,0.03829625,98.27029067],[4.53697739,0.03829801,98.26970736],[4.53697781,0.03829976,98.26912474],[4.53697824,0.03830151,98.26854278],[4.53697866,0.03830326,98.26796147],[4.53697908,0.03830502,98.26738078],[4.5369795,0.03830677,98.26680071],[4.53697993,0.03830852,98.26622121],[4.53698035,0.03831027,98.26564229],[4.53698077,0.03831203,98.26506391],[4.5369812,0.03831378,98.26448606],[4.53698162,0.03831553,98.26390871],[4.53698204,0.03831728,98.26333185],[4.53698246,0.03831904,98.26275546],[4.53698289,0.03832079,98.26217951],[4.53698331,0.03832254,98.26160399],[4.53698373,0.0383243,98.26102888],[4.53698415,0.03832605,98.26045416],[4.53698457,0.0383278,98.2598798],[4.536985,0.03832955,98.25930579],[4.53698542,0.03833131,98.25873211],[4.53698584,0.03833306,98.25815874],[4.53698626,0.03833481,98.25758565],[4.53698668,0.03833657,98.25701284],[4.5369871,0.03833832,98.25644027],[4.53698752,0.03834007,98.25586794],[4.53698794,0.03834183,98.25529582],[4.53698836,0.03834358,98.25472389],[4.53698878,0.03834533,98.25415212],[4.5369892,0.03834709,98.25358052],[4.53698962,0.03834884,98.25300904],[4.53699004,0.03835059,98.25243768],[4.53699046,0.03835235,98.25186646],[4.53699088,0.0383541,98.25129538],[4.5369913,0.03835585,98.25072447],[4.53699172,0.03835761,98.25015375],[4.53699213,0.03835936,98.24958323],[4.53699255,0.03836111,98.24901293],[4.53699297,0.03836287,98.24844286],[4.53699339,0.03836462,98.24787305],[4.53699381,0.03836638,98.24730351],[4.53699423,0.03836813,98.24673427],[4.53699464,0.03836988,98.24616532],[4.53699506,0.03837164,98.24559671],[4.53699548,0.03837339,98.24502843],[4.5369959,0.03837515,98.24446051],[4.53699631,0.0383769,98.24389297],[4.53699673,0.03837865,98.24332582],[4.53699715,0.03838041,98.24275908],[4.53699757,0.03838216,98.24219276],[4.53699798,0.03838392,98.24162689],[4.5369984,0.03838567,98.24106148],[4.53699882,0.03838742,98.24049654],[4.53699923,0.03838918,98.23993209],[4.53699965,0.03839093,98.23936816],[4.53700007,0.03839269,98.23880474],[4.53700049,0.03839444,98.23824187],[4.5370009,0.03839619,98.23767956],[4.53700132,0.03839795,98.23711783],[4.53700174,0.0383997,98.23655668],[4.53700216,0.03840146,98.23599614],[4.53700257,0.03840321,98.23543622],[4.53700299,0.03840496,98.23487694],[4.53700341,0.03840672,98.23431832],[4.53700383,0.03840847,98.23376037],[4.53700424,0.03841022,98.2332031],[4.53700466,0.03841198,98.23264654],[4.53700508,0.03841373,98.23209069],[4.5370055,0.03841549,98.23153558],[4.53700592,0.03841724,98.23098122],[4.53700633,0.03841899,98.23042763],[4.53700675,0.03842075,98.22987482],[4.53700717,0.0384225,98.22932281],[4.53700759,0.03842425,98.22877162],[4.53700801,0.03842601,98.22822128],[4.53700843,0.03842776,98.22767181],[4.53700885,0.03842951,98.22712322],[4.53700927,0.03843127,98.22657554],[4.53700969,0.03843302,98.22602879],[4.53701011,0.03843478,98.22548299],[4.53701053,0.03843653,98.22493816],[4.53701095,0.03843828,98.22439432],[4.53701137,0.03844003,98.2238515],[4.53701179,0.03844179,98.22330971],[4.53701221,0.03844354,98.22276897],[4.53701264,0.03844529,98.2222293],[4.53701306,0.03844705,98.22169072],[4.53701348,0.0384488,98.22115323],[4.5370139,0.03845055,98.22061686],[4.53701433,0.0384523,98.22008162],[4.53701475,0.03845406,98.21954752],[4.53701517,0.03845581,98.21901458],[4.5370156,0.03845756,98.21848281],[4.53701602,0.03845931,98.21795216],[4.53701645,0.03846107,98.21742259],[4.53701687,0.03846282,98.21689406],[4.5370173,0.03846457,98.21636651],[4.53701772,0.03846632,98.2158399],[4.53701815,0.03846807,98.21531419],[4.53701857,0.03846983,98.21478932],[4.537019,0.03847158,98.21426525],[4.53701943,0.03847333,98.21374193],[4.53701985,0.03847508,98.21321932],[4.53702028,0.03847683,98.21269737],[4.53702071,0.03847858,98.21217604],[4.53702114,0.03848034,98.21165528],[4.53702156,0.03848209,98.21113503],[4.53702199,0.03848384,98.21061527],[4.53702242,0.03848559,98.21009594],[4.53702285,0.03848734,98.20957699],[4.53702328,0.03848909,98.20905838],[4.53702371,0.03849084,98.20854006],[4.53702413,0.0384926,98.20802199],[4.53702456,0.03849435,98.20750413],[4.53702499,0.0384961,98.20698642],[4.53702542,0.03849785,98.20646882],[4.53702585,0.0384996,98.20595129],[4.53702628,0.03850135,98.20543378],[4.53702671,0.0385031,98.20491624],[4.53702713,0.03850485,98.20439864],[4.53702756,0.03850661,98.20388092],[4.53702799,0.03850836,98.20336303],[4.53702842,0.03851011,98.20284494],[4.53702885,0.03851186,98.2023266],[4.53702928,0.03851361,98.20180796],[4.53702971,0.03851536,98.20128898],[4.53703013,0.03851711,98.20076961],[4.53703056,0.03851886,98.20024981],[4.53703099,0.03852062,98.19972953],[4.53703142,0.03852237,98.19920873],[4.53703185,0.03852412,98.19868736],[4.53703227,0.03852587,98.19816538],[4.5370327,0.03852762,98.19764273],[4.53703313,0.03852937,98.19711938],[4.53703355,0.03853112,98.19659529],[4.53703398,0.03853288,98.19607039],[4.53703441,0.03853463,98.19554466],[4.53703483,0.03853638,98.19501804],[4.53703526,0.03853813,98.19449049],[4.53703569,0.03853988,98.19396196],[4.53703611,0.03854164,98.19343242],[4.53703654,0.03854339,98.1929018],[4.53703696,0.03854514,98.19237007],[4.53703739,0.03854689,98.19183718],[4.53703781,0.03854864,98.19130308],[4.53703823,0.0385504,98.19076773],[4.53703866,0.03855215,98.19023109],[4.53703908,0.0385539,98.1896931],[4.5370395,0.03855566,98.18915373],[4.53703993,0.03855741,98.18861291],[4.53704035,0.03855916,98.18807062],[4.53704077,0.03856091,98.18752685],[4.53704119,0.03856267,98.18698161],[4.53704161,0.03856442,98.18643496],[4.53704203,0.03856617,98.18588693],[4.53704245,0.03856793,98.18533755],[4.53704287,0.03856968,98.18478685],[4.53704329,0.03857143,98.18423486],[4.53704371,0.03857319,98.18368163],[4.53704413,0.03857494,98.18312719],[4.53704455,0.0385767,98.18257157],[4.53704496,0.03857845,98.1820148],[4.53704538,0.0385802,98.18145693],[4.5370458,0.03858196,98.18089797],[4.53704622,0.03858371,98.18033798],[4.53704663,0.03858546,98.17977697],[4.53704705,0.03858722,98.17921499],[4.53704747,0.03858897,98.17865208],[4.53704788,0.03859073,98.17808825],[4.5370483,0.03859248,98.17752356],[4.53704872,0.03859424,98.17695803],[4.53704913,0.03859599,98.1763917],[4.53704955,0.03859774,98.1758246],[4.53704997,0.0385995,98.17525676],[4.53705038,0.03860125,98.17468823],[4.5370508,0.03860301,98.17411903],[4.53705121,0.03860476,98.17354921],[4.53705163,0.03860652,98.17297879],[4.53705205,0.03860827,98.1724078],[4.53705246,0.03861002,98.1718363],[4.53705288,0.03861178,98.1712643],[4.53705329,0.03861353,98.17069185],[4.53705371,0.03861529,98.17011898],[4.53705413,0.03861704,98.16954572],[4.53705454,0.0386188,98.16897212],[4.53705496,0.03862055,98.1683982],[4.53705537,0.03862231,98.167824],[4.53705579,0.03862406,98.16724957],[4.53705621,0.03862581,98.16667492],[4.53705662,0.03862757,98.16610011],[4.53705704,0.03862932,98.16552516],[4.53705746,0.03863108,98.16495011],[4.53705788,0.03863283,98.164375],[4.53705829,0.03863458,98.16379987],[4.53705871,0.03863634,98.16322475],[4.53705913,0.03863809,98.16264968],[4.53705955,0.03863985,98.1620747],[4.53705997,0.0386416,98.16149984],[4.53706039,0.03864335,98.16092515],[4.53706081,0.03864511,98.16035065],[4.53706123,0.03864686,98.15977639],[4.53706165,0.03864861,98.15920241],[4.53706207,0.03865037,98.15862874],[4.53706249,0.03865212,98.15805543],[4.53706291,0.03865387,98.1574825],[4.53706333,0.03865563,98.15691001],[4.53706375,0.03865738,98.156338],[4.53706418,0.03865913,98.15576649],[4.5370646,0.03866088,98.15519553],[4.53706502,0.03866264,98.15462517],[4.53706545,0.03866439,98.15405543],[4.53706545,0.03866439,98.15405543]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","rules":[{"value":"barred"}],"id":-3,"type":"restricted","predecessorId":0,"sOffset":0.0}},{"geometry":{"coordinates":[[[4.53706545,0.03866439,98.15405543],[4.53706502,0.03866264,98.15462517],[4.5370646,0.03866088,98.15519553],[4.53706418,0.03865913,98.15576649],[4.53706375,0.03865738,98.156338],[4.53706333,0.03865563,98.15691001],[4.53706291,0.03865387,98.1574825],[4.53706249,0.03865212,98.15805543],[4.53706207,0.03865037,98.15862874],[4.53706165,0.03864861,98.15920241],[4.53706123,0.03864686,98.15977639],[4.53706081,0.03864511,98.16035065],[4.53706039,0.03864335,98.16092515],[4.53705997,0.0386416,98.16149984],[4.53705955,0.03863985,98.1620747],[4.53705913,0.03863809,98.16264968],[4.53705871,0.03863634,98.16322475],[4.53705829,0.03863458,98.16379987],[4.53705788,0.03863283,98.164375],[4.53705746,0.03863108,98.16495011],[4.53705704,0.03862932,98.16552516],[4.53705662,0.03862757,98.16610011],[4.53705621,0.03862581,98.16667492],[4.53705579,0.03862406,98.16724957],[4.53705537,0.03862231,98.167824],[4.53705496,0.03862055,98.1683982],[4.53705454,0.0386188,98.16897212],[4.53705413,0.03861704,98.16954572],[4.53705371,0.03861529,98.17011898],[4.53705329,0.03861353,98.17069185],[4.53705288,0.03861178,98.1712643],[4.53705246,0.03861002,98.1718363],[4.53705205,0.03860827,98.1724078],[4.53705163,0.03860652,98.17297879],[4.53705121,0.03860476,98.17354921],[4.5370508,0.03860301,98.17411903],[4.53705038,0.03860125,98.17468823],[4.53704997,0.0385995,98.17525676],[4.53704955,0.03859774,98.1758246],[4.53704913,0.03859599,98.1763917],[4.53704872,0.03859424,98.17695803],[4.5370483,0.03859248,98.17752356],[4.53704788,0.03859073,98.17808825],[4.53704747,0.03858897,98.17865208],[4.53704705,0.03858722,98.17921499],[4.53704663,0.03858546,98.17977697],[4.53704622,0.03858371,98.18033798],[4.5370458,0.03858196,98.18089797],[4.53704538,0.0385802,98.18145693],[4.53704496,0.03857845,98.1820148],[4.53704455,0.0385767,98.18257157],[4.53704413,0.03857494,98.18312719],[4.53704371,0.03857319,98.18368163],[4.53704329,0.03857143,98.18423486],[4.53704287,0.03856968,98.18478685],[4.53704245,0.03856793,98.18533755],[4.53704203,0.03856617,98.18588693],[4.53704161,0.03856442,98.18643496],[4.53704119,0.03856267,98.18698161],[4.53704077,0.03856091,98.18752685],[4.53704035,0.03855916,98.18807062],[4.53703993,0.03855741,98.18861291],[4.5370395,0.03855566,98.18915373],[4.53703908,0.0385539,98.1896931],[4.53703866,0.03855215,98.19023109],[4.53703823,0.0385504,98.19076773],[4.53703781,0.03854864,98.19130308],[4.53703739,0.03854689,98.19183718],[4.53703696,0.03854514,98.19237007],[4.53703654,0.03854339,98.1929018],[4.53703611,0.03854164,98.19343242],[4.53703569,0.03853988,98.19396196],[4.53703526,0.03853813,98.19449049],[4.53703483,0.03853638,98.19501804],[4.53703441,0.03853463,98.19554466],[4.53703398,0.03853288,98.19607039],[4.53703355,0.03853112,98.19659529],[4.53703313,0.03852937,98.19711938],[4.5370327,0.03852762,98.19764273],[4.53703227,0.03852587,98.19816538],[4.53703185,0.03852412,98.19868736],[4.53703142,0.03852237,98.19920873],[4.53703099,0.03852062,98.19972953],[4.53703056,0.03851886,98.20024981],[4.53703013,0.03851711,98.20076961],[4.53702971,0.03851536,98.20128898],[4.53702928,0.03851361,98.20180796],[4.53702885,0.03851186,98.2023266],[4.53702842,0.03851011,98.20284494],[4.53702799,0.03850836,98.20336303],[4.53702756,0.03850661,98.20388092],[4.53702713,0.03850485,98.20439864],[4.53702671,0.0385031,98.20491624],[4.53702628,0.03850135,98.20543378],[4.53702585,0.0384996,98.20595129],[4.53702542,0.03849785,98.20646882],[4.53702499,0.0384961,98.20698642],[4.53702456,0.03849435,98.20750413],[4.53702413,0.0384926,98.20802199],[4.53702371,0.03849084,98.20854006],[4.53702328,0.03848909,98.20905838],[4.53702285,0.03848734,98.20957699],[4.53702242,0.03848559,98.21009594],[4.53702199,0.03848384,98.21061527],[4.53702156,0.03848209,98.21113503],[4.53702114,0.03848034,98.21165528],[4.53702071,0.03847858,98.21217604],[4.53702028,0.03847683,98.21269737],[4.53701985,0.03847508,98.21321932],[4.53701943,0.03847333,98.21374193],[4.537019,0.03847158,98.21426525],[4.53701857,0.03846983,98.21478932],[4.53701815,0.03846807,98.21531419],[4.53701772,0.03846632,98.2158399],[4.5370173,0.03846457,98.21636651],[4.53701687,0.03846282,98.21689406],[4.53701645,0.03846107,98.21742259],[4.53701602,0.03845931,98.21795216],[4.5370156,0.03845756,98.21848281],[4.53701517,0.03845581,98.21901458],[4.53701475,0.03845406,98.21954752],[4.53701433,0.0384523,98.22008162],[4.5370139,0.03845055,98.22061686],[4.53701348,0.0384488,98.22115323],[4.53701306,0.03844705,98.22169072],[4.53701264,0.03844529,98.2222293],[4.53701221,0.03844354,98.22276897],[4.53701179,0.03844179,98.22330971],[4.53701137,0.03844003,98.2238515],[4.53701095,0.03843828,98.22439432],[4.53701053,0.03843653,98.22493816],[4.53701011,0.03843478,98.22548299],[4.53700969,0.03843302,98.22602879],[4.53700927,0.03843127,98.22657554],[4.53700885,0.03842951,98.22712322],[4.53700843,0.03842776,98.22767181],[4.53700801,0.03842601,98.22822128],[4.53700759,0.03842425,98.22877162],[4.53700717,0.0384225,98.22932281],[4.53700675,0.03842075,98.22987482],[4.53700633,0.03841899,98.23042763],[4.53700592,0.03841724,98.23098122],[4.5370055,0.03841549,98.23153558],[4.53700508,0.03841373,98.23209069],[4.53700466,0.03841198,98.23264654],[4.53700424,0.03841022,98.2332031],[4.53700383,0.03840847,98.23376037],[4.53700341,0.03840672,98.23431832],[4.53700299,0.03840496,98.23487694],[4.53700257,0.03840321,98.23543622],[4.53700216,0.03840146,98.23599614],[4.53700174,0.0383997,98.23655668],[4.53700132,0.03839795,98.23711783],[4.5370009,0.03839619,98.23767956],[4.53700049,0.03839444,98.23824187],[4.53700007,0.03839269,98.23880474],[4.53699965,0.03839093,98.23936816],[4.53699923,0.03838918,98.23993209],[4.53699882,0.03838742,98.24049654],[4.5369984,0.03838567,98.24106148],[4.53699798,0.03838392,98.24162689],[4.53699757,0.03838216,98.24219276],[4.53699715,0.03838041,98.24275908],[4.53699673,0.03837865,98.24332582],[4.53699631,0.0383769,98.24389297],[4.5369959,0.03837515,98.24446051],[4.53699548,0.03837339,98.24502843],[4.53699506,0.03837164,98.24559671],[4.53699464,0.03836988,98.24616532],[4.53699423,0.03836813,98.24673427],[4.53699381,0.03836638,98.24730351],[4.53699339,0.03836462,98.24787305],[4.53699297,0.03836287,98.24844286],[4.53699255,0.03836111,98.24901293],[4.53699213,0.03835936,98.24958323],[4.53699172,0.03835761,98.25015375],[4.5369913,0.03835585,98.25072447],[4.53699088,0.0383541,98.25129538],[4.53699046,0.03835235,98.25186646],[4.53699004,0.03835059,98.25243768],[4.53698962,0.03834884,98.25300904],[4.5369892,0.03834709,98.25358052],[4.53698878,0.03834533,98.25415212],[4.53698836,0.03834358,98.25472389],[4.53698794,0.03834183,98.25529582],[4.53698752,0.03834007,98.25586794],[4.5369871,0.03833832,98.25644027],[4.53698668,0.03833657,98.25701284],[4.53698626,0.03833481,98.25758565],[4.53698584,0.03833306,98.25815874],[4.53698542,0.03833131,98.25873211],[4.536985,0.03832955,98.25930579],[4.53698457,0.0383278,98.2598798],[4.53698415,0.03832605,98.26045416],[4.53698373,0.0383243,98.26102888],[4.53698331,0.03832254,98.26160399],[4.53698289,0.03832079,98.26217951],[4.53698246,0.03831904,98.26275546],[4.53698204,0.03831728,98.26333185],[4.53698162,0.03831553,98.26390871],[4.5369812,0.03831378,98.26448606],[4.53698077,0.03831203,98.26506391],[4.53698035,0.03831027,98.26564229],[4.53697993,0.03830852,98.26622121],[4.5369795,0.03830677,98.26680071],[4.53697908,0.03830502,98.26738078],[4.53697866,0.03830326,98.26796147],[4.53697824,0.03830151,98.26854278],[4.53697781,0.03829976,98.26912474],[4.53697739,0.03829801,98.26970736],[4.53697696,0.03829625,98.27029067],[4.53697654,0.0382945,98.27087469],[4.53697612,0.03829275,98.27145944],[4.53697569,0.038291,98.27204493],[4.53697527,0.03828924,98.27263119],[4.53697485,0.03828749,98.27321824],[4.53697442,0.03828574,98.2738061],[4.536974,0.03828399,98.27439479],[4.53697357,0.03828224,98.27498433],[4.53697315,0.03828048,98.27557473],[4.53697273,0.03827873,98.27616603],[4.5369723,0.03827698,98.27675824],[4.53697188,0.03827523,98.27735138],[4.53697145,0.03827347,98.27794547],[4.53697103,0.03827172,98.27854054],[4.5369706,0.03826997,98.2791366],[4.53697018,0.03826822,98.27973367],[4.53696976,0.03826646,98.28033178],[4.53696933,0.03826471,98.28093094],[4.53696891,0.03826296,98.28153118],[4.53696848,0.03826121,98.28213252],[4.53696806,0.03825946,98.28273497],[4.53696763,0.0382577,98.28333857],[4.53696721,0.03825595,98.28394332],[4.53696679,0.0382542,98.28454925],[4.53696636,0.03825245,98.28515639],[4.53696594,0.03825069,98.28576475],[4.53696551,0.03824894,98.28637435],[4.53696509,0.03824719,98.28698522],[4.53696467,0.03824544,98.28759737],[4.53696424,0.03824369,98.28821083],[4.53696382,0.03824193,98.28882562],[4.53696339,0.03824018,98.28944175],[4.53696297,0.03823843,98.29005923],[4.53696255,0.03823668,98.29067807],[4.53696212,0.03823492,98.29129829],[4.5369617,0.03823317,98.2919199],[4.53696127,0.03823142,98.29254291],[4.53696085,0.03822967,98.29316734],[4.53696043,0.03822791,98.29379319],[4.53696,0.03822616,98.29442048],[4.53695958,0.03822441,98.29504921],[4.53695916,0.03822266,98.29567941],[4.53695873,0.0382209,98.29631109],[4.53695831,0.03821915,98.29694425],[4.53695789,0.0382174,98.29757891],[4.53695746,0.03821565,98.29821508],[4.53695704,0.03821389,98.29885277],[4.53695662,0.03821214,98.299492],[4.5369562,0.03821039,98.30013278],[4.53695577,0.03820864,98.30077511],[4.53695535,0.03820688,98.30141902],[4.53695493,0.03820513,98.30206451],[4.53695451,0.03820338,98.3027116],[4.53695408,0.03820163,98.3033603],[4.53695366,0.03819987,98.30401062],[4.53695324,0.03819812,98.30466257],[4.53695282,0.03819637,98.30531617],[4.53695266,0.03819571,98.3055604],[4.53698443,0.03818792,98.40298773],[4.53698459,0.03818858,98.40272516],[4.53698501,0.03819033,98.40202188],[4.53698543,0.03819208,98.40131948],[4.53698586,0.03819384,98.40061798],[4.53698628,0.03819559,98.39991737],[4.5369867,0.03819734,98.39921767],[4.53698712,0.0381991,98.39851889],[4.53698754,0.03820085,98.39782102],[4.53698797,0.0382026,98.39712409],[4.53698839,0.03820435,98.39642808],[4.53698881,0.03820611,98.39573302],[4.53698923,0.03820786,98.3950389],[4.53698965,0.03820961,98.39434574],[4.53699008,0.03821137,98.39365354],[4.5369905,0.03821312,98.39296231],[4.53699092,0.03821487,98.39227205],[4.53699134,0.03821663,98.39158278],[4.53699176,0.03821838,98.39089449],[4.53699219,0.03822013,98.3902072],[4.53699261,0.03822189,98.38952091],[4.53699303,0.03822364,98.38883563],[4.53699345,0.03822539,98.38815136],[4.53699387,0.03822714,98.38746812],[4.53699429,0.0382289,98.3867859],[4.53699472,0.03823065,98.38610472],[4.53699514,0.0382324,98.38542458],[4.53699556,0.03823416,98.38474548],[4.53699598,0.03823591,98.38406744],[4.5369964,0.03823766,98.38339046],[4.53699683,0.03823942,98.38271454],[4.53699725,0.03824117,98.38203967],[4.53699767,0.03824292,98.38136586],[4.53699809,0.03824468,98.38069309],[4.53699851,0.03824643,98.38002138],[4.53699894,0.03824818,98.37935071],[4.53699936,0.03824993,98.37868108],[4.53699978,0.03825169,98.37801249],[4.5370002,0.03825344,98.37734494],[4.53700062,0.03825519,98.37667843],[4.53700105,0.03825695,98.37601295],[4.53700147,0.0382587,98.3753485],[4.53700189,0.03826045,98.37468507],[4.53700231,0.03826221,98.37402267],[4.53700273,0.03826396,98.3733613],[4.53700316,0.03826571,98.37270094],[4.53700358,0.03826747,98.3720416],[4.537004,0.03826922,98.37138327],[4.53700442,0.03827097,98.37072596],[4.53700484,0.03827272,98.37006965],[4.53700527,0.03827448,98.36941436],[4.53700569,0.03827623,98.36876007],[4.53700611,0.03827798,98.36810677],[4.53700653,0.03827974,98.36745448],[4.53700696,0.03828149,98.36680319],[4.53700738,0.03828324,98.36615289],[4.5370078,0.038285,98.36550358],[4.53700822,0.03828675,98.36485526],[4.53700865,0.0382885,98.36420793],[4.53700907,0.03829025,98.36356158],[4.53700949,0.03829201,98.36291621],[4.53700991,0.03829376,98.36227182],[4.53701033,0.03829551,98.36162841],[4.53701076,0.03829727,98.36098597],[4.53701118,0.03829902,98.36034451],[4.5370116,0.03830077,98.35970401],[4.53701202,0.03830253,98.35906448],[4.53701245,0.03830428,98.35842591],[4.53701287,0.03830603,98.3577883],[4.53701329,0.03830778,98.35715165],[4.53701371,0.03830954,98.35651596],[4.53701414,0.03831129,98.35588122],[4.53701456,0.03831304,98.35524743],[4.53701498,0.0383148,98.3546146],[4.5370154,0.03831655,98.3539827],[4.53701583,0.0383183,98.35335175],[4.53701625,0.03832005,98.35272174],[4.53701667,0.03832181,98.35209267],[4.53701709,0.03832356,98.35146454],[4.53701752,0.03832531,98.35083734],[4.53701794,0.03832707,98.35021107],[4.53701836,0.03832882,98.34958572],[4.53701878,0.03833057,98.34896131],[4.53701921,0.03833233,98.34833782],[4.53701963,0.03833408,98.34771524],[4.53702005,0.03833583,98.34709359],[4.53702047,0.03833758,98.34647285],[4.5370209,0.03833934,98.34585303],[4.53702132,0.03834109,98.34523411],[4.53702174,0.03834284,98.34461611],[4.53702217,0.0383446,98.34399901],[4.53702259,0.03834635,98.34338281],[4.53702301,0.0383481,98.34276751],[4.53702343,0.03834985,98.34215312],[4.53702386,0.03835161,98.34153961],[4.53702428,0.03835336,98.340927],[4.5370247,0.03835511,98.34031529],[4.53702512,0.03835687,98.33970446],[4.53702555,0.03835862,98.33909451],[4.53702597,0.03836037,98.33848545],[4.53702639,0.03836213,98.33787727],[4.53702681,0.03836388,98.33726997],[4.53702724,0.03836563,98.33666355],[4.53702766,0.03836738,98.336058],[4.53702808,0.03836914,98.33545332],[4.53702851,0.03837089,98.33484951],[4.53702893,0.03837264,98.33424656],[4.53702935,0.0383744,98.33364448],[4.53702977,0.03837615,98.33304326],[4.5370302,0.0383779,98.3324429],[4.53703062,0.03837965,98.33184339],[4.53703104,0.03838141,98.33124474],[4.53703146,0.03838316,98.33064694],[4.53703189,0.03838491,98.33004999],[4.53703231,0.03838667,98.32945388],[4.53703273,0.03838842,98.32885862],[4.53703316,0.03839017,98.32826421],[4.53703358,0.03839192,98.32767063],[4.537034,0.03839368,98.32707788],[4.53703442,0.03839543,98.32648597],[4.53703485,0.03839718,98.3258949],[4.53703527,0.03839894,98.32530465],[4.53703569,0.03840069,98.32471523],[4.53703611,0.03840244,98.32412664],[4.53703654,0.03840419,98.32353886],[4.53703696,0.03840595,98.32295191],[4.53703738,0.0384077,98.32236578],[4.53703781,0.03840945,98.32178046],[4.53703823,0.03841121,98.32119595],[4.53703865,0.03841296,98.32061225],[4.53703907,0.03841471,98.32002937],[4.5370395,0.03841647,98.3194473],[4.53703992,0.03841822,98.31886606],[4.53704034,0.03841997,98.31828563],[4.53704076,0.03842172,98.31770603],[4.53704119,0.03842348,98.31712727],[4.53704161,0.03842523,98.31654933],[4.53704203,0.03842698,98.31597223],[4.53704246,0.03842874,98.31539596],[4.53704288,0.03843049,98.31482054],[4.5370433,0.03843224,98.31424597],[4.53704372,0.03843399,98.31367224],[4.53704415,0.03843575,98.31309936],[4.53704457,0.0384375,98.31252733],[4.53704499,0.03843925,98.31195614],[4.53704541,0.03844101,98.3113858],[4.53704584,0.03844276,98.3108163],[4.53704626,0.03844451,98.31024763],[4.53704668,0.03844626,98.3096798],[4.53704711,0.03844802,98.3091128],[4.53704753,0.03844977,98.30854663],[4.53704795,0.03845152,98.30798128],[4.53704838,0.03845328,98.30741676],[4.5370488,0.03845503,98.30685306],[4.53704922,0.03845678,98.30629017],[4.53704965,0.03845853,98.30572811],[4.53705007,0.03846029,98.30516685],[4.53705049,0.03846204,98.3046064],[4.53705091,0.03846379,98.30404677],[4.53705134,0.03846555,98.30348793],[4.53705176,0.0384673,98.3029299],[4.53705218,0.03846905,98.30237267],[4.53705261,0.0384708,98.30181623],[4.53705303,0.03847256,98.30126059],[4.53705345,0.03847431,98.30070574],[4.53705388,0.03847606,98.30015168],[4.5370543,0.03847781,98.2995984],[4.53705472,0.03847957,98.29904591],[4.53705515,0.03848132,98.2984942],[4.53705557,0.03848307,98.29794327],[4.53705599,0.03848483,98.29739311],[4.53705642,0.03848658,98.29684372],[4.53705684,0.03848833,98.29629511],[4.53705726,0.03849008,98.29574726],[4.53705769,0.03849184,98.29520018],[4.53705811,0.03849359,98.29465386],[4.53705853,0.03849534,98.2941083],[4.53705896,0.0384971,98.2935635],[4.53705938,0.03849885,98.29301945],[4.5370598,0.0385006,98.29247615],[4.53706023,0.03850235,98.29193361],[4.53706065,0.03850411,98.29139181],[4.53706107,0.03850586,98.29085076],[4.5370615,0.03850761,98.29031044],[4.53706192,0.03850936,98.28977087],[4.53706234,0.03851112,98.28923204],[4.53706277,0.03851287,98.28869393],[4.53706319,0.03851462,98.28815656],[4.53706361,0.03851638,98.28761992],[4.53706404,0.03851813,98.28708401],[4.53706446,0.03851988,98.28654882],[4.53706488,0.03852163,98.28601435],[4.53706531,0.03852339,98.2854806],[4.53706573,0.03852514,98.28494757],[4.53706616,0.03852689,98.28441526],[4.53706658,0.03852864,98.28388365],[4.537067,0.0385304,98.28335275],[4.53706743,0.03853215,98.28282256],[4.53706785,0.0385339,98.28229308],[4.53706827,0.03853566,98.28176429],[4.5370687,0.03853741,98.28123621],[4.53706912,0.03853916,98.28070882],[4.53706954,0.03854091,98.28018213],[4.53706997,0.03854267,98.27965612],[4.53707039,0.03854442,98.27913081],[4.53707081,0.03854617,98.27860619],[4.53707124,0.03854792,98.27808225],[4.53707166,0.03854968,98.27755899],[4.53707208,0.03855143,98.27703641],[4.53707251,0.03855318,98.2765145],[4.53707293,0.03855494,98.27599328],[4.53707335,0.03855669,98.27547272],[4.53707378,0.03855844,98.27495284],[4.5370742,0.03856019,98.27443362],[4.53707463,0.03856195,98.27391506],[4.53707505,0.0385637,98.27339717],[4.53707547,0.03856545,98.27287994],[4.5370759,0.0385672,98.27236337],[4.53707632,0.03856896,98.27184745],[4.53707674,0.03857071,98.27133218],[4.53707717,0.03857246,98.27081757],[4.53707759,0.03857422,98.2703036],[4.53707801,0.03857597,98.26979028],[4.53707844,0.03857772,98.2692776],[4.53707886,0.03857947,98.26876556],[4.53707928,0.03858123,98.26825417],[4.53707971,0.03858298,98.2677434],[4.53708013,0.03858473,98.26723327],[4.53708055,0.03858648,98.26672377],[4.53708098,0.03858824,98.2662149],[4.5370814,0.03858999,98.26570666],[4.53708182,0.03859174,98.26519904],[4.53708225,0.0385935,98.26469204],[4.53708267,0.03859525,98.26418566],[4.53708309,0.038597,98.2636799],[4.53708352,0.03859875,98.26317475],[4.53708394,0.03860051,98.26267021],[4.53708436,0.03860226,98.26216628],[4.53708479,0.03860401,98.26166296],[4.53708521,0.03860576,98.26116025],[4.53708563,0.03860752,98.26065813],[4.53708606,0.03860927,98.26015662],[4.53708648,0.03861102,98.2596557],[4.5370869,0.03861278,98.25915538],[4.53708733,0.03861453,98.25865565],[4.53708775,0.03861628,98.25815651],[4.53708817,0.03861803,98.25765796],[4.5370886,0.03861979,98.25716],[4.53708902,0.03862154,98.25666262],[4.53708944,0.03862329,98.25616581],[4.53708987,0.03862505,98.25566959],[4.53709029,0.0386268,98.25517394],[4.53709071,0.03862855,98.25467887],[4.53709114,0.0386303,98.25418437],[4.53709156,0.03863206,98.25369043],[4.53709198,0.03863381,98.25319706],[4.53709241,0.03863556,98.25270426],[4.53709283,0.03863732,98.25221202],[4.53709325,0.03863907,98.25172033],[4.53709368,0.03864082,98.2512292],[4.5370941,0.03864257,98.25073863],[4.53709452,0.03864433,98.25024861],[4.53709495,0.03864608,98.24975913],[4.53709537,0.03864783,98.24927021],[4.53709579,0.03864958,98.24878183],[4.53709621,0.03865134,98.24829399],[4.53709664,0.03865309,98.24780668],[4.53709706,0.03865484,98.24731992],[4.53709748,0.0386566,98.24683369],[4.53706545,0.03866439,98.15405543]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":0,"sOffset":0.0}},{"geometry":{"coordinates":[[[4.53709748,0.0386566,98.24683369],[4.53709706,0.03865484,98.24731992],[4.53709664,0.03865309,98.24780668],[4.53709621,0.03865134,98.24829399],[4.53709579,0.03864958,98.24878183],[4.53709537,0.03864783,98.24927021],[4.53709495,0.03864608,98.24975913],[4.53709452,0.03864433,98.25024861],[4.5370941,0.03864257,98.25073863],[4.53709368,0.03864082,98.2512292],[4.53709325,0.03863907,98.25172033],[4.53709283,0.03863732,98.25221202],[4.53709241,0.03863556,98.25270426],[4.53709198,0.03863381,98.25319706],[4.53709156,0.03863206,98.25369043],[4.53709114,0.0386303,98.25418437],[4.53709071,0.03862855,98.25467887],[4.53709029,0.0386268,98.25517394],[4.53708987,0.03862505,98.25566959],[4.53708944,0.03862329,98.25616581],[4.53708902,0.03862154,98.25666262],[4.5370886,0.03861979,98.25716],[4.53708817,0.03861803,98.25765796],[4.53708775,0.03861628,98.25815651],[4.53708733,0.03861453,98.25865565],[4.5370869,0.03861278,98.25915538],[4.53708648,0.03861102,98.2596557],[4.53708606,0.03860927,98.26015662],[4.53708563,0.03860752,98.26065813],[4.53708521,0.03860576,98.26116025],[4.53708479,0.03860401,98.26166296],[4.53708436,0.03860226,98.26216628],[4.53708394,0.03860051,98.26267021],[4.53708352,0.03859875,98.26317475],[4.53708309,0.038597,98.2636799],[4.53708267,0.03859525,98.26418566],[4.53708225,0.0385935,98.26469204],[4.53708182,0.03859174,98.26519904],[4.5370814,0.03858999,98.26570666],[4.53708098,0.03858824,98.2662149],[4.53708055,0.03858648,98.26672377],[4.53708013,0.03858473,98.26723327],[4.53707971,0.03858298,98.2677434],[4.53707928,0.03858123,98.26825417],[4.53707886,0.03857947,98.26876556],[4.53707844,0.03857772,98.2692776],[4.53707801,0.03857597,98.26979028],[4.53707759,0.03857422,98.2703036],[4.53707717,0.03857246,98.27081757],[4.53707674,0.03857071,98.27133218],[4.53707632,0.03856896,98.27184745],[4.5370759,0.0385672,98.27236337],[4.53707547,0.03856545,98.27287994],[4.53707505,0.0385637,98.27339717],[4.53707463,0.03856195,98.27391506],[4.5370742,0.03856019,98.27443362],[4.53707378,0.03855844,98.27495284],[4.53707335,0.03855669,98.27547272],[4.53707293,0.03855494,98.27599328],[4.53707251,0.03855318,98.2765145],[4.53707208,0.03855143,98.27703641],[4.53707166,0.03854968,98.27755899],[4.53707124,0.03854792,98.27808225],[4.53707081,0.03854617,98.27860619],[4.53707039,0.03854442,98.27913081],[4.53706997,0.03854267,98.27965612],[4.53706954,0.03854091,98.28018213],[4.53706912,0.03853916,98.28070882],[4.5370687,0.03853741,98.28123621],[4.53706827,0.03853566,98.28176429],[4.53706785,0.0385339,98.28229308],[4.53706743,0.03853215,98.28282256],[4.537067,0.0385304,98.28335275],[4.53706658,0.03852864,98.28388365],[4.53706616,0.03852689,98.28441526],[4.53706573,0.03852514,98.28494757],[4.53706531,0.03852339,98.2854806],[4.53706488,0.03852163,98.28601435],[4.53706446,0.03851988,98.28654882],[4.53706404,0.03851813,98.28708401],[4.53706361,0.03851638,98.28761992],[4.53706319,0.03851462,98.28815656],[4.53706277,0.03851287,98.28869393],[4.53706234,0.03851112,98.28923204],[4.53706192,0.03850936,98.28977087],[4.5370615,0.03850761,98.29031044],[4.53706107,0.03850586,98.29085076],[4.53706065,0.03850411,98.29139181],[4.53706023,0.03850235,98.29193361],[4.5370598,0.0385006,98.29247615],[4.53705938,0.03849885,98.29301945],[4.53705896,0.0384971,98.2935635],[4.53705853,0.03849534,98.2941083],[4.53705811,0.03849359,98.29465386],[4.53705769,0.03849184,98.29520018],[4.53705726,0.03849008,98.29574726],[4.53705684,0.03848833,98.29629511],[4.53705642,0.03848658,98.29684372],[4.53705599,0.03848483,98.29739311],[4.53705557,0.03848307,98.29794327],[4.53705515,0.03848132,98.2984942],[4.53705472,0.03847957,98.29904591],[4.5370543,0.03847781,98.2995984],[4.53705388,0.03847606,98.30015168],[4.53705345,0.03847431,98.30070574],[4.53705303,0.03847256,98.30126059],[4.53705261,0.0384708,98.30181623],[4.53705218,0.03846905,98.30237267],[4.53705176,0.0384673,98.3029299],[4.53705134,0.03846555,98.30348793],[4.53705091,0.03846379,98.30404677],[4.53705049,0.03846204,98.3046064],[4.53705007,0.03846029,98.30516685],[4.53704965,0.03845853,98.30572811],[4.53704922,0.03845678,98.30629017],[4.5370488,0.03845503,98.30685306],[4.53704838,0.03845328,98.30741676],[4.53704795,0.03845152,98.30798128],[4.53704753,0.03844977,98.30854663],[4.53704711,0.03844802,98.3091128],[4.53704668,0.03844626,98.3096798],[4.53704626,0.03844451,98.31024763],[4.53704584,0.03844276,98.3108163],[4.53704541,0.03844101,98.3113858],[4.53704499,0.03843925,98.31195614],[4.53704457,0.0384375,98.31252733],[4.53704415,0.03843575,98.31309936],[4.53704372,0.03843399,98.31367224],[4.5370433,0.03843224,98.31424597],[4.53704288,0.03843049,98.31482054],[4.53704246,0.03842874,98.31539596],[4.53704203,0.03842698,98.31597223],[4.53704161,0.03842523,98.31654933],[4.53704119,0.03842348,98.31712727],[4.53704076,0.03842172,98.31770603],[4.53704034,0.03841997,98.31828563],[4.53703992,0.03841822,98.31886606],[4.5370395,0.03841647,98.3194473],[4.53703907,0.03841471,98.32002937],[4.53703865,0.03841296,98.32061225],[4.53703823,0.03841121,98.32119595],[4.53703781,0.03840945,98.32178046],[4.53703738,0.0384077,98.32236578],[4.53703696,0.03840595,98.32295191],[4.53703654,0.03840419,98.32353886],[4.53703611,0.03840244,98.32412664],[4.53703569,0.03840069,98.32471523],[4.53703527,0.03839894,98.32530465],[4.53703485,0.03839718,98.3258949],[4.53703442,0.03839543,98.32648597],[4.537034,0.03839368,98.32707788],[4.53703358,0.03839192,98.32767063],[4.53703316,0.03839017,98.32826421],[4.53703273,0.03838842,98.32885862],[4.53703231,0.03838667,98.32945388],[4.53703189,0.03838491,98.33004999],[4.53703146,0.03838316,98.33064694],[4.53703104,0.03838141,98.33124474],[4.53703062,0.03837965,98.33184339],[4.5370302,0.0383779,98.3324429],[4.53702977,0.03837615,98.33304326],[4.53702935,0.0383744,98.33364448],[4.53702893,0.03837264,98.33424656],[4.53702851,0.03837089,98.33484951],[4.53702808,0.03836914,98.33545332],[4.53702766,0.03836738,98.336058],[4.53702724,0.03836563,98.33666355],[4.53702681,0.03836388,98.33726997],[4.53702639,0.03836213,98.33787727],[4.53702597,0.03836037,98.33848545],[4.53702555,0.03835862,98.33909451],[4.53702512,0.03835687,98.33970446],[4.5370247,0.03835511,98.34031529],[4.53702428,0.03835336,98.340927],[4.53702386,0.03835161,98.34153961],[4.53702343,0.03834985,98.34215312],[4.53702301,0.0383481,98.34276751],[4.53702259,0.03834635,98.34338281],[4.53702217,0.0383446,98.34399901],[4.53702174,0.03834284,98.34461611],[4.53702132,0.03834109,98.34523411],[4.5370209,0.03833934,98.34585303],[4.53702047,0.03833758,98.34647285],[4.53702005,0.03833583,98.34709359],[4.53701963,0.03833408,98.34771524],[4.53701921,0.03833233,98.34833782],[4.53701878,0.03833057,98.34896131],[4.53701836,0.03832882,98.34958572],[4.53701794,0.03832707,98.35021107],[4.53701752,0.03832531,98.35083734],[4.53701709,0.03832356,98.35146454],[4.53701667,0.03832181,98.35209267],[4.53701625,0.03832005,98.35272174],[4.53701583,0.0383183,98.35335175],[4.5370154,0.03831655,98.3539827],[4.53701498,0.0383148,98.3546146],[4.53701456,0.03831304,98.35524743],[4.53701414,0.03831129,98.35588122],[4.53701371,0.03830954,98.35651596],[4.53701329,0.03830778,98.35715165],[4.53701287,0.03830603,98.3577883],[4.53701245,0.03830428,98.35842591],[4.53701202,0.03830253,98.35906448],[4.5370116,0.03830077,98.35970401],[4.53701118,0.03829902,98.36034451],[4.53701076,0.03829727,98.36098597],[4.53701033,0.03829551,98.36162841],[4.53700991,0.03829376,98.36227182],[4.53700949,0.03829201,98.36291621],[4.53700907,0.03829025,98.36356158],[4.53700865,0.0382885,98.36420793],[4.53700822,0.03828675,98.36485526],[4.5370078,0.038285,98.36550358],[4.53700738,0.03828324,98.36615289],[4.53700696,0.03828149,98.36680319],[4.53700653,0.03827974,98.36745448],[4.53700611,0.03827798,98.36810677],[4.53700569,0.03827623,98.36876007],[4.53700527,0.03827448,98.36941436],[4.53700484,0.03827272,98.37006965],[4.53700442,0.03827097,98.37072596],[4.537004,0.03826922,98.37138327],[4.53700358,0.03826747,98.3720416],[4.53700316,0.03826571,98.37270094],[4.53700273,0.03826396,98.3733613],[4.53700231,0.03826221,98.37402267],[4.53700189,0.03826045,98.37468507],[4.53700147,0.0382587,98.3753485],[4.53700105,0.03825695,98.37601295],[4.53700062,0.03825519,98.37667843],[4.5370002,0.03825344,98.37734494],[4.53699978,0.03825169,98.37801249],[4.53699936,0.03824993,98.37868108],[4.53699894,0.03824818,98.37935071],[4.53699851,0.03824643,98.38002138],[4.53699809,0.03824468,98.38069309],[4.53699767,0.03824292,98.38136586],[4.53699725,0.03824117,98.38203967],[4.53699683,0.03823942,98.38271454],[4.5369964,0.03823766,98.38339046],[4.53699598,0.03823591,98.38406744],[4.53699556,0.03823416,98.38474548],[4.53699514,0.0382324,98.38542458],[4.53699472,0.03823065,98.38610472],[4.53699429,0.0382289,98.3867859],[4.53699387,0.03822714,98.38746812],[4.53699345,0.03822539,98.38815136],[4.53699303,0.03822364,98.38883563],[4.53699261,0.03822189,98.38952091],[4.53699219,0.03822013,98.3902072],[4.53699176,0.03821838,98.39089449],[4.53699134,0.03821663,98.39158278],[4.53699092,0.03821487,98.39227205],[4.5369905,0.03821312,98.39296231],[4.53699008,0.03821137,98.39365354],[4.53698965,0.03820961,98.39434574],[4.53698923,0.03820786,98.3950389],[4.53698881,0.03820611,98.39573302],[4.53698839,0.03820435,98.39642808],[4.53698797,0.0382026,98.39712409],[4.53698754,0.03820085,98.39782102],[4.53698712,0.0381991,98.39851889],[4.5369867,0.03819734,98.39921767],[4.53698628,0.03819559,98.39991737],[4.53698586,0.03819384,98.40061798],[4.53698543,0.03819208,98.40131948],[4.53698501,0.03819033,98.40202188],[4.53698459,0.03818858,98.40272516],[4.53698443,0.03818792,98.40298773],[4.53701537,0.03818034,98.49786762],[4.53701553,0.03818099,98.4975873],[4.53701595,0.03818274,98.49683634],[4.53701638,0.0381845,98.49608612],[4.5370168,0.03818625,98.49533665],[4.53701722,0.038188,98.49458794],[4.53701764,0.03818976,98.49384],[4.53701807,0.03819151,98.49309284],[4.53701849,0.03819326,98.49234647],[4.53701891,0.03819502,98.49160091],[4.53701934,0.03819677,98.49085615],[4.53701976,0.03819852,98.49011222],[4.53702018,0.03820027,98.48936912],[4.5370206,0.03820203,98.48862685],[4.53702103,0.03820378,98.48788544],[4.53702145,0.03820553,98.48714489],[4.53702187,0.03820729,98.48640521],[4.5370223,0.03820904,98.48566641],[4.53702272,0.03821079,98.4849285],[4.53702314,0.03821255,98.48419148],[4.53702357,0.0382143,98.48345538],[4.53702399,0.03821605,98.4827202],[4.53702441,0.03821781,98.48198595],[4.53702484,0.03821956,98.48125263],[4.53702526,0.03822131,98.48052027],[4.53702568,0.03822306,98.47978886],[4.53702611,0.03822482,98.47905842],[4.53702653,0.03822657,98.47832896],[4.53702695,0.03822832,98.47760049],[4.53702738,0.03823008,98.47687301],[4.5370278,0.03823183,98.47614653],[4.53702822,0.03823358,98.47542105],[4.53702865,0.03823534,98.47469656],[4.53702907,0.03823709,98.47397308],[4.5370295,0.03823884,98.4732506],[4.53702992,0.03824059,98.47252912],[4.53703034,0.03824235,98.47180864],[4.53703077,0.0382441,98.47108916],[4.53703119,0.03824585,98.47037069],[4.53703162,0.03824761,98.46965322],[4.53703204,0.03824936,98.46893675],[4.53703246,0.03825111,98.46822129],[4.53703289,0.03825286,98.46750684],[4.53703331,0.03825462,98.46679339],[4.53703374,0.03825637,98.46608095],[4.53703416,0.03825812,98.46536952],[4.53703459,0.03825987,98.4646591],[4.53703501,0.03826163,98.46394969],[4.53703543,0.03826338,98.46324129],[4.53703586,0.03826513,98.4625339],[4.53703628,0.03826689,98.46182752],[4.53703671,0.03826864,98.46112216],[4.53703713,0.03827039,98.46041781],[4.53703756,0.03827214,98.45971447],[4.53703798,0.0382739,98.45901215],[4.53703841,0.03827565,98.45831085],[4.53703883,0.0382774,98.45761056],[4.53703926,0.03827915,98.45691129],[4.53703968,0.03828091,98.45621304],[4.53704011,0.03828266,98.45551581],[4.53704053,0.03828441,98.45481961],[4.53704096,0.03828616,98.45412442],[4.53704138,0.03828792,98.45343025],[4.53704181,0.03828967,98.45273711],[4.53704223,0.03829142,98.452045],[4.53704266,0.03829318,98.45135391],[4.53704308,0.03829493,98.45066385],[4.5370435,0.03829668,98.44997481],[4.53704393,0.03829843,98.4492868],[4.53704435,0.03830019,98.44859982],[4.53704478,0.03830194,98.44791387],[4.5370452,0.03830369,98.44722896],[4.53704563,0.03830544,98.44654507],[4.53704605,0.0383072,98.44586222],[4.53704648,0.03830895,98.44518041],[4.5370469,0.0383107,98.44449963],[4.53704733,0.03831245,98.44381988],[4.53704775,0.03831421,98.44314118],[4.53704818,0.03831596,98.44246351],[4.5370486,0.03831771,98.44178688],[4.53704903,0.03831946,98.4411113],[4.53704946,0.03832122,98.44043676],[4.53704988,0.03832297,98.43976325],[4.53705031,0.03832472,98.4390908],[4.53705073,0.03832647,98.43841939],[4.53705116,0.03832823,98.43774903],[4.53705158,0.03832998,98.43707971],[4.53705201,0.03833173,98.43641144],[4.53705243,0.03833348,98.43574423],[4.53705285,0.03833524,98.43507806],[4.53705328,0.03833699,98.43441295],[4.5370537,0.03833874,98.43374889],[4.53705413,0.03834049,98.43308589],[4.53705455,0.03834225,98.43242395],[4.53705498,0.038344,98.43176306],[4.5370554,0.03834575,98.43110323],[4.53705583,0.03834751,98.43044446],[4.53705625,0.03834926,98.42978675],[4.53705668,0.03835101,98.42913011],[4.5370571,0.03835276,98.42847453],[4.53705753,0.03835452,98.42782002],[4.53705795,0.03835627,98.42716657],[4.53705838,0.03835802,98.42651419],[4.5370588,0.03835977,98.42586288],[4.53705923,0.03836153,98.42521264],[4.53705965,0.03836328,98.42456347],[4.53706008,0.03836503,98.42391538],[4.5370605,0.03836678,98.42326836],[4.53706093,0.03836854,98.42262242],[4.53706135,0.03837029,98.42197755],[4.53706177,0.03837204,98.42133376],[4.5370622,0.0383738,98.42069106],[4.53706262,0.03837555,98.42004944],[4.53706305,0.0383773,98.4194089],[4.53706347,0.03837905,98.41876944],[4.5370639,0.03838081,98.41813107],[4.53706432,0.03838256,98.41749379],[4.53706474,0.03838431,98.4168576],[4.53706517,0.03838606,98.41622249],[4.53706559,0.03838782,98.41558848],[4.53706602,0.03838957,98.41495557],[4.53706644,0.03839132,98.41432374],[4.53706686,0.03839308,98.41369302],[4.53706729,0.03839483,98.41306339],[4.53706771,0.03839658,98.41243486],[4.53706814,0.03839833,98.41180743],[4.53706856,0.03840009,98.41118111],[4.53706898,0.03840184,98.41055588],[4.53706941,0.03840359,98.40993177],[4.53706983,0.03840535,98.40930876],[4.53707025,0.0384071,98.40868686],[4.53707068,0.03840885,98.40806609],[4.5370711,0.03841061,98.40744644],[4.53707152,0.03841236,98.40682793],[4.53707195,0.03841411,98.40621056],[4.53707237,0.03841586,98.40559434],[4.53707279,0.03841762,98.40497927],[4.53707322,0.03841937,98.40436537],[4.53707364,0.03842112,98.40375264],[4.53707406,0.03842288,98.40314109],[4.53707449,0.03842463,98.40253072],[4.53707491,0.03842638,98.40192154],[4.53707533,0.03842814,98.40131356],[4.53707575,0.03842989,98.40070678],[4.53707618,0.03843164,98.40010121],[4.5370766,0.0384334,98.39949687],[4.53707702,0.03843515,98.39889375],[4.53707744,0.0384369,98.39829186],[4.53707787,0.03843865,98.39769121],[4.53707829,0.03844041,98.39709181],[4.53707871,0.03844216,98.39649367],[4.53707913,0.03844391,98.39589678],[4.53707956,0.03844567,98.39530116],[4.53707998,0.03844742,98.39470682],[4.5370804,0.03844917,98.39411375],[4.53708082,0.03845093,98.39352198],[4.53708125,0.03845268,98.3929315],[4.53708167,0.03845443,98.39234232],[4.53708209,0.03845619,98.39175445],[4.53708251,0.03845794,98.3911679],[4.53708293,0.03845969,98.39058266],[4.53708336,0.03846145,98.38999876],[4.53708378,0.0384632,98.3894162],[4.5370842,0.03846495,98.38883497],[4.53708462,0.03846671,98.3882551],[4.53708504,0.03846846,98.38767658],[4.53708547,0.03847021,98.38709943],[4.53708589,0.03847197,98.38652365],[4.53708631,0.03847372,98.38594925],[4.53708673,0.03847547,98.38537623],[4.53708715,0.03847723,98.3848046],[4.53708758,0.03847898,98.38423437],[4.537088,0.03848073,98.38366554],[4.53708842,0.03848249,98.38309812],[4.53708884,0.03848424,98.38253213],[4.53708926,0.03848599,98.38196755],[4.53708968,0.03848775,98.38140441],[4.53709011,0.0384895,98.38084271],[4.53709053,0.03849125,98.38028246],[4.53709095,0.03849301,98.37972365],[4.53709137,0.03849476,98.37916631],[4.53709179,0.03849651,98.37861043],[4.53709221,0.03849827,98.37805602],[4.53709264,0.03850002,98.3775031],[4.53709306,0.03850177,98.37695166],[4.53709348,0.03850353,98.37640171],[4.5370939,0.03850528,98.37585326],[4.53709432,0.03850703,98.37530632],[4.53709474,0.03850879,98.37476089],[4.53709516,0.03851054,98.37421698],[4.53709559,0.03851229,98.3736746],[4.53709601,0.03851405,98.37313375],[4.53709643,0.0385158,98.37259445],[4.53709685,0.03851756,98.37205669],[4.53709727,0.03851931,98.37152048],[4.53709769,0.03852106,98.37098584],[4.53709811,0.03852282,98.37045276],[4.53709854,0.03852457,98.36992126],[4.53709896,0.03852632,98.36939133],[4.53709938,0.03852808,98.368863],[4.5370998,0.03852983,98.36833626],[4.53710022,0.03853158,98.36781112],[4.53710064,0.03853334,98.36728759],[4.53710106,0.03853509,98.36676568],[4.53710149,0.03853684,98.36624539],[4.53710191,0.0385386,98.36572672],[4.53710233,0.03854035,98.3652097],[4.53710275,0.0385421,98.36469431],[4.53710317,0.03854386,98.36418057],[4.53710359,0.03854561,98.36366849],[4.53710401,0.03854736,98.36315808],[4.53710444,0.03854912,98.36264933],[4.53710486,0.03855087,98.36214226],[4.53710528,0.03855262,98.36163687],[4.5371057,0.03855438,98.36113317],[4.53710612,0.03855613,98.36063117],[4.53710654,0.03855788,98.36013087],[4.53710696,0.03855964,98.35963228],[4.53710739,0.03856139,98.35913542],[4.53710781,0.03856314,98.35864027],[4.53710823,0.0385649,98.35814686],[4.53710865,0.03856665,98.35765518],[4.53710907,0.0385684,98.35716525],[4.53710949,0.03857016,98.35667707],[4.53710992,0.03857191,98.35619066],[4.53711034,0.03857367,98.355706],[4.53711076,0.03857542,98.35522312],[4.53711118,0.03857717,98.35474202],[4.5371116,0.03857893,98.35426271],[4.53711202,0.03858068,98.35378519],[4.53711245,0.03858243,98.35330947],[4.53711287,0.03858419,98.35283555],[4.53711329,0.03858594,98.35236346],[4.53711371,0.03858769,98.35189318],[4.53711413,0.03858945,98.35142473],[4.53711455,0.0385912,98.35095812],[4.53711498,0.03859295,98.35049335],[4.5371154,0.03859471,98.35003043],[4.53711582,0.03859646,98.34956937],[4.53711624,0.03859821,98.34911017],[4.53711666,0.03859997,98.34865285],[4.53711709,0.03860172,98.3481974],[4.53711751,0.03860347,98.34774383],[4.53711793,0.03860523,98.34729216],[4.53711835,0.03860698,98.34684239],[4.53711877,0.03860873,98.34639452],[4.5371192,0.03861049,98.34594857],[4.53711962,0.03861224,98.34550454],[4.53712004,0.03861399,98.34506244],[4.53712046,0.03861574,98.34462227],[4.53712088,0.0386175,98.34418405],[4.53712131,0.03861925,98.34374778],[4.53712173,0.038621,98.34331346],[4.53712215,0.03862276,98.34288111],[4.53712257,0.03862451,98.34245073],[4.537123,0.03862626,98.34202233],[4.53712342,0.03862802,98.34159592],[4.53712384,0.03862977,98.3411715],[4.53712426,0.03863152,98.34074908],[4.53712469,0.03863328,98.34032868],[4.53712511,0.03863503,98.33991028],[4.53712553,0.03863678,98.33949392],[4.53712596,0.03863854,98.33907958],[4.53712638,0.03864029,98.33866728],[4.5371268,0.03864204,98.33825703],[4.53712722,0.0386438,98.33784884],[4.53712765,0.03864555,98.33744271],[4.53712807,0.0386473,98.33703864],[4.53712849,0.03864905,98.33663665],[4.53709748,0.0386566,98.24683369]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":0,"sOffset":0.0}},{"geometry":{"coordinates":[[[4.53712849,0.03864905,98.33663665],[4.53712807,0.0386473,98.33703864],[4.53712765,0.03864555,98.33744271],[4.53712722,0.0386438,98.33784884],[4.5371268,0.03864204,98.33825703],[4.53712638,0.03864029,98.33866728],[4.53712596,0.03863854,98.33907958],[4.53712553,0.03863678,98.33949392],[4.53712511,0.03863503,98.33991028],[4.53712469,0.03863328,98.34032868],[4.53712426,0.03863152,98.34074908],[4.53712384,0.03862977,98.3411715],[4.53712342,0.03862802,98.34159592],[4.537123,0.03862626,98.34202233],[4.53712257,0.03862451,98.34245073],[4.53712215,0.03862276,98.34288111],[4.53712173,0.038621,98.34331346],[4.53712131,0.03861925,98.34374778],[4.53712088,0.0386175,98.34418405],[4.53712046,0.03861574,98.34462227],[4.53712004,0.03861399,98.34506244],[4.53711962,0.03861224,98.34550454],[4.5371192,0.03861049,98.34594857],[4.53711877,0.03860873,98.34639452],[4.53711835,0.03860698,98.34684239],[4.53711793,0.03860523,98.34729216],[4.53711751,0.03860347,98.34774383],[4.53711709,0.03860172,98.3481974],[4.53711666,0.03859997,98.34865285],[4.53711624,0.03859821,98.34911017],[4.53711582,0.03859646,98.34956937],[4.5371154,0.03859471,98.35003043],[4.53711498,0.03859295,98.35049335],[4.53711455,0.0385912,98.35095812],[4.53711413,0.03858945,98.35142473],[4.53711371,0.03858769,98.35189318],[4.53711329,0.03858594,98.35236346],[4.53711287,0.03858419,98.35283555],[4.53711245,0.03858243,98.35330947],[4.53711202,0.03858068,98.35378519],[4.5371116,0.03857893,98.35426271],[4.53711118,0.03857717,98.35474202],[4.53711076,0.03857542,98.35522312],[4.53711034,0.03857367,98.355706],[4.53710992,0.03857191,98.35619066],[4.53710949,0.03857016,98.35667707],[4.53710907,0.0385684,98.35716525],[4.53710865,0.03856665,98.35765518],[4.53710823,0.0385649,98.35814686],[4.53710781,0.03856314,98.35864027],[4.53710739,0.03856139,98.35913542],[4.53710696,0.03855964,98.35963228],[4.53710654,0.03855788,98.36013087],[4.53710612,0.03855613,98.36063117],[4.5371057,0.03855438,98.36113317],[4.53710528,0.03855262,98.36163687],[4.53710486,0.03855087,98.36214226],[4.53710444,0.03854912,98.36264933],[4.53710401,0.03854736,98.36315808],[4.53710359,0.03854561,98.36366849],[4.53710317,0.03854386,98.36418057],[4.53710275,0.0385421,98.36469431],[4.53710233,0.03854035,98.3652097],[4.53710191,0.0385386,98.36572672],[4.53710149,0.03853684,98.36624539],[4.53710106,0.03853509,98.36676568],[4.53710064,0.03853334,98.36728759],[4.53710022,0.03853158,98.36781112],[4.5370998,0.03852983,98.36833626],[4.53709938,0.03852808,98.368863],[4.53709896,0.03852632,98.36939133],[4.53709854,0.03852457,98.36992126],[4.53709811,0.03852282,98.37045276],[4.53709769,0.03852106,98.37098584],[4.53709727,0.03851931,98.37152048],[4.53709685,0.03851756,98.37205669],[4.53709643,0.0385158,98.37259445],[4.53709601,0.03851405,98.37313375],[4.53709559,0.03851229,98.3736746],[4.53709516,0.03851054,98.37421698],[4.53709474,0.03850879,98.37476089],[4.53709432,0.03850703,98.37530632],[4.5370939,0.03850528,98.37585326],[4.53709348,0.03850353,98.37640171],[4.53709306,0.03850177,98.37695166],[4.53709264,0.03850002,98.3775031],[4.53709221,0.03849827,98.37805602],[4.53709179,0.03849651,98.37861043],[4.53709137,0.03849476,98.37916631],[4.53709095,0.03849301,98.37972365],[4.53709053,0.03849125,98.38028246],[4.53709011,0.0384895,98.38084271],[4.53708968,0.03848775,98.38140441],[4.53708926,0.03848599,98.38196755],[4.53708884,0.03848424,98.38253213],[4.53708842,0.03848249,98.38309812],[4.537088,0.03848073,98.38366554],[4.53708758,0.03847898,98.38423437],[4.53708715,0.03847723,98.3848046],[4.53708673,0.03847547,98.38537623],[4.53708631,0.03847372,98.38594925],[4.53708589,0.03847197,98.38652365],[4.53708547,0.03847021,98.38709943],[4.53708504,0.03846846,98.38767658],[4.53708462,0.03846671,98.3882551],[4.5370842,0.03846495,98.38883497],[4.53708378,0.0384632,98.3894162],[4.53708336,0.03846145,98.38999876],[4.53708293,0.03845969,98.39058266],[4.53708251,0.03845794,98.3911679],[4.53708209,0.03845619,98.39175445],[4.53708167,0.03845443,98.39234232],[4.53708125,0.03845268,98.3929315],[4.53708082,0.03845093,98.39352198],[4.5370804,0.03844917,98.39411375],[4.53707998,0.03844742,98.39470682],[4.53707956,0.03844567,98.39530116],[4.53707913,0.03844391,98.39589678],[4.53707871,0.03844216,98.39649367],[4.53707829,0.03844041,98.39709181],[4.53707787,0.03843865,98.39769121],[4.53707744,0.0384369,98.39829186],[4.53707702,0.03843515,98.39889375],[4.5370766,0.0384334,98.39949687],[4.53707618,0.03843164,98.40010121],[4.53707575,0.03842989,98.40070678],[4.53707533,0.03842814,98.40131356],[4.53707491,0.03842638,98.40192154],[4.53707449,0.03842463,98.40253072],[4.53707406,0.03842288,98.40314109],[4.53707364,0.03842112,98.40375264],[4.53707322,0.03841937,98.40436537],[4.53707279,0.03841762,98.40497927],[4.53707237,0.03841586,98.40559434],[4.53707195,0.03841411,98.40621056],[4.53707152,0.03841236,98.40682793],[4.5370711,0.03841061,98.40744644],[4.53707068,0.03840885,98.40806609],[4.53707025,0.0384071,98.40868686],[4.53706983,0.03840535,98.40930876],[4.53706941,0.03840359,98.40993177],[4.53706898,0.03840184,98.41055588],[4.53706856,0.03840009,98.41118111],[4.53706814,0.03839833,98.41180743],[4.53706771,0.03839658,98.41243486],[4.53706729,0.03839483,98.41306339],[4.53706686,0.03839308,98.41369302],[4.53706644,0.03839132,98.41432374],[4.53706602,0.03838957,98.41495557],[4.53706559,0.03838782,98.41558848],[4.53706517,0.03838606,98.41622249],[4.53706474,0.03838431,98.4168576],[4.53706432,0.03838256,98.41749379],[4.5370639,0.03838081,98.41813107],[4.53706347,0.03837905,98.41876944],[4.53706305,0.0383773,98.4194089],[4.53706262,0.03837555,98.42004944],[4.5370622,0.0383738,98.42069106],[4.53706177,0.03837204,98.42133376],[4.53706135,0.03837029,98.42197755],[4.53706093,0.03836854,98.42262242],[4.5370605,0.03836678,98.42326836],[4.53706008,0.03836503,98.42391538],[4.53705965,0.03836328,98.42456347],[4.53705923,0.03836153,98.42521264],[4.5370588,0.03835977,98.42586288],[4.53705838,0.03835802,98.42651419],[4.53705795,0.03835627,98.42716657],[4.53705753,0.03835452,98.42782002],[4.5370571,0.03835276,98.42847453],[4.53705668,0.03835101,98.42913011],[4.53705625,0.03834926,98.42978675],[4.53705583,0.03834751,98.43044446],[4.5370554,0.03834575,98.43110323],[4.53705498,0.038344,98.43176306],[4.53705455,0.03834225,98.43242395],[4.53705413,0.03834049,98.43308589],[4.5370537,0.03833874,98.43374889],[4.53705328,0.03833699,98.43441295],[4.53705285,0.03833524,98.43507806],[4.53705243,0.03833348,98.43574423],[4.53705201,0.03833173,98.43641144],[4.53705158,0.03832998,98.43707971],[4.53705116,0.03832823,98.43774903],[4.53705073,0.03832647,98.43841939],[4.53705031,0.03832472,98.4390908],[4.53704988,0.03832297,98.43976325],[4.53704946,0.03832122,98.44043676],[4.53704903,0.03831946,98.4411113],[4.5370486,0.03831771,98.44178688],[4.53704818,0.03831596,98.44246351],[4.53704775,0.03831421,98.44314118],[4.53704733,0.03831245,98.44381988],[4.5370469,0.0383107,98.44449963],[4.53704648,0.03830895,98.44518041],[4.53704605,0.0383072,98.44586222],[4.53704563,0.03830544,98.44654507],[4.5370452,0.03830369,98.44722896],[4.53704478,0.03830194,98.44791387],[4.53704435,0.03830019,98.44859982],[4.53704393,0.03829843,98.4492868],[4.5370435,0.03829668,98.44997481],[4.53704308,0.03829493,98.45066385],[4.53704266,0.03829318,98.45135391],[4.53704223,0.03829142,98.452045],[4.53704181,0.03828967,98.45273711],[4.53704138,0.03828792,98.45343025],[4.53704096,0.03828616,98.45412442],[4.53704053,0.03828441,98.45481961],[4.53704011,0.03828266,98.45551581],[4.53703968,0.03828091,98.45621304],[4.53703926,0.03827915,98.45691129],[4.53703883,0.0382774,98.45761056],[4.53703841,0.03827565,98.45831085],[4.53703798,0.0382739,98.45901215],[4.53703756,0.03827214,98.45971447],[4.53703713,0.03827039,98.46041781],[4.53703671,0.03826864,98.46112216],[4.53703628,0.03826689,98.46182752],[4.53703586,0.03826513,98.4625339],[4.53703543,0.03826338,98.46324129],[4.53703501,0.03826163,98.46394969],[4.53703459,0.03825987,98.4646591],[4.53703416,0.03825812,98.46536952],[4.53703374,0.03825637,98.46608095],[4.53703331,0.03825462,98.46679339],[4.53703289,0.03825286,98.46750684],[4.53703246,0.03825111,98.46822129],[4.53703204,0.03824936,98.46893675],[4.53703162,0.03824761,98.46965322],[4.53703119,0.03824585,98.47037069],[4.53703077,0.0382441,98.47108916],[4.53703034,0.03824235,98.47180864],[4.53702992,0.03824059,98.47252912],[4.5370295,0.03823884,98.4732506],[4.53702907,0.03823709,98.47397308],[4.53702865,0.03823534,98.47469656],[4.53702822,0.03823358,98.47542105],[4.5370278,0.03823183,98.47614653],[4.53702738,0.03823008,98.47687301],[4.53702695,0.03822832,98.47760049],[4.53702653,0.03822657,98.47832896],[4.53702611,0.03822482,98.47905842],[4.53702568,0.03822306,98.47978886],[4.53702526,0.03822131,98.48052027],[4.53702484,0.03821956,98.48125263],[4.53702441,0.03821781,98.48198595],[4.53702399,0.03821605,98.4827202],[4.53702357,0.0382143,98.48345538],[4.53702314,0.03821255,98.48419148],[4.53702272,0.03821079,98.4849285],[4.5370223,0.03820904,98.48566641],[4.53702187,0.03820729,98.48640521],[4.53702145,0.03820553,98.48714489],[4.53702103,0.03820378,98.48788544],[4.5370206,0.03820203,98.48862685],[4.53702018,0.03820027,98.48936912],[4.53701976,0.03819852,98.49011222],[4.53701934,0.03819677,98.49085615],[4.53701891,0.03819502,98.49160091],[4.53701849,0.03819326,98.49234647],[4.53701807,0.03819151,98.49309284],[4.53701764,0.03818976,98.49384],[4.53701722,0.038188,98.49458794],[4.5370168,0.03818625,98.49533665],[4.53701638,0.0381845,98.49608612],[4.53701595,0.03818274,98.49683634],[4.53701553,0.03818099,98.4975873],[4.53701537,0.03818034,98.49786762],[4.53701917,0.0381794,98.50952094],[4.53701934,0.03818006,98.50925029],[4.53701977,0.03818181,98.50852539],[4.5370202,0.03818356,98.50780143],[4.53702064,0.03818531,98.50707838],[4.53702107,0.03818706,98.50635623],[4.5370215,0.03818881,98.50563496],[4.53702194,0.03819056,98.50491456],[4.53702237,0.03819231,98.50419501],[4.5370228,0.03819406,98.50347628],[4.53702324,0.03819581,98.50275836],[4.53702367,0.03819756,98.50204124],[4.5370241,0.03819931,98.5013249],[4.53702454,0.03820106,98.50060932],[4.53702497,0.03820281,98.49989448],[4.53702541,0.03820456,98.49918036],[4.53702584,0.03820632,98.49846695],[4.53702627,0.03820807,98.49775423],[4.53702671,0.03820982,98.49704219],[4.53702714,0.03821157,98.4963308],[4.53702758,0.03821332,98.49562005],[4.53702801,0.03821507,98.49490993],[4.53702844,0.03821682,98.49420041],[4.53702888,0.03821857,98.49349148],[4.53702931,0.03822032,98.49278312],[4.53702974,0.03822207,98.49207532],[4.53703018,0.03822382,98.49136805],[4.53703061,0.03822557,98.49066131],[4.53703104,0.03822732,98.48995508],[4.53703148,0.03822907,98.48924933],[4.53703191,0.03823082,98.48854405],[4.53703234,0.03823257,98.48783921],[4.53703278,0.03823432,98.48713478],[4.53703321,0.03823607,98.48643074],[4.53703364,0.03823783,98.48572707],[4.53703407,0.03823958,98.48502373],[4.53703451,0.03824133,98.48432071],[4.53703494,0.03824308,98.48361798],[4.53703537,0.03824483,98.48291551],[4.5370358,0.03824658,98.48221328],[4.53703623,0.03824833,98.48151127],[4.53703667,0.03825008,98.48080945],[4.5370371,0.03825183,98.4801078],[4.53703753,0.03825358,98.47940629],[4.53703796,0.03825534,98.4787049],[4.53703839,0.03825709,98.47800361],[4.53703882,0.03825884,98.47730238],[4.53703925,0.03826059,98.4766012],[4.53703968,0.03826234,98.47590005],[4.53704011,0.03826409,98.47519889],[4.53704054,0.03826584,98.47449771],[4.53704096,0.0382676,98.47379648],[4.53704139,0.03826935,98.47309518],[4.53704182,0.0382711,98.47239379],[4.53704225,0.03827285,98.47169228],[4.53704268,0.0382746,98.47099062],[4.5370431,0.03827636,98.47028881],[4.53704353,0.03827811,98.4695868],[4.53704396,0.03827986,98.46888459],[4.53704438,0.03828161,98.46818214],[4.53704481,0.03828337,98.46747944],[4.53704523,0.03828512,98.46677645],[4.53704566,0.03828687,98.4660732],[4.53704608,0.03828862,98.46536972],[4.5370465,0.03829038,98.46466604],[4.53704693,0.03829213,98.4639622],[4.53704735,0.03829388,98.46325824],[4.53704777,0.03829564,98.46255419],[4.53704819,0.03829739,98.4618501],[4.53704862,0.03829914,98.461146],[4.53704904,0.0383009,98.46044193],[4.53704946,0.03830265,98.45973792],[4.53704988,0.0383044,98.45903401],[4.5370503,0.03830616,98.45833024],[4.53705072,0.03830791,98.45762665],[4.53705114,0.03830966,98.45692327],[4.53705156,0.03831142,98.45622014],[4.53705198,0.03831317,98.45551729],[4.5370524,0.03831493,98.45481476],[4.53705282,0.03831668,98.4541126],[4.53705324,0.03831844,98.45341082],[4.53705366,0.03832019,98.45270948],[4.53705407,0.03832194,98.4520086],[4.53705449,0.0383237,98.45130823],[4.53705491,0.03832545,98.45060839],[4.53705533,0.03832721,98.44990913],[4.53705574,0.03832896,98.44921047],[4.53705616,0.03833072,98.44851247],[4.53705658,0.03833247,98.44781514],[4.537057,0.03833422,98.44711853],[4.53705741,0.03833598,98.44642268],[4.53705783,0.03833773,98.44572761],[4.53705825,0.03833949,98.44503336],[4.53705866,0.03834124,98.44433997],[4.53705908,0.038343,98.44364748],[4.5370595,0.03834475,98.44295591],[4.53705991,0.03834651,98.44226531],[4.53706033,0.03834826,98.4415757],[4.53706074,0.03835002,98.44088713],[4.53706116,0.03835177,98.44019962],[4.53706158,0.03835353,98.43951322],[4.53706199,0.03835528,98.43882795],[4.53706241,0.03835704,98.43814386],[4.53706282,0.03835879,98.43746097],[4.53706324,0.03836055,98.43677932],[4.53706366,0.0383623,98.43609895],[4.53706407,0.03836406,98.43541988],[4.53706449,0.03836581,98.43474216],[4.5370649,0.03836757,98.43406581],[4.53706532,0.03836932,98.43339088],[4.53706574,0.03837107,98.43271739],[4.53706615,0.03837283,98.43204538],[4.53706657,0.03837458,98.43137488],[4.53706699,0.03837634,98.43070592],[4.5370674,0.03837809,98.43003855],[4.53706782,0.03837985,98.42937279],[4.53706824,0.0383816,98.42870868],[4.53706865,0.03838336,98.42804625],[4.53706907,0.03838511,98.42738554],[4.53706949,0.03838687,98.42672657],[4.53706991,0.03838862,98.42606938],[4.53707032,0.03839038,98.42541401],[4.53707074,0.03839213,98.42476048],[4.53707116,0.03839388,98.42410884],[4.53707158,0.03839564,98.42345911],[4.537072,0.03839739,98.42281133],[4.53707242,0.03839915,98.42216553],[4.53707283,0.0384009,98.42152174],[4.53707325,0.03840265,98.42088],[4.53707367,0.03840441,98.42024034],[4.53707409,0.03840616,98.41960279],[4.53707451,0.03840792,98.41896741],[4.53707493,0.03840967,98.41833421],[4.53707535,0.03841142,98.41770318],[4.53707577,0.03841318,98.4170743],[4.5370762,0.03841493,98.41644756],[4.53707662,0.03841668,98.41582293],[4.53707704,0.03841844,98.41520038],[4.53707746,0.03842019,98.41457991],[4.53707788,0.03842194,98.41396148],[4.53707831,0.0384237,98.41334508],[4.53707873,0.03842545,98.41273069],[4.53707915,0.0384272,98.41211828],[4.53707957,0.03842896,98.41150784],[4.53708,0.03843071,98.41089934],[4.53708042,0.03843246,98.41029276],[4.53708084,0.03843422,98.40968809],[4.53708127,0.03843597,98.40908531],[4.53708169,0.03843772,98.40848438],[4.53708212,0.03843947,98.4078853],[4.53708254,0.03844123,98.40728804],[4.53708296,0.03844298,98.40669258],[4.53708339,0.03844473,98.40609891],[4.53708381,0.03844649,98.405507],[4.53708424,0.03844824,98.40491683],[4.53708466,0.03844999,98.40432838],[4.53708509,0.03845174,98.40374164],[4.53708551,0.0384535,98.40315658],[4.53708594,0.03845525,98.40257318],[4.53708636,0.038457,98.40199143],[4.53708679,0.03845875,98.4014113],[4.53708721,0.03846051,98.40083277],[4.53708764,0.03846226,98.40025583],[4.53708806,0.03846401,98.39968045],[4.53708849,0.03846576,98.39910662],[4.53708891,0.03846752,98.39853431],[4.53708934,0.03846927,98.39796351],[4.53708976,0.03847102,98.3973942],[4.53709019,0.03847277,98.39682635],[4.53709061,0.03847453,98.39625995],[4.53709104,0.03847628,98.39569498],[4.53709146,0.03847803,98.39513142],[4.53709189,0.03847979,98.39456925],[4.53709231,0.03848154,98.39400845],[4.53709274,0.03848329,98.393449],[4.53709316,0.03848504,98.39289088],[4.53709358,0.0384868,98.39233408],[4.53709401,0.03848855,98.39177856],[4.53709443,0.0384903,98.39122432],[4.53709486,0.03849205,98.39067134],[4.53709528,0.03849381,98.39011959],[4.53709571,0.03849556,98.38956905],[4.53709613,0.03849731,98.38901972],[4.53709655,0.03849907,98.38847155],[4.53709698,0.03850082,98.38792455],[4.5370974,0.03850257,98.38737868],[4.53709782,0.03850433,98.38683394],[4.53709825,0.03850608,98.38629029],[4.53709867,0.03850783,98.38574772],[4.53709909,0.03850958,98.38520622],[4.53709951,0.03851134,98.38466575],[4.53709993,0.03851309,98.38412631],[4.53710036,0.03851484,98.38358786],[4.53710078,0.0385166,98.3830504],[4.5371012,0.03851835,98.38251391],[4.53710162,0.03852011,98.38197835],[4.53710204,0.03852186,98.38144372],[4.53710246,0.03852361,98.38090999],[4.53710288,0.03852537,98.38037715],[4.5371033,0.03852712,98.37984517],[4.53710372,0.03852887,98.37931403],[4.53710414,0.03853063,98.37878372],[4.53710456,0.03853238,98.37825421],[4.53710498,0.03853414,98.37772548],[4.5371054,0.03853589,98.37719752],[4.53710581,0.03853765,98.3766703],[4.53710623,0.0385394,98.37614384],[4.53710665,0.03854115,98.37561818],[4.53710706,0.03854291,98.37509335],[4.53710748,0.03854466,98.37456939],[4.5371079,0.03854642,98.37404636],[4.53710831,0.03854817,98.37352429],[4.53710873,0.03854993,98.37300323],[4.53710914,0.03855168,98.37248321],[4.53710956,0.03855344,98.37196427],[4.53710997,0.03855519,98.37144647],[4.53711039,0.03855695,98.37092983],[4.5371108,0.0385587,98.37041441],[4.53711122,0.03856046,98.36990023],[4.53711163,0.03856221,98.36938735],[4.53711205,0.03856397,98.36887581],[4.53711246,0.03856572,98.36836564],[4.53711287,0.03856748,98.36785689],[4.53711329,0.03856923,98.3673496],[4.5371137,0.03857099,98.36684382],[4.53711411,0.03857275,98.36633957],[4.53711453,0.0385745,98.36583691],[4.53711494,0.03857626,98.36533587],[4.53711535,0.03857801,98.3648365],[4.53711576,0.03857977,98.36433885],[4.53711618,0.03858152,98.36384294],[4.53711659,0.03858328,98.36334882],[4.537117,0.03858503,98.36285654],[4.53711742,0.03858679,98.36236614],[4.53711783,0.03858855,98.36187765],[4.53711824,0.0385903,98.36139113],[4.53711866,0.03859206,98.3609066],[4.53711907,0.03859381,98.36042412],[4.53711948,0.03859557,98.35994373],[4.53711989,0.03859732,98.35946547],[4.53712031,0.03859908,98.35898938],[4.53712072,0.03860083,98.35851551],[4.53712114,0.03860259,98.35804389],[4.53712155,0.03860434,98.35757457],[4.53712196,0.0386061,98.35710759],[4.53712238,0.03860785,98.356643],[4.53712279,0.03860961,98.35618084],[4.53712321,0.03861137,98.35572115],[4.53712362,0.03861312,98.35526397],[4.53712403,0.03861488,98.35480935],[4.53712445,0.03861663,98.35435734],[4.53712486,0.03861839,98.35390797],[4.53712528,0.03862014,98.3534613],[4.5371257,0.0386219,98.35301736],[4.53712611,0.03862365,98.35257619],[4.53712653,0.0386254,98.35213785],[4.53712695,0.03862716,98.35170238],[4.53712736,0.03862891,98.35126982],[4.53712778,0.03863067,98.35084022],[4.5371282,0.03863242,98.35041363],[4.53712862,0.03863418,98.34999008],[4.53712903,0.03863593,98.34956963],[4.53712945,0.03863769,98.34915231],[4.53712987,0.03863944,98.34873819],[4.53713029,0.03864119,98.3483273],[4.53713071,0.03864295,98.34791968],[4.53713113,0.0386447,98.3475154],[4.53713155,0.03864645,98.34711448],[4.53713197,0.03864821,98.34671699],[4.53712849,0.03864905,98.33663665]]],"type":"Polygon"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":1,"type":"shoulder","predecessorId":0,"sOffset":0.0}},{"geometry":{"coordinates":[[[4.53713197,0.03864821,98.34671699],[4.53713155,0.03864645,98.34711448],[4.53713113,0.0386447,98.3475154],[4.53713071,0.03864295,98.34791968],[4.53713029,0.03864119,98.3483273],[4.53712987,0.03863944,98.34873819],[4.53712945,0.03863769,98.34915231],[4.53712903,0.03863593,98.34956963],[4.53712862,0.03863418,98.34999008],[4.5371282,0.03863242,98.35041363],[4.53712778,0.03863067,98.35084022],[4.53712736,0.03862891,98.35126982],[4.53712695,0.03862716,98.35170238],[4.53712653,0.0386254,98.35213785],[4.53712611,0.03862365,98.35257619],[4.5371257,0.0386219,98.35301736],[4.53712528,0.03862014,98.3534613],[4.53712486,0.03861839,98.35390797],[4.53712445,0.03861663,98.35435734],[4.53712403,0.03861488,98.35480935],[4.53712362,0.03861312,98.35526397],[4.53712321,0.03861137,98.35572115],[4.53712279,0.03860961,98.35618084],[4.53712238,0.03860785,98.356643],[4.53712196,0.0386061,98.35710759],[4.53712155,0.03860434,98.35757457],[4.53712114,0.03860259,98.35804389],[4.53712072,0.03860083,98.35851551],[4.53712031,0.03859908,98.35898938],[4.53711989,0.03859732,98.35946547],[4.53711948,0.03859557,98.35994373],[4.53711907,0.03859381,98.36042412],[4.53711866,0.03859206,98.3609066],[4.53711824,0.0385903,98.36139113],[4.53711783,0.03858855,98.36187765],[4.53711742,0.03858679,98.36236614],[4.537117,0.03858503,98.36285654],[4.53711659,0.03858328,98.36334882],[4.53711618,0.03858152,98.36384294],[4.53711576,0.03857977,98.36433885],[4.53711535,0.03857801,98.3648365],[4.53711494,0.03857626,98.36533587],[4.53711453,0.0385745,98.36583691],[4.53711411,0.03857275,98.36633957],[4.5371137,0.03857099,98.36684382],[4.53711329,0.03856923,98.3673496],[4.53711287,0.03856748,98.36785689],[4.53711246,0.03856572,98.36836564],[4.53711205,0.03856397,98.36887581],[4.53711163,0.03856221,98.36938735],[4.53711122,0.03856046,98.36990023],[4.5371108,0.0385587,98.37041441],[4.53711039,0.03855695,98.37092983],[4.53710997,0.03855519,98.37144647],[4.53710956,0.03855344,98.37196427],[4.53710914,0.03855168,98.37248321],[4.53710873,0.03854993,98.37300323],[4.53710831,0.03854817,98.37352429],[4.5371079,0.03854642,98.37404636],[4.53710748,0.03854466,98.37456939],[4.53710706,0.03854291,98.37509335],[4.53710665,0.03854115,98.37561818],[4.53710623,0.0385394,98.37614384],[4.53710581,0.03853765,98.3766703],[4.5371054,0.03853589,98.37719752],[4.53710498,0.03853414,98.37772548],[4.53710456,0.03853238,98.37825421],[4.53710414,0.03853063,98.37878372],[4.53710372,0.03852887,98.37931403],[4.5371033,0.03852712,98.37984517],[4.53710288,0.03852537,98.38037715],[4.53710246,0.03852361,98.38090999],[4.53710204,0.03852186,98.38144372],[4.53710162,0.03852011,98.38197835],[4.5371012,0.03851835,98.38251391],[4.53710078,0.0385166,98.3830504],[4.53710036,0.03851484,98.38358786],[4.53709993,0.03851309,98.38412631],[4.53709951,0.03851134,98.38466575],[4.53709909,0.03850958,98.38520622],[4.53709867,0.03850783,98.38574772],[4.53709825,0.03850608,98.38629029],[4.53709782,0.03850433,98.38683394],[4.5370974,0.03850257,98.38737868],[4.53709698,0.03850082,98.38792455],[4.53709655,0.03849907,98.38847155],[4.53709613,0.03849731,98.38901972],[4.53709571,0.03849556,98.38956905],[4.53709528,0.03849381,98.39011959],[4.53709486,0.03849205,98.39067134],[4.53709443,0.0384903,98.39122432],[4.53709401,0.03848855,98.39177856],[4.53709358,0.0384868,98.39233408],[4.53709316,0.03848504,98.39289088],[4.53709274,0.03848329,98.393449],[4.53709231,0.03848154,98.39400845],[4.53709189,0.03847979,98.39456925],[4.53709146,0.03847803,98.39513142],[4.53709104,0.03847628,98.39569498],[4.53709061,0.03847453,98.39625995],[4.53709019,0.03847277,98.39682635],[4.53708976,0.03847102,98.3973942],[4.53708934,0.03846927,98.39796351],[4.53708891,0.03846752,98.39853431],[4.53708849,0.03846576,98.39910662],[4.53708806,0.03846401,98.39968045],[4.53708764,0.03846226,98.40025583],[4.53708721,0.03846051,98.40083277],[4.53708679,0.03845875,98.4014113],[4.53708636,0.038457,98.40199143],[4.53708594,0.03845525,98.40257318],[4.53708551,0.0384535,98.40315658],[4.53708509,0.03845174,98.40374164],[4.53708466,0.03844999,98.40432838],[4.53708424,0.03844824,98.40491683],[4.53708381,0.03844649,98.405507],[4.53708339,0.03844473,98.40609891],[4.53708296,0.03844298,98.40669258],[4.53708254,0.03844123,98.40728804],[4.53708212,0.03843947,98.4078853],[4.53708169,0.03843772,98.40848438],[4.53708127,0.03843597,98.40908531],[4.53708084,0.03843422,98.40968809],[4.53708042,0.03843246,98.41029276],[4.53708,0.03843071,98.41089934],[4.53707957,0.03842896,98.41150784],[4.53707915,0.0384272,98.41211828],[4.53707873,0.03842545,98.41273069],[4.53707831,0.0384237,98.41334508],[4.53707788,0.03842194,98.41396148],[4.53707746,0.03842019,98.41457991],[4.53707704,0.03841844,98.41520038],[4.53707662,0.03841668,98.41582293],[4.5370762,0.03841493,98.41644756],[4.53707577,0.03841318,98.4170743],[4.53707535,0.03841142,98.41770318],[4.53707493,0.03840967,98.41833421],[4.53707451,0.03840792,98.41896741],[4.53707409,0.03840616,98.41960279],[4.53707367,0.03840441,98.42024034],[4.53707325,0.03840265,98.42088],[4.53707283,0.0384009,98.42152174],[4.53707242,0.03839915,98.42216553],[4.537072,0.03839739,98.42281133],[4.53707158,0.03839564,98.42345911],[4.53707116,0.03839388,98.42410884],[4.53707074,0.03839213,98.42476048],[4.53707032,0.03839038,98.42541401],[4.53706991,0.03838862,98.42606938],[4.53706949,0.03838687,98.42672657],[4.53706907,0.03838511,98.42738554],[4.53706865,0.03838336,98.42804625],[4.53706824,0.0383816,98.42870868],[4.53706782,0.03837985,98.42937279],[4.5370674,0.03837809,98.43003855],[4.53706699,0.03837634,98.43070592],[4.53706657,0.03837458,98.43137488],[4.53706615,0.03837283,98.43204538],[4.53706574,0.03837107,98.43271739],[4.53706532,0.03836932,98.43339088],[4.5370649,0.03836757,98.43406581],[4.53706449,0.03836581,98.43474216],[4.53706407,0.03836406,98.43541988],[4.53706366,0.0383623,98.43609895],[4.53706324,0.03836055,98.43677932],[4.53706282,0.03835879,98.43746097],[4.53706241,0.03835704,98.43814386],[4.53706199,0.03835528,98.43882795],[4.53706158,0.03835353,98.43951322],[4.53706116,0.03835177,98.44019962],[4.53706074,0.03835002,98.44088713],[4.53706033,0.03834826,98.4415757],[4.53705991,0.03834651,98.44226531],[4.5370595,0.03834475,98.44295591],[4.53705908,0.038343,98.44364748],[4.53705866,0.03834124,98.44433997],[4.53705825,0.03833949,98.44503336],[4.53705783,0.03833773,98.44572761],[4.53705741,0.03833598,98.44642268],[4.537057,0.03833422,98.44711853],[4.53705658,0.03833247,98.44781514],[4.53705616,0.03833072,98.44851247],[4.53705574,0.03832896,98.44921047],[4.53705533,0.03832721,98.44990913],[4.53705491,0.03832545,98.45060839],[4.53705449,0.0383237,98.45130823],[4.53705407,0.03832194,98.4520086],[4.53705366,0.03832019,98.45270948],[4.53705324,0.03831844,98.45341082],[4.53705282,0.03831668,98.4541126],[4.5370524,0.03831493,98.45481476],[4.53705198,0.03831317,98.45551729],[4.53705156,0.03831142,98.45622014],[4.53705114,0.03830966,98.45692327],[4.53705072,0.03830791,98.45762665],[4.5370503,0.03830616,98.45833024],[4.53704988,0.0383044,98.45903401],[4.53704946,0.03830265,98.45973792],[4.53704904,0.0383009,98.46044193],[4.53704862,0.03829914,98.461146],[4.53704819,0.03829739,98.4618501],[4.53704777,0.03829564,98.46255419],[4.53704735,0.03829388,98.46325824],[4.53704693,0.03829213,98.4639622],[4.5370465,0.03829038,98.46466604],[4.53704608,0.03828862,98.46536972],[4.53704566,0.03828687,98.4660732],[4.53704523,0.03828512,98.46677645],[4.53704481,0.03828337,98.46747944],[4.53704438,0.03828161,98.46818214],[4.53704396,0.03827986,98.46888459],[4.53704353,0.03827811,98.4695868],[4.5370431,0.03827636,98.47028881],[4.53704268,0.0382746,98.47099062],[4.53704225,0.03827285,98.47169228],[4.53704182,0.0382711,98.47239379],[4.53704139,0.03826935,98.47309518],[4.53704096,0.0382676,98.47379648],[4.53704054,0.03826584,98.47449771],[4.53704011,0.03826409,98.47519889],[4.53703968,0.03826234,98.47590005],[4.53703925,0.03826059,98.4766012],[4.53703882,0.03825884,98.47730238],[4.53703839,0.03825709,98.47800361],[4.53703796,0.03825534,98.4787049],[4.53703753,0.03825358,98.47940629],[4.5370371,0.03825183,98.4801078],[4.53703667,0.03825008,98.48080945],[4.53703623,0.03824833,98.48151127],[4.5370358,0.03824658,98.48221328],[4.53703537,0.03824483,98.48291551],[4.53703494,0.03824308,98.48361798],[4.53703451,0.03824133,98.48432071],[4.53703407,0.03823958,98.48502373],[4.53703364,0.03823783,98.48572707],[4.53703321,0.03823607,98.48643074],[4.53703278,0.03823432,98.48713478],[4.53703234,0.03823257,98.48783921],[4.53703191,0.03823082,98.48854405],[4.53703148,0.03822907,98.48924933],[4.53703104,0.03822732,98.48995508],[4.53703061,0.03822557,98.49066131],[4.53703018,0.03822382,98.49136805],[4.53702974,0.03822207,98.49207532],[4.53702931,0.03822032,98.49278312],[4.53702888,0.03821857,98.49349148],[4.53702844,0.03821682,98.49420041],[4.53702801,0.03821507,98.49490993],[4.53702758,0.03821332,98.49562005],[4.53702714,0.03821157,98.4963308],[4.53702671,0.03820982,98.49704219],[4.53702627,0.03820807,98.49775423],[4.53702584,0.03820632,98.49846695],[4.53702541,0.03820456,98.49918036],[4.53702497,0.03820281,98.49989448],[4.53702454,0.03820106,98.50060932],[4.5370241,0.03819931,98.5013249],[4.53702367,0.03819756,98.50204124],[4.53702324,0.03819581,98.50275836],[4.5370228,0.03819406,98.50347628],[4.53702237,0.03819231,98.50419501],[4.53702194,0.03819056,98.50491456],[4.5370215,0.03818881,98.50563496],[4.53702107,0.03818706,98.50635623],[4.53702064,0.03818531,98.50707838],[4.5370202,0.03818356,98.50780143],[4.53701977,0.03818181,98.50852539],[4.53701934,0.03818006,98.50925029],[4.53701917,0.0381794,98.50952094],[4.53703275,0.03817608,98.50952094],[4.53703291,0.03817673,98.50925029],[4.53703333,0.03817848,98.50852539],[4.53703376,0.03818024,98.50780143],[4.53703418,0.03818199,98.50707838],[4.53703461,0.03818374,98.50635623],[4.53703504,0.03818549,98.50563496],[4.53703546,0.03818725,98.50491456],[4.53703589,0.038189,98.50419501],[4.53703631,0.03819075,98.50347628],[4.53703674,0.0381925,98.50275836],[4.53703717,0.03819425,98.50204124],[4.53703759,0.03819601,98.5013249],[4.53703802,0.03819776,98.50060932],[4.53703845,0.03819951,98.49989448],[4.53703887,0.03820126,98.49918036],[4.5370393,0.03820302,98.49846695],[4.53703972,0.03820477,98.49775423],[4.53704015,0.03820652,98.49704219],[4.53704058,0.03820827,98.4963308],[4.537041,0.03821003,98.49562005],[4.53704143,0.03821178,98.49490993],[4.53704185,0.03821353,98.49420041],[4.53704228,0.03821528,98.49349148],[4.53704271,0.03821704,98.49278312],[4.53704313,0.03821879,98.49207532],[4.53704356,0.03822054,98.49136805],[4.53704399,0.03822229,98.49066131],[4.53704441,0.03822405,98.48995508],[4.53704484,0.0382258,98.48924933],[4.53704527,0.03822755,98.48854405],[4.53704569,0.0382293,98.48783921],[4.53704612,0.03823106,98.48713478],[4.53704654,0.03823281,98.48643074],[4.53704697,0.03823456,98.48572707],[4.5370474,0.03823631,98.48502373],[4.53704782,0.03823807,98.48432071],[4.53704825,0.03823982,98.48361798],[4.53704868,0.03824157,98.48291551],[4.5370491,0.03824332,98.48221328],[4.53704953,0.03824508,98.48151127],[4.53704996,0.03824683,98.48080945],[4.53705038,0.03824858,98.4801078],[4.53705081,0.03825033,98.47940629],[4.53705123,0.03825209,98.4787049],[4.53705166,0.03825384,98.47800361],[4.53705209,0.03825559,98.47730238],[4.53705251,0.03825734,98.4766012],[4.53705294,0.03825909,98.47590005],[4.53705337,0.03826085,98.47519889],[4.53705379,0.0382626,98.47449771],[4.53705422,0.03826435,98.47379648],[4.53705464,0.0382661,98.47309518],[4.53705507,0.03826786,98.47239379],[4.53705549,0.03826961,98.47169228],[4.53705592,0.03827136,98.47099062],[4.53705635,0.03827311,98.47028881],[4.53705677,0.03827487,98.4695868],[4.5370572,0.03827662,98.46888459],[4.53705762,0.03827837,98.46818214],[4.53705805,0.03828013,98.46747944],[4.53705847,0.03828188,98.46677645],[4.5370589,0.03828363,98.4660732],[4.53705933,0.03828538,98.46536972],[4.53705975,0.03828714,98.46466604],[4.53706018,0.03828889,98.4639622],[4.5370606,0.03829064,98.46325824],[4.53706103,0.03829239,98.46255419],[4.53706145,0.03829415,98.4618501],[4.53706188,0.0382959,98.461146],[4.5370623,0.03829765,98.46044193],[4.53706273,0.0382994,98.45973792],[4.53706315,0.03830116,98.45903401],[4.53706358,0.03830291,98.45833024],[4.537064,0.03830466,98.45762665],[4.53706443,0.03830641,98.45692327],[4.53706486,0.03830817,98.45622014],[4.53706528,0.03830992,98.45551729],[4.53706571,0.03831167,98.45481476],[4.53706613,0.03831343,98.4541126],[4.53706656,0.03831518,98.45341082],[4.53706698,0.03831693,98.45270948],[4.53706741,0.03831868,98.4520086],[4.53706783,0.03832044,98.45130823],[4.53706826,0.03832219,98.45060839],[4.53706869,0.03832394,98.44990913],[4.53706911,0.03832569,98.44921047],[4.53706954,0.03832745,98.44851247],[4.53706996,0.0383292,98.44781514],[4.53707039,0.03833095,98.44711853],[4.53707081,0.0383327,98.44642268],[4.53707124,0.03833446,98.44572761],[4.53707167,0.03833621,98.44503336],[4.53707209,0.03833796,98.44433997],[4.53707252,0.03833971,98.44364748],[4.53707294,0.03834147,98.44295591],[4.53707337,0.03834322,98.44226531],[4.5370738,0.03834497,98.4415757],[4.53707422,0.03834672,98.44088713],[4.53707465,0.03834848,98.44019962],[4.53707507,0.03835023,98.43951322],[4.5370755,0.03835198,98.43882795],[4.53707592,0.03835373,98.43814386],[4.53707635,0.03835549,98.43746097],[4.53707678,0.03835724,98.43677932],[4.5370772,0.03835899,98.43609895],[4.53707763,0.03836074,98.43541988],[4.53707805,0.0383625,98.43474216],[4.53707848,0.03836425,98.43406581],[4.53707891,0.038366,98.43339088],[4.53707933,0.03836775,98.43271739],[4.53707976,0.03836951,98.43204538],[4.53708018,0.03837126,98.43137488],[4.53708061,0.03837301,98.43070592],[4.53708103,0.03837476,98.43003855],[4.53708146,0.03837652,98.42937279],[4.53708189,0.03837827,98.42870868],[4.53708231,0.03838002,98.42804625],[4.53708274,0.03838177,98.42738554],[4.53708316,0.03838353,98.42672657],[4.53708359,0.03838528,98.42606938],[4.53708402,0.03838703,98.42541401],[4.53708444,0.03838878,98.42476048],[4.53708487,0.03839054,98.42410884],[4.53708529,0.03839229,98.42345911],[4.53708572,0.03839404,98.42281133],[4.53708614,0.03839579,98.42216553],[4.53708657,0.03839755,98.42152174],[4.537087,0.0383993,98.42088],[4.53708742,0.03840105,98.42024034],[4.53708785,0.0384028,98.41960279],[4.53708827,0.03840456,98.41896741],[4.5370887,0.03840631,98.41833421],[4.53708913,0.03840806,98.41770318],[4.53708955,0.03840981,98.4170743],[4.53708998,0.03841157,98.41644756],[4.5370904,0.03841332,98.41582293],[4.53709083,0.03841507,98.41520038],[4.53709126,0.03841682,98.41457991],[4.53709168,0.03841858,98.41396148],[4.53709211,0.03842033,98.41334508],[4.53709253,0.03842208,98.41273069],[4.53709296,0.03842383,98.41211828],[4.53709338,0.03842559,98.41150784],[4.53709381,0.03842734,98.41089934],[4.53709424,0.03842909,98.41029276],[4.53709466,0.03843084,98.40968809],[4.53709509,0.0384326,98.40908531],[4.53709551,0.03843435,98.40848438],[4.53709594,0.0384361,98.4078853],[4.53709637,0.03843785,98.40728804],[4.53709679,0.03843961,98.40669258],[4.53709722,0.03844136,98.40609891],[4.53709764,0.03844311,98.405507],[4.53709807,0.03844486,98.40491683],[4.53709849,0.03844662,98.40432838],[4.53709892,0.03844837,98.40374164],[4.53709935,0.03845012,98.40315658],[4.53709977,0.03845187,98.40257318],[4.5371002,0.03845363,98.40199143],[4.53710062,0.03845538,98.4014113],[4.53710105,0.03845713,98.40083277],[4.53710147,0.03845888,98.40025583],[4.5371019,0.03846064,98.39968045],[4.53710233,0.03846239,98.39910662],[4.53710275,0.03846414,98.39853431],[4.53710318,0.03846589,98.39796351],[4.5371036,0.03846765,98.3973942],[4.53710403,0.0384694,98.39682635],[4.53710445,0.03847115,98.39625995],[4.53710488,0.0384729,98.39569498],[4.5371053,0.03847466,98.39513142],[4.53710573,0.03847641,98.39456925],[4.53710615,0.03847816,98.39400845],[4.53710658,0.03847992,98.393449],[4.537107,0.03848167,98.39289088],[4.53710743,0.03848342,98.39233408],[4.53710785,0.03848517,98.39177856],[4.53710828,0.03848693,98.39122432],[4.5371087,0.03848868,98.39067134],[4.53710913,0.03849043,98.39011959],[4.53710955,0.03849218,98.38956905],[4.53710998,0.03849394,98.38901972],[4.5371104,0.03849569,98.38847155],[4.53711083,0.03849744,98.38792455],[4.53711125,0.0384992,98.38737868],[4.53711168,0.03850095,98.38683394],[4.5371121,0.0385027,98.38629029],[4.53711252,0.03850445,98.38574772],[4.53711295,0.03850621,98.38520622],[4.53711337,0.03850796,98.38466575],[4.5371138,0.03850971,98.38412631],[4.53711422,0.03851147,98.38358786],[4.53711465,0.03851322,98.3830504],[4.53711507,0.03851497,98.38251391],[4.53711549,0.03851672,98.38197835],[4.53711592,0.03851848,98.38144372],[4.53711634,0.03852023,98.38090999],[4.53711676,0.03852198,98.38037715],[4.53711719,0.03852374,98.37984517],[4.53711761,0.03852549,98.37931403],[4.53711804,0.03852724,98.37878372],[4.53711846,0.038529,98.37825421],[4.53711888,0.03853075,98.37772548],[4.5371193,0.0385325,98.37719752],[4.53711973,0.03853426,98.3766703],[4.53712015,0.03853601,98.37614384],[4.53712057,0.03853776,98.37561818],[4.537121,0.03853951,98.37509335],[4.53712142,0.03854127,98.37456939],[4.53712184,0.03854302,98.37404636],[4.53712227,0.03854477,98.37352429],[4.53712269,0.03854653,98.37300323],[4.53712311,0.03854828,98.37248321],[4.53712353,0.03855003,98.37196427],[4.53712396,0.03855179,98.37144647],[4.53712438,0.03855354,98.37092983],[4.5371248,0.03855529,98.37041441],[4.53712522,0.03855705,98.36990023],[4.53712565,0.0385588,98.36938735],[4.53712607,0.03856055,98.36887581],[4.53712649,0.03856231,98.36836564],[4.53712691,0.03856406,98.36785689],[4.53712734,0.03856581,98.3673496],[4.53712776,0.03856757,98.36684382],[4.53712818,0.03856932,98.36633957],[4.5371286,0.03857107,98.36583691],[4.53712903,0.03857283,98.36533587],[4.53712945,0.03857458,98.3648365],[4.53712987,0.03857633,98.36433885],[4.53713029,0.03857809,98.36384294],[4.53713072,0.03857984,98.36334882],[4.53713114,0.03858159,98.36285654],[4.53713156,0.03858335,98.36236614],[4.53713199,0.0385851,98.36187765],[4.53713241,0.03858685,98.36139113],[4.53713283,0.03858861,98.3609066],[4.53713325,0.03859036,98.36042412],[4.53713368,0.03859211,98.35994373],[4.5371341,0.03859387,98.35946547],[4.53713452,0.03859562,98.35898938],[4.53713495,0.03859737,98.35851551],[4.53713537,0.03859912,98.35804389],[4.53713579,0.03860088,98.35757457],[4.53713622,0.03860263,98.35710759],[4.53713664,0.03860438,98.356643],[4.53713706,0.03860614,98.35618084],[4.53713749,0.03860789,98.35572115],[4.53713791,0.03860964,98.35526397],[4.53713834,0.0386114,98.35480935],[4.53713876,0.03861315,98.35435734],[4.53713918,0.0386149,98.35390797],[4.53713961,0.03861665,98.3534613],[4.53714003,0.03861841,98.35301736],[4.53714046,0.03862016,98.35257619],[4.53714088,0.03862191,98.35213785],[4.53714131,0.03862367,98.35170238],[4.53714173,0.03862542,98.35126982],[4.53714216,0.03862717,98.35084022],[4.53714258,0.03862892,98.35041363],[4.53714301,0.03863068,98.34999008],[4.53714343,0.03863243,98.34956963],[4.53714386,0.03863418,98.34915231],[4.53714429,0.03863593,98.34873819],[4.53714471,0.03863769,98.3483273],[4.53714514,0.03863944,98.34791968],[4.53714556,0.03864119,98.3475154],[4.53714599,0.03864294,98.34711448],[4.53714642,0.03864469,98.34671699],[4.53713197,0.03864821,98.34671699]]],"type":"Polygon"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":2,"type":"none","predecessorId":0,"sOffset":0.0}},{"geometry":{"coordinates":[[[4.53692694,0.03820202,98.23403648],[4.53692648,0.03820028,98.24270479],[4.53692606,0.03819871,98.24653286],[4.53693222,0.0381972,98.24653286],[4.53693153,0.03819904,98.24270479],[4.53692933,0.03820143,98.23403648],[4.53692694,0.03820202,98.23403648]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-4,"type":"none","predecessorId":0,"sOffset":53.4746052638}},{"geometry":{"coordinates":[[[4.53692933,0.03820143,98.23403648],[4.53693153,0.03819904,98.24270479],[4.53693222,0.0381972,98.24653286],[4.53695186,0.03819239,98.30680636],[4.53695224,0.03819396,98.30621585],[4.53695266,0.03819571,98.3055604],[4.53692933,0.03820143,98.23403648]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","rules":[{"value":"barred"}],"id":-3,"type":"restricted","predecessorId":0,"sOffset":53.4746052638}},{"geometry":{"coordinates":[[[4.53695266,0.03819571,98.3055604],[4.53695224,0.03819396,98.30621585],[4.53695186,0.03819239,98.30680636],[4.53698363,0.03818459,98.40432656],[4.53698401,0.03818617,98.40369225],[4.53698443,0.03818792,98.40298773],[4.53695266,0.03819571,98.3055604]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2,"sOffset":53.4746052638}},{"geometry":{"coordinates":[[[4.53698443,0.03818792,98.40298773],[4.53698401,0.03818617,98.40369225],[4.53698363,0.03818459,98.40432656],[4.53701457,0.03817701,98.49929624],[4.53701495,0.03817858,98.49861958],[4.53701537,0.03818034,98.49786762],[4.53698443,0.03818792,98.40298773]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1,"sOffset":53.4746052638}},{"geometry":{"coordinates":[[[4.53701537,0.03818034,98.49786762],[4.53701495,0.03817858,98.49861958],[4.53701457,0.03817701,98.49929624],[4.53701835,0.03817608,98.51090017],[4.53701874,0.03817765,98.51024693],[4.53701917,0.0381794,98.50952094],[4.53701537,0.03818034,98.49786762]]],"type":"Polygon"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":1,"type":"shoulder","predecessorId":1,"sOffset":53.4746052638}},{"geometry":{"coordinates":[[[4.53701917,0.0381794,98.50952094],[4.53701874,0.03817765,98.51024693],[4.53701835,0.03817608,98.51090017],[4.53703194,0.03817275,98.51090017],[4.53703232,0.03817432,98.51024693],[4.53703275,0.03817608,98.50952094],[4.53701917,0.0381794,98.50952094]]],"type":"Polygon"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":2,"type":"none","predecessorId":2,"sOffset":53.4746052638}},{"geometry":{"coordinates":[[[4.53692606,0.03819871,98.39653286],[4.5369256,0.03819697,98.39712081],[4.53692514,0.03819523,98.39771174],[4.53692468,0.03819348,98.39830563],[4.53692421,0.03819174,98.39890247],[4.53692375,0.03819,98.39950225],[4.53692329,0.03818825,98.40010496],[4.53692283,0.03818651,98.40071059],[4.53692237,0.03818477,98.40131912],[4.5369219,0.03818303,98.40193054],[4.53692144,0.03818128,98.40254485],[4.53692098,0.03817954,98.40316202],[4.53692052,0.0381778,98.40378204],[4.53692006,0.03817605,98.40440488],[4.5369196,0.03817431,98.4050305],[4.53691914,0.03817257,98.40565888],[4.53691868,0.03817083,98.40628999],[4.53691822,0.03816908,98.40692381],[4.53691776,0.03816734,98.4075603],[4.53691729,0.0381656,98.40819943],[4.53691683,0.03816385,98.40884117],[4.53691637,0.03816211,98.4094855],[4.53691591,0.03816037,98.41013239],[4.53691545,0.03815862,98.41078181],[4.53691499,0.03815688,98.41143372],[4.53691453,0.03815514,98.4120881],[4.53691407,0.03815339,98.41274492],[4.53691361,0.03815165,98.41340415],[4.53691315,0.03814991,98.41406576],[4.53691269,0.03814817,98.41472972],[4.53691223,0.03814642,98.415396],[4.53691177,0.03814468,98.41606458],[4.53691131,0.03814294,98.41673541],[4.53691085,0.03814119,98.41740848],[4.53691038,0.03813945,98.41808374],[4.53690992,0.03813771,98.41876118],[4.53690946,0.03813596,98.41944076],[4.536909,0.03813422,98.42012246],[4.53690854,0.03813248,98.42080623],[4.53690808,0.03813074,98.42149206],[4.53690762,0.03812899,98.42217991],[4.53690715,0.03812725,98.42286975],[4.53690669,0.03812551,98.42356155],[4.53690623,0.03812377,98.42425528],[4.53690577,0.03812202,98.42495091],[4.53690531,0.03812028,98.42564841],[4.53690484,0.03811854,98.42634775],[4.53690438,0.0381168,98.4270489],[4.53690392,0.03811505,98.42775183],[4.53690345,0.03811331,98.4284565],[4.53690299,0.03811157,98.4291629],[4.53690253,0.03810983,98.42987098],[4.53690206,0.03810808,98.43058071],[4.5369016,0.03810634,98.43129208],[4.53690113,0.0381046,98.43200503],[4.53690067,0.03810286,98.43271956],[4.5369002,0.03810112,98.43343563],[4.53689974,0.03809937,98.43415324],[4.53689927,0.03809763,98.43487235],[4.53689881,0.03809589,98.43559295],[4.53689834,0.03809415,98.43631502],[4.53689787,0.03809241,98.43703854],[4.53689741,0.03809067,98.4377635],[4.53689694,0.03808892,98.43848986],[4.53689647,0.03808718,98.43921762],[4.53689601,0.03808544,98.43994675],[4.53689554,0.0380837,98.44067724],[4.53689507,0.03808196,98.44140906],[4.53689461,0.03808022,98.44214219],[4.53689414,0.03807848,98.44287662],[4.53689367,0.03807673,98.44361232],[4.5368932,0.03807499,98.44434928],[4.53689274,0.03807325,98.44508748],[4.53689227,0.03807151,98.44582689],[4.5368918,0.03806977,98.44656748],[4.53689134,0.03806803,98.44730924],[4.53689087,0.03806629,98.44805212],[4.53689041,0.03806454,98.44879612],[4.53688994,0.0380628,98.44954123],[4.53688947,0.03806106,98.45028748],[4.53688901,0.03805932,98.45103485],[4.53688854,0.03805758,98.45178338],[4.53688808,0.03805583,98.45253307],[4.53688762,0.03805409,98.45328392],[4.53688715,0.03805235,98.45403596],[4.53688669,0.03805061,98.45478918],[4.53688623,0.03804887,98.45554361],[4.53688577,0.03804712,98.45629925],[4.5368853,0.03804538,98.45705611],[4.53688484,0.03804364,98.4578142],[4.53688438,0.03804189,98.45857354],[4.53688392,0.03804015,98.45933414],[4.53688347,0.03803841,98.460096],[4.53688301,0.03803666,98.46085914],[4.53688255,0.03803492,98.46162356],[4.53688209,0.03803318,98.46238928],[4.53688164,0.03803143,98.46315632],[4.53688118,0.03802969,98.46392467],[4.53688073,0.03802794,98.46469435],[4.53688028,0.0380262,98.46546538],[4.53687982,0.03802445,98.46623775],[4.53687937,0.03802271,98.4670115],[4.53687892,0.03802096,98.46778661],[4.53687847,0.03801922,98.46856311],[4.53687802,0.03801747,98.46934101],[4.53687757,0.03801573,98.47012031],[4.53687712,0.03801398,98.47090103],[4.53687667,0.03801224,98.47168318],[4.53687622,0.03801049,98.47246677],[4.53687577,0.03800874,98.47325181],[4.53687533,0.038007,98.47403831],[4.53687488,0.03800525,98.47482628],[4.53687443,0.03800351,98.47561574],[4.53687398,0.03800176,98.47640669],[4.53687354,0.03800001,98.47719915],[4.53687309,0.03799827,98.47799312],[4.53687264,0.03799652,98.47878862],[4.5368722,0.03799477,98.47958565],[4.53687175,0.03799303,98.48038424],[4.53687131,0.03799128,98.48118438],[4.53687086,0.03798953,98.48198609],[4.53687041,0.03798779,98.48278939],[4.53686997,0.03798604,98.48359428],[4.53686952,0.03798429,98.48440077],[4.53686908,0.03798255,98.48520887],[4.53686863,0.0379808,98.4860186],[4.53686818,0.03797906,98.48682997],[4.53686774,0.03797731,98.48764298],[4.53686729,0.03797556,98.48845765],[4.53686684,0.03797382,98.48927397],[4.5368664,0.03797207,98.49009192],[4.53686595,0.03797032,98.49091149],[4.5368655,0.03796858,98.49173265],[4.53686505,0.03796683,98.49255538],[4.53686461,0.03796509,98.49337967],[4.53686416,0.03796334,98.49420549],[4.53686371,0.03796159,98.49503283],[4.53686326,0.03795985,98.49586166],[4.53686282,0.0379581,98.49669197],[4.53686237,0.03795635,98.49752373],[4.53686192,0.03795461,98.49835692],[4.53686147,0.03795286,98.49919153],[4.53686103,0.03795112,98.50002751],[4.53686058,0.03794937,98.50086483],[4.53686013,0.03794763,98.50170348],[4.53685968,0.03794588,98.50254341],[4.53685923,0.03794413,98.50338459],[4.53685878,0.03794239,98.504227],[4.53685833,0.03794064,98.50507061],[4.53685789,0.0379389,98.50591538],[4.53685744,0.03793715,98.50676129],[4.53685699,0.0379354,98.50760832],[4.53685654,0.03793366,98.50845645],[4.53685609,0.03793191,98.50930565],[4.53685564,0.03793017,98.5101559],[4.53685519,0.03792842,98.51100719],[4.53685474,0.03792668,98.51185948],[4.5368543,0.03792493,98.51271276],[4.53685385,0.03792318,98.51356701],[4.5368534,0.03792144,98.5144222],[4.53685295,0.03791969,98.51527832],[4.5368525,0.03791795,98.51613534],[4.53685205,0.0379162,98.51699324],[4.5368516,0.03791446,98.517852],[4.53685116,0.03791271,98.51871159],[4.53685071,0.03791096,98.519572],[4.53685026,0.03790922,98.52043321],[4.53684981,0.03790747,98.52129518],[4.53684937,0.03790573,98.52215791],[4.53684892,0.03790398,98.52302137],[4.53684847,0.03790223,98.52388554],[4.53684802,0.03790049,98.52475039],[4.53684758,0.03789874,98.52561591],[4.53684713,0.03789699,98.52648207],[4.53684669,0.03789525,98.52734886],[4.53684624,0.0378935,98.52821625],[4.53684579,0.03789175,98.52908422],[4.53684535,0.03789001,98.52995278],[4.5368449,0.03788826,98.53082193],[4.53684446,0.03788652,98.53169169],[4.53684401,0.03788477,98.53256206],[4.53684357,0.03788302,98.53343306],[4.53684312,0.03788128,98.53430468],[4.53684268,0.03787953,98.53517695],[4.53684223,0.03787778,98.53604986],[4.53684179,0.03787603,98.53692342],[4.53684135,0.03787429,98.53779765],[4.5368409,0.03787254,98.53867256],[4.53684046,0.03787079,98.53954814],[4.53684001,0.03786905,98.54042441],[4.53683957,0.0378673,98.54130138],[4.53683913,0.03786555,98.54217905],[4.53683868,0.03786381,98.54305744],[4.53683824,0.03786206,98.54393655],[4.5368378,0.03786031,98.54481639],[4.53683736,0.03785856,98.54569697],[4.53683691,0.03785682,98.5465783],[4.53683647,0.03785507,98.54746039],[4.53683603,0.03785332,98.54834323],[4.53683559,0.03785158,98.54922686],[4.53683514,0.03784983,98.55011126],[4.5368347,0.03784808,98.55099645],[4.53683426,0.03784633,98.55188244],[4.53683382,0.03784459,98.55276923],[4.53683337,0.03784284,98.55365684],[4.53683293,0.03784109,98.55454528],[4.53683249,0.03783934,98.55543454],[4.53683205,0.0378376,98.55632464],[4.53683161,0.03783585,98.55721559],[4.53683116,0.0378341,98.5581074],[4.53683072,0.03783235,98.55900007],[4.53683028,0.03783061,98.55989361],[4.53682984,0.03782886,98.56078803],[4.53682939,0.03782711,98.56168334],[4.53682895,0.03782537,98.56257955],[4.53682851,0.03782362,98.56347667],[4.53682807,0.03782187,98.56437469],[4.53682763,0.03782012,98.56527364],[4.53682718,0.03781838,98.56617352],[4.53682674,0.03781663,98.56707434],[4.5368263,0.03781488,98.5679761],[4.53682585,0.03781313,98.56887882],[4.53682541,0.03781139,98.56978251],[4.53682497,0.03780964,98.57068717],[4.53682453,0.03780789,98.57159282],[4.53682408,0.03780615,98.57249948],[4.53682364,0.0378044,98.57340716],[4.5368232,0.03780265,98.57431587],[4.53682275,0.03780091,98.57522562],[4.53682231,0.03779916,98.57613644],[4.53682187,0.03779741,98.57704832],[4.53682142,0.03779566,98.57796128],[4.53682098,0.03779392,98.57887535],[4.53682054,0.03779217,98.57979052],[4.53682009,0.03779042,98.58070681],[4.53681965,0.03778868,98.5816242],[4.5368192,0.03778693,98.58254268],[4.53681876,0.03778518,98.58346225],[4.53681832,0.03778344,98.58438289],[4.53681787,0.03778169,98.5853046],[4.53681743,0.03777994,98.58622737],[4.53681698,0.0377782,98.58715119],[4.53681654,0.03777645,98.58807604],[4.5368161,0.0377747,98.58900193],[4.53681565,0.03777296,98.58992884],[4.53681521,0.03777121,98.59085677],[4.53681476,0.03776946,98.5917857],[4.53681432,0.03776772,98.59271563],[4.53681387,0.03776597,98.59364658],[4.53681343,0.03776422,98.59457854],[4.53681299,0.03776247,98.5955115],[4.53681254,0.03776073,98.59644545],[4.5368121,0.03775898,98.59738037],[4.53681165,0.03775723,98.59831626],[4.53681121,0.03775549,98.59925311],[4.53681077,0.03775374,98.60019091],[4.53681032,0.03775199,98.60112963],[4.53680988,0.03775025,98.60206928],[4.53680943,0.0377485,98.60300984],[4.53680899,0.03774675,98.6039513],[4.53680855,0.03774501,98.60489365],[4.5368081,0.03774326,98.60583688],[4.53680766,0.03774151,98.60678097],[4.53680721,0.03773977,98.60772592],[4.53680677,0.03773802,98.60867171],[4.53680633,0.03773627,98.60961834],[4.53680588,0.03773453,98.61056579],[4.53680544,0.03773278,98.61151404],[4.53680499,0.03773103,98.6124631],[4.53680455,0.03772929,98.61341295],[4.53680411,0.03772754,98.61436358],[4.53680366,0.03772579,98.61531497],[4.53680322,0.03772404,98.61626712],[4.53680278,0.0377223,98.61722002],[4.53680233,0.03772055,98.61817364],[4.53680189,0.0377188,98.61912799],[4.53680145,0.03771706,98.62008305],[4.53680101,0.03771531,98.62103882],[4.53680056,0.03771356,98.62199527],[4.53680012,0.03771182,98.6229524],[4.53679968,0.03771007,98.62391019],[4.53679923,0.03770832,98.62486865],[4.53679879,0.03770657,98.62582775],[4.53679835,0.03770483,98.62678748],[4.53679791,0.03770308,98.62774784],[4.53679746,0.03770133,98.6287088],[4.53679702,0.03769959,98.62967038],[4.53679658,0.03769784,98.63063254],[4.53679614,0.03769609,98.63159528],[4.5367957,0.03769434,98.63255859],[4.53679526,0.0376926,98.63352246],[4.53679481,0.03769085,98.63448687],[4.53679437,0.0376891,98.63545182],[4.53679393,0.03768735,98.63641729],[4.53679349,0.03768561,98.63738328],[4.53679305,0.03768386,98.63834978],[4.53679261,0.03768211,98.63931676],[4.53679217,0.03768036,98.64028423],[4.53679173,0.03767862,98.64125216],[4.53679128,0.03767687,98.64222056],[4.53679084,0.03767512,98.6431894],[4.5367904,0.03767337,98.64415869],[4.53678996,0.03767163,98.6451284],[4.53678952,0.03766988,98.64609852],[4.53678908,0.03766813,98.64706906],[4.53678864,0.03766638,98.64803998],[4.5367882,0.03766464,98.64901129],[4.53678776,0.03766289,98.64998298],[4.53678732,0.03766114,98.65095502],[4.53678687,0.03765939,98.65192742],[4.53678643,0.03765765,98.65290016],[4.53678599,0.0376559,98.65387323],[4.53678555,0.03765415,98.65484661],[4.53678511,0.03765241,98.65582031],[4.53678467,0.03765066,98.6567943],[4.53678422,0.03764891,98.65776858],[4.53678378,0.03764716,98.65874314],[4.53678334,0.03764542,98.65971796],[4.53678289,0.03764367,98.66069304],[4.53678245,0.03764192,98.66166836],[4.53678201,0.03764018,98.66264391],[4.53678156,0.03763843,98.66361969],[4.53678112,0.03763668,98.66459568],[4.53678068,0.03763494,98.66557187],[4.53678023,0.03763319,98.66654825],[4.53677979,0.03763144,98.66752482],[4.53677934,0.0376297,98.66850155],[4.53677889,0.03762795,98.66947844],[4.53677845,0.0376262,98.67045548],[4.536778,0.03762446,98.67143266],[4.53677755,0.03762271,98.67240999],[4.53677711,0.03762097,98.67338748],[4.53677666,0.03761922,98.67436512],[4.53677621,0.03761747,98.67534291],[4.53677576,0.03761573,98.67632087],[4.53677531,0.03761398,98.677299],[4.53677486,0.03761224,98.67827729],[4.53677442,0.03761049,98.67925576],[4.53677397,0.03760875,98.68023441],[4.53677352,0.037607,98.68121324],[4.53677307,0.03760526,98.68219228],[4.53677261,0.03760351,98.68317151],[4.53677216,0.03760177,98.68415095],[4.53677171,0.03760002,98.68513061],[4.53677126,0.03759828,98.68611049],[4.53677081,0.03759653,98.6870906],[4.53677036,0.03759479,98.68807095],[4.53676991,0.03759304,98.68905154],[4.53676945,0.0375913,98.69003238],[4.536769,0.03758955,98.69101348],[4.53676855,0.03758781,98.69199484],[4.5367681,0.03758606,98.69297648],[4.53676765,0.03758432,98.69395839],[4.53676719,0.03758258,98.69494059],[4.53676674,0.03758083,98.69592308],[4.53676629,0.03757909,98.69690587],[4.53676583,0.03757734,98.69788897],[4.53676538,0.0375756,98.69887237],[4.53676493,0.03757385,98.6998561],[4.53676448,0.03757211,98.70084015],[4.53676402,0.03757036,98.70182452],[4.53676357,0.03756862,98.70280921],[4.53676312,0.03756688,98.70379422],[4.53676266,0.03756513,98.70477955],[4.53676221,0.03756339,98.7057652],[4.53676175,0.03756164,98.70675116],[4.5367613,0.0375599,98.70773744],[4.53676085,0.03755815,98.70872404],[4.53676039,0.03755641,98.70971095],[4.53675994,0.03755467,98.71069817],[4.53675949,0.03755292,98.7116857],[4.53675903,0.03755118,98.71267354],[4.53675858,0.03754943,98.7136617],[4.53675812,0.03754769,98.71465016],[4.53675767,0.03754595,98.71563893],[4.53675722,0.0375442,98.71662801],[4.53675676,0.03754246,98.71761739],[4.53675631,0.03754071,98.71860708],[4.53675585,0.03753897,98.71959707],[4.5367554,0.03753722,98.72058737],[4.53675494,0.03753548,98.72157797],[4.53675449,0.03753374,98.72256887],[4.53675404,0.03753199,98.72356007],[4.53675358,0.03753025,98.72455156],[4.53675313,0.0375285,98.72554336],[4.53675267,0.03752676,98.72653545],[4.53675222,0.03752502,98.72752784],[4.53675176,0.03752327,98.72852053],[4.53675131,0.03752153,98.72951351],[4.53675085,0.03751978,98.73050678],[4.5367504,0.03751804,98.73150035],[4.53674994,0.0375163,98.7324942],[4.53674949,0.03751455,98.73348835],[4.53674904,0.03751281,98.73448278],[4.53674858,0.03751106,98.7354775],[4.53674813,0.03750932,98.73647251],[4.53674767,0.03750758,98.73746781],[4.53674722,0.03750583,98.73846339],[4.53674676,0.03750409,98.73945925],[4.53674631,0.03750235,98.7404554],[4.53674585,0.0375006,98.74145183],[4.5367454,0.03749886,98.74244854],[4.53674494,0.03749711,98.74344553],[4.53674449,0.03749537,98.7444428],[4.53674403,0.03749363,98.74544034],[4.53674358,0.03749188,98.74643817],[4.53674312,0.03749014,98.74743626],[4.53674267,0.03748839,98.74843464],[4.53674221,0.03748665,98.74943328],[4.53674176,0.03748491,98.7504322],[4.5367413,0.03748316,98.75143139],[4.53674085,0.03748142,98.75243085],[4.5367404,0.03747967,98.75343058],[4.53673994,0.03747793,98.75443058],[4.53673949,0.03747619,98.75543084],[4.53673903,0.03747444,98.75643137],[4.53673858,0.0374727,98.75743217],[4.53673812,0.03747095,98.75843323],[4.53673767,0.03746921,98.75943455],[4.53673722,0.03746747,98.76043614],[4.53673676,0.03746572,98.761438],[4.53673631,0.03746398,98.76244015],[4.53673585,0.03746223,98.7634426],[4.5367354,0.03746049,98.76444537],[4.53673495,0.03745875,98.76544848],[4.53673449,0.037457,98.76645193],[4.53673404,0.03745526,98.76745574],[4.53673358,0.03745351,98.76845991],[4.53673313,0.03745177,98.76946444],[4.53673268,0.03745003,98.77046935],[4.53673222,0.03744828,98.77147462],[4.53673177,0.03744654,98.77248028],[4.53673131,0.03744479,98.77348632],[4.53673086,0.03744305,98.77449275],[4.53673041,0.0374413,98.77549957],[4.53672995,0.03743956,98.77650679],[4.5367295,0.03743782,98.7775144],[4.53672905,0.03743607,98.7785224],[4.5367286,0.03743433,98.77953077],[4.53672814,0.03743259,98.7805395],[4.53672769,0.03743084,98.78154855],[4.53672724,0.0374291,98.78255793],[4.53672678,0.03742735,98.7835676],[4.53672633,0.03742561,98.78457756],[4.53672588,0.03742387,98.78558778],[4.53672542,0.03742212,98.78659826],[4.53672497,0.03742038,98.78760897],[4.53672452,0.03741863,98.78861989],[4.53672406,0.03741689,98.78963103],[4.53672361,0.03741514,98.79064237],[4.53672316,0.0374134,98.79165391],[4.53672271,0.03741166,98.79266564],[4.53672225,0.03740991,98.79367755],[4.5367218,0.03740817,98.79468965],[4.53672135,0.03740642,98.79570191],[4.53672089,0.03740468,98.79671435],[4.53672044,0.03740293,98.79772695],[4.53671999,0.03740119,98.7987397],[4.53671953,0.03739945,98.79975259],[4.53671908,0.0373977,98.80076564],[4.53671863,0.03739596,98.80177881],[4.53671817,0.03739421,98.80279212],[4.53671772,0.03739247,98.80380555],[4.53671727,0.03739073,98.8048191],[4.53671681,0.03738898,98.80583276],[4.53671636,0.03738724,98.80684653],[4.5367159,0.03738549,98.8078604],[4.53671545,0.03738375,98.80887435],[4.536715,0.03738201,98.8098884],[4.53671454,0.03738026,98.81090251],[4.53671409,0.03737852,98.81191667],[4.53671363,0.03737677,98.81293088],[4.53671318,0.03737503,98.8139451],[4.53671273,0.03737329,98.81495932],[4.53671227,0.03737154,98.81597354],[4.53671182,0.0373698,98.81698772],[4.53671136,0.03736805,98.81800187],[4.53671091,0.03736631,98.81901595],[4.53671045,0.03736457,98.82002996],[4.53671,0.03736282,98.82104388],[4.53670954,0.03736108,98.82205769],[4.53670908,0.03735934,98.82307138],[4.53670863,0.03735759,98.82408493],[4.53670817,0.03735585,98.82509833],[4.53670772,0.03735411,98.82611155],[4.53670726,0.03735236,98.82712459],[4.5367068,0.03735062,98.82813743],[4.53670635,0.03734888,98.82915005],[4.53670589,0.03734713,98.83016244],[4.53670543,0.03734539,98.83117457],[4.53670498,0.03734365,98.83218645],[4.53670452,0.0373419,98.83319804],[4.53670406,0.03734016,98.83420934],[4.53670361,0.03733842,98.83522032],[4.53670315,0.03733667,98.83623099],[4.5367027,0.03733493,98.83724134],[4.53670224,0.03733318,98.83825137],[4.53670179,0.03733144,98.83926109],[4.53670134,0.03732969,98.84027051],[4.53670089,0.03732795,98.84127961],[4.53670044,0.0373262,98.8422884],[4.53669999,0.03732446,98.8432969],[4.53669955,0.03732271,98.84430508],[4.5366991,0.03732097,98.84531297],[4.53669866,0.03731922,98.84632056],[4.53669822,0.03731747,98.84732785],[4.53669778,0.03731572,98.84833485],[4.53669734,0.03731398,98.84934155],[4.53669691,0.03731223,98.85034796],[4.53669647,0.03731048,98.85135409],[4.53669604,0.03730873,98.85235992],[4.53669561,0.03730698,98.85336547],[4.53669517,0.03730523,98.85437074],[4.53669474,0.03730348,98.85537572],[4.53669431,0.03730173,98.85638043],[4.53669389,0.03729998,98.85738485],[4.53669346,0.03729823,98.858389],[4.53669303,0.03729648,98.85939288],[4.5366926,0.03729473,98.86039648],[4.53669218,0.03729298,98.86139982],[4.53669175,0.03729123,98.86240288],[4.53669132,0.03728948,98.86340568],[4.5366909,0.03728772,98.86440821],[4.53669047,0.03728597,98.86541048],[4.53669005,0.03728422,98.86641249],[4.53668962,0.03728247,98.86741424],[4.5366892,0.03728072,98.86841574],[4.53668877,0.03727897,98.86941698],[4.53668835,0.03727722,98.87041798],[4.53668792,0.03727547,98.87141873],[4.53668749,0.03727372,98.87241923],[4.53668707,0.03727196,98.8734195],[4.53668664,0.03727021,98.87441953],[4.53668621,0.03726846,98.87541932],[4.53668578,0.03726671,98.87641889],[4.53668536,0.03726496,98.87741822],[4.53668493,0.03726321,98.87841733],[4.5366845,0.03726146,98.87941622],[4.53668407,0.03725971,98.88041488],[4.53668364,0.03725796,98.88141333],[4.53668321,0.03725621,98.88241157],[4.53668278,0.03725446,98.88340959],[4.53668235,0.03725271,98.8844074],[4.53668192,0.03725096,98.88540501],[4.53668149,0.03724921,98.88640242],[4.53668106,0.03724746,98.88739962],[4.53668062,0.03724571,98.88839663],[4.53668019,0.03724396,98.88939345],[4.53667976,0.03724221,98.89039007],[4.53667933,0.03724046,98.8913865],[4.5366789,0.03723871,98.89238275],[4.53667846,0.03723696,98.89337883],[4.53667803,0.03723521,98.89437476],[4.5366776,0.03723347,98.89537057],[4.53667717,0.03723172,98.89636628],[4.53667674,0.03722997,98.89736193],[4.5366763,0.03722822,98.89835753],[4.53667587,0.03722647,98.8993531],[4.53667544,0.03722472,98.90034868],[4.53667501,0.03722297,98.90134426],[4.53667458,0.03722122,98.90233986],[4.53667414,0.03721947,98.90333545],[4.53667371,0.03721772,98.90433101],[4.53667328,0.03721597,98.90532654],[4.53667285,0.03721422,98.90632202],[4.53667242,0.03721247,98.90731743],[4.53667199,0.03721072,98.90831277],[4.53667156,0.03720897,98.909308],[4.53667113,0.03720722,98.91030313],[4.5366707,0.03720547,98.91129814],[4.53667027,0.03720372,98.912293],[4.53666984,0.03720197,98.91328772],[4.53666941,0.03720022,98.91428227],[4.53666898,0.03719847,98.91527663],[4.53666855,0.03719672,98.91627081],[4.53666812,0.03719497,98.91726477],[4.53666769,0.03719322,98.91825851],[4.53666726,0.03719147,98.91925201],[4.53666683,0.03718972,98.92024525],[4.5366664,0.03718797,98.92123823],[4.53666597,0.03718622,98.92223093],[4.53666554,0.03718447,98.92322333],[4.53666511,0.03718272,98.92421543],[4.53666469,0.03718097,98.92520719],[4.53666426,0.03717922,98.92619862],[4.53666383,0.03717747,98.9271897],[4.5366634,0.03717572,98.92818041],[4.53666297,0.03717397,98.92917074],[4.53666254,0.03717222,98.93016067],[4.53666211,0.03717047,98.93115019],[4.53666168,0.03716872,98.93213929],[4.53666125,0.03716697,98.93312795],[4.53666083,0.03716521,98.93411616],[4.5366604,0.03716346,98.9351039],[4.53665997,0.03716171,98.93609116],[4.53665954,0.03715996,98.93707793],[4.53665911,0.03715821,98.93806419],[4.53665868,0.03715646,98.93904992],[4.53665825,0.03715471,98.94003511],[4.53665782,0.03715296,98.94101976],[4.53665739,0.03715121,98.94200383],[4.53665696,0.03714946,98.94298733],[4.53665653,0.03714771,98.94397024],[4.53665611,0.03714596,98.94495261],[4.53665568,0.03714421,98.94593447],[4.53665525,0.03714246,98.94691587],[4.53665482,0.03714071,98.94789686],[4.53665439,0.03713896,98.94887748],[4.53665396,0.03713721,98.94985776],[4.53665353,0.03713546,98.95083773],[4.5366531,0.03713371,98.95181737],[4.53665267,0.03713196,98.9527967],[4.53665224,0.03713021,98.9537757],[4.5366518,0.03712846,98.95475438],[4.53665137,0.03712671,98.95573275],[4.53665094,0.03712496,98.9567108],[4.53665051,0.03712321,98.95768853],[4.53665008,0.03712146,98.95866595],[4.53664965,0.03711971,98.95964305],[4.53664922,0.03711796,98.96061984],[4.53664879,0.03711621,98.96159631],[4.53664836,0.03711446,98.96257247],[4.53664793,0.03711271,98.96354832],[4.53664749,0.03711096,98.96452387],[4.53664706,0.03710921,98.9654991],[4.53664663,0.03710746,98.96647402],[4.5366462,0.03710571,98.96744863],[4.53664577,0.03710397,98.96842294],[4.53664533,0.03710222,98.96939694],[4.5366449,0.03710047,98.97037064],[4.53664447,0.03709872,98.97134403],[4.53664404,0.03709697,98.97231712],[4.5366436,0.03709522,98.97328991],[4.53664317,0.03709347,98.97426239],[4.53664274,0.03709172,98.97523457],[4.5366423,0.03708997,98.97620645],[4.53664187,0.03708822,98.97717804],[4.53664143,0.03708647,98.97814932],[4.536641,0.03708472,98.97912031],[4.53664057,0.03708298,98.980091],[4.53664013,0.03708123,98.9810614],[4.5366397,0.03707948,98.9820315],[4.53663926,0.03707773,98.9830013],[4.53663883,0.03707598,98.98397082],[4.53663839,0.03707423,98.98494004],[4.53663795,0.03707248,98.98590897],[4.53663752,0.03707073,98.98687762],[4.53663708,0.03706899,98.98784598],[4.53663665,0.03706724,98.98881405],[4.53663621,0.03706549,98.98978184],[4.53663577,0.03706374,98.99074935],[4.53663534,0.03706199,98.99171657],[4.5366349,0.03706024,98.99268352],[4.53663446,0.0370585,98.99365019],[4.53663403,0.03705675,98.99461659],[4.53663359,0.037055,98.99558271],[4.53663315,0.03705325,98.99654855],[4.53663271,0.0370515,98.99751413],[4.53663228,0.03704975,98.99847943],[4.53663184,0.03704801,98.99944447],[4.5366314,0.03704626,99.00040923],[4.53663096,0.03704451,99.00137368],[4.53663052,0.03704276,99.00233777],[4.53663009,0.03704101,99.00330146],[4.53662965,0.03703927,99.00426471],[4.53662921,0.03703752,99.00522746],[4.53662877,0.03703577,99.00618968],[4.53662833,0.03703402,99.00715131],[4.53662789,0.03703227,99.00811232],[4.53662745,0.03703053,99.00907267],[4.53662701,0.03702878,99.01003235],[4.53662657,0.03702703,99.01099136],[4.53662613,0.03702528,99.01194971],[4.53662569,0.03702354,99.01290739],[4.53662525,0.03702179,99.01386443],[4.53662481,0.03702004,99.0148208],[4.53662437,0.03701829,99.01577654],[4.53662393,0.03701655,99.01673162],[4.53662349,0.0370148,99.01768607],[4.53662305,0.03701305,99.01863989],[4.53662261,0.03701131,99.01959307],[4.53662217,0.03700956,99.02054563],[4.53662173,0.03700781,99.02149757],[4.53662129,0.03700606,99.02244888],[4.53662084,0.03700432,99.02339959],[4.5366204,0.03700257,99.02434968],[4.53661996,0.03700082,99.02529917],[4.53661952,0.03699907,99.02624805],[4.53661908,0.03699733,99.02719634],[4.53661864,0.03699558,99.02814404],[4.53661819,0.03699383,99.02909115],[4.53661775,0.03699209,99.03003767],[4.53661731,0.03699034,99.03098362],[4.53661687,0.03698859,99.03192898],[4.53661643,0.03698685,99.03287378],[4.53661598,0.0369851,99.033818],[4.53661554,0.03698335,99.03476167],[4.5366151,0.0369816,99.03570477],[4.53661466,0.03697986,99.03664731],[4.53661422,0.03697811,99.03758927],[4.53661377,0.03697636,99.03853067],[4.53661333,0.03697462,99.0394715],[4.53661289,0.03697287,99.04041176],[4.53661245,0.03697112,99.04135144],[4.53661201,0.03696938,99.04229054],[4.53661156,0.03696763,99.04322906],[4.53661112,0.03696588,99.044167],[4.53661068,0.03696413,99.04510435],[4.53661024,0.03696239,99.04604112],[4.5366098,0.03696064,99.0469773],[4.53660935,0.03695889,99.04791289],[4.53660891,0.03695715,99.04884788],[4.53660847,0.0369554,99.04978228],[4.53660803,0.03695365,99.05071609],[4.53660759,0.0369519,99.05164929],[4.53660715,0.03695016,99.05258189],[4.53660671,0.03694841,99.05351389],[4.53660626,0.03694666,99.05444527],[4.53660582,0.03694492,99.05537606],[4.53660538,0.03694317,99.05630623],[4.53660494,0.03694142,99.05723579],[4.5366045,0.03693967,99.05816473],[4.53660406,0.03693793,99.05909305],[4.53660362,0.03693618,99.06002076],[4.53660318,0.03693443,99.06094784],[4.53660274,0.03693268,99.06187431],[4.5366023,0.03693094,99.06280014],[4.53660186,0.03692919,99.06372535],[4.53660142,0.03692744,99.06464992],[4.53660098,0.03692569,99.06557387],[4.53660054,0.03692395,99.06649718],[4.5366001,0.0369222,99.06741985],[4.53659966,0.03692045,99.06834188],[4.53659922,0.0369187,99.06926328],[4.53659878,0.03691696,99.07018403],[4.53659834,0.03691521,99.07110413],[4.5365979,0.03691346,99.07202359],[4.53659746,0.03691171,99.07294239],[4.53659702,0.03690996,99.07386055],[4.53659658,0.03690822,99.07477805],[4.53659615,0.03690647,99.07569489],[4.53659571,0.03690472,99.07661107],[4.53659527,0.03690297,99.0775266],[4.53659483,0.03690123,99.07844146],[4.53659439,0.03689948,99.07935566],[4.53659396,0.03689773,99.08026918],[4.53659352,0.03689598,99.08118204],[4.53659308,0.03689423,99.08209423],[4.53659264,0.03689248,99.08300574],[4.53659221,0.03689074,99.08391653],[4.53659177,0.03688899,99.08482656],[4.53659133,0.03688724,99.08573579],[4.53659089,0.03688549,99.08664418],[4.53659046,0.03688374,99.08755168],[4.53659002,0.03688199,99.08845825],[4.53658958,0.03688025,99.08936385],[4.53658915,0.0368785,99.09026843],[4.53658871,0.03687675,99.09117196],[4.53658827,0.036875,99.09207439],[4.53658784,0.03687325,99.09297568],[4.5365874,0.0368715,99.09387584],[4.53658696,0.03686976,99.09477486],[4.53658652,0.03686801,99.09567276],[4.53658609,0.03686626,99.09656954],[4.53658565,0.03686451,99.09746521],[4.53658521,0.03686276,99.09835977],[4.53658478,0.03686102,99.09925324],[4.53658434,0.03685927,99.1001456],[4.5365839,0.03685752,99.10103688],[4.53658346,0.03685577,99.10192708],[4.53658303,0.03685402,99.1028162],[4.53658259,0.03685227,99.10370425],[4.53658215,0.03685053,99.10459124],[4.53658172,0.03684878,99.10547718],[4.53658128,0.03684703,99.10636207],[4.53658084,0.03684528,99.10724592],[4.5365804,0.03684353,99.10812875],[4.53657997,0.03684178,99.10901056],[4.53657953,0.03684004,99.10989137],[4.53657909,0.03683829,99.11077117],[4.53657866,0.03683654,99.11164999],[4.53657822,0.03683479,99.11252783],[4.53657778,0.03683304,99.11340469],[4.53657735,0.03683129,99.1142806],[4.53657691,0.03682955,99.11515555],[4.53657647,0.0368278,99.11602956],[4.53657604,0.03682605,99.11690264],[4.5365756,0.0368243,99.1177748],[4.53657516,0.03682255,99.11864606],[4.53657473,0.0368208,99.11951645],[4.53657429,0.03681906,99.12038599],[4.53657385,0.03681731,99.1212547],[4.53657342,0.03681556,99.1221226],[4.53657298,0.03681381,99.12298972],[4.53657254,0.03681206,99.12385607],[4.53657211,0.03681031,99.12472167],[4.53657167,0.03680856,99.12558656],[4.53657124,0.03680682,99.12645075],[4.5365708,0.03680507,99.12731426],[4.53657037,0.03680332,99.12817712],[4.53656993,0.03680157,99.12903935],[4.5365695,0.03679982,99.12990097],[4.53656906,0.03679807,99.13076199],[4.53656863,0.03679632,99.13162241],[4.53656819,0.03679457,99.1324822],[4.53656776,0.03679282,99.13334135],[4.53656732,0.03679108,99.13419983],[4.53656689,0.03678933,99.13505763],[4.53656646,0.03678758,99.13591472],[4.53656602,0.03678583,99.1367711],[4.53656559,0.03678408,99.13762673],[4.53656516,0.03678233,99.1384816],[4.53656472,0.03678058,99.13933568],[4.53656429,0.03677883,99.14018897],[4.53656386,0.03677708,99.14104145],[4.53656342,0.03677533,99.14189311],[4.53656299,0.03677358,99.14274398],[4.53656256,0.03677183,99.14359407],[4.53656212,0.03677008,99.14444338],[4.53656169,0.03676833,99.14529194],[4.53656126,0.03676659,99.14613975],[4.53656083,0.03676484,99.14698682],[4.53656039,0.03676309,99.14783317],[4.53655996,0.03676134,99.14867881],[4.53655953,0.03675959,99.14952375],[4.5365591,0.03675784,99.15036798],[4.53655867,0.03675609,99.15121149],[4.53655823,0.03675434,99.15205427],[4.5365578,0.03675259,99.1528963],[4.53655737,0.03675084,99.15373757],[4.53655694,0.03674909,99.15457807],[4.53655651,0.03674734,99.15541778],[4.53655608,0.03674559,99.15625668],[4.53655564,0.03674384,99.15709478],[4.53655521,0.03674209,99.15793204],[4.53655478,0.03674034,99.15876846],[4.53655435,0.03673859,99.15960403],[4.53655392,0.03673684,99.16043872],[4.53655349,0.03673509,99.16127254],[4.53655306,0.03673334,99.16210547],[4.53655263,0.03673159,99.1629375],[4.53655219,0.03672984,99.16376863],[4.53655176,0.03672809,99.16459883],[4.53655133,0.03672634,99.16542811],[4.5365509,0.03672459,99.16625646],[4.53655047,0.03672284,99.16708385],[4.53655004,0.03672109,99.16791029],[4.53654961,0.03671934,99.16873577],[4.53654917,0.03671759,99.16956027],[4.53654874,0.03671584,99.17038379],[4.53654831,0.03671409,99.17120631],[4.53654788,0.03671234,99.17202783],[4.53654745,0.03671059,99.17284833],[4.53654701,0.03670884,99.17366781],[4.53654658,0.0367071,99.17448626],[4.53654615,0.03670535,99.17530366],[4.53654572,0.0367036,99.17612002],[4.53654529,0.03670185,99.17693531],[4.53654485,0.0367001,99.17774952],[4.53654442,0.03669835,99.17856266],[4.53654399,0.0366966,99.1793747],[4.53654356,0.03669485,99.18018564],[4.53654312,0.0366931,99.18099547],[4.53654269,0.03669135,99.18180418],[4.53654226,0.0366896,99.18261176],[4.53654182,0.03668785,99.18341819],[4.53654139,0.0366861,99.18422348],[4.53654096,0.03668435,99.1850276],[4.53654052,0.0366826,99.18583055],[4.53654009,0.03668085,99.18663232],[4.53653965,0.03667911,99.1874329],[4.53653922,0.03667736,99.18823226],[4.53653879,0.03667561,99.18903042],[4.53653835,0.03667386,99.18982734],[4.53653792,0.03667211,99.19062303],[4.53653748,0.03667036,99.19141746],[4.53653705,0.03666861,99.19221063],[4.53653661,0.03666686,99.19300253],[4.53653618,0.03666511,99.19379314],[4.53653574,0.03666337,99.19458246],[4.53653531,0.03666162,99.19537048],[4.53653487,0.03665987,99.19615723],[4.53653443,0.03665812,99.19694272],[4.536534,0.03665637,99.19772699],[4.53653356,0.03665462,99.19851005],[4.53653313,0.03665287,99.19929194],[4.53653269,0.03665112,99.20007266],[4.53653225,0.03664938,99.20085226],[4.53653182,0.03664763,99.20163075],[4.53653138,0.03664588,99.20240818],[4.53653094,0.03664413,99.20318456],[4.53653051,0.03664238,99.20395994],[4.53653007,0.03664063,99.20473435],[4.53652963,0.03663889,99.20550782],[4.53652919,0.03663714,99.20628038],[4.53652876,0.03663539,99.20705206],[4.53652832,0.03663364,99.20782288],[4.53652788,0.03663189,99.20859286],[4.53652745,0.03663014,99.209362],[4.53652701,0.0366284,99.21013032],[4.53652657,0.03662665,99.21089784],[4.53652613,0.0366249,99.21166458],[4.5365257,0.03662315,99.21243055],[4.53652526,0.0366214,99.21319578],[4.53652482,0.03661965,99.2139603],[4.53652439,0.03661791,99.21472411],[4.53652395,0.03661616,99.21548726],[4.53652351,0.03661441,99.21624974],[4.53652308,0.03661266,99.21701155],[4.53652264,0.03661091,99.21777269],[4.5365222,0.03660916,99.21853316],[4.53652177,0.03660742,99.21929295],[4.53652133,0.03660567,99.22005206],[4.53652089,0.03660392,99.22081048],[4.53652046,0.03660217,99.22156822],[4.53652002,0.03660042,99.22232527],[4.53651958,0.03659867,99.22308162],[4.53651915,0.03659692,99.22383727],[4.53651871,0.03659518,99.22459222],[4.53651827,0.03659343,99.22534647],[4.53651784,0.03659168,99.2261],[4.5365174,0.03658993,99.22685283],[4.53651696,0.03658818,99.22760494],[4.53651653,0.03658643,99.22835632],[4.53651609,0.03658468,99.22910699],[4.53651566,0.03658294,99.22985692],[4.53651522,0.03658119,99.23060613],[4.53651478,0.03657944,99.2313546],[4.53651435,0.03657769,99.23210233],[4.53651391,0.03657594,99.23284932],[4.53651347,0.03657419,99.23359557],[4.53651304,0.03657244,99.23434106],[4.5365126,0.0365707,99.2350858],[4.53651217,0.03656895,99.23582979],[4.53651173,0.0365672,99.23657301],[4.53651129,0.03656545,99.23731547],[4.53651086,0.0365637,99.23805715],[4.53651042,0.03656195,99.23879807],[4.53650998,0.0365602,99.2395382],[4.53650955,0.03655846,99.24027756],[4.53650911,0.03655671,99.24101613],[4.53650868,0.03655496,99.24175391],[4.53650824,0.03655321,99.2424909],[4.5365078,0.03655146,99.24322709],[4.53650737,0.03654971,99.24396248],[4.53650693,0.03654796,99.24469706],[4.53650649,0.03654622,99.24543084],[4.53650606,0.03654447,99.2461638],[4.53650562,0.03654272,99.24689594],[4.53650519,0.03654097,99.24762726],[4.53650475,0.03653922,99.24835775],[4.53650431,0.03653747,99.24908741],[4.53650388,0.03653573,99.24981624],[4.53650344,0.03653398,99.25054423],[4.536503,0.03653223,99.25127137],[4.53650257,0.03653048,99.25199767],[4.53650213,0.03652873,99.25272311],[4.53650169,0.03652698,99.25344769],[4.53650126,0.03652523,99.25417142],[4.53650082,0.03652349,99.25489427],[4.53650038,0.03652174,99.25561626],[4.53649995,0.03651999,99.25633737],[4.53649951,0.03651824,99.2570576],[4.53649907,0.03651649,99.25777695],[4.53649864,0.03651474,99.2584954],[4.5364982,0.036513,99.25921297],[4.53649776,0.03651125,99.25992963],[4.53649732,0.0365095,99.2606454],[4.53649689,0.03650775,99.26136025],[4.53649645,0.036506,99.26207419],[4.53649601,0.03650425,99.26278722],[4.53649557,0.03650251,99.26349932],[4.53649514,0.03650076,99.26421049],[4.53649495,0.03650002,99.26451101],[4.53650955,0.03649625,99.26451101],[4.53650974,0.03649699,99.26421049],[4.53651019,0.03649874,99.26349932],[4.53651063,0.03650049,99.26278722],[4.53651108,0.03650223,99.26207419],[4.53651152,0.03650398,99.26136025],[4.53651197,0.03650572,99.2606454],[4.53651241,0.03650747,99.25992963],[4.53651286,0.03650922,99.25921297],[4.5365133,0.03651096,99.2584954],[4.53651375,0.03651271,99.25777695],[4.53651419,0.03651446,99.2570576],[4.53651464,0.0365162,99.25633737],[4.53651508,0.03651795,99.25561626],[4.53651553,0.0365197,99.25489427],[4.53651597,0.03652144,99.25417142],[4.53651642,0.03652319,99.25344769],[4.53651686,0.03652494,99.25272311],[4.53651731,0.03652668,99.25199767],[4.53651775,0.03652843,99.25127137],[4.53651819,0.03653018,99.25054423],[4.53651864,0.03653192,99.24981624],[4.53651908,0.03653367,99.24908741],[4.53651953,0.03653542,99.24835775],[4.53651997,0.03653716,99.24762726],[4.53652042,0.03653891,99.24689594],[4.53652086,0.03654066,99.2461638],[4.53652131,0.0365424,99.24543084],[4.53652175,0.03654415,99.24469706],[4.53652219,0.0365459,99.24396248],[4.53652264,0.03654764,99.24322709],[4.53652308,0.03654939,99.2424909],[4.53652353,0.03655114,99.24175391],[4.53652397,0.03655288,99.24101613],[4.53652442,0.03655463,99.24027756],[4.53652486,0.03655638,99.2395382],[4.5365253,0.03655812,99.23879807],[4.53652575,0.03655987,99.23805715],[4.53652619,0.03656162,99.23731547],[4.53652664,0.03656336,99.23657301],[4.53652708,0.03656511,99.23582979],[4.53652753,0.03656686,99.2350858],[4.53652797,0.0365686,99.23434106],[4.53652841,0.03657035,99.23359557],[4.53652886,0.0365721,99.23284932],[4.5365293,0.03657384,99.23210233],[4.53652975,0.03657559,99.2313546],[4.53653019,0.03657734,99.23060613],[4.53653064,0.03657908,99.22985692],[4.53653108,0.03658083,99.22910699],[4.53653153,0.03658258,99.22835632],[4.53653197,0.03658432,99.22760494],[4.53653242,0.03658607,99.22685283],[4.53653286,0.03658782,99.2261],[4.5365333,0.03658956,99.22534647],[4.53653375,0.03659131,99.22459222],[4.53653419,0.03659306,99.22383727],[4.53653464,0.0365948,99.22308162],[4.53653508,0.03659655,99.22232527],[4.53653553,0.0365983,99.22156822],[4.53653597,0.03660004,99.22081048],[4.53653642,0.03660179,99.22005206],[4.53653686,0.03660354,99.21929295],[4.53653731,0.03660528,99.21853316],[4.53653776,0.03660703,99.21777269],[4.5365382,0.03660878,99.21701155],[4.53653865,0.03661052,99.21624974],[4.53653909,0.03661227,99.21548726],[4.53653954,0.03661401,99.21472411],[4.53653998,0.03661576,99.2139603],[4.53654043,0.03661751,99.21319578],[4.53654087,0.03661925,99.21243055],[4.53654132,0.036621,99.21166458],[4.53654177,0.03662275,99.21089784],[4.53654221,0.03662449,99.21013032],[4.53654266,0.03662624,99.209362],[4.5365431,0.03662798,99.20859286],[4.53654355,0.03662973,99.20782288],[4.536544,0.03663148,99.20705206],[4.53654444,0.03663322,99.20628038],[4.53654489,0.03663497,99.20550782],[4.53654533,0.03663672,99.20473435],[4.53654578,0.03663846,99.20395994],[4.53654623,0.03664021,99.20318456],[4.53654667,0.03664196,99.20240818],[4.53654712,0.0366437,99.20163075],[4.53654756,0.03664545,99.20085226],[4.53654801,0.03664719,99.20007266],[4.53654845,0.03664894,99.19929194],[4.5365489,0.03665069,99.19851005],[4.53654935,0.03665243,99.19772699],[4.53654979,0.03665418,99.19694272],[4.53655024,0.03665593,99.19615723],[4.53655068,0.03665767,99.19537048],[4.53655113,0.03665942,99.19458246],[4.53655157,0.03666117,99.19379314],[4.53655201,0.03666291,99.19300253],[4.53655246,0.03666466,99.19221063],[4.5365529,0.03666641,99.19141746],[4.53655335,0.03666815,99.19062303],[4.53655379,0.0366699,99.18982734],[4.53655423,0.03667165,99.18903042],[4.53655468,0.03667339,99.18823226],[4.53655512,0.03667514,99.1874329],[4.53655556,0.03667689,99.18663232],[4.53655601,0.03667863,99.18583055],[4.53655645,0.03668038,99.1850276],[4.53655689,0.03668213,99.18422348],[4.53655733,0.03668388,99.18341819],[4.53655778,0.03668562,99.18261176],[4.53655822,0.03668737,99.18180418],[4.53655866,0.03668912,99.18099547],[4.5365591,0.03669086,99.18018564],[4.53655954,0.03669261,99.1793747],[4.53655999,0.03669436,99.17856266],[4.53656043,0.03669611,99.17774952],[4.53656087,0.03669785,99.17693531],[4.53656131,0.0366996,99.17612002],[4.53656175,0.03670135,99.17530366],[4.53656219,0.0367031,99.17448626],[4.53656263,0.03670484,99.17366781],[4.53656307,0.03670659,99.17284833],[4.53656351,0.03670834,99.17202783],[4.53656395,0.03671009,99.17120631],[4.53656439,0.03671184,99.17038379],[4.53656484,0.03671358,99.16956027],[4.53656528,0.03671533,99.16873577],[4.53656572,0.03671708,99.16791029],[4.53656616,0.03671883,99.16708385],[4.5365666,0.03672057,99.16625646],[4.53656704,0.03672232,99.16542811],[4.53656747,0.03672407,99.16459883],[4.53656791,0.03672582,99.16376863],[4.53656835,0.03672757,99.1629375],[4.53656879,0.03672931,99.16210547],[4.53656923,0.03673106,99.16127254],[4.53656967,0.03673281,99.16043872],[4.53657011,0.03673456,99.15960403],[4.53657055,0.03673631,99.15876846],[4.53657099,0.03673805,99.15793204],[4.53657143,0.0367398,99.15709478],[4.53657187,0.03674155,99.15625668],[4.53657231,0.0367433,99.15541778],[4.53657275,0.03674505,99.15457807],[4.53657319,0.03674679,99.15373757],[4.53657363,0.03674854,99.1528963],[4.53657407,0.03675029,99.15205427],[4.5365745,0.03675204,99.15121149],[4.53657494,0.03675378,99.15036798],[4.53657538,0.03675553,99.14952375],[4.53657582,0.03675728,99.14867881],[4.53657626,0.03675903,99.14783317],[4.5365767,0.03676078,99.14698682],[4.53657714,0.03676252,99.14613975],[4.53657758,0.03676427,99.14529194],[4.53657802,0.03676602,99.14444338],[4.53657846,0.03676777,99.14359407],[4.5365789,0.03676952,99.14274398],[4.53657934,0.03677126,99.14189311],[4.53657978,0.03677301,99.14104145],[4.53658022,0.03677476,99.14018897],[4.53658066,0.03677651,99.13933568],[4.5365811,0.03677826,99.1384816],[4.53658154,0.03678,99.13762673],[4.53658198,0.03678175,99.1367711],[4.53658242,0.0367835,99.13591472],[4.53658286,0.03678525,99.13505763],[4.5365833,0.03678699,99.13419983],[4.53658374,0.03678874,99.13334135],[4.53658418,0.03679049,99.1324822],[4.53658462,0.03679224,99.13162241],[4.53658506,0.03679399,99.13076199],[4.5365855,0.03679573,99.12990097],[4.53658594,0.03679748,99.12903935],[4.53658638,0.03679923,99.12817712],[4.53658682,0.03680098,99.12731426],[4.53658726,0.03680272,99.12645075],[4.5365877,0.03680447,99.12558656],[4.53658814,0.03680622,99.12472167],[4.53658858,0.03680797,99.12385607],[4.53658902,0.03680971,99.12298972],[4.53658946,0.03681146,99.1221226],[4.5365899,0.03681321,99.1212547],[4.53659035,0.03681496,99.12038599],[4.53659079,0.0368167,99.11951645],[4.53659123,0.03681845,99.11864606],[4.53659167,0.0368202,99.1177748],[4.53659211,0.03682195,99.11690264],[4.53659255,0.03682369,99.11602956],[4.53659299,0.03682544,99.11515555],[4.53659343,0.03682719,99.1142806],[4.53659387,0.03682894,99.11340469],[4.53659431,0.03683069,99.11252783],[4.53659475,0.03683243,99.11164999],[4.53659519,0.03683418,99.11077117],[4.53659563,0.03683593,99.10989137],[4.53659607,0.03683768,99.10901056],[4.53659651,0.03683942,99.10812875],[4.53659695,0.03684117,99.10724592],[4.53659739,0.03684292,99.10636207],[4.53659783,0.03684467,99.10547718],[4.53659827,0.03684641,99.10459124],[4.53659871,0.03684816,99.10370425],[4.53659915,0.03684991,99.1028162],[4.53659959,0.03685166,99.10192708],[4.53660003,0.03685341,99.10103688],[4.53660047,0.03685515,99.1001456],[4.53660091,0.0368569,99.09925324],[4.53660135,0.03685865,99.09835977],[4.53660179,0.0368604,99.09746521],[4.53660223,0.03686215,99.09656954],[4.53660267,0.03686389,99.09567276],[4.5366031,0.03686564,99.09477486],[4.53660354,0.03686739,99.09387584],[4.53660398,0.03686914,99.09297568],[4.53660442,0.03687089,99.09207439],[4.53660486,0.03687264,99.09117196],[4.53660529,0.03687438,99.09026843],[4.53660573,0.03687613,99.08936385],[4.53660617,0.03687788,99.08845825],[4.53660661,0.03687963,99.08755168],[4.53660704,0.03688138,99.08664418],[4.53660748,0.03688313,99.08573579],[4.53660792,0.03688487,99.08482656],[4.53660836,0.03688662,99.08391653],[4.53660879,0.03688837,99.08300574],[4.53660923,0.03689012,99.08209423],[4.53660967,0.03689187,99.08118204],[4.5366101,0.03689362,99.08026918],[4.53661054,0.03689537,99.07935566],[4.53661098,0.03689711,99.07844146],[4.53661141,0.03689886,99.0775266],[4.53661185,0.03690061,99.07661107],[4.53661229,0.03690236,99.07569489],[4.53661273,0.03690411,99.07477805],[4.53661316,0.03690586,99.07386055],[4.5366136,0.03690761,99.07294239],[4.53661404,0.03690935,99.07202359],[4.53661447,0.0369111,99.07110413],[4.53661491,0.03691285,99.07018403],[4.53661535,0.0369146,99.06926328],[4.53661578,0.03691635,99.06834188],[4.53661622,0.0369181,99.06741985],[4.53661666,0.03691985,99.06649718],[4.5366171,0.03692159,99.06557387],[4.53661753,0.03692334,99.06464992],[4.53661797,0.03692509,99.06372535],[4.53661841,0.03692684,99.06280014],[4.53661884,0.03692859,99.06187431],[4.53661928,0.03693034,99.06094784],[4.53661972,0.03693209,99.06002076],[4.53662015,0.03693383,99.05909305],[4.53662059,0.03693558,99.05816473],[4.53662103,0.03693733,99.05723579],[4.53662146,0.03693908,99.05630623],[4.5366219,0.03694083,99.05537606],[4.53662234,0.03694258,99.05444527],[4.53662277,0.03694433,99.05351389],[4.53662321,0.03694607,99.05258189],[4.53662365,0.03694782,99.05164929],[4.53662408,0.03694957,99.05071609],[4.53662452,0.03695132,99.04978228],[4.53662496,0.03695307,99.04884788],[4.53662539,0.03695482,99.04791289],[4.53662583,0.03695657,99.0469773],[4.53662627,0.03695831,99.04604112],[4.5366267,0.03696006,99.04510435],[4.53662714,0.03696181,99.044167],[4.53662758,0.03696356,99.04322906],[4.53662801,0.03696531,99.04229054],[4.53662845,0.03696706,99.04135144],[4.53662889,0.03696881,99.04041176],[4.53662932,0.03697055,99.0394715],[4.53662976,0.0369723,99.03853067],[4.53663019,0.03697405,99.03758927],[4.53663063,0.0369758,99.03664731],[4.53663107,0.03697755,99.03570477],[4.5366315,0.0369793,99.03476167],[4.53663194,0.03698105,99.033818],[4.53663238,0.0369828,99.03287378],[4.53663281,0.03698454,99.03192898],[4.53663325,0.03698629,99.03098362],[4.53663368,0.03698804,99.03003767],[4.53663412,0.03698979,99.02909115],[4.53663456,0.03699154,99.02814404],[4.53663499,0.03699329,99.02719634],[4.53663543,0.03699504,99.02624805],[4.53663586,0.03699679,99.02529917],[4.5366363,0.03699853,99.02434968],[4.53663674,0.03700028,99.02339959],[4.53663717,0.03700203,99.02244888],[4.53663761,0.03700378,99.02149757],[4.53663804,0.03700553,99.02054563],[4.53663848,0.03700728,99.01959307],[4.53663891,0.03700903,99.01863989],[4.53663935,0.03701078,99.01768607],[4.53663978,0.03701253,99.01673162],[4.53664022,0.03701427,99.01577654],[4.53664065,0.03701602,99.0148208],[4.53664109,0.03701777,99.01386443],[4.53664152,0.03701952,99.01290739],[4.53664196,0.03702127,99.01194971],[4.53664239,0.03702302,99.01099136],[4.53664283,0.03702477,99.01003235],[4.53664326,0.03702652,99.00907267],[4.5366437,0.03702827,99.00811232],[4.53664413,0.03703002,99.00715131],[4.53664457,0.03703177,99.00618968],[4.536645,0.03703351,99.00522746],[4.53664544,0.03703526,99.00426471],[4.53664587,0.03703701,99.00330146],[4.5366463,0.03703876,99.00233777],[4.53664674,0.03704051,99.00137368],[4.53664717,0.03704226,99.00040923],[4.53664761,0.03704401,98.99944447],[4.53664804,0.03704576,98.99847943],[4.53664847,0.03704751,98.99751413],[4.53664891,0.03704926,98.99654855],[4.53664934,0.03705101,98.99558271],[4.53664978,0.03705276,98.99461659],[4.53665021,0.03705451,98.99365019],[4.53665065,0.03705625,98.99268352],[4.53665108,0.037058,98.99171657],[4.53665151,0.03705975,98.99074935],[4.53665195,0.0370615,98.98978184],[4.53665238,0.03706325,98.98881405],[4.53665282,0.037065,98.98784598],[4.53665325,0.03706675,98.98687762],[4.53665369,0.0370685,98.98590897],[4.53665412,0.03707025,98.98494004],[4.53665456,0.037072,98.98397082],[4.53665499,0.03707375,98.9830013],[4.53665542,0.0370755,98.9820315],[4.53665586,0.03707724,98.9810614],[4.53665629,0.03707899,98.980091],[4.53665673,0.03708074,98.97912031],[4.53665716,0.03708249,98.97814932],[4.5366576,0.03708424,98.97717804],[4.53665803,0.03708599,98.97620645],[4.53665847,0.03708774,98.97523457],[4.5366589,0.03708949,98.97426239],[4.53665934,0.03709124,98.97328991],[4.53665977,0.03709299,98.97231712],[4.53666021,0.03709474,98.97134403],[4.53666064,0.03709649,98.97037064],[4.53666107,0.03709823,98.96939694],[4.53666151,0.03709998,98.96842294],[4.53666194,0.03710173,98.96744863],[4.53666238,0.03710348,98.96647402],[4.53666281,0.03710523,98.9654991],[4.53666325,0.03710698,98.96452387],[4.53666368,0.03710873,98.96354832],[4.53666412,0.03711048,98.96257247],[4.53666455,0.03711223,98.96159631],[4.53666499,0.03711398,98.96061984],[4.53666542,0.03711573,98.95964305],[4.53666586,0.03711747,98.95866595],[4.53666629,0.03711922,98.95768853],[4.53666673,0.03712097,98.9567108],[4.53666716,0.03712272,98.95573275],[4.53666759,0.03712447,98.95475438],[4.53666803,0.03712622,98.9537757],[4.53666846,0.03712797,98.9527967],[4.5366689,0.03712972,98.95181737],[4.53666933,0.03713147,98.95083773],[4.53666977,0.03713322,98.94985776],[4.5366702,0.03713497,98.94887748],[4.53667064,0.03713671,98.94789686],[4.53667107,0.03713846,98.94691587],[4.53667151,0.03714021,98.94593447],[4.53667194,0.03714196,98.94495261],[4.53667238,0.03714371,98.94397024],[4.53667281,0.03714546,98.94298733],[4.53667324,0.03714721,98.94200383],[4.53667368,0.03714896,98.94101976],[4.53667411,0.03715071,98.94003511],[4.53667455,0.03715246,98.93904992],[4.53667498,0.03715421,98.93806419],[4.53667541,0.03715596,98.93707793],[4.53667585,0.03715771,98.93609116],[4.53667628,0.03715945,98.9351039],[4.53667671,0.0371612,98.93411616],[4.53667715,0.03716295,98.93312795],[4.53667758,0.0371647,98.93213929],[4.53667801,0.03716645,98.93115019],[4.53667845,0.0371682,98.93016067],[4.53667888,0.03716995,98.92917074],[4.53667931,0.0371717,98.92818041],[4.53667975,0.03717345,98.9271897],[4.53668018,0.0371752,98.92619862],[4.53668061,0.03717695,98.92520719],[4.53668104,0.0371787,98.92421543],[4.53668148,0.03718045,98.92322333],[4.53668191,0.0371822,98.92223093],[4.53668234,0.03718395,98.92123823],[4.53668278,0.0371857,98.92024525],[4.53668321,0.03718745,98.91925201],[4.53668364,0.0371892,98.91825851],[4.53668408,0.03719095,98.91726477],[4.53668451,0.03719269,98.91627081],[4.53668494,0.03719444,98.91527663],[4.53668537,0.03719619,98.91428227],[4.53668581,0.03719794,98.91328772],[4.53668624,0.03719969,98.912293],[4.53668667,0.03720144,98.91129814],[4.53668711,0.03720319,98.91030313],[4.53668754,0.03720494,98.909308],[4.53668797,0.03720669,98.90831277],[4.53668841,0.03720844,98.90731743],[4.53668884,0.03721019,98.90632202],[4.53668927,0.03721194,98.90532654],[4.53668971,0.03721369,98.90433101],[4.53669014,0.03721544,98.90333545],[4.53669057,0.03721719,98.90233986],[4.53669101,0.03721894,98.90134426],[4.53669144,0.03722069,98.90034868],[4.53669187,0.03722244,98.8993531],[4.53669231,0.03722418,98.89835753],[4.53669274,0.03722593,98.89736193],[4.53669317,0.03722768,98.89636628],[4.53669361,0.03722943,98.89537057],[4.53669404,0.03723118,98.89437476],[4.53669448,0.03723293,98.89337883],[4.53669491,0.03723468,98.89238275],[4.53669534,0.03723643,98.8913865],[4.53669578,0.03723818,98.89039007],[4.53669621,0.03723993,98.88939345],[4.53669665,0.03724168,98.88839663],[4.53669708,0.03724343,98.88739962],[4.53669751,0.03724518,98.88640242],[4.53669795,0.03724693,98.88540501],[4.53669838,0.03724867,98.8844074],[4.53669882,0.03725042,98.88340959],[4.53669925,0.03725217,98.88241157],[4.53669969,0.03725392,98.88141333],[4.53670012,0.03725567,98.88041488],[4.53670055,0.03725742,98.87941622],[4.53670099,0.03725917,98.87841733],[4.53670142,0.03726092,98.87741822],[4.53670186,0.03726267,98.87641889],[4.53670229,0.03726442,98.87541932],[4.53670272,0.03726617,98.87441953],[4.53670316,0.03726792,98.8734195],[4.53670359,0.03726967,98.87241923],[4.53670403,0.03727141,98.87141873],[4.53670446,0.03727316,98.87041798],[4.53670489,0.03727491,98.86941698],[4.53670533,0.03727666,98.86841574],[4.53670576,0.03727841,98.86741424],[4.53670619,0.03728016,98.86641249],[4.53670663,0.03728191,98.86541048],[4.53670706,0.03728366,98.86440821],[4.5367075,0.03728541,98.86340568],[4.53670793,0.03728716,98.86240288],[4.53670836,0.03728891,98.86139982],[4.5367088,0.03729066,98.86039648],[4.53670923,0.03729241,98.85939288],[4.53670966,0.03729416,98.858389],[4.5367101,0.03729591,98.85738485],[4.53671053,0.03729765,98.85638043],[4.53671096,0.0372994,98.85537572],[4.5367114,0.03730115,98.85437074],[4.53671183,0.0373029,98.85336547],[4.53671226,0.03730465,98.85235992],[4.5367127,0.0373064,98.85135409],[4.53671313,0.03730815,98.85034796],[4.53671356,0.0373099,98.84934155],[4.536714,0.03731165,98.84833485],[4.53671443,0.0373134,98.84732785],[4.53671486,0.03731515,98.84632056],[4.53671529,0.0373169,98.84531297],[4.53671573,0.03731865,98.84430508],[4.53671616,0.0373204,98.8432969],[4.53671659,0.03732215,98.8422884],[4.53671702,0.0373239,98.84127961],[4.53671746,0.03732565,98.84027051],[4.53671789,0.0373274,98.83926109],[4.53671832,0.03732915,98.83825137],[4.53671875,0.0373309,98.83724134],[4.53671918,0.03733265,98.83623099],[4.53671962,0.0373344,98.83522032],[4.53672005,0.03733615,98.83420934],[4.53672048,0.0373379,98.83319804],[4.53672091,0.03733965,98.83218645],[4.53672134,0.0373414,98.83117457],[4.53672177,0.03734315,98.83016244],[4.53672221,0.03734489,98.82915005],[4.53672264,0.03734664,98.82813743],[4.53672307,0.03734839,98.82712459],[4.5367235,0.03735014,98.82611155],[4.53672393,0.03735189,98.82509833],[4.53672436,0.03735364,98.82408493],[4.53672479,0.03735539,98.82307138],[4.53672522,0.03735714,98.82205769],[4.53672565,0.03735889,98.82104388],[4.53672609,0.03736064,98.82002996],[4.53672652,0.03736239,98.81901595],[4.53672695,0.03736415,98.81800187],[4.53672738,0.0373659,98.81698772],[4.53672781,0.03736765,98.81597354],[4.53672824,0.0373694,98.81495932],[4.53672867,0.03737115,98.8139451],[4.5367291,0.0373729,98.81293088],[4.53672953,0.03737465,98.81191667],[4.53672996,0.0373764,98.81090251],[4.53673039,0.03737815,98.8098884],[4.53673082,0.0373799,98.80887435],[4.53673125,0.03738165,98.8078604],[4.53673168,0.0373834,98.80684653],[4.53673211,0.03738515,98.80583276],[4.53673255,0.0373869,98.8048191],[4.53673298,0.03738865,98.80380555],[4.53673341,0.0373904,98.80279212],[4.53673384,0.03739215,98.80177881],[4.53673427,0.0373939,98.80076564],[4.5367347,0.03739565,98.79975259],[4.53673513,0.0373974,98.7987397],[4.53673556,0.03739915,98.79772695],[4.53673599,0.0374009,98.79671435],[4.53673642,0.03740265,98.79570191],[4.53673685,0.0374044,98.79468965],[4.53673728,0.03740615,98.79367755],[4.53673772,0.0374079,98.79266564],[4.53673815,0.03740965,98.79165391],[4.53673858,0.0374114,98.79064237],[4.53673901,0.03741315,98.78963103],[4.53673944,0.0374149,98.78861989],[4.53673987,0.03741665,98.78760897],[4.5367403,0.0374184,98.78659826],[4.53674073,0.03742015,98.78558778],[4.53674116,0.0374219,98.78457756],[4.5367416,0.03742365,98.7835676],[4.53674203,0.0374254,98.78255793],[4.53674246,0.03742715,98.78154855],[4.53674289,0.0374289,98.7805395],[4.53674332,0.03743065,98.77953077],[4.53674375,0.03743239,98.7785224],[4.53674418,0.03743414,98.7775144],[4.53674461,0.03743589,98.77650679],[4.53674505,0.03743764,98.77549957],[4.53674548,0.03743939,98.77449275],[4.53674591,0.03744114,98.77348632],[4.53674634,0.03744289,98.77248028],[4.53674677,0.03744464,98.77147462],[4.5367472,0.03744639,98.77046935],[4.53674764,0.03744814,98.76946444],[4.53674807,0.03744989,98.76845991],[4.5367485,0.03745164,98.76745574],[4.53674893,0.03745339,98.76645193],[4.53674936,0.03745514,98.76544848],[4.5367498,0.03745689,98.76444537],[4.53675023,0.03745864,98.7634426],[4.53675066,0.03746039,98.76244015],[4.53675109,0.03746214,98.761438],[4.53675153,0.03746389,98.76043614],[4.53675196,0.03746564,98.75943455],[4.53675239,0.03746739,98.75843323],[4.53675282,0.03746914,98.75743217],[4.53675325,0.03747089,98.75643137],[4.53675369,0.03747264,98.75543084],[4.53675412,0.03747439,98.75443058],[4.53675455,0.03747614,98.75343058],[4.53675498,0.03747789,98.75243085],[4.53675541,0.03747964,98.75143139],[4.53675584,0.03748139,98.7504322],[4.53675628,0.03748314,98.74943328],[4.53675671,0.03748489,98.74843464],[4.53675714,0.03748664,98.74743626],[4.53675757,0.03748839,98.74643817],[4.536758,0.03749014,98.74544034],[4.53675844,0.03749189,98.7444428],[4.53675887,0.03749364,98.74344553],[4.5367593,0.03749539,98.74244854],[4.53675973,0.03749714,98.74145183],[4.53676016,0.03749889,98.7404554],[4.53676059,0.03750064,98.73945925],[4.53676102,0.03750239,98.73846339],[4.53676146,0.03750414,98.73746781],[4.53676189,0.03750589,98.73647251],[4.53676232,0.03750764,98.7354775],[4.53676275,0.03750939,98.73448278],[4.53676318,0.03751114,98.73348835],[4.53676361,0.03751289,98.7324942],[4.53676404,0.03751464,98.73150035],[4.53676447,0.03751639,98.73050678],[4.5367649,0.03751814,98.72951351],[4.53676533,0.03751989,98.72852053],[4.53676576,0.03752164,98.72752784],[4.5367662,0.03752339,98.72653545],[4.53676663,0.03752514,98.72554336],[4.53676706,0.03752689,98.72455156],[4.53676749,0.03752864,98.72356007],[4.53676792,0.03753039,98.72256887],[4.53676835,0.03753214,98.72157797],[4.53676878,0.03753389,98.72058737],[4.53676921,0.03753564,98.71959707],[4.53676964,0.03753739,98.71860708],[4.53677007,0.03753914,98.71761739],[4.5367705,0.03754089,98.71662801],[4.53677093,0.03754264,98.71563893],[4.53677136,0.03754439,98.71465016],[4.53677179,0.03754614,98.7136617],[4.53677222,0.03754789,98.71267354],[4.53677265,0.03754964,98.7116857],[4.53677308,0.03755139,98.71069817],[4.53677351,0.03755314,98.70971095],[4.53677394,0.03755489,98.70872404],[4.53677437,0.03755664,98.70773744],[4.5367748,0.03755839,98.70675116],[4.53677523,0.03756014,98.7057652],[4.53677566,0.03756189,98.70477955],[4.53677609,0.03756364,98.70379422],[4.53677652,0.03756539,98.70280921],[4.53677695,0.03756714,98.70182452],[4.53677738,0.03756889,98.70084015],[4.53677781,0.03757064,98.6998561],[4.53677824,0.03757239,98.69887237],[4.53677867,0.03757414,98.69788897],[4.5367791,0.0375759,98.69690587],[4.53677953,0.03757765,98.69592308],[4.53677996,0.0375794,98.69494059],[4.53678039,0.03758115,98.69395839],[4.53678082,0.0375829,98.69297648],[4.53678125,0.03758465,98.69199484],[4.53678168,0.0375864,98.69101348],[4.53678211,0.03758815,98.69003238],[4.53678254,0.0375899,98.68905154],[4.53678297,0.03759165,98.68807095],[4.53678339,0.0375934,98.6870906],[4.53678382,0.03759515,98.68611049],[4.53678425,0.0375969,98.68513061],[4.53678468,0.03759865,98.68415095],[4.53678511,0.0376004,98.68317151],[4.53678554,0.03760215,98.68219228],[4.53678597,0.0376039,98.68121324],[4.5367864,0.03760565,98.68023441],[4.53678683,0.0376074,98.67925576],[4.53678726,0.03760915,98.67827729],[4.53678769,0.0376109,98.677299],[4.53678812,0.03761265,98.67632087],[4.53678855,0.0376144,98.67534291],[4.53678898,0.03761616,98.67436512],[4.53678941,0.03761791,98.67338748],[4.53678984,0.03761966,98.67240999],[4.53679026,0.03762141,98.67143266],[4.53679069,0.03762316,98.67045548],[4.53679112,0.03762491,98.66947844],[4.53679155,0.03762666,98.66850155],[4.53679198,0.03762841,98.66752482],[4.53679241,0.03763016,98.66654825],[4.53679284,0.03763191,98.66557187],[4.53679327,0.03763366,98.66459568],[4.5367937,0.03763541,98.66361969],[4.53679413,0.03763716,98.66264391],[4.53679455,0.03763891,98.66166836],[4.53679498,0.03764066,98.66069304],[4.53679541,0.03764241,98.65971796],[4.53679584,0.03764417,98.65874314],[4.53679627,0.03764592,98.65776858],[4.5367967,0.03764767,98.6567943],[4.53679713,0.03764942,98.65582031],[4.53679756,0.03765117,98.65484661],[4.53679799,0.03765292,98.65387323],[4.53679841,0.03765467,98.65290016],[4.53679884,0.03765642,98.65192742],[4.53679927,0.03765817,98.65095502],[4.5367997,0.03765992,98.64998298],[4.53680013,0.03766167,98.64901129],[4.53680056,0.03766342,98.64803998],[4.53680099,0.03766517,98.64706906],[4.53680142,0.03766692,98.64609852],[4.53680185,0.03766867,98.6451284],[4.53680228,0.03767042,98.64415869],[4.53680271,0.03767217,98.6431894],[4.53680314,0.03767393,98.64222056],[4.53680356,0.03767568,98.64125216],[4.53680399,0.03767743,98.64028423],[4.53680442,0.03767918,98.63931676],[4.53680485,0.03768093,98.63834978],[4.53680528,0.03768268,98.63738328],[4.53680571,0.03768443,98.63641729],[4.53680614,0.03768618,98.63545182],[4.53680657,0.03768793,98.63448687],[4.536807,0.03768968,98.63352246],[4.53680743,0.03769143,98.63255859],[4.53680786,0.03769318,98.63159528],[4.53680829,0.03769493,98.63063254],[4.53680872,0.03769668,98.62967038],[4.53680915,0.03769843,98.6287088],[4.53680958,0.03770018,98.62774784],[4.53681001,0.03770193,98.62678748],[4.53681044,0.03770368,98.62582775],[4.53681087,0.03770543,98.62486865],[4.5368113,0.03770718,98.62391019],[4.53681173,0.03770894,98.6229524],[4.53681216,0.03771069,98.62199527],[4.53681259,0.03771244,98.62103882],[4.53681302,0.03771419,98.62008305],[4.53681345,0.03771594,98.61912799],[4.53681388,0.03771769,98.61817364],[4.53681431,0.03771944,98.61722002],[4.53681474,0.03772119,98.61626712],[4.53681517,0.03772294,98.61531497],[4.53681559,0.03772469,98.61436358],[4.53681602,0.03772644,98.61341295],[4.53681645,0.03772819,98.6124631],[4.53681688,0.03772994,98.61151404],[4.53681731,0.03773169,98.61056579],[4.53681774,0.03773344,98.60961834],[4.53681817,0.03773519,98.60867171],[4.5368186,0.03773694,98.60772592],[4.53681903,0.03773869,98.60678097],[4.53681946,0.03774044,98.60583688],[4.53681989,0.03774219,98.60489365],[4.53682032,0.03774394,98.6039513],[4.53682075,0.03774569,98.60300984],[4.53682119,0.03774744,98.60206928],[4.53682162,0.03774919,98.60112963],[4.53682205,0.03775095,98.60019091],[4.53682248,0.0377527,98.59925311],[4.53682291,0.03775445,98.59831626],[4.53682334,0.0377562,98.59738037],[4.53682377,0.03775795,98.59644545],[4.5368242,0.0377597,98.5955115],[4.53682463,0.03776145,98.59457854],[4.53682506,0.0377632,98.59364658],[4.53682549,0.03776495,98.59271563],[4.53682592,0.0377667,98.5917857],[4.53682635,0.03776845,98.59085677],[4.53682678,0.0377702,98.58992884],[4.53682721,0.03777195,98.58900193],[4.53682764,0.0377737,98.58807604],[4.53682807,0.03777545,98.58715119],[4.5368285,0.0377772,98.58622737],[4.53682893,0.03777895,98.5853046],[4.53682936,0.0377807,98.58438289],[4.53682979,0.03778245,98.58346225],[4.53683022,0.0377842,98.58254268],[4.53683065,0.03778595,98.5816242],[4.53683108,0.0377877,98.58070681],[4.53683151,0.03778945,98.57979052],[4.53683194,0.0377912,98.57887535],[4.53683237,0.03779295,98.57796128],[4.5368328,0.03779471,98.57704832],[4.53683323,0.03779646,98.57613644],[4.53683366,0.03779821,98.57522562],[4.53683409,0.03779996,98.57431587],[4.53683452,0.03780171,98.57340716],[4.53683495,0.03780346,98.57249948],[4.53683538,0.03780521,98.57159282],[4.53683581,0.03780696,98.57068717],[4.53683623,0.03780871,98.56978251],[4.53683666,0.03781046,98.56887882],[4.53683709,0.03781221,98.5679761],[4.53683752,0.03781396,98.56707434],[4.53683795,0.03781571,98.56617352],[4.53683838,0.03781746,98.56527364],[4.53683881,0.03781921,98.56437469],[4.53683924,0.03782096,98.56347667],[4.53683967,0.03782272,98.56257955],[4.53684009,0.03782447,98.56168334],[4.53684052,0.03782622,98.56078803],[4.53684095,0.03782797,98.55989361],[4.53684138,0.03782972,98.55900007],[4.53684181,0.03783147,98.5581074],[4.53684224,0.03783322,98.55721559],[4.53684266,0.03783497,98.55632464],[4.53684309,0.03783672,98.55543454],[4.53684352,0.03783847,98.55454528],[4.53684395,0.03784022,98.55365684],[4.53684438,0.03784198,98.55276923],[4.5368448,0.03784373,98.55188244],[4.53684523,0.03784548,98.55099645],[4.53684566,0.03784723,98.55011126],[4.53684609,0.03784898,98.54922686],[4.53684651,0.03785073,98.54834323],[4.53684694,0.03785248,98.54746039],[4.53684737,0.03785423,98.5465783],[4.5368478,0.03785598,98.54569697],[4.53684822,0.03785773,98.54481639],[4.53684865,0.03785949,98.54393655],[4.53684908,0.03786124,98.54305744],[4.53684951,0.03786299,98.54217905],[4.53684993,0.03786474,98.54130138],[4.53685036,0.03786649,98.54042441],[4.53685079,0.03786824,98.53954814],[4.53685122,0.03786999,98.53867256],[4.53685164,0.03787174,98.53779765],[4.53685207,0.03787349,98.53692342],[4.5368525,0.03787525,98.53604986],[4.53685293,0.037877,98.53517695],[4.53685335,0.03787875,98.53430468],[4.53685378,0.0378805,98.53343306],[4.53685421,0.03788225,98.53256206],[4.53685464,0.037884,98.53169169],[4.53685506,0.03788575,98.53082193],[4.53685549,0.0378875,98.52995278],[4.53685592,0.03788925,98.52908422],[4.53685635,0.03789101,98.52821625],[4.53685678,0.03789276,98.52734886],[4.5368572,0.03789451,98.52648207],[4.53685763,0.03789626,98.52561591],[4.53685806,0.03789801,98.52475039],[4.53685849,0.03789976,98.52388554],[4.53685891,0.03790151,98.52302137],[4.53685934,0.03790326,98.52215791],[4.53685977,0.03790501,98.52129518],[4.5368602,0.03790676,98.52043321],[4.53686062,0.03790852,98.519572],[4.53686105,0.03791027,98.51871159],[4.53686148,0.03791202,98.517852],[4.53686191,0.03791377,98.51699324],[4.53686233,0.03791552,98.51613534],[4.53686276,0.03791727,98.51527832],[4.53686319,0.03791902,98.5144222],[4.53686362,0.03792077,98.51356701],[4.53686404,0.03792253,98.51271276],[4.53686447,0.03792428,98.51185948],[4.5368649,0.03792603,98.51100719],[4.53686532,0.03792778,98.5101559],[4.53686575,0.03792953,98.50930565],[4.53686618,0.03793128,98.50845645],[4.5368666,0.03793303,98.50760832],[4.53686703,0.03793478,98.50676129],[4.53686745,0.03793654,98.50591538],[4.53686788,0.03793829,98.50507061],[4.5368683,0.03794004,98.504227],[4.53686873,0.03794179,98.50338459],[4.53686916,0.03794354,98.50254341],[4.53686958,0.03794529,98.50170348],[4.53687001,0.03794705,98.50086483],[4.53687043,0.0379488,98.50002751],[4.53687085,0.03795055,98.49919153],[4.53687128,0.0379523,98.49835692],[4.5368717,0.03795405,98.49752373],[4.53687213,0.03795581,98.49669197],[4.53687255,0.03795756,98.49586166],[4.53687297,0.03795931,98.49503283],[4.5368734,0.03796106,98.49420549],[4.53687382,0.03796281,98.49337967],[4.53687424,0.03796457,98.49255538],[4.53687467,0.03796632,98.49173265],[4.53687509,0.03796807,98.49091149],[4.53687551,0.03796982,98.49009192],[4.53687594,0.03797158,98.48927397],[4.53687636,0.03797333,98.48845765],[4.53687678,0.03797508,98.48764298],[4.53687721,0.03797683,98.48682997],[4.53687763,0.03797858,98.4860186],[4.53687805,0.03798034,98.48520887],[4.53687847,0.03798209,98.48440077],[4.5368789,0.03798384,98.48359428],[4.53687932,0.03798559,98.48278939],[4.53687974,0.03798735,98.48198609],[4.53688017,0.0379891,98.48118438],[4.53688059,0.03799085,98.48038424],[4.53688101,0.0379926,98.47958565],[4.53688143,0.03799436,98.47878862],[4.53688186,0.03799611,98.47799312],[4.53688228,0.03799786,98.47719915],[4.5368827,0.03799961,98.47640669],[4.53688312,0.03800136,98.47561574],[4.53688355,0.03800312,98.47482628],[4.53688397,0.03800487,98.47403831],[4.53688439,0.03800662,98.47325181],[4.53688481,0.03800837,98.47246677],[4.53688524,0.03801013,98.47168318],[4.53688566,0.03801188,98.47090103],[4.53688608,0.03801363,98.47012031],[4.5368865,0.03801538,98.46934101],[4.53688693,0.03801714,98.46856311],[4.53688735,0.03801889,98.46778661],[4.53688777,0.03802064,98.4670115],[4.5368882,0.03802239,98.46623775],[4.53688862,0.03802415,98.46546538],[4.53688904,0.0380259,98.46469435],[4.53688946,0.03802765,98.46392467],[4.53688989,0.0380294,98.46315632],[4.53689031,0.03803115,98.46238928],[4.53689073,0.03803291,98.46162356],[4.53689115,0.03803466,98.46085914],[4.53689158,0.03803641,98.460096],[4.536892,0.03803816,98.45933414],[4.53689242,0.03803992,98.45857354],[4.53689285,0.03804167,98.4578142],[4.53689327,0.03804342,98.45705611],[4.53689369,0.03804517,98.45629925],[4.53689411,0.03804693,98.45554361],[4.53689454,0.03804868,98.45478918],[4.53689496,0.03805043,98.45403596],[4.53689538,0.03805218,98.45328392],[4.53689581,0.03805393,98.45253307],[4.53689623,0.03805569,98.45178338],[4.53689665,0.03805744,98.45103485],[4.53689708,0.03805919,98.45028748],[4.5368975,0.03806094,98.44954123],[4.53689792,0.0380627,98.44879612],[4.53689835,0.03806445,98.44805212],[4.53689877,0.0380662,98.44730924],[4.53689919,0.03806795,98.44656748],[4.53689962,0.0380697,98.44582689],[4.53690004,0.03807146,98.44508748],[4.53690046,0.03807321,98.44434928],[4.53690089,0.03807496,98.44361232],[4.53690131,0.03807671,98.44287662],[4.53690174,0.03807846,98.44214219],[4.53690216,0.03808022,98.44140906],[4.53690259,0.03808197,98.44067724],[4.53690301,0.03808372,98.43994675],[4.53690343,0.03808547,98.43921762],[4.53690386,0.03808722,98.43848986],[4.53690428,0.03808898,98.4377635],[4.53690471,0.03809073,98.43703854],[4.53690513,0.03809248,98.43631502],[4.53690556,0.03809423,98.43559295],[4.53690598,0.03809598,98.43487235],[4.53690641,0.03809774,98.43415324],[4.53690683,0.03809949,98.43343563],[4.53690726,0.03810124,98.43271956],[4.53690768,0.03810299,98.43200503],[4.53690811,0.03810474,98.43129208],[4.53690854,0.03810649,98.43058071],[4.53690896,0.03810825,98.42987098],[4.53690939,0.03811,98.4291629],[4.53690981,0.03811175,98.4284565],[4.53691024,0.0381135,98.42775183],[4.53691066,0.03811525,98.4270489],[4.53691109,0.038117,98.42634775],[4.53691152,0.03811875,98.42564841],[4.53691194,0.03812051,98.42495091],[4.53691237,0.03812226,98.42425528],[4.5369128,0.03812401,98.42356155],[4.53691322,0.03812576,98.42286975],[4.53691365,0.03812751,98.42217991],[4.53691408,0.03812926,98.42149206],[4.53691451,0.03813101,98.42080623],[4.53691493,0.03813277,98.42012246],[4.53691536,0.03813452,98.41944076],[4.53691579,0.03813627,98.41876118],[4.53691622,0.03813802,98.41808374],[4.53691664,0.03813977,98.41740848],[4.53691707,0.03814152,98.41673541],[4.5369175,0.03814327,98.41606458],[4.53691793,0.03814502,98.415396],[4.53691836,0.03814677,98.41472972],[4.53691879,0.03814852,98.41406576],[4.53691922,0.03815028,98.41340415],[4.53691965,0.03815203,98.41274492],[4.53692008,0.03815378,98.4120881],[4.53692051,0.03815553,98.41143372],[4.53692094,0.03815728,98.41078181],[4.53692137,0.03815903,98.41013239],[4.5369218,0.03816078,98.4094855],[4.53692223,0.03816253,98.40884117],[4.53692266,0.03816428,98.40819943],[4.53692309,0.03816603,98.4075603],[4.53692352,0.03816778,98.40692381],[4.53692395,0.03816953,98.40628999],[4.53692438,0.03817128,98.40565888],[4.53692482,0.03817303,98.4050305],[4.53692525,0.03817478,98.40440488],[4.53692568,0.03817653,98.40378204],[4.53692611,0.03817828,98.40316202],[4.53692655,0.03818003,98.40254485],[4.53692698,0.03818178,98.40193054],[4.53692741,0.03818353,98.40131912],[4.53692785,0.03818528,98.40071059],[4.53692828,0.03818703,98.40010496],[4.53692871,0.03818878,98.39950225],[4.53692915,0.03819053,98.39890247],[4.53692958,0.03819228,98.39830563],[4.53693002,0.03819403,98.39771174],[4.53693045,0.03819578,98.39712081],[4.53693089,0.03819753,98.39653286],[4.53692606,0.03819871,98.39653286]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-6,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":-6,"type":"none","predecessorId":0,"sOffset":53.8544139403}},{"geometry":{"coordinates":[[[4.53693089,0.03819753,98.39653286],[4.53693045,0.03819578,98.39712081],[4.53693002,0.03819403,98.39771174],[4.53692958,0.03819228,98.39830563],[4.53692915,0.03819053,98.39890247],[4.53692871,0.03818878,98.39950225],[4.53692828,0.03818703,98.40010496],[4.53692785,0.03818528,98.40071059],[4.53692741,0.03818353,98.40131912],[4.53692698,0.03818178,98.40193054],[4.53692655,0.03818003,98.40254485],[4.53692611,0.03817828,98.40316202],[4.53692568,0.03817653,98.40378204],[4.53692525,0.03817478,98.40440488],[4.53692482,0.03817303,98.4050305],[4.53692438,0.03817128,98.40565888],[4.53692395,0.03816953,98.40628999],[4.53692352,0.03816778,98.40692381],[4.53692309,0.03816603,98.4075603],[4.53692266,0.03816428,98.40819943],[4.53692223,0.03816253,98.40884117],[4.5369218,0.03816078,98.4094855],[4.53692137,0.03815903,98.41013239],[4.53692094,0.03815728,98.41078181],[4.53692051,0.03815553,98.41143372],[4.53692008,0.03815378,98.4120881],[4.53691965,0.03815203,98.41274492],[4.53691922,0.03815028,98.41340415],[4.53691879,0.03814852,98.41406576],[4.53691836,0.03814677,98.41472972],[4.53691793,0.03814502,98.415396],[4.5369175,0.03814327,98.41606458],[4.53691707,0.03814152,98.41673541],[4.53691664,0.03813977,98.41740848],[4.53691622,0.03813802,98.41808374],[4.53691579,0.03813627,98.41876118],[4.53691536,0.03813452,98.41944076],[4.53691493,0.03813277,98.42012246],[4.53691451,0.03813101,98.42080623],[4.53691408,0.03812926,98.42149206],[4.53691365,0.03812751,98.42217991],[4.53691322,0.03812576,98.42286975],[4.5369128,0.03812401,98.42356155],[4.53691237,0.03812226,98.42425528],[4.53691194,0.03812051,98.42495091],[4.53691152,0.03811875,98.42564841],[4.53691109,0.038117,98.42634775],[4.53691066,0.03811525,98.4270489],[4.53691024,0.0381135,98.42775183],[4.53690981,0.03811175,98.4284565],[4.53690939,0.03811,98.4291629],[4.53690896,0.03810825,98.42987098],[4.53690854,0.03810649,98.43058071],[4.53690811,0.03810474,98.43129208],[4.53690768,0.03810299,98.43200503],[4.53690726,0.03810124,98.43271956],[4.53690683,0.03809949,98.43343563],[4.53690641,0.03809774,98.43415324],[4.53690598,0.03809598,98.43487235],[4.53690556,0.03809423,98.43559295],[4.53690513,0.03809248,98.43631502],[4.53690471,0.03809073,98.43703854],[4.53690428,0.03808898,98.4377635],[4.53690386,0.03808722,98.43848986],[4.53690343,0.03808547,98.43921762],[4.53690301,0.03808372,98.43994675],[4.53690259,0.03808197,98.44067724],[4.53690216,0.03808022,98.44140906],[4.53690174,0.03807846,98.44214219],[4.53690131,0.03807671,98.44287662],[4.53690089,0.03807496,98.44361232],[4.53690046,0.03807321,98.44434928],[4.53690004,0.03807146,98.44508748],[4.53689962,0.0380697,98.44582689],[4.53689919,0.03806795,98.44656748],[4.53689877,0.0380662,98.44730924],[4.53689835,0.03806445,98.44805212],[4.53689792,0.0380627,98.44879612],[4.5368975,0.03806094,98.44954123],[4.53689708,0.03805919,98.45028748],[4.53689665,0.03805744,98.45103485],[4.53689623,0.03805569,98.45178338],[4.53689581,0.03805393,98.45253307],[4.53689538,0.03805218,98.45328392],[4.53689496,0.03805043,98.45403596],[4.53689454,0.03804868,98.45478918],[4.53689411,0.03804693,98.45554361],[4.53689369,0.03804517,98.45629925],[4.53689327,0.03804342,98.45705611],[4.53689285,0.03804167,98.4578142],[4.53689242,0.03803992,98.45857354],[4.536892,0.03803816,98.45933414],[4.53689158,0.03803641,98.460096],[4.53689115,0.03803466,98.46085914],[4.53689073,0.03803291,98.46162356],[4.53689031,0.03803115,98.46238928],[4.53688989,0.0380294,98.46315632],[4.53688946,0.03802765,98.46392467],[4.53688904,0.0380259,98.46469435],[4.53688862,0.03802415,98.46546538],[4.5368882,0.03802239,98.46623775],[4.53688777,0.03802064,98.4670115],[4.53688735,0.03801889,98.46778661],[4.53688693,0.03801714,98.46856311],[4.5368865,0.03801538,98.46934101],[4.53688608,0.03801363,98.47012031],[4.53688566,0.03801188,98.47090103],[4.53688524,0.03801013,98.47168318],[4.53688481,0.03800837,98.47246677],[4.53688439,0.03800662,98.47325181],[4.53688397,0.03800487,98.47403831],[4.53688355,0.03800312,98.47482628],[4.53688312,0.03800136,98.47561574],[4.5368827,0.03799961,98.47640669],[4.53688228,0.03799786,98.47719915],[4.53688186,0.03799611,98.47799312],[4.53688143,0.03799436,98.47878862],[4.53688101,0.0379926,98.47958565],[4.53688059,0.03799085,98.48038424],[4.53688017,0.0379891,98.48118438],[4.53687974,0.03798735,98.48198609],[4.53687932,0.03798559,98.48278939],[4.5368789,0.03798384,98.48359428],[4.53687847,0.03798209,98.48440077],[4.53687805,0.03798034,98.48520887],[4.53687763,0.03797858,98.4860186],[4.53687721,0.03797683,98.48682997],[4.53687678,0.03797508,98.48764298],[4.53687636,0.03797333,98.48845765],[4.53687594,0.03797158,98.48927397],[4.53687551,0.03796982,98.49009192],[4.53687509,0.03796807,98.49091149],[4.53687467,0.03796632,98.49173265],[4.53687424,0.03796457,98.49255538],[4.53687382,0.03796281,98.49337967],[4.5368734,0.03796106,98.49420549],[4.53687297,0.03795931,98.49503283],[4.53687255,0.03795756,98.49586166],[4.53687213,0.03795581,98.49669197],[4.5368717,0.03795405,98.49752373],[4.53687128,0.0379523,98.49835692],[4.53687085,0.03795055,98.49919153],[4.53687043,0.0379488,98.50002751],[4.53687001,0.03794705,98.50086483],[4.53686958,0.03794529,98.50170348],[4.53686916,0.03794354,98.50254341],[4.53686873,0.03794179,98.50338459],[4.5368683,0.03794004,98.504227],[4.53686788,0.03793829,98.50507061],[4.53686745,0.03793654,98.50591538],[4.53686703,0.03793478,98.50676129],[4.5368666,0.03793303,98.50760832],[4.53686618,0.03793128,98.50845645],[4.53686575,0.03792953,98.50930565],[4.53686532,0.03792778,98.5101559],[4.5368649,0.03792603,98.51100719],[4.53686447,0.03792428,98.51185948],[4.53686404,0.03792253,98.51271276],[4.53686362,0.03792077,98.51356701],[4.53686319,0.03791902,98.5144222],[4.53686276,0.03791727,98.51527832],[4.53686233,0.03791552,98.51613534],[4.53686191,0.03791377,98.51699324],[4.53686148,0.03791202,98.517852],[4.53686105,0.03791027,98.51871159],[4.53686062,0.03790852,98.519572],[4.5368602,0.03790676,98.52043321],[4.53685977,0.03790501,98.52129518],[4.53685934,0.03790326,98.52215791],[4.53685891,0.03790151,98.52302137],[4.53685849,0.03789976,98.52388554],[4.53685806,0.03789801,98.52475039],[4.53685763,0.03789626,98.52561591],[4.5368572,0.03789451,98.52648207],[4.53685678,0.03789276,98.52734886],[4.53685635,0.03789101,98.52821625],[4.53685592,0.03788925,98.52908422],[4.53685549,0.0378875,98.52995278],[4.53685506,0.03788575,98.53082193],[4.53685464,0.037884,98.53169169],[4.53685421,0.03788225,98.53256206],[4.53685378,0.0378805,98.53343306],[4.53685335,0.03787875,98.53430468],[4.53685293,0.037877,98.53517695],[4.5368525,0.03787525,98.53604986],[4.53685207,0.03787349,98.53692342],[4.53685164,0.03787174,98.53779765],[4.53685122,0.03786999,98.53867256],[4.53685079,0.03786824,98.53954814],[4.53685036,0.03786649,98.54042441],[4.53684993,0.03786474,98.54130138],[4.53684951,0.03786299,98.54217905],[4.53684908,0.03786124,98.54305744],[4.53684865,0.03785949,98.54393655],[4.53684822,0.03785773,98.54481639],[4.5368478,0.03785598,98.54569697],[4.53684737,0.03785423,98.5465783],[4.53684694,0.03785248,98.54746039],[4.53684651,0.03785073,98.54834323],[4.53684609,0.03784898,98.54922686],[4.53684566,0.03784723,98.55011126],[4.53684523,0.03784548,98.55099645],[4.5368448,0.03784373,98.55188244],[4.53684438,0.03784198,98.55276923],[4.53684395,0.03784022,98.55365684],[4.53684352,0.03783847,98.55454528],[4.53684309,0.03783672,98.55543454],[4.53684266,0.03783497,98.55632464],[4.53684224,0.03783322,98.55721559],[4.53684181,0.03783147,98.5581074],[4.53684138,0.03782972,98.55900007],[4.53684095,0.03782797,98.55989361],[4.53684052,0.03782622,98.56078803],[4.53684009,0.03782447,98.56168334],[4.53683967,0.03782272,98.56257955],[4.53683924,0.03782096,98.56347667],[4.53683881,0.03781921,98.56437469],[4.53683838,0.03781746,98.56527364],[4.53683795,0.03781571,98.56617352],[4.53683752,0.03781396,98.56707434],[4.53683709,0.03781221,98.5679761],[4.53683666,0.03781046,98.56887882],[4.53683623,0.03780871,98.56978251],[4.53683581,0.03780696,98.57068717],[4.53683538,0.03780521,98.57159282],[4.53683495,0.03780346,98.57249948],[4.53683452,0.03780171,98.57340716],[4.53683409,0.03779996,98.57431587],[4.53683366,0.03779821,98.57522562],[4.53683323,0.03779646,98.57613644],[4.5368328,0.03779471,98.57704832],[4.53683237,0.03779295,98.57796128],[4.53683194,0.0377912,98.57887535],[4.53683151,0.03778945,98.57979052],[4.53683108,0.0377877,98.58070681],[4.53683065,0.03778595,98.5816242],[4.53683022,0.0377842,98.58254268],[4.53682979,0.03778245,98.58346225],[4.53682936,0.0377807,98.58438289],[4.53682893,0.03777895,98.5853046],[4.5368285,0.0377772,98.58622737],[4.53682807,0.03777545,98.58715119],[4.53682764,0.0377737,98.58807604],[4.53682721,0.03777195,98.58900193],[4.53682678,0.0377702,98.58992884],[4.53682635,0.03776845,98.59085677],[4.53682592,0.0377667,98.5917857],[4.53682549,0.03776495,98.59271563],[4.53682506,0.0377632,98.59364658],[4.53682463,0.03776145,98.59457854],[4.5368242,0.0377597,98.5955115],[4.53682377,0.03775795,98.59644545],[4.53682334,0.0377562,98.59738037],[4.53682291,0.03775445,98.59831626],[4.53682248,0.0377527,98.59925311],[4.53682205,0.03775095,98.60019091],[4.53682162,0.03774919,98.60112963],[4.53682119,0.03774744,98.60206928],[4.53682075,0.03774569,98.60300984],[4.53682032,0.03774394,98.6039513],[4.53681989,0.03774219,98.60489365],[4.53681946,0.03774044,98.60583688],[4.53681903,0.03773869,98.60678097],[4.5368186,0.03773694,98.60772592],[4.53681817,0.03773519,98.60867171],[4.53681774,0.03773344,98.60961834],[4.53681731,0.03773169,98.61056579],[4.53681688,0.03772994,98.61151404],[4.53681645,0.03772819,98.6124631],[4.53681602,0.03772644,98.61341295],[4.53681559,0.03772469,98.61436358],[4.53681517,0.03772294,98.61531497],[4.53681474,0.03772119,98.61626712],[4.53681431,0.03771944,98.61722002],[4.53681388,0.03771769,98.61817364],[4.53681345,0.03771594,98.61912799],[4.53681302,0.03771419,98.62008305],[4.53681259,0.03771244,98.62103882],[4.53681216,0.03771069,98.62199527],[4.53681173,0.03770894,98.6229524],[4.5368113,0.03770718,98.62391019],[4.53681087,0.03770543,98.62486865],[4.53681044,0.03770368,98.62582775],[4.53681001,0.03770193,98.62678748],[4.53680958,0.03770018,98.62774784],[4.53680915,0.03769843,98.6287088],[4.53680872,0.03769668,98.62967038],[4.53680829,0.03769493,98.63063254],[4.53680786,0.03769318,98.63159528],[4.53680743,0.03769143,98.63255859],[4.536807,0.03768968,98.63352246],[4.53680657,0.03768793,98.63448687],[4.53680614,0.03768618,98.63545182],[4.53680571,0.03768443,98.63641729],[4.53680528,0.03768268,98.63738328],[4.53680485,0.03768093,98.63834978],[4.53680442,0.03767918,98.63931676],[4.53680399,0.03767743,98.64028423],[4.53680356,0.03767568,98.64125216],[4.53680314,0.03767393,98.64222056],[4.53680271,0.03767217,98.6431894],[4.53680228,0.03767042,98.64415869],[4.53680185,0.03766867,98.6451284],[4.53680142,0.03766692,98.64609852],[4.53680099,0.03766517,98.64706906],[4.53680056,0.03766342,98.64803998],[4.53680013,0.03766167,98.64901129],[4.5367997,0.03765992,98.64998298],[4.53679927,0.03765817,98.65095502],[4.53679884,0.03765642,98.65192742],[4.53679841,0.03765467,98.65290016],[4.53679799,0.03765292,98.65387323],[4.53679756,0.03765117,98.65484661],[4.53679713,0.03764942,98.65582031],[4.5367967,0.03764767,98.6567943],[4.53679627,0.03764592,98.65776858],[4.53679584,0.03764417,98.65874314],[4.53679541,0.03764241,98.65971796],[4.53679498,0.03764066,98.66069304],[4.53679455,0.03763891,98.66166836],[4.53679413,0.03763716,98.66264391],[4.5367937,0.03763541,98.66361969],[4.53679327,0.03763366,98.66459568],[4.53679284,0.03763191,98.66557187],[4.53679241,0.03763016,98.66654825],[4.53679198,0.03762841,98.66752482],[4.53679155,0.03762666,98.66850155],[4.53679112,0.03762491,98.66947844],[4.53679069,0.03762316,98.67045548],[4.53679026,0.03762141,98.67143266],[4.53678984,0.03761966,98.67240999],[4.53678941,0.03761791,98.67338748],[4.53678898,0.03761616,98.67436512],[4.53678855,0.0376144,98.67534291],[4.53678812,0.03761265,98.67632087],[4.53678769,0.0376109,98.677299],[4.53678726,0.03760915,98.67827729],[4.53678683,0.0376074,98.67925576],[4.5367864,0.03760565,98.68023441],[4.53678597,0.0376039,98.68121324],[4.53678554,0.03760215,98.68219228],[4.53678511,0.0376004,98.68317151],[4.53678468,0.03759865,98.68415095],[4.53678425,0.0375969,98.68513061],[4.53678382,0.03759515,98.68611049],[4.53678339,0.0375934,98.6870906],[4.53678297,0.03759165,98.68807095],[4.53678254,0.0375899,98.68905154],[4.53678211,0.03758815,98.69003238],[4.53678168,0.0375864,98.69101348],[4.53678125,0.03758465,98.69199484],[4.53678082,0.0375829,98.69297648],[4.53678039,0.03758115,98.69395839],[4.53677996,0.0375794,98.69494059],[4.53677953,0.03757765,98.69592308],[4.5367791,0.0375759,98.69690587],[4.53677867,0.03757414,98.69788897],[4.53677824,0.03757239,98.69887237],[4.53677781,0.03757064,98.6998561],[4.53677738,0.03756889,98.70084015],[4.53677695,0.03756714,98.70182452],[4.53677652,0.03756539,98.70280921],[4.53677609,0.03756364,98.70379422],[4.53677566,0.03756189,98.70477955],[4.53677523,0.03756014,98.7057652],[4.5367748,0.03755839,98.70675116],[4.53677437,0.03755664,98.70773744],[4.53677394,0.03755489,98.70872404],[4.53677351,0.03755314,98.70971095],[4.53677308,0.03755139,98.71069817],[4.53677265,0.03754964,98.7116857],[4.53677222,0.03754789,98.71267354],[4.53677179,0.03754614,98.7136617],[4.53677136,0.03754439,98.71465016],[4.53677093,0.03754264,98.71563893],[4.5367705,0.03754089,98.71662801],[4.53677007,0.03753914,98.71761739],[4.53676964,0.03753739,98.71860708],[4.53676921,0.03753564,98.71959707],[4.53676878,0.03753389,98.72058737],[4.53676835,0.03753214,98.72157797],[4.53676792,0.03753039,98.72256887],[4.53676749,0.03752864,98.72356007],[4.53676706,0.03752689,98.72455156],[4.53676663,0.03752514,98.72554336],[4.5367662,0.03752339,98.72653545],[4.53676576,0.03752164,98.72752784],[4.53676533,0.03751989,98.72852053],[4.5367649,0.03751814,98.72951351],[4.53676447,0.03751639,98.73050678],[4.53676404,0.03751464,98.73150035],[4.53676361,0.03751289,98.7324942],[4.53676318,0.03751114,98.73348835],[4.53676275,0.03750939,98.73448278],[4.53676232,0.03750764,98.7354775],[4.53676189,0.03750589,98.73647251],[4.53676146,0.03750414,98.73746781],[4.53676102,0.03750239,98.73846339],[4.53676059,0.03750064,98.73945925],[4.53676016,0.03749889,98.7404554],[4.53675973,0.03749714,98.74145183],[4.5367593,0.03749539,98.74244854],[4.53675887,0.03749364,98.74344553],[4.53675844,0.03749189,98.7444428],[4.536758,0.03749014,98.74544034],[4.53675757,0.03748839,98.74643817],[4.53675714,0.03748664,98.74743626],[4.53675671,0.03748489,98.74843464],[4.53675628,0.03748314,98.74943328],[4.53675584,0.03748139,98.7504322],[4.53675541,0.03747964,98.75143139],[4.53675498,0.03747789,98.75243085],[4.53675455,0.03747614,98.75343058],[4.53675412,0.03747439,98.75443058],[4.53675369,0.03747264,98.75543084],[4.53675325,0.03747089,98.75643137],[4.53675282,0.03746914,98.75743217],[4.53675239,0.03746739,98.75843323],[4.53675196,0.03746564,98.75943455],[4.53675153,0.03746389,98.76043614],[4.53675109,0.03746214,98.761438],[4.53675066,0.03746039,98.76244015],[4.53675023,0.03745864,98.7634426],[4.5367498,0.03745689,98.76444537],[4.53674936,0.03745514,98.76544848],[4.53674893,0.03745339,98.76645193],[4.5367485,0.03745164,98.76745574],[4.53674807,0.03744989,98.76845991],[4.53674764,0.03744814,98.76946444],[4.5367472,0.03744639,98.77046935],[4.53674677,0.03744464,98.77147462],[4.53674634,0.03744289,98.77248028],[4.53674591,0.03744114,98.77348632],[4.53674548,0.03743939,98.77449275],[4.53674505,0.03743764,98.77549957],[4.53674461,0.03743589,98.77650679],[4.53674418,0.03743414,98.7775144],[4.53674375,0.03743239,98.7785224],[4.53674332,0.03743065,98.77953077],[4.53674289,0.0374289,98.7805395],[4.53674246,0.03742715,98.78154855],[4.53674203,0.0374254,98.78255793],[4.5367416,0.03742365,98.7835676],[4.53674116,0.0374219,98.78457756],[4.53674073,0.03742015,98.78558778],[4.5367403,0.0374184,98.78659826],[4.53673987,0.03741665,98.78760897],[4.53673944,0.0374149,98.78861989],[4.53673901,0.03741315,98.78963103],[4.53673858,0.0374114,98.79064237],[4.53673815,0.03740965,98.79165391],[4.53673772,0.0374079,98.79266564],[4.53673728,0.03740615,98.79367755],[4.53673685,0.0374044,98.79468965],[4.53673642,0.03740265,98.79570191],[4.53673599,0.0374009,98.79671435],[4.53673556,0.03739915,98.79772695],[4.53673513,0.0373974,98.7987397],[4.5367347,0.03739565,98.79975259],[4.53673427,0.0373939,98.80076564],[4.53673384,0.03739215,98.80177881],[4.53673341,0.0373904,98.80279212],[4.53673298,0.03738865,98.80380555],[4.53673255,0.0373869,98.8048191],[4.53673211,0.03738515,98.80583276],[4.53673168,0.0373834,98.80684653],[4.53673125,0.03738165,98.8078604],[4.53673082,0.0373799,98.80887435],[4.53673039,0.03737815,98.8098884],[4.53672996,0.0373764,98.81090251],[4.53672953,0.03737465,98.81191667],[4.5367291,0.0373729,98.81293088],[4.53672867,0.03737115,98.8139451],[4.53672824,0.0373694,98.81495932],[4.53672781,0.03736765,98.81597354],[4.53672738,0.0373659,98.81698772],[4.53672695,0.03736415,98.81800187],[4.53672652,0.03736239,98.81901595],[4.53672609,0.03736064,98.82002996],[4.53672565,0.03735889,98.82104388],[4.53672522,0.03735714,98.82205769],[4.53672479,0.03735539,98.82307138],[4.53672436,0.03735364,98.82408493],[4.53672393,0.03735189,98.82509833],[4.5367235,0.03735014,98.82611155],[4.53672307,0.03734839,98.82712459],[4.53672264,0.03734664,98.82813743],[4.53672221,0.03734489,98.82915005],[4.53672177,0.03734315,98.83016244],[4.53672134,0.0373414,98.83117457],[4.53672091,0.03733965,98.83218645],[4.53672048,0.0373379,98.83319804],[4.53672005,0.03733615,98.83420934],[4.53671962,0.0373344,98.83522032],[4.53671918,0.03733265,98.83623099],[4.53671875,0.0373309,98.83724134],[4.53671832,0.03732915,98.83825137],[4.53671789,0.0373274,98.83926109],[4.53671746,0.03732565,98.84027051],[4.53671702,0.0373239,98.84127961],[4.53671659,0.03732215,98.8422884],[4.53671616,0.0373204,98.8432969],[4.53671573,0.03731865,98.84430508],[4.53671529,0.0373169,98.84531297],[4.53671486,0.03731515,98.84632056],[4.53671443,0.0373134,98.84732785],[4.536714,0.03731165,98.84833485],[4.53671356,0.0373099,98.84934155],[4.53671313,0.03730815,98.85034796],[4.5367127,0.0373064,98.85135409],[4.53671226,0.03730465,98.85235992],[4.53671183,0.0373029,98.85336547],[4.5367114,0.03730115,98.85437074],[4.53671096,0.0372994,98.85537572],[4.53671053,0.03729765,98.85638043],[4.5367101,0.03729591,98.85738485],[4.53670966,0.03729416,98.858389],[4.53670923,0.03729241,98.85939288],[4.5367088,0.03729066,98.86039648],[4.53670836,0.03728891,98.86139982],[4.53670793,0.03728716,98.86240288],[4.5367075,0.03728541,98.86340568],[4.53670706,0.03728366,98.86440821],[4.53670663,0.03728191,98.86541048],[4.53670619,0.03728016,98.86641249],[4.53670576,0.03727841,98.86741424],[4.53670533,0.03727666,98.86841574],[4.53670489,0.03727491,98.86941698],[4.53670446,0.03727316,98.87041798],[4.53670403,0.03727141,98.87141873],[4.53670359,0.03726967,98.87241923],[4.53670316,0.03726792,98.8734195],[4.53670272,0.03726617,98.87441953],[4.53670229,0.03726442,98.87541932],[4.53670186,0.03726267,98.87641889],[4.53670142,0.03726092,98.87741822],[4.53670099,0.03725917,98.87841733],[4.53670055,0.03725742,98.87941622],[4.53670012,0.03725567,98.88041488],[4.53669969,0.03725392,98.88141333],[4.53669925,0.03725217,98.88241157],[4.53669882,0.03725042,98.88340959],[4.53669838,0.03724867,98.8844074],[4.53669795,0.03724693,98.88540501],[4.53669751,0.03724518,98.88640242],[4.53669708,0.03724343,98.88739962],[4.53669665,0.03724168,98.88839663],[4.53669621,0.03723993,98.88939345],[4.53669578,0.03723818,98.89039007],[4.53669534,0.03723643,98.8913865],[4.53669491,0.03723468,98.89238275],[4.53669448,0.03723293,98.89337883],[4.53669404,0.03723118,98.89437476],[4.53669361,0.03722943,98.89537057],[4.53669317,0.03722768,98.89636628],[4.53669274,0.03722593,98.89736193],[4.53669231,0.03722418,98.89835753],[4.53669187,0.03722244,98.8993531],[4.53669144,0.03722069,98.90034868],[4.53669101,0.03721894,98.90134426],[4.53669057,0.03721719,98.90233986],[4.53669014,0.03721544,98.90333545],[4.53668971,0.03721369,98.90433101],[4.53668927,0.03721194,98.90532654],[4.53668884,0.03721019,98.90632202],[4.53668841,0.03720844,98.90731743],[4.53668797,0.03720669,98.90831277],[4.53668754,0.03720494,98.909308],[4.53668711,0.03720319,98.91030313],[4.53668667,0.03720144,98.91129814],[4.53668624,0.03719969,98.912293],[4.53668581,0.03719794,98.91328772],[4.53668537,0.03719619,98.91428227],[4.53668494,0.03719444,98.91527663],[4.53668451,0.03719269,98.91627081],[4.53668408,0.03719095,98.91726477],[4.53668364,0.0371892,98.91825851],[4.53668321,0.03718745,98.91925201],[4.53668278,0.0371857,98.92024525],[4.53668234,0.03718395,98.92123823],[4.53668191,0.0371822,98.92223093],[4.53668148,0.03718045,98.92322333],[4.53668104,0.0371787,98.92421543],[4.53668061,0.03717695,98.92520719],[4.53668018,0.0371752,98.92619862],[4.53667975,0.03717345,98.9271897],[4.53667931,0.0371717,98.92818041],[4.53667888,0.03716995,98.92917074],[4.53667845,0.0371682,98.93016067],[4.53667801,0.03716645,98.93115019],[4.53667758,0.0371647,98.93213929],[4.53667715,0.03716295,98.93312795],[4.53667671,0.0371612,98.93411616],[4.53667628,0.03715945,98.9351039],[4.53667585,0.03715771,98.93609116],[4.53667541,0.03715596,98.93707793],[4.53667498,0.03715421,98.93806419],[4.53667455,0.03715246,98.93904992],[4.53667411,0.03715071,98.94003511],[4.53667368,0.03714896,98.94101976],[4.53667324,0.03714721,98.94200383],[4.53667281,0.03714546,98.94298733],[4.53667238,0.03714371,98.94397024],[4.53667194,0.03714196,98.94495261],[4.53667151,0.03714021,98.94593447],[4.53667107,0.03713846,98.94691587],[4.53667064,0.03713671,98.94789686],[4.5366702,0.03713497,98.94887748],[4.53666977,0.03713322,98.94985776],[4.53666933,0.03713147,98.95083773],[4.5366689,0.03712972,98.95181737],[4.53666846,0.03712797,98.9527967],[4.53666803,0.03712622,98.9537757],[4.53666759,0.03712447,98.95475438],[4.53666716,0.03712272,98.95573275],[4.53666673,0.03712097,98.9567108],[4.53666629,0.03711922,98.95768853],[4.53666586,0.03711747,98.95866595],[4.53666542,0.03711573,98.95964305],[4.53666499,0.03711398,98.96061984],[4.53666455,0.03711223,98.96159631],[4.53666412,0.03711048,98.96257247],[4.53666368,0.03710873,98.96354832],[4.53666325,0.03710698,98.96452387],[4.53666281,0.03710523,98.9654991],[4.53666238,0.03710348,98.96647402],[4.53666194,0.03710173,98.96744863],[4.53666151,0.03709998,98.96842294],[4.53666107,0.03709823,98.96939694],[4.53666064,0.03709649,98.97037064],[4.53666021,0.03709474,98.97134403],[4.53665977,0.03709299,98.97231712],[4.53665934,0.03709124,98.97328991],[4.5366589,0.03708949,98.97426239],[4.53665847,0.03708774,98.97523457],[4.53665803,0.03708599,98.97620645],[4.5366576,0.03708424,98.97717804],[4.53665716,0.03708249,98.97814932],[4.53665673,0.03708074,98.97912031],[4.53665629,0.03707899,98.980091],[4.53665586,0.03707724,98.9810614],[4.53665542,0.0370755,98.9820315],[4.53665499,0.03707375,98.9830013],[4.53665456,0.037072,98.98397082],[4.53665412,0.03707025,98.98494004],[4.53665369,0.0370685,98.98590897],[4.53665325,0.03706675,98.98687762],[4.53665282,0.037065,98.98784598],[4.53665238,0.03706325,98.98881405],[4.53665195,0.0370615,98.98978184],[4.53665151,0.03705975,98.99074935],[4.53665108,0.037058,98.99171657],[4.53665065,0.03705625,98.99268352],[4.53665021,0.03705451,98.99365019],[4.53664978,0.03705276,98.99461659],[4.53664934,0.03705101,98.99558271],[4.53664891,0.03704926,98.99654855],[4.53664847,0.03704751,98.99751413],[4.53664804,0.03704576,98.99847943],[4.53664761,0.03704401,98.99944447],[4.53664717,0.03704226,99.00040923],[4.53664674,0.03704051,99.00137368],[4.5366463,0.03703876,99.00233777],[4.53664587,0.03703701,99.00330146],[4.53664544,0.03703526,99.00426471],[4.536645,0.03703351,99.00522746],[4.53664457,0.03703177,99.00618968],[4.53664413,0.03703002,99.00715131],[4.5366437,0.03702827,99.00811232],[4.53664326,0.03702652,99.00907267],[4.53664283,0.03702477,99.01003235],[4.53664239,0.03702302,99.01099136],[4.53664196,0.03702127,99.01194971],[4.53664152,0.03701952,99.01290739],[4.53664109,0.03701777,99.01386443],[4.53664065,0.03701602,99.0148208],[4.53664022,0.03701427,99.01577654],[4.53663978,0.03701253,99.01673162],[4.53663935,0.03701078,99.01768607],[4.53663891,0.03700903,99.01863989],[4.53663848,0.03700728,99.01959307],[4.53663804,0.03700553,99.02054563],[4.53663761,0.03700378,99.02149757],[4.53663717,0.03700203,99.02244888],[4.53663674,0.03700028,99.02339959],[4.5366363,0.03699853,99.02434968],[4.53663586,0.03699679,99.02529917],[4.53663543,0.03699504,99.02624805],[4.53663499,0.03699329,99.02719634],[4.53663456,0.03699154,99.02814404],[4.53663412,0.03698979,99.02909115],[4.53663368,0.03698804,99.03003767],[4.53663325,0.03698629,99.03098362],[4.53663281,0.03698454,99.03192898],[4.53663238,0.0369828,99.03287378],[4.53663194,0.03698105,99.033818],[4.5366315,0.0369793,99.03476167],[4.53663107,0.03697755,99.03570477],[4.53663063,0.0369758,99.03664731],[4.53663019,0.03697405,99.03758927],[4.53662976,0.0369723,99.03853067],[4.53662932,0.03697055,99.0394715],[4.53662889,0.03696881,99.04041176],[4.53662845,0.03696706,99.04135144],[4.53662801,0.03696531,99.04229054],[4.53662758,0.03696356,99.04322906],[4.53662714,0.03696181,99.044167],[4.5366267,0.03696006,99.04510435],[4.53662627,0.03695831,99.04604112],[4.53662583,0.03695657,99.0469773],[4.53662539,0.03695482,99.04791289],[4.53662496,0.03695307,99.04884788],[4.53662452,0.03695132,99.04978228],[4.53662408,0.03694957,99.05071609],[4.53662365,0.03694782,99.05164929],[4.53662321,0.03694607,99.05258189],[4.53662277,0.03694433,99.05351389],[4.53662234,0.03694258,99.05444527],[4.5366219,0.03694083,99.05537606],[4.53662146,0.03693908,99.05630623],[4.53662103,0.03693733,99.05723579],[4.53662059,0.03693558,99.05816473],[4.53662015,0.03693383,99.05909305],[4.53661972,0.03693209,99.06002076],[4.53661928,0.03693034,99.06094784],[4.53661884,0.03692859,99.06187431],[4.53661841,0.03692684,99.06280014],[4.53661797,0.03692509,99.06372535],[4.53661753,0.03692334,99.06464992],[4.5366171,0.03692159,99.06557387],[4.53661666,0.03691985,99.06649718],[4.53661622,0.0369181,99.06741985],[4.53661578,0.03691635,99.06834188],[4.53661535,0.0369146,99.06926328],[4.53661491,0.03691285,99.07018403],[4.53661447,0.0369111,99.07110413],[4.53661404,0.03690935,99.07202359],[4.5366136,0.03690761,99.07294239],[4.53661316,0.03690586,99.07386055],[4.53661273,0.03690411,99.07477805],[4.53661229,0.03690236,99.07569489],[4.53661185,0.03690061,99.07661107],[4.53661141,0.03689886,99.0775266],[4.53661098,0.03689711,99.07844146],[4.53661054,0.03689537,99.07935566],[4.5366101,0.03689362,99.08026918],[4.53660967,0.03689187,99.08118204],[4.53660923,0.03689012,99.08209423],[4.53660879,0.03688837,99.08300574],[4.53660836,0.03688662,99.08391653],[4.53660792,0.03688487,99.08482656],[4.53660748,0.03688313,99.08573579],[4.53660704,0.03688138,99.08664418],[4.53660661,0.03687963,99.08755168],[4.53660617,0.03687788,99.08845825],[4.53660573,0.03687613,99.08936385],[4.53660529,0.03687438,99.09026843],[4.53660486,0.03687264,99.09117196],[4.53660442,0.03687089,99.09207439],[4.53660398,0.03686914,99.09297568],[4.53660354,0.03686739,99.09387584],[4.5366031,0.03686564,99.09477486],[4.53660267,0.03686389,99.09567276],[4.53660223,0.03686215,99.09656954],[4.53660179,0.0368604,99.09746521],[4.53660135,0.03685865,99.09835977],[4.53660091,0.0368569,99.09925324],[4.53660047,0.03685515,99.1001456],[4.53660003,0.03685341,99.10103688],[4.53659959,0.03685166,99.10192708],[4.53659915,0.03684991,99.1028162],[4.53659871,0.03684816,99.10370425],[4.53659827,0.03684641,99.10459124],[4.53659783,0.03684467,99.10547718],[4.53659739,0.03684292,99.10636207],[4.53659695,0.03684117,99.10724592],[4.53659651,0.03683942,99.10812875],[4.53659607,0.03683768,99.10901056],[4.53659563,0.03683593,99.10989137],[4.53659519,0.03683418,99.11077117],[4.53659475,0.03683243,99.11164999],[4.53659431,0.03683069,99.11252783],[4.53659387,0.03682894,99.11340469],[4.53659343,0.03682719,99.1142806],[4.53659299,0.03682544,99.11515555],[4.53659255,0.03682369,99.11602956],[4.53659211,0.03682195,99.11690264],[4.53659167,0.0368202,99.1177748],[4.53659123,0.03681845,99.11864606],[4.53659079,0.0368167,99.11951645],[4.53659035,0.03681496,99.12038599],[4.5365899,0.03681321,99.1212547],[4.53658946,0.03681146,99.1221226],[4.53658902,0.03680971,99.12298972],[4.53658858,0.03680797,99.12385607],[4.53658814,0.03680622,99.12472167],[4.5365877,0.03680447,99.12558656],[4.53658726,0.03680272,99.12645075],[4.53658682,0.03680098,99.12731426],[4.53658638,0.03679923,99.12817712],[4.53658594,0.03679748,99.12903935],[4.5365855,0.03679573,99.12990097],[4.53658506,0.03679399,99.13076199],[4.53658462,0.03679224,99.13162241],[4.53658418,0.03679049,99.1324822],[4.53658374,0.03678874,99.13334135],[4.5365833,0.03678699,99.13419983],[4.53658286,0.03678525,99.13505763],[4.53658242,0.0367835,99.13591472],[4.53658198,0.03678175,99.1367711],[4.53658154,0.03678,99.13762673],[4.5365811,0.03677826,99.1384816],[4.53658066,0.03677651,99.13933568],[4.53658022,0.03677476,99.14018897],[4.53657978,0.03677301,99.14104145],[4.53657934,0.03677126,99.14189311],[4.5365789,0.03676952,99.14274398],[4.53657846,0.03676777,99.14359407],[4.53657802,0.03676602,99.14444338],[4.53657758,0.03676427,99.14529194],[4.53657714,0.03676252,99.14613975],[4.5365767,0.03676078,99.14698682],[4.53657626,0.03675903,99.14783317],[4.53657582,0.03675728,99.14867881],[4.53657538,0.03675553,99.14952375],[4.53657494,0.03675378,99.15036798],[4.5365745,0.03675204,99.15121149],[4.53657407,0.03675029,99.15205427],[4.53657363,0.03674854,99.1528963],[4.53657319,0.03674679,99.15373757],[4.53657275,0.03674505,99.15457807],[4.53657231,0.0367433,99.15541778],[4.53657187,0.03674155,99.15625668],[4.53657143,0.0367398,99.15709478],[4.53657099,0.03673805,99.15793204],[4.53657055,0.03673631,99.15876846],[4.53657011,0.03673456,99.15960403],[4.53656967,0.03673281,99.16043872],[4.53656923,0.03673106,99.16127254],[4.53656879,0.03672931,99.16210547],[4.53656835,0.03672757,99.1629375],[4.53656791,0.03672582,99.16376863],[4.53656747,0.03672407,99.16459883],[4.53656704,0.03672232,99.16542811],[4.5365666,0.03672057,99.16625646],[4.53656616,0.03671883,99.16708385],[4.53656572,0.03671708,99.16791029],[4.53656528,0.03671533,99.16873577],[4.53656484,0.03671358,99.16956027],[4.53656439,0.03671184,99.17038379],[4.53656395,0.03671009,99.17120631],[4.53656351,0.03670834,99.17202783],[4.53656307,0.03670659,99.17284833],[4.53656263,0.03670484,99.17366781],[4.53656219,0.0367031,99.17448626],[4.53656175,0.03670135,99.17530366],[4.53656131,0.0366996,99.17612002],[4.53656087,0.03669785,99.17693531],[4.53656043,0.03669611,99.17774952],[4.53655999,0.03669436,99.17856266],[4.53655954,0.03669261,99.1793747],[4.5365591,0.03669086,99.18018564],[4.53655866,0.03668912,99.18099547],[4.53655822,0.03668737,99.18180418],[4.53655778,0.03668562,99.18261176],[4.53655733,0.03668388,99.18341819],[4.53655689,0.03668213,99.18422348],[4.53655645,0.03668038,99.1850276],[4.53655601,0.03667863,99.18583055],[4.53655556,0.03667689,99.18663232],[4.53655512,0.03667514,99.1874329],[4.53655468,0.03667339,99.18823226],[4.53655423,0.03667165,99.18903042],[4.53655379,0.0366699,99.18982734],[4.53655335,0.03666815,99.19062303],[4.5365529,0.03666641,99.19141746],[4.53655246,0.03666466,99.19221063],[4.53655201,0.03666291,99.19300253],[4.53655157,0.03666117,99.19379314],[4.53655113,0.03665942,99.19458246],[4.53655068,0.03665767,99.19537048],[4.53655024,0.03665593,99.19615723],[4.53654979,0.03665418,99.19694272],[4.53654935,0.03665243,99.19772699],[4.5365489,0.03665069,99.19851005],[4.53654845,0.03664894,99.19929194],[4.53654801,0.03664719,99.20007266],[4.53654756,0.03664545,99.20085226],[4.53654712,0.0366437,99.20163075],[4.53654667,0.03664196,99.20240818],[4.53654623,0.03664021,99.20318456],[4.53654578,0.03663846,99.20395994],[4.53654533,0.03663672,99.20473435],[4.53654489,0.03663497,99.20550782],[4.53654444,0.03663322,99.20628038],[4.536544,0.03663148,99.20705206],[4.53654355,0.03662973,99.20782288],[4.5365431,0.03662798,99.20859286],[4.53654266,0.03662624,99.209362],[4.53654221,0.03662449,99.21013032],[4.53654177,0.03662275,99.21089784],[4.53654132,0.036621,99.21166458],[4.53654087,0.03661925,99.21243055],[4.53654043,0.03661751,99.21319578],[4.53653998,0.03661576,99.2139603],[4.53653954,0.03661401,99.21472411],[4.53653909,0.03661227,99.21548726],[4.53653865,0.03661052,99.21624974],[4.5365382,0.03660878,99.21701155],[4.53653776,0.03660703,99.21777269],[4.53653731,0.03660528,99.21853316],[4.53653686,0.03660354,99.21929295],[4.53653642,0.03660179,99.22005206],[4.53653597,0.03660004,99.22081048],[4.53653553,0.0365983,99.22156822],[4.53653508,0.03659655,99.22232527],[4.53653464,0.0365948,99.22308162],[4.53653419,0.03659306,99.22383727],[4.53653375,0.03659131,99.22459222],[4.5365333,0.03658956,99.22534647],[4.53653286,0.03658782,99.2261],[4.53653242,0.03658607,99.22685283],[4.53653197,0.03658432,99.22760494],[4.53653153,0.03658258,99.22835632],[4.53653108,0.03658083,99.22910699],[4.53653064,0.03657908,99.22985692],[4.53653019,0.03657734,99.23060613],[4.53652975,0.03657559,99.2313546],[4.5365293,0.03657384,99.23210233],[4.53652886,0.0365721,99.23284932],[4.53652841,0.03657035,99.23359557],[4.53652797,0.0365686,99.23434106],[4.53652753,0.03656686,99.2350858],[4.53652708,0.03656511,99.23582979],[4.53652664,0.03656336,99.23657301],[4.53652619,0.03656162,99.23731547],[4.53652575,0.03655987,99.23805715],[4.5365253,0.03655812,99.23879807],[4.53652486,0.03655638,99.2395382],[4.53652442,0.03655463,99.24027756],[4.53652397,0.03655288,99.24101613],[4.53652353,0.03655114,99.24175391],[4.53652308,0.03654939,99.2424909],[4.53652264,0.03654764,99.24322709],[4.53652219,0.0365459,99.24396248],[4.53652175,0.03654415,99.24469706],[4.53652131,0.0365424,99.24543084],[4.53652086,0.03654066,99.2461638],[4.53652042,0.03653891,99.24689594],[4.53651997,0.03653716,99.24762726],[4.53651953,0.03653542,99.24835775],[4.53651908,0.03653367,99.24908741],[4.53651864,0.03653192,99.24981624],[4.53651819,0.03653018,99.25054423],[4.53651775,0.03652843,99.25127137],[4.53651731,0.03652668,99.25199767],[4.53651686,0.03652494,99.25272311],[4.53651642,0.03652319,99.25344769],[4.53651597,0.03652144,99.25417142],[4.53651553,0.0365197,99.25489427],[4.53651508,0.03651795,99.25561626],[4.53651464,0.0365162,99.25633737],[4.53651419,0.03651446,99.2570576],[4.53651375,0.03651271,99.25777695],[4.5365133,0.03651096,99.2584954],[4.53651286,0.03650922,99.25921297],[4.53651241,0.03650747,99.25992963],[4.53651197,0.03650572,99.2606454],[4.53651152,0.03650398,99.26136025],[4.53651108,0.03650223,99.26207419],[4.53651063,0.03650049,99.26278722],[4.53651019,0.03649874,99.26349932],[4.53650974,0.03649699,99.26421049],[4.53650955,0.03649625,99.26451101],[4.53651091,0.0364959,99.13951101],[4.5365111,0.03649664,99.13921049],[4.53651154,0.03649839,99.13849932],[4.53651199,0.03650014,99.13778722],[4.53651243,0.03650188,99.13707419],[4.53651288,0.03650363,99.13636025],[4.53651332,0.03650538,99.1356454],[4.53651377,0.03650712,99.13492963],[4.53651421,0.03650887,99.13421297],[4.53651466,0.03651061,99.1334954],[4.5365151,0.03651236,99.13277695],[4.53651555,0.03651411,99.1320576],[4.53651599,0.03651585,99.13133737],[4.53651644,0.0365176,99.13061626],[4.53651688,0.03651935,99.12989427],[4.53651733,0.03652109,99.12917142],[4.53651777,0.03652284,99.12844769],[4.53651822,0.03652459,99.12772311],[4.53651866,0.03652633,99.12699767],[4.5365191,0.03652808,99.12627137],[4.53651955,0.03652983,99.12554423],[4.53651999,0.03653158,99.12481624],[4.53652044,0.03653332,99.12408741],[4.53652088,0.03653507,99.12335775],[4.53652132,0.03653682,99.12262726],[4.53652177,0.03653856,99.12189594],[4.53652221,0.03654031,99.1211638],[4.53652266,0.03654206,99.12043084],[4.5365231,0.0365438,99.11969706],[4.53652354,0.03654555,99.11896248],[4.53652399,0.0365473,99.11822709],[4.53652443,0.03654904,99.1174909],[4.53652487,0.03655079,99.11675391],[4.53652532,0.03655254,99.11601613],[4.53652576,0.03655428,99.11527756],[4.5365262,0.03655603,99.1145382],[4.53652665,0.03655778,99.11379807],[4.53652709,0.03655953,99.11305715],[4.53652754,0.03656127,99.11231547],[4.53652798,0.03656302,99.11157301],[4.53652842,0.03656477,99.11082979],[4.53652887,0.03656651,99.1100858],[4.53652931,0.03656826,99.10934106],[4.53652975,0.03657001,99.10859557],[4.5365302,0.03657175,99.10784932],[4.53653064,0.0365735,99.10710233],[4.53653108,0.03657525,99.1063546],[4.53653153,0.03657699,99.10560613],[4.53653197,0.03657874,99.10485692],[4.53653241,0.03658049,99.10410699],[4.53653286,0.03658224,99.10335632],[4.5365333,0.03658398,99.10260494],[4.53653374,0.03658573,99.10185283],[4.53653419,0.03658748,99.1011],[4.53653463,0.03658922,99.10034647],[4.53653508,0.03659097,99.09959222],[4.53653552,0.03659272,99.09883727],[4.53653596,0.03659446,99.09808162],[4.53653641,0.03659621,99.09732527],[4.53653685,0.03659796,99.09656822],[4.5365373,0.0365997,99.09581048],[4.53653774,0.03660145,99.09505206],[4.53653818,0.0366032,99.09429295],[4.53653863,0.03660494,99.09353316],[4.53653907,0.03660669,99.09277269],[4.53653952,0.03660844,99.09201155],[4.53653996,0.03661018,99.09124974],[4.53654041,0.03661193,99.09048726],[4.53654085,0.03661368,99.08972411],[4.53654129,0.03661542,99.0889603],[4.53654174,0.03661717,99.08819578],[4.53654218,0.03661892,99.08743055],[4.53654263,0.03662066,99.08666458],[4.53654307,0.03662241,99.08589784],[4.53654352,0.03662416,99.08513032],[4.53654396,0.0366259,99.084362],[4.53654441,0.03662765,99.08359286],[4.53654485,0.0366294,99.08282288],[4.5365453,0.03663114,99.08205206],[4.53654574,0.03663289,99.08128038],[4.53654619,0.03663464,99.08050782],[4.53654663,0.03663638,99.07973435],[4.53654708,0.03663813,99.07895994],[4.53654753,0.03663988,99.07818456],[4.53654797,0.03664162,99.07740818],[4.53654842,0.03664337,99.07663075],[4.53654886,0.03664511,99.07585226],[4.53654931,0.03664686,99.07507266],[4.53654975,0.03664861,99.07429194],[4.5365502,0.03665035,99.07351005],[4.53655064,0.0366521,99.07272699],[4.53655109,0.03665385,99.07194272],[4.53655153,0.03665559,99.07115723],[4.53655197,0.03665734,99.07037048],[4.53655242,0.03665909,99.06958246],[4.53655286,0.03666083,99.06879314],[4.53655331,0.03666258,99.06800253],[4.53655375,0.03666433,99.06721063],[4.53655419,0.03666607,99.06641746],[4.53655464,0.03666782,99.06562303],[4.53655508,0.03666957,99.06482734],[4.53655553,0.03667132,99.06403042],[4.53655597,0.03667306,99.06323226],[4.53655641,0.03667481,99.0624329],[4.53655685,0.03667656,99.06163232],[4.5365573,0.0366783,99.06083055],[4.53655774,0.03668005,99.0600276],[4.53655818,0.0366818,99.05922348],[4.53655863,0.03668354,99.05841819],[4.53655907,0.03668529,99.05761176],[4.53655951,0.03668704,99.05680418],[4.53655995,0.03668879,99.05599547],[4.5365604,0.03669053,99.05518564],[4.53656084,0.03669228,99.0543747],[4.53656128,0.03669403,99.05356266],[4.53656172,0.03669578,99.05274952],[4.53656216,0.03669752,99.05193531],[4.53656261,0.03669927,99.05112002],[4.53656305,0.03670102,99.05030366],[4.53656349,0.03670276,99.04948626],[4.53656393,0.03670451,99.04866781],[4.53656437,0.03670626,99.04784833],[4.53656481,0.03670801,99.04702783],[4.53656526,0.03670975,99.04620631],[4.5365657,0.0367115,99.04538379],[4.53656614,0.03671325,99.04456027],[4.53656658,0.036715,99.04373577],[4.53656702,0.03671674,99.04291029],[4.53656746,0.03671849,99.04208385],[4.5365679,0.03672024,99.04125646],[4.53656834,0.03672199,99.04042811],[4.53656879,0.03672373,99.03959883],[4.53656923,0.03672548,99.03876863],[4.53656967,0.03672723,99.0379375],[4.53657011,0.03672898,99.03710547],[4.53657055,0.03673072,99.03627254],[4.53657099,0.03673247,99.03543872],[4.53657143,0.03673422,99.03460403],[4.53657187,0.03673597,99.03376846],[4.53657231,0.03673771,99.03293204],[4.53657275,0.03673946,99.03209478],[4.53657319,0.03674121,99.03125668],[4.53657364,0.03674296,99.03041778],[4.53657408,0.03674471,99.02957807],[4.53657452,0.03674645,99.02873757],[4.53657496,0.0367482,99.0278963],[4.5365754,0.03674995,99.02705427],[4.53657584,0.0367517,99.02621149],[4.53657628,0.03675344,99.02536798],[4.53657672,0.03675519,99.02452375],[4.53657716,0.03675694,99.02367881],[4.5365776,0.03675869,99.02283317],[4.53657804,0.03676043,99.02198682],[4.53657849,0.03676218,99.02113975],[4.53657893,0.03676393,99.02029194],[4.53657937,0.03676568,99.01944338],[4.53657981,0.03676742,99.01859407],[4.53658025,0.03676917,99.01774398],[4.53658069,0.03677092,99.01689311],[4.53658113,0.03677267,99.01604145],[4.53658157,0.03677441,99.01518897],[4.53658201,0.03677616,99.01433568],[4.53658245,0.03677791,99.0134816],[4.5365829,0.03677966,99.01262673],[4.53658334,0.0367814,99.0117711],[4.53658378,0.03678315,99.01091472],[4.53658422,0.0367849,99.01005763],[4.53658466,0.03678665,99.00919983],[4.5365851,0.03678839,99.00834135],[4.53658554,0.03679014,99.0074822],[4.53658598,0.03679189,99.00662241],[4.53658642,0.03679364,99.00576199],[4.53658686,0.03679538,99.00490097],[4.53658731,0.03679713,99.00403935],[4.53658775,0.03679888,99.00317712],[4.53658819,0.03680063,99.00231426],[4.53658863,0.03680237,99.00145075],[4.53658907,0.03680412,99.00058656],[4.53658951,0.03680587,98.99972167],[4.53658995,0.03680762,98.99885607],[4.53659039,0.03680936,98.99798972],[4.53659084,0.03681111,98.9971226],[4.53659128,0.03681286,98.9962547],[4.53659172,0.03681461,98.99538599],[4.53659216,0.03681635,98.99451645],[4.5365926,0.0368181,98.99364606],[4.53659304,0.03681985,98.9927748],[4.53659348,0.0368216,98.99190264],[4.53659392,0.03682334,98.99102956],[4.53659436,0.03682509,98.99015555],[4.53659481,0.03682684,98.9892806],[4.53659525,0.03682859,98.98840469],[4.53659569,0.03683033,98.98752783],[4.53659613,0.03683208,98.98664999],[4.53659657,0.03683383,98.98577117],[4.53659701,0.03683558,98.98489137],[4.53659745,0.03683733,98.98401056],[4.53659789,0.03683907,98.98312875],[4.53659833,0.03684082,98.98224592],[4.53659877,0.03684257,98.98136207],[4.53659921,0.03684432,98.98047718],[4.53659965,0.03684606,98.97959124],[4.53660009,0.03684781,98.97870425],[4.53660053,0.03684956,98.9778162],[4.53660097,0.03685131,98.97692708],[4.5366014,0.03685306,98.97603688],[4.53660184,0.0368548,98.9751456],[4.53660228,0.03685655,98.97425324],[4.53660272,0.0368583,98.97335977],[4.53660316,0.03686005,98.97246521],[4.5366036,0.0368618,98.97156954],[4.53660404,0.03686355,98.97067276],[4.53660447,0.03686529,98.96977486],[4.53660491,0.03686704,98.96887584],[4.53660535,0.03686879,98.96797568],[4.53660579,0.03687054,98.96707439],[4.53660622,0.03687229,98.96617196],[4.53660666,0.03687404,98.96526843],[4.5366071,0.03687578,98.96436385],[4.53660753,0.03687753,98.96345825],[4.53660797,0.03687928,98.96255168],[4.53660841,0.03688103,98.96164418],[4.53660884,0.03688278,98.96073579],[4.53660928,0.03688453,98.95982656],[4.53660972,0.03688628,98.95891653],[4.53661015,0.03688803,98.95800574],[4.53661059,0.03688977,98.95709423],[4.53661103,0.03689152,98.95618204],[4.53661146,0.03689327,98.95526918],[4.5366119,0.03689502,98.95435566],[4.53661233,0.03689677,98.95344146],[4.53661277,0.03689852,98.9525266],[4.53661321,0.03690027,98.95161107],[4.53661364,0.03690202,98.95069489],[4.53661408,0.03690376,98.94977805],[4.53661451,0.03690551,98.94886055],[4.53661495,0.03690726,98.94794239],[4.53661539,0.03690901,98.94702359],[4.53661582,0.03691076,98.94610413],[4.53661626,0.03691251,98.94518403],[4.53661669,0.03691426,98.94426328],[4.53661713,0.03691601,98.94334188],[4.53661757,0.03691775,98.94241985],[4.536618,0.0369195,98.94149718],[4.53661844,0.03692125,98.94057387],[4.53661887,0.036923,98.93964992],[4.53661931,0.03692475,98.93872535],[4.53661975,0.0369265,98.93780014],[4.53662018,0.03692825,98.93687431],[4.53662062,0.03693,98.93594784],[4.53662105,0.03693175,98.93502076],[4.53662149,0.03693349,98.93409305],[4.53662192,0.03693524,98.93316473],[4.53662236,0.03693699,98.93223579],[4.5366228,0.03693874,98.93130623],[4.53662323,0.03694049,98.93037606],[4.53662367,0.03694224,98.92944527],[4.5366241,0.03694399,98.92851389],[4.53662454,0.03694574,98.92758189],[4.53662497,0.03694749,98.92664929],[4.53662541,0.03694923,98.92571609],[4.53662585,0.03695098,98.92478228],[4.53662628,0.03695273,98.92384788],[4.53662672,0.03695448,98.92291289],[4.53662715,0.03695623,98.9219773],[4.53662759,0.03695798,98.92104112],[4.53662802,0.03695973,98.92010435],[4.53662846,0.03696148,98.919167],[4.53662889,0.03696323,98.91822906],[4.53662933,0.03696497,98.91729054],[4.53662977,0.03696672,98.91635144],[4.5366302,0.03696847,98.91541176],[4.53663064,0.03697022,98.9144715],[4.53663107,0.03697197,98.91353067],[4.53663151,0.03697372,98.91258927],[4.53663194,0.03697547,98.91164731],[4.53663238,0.03697722,98.91070477],[4.53663281,0.03697897,98.90976167],[4.53663325,0.03698071,98.908818],[4.53663368,0.03698246,98.90787378],[4.53663412,0.03698421,98.90692898],[4.53663455,0.03698596,98.90598362],[4.53663499,0.03698771,98.90503767],[4.53663543,0.03698946,98.90409115],[4.53663586,0.03699121,98.90314404],[4.5366363,0.03699296,98.90219634],[4.53663673,0.03699471,98.90124805],[4.53663717,0.03699646,98.90029917],[4.5366376,0.0369982,98.89934968],[4.53663804,0.03699995,98.89839959],[4.53663847,0.0370017,98.89744888],[4.53663891,0.03700345,98.89649757],[4.53663934,0.0370052,98.89554563],[4.53663978,0.03700695,98.89459307],[4.53664021,0.0370087,98.89363989],[4.53664064,0.03701045,98.89268607],[4.53664108,0.0370122,98.89173162],[4.53664151,0.03701395,98.89077654],[4.53664195,0.0370157,98.8898208],[4.53664238,0.03701744,98.88886443],[4.53664282,0.03701919,98.88790739],[4.53664325,0.03702094,98.88694971],[4.53664369,0.03702269,98.88599136],[4.53664412,0.03702444,98.88503235],[4.53664455,0.03702619,98.88407267],[4.53664499,0.03702794,98.88311232],[4.53664542,0.03702969,98.88215131],[4.53664586,0.03703144,98.88118968],[4.53664629,0.03703319,98.88022746],[4.53664672,0.03703494,98.87926471],[4.53664716,0.03703669,98.87830146],[4.53664759,0.03703844,98.87733777],[4.53664803,0.03704019,98.87637368],[4.53664846,0.03704193,98.87540923],[4.53664889,0.03704368,98.87444447],[4.53664933,0.03704543,98.87347943],[4.53664976,0.03704718,98.87251413],[4.5366502,0.03704893,98.87154855],[4.53665063,0.03705068,98.87058271],[4.53665106,0.03705243,98.86961659],[4.5366515,0.03705418,98.86865019],[4.53665193,0.03705593,98.86768352],[4.53665237,0.03705768,98.86671657],[4.5366528,0.03705943,98.86574935],[4.53665324,0.03706118,98.86478184],[4.53665367,0.03706293,98.86381405],[4.53665411,0.03706467,98.86284598],[4.53665454,0.03706642,98.86187762],[4.53665498,0.03706817,98.86090897],[4.53665541,0.03706992,98.85994004],[4.53665584,0.03707167,98.85897082],[4.53665628,0.03707342,98.8580013],[4.53665671,0.03707517,98.8570315],[4.53665715,0.03707692,98.8560614],[4.53665758,0.03707867,98.855091],[4.53665802,0.03708042,98.85412031],[4.53665845,0.03708217,98.85314932],[4.53665889,0.03708391,98.85217804],[4.53665932,0.03708566,98.85120645],[4.53665976,0.03708741,98.85023457],[4.53666019,0.03708916,98.84926239],[4.53666063,0.03709091,98.84828991],[4.53666106,0.03709266,98.84731712],[4.5366615,0.03709441,98.84634403],[4.53666194,0.03709616,98.84537064],[4.53666237,0.03709791,98.84439694],[4.53666281,0.03709966,98.84342294],[4.53666324,0.0371014,98.84244863],[4.53666368,0.03710315,98.84147402],[4.53666411,0.0371049,98.8404991],[4.53666455,0.03710665,98.83952387],[4.53666498,0.0371084,98.83854832],[4.53666542,0.03711015,98.83757247],[4.53666585,0.0371119,98.83659631],[4.53666629,0.03711365,98.83561984],[4.53666672,0.0371154,98.83464305],[4.53666716,0.03711714,98.83366595],[4.53666759,0.03711889,98.83268853],[4.53666803,0.03712064,98.8317108],[4.53666847,0.03712239,98.83073275],[4.5366689,0.03712414,98.82975438],[4.53666934,0.03712589,98.8287757],[4.53666977,0.03712764,98.8277967],[4.53667021,0.03712939,98.82681737],[4.53667064,0.03713114,98.82583773],[4.53667108,0.03713288,98.82485776],[4.53667151,0.03713463,98.82387748],[4.53667195,0.03713638,98.82289686],[4.53667238,0.03713813,98.82191587],[4.53667282,0.03713988,98.82093447],[4.53667326,0.03714163,98.81995261],[4.53667369,0.03714338,98.81897024],[4.53667413,0.03714513,98.81798733],[4.53667456,0.03714688,98.81700383],[4.536675,0.03714863,98.81601976],[4.53667543,0.03715037,98.81503511],[4.53667587,0.03715212,98.81404992],[4.5366763,0.03715387,98.81306419],[4.53667674,0.03715562,98.81207793],[4.53667717,0.03715737,98.81109116],[4.5366776,0.03715912,98.8101039],[4.53667804,0.03716087,98.80911616],[4.53667847,0.03716262,98.80812795],[4.53667891,0.03716437,98.80713929],[4.53667934,0.03716612,98.80615019],[4.53667978,0.03716787,98.80516067],[4.53668021,0.03716962,98.80417074],[4.53668064,0.03717136,98.80318041],[4.53668108,0.03717311,98.8021897],[4.53668151,0.03717486,98.80119862],[4.53668195,0.03717661,98.80020719],[4.53668238,0.03717836,98.79921543],[4.53668281,0.03718011,98.79822333],[4.53668325,0.03718186,98.79723093],[4.53668368,0.03718361,98.79623823],[4.53668411,0.03718536,98.79524525],[4.53668455,0.03718711,98.79425201],[4.53668498,0.03718886,98.79325851],[4.53668542,0.03719061,98.79226477],[4.53668585,0.03719236,98.79127081],[4.53668628,0.03719411,98.79027663],[4.53668672,0.03719586,98.78928227],[4.53668715,0.0371976,98.78828772],[4.53668758,0.03719935,98.787293],[4.53668802,0.0372011,98.78629814],[4.53668845,0.03720285,98.78530313],[4.53668889,0.0372046,98.784308],[4.53668932,0.03720635,98.78331277],[4.53668975,0.0372081,98.78231743],[4.53669019,0.03720985,98.78132202],[4.53669062,0.0372116,98.78032654],[4.53669106,0.03721335,98.77933101],[4.53669149,0.0372151,98.77833545],[4.53669192,0.03721685,98.77733986],[4.53669236,0.0372186,98.77634426],[4.53669279,0.03722035,98.77534868],[4.53669323,0.03722209,98.7743531],[4.53669366,0.03722384,98.77335753],[4.5366941,0.03722559,98.77236193],[4.53669453,0.03722734,98.77136628],[4.53669496,0.03722909,98.77037057],[4.5366954,0.03723084,98.76937476],[4.53669583,0.03723259,98.76837883],[4.53669627,0.03723434,98.76738275],[4.5366967,0.03723609,98.7663865],[4.53669714,0.03723784,98.76539007],[4.53669757,0.03723959,98.76439345],[4.53669801,0.03724134,98.76339663],[4.53669844,0.03724308,98.76239962],[4.53669888,0.03724483,98.76140242],[4.53669931,0.03724658,98.76040501],[4.53669974,0.03724833,98.7594074],[4.53670018,0.03725008,98.75840959],[4.53670061,0.03725183,98.75741157],[4.53670105,0.03725358,98.75641333],[4.53670148,0.03725533,98.75541488],[4.53670192,0.03725708,98.75441622],[4.53670235,0.03725883,98.75341733],[4.53670278,0.03726058,98.75241822],[4.53670322,0.03726233,98.75141889],[4.53670365,0.03726407,98.75041932],[4.53670409,0.03726582,98.74941953],[4.53670452,0.03726757,98.7484195],[4.53670496,0.03726932,98.74741923],[4.53670539,0.03727107,98.74641873],[4.53670582,0.03727282,98.74541798],[4.53670626,0.03727457,98.74441698],[4.53670669,0.03727632,98.74341574],[4.53670712,0.03727807,98.74241424],[4.53670756,0.03727982,98.74141249],[4.53670799,0.03728157,98.74041048],[4.53670843,0.03728332,98.73940821],[4.53670886,0.03728507,98.73840568],[4.53670929,0.03728682,98.73740288],[4.53670973,0.03728857,98.73639982],[4.53671016,0.03729031,98.73539648],[4.53671059,0.03729206,98.73439288],[4.53671103,0.03729381,98.733389],[4.53671146,0.03729556,98.73238485],[4.53671189,0.03729731,98.73138043],[4.53671232,0.03729906,98.73037572],[4.53671276,0.03730081,98.72937074],[4.53671319,0.03730256,98.72836547],[4.53671362,0.03730431,98.72735992],[4.53671406,0.03730606,98.72635409],[4.53671449,0.03730781,98.72534796],[4.53671492,0.03730956,98.72434155],[4.53671535,0.03731131,98.72333485],[4.53671579,0.03731306,98.72232785],[4.53671622,0.03731481,98.72132056],[4.53671665,0.03731656,98.72031297],[4.53671708,0.03731831,98.71930508],[4.53671751,0.03732006,98.7182969],[4.53671795,0.03732181,98.7172884],[4.53671838,0.03732356,98.71627961],[4.53671881,0.03732531,98.71527051],[4.53671924,0.03732706,98.71426109],[4.53671967,0.03732881,98.71325137],[4.5367201,0.03733056,98.71224134],[4.53672053,0.03733231,98.71123099],[4.53672097,0.03733406,98.71022032],[4.5367214,0.03733581,98.70920934],[4.53672183,0.03733756,98.70819804],[4.53672226,0.03733931,98.70718645],[4.53672269,0.03734106,98.70617457],[4.53672312,0.03734281,98.70516244],[4.53672355,0.03734456,98.70415005],[4.53672398,0.03734631,98.70313743],[4.53672441,0.03734806,98.70212459],[4.53672484,0.03734981,98.70111155],[4.53672527,0.03735156,98.70009833],[4.5367257,0.03735331,98.69908493],[4.53672613,0.03735506,98.69807138],[4.53672656,0.03735681,98.69705769],[4.53672699,0.03735856,98.69604388],[4.53672742,0.03736031,98.69502996],[4.53672785,0.03736206,98.69401595],[4.53672828,0.03736381,98.69300187],[4.53672871,0.03736556,98.69198772],[4.53672914,0.03736731,98.69097354],[4.53672957,0.03736906,98.68995932],[4.53673,0.03737081,98.6889451],[4.53673043,0.03737256,98.68793088],[4.53673086,0.03737431,98.68691667],[4.53673129,0.03737606,98.68590251],[4.53673172,0.03737781,98.6848884],[4.53673215,0.03737956,98.68387435],[4.53673258,0.03738131,98.6828604],[4.53673301,0.03738306,98.68184653],[4.53673344,0.03738481,98.68083276],[4.53673387,0.03738657,98.6798191],[4.5367343,0.03738832,98.67880555],[4.53673473,0.03739007,98.67779212],[4.53673515,0.03739182,98.67677881],[4.53673558,0.03739357,98.67576564],[4.53673601,0.03739532,98.67475259],[4.53673644,0.03739707,98.6737397],[4.53673687,0.03739882,98.67272695],[4.5367373,0.03740057,98.67171435],[4.53673773,0.03740232,98.67070191],[4.53673816,0.03740407,98.66968965],[4.53673859,0.03740582,98.66867755],[4.53673902,0.03740757,98.66766564],[4.53673945,0.03740932,98.66665391],[4.53673988,0.03741107,98.66564237],[4.53674031,0.03741282,98.66463103],[4.53674074,0.03741457,98.66361989],[4.53674117,0.03741632,98.66260897],[4.5367416,0.03741807,98.66159826],[4.53674203,0.03741982,98.66058778],[4.53674246,0.03742157,98.65957756],[4.53674289,0.03742332,98.6585676],[4.53674332,0.03742507,98.65755793],[4.53674375,0.03742682,98.65654855],[4.53674418,0.03742857,98.6555395],[4.53674461,0.03743032,98.65453077],[4.53674504,0.03743207,98.6535224],[4.53674547,0.03743382,98.6525144],[4.53674591,0.03743557,98.65150679],[4.53674634,0.03743732,98.65049957],[4.53674677,0.03743907,98.64949275],[4.5367472,0.03744082,98.64848632],[4.53674763,0.03744257,98.64748028],[4.53674806,0.03744432,98.64647462],[4.53674849,0.03744607,98.64546935],[4.53674892,0.03744782,98.64446444],[4.53674935,0.03744957,98.64345991],[4.53674978,0.03745132,98.64245574],[4.53675022,0.03745307,98.64145193],[4.53675065,0.03745482,98.64044848],[4.53675108,0.03745657,98.63944537],[4.53675151,0.03745832,98.6384426],[4.53675194,0.03746007,98.63744015],[4.53675237,0.03746182,98.636438],[4.5367528,0.03746357,98.63543614],[4.53675324,0.03746532,98.63443455],[4.53675367,0.03746707,98.63343323],[4.5367541,0.03746882,98.63243217],[4.53675453,0.03747057,98.63143137],[4.53675496,0.03747232,98.63043084],[4.53675539,0.03747407,98.62943058],[4.53675583,0.03747582,98.62843058],[4.53675626,0.03747757,98.62743085],[4.53675669,0.03747932,98.62643139],[4.53675712,0.03748107,98.6254322],[4.53675755,0.03748282,98.62443328],[4.53675799,0.03748457,98.62343464],[4.53675842,0.03748632,98.62243626],[4.53675885,0.03748807,98.62143817],[4.53675928,0.03748982,98.62044034],[4.53675971,0.03749157,98.6194428],[4.53676014,0.03749332,98.61844553],[4.53676058,0.03749507,98.61744854],[4.53676101,0.03749682,98.61645183],[4.53676144,0.03749857,98.6154554],[4.53676187,0.03750032,98.61445925],[4.5367623,0.03750207,98.61346339],[4.53676274,0.03750382,98.61246781],[4.53676317,0.03750557,98.61147251],[4.5367636,0.03750732,98.6104775],[4.53676403,0.03750907,98.60948278],[4.53676446,0.03751082,98.60848835],[4.5367649,0.03751256,98.6074942],[4.53676533,0.03751431,98.60650035],[4.53676576,0.03751606,98.60550678],[4.53676619,0.03751781,98.60451351],[4.53676662,0.03751956,98.60352053],[4.53676705,0.03752131,98.60252784],[4.53676749,0.03752306,98.60153545],[4.53676792,0.03752481,98.60054336],[4.53676835,0.03752656,98.59955156],[4.53676878,0.03752831,98.59856007],[4.53676921,0.03753006,98.59756887],[4.53676965,0.03753181,98.59657797],[4.53677008,0.03753356,98.59558737],[4.53677051,0.03753531,98.59459707],[4.53677094,0.03753706,98.59360708],[4.53677137,0.03753881,98.59261739],[4.53677181,0.03754056,98.59162801],[4.53677224,0.03754231,98.59063893],[4.53677267,0.03754406,98.58965016],[4.5367731,0.03754581,98.5886617],[4.53677353,0.03754756,98.58767354],[4.53677397,0.03754931,98.5866857],[4.5367744,0.03755106,98.58569817],[4.53677483,0.03755281,98.58471095],[4.53677526,0.03755456,98.58372404],[4.53677569,0.03755631,98.58273744],[4.53677612,0.03755806,98.58175116],[4.53677656,0.03755981,98.5807652],[4.53677699,0.03756156,98.57977955],[4.53677742,0.03756331,98.57879422],[4.53677785,0.03756506,98.57780921],[4.53677828,0.03756681,98.57682452],[4.53677872,0.03756856,98.57584015],[4.53677915,0.03757031,98.5748561],[4.53677958,0.03757206,98.57387237],[4.53678001,0.03757381,98.57288897],[4.53678044,0.03757556,98.57190587],[4.53678087,0.03757731,98.57092308],[4.53678131,0.03757906,98.56994059],[4.53678174,0.03758081,98.56895839],[4.53678217,0.03758256,98.56797648],[4.5367826,0.03758431,98.56699484],[4.53678303,0.03758606,98.56601348],[4.53678346,0.03758781,98.56503238],[4.53678389,0.03758956,98.56405154],[4.53678433,0.03759131,98.56307095],[4.53678476,0.03759306,98.5620906],[4.53678519,0.03759481,98.56111049],[4.53678562,0.03759656,98.56013061],[4.53678605,0.03759831,98.55915095],[4.53678648,0.03760006,98.55817151],[4.53678691,0.03760181,98.55719228],[4.53678734,0.03760356,98.55621324],[4.53678777,0.03760531,98.55523441],[4.53678821,0.03760706,98.55425576],[4.53678864,0.03760881,98.55327729],[4.53678907,0.03761056,98.552299],[4.5367895,0.03761231,98.55132087],[4.53678993,0.03761406,98.55034291],[4.53679036,0.03761581,98.54936512],[4.53679079,0.03761756,98.54838748],[4.53679122,0.03761931,98.54740999],[4.53679165,0.03762106,98.54643266],[4.53679208,0.03762281,98.54545548],[4.53679251,0.03762456,98.54447844],[4.53679294,0.03762631,98.54350155],[4.53679337,0.03762806,98.54252482],[4.5367938,0.03762982,98.54154825],[4.53679423,0.03763157,98.54057187],[4.53679466,0.03763332,98.53959568],[4.53679509,0.03763507,98.53861969],[4.53679551,0.03763682,98.53764391],[4.53679594,0.03763857,98.53666836],[4.53679637,0.03764032,98.53569304],[4.5367968,0.03764207,98.53471796],[4.53679723,0.03764382,98.53374314],[4.53679766,0.03764557,98.53276858],[4.53679809,0.03764732,98.5317943],[4.53679852,0.03764907,98.53082031],[4.53679894,0.03765082,98.52984661],[4.53679937,0.03765257,98.52887323],[4.5367998,0.03765432,98.52790016],[4.53680023,0.03765608,98.52692742],[4.53680066,0.03765783,98.52595502],[4.53680109,0.03765958,98.52498298],[4.53680151,0.03766133,98.52401129],[4.53680194,0.03766308,98.52303998],[4.53680237,0.03766483,98.52206906],[4.5368028,0.03766658,98.52109852],[4.53680323,0.03766833,98.5201284],[4.53680365,0.03767008,98.51915869],[4.53680408,0.03767183,98.5181894],[4.53680451,0.03767358,98.51722056],[4.53680494,0.03767534,98.51625216],[4.53680536,0.03767709,98.51528423],[4.53680579,0.03767884,98.51431676],[4.53680622,0.03768059,98.51334978],[4.53680665,0.03768234,98.51238328],[4.53680708,0.03768409,98.51141729],[4.5368075,0.03768584,98.51045182],[4.53680793,0.03768759,98.50948687],[4.53680836,0.03768934,98.50852246],[4.53680879,0.03769109,98.50755859],[4.53680921,0.03769285,98.50659528],[4.53680964,0.0376946,98.50563254],[4.53681007,0.03769635,98.50467038],[4.53681049,0.0376981,98.5037088],[4.53681092,0.03769985,98.50274784],[4.53681135,0.0377016,98.50178748],[4.53681178,0.03770335,98.50082775],[4.5368122,0.0377051,98.49986865],[4.53681263,0.03770685,98.49891019],[4.53681306,0.0377086,98.4979524],[4.53681349,0.03771036,98.49699527],[4.53681391,0.03771211,98.49603882],[4.53681434,0.03771386,98.49508305],[4.53681477,0.03771561,98.49412799],[4.5368152,0.03771736,98.49317364],[4.53681562,0.03771911,98.49222002],[4.53681605,0.03772086,98.49126712],[4.53681648,0.03772261,98.49031497],[4.53681691,0.03772436,98.48936358],[4.53681733,0.03772612,98.48841295],[4.53681776,0.03772787,98.4874631],[4.53681819,0.03772962,98.48651404],[4.53681862,0.03773137,98.48556579],[4.53681904,0.03773312,98.48461834],[4.53681947,0.03773487,98.48367171],[4.5368199,0.03773662,98.48272592],[4.53682033,0.03773837,98.48178097],[4.53682075,0.03774012,98.48083688],[4.53682118,0.03774187,98.47989365],[4.53682161,0.03774363,98.4789513],[4.53682204,0.03774538,98.47800984],[4.53682246,0.03774713,98.47706928],[4.53682289,0.03774888,98.47612963],[4.53682332,0.03775063,98.47519091],[4.53682375,0.03775238,98.47425311],[4.53682418,0.03775413,98.47331626],[4.5368246,0.03775588,98.47238037],[4.53682503,0.03775763,98.47144545],[4.53682546,0.03775938,98.4705115],[4.53682589,0.03776113,98.46957854],[4.53682632,0.03776289,98.46864658],[4.53682675,0.03776464,98.46771563],[4.53682717,0.03776639,98.4667857],[4.5368276,0.03776814,98.46585677],[4.53682803,0.03776989,98.46492884],[4.53682846,0.03777164,98.46400193],[4.53682889,0.03777339,98.46307604],[4.53682932,0.03777514,98.46215119],[4.53682975,0.03777689,98.46122737],[4.53683018,0.03777864,98.4603046],[4.53683061,0.03778039,98.45938289],[4.53683103,0.03778214,98.45846225],[4.53683146,0.03778389,98.45754268],[4.53683189,0.03778564,98.4566242],[4.53683232,0.0377874,98.45570681],[4.53683275,0.03778915,98.45479052],[4.53683318,0.0377909,98.45387535],[4.53683361,0.03779265,98.45296128],[4.53683404,0.0377944,98.45204832],[4.53683447,0.03779615,98.45113644],[4.5368349,0.0377979,98.45022562],[4.53683533,0.03779965,98.44931587],[4.53683576,0.0378014,98.44840716],[4.53683619,0.03780315,98.44749948],[4.53683662,0.0378049,98.44659282],[4.53683705,0.03780665,98.44568717],[4.53683748,0.0378084,98.44478251],[4.53683791,0.03781015,98.44387882],[4.53683834,0.0378119,98.4429761],[4.53683877,0.03781365,98.44207434],[4.5368392,0.0378154,98.44117352],[4.53683963,0.03781715,98.44027364],[4.53684006,0.0378189,98.43937469],[4.53684049,0.03782065,98.43847667],[4.53684092,0.0378224,98.43757955],[4.53684135,0.03782416,98.43668334],[4.53684178,0.03782591,98.43578803],[4.53684221,0.03782766,98.43489361],[4.53684264,0.03782941,98.43400007],[4.53684307,0.03783116,98.4331074],[4.5368435,0.03783291,98.43221559],[4.53684393,0.03783466,98.43132464],[4.53684436,0.03783641,98.43043454],[4.53684479,0.03783816,98.42954528],[4.53684522,0.03783991,98.42865684],[4.53684565,0.03784166,98.42776923],[4.53684608,0.03784341,98.42688244],[4.53684651,0.03784516,98.42599645],[4.53684694,0.03784691,98.42511126],[4.53684737,0.03784866,98.42422686],[4.5368478,0.03785041,98.42334323],[4.53684823,0.03785216,98.42246039],[4.53684866,0.03785391,98.4215783],[4.53684909,0.03785566,98.42069697],[4.53684952,0.03785742,98.41981639],[4.53684994,0.03785917,98.41893655],[4.53685037,0.03786092,98.41805744],[4.5368508,0.03786267,98.41717905],[4.53685123,0.03786442,98.41630138],[4.53685166,0.03786617,98.41542441],[4.53685209,0.03786792,98.41454814],[4.53685252,0.03786967,98.41367256],[4.53685295,0.03787142,98.41279765],[4.53685337,0.03787317,98.41192342],[4.5368538,0.03787492,98.41104986],[4.53685423,0.03787667,98.41017695],[4.53685466,0.03787843,98.40930468],[4.53685509,0.03788018,98.40843306],[4.53685551,0.03788193,98.40756206],[4.53685594,0.03788368,98.40669169],[4.53685637,0.03788543,98.40582193],[4.53685679,0.03788718,98.40495278],[4.53685722,0.03788893,98.40408422],[4.53685765,0.03789068,98.40321625],[4.53685807,0.03789244,98.40234886],[4.5368585,0.03789419,98.40148207],[4.53685893,0.03789594,98.40061591],[4.53685935,0.03789769,98.39975039],[4.53685978,0.03789944,98.39888554],[4.53686021,0.03790119,98.39802137],[4.53686063,0.03790294,98.39715791],[4.53686106,0.0379047,98.39629518],[4.53686148,0.03790645,98.39543321],[4.53686191,0.0379082,98.394572],[4.53686233,0.03790995,98.39371159],[4.53686276,0.0379117,98.392852],[4.53686318,0.03791345,98.39199324],[4.53686361,0.03791521,98.39113534],[4.53686403,0.03791696,98.39027832],[4.53686446,0.03791871,98.3894222],[4.53686488,0.03792046,98.38856701],[4.53686531,0.03792221,98.38771276],[4.53686573,0.03792396,98.38685948],[4.53686616,0.03792572,98.38600719],[4.53686658,0.03792747,98.3851559],[4.53686701,0.03792922,98.38430565],[4.53686743,0.03793097,98.38345645],[4.53686785,0.03793272,98.38260832],[4.53686828,0.03793448,98.38176129],[4.5368687,0.03793623,98.38091538],[4.53686913,0.03793798,98.38007061],[4.53686955,0.03793973,98.379227],[4.53686998,0.03794148,98.37838459],[4.5368704,0.03794324,98.37754341],[4.53687082,0.03794499,98.37670348],[4.53687125,0.03794674,98.37586483],[4.53687167,0.03794849,98.37502751],[4.5368721,0.03795024,98.37419153],[4.53687252,0.037952,98.37335692],[4.53687295,0.03795375,98.37252373],[4.53687337,0.0379555,98.37169197],[4.5368738,0.03795725,98.37086166],[4.53687422,0.037959,98.37003283],[4.53687465,0.03796075,98.36920549],[4.53687507,0.03796251,98.36837967],[4.53687549,0.03796426,98.36755538],[4.53687592,0.03796601,98.36673265],[4.53687635,0.03796776,98.36591149],[4.53687677,0.03796951,98.36509192],[4.5368772,0.03797127,98.36427397],[4.53687762,0.03797302,98.36345765],[4.53687805,0.03797477,98.36264298],[4.53687847,0.03797652,98.36182997],[4.5368789,0.03797827,98.3610186],[4.53687932,0.03798002,98.36020887],[4.53687975,0.03798177,98.35940077],[4.53688018,0.03798353,98.35859428],[4.5368806,0.03798528,98.35778939],[4.53688103,0.03798703,98.35698609],[4.53688145,0.03798878,98.35618438],[4.53688188,0.03799053,98.35538424],[4.53688231,0.03799228,98.35458565],[4.53688273,0.03799403,98.35378862],[4.53688316,0.03799579,98.35299312],[4.53688359,0.03799754,98.35219915],[4.53688401,0.03799929,98.35140669],[4.53688444,0.03800104,98.35061574],[4.53688487,0.03800279,98.34982628],[4.53688529,0.03800454,98.34903831],[4.53688572,0.03800629,98.34825181],[4.53688615,0.03800805,98.34746677],[4.53688657,0.0380098,98.34668318],[4.536887,0.03801155,98.34590103],[4.53688743,0.0380133,98.34512031],[4.53688785,0.03801505,98.34434101],[4.53688828,0.0380168,98.34356311],[4.53688871,0.03801855,98.34278661],[4.53688914,0.0380203,98.3420115],[4.53688956,0.03802206,98.34123775],[4.53688999,0.03802381,98.34046538],[4.53689042,0.03802556,98.33969435],[4.53689084,0.03802731,98.33892467],[4.53689127,0.03802906,98.33815632],[4.5368917,0.03803081,98.33738928],[4.53689212,0.03803256,98.33662356],[4.53689255,0.03803432,98.33585914],[4.53689298,0.03803607,98.335096],[4.5368934,0.03803782,98.33433414],[4.53689383,0.03803957,98.33357354],[4.53689426,0.03804132,98.3328142],[4.53689468,0.03804307,98.33205611],[4.53689511,0.03804482,98.33129925],[4.53689554,0.03804658,98.33054361],[4.53689596,0.03804833,98.32978918],[4.53689639,0.03805008,98.32903596],[4.53689681,0.03805183,98.32828392],[4.53689724,0.03805358,98.32753307],[4.53689767,0.03805533,98.32678338],[4.53689809,0.03805708,98.32603485],[4.53689852,0.03805884,98.32528748],[4.53689894,0.03806059,98.32454123],[4.53689937,0.03806234,98.32379612],[4.53689979,0.03806409,98.32305212],[4.53690022,0.03806584,98.32230924],[4.53690064,0.0380676,98.32156748],[4.53690107,0.03806935,98.32082689],[4.53690149,0.0380711,98.32008748],[4.53690192,0.03807285,98.31934928],[4.53690234,0.0380746,98.31861232],[4.53690277,0.03807635,98.31787662],[4.53690319,0.03807811,98.31714219],[4.53690362,0.03807986,98.31640906],[4.53690404,0.03808161,98.31567724],[4.53690446,0.03808336,98.31494675],[4.53690489,0.03808511,98.31421762],[4.53690531,0.03808687,98.31348986],[4.53690574,0.03808862,98.3127635],[4.53690616,0.03809037,98.31203854],[4.53690659,0.03809212,98.31131502],[4.53690701,0.03809388,98.31059295],[4.53690743,0.03809563,98.30987235],[4.53690786,0.03809738,98.30915324],[4.53690828,0.03809913,98.30843563],[4.5369087,0.03810088,98.30771956],[4.53690913,0.03810264,98.30700503],[4.53690955,0.03810439,98.30629208],[4.53690998,0.03810614,98.30558071],[4.5369104,0.03810789,98.30487098],[4.53691082,0.03810964,98.3041629],[4.53691125,0.0381114,98.3034565],[4.53691167,0.03811315,98.30275183],[4.5369121,0.0381149,98.3020489],[4.53691252,0.03811665,98.30134775],[4.53691294,0.0381184,98.30064841],[4.53691337,0.03812016,98.29995091],[4.53691379,0.03812191,98.29925528],[4.53691422,0.03812366,98.29856155],[4.53691464,0.03812541,98.29786975],[4.53691506,0.03812716,98.29717991],[4.53691549,0.03812892,98.29649206],[4.53691591,0.03813067,98.29580623],[4.53691634,0.03813242,98.29512246],[4.53691676,0.03813417,98.29444076],[4.53691719,0.03813592,98.29376118],[4.53691761,0.03813768,98.29308374],[4.53691804,0.03813943,98.29240848],[4.53691846,0.03814118,98.29173541],[4.53691889,0.03814293,98.29106458],[4.53691932,0.03814468,98.290396],[4.53691974,0.03814643,98.28972972],[4.53692017,0.03814819,98.28906576],[4.53692059,0.03814994,98.28840415],[4.53692102,0.03815169,98.28774492],[4.53692145,0.03815344,98.2870881],[4.53692188,0.03815519,98.28643372],[4.5369223,0.03815694,98.28578181],[4.53692273,0.03815869,98.28513239],[4.53692316,0.03816045,98.2844855],[4.53692359,0.0381622,98.28384117],[4.53692401,0.03816395,98.28319943],[4.53692444,0.0381657,98.2825603],[4.53692487,0.03816745,98.28192381],[4.5369253,0.0381692,98.28128999],[4.53692573,0.03817095,98.28065888],[4.53692616,0.0381727,98.2800305],[4.53692659,0.03817445,98.27940488],[4.53692702,0.0381762,98.27878204],[4.53692745,0.03817795,98.27816202],[4.53692788,0.0381797,98.27754485],[4.53692832,0.03818145,98.27693054],[4.53692875,0.0381832,98.27631912],[4.53692918,0.03818495,98.27571059],[4.53692961,0.0381867,98.27510496],[4.53693005,0.03818845,98.27450225],[4.53693048,0.0381902,98.27390247],[4.53693091,0.03819195,98.27330563],[4.53693135,0.0381937,98.27271174],[4.53693178,0.03819545,98.27212081],[4.53693222,0.0381972,98.27153286],[4.53693089,0.03819753,98.39653286]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-5,"level":true,"heights":[{"outer":0.15,"inner":0.025}],"roadId":"1004600","id":-5,"type":"border","predecessorId":0,"sOffset":53.8544139403}},{"geometry":{"coordinates":[[[4.53693222,0.0381972,98.24653286],[4.53693178,0.03819545,98.24712081],[4.53693135,0.0381937,98.24771174],[4.53693091,0.03819195,98.24830563],[4.53693048,0.0381902,98.24890247],[4.53693005,0.03818845,98.24950225],[4.53692961,0.0381867,98.25010496],[4.53692918,0.03818495,98.25071059],[4.53692875,0.0381832,98.25131912],[4.53692832,0.03818145,98.25193054],[4.53692788,0.0381797,98.25254485],[4.53692745,0.03817795,98.25316202],[4.53692702,0.0381762,98.25378204],[4.53692659,0.03817445,98.25440488],[4.53692616,0.0381727,98.2550305],[4.53692573,0.03817095,98.25565888],[4.5369253,0.0381692,98.25628999],[4.53692487,0.03816745,98.25692381],[4.53692444,0.0381657,98.2575603],[4.53692401,0.03816395,98.25819943],[4.53692359,0.0381622,98.25884117],[4.53692316,0.03816045,98.2594855],[4.53692273,0.03815869,98.26013239],[4.5369223,0.03815694,98.26078181],[4.53692188,0.03815519,98.26143372],[4.53692145,0.03815344,98.2620881],[4.53692102,0.03815169,98.26274492],[4.53692059,0.03814994,98.26340415],[4.53692017,0.03814819,98.26406576],[4.53691974,0.03814643,98.26472972],[4.53691932,0.03814468,98.265396],[4.53691889,0.03814293,98.26606458],[4.53691846,0.03814118,98.26673541],[4.53691804,0.03813943,98.26740848],[4.53691761,0.03813768,98.26808374],[4.53691719,0.03813592,98.26876118],[4.53691676,0.03813417,98.26944076],[4.53691634,0.03813242,98.27012246],[4.53691591,0.03813067,98.27080623],[4.53691549,0.03812892,98.27149206],[4.53691506,0.03812716,98.27217991],[4.53691464,0.03812541,98.27286975],[4.53691422,0.03812366,98.27356155],[4.53691379,0.03812191,98.27425528],[4.53691337,0.03812016,98.27495091],[4.53691294,0.0381184,98.27564841],[4.53691252,0.03811665,98.27634775],[4.5369121,0.0381149,98.2770489],[4.53691167,0.03811315,98.27775183],[4.53691125,0.0381114,98.2784565],[4.53691082,0.03810964,98.2791629],[4.5369104,0.03810789,98.27987098],[4.53690998,0.03810614,98.28058071],[4.53690955,0.03810439,98.28129208],[4.53690913,0.03810264,98.28200503],[4.5369087,0.03810088,98.28271956],[4.53690828,0.03809913,98.28343563],[4.53690786,0.03809738,98.28415324],[4.53690743,0.03809563,98.28487235],[4.53690701,0.03809388,98.28559295],[4.53690659,0.03809212,98.28631502],[4.53690616,0.03809037,98.28703854],[4.53690574,0.03808862,98.2877635],[4.53690531,0.03808687,98.28848986],[4.53690489,0.03808511,98.28921762],[4.53690446,0.03808336,98.28994675],[4.53690404,0.03808161,98.29067724],[4.53690362,0.03807986,98.29140906],[4.53690319,0.03807811,98.29214219],[4.53690277,0.03807635,98.29287662],[4.53690234,0.0380746,98.29361232],[4.53690192,0.03807285,98.29434928],[4.53690149,0.0380711,98.29508748],[4.53690107,0.03806935,98.29582689],[4.53690064,0.0380676,98.29656748],[4.53690022,0.03806584,98.29730924],[4.53689979,0.03806409,98.29805212],[4.53689937,0.03806234,98.29879612],[4.53689894,0.03806059,98.29954123],[4.53689852,0.03805884,98.30028748],[4.53689809,0.03805708,98.30103485],[4.53689767,0.03805533,98.30178338],[4.53689724,0.03805358,98.30253307],[4.53689681,0.03805183,98.30328392],[4.53689639,0.03805008,98.30403596],[4.53689596,0.03804833,98.30478918],[4.53689554,0.03804658,98.30554361],[4.53689511,0.03804482,98.30629925],[4.53689468,0.03804307,98.30705611],[4.53689426,0.03804132,98.3078142],[4.53689383,0.03803957,98.30857354],[4.5368934,0.03803782,98.30933414],[4.53689298,0.03803607,98.310096],[4.53689255,0.03803432,98.31085914],[4.53689212,0.03803256,98.31162356],[4.5368917,0.03803081,98.31238928],[4.53689127,0.03802906,98.31315632],[4.53689084,0.03802731,98.31392467],[4.53689042,0.03802556,98.31469435],[4.53688999,0.03802381,98.31546538],[4.53688956,0.03802206,98.31623775],[4.53688914,0.0380203,98.3170115],[4.53688871,0.03801855,98.31778661],[4.53688828,0.0380168,98.31856311],[4.53688785,0.03801505,98.31934101],[4.53688743,0.0380133,98.32012031],[4.536887,0.03801155,98.32090103],[4.53688657,0.0380098,98.32168318],[4.53688615,0.03800805,98.32246677],[4.53688572,0.03800629,98.32325181],[4.53688529,0.03800454,98.32403831],[4.53688487,0.03800279,98.32482628],[4.53688444,0.03800104,98.32561574],[4.53688401,0.03799929,98.32640669],[4.53688359,0.03799754,98.32719915],[4.53688316,0.03799579,98.32799312],[4.53688273,0.03799403,98.32878862],[4.53688231,0.03799228,98.32958565],[4.53688188,0.03799053,98.33038424],[4.53688145,0.03798878,98.33118438],[4.53688103,0.03798703,98.33198609],[4.5368806,0.03798528,98.33278939],[4.53688018,0.03798353,98.33359428],[4.53687975,0.03798177,98.33440077],[4.53687932,0.03798002,98.33520887],[4.5368789,0.03797827,98.3360186],[4.53687847,0.03797652,98.33682997],[4.53687805,0.03797477,98.33764298],[4.53687762,0.03797302,98.33845765],[4.5368772,0.03797127,98.33927397],[4.53687677,0.03796951,98.34009192],[4.53687635,0.03796776,98.34091149],[4.53687592,0.03796601,98.34173265],[4.53687549,0.03796426,98.34255538],[4.53687507,0.03796251,98.34337967],[4.53687465,0.03796075,98.34420549],[4.53687422,0.037959,98.34503283],[4.5368738,0.03795725,98.34586166],[4.53687337,0.0379555,98.34669197],[4.53687295,0.03795375,98.34752373],[4.53687252,0.037952,98.34835692],[4.5368721,0.03795024,98.34919153],[4.53687167,0.03794849,98.35002751],[4.53687125,0.03794674,98.35086483],[4.53687082,0.03794499,98.35170348],[4.5368704,0.03794324,98.35254341],[4.53686998,0.03794148,98.35338459],[4.53686955,0.03793973,98.354227],[4.53686913,0.03793798,98.35507061],[4.5368687,0.03793623,98.35591538],[4.53686828,0.03793448,98.35676129],[4.53686785,0.03793272,98.35760832],[4.53686743,0.03793097,98.35845645],[4.53686701,0.03792922,98.35930565],[4.53686658,0.03792747,98.3601559],[4.53686616,0.03792572,98.36100719],[4.53686573,0.03792396,98.36185948],[4.53686531,0.03792221,98.36271276],[4.53686488,0.03792046,98.36356701],[4.53686446,0.03791871,98.3644222],[4.53686403,0.03791696,98.36527832],[4.53686361,0.03791521,98.36613534],[4.53686318,0.03791345,98.36699324],[4.53686276,0.0379117,98.367852],[4.53686233,0.03790995,98.36871159],[4.53686191,0.0379082,98.369572],[4.53686148,0.03790645,98.37043321],[4.53686106,0.0379047,98.37129518],[4.53686063,0.03790294,98.37215791],[4.53686021,0.03790119,98.37302137],[4.53685978,0.03789944,98.37388554],[4.53685935,0.03789769,98.37475039],[4.53685893,0.03789594,98.37561591],[4.5368585,0.03789419,98.37648207],[4.53685807,0.03789244,98.37734886],[4.53685765,0.03789068,98.37821625],[4.53685722,0.03788893,98.37908422],[4.53685679,0.03788718,98.37995278],[4.53685637,0.03788543,98.38082193],[4.53685594,0.03788368,98.38169169],[4.53685551,0.03788193,98.38256206],[4.53685509,0.03788018,98.38343306],[4.53685466,0.03787843,98.38430468],[4.53685423,0.03787667,98.38517695],[4.5368538,0.03787492,98.38604986],[4.53685337,0.03787317,98.38692342],[4.53685295,0.03787142,98.38779765],[4.53685252,0.03786967,98.38867256],[4.53685209,0.03786792,98.38954814],[4.53685166,0.03786617,98.39042441],[4.53685123,0.03786442,98.39130138],[4.5368508,0.03786267,98.39217905],[4.53685037,0.03786092,98.39305744],[4.53684994,0.03785917,98.39393655],[4.53684952,0.03785742,98.39481639],[4.53684909,0.03785566,98.39569697],[4.53684866,0.03785391,98.3965783],[4.53684823,0.03785216,98.39746039],[4.5368478,0.03785041,98.39834323],[4.53684737,0.03784866,98.39922686],[4.53684694,0.03784691,98.40011126],[4.53684651,0.03784516,98.40099645],[4.53684608,0.03784341,98.40188244],[4.53684565,0.03784166,98.40276923],[4.53684522,0.03783991,98.40365684],[4.53684479,0.03783816,98.40454528],[4.53684436,0.03783641,98.40543454],[4.53684393,0.03783466,98.40632464],[4.5368435,0.03783291,98.40721559],[4.53684307,0.03783116,98.4081074],[4.53684264,0.03782941,98.40900007],[4.53684221,0.03782766,98.40989361],[4.53684178,0.03782591,98.41078803],[4.53684135,0.03782416,98.41168334],[4.53684092,0.0378224,98.41257955],[4.53684049,0.03782065,98.41347667],[4.53684006,0.0378189,98.41437469],[4.53683963,0.03781715,98.41527364],[4.5368392,0.0378154,98.41617352],[4.53683877,0.03781365,98.41707434],[4.53683834,0.0378119,98.4179761],[4.53683791,0.03781015,98.41887882],[4.53683748,0.0378084,98.41978251],[4.53683705,0.03780665,98.42068717],[4.53683662,0.0378049,98.42159282],[4.53683619,0.03780315,98.42249948],[4.53683576,0.0378014,98.42340716],[4.53683533,0.03779965,98.42431587],[4.5368349,0.0377979,98.42522562],[4.53683447,0.03779615,98.42613644],[4.53683404,0.0377944,98.42704832],[4.53683361,0.03779265,98.42796128],[4.53683318,0.0377909,98.42887535],[4.53683275,0.03778915,98.42979052],[4.53683232,0.0377874,98.43070681],[4.53683189,0.03778564,98.4316242],[4.53683146,0.03778389,98.43254268],[4.53683103,0.03778214,98.43346225],[4.53683061,0.03778039,98.43438289],[4.53683018,0.03777864,98.4353046],[4.53682975,0.03777689,98.43622737],[4.53682932,0.03777514,98.43715119],[4.53682889,0.03777339,98.43807604],[4.53682846,0.03777164,98.43900193],[4.53682803,0.03776989,98.43992884],[4.5368276,0.03776814,98.44085677],[4.53682717,0.03776639,98.4417857],[4.53682675,0.03776464,98.44271563],[4.53682632,0.03776289,98.44364658],[4.53682589,0.03776113,98.44457854],[4.53682546,0.03775938,98.4455115],[4.53682503,0.03775763,98.44644545],[4.5368246,0.03775588,98.44738037],[4.53682418,0.03775413,98.44831626],[4.53682375,0.03775238,98.44925311],[4.53682332,0.03775063,98.45019091],[4.53682289,0.03774888,98.45112963],[4.53682246,0.03774713,98.45206928],[4.53682204,0.03774538,98.45300984],[4.53682161,0.03774363,98.4539513],[4.53682118,0.03774187,98.45489365],[4.53682075,0.03774012,98.45583688],[4.53682033,0.03773837,98.45678097],[4.5368199,0.03773662,98.45772592],[4.53681947,0.03773487,98.45867171],[4.53681904,0.03773312,98.45961834],[4.53681862,0.03773137,98.46056579],[4.53681819,0.03772962,98.46151404],[4.53681776,0.03772787,98.4624631],[4.53681733,0.03772612,98.46341295],[4.53681691,0.03772436,98.46436358],[4.53681648,0.03772261,98.46531497],[4.53681605,0.03772086,98.46626712],[4.53681562,0.03771911,98.46722002],[4.5368152,0.03771736,98.46817364],[4.53681477,0.03771561,98.46912799],[4.53681434,0.03771386,98.47008305],[4.53681391,0.03771211,98.47103882],[4.53681349,0.03771036,98.47199527],[4.53681306,0.0377086,98.4729524],[4.53681263,0.03770685,98.47391019],[4.5368122,0.0377051,98.47486865],[4.53681178,0.03770335,98.47582775],[4.53681135,0.0377016,98.47678748],[4.53681092,0.03769985,98.47774784],[4.53681049,0.0376981,98.4787088],[4.53681007,0.03769635,98.47967038],[4.53680964,0.0376946,98.48063254],[4.53680921,0.03769285,98.48159528],[4.53680879,0.03769109,98.48255859],[4.53680836,0.03768934,98.48352246],[4.53680793,0.03768759,98.48448687],[4.5368075,0.03768584,98.48545182],[4.53680708,0.03768409,98.48641729],[4.53680665,0.03768234,98.48738328],[4.53680622,0.03768059,98.48834978],[4.53680579,0.03767884,98.48931676],[4.53680536,0.03767709,98.49028423],[4.53680494,0.03767534,98.49125216],[4.53680451,0.03767358,98.49222056],[4.53680408,0.03767183,98.4931894],[4.53680365,0.03767008,98.49415869],[4.53680323,0.03766833,98.4951284],[4.5368028,0.03766658,98.49609852],[4.53680237,0.03766483,98.49706906],[4.53680194,0.03766308,98.49803998],[4.53680151,0.03766133,98.49901129],[4.53680109,0.03765958,98.49998298],[4.53680066,0.03765783,98.50095502],[4.53680023,0.03765608,98.50192742],[4.5367998,0.03765432,98.50290016],[4.53679937,0.03765257,98.50387323],[4.53679894,0.03765082,98.50484661],[4.53679852,0.03764907,98.50582031],[4.53679809,0.03764732,98.5067943],[4.53679766,0.03764557,98.50776858],[4.53679723,0.03764382,98.50874314],[4.5367968,0.03764207,98.50971796],[4.53679637,0.03764032,98.51069304],[4.53679594,0.03763857,98.51166836],[4.53679551,0.03763682,98.51264391],[4.53679509,0.03763507,98.51361969],[4.53679466,0.03763332,98.51459568],[4.53679423,0.03763157,98.51557187],[4.5367938,0.03762982,98.51654825],[4.53679337,0.03762806,98.51752482],[4.53679294,0.03762631,98.51850155],[4.53679251,0.03762456,98.51947844],[4.53679208,0.03762281,98.52045548],[4.53679165,0.03762106,98.52143266],[4.53679122,0.03761931,98.52240999],[4.53679079,0.03761756,98.52338748],[4.53679036,0.03761581,98.52436512],[4.53678993,0.03761406,98.52534291],[4.5367895,0.03761231,98.52632087],[4.53678907,0.03761056,98.527299],[4.53678864,0.03760881,98.52827729],[4.53678821,0.03760706,98.52925576],[4.53678777,0.03760531,98.53023441],[4.53678734,0.03760356,98.53121324],[4.53678691,0.03760181,98.53219228],[4.53678648,0.03760006,98.53317151],[4.53678605,0.03759831,98.53415095],[4.53678562,0.03759656,98.53513061],[4.53678519,0.03759481,98.53611049],[4.53678476,0.03759306,98.5370906],[4.53678433,0.03759131,98.53807095],[4.53678389,0.03758956,98.53905154],[4.53678346,0.03758781,98.54003238],[4.53678303,0.03758606,98.54101348],[4.5367826,0.03758431,98.54199484],[4.53678217,0.03758256,98.54297648],[4.53678174,0.03758081,98.54395839],[4.53678131,0.03757906,98.54494059],[4.53678087,0.03757731,98.54592308],[4.53678044,0.03757556,98.54690587],[4.53678001,0.03757381,98.54788897],[4.53677958,0.03757206,98.54887237],[4.53677915,0.03757031,98.5498561],[4.53677872,0.03756856,98.55084015],[4.53677828,0.03756681,98.55182452],[4.53677785,0.03756506,98.55280921],[4.53677742,0.03756331,98.55379422],[4.53677699,0.03756156,98.55477955],[4.53677656,0.03755981,98.5557652],[4.53677612,0.03755806,98.55675116],[4.53677569,0.03755631,98.55773744],[4.53677526,0.03755456,98.55872404],[4.53677483,0.03755281,98.55971095],[4.5367744,0.03755106,98.56069817],[4.53677397,0.03754931,98.5616857],[4.53677353,0.03754756,98.56267354],[4.5367731,0.03754581,98.5636617],[4.53677267,0.03754406,98.56465016],[4.53677224,0.03754231,98.56563893],[4.53677181,0.03754056,98.56662801],[4.53677137,0.03753881,98.56761739],[4.53677094,0.03753706,98.56860708],[4.53677051,0.03753531,98.56959707],[4.53677008,0.03753356,98.57058737],[4.53676965,0.03753181,98.57157797],[4.53676921,0.03753006,98.57256887],[4.53676878,0.03752831,98.57356007],[4.53676835,0.03752656,98.57455156],[4.53676792,0.03752481,98.57554336],[4.53676749,0.03752306,98.57653545],[4.53676705,0.03752131,98.57752784],[4.53676662,0.03751956,98.57852053],[4.53676619,0.03751781,98.57951351],[4.53676576,0.03751606,98.58050678],[4.53676533,0.03751431,98.58150035],[4.5367649,0.03751256,98.5824942],[4.53676446,0.03751082,98.58348835],[4.53676403,0.03750907,98.58448278],[4.5367636,0.03750732,98.5854775],[4.53676317,0.03750557,98.58647251],[4.53676274,0.03750382,98.58746781],[4.5367623,0.03750207,98.58846339],[4.53676187,0.03750032,98.58945925],[4.53676144,0.03749857,98.5904554],[4.53676101,0.03749682,98.59145183],[4.53676058,0.03749507,98.59244854],[4.53676014,0.03749332,98.59344553],[4.53675971,0.03749157,98.5944428],[4.53675928,0.03748982,98.59544034],[4.53675885,0.03748807,98.59643817],[4.53675842,0.03748632,98.59743626],[4.53675799,0.03748457,98.59843464],[4.53675755,0.03748282,98.59943328],[4.53675712,0.03748107,98.6004322],[4.53675669,0.03747932,98.60143139],[4.53675626,0.03747757,98.60243085],[4.53675583,0.03747582,98.60343058],[4.53675539,0.03747407,98.60443058],[4.53675496,0.03747232,98.60543084],[4.53675453,0.03747057,98.60643137],[4.5367541,0.03746882,98.60743217],[4.53675367,0.03746707,98.60843323],[4.53675324,0.03746532,98.60943455],[4.5367528,0.03746357,98.61043614],[4.53675237,0.03746182,98.611438],[4.53675194,0.03746007,98.61244015],[4.53675151,0.03745832,98.6134426],[4.53675108,0.03745657,98.61444537],[4.53675065,0.03745482,98.61544848],[4.53675022,0.03745307,98.61645193],[4.53674978,0.03745132,98.61745574],[4.53674935,0.03744957,98.61845991],[4.53674892,0.03744782,98.61946444],[4.53674849,0.03744607,98.62046935],[4.53674806,0.03744432,98.62147462],[4.53674763,0.03744257,98.62248028],[4.5367472,0.03744082,98.62348632],[4.53674677,0.03743907,98.62449275],[4.53674634,0.03743732,98.62549957],[4.53674591,0.03743557,98.62650679],[4.53674547,0.03743382,98.6275144],[4.53674504,0.03743207,98.6285224],[4.53674461,0.03743032,98.62953077],[4.53674418,0.03742857,98.6305395],[4.53674375,0.03742682,98.63154855],[4.53674332,0.03742507,98.63255793],[4.53674289,0.03742332,98.6335676],[4.53674246,0.03742157,98.63457756],[4.53674203,0.03741982,98.63558778],[4.5367416,0.03741807,98.63659826],[4.53674117,0.03741632,98.63760897],[4.53674074,0.03741457,98.63861989],[4.53674031,0.03741282,98.63963103],[4.53673988,0.03741107,98.64064237],[4.53673945,0.03740932,98.64165391],[4.53673902,0.03740757,98.64266564],[4.53673859,0.03740582,98.64367755],[4.53673816,0.03740407,98.64468965],[4.53673773,0.03740232,98.64570191],[4.5367373,0.03740057,98.64671435],[4.53673687,0.03739882,98.64772695],[4.53673644,0.03739707,98.6487397],[4.53673601,0.03739532,98.64975259],[4.53673558,0.03739357,98.65076564],[4.53673515,0.03739182,98.65177881],[4.53673473,0.03739007,98.65279212],[4.5367343,0.03738832,98.65380555],[4.53673387,0.03738657,98.6548191],[4.53673344,0.03738481,98.65583276],[4.53673301,0.03738306,98.65684653],[4.53673258,0.03738131,98.6578604],[4.53673215,0.03737956,98.65887435],[4.53673172,0.03737781,98.6598884],[4.53673129,0.03737606,98.66090251],[4.53673086,0.03737431,98.66191667],[4.53673043,0.03737256,98.66293088],[4.53673,0.03737081,98.6639451],[4.53672957,0.03736906,98.66495932],[4.53672914,0.03736731,98.66597354],[4.53672871,0.03736556,98.66698772],[4.53672828,0.03736381,98.66800187],[4.53672785,0.03736206,98.66901595],[4.53672742,0.03736031,98.67002996],[4.53672699,0.03735856,98.67104388],[4.53672656,0.03735681,98.67205769],[4.53672613,0.03735506,98.67307138],[4.5367257,0.03735331,98.67408493],[4.53672527,0.03735156,98.67509833],[4.53672484,0.03734981,98.67611155],[4.53672441,0.03734806,98.67712459],[4.53672398,0.03734631,98.67813743],[4.53672355,0.03734456,98.67915005],[4.53672312,0.03734281,98.68016244],[4.53672269,0.03734106,98.68117457],[4.53672226,0.03733931,98.68218645],[4.53672183,0.03733756,98.68319804],[4.5367214,0.03733581,98.68420934],[4.53672097,0.03733406,98.68522032],[4.53672053,0.03733231,98.68623099],[4.5367201,0.03733056,98.68724134],[4.53671967,0.03732881,98.68825137],[4.53671924,0.03732706,98.68926109],[4.53671881,0.03732531,98.69027051],[4.53671838,0.03732356,98.69127961],[4.53671795,0.03732181,98.6922884],[4.53671751,0.03732006,98.6932969],[4.53671708,0.03731831,98.69430508],[4.53671665,0.03731656,98.69531297],[4.53671622,0.03731481,98.69632056],[4.53671579,0.03731306,98.69732785],[4.53671535,0.03731131,98.69833485],[4.53671492,0.03730956,98.69934155],[4.53671449,0.03730781,98.70034796],[4.53671406,0.03730606,98.70135409],[4.53671362,0.03730431,98.70235992],[4.53671319,0.03730256,98.70336547],[4.53671276,0.03730081,98.70437074],[4.53671232,0.03729906,98.70537572],[4.53671189,0.03729731,98.70638043],[4.53671146,0.03729556,98.70738485],[4.53671103,0.03729381,98.708389],[4.53671059,0.03729206,98.70939288],[4.53671016,0.03729031,98.71039648],[4.53670973,0.03728857,98.71139982],[4.53670929,0.03728682,98.71240288],[4.53670886,0.03728507,98.71340568],[4.53670843,0.03728332,98.71440821],[4.53670799,0.03728157,98.71541048],[4.53670756,0.03727982,98.71641249],[4.53670712,0.03727807,98.71741424],[4.53670669,0.03727632,98.71841574],[4.53670626,0.03727457,98.71941698],[4.53670582,0.03727282,98.72041798],[4.53670539,0.03727107,98.72141873],[4.53670496,0.03726932,98.72241923],[4.53670452,0.03726757,98.7234195],[4.53670409,0.03726582,98.72441953],[4.53670365,0.03726407,98.72541932],[4.53670322,0.03726233,98.72641889],[4.53670278,0.03726058,98.72741822],[4.53670235,0.03725883,98.72841733],[4.53670192,0.03725708,98.72941622],[4.53670148,0.03725533,98.73041488],[4.53670105,0.03725358,98.73141333],[4.53670061,0.03725183,98.73241157],[4.53670018,0.03725008,98.73340959],[4.53669974,0.03724833,98.7344074],[4.53669931,0.03724658,98.73540501],[4.53669888,0.03724483,98.73640242],[4.53669844,0.03724308,98.73739962],[4.53669801,0.03724134,98.73839663],[4.53669757,0.03723959,98.73939345],[4.53669714,0.03723784,98.74039007],[4.5366967,0.03723609,98.7413865],[4.53669627,0.03723434,98.74238275],[4.53669583,0.03723259,98.74337883],[4.5366954,0.03723084,98.74437476],[4.53669496,0.03722909,98.74537057],[4.53669453,0.03722734,98.74636628],[4.5366941,0.03722559,98.74736193],[4.53669366,0.03722384,98.74835753],[4.53669323,0.03722209,98.7493531],[4.53669279,0.03722035,98.75034868],[4.53669236,0.0372186,98.75134426],[4.53669192,0.03721685,98.75233986],[4.53669149,0.0372151,98.75333545],[4.53669106,0.03721335,98.75433101],[4.53669062,0.0372116,98.75532654],[4.53669019,0.03720985,98.75632202],[4.53668975,0.0372081,98.75731743],[4.53668932,0.03720635,98.75831277],[4.53668889,0.0372046,98.759308],[4.53668845,0.03720285,98.76030313],[4.53668802,0.0372011,98.76129814],[4.53668758,0.03719935,98.762293],[4.53668715,0.0371976,98.76328772],[4.53668672,0.03719586,98.76428227],[4.53668628,0.03719411,98.76527663],[4.53668585,0.03719236,98.76627081],[4.53668542,0.03719061,98.76726477],[4.53668498,0.03718886,98.76825851],[4.53668455,0.03718711,98.76925201],[4.53668411,0.03718536,98.77024525],[4.53668368,0.03718361,98.77123823],[4.53668325,0.03718186,98.77223093],[4.53668281,0.03718011,98.77322333],[4.53668238,0.03717836,98.77421543],[4.53668195,0.03717661,98.77520719],[4.53668151,0.03717486,98.77619862],[4.53668108,0.03717311,98.7771897],[4.53668064,0.03717136,98.77818041],[4.53668021,0.03716962,98.77917074],[4.53667978,0.03716787,98.78016067],[4.53667934,0.03716612,98.78115019],[4.53667891,0.03716437,98.78213929],[4.53667847,0.03716262,98.78312795],[4.53667804,0.03716087,98.78411616],[4.5366776,0.03715912,98.7851039],[4.53667717,0.03715737,98.78609116],[4.53667674,0.03715562,98.78707793],[4.5366763,0.03715387,98.78806419],[4.53667587,0.03715212,98.78904992],[4.53667543,0.03715037,98.79003511],[4.536675,0.03714863,98.79101976],[4.53667456,0.03714688,98.79200383],[4.53667413,0.03714513,98.79298733],[4.53667369,0.03714338,98.79397024],[4.53667326,0.03714163,98.79495261],[4.53667282,0.03713988,98.79593447],[4.53667238,0.03713813,98.79691587],[4.53667195,0.03713638,98.79789686],[4.53667151,0.03713463,98.79887748],[4.53667108,0.03713288,98.79985776],[4.53667064,0.03713114,98.80083773],[4.53667021,0.03712939,98.80181737],[4.53666977,0.03712764,98.8027967],[4.53666934,0.03712589,98.8037757],[4.5366689,0.03712414,98.80475438],[4.53666847,0.03712239,98.80573275],[4.53666803,0.03712064,98.8067108],[4.53666759,0.03711889,98.80768853],[4.53666716,0.03711714,98.80866595],[4.53666672,0.0371154,98.80964305],[4.53666629,0.03711365,98.81061984],[4.53666585,0.0371119,98.81159631],[4.53666542,0.03711015,98.81257247],[4.53666498,0.0371084,98.81354832],[4.53666455,0.03710665,98.81452387],[4.53666411,0.0371049,98.8154991],[4.53666368,0.03710315,98.81647402],[4.53666324,0.0371014,98.81744863],[4.53666281,0.03709966,98.81842294],[4.53666237,0.03709791,98.81939694],[4.53666194,0.03709616,98.82037064],[4.5366615,0.03709441,98.82134403],[4.53666106,0.03709266,98.82231712],[4.53666063,0.03709091,98.82328991],[4.53666019,0.03708916,98.82426239],[4.53665976,0.03708741,98.82523457],[4.53665932,0.03708566,98.82620645],[4.53665889,0.03708391,98.82717804],[4.53665845,0.03708217,98.82814932],[4.53665802,0.03708042,98.82912031],[4.53665758,0.03707867,98.830091],[4.53665715,0.03707692,98.8310614],[4.53665671,0.03707517,98.8320315],[4.53665628,0.03707342,98.8330013],[4.53665584,0.03707167,98.83397082],[4.53665541,0.03706992,98.83494004],[4.53665498,0.03706817,98.83590897],[4.53665454,0.03706642,98.83687762],[4.53665411,0.03706467,98.83784598],[4.53665367,0.03706293,98.83881405],[4.53665324,0.03706118,98.83978184],[4.5366528,0.03705943,98.84074935],[4.53665237,0.03705768,98.84171657],[4.53665193,0.03705593,98.84268352],[4.5366515,0.03705418,98.84365019],[4.53665106,0.03705243,98.84461659],[4.53665063,0.03705068,98.84558271],[4.5366502,0.03704893,98.84654855],[4.53664976,0.03704718,98.84751413],[4.53664933,0.03704543,98.84847943],[4.53664889,0.03704368,98.84944447],[4.53664846,0.03704193,98.85040923],[4.53664803,0.03704019,98.85137368],[4.53664759,0.03703844,98.85233777],[4.53664716,0.03703669,98.85330146],[4.53664672,0.03703494,98.85426471],[4.53664629,0.03703319,98.85522746],[4.53664586,0.03703144,98.85618968],[4.53664542,0.03702969,98.85715131],[4.53664499,0.03702794,98.85811232],[4.53664455,0.03702619,98.85907267],[4.53664412,0.03702444,98.86003235],[4.53664369,0.03702269,98.86099136],[4.53664325,0.03702094,98.86194971],[4.53664282,0.03701919,98.86290739],[4.53664238,0.03701744,98.86386443],[4.53664195,0.0370157,98.8648208],[4.53664151,0.03701395,98.86577654],[4.53664108,0.0370122,98.86673162],[4.53664064,0.03701045,98.86768607],[4.53664021,0.0370087,98.86863989],[4.53663978,0.03700695,98.86959307],[4.53663934,0.0370052,98.87054563],[4.53663891,0.03700345,98.87149757],[4.53663847,0.0370017,98.87244888],[4.53663804,0.03699995,98.87339959],[4.5366376,0.0369982,98.87434968],[4.53663717,0.03699646,98.87529917],[4.53663673,0.03699471,98.87624805],[4.5366363,0.03699296,98.87719634],[4.53663586,0.03699121,98.87814404],[4.53663543,0.03698946,98.87909115],[4.53663499,0.03698771,98.88003767],[4.53663455,0.03698596,98.88098362],[4.53663412,0.03698421,98.88192898],[4.53663368,0.03698246,98.88287378],[4.53663325,0.03698071,98.883818],[4.53663281,0.03697897,98.88476167],[4.53663238,0.03697722,98.88570477],[4.53663194,0.03697547,98.88664731],[4.53663151,0.03697372,98.88758927],[4.53663107,0.03697197,98.88853067],[4.53663064,0.03697022,98.8894715],[4.5366302,0.03696847,98.89041176],[4.53662977,0.03696672,98.89135144],[4.53662933,0.03696497,98.89229054],[4.53662889,0.03696323,98.89322906],[4.53662846,0.03696148,98.894167],[4.53662802,0.03695973,98.89510435],[4.53662759,0.03695798,98.89604112],[4.53662715,0.03695623,98.8969773],[4.53662672,0.03695448,98.89791289],[4.53662628,0.03695273,98.89884788],[4.53662585,0.03695098,98.89978228],[4.53662541,0.03694923,98.90071609],[4.53662497,0.03694749,98.90164929],[4.53662454,0.03694574,98.90258189],[4.5366241,0.03694399,98.90351389],[4.53662367,0.03694224,98.90444527],[4.53662323,0.03694049,98.90537606],[4.5366228,0.03693874,98.90630623],[4.53662236,0.03693699,98.90723579],[4.53662192,0.03693524,98.90816473],[4.53662149,0.03693349,98.90909305],[4.53662105,0.03693175,98.91002076],[4.53662062,0.03693,98.91094784],[4.53662018,0.03692825,98.91187431],[4.53661975,0.0369265,98.91280014],[4.53661931,0.03692475,98.91372535],[4.53661887,0.036923,98.91464992],[4.53661844,0.03692125,98.91557387],[4.536618,0.0369195,98.91649718],[4.53661757,0.03691775,98.91741985],[4.53661713,0.03691601,98.91834188],[4.53661669,0.03691426,98.91926328],[4.53661626,0.03691251,98.92018403],[4.53661582,0.03691076,98.92110413],[4.53661539,0.03690901,98.92202359],[4.53661495,0.03690726,98.92294239],[4.53661451,0.03690551,98.92386055],[4.53661408,0.03690376,98.92477805],[4.53661364,0.03690202,98.92569489],[4.53661321,0.03690027,98.92661107],[4.53661277,0.03689852,98.9275266],[4.53661233,0.03689677,98.92844146],[4.5366119,0.03689502,98.92935566],[4.53661146,0.03689327,98.93026918],[4.53661103,0.03689152,98.93118204],[4.53661059,0.03688977,98.93209423],[4.53661015,0.03688803,98.93300574],[4.53660972,0.03688628,98.93391653],[4.53660928,0.03688453,98.93482656],[4.53660884,0.03688278,98.93573579],[4.53660841,0.03688103,98.93664418],[4.53660797,0.03687928,98.93755168],[4.53660753,0.03687753,98.93845825],[4.5366071,0.03687578,98.93936385],[4.53660666,0.03687404,98.94026843],[4.53660622,0.03687229,98.94117196],[4.53660579,0.03687054,98.94207439],[4.53660535,0.03686879,98.94297568],[4.53660491,0.03686704,98.94387584],[4.53660447,0.03686529,98.94477486],[4.53660404,0.03686355,98.94567276],[4.5366036,0.0368618,98.94656954],[4.53660316,0.03686005,98.94746521],[4.53660272,0.0368583,98.94835977],[4.53660228,0.03685655,98.94925324],[4.53660184,0.0368548,98.9501456],[4.5366014,0.03685306,98.95103688],[4.53660097,0.03685131,98.95192708],[4.53660053,0.03684956,98.9528162],[4.53660009,0.03684781,98.95370425],[4.53659965,0.03684606,98.95459124],[4.53659921,0.03684432,98.95547718],[4.53659877,0.03684257,98.95636207],[4.53659833,0.03684082,98.95724592],[4.53659789,0.03683907,98.95812875],[4.53659745,0.03683733,98.95901056],[4.53659701,0.03683558,98.95989137],[4.53659657,0.03683383,98.96077117],[4.53659613,0.03683208,98.96164999],[4.53659569,0.03683033,98.96252783],[4.53659525,0.03682859,98.96340469],[4.53659481,0.03682684,98.9642806],[4.53659436,0.03682509,98.96515555],[4.53659392,0.03682334,98.96602956],[4.53659348,0.0368216,98.96690264],[4.53659304,0.03681985,98.9677748],[4.5365926,0.0368181,98.96864606],[4.53659216,0.03681635,98.96951645],[4.53659172,0.03681461,98.97038599],[4.53659128,0.03681286,98.9712547],[4.53659084,0.03681111,98.9721226],[4.53659039,0.03680936,98.97298972],[4.53658995,0.03680762,98.97385607],[4.53658951,0.03680587,98.97472167],[4.53658907,0.03680412,98.97558656],[4.53658863,0.03680237,98.97645075],[4.53658819,0.03680063,98.97731426],[4.53658775,0.03679888,98.97817712],[4.53658731,0.03679713,98.97903935],[4.53658686,0.03679538,98.97990097],[4.53658642,0.03679364,98.98076199],[4.53658598,0.03679189,98.98162241],[4.53658554,0.03679014,98.9824822],[4.5365851,0.03678839,98.98334135],[4.53658466,0.03678665,98.98419983],[4.53658422,0.0367849,98.98505763],[4.53658378,0.03678315,98.98591472],[4.53658334,0.0367814,98.9867711],[4.5365829,0.03677966,98.98762673],[4.53658245,0.03677791,98.9884816],[4.53658201,0.03677616,98.98933568],[4.53658157,0.03677441,98.99018897],[4.53658113,0.03677267,98.99104145],[4.53658069,0.03677092,98.99189311],[4.53658025,0.03676917,98.99274398],[4.53657981,0.03676742,98.99359407],[4.53657937,0.03676568,98.99444338],[4.53657893,0.03676393,98.99529194],[4.53657849,0.03676218,98.99613975],[4.53657804,0.03676043,98.99698682],[4.5365776,0.03675869,98.99783317],[4.53657716,0.03675694,98.99867881],[4.53657672,0.03675519,98.99952375],[4.53657628,0.03675344,99.00036798],[4.53657584,0.0367517,99.00121149],[4.5365754,0.03674995,99.00205427],[4.53657496,0.0367482,99.0028963],[4.53657452,0.03674645,99.00373757],[4.53657408,0.03674471,99.00457807],[4.53657364,0.03674296,99.00541778],[4.53657319,0.03674121,99.00625668],[4.53657275,0.03673946,99.00709478],[4.53657231,0.03673771,99.00793204],[4.53657187,0.03673597,99.00876846],[4.53657143,0.03673422,99.00960403],[4.53657099,0.03673247,99.01043872],[4.53657055,0.03673072,99.01127254],[4.53657011,0.03672898,99.01210547],[4.53656967,0.03672723,99.0129375],[4.53656923,0.03672548,99.01376863],[4.53656879,0.03672373,99.01459883],[4.53656834,0.03672199,99.01542811],[4.5365679,0.03672024,99.01625646],[4.53656746,0.03671849,99.01708385],[4.53656702,0.03671674,99.01791029],[4.53656658,0.036715,99.01873577],[4.53656614,0.03671325,99.01956027],[4.5365657,0.0367115,99.02038379],[4.53656526,0.03670975,99.02120631],[4.53656481,0.03670801,99.02202783],[4.53656437,0.03670626,99.02284833],[4.53656393,0.03670451,99.02366781],[4.53656349,0.03670276,99.02448626],[4.53656305,0.03670102,99.02530366],[4.53656261,0.03669927,99.02612002],[4.53656216,0.03669752,99.02693531],[4.53656172,0.03669578,99.02774952],[4.53656128,0.03669403,99.02856266],[4.53656084,0.03669228,99.0293747],[4.5365604,0.03669053,99.03018564],[4.53655995,0.03668879,99.03099547],[4.53655951,0.03668704,99.03180418],[4.53655907,0.03668529,99.03261176],[4.53655863,0.03668354,99.03341819],[4.53655818,0.0366818,99.03422348],[4.53655774,0.03668005,99.0350276],[4.5365573,0.0366783,99.03583055],[4.53655685,0.03667656,99.03663232],[4.53655641,0.03667481,99.0374329],[4.53655597,0.03667306,99.03823226],[4.53655553,0.03667132,99.03903042],[4.53655508,0.03666957,99.03982734],[4.53655464,0.03666782,99.04062303],[4.53655419,0.03666607,99.04141746],[4.53655375,0.03666433,99.04221063],[4.53655331,0.03666258,99.04300253],[4.53655286,0.03666083,99.04379314],[4.53655242,0.03665909,99.04458246],[4.53655197,0.03665734,99.04537048],[4.53655153,0.03665559,99.04615723],[4.53655109,0.03665385,99.04694272],[4.53655064,0.0366521,99.04772699],[4.5365502,0.03665035,99.04851005],[4.53654975,0.03664861,99.04929194],[4.53654931,0.03664686,99.05007266],[4.53654886,0.03664511,99.05085226],[4.53654842,0.03664337,99.05163075],[4.53654797,0.03664162,99.05240818],[4.53654753,0.03663988,99.05318456],[4.53654708,0.03663813,99.05395994],[4.53654663,0.03663638,99.05473435],[4.53654619,0.03663464,99.05550782],[4.53654574,0.03663289,99.05628038],[4.5365453,0.03663114,99.05705206],[4.53654485,0.0366294,99.05782288],[4.53654441,0.03662765,99.05859286],[4.53654396,0.0366259,99.059362],[4.53654352,0.03662416,99.06013032],[4.53654307,0.03662241,99.06089784],[4.53654263,0.03662066,99.06166458],[4.53654218,0.03661892,99.06243055],[4.53654174,0.03661717,99.06319578],[4.53654129,0.03661542,99.0639603],[4.53654085,0.03661368,99.06472411],[4.53654041,0.03661193,99.06548726],[4.53653996,0.03661018,99.06624974],[4.53653952,0.03660844,99.06701155],[4.53653907,0.03660669,99.06777269],[4.53653863,0.03660494,99.06853316],[4.53653818,0.0366032,99.06929295],[4.53653774,0.03660145,99.07005206],[4.5365373,0.0365997,99.07081048],[4.53653685,0.03659796,99.07156822],[4.53653641,0.03659621,99.07232527],[4.53653596,0.03659446,99.07308162],[4.53653552,0.03659272,99.07383727],[4.53653508,0.03659097,99.07459222],[4.53653463,0.03658922,99.07534647],[4.53653419,0.03658748,99.0761],[4.53653374,0.03658573,99.07685283],[4.5365333,0.03658398,99.07760494],[4.53653286,0.03658224,99.07835632],[4.53653241,0.03658049,99.07910699],[4.53653197,0.03657874,99.07985692],[4.53653153,0.03657699,99.08060613],[4.53653108,0.03657525,99.0813546],[4.53653064,0.0365735,99.08210233],[4.5365302,0.03657175,99.08284932],[4.53652975,0.03657001,99.08359557],[4.53652931,0.03656826,99.08434106],[4.53652887,0.03656651,99.0850858],[4.53652842,0.03656477,99.08582979],[4.53652798,0.03656302,99.08657301],[4.53652754,0.03656127,99.08731547],[4.53652709,0.03655953,99.08805715],[4.53652665,0.03655778,99.08879807],[4.5365262,0.03655603,99.0895382],[4.53652576,0.03655428,99.09027756],[4.53652532,0.03655254,99.09101613],[4.53652487,0.03655079,99.09175391],[4.53652443,0.03654904,99.0924909],[4.53652399,0.0365473,99.09322709],[4.53652354,0.03654555,99.09396248],[4.5365231,0.0365438,99.09469706],[4.53652266,0.03654206,99.09543084],[4.53652221,0.03654031,99.0961638],[4.53652177,0.03653856,99.09689594],[4.53652132,0.03653682,99.09762726],[4.53652088,0.03653507,99.09835775],[4.53652044,0.03653332,99.09908741],[4.53651999,0.03653158,99.09981624],[4.53651955,0.03652983,99.10054423],[4.5365191,0.03652808,99.10127137],[4.53651866,0.03652633,99.10199767],[4.53651822,0.03652459,99.10272311],[4.53651777,0.03652284,99.10344769],[4.53651733,0.03652109,99.10417142],[4.53651688,0.03651935,99.10489427],[4.53651644,0.0365176,99.10561626],[4.53651599,0.03651585,99.10633737],[4.53651555,0.03651411,99.1070576],[4.5365151,0.03651236,99.10777695],[4.53651466,0.03651061,99.1084954],[4.53651421,0.03650887,99.10921297],[4.53651377,0.03650712,99.10992963],[4.53651332,0.03650538,99.1106454],[4.53651288,0.03650363,99.11136025],[4.53651243,0.03650188,99.11207419],[4.53651199,0.03650014,99.11278722],[4.53651154,0.03649839,99.11349932],[4.5365111,0.03649664,99.11421049],[4.53651091,0.0364959,99.11451101],[4.53651394,0.03649512,99.12393018],[4.53651413,0.03649586,99.12362702],[4.53651458,0.03649761,99.12290962],[4.53651502,0.03649935,99.1221913],[4.53651547,0.0365011,99.12147206],[4.53651591,0.03650285,99.12075192],[4.53651636,0.03650459,99.12003087],[4.53651681,0.03650634,99.11930893],[4.53651725,0.03650809,99.11858609],[4.5365177,0.03650983,99.11786237],[4.53651814,0.03651158,99.11713776],[4.53651859,0.03651333,99.11641227],[4.53651903,0.03651507,99.11568591],[4.53651947,0.03651682,99.11495869],[4.53651992,0.03651857,99.1142306],[4.53652036,0.03652031,99.11350165],[4.53652081,0.03652206,99.11277185],[4.53652125,0.03652381,99.1120412],[4.5365217,0.03652555,99.1113097],[4.53652214,0.0365273,99.11057737],[4.53652259,0.03652905,99.1098442],[4.53652303,0.03653079,99.1091102],[4.53652347,0.03653254,99.10837537],[4.53652392,0.03653429,99.10763973],[4.53652436,0.03653603,99.10690327],[4.53652481,0.03653778,99.10616599],[4.53652525,0.03653953,99.10542791],[4.53652569,0.03654127,99.10468903],[4.53652614,0.03654302,99.10394935],[4.53652658,0.03654477,99.10320888],[4.53652702,0.03654652,99.10246761],[4.53652747,0.03654826,99.10172557],[4.53652791,0.03655001,99.10098274],[4.53652835,0.03655176,99.10023913],[4.5365288,0.0365535,99.09949476],[4.53652924,0.03655525,99.09874962],[4.53652969,0.036557,99.09800371],[4.53653013,0.03655874,99.09725705],[4.53653057,0.03656049,99.09650963],[4.53653102,0.03656224,99.09576146],[4.53653146,0.03656398,99.09501255],[4.5365319,0.03656573,99.09426289],[4.53653235,0.03656748,99.0935125],[4.53653279,0.03656923,99.09276137],[4.53653323,0.03657097,99.09200952],[4.53653368,0.03657272,99.09125694],[4.53653412,0.03657447,99.09050364],[4.53653456,0.03657621,99.08974962],[4.53653501,0.03657796,99.08899488],[4.53653545,0.03657971,99.08823944],[4.53653589,0.03658145,99.0874833],[4.53653634,0.0365832,99.08672645],[4.53653678,0.03658495,99.08596891],[4.53653723,0.0365867,99.08521067],[4.53653767,0.03658844,99.08445175],[4.53653811,0.03659019,99.08369213],[4.53653856,0.03659194,99.08293184],[4.536539,0.03659368,99.08217087],[4.53653944,0.03659543,99.08140923],[4.53653989,0.03659718,99.08064691],[4.53654033,0.03659892,99.07988393],[4.53654078,0.03660067,99.07912029],[4.53654122,0.03660242,99.07835599],[4.53654166,0.03660416,99.07759103],[4.53654211,0.03660591,99.07682543],[4.53654255,0.03660766,99.07605917],[4.536543,0.0366094,99.07529228],[4.53654344,0.03661115,99.07452474],[4.53654389,0.0366129,99.07375656],[4.53654433,0.03661464,99.07298774],[4.53654478,0.03661639,99.07221826],[4.53654522,0.03661814,99.07144808],[4.53654567,0.03661988,99.07067719],[4.53654611,0.03662163,99.06990556],[4.53654656,0.03662338,99.06913318],[4.536547,0.03662512,99.06836003],[4.53654745,0.03662687,99.06758608],[4.53654789,0.03662862,99.06681134],[4.53654834,0.03663036,99.06603578],[4.53654878,0.03663211,99.06525938],[4.53654923,0.03663386,99.06448214],[4.53654967,0.0366356,99.06370401],[4.53655012,0.03663735,99.06292498],[4.53655056,0.0366391,99.062145],[4.53655101,0.03664084,99.06136404],[4.53655145,0.03664259,99.06058207],[4.5365519,0.03664434,99.05979907],[4.53655234,0.03664608,99.05901499],[4.53655279,0.03664783,99.05822981],[4.53655323,0.03664958,99.0574435],[4.53655368,0.03665132,99.05665604],[4.53655412,0.03665307,99.0558674],[4.53655457,0.03665482,99.05507757],[4.53655501,0.03665656,99.05428651],[4.53655546,0.03665831,99.0534942],[4.5365559,0.03666006,99.05270063],[4.53655634,0.0366618,99.05190579],[4.53655679,0.03666355,99.05110969],[4.53655723,0.0366653,99.05031234],[4.53655768,0.03666704,99.04951376],[4.53655812,0.03666879,99.04871396],[4.53655856,0.03667054,99.04791295],[4.53655901,0.03667228,99.04711074],[4.53655945,0.03667403,99.04630733],[4.53655989,0.03667578,99.04550275],[4.53656034,0.03667752,99.04469701],[4.53656078,0.03667927,99.04389011],[4.53656122,0.03668102,99.04308206],[4.53656166,0.03668277,99.04227288],[4.53656211,0.03668451,99.04146258],[4.53656255,0.03668626,99.04065116],[4.53656299,0.03668801,99.03983864],[4.53656343,0.03668976,99.03902502],[4.53656388,0.0366915,99.03821032],[4.53656432,0.03669325,99.03739454],[4.53656476,0.036695,99.0365777],[4.5365652,0.03669674,99.03575981],[4.53656564,0.03669849,99.03494087],[4.53656609,0.03670024,99.03412089],[4.53656653,0.03670199,99.03329989],[4.53656697,0.03670373,99.03247787],[4.53656741,0.03670548,99.03165485],[4.53656785,0.03670723,99.03083083],[4.53656829,0.03670898,99.03000582],[4.53656874,0.03671072,99.02917983],[4.53656918,0.03671247,99.02835288],[4.53656962,0.03671422,99.02752497],[4.53657006,0.03671597,99.02669611],[4.5365705,0.03671771,99.02586631],[4.53657094,0.03671946,99.02503558],[4.53657138,0.03672121,99.02420393],[4.53657182,0.03672296,99.02337137],[4.53657226,0.0367247,99.02253791],[4.53657271,0.03672645,99.02170356],[4.53657315,0.0367282,99.02086833],[4.53657359,0.03672995,99.02003222],[4.53657403,0.03673169,99.01919526],[4.53657447,0.03673344,99.01835743],[4.53657491,0.03673519,99.01751877],[4.53657535,0.03673694,99.01667928],[4.53657579,0.03673869,99.01583897],[4.53657623,0.03674043,99.01499785],[4.53657667,0.03674218,99.01415595],[4.53657711,0.03674393,99.01331327],[4.53657756,0.03674568,99.01246983],[4.536578,0.03674742,99.01162564],[4.53657844,0.03674917,99.01078072],[4.53657888,0.03675092,99.00993507],[4.53657932,0.03675267,99.00908872],[4.53657976,0.03675441,99.00824167],[4.5365802,0.03675616,99.00739394],[4.53658064,0.03675791,99.00654553],[4.53658108,0.03675966,99.00569644],[4.53658152,0.0367614,99.00484665],[4.53658196,0.03676315,99.00399615],[4.53658241,0.0367649,99.00314492],[4.53658285,0.03676665,99.00229296],[4.53658329,0.03676839,99.00144026],[4.53658373,0.03677014,99.00058679],[4.53658417,0.03677189,98.99973256],[4.53658461,0.03677364,98.99887754],[4.53658505,0.03677538,98.99802173],[4.53658549,0.03677713,98.99716515],[4.53658593,0.03677888,98.99630781],[4.53658637,0.03678063,98.99544973],[4.53658682,0.03678238,98.99459094],[4.53658726,0.03678412,98.99373145],[4.5365877,0.03678587,98.99287127],[4.53658814,0.03678762,98.99201044],[4.53658858,0.03678937,98.99114897],[4.53658902,0.03679111,98.99028688],[4.53658946,0.03679286,98.98942418],[4.5365899,0.03679461,98.9885609],[4.53659034,0.03679636,98.98769705],[4.53659079,0.0367981,98.98683262],[4.53659123,0.03679985,98.98596758],[4.53659167,0.0368016,98.98510191],[4.53659211,0.03680335,98.98423558],[4.53659255,0.03680509,98.98336858],[4.53659299,0.03680684,98.98250089],[4.53659343,0.03680859,98.98163247],[4.53659387,0.03681034,98.98076332],[4.53659432,0.03681208,98.9798934],[4.53659476,0.03681383,98.97902269],[4.5365952,0.03681558,98.97815118],[4.53659564,0.03681733,98.97727885],[4.53659608,0.03681907,98.97640566],[4.53659652,0.03682082,98.97553159],[4.53659696,0.03682257,98.97465664],[4.5365974,0.03682432,98.97378077],[4.53659784,0.03682606,98.97290398],[4.53659829,0.03682781,98.97202627],[4.53659873,0.03682956,98.97114761],[4.53659917,0.03683131,98.97026801],[4.53659961,0.03683305,98.96938745],[4.53660005,0.0368348,98.96850593],[4.53660049,0.03683655,98.96762343],[4.53660093,0.0368383,98.96673994],[4.53660137,0.03684005,98.96585546],[4.53660181,0.03684179,98.96496998],[4.53660225,0.03684354,98.96408348],[4.53660269,0.03684529,98.96319596],[4.53660313,0.03684704,98.96230741],[4.53660357,0.03684879,98.96141782],[4.536604,0.03685053,98.96052718],[4.53660444,0.03685228,98.95963549],[4.53660488,0.03685403,98.95874273],[4.53660532,0.03685578,98.95784891],[4.53660576,0.03685753,98.95695402],[4.5366062,0.03685927,98.95605805],[4.53660664,0.03686102,98.95516099],[4.53660707,0.03686277,98.95426285],[4.53660751,0.03686452,98.95336361],[4.53660795,0.03686627,98.95246326],[4.53660839,0.03686802,98.9515618],[4.53660883,0.03686976,98.95065923],[4.53660926,0.03687151,98.94975555],[4.5366097,0.03687326,98.94885079],[4.53661014,0.03687501,98.94794499],[4.53661057,0.03687676,98.9470382],[4.53661101,0.03687851,98.94613046],[4.53661145,0.03688026,98.9452218],[4.53661188,0.03688201,98.94431229],[4.53661232,0.03688375,98.94340195],[4.53661276,0.0368855,98.94249083],[4.53661319,0.03688725,98.94157897],[4.53661363,0.036889,98.94066642],[4.53661406,0.03689075,98.93975321],[4.5366145,0.0368925,98.93883935],[4.53661494,0.03689425,98.93792484],[4.53661537,0.036896,98.93700968],[4.53661581,0.03689774,98.93609388],[4.53661625,0.03689949,98.93517743],[4.53661668,0.03690124,98.93426035],[4.53661712,0.03690299,98.93334262],[4.53661755,0.03690474,98.93242426],[4.53661799,0.03690649,98.93150527],[4.53661843,0.03690824,98.93058565],[4.53661886,0.03690999,98.92966539],[4.5366193,0.03691173,98.92874451],[4.53661973,0.03691348,98.927823],[4.53662017,0.03691523,98.92690087],[4.53662061,0.03691698,98.92597812],[4.53662104,0.03691873,98.92505475],[4.53662148,0.03692048,98.92413076],[4.53662191,0.03692223,98.92320616],[4.53662235,0.03692398,98.92228095],[4.53662279,0.03692573,98.92135512],[4.53662322,0.03692747,98.92042869],[4.53662366,0.03692922,98.91950165],[4.53662409,0.03693097,98.918574],[4.53662453,0.03693272,98.91764576],[4.53662496,0.03693447,98.91671691],[4.5366254,0.03693622,98.91578747],[4.53662584,0.03693797,98.91485743],[4.53662627,0.03693972,98.91392679],[4.53662671,0.03694147,98.91299557],[4.53662714,0.03694321,98.91206376],[4.53662758,0.03694496,98.91113136],[4.53662801,0.03694671,98.91019837],[4.53662845,0.03694846,98.9092648],[4.53662889,0.03695021,98.90833065],[4.53662932,0.03695196,98.90739592],[4.53662976,0.03695371,98.90646062],[4.53663019,0.03695546,98.90552474],[4.53663063,0.03695721,98.90458829],[4.53663106,0.03695896,98.90365127],[4.5366315,0.0369607,98.90271368],[4.53663193,0.03696245,98.90177552],[4.53663237,0.0369642,98.9008368],[4.53663281,0.03696595,98.89989752],[4.53663324,0.0369677,98.89895768],[4.53663368,0.03696945,98.89801728],[4.53663411,0.0369712,98.89707633],[4.53663455,0.03697295,98.89613483],[4.53663498,0.0369747,98.89519277],[4.53663542,0.03697644,98.89425016],[4.53663585,0.03697819,98.89330701],[4.53663629,0.03697994,98.89236331],[4.53663672,0.03698169,98.89141907],[4.53663716,0.03698344,98.89047428],[4.53663759,0.03698519,98.88952893],[4.53663803,0.03698694,98.88858303],[4.53663846,0.03698869,98.88763656],[4.5366389,0.03699044,98.88668953],[4.53663934,0.03699219,98.88574192],[4.53663977,0.03699394,98.88479374],[4.53664021,0.03699568,98.88384498],[4.53664064,0.03699743,98.88289564],[4.53664108,0.03699918,98.88194571],[4.53664151,0.03700093,98.88099518],[4.53664195,0.03700268,98.88004406],[4.53664238,0.03700443,98.87909234],[4.53664282,0.03700618,98.87814001],[4.53664325,0.03700793,98.87718708],[4.53664368,0.03700968,98.87623353],[4.53664412,0.03701143,98.87527936],[4.53664455,0.03701318,98.87432457],[4.53664499,0.03701492,98.87336915],[4.53664542,0.03701667,98.87241311],[4.53664586,0.03701842,98.87145643],[4.53664629,0.03702017,98.87049911],[4.53664673,0.03702192,98.86954114],[4.53664716,0.03702367,98.86858253],[4.53664759,0.03702542,98.86762327],[4.53664803,0.03702717,98.86666336],[4.53664846,0.03702892,98.8657028],[4.5366489,0.03703067,98.86474163],[4.53664933,0.03703242,98.86377989],[4.53664976,0.03703417,98.86281764],[4.5366502,0.03703592,98.86185491],[4.53665063,0.03703767,98.86089175],[4.53665107,0.03703942,98.8599282],[4.5366515,0.03704116,98.85896432],[4.53665193,0.03704291,98.85800014],[4.53665237,0.03704466,98.8570357],[4.5366528,0.03704641,98.856071],[4.53665324,0.03704816,98.85510605],[4.53665367,0.03704991,98.85414085],[4.5366541,0.03705166,98.85317539],[4.53665454,0.03705341,98.85220967],[4.53665497,0.03705516,98.85124369],[4.53665541,0.03705691,98.85027745],[4.53665584,0.03705866,98.84931094],[4.53665628,0.03706041,98.84834417],[4.53665671,0.03706216,98.84737714],[4.53665715,0.0370639,98.84640983],[4.53665758,0.03706565,98.84544226],[4.53665802,0.0370674,98.84447441],[4.53665845,0.03706915,98.84350629],[4.53665888,0.0370709,98.8425379],[4.53665932,0.03707265,98.84156923],[4.53665975,0.0370744,98.84060028],[4.53666019,0.03707615,98.83963105],[4.53666062,0.0370779,98.83866155],[4.53666106,0.03707965,98.83769176],[4.53666149,0.0370814,98.83672169],[4.53666193,0.03708314,98.83575134],[4.53666236,0.03708489,98.83478071],[4.5366628,0.03708664,98.83380979],[4.53666323,0.03708839,98.83283858],[4.53666367,0.03709014,98.83186709],[4.53666411,0.03709189,98.83089531],[4.53666454,0.03709364,98.82992325],[4.53666498,0.03709539,98.82895089],[4.53666541,0.03709714,98.82797824],[4.53666585,0.03709889,98.82700531],[4.53666628,0.03710064,98.82603208],[4.53666672,0.03710238,98.82505855],[4.53666715,0.03710413,98.82408474],[4.53666759,0.03710588,98.82311063],[4.53666802,0.03710763,98.82213622],[4.53666846,0.03710938,98.82116152],[4.53666889,0.03711113,98.82018652],[4.53666933,0.03711288,98.81921122],[4.53666976,0.03711463,98.81823562],[4.5366702,0.03711638,98.81725973],[4.53667064,0.03711812,98.81628353],[4.53667107,0.03711987,98.81530703],[4.53667151,0.03712162,98.81433022],[4.53667194,0.03712337,98.81335312],[4.53667238,0.03712512,98.81237571],[4.53667281,0.03712687,98.81139799],[4.53667325,0.03712862,98.81041996],[4.53667368,0.03713037,98.80944163],[4.53667412,0.03713212,98.80846299],[4.53667455,0.03713387,98.80748404],[4.53667499,0.03713561,98.80650477],[4.53667543,0.03713736,98.80552515],[4.53667586,0.03713911,98.80454513],[4.5366763,0.03714086,98.80356466],[4.53667673,0.03714261,98.8025837],[4.53667717,0.03714436,98.8016022],[4.5366776,0.03714611,98.80062013],[4.53667804,0.03714786,98.7996375],[4.53667847,0.03714961,98.79865431],[4.53667891,0.03715136,98.79767058],[4.53667934,0.0371531,98.79668633],[4.53667978,0.03715485,98.79570156],[4.53668021,0.0371566,98.7947163],[4.53668064,0.03715835,98.79373056],[4.53668108,0.0371601,98.79274435],[4.53668151,0.03716185,98.79175768],[4.53668195,0.0371636,98.79077058],[4.53668238,0.03716535,98.78978304],[4.53668282,0.0371671,98.7887951],[4.53668325,0.03716885,98.78780676],[4.53668368,0.0371706,98.78681803],[4.53668412,0.03717235,98.78582894],[4.53668455,0.0371741,98.78483949],[4.53668499,0.03717585,98.78384969],[4.53668542,0.03717759,98.78285958],[4.53668585,0.03717934,98.78186914],[4.53668629,0.03718109,98.78087842],[4.53668672,0.03718284,98.7798874],[4.53668715,0.03718459,98.77889612],[4.53668759,0.03718634,98.77790458],[4.53668802,0.03718809,98.7769128],[4.53668846,0.03718984,98.77592079],[4.53668889,0.03719159,98.77492857],[4.53668932,0.03719334,98.77393616],[4.53668976,0.03719509,98.77294355],[4.53669019,0.03719684,98.77195078],[4.53669062,0.03719859,98.77095785],[4.53669106,0.03720034,98.76996478],[4.53669149,0.03720209,98.76897159],[4.53669193,0.03720384,98.76797828],[4.53669236,0.03720558,98.76698487],[4.53669279,0.03720733,98.76599138],[4.53669323,0.03720908,98.76499783],[4.53669366,0.03721083,98.76400421],[4.5366941,0.03721258,98.76301056],[4.53669453,0.03721433,98.76201688],[4.53669496,0.03721608,98.76102318],[4.5366954,0.03721783,98.76002949],[4.53669583,0.03721958,98.75903582],[4.53669627,0.03722133,98.75804217],[4.5366967,0.03722308,98.75704854],[4.53669714,0.03722483,98.75605489],[4.53669757,0.03722658,98.7550612],[4.53669801,0.03722833,98.75406745],[4.53669844,0.03723007,98.75307362],[4.53669887,0.03723182,98.75207968],[4.53669931,0.03723357,98.7510856],[4.53669974,0.03723532,98.75009136],[4.53670018,0.03723707,98.74909695],[4.53670061,0.03723882,98.74810235],[4.53670105,0.03724057,98.74710758],[4.53670148,0.03724232,98.74611261],[4.53670192,0.03724407,98.74511747],[4.53670235,0.03724582,98.74412213],[4.53670279,0.03724757,98.7431266],[4.53670322,0.03724932,98.74213087],[4.53670365,0.03725106,98.74113494],[4.53670409,0.03725281,98.74013881],[4.53670452,0.03725456,98.73914248],[4.53670496,0.03725631,98.73814593],[4.53670539,0.03725806,98.73714918],[4.53670583,0.03725981,98.73615221],[4.53670626,0.03726156,98.73515503],[4.53670669,0.03726331,98.73415763],[4.53670713,0.03726506,98.73316],[4.53670756,0.03726681,98.73216215],[4.536708,0.03726856,98.73116407],[4.53670843,0.03727031,98.73016576],[4.53670886,0.03727206,98.72916722],[4.5367093,0.03727381,98.72816844],[4.53670973,0.03727555,98.72716941],[4.53671017,0.0372773,98.72617015],[4.5367106,0.03727905,98.72517064],[4.53671103,0.0372808,98.72417088],[4.53671147,0.03728255,98.72317086],[4.5367119,0.0372843,98.7221706],[4.53671233,0.03728605,98.72117007],[4.53671277,0.0372878,98.72016929],[4.5367132,0.03728955,98.71916825],[4.53671363,0.0372913,98.71816694],[4.53671407,0.03729305,98.71716537],[4.5367145,0.0372948,98.71616354],[4.53671493,0.03729655,98.71516143],[4.53671537,0.0372983,98.71415906],[4.5367158,0.03730005,98.71315641],[4.53671623,0.0373018,98.71215349],[4.53671666,0.03730355,98.7111503],[4.5367171,0.0373053,98.71014682],[4.53671753,0.03730705,98.70914307],[4.53671796,0.0373088,98.70813904],[4.53671839,0.03731055,98.70713472],[4.53671883,0.03731229,98.70613012],[4.53671926,0.03731404,98.70512522],[4.53671969,0.03731579,98.70412004],[4.53672012,0.03731754,98.70311457],[4.53672056,0.03731929,98.7021088],[4.53672099,0.03732104,98.70110274],[4.53672142,0.03732279,98.70009638],[4.53672185,0.03732454,98.69908972],[4.53672228,0.03732629,98.69808276],[4.53672271,0.03732804,98.6970755],[4.53672314,0.03732979,98.69606793],[4.53672358,0.03733154,98.69506005],[4.53672401,0.03733329,98.69405186],[4.53672444,0.03733504,98.69304336],[4.53672487,0.03733679,98.69203456],[4.5367253,0.03733854,98.69102547],[4.53672573,0.03734029,98.6900161],[4.53672616,0.03734204,98.68900647],[4.53672659,0.03734379,98.68799661],[4.53672702,0.03734554,98.68698651],[4.53672745,0.03734729,98.6859762],[4.53672788,0.03734905,98.6849657],[4.53672831,0.0373508,98.68395502],[4.53672874,0.03735255,98.68294418],[4.53672917,0.0373543,98.68193318],[4.5367296,0.03735605,98.68092206],[4.53673003,0.0373578,98.67991082],[4.53673046,0.03735955,98.67889947],[4.53673089,0.0373613,98.67788805],[4.53673132,0.03736305,98.67687655],[4.53673175,0.0373648,98.675865],[4.53673218,0.03736655,98.67485341],[4.53673261,0.0373683,98.6738418],[4.53673304,0.03737005,98.67283018],[4.53673347,0.0373718,98.67181858],[4.5367339,0.03737355,98.670807],[4.53673433,0.0373753,98.66979546],[4.53673476,0.03737705,98.66878398],[4.53673519,0.0373788,98.66777258],[4.53673562,0.03738055,98.66676126],[4.53673605,0.0373823,98.66575004],[4.53673648,0.03738405,98.66473893],[4.53673691,0.0373858,98.66372793],[4.53673734,0.03738755,98.66271705],[4.53673777,0.0373893,98.66170628],[4.5367382,0.03739105,98.66069565],[4.53673863,0.0373928,98.65968515],[4.53673906,0.03739455,98.6586748],[4.53673949,0.03739631,98.65766459],[4.53673992,0.03739806,98.65665453],[4.53674035,0.03739981,98.65564463],[4.53674078,0.03740156,98.6546349],[4.53674121,0.03740331,98.65362534],[4.53674164,0.03740506,98.65261596],[4.53674207,0.03740681,98.65160677],[4.5367425,0.03740856,98.65059776],[4.53674292,0.03741031,98.64958895],[4.53674335,0.03741206,98.64858034],[4.53674378,0.03741381,98.64757194],[4.53674421,0.03741556,98.64656375],[4.53674465,0.03741731,98.64555578],[4.53674508,0.03741906,98.64454806],[4.53674551,0.03742081,98.64354059],[4.53674594,0.03742256,98.64253338],[4.53674637,0.03742431,98.64152647],[4.5367468,0.03742606,98.64051986],[4.53674723,0.03742781,98.63951357],[4.53674766,0.03742956,98.63850762],[4.53674809,0.03743131,98.63750203],[4.53674852,0.03743306,98.63649681],[4.53674895,0.03743481,98.63549197],[4.53674938,0.03743656,98.63448754],[4.53674981,0.03743831,98.63348351],[4.53675024,0.03744006,98.63247988],[4.53675067,0.03744181,98.63147663],[4.5367511,0.03744356,98.63047378],[4.53675153,0.03744531,98.62947131],[4.53675196,0.03744706,98.62846921],[4.5367524,0.03744881,98.62746749],[4.53675283,0.03745056,98.62646613],[4.53675326,0.03745231,98.62546514],[4.53675369,0.03745406,98.6244645],[4.53675412,0.03745581,98.62346422],[4.53675455,0.03745756,98.62246427],[4.53675498,0.03745931,98.62146465],[4.53675542,0.03746106,98.62046533],[4.53675585,0.03746281,98.61946631],[4.53675628,0.03746456,98.61846756],[4.53675671,0.03746631,98.61746908],[4.53675714,0.03746806,98.61647086],[4.53675757,0.03746981,98.61547291],[4.53675801,0.03747156,98.61447523],[4.53675844,0.03747331,98.61347781],[4.53675887,0.03747506,98.61248066],[4.5367593,0.03747681,98.61148379],[4.53675973,0.03747856,98.61048719],[4.53676016,0.03748031,98.60949086],[4.5367606,0.03748206,98.6084948],[4.53676103,0.03748381,98.60749902],[4.53676146,0.03748556,98.60650351],[4.53676189,0.03748731,98.60550828],[4.53676232,0.03748906,98.60451332],[4.53676275,0.03749081,98.60351865],[4.53676319,0.03749256,98.60252426],[4.53676362,0.03749431,98.60153014],[4.53676405,0.03749606,98.60053631],[4.53676448,0.03749781,98.59954276],[4.53676491,0.03749956,98.59854949],[4.53676535,0.03750131,98.59755651],[4.53676578,0.03750306,98.59656381],[4.53676621,0.03750481,98.5955714],[4.53676664,0.03750656,98.59457928],[4.53676707,0.03750831,98.59358744],[4.53676751,0.03751006,98.59259589],[4.53676794,0.03751181,98.59160464],[4.53676837,0.03751356,98.59061368],[4.5367688,0.03751531,98.589623],[4.53676923,0.03751706,98.58863262],[4.53676967,0.0375188,98.58764254],[4.5367701,0.03752055,98.58665275],[4.53677053,0.0375223,98.58566326],[4.53677096,0.03752405,98.58467406],[4.53677139,0.0375258,98.58368516],[4.53677183,0.03752755,98.58269656],[4.53677226,0.0375293,98.58170826],[4.53677269,0.03753105,98.58072026],[4.53677312,0.0375328,98.57973256],[4.53677355,0.03753455,98.57874517],[4.53677398,0.0375363,98.57775808],[4.53677442,0.03753805,98.57677129],[4.53677485,0.0375398,98.57578481],[4.53677528,0.03754155,98.57479863],[4.53677571,0.0375433,98.57381276],[4.53677614,0.03754505,98.57282721],[4.53677658,0.0375468,98.57184195],[4.53677701,0.03754855,98.57085701],[4.53677744,0.0375503,98.56987238],[4.53677787,0.03755205,98.56888807],[4.5367783,0.0375538,98.56790406],[4.53677874,0.03755555,98.56692037],[4.53677917,0.0375573,98.56593699],[4.5367796,0.03755905,98.56495393],[4.53678003,0.0375608,98.56397119],[4.53678046,0.03756255,98.56298876],[4.53678089,0.0375643,98.56200665],[4.53678133,0.03756605,98.56102486],[4.53678176,0.0375678,98.56004339],[4.53678219,0.03756955,98.55906224],[4.53678262,0.0375713,98.55808141],[4.53678305,0.03757305,98.5571009],[4.53678349,0.0375748,98.5561207],[4.53678392,0.03757655,98.55514081],[4.53678435,0.0375783,98.55416122],[4.53678478,0.03758005,98.55318191],[4.53678521,0.0375818,98.5522029],[4.53678564,0.03758355,98.55122415],[4.53678607,0.0375853,98.55024568],[4.53678651,0.03758705,98.54926747],[4.53678694,0.0375888,98.54828952],[4.53678737,0.03759055,98.54731182],[4.5367878,0.0375923,98.54633436],[4.53678823,0.03759405,98.54535713],[4.53678866,0.0375958,98.54438014],[4.53678909,0.03759755,98.54340336],[4.53678952,0.0375993,98.5424268],[4.53678996,0.03760105,98.54145045],[4.53679039,0.0376028,98.54047429],[4.53679082,0.03760455,98.53949833],[4.53679125,0.0376063,98.53852256],[4.53679168,0.03760805,98.53754696],[4.53679211,0.0376098,98.53657154],[4.53679254,0.03761155,98.53559628],[4.53679297,0.0376133,98.53462119],[4.5367934,0.03761505,98.53364626],[4.53679383,0.03761681,98.53267148],[4.53679426,0.03761856,98.53169686],[4.53679469,0.03762031,98.53072238],[4.53679512,0.03762206,98.52974805],[4.53679555,0.03762381,98.52877386],[4.53679598,0.03762556,98.52779982],[4.53679641,0.03762731,98.52682593],[4.53679684,0.03762906,98.52585221],[4.53679727,0.03763081,98.52487867],[4.5367977,0.03763256,98.52390531],[4.53679813,0.03763431,98.52293215],[4.53679856,0.03763606,98.5219592],[4.53679899,0.03763781,98.52098647],[4.53679942,0.03763956,98.52001397],[4.53679984,0.03764131,98.5190417],[4.53680027,0.03764306,98.51806969],[4.5368007,0.03764481,98.51709794],[4.53680113,0.03764656,98.51612646],[4.53680156,0.03764832,98.51515526],[4.53680199,0.03765007,98.51418436],[4.53680242,0.03765182,98.51321376],[4.53680284,0.03765357,98.51224347],[4.53680327,0.03765532,98.51127351],[4.5368037,0.03765707,98.51030389],[4.53680413,0.03765882,98.50933461],[4.53680456,0.03766057,98.50836568],[4.53680499,0.03766232,98.50739713],[4.53680541,0.03766407,98.50642895],[4.53680584,0.03766582,98.50546116],[4.53680627,0.03766758,98.50449377],[4.5368067,0.03766933,98.50352679],[4.53680713,0.03767108,98.50256023],[4.53680755,0.03767283,98.50159411],[4.53680798,0.03767458,98.50062842],[4.53680841,0.03767633,98.49966319],[4.53680884,0.03767808,98.49869842],[4.53680926,0.03767983,98.49773413],[4.53680969,0.03768158,98.49677032],[4.53681012,0.03768333,98.49580701],[4.53681055,0.03768509,98.4948442],[4.53681097,0.03768684,98.49388192],[4.5368114,0.03768859,98.49292016],[4.53681183,0.03769034,98.49195894],[4.53681226,0.03769209,98.49099827],[4.53681268,0.03769384,98.49003816],[4.53681311,0.03769559,98.48907862],[4.53681354,0.03769734,98.48811967],[4.53681397,0.03769909,98.4871613],[4.53681439,0.03770084,98.48620355],[4.53681482,0.0377026,98.4852464],[4.53681525,0.03770435,98.48428989],[4.53681568,0.0377061,98.48333401],[4.5368161,0.03770785,98.48237877],[4.53681653,0.0377096,98.4814242],[4.53681696,0.03771135,98.4804703],[4.53681738,0.0377131,98.47951707],[4.53681781,0.03771485,98.47856454],[4.53681824,0.0377166,98.47761271],[4.53681867,0.03771836,98.47666159],[4.53681909,0.03772011,98.4757112],[4.53681952,0.03772186,98.47476154],[4.53681995,0.03772361,98.47381262],[4.53682038,0.03772536,98.47286447],[4.5368208,0.03772711,98.47191708],[4.53682123,0.03772886,98.47097047],[4.53682166,0.03773061,98.47002464],[4.53682209,0.03773236,98.46907962],[4.53682251,0.03773412,98.46813541],[4.53682294,0.03773587,98.46719203],[4.53682337,0.03773762,98.46624947],[4.5368238,0.03773937,98.46530777],[4.53682422,0.03774112,98.46436691],[4.53682465,0.03774287,98.46342693],[4.53682508,0.03774462,98.46248782],[4.53682551,0.03774637,98.4615496],[4.53682594,0.03774812,98.46061227],[4.53682636,0.03774987,98.45967586],[4.53682679,0.03775163,98.45874037],[4.53682722,0.03775338,98.45780582],[4.53682765,0.03775513,98.45687221],[4.53682808,0.03775688,98.45593955],[4.5368285,0.03775863,98.45500785],[4.53682893,0.03776038,98.45407714],[4.53682936,0.03776213,98.45314741],[4.53682979,0.03776388,98.45221868],[4.53683022,0.03776563,98.45129094],[4.53683065,0.03776738,98.45036421],[4.53683108,0.03776913,98.44943846],[4.5368315,0.03777089,98.44851372],[4.53683193,0.03777264,98.44758998],[4.53683236,0.03777439,98.44666726],[4.53683279,0.03777614,98.44574557],[4.53683322,0.03777789,98.44482491],[4.53683365,0.03777964,98.44390529],[4.53683408,0.03778139,98.44298673],[4.53683451,0.03778314,98.44206923],[4.53683494,0.03778489,98.4411528],[4.53683537,0.03778664,98.44023746],[4.5368358,0.03778839,98.4393232],[4.53683623,0.03779014,98.43841003],[4.53683665,0.03779189,98.43749797],[4.53683708,0.03779364,98.43658698],[4.53683751,0.03779539,98.43567706],[4.53683794,0.03779715,98.4347682],[4.53683837,0.0377989,98.43386039],[4.5368388,0.03780065,98.4329536],[4.53683923,0.0378024,98.43204782],[4.53683966,0.03780415,98.43114306],[4.53684009,0.0378059,98.43023927],[4.53684052,0.03780765,98.42933647],[4.53684095,0.0378094,98.42843463],[4.53684138,0.03781115,98.42753374],[4.53684181,0.0378129,98.42663378],[4.53684224,0.03781465,98.42573476],[4.53684267,0.0378164,98.42483665],[4.5368431,0.03781815,98.42393946],[4.53684353,0.0378199,98.42304318],[4.53684396,0.03782165,98.42214779],[4.53684439,0.0378234,98.42125329],[4.53684482,0.03782515,98.42035968],[4.53684526,0.0378269,98.41946693],[4.53684569,0.03782865,98.41857505],[4.53684612,0.0378304,98.41768402],[4.53684655,0.03783215,98.41679383],[4.53684698,0.03783391,98.41590449],[4.53684741,0.03783566,98.41501598],[4.53684783,0.03783741,98.41412828],[4.53684826,0.03783916,98.4132414],[4.53684869,0.03784091,98.41235533],[4.53684912,0.03784266,98.41147005],[4.53684955,0.03784441,98.41058556],[4.53684998,0.03784616,98.40970184],[4.53685041,0.03784791,98.4088189],[4.53685084,0.03784966,98.40793672],[4.53685127,0.03785141,98.40705529],[4.5368517,0.03785316,98.40617461],[4.53685213,0.03785491,98.40529467],[4.53685256,0.03785666,98.40441545],[4.53685299,0.03785841,98.40353696],[4.53685342,0.03786016,98.40265917],[4.53685385,0.03786192,98.40178209],[4.53685428,0.03786367,98.4009057],[4.5368547,0.03786542,98.40003],[4.53685513,0.03786717,98.39915498],[4.53685556,0.03786892,98.39828062],[4.53685599,0.03787067,98.39740693],[4.53685642,0.03787242,98.39653388],[4.53685685,0.03787417,98.39566148],[4.53685727,0.03787592,98.39478972],[4.5368577,0.03787767,98.39391858],[4.53685813,0.03787942,98.39304806],[4.53685856,0.03788118,98.39217814],[4.53685898,0.03788293,98.39130883],[4.53685941,0.03788468,98.39044011],[4.53685984,0.03788643,98.38957197],[4.53686027,0.03788818,98.38870441],[4.53686069,0.03788993,98.38783742],[4.53686112,0.03789168,98.38697098],[4.53686155,0.03789343,98.38610513],[4.53686197,0.03789519,98.38523988],[4.5368624,0.03789694,98.38437525],[4.53686282,0.03789869,98.38351126],[4.53686325,0.03790044,98.38264794],[4.53686368,0.03790219,98.3817853],[4.5368641,0.03790394,98.38092337],[4.53686453,0.0379057,98.38006217],[4.53686495,0.03790745,98.37920172],[4.53686538,0.0379092,98.37834203],[4.5368658,0.03791095,98.37748315],[4.53686623,0.0379127,98.37662507],[4.53686665,0.03791445,98.37576783],[4.53686708,0.03791621,98.37491145],[4.5368675,0.03791796,98.37405595],[4.53686793,0.03791971,98.37320134],[4.53686835,0.03792146,98.37234766],[4.53686878,0.03792321,98.37149492],[4.5368692,0.03792497,98.37064315],[4.53686963,0.03792672,98.36979236],[4.53687005,0.03792847,98.36894257],[4.53687047,0.03793022,98.36809382],[4.5368709,0.03793197,98.36724611],[4.53687132,0.03793372,98.36639948],[4.53687175,0.03793548,98.36555394],[4.53687217,0.03793723,98.36470951],[4.5368726,0.03793898,98.36386623],[4.53687302,0.03794073,98.36302411],[4.53687345,0.03794248,98.3621832],[4.53687387,0.03794424,98.36134351],[4.53687429,0.03794599,98.36050509],[4.53687472,0.03794774,98.35966796],[4.53687514,0.03794949,98.35883215],[4.53687557,0.03795124,98.35799769],[4.53687599,0.037953,98.35716461],[4.53687642,0.03795475,98.35633294],[4.53687684,0.0379565,98.35550269],[4.53687727,0.03795825,98.3546739],[4.53687769,0.03796,98.35384657],[4.53687811,0.03796176,98.35302074],[4.53687854,0.03796351,98.35219641],[4.53687896,0.03796526,98.3513736],[4.53687939,0.03796701,98.35055235],[4.53687981,0.03796876,98.34973266],[4.53688024,0.03797051,98.34891455],[4.53688067,0.03797227,98.34809806],[4.53688109,0.03797402,98.34728318],[4.53688152,0.03797577,98.34646994],[4.53688194,0.03797752,98.34565831],[4.53688237,0.03797927,98.3448483],[4.53688279,0.03798102,98.34403987],[4.53688322,0.03798278,98.34323304],[4.53688365,0.03798453,98.34242778],[4.53688407,0.03798628,98.34162408],[4.5368845,0.03798803,98.34082194],[4.53688493,0.03798978,98.34002134],[4.53688535,0.03799153,98.33922227],[4.53688578,0.03799328,98.33842472],[4.5368862,0.03799504,98.33762867],[4.53688663,0.03799679,98.33683413],[4.53688706,0.03799854,98.33604107],[4.53688748,0.03800029,98.33524949],[4.53688791,0.03800204,98.33445937],[4.53688834,0.03800379,98.33367071],[4.53688877,0.03800554,98.33288348],[4.53688919,0.0380073,98.33209769],[4.53688962,0.03800905,98.33131332],[4.53689005,0.0380108,98.33053036],[4.53689047,0.03801255,98.3297488],[4.5368909,0.0380143,98.32896863],[4.53689133,0.03801605,98.32818983],[4.53689175,0.0380178,98.3274124],[4.53689218,0.03801956,98.32663632],[4.53689261,0.03802131,98.32586159],[4.53689303,0.03802306,98.32508818],[4.53689346,0.03802481,98.3243161],[4.53689389,0.03802656,98.32354533],[4.53689432,0.03802831,98.32277586],[4.53689474,0.03803006,98.32200768],[4.53689517,0.03803181,98.32124078],[4.5368956,0.03803357,98.32047514],[4.53689602,0.03803532,98.31971076],[4.53689645,0.03803707,98.31894762],[4.53689688,0.03803882,98.31818572],[4.5368973,0.03804057,98.31742504],[4.53689773,0.03804232,98.31666557],[4.53689815,0.03804407,98.31590731],[4.53689858,0.03804583,98.31515023],[4.53689901,0.03804758,98.31439433],[4.53689943,0.03804933,98.31363961],[4.53689986,0.03805108,98.31288604],[4.53690029,0.03805283,98.31213361],[4.53690071,0.03805458,98.31138233],[4.53690114,0.03805634,98.31063216],[4.53690156,0.03805809,98.30988312],[4.53690199,0.03805984,98.30913517],[4.53690241,0.03806159,98.30838832],[4.53690284,0.03806334,98.30764256],[4.53690326,0.03806509,98.30689787],[4.53690369,0.03806685,98.30615428],[4.53690411,0.0380686,98.30541181],[4.53690454,0.03807035,98.3046705],[4.53690496,0.0380721,98.30393036],[4.53690539,0.03807385,98.30319143],[4.53690581,0.03807561,98.30245371],[4.53690624,0.03807736,98.30171724],[4.53690666,0.03807911,98.30098203],[4.53690709,0.03808086,98.3002481],[4.53690751,0.03808261,98.29951546],[4.53690793,0.03808437,98.29878415],[4.53690836,0.03808612,98.29805417],[4.53690878,0.03808787,98.29732555],[4.53690921,0.03808962,98.29659831],[4.53690963,0.03809137,98.29587246],[4.53691005,0.03809313,98.29514803],[4.53691048,0.03809488,98.29442503],[4.5369109,0.03809663,98.29370348],[4.53691133,0.03809838,98.29298341],[4.53691175,0.03810014,98.29226483],[4.53691217,0.03810189,98.29154776],[4.5369126,0.03810364,98.29083223],[4.53691302,0.03810539,98.29011825],[4.53691344,0.03810714,98.28940586],[4.53691387,0.0381089,98.28869509],[4.53691429,0.03811065,98.28798597],[4.53691472,0.0381124,98.28727853],[4.53691514,0.03811415,98.2865728],[4.53691556,0.0381159,98.28586881],[4.53691599,0.03811766,98.2851666],[4.53691641,0.03811941,98.28446618],[4.53691684,0.03812116,98.2837676],[4.53691726,0.03812291,98.28307088],[4.53691769,0.03812466,98.28237605],[4.53691811,0.03812642,98.28168315],[4.53691853,0.03812817,98.2809922],[4.53691896,0.03812992,98.28030323],[4.53691938,0.03813167,98.27961627],[4.53691981,0.03813342,98.27893136],[4.53692023,0.03813518,98.27824852],[4.53692066,0.03813693,98.27756779],[4.53692108,0.03813868,98.27688918],[4.53692151,0.03814043,98.27621274],[4.53692194,0.03814218,98.27553849],[4.53692236,0.03814394,98.27486647],[4.53692279,0.03814569,98.27419669],[4.53692321,0.03814744,98.2735292],[4.53692364,0.03814919,98.27286402],[4.53692407,0.03815094,98.27220117],[4.53692449,0.03815269,98.2715407],[4.53692492,0.03815444,98.27088263],[4.53692535,0.0381562,98.27022698],[4.53692578,0.03815795,98.26957379],[4.5369262,0.0381597,98.26892309],[4.53692663,0.03816145,98.26827491],[4.53692706,0.0381632,98.26762927],[4.53692749,0.03816495,98.2669862],[4.53692792,0.0381667,98.26634574],[4.53692835,0.03816845,98.26570791],[4.53692878,0.0381702,98.26507273],[4.53692921,0.03817195,98.26444025],[4.53692964,0.0381737,98.26381049],[4.53693007,0.03817546,98.26318347],[4.5369305,0.03817721,98.26255922],[4.53693093,0.03817896,98.26193778],[4.53693136,0.03818071,98.26131917],[4.53693179,0.03818246,98.26070339],[4.53693223,0.03818421,98.26009047],[4.53693266,0.03818596,98.25948042],[4.53693309,0.03818771,98.25887324],[4.53693353,0.03818946,98.25826895],[4.53693396,0.03819121,98.25766756],[4.53693439,0.03819296,98.25706909],[4.53693483,0.0381947,98.25647354],[4.53693526,0.03819645,98.25588093],[4.53693222,0.0381972,98.24653286]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-4,"type":"border","predecessorId":0,"sOffset":53.8544139403}},{"geometry":{"coordinates":[[[4.53693526,0.03819645,98.25588093],[4.53693483,0.0381947,98.25647354],[4.53693439,0.03819296,98.25706909],[4.53693396,0.03819121,98.25766756],[4.53693353,0.03818946,98.25826895],[4.53693309,0.03818771,98.25887324],[4.53693266,0.03818596,98.25948042],[4.53693223,0.03818421,98.26009047],[4.53693179,0.03818246,98.26070339],[4.53693136,0.03818071,98.26131917],[4.53693093,0.03817896,98.26193778],[4.5369305,0.03817721,98.26255922],[4.53693007,0.03817546,98.26318347],[4.53692964,0.0381737,98.26381049],[4.53692921,0.03817195,98.26444025],[4.53692878,0.0381702,98.26507273],[4.53692835,0.03816845,98.26570791],[4.53692792,0.0381667,98.26634574],[4.53692749,0.03816495,98.2669862],[4.53692706,0.0381632,98.26762927],[4.53692663,0.03816145,98.26827491],[4.5369262,0.0381597,98.26892309],[4.53692578,0.03815795,98.26957379],[4.53692535,0.0381562,98.27022698],[4.53692492,0.03815444,98.27088263],[4.53692449,0.03815269,98.2715407],[4.53692407,0.03815094,98.27220117],[4.53692364,0.03814919,98.27286402],[4.53692321,0.03814744,98.2735292],[4.53692279,0.03814569,98.27419669],[4.53692236,0.03814394,98.27486647],[4.53692194,0.03814218,98.27553849],[4.53692151,0.03814043,98.27621274],[4.53692108,0.03813868,98.27688918],[4.53692066,0.03813693,98.27756779],[4.53692023,0.03813518,98.27824852],[4.53691981,0.03813342,98.27893136],[4.53691938,0.03813167,98.27961627],[4.53691896,0.03812992,98.28030323],[4.53691853,0.03812817,98.2809922],[4.53691811,0.03812642,98.28168315],[4.53691769,0.03812466,98.28237605],[4.53691726,0.03812291,98.28307088],[4.53691684,0.03812116,98.2837676],[4.53691641,0.03811941,98.28446618],[4.53691599,0.03811766,98.2851666],[4.53691556,0.0381159,98.28586881],[4.53691514,0.03811415,98.2865728],[4.53691472,0.0381124,98.28727853],[4.53691429,0.03811065,98.28798597],[4.53691387,0.0381089,98.28869509],[4.53691344,0.03810714,98.28940586],[4.53691302,0.03810539,98.29011825],[4.5369126,0.03810364,98.29083223],[4.53691217,0.03810189,98.29154776],[4.53691175,0.03810014,98.29226483],[4.53691133,0.03809838,98.29298341],[4.5369109,0.03809663,98.29370348],[4.53691048,0.03809488,98.29442503],[4.53691005,0.03809313,98.29514803],[4.53690963,0.03809137,98.29587246],[4.53690921,0.03808962,98.29659831],[4.53690878,0.03808787,98.29732555],[4.53690836,0.03808612,98.29805417],[4.53690793,0.03808437,98.29878415],[4.53690751,0.03808261,98.29951546],[4.53690709,0.03808086,98.3002481],[4.53690666,0.03807911,98.30098203],[4.53690624,0.03807736,98.30171724],[4.53690581,0.03807561,98.30245371],[4.53690539,0.03807385,98.30319143],[4.53690496,0.0380721,98.30393036],[4.53690454,0.03807035,98.3046705],[4.53690411,0.0380686,98.30541181],[4.53690369,0.03806685,98.30615428],[4.53690326,0.03806509,98.30689787],[4.53690284,0.03806334,98.30764256],[4.53690241,0.03806159,98.30838832],[4.53690199,0.03805984,98.30913517],[4.53690156,0.03805809,98.30988312],[4.53690114,0.03805634,98.31063216],[4.53690071,0.03805458,98.31138233],[4.53690029,0.03805283,98.31213361],[4.53689986,0.03805108,98.31288604],[4.53689943,0.03804933,98.31363961],[4.53689901,0.03804758,98.31439433],[4.53689858,0.03804583,98.31515023],[4.53689815,0.03804407,98.31590731],[4.53689773,0.03804232,98.31666557],[4.5368973,0.03804057,98.31742504],[4.53689688,0.03803882,98.31818572],[4.53689645,0.03803707,98.31894762],[4.53689602,0.03803532,98.31971076],[4.5368956,0.03803357,98.32047514],[4.53689517,0.03803181,98.32124078],[4.53689474,0.03803006,98.32200768],[4.53689432,0.03802831,98.32277586],[4.53689389,0.03802656,98.32354533],[4.53689346,0.03802481,98.3243161],[4.53689303,0.03802306,98.32508818],[4.53689261,0.03802131,98.32586159],[4.53689218,0.03801956,98.32663632],[4.53689175,0.0380178,98.3274124],[4.53689133,0.03801605,98.32818983],[4.5368909,0.0380143,98.32896863],[4.53689047,0.03801255,98.3297488],[4.53689005,0.0380108,98.33053036],[4.53688962,0.03800905,98.33131332],[4.53688919,0.0380073,98.33209769],[4.53688877,0.03800554,98.33288348],[4.53688834,0.03800379,98.33367071],[4.53688791,0.03800204,98.33445937],[4.53688748,0.03800029,98.33524949],[4.53688706,0.03799854,98.33604107],[4.53688663,0.03799679,98.33683413],[4.5368862,0.03799504,98.33762867],[4.53688578,0.03799328,98.33842472],[4.53688535,0.03799153,98.33922227],[4.53688493,0.03798978,98.34002134],[4.5368845,0.03798803,98.34082194],[4.53688407,0.03798628,98.34162408],[4.53688365,0.03798453,98.34242778],[4.53688322,0.03798278,98.34323304],[4.53688279,0.03798102,98.34403987],[4.53688237,0.03797927,98.3448483],[4.53688194,0.03797752,98.34565831],[4.53688152,0.03797577,98.34646994],[4.53688109,0.03797402,98.34728318],[4.53688067,0.03797227,98.34809806],[4.53688024,0.03797051,98.34891455],[4.53687981,0.03796876,98.34973266],[4.53687939,0.03796701,98.35055235],[4.53687896,0.03796526,98.3513736],[4.53687854,0.03796351,98.35219641],[4.53687811,0.03796176,98.35302074],[4.53687769,0.03796,98.35384657],[4.53687727,0.03795825,98.3546739],[4.53687684,0.0379565,98.35550269],[4.53687642,0.03795475,98.35633294],[4.53687599,0.037953,98.35716461],[4.53687557,0.03795124,98.35799769],[4.53687514,0.03794949,98.35883215],[4.53687472,0.03794774,98.35966796],[4.53687429,0.03794599,98.36050509],[4.53687387,0.03794424,98.36134351],[4.53687345,0.03794248,98.3621832],[4.53687302,0.03794073,98.36302411],[4.5368726,0.03793898,98.36386623],[4.53687217,0.03793723,98.36470951],[4.53687175,0.03793548,98.36555394],[4.53687132,0.03793372,98.36639948],[4.5368709,0.03793197,98.36724611],[4.53687047,0.03793022,98.36809382],[4.53687005,0.03792847,98.36894257],[4.53686963,0.03792672,98.36979236],[4.5368692,0.03792497,98.37064315],[4.53686878,0.03792321,98.37149492],[4.53686835,0.03792146,98.37234766],[4.53686793,0.03791971,98.37320134],[4.5368675,0.03791796,98.37405595],[4.53686708,0.03791621,98.37491145],[4.53686665,0.03791445,98.37576783],[4.53686623,0.0379127,98.37662507],[4.5368658,0.03791095,98.37748315],[4.53686538,0.0379092,98.37834203],[4.53686495,0.03790745,98.37920172],[4.53686453,0.0379057,98.38006217],[4.5368641,0.03790394,98.38092337],[4.53686368,0.03790219,98.3817853],[4.53686325,0.03790044,98.38264794],[4.53686282,0.03789869,98.38351126],[4.5368624,0.03789694,98.38437525],[4.53686197,0.03789519,98.38523988],[4.53686155,0.03789343,98.38610513],[4.53686112,0.03789168,98.38697098],[4.53686069,0.03788993,98.38783742],[4.53686027,0.03788818,98.38870441],[4.53685984,0.03788643,98.38957197],[4.53685941,0.03788468,98.39044011],[4.53685898,0.03788293,98.39130883],[4.53685856,0.03788118,98.39217814],[4.53685813,0.03787942,98.39304806],[4.5368577,0.03787767,98.39391858],[4.53685727,0.03787592,98.39478972],[4.53685685,0.03787417,98.39566148],[4.53685642,0.03787242,98.39653388],[4.53685599,0.03787067,98.39740693],[4.53685556,0.03786892,98.39828062],[4.53685513,0.03786717,98.39915498],[4.5368547,0.03786542,98.40003],[4.53685428,0.03786367,98.4009057],[4.53685385,0.03786192,98.40178209],[4.53685342,0.03786016,98.40265917],[4.53685299,0.03785841,98.40353696],[4.53685256,0.03785666,98.40441545],[4.53685213,0.03785491,98.40529467],[4.5368517,0.03785316,98.40617461],[4.53685127,0.03785141,98.40705529],[4.53685084,0.03784966,98.40793672],[4.53685041,0.03784791,98.4088189],[4.53684998,0.03784616,98.40970184],[4.53684955,0.03784441,98.41058556],[4.53684912,0.03784266,98.41147005],[4.53684869,0.03784091,98.41235533],[4.53684826,0.03783916,98.4132414],[4.53684783,0.03783741,98.41412828],[4.53684741,0.03783566,98.41501598],[4.53684698,0.03783391,98.41590449],[4.53684655,0.03783215,98.41679383],[4.53684612,0.0378304,98.41768402],[4.53684569,0.03782865,98.41857505],[4.53684526,0.0378269,98.41946693],[4.53684482,0.03782515,98.42035968],[4.53684439,0.0378234,98.42125329],[4.53684396,0.03782165,98.42214779],[4.53684353,0.0378199,98.42304318],[4.5368431,0.03781815,98.42393946],[4.53684267,0.0378164,98.42483665],[4.53684224,0.03781465,98.42573476],[4.53684181,0.0378129,98.42663378],[4.53684138,0.03781115,98.42753374],[4.53684095,0.0378094,98.42843463],[4.53684052,0.03780765,98.42933647],[4.53684009,0.0378059,98.43023927],[4.53683966,0.03780415,98.43114306],[4.53683923,0.0378024,98.43204782],[4.5368388,0.03780065,98.4329536],[4.53683837,0.0377989,98.43386039],[4.53683794,0.03779715,98.4347682],[4.53683751,0.03779539,98.43567706],[4.53683708,0.03779364,98.43658698],[4.53683665,0.03779189,98.43749797],[4.53683623,0.03779014,98.43841003],[4.5368358,0.03778839,98.4393232],[4.53683537,0.03778664,98.44023746],[4.53683494,0.03778489,98.4411528],[4.53683451,0.03778314,98.44206923],[4.53683408,0.03778139,98.44298673],[4.53683365,0.03777964,98.44390529],[4.53683322,0.03777789,98.44482491],[4.53683279,0.03777614,98.44574557],[4.53683236,0.03777439,98.44666726],[4.53683193,0.03777264,98.44758998],[4.5368315,0.03777089,98.44851372],[4.53683108,0.03776913,98.44943846],[4.53683065,0.03776738,98.45036421],[4.53683022,0.03776563,98.45129094],[4.53682979,0.03776388,98.45221868],[4.53682936,0.03776213,98.45314741],[4.53682893,0.03776038,98.45407714],[4.5368285,0.03775863,98.45500785],[4.53682808,0.03775688,98.45593955],[4.53682765,0.03775513,98.45687221],[4.53682722,0.03775338,98.45780582],[4.53682679,0.03775163,98.45874037],[4.53682636,0.03774987,98.45967586],[4.53682594,0.03774812,98.46061227],[4.53682551,0.03774637,98.4615496],[4.53682508,0.03774462,98.46248782],[4.53682465,0.03774287,98.46342693],[4.53682422,0.03774112,98.46436691],[4.5368238,0.03773937,98.46530777],[4.53682337,0.03773762,98.46624947],[4.53682294,0.03773587,98.46719203],[4.53682251,0.03773412,98.46813541],[4.53682209,0.03773236,98.46907962],[4.53682166,0.03773061,98.47002464],[4.53682123,0.03772886,98.47097047],[4.5368208,0.03772711,98.47191708],[4.53682038,0.03772536,98.47286447],[4.53681995,0.03772361,98.47381262],[4.53681952,0.03772186,98.47476154],[4.53681909,0.03772011,98.4757112],[4.53681867,0.03771836,98.47666159],[4.53681824,0.0377166,98.47761271],[4.53681781,0.03771485,98.47856454],[4.53681738,0.0377131,98.47951707],[4.53681696,0.03771135,98.4804703],[4.53681653,0.0377096,98.4814242],[4.5368161,0.03770785,98.48237877],[4.53681568,0.0377061,98.48333401],[4.53681525,0.03770435,98.48428989],[4.53681482,0.0377026,98.4852464],[4.53681439,0.03770084,98.48620355],[4.53681397,0.03769909,98.4871613],[4.53681354,0.03769734,98.48811967],[4.53681311,0.03769559,98.48907862],[4.53681268,0.03769384,98.49003816],[4.53681226,0.03769209,98.49099827],[4.53681183,0.03769034,98.49195894],[4.5368114,0.03768859,98.49292016],[4.53681097,0.03768684,98.49388192],[4.53681055,0.03768509,98.4948442],[4.53681012,0.03768333,98.49580701],[4.53680969,0.03768158,98.49677032],[4.53680926,0.03767983,98.49773413],[4.53680884,0.03767808,98.49869842],[4.53680841,0.03767633,98.49966319],[4.53680798,0.03767458,98.50062842],[4.53680755,0.03767283,98.50159411],[4.53680713,0.03767108,98.50256023],[4.5368067,0.03766933,98.50352679],[4.53680627,0.03766758,98.50449377],[4.53680584,0.03766582,98.50546116],[4.53680541,0.03766407,98.50642895],[4.53680499,0.03766232,98.50739713],[4.53680456,0.03766057,98.50836568],[4.53680413,0.03765882,98.50933461],[4.5368037,0.03765707,98.51030389],[4.53680327,0.03765532,98.51127351],[4.53680284,0.03765357,98.51224347],[4.53680242,0.03765182,98.51321376],[4.53680199,0.03765007,98.51418436],[4.53680156,0.03764832,98.51515526],[4.53680113,0.03764656,98.51612646],[4.5368007,0.03764481,98.51709794],[4.53680027,0.03764306,98.51806969],[4.53679984,0.03764131,98.5190417],[4.53679942,0.03763956,98.52001397],[4.53679899,0.03763781,98.52098647],[4.53679856,0.03763606,98.5219592],[4.53679813,0.03763431,98.52293215],[4.5367977,0.03763256,98.52390531],[4.53679727,0.03763081,98.52487867],[4.53679684,0.03762906,98.52585221],[4.53679641,0.03762731,98.52682593],[4.53679598,0.03762556,98.52779982],[4.53679555,0.03762381,98.52877386],[4.53679512,0.03762206,98.52974805],[4.53679469,0.03762031,98.53072238],[4.53679426,0.03761856,98.53169686],[4.53679383,0.03761681,98.53267148],[4.5367934,0.03761505,98.53364626],[4.53679297,0.0376133,98.53462119],[4.53679254,0.03761155,98.53559628],[4.53679211,0.0376098,98.53657154],[4.53679168,0.03760805,98.53754696],[4.53679125,0.0376063,98.53852256],[4.53679082,0.03760455,98.53949833],[4.53679039,0.0376028,98.54047429],[4.53678996,0.03760105,98.54145045],[4.53678952,0.0375993,98.5424268],[4.53678909,0.03759755,98.54340336],[4.53678866,0.0375958,98.54438014],[4.53678823,0.03759405,98.54535713],[4.5367878,0.0375923,98.54633436],[4.53678737,0.03759055,98.54731182],[4.53678694,0.0375888,98.54828952],[4.53678651,0.03758705,98.54926747],[4.53678607,0.0375853,98.55024568],[4.53678564,0.03758355,98.55122415],[4.53678521,0.0375818,98.5522029],[4.53678478,0.03758005,98.55318191],[4.53678435,0.0375783,98.55416122],[4.53678392,0.03757655,98.55514081],[4.53678349,0.0375748,98.5561207],[4.53678305,0.03757305,98.5571009],[4.53678262,0.0375713,98.55808141],[4.53678219,0.03756955,98.55906224],[4.53678176,0.0375678,98.56004339],[4.53678133,0.03756605,98.56102486],[4.53678089,0.0375643,98.56200665],[4.53678046,0.03756255,98.56298876],[4.53678003,0.0375608,98.56397119],[4.5367796,0.03755905,98.56495393],[4.53677917,0.0375573,98.56593699],[4.53677874,0.03755555,98.56692037],[4.5367783,0.0375538,98.56790406],[4.53677787,0.03755205,98.56888807],[4.53677744,0.0375503,98.56987238],[4.53677701,0.03754855,98.57085701],[4.53677658,0.0375468,98.57184195],[4.53677614,0.03754505,98.57282721],[4.53677571,0.0375433,98.57381276],[4.53677528,0.03754155,98.57479863],[4.53677485,0.0375398,98.57578481],[4.53677442,0.03753805,98.57677129],[4.53677398,0.0375363,98.57775808],[4.53677355,0.03753455,98.57874517],[4.53677312,0.0375328,98.57973256],[4.53677269,0.03753105,98.58072026],[4.53677226,0.0375293,98.58170826],[4.53677183,0.03752755,98.58269656],[4.53677139,0.0375258,98.58368516],[4.53677096,0.03752405,98.58467406],[4.53677053,0.0375223,98.58566326],[4.5367701,0.03752055,98.58665275],[4.53676967,0.0375188,98.58764254],[4.53676923,0.03751706,98.58863262],[4.5367688,0.03751531,98.589623],[4.53676837,0.03751356,98.59061368],[4.53676794,0.03751181,98.59160464],[4.53676751,0.03751006,98.59259589],[4.53676707,0.03750831,98.59358744],[4.53676664,0.03750656,98.59457928],[4.53676621,0.03750481,98.5955714],[4.53676578,0.03750306,98.59656381],[4.53676535,0.03750131,98.59755651],[4.53676491,0.03749956,98.59854949],[4.53676448,0.03749781,98.59954276],[4.53676405,0.03749606,98.60053631],[4.53676362,0.03749431,98.60153014],[4.53676319,0.03749256,98.60252426],[4.53676275,0.03749081,98.60351865],[4.53676232,0.03748906,98.60451332],[4.53676189,0.03748731,98.60550828],[4.53676146,0.03748556,98.60650351],[4.53676103,0.03748381,98.60749902],[4.5367606,0.03748206,98.6084948],[4.53676016,0.03748031,98.60949086],[4.53675973,0.03747856,98.61048719],[4.5367593,0.03747681,98.61148379],[4.53675887,0.03747506,98.61248066],[4.53675844,0.03747331,98.61347781],[4.53675801,0.03747156,98.61447523],[4.53675757,0.03746981,98.61547291],[4.53675714,0.03746806,98.61647086],[4.53675671,0.03746631,98.61746908],[4.53675628,0.03746456,98.61846756],[4.53675585,0.03746281,98.61946631],[4.53675542,0.03746106,98.62046533],[4.53675498,0.03745931,98.62146465],[4.53675455,0.03745756,98.62246427],[4.53675412,0.03745581,98.62346422],[4.53675369,0.03745406,98.6244645],[4.53675326,0.03745231,98.62546514],[4.53675283,0.03745056,98.62646613],[4.5367524,0.03744881,98.62746749],[4.53675196,0.03744706,98.62846921],[4.53675153,0.03744531,98.62947131],[4.5367511,0.03744356,98.63047378],[4.53675067,0.03744181,98.63147663],[4.53675024,0.03744006,98.63247988],[4.53674981,0.03743831,98.63348351],[4.53674938,0.03743656,98.63448754],[4.53674895,0.03743481,98.63549197],[4.53674852,0.03743306,98.63649681],[4.53674809,0.03743131,98.63750203],[4.53674766,0.03742956,98.63850762],[4.53674723,0.03742781,98.63951357],[4.5367468,0.03742606,98.64051986],[4.53674637,0.03742431,98.64152647],[4.53674594,0.03742256,98.64253338],[4.53674551,0.03742081,98.64354059],[4.53674508,0.03741906,98.64454806],[4.53674465,0.03741731,98.64555578],[4.53674421,0.03741556,98.64656375],[4.53674378,0.03741381,98.64757194],[4.53674335,0.03741206,98.64858034],[4.53674292,0.03741031,98.64958895],[4.5367425,0.03740856,98.65059776],[4.53674207,0.03740681,98.65160677],[4.53674164,0.03740506,98.65261596],[4.53674121,0.03740331,98.65362534],[4.53674078,0.03740156,98.6546349],[4.53674035,0.03739981,98.65564463],[4.53673992,0.03739806,98.65665453],[4.53673949,0.03739631,98.65766459],[4.53673906,0.03739455,98.6586748],[4.53673863,0.0373928,98.65968515],[4.5367382,0.03739105,98.66069565],[4.53673777,0.0373893,98.66170628],[4.53673734,0.03738755,98.66271705],[4.53673691,0.0373858,98.66372793],[4.53673648,0.03738405,98.66473893],[4.53673605,0.0373823,98.66575004],[4.53673562,0.03738055,98.66676126],[4.53673519,0.0373788,98.66777258],[4.53673476,0.03737705,98.66878398],[4.53673433,0.0373753,98.66979546],[4.5367339,0.03737355,98.670807],[4.53673347,0.0373718,98.67181858],[4.53673304,0.03737005,98.67283018],[4.53673261,0.0373683,98.6738418],[4.53673218,0.03736655,98.67485341],[4.53673175,0.0373648,98.675865],[4.53673132,0.03736305,98.67687655],[4.53673089,0.0373613,98.67788805],[4.53673046,0.03735955,98.67889947],[4.53673003,0.0373578,98.67991082],[4.5367296,0.03735605,98.68092206],[4.53672917,0.0373543,98.68193318],[4.53672874,0.03735255,98.68294418],[4.53672831,0.0373508,98.68395502],[4.53672788,0.03734905,98.6849657],[4.53672745,0.03734729,98.6859762],[4.53672702,0.03734554,98.68698651],[4.53672659,0.03734379,98.68799661],[4.53672616,0.03734204,98.68900647],[4.53672573,0.03734029,98.6900161],[4.5367253,0.03733854,98.69102547],[4.53672487,0.03733679,98.69203456],[4.53672444,0.03733504,98.69304336],[4.53672401,0.03733329,98.69405186],[4.53672358,0.03733154,98.69506005],[4.53672314,0.03732979,98.69606793],[4.53672271,0.03732804,98.6970755],[4.53672228,0.03732629,98.69808276],[4.53672185,0.03732454,98.69908972],[4.53672142,0.03732279,98.70009638],[4.53672099,0.03732104,98.70110274],[4.53672056,0.03731929,98.7021088],[4.53672012,0.03731754,98.70311457],[4.53671969,0.03731579,98.70412004],[4.53671926,0.03731404,98.70512522],[4.53671883,0.03731229,98.70613012],[4.53671839,0.03731055,98.70713472],[4.53671796,0.0373088,98.70813904],[4.53671753,0.03730705,98.70914307],[4.5367171,0.0373053,98.71014682],[4.53671666,0.03730355,98.7111503],[4.53671623,0.0373018,98.71215349],[4.5367158,0.03730005,98.71315641],[4.53671537,0.0372983,98.71415906],[4.53671493,0.03729655,98.71516143],[4.5367145,0.0372948,98.71616354],[4.53671407,0.03729305,98.71716537],[4.53671363,0.0372913,98.71816694],[4.5367132,0.03728955,98.71916825],[4.53671277,0.0372878,98.72016929],[4.53671233,0.03728605,98.72117007],[4.5367119,0.0372843,98.7221706],[4.53671147,0.03728255,98.72317086],[4.53671103,0.0372808,98.72417088],[4.5367106,0.03727905,98.72517064],[4.53671017,0.0372773,98.72617015],[4.53670973,0.03727555,98.72716941],[4.5367093,0.03727381,98.72816844],[4.53670886,0.03727206,98.72916722],[4.53670843,0.03727031,98.73016576],[4.536708,0.03726856,98.73116407],[4.53670756,0.03726681,98.73216215],[4.53670713,0.03726506,98.73316],[4.53670669,0.03726331,98.73415763],[4.53670626,0.03726156,98.73515503],[4.53670583,0.03725981,98.73615221],[4.53670539,0.03725806,98.73714918],[4.53670496,0.03725631,98.73814593],[4.53670452,0.03725456,98.73914248],[4.53670409,0.03725281,98.74013881],[4.53670365,0.03725106,98.74113494],[4.53670322,0.03724932,98.74213087],[4.53670279,0.03724757,98.7431266],[4.53670235,0.03724582,98.74412213],[4.53670192,0.03724407,98.74511747],[4.53670148,0.03724232,98.74611261],[4.53670105,0.03724057,98.74710758],[4.53670061,0.03723882,98.74810235],[4.53670018,0.03723707,98.74909695],[4.53669974,0.03723532,98.75009136],[4.53669931,0.03723357,98.7510856],[4.53669887,0.03723182,98.75207968],[4.53669844,0.03723007,98.75307362],[4.53669801,0.03722833,98.75406745],[4.53669757,0.03722658,98.7550612],[4.53669714,0.03722483,98.75605489],[4.5366967,0.03722308,98.75704854],[4.53669627,0.03722133,98.75804217],[4.53669583,0.03721958,98.75903582],[4.5366954,0.03721783,98.76002949],[4.53669496,0.03721608,98.76102318],[4.53669453,0.03721433,98.76201688],[4.5366941,0.03721258,98.76301056],[4.53669366,0.03721083,98.76400421],[4.53669323,0.03720908,98.76499783],[4.53669279,0.03720733,98.76599138],[4.53669236,0.03720558,98.76698487],[4.53669193,0.03720384,98.76797828],[4.53669149,0.03720209,98.76897159],[4.53669106,0.03720034,98.76996478],[4.53669062,0.03719859,98.77095785],[4.53669019,0.03719684,98.77195078],[4.53668976,0.03719509,98.77294355],[4.53668932,0.03719334,98.77393616],[4.53668889,0.03719159,98.77492857],[4.53668846,0.03718984,98.77592079],[4.53668802,0.03718809,98.7769128],[4.53668759,0.03718634,98.77790458],[4.53668715,0.03718459,98.77889612],[4.53668672,0.03718284,98.7798874],[4.53668629,0.03718109,98.78087842],[4.53668585,0.03717934,98.78186914],[4.53668542,0.03717759,98.78285958],[4.53668499,0.03717585,98.78384969],[4.53668455,0.0371741,98.78483949],[4.53668412,0.03717235,98.78582894],[4.53668368,0.0371706,98.78681803],[4.53668325,0.03716885,98.78780676],[4.53668282,0.0371671,98.7887951],[4.53668238,0.03716535,98.78978304],[4.53668195,0.0371636,98.79077058],[4.53668151,0.03716185,98.79175768],[4.53668108,0.0371601,98.79274435],[4.53668064,0.03715835,98.79373056],[4.53668021,0.0371566,98.7947163],[4.53667978,0.03715485,98.79570156],[4.53667934,0.0371531,98.79668633],[4.53667891,0.03715136,98.79767058],[4.53667847,0.03714961,98.79865431],[4.53667804,0.03714786,98.7996375],[4.5366776,0.03714611,98.80062013],[4.53667717,0.03714436,98.8016022],[4.53667673,0.03714261,98.8025837],[4.5366763,0.03714086,98.80356466],[4.53667586,0.03713911,98.80454513],[4.53667543,0.03713736,98.80552515],[4.53667499,0.03713561,98.80650477],[4.53667455,0.03713387,98.80748404],[4.53667412,0.03713212,98.80846299],[4.53667368,0.03713037,98.80944163],[4.53667325,0.03712862,98.81041996],[4.53667281,0.03712687,98.81139799],[4.53667238,0.03712512,98.81237571],[4.53667194,0.03712337,98.81335312],[4.53667151,0.03712162,98.81433022],[4.53667107,0.03711987,98.81530703],[4.53667064,0.03711812,98.81628353],[4.5366702,0.03711638,98.81725973],[4.53666976,0.03711463,98.81823562],[4.53666933,0.03711288,98.81921122],[4.53666889,0.03711113,98.82018652],[4.53666846,0.03710938,98.82116152],[4.53666802,0.03710763,98.82213622],[4.53666759,0.03710588,98.82311063],[4.53666715,0.03710413,98.82408474],[4.53666672,0.03710238,98.82505855],[4.53666628,0.03710064,98.82603208],[4.53666585,0.03709889,98.82700531],[4.53666541,0.03709714,98.82797824],[4.53666498,0.03709539,98.82895089],[4.53666454,0.03709364,98.82992325],[4.53666411,0.03709189,98.83089531],[4.53666367,0.03709014,98.83186709],[4.53666323,0.03708839,98.83283858],[4.5366628,0.03708664,98.83380979],[4.53666236,0.03708489,98.83478071],[4.53666193,0.03708314,98.83575134],[4.53666149,0.0370814,98.83672169],[4.53666106,0.03707965,98.83769176],[4.53666062,0.0370779,98.83866155],[4.53666019,0.03707615,98.83963105],[4.53665975,0.0370744,98.84060028],[4.53665932,0.03707265,98.84156923],[4.53665888,0.0370709,98.8425379],[4.53665845,0.03706915,98.84350629],[4.53665802,0.0370674,98.84447441],[4.53665758,0.03706565,98.84544226],[4.53665715,0.0370639,98.84640983],[4.53665671,0.03706216,98.84737714],[4.53665628,0.03706041,98.84834417],[4.53665584,0.03705866,98.84931094],[4.53665541,0.03705691,98.85027745],[4.53665497,0.03705516,98.85124369],[4.53665454,0.03705341,98.85220967],[4.5366541,0.03705166,98.85317539],[4.53665367,0.03704991,98.85414085],[4.53665324,0.03704816,98.85510605],[4.5366528,0.03704641,98.856071],[4.53665237,0.03704466,98.8570357],[4.53665193,0.03704291,98.85800014],[4.5366515,0.03704116,98.85896432],[4.53665107,0.03703942,98.8599282],[4.53665063,0.03703767,98.86089175],[4.5366502,0.03703592,98.86185491],[4.53664976,0.03703417,98.86281764],[4.53664933,0.03703242,98.86377989],[4.5366489,0.03703067,98.86474163],[4.53664846,0.03702892,98.8657028],[4.53664803,0.03702717,98.86666336],[4.53664759,0.03702542,98.86762327],[4.53664716,0.03702367,98.86858253],[4.53664673,0.03702192,98.86954114],[4.53664629,0.03702017,98.87049911],[4.53664586,0.03701842,98.87145643],[4.53664542,0.03701667,98.87241311],[4.53664499,0.03701492,98.87336915],[4.53664455,0.03701318,98.87432457],[4.53664412,0.03701143,98.87527936],[4.53664368,0.03700968,98.87623353],[4.53664325,0.03700793,98.87718708],[4.53664282,0.03700618,98.87814001],[4.53664238,0.03700443,98.87909234],[4.53664195,0.03700268,98.88004406],[4.53664151,0.03700093,98.88099518],[4.53664108,0.03699918,98.88194571],[4.53664064,0.03699743,98.88289564],[4.53664021,0.03699568,98.88384498],[4.53663977,0.03699394,98.88479374],[4.53663934,0.03699219,98.88574192],[4.5366389,0.03699044,98.88668953],[4.53663846,0.03698869,98.88763656],[4.53663803,0.03698694,98.88858303],[4.53663759,0.03698519,98.88952893],[4.53663716,0.03698344,98.89047428],[4.53663672,0.03698169,98.89141907],[4.53663629,0.03697994,98.89236331],[4.53663585,0.03697819,98.89330701],[4.53663542,0.03697644,98.89425016],[4.53663498,0.0369747,98.89519277],[4.53663455,0.03697295,98.89613483],[4.53663411,0.0369712,98.89707633],[4.53663368,0.03696945,98.89801728],[4.53663324,0.0369677,98.89895768],[4.53663281,0.03696595,98.89989752],[4.53663237,0.0369642,98.9008368],[4.53663193,0.03696245,98.90177552],[4.5366315,0.0369607,98.90271368],[4.53663106,0.03695896,98.90365127],[4.53663063,0.03695721,98.90458829],[4.53663019,0.03695546,98.90552474],[4.53662976,0.03695371,98.90646062],[4.53662932,0.03695196,98.90739592],[4.53662889,0.03695021,98.90833065],[4.53662845,0.03694846,98.9092648],[4.53662801,0.03694671,98.91019837],[4.53662758,0.03694496,98.91113136],[4.53662714,0.03694321,98.91206376],[4.53662671,0.03694147,98.91299557],[4.53662627,0.03693972,98.91392679],[4.53662584,0.03693797,98.91485743],[4.5366254,0.03693622,98.91578747],[4.53662496,0.03693447,98.91671691],[4.53662453,0.03693272,98.91764576],[4.53662409,0.03693097,98.918574],[4.53662366,0.03692922,98.91950165],[4.53662322,0.03692747,98.92042869],[4.53662279,0.03692573,98.92135512],[4.53662235,0.03692398,98.92228095],[4.53662191,0.03692223,98.92320616],[4.53662148,0.03692048,98.92413076],[4.53662104,0.03691873,98.92505475],[4.53662061,0.03691698,98.92597812],[4.53662017,0.03691523,98.92690087],[4.53661973,0.03691348,98.927823],[4.5366193,0.03691173,98.92874451],[4.53661886,0.03690999,98.92966539],[4.53661843,0.03690824,98.93058565],[4.53661799,0.03690649,98.93150527],[4.53661755,0.03690474,98.93242426],[4.53661712,0.03690299,98.93334262],[4.53661668,0.03690124,98.93426035],[4.53661625,0.03689949,98.93517743],[4.53661581,0.03689774,98.93609388],[4.53661537,0.036896,98.93700968],[4.53661494,0.03689425,98.93792484],[4.5366145,0.0368925,98.93883935],[4.53661406,0.03689075,98.93975321],[4.53661363,0.036889,98.94066642],[4.53661319,0.03688725,98.94157897],[4.53661276,0.0368855,98.94249083],[4.53661232,0.03688375,98.94340195],[4.53661188,0.03688201,98.94431229],[4.53661145,0.03688026,98.9452218],[4.53661101,0.03687851,98.94613046],[4.53661057,0.03687676,98.9470382],[4.53661014,0.03687501,98.94794499],[4.5366097,0.03687326,98.94885079],[4.53660926,0.03687151,98.94975555],[4.53660883,0.03686976,98.95065923],[4.53660839,0.03686802,98.9515618],[4.53660795,0.03686627,98.95246326],[4.53660751,0.03686452,98.95336361],[4.53660707,0.03686277,98.95426285],[4.53660664,0.03686102,98.95516099],[4.5366062,0.03685927,98.95605805],[4.53660576,0.03685753,98.95695402],[4.53660532,0.03685578,98.95784891],[4.53660488,0.03685403,98.95874273],[4.53660444,0.03685228,98.95963549],[4.536604,0.03685053,98.96052718],[4.53660357,0.03684879,98.96141782],[4.53660313,0.03684704,98.96230741],[4.53660269,0.03684529,98.96319596],[4.53660225,0.03684354,98.96408348],[4.53660181,0.03684179,98.96496998],[4.53660137,0.03684005,98.96585546],[4.53660093,0.0368383,98.96673994],[4.53660049,0.03683655,98.96762343],[4.53660005,0.0368348,98.96850593],[4.53659961,0.03683305,98.96938745],[4.53659917,0.03683131,98.97026801],[4.53659873,0.03682956,98.97114761],[4.53659829,0.03682781,98.97202627],[4.53659784,0.03682606,98.97290398],[4.5365974,0.03682432,98.97378077],[4.53659696,0.03682257,98.97465664],[4.53659652,0.03682082,98.97553159],[4.53659608,0.03681907,98.97640566],[4.53659564,0.03681733,98.97727885],[4.5365952,0.03681558,98.97815118],[4.53659476,0.03681383,98.97902269],[4.53659432,0.03681208,98.9798934],[4.53659387,0.03681034,98.98076332],[4.53659343,0.03680859,98.98163247],[4.53659299,0.03680684,98.98250089],[4.53659255,0.03680509,98.98336858],[4.53659211,0.03680335,98.98423558],[4.53659167,0.0368016,98.98510191],[4.53659123,0.03679985,98.98596758],[4.53659079,0.0367981,98.98683262],[4.53659034,0.03679636,98.98769705],[4.5365899,0.03679461,98.9885609],[4.53658946,0.03679286,98.98942418],[4.53658902,0.03679111,98.99028688],[4.53658858,0.03678937,98.99114897],[4.53658814,0.03678762,98.99201044],[4.5365877,0.03678587,98.99287127],[4.53658726,0.03678412,98.99373145],[4.53658682,0.03678238,98.99459094],[4.53658637,0.03678063,98.99544973],[4.53658593,0.03677888,98.99630781],[4.53658549,0.03677713,98.99716515],[4.53658505,0.03677538,98.99802173],[4.53658461,0.03677364,98.99887754],[4.53658417,0.03677189,98.99973256],[4.53658373,0.03677014,99.00058679],[4.53658329,0.03676839,99.00144026],[4.53658285,0.03676665,99.00229296],[4.53658241,0.0367649,99.00314492],[4.53658196,0.03676315,99.00399615],[4.53658152,0.0367614,99.00484665],[4.53658108,0.03675966,99.00569644],[4.53658064,0.03675791,99.00654553],[4.5365802,0.03675616,99.00739394],[4.53657976,0.03675441,99.00824167],[4.53657932,0.03675267,99.00908872],[4.53657888,0.03675092,99.00993507],[4.53657844,0.03674917,99.01078072],[4.536578,0.03674742,99.01162564],[4.53657756,0.03674568,99.01246983],[4.53657711,0.03674393,99.01331327],[4.53657667,0.03674218,99.01415595],[4.53657623,0.03674043,99.01499785],[4.53657579,0.03673869,99.01583897],[4.53657535,0.03673694,99.01667928],[4.53657491,0.03673519,99.01751877],[4.53657447,0.03673344,99.01835743],[4.53657403,0.03673169,99.01919526],[4.53657359,0.03672995,99.02003222],[4.53657315,0.0367282,99.02086833],[4.53657271,0.03672645,99.02170356],[4.53657226,0.0367247,99.02253791],[4.53657182,0.03672296,99.02337137],[4.53657138,0.03672121,99.02420393],[4.53657094,0.03671946,99.02503558],[4.5365705,0.03671771,99.02586631],[4.53657006,0.03671597,99.02669611],[4.53656962,0.03671422,99.02752497],[4.53656918,0.03671247,99.02835288],[4.53656874,0.03671072,99.02917983],[4.53656829,0.03670898,99.03000582],[4.53656785,0.03670723,99.03083083],[4.53656741,0.03670548,99.03165485],[4.53656697,0.03670373,99.03247787],[4.53656653,0.03670199,99.03329989],[4.53656609,0.03670024,99.03412089],[4.53656564,0.03669849,99.03494087],[4.5365652,0.03669674,99.03575981],[4.53656476,0.036695,99.0365777],[4.53656432,0.03669325,99.03739454],[4.53656388,0.0366915,99.03821032],[4.53656343,0.03668976,99.03902502],[4.53656299,0.03668801,99.03983864],[4.53656255,0.03668626,99.04065116],[4.53656211,0.03668451,99.04146258],[4.53656166,0.03668277,99.04227288],[4.53656122,0.03668102,99.04308206],[4.53656078,0.03667927,99.04389011],[4.53656034,0.03667752,99.04469701],[4.53655989,0.03667578,99.04550275],[4.53655945,0.03667403,99.04630733],[4.53655901,0.03667228,99.04711074],[4.53655856,0.03667054,99.04791295],[4.53655812,0.03666879,99.04871396],[4.53655768,0.03666704,99.04951376],[4.53655723,0.0366653,99.05031234],[4.53655679,0.03666355,99.05110969],[4.53655634,0.0366618,99.05190579],[4.5365559,0.03666006,99.05270063],[4.53655546,0.03665831,99.0534942],[4.53655501,0.03665656,99.05428651],[4.53655457,0.03665482,99.05507757],[4.53655412,0.03665307,99.0558674],[4.53655368,0.03665132,99.05665604],[4.53655323,0.03664958,99.0574435],[4.53655279,0.03664783,99.05822981],[4.53655234,0.03664608,99.05901499],[4.5365519,0.03664434,99.05979907],[4.53655145,0.03664259,99.06058207],[4.53655101,0.03664084,99.06136404],[4.53655056,0.0366391,99.062145],[4.53655012,0.03663735,99.06292498],[4.53654967,0.0366356,99.06370401],[4.53654923,0.03663386,99.06448214],[4.53654878,0.03663211,99.06525938],[4.53654834,0.03663036,99.06603578],[4.53654789,0.03662862,99.06681134],[4.53654745,0.03662687,99.06758608],[4.536547,0.03662512,99.06836003],[4.53654656,0.03662338,99.06913318],[4.53654611,0.03662163,99.06990556],[4.53654567,0.03661988,99.07067719],[4.53654522,0.03661814,99.07144808],[4.53654478,0.03661639,99.07221826],[4.53654433,0.03661464,99.07298774],[4.53654389,0.0366129,99.07375656],[4.53654344,0.03661115,99.07452474],[4.536543,0.0366094,99.07529228],[4.53654255,0.03660766,99.07605917],[4.53654211,0.03660591,99.07682543],[4.53654166,0.03660416,99.07759103],[4.53654122,0.03660242,99.07835599],[4.53654078,0.03660067,99.07912029],[4.53654033,0.03659892,99.07988393],[4.53653989,0.03659718,99.08064691],[4.53653944,0.03659543,99.08140923],[4.536539,0.03659368,99.08217087],[4.53653856,0.03659194,99.08293184],[4.53653811,0.03659019,99.08369213],[4.53653767,0.03658844,99.08445175],[4.53653723,0.0365867,99.08521067],[4.53653678,0.03658495,99.08596891],[4.53653634,0.0365832,99.08672645],[4.53653589,0.03658145,99.0874833],[4.53653545,0.03657971,99.08823944],[4.53653501,0.03657796,99.08899488],[4.53653456,0.03657621,99.08974962],[4.53653412,0.03657447,99.09050364],[4.53653368,0.03657272,99.09125694],[4.53653323,0.03657097,99.09200952],[4.53653279,0.03656923,99.09276137],[4.53653235,0.03656748,99.0935125],[4.5365319,0.03656573,99.09426289],[4.53653146,0.03656398,99.09501255],[4.53653102,0.03656224,99.09576146],[4.53653057,0.03656049,99.09650963],[4.53653013,0.03655874,99.09725705],[4.53652969,0.036557,99.09800371],[4.53652924,0.03655525,99.09874962],[4.5365288,0.0365535,99.09949476],[4.53652835,0.03655176,99.10023913],[4.53652791,0.03655001,99.10098274],[4.53652747,0.03654826,99.10172557],[4.53652702,0.03654652,99.10246761],[4.53652658,0.03654477,99.10320888],[4.53652614,0.03654302,99.10394935],[4.53652569,0.03654127,99.10468903],[4.53652525,0.03653953,99.10542791],[4.53652481,0.03653778,99.10616599],[4.53652436,0.03653603,99.10690327],[4.53652392,0.03653429,99.10763973],[4.53652347,0.03653254,99.10837537],[4.53652303,0.03653079,99.1091102],[4.53652259,0.03652905,99.1098442],[4.53652214,0.0365273,99.11057737],[4.5365217,0.03652555,99.1113097],[4.53652125,0.03652381,99.1120412],[4.53652081,0.03652206,99.11277185],[4.53652036,0.03652031,99.11350165],[4.53651992,0.03651857,99.1142306],[4.53651947,0.03651682,99.11495869],[4.53651903,0.03651507,99.11568591],[4.53651859,0.03651333,99.11641227],[4.53651814,0.03651158,99.11713776],[4.5365177,0.03650983,99.11786237],[4.53651725,0.03650809,99.11858609],[4.53651681,0.03650634,99.11930893],[4.53651636,0.03650459,99.12003087],[4.53651591,0.03650285,99.12075192],[4.53651547,0.0365011,99.12147206],[4.53651502,0.03649935,99.1221913],[4.53651458,0.03649761,99.12290962],[4.53651413,0.03649586,99.12362702],[4.53651394,0.03649512,99.12393018],[4.53653058,0.03649083,99.17552414],[4.53653077,0.03649157,99.17520657],[4.53653121,0.03649332,99.17445528],[4.53653166,0.03649507,99.1737033],[4.5365321,0.03649681,99.17295065],[4.53653255,0.03649856,99.17219732],[4.53653299,0.03650031,99.17144331],[4.53653344,0.03650205,99.17068862],[4.53653389,0.0365038,99.16993325],[4.53653433,0.03650555,99.1691772],[4.53653478,0.03650729,99.16842048],[4.53653522,0.03650904,99.16766306],[4.53653567,0.03651079,99.16690497],[4.53653611,0.03651253,99.1661462],[4.53653656,0.03651428,99.16538674],[4.536537,0.03651603,99.1646266],[4.53653745,0.03651777,99.16386578],[4.53653789,0.03651952,99.16310427],[4.53653834,0.03652127,99.16234208],[4.53653878,0.03652301,99.1615792],[4.53653923,0.03652476,99.16081564],[4.53653967,0.03652651,99.16005139],[4.53654012,0.03652825,99.15928645],[4.53654056,0.03653,99.15852083],[4.53654101,0.03653175,99.15775451],[4.53654145,0.03653349,99.15698751],[4.5365419,0.03653524,99.15621982],[4.53654234,0.03653699,99.15545144],[4.53654279,0.03653873,99.15468237],[4.53654323,0.03654048,99.15391261],[4.53654368,0.03654223,99.15314216],[4.53654412,0.03654398,99.15237102],[4.53654457,0.03654572,99.15159918],[4.53654501,0.03654747,99.15082665],[4.53654546,0.03654922,99.15005343],[4.5365459,0.03655096,99.14927951],[4.53654635,0.03655271,99.14850489],[4.53654679,0.03655446,99.14772958],[4.53654724,0.0365562,99.14695358],[4.53654768,0.03655795,99.14617687],[4.53654812,0.0365597,99.14539947],[4.53654857,0.03656144,99.14462137],[4.53654901,0.03656319,99.14384257],[4.53654946,0.03656494,99.14306307],[4.5365499,0.03656669,99.14228287],[4.53655035,0.03656843,99.14150196],[4.53655079,0.03657018,99.14072036],[4.53655123,0.03657193,99.13993805],[4.53655168,0.03657367,99.13915504],[4.53655212,0.03657542,99.13837132],[4.53655257,0.03657717,99.1375869],[4.53655301,0.03657891,99.13680177],[4.53655346,0.03658066,99.13601593],[4.5365539,0.03658241,99.13522939],[4.53655434,0.03658416,99.13444214],[4.53655479,0.0365859,99.13365418],[4.53655523,0.03658765,99.13286551],[4.53655568,0.0365894,99.13207613],[4.53655612,0.03659114,99.13128604],[4.53655657,0.03659289,99.13049524],[4.53655701,0.03659464,99.12970372],[4.53655745,0.03659638,99.12891149],[4.5365579,0.03659813,99.12811854],[4.53655834,0.03659988,99.12732488],[4.53655879,0.03660163,99.1265305],[4.53655923,0.03660337,99.12573541],[4.53655967,0.03660512,99.1249396],[4.53656012,0.03660687,99.12414306],[4.53656056,0.03660861,99.12334581],[4.53656101,0.03661036,99.12254783],[4.53656145,0.03661211,99.12174908],[4.5365619,0.03661386,99.12094955],[4.53656234,0.0366156,99.1201492],[4.53656278,0.03661735,99.11934801],[4.53656323,0.0366191,99.11854596],[4.53656367,0.03662084,99.11774302],[4.53656412,0.03662259,99.11693916],[4.53656456,0.03662434,99.11613438],[4.536565,0.03662608,99.11532864],[4.53656545,0.03662783,99.11452193],[4.53656589,0.03662958,99.11371422],[4.53656633,0.03663133,99.1129055],[4.53656678,0.03663307,99.11209574],[4.53656722,0.03663482,99.11128492],[4.53656766,0.03663657,99.11047303],[4.53656811,0.03663831,99.10966003],[4.53656855,0.03664006,99.10884592],[4.53656899,0.03664181,99.10803066],[4.53656944,0.03664356,99.10721425],[4.53656988,0.0366453,99.10639666],[4.53657032,0.03664705,99.10557789],[4.53657076,0.0366488,99.10475792],[4.53657121,0.03665055,99.10393674],[4.53657165,0.03665229,99.10311433],[4.53657209,0.03665404,99.10229069],[4.53657253,0.03665579,99.1014658],[4.53657297,0.03665754,99.10063968],[4.53657341,0.03665929,99.09981234],[4.53657385,0.03666103,99.09898382],[4.5365743,0.03666278,99.09815412],[4.53657474,0.03666453,99.09732328],[4.53657518,0.03666628,99.09649132],[4.53657562,0.03666802,99.09565825],[4.53657606,0.03666977,99.09482411],[4.5365765,0.03667152,99.09398891],[4.53657694,0.03667327,99.09315268],[4.53657738,0.03667502,99.09231543],[4.53657782,0.03667677,99.09147719],[4.53657826,0.03667851,99.09063798],[4.5365787,0.03668026,99.08979783],[4.53657914,0.03668201,99.08895675],[4.53657958,0.03668376,99.08811476],[4.53658001,0.03668551,99.08727188],[4.53658045,0.03668725,99.08642814],[4.53658089,0.036689,99.08558355],[4.53658133,0.03669075,99.08473814],[4.53658177,0.0366925,99.08389192],[4.53658221,0.03669425,99.08304492],[4.53658265,0.036696,99.08219715],[4.53658309,0.03669774,99.08134864],[4.53658353,0.03669949,99.08049941],[4.53658397,0.03670124,99.07964948],[4.53658441,0.03670299,99.07879886],[4.53658485,0.03670474,99.07794758],[4.53658528,0.03670649,99.07709566],[4.53658572,0.03670823,99.07624312],[4.53658616,0.03670998,99.07538998],[4.5365866,0.03671173,99.07453625],[4.53658704,0.03671348,99.07368197],[4.53658748,0.03671523,99.07282714],[4.53658792,0.03671698,99.0719718],[4.53658836,0.03671872,99.07111595],[4.5365888,0.03672047,99.07025962],[4.53658924,0.03672222,99.06940283],[4.53658968,0.03672397,99.0685456],[4.53659012,0.03672572,99.06768794],[4.53659056,0.03672747,99.06682989],[4.536591,0.03672921,99.06597146],[4.53659144,0.03673096,99.06511266],[4.53659188,0.03673271,99.06425353],[4.53659232,0.03673446,99.06339408],[4.53659276,0.03673621,99.06253435],[4.5365932,0.03673795,99.06167435],[4.53659364,0.0367397,99.0608141],[4.53659408,0.03674145,99.05995365],[4.53659452,0.0367432,99.05909299],[4.53659496,0.03674495,99.05823217],[4.5365954,0.03674669,99.0573712],[4.53659584,0.03674844,99.05651011],[4.53659628,0.03675019,99.05564892],[4.53659672,0.03675194,99.05478765],[4.53659717,0.03675368,99.05392633],[4.53659761,0.03675543,99.05306494],[4.53659805,0.03675718,99.0522035],[4.53659849,0.03675893,99.05134199],[4.53659893,0.03676067,99.05048042],[4.53659938,0.03676242,99.04961879],[4.53659982,0.03676417,99.04875708],[4.53660026,0.03676592,99.04789531],[4.53660071,0.03676766,99.04703346],[4.53660115,0.03676941,99.04617154],[4.53660159,0.03677116,99.04530954],[4.53660204,0.0367729,99.04444747],[4.53660248,0.03677465,99.04358532],[4.53660293,0.0367764,99.04272309],[4.53660337,0.03677815,99.04186077],[4.53660381,0.03677989,99.04099837],[4.53660426,0.03678164,99.04013589],[4.5366047,0.03678339,99.03927331],[4.53660515,0.03678513,99.03841065],[4.53660559,0.03678688,99.0375479],[4.53660604,0.03678863,99.03668506],[4.53660649,0.03679037,99.03582212],[4.53660693,0.03679212,99.03495907],[4.53660738,0.03679387,99.03409589],[4.53660782,0.03679561,99.03323253],[4.53660827,0.03679736,99.03236894],[4.53660872,0.03679911,99.03150509],[4.53660916,0.03680085,99.03064092],[4.53660961,0.0368026,99.0297764],[4.53661006,0.03680434,99.02891149],[4.5366105,0.03680609,99.02804613],[4.53661095,0.03680784,99.0271803],[4.5366114,0.03680958,99.02631394],[4.53661184,0.03681133,99.02544701],[4.53661229,0.03681308,99.02457947],[4.53661274,0.03681482,99.02371128],[4.53661318,0.03681657,99.0228424],[4.53661363,0.03681832,99.02197278],[4.53661408,0.03682006,99.02110239],[4.53661452,0.03682181,99.0202312],[4.53661497,0.03682355,99.01935917],[4.53661541,0.0368253,99.01848628],[4.53661586,0.03682705,99.0176125],[4.53661631,0.03682879,99.0167378],[4.53661675,0.03683054,99.01586215],[4.5366172,0.03683229,99.01498551],[4.53661764,0.03683403,99.01410787],[4.53661809,0.03683578,99.01322918],[4.53661853,0.03683753,99.01234943],[4.53661898,0.03683927,99.01146857],[4.53661942,0.03684102,99.01058659],[4.53661987,0.03684277,99.00970344],[4.53662031,0.03684452,99.00881911],[4.53662076,0.03684626,99.00793356],[4.5366212,0.03684801,99.00704677],[4.53662164,0.03684976,99.00615871],[4.53662209,0.0368515,99.00526936],[4.53662253,0.03685325,99.00437868],[4.53662297,0.036855,99.00348666],[4.53662341,0.03685675,99.00259326],[4.53662386,0.03685849,99.00169846],[4.5366243,0.03686024,99.00080224],[4.53662474,0.03686199,98.99990456],[4.53662518,0.03686374,98.9990054],[4.53662562,0.03686549,98.99810474],[4.53662606,0.03686723,98.99720255],[4.5366265,0.03686898,98.99629886],[4.53662694,0.03687073,98.99539368],[4.53662738,0.03687248,98.99448703],[4.53662782,0.03687423,98.99357894],[4.53662826,0.03687597,98.99266943],[4.5366287,0.03687772,98.99175852],[4.53662913,0.03687947,98.99084624],[4.53662957,0.03688122,98.98993261],[4.53663001,0.03688297,98.98901764],[4.53663045,0.03688472,98.98810137],[4.53663088,0.03688647,98.98718382],[4.53663132,0.03688822,98.986265],[4.53663175,0.03688996,98.98534493],[4.53663219,0.03689171,98.98442365],[4.53663263,0.03689346,98.98350118],[4.53663306,0.03689521,98.98257753],[4.5366335,0.03689696,98.98165272],[4.53663393,0.03689871,98.98072679],[4.53663437,0.03690046,98.97979975],[4.5366348,0.03690221,98.97887162],[4.53663524,0.03690396,98.97794243],[4.53663567,0.03690571,98.9770122],[4.5366361,0.03690746,98.97608095],[4.53663654,0.03690921,98.9751487],[4.53663697,0.03691096,98.97421547],[4.5366374,0.03691271,98.97328129],[4.53663784,0.03691446,98.97234618],[4.53663827,0.03691621,98.97141017],[4.5366387,0.03691796,98.97047326],[4.53663914,0.03691971,98.96953549],[4.53663957,0.03692146,98.96859687],[4.53664,0.03692321,98.96765744],[4.53664043,0.03692496,98.9667172],[4.53664087,0.03692671,98.96577619],[4.5366413,0.03692846,98.96483442],[4.53664173,0.03693021,98.96389192],[4.53664216,0.03693196,98.96294871],[4.53664259,0.03693371,98.96200481],[4.53664303,0.03693546,98.96106023],[4.53664346,0.03693721,98.96011502],[4.53664389,0.03693896,98.95916918],[4.53664432,0.03694071,98.95822274],[4.53664475,0.03694246,98.95727571],[4.53664518,0.03694421,98.95632813],[4.53664561,0.03694596,98.95538002],[4.53664605,0.03694771,98.95443138],[4.53664648,0.03694946,98.95348226],[4.53664691,0.03695121,98.95253267],[4.53664734,0.03695296,98.95158262],[4.53664777,0.03695471,98.95063215],[4.5366482,0.03695646,98.94968128],[4.53664863,0.03695821,98.94873002],[4.53664907,0.03695996,98.9477784],[4.5366495,0.03696171,98.94682644],[4.53664993,0.03696346,98.94587416],[4.53665036,0.03696521,98.94492159],[4.53665079,0.03696696,98.94396874],[4.53665122,0.03696871,98.94301564],[4.53665165,0.03697046,98.94206231],[4.53665209,0.03697221,98.94110877],[4.53665252,0.03697396,98.94015505],[4.53665295,0.03697571,98.93920116],[4.53665338,0.03697746,98.93824713],[4.53665381,0.03697921,98.93729296],[4.53665425,0.03698096,98.93633868],[4.53665468,0.03698271,98.9353843],[4.53665511,0.03698446,98.93442984],[4.53665554,0.03698621,98.93347531],[4.53665597,0.03698796,98.93252073],[4.53665641,0.03698971,98.93156611],[4.53665684,0.03699146,98.93061146],[4.53665727,0.03699321,98.92965682],[4.53665771,0.03699496,98.92870218],[4.53665814,0.03699671,98.92774757],[4.53665857,0.03699846,98.92679299],[4.53665901,0.03700021,98.92583848],[4.53665944,0.03700196,98.92488403],[4.53665987,0.03700371,98.92392968],[4.53666031,0.03700546,98.92297542],[4.53666074,0.03700721,98.92202129],[4.53666118,0.03700896,98.92106729],[4.53666161,0.03701071,98.92011344],[4.53666205,0.03701246,98.91915976],[4.53666248,0.03701421,98.91820625],[4.53666292,0.03701596,98.91725295],[4.53666335,0.03701771,98.91629985],[4.53666379,0.03701945,98.91534699],[4.53666422,0.0370212,98.91439437],[4.53666466,0.03702295,98.91344201],[4.53666509,0.0370247,98.91248994],[4.53666553,0.03702645,98.91153816],[4.53666597,0.0370282,98.91058671],[4.5366664,0.03702995,98.90963559],[4.53666684,0.0370317,98.90868483],[4.53666728,0.03703345,98.90773445],[4.53666772,0.03703519,98.90678446],[4.53666816,0.03703694,98.90583488],[4.53666859,0.03703869,98.90488574],[4.53666903,0.03704044,98.90393704],[4.53666947,0.03704219,98.90298876],[4.53666991,0.03704394,98.90204088],[4.53667035,0.03704569,98.90109336],[4.53667079,0.03704743,98.90014619],[4.53667123,0.03704918,98.89919933],[4.53667167,0.03705093,98.89825275],[4.53667211,0.03705268,98.89730643],[4.53667255,0.03705443,98.89636035],[4.53667299,0.03705617,98.89541446],[4.53667343,0.03705792,98.89446875],[4.53667387,0.03705967,98.89352319],[4.53667431,0.03706142,98.89257775],[4.53667475,0.03706316,98.8916324],[4.53667519,0.03706491,98.89068711],[4.53667564,0.03706666,98.88974186],[4.53667608,0.03706841,98.88879663],[4.53667652,0.03707016,98.88785137],[4.53667696,0.0370719,98.88690607],[4.5366774,0.03707365,98.88596069],[4.53667784,0.0370754,98.88501522],[4.53667829,0.03707715,98.88406961],[4.53667873,0.03707889,98.88312386],[4.53667917,0.03708064,98.88217792],[4.53667961,0.03708239,98.88123178],[4.53668005,0.03708414,98.8802854],[4.5366805,0.03708588,98.87933875],[4.53668094,0.03708763,98.87839182],[4.53668138,0.03708938,98.87744457],[4.53668182,0.03709113,98.87649698],[4.53668226,0.03709287,98.87554901],[4.53668271,0.03709462,98.87460065],[4.53668315,0.03709637,98.87365187],[4.53668359,0.03709812,98.87270263],[4.53668403,0.03709986,98.87175291],[4.53668447,0.03710161,98.87080268],[4.53668492,0.03710336,98.86985192],[4.53668536,0.03710511,98.8689006],[4.5366858,0.03710685,98.86794869],[4.53668624,0.0371086,98.86699617],[4.53668668,0.03711035,98.866043],[4.53668712,0.0371121,98.86508916],[4.53668756,0.03711385,98.86413463],[4.536688,0.03711559,98.86317936],[4.53668844,0.03711734,98.86222335],[4.53668888,0.03711909,98.86126655],[4.53668932,0.03712084,98.86030895],[4.53668976,0.03712259,98.85935051],[4.5366902,0.03712433,98.85839121],[4.53669064,0.03712608,98.85743102],[4.53669108,0.03712783,98.85646991],[4.53669152,0.03712958,98.85550786],[4.53669196,0.03713133,98.85454484],[4.5366924,0.03713308,98.85358081],[4.53669284,0.03713482,98.85261576],[4.53669327,0.03713657,98.85164965],[4.53669371,0.03713832,98.85068245],[4.53669415,0.03714007,98.84971415],[4.53669458,0.03714182,98.84874472],[4.53669502,0.03714357,98.84777418],[4.53669546,0.03714532,98.84680256],[4.53669589,0.03714707,98.8458299],[4.53669633,0.03714882,98.84485623],[4.53669676,0.03715056,98.84388158],[4.5366972,0.03715231,98.84290597],[4.53669763,0.03715406,98.84192946],[4.53669807,0.03715581,98.84095205],[4.5366985,0.03715756,98.83997379],[4.53669894,0.03715931,98.83899471],[4.53669937,0.03716106,98.83801484],[4.5366998,0.03716281,98.83703421],[4.53670024,0.03716456,98.83605286],[4.53670067,0.03716631,98.83507081],[4.5367011,0.03716806,98.83408809],[4.53670154,0.03716981,98.83310475],[4.53670197,0.03717156,98.83212081],[4.5367024,0.03717331,98.83113629],[4.53670283,0.03717506,98.83015125],[4.53670327,0.03717681,98.8291657],[4.5367037,0.03717856,98.82817967],[4.53670413,0.03718031,98.82719321],[4.53670456,0.03718206,98.82620634],[4.536705,0.03718381,98.8252191],[4.53670543,0.03718556,98.82423151],[4.53670586,0.03718731,98.82324361],[4.53670629,0.03718906,98.82225543],[4.53670672,0.03719081,98.821267],[4.53670716,0.03719256,98.82027836],[4.53670759,0.03719431,98.81928953],[4.53670802,0.03719606,98.81830056],[4.53670845,0.03719781,98.81731146],[4.53670888,0.03719956,98.81632228],[4.53670931,0.03720131,98.81533304],[4.53670975,0.03720306,98.81434379],[4.53671018,0.03720481,98.81335454],[4.53671061,0.03720656,98.81236533],[4.53671104,0.03720831,98.8113762],[4.53671147,0.03721006,98.81038718],[4.53671191,0.03721181,98.8093983],[4.53671234,0.03721356,98.80840959],[4.53671277,0.03721531,98.80742109],[4.5367132,0.03721706,98.80643281],[4.53671364,0.03721881,98.80544477],[4.53671407,0.03722056,98.80445696],[4.5367145,0.03722231,98.80346937],[4.53671493,0.03722406,98.802482],[4.53671537,0.03722581,98.80149484],[4.5367158,0.03722756,98.80050789],[4.53671623,0.03722931,98.79952113],[4.53671667,0.03723106,98.79853456],[4.5367171,0.03723281,98.79754817],[4.53671754,0.03723456,98.79656195],[4.53671797,0.03723631,98.7955759],[4.5367184,0.03723806,98.79459002],[4.53671884,0.03723981,98.79360428],[4.53671927,0.03724156,98.79261868],[4.5367197,0.03724331,98.79163323],[4.53672014,0.03724506,98.7906479],[4.53672057,0.03724681,98.78966269],[4.53672101,0.03724856,98.7886776],[4.53672144,0.0372503,98.78769262],[4.53672188,0.03725205,98.78670774],[4.53672231,0.0372538,98.78572295],[4.53672274,0.03725555,98.78473824],[4.53672318,0.0372573,98.78375361],[4.53672361,0.03725905,98.78276905],[4.53672405,0.0372608,98.78178455],[4.53672448,0.03726255,98.78080011],[4.53672492,0.0372643,98.77981571],[4.53672535,0.03726605,98.77883135],[4.53672579,0.0372678,98.77784703],[4.53672622,0.03726955,98.77686273],[4.53672666,0.0372713,98.77587844],[4.53672709,0.03727305,98.77489417],[4.53672752,0.0372748,98.7739099],[4.53672796,0.03727655,98.77292562],[4.53672839,0.0372783,98.77194133],[4.53672883,0.03728004,98.77095702],[4.53672926,0.03728179,98.76997268],[4.5367297,0.03728354,98.7689883],[4.53673013,0.03728529,98.76800389],[4.53673057,0.03728704,98.76701943],[4.536731,0.03728879,98.76603492],[4.53673144,0.03729054,98.76505035],[4.53673187,0.03729229,98.76406571],[4.53673231,0.03729404,98.763081],[4.53673274,0.03729579,98.7620962],[4.53673318,0.03729754,98.76111133],[4.53673361,0.03729929,98.76012636],[4.53673404,0.03730104,98.75914129],[4.53673448,0.03730279,98.75815611],[4.53673491,0.03730454,98.75717083],[4.53673535,0.03730629,98.75618542],[4.53673578,0.03730804,98.75519989],[4.53673622,0.03730978,98.75421423],[4.53673665,0.03731153,98.75322842],[4.53673709,0.03731328,98.75224247],[4.53673752,0.03731503,98.75125637],[4.53673795,0.03731678,98.75027011],[4.53673839,0.03731853,98.74928369],[4.53673882,0.03732028,98.74829709],[4.53673925,0.03732203,98.74731031],[4.53673969,0.03732378,98.74632335],[4.53674012,0.03732553,98.74533619],[4.53674056,0.03732728,98.74434883],[4.53674099,0.03732903,98.74336127],[4.53674142,0.03733078,98.7423735],[4.53674186,0.03733253,98.74138551],[4.53674229,0.03733428,98.74039732],[4.53674272,0.03733603,98.73940895],[4.53674316,0.03733778,98.73842039],[4.53674359,0.03733953,98.73743167],[4.53674402,0.03734128,98.7364428],[4.53674445,0.03734303,98.73545377],[4.53674489,0.03734478,98.73446461],[4.53674532,0.03734653,98.73347533],[4.53674575,0.03734828,98.73248594],[4.53674618,0.03735003,98.73149644],[4.53674662,0.03735178,98.73050686],[4.53674705,0.03735353,98.72951719],[4.53674748,0.03735528,98.72852745],[4.53674791,0.03735703,98.72753766],[4.53674835,0.03735878,98.72654782],[4.53674878,0.03736053,98.72555794],[4.53674921,0.03736228,98.72456804],[4.53674964,0.03736403,98.72357813],[4.53675008,0.03736578,98.72258821],[4.53675051,0.03736753,98.7215983],[4.53675094,0.03736928,98.72060841],[4.53675137,0.03737103,98.71961855],[4.5367518,0.03737278,98.71862874],[4.53675224,0.03737453,98.71763897],[4.53675267,0.03737628,98.71664927],[4.5367531,0.03737803,98.71565964],[4.53675353,0.03737978,98.71467008],[4.53675396,0.03738153,98.71368058],[4.5367544,0.03738328,98.71269116],[4.53675483,0.03738503,98.71170181],[4.53675526,0.03738678,98.71071253],[4.53675569,0.03738853,98.70972333],[4.53675612,0.03739028,98.7087342],[4.53675656,0.03739203,98.70774516],[4.53675699,0.03739378,98.70675619],[4.53675742,0.03739553,98.70576729],[4.53675785,0.03739728,98.70477848],[4.53675828,0.03739903,98.70378976],[4.53675871,0.03740078,98.70280111],[4.53675915,0.03740253,98.70181255],[4.53675958,0.03740428,98.70082407],[4.53676001,0.03740603,98.69983568],[4.53676044,0.03740778,98.69884738],[4.53676087,0.03740953,98.69785917],[4.53676131,0.03741128,98.69687104],[4.53676174,0.03741303,98.69588301],[4.53676217,0.03741478,98.69489508],[4.5367626,0.03741653,98.69390727],[4.53676303,0.03741828,98.69291958],[4.53676346,0.03742003,98.69193203],[4.53676389,0.03742178,98.69094463],[4.53676433,0.03742353,98.68995739],[4.53676476,0.03742528,98.68897032],[4.53676519,0.03742703,98.68798344],[4.53676562,0.03742878,98.68699676],[4.53676605,0.03743053,98.68601029],[4.53676648,0.03743228,98.68502403],[4.53676692,0.03743403,98.68403799],[4.53676735,0.03743578,98.68305214],[4.53676778,0.03743753,98.68206649],[4.53676821,0.03743928,98.68108102],[4.53676864,0.03744103,98.68009572],[4.53676907,0.03744278,98.67911058],[4.5367695,0.03744453,98.67812559],[4.53676994,0.03744628,98.67714075],[4.53677037,0.03744803,98.67615604],[4.5367708,0.03744978,98.67517145],[4.53677123,0.03745153,98.67418697],[4.53677166,0.03745328,98.67320259],[4.53677209,0.03745503,98.67221831],[4.53677253,0.03745678,98.6712341],[4.53677296,0.03745853,98.67024997],[4.53677339,0.03746028,98.6692659],[4.53677382,0.03746203,98.66828189],[4.53677425,0.03746378,98.66729794],[4.53677468,0.03746553,98.66631406],[4.53677511,0.03746728,98.66533025],[4.53677554,0.03746903,98.66434653],[4.53677597,0.03747078,98.66336289],[4.5367764,0.03747253,98.66237935],[4.53677684,0.03747428,98.6613959],[4.53677727,0.03747603,98.66041257],[4.5367777,0.03747778,98.65942934],[4.53677813,0.03747953,98.65844624],[4.53677856,0.03748129,98.65746327],[4.53677899,0.03748304,98.65648042],[4.53677942,0.03748479,98.65549772],[4.53677985,0.03748654,98.65451516],[4.53678028,0.03748829,98.65353276],[4.53678071,0.03749004,98.65255051],[4.53678114,0.03749179,98.65156843],[4.53678157,0.03749354,98.65058652],[4.536782,0.03749529,98.64960479],[4.53678243,0.03749704,98.64862324],[4.53678286,0.03749879,98.64764189],[4.53678329,0.03750054,98.64666073],[4.53678372,0.03750229,98.64567978],[4.53678415,0.03750404,98.64469904],[4.53678458,0.03750579,98.64371852],[4.53678501,0.03750754,98.64273822],[4.53678544,0.03750929,98.64175815],[4.53678588,0.03751104,98.64077832],[4.53678631,0.03751279,98.63979873],[4.53678674,0.03751455,98.63881939],[4.53678717,0.0375163,98.63784031],[4.5367876,0.03751805,98.6368615],[4.53678803,0.0375198,98.63588295],[4.53678846,0.03752155,98.63490468],[4.53678889,0.0375233,98.6339267],[4.53678932,0.03752505,98.632949],[4.53678975,0.0375268,98.6319716],[4.53679018,0.03752855,98.63099451],[4.53679061,0.0375303,98.63001772],[4.53679104,0.03753205,98.62904125],[4.53679147,0.0375338,98.6280651],[4.5367919,0.03753555,98.62708929],[4.53679233,0.0375373,98.62611381],[4.53679276,0.03753905,98.62513867],[4.53679319,0.0375408,98.62416388],[4.53679362,0.03754255,98.62318945],[4.53679405,0.0375443,98.62221538],[4.53679448,0.03754606,98.62124168],[4.53679491,0.03754781,98.62026836],[4.53679534,0.03754956,98.61929542],[4.53679577,0.03755131,98.61832287],[4.5367962,0.03755306,98.61735072],[4.53679663,0.03755481,98.61637897],[4.53679706,0.03755656,98.61540763],[4.53679749,0.03755831,98.61443671],[4.53679792,0.03756006,98.61346621],[4.53679835,0.03756181,98.61249614],[4.53679878,0.03756356,98.6115265],[4.53679921,0.03756531,98.61055731],[4.53679964,0.03756706,98.60958857],[4.53680007,0.03756881,98.60862029],[4.5368005,0.03757056,98.60765245],[4.53680093,0.03757231,98.60668507],[4.53680136,0.03757406,98.60571813],[4.53680179,0.03757581,98.60475165],[4.53680222,0.03757756,98.60378561],[4.53680265,0.03757932,98.60282002],[4.53680309,0.03758107,98.60185487],[4.53680352,0.03758282,98.60089017],[4.53680395,0.03758457,98.59992592],[4.53680438,0.03758632,98.5989621],[4.53680481,0.03758807,98.59799873],[4.53680524,0.03758982,98.5970358],[4.53680567,0.03759157,98.5960733],[4.5368061,0.03759332,98.59511125],[4.53680653,0.03759507,98.59414963],[4.53680696,0.03759682,98.59318845],[4.53680739,0.03759857,98.59222771],[4.53680782,0.03760032,98.59126739],[4.53680825,0.03760207,98.59030751],[4.53680868,0.03760382,98.58934807],[4.53680912,0.03760557,98.58838905],[4.53680955,0.03760732,98.58743047],[4.53680998,0.03760907,98.58647232],[4.53681041,0.03761082,98.5855146],[4.53681084,0.03761257,98.58455732],[4.53681127,0.03761432,98.58360048],[4.5368117,0.03761607,98.58264408],[4.53681213,0.03761782,98.58168812],[4.53681256,0.03761958,98.58073261],[4.53681299,0.03762133,98.57977755],[4.53681342,0.03762308,98.57882293],[4.53681385,0.03762483,98.57786877],[4.53681428,0.03762658,98.57691506],[4.53681472,0.03762833,98.57596181],[4.53681515,0.03763008,98.57500902],[4.53681558,0.03763183,98.57405668],[4.53681601,0.03763358,98.57310481],[4.53681644,0.03763533,98.57215341],[4.53681687,0.03763708,98.57120247],[4.5368173,0.03763883,98.570252],[4.53681773,0.03764058,98.569302],[4.53681816,0.03764233,98.56835247],[4.53681859,0.03764408,98.56740342],[4.53681902,0.03764583,98.56645485],[4.53681945,0.03764758,98.56550675],[4.53681989,0.03764933,98.56455914],[4.53682032,0.03765108,98.56361201],[4.53682075,0.03765283,98.56266537],[4.53682118,0.03765458,98.56171922],[4.53682161,0.03765633,98.56077355],[4.53682204,0.03765809,98.55982838],[4.53682247,0.03765984,98.5588837],[4.5368229,0.03766159,98.55793952],[4.53682333,0.03766334,98.55699584],[4.53682376,0.03766509,98.55605266],[4.53682419,0.03766684,98.55510998],[4.53682462,0.03766859,98.5541678],[4.53682505,0.03767034,98.55322614],[4.53682548,0.03767209,98.55228498],[4.53682591,0.03767384,98.55134433],[4.53682635,0.03767559,98.5504042],[4.53682678,0.03767734,98.54946458],[4.53682721,0.03767909,98.54852548],[4.53682764,0.03768084,98.5475869],[4.53682807,0.03768259,98.54664883],[4.5368285,0.03768434,98.5457113],[4.53682893,0.03768609,98.54477429],[4.53682936,0.03768784,98.5438378],[4.53682979,0.03768959,98.54290185],[4.53683022,0.03769134,98.54196643],[4.53683065,0.0376931,98.54103154],[4.53683108,0.03769485,98.54009719],[4.53683151,0.0376966,98.53916338],[4.53683194,0.03769835,98.53823011],[4.53683237,0.0377001,98.53729737],[4.5368328,0.03770185,98.53636519],[4.53683323,0.0377036,98.53543355],[4.53683366,0.03770535,98.53450246],[4.53683409,0.0377071,98.53357192],[4.53683452,0.03770885,98.53264193],[4.53683495,0.0377106,98.53171249],[4.53683538,0.03771235,98.53078362],[4.53683581,0.0377141,98.5298553],[4.53683624,0.03771585,98.52892754],[4.53683667,0.0377176,98.52800035],[4.5368371,0.03771935,98.52707372],[4.53683753,0.0377211,98.52614765],[4.53683797,0.03772286,98.52522216],[4.5368384,0.03772461,98.52429724],[4.53683883,0.03772636,98.52337288],[4.53683926,0.03772811,98.52244911],[4.53683969,0.03772986,98.52152591],[4.53684012,0.03773161,98.52060329],[4.53684055,0.03773336,98.51968126],[4.53684098,0.03773511,98.5187598],[4.5368414,0.03773686,98.51783893],[4.53684183,0.03773861,98.51691865],[4.53684226,0.03774036,98.51599896],[4.53684269,0.03774211,98.51507985],[4.53684312,0.03774386,98.51416135],[4.53684355,0.03774561,98.51324343],[4.53684398,0.03774736,98.51232612],[4.53684441,0.03774912,98.5114094],[4.53684484,0.03775087,98.51049329],[4.53684527,0.03775262,98.50957778],[4.5368457,0.03775437,98.50866287],[4.53684613,0.03775612,98.50774857],[4.53684656,0.03775787,98.50683488],[4.53684699,0.03775962,98.5059218],[4.53684742,0.03776137,98.50500932],[4.53684785,0.03776312,98.50409743],[4.53684828,0.03776487,98.50318612],[4.53684871,0.03776662,98.50227539],[4.53684914,0.03776837,98.50136523],[4.53684957,0.03777013,98.50045565],[4.53685,0.03777188,98.49954664],[4.53685043,0.03777363,98.49863821],[4.53685085,0.03777538,98.49773035],[4.53685128,0.03777713,98.49682307],[4.53685171,0.03777888,98.49591636],[4.53685214,0.03778063,98.49501023],[4.53685257,0.03778238,98.49410467],[4.536853,0.03778413,98.49319968],[4.53685343,0.03778588,98.49229527],[4.53685386,0.03778763,98.49139144],[4.53685429,0.03778939,98.49048817],[4.53685471,0.03779114,98.48958548],[4.53685514,0.03779289,98.48868337],[4.53685557,0.03779464,98.48778183],[4.536856,0.03779639,98.48688086],[4.53685643,0.03779814,98.48598046],[4.53685686,0.03779989,98.48508063],[4.53685728,0.03780164,98.48418138],[4.53685771,0.03780339,98.4832827],[4.53685814,0.03780515,98.48238459],[4.53685857,0.0378069,98.48148706],[4.536859,0.03780865,98.4805901],[4.53685942,0.0378104,98.47969371],[4.53685985,0.03781215,98.47879791],[4.53686028,0.0378139,98.47790271],[4.53686071,0.03781565,98.47700809],[4.53686113,0.0378174,98.47611407],[4.53686156,0.03781916,98.47522066],[4.53686199,0.03782091,98.47432786],[4.53686242,0.03782266,98.47343567],[4.53686284,0.03782441,98.4725441],[4.53686327,0.03782616,98.47165315],[4.5368637,0.03782791,98.47076283],[4.53686412,0.03782966,98.46987314],[4.53686455,0.03783142,98.4689841],[4.53686498,0.03783317,98.46809569],[4.53686541,0.03783492,98.46720794],[4.53686583,0.03783667,98.46632084],[4.53686626,0.03783842,98.46543439],[4.53686669,0.03784017,98.46454862],[4.53686711,0.03784192,98.4636635],[4.53686754,0.03784368,98.46277907],[4.53686796,0.03784543,98.46189531],[4.53686839,0.03784718,98.46101223],[4.53686882,0.03784893,98.46012985],[4.53686924,0.03785068,98.45924815],[4.53686967,0.03785243,98.45836716],[4.5368701,0.03785419,98.45748687],[4.53687052,0.03785594,98.45660728],[4.53687095,0.03785769,98.45572841],[4.53687137,0.03785944,98.45485026],[4.5368718,0.03786119,98.45397283],[4.53687223,0.03786294,98.45309613],[4.53687265,0.0378647,98.45222017],[4.53687308,0.03786645,98.45134494],[4.5368735,0.0378682,98.45047046],[4.53687393,0.03786995,98.44959672],[4.53687435,0.0378717,98.44872374],[4.53687478,0.03787346,98.44785151],[4.53687521,0.03787521,98.44698006],[4.53687563,0.03787696,98.44610936],[4.53687606,0.03787871,98.44523945],[4.53687648,0.03788046,98.44437031],[4.53687691,0.03788221,98.44350195],[4.53687733,0.03788397,98.44263439],[4.53687776,0.03788572,98.44176762],[4.53687818,0.03788747,98.44090164],[4.53687861,0.03788922,98.44003648],[4.53687903,0.03789097,98.43917212],[4.53687946,0.03789273,98.43830857],[4.53687988,0.03789448,98.43744584],[4.53688031,0.03789623,98.43658394],[4.53688073,0.03789798,98.43572287],[4.53688116,0.03789973,98.43486263],[4.53688158,0.03790149,98.43400323],[4.53688201,0.03790324,98.43314468],[4.53688243,0.03790499,98.43228697],[4.53688286,0.03790674,98.43143012],[4.53688328,0.03790849,98.43057413],[4.53688371,0.03791025,98.42971901],[4.53688413,0.037912,98.42886475],[4.53688455,0.03791375,98.42801137],[4.53688498,0.0379155,98.42715887],[4.5368854,0.03791725,98.42630726],[4.53688583,0.03791901,98.42545653],[4.53688625,0.03792076,98.4246067],[4.53688668,0.03792251,98.42375777],[4.5368871,0.03792426,98.42290975],[4.53688752,0.03792602,98.42206263],[4.53688795,0.03792777,98.42121644],[4.53688837,0.03792952,98.42037116],[4.5368888,0.03793127,98.41952681],[4.53688922,0.03793302,98.41868339],[4.53688964,0.03793478,98.41784091],[4.53689007,0.03793653,98.41699938],[4.53689049,0.03793828,98.41615883],[4.53689092,0.03794003,98.41531925],[4.53689134,0.03794179,98.41448067],[4.53689176,0.03794354,98.4136431],[4.53689219,0.03794529,98.41280655],[4.53689261,0.03794704,98.41197104],[4.53689304,0.03794879,98.41113658],[4.53689346,0.03795055,98.41030318],[4.53689388,0.0379523,98.40947084],[4.53689431,0.03795405,98.40863958],[4.53689473,0.0379558,98.40780938],[4.53689516,0.03795756,98.40698026],[4.53689558,0.03795931,98.40615222],[4.536896,0.03796106,98.40532526],[4.53689643,0.03796281,98.40449938],[4.53689685,0.03796456,98.40367459],[4.53689727,0.03796632,98.4028509],[4.5368977,0.03796807,98.4020283],[4.53689812,0.03796982,98.40120679],[4.53689855,0.03797157,98.40038639],[4.53689897,0.03797333,98.39956709],[4.53689939,0.03797508,98.3987489],[4.53689982,0.03797683,98.39793183],[4.53690024,0.03797858,98.39711586],[4.53690067,0.03798033,98.39630102],[4.53690109,0.03798209,98.39548729],[4.53690151,0.03798384,98.39467469],[4.53690194,0.03798559,98.39386322],[4.53690236,0.03798734,98.39305288],[4.53690278,0.0379891,98.39224368],[4.53690321,0.03799085,98.39143561],[4.53690363,0.0379926,98.39062868],[4.53690406,0.03799435,98.3898229],[4.53690448,0.03799611,98.38901827],[4.5369049,0.03799786,98.38821478],[4.53690533,0.03799961,98.38741245],[4.53690575,0.03800136,98.38661128],[4.53690617,0.03800311,98.38581127],[4.5369066,0.03800487,98.38501242],[4.53690702,0.03800662,98.38421475],[4.53690745,0.03800837,98.38341824],[4.53690787,0.03801012,98.3826229],[4.53690829,0.03801188,98.38182875],[4.53690872,0.03801363,98.38103577],[4.53690914,0.03801538,98.38024398],[4.53690956,0.03801713,98.37945338],[4.53690999,0.03801889,98.37866396],[4.53691041,0.03802064,98.37787574],[4.53691083,0.03802239,98.37708872],[4.53691126,0.03802414,98.3763029],[4.53691168,0.03802589,98.37551828],[4.53691211,0.03802765,98.37473487],[4.53691253,0.0380294,98.37395267],[4.53691295,0.03803115,98.37317169],[4.53691338,0.0380329,98.37239192],[4.5369138,0.03803466,98.37161337],[4.53691422,0.03803641,98.37083604],[4.53691465,0.03803816,98.37005994],[4.53691507,0.03803991,98.36928508],[4.5369155,0.03804167,98.36851144],[4.53691592,0.03804342,98.36773904],[4.53691634,0.03804517,98.36696789],[4.53691677,0.03804692,98.36619797],[4.53691719,0.03804867,98.36542931],[4.53691761,0.03805043,98.36466189],[4.53691804,0.03805218,98.36389573],[4.53691846,0.03805393,98.36313082],[4.53691888,0.03805568,98.36236717],[4.53691931,0.03805744,98.36160479],[4.53691973,0.03805919,98.36084367],[4.53692015,0.03806094,98.36008382],[4.53692058,0.03806269,98.35932525],[4.536921,0.03806445,98.35856795],[4.53692143,0.0380662,98.35781193],[4.53692185,0.03806795,98.3570572],[4.53692227,0.0380697,98.35630374],[4.5369227,0.03807146,98.35555157],[4.53692312,0.03807321,98.35480067],[4.53692354,0.03807496,98.35405104],[4.53692397,0.03807671,98.35330268],[4.53692439,0.03807846,98.35255558],[4.53692481,0.03808022,98.35180973],[4.53692524,0.03808197,98.35106515],[4.53692566,0.03808372,98.35032181],[4.53692608,0.03808547,98.34957972],[4.53692651,0.03808723,98.34883888],[4.53692693,0.03808898,98.34809927],[4.53692735,0.03809073,98.3473609],[4.53692778,0.03809248,98.34662375],[4.5369282,0.03809424,98.34588784],[4.53692862,0.03809599,98.34515315],[4.53692905,0.03809774,98.34441968],[4.53692947,0.03809949,98.34368742],[4.53692989,0.03810125,98.34295639],[4.53693032,0.038103,98.34222658],[4.53693074,0.03810475,98.341498],[4.53693116,0.0381065,98.34077067],[4.53693158,0.03810826,98.34004459],[4.53693201,0.03811001,98.33931977],[4.53693243,0.03811176,98.33859621],[4.53693285,0.03811351,98.33787392],[4.53693327,0.03811527,98.33715292],[4.5369337,0.03811702,98.3364332],[4.53693412,0.03811877,98.33571477],[4.53693454,0.03812052,98.33499765],[4.53693497,0.03812228,98.33428184],[4.53693539,0.03812403,98.33356734],[4.53693581,0.03812578,98.33285417],[4.53693623,0.03812754,98.33214233],[4.53693666,0.03812929,98.33143183],[4.53693708,0.03813104,98.33072268],[4.5369375,0.03813279,98.33001488],[4.53693792,0.03813455,98.32930845],[4.53693834,0.0381363,98.32860338],[4.53693877,0.03813805,98.32789969],[4.53693919,0.0381398,98.32719738],[4.53693961,0.03814156,98.32649647],[4.53694003,0.03814331,98.32579695],[4.53694046,0.03814506,98.32509884],[4.53694088,0.03814682,98.32440215],[4.5369413,0.03814857,98.32370688],[4.53694172,0.03815032,98.32301303],[4.53694215,0.03815207,98.32232062],[4.53694257,0.03815383,98.32162966],[4.53694299,0.03815558,98.32094014],[4.53694341,0.03815733,98.32025208],[4.53694383,0.03815908,98.31956549],[4.53694426,0.03816084,98.31888037],[4.53694468,0.03816259,98.31819674],[4.5369451,0.03816434,98.31751458],[4.53694552,0.03816609,98.31683393],[4.53694594,0.03816785,98.31615477],[4.53694637,0.0381696,98.31547713],[4.53694679,0.03817135,98.314801],[4.53694721,0.03817311,98.3141264],[4.53694763,0.03817486,98.31345333],[4.53694806,0.03817661,98.31278179],[4.53694848,0.03817836,98.31211179],[4.5369489,0.03818012,98.31144331],[4.53694932,0.03818187,98.31077635],[4.53694974,0.03818362,98.31011092],[4.53695017,0.03818537,98.309447],[4.53695059,0.03818713,98.30878458],[4.53695101,0.03818888,98.30812368],[4.53695143,0.03819063,98.30746427],[4.53695186,0.03819239,98.30680636],[4.53693526,0.03819645,98.25588093]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-3,"type":"stop","predecessorId":0,"sOffset":53.8544139403}},{"geometry":{"coordinates":[[[4.53695186,0.03819239,98.30680636],[4.53695143,0.03819063,98.30746427],[4.53695101,0.03818888,98.30812368],[4.53695059,0.03818713,98.30878458],[4.53695017,0.03818537,98.309447],[4.53694974,0.03818362,98.31011092],[4.53694932,0.03818187,98.31077635],[4.5369489,0.03818012,98.31144331],[4.53694848,0.03817836,98.31211179],[4.53694806,0.03817661,98.31278179],[4.53694763,0.03817486,98.31345333],[4.53694721,0.03817311,98.3141264],[4.53694679,0.03817135,98.314801],[4.53694637,0.0381696,98.31547713],[4.53694594,0.03816785,98.31615477],[4.53694552,0.03816609,98.31683393],[4.5369451,0.03816434,98.31751458],[4.53694468,0.03816259,98.31819674],[4.53694426,0.03816084,98.31888037],[4.53694383,0.03815908,98.31956549],[4.53694341,0.03815733,98.32025208],[4.53694299,0.03815558,98.32094014],[4.53694257,0.03815383,98.32162966],[4.53694215,0.03815207,98.32232062],[4.53694172,0.03815032,98.32301303],[4.5369413,0.03814857,98.32370688],[4.53694088,0.03814682,98.32440215],[4.53694046,0.03814506,98.32509884],[4.53694003,0.03814331,98.32579695],[4.53693961,0.03814156,98.32649647],[4.53693919,0.0381398,98.32719738],[4.53693877,0.03813805,98.32789969],[4.53693834,0.0381363,98.32860338],[4.53693792,0.03813455,98.32930845],[4.5369375,0.03813279,98.33001488],[4.53693708,0.03813104,98.33072268],[4.53693666,0.03812929,98.33143183],[4.53693623,0.03812754,98.33214233],[4.53693581,0.03812578,98.33285417],[4.53693539,0.03812403,98.33356734],[4.53693497,0.03812228,98.33428184],[4.53693454,0.03812052,98.33499765],[4.53693412,0.03811877,98.33571477],[4.5369337,0.03811702,98.3364332],[4.53693327,0.03811527,98.33715292],[4.53693285,0.03811351,98.33787392],[4.53693243,0.03811176,98.33859621],[4.53693201,0.03811001,98.33931977],[4.53693158,0.03810826,98.34004459],[4.53693116,0.0381065,98.34077067],[4.53693074,0.03810475,98.341498],[4.53693032,0.038103,98.34222658],[4.53692989,0.03810125,98.34295639],[4.53692947,0.03809949,98.34368742],[4.53692905,0.03809774,98.34441968],[4.53692862,0.03809599,98.34515315],[4.5369282,0.03809424,98.34588784],[4.53692778,0.03809248,98.34662375],[4.53692735,0.03809073,98.3473609],[4.53692693,0.03808898,98.34809927],[4.53692651,0.03808723,98.34883888],[4.53692608,0.03808547,98.34957972],[4.53692566,0.03808372,98.35032181],[4.53692524,0.03808197,98.35106515],[4.53692481,0.03808022,98.35180973],[4.53692439,0.03807846,98.35255558],[4.53692397,0.03807671,98.35330268],[4.53692354,0.03807496,98.35405104],[4.53692312,0.03807321,98.35480067],[4.5369227,0.03807146,98.35555157],[4.53692227,0.0380697,98.35630374],[4.53692185,0.03806795,98.3570572],[4.53692143,0.0380662,98.35781193],[4.536921,0.03806445,98.35856795],[4.53692058,0.03806269,98.35932525],[4.53692015,0.03806094,98.36008382],[4.53691973,0.03805919,98.36084367],[4.53691931,0.03805744,98.36160479],[4.53691888,0.03805568,98.36236717],[4.53691846,0.03805393,98.36313082],[4.53691804,0.03805218,98.36389573],[4.53691761,0.03805043,98.36466189],[4.53691719,0.03804867,98.36542931],[4.53691677,0.03804692,98.36619797],[4.53691634,0.03804517,98.36696789],[4.53691592,0.03804342,98.36773904],[4.5369155,0.03804167,98.36851144],[4.53691507,0.03803991,98.36928508],[4.53691465,0.03803816,98.37005994],[4.53691422,0.03803641,98.37083604],[4.5369138,0.03803466,98.37161337],[4.53691338,0.0380329,98.37239192],[4.53691295,0.03803115,98.37317169],[4.53691253,0.0380294,98.37395267],[4.53691211,0.03802765,98.37473487],[4.53691168,0.03802589,98.37551828],[4.53691126,0.03802414,98.3763029],[4.53691083,0.03802239,98.37708872],[4.53691041,0.03802064,98.37787574],[4.53690999,0.03801889,98.37866396],[4.53690956,0.03801713,98.37945338],[4.53690914,0.03801538,98.38024398],[4.53690872,0.03801363,98.38103577],[4.53690829,0.03801188,98.38182875],[4.53690787,0.03801012,98.3826229],[4.53690745,0.03800837,98.38341824],[4.53690702,0.03800662,98.38421475],[4.5369066,0.03800487,98.38501242],[4.53690617,0.03800311,98.38581127],[4.53690575,0.03800136,98.38661128],[4.53690533,0.03799961,98.38741245],[4.5369049,0.03799786,98.38821478],[4.53690448,0.03799611,98.38901827],[4.53690406,0.03799435,98.3898229],[4.53690363,0.0379926,98.39062868],[4.53690321,0.03799085,98.39143561],[4.53690278,0.0379891,98.39224368],[4.53690236,0.03798734,98.39305288],[4.53690194,0.03798559,98.39386322],[4.53690151,0.03798384,98.39467469],[4.53690109,0.03798209,98.39548729],[4.53690067,0.03798033,98.39630102],[4.53690024,0.03797858,98.39711586],[4.53689982,0.03797683,98.39793183],[4.53689939,0.03797508,98.3987489],[4.53689897,0.03797333,98.39956709],[4.53689855,0.03797157,98.40038639],[4.53689812,0.03796982,98.40120679],[4.5368977,0.03796807,98.4020283],[4.53689727,0.03796632,98.4028509],[4.53689685,0.03796456,98.40367459],[4.53689643,0.03796281,98.40449938],[4.536896,0.03796106,98.40532526],[4.53689558,0.03795931,98.40615222],[4.53689516,0.03795756,98.40698026],[4.53689473,0.0379558,98.40780938],[4.53689431,0.03795405,98.40863958],[4.53689388,0.0379523,98.40947084],[4.53689346,0.03795055,98.41030318],[4.53689304,0.03794879,98.41113658],[4.53689261,0.03794704,98.41197104],[4.53689219,0.03794529,98.41280655],[4.53689176,0.03794354,98.4136431],[4.53689134,0.03794179,98.41448067],[4.53689092,0.03794003,98.41531925],[4.53689049,0.03793828,98.41615883],[4.53689007,0.03793653,98.41699938],[4.53688964,0.03793478,98.41784091],[4.53688922,0.03793302,98.41868339],[4.5368888,0.03793127,98.41952681],[4.53688837,0.03792952,98.42037116],[4.53688795,0.03792777,98.42121644],[4.53688752,0.03792602,98.42206263],[4.5368871,0.03792426,98.42290975],[4.53688668,0.03792251,98.42375777],[4.53688625,0.03792076,98.4246067],[4.53688583,0.03791901,98.42545653],[4.5368854,0.03791725,98.42630726],[4.53688498,0.0379155,98.42715887],[4.53688455,0.03791375,98.42801137],[4.53688413,0.037912,98.42886475],[4.53688371,0.03791025,98.42971901],[4.53688328,0.03790849,98.43057413],[4.53688286,0.03790674,98.43143012],[4.53688243,0.03790499,98.43228697],[4.53688201,0.03790324,98.43314468],[4.53688158,0.03790149,98.43400323],[4.53688116,0.03789973,98.43486263],[4.53688073,0.03789798,98.43572287],[4.53688031,0.03789623,98.43658394],[4.53687988,0.03789448,98.43744584],[4.53687946,0.03789273,98.43830857],[4.53687903,0.03789097,98.43917212],[4.53687861,0.03788922,98.44003648],[4.53687818,0.03788747,98.44090164],[4.53687776,0.03788572,98.44176762],[4.53687733,0.03788397,98.44263439],[4.53687691,0.03788221,98.44350195],[4.53687648,0.03788046,98.44437031],[4.53687606,0.03787871,98.44523945],[4.53687563,0.03787696,98.44610936],[4.53687521,0.03787521,98.44698006],[4.53687478,0.03787346,98.44785151],[4.53687435,0.0378717,98.44872374],[4.53687393,0.03786995,98.44959672],[4.5368735,0.0378682,98.45047046],[4.53687308,0.03786645,98.45134494],[4.53687265,0.0378647,98.45222017],[4.53687223,0.03786294,98.45309613],[4.5368718,0.03786119,98.45397283],[4.53687137,0.03785944,98.45485026],[4.53687095,0.03785769,98.45572841],[4.53687052,0.03785594,98.45660728],[4.5368701,0.03785419,98.45748687],[4.53686967,0.03785243,98.45836716],[4.53686924,0.03785068,98.45924815],[4.53686882,0.03784893,98.46012985],[4.53686839,0.03784718,98.46101223],[4.53686796,0.03784543,98.46189531],[4.53686754,0.03784368,98.46277907],[4.53686711,0.03784192,98.4636635],[4.53686669,0.03784017,98.46454862],[4.53686626,0.03783842,98.46543439],[4.53686583,0.03783667,98.46632084],[4.53686541,0.03783492,98.46720794],[4.53686498,0.03783317,98.46809569],[4.53686455,0.03783142,98.4689841],[4.53686412,0.03782966,98.46987314],[4.5368637,0.03782791,98.47076283],[4.53686327,0.03782616,98.47165315],[4.53686284,0.03782441,98.4725441],[4.53686242,0.03782266,98.47343567],[4.53686199,0.03782091,98.47432786],[4.53686156,0.03781916,98.47522066],[4.53686113,0.0378174,98.47611407],[4.53686071,0.03781565,98.47700809],[4.53686028,0.0378139,98.47790271],[4.53685985,0.03781215,98.47879791],[4.53685942,0.0378104,98.47969371],[4.536859,0.03780865,98.4805901],[4.53685857,0.0378069,98.48148706],[4.53685814,0.03780515,98.48238459],[4.53685771,0.03780339,98.4832827],[4.53685728,0.03780164,98.48418138],[4.53685686,0.03779989,98.48508063],[4.53685643,0.03779814,98.48598046],[4.536856,0.03779639,98.48688086],[4.53685557,0.03779464,98.48778183],[4.53685514,0.03779289,98.48868337],[4.53685471,0.03779114,98.48958548],[4.53685429,0.03778939,98.49048817],[4.53685386,0.03778763,98.49139144],[4.53685343,0.03778588,98.49229527],[4.536853,0.03778413,98.49319968],[4.53685257,0.03778238,98.49410467],[4.53685214,0.03778063,98.49501023],[4.53685171,0.03777888,98.49591636],[4.53685128,0.03777713,98.49682307],[4.53685085,0.03777538,98.49773035],[4.53685043,0.03777363,98.49863821],[4.53685,0.03777188,98.49954664],[4.53684957,0.03777013,98.50045565],[4.53684914,0.03776837,98.50136523],[4.53684871,0.03776662,98.50227539],[4.53684828,0.03776487,98.50318612],[4.53684785,0.03776312,98.50409743],[4.53684742,0.03776137,98.50500932],[4.53684699,0.03775962,98.5059218],[4.53684656,0.03775787,98.50683488],[4.53684613,0.03775612,98.50774857],[4.5368457,0.03775437,98.50866287],[4.53684527,0.03775262,98.50957778],[4.53684484,0.03775087,98.51049329],[4.53684441,0.03774912,98.5114094],[4.53684398,0.03774736,98.51232612],[4.53684355,0.03774561,98.51324343],[4.53684312,0.03774386,98.51416135],[4.53684269,0.03774211,98.51507985],[4.53684226,0.03774036,98.51599896],[4.53684183,0.03773861,98.51691865],[4.5368414,0.03773686,98.51783893],[4.53684098,0.03773511,98.5187598],[4.53684055,0.03773336,98.51968126],[4.53684012,0.03773161,98.52060329],[4.53683969,0.03772986,98.52152591],[4.53683926,0.03772811,98.52244911],[4.53683883,0.03772636,98.52337288],[4.5368384,0.03772461,98.52429724],[4.53683797,0.03772286,98.52522216],[4.53683753,0.0377211,98.52614765],[4.5368371,0.03771935,98.52707372],[4.53683667,0.0377176,98.52800035],[4.53683624,0.03771585,98.52892754],[4.53683581,0.0377141,98.5298553],[4.53683538,0.03771235,98.53078362],[4.53683495,0.0377106,98.53171249],[4.53683452,0.03770885,98.53264193],[4.53683409,0.0377071,98.53357192],[4.53683366,0.03770535,98.53450246],[4.53683323,0.0377036,98.53543355],[4.5368328,0.03770185,98.53636519],[4.53683237,0.0377001,98.53729737],[4.53683194,0.03769835,98.53823011],[4.53683151,0.0376966,98.53916338],[4.53683108,0.03769485,98.54009719],[4.53683065,0.0376931,98.54103154],[4.53683022,0.03769134,98.54196643],[4.53682979,0.03768959,98.54290185],[4.53682936,0.03768784,98.5438378],[4.53682893,0.03768609,98.54477429],[4.5368285,0.03768434,98.5457113],[4.53682807,0.03768259,98.54664883],[4.53682764,0.03768084,98.5475869],[4.53682721,0.03767909,98.54852548],[4.53682678,0.03767734,98.54946458],[4.53682635,0.03767559,98.5504042],[4.53682591,0.03767384,98.55134433],[4.53682548,0.03767209,98.55228498],[4.53682505,0.03767034,98.55322614],[4.53682462,0.03766859,98.5541678],[4.53682419,0.03766684,98.55510998],[4.53682376,0.03766509,98.55605266],[4.53682333,0.03766334,98.55699584],[4.5368229,0.03766159,98.55793952],[4.53682247,0.03765984,98.5588837],[4.53682204,0.03765809,98.55982838],[4.53682161,0.03765633,98.56077355],[4.53682118,0.03765458,98.56171922],[4.53682075,0.03765283,98.56266537],[4.53682032,0.03765108,98.56361201],[4.53681989,0.03764933,98.56455914],[4.53681945,0.03764758,98.56550675],[4.53681902,0.03764583,98.56645485],[4.53681859,0.03764408,98.56740342],[4.53681816,0.03764233,98.56835247],[4.53681773,0.03764058,98.569302],[4.5368173,0.03763883,98.570252],[4.53681687,0.03763708,98.57120247],[4.53681644,0.03763533,98.57215341],[4.53681601,0.03763358,98.57310481],[4.53681558,0.03763183,98.57405668],[4.53681515,0.03763008,98.57500902],[4.53681472,0.03762833,98.57596181],[4.53681428,0.03762658,98.57691506],[4.53681385,0.03762483,98.57786877],[4.53681342,0.03762308,98.57882293],[4.53681299,0.03762133,98.57977755],[4.53681256,0.03761958,98.58073261],[4.53681213,0.03761782,98.58168812],[4.5368117,0.03761607,98.58264408],[4.53681127,0.03761432,98.58360048],[4.53681084,0.03761257,98.58455732],[4.53681041,0.03761082,98.5855146],[4.53680998,0.03760907,98.58647232],[4.53680955,0.03760732,98.58743047],[4.53680912,0.03760557,98.58838905],[4.53680868,0.03760382,98.58934807],[4.53680825,0.03760207,98.59030751],[4.53680782,0.03760032,98.59126739],[4.53680739,0.03759857,98.59222771],[4.53680696,0.03759682,98.59318845],[4.53680653,0.03759507,98.59414963],[4.5368061,0.03759332,98.59511125],[4.53680567,0.03759157,98.5960733],[4.53680524,0.03758982,98.5970358],[4.53680481,0.03758807,98.59799873],[4.53680438,0.03758632,98.5989621],[4.53680395,0.03758457,98.59992592],[4.53680352,0.03758282,98.60089017],[4.53680309,0.03758107,98.60185487],[4.53680265,0.03757932,98.60282002],[4.53680222,0.03757756,98.60378561],[4.53680179,0.03757581,98.60475165],[4.53680136,0.03757406,98.60571813],[4.53680093,0.03757231,98.60668507],[4.5368005,0.03757056,98.60765245],[4.53680007,0.03756881,98.60862029],[4.53679964,0.03756706,98.60958857],[4.53679921,0.03756531,98.61055731],[4.53679878,0.03756356,98.6115265],[4.53679835,0.03756181,98.61249614],[4.53679792,0.03756006,98.61346621],[4.53679749,0.03755831,98.61443671],[4.53679706,0.03755656,98.61540763],[4.53679663,0.03755481,98.61637897],[4.5367962,0.03755306,98.61735072],[4.53679577,0.03755131,98.61832287],[4.53679534,0.03754956,98.61929542],[4.53679491,0.03754781,98.62026836],[4.53679448,0.03754606,98.62124168],[4.53679405,0.0375443,98.62221538],[4.53679362,0.03754255,98.62318945],[4.53679319,0.0375408,98.62416388],[4.53679276,0.03753905,98.62513867],[4.53679233,0.0375373,98.62611381],[4.5367919,0.03753555,98.62708929],[4.53679147,0.0375338,98.6280651],[4.53679104,0.03753205,98.62904125],[4.53679061,0.0375303,98.63001772],[4.53679018,0.03752855,98.63099451],[4.53678975,0.0375268,98.6319716],[4.53678932,0.03752505,98.632949],[4.53678889,0.0375233,98.6339267],[4.53678846,0.03752155,98.63490468],[4.53678803,0.0375198,98.63588295],[4.5367876,0.03751805,98.6368615],[4.53678717,0.0375163,98.63784031],[4.53678674,0.03751455,98.63881939],[4.53678631,0.03751279,98.63979873],[4.53678588,0.03751104,98.64077832],[4.53678544,0.03750929,98.64175815],[4.53678501,0.03750754,98.64273822],[4.53678458,0.03750579,98.64371852],[4.53678415,0.03750404,98.64469904],[4.53678372,0.03750229,98.64567978],[4.53678329,0.03750054,98.64666073],[4.53678286,0.03749879,98.64764189],[4.53678243,0.03749704,98.64862324],[4.536782,0.03749529,98.64960479],[4.53678157,0.03749354,98.65058652],[4.53678114,0.03749179,98.65156843],[4.53678071,0.03749004,98.65255051],[4.53678028,0.03748829,98.65353276],[4.53677985,0.03748654,98.65451516],[4.53677942,0.03748479,98.65549772],[4.53677899,0.03748304,98.65648042],[4.53677856,0.03748129,98.65746327],[4.53677813,0.03747953,98.65844624],[4.5367777,0.03747778,98.65942934],[4.53677727,0.03747603,98.66041257],[4.53677684,0.03747428,98.6613959],[4.5367764,0.03747253,98.66237935],[4.53677597,0.03747078,98.66336289],[4.53677554,0.03746903,98.66434653],[4.53677511,0.03746728,98.66533025],[4.53677468,0.03746553,98.66631406],[4.53677425,0.03746378,98.66729794],[4.53677382,0.03746203,98.66828189],[4.53677339,0.03746028,98.6692659],[4.53677296,0.03745853,98.67024997],[4.53677253,0.03745678,98.6712341],[4.53677209,0.03745503,98.67221831],[4.53677166,0.03745328,98.67320259],[4.53677123,0.03745153,98.67418697],[4.5367708,0.03744978,98.67517145],[4.53677037,0.03744803,98.67615604],[4.53676994,0.03744628,98.67714075],[4.5367695,0.03744453,98.67812559],[4.53676907,0.03744278,98.67911058],[4.53676864,0.03744103,98.68009572],[4.53676821,0.03743928,98.68108102],[4.53676778,0.03743753,98.68206649],[4.53676735,0.03743578,98.68305214],[4.53676692,0.03743403,98.68403799],[4.53676648,0.03743228,98.68502403],[4.53676605,0.03743053,98.68601029],[4.53676562,0.03742878,98.68699676],[4.53676519,0.03742703,98.68798344],[4.53676476,0.03742528,98.68897032],[4.53676433,0.03742353,98.68995739],[4.53676389,0.03742178,98.69094463],[4.53676346,0.03742003,98.69193203],[4.53676303,0.03741828,98.69291958],[4.5367626,0.03741653,98.69390727],[4.53676217,0.03741478,98.69489508],[4.53676174,0.03741303,98.69588301],[4.53676131,0.03741128,98.69687104],[4.53676087,0.03740953,98.69785917],[4.53676044,0.03740778,98.69884738],[4.53676001,0.03740603,98.69983568],[4.53675958,0.03740428,98.70082407],[4.53675915,0.03740253,98.70181255],[4.53675871,0.03740078,98.70280111],[4.53675828,0.03739903,98.70378976],[4.53675785,0.03739728,98.70477848],[4.53675742,0.03739553,98.70576729],[4.53675699,0.03739378,98.70675619],[4.53675656,0.03739203,98.70774516],[4.53675612,0.03739028,98.7087342],[4.53675569,0.03738853,98.70972333],[4.53675526,0.03738678,98.71071253],[4.53675483,0.03738503,98.71170181],[4.5367544,0.03738328,98.71269116],[4.53675396,0.03738153,98.71368058],[4.53675353,0.03737978,98.71467008],[4.5367531,0.03737803,98.71565964],[4.53675267,0.03737628,98.71664927],[4.53675224,0.03737453,98.71763897],[4.5367518,0.03737278,98.71862874],[4.53675137,0.03737103,98.71961855],[4.53675094,0.03736928,98.72060841],[4.53675051,0.03736753,98.7215983],[4.53675008,0.03736578,98.72258821],[4.53674964,0.03736403,98.72357813],[4.53674921,0.03736228,98.72456804],[4.53674878,0.03736053,98.72555794],[4.53674835,0.03735878,98.72654782],[4.53674791,0.03735703,98.72753766],[4.53674748,0.03735528,98.72852745],[4.53674705,0.03735353,98.72951719],[4.53674662,0.03735178,98.73050686],[4.53674618,0.03735003,98.73149644],[4.53674575,0.03734828,98.73248594],[4.53674532,0.03734653,98.73347533],[4.53674489,0.03734478,98.73446461],[4.53674445,0.03734303,98.73545377],[4.53674402,0.03734128,98.7364428],[4.53674359,0.03733953,98.73743167],[4.53674316,0.03733778,98.73842039],[4.53674272,0.03733603,98.73940895],[4.53674229,0.03733428,98.74039732],[4.53674186,0.03733253,98.74138551],[4.53674142,0.03733078,98.7423735],[4.53674099,0.03732903,98.74336127],[4.53674056,0.03732728,98.74434883],[4.53674012,0.03732553,98.74533619],[4.53673969,0.03732378,98.74632335],[4.53673925,0.03732203,98.74731031],[4.53673882,0.03732028,98.74829709],[4.53673839,0.03731853,98.74928369],[4.53673795,0.03731678,98.75027011],[4.53673752,0.03731503,98.75125637],[4.53673709,0.03731328,98.75224247],[4.53673665,0.03731153,98.75322842],[4.53673622,0.03730978,98.75421423],[4.53673578,0.03730804,98.75519989],[4.53673535,0.03730629,98.75618542],[4.53673491,0.03730454,98.75717083],[4.53673448,0.03730279,98.75815611],[4.53673404,0.03730104,98.75914129],[4.53673361,0.03729929,98.76012636],[4.53673318,0.03729754,98.76111133],[4.53673274,0.03729579,98.7620962],[4.53673231,0.03729404,98.763081],[4.53673187,0.03729229,98.76406571],[4.53673144,0.03729054,98.76505035],[4.536731,0.03728879,98.76603492],[4.53673057,0.03728704,98.76701943],[4.53673013,0.03728529,98.76800389],[4.5367297,0.03728354,98.7689883],[4.53672926,0.03728179,98.76997268],[4.53672883,0.03728004,98.77095702],[4.53672839,0.0372783,98.77194133],[4.53672796,0.03727655,98.77292562],[4.53672752,0.0372748,98.7739099],[4.53672709,0.03727305,98.77489417],[4.53672666,0.0372713,98.77587844],[4.53672622,0.03726955,98.77686273],[4.53672579,0.0372678,98.77784703],[4.53672535,0.03726605,98.77883135],[4.53672492,0.0372643,98.77981571],[4.53672448,0.03726255,98.78080011],[4.53672405,0.0372608,98.78178455],[4.53672361,0.03725905,98.78276905],[4.53672318,0.0372573,98.78375361],[4.53672274,0.03725555,98.78473824],[4.53672231,0.0372538,98.78572295],[4.53672188,0.03725205,98.78670774],[4.53672144,0.0372503,98.78769262],[4.53672101,0.03724856,98.7886776],[4.53672057,0.03724681,98.78966269],[4.53672014,0.03724506,98.7906479],[4.5367197,0.03724331,98.79163323],[4.53671927,0.03724156,98.79261868],[4.53671884,0.03723981,98.79360428],[4.5367184,0.03723806,98.79459002],[4.53671797,0.03723631,98.7955759],[4.53671754,0.03723456,98.79656195],[4.5367171,0.03723281,98.79754817],[4.53671667,0.03723106,98.79853456],[4.53671623,0.03722931,98.79952113],[4.5367158,0.03722756,98.80050789],[4.53671537,0.03722581,98.80149484],[4.53671493,0.03722406,98.802482],[4.5367145,0.03722231,98.80346937],[4.53671407,0.03722056,98.80445696],[4.53671364,0.03721881,98.80544477],[4.5367132,0.03721706,98.80643281],[4.53671277,0.03721531,98.80742109],[4.53671234,0.03721356,98.80840959],[4.53671191,0.03721181,98.8093983],[4.53671147,0.03721006,98.81038718],[4.53671104,0.03720831,98.8113762],[4.53671061,0.03720656,98.81236533],[4.53671018,0.03720481,98.81335454],[4.53670975,0.03720306,98.81434379],[4.53670931,0.03720131,98.81533304],[4.53670888,0.03719956,98.81632228],[4.53670845,0.03719781,98.81731146],[4.53670802,0.03719606,98.81830056],[4.53670759,0.03719431,98.81928953],[4.53670716,0.03719256,98.82027836],[4.53670672,0.03719081,98.821267],[4.53670629,0.03718906,98.82225543],[4.53670586,0.03718731,98.82324361],[4.53670543,0.03718556,98.82423151],[4.536705,0.03718381,98.8252191],[4.53670456,0.03718206,98.82620634],[4.53670413,0.03718031,98.82719321],[4.5367037,0.03717856,98.82817967],[4.53670327,0.03717681,98.8291657],[4.53670283,0.03717506,98.83015125],[4.5367024,0.03717331,98.83113629],[4.53670197,0.03717156,98.83212081],[4.53670154,0.03716981,98.83310475],[4.5367011,0.03716806,98.83408809],[4.53670067,0.03716631,98.83507081],[4.53670024,0.03716456,98.83605286],[4.5366998,0.03716281,98.83703421],[4.53669937,0.03716106,98.83801484],[4.53669894,0.03715931,98.83899471],[4.5366985,0.03715756,98.83997379],[4.53669807,0.03715581,98.84095205],[4.53669763,0.03715406,98.84192946],[4.5366972,0.03715231,98.84290597],[4.53669676,0.03715056,98.84388158],[4.53669633,0.03714882,98.84485623],[4.53669589,0.03714707,98.8458299],[4.53669546,0.03714532,98.84680256],[4.53669502,0.03714357,98.84777418],[4.53669458,0.03714182,98.84874472],[4.53669415,0.03714007,98.84971415],[4.53669371,0.03713832,98.85068245],[4.53669327,0.03713657,98.85164965],[4.53669284,0.03713482,98.85261576],[4.5366924,0.03713308,98.85358081],[4.53669196,0.03713133,98.85454484],[4.53669152,0.03712958,98.85550786],[4.53669108,0.03712783,98.85646991],[4.53669064,0.03712608,98.85743102],[4.5366902,0.03712433,98.85839121],[4.53668976,0.03712259,98.85935051],[4.53668932,0.03712084,98.86030895],[4.53668888,0.03711909,98.86126655],[4.53668844,0.03711734,98.86222335],[4.536688,0.03711559,98.86317936],[4.53668756,0.03711385,98.86413463],[4.53668712,0.0371121,98.86508916],[4.53668668,0.03711035,98.866043],[4.53668624,0.0371086,98.86699617],[4.5366858,0.03710685,98.86794869],[4.53668536,0.03710511,98.8689006],[4.53668492,0.03710336,98.86985192],[4.53668447,0.03710161,98.87080268],[4.53668403,0.03709986,98.87175291],[4.53668359,0.03709812,98.87270263],[4.53668315,0.03709637,98.87365187],[4.53668271,0.03709462,98.87460065],[4.53668226,0.03709287,98.87554901],[4.53668182,0.03709113,98.87649698],[4.53668138,0.03708938,98.87744457],[4.53668094,0.03708763,98.87839182],[4.5366805,0.03708588,98.87933875],[4.53668005,0.03708414,98.8802854],[4.53667961,0.03708239,98.88123178],[4.53667917,0.03708064,98.88217792],[4.53667873,0.03707889,98.88312386],[4.53667829,0.03707715,98.88406961],[4.53667784,0.0370754,98.88501522],[4.5366774,0.03707365,98.88596069],[4.53667696,0.0370719,98.88690607],[4.53667652,0.03707016,98.88785137],[4.53667608,0.03706841,98.88879663],[4.53667564,0.03706666,98.88974186],[4.53667519,0.03706491,98.89068711],[4.53667475,0.03706316,98.8916324],[4.53667431,0.03706142,98.89257775],[4.53667387,0.03705967,98.89352319],[4.53667343,0.03705792,98.89446875],[4.53667299,0.03705617,98.89541446],[4.53667255,0.03705443,98.89636035],[4.53667211,0.03705268,98.89730643],[4.53667167,0.03705093,98.89825275],[4.53667123,0.03704918,98.89919933],[4.53667079,0.03704743,98.90014619],[4.53667035,0.03704569,98.90109336],[4.53666991,0.03704394,98.90204088],[4.53666947,0.03704219,98.90298876],[4.53666903,0.03704044,98.90393704],[4.53666859,0.03703869,98.90488574],[4.53666816,0.03703694,98.90583488],[4.53666772,0.03703519,98.90678446],[4.53666728,0.03703345,98.90773445],[4.53666684,0.0370317,98.90868483],[4.5366664,0.03702995,98.90963559],[4.53666597,0.0370282,98.91058671],[4.53666553,0.03702645,98.91153816],[4.53666509,0.0370247,98.91248994],[4.53666466,0.03702295,98.91344201],[4.53666422,0.0370212,98.91439437],[4.53666379,0.03701945,98.91534699],[4.53666335,0.03701771,98.91629985],[4.53666292,0.03701596,98.91725295],[4.53666248,0.03701421,98.91820625],[4.53666205,0.03701246,98.91915976],[4.53666161,0.03701071,98.92011344],[4.53666118,0.03700896,98.92106729],[4.53666074,0.03700721,98.92202129],[4.53666031,0.03700546,98.92297542],[4.53665987,0.03700371,98.92392968],[4.53665944,0.03700196,98.92488403],[4.53665901,0.03700021,98.92583848],[4.53665857,0.03699846,98.92679299],[4.53665814,0.03699671,98.92774757],[4.53665771,0.03699496,98.92870218],[4.53665727,0.03699321,98.92965682],[4.53665684,0.03699146,98.93061146],[4.53665641,0.03698971,98.93156611],[4.53665597,0.03698796,98.93252073],[4.53665554,0.03698621,98.93347531],[4.53665511,0.03698446,98.93442984],[4.53665468,0.03698271,98.9353843],[4.53665425,0.03698096,98.93633868],[4.53665381,0.03697921,98.93729296],[4.53665338,0.03697746,98.93824713],[4.53665295,0.03697571,98.93920116],[4.53665252,0.03697396,98.94015505],[4.53665209,0.03697221,98.94110877],[4.53665165,0.03697046,98.94206231],[4.53665122,0.03696871,98.94301564],[4.53665079,0.03696696,98.94396874],[4.53665036,0.03696521,98.94492159],[4.53664993,0.03696346,98.94587416],[4.5366495,0.03696171,98.94682644],[4.53664907,0.03695996,98.9477784],[4.53664863,0.03695821,98.94873002],[4.5366482,0.03695646,98.94968128],[4.53664777,0.03695471,98.95063215],[4.53664734,0.03695296,98.95158262],[4.53664691,0.03695121,98.95253267],[4.53664648,0.03694946,98.95348226],[4.53664605,0.03694771,98.95443138],[4.53664561,0.03694596,98.95538002],[4.53664518,0.03694421,98.95632813],[4.53664475,0.03694246,98.95727571],[4.53664432,0.03694071,98.95822274],[4.53664389,0.03693896,98.95916918],[4.53664346,0.03693721,98.96011502],[4.53664303,0.03693546,98.96106023],[4.53664259,0.03693371,98.96200481],[4.53664216,0.03693196,98.96294871],[4.53664173,0.03693021,98.96389192],[4.5366413,0.03692846,98.96483442],[4.53664087,0.03692671,98.96577619],[4.53664043,0.03692496,98.9667172],[4.53664,0.03692321,98.96765744],[4.53663957,0.03692146,98.96859687],[4.53663914,0.03691971,98.96953549],[4.5366387,0.03691796,98.97047326],[4.53663827,0.03691621,98.97141017],[4.53663784,0.03691446,98.97234618],[4.5366374,0.03691271,98.97328129],[4.53663697,0.03691096,98.97421547],[4.53663654,0.03690921,98.9751487],[4.5366361,0.03690746,98.97608095],[4.53663567,0.03690571,98.9770122],[4.53663524,0.03690396,98.97794243],[4.5366348,0.03690221,98.97887162],[4.53663437,0.03690046,98.97979975],[4.53663393,0.03689871,98.98072679],[4.5366335,0.03689696,98.98165272],[4.53663306,0.03689521,98.98257753],[4.53663263,0.03689346,98.98350118],[4.53663219,0.03689171,98.98442365],[4.53663175,0.03688996,98.98534493],[4.53663132,0.03688822,98.986265],[4.53663088,0.03688647,98.98718382],[4.53663045,0.03688472,98.98810137],[4.53663001,0.03688297,98.98901764],[4.53662957,0.03688122,98.98993261],[4.53662913,0.03687947,98.99084624],[4.5366287,0.03687772,98.99175852],[4.53662826,0.03687597,98.99266943],[4.53662782,0.03687423,98.99357894],[4.53662738,0.03687248,98.99448703],[4.53662694,0.03687073,98.99539368],[4.5366265,0.03686898,98.99629886],[4.53662606,0.03686723,98.99720255],[4.53662562,0.03686549,98.99810474],[4.53662518,0.03686374,98.9990054],[4.53662474,0.03686199,98.99990456],[4.5366243,0.03686024,99.00080224],[4.53662386,0.03685849,99.00169846],[4.53662341,0.03685675,99.00259326],[4.53662297,0.036855,99.00348666],[4.53662253,0.03685325,99.00437868],[4.53662209,0.0368515,99.00526936],[4.53662164,0.03684976,99.00615871],[4.5366212,0.03684801,99.00704677],[4.53662076,0.03684626,99.00793356],[4.53662031,0.03684452,99.00881911],[4.53661987,0.03684277,99.00970344],[4.53661942,0.03684102,99.01058659],[4.53661898,0.03683927,99.01146857],[4.53661853,0.03683753,99.01234943],[4.53661809,0.03683578,99.01322918],[4.53661764,0.03683403,99.01410787],[4.5366172,0.03683229,99.01498551],[4.53661675,0.03683054,99.01586215],[4.53661631,0.03682879,99.0167378],[4.53661586,0.03682705,99.0176125],[4.53661541,0.0368253,99.01848628],[4.53661497,0.03682355,99.01935917],[4.53661452,0.03682181,99.0202312],[4.53661408,0.03682006,99.02110239],[4.53661363,0.03681832,99.02197278],[4.53661318,0.03681657,99.0228424],[4.53661274,0.03681482,99.02371128],[4.53661229,0.03681308,99.02457947],[4.53661184,0.03681133,99.02544701],[4.5366114,0.03680958,99.02631394],[4.53661095,0.03680784,99.0271803],[4.5366105,0.03680609,99.02804613],[4.53661006,0.03680434,99.02891149],[4.53660961,0.0368026,99.0297764],[4.53660916,0.03680085,99.03064092],[4.53660872,0.03679911,99.03150509],[4.53660827,0.03679736,99.03236894],[4.53660782,0.03679561,99.03323253],[4.53660738,0.03679387,99.03409589],[4.53660693,0.03679212,99.03495907],[4.53660649,0.03679037,99.03582212],[4.53660604,0.03678863,99.03668506],[4.53660559,0.03678688,99.0375479],[4.53660515,0.03678513,99.03841065],[4.5366047,0.03678339,99.03927331],[4.53660426,0.03678164,99.04013589],[4.53660381,0.03677989,99.04099837],[4.53660337,0.03677815,99.04186077],[4.53660293,0.0367764,99.04272309],[4.53660248,0.03677465,99.04358532],[4.53660204,0.0367729,99.04444747],[4.53660159,0.03677116,99.04530954],[4.53660115,0.03676941,99.04617154],[4.53660071,0.03676766,99.04703346],[4.53660026,0.03676592,99.04789531],[4.53659982,0.03676417,99.04875708],[4.53659938,0.03676242,99.04961879],[4.53659893,0.03676067,99.05048042],[4.53659849,0.03675893,99.05134199],[4.53659805,0.03675718,99.0522035],[4.53659761,0.03675543,99.05306494],[4.53659717,0.03675368,99.05392633],[4.53659672,0.03675194,99.05478765],[4.53659628,0.03675019,99.05564892],[4.53659584,0.03674844,99.05651011],[4.5365954,0.03674669,99.0573712],[4.53659496,0.03674495,99.05823217],[4.53659452,0.0367432,99.05909299],[4.53659408,0.03674145,99.05995365],[4.53659364,0.0367397,99.0608141],[4.5365932,0.03673795,99.06167435],[4.53659276,0.03673621,99.06253435],[4.53659232,0.03673446,99.06339408],[4.53659188,0.03673271,99.06425353],[4.53659144,0.03673096,99.06511266],[4.536591,0.03672921,99.06597146],[4.53659056,0.03672747,99.06682989],[4.53659012,0.03672572,99.06768794],[4.53658968,0.03672397,99.0685456],[4.53658924,0.03672222,99.06940283],[4.5365888,0.03672047,99.07025962],[4.53658836,0.03671872,99.07111595],[4.53658792,0.03671698,99.0719718],[4.53658748,0.03671523,99.07282714],[4.53658704,0.03671348,99.07368197],[4.5365866,0.03671173,99.07453625],[4.53658616,0.03670998,99.07538998],[4.53658572,0.03670823,99.07624312],[4.53658528,0.03670649,99.07709566],[4.53658485,0.03670474,99.07794758],[4.53658441,0.03670299,99.07879886],[4.53658397,0.03670124,99.07964948],[4.53658353,0.03669949,99.08049941],[4.53658309,0.03669774,99.08134864],[4.53658265,0.036696,99.08219715],[4.53658221,0.03669425,99.08304492],[4.53658177,0.0366925,99.08389192],[4.53658133,0.03669075,99.08473814],[4.53658089,0.036689,99.08558355],[4.53658045,0.03668725,99.08642814],[4.53658001,0.03668551,99.08727188],[4.53657958,0.03668376,99.08811476],[4.53657914,0.03668201,99.08895675],[4.5365787,0.03668026,99.08979783],[4.53657826,0.03667851,99.09063798],[4.53657782,0.03667677,99.09147719],[4.53657738,0.03667502,99.09231543],[4.53657694,0.03667327,99.09315268],[4.5365765,0.03667152,99.09398891],[4.53657606,0.03666977,99.09482411],[4.53657562,0.03666802,99.09565825],[4.53657518,0.03666628,99.09649132],[4.53657474,0.03666453,99.09732328],[4.5365743,0.03666278,99.09815412],[4.53657385,0.03666103,99.09898382],[4.53657341,0.03665929,99.09981234],[4.53657297,0.03665754,99.10063968],[4.53657253,0.03665579,99.1014658],[4.53657209,0.03665404,99.10229069],[4.53657165,0.03665229,99.10311433],[4.53657121,0.03665055,99.10393674],[4.53657076,0.0366488,99.10475792],[4.53657032,0.03664705,99.10557789],[4.53656988,0.0366453,99.10639666],[4.53656944,0.03664356,99.10721425],[4.53656899,0.03664181,99.10803066],[4.53656855,0.03664006,99.10884592],[4.53656811,0.03663831,99.10966003],[4.53656766,0.03663657,99.11047303],[4.53656722,0.03663482,99.11128492],[4.53656678,0.03663307,99.11209574],[4.53656633,0.03663133,99.1129055],[4.53656589,0.03662958,99.11371422],[4.53656545,0.03662783,99.11452193],[4.536565,0.03662608,99.11532864],[4.53656456,0.03662434,99.11613438],[4.53656412,0.03662259,99.11693916],[4.53656367,0.03662084,99.11774302],[4.53656323,0.0366191,99.11854596],[4.53656278,0.03661735,99.11934801],[4.53656234,0.0366156,99.1201492],[4.5365619,0.03661386,99.12094955],[4.53656145,0.03661211,99.12174908],[4.53656101,0.03661036,99.12254783],[4.53656056,0.03660861,99.12334581],[4.53656012,0.03660687,99.12414306],[4.53655967,0.03660512,99.1249396],[4.53655923,0.03660337,99.12573541],[4.53655879,0.03660163,99.1265305],[4.53655834,0.03659988,99.12732488],[4.5365579,0.03659813,99.12811854],[4.53655745,0.03659638,99.12891149],[4.53655701,0.03659464,99.12970372],[4.53655657,0.03659289,99.13049524],[4.53655612,0.03659114,99.13128604],[4.53655568,0.0365894,99.13207613],[4.53655523,0.03658765,99.13286551],[4.53655479,0.0365859,99.13365418],[4.53655434,0.03658416,99.13444214],[4.5365539,0.03658241,99.13522939],[4.53655346,0.03658066,99.13601593],[4.53655301,0.03657891,99.13680177],[4.53655257,0.03657717,99.1375869],[4.53655212,0.03657542,99.13837132],[4.53655168,0.03657367,99.13915504],[4.53655123,0.03657193,99.13993805],[4.53655079,0.03657018,99.14072036],[4.53655035,0.03656843,99.14150196],[4.5365499,0.03656669,99.14228287],[4.53654946,0.03656494,99.14306307],[4.53654901,0.03656319,99.14384257],[4.53654857,0.03656144,99.14462137],[4.53654812,0.0365597,99.14539947],[4.53654768,0.03655795,99.14617687],[4.53654724,0.0365562,99.14695358],[4.53654679,0.03655446,99.14772958],[4.53654635,0.03655271,99.14850489],[4.5365459,0.03655096,99.14927951],[4.53654546,0.03654922,99.15005343],[4.53654501,0.03654747,99.15082665],[4.53654457,0.03654572,99.15159918],[4.53654412,0.03654398,99.15237102],[4.53654368,0.03654223,99.15314216],[4.53654323,0.03654048,99.15391261],[4.53654279,0.03653873,99.15468237],[4.53654234,0.03653699,99.15545144],[4.5365419,0.03653524,99.15621982],[4.53654145,0.03653349,99.15698751],[4.53654101,0.03653175,99.15775451],[4.53654056,0.03653,99.15852083],[4.53654012,0.03652825,99.15928645],[4.53653967,0.03652651,99.16005139],[4.53653923,0.03652476,99.16081564],[4.53653878,0.03652301,99.1615792],[4.53653834,0.03652127,99.16234208],[4.53653789,0.03651952,99.16310427],[4.53653745,0.03651777,99.16386578],[4.536537,0.03651603,99.1646266],[4.53653656,0.03651428,99.16538674],[4.53653611,0.03651253,99.1661462],[4.53653567,0.03651079,99.16690497],[4.53653522,0.03650904,99.16766306],[4.53653478,0.03650729,99.16842048],[4.53653433,0.03650555,99.1691772],[4.53653389,0.0365038,99.16993325],[4.53653344,0.03650205,99.17068862],[4.53653299,0.03650031,99.17144331],[4.53653255,0.03649856,99.17219732],[4.5365321,0.03649681,99.17295065],[4.53653166,0.03649507,99.1737033],[4.53653121,0.03649332,99.17445528],[4.53653077,0.03649157,99.17520657],[4.53653058,0.03649083,99.17552414],[4.53656216,0.03648269,99.27350507],[4.53656235,0.03648343,99.27315925],[4.5365628,0.03648518,99.27234116],[4.53656324,0.03648692,99.27152242],[4.53656369,0.03648867,99.27070302],[4.53656413,0.03649042,99.26988298],[4.53656458,0.03649217,99.26906229],[4.53656502,0.03649391,99.26824098],[4.53656547,0.03649566,99.26741903],[4.53656591,0.03649741,99.26659645],[4.53656636,0.03649916,99.26577326],[4.5365668,0.0365009,99.26494945],[4.53656725,0.03650265,99.26412504],[4.53656769,0.0365044,99.26330001],[4.53656814,0.03650614,99.26247439],[4.53656858,0.03650789,99.26164818],[4.53656903,0.03650964,99.26082137],[4.53656947,0.03651139,99.25999398],[4.53656992,0.03651313,99.25916601],[4.53657036,0.03651488,99.25833747],[4.5365708,0.03651663,99.25750836],[4.53657125,0.03651838,99.25667868],[4.53657169,0.03652012,99.25584844],[4.53657214,0.03652187,99.25501765],[4.53657258,0.03652362,99.25418631],[4.53657303,0.03652537,99.25335442],[4.53657347,0.03652711,99.25252199],[4.53657391,0.03652886,99.25168903],[4.53657436,0.03653061,99.25085554],[4.5365748,0.03653236,99.25002152],[4.53657524,0.0365341,99.24918698],[4.53657569,0.03653585,99.24835193],[4.53657613,0.0365376,99.24751637],[4.53657658,0.03653935,99.24668029],[4.53657702,0.03654109,99.24584372],[4.53657746,0.03654284,99.24500665],[4.53657791,0.03654459,99.24416909],[4.53657835,0.03654634,99.24333104],[4.53657879,0.03654808,99.24249251],[4.53657924,0.03654983,99.2416535],[4.53657968,0.03655158,99.24081402],[4.53658013,0.03655333,99.23997407],[4.53658057,0.03655508,99.23913365],[4.53658101,0.03655682,99.23829278],[4.53658146,0.03655857,99.23745145],[4.5365819,0.03656032,99.23660967],[4.53658234,0.03656207,99.23576745],[4.53658279,0.03656381,99.23492478],[4.53658323,0.03656556,99.23408168],[4.53658367,0.03656731,99.23323815],[4.53658412,0.03656906,99.23239419],[4.53658456,0.0365708,99.23154981],[4.536585,0.03657255,99.23070501],[4.53658545,0.0365743,99.22985979],[4.53658589,0.03657605,99.22901417],[4.53658633,0.03657779,99.22816815],[4.53658678,0.03657954,99.22732172],[4.53658722,0.03658129,99.2264749],[4.53658767,0.03658304,99.22562768],[4.53658811,0.03658478,99.22478008],[4.53658855,0.03658653,99.2239321],[4.536589,0.03658828,99.22308374],[4.53658944,0.03659003,99.22223501],[4.53658988,0.03659178,99.22138591],[4.53659033,0.03659352,99.22053645],[4.53659077,0.03659527,99.21968662],[4.53659121,0.03659702,99.21883644],[4.53659166,0.03659877,99.21798591],[4.5365921,0.03660051,99.21713503],[4.53659255,0.03660226,99.2162838],[4.53659299,0.03660401,99.21543219],[4.53659343,0.03660576,99.21458018],[4.53659388,0.0366075,99.21372775],[4.53659432,0.03660925,99.21287487],[4.53659477,0.036611,99.21202154],[4.53659521,0.03661275,99.21116772],[4.53659565,0.03661449,99.21031341],[4.5365961,0.03661624,99.20945857],[4.53659654,0.03661799,99.20860319],[4.53659698,0.03661974,99.20774724],[4.53659743,0.03662148,99.20689072],[4.53659787,0.03662323,99.2060336],[4.53659832,0.03662498,99.20517586],[4.53659876,0.03662673,99.20431749],[4.5365992,0.03662847,99.20345845],[4.53659965,0.03663022,99.20259874],[4.53660009,0.03663197,99.20173834],[4.53660053,0.03663372,99.20087722],[4.53660098,0.03663546,99.20001537],[4.53660142,0.03663721,99.19915277],[4.53660186,0.03663896,99.19828939],[4.5366023,0.03664071,99.19742523],[4.53660275,0.03664246,99.19656025],[4.53660319,0.0366442,99.19569445],[4.53660363,0.03664595,99.19482781],[4.53660407,0.0366477,99.19396029],[4.53660452,0.03664945,99.19309192],[4.53660496,0.0366512,99.19222271],[4.5366054,0.03665294,99.19135267],[4.53660584,0.03665469,99.19048182],[4.53660628,0.03665644,99.18961018],[4.53660672,0.03665819,99.18873776],[4.53660717,0.03665994,99.18786457],[4.53660761,0.03666168,99.18699064],[4.53660805,0.03666343,99.18611598],[4.53660849,0.03666518,99.1852406],[4.53660893,0.03666693,99.18436453],[4.53660937,0.03666868,99.18348777],[4.53660981,0.03667043,99.18261034],[4.53661025,0.03667217,99.18173226],[4.53661069,0.03667392,99.18085353],[4.53661113,0.03667567,99.17997419],[4.53661157,0.03667742,99.17909423],[4.53661201,0.03667917,99.17821368],[4.53661245,0.03668092,99.17733254],[4.53661289,0.03668267,99.17645084],[4.53661333,0.03668441,99.17556859],[4.53661377,0.03668616,99.17468579],[4.53661421,0.03668791,99.17380247],[4.53661465,0.03668966,99.17291865],[4.53661509,0.03669141,99.17203432],[4.53661553,0.03669316,99.17114951],[4.53661597,0.03669491,99.17026424],[4.53661641,0.03669665,99.16937851],[4.53661685,0.0366984,99.16849235],[4.53661729,0.03670015,99.16760575],[4.53661773,0.0367019,99.16671875],[4.53661817,0.03670365,99.16583135],[4.53661861,0.0367054,99.16494356],[4.53661905,0.03670715,99.16405541],[4.53661949,0.03670889,99.1631669],[4.53661993,0.03671064,99.16227805],[4.53662037,0.03671239,99.16138888],[4.53662081,0.03671414,99.16049939],[4.53662125,0.03671589,99.1596096],[4.53662169,0.03671764,99.15871952],[4.53662213,0.03671939,99.15782918],[4.53662257,0.03672113,99.15693858],[4.53662301,0.03672288,99.15604773],[4.53662345,0.03672463,99.15515665],[4.53662389,0.03672638,99.15426536],[4.53662433,0.03672813,99.15337387],[4.53662477,0.03672988,99.15248219],[4.53662521,0.03673162,99.15159033],[4.53662565,0.03673337,99.15069831],[4.53662609,0.03673512,99.14980615],[4.53662653,0.03673687,99.14891385],[4.53662697,0.03673862,99.14802144],[4.53662741,0.03674037,99.14712892],[4.53662785,0.03674212,99.14623631],[4.53662829,0.03674386,99.14534361],[4.53662873,0.03674561,99.14445085],[4.53662918,0.03674736,99.14355801],[4.53662962,0.03674911,99.14266507],[4.53663006,0.03675086,99.14177202],[4.5366305,0.0367526,99.14087886],[4.53663094,0.03675435,99.13998557],[4.53663138,0.0367561,99.13909213],[4.53663182,0.03675785,99.13819855],[4.53663227,0.0367596,99.1373048],[4.53663271,0.03676135,99.13641087],[4.53663315,0.03676309,99.13551675],[4.53663359,0.03676484,99.13462243],[4.53663403,0.03676659,99.1337279],[4.53663447,0.03676834,99.13283315],[4.53663492,0.03677009,99.13193816],[4.53663536,0.03677183,99.13104293],[4.5366358,0.03677358,99.13014744],[4.53663624,0.03677533,99.12925167],[4.53663668,0.03677708,99.12835563],[4.53663713,0.03677883,99.12745929],[4.53663757,0.03678057,99.12656264],[4.53663801,0.03678232,99.12566568],[4.53663845,0.03678407,99.12476839],[4.53663889,0.03678582,99.12387077],[4.53663934,0.03678757,99.12297279],[4.53663978,0.03678931,99.12207445],[4.53664022,0.03679106,99.12117573],[4.53664066,0.03679281,99.12027663],[4.5366411,0.03679456,99.11937713],[4.53664155,0.03679631,99.11847722],[4.53664199,0.03679805,99.11757689],[4.53664243,0.0367998,99.11667614],[4.53664287,0.03680155,99.11577493],[4.53664331,0.0368033,99.11487328],[4.53664375,0.03680505,99.11397116],[4.5366442,0.03680679,99.11306856],[4.53664464,0.03680854,99.11216547],[4.53664508,0.03681029,99.11126188],[4.53664552,0.03681204,99.11035779],[4.53664596,0.03681379,99.1094532],[4.5366464,0.03681553,99.1085481],[4.53664684,0.03681728,99.1076425],[4.53664729,0.03681903,99.1067364],[4.53664773,0.03682078,99.1058298],[4.53664817,0.03682253,99.10492271],[4.53664861,0.03682428,99.10401511],[4.53664905,0.03682602,99.10310702],[4.53664949,0.03682777,99.10219844],[4.53664993,0.03682952,99.10128936],[4.53665037,0.03683127,99.10037979],[4.53665081,0.03683302,99.09946973],[4.53665125,0.03683477,99.09855918],[4.53665169,0.03683651,99.09764814],[4.53665213,0.03683826,99.09673662],[4.53665258,0.03684001,99.09582461],[4.53665302,0.03684176,99.09491213],[4.53665346,0.03684351,99.09399918],[4.5366539,0.03684526,99.09308575],[4.53665434,0.036847,99.09217187],[4.53665478,0.03684875,99.09125752],[4.53665522,0.0368505,99.09034272],[4.53665566,0.03685225,99.08942746],[4.5366561,0.036854,99.08851177],[4.53665654,0.03685575,99.08759562],[4.53665698,0.0368575,99.08667904],[4.53665742,0.03685924,99.08576203],[4.53665785,0.03686099,99.08484458],[4.53665829,0.03686274,99.08392672],[4.53665873,0.03686449,99.08300842],[4.53665917,0.03686624,99.08208972],[4.53665961,0.03686799,99.0811706],[4.53666005,0.03686974,99.08025107],[4.53666049,0.03687148,99.07933114],[4.53666093,0.03687323,99.0784108],[4.53666137,0.03687498,99.07749007],[4.53666181,0.03687673,99.07656895],[4.53666225,0.03687848,99.07564745],[4.53666269,0.03688023,99.07472556],[4.53666313,0.03688198,99.07380329],[4.53666357,0.03688373,99.07288065],[4.53666401,0.03688547,99.07195763],[4.53666444,0.03688722,99.07103425],[4.53666488,0.03688897,99.07011051],[4.53666532,0.03689072,99.06918641],[4.53666576,0.03689247,99.06826196],[4.5366662,0.03689422,99.06733716],[4.53666664,0.03689597,99.06641201],[4.53666708,0.03689772,99.06548653],[4.53666752,0.03689946,99.0645607],[4.53666796,0.03690121,99.06363455],[4.53666839,0.03690296,99.06270806],[4.53666883,0.03690471,99.06178125],[4.53666927,0.03690646,99.06085413],[4.53666971,0.03690821,99.05992668],[4.53667015,0.03690996,99.05899893],[4.53667059,0.03691171,99.05807087],[4.53667103,0.03691346,99.0571425],[4.53667147,0.0369152,99.05621384],[4.5366719,0.03691695,99.05528488],[4.53667234,0.0369187,99.05435564],[4.53667278,0.03692045,99.0534261],[4.53667322,0.0369222,99.05249629],[4.53667366,0.03692395,99.0515662],[4.5366741,0.0369257,99.05063583],[4.53667453,0.03692745,99.04970519],[4.53667497,0.0369292,99.04877429],[4.53667541,0.03693094,99.04784313],[4.53667585,0.03693269,99.04691172],[4.53667629,0.03693444,99.04598005],[4.53667673,0.03693619,99.04504813],[4.53667717,0.03693794,99.04411597],[4.5366776,0.03693969,99.04318356],[4.53667804,0.03694144,99.04225093],[4.53667848,0.03694319,99.04131806],[4.53667892,0.03694494,99.04038496],[4.53667936,0.03694668,99.03945164],[4.5366798,0.03694843,99.0385181],[4.53668023,0.03695018,99.03758435],[4.53668067,0.03695193,99.03665039],[4.53668111,0.03695368,99.03571622],[4.53668155,0.03695543,99.03478185],[4.53668199,0.03695718,99.03384728],[4.53668243,0.03695893,99.03291252],[4.53668287,0.03696068,99.03197757],[4.5366833,0.03696242,99.03104243],[4.53668374,0.03696417,99.03010712],[4.53668418,0.03696592,99.02917162],[4.53668462,0.03696767,99.02823596],[4.53668506,0.03696942,99.02730012],[4.5366855,0.03697117,99.02636411],[4.53668594,0.03697292,99.02542792],[4.53668637,0.03697467,99.02449155],[4.53668681,0.03697642,99.02355501],[4.53668725,0.03697816,99.02261828],[4.53668769,0.03697991,99.02168137],[4.53668813,0.03698166,99.02074427],[4.53668857,0.03698341,99.01980698],[4.53668901,0.03698516,99.0188695],[4.53668944,0.03698691,99.01793183],[4.53668988,0.03698866,99.01699397],[4.53669032,0.03699041,99.0160559],[4.53669076,0.03699215,99.01511764],[4.5366912,0.0369939,99.01417918],[4.53669164,0.03699565,99.01324051],[4.53669208,0.0369974,99.01230163],[4.53669251,0.03699915,99.01136255],[4.53669295,0.0370009,99.01042326],[4.53669339,0.03700265,99.00948375],[4.53669383,0.0370044,99.00854403],[4.53669427,0.03700615,99.0076041],[4.53669471,0.03700789,99.00666394],[4.53669515,0.03700964,99.00572356],[4.53669558,0.03701139,99.00478297],[4.53669602,0.03701314,99.00384214],[4.53669646,0.03701489,99.00290109],[4.5366969,0.03701664,99.00195982],[4.53669734,0.03701839,99.00101833],[4.53669778,0.03702014,99.00007662],[4.53669822,0.03702189,98.99913468],[4.53669865,0.03702363,98.99819253],[4.53669909,0.03702538,98.99725015],[4.53669953,0.03702713,98.99630756],[4.53669997,0.03702888,98.99536475],[4.53670041,0.03703063,98.99442173],[4.53670085,0.03703238,98.99347849],[4.53670128,0.03703413,98.99253503],[4.53670172,0.03703588,98.99159136],[4.53670216,0.03703763,98.99064748],[4.5367026,0.03703937,98.98970338],[4.53670304,0.03704112,98.98875907],[4.53670348,0.03704287,98.98781455],[4.53670391,0.03704462,98.98686982],[4.53670435,0.03704637,98.98592489],[4.53670479,0.03704812,98.98497974],[4.53670523,0.03704987,98.98403439],[4.53670567,0.03705162,98.98308883],[4.5367061,0.03705337,98.98214306],[4.53670654,0.03705512,98.98119709],[4.53670698,0.03705686,98.98025091],[4.53670742,0.03705861,98.97930453],[4.53670786,0.03706036,98.97835795],[4.53670829,0.03706211,98.97741117],[4.53670873,0.03706386,98.97646418],[4.53670917,0.03706561,98.975517],[4.53670961,0.03706736,98.97456961],[4.53671005,0.03706911,98.97362203],[4.53671048,0.03707086,98.97267426],[4.53671092,0.03707261,98.97172629],[4.53671136,0.03707435,98.97077813],[4.5367118,0.0370761,98.96982977],[4.53671224,0.03707785,98.96888123],[4.53671267,0.0370796,98.9679325],[4.53671311,0.03708135,98.96698358],[4.53671355,0.0370831,98.96603447],[4.53671399,0.03708485,98.96508518],[4.53671442,0.0370866,98.96413571],[4.53671486,0.03708835,98.96318606],[4.5367153,0.0370901,98.96223623],[4.53671574,0.03709184,98.96128622],[4.53671618,0.03709359,98.96033603],[4.53671661,0.03709534,98.95938567],[4.53671705,0.03709709,98.95843513],[4.53671749,0.03709884,98.95748442],[4.53671793,0.03710059,98.95653354],[4.53671836,0.03710234,98.95558249],[4.5367188,0.03710409,98.95463127],[4.53671924,0.03710584,98.95367989],[4.53671968,0.03710759,98.95272834],[4.53672011,0.03710934,98.95177662],[4.53672055,0.03711109,98.95082474],[4.53672099,0.03711283,98.9498727],[4.53672143,0.03711458,98.94892051],[4.53672186,0.03711633,98.94796815],[4.5367223,0.03711808,98.94701564],[4.53672274,0.03711983,98.94606297],[4.53672318,0.03712158,98.94511014],[4.53672361,0.03712333,98.94415717],[4.53672405,0.03712508,98.94320404],[4.53672449,0.03712683,98.94225076],[4.53672492,0.03712858,98.94129734],[4.53672536,0.03713033,98.94034377],[4.5367258,0.03713208,98.93939005],[4.53672624,0.03713382,98.93843619],[4.53672667,0.03713557,98.93748218],[4.53672711,0.03713732,98.93652804],[4.53672755,0.03713907,98.93557375],[4.53672798,0.03714082,98.93461933],[4.53672842,0.03714257,98.93366477],[4.53672886,0.03714432,98.93271007],[4.53672929,0.03714607,98.93175524],[4.53672973,0.03714782,98.93080028],[4.53673017,0.03714957,98.92984519],[4.53673061,0.03715132,98.92888996],[4.53673104,0.03715307,98.92793461],[4.53673148,0.03715482,98.92697913],[4.53673192,0.03715657,98.92602352],[4.53673235,0.03715831,98.9250678],[4.53673279,0.03716006,98.92411194],[4.53673323,0.03716181,98.92315597],[4.53673366,0.03716356,98.92219988],[4.5367341,0.03716531,98.92124367],[4.53673454,0.03716706,98.92028734],[4.53673497,0.03716881,98.91933089],[4.53673541,0.03717056,98.91837434],[4.53673585,0.03717231,98.91741767],[4.53673628,0.03717406,98.91646088],[4.53673672,0.03717581,98.91550399],[4.53673716,0.03717756,98.91454699],[4.53673759,0.03717931,98.91358988],[4.53673803,0.03718106,98.91263267],[4.53673846,0.03718281,98.91167535],[4.5367389,0.03718456,98.91071793],[4.53673934,0.0371863,98.9097604],[4.53673977,0.03718805,98.90880278],[4.53674021,0.0371898,98.90784506],[4.53674065,0.03719155,98.90688724],[4.53674108,0.0371933,98.90592933],[4.53674152,0.03719505,98.90497132],[4.53674195,0.0371968,98.90401322],[4.53674239,0.03719855,98.90305502],[4.53674283,0.0372003,98.90209674],[4.53674326,0.03720205,98.90113837],[4.5367437,0.0372038,98.9001799],[4.53674413,0.03720555,98.89922136],[4.53674457,0.0372073,98.89826273],[4.53674501,0.03720905,98.89730401],[4.53674544,0.0372108,98.89634522],[4.53674588,0.03721255,98.89538634],[4.53674631,0.0372143,98.89442739],[4.53674675,0.03721605,98.89346835],[4.53674719,0.0372178,98.89250924],[4.53674762,0.03721954,98.89155004],[4.53674806,0.03722129,98.89059076],[4.53674849,0.03722304,98.88963139],[4.53674893,0.03722479,98.88867194],[4.53674936,0.03722654,98.8877124],[4.5367498,0.03722829,98.88675277],[4.53675024,0.03723004,98.88579305],[4.53675067,0.03723179,98.88483323],[4.53675111,0.03723354,98.88387332],[4.53675154,0.03723529,98.88291332],[4.53675198,0.03723704,98.88195322],[4.53675241,0.03723879,98.88099301],[4.53675285,0.03724054,98.88003271],[4.53675328,0.03724229,98.8790723],[4.53675372,0.03724404,98.8781118],[4.53675415,0.03724579,98.87715118],[4.53675459,0.03724754,98.87619046],[4.53675502,0.03724929,98.87522963],[4.53675546,0.03725104,98.87426869],[4.53675589,0.03725279,98.87330764],[4.53675633,0.03725454,98.87234647],[4.53675676,0.03725629,98.87138519],[4.5367572,0.03725804,98.87042379],[4.53675763,0.03725979,98.86946228],[4.53675807,0.03726154,98.86850064],[4.5367585,0.03726329,98.86753888],[4.53675894,0.03726504,98.866577],[4.53675937,0.03726679,98.865615],[4.5367598,0.03726854,98.86465286],[4.53676024,0.03727029,98.8636906],[4.53676067,0.03727204,98.86272822],[4.53676111,0.03727379,98.86176569],[4.53676154,0.03727554,98.86080304],[4.53676198,0.03727729,98.85984025],[4.53676241,0.03727904,98.85887733],[4.53676284,0.03728079,98.85791426],[4.53676328,0.03728254,98.85695106],[4.53676371,0.03728429,98.85598772],[4.53676414,0.03728604,98.85502423],[4.53676458,0.03728779,98.8540606],[4.53676501,0.03728954,98.85309682],[4.53676544,0.03729129,98.8521329],[4.53676588,0.03729304,98.85116882],[4.53676631,0.03729479,98.85020459],[4.53676674,0.03729654,98.84924021],[4.53676718,0.03729829,98.84827568],[4.53676761,0.03730004,98.84731099],[4.53676804,0.03730179,98.84634614],[4.53676848,0.03730354,98.84538112],[4.53676891,0.03730529,98.84441595],[4.53676934,0.03730704,98.84345062],[4.53676977,0.03730879,98.84248512],[4.53677021,0.03731054,98.84151945],[4.53677064,0.03731229,98.84055361],[4.53677107,0.03731404,98.83958761],[4.5367715,0.03731579,98.83862143],[4.53677194,0.03731754,98.83765507],[4.53677237,0.03731929,98.83668855],[4.5367728,0.03732104,98.83572184],[4.53677323,0.03732279,98.83475496],[4.53677366,0.03732455,98.8337879],[4.53677409,0.0373263,98.83282069],[4.53677453,0.03732805,98.83185333],[4.53677496,0.0373298,98.83088585],[4.53677539,0.03733155,98.82991827],[4.53677582,0.0373333,98.82895059],[4.53677625,0.03733505,98.82798283],[4.53677668,0.0373368,98.82701502],[4.53677711,0.03733855,98.82604716],[4.53677754,0.0373403,98.82507927],[4.53677797,0.03734205,98.82411137],[4.53677841,0.0373438,98.82314347],[4.53677884,0.03734555,98.82217559],[4.53677927,0.0373473,98.82120775],[4.5367797,0.03734906,98.82023996],[4.53678013,0.03735081,98.81927224],[4.53678056,0.03735256,98.8183046],[4.53678099,0.03735431,98.81733706],[4.53678142,0.03735606,98.81636964],[4.53678185,0.03735781,98.81540235],[4.53678228,0.03735956,98.81443521],[4.53678271,0.03736131,98.81346824],[4.53678314,0.03736306,98.81250144],[4.53678357,0.03736481,98.81153485],[4.536784,0.03736656,98.81056847],[4.53678444,0.03736831,98.80960232],[4.53678487,0.03737007,98.80863641],[4.5367853,0.03737182,98.80767074],[4.53678573,0.03737357,98.80670533],[4.53678616,0.03737532,98.80574017],[4.53678659,0.03737707,98.80477528],[4.53678702,0.03737882,98.80381066],[4.53678745,0.03738057,98.80284632],[4.53678788,0.03738232,98.80188227],[4.53678831,0.03738407,98.8009185],[4.53678874,0.03738582,98.79995503],[4.53678918,0.03738757,98.79899187],[4.53678961,0.03738932,98.79802901],[4.53679004,0.03739107,98.79706647],[4.53679047,0.03739283,98.79610425],[4.5367909,0.03739458,98.79514237],[4.53679133,0.03739633,98.79418081],[4.53679176,0.03739808,98.7932196],[4.53679219,0.03739983,98.79225874],[4.53679263,0.03740158,98.79129824],[4.53679306,0.03740333,98.79033809],[4.53679349,0.03740508,98.78937832],[4.53679392,0.03740683,98.78841891],[4.53679435,0.03740858,98.78745989],[4.53679478,0.03741033,98.78650126],[4.53679522,0.03741208,98.78554302],[4.53679565,0.03741383,98.78458518],[4.53679608,0.03741558,98.78362775],[4.53679651,0.03741733,98.78267073],[4.53679694,0.03741908,98.78171414],[4.53679738,0.03742083,98.78075796],[4.53679781,0.03742258,98.77980223],[4.53679824,0.03742433,98.77884693],[4.53679867,0.03742608,98.77789205],[4.53679911,0.03742783,98.77693758],[4.53679954,0.03742958,98.77598351],[4.53679997,0.03743133,98.77502981],[4.5368004,0.03743308,98.77407648],[4.53680084,0.03743483,98.7731235],[4.53680127,0.03743658,98.77217086],[4.5368017,0.03743833,98.77121853],[4.53680213,0.03744009,98.7702665],[4.53680257,0.03744184,98.76931476],[4.536803,0.03744359,98.76836329],[4.53680343,0.03744534,98.76741208],[4.53680386,0.03744709,98.76646111],[4.5368043,0.03744884,98.76551037],[4.53680473,0.03745059,98.76455984],[4.53680516,0.03745234,98.7636095],[4.5368056,0.03745409,98.76265935],[4.53680603,0.03745584,98.76170938],[4.53680646,0.03745759,98.76075959],[4.53680689,0.03745934,98.75981],[4.53680733,0.03746109,98.75886059],[4.53680776,0.03746284,98.75791137],[4.53680819,0.03746459,98.75696233],[4.53680862,0.03746634,98.75601349],[4.53680906,0.03746809,98.75506484],[4.53680949,0.03746984,98.75411638],[4.53680992,0.03747159,98.75316812],[4.53681035,0.03747334,98.75222005],[4.53681079,0.03747509,98.75127217],[4.53681122,0.03747684,98.75032449],[4.53681165,0.03747859,98.74937701],[4.53681208,0.03748034,98.74842972],[4.53681252,0.03748209,98.74748264],[4.53681295,0.03748385,98.74653575],[4.53681338,0.0374856,98.74558907],[4.53681381,0.03748735,98.74464259],[4.53681424,0.0374891,98.74369631],[4.53681468,0.03749085,98.74275024],[4.53681511,0.0374926,98.74180437],[4.53681554,0.03749435,98.7408587],[4.53681597,0.0374961,98.73991325],[4.5368164,0.03749785,98.738968],[4.53681684,0.0374996,98.73802296],[4.53681727,0.03750135,98.73707813],[4.5368177,0.0375031,98.73613351],[4.53681813,0.03750485,98.73518911],[4.53681856,0.0375066,98.73424491],[4.536819,0.03750835,98.73330093],[4.53681943,0.0375101,98.73235717],[4.53681986,0.03751185,98.73141362],[4.53682029,0.0375136,98.73047029],[4.53682072,0.03751535,98.72952717],[4.53682116,0.03751711,98.72858428],[4.53682159,0.03751886,98.7276416],[4.53682202,0.03752061,98.72669914],[4.53682245,0.03752236,98.72575691],[4.53682288,0.03752411,98.7248149],[4.53682331,0.03752586,98.72387311],[4.53682374,0.03752761,98.72293155],[4.53682418,0.03752936,98.72199021],[4.53682461,0.03753111,98.72104909],[4.53682504,0.03753286,98.72010821],[4.53682547,0.03753461,98.71916755],[4.5368259,0.03753636,98.71822713],[4.53682633,0.03753811,98.71728693],[4.53682676,0.03753986,98.71634696],[4.5368272,0.03754161,98.71540723],[4.53682763,0.03754337,98.71446773],[4.53682806,0.03754512,98.71352846],[4.53682849,0.03754687,98.71258943],[4.53682892,0.03754862,98.71165063],[4.53682935,0.03755037,98.71071207],[4.53682978,0.03755212,98.70977375],[4.53683021,0.03755387,98.70883566],[4.53683064,0.03755562,98.70789782],[4.53683107,0.03755737,98.70696022],[4.53683151,0.03755912,98.70602285],[4.53683194,0.03756087,98.70508573],[4.53683237,0.03756262,98.70414886],[4.5368328,0.03756438,98.70321222],[4.53683323,0.03756613,98.70227584],[4.53683366,0.03756788,98.7013397],[4.53683409,0.03756963,98.7004038],[4.53683452,0.03757138,98.69946816],[4.53683495,0.03757313,98.69853276],[4.53683538,0.03757488,98.69759761],[4.53683581,0.03757663,98.69666272],[4.53683624,0.03757838,98.69572807],[4.53683667,0.03758013,98.69479368],[4.5368371,0.03758188,98.69385954],[4.53683753,0.03758364,98.69292566],[4.53683796,0.03758539,98.69199203],[4.53683839,0.03758714,98.69105866],[4.53683882,0.03758889,98.69012554],[4.53683925,0.03759064,98.68919269],[4.53683968,0.03759239,98.68826009],[4.53684011,0.03759414,98.68732775],[4.53684054,0.03759589,98.68639568],[4.53684097,0.03759764,98.68546386],[4.5368414,0.03759939,98.68453231],[4.53684183,0.03760115,98.68360102],[4.53684226,0.0376029,98.68267001],[4.53684269,0.03760465,98.68173926],[4.53684312,0.0376064,98.68080879],[4.53684355,0.03760815,98.6798786],[4.53684398,0.0376099,98.67894869],[4.53684441,0.03761165,98.67801907],[4.53684484,0.0376134,98.67708973],[4.53684527,0.03761515,98.67616069],[4.5368457,0.03761691,98.67523195],[4.53684613,0.03761866,98.67430351],[4.53684656,0.03762041,98.67337537],[4.53684699,0.03762216,98.67244754],[4.53684742,0.03762391,98.67152002],[4.53684785,0.03762566,98.67059281],[4.53684828,0.03762741,98.66966592],[4.53684871,0.03762916,98.66873936],[4.53684913,0.03763092,98.66781311],[4.53684956,0.03763267,98.6668872],[4.53684999,0.03763442,98.66596162],[4.53685042,0.03763617,98.66503637],[4.53685085,0.03763792,98.66411146],[4.53685128,0.03763967,98.6631869],[4.53685171,0.03764142,98.66226268],[4.53685214,0.03764317,98.66133881],[4.53685257,0.03764493,98.6604153],[4.536853,0.03764668,98.65949214],[4.53685342,0.03764843,98.65856934],[4.53685385,0.03765018,98.6576469],[4.53685428,0.03765193,98.65672484],[4.53685471,0.03765368,98.65580314],[4.53685514,0.03765543,98.65488182],[4.53685557,0.03765719,98.65396087],[4.536856,0.03765894,98.65304031],[4.53685643,0.03766069,98.65212013],[4.53685685,0.03766244,98.65120034],[4.53685728,0.03766419,98.65028095],[4.53685771,0.03766594,98.64936195],[4.53685814,0.03766769,98.64844335],[4.53685857,0.03766945,98.64752515],[4.536859,0.0376712,98.64660736],[4.53685943,0.03767295,98.64568997],[4.53685985,0.0376747,98.64477301],[4.53686028,0.03767645,98.64385645],[4.53686071,0.0376782,98.64294033],[4.53686114,0.03767995,98.64202462],[4.53686157,0.03768171,98.64110934],[4.536862,0.03768346,98.6401945],[4.53686242,0.03768521,98.63928009],[4.53686285,0.03768696,98.63836611],[4.53686328,0.03768871,98.63745258],[4.53686371,0.03769046,98.6365395],[4.53686414,0.03769221,98.63562687],[4.53686457,0.03769397,98.63471469],[4.53686499,0.03769572,98.63380296],[4.53686542,0.03769747,98.6328917],[4.53686585,0.03769922,98.6319809],[4.53686628,0.03770097,98.63107056],[4.53686671,0.03770272,98.6301607],[4.53686713,0.03770447,98.62925132],[4.53686756,0.03770623,98.62834241],[4.53686799,0.03770798,98.62743398],[4.53686842,0.03770973,98.62652604],[4.53686885,0.03771148,98.62561859],[4.53686928,0.03771323,98.62471163],[4.5368697,0.03771498,98.62380517],[4.53687013,0.03771674,98.6228992],[4.53687056,0.03771849,98.62199375],[4.53687099,0.03772024,98.62108879],[4.53687142,0.03772199,98.62018435],[4.53687184,0.03772374,98.61928043],[4.53687227,0.03772549,98.61837702],[4.5368727,0.03772724,98.61747413],[4.53687313,0.037729,98.61657177],[4.53687356,0.03773075,98.61566994],[4.53687398,0.0377325,98.61476864],[4.53687441,0.03773425,98.61386787],[4.53687484,0.037736,98.61296765],[4.53687527,0.03773775,98.61206797],[4.5368757,0.03773951,98.61116883],[4.53687612,0.03774126,98.61027025],[4.53687655,0.03774301,98.60937222],[4.53687698,0.03774476,98.60847475],[4.53687741,0.03774651,98.60757784],[4.53687783,0.03774826,98.6066815],[4.53687826,0.03775001,98.60578573],[4.53687869,0.03775177,98.60489052],[4.53687912,0.03775352,98.60399588],[4.53687955,0.03775527,98.60310179],[4.53687997,0.03775702,98.60220825],[4.5368804,0.03775877,98.60131525],[4.53688083,0.03776052,98.6004228],[4.53688126,0.03776228,98.59953089],[4.53688169,0.03776403,98.59863953],[4.53688211,0.03776578,98.59774872],[4.53688254,0.03776753,98.59685847],[4.53688297,0.03776928,98.59596876],[4.5368834,0.03777103,98.59507961],[4.53688382,0.03777279,98.59419101],[4.53688425,0.03777454,98.59330297],[4.53688468,0.03777629,98.59241548],[4.53688511,0.03777804,98.59152856],[4.53688554,0.03777979,98.5906422],[4.53688596,0.03778154,98.5897564],[4.53688639,0.03778329,98.58887116],[4.53688682,0.03778505,98.5879865],[4.53688725,0.0377868,98.58710239],[4.53688767,0.03778855,98.58621886],[4.5368881,0.0377903,98.5853359],[4.53688853,0.03779205,98.5844535],[4.53688896,0.0377938,98.58357168],[4.53688938,0.03779556,98.58269044],[4.53688981,0.03779731,98.58180977],[4.53689024,0.03779906,98.58092968],[4.53689067,0.03780081,98.58005017],[4.53689109,0.03780256,98.57917123],[4.53689152,0.03780431,98.57829288],[4.53689195,0.03780607,98.57741512],[4.53689238,0.03780782,98.57653793],[4.5368928,0.03780957,98.57566134],[4.53689323,0.03781132,98.57478533],[4.53689366,0.03781307,98.57390991],[4.53689409,0.03781482,98.57303508],[4.53689451,0.03781658,98.57216085],[4.53689494,0.03781833,98.5712872],[4.53689537,0.03782008,98.57041416],[4.5368958,0.03782183,98.5695417],[4.53689622,0.03782358,98.56866985],[4.53689665,0.03782534,98.5677986],[4.53689708,0.03782709,98.56692795],[4.5368975,0.03782884,98.5660579],[4.53689793,0.03783059,98.56518845],[4.53689836,0.03783234,98.56431961],[4.53689879,0.03783409,98.56345137],[4.53689921,0.03783585,98.56258375],[4.53689964,0.0378376,98.56171673],[4.53690007,0.03783935,98.56085033],[4.53690049,0.0378411,98.55998453],[4.53690092,0.03784285,98.55911936],[4.53690135,0.0378446,98.55825479],[4.53690178,0.03784636,98.55739085],[4.5369022,0.03784811,98.55652752],[4.53690263,0.03784986,98.55566482],[4.53690306,0.03785161,98.55480273],[4.53690348,0.03785336,98.55394127],[4.53690391,0.03785512,98.55308043],[4.53690434,0.03785687,98.55222022],[4.53690476,0.03785862,98.55136063],[4.53690519,0.03786037,98.55050168],[4.53690562,0.03786212,98.54964335],[4.53690604,0.03786388,98.54878566],[4.53690647,0.03786563,98.54792859],[4.5369069,0.03786738,98.54707217],[4.53690732,0.03786913,98.54621638],[4.53690775,0.03787088,98.54536123],[4.53690818,0.03787263,98.54450671],[4.5369086,0.03787439,98.54365284],[4.53690903,0.03787614,98.54279961],[4.53690946,0.03787789,98.54194702],[4.53690988,0.03787964,98.54109508],[4.53691031,0.03788139,98.54024378],[4.53691074,0.03788315,98.53939313],[4.53691116,0.0378849,98.53854313],[4.53691159,0.03788665,98.53769378],[4.53691202,0.0378884,98.53684509],[4.53691244,0.03789015,98.53599704],[4.53691287,0.03789191,98.53514966],[4.53691329,0.03789366,98.53430292],[4.53691372,0.03789541,98.53345685],[4.53691415,0.03789716,98.53261144],[4.53691457,0.03789891,98.53176669],[4.536915,0.03790067,98.5309226],[4.53691543,0.03790242,98.53007917],[4.53691585,0.03790417,98.52923641],[4.53691628,0.03790592,98.52839431],[4.5369167,0.03790767,98.52755289],[4.53691713,0.03790943,98.52671213],[4.53691756,0.03791118,98.52587205],[4.53691798,0.03791293,98.52503264],[4.53691841,0.03791468,98.5241939],[4.53691883,0.03791643,98.52335584],[4.53691926,0.03791819,98.52251845],[4.53691969,0.03791994,98.52168175],[4.53692011,0.03792169,98.52084572],[4.53692054,0.03792344,98.52001038],[4.53692096,0.03792519,98.51917572],[4.53692139,0.03792695,98.51834174],[4.53692181,0.0379287,98.51750847],[4.53692224,0.03793045,98.51667591],[4.53692267,0.0379322,98.51584406],[4.53692309,0.03793396,98.51501295],[4.53692352,0.03793571,98.51418257],[4.53692394,0.03793746,98.51335295],[4.53692437,0.03793921,98.51252408],[4.53692479,0.03794096,98.51169598],[4.53692522,0.03794272,98.51086866],[4.53692564,0.03794447,98.51004212],[4.53692607,0.03794622,98.50921635],[4.5369265,0.03794797,98.50839136],[4.53692692,0.03794972,98.50756715],[4.53692735,0.03795148,98.50674371],[4.53692777,0.03795323,98.50592105],[4.5369282,0.03795498,98.50509916],[4.53692862,0.03795673,98.50427805],[4.53692905,0.03795849,98.50345771],[4.53692947,0.03796024,98.50263815],[4.5369299,0.03796199,98.50181936],[4.53693032,0.03796374,98.50100134],[4.53693075,0.03796549,98.5001841],[4.53693118,0.03796725,98.49936763],[4.5369316,0.037969,98.49855193],[4.53693203,0.03797075,98.49773701],[4.53693245,0.0379725,98.49692286],[4.53693288,0.03797426,98.49610948],[4.5369333,0.03797601,98.49529687],[4.53693373,0.03797776,98.49448503],[4.53693415,0.03797951,98.49367396],[4.53693458,0.03798126,98.49286367],[4.536935,0.03798302,98.49205414],[4.53693543,0.03798477,98.49124538],[4.53693585,0.03798652,98.4904374],[4.53693628,0.03798827,98.48963018],[4.5369367,0.03799003,98.48882373],[4.53693713,0.03799178,98.48801805],[4.53693755,0.03799353,98.48721314],[4.53693798,0.03799528,98.48640899],[4.5369384,0.03799704,98.48560562],[4.53693883,0.03799879,98.48480301],[4.53693925,0.03800054,98.48400117],[4.53693968,0.03800229,98.48320009],[4.5369401,0.03800404,98.48239979],[4.53694053,0.0380058,98.48160025],[4.53694095,0.03800755,98.48080147],[4.53694138,0.0380093,98.48000346],[4.5369418,0.03801105,98.47920622],[4.53694223,0.03801281,98.47840974],[4.53694265,0.03801456,98.47761402],[4.53694308,0.03801631,98.47681907],[4.5369435,0.03801806,98.47602489],[4.53694393,0.03801982,98.47523147],[4.53694435,0.03802157,98.47443881],[4.53694477,0.03802332,98.47364691],[4.5369452,0.03802507,98.47285578],[4.53694562,0.03802683,98.47206542],[4.53694605,0.03802858,98.47127581],[4.53694647,0.03803033,98.47048697],[4.5369469,0.03803208,98.46969889],[4.53694732,0.03803384,98.46891157],[4.53694774,0.03803559,98.46812501],[4.53694817,0.03803734,98.46733922],[4.53694859,0.03803909,98.46655419],[4.53694902,0.03804085,98.46576991],[4.53694944,0.0380426,98.4649864],[4.53694986,0.03804435,98.46420365],[4.53695029,0.0380461,98.46342166],[4.53695071,0.03804786,98.46264043],[4.53695113,0.03804961,98.46185996],[4.53695156,0.03805136,98.46108025],[4.53695198,0.03805311,98.4603013],[4.5369524,0.03805487,98.45952311],[4.53695283,0.03805662,98.45874567],[4.53695325,0.03805837,98.457969],[4.53695368,0.03806013,98.45719309],[4.5369541,0.03806188,98.45641793],[4.53695452,0.03806363,98.45564353],[4.53695494,0.03806538,98.45486989],[4.53695537,0.03806714,98.45409701],[4.53695579,0.03806889,98.45332489],[4.53695621,0.03807064,98.45255353],[4.53695664,0.0380724,98.45178292],[4.53695706,0.03807415,98.45101307],[4.53695748,0.0380759,98.45024398],[4.5369579,0.03807765,98.44947564],[4.53695833,0.03807941,98.44870806],[4.53695875,0.03808116,98.44794124],[4.53695917,0.03808291,98.44717518],[4.5369596,0.03808467,98.44640987],[4.53696002,0.03808642,98.44564532],[4.53696044,0.03808817,98.44488153],[4.53696086,0.03808992,98.4441185],[4.53696128,0.03809168,98.44335622],[4.53696171,0.03809343,98.4425947],[4.53696213,0.03809518,98.44183396],[4.53696255,0.03809694,98.44107401],[4.53696297,0.03809869,98.44031486],[4.53696339,0.03810044,98.43955652],[4.53696382,0.0381022,98.438799],[4.53696424,0.03810395,98.43804231],[4.53696466,0.0381057,98.43728647],[4.53696508,0.03810746,98.43653148],[4.5369655,0.03810921,98.43577735],[4.53696592,0.03811096,98.43502411],[4.53696635,0.03811271,98.43427175],[4.53696677,0.03811447,98.43352029],[4.53696719,0.03811622,98.43276975],[4.53696761,0.03811797,98.43202012],[4.53696803,0.03811973,98.43127143],[4.53696845,0.03812148,98.43052369],[4.53696887,0.03812323,98.4297769],[4.53696929,0.03812499,98.42903108],[4.53696972,0.03812674,98.42828623],[4.53697014,0.03812849,98.42754238],[4.53697056,0.03813025,98.42679952],[4.53697098,0.038132,98.42605768],[4.5369714,0.03813375,98.42531686],[4.53697182,0.03813551,98.42457707],[4.53697224,0.03813726,98.42383833],[4.53697267,0.03813901,98.42310065],[4.53697309,0.03814077,98.42236403],[4.53697351,0.03814252,98.42162849],[4.53697393,0.03814427,98.42089404],[4.53697435,0.03814603,98.42016068],[4.53697477,0.03814778,98.41942844],[4.53697519,0.03814953,98.41869732],[4.53697561,0.03815129,98.41796734],[4.53697604,0.03815304,98.41723849],[4.53697646,0.03815479,98.4165108],[4.53697688,0.03815655,98.41578428],[4.5369773,0.0381583,98.41505894],[4.53697772,0.03816005,98.41433478],[4.53697814,0.0381618,98.41361182],[4.53697857,0.03816356,98.41289006],[4.53697899,0.03816531,98.41216953],[4.53697941,0.03816706,98.41145023],[4.53697983,0.03816882,98.41073217],[4.53698025,0.03817057,98.41001535],[4.53698067,0.03817232,98.40929979],[4.5369811,0.03817408,98.40858549],[4.53698152,0.03817583,98.40787246],[4.53698194,0.03817758,98.40716071],[4.53698236,0.03817934,98.40645023],[4.53698278,0.03818109,98.40574104],[4.53698321,0.03818284,98.40503315],[4.53698363,0.03818459,98.40432656],[4.53695186,0.03819239,98.30680636]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2,"sOffset":53.8544139403}},{"geometry":{"coordinates":[[[4.53698363,0.03818459,98.40432656],[4.53698321,0.03818284,98.40503315],[4.53698278,0.03818109,98.40574104],[4.53698236,0.03817934,98.40645023],[4.53698194,0.03817758,98.40716071],[4.53698152,0.03817583,98.40787246],[4.5369811,0.03817408,98.40858549],[4.53698067,0.03817232,98.40929979],[4.53698025,0.03817057,98.41001535],[4.53697983,0.03816882,98.41073217],[4.53697941,0.03816706,98.41145023],[4.53697899,0.03816531,98.41216953],[4.53697857,0.03816356,98.41289006],[4.53697814,0.0381618,98.41361182],[4.53697772,0.03816005,98.41433478],[4.5369773,0.0381583,98.41505894],[4.53697688,0.03815655,98.41578428],[4.53697646,0.03815479,98.4165108],[4.53697604,0.03815304,98.41723849],[4.53697561,0.03815129,98.41796734],[4.53697519,0.03814953,98.41869732],[4.53697477,0.03814778,98.41942844],[4.53697435,0.03814603,98.42016068],[4.53697393,0.03814427,98.42089404],[4.53697351,0.03814252,98.42162849],[4.53697309,0.03814077,98.42236403],[4.53697267,0.03813901,98.42310065],[4.53697224,0.03813726,98.42383833],[4.53697182,0.03813551,98.42457707],[4.5369714,0.03813375,98.42531686],[4.53697098,0.038132,98.42605768],[4.53697056,0.03813025,98.42679952],[4.53697014,0.03812849,98.42754238],[4.53696972,0.03812674,98.42828623],[4.53696929,0.03812499,98.42903108],[4.53696887,0.03812323,98.4297769],[4.53696845,0.03812148,98.43052369],[4.53696803,0.03811973,98.43127143],[4.53696761,0.03811797,98.43202012],[4.53696719,0.03811622,98.43276975],[4.53696677,0.03811447,98.43352029],[4.53696635,0.03811271,98.43427175],[4.53696592,0.03811096,98.43502411],[4.5369655,0.03810921,98.43577735],[4.53696508,0.03810746,98.43653148],[4.53696466,0.0381057,98.43728647],[4.53696424,0.03810395,98.43804231],[4.53696382,0.0381022,98.438799],[4.53696339,0.03810044,98.43955652],[4.53696297,0.03809869,98.44031486],[4.53696255,0.03809694,98.44107401],[4.53696213,0.03809518,98.44183396],[4.53696171,0.03809343,98.4425947],[4.53696128,0.03809168,98.44335622],[4.53696086,0.03808992,98.4441185],[4.53696044,0.03808817,98.44488153],[4.53696002,0.03808642,98.44564532],[4.5369596,0.03808467,98.44640987],[4.53695917,0.03808291,98.44717518],[4.53695875,0.03808116,98.44794124],[4.53695833,0.03807941,98.44870806],[4.5369579,0.03807765,98.44947564],[4.53695748,0.0380759,98.45024398],[4.53695706,0.03807415,98.45101307],[4.53695664,0.0380724,98.45178292],[4.53695621,0.03807064,98.45255353],[4.53695579,0.03806889,98.45332489],[4.53695537,0.03806714,98.45409701],[4.53695494,0.03806538,98.45486989],[4.53695452,0.03806363,98.45564353],[4.5369541,0.03806188,98.45641793],[4.53695368,0.03806013,98.45719309],[4.53695325,0.03805837,98.457969],[4.53695283,0.03805662,98.45874567],[4.5369524,0.03805487,98.45952311],[4.53695198,0.03805311,98.4603013],[4.53695156,0.03805136,98.46108025],[4.53695113,0.03804961,98.46185996],[4.53695071,0.03804786,98.46264043],[4.53695029,0.0380461,98.46342166],[4.53694986,0.03804435,98.46420365],[4.53694944,0.0380426,98.4649864],[4.53694902,0.03804085,98.46576991],[4.53694859,0.03803909,98.46655419],[4.53694817,0.03803734,98.46733922],[4.53694774,0.03803559,98.46812501],[4.53694732,0.03803384,98.46891157],[4.5369469,0.03803208,98.46969889],[4.53694647,0.03803033,98.47048697],[4.53694605,0.03802858,98.47127581],[4.53694562,0.03802683,98.47206542],[4.5369452,0.03802507,98.47285578],[4.53694477,0.03802332,98.47364691],[4.53694435,0.03802157,98.47443881],[4.53694393,0.03801982,98.47523147],[4.5369435,0.03801806,98.47602489],[4.53694308,0.03801631,98.47681907],[4.53694265,0.03801456,98.47761402],[4.53694223,0.03801281,98.47840974],[4.5369418,0.03801105,98.47920622],[4.53694138,0.0380093,98.48000346],[4.53694095,0.03800755,98.48080147],[4.53694053,0.0380058,98.48160025],[4.5369401,0.03800404,98.48239979],[4.53693968,0.03800229,98.48320009],[4.53693925,0.03800054,98.48400117],[4.53693883,0.03799879,98.48480301],[4.5369384,0.03799704,98.48560562],[4.53693798,0.03799528,98.48640899],[4.53693755,0.03799353,98.48721314],[4.53693713,0.03799178,98.48801805],[4.5369367,0.03799003,98.48882373],[4.53693628,0.03798827,98.48963018],[4.53693585,0.03798652,98.4904374],[4.53693543,0.03798477,98.49124538],[4.536935,0.03798302,98.49205414],[4.53693458,0.03798126,98.49286367],[4.53693415,0.03797951,98.49367396],[4.53693373,0.03797776,98.49448503],[4.5369333,0.03797601,98.49529687],[4.53693288,0.03797426,98.49610948],[4.53693245,0.0379725,98.49692286],[4.53693203,0.03797075,98.49773701],[4.5369316,0.037969,98.49855193],[4.53693118,0.03796725,98.49936763],[4.53693075,0.03796549,98.5001841],[4.53693032,0.03796374,98.50100134],[4.5369299,0.03796199,98.50181936],[4.53692947,0.03796024,98.50263815],[4.53692905,0.03795849,98.50345771],[4.53692862,0.03795673,98.50427805],[4.5369282,0.03795498,98.50509916],[4.53692777,0.03795323,98.50592105],[4.53692735,0.03795148,98.50674371],[4.53692692,0.03794972,98.50756715],[4.5369265,0.03794797,98.50839136],[4.53692607,0.03794622,98.50921635],[4.53692564,0.03794447,98.51004212],[4.53692522,0.03794272,98.51086866],[4.53692479,0.03794096,98.51169598],[4.53692437,0.03793921,98.51252408],[4.53692394,0.03793746,98.51335295],[4.53692352,0.03793571,98.51418257],[4.53692309,0.03793396,98.51501295],[4.53692267,0.0379322,98.51584406],[4.53692224,0.03793045,98.51667591],[4.53692181,0.0379287,98.51750847],[4.53692139,0.03792695,98.51834174],[4.53692096,0.03792519,98.51917572],[4.53692054,0.03792344,98.52001038],[4.53692011,0.03792169,98.52084572],[4.53691969,0.03791994,98.52168175],[4.53691926,0.03791819,98.52251845],[4.53691883,0.03791643,98.52335584],[4.53691841,0.03791468,98.5241939],[4.53691798,0.03791293,98.52503264],[4.53691756,0.03791118,98.52587205],[4.53691713,0.03790943,98.52671213],[4.5369167,0.03790767,98.52755289],[4.53691628,0.03790592,98.52839431],[4.53691585,0.03790417,98.52923641],[4.53691543,0.03790242,98.53007917],[4.536915,0.03790067,98.5309226],[4.53691457,0.03789891,98.53176669],[4.53691415,0.03789716,98.53261144],[4.53691372,0.03789541,98.53345685],[4.53691329,0.03789366,98.53430292],[4.53691287,0.03789191,98.53514966],[4.53691244,0.03789015,98.53599704],[4.53691202,0.0378884,98.53684509],[4.53691159,0.03788665,98.53769378],[4.53691116,0.0378849,98.53854313],[4.53691074,0.03788315,98.53939313],[4.53691031,0.03788139,98.54024378],[4.53690988,0.03787964,98.54109508],[4.53690946,0.03787789,98.54194702],[4.53690903,0.03787614,98.54279961],[4.5369086,0.03787439,98.54365284],[4.53690818,0.03787263,98.54450671],[4.53690775,0.03787088,98.54536123],[4.53690732,0.03786913,98.54621638],[4.5369069,0.03786738,98.54707217],[4.53690647,0.03786563,98.54792859],[4.53690604,0.03786388,98.54878566],[4.53690562,0.03786212,98.54964335],[4.53690519,0.03786037,98.55050168],[4.53690476,0.03785862,98.55136063],[4.53690434,0.03785687,98.55222022],[4.53690391,0.03785512,98.55308043],[4.53690348,0.03785336,98.55394127],[4.53690306,0.03785161,98.55480273],[4.53690263,0.03784986,98.55566482],[4.5369022,0.03784811,98.55652752],[4.53690178,0.03784636,98.55739085],[4.53690135,0.0378446,98.55825479],[4.53690092,0.03784285,98.55911936],[4.53690049,0.0378411,98.55998453],[4.53690007,0.03783935,98.56085033],[4.53689964,0.0378376,98.56171673],[4.53689921,0.03783585,98.56258375],[4.53689879,0.03783409,98.56345137],[4.53689836,0.03783234,98.56431961],[4.53689793,0.03783059,98.56518845],[4.5368975,0.03782884,98.5660579],[4.53689708,0.03782709,98.56692795],[4.53689665,0.03782534,98.5677986],[4.53689622,0.03782358,98.56866985],[4.5368958,0.03782183,98.5695417],[4.53689537,0.03782008,98.57041416],[4.53689494,0.03781833,98.5712872],[4.53689451,0.03781658,98.57216085],[4.53689409,0.03781482,98.57303508],[4.53689366,0.03781307,98.57390991],[4.53689323,0.03781132,98.57478533],[4.5368928,0.03780957,98.57566134],[4.53689238,0.03780782,98.57653793],[4.53689195,0.03780607,98.57741512],[4.53689152,0.03780431,98.57829288],[4.53689109,0.03780256,98.57917123],[4.53689067,0.03780081,98.58005017],[4.53689024,0.03779906,98.58092968],[4.53688981,0.03779731,98.58180977],[4.53688938,0.03779556,98.58269044],[4.53688896,0.0377938,98.58357168],[4.53688853,0.03779205,98.5844535],[4.5368881,0.0377903,98.5853359],[4.53688767,0.03778855,98.58621886],[4.53688725,0.0377868,98.58710239],[4.53688682,0.03778505,98.5879865],[4.53688639,0.03778329,98.58887116],[4.53688596,0.03778154,98.5897564],[4.53688554,0.03777979,98.5906422],[4.53688511,0.03777804,98.59152856],[4.53688468,0.03777629,98.59241548],[4.53688425,0.03777454,98.59330297],[4.53688382,0.03777279,98.59419101],[4.5368834,0.03777103,98.59507961],[4.53688297,0.03776928,98.59596876],[4.53688254,0.03776753,98.59685847],[4.53688211,0.03776578,98.59774872],[4.53688169,0.03776403,98.59863953],[4.53688126,0.03776228,98.59953089],[4.53688083,0.03776052,98.6004228],[4.5368804,0.03775877,98.60131525],[4.53687997,0.03775702,98.60220825],[4.53687955,0.03775527,98.60310179],[4.53687912,0.03775352,98.60399588],[4.53687869,0.03775177,98.60489052],[4.53687826,0.03775001,98.60578573],[4.53687783,0.03774826,98.6066815],[4.53687741,0.03774651,98.60757784],[4.53687698,0.03774476,98.60847475],[4.53687655,0.03774301,98.60937222],[4.53687612,0.03774126,98.61027025],[4.5368757,0.03773951,98.61116883],[4.53687527,0.03773775,98.61206797],[4.53687484,0.037736,98.61296765],[4.53687441,0.03773425,98.61386787],[4.53687398,0.0377325,98.61476864],[4.53687356,0.03773075,98.61566994],[4.53687313,0.037729,98.61657177],[4.5368727,0.03772724,98.61747413],[4.53687227,0.03772549,98.61837702],[4.53687184,0.03772374,98.61928043],[4.53687142,0.03772199,98.62018435],[4.53687099,0.03772024,98.62108879],[4.53687056,0.03771849,98.62199375],[4.53687013,0.03771674,98.6228992],[4.5368697,0.03771498,98.62380517],[4.53686928,0.03771323,98.62471163],[4.53686885,0.03771148,98.62561859],[4.53686842,0.03770973,98.62652604],[4.53686799,0.03770798,98.62743398],[4.53686756,0.03770623,98.62834241],[4.53686713,0.03770447,98.62925132],[4.53686671,0.03770272,98.6301607],[4.53686628,0.03770097,98.63107056],[4.53686585,0.03769922,98.6319809],[4.53686542,0.03769747,98.6328917],[4.53686499,0.03769572,98.63380296],[4.53686457,0.03769397,98.63471469],[4.53686414,0.03769221,98.63562687],[4.53686371,0.03769046,98.6365395],[4.53686328,0.03768871,98.63745258],[4.53686285,0.03768696,98.63836611],[4.53686242,0.03768521,98.63928009],[4.536862,0.03768346,98.6401945],[4.53686157,0.03768171,98.64110934],[4.53686114,0.03767995,98.64202462],[4.53686071,0.0376782,98.64294033],[4.53686028,0.03767645,98.64385645],[4.53685985,0.0376747,98.64477301],[4.53685943,0.03767295,98.64568997],[4.536859,0.0376712,98.64660736],[4.53685857,0.03766945,98.64752515],[4.53685814,0.03766769,98.64844335],[4.53685771,0.03766594,98.64936195],[4.53685728,0.03766419,98.65028095],[4.53685685,0.03766244,98.65120034],[4.53685643,0.03766069,98.65212013],[4.536856,0.03765894,98.65304031],[4.53685557,0.03765719,98.65396087],[4.53685514,0.03765543,98.65488182],[4.53685471,0.03765368,98.65580314],[4.53685428,0.03765193,98.65672484],[4.53685385,0.03765018,98.6576469],[4.53685342,0.03764843,98.65856934],[4.536853,0.03764668,98.65949214],[4.53685257,0.03764493,98.6604153],[4.53685214,0.03764317,98.66133881],[4.53685171,0.03764142,98.66226268],[4.53685128,0.03763967,98.6631869],[4.53685085,0.03763792,98.66411146],[4.53685042,0.03763617,98.66503637],[4.53684999,0.03763442,98.66596162],[4.53684956,0.03763267,98.6668872],[4.53684913,0.03763092,98.66781311],[4.53684871,0.03762916,98.66873936],[4.53684828,0.03762741,98.66966592],[4.53684785,0.03762566,98.67059281],[4.53684742,0.03762391,98.67152002],[4.53684699,0.03762216,98.67244754],[4.53684656,0.03762041,98.67337537],[4.53684613,0.03761866,98.67430351],[4.5368457,0.03761691,98.67523195],[4.53684527,0.03761515,98.67616069],[4.53684484,0.0376134,98.67708973],[4.53684441,0.03761165,98.67801907],[4.53684398,0.0376099,98.67894869],[4.53684355,0.03760815,98.6798786],[4.53684312,0.0376064,98.68080879],[4.53684269,0.03760465,98.68173926],[4.53684226,0.0376029,98.68267001],[4.53684183,0.03760115,98.68360102],[4.5368414,0.03759939,98.68453231],[4.53684097,0.03759764,98.68546386],[4.53684054,0.03759589,98.68639568],[4.53684011,0.03759414,98.68732775],[4.53683968,0.03759239,98.68826009],[4.53683925,0.03759064,98.68919269],[4.53683882,0.03758889,98.69012554],[4.53683839,0.03758714,98.69105866],[4.53683796,0.03758539,98.69199203],[4.53683753,0.03758364,98.69292566],[4.5368371,0.03758188,98.69385954],[4.53683667,0.03758013,98.69479368],[4.53683624,0.03757838,98.69572807],[4.53683581,0.03757663,98.69666272],[4.53683538,0.03757488,98.69759761],[4.53683495,0.03757313,98.69853276],[4.53683452,0.03757138,98.69946816],[4.53683409,0.03756963,98.7004038],[4.53683366,0.03756788,98.7013397],[4.53683323,0.03756613,98.70227584],[4.5368328,0.03756438,98.70321222],[4.53683237,0.03756262,98.70414886],[4.53683194,0.03756087,98.70508573],[4.53683151,0.03755912,98.70602285],[4.53683107,0.03755737,98.70696022],[4.53683064,0.03755562,98.70789782],[4.53683021,0.03755387,98.70883566],[4.53682978,0.03755212,98.70977375],[4.53682935,0.03755037,98.71071207],[4.53682892,0.03754862,98.71165063],[4.53682849,0.03754687,98.71258943],[4.53682806,0.03754512,98.71352846],[4.53682763,0.03754337,98.71446773],[4.5368272,0.03754161,98.71540723],[4.53682676,0.03753986,98.71634696],[4.53682633,0.03753811,98.71728693],[4.5368259,0.03753636,98.71822713],[4.53682547,0.03753461,98.71916755],[4.53682504,0.03753286,98.72010821],[4.53682461,0.03753111,98.72104909],[4.53682418,0.03752936,98.72199021],[4.53682374,0.03752761,98.72293155],[4.53682331,0.03752586,98.72387311],[4.53682288,0.03752411,98.7248149],[4.53682245,0.03752236,98.72575691],[4.53682202,0.03752061,98.72669914],[4.53682159,0.03751886,98.7276416],[4.53682116,0.03751711,98.72858428],[4.53682072,0.03751535,98.72952717],[4.53682029,0.0375136,98.73047029],[4.53681986,0.03751185,98.73141362],[4.53681943,0.0375101,98.73235717],[4.536819,0.03750835,98.73330093],[4.53681856,0.0375066,98.73424491],[4.53681813,0.03750485,98.73518911],[4.5368177,0.0375031,98.73613351],[4.53681727,0.03750135,98.73707813],[4.53681684,0.0374996,98.73802296],[4.5368164,0.03749785,98.738968],[4.53681597,0.0374961,98.73991325],[4.53681554,0.03749435,98.7408587],[4.53681511,0.0374926,98.74180437],[4.53681468,0.03749085,98.74275024],[4.53681424,0.0374891,98.74369631],[4.53681381,0.03748735,98.74464259],[4.53681338,0.0374856,98.74558907],[4.53681295,0.03748385,98.74653575],[4.53681252,0.03748209,98.74748264],[4.53681208,0.03748034,98.74842972],[4.53681165,0.03747859,98.74937701],[4.53681122,0.03747684,98.75032449],[4.53681079,0.03747509,98.75127217],[4.53681035,0.03747334,98.75222005],[4.53680992,0.03747159,98.75316812],[4.53680949,0.03746984,98.75411638],[4.53680906,0.03746809,98.75506484],[4.53680862,0.03746634,98.75601349],[4.53680819,0.03746459,98.75696233],[4.53680776,0.03746284,98.75791137],[4.53680733,0.03746109,98.75886059],[4.53680689,0.03745934,98.75981],[4.53680646,0.03745759,98.76075959],[4.53680603,0.03745584,98.76170938],[4.5368056,0.03745409,98.76265935],[4.53680516,0.03745234,98.7636095],[4.53680473,0.03745059,98.76455984],[4.5368043,0.03744884,98.76551037],[4.53680386,0.03744709,98.76646111],[4.53680343,0.03744534,98.76741208],[4.536803,0.03744359,98.76836329],[4.53680257,0.03744184,98.76931476],[4.53680213,0.03744009,98.7702665],[4.5368017,0.03743833,98.77121853],[4.53680127,0.03743658,98.77217086],[4.53680084,0.03743483,98.7731235],[4.5368004,0.03743308,98.77407648],[4.53679997,0.03743133,98.77502981],[4.53679954,0.03742958,98.77598351],[4.53679911,0.03742783,98.77693758],[4.53679867,0.03742608,98.77789205],[4.53679824,0.03742433,98.77884693],[4.53679781,0.03742258,98.77980223],[4.53679738,0.03742083,98.78075796],[4.53679694,0.03741908,98.78171414],[4.53679651,0.03741733,98.78267073],[4.53679608,0.03741558,98.78362775],[4.53679565,0.03741383,98.78458518],[4.53679522,0.03741208,98.78554302],[4.53679478,0.03741033,98.78650126],[4.53679435,0.03740858,98.78745989],[4.53679392,0.03740683,98.78841891],[4.53679349,0.03740508,98.78937832],[4.53679306,0.03740333,98.79033809],[4.53679263,0.03740158,98.79129824],[4.53679219,0.03739983,98.79225874],[4.53679176,0.03739808,98.7932196],[4.53679133,0.03739633,98.79418081],[4.5367909,0.03739458,98.79514237],[4.53679047,0.03739283,98.79610425],[4.53679004,0.03739107,98.79706647],[4.53678961,0.03738932,98.79802901],[4.53678918,0.03738757,98.79899187],[4.53678874,0.03738582,98.79995503],[4.53678831,0.03738407,98.8009185],[4.53678788,0.03738232,98.80188227],[4.53678745,0.03738057,98.80284632],[4.53678702,0.03737882,98.80381066],[4.53678659,0.03737707,98.80477528],[4.53678616,0.03737532,98.80574017],[4.53678573,0.03737357,98.80670533],[4.5367853,0.03737182,98.80767074],[4.53678487,0.03737007,98.80863641],[4.53678444,0.03736831,98.80960232],[4.536784,0.03736656,98.81056847],[4.53678357,0.03736481,98.81153485],[4.53678314,0.03736306,98.81250144],[4.53678271,0.03736131,98.81346824],[4.53678228,0.03735956,98.81443521],[4.53678185,0.03735781,98.81540235],[4.53678142,0.03735606,98.81636964],[4.53678099,0.03735431,98.81733706],[4.53678056,0.03735256,98.8183046],[4.53678013,0.03735081,98.81927224],[4.5367797,0.03734906,98.82023996],[4.53677927,0.0373473,98.82120775],[4.53677884,0.03734555,98.82217559],[4.53677841,0.0373438,98.82314347],[4.53677797,0.03734205,98.82411137],[4.53677754,0.0373403,98.82507927],[4.53677711,0.03733855,98.82604716],[4.53677668,0.0373368,98.82701502],[4.53677625,0.03733505,98.82798283],[4.53677582,0.0373333,98.82895059],[4.53677539,0.03733155,98.82991827],[4.53677496,0.0373298,98.83088585],[4.53677453,0.03732805,98.83185333],[4.53677409,0.0373263,98.83282069],[4.53677366,0.03732455,98.8337879],[4.53677323,0.03732279,98.83475496],[4.5367728,0.03732104,98.83572184],[4.53677237,0.03731929,98.83668855],[4.53677194,0.03731754,98.83765507],[4.5367715,0.03731579,98.83862143],[4.53677107,0.03731404,98.83958761],[4.53677064,0.03731229,98.84055361],[4.53677021,0.03731054,98.84151945],[4.53676977,0.03730879,98.84248512],[4.53676934,0.03730704,98.84345062],[4.53676891,0.03730529,98.84441595],[4.53676848,0.03730354,98.84538112],[4.53676804,0.03730179,98.84634614],[4.53676761,0.03730004,98.84731099],[4.53676718,0.03729829,98.84827568],[4.53676674,0.03729654,98.84924021],[4.53676631,0.03729479,98.85020459],[4.53676588,0.03729304,98.85116882],[4.53676544,0.03729129,98.8521329],[4.53676501,0.03728954,98.85309682],[4.53676458,0.03728779,98.8540606],[4.53676414,0.03728604,98.85502423],[4.53676371,0.03728429,98.85598772],[4.53676328,0.03728254,98.85695106],[4.53676284,0.03728079,98.85791426],[4.53676241,0.03727904,98.85887733],[4.53676198,0.03727729,98.85984025],[4.53676154,0.03727554,98.86080304],[4.53676111,0.03727379,98.86176569],[4.53676067,0.03727204,98.86272822],[4.53676024,0.03727029,98.8636906],[4.5367598,0.03726854,98.86465286],[4.53675937,0.03726679,98.865615],[4.53675894,0.03726504,98.866577],[4.5367585,0.03726329,98.86753888],[4.53675807,0.03726154,98.86850064],[4.53675763,0.03725979,98.86946228],[4.5367572,0.03725804,98.87042379],[4.53675676,0.03725629,98.87138519],[4.53675633,0.03725454,98.87234647],[4.53675589,0.03725279,98.87330764],[4.53675546,0.03725104,98.87426869],[4.53675502,0.03724929,98.87522963],[4.53675459,0.03724754,98.87619046],[4.53675415,0.03724579,98.87715118],[4.53675372,0.03724404,98.8781118],[4.53675328,0.03724229,98.8790723],[4.53675285,0.03724054,98.88003271],[4.53675241,0.03723879,98.88099301],[4.53675198,0.03723704,98.88195322],[4.53675154,0.03723529,98.88291332],[4.53675111,0.03723354,98.88387332],[4.53675067,0.03723179,98.88483323],[4.53675024,0.03723004,98.88579305],[4.5367498,0.03722829,98.88675277],[4.53674936,0.03722654,98.8877124],[4.53674893,0.03722479,98.88867194],[4.53674849,0.03722304,98.88963139],[4.53674806,0.03722129,98.89059076],[4.53674762,0.03721954,98.89155004],[4.53674719,0.0372178,98.89250924],[4.53674675,0.03721605,98.89346835],[4.53674631,0.0372143,98.89442739],[4.53674588,0.03721255,98.89538634],[4.53674544,0.0372108,98.89634522],[4.53674501,0.03720905,98.89730401],[4.53674457,0.0372073,98.89826273],[4.53674413,0.03720555,98.89922136],[4.5367437,0.0372038,98.9001799],[4.53674326,0.03720205,98.90113837],[4.53674283,0.0372003,98.90209674],[4.53674239,0.03719855,98.90305502],[4.53674195,0.0371968,98.90401322],[4.53674152,0.03719505,98.90497132],[4.53674108,0.0371933,98.90592933],[4.53674065,0.03719155,98.90688724],[4.53674021,0.0371898,98.90784506],[4.53673977,0.03718805,98.90880278],[4.53673934,0.0371863,98.9097604],[4.5367389,0.03718456,98.91071793],[4.53673846,0.03718281,98.91167535],[4.53673803,0.03718106,98.91263267],[4.53673759,0.03717931,98.91358988],[4.53673716,0.03717756,98.91454699],[4.53673672,0.03717581,98.91550399],[4.53673628,0.03717406,98.91646088],[4.53673585,0.03717231,98.91741767],[4.53673541,0.03717056,98.91837434],[4.53673497,0.03716881,98.91933089],[4.53673454,0.03716706,98.92028734],[4.5367341,0.03716531,98.92124367],[4.53673366,0.03716356,98.92219988],[4.53673323,0.03716181,98.92315597],[4.53673279,0.03716006,98.92411194],[4.53673235,0.03715831,98.9250678],[4.53673192,0.03715657,98.92602352],[4.53673148,0.03715482,98.92697913],[4.53673104,0.03715307,98.92793461],[4.53673061,0.03715132,98.92888996],[4.53673017,0.03714957,98.92984519],[4.53672973,0.03714782,98.93080028],[4.53672929,0.03714607,98.93175524],[4.53672886,0.03714432,98.93271007],[4.53672842,0.03714257,98.93366477],[4.53672798,0.03714082,98.93461933],[4.53672755,0.03713907,98.93557375],[4.53672711,0.03713732,98.93652804],[4.53672667,0.03713557,98.93748218],[4.53672624,0.03713382,98.93843619],[4.5367258,0.03713208,98.93939005],[4.53672536,0.03713033,98.94034377],[4.53672492,0.03712858,98.94129734],[4.53672449,0.03712683,98.94225076],[4.53672405,0.03712508,98.94320404],[4.53672361,0.03712333,98.94415717],[4.53672318,0.03712158,98.94511014],[4.53672274,0.03711983,98.94606297],[4.5367223,0.03711808,98.94701564],[4.53672186,0.03711633,98.94796815],[4.53672143,0.03711458,98.94892051],[4.53672099,0.03711283,98.9498727],[4.53672055,0.03711109,98.95082474],[4.53672011,0.03710934,98.95177662],[4.53671968,0.03710759,98.95272834],[4.53671924,0.03710584,98.95367989],[4.5367188,0.03710409,98.95463127],[4.53671836,0.03710234,98.95558249],[4.53671793,0.03710059,98.95653354],[4.53671749,0.03709884,98.95748442],[4.53671705,0.03709709,98.95843513],[4.53671661,0.03709534,98.95938567],[4.53671618,0.03709359,98.96033603],[4.53671574,0.03709184,98.96128622],[4.5367153,0.0370901,98.96223623],[4.53671486,0.03708835,98.96318606],[4.53671442,0.0370866,98.96413571],[4.53671399,0.03708485,98.96508518],[4.53671355,0.0370831,98.96603447],[4.53671311,0.03708135,98.96698358],[4.53671267,0.0370796,98.9679325],[4.53671224,0.03707785,98.96888123],[4.5367118,0.0370761,98.96982977],[4.53671136,0.03707435,98.97077813],[4.53671092,0.03707261,98.97172629],[4.53671048,0.03707086,98.97267426],[4.53671005,0.03706911,98.97362203],[4.53670961,0.03706736,98.97456961],[4.53670917,0.03706561,98.975517],[4.53670873,0.03706386,98.97646418],[4.53670829,0.03706211,98.97741117],[4.53670786,0.03706036,98.97835795],[4.53670742,0.03705861,98.97930453],[4.53670698,0.03705686,98.98025091],[4.53670654,0.03705512,98.98119709],[4.5367061,0.03705337,98.98214306],[4.53670567,0.03705162,98.98308883],[4.53670523,0.03704987,98.98403439],[4.53670479,0.03704812,98.98497974],[4.53670435,0.03704637,98.98592489],[4.53670391,0.03704462,98.98686982],[4.53670348,0.03704287,98.98781455],[4.53670304,0.03704112,98.98875907],[4.5367026,0.03703937,98.98970338],[4.53670216,0.03703763,98.99064748],[4.53670172,0.03703588,98.99159136],[4.53670128,0.03703413,98.99253503],[4.53670085,0.03703238,98.99347849],[4.53670041,0.03703063,98.99442173],[4.53669997,0.03702888,98.99536475],[4.53669953,0.03702713,98.99630756],[4.53669909,0.03702538,98.99725015],[4.53669865,0.03702363,98.99819253],[4.53669822,0.03702189,98.99913468],[4.53669778,0.03702014,99.00007662],[4.53669734,0.03701839,99.00101833],[4.5366969,0.03701664,99.00195982],[4.53669646,0.03701489,99.00290109],[4.53669602,0.03701314,99.00384214],[4.53669558,0.03701139,99.00478297],[4.53669515,0.03700964,99.00572356],[4.53669471,0.03700789,99.00666394],[4.53669427,0.03700615,99.0076041],[4.53669383,0.0370044,99.00854403],[4.53669339,0.03700265,99.00948375],[4.53669295,0.0370009,99.01042326],[4.53669251,0.03699915,99.01136255],[4.53669208,0.0369974,99.01230163],[4.53669164,0.03699565,99.01324051],[4.5366912,0.0369939,99.01417918],[4.53669076,0.03699215,99.01511764],[4.53669032,0.03699041,99.0160559],[4.53668988,0.03698866,99.01699397],[4.53668944,0.03698691,99.01793183],[4.53668901,0.03698516,99.0188695],[4.53668857,0.03698341,99.01980698],[4.53668813,0.03698166,99.02074427],[4.53668769,0.03697991,99.02168137],[4.53668725,0.03697816,99.02261828],[4.53668681,0.03697642,99.02355501],[4.53668637,0.03697467,99.02449155],[4.53668594,0.03697292,99.02542792],[4.5366855,0.03697117,99.02636411],[4.53668506,0.03696942,99.02730012],[4.53668462,0.03696767,99.02823596],[4.53668418,0.03696592,99.02917162],[4.53668374,0.03696417,99.03010712],[4.5366833,0.03696242,99.03104243],[4.53668287,0.03696068,99.03197757],[4.53668243,0.03695893,99.03291252],[4.53668199,0.03695718,99.03384728],[4.53668155,0.03695543,99.03478185],[4.53668111,0.03695368,99.03571622],[4.53668067,0.03695193,99.03665039],[4.53668023,0.03695018,99.03758435],[4.5366798,0.03694843,99.0385181],[4.53667936,0.03694668,99.03945164],[4.53667892,0.03694494,99.04038496],[4.53667848,0.03694319,99.04131806],[4.53667804,0.03694144,99.04225093],[4.5366776,0.03693969,99.04318356],[4.53667717,0.03693794,99.04411597],[4.53667673,0.03693619,99.04504813],[4.53667629,0.03693444,99.04598005],[4.53667585,0.03693269,99.04691172],[4.53667541,0.03693094,99.04784313],[4.53667497,0.0369292,99.04877429],[4.53667453,0.03692745,99.04970519],[4.5366741,0.0369257,99.05063583],[4.53667366,0.03692395,99.0515662],[4.53667322,0.0369222,99.05249629],[4.53667278,0.03692045,99.0534261],[4.53667234,0.0369187,99.05435564],[4.5366719,0.03691695,99.05528488],[4.53667147,0.0369152,99.05621384],[4.53667103,0.03691346,99.0571425],[4.53667059,0.03691171,99.05807087],[4.53667015,0.03690996,99.05899893],[4.53666971,0.03690821,99.05992668],[4.53666927,0.03690646,99.06085413],[4.53666883,0.03690471,99.06178125],[4.53666839,0.03690296,99.06270806],[4.53666796,0.03690121,99.06363455],[4.53666752,0.03689946,99.0645607],[4.53666708,0.03689772,99.06548653],[4.53666664,0.03689597,99.06641201],[4.5366662,0.03689422,99.06733716],[4.53666576,0.03689247,99.06826196],[4.53666532,0.03689072,99.06918641],[4.53666488,0.03688897,99.07011051],[4.53666444,0.03688722,99.07103425],[4.53666401,0.03688547,99.07195763],[4.53666357,0.03688373,99.07288065],[4.53666313,0.03688198,99.07380329],[4.53666269,0.03688023,99.07472556],[4.53666225,0.03687848,99.07564745],[4.53666181,0.03687673,99.07656895],[4.53666137,0.03687498,99.07749007],[4.53666093,0.03687323,99.0784108],[4.53666049,0.03687148,99.07933114],[4.53666005,0.03686974,99.08025107],[4.53665961,0.03686799,99.0811706],[4.53665917,0.03686624,99.08208972],[4.53665873,0.03686449,99.08300842],[4.53665829,0.03686274,99.08392672],[4.53665785,0.03686099,99.08484458],[4.53665742,0.03685924,99.08576203],[4.53665698,0.0368575,99.08667904],[4.53665654,0.03685575,99.08759562],[4.5366561,0.036854,99.08851177],[4.53665566,0.03685225,99.08942746],[4.53665522,0.0368505,99.09034272],[4.53665478,0.03684875,99.09125752],[4.53665434,0.036847,99.09217187],[4.5366539,0.03684526,99.09308575],[4.53665346,0.03684351,99.09399918],[4.53665302,0.03684176,99.09491213],[4.53665258,0.03684001,99.09582461],[4.53665213,0.03683826,99.09673662],[4.53665169,0.03683651,99.09764814],[4.53665125,0.03683477,99.09855918],[4.53665081,0.03683302,99.09946973],[4.53665037,0.03683127,99.10037979],[4.53664993,0.03682952,99.10128936],[4.53664949,0.03682777,99.10219844],[4.53664905,0.03682602,99.10310702],[4.53664861,0.03682428,99.10401511],[4.53664817,0.03682253,99.10492271],[4.53664773,0.03682078,99.1058298],[4.53664729,0.03681903,99.1067364],[4.53664684,0.03681728,99.1076425],[4.5366464,0.03681553,99.1085481],[4.53664596,0.03681379,99.1094532],[4.53664552,0.03681204,99.11035779],[4.53664508,0.03681029,99.11126188],[4.53664464,0.03680854,99.11216547],[4.5366442,0.03680679,99.11306856],[4.53664375,0.03680505,99.11397116],[4.53664331,0.0368033,99.11487328],[4.53664287,0.03680155,99.11577493],[4.53664243,0.0367998,99.11667614],[4.53664199,0.03679805,99.11757689],[4.53664155,0.03679631,99.11847722],[4.5366411,0.03679456,99.11937713],[4.53664066,0.03679281,99.12027663],[4.53664022,0.03679106,99.12117573],[4.53663978,0.03678931,99.12207445],[4.53663934,0.03678757,99.12297279],[4.53663889,0.03678582,99.12387077],[4.53663845,0.03678407,99.12476839],[4.53663801,0.03678232,99.12566568],[4.53663757,0.03678057,99.12656264],[4.53663713,0.03677883,99.12745929],[4.53663668,0.03677708,99.12835563],[4.53663624,0.03677533,99.12925167],[4.5366358,0.03677358,99.13014744],[4.53663536,0.03677183,99.13104293],[4.53663492,0.03677009,99.13193816],[4.53663447,0.03676834,99.13283315],[4.53663403,0.03676659,99.1337279],[4.53663359,0.03676484,99.13462243],[4.53663315,0.03676309,99.13551675],[4.53663271,0.03676135,99.13641087],[4.53663227,0.0367596,99.1373048],[4.53663182,0.03675785,99.13819855],[4.53663138,0.0367561,99.13909213],[4.53663094,0.03675435,99.13998557],[4.5366305,0.0367526,99.14087886],[4.53663006,0.03675086,99.14177202],[4.53662962,0.03674911,99.14266507],[4.53662918,0.03674736,99.14355801],[4.53662873,0.03674561,99.14445085],[4.53662829,0.03674386,99.14534361],[4.53662785,0.03674212,99.14623631],[4.53662741,0.03674037,99.14712892],[4.53662697,0.03673862,99.14802144],[4.53662653,0.03673687,99.14891385],[4.53662609,0.03673512,99.14980615],[4.53662565,0.03673337,99.15069831],[4.53662521,0.03673162,99.15159033],[4.53662477,0.03672988,99.15248219],[4.53662433,0.03672813,99.15337387],[4.53662389,0.03672638,99.15426536],[4.53662345,0.03672463,99.15515665],[4.53662301,0.03672288,99.15604773],[4.53662257,0.03672113,99.15693858],[4.53662213,0.03671939,99.15782918],[4.53662169,0.03671764,99.15871952],[4.53662125,0.03671589,99.1596096],[4.53662081,0.03671414,99.16049939],[4.53662037,0.03671239,99.16138888],[4.53661993,0.03671064,99.16227805],[4.53661949,0.03670889,99.1631669],[4.53661905,0.03670715,99.16405541],[4.53661861,0.0367054,99.16494356],[4.53661817,0.03670365,99.16583135],[4.53661773,0.0367019,99.16671875],[4.53661729,0.03670015,99.16760575],[4.53661685,0.0366984,99.16849235],[4.53661641,0.03669665,99.16937851],[4.53661597,0.03669491,99.17026424],[4.53661553,0.03669316,99.17114951],[4.53661509,0.03669141,99.17203432],[4.53661465,0.03668966,99.17291865],[4.53661421,0.03668791,99.17380247],[4.53661377,0.03668616,99.17468579],[4.53661333,0.03668441,99.17556859],[4.53661289,0.03668267,99.17645084],[4.53661245,0.03668092,99.17733254],[4.53661201,0.03667917,99.17821368],[4.53661157,0.03667742,99.17909423],[4.53661113,0.03667567,99.17997419],[4.53661069,0.03667392,99.18085353],[4.53661025,0.03667217,99.18173226],[4.53660981,0.03667043,99.18261034],[4.53660937,0.03666868,99.18348777],[4.53660893,0.03666693,99.18436453],[4.53660849,0.03666518,99.1852406],[4.53660805,0.03666343,99.18611598],[4.53660761,0.03666168,99.18699064],[4.53660717,0.03665994,99.18786457],[4.53660672,0.03665819,99.18873776],[4.53660628,0.03665644,99.18961018],[4.53660584,0.03665469,99.19048182],[4.5366054,0.03665294,99.19135267],[4.53660496,0.0366512,99.19222271],[4.53660452,0.03664945,99.19309192],[4.53660407,0.0366477,99.19396029],[4.53660363,0.03664595,99.19482781],[4.53660319,0.0366442,99.19569445],[4.53660275,0.03664246,99.19656025],[4.5366023,0.03664071,99.19742523],[4.53660186,0.03663896,99.19828939],[4.53660142,0.03663721,99.19915277],[4.53660098,0.03663546,99.20001537],[4.53660053,0.03663372,99.20087722],[4.53660009,0.03663197,99.20173834],[4.53659965,0.03663022,99.20259874],[4.5365992,0.03662847,99.20345845],[4.53659876,0.03662673,99.20431749],[4.53659832,0.03662498,99.20517586],[4.53659787,0.03662323,99.2060336],[4.53659743,0.03662148,99.20689072],[4.53659698,0.03661974,99.20774724],[4.53659654,0.03661799,99.20860319],[4.5365961,0.03661624,99.20945857],[4.53659565,0.03661449,99.21031341],[4.53659521,0.03661275,99.21116772],[4.53659477,0.036611,99.21202154],[4.53659432,0.03660925,99.21287487],[4.53659388,0.0366075,99.21372775],[4.53659343,0.03660576,99.21458018],[4.53659299,0.03660401,99.21543219],[4.53659255,0.03660226,99.2162838],[4.5365921,0.03660051,99.21713503],[4.53659166,0.03659877,99.21798591],[4.53659121,0.03659702,99.21883644],[4.53659077,0.03659527,99.21968662],[4.53659033,0.03659352,99.22053645],[4.53658988,0.03659178,99.22138591],[4.53658944,0.03659003,99.22223501],[4.536589,0.03658828,99.22308374],[4.53658855,0.03658653,99.2239321],[4.53658811,0.03658478,99.22478008],[4.53658767,0.03658304,99.22562768],[4.53658722,0.03658129,99.2264749],[4.53658678,0.03657954,99.22732172],[4.53658633,0.03657779,99.22816815],[4.53658589,0.03657605,99.22901417],[4.53658545,0.0365743,99.22985979],[4.536585,0.03657255,99.23070501],[4.53658456,0.0365708,99.23154981],[4.53658412,0.03656906,99.23239419],[4.53658367,0.03656731,99.23323815],[4.53658323,0.03656556,99.23408168],[4.53658279,0.03656381,99.23492478],[4.53658234,0.03656207,99.23576745],[4.5365819,0.03656032,99.23660967],[4.53658146,0.03655857,99.23745145],[4.53658101,0.03655682,99.23829278],[4.53658057,0.03655508,99.23913365],[4.53658013,0.03655333,99.23997407],[4.53657968,0.03655158,99.24081402],[4.53657924,0.03654983,99.2416535],[4.53657879,0.03654808,99.24249251],[4.53657835,0.03654634,99.24333104],[4.53657791,0.03654459,99.24416909],[4.53657746,0.03654284,99.24500665],[4.53657702,0.03654109,99.24584372],[4.53657658,0.03653935,99.24668029],[4.53657613,0.0365376,99.24751637],[4.53657569,0.03653585,99.24835193],[4.53657524,0.0365341,99.24918698],[4.5365748,0.03653236,99.25002152],[4.53657436,0.03653061,99.25085554],[4.53657391,0.03652886,99.25168903],[4.53657347,0.03652711,99.25252199],[4.53657303,0.03652537,99.25335442],[4.53657258,0.03652362,99.25418631],[4.53657214,0.03652187,99.25501765],[4.53657169,0.03652012,99.25584844],[4.53657125,0.03651838,99.25667868],[4.5365708,0.03651663,99.25750836],[4.53657036,0.03651488,99.25833747],[4.53656992,0.03651313,99.25916601],[4.53656947,0.03651139,99.25999398],[4.53656903,0.03650964,99.26082137],[4.53656858,0.03650789,99.26164818],[4.53656814,0.03650614,99.26247439],[4.53656769,0.0365044,99.26330001],[4.53656725,0.03650265,99.26412504],[4.5365668,0.0365009,99.26494945],[4.53656636,0.03649916,99.26577326],[4.53656591,0.03649741,99.26659645],[4.53656547,0.03649566,99.26741903],[4.53656502,0.03649391,99.26824098],[4.53656458,0.03649217,99.26906229],[4.53656413,0.03649042,99.26988298],[4.53656369,0.03648867,99.27070302],[4.53656324,0.03648692,99.27152242],[4.5365628,0.03648518,99.27234116],[4.53656235,0.03648343,99.27315925],[4.53656216,0.03648269,99.27350507],[4.53659312,0.03647471,99.36952703],[4.53659331,0.03647545,99.36915708],[4.53659376,0.0364772,99.36828252],[4.53659421,0.03647894,99.36740811],[4.53659465,0.03648069,99.36653383],[4.5365951,0.03648244,99.36565967],[4.53659555,0.03648418,99.36478561],[4.536596,0.03648593,99.36391164],[4.53659645,0.03648768,99.36303775],[4.5365969,0.03648942,99.36216393],[4.53659735,0.03649117,99.36129016],[4.5365978,0.03649292,99.36041643],[4.53659824,0.03649466,99.35954273],[4.53659869,0.03649641,99.35866903],[4.53659914,0.03649816,99.35779534],[4.53659959,0.0364999,99.35692164],[4.53660004,0.03650165,99.3560479],[4.53660049,0.0365034,99.35517413],[4.53660094,0.03650514,99.35430031],[4.53660139,0.03650689,99.35342642],[4.53660184,0.03650864,99.35255246],[4.53660229,0.03651038,99.35167841],[4.53660274,0.03651213,99.35080425],[4.53660319,0.03651388,99.34992998],[4.53660364,0.03651562,99.34905558],[4.53660409,0.03651737,99.34818104],[4.53660454,0.03651911,99.34730635],[4.53660499,0.03652086,99.34643149],[4.53660544,0.03652261,99.34555645],[4.53660589,0.03652435,99.34468123],[4.53660634,0.0365261,99.3438058],[4.53660679,0.03652785,99.34293016],[4.53660724,0.03652959,99.34205429],[4.53660769,0.03653134,99.34117818],[4.53660814,0.03653309,99.34030182],[4.53660859,0.03653483,99.33942519],[4.53660904,0.03653658,99.33854829],[4.53660949,0.03653832,99.3376711],[4.53660994,0.03654007,99.33679362],[4.53661039,0.03654182,99.33591582],[4.53661084,0.03654356,99.3350377],[4.5366113,0.03654531,99.33415924],[4.53661175,0.03654706,99.33328043],[4.5366122,0.0365488,99.33240127],[4.53661265,0.03655055,99.33152173],[4.5366131,0.0365523,99.33064182],[4.53661355,0.03655404,99.3297615],[4.536614,0.03655579,99.32888079],[4.53661445,0.03655753,99.32799965],[4.5366149,0.03655928,99.32711809],[4.53661534,0.03656103,99.32623608],[4.53661579,0.03656277,99.32535362],[4.53661624,0.03656452,99.3244707],[4.53661669,0.03656627,99.3235873],[4.53661714,0.03656801,99.32270342],[4.53661759,0.03656976,99.32181904],[4.53661804,0.03657151,99.32093414],[4.53661849,0.03657325,99.32004873],[4.53661894,0.036575,99.31916279],[4.53661939,0.03657675,99.3182763],[4.53661984,0.03657849,99.31738925],[4.53662029,0.03658024,99.31650165],[4.53662073,0.03658199,99.31561346],[4.53662118,0.03658373,99.31472468],[4.53662163,0.03658548,99.31383531],[4.53662208,0.03658723,99.31294533],[4.53662253,0.03658897,99.31205472],[4.53662297,0.03659072,99.31116348],[4.53662342,0.03659247,99.3102716],[4.53662387,0.03659422,99.30937906],[4.53662432,0.03659596,99.30848586],[4.53662476,0.03659771,99.30759198],[4.53662521,0.03659946,99.30669742],[4.53662566,0.0366012,99.30580215],[4.5366261,0.03660295,99.30490618],[4.53662655,0.0366047,99.30400949],[4.536627,0.03660645,99.30311206],[4.53662744,0.03660819,99.30221388],[4.53662789,0.03660994,99.30131495],[4.53662833,0.03661169,99.30041524],[4.53662878,0.03661344,99.29951475],[4.53662922,0.03661518,99.29861347],[4.53662967,0.03661693,99.29771137],[4.53663011,0.03661868,99.29680845],[4.53663056,0.03662043,99.2959047],[4.536631,0.03662218,99.2950001],[4.53663145,0.03662392,99.29409465],[4.53663189,0.03662567,99.29318832],[4.53663233,0.03662742,99.29228111],[4.53663278,0.03662917,99.291373],[4.53663322,0.03663092,99.29046398],[4.53663366,0.03663266,99.28955404],[4.5366341,0.03663441,99.28864317],[4.53663455,0.03663616,99.28773135],[4.53663499,0.03663791,99.28681858],[4.53663543,0.03663966,99.28590484],[4.53663587,0.03664141,99.28499014],[4.53663631,0.03664315,99.2840745],[4.53663675,0.0366449,99.28315796],[4.53663719,0.03664665,99.28224052],[4.53663763,0.0366484,99.28132222],[4.53663807,0.03665015,99.28040307],[4.53663851,0.0366519,99.2794831],[4.53663895,0.03665365,99.27856233],[4.53663939,0.0366554,99.27764078],[4.53663983,0.03665715,99.27671847],[4.53664027,0.0366589,99.27579543],[4.53664071,0.03666065,99.27487168],[4.53664115,0.03666239,99.27394724],[4.53664158,0.03666414,99.27302213],[4.53664202,0.03666589,99.27209637],[4.53664246,0.03666764,99.27116999],[4.5366429,0.03666939,99.27024301],[4.53664334,0.03667114,99.26931545],[4.53664377,0.03667289,99.26838733],[4.53664421,0.03667464,99.26745867],[4.53664465,0.03667639,99.26652949],[4.53664508,0.03667814,99.26559982],[4.53664552,0.03667989,99.26466968],[4.53664596,0.03668164,99.26373909],[4.53664639,0.03668339,99.26280807],[4.53664683,0.03668514,99.26187664],[4.53664727,0.03668689,99.26094483],[4.5366477,0.03668864,99.26001265],[4.53664814,0.03669039,99.25908012],[4.53664858,0.03669214,99.25814727],[4.53664901,0.03669389,99.25721413],[4.53664945,0.03669564,99.2562807],[4.53664988,0.03669739,99.25534701],[4.53665032,0.03669914,99.25441309],[4.53665076,0.03670089,99.25347894],[4.53665119,0.03670264,99.25254461],[4.53665163,0.03670439,99.2516101],[4.53665206,0.03670614,99.25067543],[4.5366525,0.03670789,99.24974064],[4.53665293,0.03670964,99.24880573],[4.53665337,0.03671139,99.24787073],[4.53665381,0.03671314,99.24693567],[4.53665424,0.03671489,99.24600055],[4.53665468,0.03671664,99.24506541],[4.53665511,0.03671839,99.24413026],[4.53665555,0.03672014,99.24319512],[4.53665598,0.03672189,99.24226002],[4.53665642,0.03672364,99.24132497],[4.53665686,0.03672539,99.24039001],[4.53665729,0.03672714,99.23945513],[4.53665773,0.03672889,99.23852038],[4.53665817,0.03673064,99.23758576],[4.5366586,0.03673239,99.23665131],[4.53665904,0.03673414,99.23571703],[4.53665947,0.03673589,99.23478295],[4.53665991,0.03673764,99.23384909],[4.53666035,0.03673939,99.23291544],[4.53666078,0.03674114,99.23198199],[4.53666122,0.03674289,99.23104874],[4.53666166,0.03674464,99.23011569],[4.5366621,0.03674639,99.22918283],[4.53666253,0.03674814,99.22825015],[4.53666297,0.03674989,99.22731765],[4.53666341,0.03675164,99.22638533],[4.53666385,0.03675339,99.22545318],[4.53666428,0.03675514,99.22452119],[4.53666472,0.03675689,99.22358936],[4.53666516,0.03675864,99.22265769],[4.5366656,0.03676039,99.22172617],[4.53666603,0.03676213,99.22079479],[4.53666647,0.03676388,99.21986356],[4.53666691,0.03676563,99.21893246],[4.53666735,0.03676738,99.21800149],[4.53666779,0.03676913,99.21707065],[4.53666823,0.03677088,99.21613993],[4.53666866,0.03677263,99.21520932],[4.5366691,0.03677438,99.21427883],[4.53666954,0.03677613,99.21334844],[4.53666998,0.03677788,99.21241816],[4.53667042,0.03677963,99.21148797],[4.53667086,0.03678138,99.21055787],[4.5366713,0.03678313,99.20962786],[4.53667173,0.03678488,99.20869794],[4.53667217,0.03678663,99.20776809],[4.53667261,0.03678837,99.20683832],[4.53667305,0.03679012,99.20590861],[4.53667349,0.03679187,99.20497897],[4.53667393,0.03679362,99.20404938],[4.53667437,0.03679537,99.20311986],[4.53667481,0.03679712,99.20219038],[4.53667525,0.03679887,99.20126094],[4.53667569,0.03680062,99.20033155],[4.53667613,0.03680237,99.19940219],[4.53667656,0.03680412,99.19847286],[4.536677,0.03680587,99.19754356],[4.53667744,0.03680762,99.19661428],[4.53667788,0.03680936,99.19568502],[4.53667832,0.03681111,99.19475576],[4.53667876,0.03681286,99.19382652],[4.5366792,0.03681461,99.19289728],[4.53667964,0.03681636,99.19196804],[4.53668008,0.03681811,99.19103879],[4.53668052,0.03681986,99.19010953],[4.53668096,0.03682161,99.18918025],[4.5366814,0.03682336,99.18825096],[4.53668184,0.03682511,99.18732164],[4.53668228,0.03682685,99.18639229],[4.53668272,0.0368286,99.1854629],[4.53668316,0.03683035,99.18453348],[4.5366836,0.0368321,99.18360402],[4.53668404,0.03683385,99.18267453],[4.53668448,0.0368356,99.18174499],[4.53668492,0.03683735,99.18081541],[4.53668536,0.0368391,99.17988579],[4.5366858,0.03684085,99.17895612],[4.53668624,0.0368426,99.17802641],[4.53668668,0.03684434,99.17709665],[4.53668712,0.03684609,99.17616684],[4.53668756,0.03684784,99.17523698],[4.536688,0.03684959,99.17430707],[4.53668844,0.03685134,99.1733771],[4.53668888,0.03685309,99.17244708],[4.53668931,0.03685484,99.17151701],[4.53668975,0.03685659,99.17058688],[4.53669019,0.03685834,99.16965669],[4.53669063,0.03686009,99.16872644],[4.53669107,0.03686183,99.16779613],[4.53669151,0.03686358,99.16686576],[4.53669195,0.03686533,99.16593532],[4.53669239,0.03686708,99.16500482],[4.53669283,0.03686883,99.16407425],[4.53669327,0.03687058,99.16314361],[4.53669371,0.03687233,99.1622129],[4.53669415,0.03687408,99.16128213],[4.53669459,0.03687583,99.16035128],[4.53669503,0.03687758,99.15942036],[4.53669547,0.03687932,99.15848936],[4.53669591,0.03688107,99.15755829],[4.53669635,0.03688282,99.15662713],[4.53669679,0.03688457,99.15569591],[4.53669723,0.03688632,99.1547646],[4.53669767,0.03688807,99.15383321],[4.53669811,0.03688982,99.15290173],[4.53669855,0.03689157,99.15197017],[4.53669899,0.03689332,99.15103853],[4.53669943,0.03689507,99.1501068],[4.53669987,0.03689681,99.14917498],[4.53670031,0.03689856,99.14824308],[4.53670075,0.03690031,99.14731108],[4.53670119,0.03690206,99.14637899],[4.53670163,0.03690381,99.1454468],[4.53670207,0.03690556,99.14451453],[4.53670251,0.03690731,99.14358215],[4.53670295,0.03690906,99.14264968],[4.53670339,0.03691081,99.14171711],[4.53670383,0.03691256,99.14078444],[4.53670426,0.03691431,99.13985167],[4.5367047,0.03691605,99.13891879],[4.53670514,0.0369178,99.13798581],[4.53670558,0.03691955,99.13705273],[4.53670602,0.0369213,99.13611954],[4.53670646,0.03692305,99.13518624],[4.5367069,0.0369248,99.13425283],[4.53670734,0.03692655,99.13331931],[4.53670778,0.0369283,99.13238568],[4.53670822,0.03693005,99.13145193],[4.53670866,0.0369318,99.13051807],[4.5367091,0.03693355,99.1295841],[4.53670954,0.03693529,99.12865001],[4.53670998,0.03693704,99.12771579],[4.53671041,0.03693879,99.12678146],[4.53671085,0.03694054,99.12584701],[4.53671129,0.03694229,99.12491244],[4.53671173,0.03694404,99.12397774],[4.53671217,0.03694579,99.12304291],[4.53671261,0.03694754,99.12210796],[4.53671305,0.03694929,99.12117288],[4.53671349,0.03695104,99.12023768],[4.53671393,0.03695279,99.11930234],[4.53671437,0.03695454,99.11836687],[4.5367148,0.03695628,99.11743126],[4.53671524,0.03695803,99.11649553],[4.53671568,0.03695978,99.11555965],[4.53671612,0.03696153,99.11462364],[4.53671656,0.03696328,99.11368749],[4.536717,0.03696503,99.1127512],[4.53671744,0.03696678,99.11181477],[4.53671787,0.03696853,99.1108782],[4.53671831,0.03697028,99.10994148],[4.53671875,0.03697203,99.10900462],[4.53671919,0.03697378,99.10806761],[4.53671963,0.03697553,99.10713046],[4.53672007,0.03697728,99.10619315],[4.5367205,0.03697903,99.10525569],[4.53672094,0.03698078,99.10431809],[4.53672138,0.03698252,99.10338033],[4.53672182,0.03698427,99.10244241],[4.53672226,0.03698602,99.10150434],[4.53672269,0.03698777,99.10056611],[4.53672313,0.03698952,99.09962772],[4.53672357,0.03699127,99.09868918],[4.53672401,0.03699302,99.09775047],[4.53672445,0.03699477,99.0968116],[4.53672488,0.03699652,99.09587256],[4.53672532,0.03699827,99.09493336],[4.53672576,0.03700002,99.093994],[4.5367262,0.03700177,99.09305446],[4.53672663,0.03700352,99.09211476],[4.53672707,0.03700527,99.09117488],[4.53672751,0.03700702,99.09023484],[4.53672795,0.03700877,99.08929463],[4.53672838,0.03701052,99.08835426],[4.53672882,0.03701227,99.08741372],[4.53672926,0.03701402,99.08647302],[4.5367297,0.03701577,99.08553216],[4.53673013,0.03701752,99.08459115],[4.53673057,0.03701927,99.08364997],[4.53673101,0.03702102,99.08270864],[4.53673144,0.03702277,99.08176715],[4.53673188,0.03702451,99.08082552],[4.53673232,0.03702626,99.07988373],[4.53673275,0.03702801,99.07894179],[4.53673319,0.03702976,99.07799971],[4.53673363,0.03703151,99.07705748],[4.53673406,0.03703326,99.0761151],[4.5367345,0.03703501,99.07517258],[4.53673494,0.03703676,99.07422992],[4.53673537,0.03703851,99.07328713],[4.53673581,0.03704026,99.07234419],[4.53673625,0.03704201,99.07140112],[4.53673668,0.03704376,99.07045791],[4.53673712,0.03704551,99.06951457],[4.53673755,0.03704726,99.0685711],[4.53673799,0.03704901,99.0676275],[4.53673843,0.03705076,99.06668377],[4.53673886,0.03705251,99.06573991],[4.5367393,0.03705426,99.06479593],[4.53673973,0.03705601,99.06385182],[4.53674017,0.03705776,99.0629076],[4.53674061,0.03705951,99.06196325],[4.53674104,0.03706126,99.06101879],[4.53674148,0.03706301,99.06007421],[4.53674191,0.03706476,99.05912952],[4.53674235,0.03706651,99.05818472],[4.53674279,0.03706826,99.05723981],[4.53674322,0.03707001,99.0562948],[4.53674366,0.03707176,99.05534968],[4.53674409,0.03707351,99.05440446],[4.53674453,0.03707526,99.05345914],[4.53674496,0.03707701,99.05251372],[4.5367454,0.03707876,99.05156821],[4.53674583,0.03708051,99.05062261],[4.53674627,0.03708226,99.04967691],[4.5367467,0.03708401,99.04873113],[4.53674714,0.03708576,99.04778526],[4.53674757,0.03708751,99.04683931],[4.53674801,0.03708926,99.04589327],[4.53674844,0.03709101,99.04494716],[4.53674888,0.03709276,99.04400097],[4.53674932,0.03709451,99.04305471],[4.53674975,0.03709626,99.04210837],[4.53675019,0.03709801,99.04116196],[4.53675062,0.03709976,99.04021548],[4.53675105,0.03710151,99.03926894],[4.53675149,0.03710327,99.03832234],[4.53675192,0.03710502,99.03737567],[4.53675236,0.03710677,99.03642894],[4.53675279,0.03710852,99.03548216],[4.53675323,0.03711027,99.03453532],[4.53675366,0.03711202,99.03358843],[4.5367541,0.03711377,99.03264149],[4.53675453,0.03711552,99.0316945],[4.53675497,0.03711727,99.03074746],[4.5367554,0.03711902,99.02980038],[4.53675584,0.03712077,99.02885326],[4.53675627,0.03712252,99.0279061],[4.53675671,0.03712427,99.0269589],[4.53675714,0.03712602,99.02601167],[4.53675757,0.03712777,99.0250644],[4.53675801,0.03712952,99.02411711],[4.53675844,0.03713127,99.02316978],[4.53675888,0.03713302,99.02222243],[4.53675931,0.03713477,99.02127506],[4.53675975,0.03713652,99.02032767],[4.53676018,0.03713827,99.01938025],[4.53676061,0.03714002,99.01843282],[4.53676105,0.03714177,99.01748538],[4.53676148,0.03714352,99.01653792],[4.53676192,0.03714527,99.01559045],[4.53676235,0.03714702,99.01464297],[4.53676279,0.03714877,99.01369549],[4.53676322,0.03715052,99.012748],[4.53676365,0.03715227,99.01180052],[4.53676409,0.03715403,99.01085303],[4.53676452,0.03715578,99.00990555],[4.53676495,0.03715753,99.00895807],[4.53676539,0.03715928,99.0080106],[4.53676582,0.03716103,99.00706314],[4.53676626,0.03716278,99.00611569],[4.53676669,0.03716453,99.00516826],[4.53676712,0.03716628,99.00422084],[4.53676756,0.03716803,99.00327345],[4.53676799,0.03716978,99.00232607],[4.53676843,0.03717153,99.00137871],[4.53676886,0.03717328,99.00043139],[4.53676929,0.03717503,98.99948409],[4.53676973,0.03717678,98.99853682],[4.53677016,0.03717853,98.99758958],[4.53677059,0.03718028,98.99664238],[4.53677103,0.03718203,98.99569521],[4.53677146,0.03718378,98.99474808],[4.5367719,0.03718553,98.993801],[4.53677233,0.03718729,98.99285396],[4.53677276,0.03718904,98.99190696],[4.5367732,0.03719079,98.99096001],[4.53677363,0.03719254,98.99001312],[4.53677406,0.03719429,98.98906627],[4.5367745,0.03719604,98.98811948],[4.53677493,0.03719779,98.98717275],[4.53677536,0.03719954,98.98622608],[4.5367758,0.03720129,98.98527947],[4.53677623,0.03720304,98.98433292],[4.53677666,0.03720479,98.98338644],[4.5367771,0.03720654,98.98244003],[4.53677753,0.03720829,98.98149369],[4.53677796,0.03721004,98.98054742],[4.5367784,0.03721179,98.97960123],[4.53677883,0.03721354,98.97865511],[4.53677926,0.03721529,98.97770908],[4.5367797,0.03721705,98.97676313],[4.53678013,0.0372188,98.97581726],[4.53678056,0.03722055,98.97487148],[4.536781,0.0372223,98.97392579],[4.53678143,0.03722405,98.97298019],[4.53678186,0.0372258,98.97203468],[4.5367823,0.03722755,98.97108927],[4.53678273,0.0372293,98.97014396],[4.53678316,0.03723105,98.96919874],[4.5367836,0.0372328,98.96825364],[4.53678403,0.03723455,98.96730863],[4.53678446,0.0372363,98.96636373],[4.5367849,0.03723805,98.96541895],[4.53678533,0.0372398,98.96447427],[4.53678576,0.03724155,98.96352971],[4.5367862,0.0372433,98.96258527],[4.53678663,0.03724506,98.96164094],[4.53678706,0.03724681,98.96069674],[4.5367875,0.03724856,98.95975266],[4.53678793,0.03725031,98.95880871],[4.53678836,0.03725206,98.95786488],[4.53678879,0.03725381,98.95692118],[4.53678923,0.03725556,98.95597762],[4.53678966,0.03725731,98.95503419],[4.53679009,0.03725906,98.9540909],[4.53679053,0.03726081,98.95314775],[4.53679096,0.03726256,98.95220474],[4.53679139,0.03726431,98.95126188],[4.53679183,0.03726606,98.95031916],[4.53679226,0.03726781,98.94937659],[4.53679269,0.03726956,98.94843417],[4.53679313,0.03727132,98.94749191],[4.53679356,0.03727307,98.9465498],[4.53679399,0.03727482,98.94560785],[4.53679443,0.03727657,98.94466606],[4.53679486,0.03727832,98.94372444],[4.53679529,0.03728007,98.94278298],[4.53679573,0.03728182,98.94184168],[4.53679616,0.03728357,98.94090056],[4.53679659,0.03728532,98.93995961],[4.53679702,0.03728707,98.93901883],[4.53679746,0.03728882,98.93807823],[4.53679789,0.03729057,98.93713782],[4.53679832,0.03729232,98.93619758],[4.53679876,0.03729407,98.93525752],[4.53679919,0.03729582,98.93431765],[4.53679962,0.03729757,98.93337798],[4.53680006,0.03729933,98.93243849],[4.53680049,0.03730108,98.93149919],[4.53680092,0.03730283,98.93056009],[4.53680136,0.03730458,98.92962119],[4.53680179,0.03730633,98.92868249],[4.53680222,0.03730808,98.92774399],[4.53680266,0.03730983,98.9268057],[4.53680309,0.03731158,98.92586762],[4.53680352,0.03731333,98.92492974],[4.53680396,0.03731508,98.92399208],[4.53680439,0.03731683,98.92305463],[4.53680482,0.03731858,98.9221174],[4.53680526,0.03732033,98.92118039],[4.53680569,0.03732208,98.9202436],[4.53680612,0.03732383,98.91930703],[4.53680656,0.03732559,98.91837069],[4.53680699,0.03732734,98.91743458],[4.53680742,0.03732909,98.91649871],[4.53680786,0.03733084,98.91556306],[4.53680829,0.03733259,98.91462765],[4.53680872,0.03733434,98.91369248],[4.53680916,0.03733609,98.91275755],[4.53680959,0.03733784,98.91182286],[4.53681002,0.03733959,98.91088842],[4.53681046,0.03734134,98.90995423],[4.53681089,0.03734309,98.90902028],[4.53681132,0.03734484,98.90808659],[4.53681176,0.03734659,98.90715316],[4.53681219,0.03734834,98.90621998],[4.53681262,0.03735009,98.90528706],[4.53681306,0.03735184,98.90435441],[4.53681349,0.03735359,98.90342202],[4.53681392,0.03735535,98.90248989],[4.53681436,0.0373571,98.90155804],[4.53681479,0.03735885,98.90062646],[4.53681522,0.0373606,98.89969515],[4.53681566,0.03736235,98.89876411],[4.53681609,0.0373641,98.89783333],[4.53681653,0.03736585,98.89690281],[4.53681696,0.0373676,98.89597253],[4.53681739,0.03736935,98.8950425],[4.53681783,0.0373711,98.89411269],[4.53681826,0.03737285,98.89318311],[4.53681869,0.0373746,98.89225375],[4.53681913,0.03737635,98.89132459],[4.53681956,0.0373781,98.89039564],[4.53681999,0.03737985,98.88946687],[4.53682043,0.0373816,98.8885383],[4.53682086,0.03738335,98.8876099],[4.5368213,0.0373851,98.88668168],[4.53682173,0.03738685,98.88575361],[4.53682216,0.03738861,98.8848257],[4.5368226,0.03739036,98.88389794],[4.53682303,0.03739211,98.88297032],[4.53682346,0.03739386,98.88204283],[4.5368239,0.03739561,98.88111546],[4.53682433,0.03739736,98.88018821],[4.53682476,0.03739911,98.87926107],[4.5368252,0.03740086,98.87833403],[4.53682563,0.03740261,98.87740708],[4.53682606,0.03740436,98.87648022],[4.5368265,0.03740611,98.87555344],[4.53682693,0.03740786,98.87462672],[4.53682736,0.03740961,98.87370007],[4.53682779,0.03741136,98.87277347],[4.53682823,0.03741311,98.87184692],[4.53682866,0.03741486,98.8709204],[4.53682909,0.03741661,98.86999392],[4.53682952,0.03741836,98.86906745],[4.53682996,0.03742011,98.868141],[4.53683039,0.03742187,98.86721456],[4.53683082,0.03742362,98.86628812],[4.53683125,0.03742537,98.86536167],[4.53683169,0.03742712,98.8644352],[4.53683212,0.03742887,98.8635087],[4.53683255,0.03743062,98.86258217],[4.53683298,0.03743237,98.8616556],[4.53683341,0.03743412,98.86072898],[4.53683384,0.03743587,98.85980231],[4.53683428,0.03743762,98.85887557],[4.53683471,0.03743938,98.85794875],[4.53683514,0.03744113,98.85702185],[4.53683557,0.03744288,98.85609487],[4.536836,0.03744463,98.85516779],[4.53683643,0.03744638,98.8542406],[4.53683686,0.03744813,98.85331332],[4.53683729,0.03744988,98.85238596],[4.53683772,0.03745163,98.85145852],[4.53683815,0.03745339,98.85053102],[4.53683858,0.03745514,98.84960345],[4.53683901,0.03745689,98.84867583],[4.53683944,0.03745864,98.84774817],[4.53683987,0.03746039,98.84682047],[4.5368403,0.03746214,98.84589275],[4.53684073,0.03746389,98.84496502],[4.53684116,0.03746565,98.84403727],[4.53684159,0.0374674,98.84310952],[4.53684202,0.03746915,98.84218178],[4.53684245,0.0374709,98.84125406],[4.53684288,0.03747265,98.84032636],[4.53684331,0.0374744,98.8393987],[4.53684374,0.03747616,98.83847108],[4.53684417,0.03747791,98.83754351],[4.5368446,0.03747966,98.83661599],[4.53684503,0.03748141,98.83568855],[4.53684545,0.03748316,98.83476119],[4.53684588,0.03748491,98.8338339],[4.53684631,0.03748667,98.83290672],[4.53684674,0.03748842,98.83197963],[4.53684717,0.03749017,98.83105266],[4.5368476,0.03749192,98.83012581],[4.53684802,0.03749367,98.82919908],[4.53684845,0.03749543,98.82827249],[4.53684888,0.03749718,98.82734605],[4.53684931,0.03749893,98.82641976],[4.53684974,0.03750068,98.82549364],[4.53685017,0.03750243,98.82456769],[4.53685059,0.03750419,98.82364191],[4.53685102,0.03750594,98.82271633],[4.53685145,0.03750769,98.82179095],[4.53685188,0.03750944,98.82086577],[4.53685231,0.03751119,98.81994081],[4.53685273,0.03751294,98.81901607],[4.53685316,0.0375147,98.81809156],[4.53685359,0.03751645,98.8171673],[4.53685402,0.0375182,98.81624329],[4.53685444,0.03751995,98.81531953],[4.53685487,0.0375217,98.81439605],[4.5368553,0.03752346,98.81347284],[4.53685573,0.03752521,98.81254992],[4.53685616,0.03752696,98.81162729],[4.53685658,0.03752871,98.81070496],[4.53685701,0.03753047,98.80978295],[4.53685744,0.03753222,98.80886126],[4.53685787,0.03753397,98.8079399],[4.53685829,0.03753572,98.80701888],[4.53685872,0.03753747,98.80609821],[4.53685915,0.03753923,98.80517789],[4.53685958,0.03754098,98.80425794],[4.53686001,0.03754273,98.80333836],[4.53686043,0.03754448,98.80241917],[4.53686086,0.03754623,98.80150037],[4.53686129,0.03754799,98.80058197],[4.53686172,0.03754974,98.79966399],[4.53686214,0.03755149,98.79874642],[4.53686257,0.03755324,98.79782928],[4.536863,0.03755499,98.79691258],[4.53686343,0.03755675,98.79599632],[4.53686386,0.0375585,98.79508052],[4.53686428,0.03756025,98.79416518],[4.53686471,0.037562,98.79325032],[4.53686514,0.03756375,98.79233594],[4.53686557,0.0375655,98.79142205],[4.536866,0.03756726,98.79050867],[4.53686642,0.03756901,98.78959579],[4.53686685,0.03757076,98.78868343],[4.53686728,0.03757251,98.7877716],[4.53686771,0.03757426,98.7868603],[4.53686814,0.03757602,98.78594956],[4.53686857,0.03757777,98.78503936],[4.53686899,0.03757952,98.78412974],[4.53686942,0.03758127,98.78322068],[4.53686985,0.03758302,98.78231221],[4.53687028,0.03758477,98.78140433],[4.53687071,0.03758653,98.78049705],[4.53687114,0.03758828,98.77959038],[4.53687157,0.03759003,98.77868433],[4.536872,0.03759178,98.7777789],[4.53687243,0.03759353,98.77687408],[4.53687285,0.03759528,98.77596987],[4.53687328,0.03759704,98.77506626],[4.53687371,0.03759879,98.77416325],[4.53687414,0.03760054,98.77326083],[4.53687457,0.03760229,98.772359],[4.536875,0.03760404,98.77145775],[4.53687543,0.03760579,98.77055709],[4.53687586,0.03760755,98.76965699],[4.53687629,0.0376093,98.76875747],[4.53687672,0.03761105,98.76785851],[4.53687715,0.0376128,98.76696011],[4.53687758,0.03761455,98.76606226],[4.53687801,0.0376163,98.76516497],[4.53687844,0.03761805,98.76426821],[4.53687887,0.03761981,98.763372],[4.5368793,0.03762156,98.76247632],[4.53687973,0.03762331,98.76158117],[4.53688016,0.03762506,98.76068654],[4.53688059,0.03762681,98.75979244],[4.53688102,0.03762856,98.75889885],[4.53688145,0.03763031,98.75800576],[4.53688188,0.03763207,98.75711319],[4.53688231,0.03763382,98.75622111],[4.53688274,0.03763557,98.75532952],[4.53688317,0.03763732,98.75443843],[4.5368836,0.03763907,98.75354782],[4.53688404,0.03764082,98.75265769],[4.53688447,0.03764257,98.75176803],[4.5368849,0.03764432,98.75087884],[4.53688533,0.03764608,98.74999011],[4.53688576,0.03764783,98.74910185],[4.53688619,0.03764958,98.74821404],[4.53688662,0.03765133,98.74732667],[4.53688705,0.03765308,98.74643975],[4.53688748,0.03765483,98.74555327],[4.53688791,0.03765658,98.74466723],[4.53688834,0.03765833,98.74378161],[4.53688877,0.03766009,98.74289641],[4.5368892,0.03766184,98.74201163],[4.53688963,0.03766359,98.74112727],[4.53689006,0.03766534,98.74024331],[4.5368905,0.03766709,98.73935975],[4.53689093,0.03766884,98.73847659],[4.53689136,0.03767059,98.73759383],[4.53689179,0.03767234,98.73671145],[4.53689222,0.0376741,98.73582945],[4.53689265,0.03767585,98.73494783],[4.53689308,0.0376776,98.73406658],[4.53689351,0.03767935,98.7331857],[4.53689394,0.0376811,98.73230518],[4.53689437,0.03768285,98.73142501],[4.5368948,0.0376846,98.73054519],[4.53689523,0.03768636,98.72966572],[4.53689566,0.03768811,98.72878659],[4.53689609,0.03768986,98.72790779],[4.53689652,0.03769161,98.72702932],[4.53689695,0.03769336,98.72615118],[4.53689738,0.03769511,98.72527335],[4.53689781,0.03769686,98.72439584],[4.53689824,0.03769861,98.72351864],[4.53689867,0.03770037,98.72264174],[4.5368991,0.03770212,98.72176514],[4.53689953,0.03770387,98.72088883],[4.53689997,0.03770562,98.7200128],[4.5369004,0.03770737,98.71913706],[4.53690083,0.03770912,98.7182616],[4.53690126,0.03771087,98.7173864],[4.53690168,0.03771263,98.71651147],[4.53690211,0.03771438,98.7156368],[4.53690254,0.03771613,98.71476239],[4.53690297,0.03771788,98.71388823],[4.5369034,0.03771963,98.71301431],[4.53690383,0.03772138,98.71214063],[4.53690426,0.03772313,98.71126718],[4.53690469,0.03772489,98.71039396],[4.53690512,0.03772664,98.70952096],[4.53690555,0.03772839,98.70864818],[4.53690598,0.03773014,98.70777562],[4.53690641,0.03773189,98.70690326],[4.53690684,0.03773364,98.7060311],[4.53690727,0.0377354,98.70515913],[4.5369077,0.03773715,98.70428736],[4.53690813,0.0377389,98.70341577],[4.53690855,0.03774065,98.70254436],[4.53690898,0.0377424,98.70167312],[4.53690941,0.03774415,98.70080206],[4.53690984,0.03774591,98.69993115],[4.53691027,0.03774766,98.69906041],[4.5369107,0.03774941,98.69818981],[4.53691112,0.03775116,98.69731938],[4.53691155,0.03775291,98.6964491],[4.53691198,0.03775467,98.69557898],[4.53691241,0.03775642,98.69470904],[4.53691284,0.03775817,98.69383927],[4.53691326,0.03775992,98.69296969],[4.53691369,0.03776167,98.69210029],[4.53691412,0.03776343,98.69123108],[4.53691455,0.03776518,98.69036207],[4.53691497,0.03776693,98.68949326],[4.5369154,0.03776868,98.68862467],[4.53691583,0.03777043,98.68775628],[4.53691626,0.03777219,98.68688811],[4.53691668,0.03777394,98.68602017],[4.53691711,0.03777569,98.68515246],[4.53691754,0.03777744,98.68428498],[4.53691796,0.03777919,98.68341774],[4.53691839,0.03778095,98.68255075],[4.53691882,0.0377827,98.681684],[4.53691924,0.03778445,98.68081752],[4.53691967,0.0377862,98.6799513],[4.5369201,0.03778796,98.67908534],[4.53692052,0.03778971,98.67821966],[4.53692095,0.03779146,98.67735425],[4.53692138,0.03779321,98.67648913],[4.5369218,0.03779497,98.6756243],[4.53692223,0.03779672,98.67475976],[4.53692266,0.03779847,98.67389552],[4.53692308,0.03780022,98.67303159],[4.53692351,0.03780197,98.67216797],[4.53692393,0.03780373,98.67130467],[4.53692436,0.03780548,98.67044168],[4.53692479,0.03780723,98.66957903],[4.53692521,0.03780898,98.66871671],[4.53692564,0.03781074,98.66785472],[4.53692606,0.03781249,98.66699308],[4.53692649,0.03781424,98.66613179],[4.53692691,0.03781599,98.66527085],[4.53692734,0.03781775,98.66441028],[4.53692777,0.0378195,98.66355007],[4.53692819,0.03782125,98.66269023],[4.53692862,0.037823,98.66183077],[4.53692904,0.03782476,98.66097169],[4.53692947,0.03782651,98.66011299],[4.53692989,0.03782826,98.65925469],[4.53693032,0.03783001,98.6583968],[4.53693074,0.03783177,98.6575393],[4.53693117,0.03783352,98.65668221],[4.53693159,0.03783527,98.65582555],[4.53693202,0.03783702,98.6549693],[4.53693245,0.03783878,98.65411347],[4.53693287,0.03784053,98.65325809],[4.5369333,0.03784228,98.65240313],[4.53693372,0.03784403,98.65154862],[4.53693415,0.03784579,98.65069456],[4.53693457,0.03784754,98.64984096],[4.536935,0.03784929,98.64898781],[4.53693542,0.03785104,98.64813513],[4.53693585,0.0378528,98.64728293],[4.53693627,0.03785455,98.64643119],[4.5369367,0.0378563,98.64557994],[4.53693712,0.03785806,98.64472918],[4.53693755,0.03785981,98.64387891],[4.53693797,0.03786156,98.64302914],[4.5369384,0.03786331,98.64217988],[4.53693882,0.03786507,98.64133112],[4.53693925,0.03786682,98.64048288],[4.53693967,0.03786857,98.63963517],[4.5369401,0.03787032,98.63878797],[4.53694052,0.03787208,98.63794132],[4.53694095,0.03787383,98.6370952],[4.53694138,0.03787558,98.63624962],[4.5369418,0.03787733,98.63540459],[4.53694223,0.03787909,98.63456012],[4.53694265,0.03788084,98.63371621],[4.53694308,0.03788259,98.63287286],[4.5369435,0.03788434,98.63203009],[4.53694393,0.0378861,98.63118789],[4.53694435,0.03788785,98.63034627],[4.53694478,0.0378896,98.62950525],[4.5369452,0.03789135,98.62866481],[4.53694563,0.03789311,98.62782498],[4.53694605,0.03789486,98.62698575],[4.53694648,0.03789661,98.62614714],[4.53694691,0.03789836,98.62530914],[4.53694733,0.03790012,98.62447176],[4.53694776,0.03790187,98.62363501],[4.53694818,0.03790362,98.62279889],[4.53694861,0.03790537,98.62196341],[4.53694903,0.03790713,98.62112857],[4.53694946,0.03790888,98.62029439],[4.53694988,0.03791063,98.61946086],[4.53695031,0.03791238,98.61862799],[4.53695074,0.03791414,98.61779579],[4.53695116,0.03791589,98.61696426],[4.53695159,0.03791764,98.61613341],[4.53695201,0.03791939,98.61530324],[4.53695244,0.03792115,98.61447376],[4.53695287,0.0379229,98.61364497],[4.53695329,0.03792465,98.61281689],[4.53695372,0.0379264,98.61198951],[4.53695414,0.03792816,98.61116284],[4.53695457,0.03792991,98.61033688],[4.536955,0.03793166,98.60951165],[4.53695542,0.03793341,98.60868715],[4.53695585,0.03793516,98.60786338],[4.53695628,0.03793692,98.60704033],[4.5369567,0.03793867,98.60621801],[4.53695713,0.03794042,98.6053964],[4.53695756,0.03794217,98.6045755],[4.53695798,0.03794393,98.60375531],[4.53695841,0.03794568,98.60293582],[4.53695884,0.03794743,98.60211703],[4.53695926,0.03794918,98.60129893],[4.53695969,0.03795093,98.60048151],[4.53696012,0.03795269,98.59966478],[4.53696055,0.03795444,98.59884873],[4.53696097,0.03795619,98.59803334],[4.5369614,0.03795794,98.59721863],[4.53696183,0.03795969,98.59640457],[4.53696225,0.03796145,98.59559118],[4.53696268,0.0379632,98.59477843],[4.53696311,0.03796495,98.59396633],[4.53696354,0.0379667,98.59315488],[4.53696396,0.03796845,98.59234406],[4.53696439,0.03797021,98.59153388],[4.53696482,0.03797196,98.59072432],[4.53696524,0.03797371,98.58991538],[4.53696567,0.03797546,98.58910707],[4.5369661,0.03797722,98.58829936],[4.53696653,0.03797897,98.58749226],[4.53696695,0.03798072,98.58668577],[4.53696738,0.03798247,98.58587987],[4.53696781,0.03798422,98.58507457],[4.53696824,0.03798598,98.58426985],[4.53696866,0.03798773,98.58346572],[4.53696909,0.03798948,98.58266217],[4.53696952,0.03799123,98.58185919],[4.53696995,0.03799298,98.58105677],[4.53697037,0.03799474,98.58025492],[4.5369708,0.03799649,98.57945363],[4.53697123,0.03799824,98.57865289],[4.53697166,0.03799999,98.5778527],[4.53697208,0.03800174,98.57705305],[4.53697251,0.0380035,98.57625395],[4.53697294,0.03800525,98.57545537],[4.53697337,0.038007,98.57465732],[4.53697379,0.03800875,98.5738598],[4.53697422,0.0380105,98.5730628],[4.53697465,0.03801226,98.5722663],[4.53697508,0.03801401,98.57147032],[4.5369755,0.03801576,98.57067484],[4.53697593,0.03801751,98.56987987],[4.53697636,0.03801926,98.56908538],[4.53697678,0.03802102,98.56829138],[4.53697721,0.03802277,98.56749787],[4.53697764,0.03802452,98.56670484],[4.53697807,0.03802627,98.56591228],[4.53697849,0.03802802,98.56512019],[4.53697892,0.03802978,98.56432857],[4.53697935,0.03803153,98.5635374],[4.53697977,0.03803328,98.56274669],[4.5369802,0.03803503,98.56195643],[4.53698063,0.03803678,98.56116662],[4.53698105,0.03803854,98.56037724],[4.53698148,0.03804029,98.5595883],[4.53698191,0.03804204,98.55879979],[4.53698234,0.03804379,98.55801171],[4.53698276,0.03804555,98.55722405],[4.53698319,0.0380473,98.5564368],[4.53698361,0.03804905,98.55564996],[4.53698404,0.0380508,98.55486353],[4.53698447,0.03805255,98.5540775],[4.53698489,0.03805431,98.55329187],[4.53698532,0.03805606,98.55250663],[4.53698575,0.03805781,98.55172178],[4.53698617,0.03805956,98.5509373],[4.5369866,0.03806132,98.55015321],[4.53698702,0.03806307,98.54936949],[4.53698745,0.03806482,98.54858613],[4.53698788,0.03806657,98.54780314],[4.5369883,0.03806833,98.54702051],[4.53698873,0.03807008,98.54623823],[4.53698915,0.03807183,98.5454563],[4.53698958,0.03807358,98.54467471],[4.53699,0.03807534,98.54389346],[4.53699043,0.03807709,98.54311255],[4.53699086,0.03807884,98.54233197],[4.53699128,0.03808059,98.54155171],[4.53699171,0.03808235,98.54077178],[4.53699213,0.0380841,98.53999216],[4.53699256,0.03808585,98.53921286],[4.53699298,0.0380876,98.53843388],[4.53699341,0.03808936,98.53765524],[4.53699383,0.03809111,98.53687694],[4.53699425,0.03809286,98.53609899],[4.53699468,0.03809461,98.53532138],[4.5369951,0.03809637,98.53454414],[4.53699553,0.03809812,98.53376727],[4.53699595,0.03809987,98.53299077],[4.53699638,0.03810163,98.53221465],[4.5369968,0.03810338,98.53143891],[4.53699722,0.03810513,98.53066357],[4.53699765,0.03810688,98.52988863],[4.53699807,0.03810864,98.5291141],[4.5369985,0.03811039,98.52833998],[4.53699892,0.03811214,98.52756628],[4.53699934,0.0381139,98.526793],[4.53699977,0.03811565,98.52602017],[4.53700019,0.0381174,98.52524777],[4.53700061,0.03811915,98.52447582],[4.53700104,0.03812091,98.52370432],[4.53700146,0.03812266,98.52293328],[4.53700188,0.03812441,98.52216271],[4.53700231,0.03812617,98.52139261],[4.53700273,0.03812792,98.520623],[4.53700315,0.03812967,98.51985387],[4.53700358,0.03813143,98.51908523],[4.537004,0.03813318,98.5183171],[4.53700442,0.03813493,98.51754947],[4.53700485,0.03813668,98.51678235],[4.53700527,0.03813844,98.51601576],[4.53700569,0.03814019,98.51524969],[4.53700612,0.03814194,98.51448416],[4.53700654,0.0381437,98.51371916],[4.53700696,0.03814545,98.51295471],[4.53700738,0.0381472,98.51219082],[4.53700781,0.03814896,98.51142748],[4.53700823,0.03815071,98.51066472],[4.53700865,0.03815246,98.50990252],[4.53700908,0.03815422,98.5091409],[4.5370095,0.03815597,98.50837987],[4.53700992,0.03815772,98.50761944],[4.53701034,0.03815948,98.5068596],[4.53701077,0.03816123,98.50610036],[4.53701119,0.03816298,98.50534175],[4.53701161,0.03816474,98.50458376],[4.53701204,0.03816649,98.50382641],[4.53701246,0.03816824,98.5030697],[4.53701288,0.03816999,98.50231366],[4.5370133,0.03817175,98.50155828],[4.53701373,0.0381735,98.50080357],[4.53701415,0.03817525,98.50004956],[4.53701457,0.03817701,98.49929624],[4.53698363,0.03818459,98.40432656]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1,"sOffset":53.8544139403}},{"geometry":{"coordinates":[[[4.53701457,0.03817701,98.49929624],[4.53701415,0.03817525,98.50004956],[4.53701373,0.0381735,98.50080357],[4.5370133,0.03817175,98.50155828],[4.53701288,0.03816999,98.50231366],[4.53701246,0.03816824,98.5030697],[4.53701204,0.03816649,98.50382641],[4.53701161,0.03816474,98.50458376],[4.53701119,0.03816298,98.50534175],[4.53701077,0.03816123,98.50610036],[4.53701034,0.03815948,98.5068596],[4.53700992,0.03815772,98.50761944],[4.5370095,0.03815597,98.50837987],[4.53700908,0.03815422,98.5091409],[4.53700865,0.03815246,98.50990252],[4.53700823,0.03815071,98.51066472],[4.53700781,0.03814896,98.51142748],[4.53700738,0.0381472,98.51219082],[4.53700696,0.03814545,98.51295471],[4.53700654,0.0381437,98.51371916],[4.53700612,0.03814194,98.51448416],[4.53700569,0.03814019,98.51524969],[4.53700527,0.03813844,98.51601576],[4.53700485,0.03813668,98.51678235],[4.53700442,0.03813493,98.51754947],[4.537004,0.03813318,98.5183171],[4.53700358,0.03813143,98.51908523],[4.53700315,0.03812967,98.51985387],[4.53700273,0.03812792,98.520623],[4.53700231,0.03812617,98.52139261],[4.53700188,0.03812441,98.52216271],[4.53700146,0.03812266,98.52293328],[4.53700104,0.03812091,98.52370432],[4.53700061,0.03811915,98.52447582],[4.53700019,0.0381174,98.52524777],[4.53699977,0.03811565,98.52602017],[4.53699934,0.0381139,98.526793],[4.53699892,0.03811214,98.52756628],[4.5369985,0.03811039,98.52833998],[4.53699807,0.03810864,98.5291141],[4.53699765,0.03810688,98.52988863],[4.53699722,0.03810513,98.53066357],[4.5369968,0.03810338,98.53143891],[4.53699638,0.03810163,98.53221465],[4.53699595,0.03809987,98.53299077],[4.53699553,0.03809812,98.53376727],[4.5369951,0.03809637,98.53454414],[4.53699468,0.03809461,98.53532138],[4.53699425,0.03809286,98.53609899],[4.53699383,0.03809111,98.53687694],[4.53699341,0.03808936,98.53765524],[4.53699298,0.0380876,98.53843388],[4.53699256,0.03808585,98.53921286],[4.53699213,0.0380841,98.53999216],[4.53699171,0.03808235,98.54077178],[4.53699128,0.03808059,98.54155171],[4.53699086,0.03807884,98.54233197],[4.53699043,0.03807709,98.54311255],[4.53699,0.03807534,98.54389346],[4.53698958,0.03807358,98.54467471],[4.53698915,0.03807183,98.5454563],[4.53698873,0.03807008,98.54623823],[4.5369883,0.03806833,98.54702051],[4.53698788,0.03806657,98.54780314],[4.53698745,0.03806482,98.54858613],[4.53698702,0.03806307,98.54936949],[4.5369866,0.03806132,98.55015321],[4.53698617,0.03805956,98.5509373],[4.53698575,0.03805781,98.55172178],[4.53698532,0.03805606,98.55250663],[4.53698489,0.03805431,98.55329187],[4.53698447,0.03805255,98.5540775],[4.53698404,0.0380508,98.55486353],[4.53698361,0.03804905,98.55564996],[4.53698319,0.0380473,98.5564368],[4.53698276,0.03804555,98.55722405],[4.53698234,0.03804379,98.55801171],[4.53698191,0.03804204,98.55879979],[4.53698148,0.03804029,98.5595883],[4.53698105,0.03803854,98.56037724],[4.53698063,0.03803678,98.56116662],[4.5369802,0.03803503,98.56195643],[4.53697977,0.03803328,98.56274669],[4.53697935,0.03803153,98.5635374],[4.53697892,0.03802978,98.56432857],[4.53697849,0.03802802,98.56512019],[4.53697807,0.03802627,98.56591228],[4.53697764,0.03802452,98.56670484],[4.53697721,0.03802277,98.56749787],[4.53697678,0.03802102,98.56829138],[4.53697636,0.03801926,98.56908538],[4.53697593,0.03801751,98.56987987],[4.5369755,0.03801576,98.57067484],[4.53697508,0.03801401,98.57147032],[4.53697465,0.03801226,98.5722663],[4.53697422,0.0380105,98.5730628],[4.53697379,0.03800875,98.5738598],[4.53697337,0.038007,98.57465732],[4.53697294,0.03800525,98.57545537],[4.53697251,0.0380035,98.57625395],[4.53697208,0.03800174,98.57705305],[4.53697166,0.03799999,98.5778527],[4.53697123,0.03799824,98.57865289],[4.5369708,0.03799649,98.57945363],[4.53697037,0.03799474,98.58025492],[4.53696995,0.03799298,98.58105677],[4.53696952,0.03799123,98.58185919],[4.53696909,0.03798948,98.58266217],[4.53696866,0.03798773,98.58346572],[4.53696824,0.03798598,98.58426985],[4.53696781,0.03798422,98.58507457],[4.53696738,0.03798247,98.58587987],[4.53696695,0.03798072,98.58668577],[4.53696653,0.03797897,98.58749226],[4.5369661,0.03797722,98.58829936],[4.53696567,0.03797546,98.58910707],[4.53696524,0.03797371,98.58991538],[4.53696482,0.03797196,98.59072432],[4.53696439,0.03797021,98.59153388],[4.53696396,0.03796845,98.59234406],[4.53696354,0.0379667,98.59315488],[4.53696311,0.03796495,98.59396633],[4.53696268,0.0379632,98.59477843],[4.53696225,0.03796145,98.59559118],[4.53696183,0.03795969,98.59640457],[4.5369614,0.03795794,98.59721863],[4.53696097,0.03795619,98.59803334],[4.53696055,0.03795444,98.59884873],[4.53696012,0.03795269,98.59966478],[4.53695969,0.03795093,98.60048151],[4.53695926,0.03794918,98.60129893],[4.53695884,0.03794743,98.60211703],[4.53695841,0.03794568,98.60293582],[4.53695798,0.03794393,98.60375531],[4.53695756,0.03794217,98.6045755],[4.53695713,0.03794042,98.6053964],[4.5369567,0.03793867,98.60621801],[4.53695628,0.03793692,98.60704033],[4.53695585,0.03793516,98.60786338],[4.53695542,0.03793341,98.60868715],[4.536955,0.03793166,98.60951165],[4.53695457,0.03792991,98.61033688],[4.53695414,0.03792816,98.61116284],[4.53695372,0.0379264,98.61198951],[4.53695329,0.03792465,98.61281689],[4.53695287,0.0379229,98.61364497],[4.53695244,0.03792115,98.61447376],[4.53695201,0.03791939,98.61530324],[4.53695159,0.03791764,98.61613341],[4.53695116,0.03791589,98.61696426],[4.53695074,0.03791414,98.61779579],[4.53695031,0.03791238,98.61862799],[4.53694988,0.03791063,98.61946086],[4.53694946,0.03790888,98.62029439],[4.53694903,0.03790713,98.62112857],[4.53694861,0.03790537,98.62196341],[4.53694818,0.03790362,98.62279889],[4.53694776,0.03790187,98.62363501],[4.53694733,0.03790012,98.62447176],[4.53694691,0.03789836,98.62530914],[4.53694648,0.03789661,98.62614714],[4.53694605,0.03789486,98.62698575],[4.53694563,0.03789311,98.62782498],[4.5369452,0.03789135,98.62866481],[4.53694478,0.0378896,98.62950525],[4.53694435,0.03788785,98.63034627],[4.53694393,0.0378861,98.63118789],[4.5369435,0.03788434,98.63203009],[4.53694308,0.03788259,98.63287286],[4.53694265,0.03788084,98.63371621],[4.53694223,0.03787909,98.63456012],[4.5369418,0.03787733,98.63540459],[4.53694138,0.03787558,98.63624962],[4.53694095,0.03787383,98.6370952],[4.53694052,0.03787208,98.63794132],[4.5369401,0.03787032,98.63878797],[4.53693967,0.03786857,98.63963517],[4.53693925,0.03786682,98.64048288],[4.53693882,0.03786507,98.64133112],[4.5369384,0.03786331,98.64217988],[4.53693797,0.03786156,98.64302914],[4.53693755,0.03785981,98.64387891],[4.53693712,0.03785806,98.64472918],[4.5369367,0.0378563,98.64557994],[4.53693627,0.03785455,98.64643119],[4.53693585,0.0378528,98.64728293],[4.53693542,0.03785104,98.64813513],[4.536935,0.03784929,98.64898781],[4.53693457,0.03784754,98.64984096],[4.53693415,0.03784579,98.65069456],[4.53693372,0.03784403,98.65154862],[4.5369333,0.03784228,98.65240313],[4.53693287,0.03784053,98.65325809],[4.53693245,0.03783878,98.65411347],[4.53693202,0.03783702,98.6549693],[4.53693159,0.03783527,98.65582555],[4.53693117,0.03783352,98.65668221],[4.53693074,0.03783177,98.6575393],[4.53693032,0.03783001,98.6583968],[4.53692989,0.03782826,98.65925469],[4.53692947,0.03782651,98.66011299],[4.53692904,0.03782476,98.66097169],[4.53692862,0.037823,98.66183077],[4.53692819,0.03782125,98.66269023],[4.53692777,0.0378195,98.66355007],[4.53692734,0.03781775,98.66441028],[4.53692691,0.03781599,98.66527085],[4.53692649,0.03781424,98.66613179],[4.53692606,0.03781249,98.66699308],[4.53692564,0.03781074,98.66785472],[4.53692521,0.03780898,98.66871671],[4.53692479,0.03780723,98.66957903],[4.53692436,0.03780548,98.67044168],[4.53692393,0.03780373,98.67130467],[4.53692351,0.03780197,98.67216797],[4.53692308,0.03780022,98.67303159],[4.53692266,0.03779847,98.67389552],[4.53692223,0.03779672,98.67475976],[4.5369218,0.03779497,98.6756243],[4.53692138,0.03779321,98.67648913],[4.53692095,0.03779146,98.67735425],[4.53692052,0.03778971,98.67821966],[4.5369201,0.03778796,98.67908534],[4.53691967,0.0377862,98.6799513],[4.53691924,0.03778445,98.68081752],[4.53691882,0.0377827,98.681684],[4.53691839,0.03778095,98.68255075],[4.53691796,0.03777919,98.68341774],[4.53691754,0.03777744,98.68428498],[4.53691711,0.03777569,98.68515246],[4.53691668,0.03777394,98.68602017],[4.53691626,0.03777219,98.68688811],[4.53691583,0.03777043,98.68775628],[4.5369154,0.03776868,98.68862467],[4.53691497,0.03776693,98.68949326],[4.53691455,0.03776518,98.69036207],[4.53691412,0.03776343,98.69123108],[4.53691369,0.03776167,98.69210029],[4.53691326,0.03775992,98.69296969],[4.53691284,0.03775817,98.69383927],[4.53691241,0.03775642,98.69470904],[4.53691198,0.03775467,98.69557898],[4.53691155,0.03775291,98.6964491],[4.53691112,0.03775116,98.69731938],[4.5369107,0.03774941,98.69818981],[4.53691027,0.03774766,98.69906041],[4.53690984,0.03774591,98.69993115],[4.53690941,0.03774415,98.70080206],[4.53690898,0.0377424,98.70167312],[4.53690855,0.03774065,98.70254436],[4.53690813,0.0377389,98.70341577],[4.5369077,0.03773715,98.70428736],[4.53690727,0.0377354,98.70515913],[4.53690684,0.03773364,98.7060311],[4.53690641,0.03773189,98.70690326],[4.53690598,0.03773014,98.70777562],[4.53690555,0.03772839,98.70864818],[4.53690512,0.03772664,98.70952096],[4.53690469,0.03772489,98.71039396],[4.53690426,0.03772313,98.71126718],[4.53690383,0.03772138,98.71214063],[4.5369034,0.03771963,98.71301431],[4.53690297,0.03771788,98.71388823],[4.53690254,0.03771613,98.71476239],[4.53690211,0.03771438,98.7156368],[4.53690168,0.03771263,98.71651147],[4.53690126,0.03771087,98.7173864],[4.53690083,0.03770912,98.7182616],[4.5369004,0.03770737,98.71913706],[4.53689997,0.03770562,98.7200128],[4.53689953,0.03770387,98.72088883],[4.5368991,0.03770212,98.72176514],[4.53689867,0.03770037,98.72264174],[4.53689824,0.03769861,98.72351864],[4.53689781,0.03769686,98.72439584],[4.53689738,0.03769511,98.72527335],[4.53689695,0.03769336,98.72615118],[4.53689652,0.03769161,98.72702932],[4.53689609,0.03768986,98.72790779],[4.53689566,0.03768811,98.72878659],[4.53689523,0.03768636,98.72966572],[4.5368948,0.0376846,98.73054519],[4.53689437,0.03768285,98.73142501],[4.53689394,0.0376811,98.73230518],[4.53689351,0.03767935,98.7331857],[4.53689308,0.0376776,98.73406658],[4.53689265,0.03767585,98.73494783],[4.53689222,0.0376741,98.73582945],[4.53689179,0.03767234,98.73671145],[4.53689136,0.03767059,98.73759383],[4.53689093,0.03766884,98.73847659],[4.5368905,0.03766709,98.73935975],[4.53689006,0.03766534,98.74024331],[4.53688963,0.03766359,98.74112727],[4.5368892,0.03766184,98.74201163],[4.53688877,0.03766009,98.74289641],[4.53688834,0.03765833,98.74378161],[4.53688791,0.03765658,98.74466723],[4.53688748,0.03765483,98.74555327],[4.53688705,0.03765308,98.74643975],[4.53688662,0.03765133,98.74732667],[4.53688619,0.03764958,98.74821404],[4.53688576,0.03764783,98.74910185],[4.53688533,0.03764608,98.74999011],[4.5368849,0.03764432,98.75087884],[4.53688447,0.03764257,98.75176803],[4.53688404,0.03764082,98.75265769],[4.5368836,0.03763907,98.75354782],[4.53688317,0.03763732,98.75443843],[4.53688274,0.03763557,98.75532952],[4.53688231,0.03763382,98.75622111],[4.53688188,0.03763207,98.75711319],[4.53688145,0.03763031,98.75800576],[4.53688102,0.03762856,98.75889885],[4.53688059,0.03762681,98.75979244],[4.53688016,0.03762506,98.76068654],[4.53687973,0.03762331,98.76158117],[4.5368793,0.03762156,98.76247632],[4.53687887,0.03761981,98.763372],[4.53687844,0.03761805,98.76426821],[4.53687801,0.0376163,98.76516497],[4.53687758,0.03761455,98.76606226],[4.53687715,0.0376128,98.76696011],[4.53687672,0.03761105,98.76785851],[4.53687629,0.0376093,98.76875747],[4.53687586,0.03760755,98.76965699],[4.53687543,0.03760579,98.77055709],[4.536875,0.03760404,98.77145775],[4.53687457,0.03760229,98.772359],[4.53687414,0.03760054,98.77326083],[4.53687371,0.03759879,98.77416325],[4.53687328,0.03759704,98.77506626],[4.53687285,0.03759528,98.77596987],[4.53687243,0.03759353,98.77687408],[4.536872,0.03759178,98.7777789],[4.53687157,0.03759003,98.77868433],[4.53687114,0.03758828,98.77959038],[4.53687071,0.03758653,98.78049705],[4.53687028,0.03758477,98.78140433],[4.53686985,0.03758302,98.78231221],[4.53686942,0.03758127,98.78322068],[4.53686899,0.03757952,98.78412974],[4.53686857,0.03757777,98.78503936],[4.53686814,0.03757602,98.78594956],[4.53686771,0.03757426,98.7868603],[4.53686728,0.03757251,98.7877716],[4.53686685,0.03757076,98.78868343],[4.53686642,0.03756901,98.78959579],[4.536866,0.03756726,98.79050867],[4.53686557,0.0375655,98.79142205],[4.53686514,0.03756375,98.79233594],[4.53686471,0.037562,98.79325032],[4.53686428,0.03756025,98.79416518],[4.53686386,0.0375585,98.79508052],[4.53686343,0.03755675,98.79599632],[4.536863,0.03755499,98.79691258],[4.53686257,0.03755324,98.79782928],[4.53686214,0.03755149,98.79874642],[4.53686172,0.03754974,98.79966399],[4.53686129,0.03754799,98.80058197],[4.53686086,0.03754623,98.80150037],[4.53686043,0.03754448,98.80241917],[4.53686001,0.03754273,98.80333836],[4.53685958,0.03754098,98.80425794],[4.53685915,0.03753923,98.80517789],[4.53685872,0.03753747,98.80609821],[4.53685829,0.03753572,98.80701888],[4.53685787,0.03753397,98.8079399],[4.53685744,0.03753222,98.80886126],[4.53685701,0.03753047,98.80978295],[4.53685658,0.03752871,98.81070496],[4.53685616,0.03752696,98.81162729],[4.53685573,0.03752521,98.81254992],[4.5368553,0.03752346,98.81347284],[4.53685487,0.0375217,98.81439605],[4.53685444,0.03751995,98.81531953],[4.53685402,0.0375182,98.81624329],[4.53685359,0.03751645,98.8171673],[4.53685316,0.0375147,98.81809156],[4.53685273,0.03751294,98.81901607],[4.53685231,0.03751119,98.81994081],[4.53685188,0.03750944,98.82086577],[4.53685145,0.03750769,98.82179095],[4.53685102,0.03750594,98.82271633],[4.53685059,0.03750419,98.82364191],[4.53685017,0.03750243,98.82456769],[4.53684974,0.03750068,98.82549364],[4.53684931,0.03749893,98.82641976],[4.53684888,0.03749718,98.82734605],[4.53684845,0.03749543,98.82827249],[4.53684802,0.03749367,98.82919908],[4.5368476,0.03749192,98.83012581],[4.53684717,0.03749017,98.83105266],[4.53684674,0.03748842,98.83197963],[4.53684631,0.03748667,98.83290672],[4.53684588,0.03748491,98.8338339],[4.53684545,0.03748316,98.83476119],[4.53684503,0.03748141,98.83568855],[4.5368446,0.03747966,98.83661599],[4.53684417,0.03747791,98.83754351],[4.53684374,0.03747616,98.83847108],[4.53684331,0.0374744,98.8393987],[4.53684288,0.03747265,98.84032636],[4.53684245,0.0374709,98.84125406],[4.53684202,0.03746915,98.84218178],[4.53684159,0.0374674,98.84310952],[4.53684116,0.03746565,98.84403727],[4.53684073,0.03746389,98.84496502],[4.5368403,0.03746214,98.84589275],[4.53683987,0.03746039,98.84682047],[4.53683944,0.03745864,98.84774817],[4.53683901,0.03745689,98.84867583],[4.53683858,0.03745514,98.84960345],[4.53683815,0.03745339,98.85053102],[4.53683772,0.03745163,98.85145852],[4.53683729,0.03744988,98.85238596],[4.53683686,0.03744813,98.85331332],[4.53683643,0.03744638,98.8542406],[4.536836,0.03744463,98.85516779],[4.53683557,0.03744288,98.85609487],[4.53683514,0.03744113,98.85702185],[4.53683471,0.03743938,98.85794875],[4.53683428,0.03743762,98.85887557],[4.53683384,0.03743587,98.85980231],[4.53683341,0.03743412,98.86072898],[4.53683298,0.03743237,98.8616556],[4.53683255,0.03743062,98.86258217],[4.53683212,0.03742887,98.8635087],[4.53683169,0.03742712,98.8644352],[4.53683125,0.03742537,98.86536167],[4.53683082,0.03742362,98.86628812],[4.53683039,0.03742187,98.86721456],[4.53682996,0.03742011,98.868141],[4.53682952,0.03741836,98.86906745],[4.53682909,0.03741661,98.86999392],[4.53682866,0.03741486,98.8709204],[4.53682823,0.03741311,98.87184692],[4.53682779,0.03741136,98.87277347],[4.53682736,0.03740961,98.87370007],[4.53682693,0.03740786,98.87462672],[4.5368265,0.03740611,98.87555344],[4.53682606,0.03740436,98.87648022],[4.53682563,0.03740261,98.87740708],[4.5368252,0.03740086,98.87833403],[4.53682476,0.03739911,98.87926107],[4.53682433,0.03739736,98.88018821],[4.5368239,0.03739561,98.88111546],[4.53682346,0.03739386,98.88204283],[4.53682303,0.03739211,98.88297032],[4.5368226,0.03739036,98.88389794],[4.53682216,0.03738861,98.8848257],[4.53682173,0.03738685,98.88575361],[4.5368213,0.0373851,98.88668168],[4.53682086,0.03738335,98.8876099],[4.53682043,0.0373816,98.8885383],[4.53681999,0.03737985,98.88946687],[4.53681956,0.0373781,98.89039564],[4.53681913,0.03737635,98.89132459],[4.53681869,0.0373746,98.89225375],[4.53681826,0.03737285,98.89318311],[4.53681783,0.0373711,98.89411269],[4.53681739,0.03736935,98.8950425],[4.53681696,0.0373676,98.89597253],[4.53681653,0.03736585,98.89690281],[4.53681609,0.0373641,98.89783333],[4.53681566,0.03736235,98.89876411],[4.53681522,0.0373606,98.89969515],[4.53681479,0.03735885,98.90062646],[4.53681436,0.0373571,98.90155804],[4.53681392,0.03735535,98.90248989],[4.53681349,0.03735359,98.90342202],[4.53681306,0.03735184,98.90435441],[4.53681262,0.03735009,98.90528706],[4.53681219,0.03734834,98.90621998],[4.53681176,0.03734659,98.90715316],[4.53681132,0.03734484,98.90808659],[4.53681089,0.03734309,98.90902028],[4.53681046,0.03734134,98.90995423],[4.53681002,0.03733959,98.91088842],[4.53680959,0.03733784,98.91182286],[4.53680916,0.03733609,98.91275755],[4.53680872,0.03733434,98.91369248],[4.53680829,0.03733259,98.91462765],[4.53680786,0.03733084,98.91556306],[4.53680742,0.03732909,98.91649871],[4.53680699,0.03732734,98.91743458],[4.53680656,0.03732559,98.91837069],[4.53680612,0.03732383,98.91930703],[4.53680569,0.03732208,98.9202436],[4.53680526,0.03732033,98.92118039],[4.53680482,0.03731858,98.9221174],[4.53680439,0.03731683,98.92305463],[4.53680396,0.03731508,98.92399208],[4.53680352,0.03731333,98.92492974],[4.53680309,0.03731158,98.92586762],[4.53680266,0.03730983,98.9268057],[4.53680222,0.03730808,98.92774399],[4.53680179,0.03730633,98.92868249],[4.53680136,0.03730458,98.92962119],[4.53680092,0.03730283,98.93056009],[4.53680049,0.03730108,98.93149919],[4.53680006,0.03729933,98.93243849],[4.53679962,0.03729757,98.93337798],[4.53679919,0.03729582,98.93431765],[4.53679876,0.03729407,98.93525752],[4.53679832,0.03729232,98.93619758],[4.53679789,0.03729057,98.93713782],[4.53679746,0.03728882,98.93807823],[4.53679702,0.03728707,98.93901883],[4.53679659,0.03728532,98.93995961],[4.53679616,0.03728357,98.94090056],[4.53679573,0.03728182,98.94184168],[4.53679529,0.03728007,98.94278298],[4.53679486,0.03727832,98.94372444],[4.53679443,0.03727657,98.94466606],[4.53679399,0.03727482,98.94560785],[4.53679356,0.03727307,98.9465498],[4.53679313,0.03727132,98.94749191],[4.53679269,0.03726956,98.94843417],[4.53679226,0.03726781,98.94937659],[4.53679183,0.03726606,98.95031916],[4.53679139,0.03726431,98.95126188],[4.53679096,0.03726256,98.95220474],[4.53679053,0.03726081,98.95314775],[4.53679009,0.03725906,98.9540909],[4.53678966,0.03725731,98.95503419],[4.53678923,0.03725556,98.95597762],[4.53678879,0.03725381,98.95692118],[4.53678836,0.03725206,98.95786488],[4.53678793,0.03725031,98.95880871],[4.5367875,0.03724856,98.95975266],[4.53678706,0.03724681,98.96069674],[4.53678663,0.03724506,98.96164094],[4.5367862,0.0372433,98.96258527],[4.53678576,0.03724155,98.96352971],[4.53678533,0.0372398,98.96447427],[4.5367849,0.03723805,98.96541895],[4.53678446,0.0372363,98.96636373],[4.53678403,0.03723455,98.96730863],[4.5367836,0.0372328,98.96825364],[4.53678316,0.03723105,98.96919874],[4.53678273,0.0372293,98.97014396],[4.5367823,0.03722755,98.97108927],[4.53678186,0.0372258,98.97203468],[4.53678143,0.03722405,98.97298019],[4.536781,0.0372223,98.97392579],[4.53678056,0.03722055,98.97487148],[4.53678013,0.0372188,98.97581726],[4.5367797,0.03721705,98.97676313],[4.53677926,0.03721529,98.97770908],[4.53677883,0.03721354,98.97865511],[4.5367784,0.03721179,98.97960123],[4.53677796,0.03721004,98.98054742],[4.53677753,0.03720829,98.98149369],[4.5367771,0.03720654,98.98244003],[4.53677666,0.03720479,98.98338644],[4.53677623,0.03720304,98.98433292],[4.5367758,0.03720129,98.98527947],[4.53677536,0.03719954,98.98622608],[4.53677493,0.03719779,98.98717275],[4.5367745,0.03719604,98.98811948],[4.53677406,0.03719429,98.98906627],[4.53677363,0.03719254,98.99001312],[4.5367732,0.03719079,98.99096001],[4.53677276,0.03718904,98.99190696],[4.53677233,0.03718729,98.99285396],[4.5367719,0.03718553,98.993801],[4.53677146,0.03718378,98.99474808],[4.53677103,0.03718203,98.99569521],[4.53677059,0.03718028,98.99664238],[4.53677016,0.03717853,98.99758958],[4.53676973,0.03717678,98.99853682],[4.53676929,0.03717503,98.99948409],[4.53676886,0.03717328,99.00043139],[4.53676843,0.03717153,99.00137871],[4.53676799,0.03716978,99.00232607],[4.53676756,0.03716803,99.00327345],[4.53676712,0.03716628,99.00422084],[4.53676669,0.03716453,99.00516826],[4.53676626,0.03716278,99.00611569],[4.53676582,0.03716103,99.00706314],[4.53676539,0.03715928,99.0080106],[4.53676495,0.03715753,99.00895807],[4.53676452,0.03715578,99.00990555],[4.53676409,0.03715403,99.01085303],[4.53676365,0.03715227,99.01180052],[4.53676322,0.03715052,99.012748],[4.53676279,0.03714877,99.01369549],[4.53676235,0.03714702,99.01464297],[4.53676192,0.03714527,99.01559045],[4.53676148,0.03714352,99.01653792],[4.53676105,0.03714177,99.01748538],[4.53676061,0.03714002,99.01843282],[4.53676018,0.03713827,99.01938025],[4.53675975,0.03713652,99.02032767],[4.53675931,0.03713477,99.02127506],[4.53675888,0.03713302,99.02222243],[4.53675844,0.03713127,99.02316978],[4.53675801,0.03712952,99.02411711],[4.53675757,0.03712777,99.0250644],[4.53675714,0.03712602,99.02601167],[4.53675671,0.03712427,99.0269589],[4.53675627,0.03712252,99.0279061],[4.53675584,0.03712077,99.02885326],[4.5367554,0.03711902,99.02980038],[4.53675497,0.03711727,99.03074746],[4.53675453,0.03711552,99.0316945],[4.5367541,0.03711377,99.03264149],[4.53675366,0.03711202,99.03358843],[4.53675323,0.03711027,99.03453532],[4.53675279,0.03710852,99.03548216],[4.53675236,0.03710677,99.03642894],[4.53675192,0.03710502,99.03737567],[4.53675149,0.03710327,99.03832234],[4.53675105,0.03710151,99.03926894],[4.53675062,0.03709976,99.04021548],[4.53675019,0.03709801,99.04116196],[4.53674975,0.03709626,99.04210837],[4.53674932,0.03709451,99.04305471],[4.53674888,0.03709276,99.04400097],[4.53674844,0.03709101,99.04494716],[4.53674801,0.03708926,99.04589327],[4.53674757,0.03708751,99.04683931],[4.53674714,0.03708576,99.04778526],[4.5367467,0.03708401,99.04873113],[4.53674627,0.03708226,99.04967691],[4.53674583,0.03708051,99.05062261],[4.5367454,0.03707876,99.05156821],[4.53674496,0.03707701,99.05251372],[4.53674453,0.03707526,99.05345914],[4.53674409,0.03707351,99.05440446],[4.53674366,0.03707176,99.05534968],[4.53674322,0.03707001,99.0562948],[4.53674279,0.03706826,99.05723981],[4.53674235,0.03706651,99.05818472],[4.53674191,0.03706476,99.05912952],[4.53674148,0.03706301,99.06007421],[4.53674104,0.03706126,99.06101879],[4.53674061,0.03705951,99.06196325],[4.53674017,0.03705776,99.0629076],[4.53673973,0.03705601,99.06385182],[4.5367393,0.03705426,99.06479593],[4.53673886,0.03705251,99.06573991],[4.53673843,0.03705076,99.06668377],[4.53673799,0.03704901,99.0676275],[4.53673755,0.03704726,99.0685711],[4.53673712,0.03704551,99.06951457],[4.53673668,0.03704376,99.07045791],[4.53673625,0.03704201,99.07140112],[4.53673581,0.03704026,99.07234419],[4.53673537,0.03703851,99.07328713],[4.53673494,0.03703676,99.07422992],[4.5367345,0.03703501,99.07517258],[4.53673406,0.03703326,99.0761151],[4.53673363,0.03703151,99.07705748],[4.53673319,0.03702976,99.07799971],[4.53673275,0.03702801,99.07894179],[4.53673232,0.03702626,99.07988373],[4.53673188,0.03702451,99.08082552],[4.53673144,0.03702277,99.08176715],[4.53673101,0.03702102,99.08270864],[4.53673057,0.03701927,99.08364997],[4.53673013,0.03701752,99.08459115],[4.5367297,0.03701577,99.08553216],[4.53672926,0.03701402,99.08647302],[4.53672882,0.03701227,99.08741372],[4.53672838,0.03701052,99.08835426],[4.53672795,0.03700877,99.08929463],[4.53672751,0.03700702,99.09023484],[4.53672707,0.03700527,99.09117488],[4.53672663,0.03700352,99.09211476],[4.5367262,0.03700177,99.09305446],[4.53672576,0.03700002,99.093994],[4.53672532,0.03699827,99.09493336],[4.53672488,0.03699652,99.09587256],[4.53672445,0.03699477,99.0968116],[4.53672401,0.03699302,99.09775047],[4.53672357,0.03699127,99.09868918],[4.53672313,0.03698952,99.09962772],[4.53672269,0.03698777,99.10056611],[4.53672226,0.03698602,99.10150434],[4.53672182,0.03698427,99.10244241],[4.53672138,0.03698252,99.10338033],[4.53672094,0.03698078,99.10431809],[4.5367205,0.03697903,99.10525569],[4.53672007,0.03697728,99.10619315],[4.53671963,0.03697553,99.10713046],[4.53671919,0.03697378,99.10806761],[4.53671875,0.03697203,99.10900462],[4.53671831,0.03697028,99.10994148],[4.53671787,0.03696853,99.1108782],[4.53671744,0.03696678,99.11181477],[4.536717,0.03696503,99.1127512],[4.53671656,0.03696328,99.11368749],[4.53671612,0.03696153,99.11462364],[4.53671568,0.03695978,99.11555965],[4.53671524,0.03695803,99.11649553],[4.5367148,0.03695628,99.11743126],[4.53671437,0.03695454,99.11836687],[4.53671393,0.03695279,99.11930234],[4.53671349,0.03695104,99.12023768],[4.53671305,0.03694929,99.12117288],[4.53671261,0.03694754,99.12210796],[4.53671217,0.03694579,99.12304291],[4.53671173,0.03694404,99.12397774],[4.53671129,0.03694229,99.12491244],[4.53671085,0.03694054,99.12584701],[4.53671041,0.03693879,99.12678146],[4.53670998,0.03693704,99.12771579],[4.53670954,0.03693529,99.12865001],[4.5367091,0.03693355,99.1295841],[4.53670866,0.0369318,99.13051807],[4.53670822,0.03693005,99.13145193],[4.53670778,0.0369283,99.13238568],[4.53670734,0.03692655,99.13331931],[4.5367069,0.0369248,99.13425283],[4.53670646,0.03692305,99.13518624],[4.53670602,0.0369213,99.13611954],[4.53670558,0.03691955,99.13705273],[4.53670514,0.0369178,99.13798581],[4.5367047,0.03691605,99.13891879],[4.53670426,0.03691431,99.13985167],[4.53670383,0.03691256,99.14078444],[4.53670339,0.03691081,99.14171711],[4.53670295,0.03690906,99.14264968],[4.53670251,0.03690731,99.14358215],[4.53670207,0.03690556,99.14451453],[4.53670163,0.03690381,99.1454468],[4.53670119,0.03690206,99.14637899],[4.53670075,0.03690031,99.14731108],[4.53670031,0.03689856,99.14824308],[4.53669987,0.03689681,99.14917498],[4.53669943,0.03689507,99.1501068],[4.53669899,0.03689332,99.15103853],[4.53669855,0.03689157,99.15197017],[4.53669811,0.03688982,99.15290173],[4.53669767,0.03688807,99.15383321],[4.53669723,0.03688632,99.1547646],[4.53669679,0.03688457,99.15569591],[4.53669635,0.03688282,99.15662713],[4.53669591,0.03688107,99.15755829],[4.53669547,0.03687932,99.15848936],[4.53669503,0.03687758,99.15942036],[4.53669459,0.03687583,99.16035128],[4.53669415,0.03687408,99.16128213],[4.53669371,0.03687233,99.1622129],[4.53669327,0.03687058,99.16314361],[4.53669283,0.03686883,99.16407425],[4.53669239,0.03686708,99.16500482],[4.53669195,0.03686533,99.16593532],[4.53669151,0.03686358,99.16686576],[4.53669107,0.03686183,99.16779613],[4.53669063,0.03686009,99.16872644],[4.53669019,0.03685834,99.16965669],[4.53668975,0.03685659,99.17058688],[4.53668931,0.03685484,99.17151701],[4.53668888,0.03685309,99.17244708],[4.53668844,0.03685134,99.1733771],[4.536688,0.03684959,99.17430707],[4.53668756,0.03684784,99.17523698],[4.53668712,0.03684609,99.17616684],[4.53668668,0.03684434,99.17709665],[4.53668624,0.0368426,99.17802641],[4.5366858,0.03684085,99.17895612],[4.53668536,0.0368391,99.17988579],[4.53668492,0.03683735,99.18081541],[4.53668448,0.0368356,99.18174499],[4.53668404,0.03683385,99.18267453],[4.5366836,0.0368321,99.18360402],[4.53668316,0.03683035,99.18453348],[4.53668272,0.0368286,99.1854629],[4.53668228,0.03682685,99.18639229],[4.53668184,0.03682511,99.18732164],[4.5366814,0.03682336,99.18825096],[4.53668096,0.03682161,99.18918025],[4.53668052,0.03681986,99.19010953],[4.53668008,0.03681811,99.19103879],[4.53667964,0.03681636,99.19196804],[4.5366792,0.03681461,99.19289728],[4.53667876,0.03681286,99.19382652],[4.53667832,0.03681111,99.19475576],[4.53667788,0.03680936,99.19568502],[4.53667744,0.03680762,99.19661428],[4.536677,0.03680587,99.19754356],[4.53667656,0.03680412,99.19847286],[4.53667613,0.03680237,99.19940219],[4.53667569,0.03680062,99.20033155],[4.53667525,0.03679887,99.20126094],[4.53667481,0.03679712,99.20219038],[4.53667437,0.03679537,99.20311986],[4.53667393,0.03679362,99.20404938],[4.53667349,0.03679187,99.20497897],[4.53667305,0.03679012,99.20590861],[4.53667261,0.03678837,99.20683832],[4.53667217,0.03678663,99.20776809],[4.53667173,0.03678488,99.20869794],[4.5366713,0.03678313,99.20962786],[4.53667086,0.03678138,99.21055787],[4.53667042,0.03677963,99.21148797],[4.53666998,0.03677788,99.21241816],[4.53666954,0.03677613,99.21334844],[4.5366691,0.03677438,99.21427883],[4.53666866,0.03677263,99.21520932],[4.53666823,0.03677088,99.21613993],[4.53666779,0.03676913,99.21707065],[4.53666735,0.03676738,99.21800149],[4.53666691,0.03676563,99.21893246],[4.53666647,0.03676388,99.21986356],[4.53666603,0.03676213,99.22079479],[4.5366656,0.03676039,99.22172617],[4.53666516,0.03675864,99.22265769],[4.53666472,0.03675689,99.22358936],[4.53666428,0.03675514,99.22452119],[4.53666385,0.03675339,99.22545318],[4.53666341,0.03675164,99.22638533],[4.53666297,0.03674989,99.22731765],[4.53666253,0.03674814,99.22825015],[4.5366621,0.03674639,99.22918283],[4.53666166,0.03674464,99.23011569],[4.53666122,0.03674289,99.23104874],[4.53666078,0.03674114,99.23198199],[4.53666035,0.03673939,99.23291544],[4.53665991,0.03673764,99.23384909],[4.53665947,0.03673589,99.23478295],[4.53665904,0.03673414,99.23571703],[4.5366586,0.03673239,99.23665131],[4.53665817,0.03673064,99.23758576],[4.53665773,0.03672889,99.23852038],[4.53665729,0.03672714,99.23945513],[4.53665686,0.03672539,99.24039001],[4.53665642,0.03672364,99.24132497],[4.53665598,0.03672189,99.24226002],[4.53665555,0.03672014,99.24319512],[4.53665511,0.03671839,99.24413026],[4.53665468,0.03671664,99.24506541],[4.53665424,0.03671489,99.24600055],[4.53665381,0.03671314,99.24693567],[4.53665337,0.03671139,99.24787073],[4.53665293,0.03670964,99.24880573],[4.5366525,0.03670789,99.24974064],[4.53665206,0.03670614,99.25067543],[4.53665163,0.03670439,99.2516101],[4.53665119,0.03670264,99.25254461],[4.53665076,0.03670089,99.25347894],[4.53665032,0.03669914,99.25441309],[4.53664988,0.03669739,99.25534701],[4.53664945,0.03669564,99.2562807],[4.53664901,0.03669389,99.25721413],[4.53664858,0.03669214,99.25814727],[4.53664814,0.03669039,99.25908012],[4.5366477,0.03668864,99.26001265],[4.53664727,0.03668689,99.26094483],[4.53664683,0.03668514,99.26187664],[4.53664639,0.03668339,99.26280807],[4.53664596,0.03668164,99.26373909],[4.53664552,0.03667989,99.26466968],[4.53664508,0.03667814,99.26559982],[4.53664465,0.03667639,99.26652949],[4.53664421,0.03667464,99.26745867],[4.53664377,0.03667289,99.26838733],[4.53664334,0.03667114,99.26931545],[4.5366429,0.03666939,99.27024301],[4.53664246,0.03666764,99.27116999],[4.53664202,0.03666589,99.27209637],[4.53664158,0.03666414,99.27302213],[4.53664115,0.03666239,99.27394724],[4.53664071,0.03666065,99.27487168],[4.53664027,0.0366589,99.27579543],[4.53663983,0.03665715,99.27671847],[4.53663939,0.0366554,99.27764078],[4.53663895,0.03665365,99.27856233],[4.53663851,0.0366519,99.2794831],[4.53663807,0.03665015,99.28040307],[4.53663763,0.0366484,99.28132222],[4.53663719,0.03664665,99.28224052],[4.53663675,0.0366449,99.28315796],[4.53663631,0.03664315,99.2840745],[4.53663587,0.03664141,99.28499014],[4.53663543,0.03663966,99.28590484],[4.53663499,0.03663791,99.28681858],[4.53663455,0.03663616,99.28773135],[4.5366341,0.03663441,99.28864317],[4.53663366,0.03663266,99.28955404],[4.53663322,0.03663092,99.29046398],[4.53663278,0.03662917,99.291373],[4.53663233,0.03662742,99.29228111],[4.53663189,0.03662567,99.29318832],[4.53663145,0.03662392,99.29409465],[4.536631,0.03662218,99.2950001],[4.53663056,0.03662043,99.2959047],[4.53663011,0.03661868,99.29680845],[4.53662967,0.03661693,99.29771137],[4.53662922,0.03661518,99.29861347],[4.53662878,0.03661344,99.29951475],[4.53662833,0.03661169,99.30041524],[4.53662789,0.03660994,99.30131495],[4.53662744,0.03660819,99.30221388],[4.536627,0.03660645,99.30311206],[4.53662655,0.0366047,99.30400949],[4.5366261,0.03660295,99.30490618],[4.53662566,0.0366012,99.30580215],[4.53662521,0.03659946,99.30669742],[4.53662476,0.03659771,99.30759198],[4.53662432,0.03659596,99.30848586],[4.53662387,0.03659422,99.30937906],[4.53662342,0.03659247,99.3102716],[4.53662297,0.03659072,99.31116348],[4.53662253,0.03658897,99.31205472],[4.53662208,0.03658723,99.31294533],[4.53662163,0.03658548,99.31383531],[4.53662118,0.03658373,99.31472468],[4.53662073,0.03658199,99.31561346],[4.53662029,0.03658024,99.31650165],[4.53661984,0.03657849,99.31738925],[4.53661939,0.03657675,99.3182763],[4.53661894,0.036575,99.31916279],[4.53661849,0.03657325,99.32004873],[4.53661804,0.03657151,99.32093414],[4.53661759,0.03656976,99.32181904],[4.53661714,0.03656801,99.32270342],[4.53661669,0.03656627,99.3235873],[4.53661624,0.03656452,99.3244707],[4.53661579,0.03656277,99.32535362],[4.53661534,0.03656103,99.32623608],[4.5366149,0.03655928,99.32711809],[4.53661445,0.03655753,99.32799965],[4.536614,0.03655579,99.32888079],[4.53661355,0.03655404,99.3297615],[4.5366131,0.0365523,99.33064182],[4.53661265,0.03655055,99.33152173],[4.5366122,0.0365488,99.33240127],[4.53661175,0.03654706,99.33328043],[4.5366113,0.03654531,99.33415924],[4.53661084,0.03654356,99.3350377],[4.53661039,0.03654182,99.33591582],[4.53660994,0.03654007,99.33679362],[4.53660949,0.03653832,99.3376711],[4.53660904,0.03653658,99.33854829],[4.53660859,0.03653483,99.33942519],[4.53660814,0.03653309,99.34030182],[4.53660769,0.03653134,99.34117818],[4.53660724,0.03652959,99.34205429],[4.53660679,0.03652785,99.34293016],[4.53660634,0.0365261,99.3438058],[4.53660589,0.03652435,99.34468123],[4.53660544,0.03652261,99.34555645],[4.53660499,0.03652086,99.34643149],[4.53660454,0.03651911,99.34730635],[4.53660409,0.03651737,99.34818104],[4.53660364,0.03651562,99.34905558],[4.53660319,0.03651388,99.34992998],[4.53660274,0.03651213,99.35080425],[4.53660229,0.03651038,99.35167841],[4.53660184,0.03650864,99.35255246],[4.53660139,0.03650689,99.35342642],[4.53660094,0.03650514,99.35430031],[4.53660049,0.0365034,99.35517413],[4.53660004,0.03650165,99.3560479],[4.53659959,0.0364999,99.35692164],[4.53659914,0.03649816,99.35779534],[4.53659869,0.03649641,99.35866903],[4.53659824,0.03649466,99.35954273],[4.5365978,0.03649292,99.36041643],[4.53659735,0.03649117,99.36129016],[4.5365969,0.03648942,99.36216393],[4.53659645,0.03648768,99.36303775],[4.536596,0.03648593,99.36391164],[4.53659555,0.03648418,99.36478561],[4.5365951,0.03648244,99.36565967],[4.53659465,0.03648069,99.36653383],[4.53659421,0.03647894,99.36740811],[4.53659376,0.0364772,99.36828252],[4.53659331,0.03647545,99.36915708],[4.53659312,0.03647471,99.36952703],[4.53659681,0.03647376,99.38096137],[4.53659699,0.0364745,99.38057892],[4.53659743,0.03647625,99.37967457],[4.53659788,0.036478,99.37877006],[4.53659832,0.03647975,99.3778654],[4.53659876,0.0364815,99.37696059],[4.5365992,0.03648324,99.37605563],[4.53659964,0.03648499,99.37515054],[4.53660008,0.03648674,99.37424533],[4.53660052,0.03648849,99.37334],[4.53660096,0.03649024,99.37243456],[4.5366014,0.03649199,99.37152902],[4.53660184,0.03649374,99.37062338],[4.53660228,0.03649549,99.36971765],[4.53660273,0.03649723,99.36881184],[4.53660317,0.03649898,99.36790596],[4.53660361,0.03650073,99.36700001],[4.53660405,0.03650248,99.366094],[4.53660449,0.03650423,99.36518795],[4.53660493,0.03650598,99.36428184],[4.53660538,0.03650773,99.36337571],[4.53660582,0.03650947,99.36246954],[4.53660626,0.03651122,99.36156335],[4.5366067,0.03651297,99.36065714],[4.53660714,0.03651472,99.35975093],[4.53660758,0.03651647,99.35884472],[4.53660803,0.03651822,99.35793851],[4.53660847,0.03651997,99.35703232],[4.53660891,0.03652171,99.35612615],[4.53660935,0.03652346,99.35522001],[4.5366098,0.03652521,99.35431391],[4.53661024,0.03652696,99.35340785],[4.53661068,0.03652871,99.35250184],[4.53661112,0.03653046,99.35159588],[4.53661157,0.0365322,99.35068999],[4.53661201,0.03653395,99.34978418],[4.53661245,0.0365357,99.34887844],[4.53661289,0.03653745,99.34797279],[4.53661334,0.0365392,99.34706723],[4.53661378,0.03654095,99.34616178],[4.53661422,0.03654269,99.34525643],[4.53661467,0.03654444,99.34435119],[4.53661511,0.03654619,99.34344608],[4.53661556,0.03654794,99.34254109],[4.536616,0.03654969,99.34163625],[4.53661644,0.03655143,99.34073154],[4.53661689,0.03655318,99.33982699],[4.53661733,0.03655493,99.33892259],[4.53661778,0.03655668,99.33801836],[4.53661822,0.03655843,99.3371143],[4.53661866,0.03656017,99.33621042],[4.53661911,0.03656192,99.33530672],[4.53661955,0.03656367,99.33440322],[4.53662,0.03656542,99.33349991],[4.53662044,0.03656717,99.33259681],[4.53662089,0.03656891,99.33169393],[4.53662133,0.03657066,99.33079127],[4.53662178,0.03657241,99.32988883],[4.53662222,0.03657416,99.32898663],[4.53662267,0.0365759,99.32808467],[4.53662312,0.03657765,99.32718296],[4.53662356,0.0365794,99.3262815],[4.53662401,0.03658115,99.32538031],[4.53662445,0.03658289,99.32447939],[4.5366249,0.03658464,99.32357874],[4.53662535,0.03658639,99.32267838],[4.53662579,0.03658814,99.32177831],[4.53662624,0.03658988,99.32087854],[4.53662669,0.03659163,99.31997907],[4.53662713,0.03659338,99.31907992],[4.53662758,0.03659512,99.31818108],[4.53662803,0.03659687,99.31728257],[4.53662848,0.03659862,99.31638439],[4.53662892,0.03660037,99.31548653],[4.53662937,0.03660211,99.31458896],[4.53662982,0.03660386,99.31369165],[4.53663027,0.03660561,99.31279457],[4.53663072,0.03660735,99.31189768],[4.53663116,0.0366091,99.31100096],[4.53663161,0.03661085,99.31010436],[4.53663206,0.03661259,99.30920787],[4.53663251,0.03661434,99.30831145],[4.53663296,0.03661609,99.30741506],[4.53663341,0.03661783,99.30651867],[4.53663385,0.03661958,99.30562226],[4.5366343,0.03662133,99.30472579],[4.53663475,0.03662307,99.30382924],[4.5366352,0.03662482,99.30293256],[4.53663565,0.03662657,99.30203572],[4.5366361,0.03662832,99.30113871],[4.53663655,0.03663006,99.30024148],[4.53663699,0.03663181,99.299344],[4.53663744,0.03663356,99.29844625],[4.53663789,0.0366353,99.29754819],[4.53663834,0.03663705,99.29664979],[4.53663879,0.0366388,99.29575102],[4.53663924,0.03664054,99.29485188],[4.53663968,0.03664229,99.29395237],[4.53664013,0.03664404,99.29305249],[4.53664058,0.03664578,99.29215225],[4.53664103,0.03664753,99.29125165],[4.53664148,0.03664928,99.29035069],[4.53664192,0.03665103,99.28944939],[4.53664237,0.03665277,99.28854774],[4.53664282,0.03665452,99.28764574],[4.53664327,0.03665627,99.28674341],[4.53664371,0.03665801,99.28584074],[4.53664416,0.03665976,99.28493775],[4.53664461,0.03666151,99.28403442],[4.53664505,0.03666326,99.28313078],[4.5366455,0.036665,99.28222682],[4.53664595,0.03666675,99.28132254],[4.5366464,0.0366685,99.28041795],[4.53664684,0.03667024,99.27951305],[4.53664729,0.03667199,99.27860786],[4.53664774,0.03667374,99.27770236],[4.53664818,0.03667549,99.27679657],[4.53664863,0.03667723,99.27589049],[4.53664907,0.03667898,99.27498412],[4.53664952,0.03668073,99.27407747],[4.53664997,0.03668248,99.27317054],[4.53665041,0.03668422,99.27226334],[4.53665086,0.03668597,99.27135586],[4.53665131,0.03668772,99.27044812],[4.53665175,0.03668947,99.26954012],[4.5366522,0.03669121,99.26863185],[4.53665264,0.03669296,99.26772333],[4.53665309,0.03669471,99.26681456],[4.53665354,0.03669646,99.26590554],[4.53665398,0.0366982,99.26499627],[4.53665443,0.03669995,99.26408676],[4.53665487,0.0367017,99.26317702],[4.53665532,0.03670345,99.26226705],[4.53665576,0.03670519,99.26135684],[4.53665621,0.03670694,99.26044642],[4.53665666,0.03670869,99.25953577],[4.5366571,0.03671044,99.2586249],[4.53665755,0.03671218,99.25771382],[4.53665799,0.03671393,99.25680253],[4.53665844,0.03671568,99.25589103],[4.53665888,0.03671743,99.25497933],[4.53665933,0.03671917,99.25406743],[4.53665977,0.03672092,99.25315534],[4.53666022,0.03672267,99.25224306],[4.53666066,0.03672442,99.25133058],[4.53666111,0.03672616,99.25041793],[4.53666155,0.03672791,99.24950509],[4.536662,0.03672966,99.24859208],[4.53666244,0.03673141,99.2476789],[4.53666289,0.03673316,99.24676555],[4.53666333,0.0367349,99.24585203],[4.53666378,0.03673665,99.24493835],[4.53666422,0.0367384,99.24402447],[4.53666467,0.03674015,99.24311039],[4.53666511,0.03674189,99.24219607],[4.53666556,0.03674364,99.24128149],[4.536666,0.03674539,99.24036664],[4.53666645,0.03674714,99.2394515],[4.53666689,0.03674889,99.23853603],[4.53666734,0.03675063,99.23762022],[4.53666778,0.03675238,99.23670405],[4.53666822,0.03675413,99.23578749],[4.53666867,0.03675588,99.23487052],[4.53666911,0.03675763,99.23395313],[4.53666956,0.03675937,99.23303528],[4.53667,0.03676112,99.23211697],[4.53667044,0.03676287,99.23119816],[4.53667089,0.03676462,99.23027884],[4.53667133,0.03676637,99.22935898],[4.53667177,0.03676811,99.22843856],[4.53667222,0.03676986,99.22751756],[4.53667266,0.03677161,99.22659596],[4.5366731,0.03677336,99.22567374],[4.53667354,0.03677511,99.22475087],[4.53667398,0.03677686,99.22382734],[4.53667443,0.0367786,99.22290312],[4.53667487,0.03678035,99.22197819],[4.53667531,0.0367821,99.22105253],[4.53667575,0.03678385,99.22012613],[4.53667619,0.0367856,99.21919894],[4.53667663,0.03678735,99.21827097],[4.53667707,0.0367891,99.21734218],[4.53667751,0.03679085,99.21641255],[4.53667795,0.0367926,99.21548206],[4.53667839,0.03679434,99.2145507],[4.53667883,0.03679609,99.21361843],[4.53667927,0.03679784,99.21268524],[4.53667971,0.03679959,99.21175111],[4.53668015,0.03680134,99.21081602],[4.53668058,0.03680309,99.20987998],[4.53668102,0.03680484,99.20894302],[4.53668146,0.03680659,99.20800516],[4.5366819,0.03680834,99.20706642],[4.53668233,0.03681009,99.20612683],[4.53668277,0.03681184,99.20518639],[4.5366832,0.03681359,99.20424513],[4.53668364,0.03681534,99.20330308],[4.53668408,0.03681709,99.20236025],[4.53668451,0.03681884,99.20141667],[4.53668495,0.03682059,99.20047236],[4.53668538,0.03682234,99.19952733],[4.53668582,0.03682409,99.19858161],[4.53668625,0.03682584,99.19763522],[4.53668668,0.03682759,99.19668817],[4.53668712,0.03682934,99.19574051],[4.53668755,0.03683109,99.19479223],[4.53668799,0.03683284,99.19384338],[4.53668842,0.03683459,99.19289397],[4.53668885,0.03683635,99.19194403],[4.53668929,0.0368381,99.19099358],[4.53668972,0.03683985,99.19004265],[4.53669015,0.0368416,99.18909126],[4.53669058,0.03684335,99.18813943],[4.53669102,0.0368451,99.18718719],[4.53669145,0.03684685,99.18623456],[4.53669188,0.0368486,99.18528156],[4.53669231,0.03685035,99.18432822],[4.53669274,0.0368521,99.18337456],[4.53669318,0.03685385,99.18242061],[4.53669361,0.03685561,99.18146639],[4.53669404,0.03685736,99.18051192],[4.53669447,0.03685911,99.17955723],[4.5366949,0.03686086,99.17860234],[4.53669533,0.03686261,99.17764727],[4.53669577,0.03686436,99.17669205],[4.5366962,0.03686611,99.1757367],[4.53669663,0.03686786,99.17478124],[4.53669706,0.03686962,99.1738257],[4.53669749,0.03687137,99.1728701],[4.53669792,0.03687312,99.17191447],[4.53669836,0.03687487,99.17095883],[4.53669879,0.03687662,99.1700032],[4.53669922,0.03687837,99.1690476],[4.53669965,0.03688012,99.16809206],[4.53670008,0.03688187,99.16713661],[4.53670051,0.03688362,99.16618126],[4.53670094,0.03688538,99.16522604],[4.53670138,0.03688713,99.16427097],[4.53670181,0.03688888,99.16331608],[4.53670224,0.03689063,99.16236139],[4.53670267,0.03689238,99.16140692],[4.5367031,0.03689413,99.1604527],[4.53670354,0.03689588,99.15949875],[4.53670397,0.03689763,99.1585451],[4.5367044,0.03689938,99.15759175],[4.53670483,0.03690113,99.15663875],[4.53670527,0.03690289,99.15568608],[4.5367057,0.03690464,99.15473375],[4.53670613,0.03690639,99.15378174],[4.53670656,0.03690814,99.15283005],[4.536707,0.03690989,99.15187869],[4.53670743,0.03691164,99.15092764],[4.53670786,0.03691339,99.14997691],[4.5367083,0.03691514,99.14902648],[4.53670873,0.03691689,99.14807635],[4.53670916,0.03691864,99.14712653],[4.5367096,0.03692039,99.146177],[4.53671003,0.03692214,99.14522776],[4.53671047,0.03692389,99.14427881],[4.5367109,0.03692564,99.14333015],[4.53671133,0.03692739,99.14238176],[4.53671177,0.03692915,99.14143365],[4.5367122,0.0369309,99.14048581],[4.53671264,0.03693265,99.13953824],[4.53671307,0.0369344,99.13859094],[4.53671351,0.03693615,99.13764389],[4.53671394,0.0369379,99.1366971],[4.53671438,0.03693965,99.13575056],[4.53671481,0.0369414,99.13480427],[4.53671525,0.03694315,99.13385822],[4.53671568,0.0369449,99.13291241],[4.53671612,0.03694665,99.13196684],[4.53671655,0.0369484,99.1310215],[4.53671699,0.03695015,99.13007639],[4.53671742,0.0369519,99.1291315],[4.53671786,0.03695365,99.12818683],[4.53671829,0.0369554,99.12724238],[4.53671873,0.03695715,99.12629814],[4.53671917,0.0369589,99.12535411],[4.5367196,0.03696065,99.12441029],[4.53672004,0.0369624,99.12346666],[4.53672047,0.03696415,99.12252324],[4.53672091,0.0369659,99.12158],[4.53672135,0.03696765,99.12063696],[4.53672178,0.0369694,99.1196941],[4.53672222,0.03697115,99.11875142],[4.53672265,0.0369729,99.11780892],[4.53672309,0.03697465,99.11686659],[4.53672353,0.0369764,99.11592443],[4.53672396,0.03697815,99.11498244],[4.5367244,0.0369799,99.11404061],[4.53672484,0.03698165,99.11309893],[4.53672527,0.0369834,99.11215741],[4.53672571,0.03698515,99.11121604],[4.53672615,0.0369869,99.11027482],[4.53672658,0.03698865,99.10933374],[4.53672702,0.0369904,99.1083928],[4.53672746,0.03699215,99.10745199],[4.5367279,0.0369939,99.10651132],[4.53672833,0.03699565,99.10557077],[4.53672877,0.0369974,99.10463034],[4.53672921,0.03699915,99.10369004],[4.53672964,0.0370009,99.10274985],[4.53673008,0.03700264,99.10180977],[4.53673052,0.03700439,99.1008698],[4.53673096,0.03700614,99.09992994],[4.53673139,0.03700789,99.09899018],[4.53673183,0.03700964,99.09805053],[4.53673227,0.03701139,99.09711099],[4.53673271,0.03701314,99.09617155],[4.53673314,0.03701489,99.09523221],[4.53673358,0.03701664,99.09429297],[4.53673402,0.03701839,99.09335384],[4.53673446,0.03702014,99.09241481],[4.53673489,0.03702189,99.09147587],[4.53673533,0.03702364,99.09053704],[4.53673577,0.03702539,99.0895983],[4.53673621,0.03702714,99.08865966],[4.53673664,0.03702889,99.08772112],[4.53673708,0.03703064,99.08678267],[4.53673752,0.03703239,99.08584432],[4.53673796,0.03703414,99.08490605],[4.53673839,0.03703589,99.08396789],[4.53673883,0.03703764,99.08302981],[4.53673927,0.03703939,99.08209182],[4.53673971,0.03704114,99.08115393],[4.53674015,0.03704289,99.08021612],[4.53674058,0.03704464,99.0792784],[4.53674102,0.03704638,99.07834076],[4.53674146,0.03704813,99.07740321],[4.5367419,0.03704988,99.07646575],[4.53674234,0.03705163,99.07552837],[4.53674277,0.03705338,99.07459108],[4.53674321,0.03705513,99.07365386],[4.53674365,0.03705688,99.07271673],[4.53674409,0.03705863,99.07177968],[4.53674453,0.03706038,99.07084271],[4.53674496,0.03706213,99.06990582],[4.5367454,0.03706388,99.06896901],[4.53674584,0.03706563,99.06803228],[4.53674628,0.03706738,99.06709564],[4.53674672,0.03706913,99.06615907],[4.53674716,0.03707088,99.06522258],[4.53674759,0.03707263,99.06428617],[4.53674803,0.03707438,99.06334984],[4.53674847,0.03707613,99.06241358],[4.53674891,0.03707787,99.06147741],[4.53674935,0.03707962,99.06054131],[4.53674979,0.03708137,99.05960529],[4.53675022,0.03708312,99.05866935],[4.53675066,0.03708487,99.05773348],[4.5367511,0.03708662,99.05679769],[4.53675154,0.03708837,99.05586198],[4.53675198,0.03709012,99.05492635],[4.53675242,0.03709187,99.05399079],[4.53675285,0.03709362,99.0530553],[4.53675329,0.03709537,99.05211989],[4.53675373,0.03709712,99.05118456],[4.53675417,0.03709887,99.0502493],[4.53675461,0.03710062,99.04931411],[4.53675505,0.03710237,99.048379],[4.53675548,0.03710412,99.04744396],[4.53675592,0.03710587,99.046509],[4.53675636,0.03710761,99.0455741],[4.5367568,0.03710936,99.04463929],[4.53675724,0.03711111,99.04370454],[4.53675768,0.03711286,99.04276987],[4.53675811,0.03711461,99.04183526],[4.53675855,0.03711636,99.04090073],[4.53675899,0.03711811,99.03996627],[4.53675943,0.03711986,99.03903189],[4.53675987,0.03712161,99.03809757],[4.53676031,0.03712336,99.03716332],[4.53676075,0.03712511,99.03622915],[4.53676118,0.03712686,99.03529504],[4.53676162,0.03712861,99.034361],[4.53676206,0.03713036,99.03342703],[4.5367625,0.03713211,99.03249314],[4.53676294,0.03713386,99.03155931],[4.53676338,0.0371356,99.03062554],[4.53676381,0.03713735,99.02969185],[4.53676425,0.0371391,99.02875822],[4.53676469,0.03714085,99.02782467],[4.53676513,0.0371426,99.02689117],[4.53676557,0.03714435,99.02595775],[4.53676601,0.0371461,99.02502439],[4.53676645,0.03714785,99.0240911],[4.53676688,0.0371496,99.02315787],[4.53676732,0.03715135,99.02222471],[4.53676776,0.0371531,99.02129162],[4.5367682,0.03715485,99.02035859],[4.53676864,0.0371566,99.01942562],[4.53676908,0.03715835,99.01849272],[4.53676951,0.0371601,99.01755988],[4.53676995,0.03716185,99.01662711],[4.53677039,0.03716359,99.01569439],[4.53677083,0.03716534,99.01476173],[4.53677127,0.03716709,99.01382912],[4.53677171,0.03716884,99.01289654],[4.53677214,0.03717059,99.01196401],[4.53677258,0.03717234,99.01103151],[4.53677302,0.03717409,99.01009903],[4.53677346,0.03717584,99.00916658],[4.5367739,0.03717759,99.00823414],[4.53677433,0.03717934,99.00730171],[4.53677477,0.03718109,99.00636929],[4.53677521,0.03718284,99.00543686],[4.53677565,0.03718459,99.00450444],[4.53677609,0.03718634,99.003572],[4.53677652,0.03718809,99.00263955],[4.53677696,0.03718984,99.00170707],[4.5367774,0.03719159,99.00077457],[4.53677784,0.03719334,98.99984204],[4.53677828,0.03719509,98.99890947],[4.53677871,0.03719684,98.99797685],[4.53677915,0.03719858,98.99704419],[4.53677959,0.03720033,98.99611148],[4.53678003,0.03720208,98.99517871],[4.53678046,0.03720383,98.99424587],[4.5367809,0.03720558,98.99331296],[4.53678134,0.03720733,98.99237998],[4.53678177,0.03720908,98.99144692],[4.53678221,0.03721083,98.99051377],[4.53678265,0.03721258,98.98958053],[4.53678309,0.03721433,98.9886472],[4.53678352,0.03721608,98.98771376],[4.53678396,0.03721783,98.98678021],[4.5367844,0.03721958,98.98584655],[4.53678483,0.03722133,98.98491278],[4.53678527,0.03722308,98.98397888],[4.5367857,0.03722483,98.98304484],[4.53678614,0.03722658,98.98211068],[4.53678658,0.03722833,98.98117637],[4.53678701,0.03723008,98.98024192],[4.53678745,0.03723183,98.97930732],[4.53678789,0.03723358,98.97837255],[4.53678832,0.03723533,98.97743763],[4.53678876,0.03723708,98.97650254],[4.53678919,0.03723883,98.97556727],[4.53678963,0.03724058,98.97463183],[4.53679006,0.03724233,98.9736962],[4.5367905,0.03724408,98.97276038],[4.53679093,0.03724583,98.97182436],[4.53679137,0.03724758,98.97088815],[4.5367918,0.03724933,98.96995172],[4.53679224,0.03725108,98.96901509],[4.53679267,0.03725283,98.96807823],[4.53679311,0.03725458,98.96714115],[4.53679354,0.03725633,98.96620384],[4.53679398,0.03725808,98.9652663],[4.53679441,0.03725983,98.96432851],[4.53679484,0.03726159,98.96339048],[4.53679528,0.03726334,98.9624522],[4.53679571,0.03726509,98.96151365],[4.53679614,0.03726684,98.96057485],[4.53679658,0.03726859,98.95963577],[4.53679701,0.03727034,98.95869642],[4.53679744,0.03727209,98.95775679],[4.53679788,0.03727384,98.95681689],[4.53679831,0.03727559,98.95587672],[4.53679874,0.03727734,98.9549363],[4.53679917,0.03727909,98.95399565],[4.53679961,0.03728084,98.95305478],[4.53680004,0.03728259,98.9521137],[4.53680047,0.03728435,98.95117243],[4.5368009,0.0372861,98.95023099],[4.53680133,0.03728785,98.94928938],[4.53680177,0.0372896,98.94834762],[4.5368022,0.03729135,98.94740572],[4.53680263,0.0372931,98.9464637],[4.53680306,0.03729485,98.94552158],[4.53680349,0.0372966,98.94457936],[4.53680392,0.03729835,98.94363707],[4.53680435,0.03730011,98.94269471],[4.53680478,0.03730186,98.9417523],[4.53680522,0.03730361,98.94080986],[4.53680565,0.03730536,98.93986739],[4.53680608,0.03730711,98.93892492],[4.53680651,0.03730886,98.93798246],[4.53680694,0.03731061,98.93704001],[4.53680737,0.03731237,98.93609761],[4.5368078,0.03731412,98.93515525],[4.53680823,0.03731587,98.93421296],[4.53680866,0.03731762,98.93327074],[4.53680909,0.03731937,98.93232862],[4.53680952,0.03732112,98.93138661],[4.53680995,0.03732287,98.93044472],[4.53681038,0.03732462,98.92950297],[4.53681081,0.03732638,98.92856137],[4.53681124,0.03732813,98.92761994],[4.53681167,0.03732988,98.92667868],[4.5368121,0.03733163,98.92573762],[4.53681253,0.03733338,98.92479677],[4.53681296,0.03733513,98.92385614],[4.53681339,0.03733688,98.92291576],[4.53681382,0.03733864,98.92197562],[4.53681426,0.03734039,98.92103575],[4.53681469,0.03734214,98.92009617],[4.53681512,0.03734389,98.91915688],[4.53681555,0.03734564,98.9182179],[4.53681598,0.03734739,98.91727925],[4.53681641,0.03734914,98.91634094],[4.53681684,0.0373509,98.91540299],[4.53681727,0.03735265,98.91446541],[4.5368177,0.0373544,98.91352821],[4.53681813,0.03735615,98.91259141],[4.53681856,0.0373579,98.91165503],[4.53681899,0.03735965,98.91071907],[4.53681942,0.0373614,98.90978355],[4.53681985,0.03736315,98.90884848],[4.53682029,0.03736491,98.90791385],[4.53682072,0.03736666,98.90697967],[4.53682115,0.03736841,98.90604595],[4.53682158,0.03737016,98.90511268],[4.53682201,0.03737191,98.90417989],[4.53682244,0.03737366,98.90324757],[4.53682287,0.03737541,98.90231572],[4.53682331,0.03737716,98.90138435],[4.53682374,0.03737892,98.90045347],[4.53682417,0.03738067,98.89952308],[4.5368246,0.03738242,98.89859318],[4.53682503,0.03738417,98.89766378],[4.53682547,0.03738592,98.89673489],[4.5368259,0.03738767,98.89580651],[4.53682633,0.03738942,98.89487865],[4.53682676,0.03739117,98.8939513],[4.53682719,0.03739292,98.89302448],[4.53682763,0.03739467,98.89209819],[4.53682806,0.03739642,98.89117244],[4.53682849,0.03739818,98.89024722],[4.53682893,0.03739993,98.88932255],[4.53682936,0.03740168,98.88839843],[4.53682979,0.03740343,98.88747486],[4.53683022,0.03740518,98.88655185],[4.53683066,0.03740693,98.88562941],[4.53683109,0.03740868,98.88470754],[4.53683152,0.03741043,98.88378622],[4.53683196,0.03741218,98.88286545],[4.53683239,0.03741393,98.88194519],[4.53683283,0.03741568,98.88102542],[4.53683326,0.03741743,98.88010613],[4.53683369,0.03741918,98.87918728],[4.53683413,0.03742093,98.87826886],[4.53683456,0.03742268,98.87735084],[4.53683499,0.03742443,98.8764332],[4.53683543,0.03742618,98.87551592],[4.53683586,0.03742793,98.87459898],[4.5368363,0.03742968,98.87368234],[4.53683673,0.03743143,98.872766],[4.53683717,0.03743318,98.87184992],[4.5368376,0.03743493,98.87093409],[4.53683803,0.03743668,98.87001848],[4.53683847,0.03743844,98.86910306],[4.5368389,0.03744019,98.86818782],[4.53683934,0.03744194,98.86727273],[4.53683977,0.03744369,98.86635777],[4.5368402,0.03744544,98.86544293],[4.53684064,0.03744719,98.86452818],[4.53684107,0.03744894,98.86361353],[4.5368415,0.03745069,98.86269897],[4.53684194,0.03745244,98.8617845],[4.53684237,0.03745419,98.8608701],[4.5368428,0.03745594,98.85995577],[4.53684324,0.03745769,98.85904151],[4.53684367,0.03745944,98.8581273],[4.5368441,0.03746119,98.85721314],[4.53684454,0.03746294,98.85629903],[4.53684497,0.03746469,98.85538495],[4.5368454,0.03746645,98.8544709],[4.53684584,0.0374682,98.85355688],[4.53684627,0.03746995,98.85264288],[4.5368467,0.0374717,98.85172888],[4.53684713,0.03747345,98.85081489],[4.53684757,0.0374752,98.84990089],[4.536848,0.03747695,98.84898689],[4.53684843,0.0374787,98.84807287],[4.53684886,0.03748045,98.84715882],[4.5368493,0.0374822,98.84624475],[4.53684973,0.03748395,98.84533063],[4.53685016,0.03748571,98.84441648],[4.53685059,0.03748746,98.84350227],[4.53685102,0.03748921,98.84258801],[4.53685145,0.03749096,98.84167368],[4.53685188,0.03749271,98.84075928],[4.53685232,0.03749446,98.83984481],[4.53685275,0.03749621,98.83893024],[4.53685318,0.03749796,98.83801559],[4.53685361,0.03749972,98.83710084],[4.53685404,0.03750147,98.83618599],[4.53685447,0.03750322,98.83527102],[4.5368549,0.03750497,98.83435593],[4.53685533,0.03750672,98.83344072],[4.53685576,0.03750847,98.83252537],[4.53685619,0.03751022,98.83160989],[4.53685662,0.03751198,98.83069426],[4.53685705,0.03751373,98.82977847],[4.53685748,0.03751548,98.82886253],[4.53685791,0.03751723,98.82794642],[4.53685834,0.03751898,98.82703013],[4.53685877,0.03752073,98.82611366],[4.53685919,0.03752249,98.82519701],[4.53685962,0.03752424,98.82428015],[4.53686005,0.03752599,98.8233631],[4.53686048,0.03752774,98.82244584],[4.53686091,0.03752949,98.82152836],[4.53686133,0.03753125,98.82061065],[4.53686176,0.037533,98.81969272],[4.53686219,0.03753475,98.81877455],[4.53686262,0.0375365,98.81785614],[4.53686304,0.03753825,98.8169375],[4.53686347,0.03754001,98.81601866],[4.5368639,0.03754176,98.81509963],[4.53686432,0.03754351,98.81418043],[4.53686475,0.03754526,98.81326108],[4.53686518,0.03754702,98.8123416],[4.5368656,0.03754877,98.811422],[4.53686603,0.03755052,98.81050232],[4.53686645,0.03755227,98.80958256],[4.53686688,0.03755403,98.80866274],[4.53686731,0.03755578,98.80774289],[4.53686773,0.03755753,98.80682303],[4.53686816,0.03755928,98.80590316],[4.53686858,0.03756104,98.80498332],[4.53686901,0.03756279,98.80406352],[4.53686943,0.03756454,98.80314378],[4.53686986,0.0375663,98.80222412],[4.53687028,0.03756805,98.80130456],[4.53687071,0.0375698,98.80038512],[4.53687113,0.03757155,98.79946581],[4.53687155,0.03757331,98.79854666],[4.53687198,0.03757506,98.79762769],[4.5368724,0.03757681,98.79670891],[4.53687283,0.03757857,98.79579035],[4.53687325,0.03758032,98.79487202],[4.53687368,0.03758207,98.79395395],[4.5368741,0.03758382,98.79303615],[4.53687453,0.03758558,98.79211864],[4.53687495,0.03758733,98.79120145],[4.53687537,0.03758908,98.79028459],[4.5368758,0.03759084,98.78936806],[4.53687622,0.03759259,98.78845189],[4.53687665,0.03759434,98.78753606],[4.53687707,0.03759609,98.78662059],[4.5368775,0.03759785,98.78570548],[4.53687792,0.0375996,98.78479075],[4.53687834,0.03760135,98.78387638],[4.53687877,0.03760311,98.78296239],[4.53687919,0.03760486,98.78204879],[4.53687962,0.03760661,98.78113558],[4.53688004,0.03760836,98.78022277],[4.53688047,0.03761012,98.77931035],[4.53688089,0.03761187,98.77839834],[4.53688131,0.03761362,98.77748675],[4.53688174,0.03761538,98.77657557],[4.53688216,0.03761713,98.77566482],[4.53688259,0.03761888,98.77475449],[4.53688301,0.03762063,98.7738446],[4.53688344,0.03762239,98.77293515],[4.53688386,0.03762414,98.77202615],[4.53688429,0.03762589,98.77111759],[4.53688471,0.03762765,98.7702095],[4.53688513,0.0376294,98.76930187],[4.53688556,0.03763115,98.7683947],[4.53688598,0.0376329,98.76748801],[4.53688641,0.03763466,98.7665818],[4.53688683,0.03763641,98.76567607],[4.53688726,0.03763816,98.76477083],[4.53688768,0.03763992,98.76386609],[4.53688811,0.03764167,98.76296186],[4.53688853,0.03764342,98.76205812],[4.53688896,0.03764517,98.76115491],[4.53688938,0.03764693,98.76025221],[4.53688981,0.03764868,98.75935004],[4.53689023,0.03765043,98.75844839],[4.53689066,0.03765219,98.75754729],[4.53689108,0.03765394,98.75664672],[4.53689151,0.03765569,98.75574671],[4.53689193,0.03765744,98.75484724],[4.53689236,0.0376592,98.75394834],[4.53689278,0.03766095,98.75305],[4.53689321,0.0376627,98.75215223],[4.53689363,0.03766445,98.75125503],[4.53689406,0.03766621,98.75035842],[4.53689448,0.03766796,98.74946239],[4.53689491,0.03766971,98.74856696],[4.53689533,0.03767146,98.74767213],[4.53689576,0.03767322,98.7467779],[4.53689619,0.03767497,98.74588428],[4.53689661,0.03767672,98.74499128],[4.53689704,0.03767847,98.7440989],[4.53689746,0.03768023,98.74320715],[4.53689789,0.03768198,98.74231603],[4.53689832,0.03768373,98.74142555],[4.53689874,0.03768548,98.74053572],[4.53689917,0.03768724,98.73964653],[4.5368996,0.03768899,98.73875801],[4.53690002,0.03769074,98.73787014],[4.53690045,0.03769249,98.73698295],[4.53690087,0.03769425,98.73609643],[4.5369013,0.037696,98.73521058],[4.53690173,0.03769775,98.73432543],[4.53690215,0.0376995,98.73344096],[4.53690258,0.03770125,98.73255719],[4.53690301,0.03770301,98.73167413],[4.53690344,0.03770476,98.73079177],[4.53690386,0.03770651,98.72991013],[4.53690429,0.03770826,98.72902921],[4.53690472,0.03771002,98.72814902],[4.53690515,0.03771177,98.72726956],[4.53690557,0.03771352,98.72639083],[4.536906,0.03771527,98.72551285],[4.53690643,0.03771702,98.72463562],[4.53690686,0.03771878,98.72375915],[4.53690729,0.03772053,98.72288343],[4.53690771,0.03772228,98.72200848],[4.53690814,0.03772403,98.72113431],[4.53690857,0.03772578,98.72026092],[4.536909,0.03772753,98.71938831],[4.53690943,0.03772929,98.71851649],[4.53690986,0.03773104,98.71764546],[4.53691028,0.03773279,98.71677524],[4.53691071,0.03773454,98.71590582],[4.53691114,0.03773629,98.71503717],[4.53691157,0.03773805,98.71416929],[4.536912,0.0377398,98.71330215],[4.53691243,0.03774155,98.71243574],[4.53691286,0.0377433,98.71157005],[4.53691329,0.03774505,98.71070505],[4.53691372,0.0377468,98.70984073],[4.53691415,0.03774855,98.70897707],[4.53691458,0.03775031,98.70811406],[4.53691501,0.03775206,98.70725169],[4.53691544,0.03775381,98.70638997],[4.53691587,0.03775556,98.70552888],[4.5369163,0.03775731,98.70466841],[4.53691673,0.03775906,98.70380857],[4.53691716,0.03776082,98.70294934],[4.53691759,0.03776257,98.70209072],[4.53691802,0.03776432,98.70123269],[4.53691845,0.03776607,98.70037527],[4.53691888,0.03776782,98.69951843],[4.53691931,0.03776957,98.69866217],[4.53691974,0.03777132,98.69780649],[4.53692017,0.03777307,98.69695137],[4.5369206,0.03777483,98.69609682],[4.53692103,0.03777658,98.69524283],[4.53692146,0.03777833,98.69438938],[4.53692189,0.03778008,98.69353648],[4.53692232,0.03778183,98.69268412],[4.53692275,0.03778358,98.69183228],[4.53692319,0.03778533,98.69098097],[4.53692362,0.03778709,98.69013018],[4.53692405,0.03778884,98.6892799],[4.53692448,0.03779059,98.68843012],[4.53692491,0.03779234,98.68758084],[4.53692534,0.03779409,98.68673205],[4.53692577,0.03779584,98.68588375],[4.5369262,0.03779759,98.68503593],[4.53692663,0.03779934,98.68418857],[4.53692706,0.0378011,98.68334169],[4.53692749,0.03780285,98.68249526],[4.53692792,0.0378046,98.68164928],[4.53692835,0.03780635,98.68080375],[4.53692879,0.0378081,98.67995866],[4.53692922,0.03780985,98.679114],[4.53692965,0.0378116,98.67826977],[4.53693008,0.03781335,98.67742595],[4.53693051,0.03781511,98.67658255],[4.53693094,0.03781686,98.67573956],[4.53693137,0.03781861,98.67489696],[4.5369318,0.03782036,98.67405476],[4.53693223,0.03782211,98.67321294],[4.53693266,0.03782386,98.67237151],[4.53693309,0.03782561,98.67153045],[4.53693352,0.03782736,98.67068975],[4.53693395,0.03782912,98.66984942],[4.53693438,0.03783087,98.66900943],[4.53693481,0.03783262,98.6681698],[4.53693524,0.03783437,98.6673305],[4.53693567,0.03783612,98.66649154],[4.5369361,0.03783787,98.66565291],[4.53693653,0.03783962,98.66481459],[4.53693697,0.03784138,98.66397659],[4.5369374,0.03784313,98.66313889],[4.53693783,0.03784488,98.6623015],[4.53693826,0.03784663,98.6614644],[4.53693869,0.03784838,98.66062759],[4.53693912,0.03785013,98.65979105],[4.53693955,0.03785188,98.65895479],[4.53693997,0.03785364,98.6581188],[4.5369404,0.03785539,98.65728307],[4.53694083,0.03785714,98.65644759],[4.53694126,0.03785889,98.65561235],[4.53694169,0.03786064,98.65477736],[4.53694212,0.03786239,98.6539426],[4.53694255,0.03786414,98.65310807],[4.53694298,0.0378659,98.65227376],[4.53694341,0.03786765,98.65143966],[4.53694384,0.0378694,98.65060577],[4.53694427,0.03787115,98.64977208],[4.5369447,0.0378729,98.64893858],[4.53694513,0.03787466,98.64810527],[4.53694555,0.03787641,98.64727214],[4.53694598,0.03787816,98.64643918],[4.53694641,0.03787991,98.64560639],[4.53694684,0.03788166,98.64477376],[4.53694727,0.03788341,98.64394129],[4.5369477,0.03788517,98.64310896],[4.53694812,0.03788692,98.64227677],[4.53694855,0.03788867,98.64144471],[4.53694898,0.03789042,98.64061278],[4.53694941,0.03789217,98.63978099],[4.53694984,0.03789393,98.63894935],[4.53695026,0.03789568,98.63811787],[4.53695069,0.03789743,98.63728656],[4.53695112,0.03789918,98.63645544],[4.53695154,0.03790093,98.63562451],[4.53695197,0.03790269,98.63479378],[4.5369524,0.03790444,98.63396327],[4.53695283,0.03790619,98.63313298],[4.53695325,0.03790794,98.63230294],[4.53695368,0.0379097,98.63147314],[4.53695411,0.03791145,98.63064361],[4.53695453,0.0379132,98.62981435],[4.53695496,0.03791495,98.62898537],[4.53695539,0.0379167,98.62815669],[4.53695581,0.03791846,98.62732831],[4.53695624,0.03792021,98.62650025],[4.53695666,0.03792196,98.62567252],[4.53695709,0.03792371,98.62484513],[4.53695752,0.03792547,98.62401809],[4.53695794,0.03792722,98.62319141],[4.53695837,0.03792897,98.62236511],[4.5369588,0.03793072,98.62153919],[4.53695922,0.03793248,98.62071367],[4.53695965,0.03793423,98.61988855],[4.53696007,0.03793598,98.61906384],[4.5369605,0.03793773,98.61823953],[4.53696093,0.03793949,98.61741564],[4.53696135,0.03794124,98.61659215],[4.53696178,0.03794299,98.61576907],[4.5369622,0.03794474,98.6149464],[4.53696263,0.0379465,98.61412414],[4.53696306,0.03794825,98.61330229],[4.53696348,0.03795,98.61248086],[4.53696391,0.03795175,98.61165984],[4.53696433,0.03795351,98.61083923],[4.53696476,0.03795526,98.61001904],[4.53696518,0.03795701,98.60919927],[4.53696561,0.03795876,98.60837991],[4.53696603,0.03796052,98.60756097],[4.53696646,0.03796227,98.60674245],[4.53696689,0.03796402,98.60592435],[4.53696731,0.03796577,98.60510667],[4.53696774,0.03796753,98.60428941],[4.53696816,0.03796928,98.60347258],[4.53696859,0.03797103,98.60265616],[4.53696901,0.03797278,98.60184017],[4.53696944,0.03797454,98.60102461],[4.53696986,0.03797629,98.60020947],[4.53697029,0.03797804,98.59939476],[4.53697071,0.03797979,98.59858047],[4.53697114,0.03798155,98.59776662],[4.53697156,0.0379833,98.59695319],[4.53697199,0.03798505,98.59614019],[4.53697241,0.0379868,98.59532762],[4.53697284,0.03798856,98.59451549],[4.53697326,0.03799031,98.59370379],[4.53697369,0.03799206,98.59289252],[4.53697411,0.03799381,98.59208168],[4.53697454,0.03799557,98.59127128],[4.53697496,0.03799732,98.59046132],[4.53697539,0.03799907,98.58965179],[4.53697581,0.03800083,98.5888427],[4.53697624,0.03800258,98.58803405],[4.53697666,0.03800433,98.58722584],[4.53697709,0.03800608,98.58641808],[4.53697751,0.03800784,98.58561075],[4.53697794,0.03800959,98.58480386],[4.53697836,0.03801134,98.58399742],[4.53697879,0.03801309,98.58319142],[4.53697921,0.03801485,98.58238587],[4.53697964,0.0380166,98.58158076],[4.53698006,0.03801835,98.5807761],[4.53698049,0.03802011,98.57997188],[4.53698091,0.03802186,98.57916812],[4.53698133,0.03802361,98.5783648],[4.53698176,0.03802536,98.57756194],[4.53698218,0.03802712,98.57675952],[4.53698261,0.03802887,98.57595756],[4.53698303,0.03803062,98.57515605],[4.53698346,0.03803237,98.574355],[4.53698388,0.03803413,98.57355439],[4.5369843,0.03803588,98.57275425],[4.53698473,0.03803763,98.57195456],[4.53698515,0.03803939,98.57115533],[4.53698558,0.03804114,98.57035656],[4.536986,0.03804289,98.56955824],[4.53698643,0.03804464,98.56876039],[4.53698685,0.0380464,98.567963],[4.53698727,0.03804815,98.56716607],[4.5369877,0.0380499,98.5663696],[4.53698812,0.03805166,98.56557359],[4.53698855,0.03805341,98.56477805],[4.53698897,0.03805516,98.56398298],[4.53698939,0.03805692,98.56318837],[4.53698982,0.03805867,98.56239423],[4.53699024,0.03806042,98.56160056],[4.53699067,0.03806217,98.56080736],[4.53699109,0.03806393,98.56001463],[4.53699151,0.03806568,98.55922237],[4.53699194,0.03806743,98.55843058],[4.53699236,0.03806919,98.55763926],[4.53699278,0.03807094,98.55684842],[4.53699321,0.03807269,98.55605805],[4.53699363,0.03807444,98.55526815],[4.53699405,0.0380762,98.55447874],[4.53699448,0.03807795,98.5536898],[4.5369949,0.0380797,98.55290134],[4.53699533,0.03808146,98.55211336],[4.53699575,0.03808321,98.55132586],[4.53699617,0.03808496,98.55053885],[4.5369966,0.03808672,98.54975235],[4.53699702,0.03808847,98.5489664],[4.53699744,0.03809022,98.54818101],[4.53699787,0.03809197,98.54739621],[4.53699829,0.03809373,98.54661202],[4.53699871,0.03809548,98.54582848],[4.53699914,0.03809723,98.54504559],[4.53699956,0.03809899,98.5442634],[4.53699998,0.03810074,98.54348192],[4.53700041,0.03810249,98.54270118],[4.53700083,0.03810425,98.5419212],[4.53700125,0.038106,98.54114202],[4.53700168,0.03810775,98.54036364],[4.5370021,0.0381095,98.5395861],[4.53700253,0.03811126,98.53880943],[4.53700295,0.03811301,98.53803364],[4.53700338,0.03811476,98.53725876],[4.5370038,0.03811652,98.53648482],[4.53700422,0.03811827,98.53571184],[4.53700465,0.03812002,98.53493985],[4.53700507,0.03812177,98.53416886],[4.5370055,0.03812353,98.53339891],[4.53700592,0.03812528,98.53263002],[4.53700635,0.03812703,98.5318622],[4.53700677,0.03812878,98.5310955],[4.5370072,0.03813054,98.53032992],[4.53700763,0.03813229,98.5295655],[4.53700805,0.03813404,98.52880225],[4.53700848,0.03813579,98.52804021],[4.5370089,0.03813755,98.5272794],[4.53700933,0.0381393,98.52651983],[4.53700976,0.03814105,98.52576154],[4.53701018,0.0381428,98.52500455],[4.53701061,0.03814455,98.52424888],[4.53701104,0.03814631,98.52349455],[4.53701147,0.03814806,98.52274159],[4.53701189,0.03814981,98.52199003],[4.53701232,0.03815156,98.52123988],[4.53701275,0.03815331,98.52049116],[4.53701318,0.03815507,98.51974391],[4.53701361,0.03815682,98.51899815],[4.53701404,0.03815857,98.51825389],[4.53701447,0.03816032,98.51751117],[4.5370149,0.03816207,98.51677001],[4.53701533,0.03816382,98.51603043],[4.53701576,0.03816557,98.51529247],[4.53701619,0.03816733,98.51455615],[4.53701662,0.03816908,98.51382151],[4.53701705,0.03817083,98.51308856],[4.53701749,0.03817258,98.51235733],[4.53701792,0.03817433,98.51162786],[4.53701835,0.03817608,98.51090017],[4.53701457,0.03817701,98.49929624]]],"type":"Polygon"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":1,"type":"shoulder","predecessorId":1,"sOffset":53.8544139403}},{"geometry":{"coordinates":[[[4.53701835,0.03817608,98.51090017],[4.53701792,0.03817433,98.51162786],[4.53701749,0.03817258,98.51235733],[4.53701705,0.03817083,98.51308856],[4.53701662,0.03816908,98.51382151],[4.53701619,0.03816733,98.51455615],[4.53701576,0.03816557,98.51529247],[4.53701533,0.03816382,98.51603043],[4.5370149,0.03816207,98.51677001],[4.53701447,0.03816032,98.51751117],[4.53701404,0.03815857,98.51825389],[4.53701361,0.03815682,98.51899815],[4.53701318,0.03815507,98.51974391],[4.53701275,0.03815331,98.52049116],[4.53701232,0.03815156,98.52123988],[4.53701189,0.03814981,98.52199003],[4.53701147,0.03814806,98.52274159],[4.53701104,0.03814631,98.52349455],[4.53701061,0.03814455,98.52424888],[4.53701018,0.0381428,98.52500455],[4.53700976,0.03814105,98.52576154],[4.53700933,0.0381393,98.52651983],[4.5370089,0.03813755,98.5272794],[4.53700848,0.03813579,98.52804021],[4.53700805,0.03813404,98.52880225],[4.53700763,0.03813229,98.5295655],[4.5370072,0.03813054,98.53032992],[4.53700677,0.03812878,98.5310955],[4.53700635,0.03812703,98.5318622],[4.53700592,0.03812528,98.53263002],[4.5370055,0.03812353,98.53339891],[4.53700507,0.03812177,98.53416886],[4.53700465,0.03812002,98.53493985],[4.53700422,0.03811827,98.53571184],[4.5370038,0.03811652,98.53648482],[4.53700338,0.03811476,98.53725876],[4.53700295,0.03811301,98.53803364],[4.53700253,0.03811126,98.53880943],[4.5370021,0.0381095,98.5395861],[4.53700168,0.03810775,98.54036364],[4.53700125,0.038106,98.54114202],[4.53700083,0.03810425,98.5419212],[4.53700041,0.03810249,98.54270118],[4.53699998,0.03810074,98.54348192],[4.53699956,0.03809899,98.5442634],[4.53699914,0.03809723,98.54504559],[4.53699871,0.03809548,98.54582848],[4.53699829,0.03809373,98.54661202],[4.53699787,0.03809197,98.54739621],[4.53699744,0.03809022,98.54818101],[4.53699702,0.03808847,98.5489664],[4.5369966,0.03808672,98.54975235],[4.53699617,0.03808496,98.55053885],[4.53699575,0.03808321,98.55132586],[4.53699533,0.03808146,98.55211336],[4.5369949,0.0380797,98.55290134],[4.53699448,0.03807795,98.5536898],[4.53699405,0.0380762,98.55447874],[4.53699363,0.03807444,98.55526815],[4.53699321,0.03807269,98.55605805],[4.53699278,0.03807094,98.55684842],[4.53699236,0.03806919,98.55763926],[4.53699194,0.03806743,98.55843058],[4.53699151,0.03806568,98.55922237],[4.53699109,0.03806393,98.56001463],[4.53699067,0.03806217,98.56080736],[4.53699024,0.03806042,98.56160056],[4.53698982,0.03805867,98.56239423],[4.53698939,0.03805692,98.56318837],[4.53698897,0.03805516,98.56398298],[4.53698855,0.03805341,98.56477805],[4.53698812,0.03805166,98.56557359],[4.5369877,0.0380499,98.5663696],[4.53698727,0.03804815,98.56716607],[4.53698685,0.0380464,98.567963],[4.53698643,0.03804464,98.56876039],[4.536986,0.03804289,98.56955824],[4.53698558,0.03804114,98.57035656],[4.53698515,0.03803939,98.57115533],[4.53698473,0.03803763,98.57195456],[4.5369843,0.03803588,98.57275425],[4.53698388,0.03803413,98.57355439],[4.53698346,0.03803237,98.574355],[4.53698303,0.03803062,98.57515605],[4.53698261,0.03802887,98.57595756],[4.53698218,0.03802712,98.57675952],[4.53698176,0.03802536,98.57756194],[4.53698133,0.03802361,98.5783648],[4.53698091,0.03802186,98.57916812],[4.53698049,0.03802011,98.57997188],[4.53698006,0.03801835,98.5807761],[4.53697964,0.0380166,98.58158076],[4.53697921,0.03801485,98.58238587],[4.53697879,0.03801309,98.58319142],[4.53697836,0.03801134,98.58399742],[4.53697794,0.03800959,98.58480386],[4.53697751,0.03800784,98.58561075],[4.53697709,0.03800608,98.58641808],[4.53697666,0.03800433,98.58722584],[4.53697624,0.03800258,98.58803405],[4.53697581,0.03800083,98.5888427],[4.53697539,0.03799907,98.58965179],[4.53697496,0.03799732,98.59046132],[4.53697454,0.03799557,98.59127128],[4.53697411,0.03799381,98.59208168],[4.53697369,0.03799206,98.59289252],[4.53697326,0.03799031,98.59370379],[4.53697284,0.03798856,98.59451549],[4.53697241,0.0379868,98.59532762],[4.53697199,0.03798505,98.59614019],[4.53697156,0.0379833,98.59695319],[4.53697114,0.03798155,98.59776662],[4.53697071,0.03797979,98.59858047],[4.53697029,0.03797804,98.59939476],[4.53696986,0.03797629,98.60020947],[4.53696944,0.03797454,98.60102461],[4.53696901,0.03797278,98.60184017],[4.53696859,0.03797103,98.60265616],[4.53696816,0.03796928,98.60347258],[4.53696774,0.03796753,98.60428941],[4.53696731,0.03796577,98.60510667],[4.53696689,0.03796402,98.60592435],[4.53696646,0.03796227,98.60674245],[4.53696603,0.03796052,98.60756097],[4.53696561,0.03795876,98.60837991],[4.53696518,0.03795701,98.60919927],[4.53696476,0.03795526,98.61001904],[4.53696433,0.03795351,98.61083923],[4.53696391,0.03795175,98.61165984],[4.53696348,0.03795,98.61248086],[4.53696306,0.03794825,98.61330229],[4.53696263,0.0379465,98.61412414],[4.5369622,0.03794474,98.6149464],[4.53696178,0.03794299,98.61576907],[4.53696135,0.03794124,98.61659215],[4.53696093,0.03793949,98.61741564],[4.5369605,0.03793773,98.61823953],[4.53696007,0.03793598,98.61906384],[4.53695965,0.03793423,98.61988855],[4.53695922,0.03793248,98.62071367],[4.5369588,0.03793072,98.62153919],[4.53695837,0.03792897,98.62236511],[4.53695794,0.03792722,98.62319141],[4.53695752,0.03792547,98.62401809],[4.53695709,0.03792371,98.62484513],[4.53695666,0.03792196,98.62567252],[4.53695624,0.03792021,98.62650025],[4.53695581,0.03791846,98.62732831],[4.53695539,0.0379167,98.62815669],[4.53695496,0.03791495,98.62898537],[4.53695453,0.0379132,98.62981435],[4.53695411,0.03791145,98.63064361],[4.53695368,0.0379097,98.63147314],[4.53695325,0.03790794,98.63230294],[4.53695283,0.03790619,98.63313298],[4.5369524,0.03790444,98.63396327],[4.53695197,0.03790269,98.63479378],[4.53695154,0.03790093,98.63562451],[4.53695112,0.03789918,98.63645544],[4.53695069,0.03789743,98.63728656],[4.53695026,0.03789568,98.63811787],[4.53694984,0.03789393,98.63894935],[4.53694941,0.03789217,98.63978099],[4.53694898,0.03789042,98.64061278],[4.53694855,0.03788867,98.64144471],[4.53694812,0.03788692,98.64227677],[4.5369477,0.03788517,98.64310896],[4.53694727,0.03788341,98.64394129],[4.53694684,0.03788166,98.64477376],[4.53694641,0.03787991,98.64560639],[4.53694598,0.03787816,98.64643918],[4.53694555,0.03787641,98.64727214],[4.53694513,0.03787466,98.64810527],[4.5369447,0.0378729,98.64893858],[4.53694427,0.03787115,98.64977208],[4.53694384,0.0378694,98.65060577],[4.53694341,0.03786765,98.65143966],[4.53694298,0.0378659,98.65227376],[4.53694255,0.03786414,98.65310807],[4.53694212,0.03786239,98.6539426],[4.53694169,0.03786064,98.65477736],[4.53694126,0.03785889,98.65561235],[4.53694083,0.03785714,98.65644759],[4.5369404,0.03785539,98.65728307],[4.53693997,0.03785364,98.6581188],[4.53693955,0.03785188,98.65895479],[4.53693912,0.03785013,98.65979105],[4.53693869,0.03784838,98.66062759],[4.53693826,0.03784663,98.6614644],[4.53693783,0.03784488,98.6623015],[4.5369374,0.03784313,98.66313889],[4.53693697,0.03784138,98.66397659],[4.53693653,0.03783962,98.66481459],[4.5369361,0.03783787,98.66565291],[4.53693567,0.03783612,98.66649154],[4.53693524,0.03783437,98.6673305],[4.53693481,0.03783262,98.6681698],[4.53693438,0.03783087,98.66900943],[4.53693395,0.03782912,98.66984942],[4.53693352,0.03782736,98.67068975],[4.53693309,0.03782561,98.67153045],[4.53693266,0.03782386,98.67237151],[4.53693223,0.03782211,98.67321294],[4.5369318,0.03782036,98.67405476],[4.53693137,0.03781861,98.67489696],[4.53693094,0.03781686,98.67573956],[4.53693051,0.03781511,98.67658255],[4.53693008,0.03781335,98.67742595],[4.53692965,0.0378116,98.67826977],[4.53692922,0.03780985,98.679114],[4.53692879,0.0378081,98.67995866],[4.53692835,0.03780635,98.68080375],[4.53692792,0.0378046,98.68164928],[4.53692749,0.03780285,98.68249526],[4.53692706,0.0378011,98.68334169],[4.53692663,0.03779934,98.68418857],[4.5369262,0.03779759,98.68503593],[4.53692577,0.03779584,98.68588375],[4.53692534,0.03779409,98.68673205],[4.53692491,0.03779234,98.68758084],[4.53692448,0.03779059,98.68843012],[4.53692405,0.03778884,98.6892799],[4.53692362,0.03778709,98.69013018],[4.53692319,0.03778533,98.69098097],[4.53692275,0.03778358,98.69183228],[4.53692232,0.03778183,98.69268412],[4.53692189,0.03778008,98.69353648],[4.53692146,0.03777833,98.69438938],[4.53692103,0.03777658,98.69524283],[4.5369206,0.03777483,98.69609682],[4.53692017,0.03777307,98.69695137],[4.53691974,0.03777132,98.69780649],[4.53691931,0.03776957,98.69866217],[4.53691888,0.03776782,98.69951843],[4.53691845,0.03776607,98.70037527],[4.53691802,0.03776432,98.70123269],[4.53691759,0.03776257,98.70209072],[4.53691716,0.03776082,98.70294934],[4.53691673,0.03775906,98.70380857],[4.5369163,0.03775731,98.70466841],[4.53691587,0.03775556,98.70552888],[4.53691544,0.03775381,98.70638997],[4.53691501,0.03775206,98.70725169],[4.53691458,0.03775031,98.70811406],[4.53691415,0.03774855,98.70897707],[4.53691372,0.0377468,98.70984073],[4.53691329,0.03774505,98.71070505],[4.53691286,0.0377433,98.71157005],[4.53691243,0.03774155,98.71243574],[4.536912,0.0377398,98.71330215],[4.53691157,0.03773805,98.71416929],[4.53691114,0.03773629,98.71503717],[4.53691071,0.03773454,98.71590582],[4.53691028,0.03773279,98.71677524],[4.53690986,0.03773104,98.71764546],[4.53690943,0.03772929,98.71851649],[4.536909,0.03772753,98.71938831],[4.53690857,0.03772578,98.72026092],[4.53690814,0.03772403,98.72113431],[4.53690771,0.03772228,98.72200848],[4.53690729,0.03772053,98.72288343],[4.53690686,0.03771878,98.72375915],[4.53690643,0.03771702,98.72463562],[4.536906,0.03771527,98.72551285],[4.53690557,0.03771352,98.72639083],[4.53690515,0.03771177,98.72726956],[4.53690472,0.03771002,98.72814902],[4.53690429,0.03770826,98.72902921],[4.53690386,0.03770651,98.72991013],[4.53690344,0.03770476,98.73079177],[4.53690301,0.03770301,98.73167413],[4.53690258,0.03770125,98.73255719],[4.53690215,0.0376995,98.73344096],[4.53690173,0.03769775,98.73432543],[4.5369013,0.037696,98.73521058],[4.53690087,0.03769425,98.73609643],[4.53690045,0.03769249,98.73698295],[4.53690002,0.03769074,98.73787014],[4.5368996,0.03768899,98.73875801],[4.53689917,0.03768724,98.73964653],[4.53689874,0.03768548,98.74053572],[4.53689832,0.03768373,98.74142555],[4.53689789,0.03768198,98.74231603],[4.53689746,0.03768023,98.74320715],[4.53689704,0.03767847,98.7440989],[4.53689661,0.03767672,98.74499128],[4.53689619,0.03767497,98.74588428],[4.53689576,0.03767322,98.7467779],[4.53689533,0.03767146,98.74767213],[4.53689491,0.03766971,98.74856696],[4.53689448,0.03766796,98.74946239],[4.53689406,0.03766621,98.75035842],[4.53689363,0.03766445,98.75125503],[4.53689321,0.0376627,98.75215223],[4.53689278,0.03766095,98.75305],[4.53689236,0.0376592,98.75394834],[4.53689193,0.03765744,98.75484724],[4.53689151,0.03765569,98.75574671],[4.53689108,0.03765394,98.75664672],[4.53689066,0.03765219,98.75754729],[4.53689023,0.03765043,98.75844839],[4.53688981,0.03764868,98.75935004],[4.53688938,0.03764693,98.76025221],[4.53688896,0.03764517,98.76115491],[4.53688853,0.03764342,98.76205812],[4.53688811,0.03764167,98.76296186],[4.53688768,0.03763992,98.76386609],[4.53688726,0.03763816,98.76477083],[4.53688683,0.03763641,98.76567607],[4.53688641,0.03763466,98.7665818],[4.53688598,0.0376329,98.76748801],[4.53688556,0.03763115,98.7683947],[4.53688513,0.0376294,98.76930187],[4.53688471,0.03762765,98.7702095],[4.53688429,0.03762589,98.77111759],[4.53688386,0.03762414,98.77202615],[4.53688344,0.03762239,98.77293515],[4.53688301,0.03762063,98.7738446],[4.53688259,0.03761888,98.77475449],[4.53688216,0.03761713,98.77566482],[4.53688174,0.03761538,98.77657557],[4.53688131,0.03761362,98.77748675],[4.53688089,0.03761187,98.77839834],[4.53688047,0.03761012,98.77931035],[4.53688004,0.03760836,98.78022277],[4.53687962,0.03760661,98.78113558],[4.53687919,0.03760486,98.78204879],[4.53687877,0.03760311,98.78296239],[4.53687834,0.03760135,98.78387638],[4.53687792,0.0375996,98.78479075],[4.5368775,0.03759785,98.78570548],[4.53687707,0.03759609,98.78662059],[4.53687665,0.03759434,98.78753606],[4.53687622,0.03759259,98.78845189],[4.5368758,0.03759084,98.78936806],[4.53687537,0.03758908,98.79028459],[4.53687495,0.03758733,98.79120145],[4.53687453,0.03758558,98.79211864],[4.5368741,0.03758382,98.79303615],[4.53687368,0.03758207,98.79395395],[4.53687325,0.03758032,98.79487202],[4.53687283,0.03757857,98.79579035],[4.5368724,0.03757681,98.79670891],[4.53687198,0.03757506,98.79762769],[4.53687155,0.03757331,98.79854666],[4.53687113,0.03757155,98.79946581],[4.53687071,0.0375698,98.80038512],[4.53687028,0.03756805,98.80130456],[4.53686986,0.0375663,98.80222412],[4.53686943,0.03756454,98.80314378],[4.53686901,0.03756279,98.80406352],[4.53686858,0.03756104,98.80498332],[4.53686816,0.03755928,98.80590316],[4.53686773,0.03755753,98.80682303],[4.53686731,0.03755578,98.80774289],[4.53686688,0.03755403,98.80866274],[4.53686645,0.03755227,98.80958256],[4.53686603,0.03755052,98.81050232],[4.5368656,0.03754877,98.811422],[4.53686518,0.03754702,98.8123416],[4.53686475,0.03754526,98.81326108],[4.53686432,0.03754351,98.81418043],[4.5368639,0.03754176,98.81509963],[4.53686347,0.03754001,98.81601866],[4.53686304,0.03753825,98.8169375],[4.53686262,0.0375365,98.81785614],[4.53686219,0.03753475,98.81877455],[4.53686176,0.037533,98.81969272],[4.53686133,0.03753125,98.82061065],[4.53686091,0.03752949,98.82152836],[4.53686048,0.03752774,98.82244584],[4.53686005,0.03752599,98.8233631],[4.53685962,0.03752424,98.82428015],[4.53685919,0.03752249,98.82519701],[4.53685877,0.03752073,98.82611366],[4.53685834,0.03751898,98.82703013],[4.53685791,0.03751723,98.82794642],[4.53685748,0.03751548,98.82886253],[4.53685705,0.03751373,98.82977847],[4.53685662,0.03751198,98.83069426],[4.53685619,0.03751022,98.83160989],[4.53685576,0.03750847,98.83252537],[4.53685533,0.03750672,98.83344072],[4.5368549,0.03750497,98.83435593],[4.53685447,0.03750322,98.83527102],[4.53685404,0.03750147,98.83618599],[4.53685361,0.03749972,98.83710084],[4.53685318,0.03749796,98.83801559],[4.53685275,0.03749621,98.83893024],[4.53685232,0.03749446,98.83984481],[4.53685188,0.03749271,98.84075928],[4.53685145,0.03749096,98.84167368],[4.53685102,0.03748921,98.84258801],[4.53685059,0.03748746,98.84350227],[4.53685016,0.03748571,98.84441648],[4.53684973,0.03748395,98.84533063],[4.5368493,0.0374822,98.84624475],[4.53684886,0.03748045,98.84715882],[4.53684843,0.0374787,98.84807287],[4.536848,0.03747695,98.84898689],[4.53684757,0.0374752,98.84990089],[4.53684713,0.03747345,98.85081489],[4.5368467,0.0374717,98.85172888],[4.53684627,0.03746995,98.85264288],[4.53684584,0.0374682,98.85355688],[4.5368454,0.03746645,98.8544709],[4.53684497,0.03746469,98.85538495],[4.53684454,0.03746294,98.85629903],[4.5368441,0.03746119,98.85721314],[4.53684367,0.03745944,98.8581273],[4.53684324,0.03745769,98.85904151],[4.5368428,0.03745594,98.85995577],[4.53684237,0.03745419,98.8608701],[4.53684194,0.03745244,98.8617845],[4.5368415,0.03745069,98.86269897],[4.53684107,0.03744894,98.86361353],[4.53684064,0.03744719,98.86452818],[4.5368402,0.03744544,98.86544293],[4.53683977,0.03744369,98.86635777],[4.53683934,0.03744194,98.86727273],[4.5368389,0.03744019,98.86818782],[4.53683847,0.03743844,98.86910306],[4.53683803,0.03743668,98.87001848],[4.5368376,0.03743493,98.87093409],[4.53683717,0.03743318,98.87184992],[4.53683673,0.03743143,98.872766],[4.5368363,0.03742968,98.87368234],[4.53683586,0.03742793,98.87459898],[4.53683543,0.03742618,98.87551592],[4.53683499,0.03742443,98.8764332],[4.53683456,0.03742268,98.87735084],[4.53683413,0.03742093,98.87826886],[4.53683369,0.03741918,98.87918728],[4.53683326,0.03741743,98.88010613],[4.53683283,0.03741568,98.88102542],[4.53683239,0.03741393,98.88194519],[4.53683196,0.03741218,98.88286545],[4.53683152,0.03741043,98.88378622],[4.53683109,0.03740868,98.88470754],[4.53683066,0.03740693,98.88562941],[4.53683022,0.03740518,98.88655185],[4.53682979,0.03740343,98.88747486],[4.53682936,0.03740168,98.88839843],[4.53682893,0.03739993,98.88932255],[4.53682849,0.03739818,98.89024722],[4.53682806,0.03739642,98.89117244],[4.53682763,0.03739467,98.89209819],[4.53682719,0.03739292,98.89302448],[4.53682676,0.03739117,98.8939513],[4.53682633,0.03738942,98.89487865],[4.5368259,0.03738767,98.89580651],[4.53682547,0.03738592,98.89673489],[4.53682503,0.03738417,98.89766378],[4.5368246,0.03738242,98.89859318],[4.53682417,0.03738067,98.89952308],[4.53682374,0.03737892,98.90045347],[4.53682331,0.03737716,98.90138435],[4.53682287,0.03737541,98.90231572],[4.53682244,0.03737366,98.90324757],[4.53682201,0.03737191,98.90417989],[4.53682158,0.03737016,98.90511268],[4.53682115,0.03736841,98.90604595],[4.53682072,0.03736666,98.90697967],[4.53682029,0.03736491,98.90791385],[4.53681985,0.03736315,98.90884848],[4.53681942,0.0373614,98.90978355],[4.53681899,0.03735965,98.91071907],[4.53681856,0.0373579,98.91165503],[4.53681813,0.03735615,98.91259141],[4.5368177,0.0373544,98.91352821],[4.53681727,0.03735265,98.91446541],[4.53681684,0.0373509,98.91540299],[4.53681641,0.03734914,98.91634094],[4.53681598,0.03734739,98.91727925],[4.53681555,0.03734564,98.9182179],[4.53681512,0.03734389,98.91915688],[4.53681469,0.03734214,98.92009617],[4.53681426,0.03734039,98.92103575],[4.53681382,0.03733864,98.92197562],[4.53681339,0.03733688,98.92291576],[4.53681296,0.03733513,98.92385614],[4.53681253,0.03733338,98.92479677],[4.5368121,0.03733163,98.92573762],[4.53681167,0.03732988,98.92667868],[4.53681124,0.03732813,98.92761994],[4.53681081,0.03732638,98.92856137],[4.53681038,0.03732462,98.92950297],[4.53680995,0.03732287,98.93044472],[4.53680952,0.03732112,98.93138661],[4.53680909,0.03731937,98.93232862],[4.53680866,0.03731762,98.93327074],[4.53680823,0.03731587,98.93421296],[4.5368078,0.03731412,98.93515525],[4.53680737,0.03731237,98.93609761],[4.53680694,0.03731061,98.93704001],[4.53680651,0.03730886,98.93798246],[4.53680608,0.03730711,98.93892492],[4.53680565,0.03730536,98.93986739],[4.53680522,0.03730361,98.94080986],[4.53680478,0.03730186,98.9417523],[4.53680435,0.03730011,98.94269471],[4.53680392,0.03729835,98.94363707],[4.53680349,0.0372966,98.94457936],[4.53680306,0.03729485,98.94552158],[4.53680263,0.0372931,98.9464637],[4.5368022,0.03729135,98.94740572],[4.53680177,0.0372896,98.94834762],[4.53680133,0.03728785,98.94928938],[4.5368009,0.0372861,98.95023099],[4.53680047,0.03728435,98.95117243],[4.53680004,0.03728259,98.9521137],[4.53679961,0.03728084,98.95305478],[4.53679917,0.03727909,98.95399565],[4.53679874,0.03727734,98.9549363],[4.53679831,0.03727559,98.95587672],[4.53679788,0.03727384,98.95681689],[4.53679744,0.03727209,98.95775679],[4.53679701,0.03727034,98.95869642],[4.53679658,0.03726859,98.95963577],[4.53679614,0.03726684,98.96057485],[4.53679571,0.03726509,98.96151365],[4.53679528,0.03726334,98.9624522],[4.53679484,0.03726159,98.96339048],[4.53679441,0.03725983,98.96432851],[4.53679398,0.03725808,98.9652663],[4.53679354,0.03725633,98.96620384],[4.53679311,0.03725458,98.96714115],[4.53679267,0.03725283,98.96807823],[4.53679224,0.03725108,98.96901509],[4.5367918,0.03724933,98.96995172],[4.53679137,0.03724758,98.97088815],[4.53679093,0.03724583,98.97182436],[4.5367905,0.03724408,98.97276038],[4.53679006,0.03724233,98.9736962],[4.53678963,0.03724058,98.97463183],[4.53678919,0.03723883,98.97556727],[4.53678876,0.03723708,98.97650254],[4.53678832,0.03723533,98.97743763],[4.53678789,0.03723358,98.97837255],[4.53678745,0.03723183,98.97930732],[4.53678701,0.03723008,98.98024192],[4.53678658,0.03722833,98.98117637],[4.53678614,0.03722658,98.98211068],[4.5367857,0.03722483,98.98304484],[4.53678527,0.03722308,98.98397888],[4.53678483,0.03722133,98.98491278],[4.5367844,0.03721958,98.98584655],[4.53678396,0.03721783,98.98678021],[4.53678352,0.03721608,98.98771376],[4.53678309,0.03721433,98.9886472],[4.53678265,0.03721258,98.98958053],[4.53678221,0.03721083,98.99051377],[4.53678177,0.03720908,98.99144692],[4.53678134,0.03720733,98.99237998],[4.5367809,0.03720558,98.99331296],[4.53678046,0.03720383,98.99424587],[4.53678003,0.03720208,98.99517871],[4.53677959,0.03720033,98.99611148],[4.53677915,0.03719858,98.99704419],[4.53677871,0.03719684,98.99797685],[4.53677828,0.03719509,98.99890947],[4.53677784,0.03719334,98.99984204],[4.5367774,0.03719159,99.00077457],[4.53677696,0.03718984,99.00170707],[4.53677652,0.03718809,99.00263955],[4.53677609,0.03718634,99.003572],[4.53677565,0.03718459,99.00450444],[4.53677521,0.03718284,99.00543686],[4.53677477,0.03718109,99.00636929],[4.53677433,0.03717934,99.00730171],[4.5367739,0.03717759,99.00823414],[4.53677346,0.03717584,99.00916658],[4.53677302,0.03717409,99.01009903],[4.53677258,0.03717234,99.01103151],[4.53677214,0.03717059,99.01196401],[4.53677171,0.03716884,99.01289654],[4.53677127,0.03716709,99.01382912],[4.53677083,0.03716534,99.01476173],[4.53677039,0.03716359,99.01569439],[4.53676995,0.03716185,99.01662711],[4.53676951,0.0371601,99.01755988],[4.53676908,0.03715835,99.01849272],[4.53676864,0.0371566,99.01942562],[4.5367682,0.03715485,99.02035859],[4.53676776,0.0371531,99.02129162],[4.53676732,0.03715135,99.02222471],[4.53676688,0.0371496,99.02315787],[4.53676645,0.03714785,99.0240911],[4.53676601,0.0371461,99.02502439],[4.53676557,0.03714435,99.02595775],[4.53676513,0.0371426,99.02689117],[4.53676469,0.03714085,99.02782467],[4.53676425,0.0371391,99.02875822],[4.53676381,0.03713735,99.02969185],[4.53676338,0.0371356,99.03062554],[4.53676294,0.03713386,99.03155931],[4.5367625,0.03713211,99.03249314],[4.53676206,0.03713036,99.03342703],[4.53676162,0.03712861,99.034361],[4.53676118,0.03712686,99.03529504],[4.53676075,0.03712511,99.03622915],[4.53676031,0.03712336,99.03716332],[4.53675987,0.03712161,99.03809757],[4.53675943,0.03711986,99.03903189],[4.53675899,0.03711811,99.03996627],[4.53675855,0.03711636,99.04090073],[4.53675811,0.03711461,99.04183526],[4.53675768,0.03711286,99.04276987],[4.53675724,0.03711111,99.04370454],[4.5367568,0.03710936,99.04463929],[4.53675636,0.03710761,99.0455741],[4.53675592,0.03710587,99.046509],[4.53675548,0.03710412,99.04744396],[4.53675505,0.03710237,99.048379],[4.53675461,0.03710062,99.04931411],[4.53675417,0.03709887,99.0502493],[4.53675373,0.03709712,99.05118456],[4.53675329,0.03709537,99.05211989],[4.53675285,0.03709362,99.0530553],[4.53675242,0.03709187,99.05399079],[4.53675198,0.03709012,99.05492635],[4.53675154,0.03708837,99.05586198],[4.5367511,0.03708662,99.05679769],[4.53675066,0.03708487,99.05773348],[4.53675022,0.03708312,99.05866935],[4.53674979,0.03708137,99.05960529],[4.53674935,0.03707962,99.06054131],[4.53674891,0.03707787,99.06147741],[4.53674847,0.03707613,99.06241358],[4.53674803,0.03707438,99.06334984],[4.53674759,0.03707263,99.06428617],[4.53674716,0.03707088,99.06522258],[4.53674672,0.03706913,99.06615907],[4.53674628,0.03706738,99.06709564],[4.53674584,0.03706563,99.06803228],[4.5367454,0.03706388,99.06896901],[4.53674496,0.03706213,99.06990582],[4.53674453,0.03706038,99.07084271],[4.53674409,0.03705863,99.07177968],[4.53674365,0.03705688,99.07271673],[4.53674321,0.03705513,99.07365386],[4.53674277,0.03705338,99.07459108],[4.53674234,0.03705163,99.07552837],[4.5367419,0.03704988,99.07646575],[4.53674146,0.03704813,99.07740321],[4.53674102,0.03704638,99.07834076],[4.53674058,0.03704464,99.0792784],[4.53674015,0.03704289,99.08021612],[4.53673971,0.03704114,99.08115393],[4.53673927,0.03703939,99.08209182],[4.53673883,0.03703764,99.08302981],[4.53673839,0.03703589,99.08396789],[4.53673796,0.03703414,99.08490605],[4.53673752,0.03703239,99.08584432],[4.53673708,0.03703064,99.08678267],[4.53673664,0.03702889,99.08772112],[4.53673621,0.03702714,99.08865966],[4.53673577,0.03702539,99.0895983],[4.53673533,0.03702364,99.09053704],[4.53673489,0.03702189,99.09147587],[4.53673446,0.03702014,99.09241481],[4.53673402,0.03701839,99.09335384],[4.53673358,0.03701664,99.09429297],[4.53673314,0.03701489,99.09523221],[4.53673271,0.03701314,99.09617155],[4.53673227,0.03701139,99.09711099],[4.53673183,0.03700964,99.09805053],[4.53673139,0.03700789,99.09899018],[4.53673096,0.03700614,99.09992994],[4.53673052,0.03700439,99.1008698],[4.53673008,0.03700264,99.10180977],[4.53672964,0.0370009,99.10274985],[4.53672921,0.03699915,99.10369004],[4.53672877,0.0369974,99.10463034],[4.53672833,0.03699565,99.10557077],[4.5367279,0.0369939,99.10651132],[4.53672746,0.03699215,99.10745199],[4.53672702,0.0369904,99.1083928],[4.53672658,0.03698865,99.10933374],[4.53672615,0.0369869,99.11027482],[4.53672571,0.03698515,99.11121604],[4.53672527,0.0369834,99.11215741],[4.53672484,0.03698165,99.11309893],[4.5367244,0.0369799,99.11404061],[4.53672396,0.03697815,99.11498244],[4.53672353,0.0369764,99.11592443],[4.53672309,0.03697465,99.11686659],[4.53672265,0.0369729,99.11780892],[4.53672222,0.03697115,99.11875142],[4.53672178,0.0369694,99.1196941],[4.53672135,0.03696765,99.12063696],[4.53672091,0.0369659,99.12158],[4.53672047,0.03696415,99.12252324],[4.53672004,0.0369624,99.12346666],[4.5367196,0.03696065,99.12441029],[4.53671917,0.0369589,99.12535411],[4.53671873,0.03695715,99.12629814],[4.53671829,0.0369554,99.12724238],[4.53671786,0.03695365,99.12818683],[4.53671742,0.0369519,99.1291315],[4.53671699,0.03695015,99.13007639],[4.53671655,0.0369484,99.1310215],[4.53671612,0.03694665,99.13196684],[4.53671568,0.0369449,99.13291241],[4.53671525,0.03694315,99.13385822],[4.53671481,0.0369414,99.13480427],[4.53671438,0.03693965,99.13575056],[4.53671394,0.0369379,99.1366971],[4.53671351,0.03693615,99.13764389],[4.53671307,0.0369344,99.13859094],[4.53671264,0.03693265,99.13953824],[4.5367122,0.0369309,99.14048581],[4.53671177,0.03692915,99.14143365],[4.53671133,0.03692739,99.14238176],[4.5367109,0.03692564,99.14333015],[4.53671047,0.03692389,99.14427881],[4.53671003,0.03692214,99.14522776],[4.5367096,0.03692039,99.146177],[4.53670916,0.03691864,99.14712653],[4.53670873,0.03691689,99.14807635],[4.5367083,0.03691514,99.14902648],[4.53670786,0.03691339,99.14997691],[4.53670743,0.03691164,99.15092764],[4.536707,0.03690989,99.15187869],[4.53670656,0.03690814,99.15283005],[4.53670613,0.03690639,99.15378174],[4.5367057,0.03690464,99.15473375],[4.53670527,0.03690289,99.15568608],[4.53670483,0.03690113,99.15663875],[4.5367044,0.03689938,99.15759175],[4.53670397,0.03689763,99.1585451],[4.53670354,0.03689588,99.15949875],[4.5367031,0.03689413,99.1604527],[4.53670267,0.03689238,99.16140692],[4.53670224,0.03689063,99.16236139],[4.53670181,0.03688888,99.16331608],[4.53670138,0.03688713,99.16427097],[4.53670094,0.03688538,99.16522604],[4.53670051,0.03688362,99.16618126],[4.53670008,0.03688187,99.16713661],[4.53669965,0.03688012,99.16809206],[4.53669922,0.03687837,99.1690476],[4.53669879,0.03687662,99.1700032],[4.53669836,0.03687487,99.17095883],[4.53669792,0.03687312,99.17191447],[4.53669749,0.03687137,99.1728701],[4.53669706,0.03686962,99.1738257],[4.53669663,0.03686786,99.17478124],[4.5366962,0.03686611,99.1757367],[4.53669577,0.03686436,99.17669205],[4.53669533,0.03686261,99.17764727],[4.5366949,0.03686086,99.17860234],[4.53669447,0.03685911,99.17955723],[4.53669404,0.03685736,99.18051192],[4.53669361,0.03685561,99.18146639],[4.53669318,0.03685385,99.18242061],[4.53669274,0.0368521,99.18337456],[4.53669231,0.03685035,99.18432822],[4.53669188,0.0368486,99.18528156],[4.53669145,0.03684685,99.18623456],[4.53669102,0.0368451,99.18718719],[4.53669058,0.03684335,99.18813943],[4.53669015,0.0368416,99.18909126],[4.53668972,0.03683985,99.19004265],[4.53668929,0.0368381,99.19099358],[4.53668885,0.03683635,99.19194403],[4.53668842,0.03683459,99.19289397],[4.53668799,0.03683284,99.19384338],[4.53668755,0.03683109,99.19479223],[4.53668712,0.03682934,99.19574051],[4.53668668,0.03682759,99.19668817],[4.53668625,0.03682584,99.19763522],[4.53668582,0.03682409,99.19858161],[4.53668538,0.03682234,99.19952733],[4.53668495,0.03682059,99.20047236],[4.53668451,0.03681884,99.20141667],[4.53668408,0.03681709,99.20236025],[4.53668364,0.03681534,99.20330308],[4.5366832,0.03681359,99.20424513],[4.53668277,0.03681184,99.20518639],[4.53668233,0.03681009,99.20612683],[4.5366819,0.03680834,99.20706642],[4.53668146,0.03680659,99.20800516],[4.53668102,0.03680484,99.20894302],[4.53668058,0.03680309,99.20987998],[4.53668015,0.03680134,99.21081602],[4.53667971,0.03679959,99.21175111],[4.53667927,0.03679784,99.21268524],[4.53667883,0.03679609,99.21361843],[4.53667839,0.03679434,99.2145507],[4.53667795,0.0367926,99.21548206],[4.53667751,0.03679085,99.21641255],[4.53667707,0.0367891,99.21734218],[4.53667663,0.03678735,99.21827097],[4.53667619,0.0367856,99.21919894],[4.53667575,0.03678385,99.22012613],[4.53667531,0.0367821,99.22105253],[4.53667487,0.03678035,99.22197819],[4.53667443,0.0367786,99.22290312],[4.53667398,0.03677686,99.22382734],[4.53667354,0.03677511,99.22475087],[4.5366731,0.03677336,99.22567374],[4.53667266,0.03677161,99.22659596],[4.53667222,0.03676986,99.22751756],[4.53667177,0.03676811,99.22843856],[4.53667133,0.03676637,99.22935898],[4.53667089,0.03676462,99.23027884],[4.53667044,0.03676287,99.23119816],[4.53667,0.03676112,99.23211697],[4.53666956,0.03675937,99.23303528],[4.53666911,0.03675763,99.23395313],[4.53666867,0.03675588,99.23487052],[4.53666822,0.03675413,99.23578749],[4.53666778,0.03675238,99.23670405],[4.53666734,0.03675063,99.23762022],[4.53666689,0.03674889,99.23853603],[4.53666645,0.03674714,99.2394515],[4.536666,0.03674539,99.24036664],[4.53666556,0.03674364,99.24128149],[4.53666511,0.03674189,99.24219607],[4.53666467,0.03674015,99.24311039],[4.53666422,0.0367384,99.24402447],[4.53666378,0.03673665,99.24493835],[4.53666333,0.0367349,99.24585203],[4.53666289,0.03673316,99.24676555],[4.53666244,0.03673141,99.2476789],[4.536662,0.03672966,99.24859208],[4.53666155,0.03672791,99.24950509],[4.53666111,0.03672616,99.25041793],[4.53666066,0.03672442,99.25133058],[4.53666022,0.03672267,99.25224306],[4.53665977,0.03672092,99.25315534],[4.53665933,0.03671917,99.25406743],[4.53665888,0.03671743,99.25497933],[4.53665844,0.03671568,99.25589103],[4.53665799,0.03671393,99.25680253],[4.53665755,0.03671218,99.25771382],[4.5366571,0.03671044,99.2586249],[4.53665666,0.03670869,99.25953577],[4.53665621,0.03670694,99.26044642],[4.53665576,0.03670519,99.26135684],[4.53665532,0.03670345,99.26226705],[4.53665487,0.0367017,99.26317702],[4.53665443,0.03669995,99.26408676],[4.53665398,0.0366982,99.26499627],[4.53665354,0.03669646,99.26590554],[4.53665309,0.03669471,99.26681456],[4.53665264,0.03669296,99.26772333],[4.5366522,0.03669121,99.26863185],[4.53665175,0.03668947,99.26954012],[4.53665131,0.03668772,99.27044812],[4.53665086,0.03668597,99.27135586],[4.53665041,0.03668422,99.27226334],[4.53664997,0.03668248,99.27317054],[4.53664952,0.03668073,99.27407747],[4.53664907,0.03667898,99.27498412],[4.53664863,0.03667723,99.27589049],[4.53664818,0.03667549,99.27679657],[4.53664774,0.03667374,99.27770236],[4.53664729,0.03667199,99.27860786],[4.53664684,0.03667024,99.27951305],[4.5366464,0.0366685,99.28041795],[4.53664595,0.03666675,99.28132254],[4.5366455,0.036665,99.28222682],[4.53664505,0.03666326,99.28313078],[4.53664461,0.03666151,99.28403442],[4.53664416,0.03665976,99.28493775],[4.53664371,0.03665801,99.28584074],[4.53664327,0.03665627,99.28674341],[4.53664282,0.03665452,99.28764574],[4.53664237,0.03665277,99.28854774],[4.53664192,0.03665103,99.28944939],[4.53664148,0.03664928,99.29035069],[4.53664103,0.03664753,99.29125165],[4.53664058,0.03664578,99.29215225],[4.53664013,0.03664404,99.29305249],[4.53663968,0.03664229,99.29395237],[4.53663924,0.03664054,99.29485188],[4.53663879,0.0366388,99.29575102],[4.53663834,0.03663705,99.29664979],[4.53663789,0.0366353,99.29754819],[4.53663744,0.03663356,99.29844625],[4.53663699,0.03663181,99.299344],[4.53663655,0.03663006,99.30024148],[4.5366361,0.03662832,99.30113871],[4.53663565,0.03662657,99.30203572],[4.5366352,0.03662482,99.30293256],[4.53663475,0.03662307,99.30382924],[4.5366343,0.03662133,99.30472579],[4.53663385,0.03661958,99.30562226],[4.53663341,0.03661783,99.30651867],[4.53663296,0.03661609,99.30741506],[4.53663251,0.03661434,99.30831145],[4.53663206,0.03661259,99.30920787],[4.53663161,0.03661085,99.31010436],[4.53663116,0.0366091,99.31100096],[4.53663072,0.03660735,99.31189768],[4.53663027,0.03660561,99.31279457],[4.53662982,0.03660386,99.31369165],[4.53662937,0.03660211,99.31458896],[4.53662892,0.03660037,99.31548653],[4.53662848,0.03659862,99.31638439],[4.53662803,0.03659687,99.31728257],[4.53662758,0.03659512,99.31818108],[4.53662713,0.03659338,99.31907992],[4.53662669,0.03659163,99.31997907],[4.53662624,0.03658988,99.32087854],[4.53662579,0.03658814,99.32177831],[4.53662535,0.03658639,99.32267838],[4.5366249,0.03658464,99.32357874],[4.53662445,0.03658289,99.32447939],[4.53662401,0.03658115,99.32538031],[4.53662356,0.0365794,99.3262815],[4.53662312,0.03657765,99.32718296],[4.53662267,0.0365759,99.32808467],[4.53662222,0.03657416,99.32898663],[4.53662178,0.03657241,99.32988883],[4.53662133,0.03657066,99.33079127],[4.53662089,0.03656891,99.33169393],[4.53662044,0.03656717,99.33259681],[4.53662,0.03656542,99.33349991],[4.53661955,0.03656367,99.33440322],[4.53661911,0.03656192,99.33530672],[4.53661866,0.03656017,99.33621042],[4.53661822,0.03655843,99.3371143],[4.53661778,0.03655668,99.33801836],[4.53661733,0.03655493,99.33892259],[4.53661689,0.03655318,99.33982699],[4.53661644,0.03655143,99.34073154],[4.536616,0.03654969,99.34163625],[4.53661556,0.03654794,99.34254109],[4.53661511,0.03654619,99.34344608],[4.53661467,0.03654444,99.34435119],[4.53661422,0.03654269,99.34525643],[4.53661378,0.03654095,99.34616178],[4.53661334,0.0365392,99.34706723],[4.53661289,0.03653745,99.34797279],[4.53661245,0.0365357,99.34887844],[4.53661201,0.03653395,99.34978418],[4.53661157,0.0365322,99.35068999],[4.53661112,0.03653046,99.35159588],[4.53661068,0.03652871,99.35250184],[4.53661024,0.03652696,99.35340785],[4.5366098,0.03652521,99.35431391],[4.53660935,0.03652346,99.35522001],[4.53660891,0.03652171,99.35612615],[4.53660847,0.03651997,99.35703232],[4.53660803,0.03651822,99.35793851],[4.53660758,0.03651647,99.35884472],[4.53660714,0.03651472,99.35975093],[4.5366067,0.03651297,99.36065714],[4.53660626,0.03651122,99.36156335],[4.53660582,0.03650947,99.36246954],[4.53660538,0.03650773,99.36337571],[4.53660493,0.03650598,99.36428184],[4.53660449,0.03650423,99.36518795],[4.53660405,0.03650248,99.366094],[4.53660361,0.03650073,99.36700001],[4.53660317,0.03649898,99.36790596],[4.53660273,0.03649723,99.36881184],[4.53660228,0.03649549,99.36971765],[4.53660184,0.03649374,99.37062338],[4.5366014,0.03649199,99.37152902],[4.53660096,0.03649024,99.37243456],[4.53660052,0.03648849,99.37334],[4.53660008,0.03648674,99.37424533],[4.53659964,0.03648499,99.37515054],[4.5365992,0.03648324,99.37605563],[4.53659876,0.0364815,99.37696059],[4.53659832,0.03647975,99.3778654],[4.53659788,0.036478,99.37877006],[4.53659743,0.03647625,99.37967457],[4.53659699,0.0364745,99.38057892],[4.53659681,0.03647376,99.38096137],[4.53660912,0.03647059,99.38096137],[4.53660931,0.03647132,99.38057892],[4.53660976,0.03647307,99.37967457],[4.53661021,0.03647482,99.37877006],[4.53661065,0.03647657,99.3778654],[4.5366111,0.03647831,99.37696059],[4.53661154,0.03648006,99.37605563],[4.53661199,0.03648181,99.37515054],[4.53661244,0.03648356,99.37424533],[4.53661288,0.0364853,99.37334],[4.53661333,0.03648705,99.37243456],[4.53661378,0.0364888,99.37152902],[4.53661422,0.03649055,99.37062338],[4.53661467,0.03649229,99.36971765],[4.53661512,0.03649404,99.36881184],[4.53661556,0.03649579,99.36790596],[4.53661601,0.03649754,99.36700001],[4.53661646,0.03649928,99.366094],[4.53661691,0.03650103,99.36518795],[4.53661735,0.03650278,99.36428184],[4.5366178,0.03650453,99.36337571],[4.53661825,0.03650627,99.36246954],[4.53661869,0.03650802,99.36156335],[4.53661914,0.03650977,99.36065714],[4.53661959,0.03651152,99.35975093],[4.53662003,0.03651326,99.35884472],[4.53662048,0.03651501,99.35793851],[4.53662093,0.03651676,99.35703232],[4.53662138,0.03651851,99.35612615],[4.53662182,0.03652025,99.35522001],[4.53662227,0.036522,99.35431391],[4.53662272,0.03652375,99.35340785],[4.53662316,0.0365255,99.35250184],[4.53662361,0.03652724,99.35159588],[4.53662406,0.03652899,99.35068999],[4.53662451,0.03653074,99.34978418],[4.53662495,0.03653248,99.34887844],[4.5366254,0.03653423,99.34797279],[4.53662585,0.03653598,99.34706723],[4.53662629,0.03653773,99.34616178],[4.53662674,0.03653947,99.34525643],[4.53662719,0.03654122,99.34435119],[4.53662764,0.03654297,99.34344608],[4.53662808,0.03654472,99.34254109],[4.53662853,0.03654646,99.34163625],[4.53662898,0.03654821,99.34073154],[4.53662943,0.03654996,99.33982699],[4.53662987,0.03655171,99.33892259],[4.53663032,0.03655345,99.33801836],[4.53663077,0.0365552,99.3371143],[4.53663121,0.03655695,99.33621042],[4.53663166,0.03655869,99.33530672],[4.53663211,0.03656044,99.33440322],[4.53663256,0.03656219,99.33349991],[4.536633,0.03656394,99.33259681],[4.53663345,0.03656568,99.33169393],[4.5366339,0.03656743,99.33079127],[4.53663434,0.03656918,99.32988883],[4.53663479,0.03657093,99.32898663],[4.53663524,0.03657267,99.32808467],[4.53663569,0.03657442,99.32718296],[4.53663613,0.03657617,99.3262815],[4.53663658,0.03657792,99.32538031],[4.53663703,0.03657966,99.32447939],[4.53663747,0.03658141,99.32357874],[4.53663792,0.03658316,99.32267838],[4.53663837,0.0365849,99.32177831],[4.53663882,0.03658665,99.32087854],[4.53663926,0.0365884,99.31997907],[4.53663971,0.03659015,99.31907992],[4.53664016,0.03659189,99.31818108],[4.5366406,0.03659364,99.31728257],[4.53664105,0.03659539,99.31638439],[4.5366415,0.03659714,99.31548653],[4.53664195,0.03659888,99.31458896],[4.53664239,0.03660063,99.31369165],[4.53664284,0.03660238,99.31279457],[4.53664329,0.03660413,99.31189768],[4.53664373,0.03660587,99.31100096],[4.53664418,0.03660762,99.31010436],[4.53664463,0.03660937,99.30920787],[4.53664507,0.03661112,99.30831145],[4.53664552,0.03661286,99.30741506],[4.53664597,0.03661461,99.30651867],[4.53664642,0.03661636,99.30562226],[4.53664686,0.03661811,99.30472579],[4.53664731,0.03661985,99.30382924],[4.53664775,0.0366216,99.30293256],[4.5366482,0.03662335,99.30203572],[4.53664865,0.0366251,99.30113871],[4.53664909,0.03662684,99.30024148],[4.53664954,0.03662859,99.299344],[4.53664998,0.03663034,99.29844625],[4.53665043,0.03663209,99.29754819],[4.53665088,0.03663383,99.29664979],[4.53665132,0.03663558,99.29575102],[4.53665177,0.03663733,99.29485188],[4.53665221,0.03663908,99.29395237],[4.53665265,0.03664083,99.29305249],[4.5366531,0.03664257,99.29215225],[4.53665354,0.03664432,99.29125165],[4.53665399,0.03664607,99.29035069],[4.53665443,0.03664782,99.28944939],[4.53665487,0.03664957,99.28854774],[4.53665532,0.03665132,99.28764574],[4.53665576,0.03665306,99.28674341],[4.5366562,0.03665481,99.28584074],[4.53665665,0.03665656,99.28493775],[4.53665709,0.03665831,99.28403442],[4.53665753,0.03666006,99.28313078],[4.53665797,0.03666181,99.28222682],[4.53665841,0.03666355,99.28132254],[4.53665886,0.0366653,99.28041795],[4.5366593,0.03666705,99.27951305],[4.53665974,0.0366688,99.27860786],[4.53666018,0.03667055,99.27770236],[4.53666062,0.0366723,99.27679657],[4.53666106,0.03667405,99.27589049],[4.5366615,0.0366758,99.27498412],[4.53666195,0.03667755,99.27407747],[4.53666239,0.03667929,99.27317054],[4.53666283,0.03668104,99.27226334],[4.53666327,0.03668279,99.27135586],[4.53666371,0.03668454,99.27044812],[4.53666415,0.03668629,99.26954012],[4.53666459,0.03668804,99.26863185],[4.53666503,0.03668979,99.26772333],[4.53666547,0.03669154,99.26681456],[4.53666591,0.03669329,99.26590554],[4.53666634,0.03669504,99.26499627],[4.53666678,0.03669679,99.26408676],[4.53666722,0.03669854,99.26317702],[4.53666766,0.03670029,99.26226705],[4.5366681,0.03670204,99.26135684],[4.53666854,0.03670378,99.26044642],[4.53666898,0.03670553,99.25953577],[4.53666942,0.03670728,99.2586249],[4.53666986,0.03670903,99.25771382],[4.53667029,0.03671078,99.25680253],[4.53667073,0.03671253,99.25589103],[4.53667117,0.03671428,99.25497933],[4.53667161,0.03671603,99.25406743],[4.53667205,0.03671778,99.25315534],[4.53667249,0.03671953,99.25224306],[4.53667292,0.03672128,99.25133058],[4.53667336,0.03672303,99.25041793],[4.5366738,0.03672478,99.24950509],[4.53667424,0.03672653,99.24859208],[4.53667468,0.03672828,99.2476789],[4.53667511,0.03673003,99.24676555],[4.53667555,0.03673178,99.24585203],[4.53667599,0.03673353,99.24493835],[4.53667643,0.03673528,99.24402447],[4.53667687,0.03673703,99.24311039],[4.53667731,0.03673878,99.24219607],[4.53667774,0.03674053,99.24128149],[4.53667818,0.03674228,99.24036664],[4.53667862,0.03674403,99.2394515],[4.53667906,0.03674578,99.23853603],[4.5366795,0.03674752,99.23762022],[4.53667994,0.03674927,99.23670405],[4.53668038,0.03675102,99.23578749],[4.53668081,0.03675277,99.23487052],[4.53668125,0.03675452,99.23395313],[4.53668169,0.03675627,99.23303528],[4.53668213,0.03675802,99.23211697],[4.53668257,0.03675977,99.23119816],[4.53668301,0.03676152,99.23027884],[4.53668345,0.03676327,99.22935898],[4.53668388,0.03676502,99.22843856],[4.53668432,0.03676677,99.22751756],[4.53668476,0.03676852,99.22659596],[4.5366852,0.03677027,99.22567374],[4.53668564,0.03677202,99.22475087],[4.53668608,0.03677377,99.22382734],[4.53668652,0.03677552,99.22290312],[4.53668695,0.03677727,99.22197819],[4.53668739,0.03677902,99.22105253],[4.53668783,0.03678077,99.22012613],[4.53668827,0.03678252,99.21919894],[4.53668871,0.03678426,99.21827097],[4.53668915,0.03678601,99.21734218],[4.53668959,0.03678776,99.21641255],[4.53669003,0.03678951,99.21548206],[4.53669046,0.03679126,99.2145507],[4.5366909,0.03679301,99.21361843],[4.53669134,0.03679476,99.21268524],[4.53669178,0.03679651,99.21175111],[4.53669222,0.03679826,99.21081602],[4.53669266,0.03680001,99.20987998],[4.53669309,0.03680176,99.20894302],[4.53669353,0.03680351,99.20800516],[4.53669397,0.03680526,99.20706642],[4.53669441,0.03680701,99.20612683],[4.53669485,0.03680876,99.20518639],[4.53669529,0.03681051,99.20424513],[4.53669573,0.03681226,99.20330308],[4.53669617,0.03681401,99.20236025],[4.5366966,0.03681576,99.20141667],[4.53669704,0.03681751,99.20047236],[4.53669748,0.03681926,99.19952733],[4.53669792,0.036821,99.19858161],[4.53669836,0.03682275,99.19763522],[4.5366988,0.0368245,99.19668817],[4.53669924,0.03682625,99.19574051],[4.53669968,0.036828,99.19479223],[4.53670012,0.03682975,99.19384338],[4.53670056,0.0368315,99.19289397],[4.536701,0.03683325,99.19194403],[4.53670144,0.036835,99.19099358],[4.53670188,0.03683675,99.19004265],[4.53670232,0.0368385,99.18909126],[4.53670275,0.03684025,99.18813943],[4.53670319,0.036842,99.18718719],[4.53670363,0.03684375,99.18623456],[4.53670407,0.03684549,99.18528156],[4.53670451,0.03684724,99.18432822],[4.53670495,0.03684899,99.18337456],[4.53670539,0.03685074,99.18242061],[4.53670583,0.03685249,99.18146639],[4.53670627,0.03685424,99.18051192],[4.53670671,0.03685599,99.17955723],[4.53670716,0.03685774,99.17860234],[4.5367076,0.03685949,99.17764727],[4.53670804,0.03686124,99.17669205],[4.53670848,0.03686299,99.1757367],[4.53670892,0.03686473,99.17478124],[4.53670936,0.03686648,99.1738257],[4.5367098,0.03686823,99.1728701],[4.53671024,0.03686998,99.17191447],[4.53671068,0.03687173,99.17095883],[4.53671112,0.03687348,99.1700032],[4.53671156,0.03687523,99.1690476],[4.536712,0.03687698,99.16809206],[4.53671244,0.03687873,99.16713661],[4.53671289,0.03688048,99.16618126],[4.53671333,0.03688222,99.16522604],[4.53671377,0.03688397,99.16427097],[4.53671421,0.03688572,99.16331608],[4.53671465,0.03688747,99.16236139],[4.53671509,0.03688922,99.16140692],[4.53671553,0.03689097,99.1604527],[4.53671598,0.03689272,99.15949875],[4.53671642,0.03689447,99.1585451],[4.53671686,0.03689621,99.15759175],[4.5367173,0.03689796,99.15663875],[4.53671774,0.03689971,99.15568608],[4.53671819,0.03690146,99.15473375],[4.53671863,0.03690321,99.15378174],[4.53671907,0.03690496,99.15283005],[4.53671951,0.03690671,99.15187869],[4.53671995,0.03690845,99.15092764],[4.5367204,0.0369102,99.14997691],[4.53672084,0.03691195,99.14902648],[4.53672128,0.0369137,99.14807635],[4.53672172,0.03691545,99.14712653],[4.53672217,0.0369172,99.146177],[4.53672261,0.03691895,99.14522776],[4.53672305,0.03692069,99.14427881],[4.53672349,0.03692244,99.14333015],[4.53672394,0.03692419,99.14238176],[4.53672438,0.03692594,99.14143365],[4.53672482,0.03692769,99.14048581],[4.53672526,0.03692944,99.13953824],[4.53672571,0.03693119,99.13859094],[4.53672615,0.03693293,99.13764389],[4.53672659,0.03693468,99.1366971],[4.53672703,0.03693643,99.13575056],[4.53672748,0.03693818,99.13480427],[4.53672792,0.03693993,99.13385822],[4.53672836,0.03694168,99.13291241],[4.5367288,0.03694343,99.13196684],[4.53672925,0.03694517,99.1310215],[4.53672969,0.03694692,99.13007639],[4.53673013,0.03694867,99.1291315],[4.53673057,0.03695042,99.12818683],[4.53673102,0.03695217,99.12724238],[4.53673146,0.03695392,99.12629814],[4.5367319,0.03695567,99.12535411],[4.53673234,0.03695741,99.12441029],[4.53673278,0.03695916,99.12346666],[4.53673323,0.03696091,99.12252324],[4.53673367,0.03696266,99.12158],[4.53673411,0.03696441,99.12063696],[4.53673455,0.03696616,99.1196941],[4.53673499,0.03696791,99.11875142],[4.53673544,0.03696965,99.11780892],[4.53673588,0.0369714,99.11686659],[4.53673632,0.03697315,99.11592443],[4.53673676,0.0369749,99.11498244],[4.5367372,0.03697665,99.11404061],[4.53673764,0.0369784,99.11309893],[4.53673808,0.03698015,99.11215741],[4.53673853,0.0369819,99.11121604],[4.53673897,0.03698365,99.11027482],[4.53673941,0.03698539,99.10933374],[4.53673985,0.03698714,99.1083928],[4.53674029,0.03698889,99.10745199],[4.53674073,0.03699064,99.10651132],[4.53674117,0.03699239,99.10557077],[4.53674161,0.03699414,99.10463034],[4.53674205,0.03699589,99.10369004],[4.53674249,0.03699764,99.10274985],[4.53674293,0.03699939,99.10180977],[4.53674337,0.03700114,99.1008698],[4.53674381,0.03700288,99.09992994],[4.53674425,0.03700463,99.09899018],[4.53674469,0.03700638,99.09805053],[4.53674513,0.03700813,99.09711099],[4.53674557,0.03700988,99.09617155],[4.53674601,0.03701163,99.09523221],[4.53674645,0.03701338,99.09429297],[4.53674689,0.03701513,99.09335384],[4.53674732,0.03701688,99.09241481],[4.53674776,0.03701863,99.09147587],[4.5367482,0.03702038,99.09053704],[4.53674864,0.03702213,99.0895983],[4.53674908,0.03702388,99.08865966],[4.53674952,0.03702563,99.08772112],[4.53674995,0.03702738,99.08678267],[4.53675039,0.03702913,99.08584432],[4.53675083,0.03703088,99.08490605],[4.53675126,0.03703263,99.08396789],[4.5367517,0.03703438,99.08302981],[4.53675214,0.03703613,99.08209182],[4.53675258,0.03703788,99.08115393],[4.53675301,0.03703963,99.08021612],[4.53675345,0.03704138,99.0792784],[4.53675388,0.03704313,99.07834076],[4.53675432,0.03704488,99.07740321],[4.53675476,0.03704663,99.07646575],[4.53675519,0.03704838,99.07552837],[4.53675563,0.03705013,99.07459108],[4.53675606,0.03705188,99.07365386],[4.5367565,0.03705363,99.07271673],[4.53675693,0.03705538,99.07177968],[4.53675737,0.03705713,99.07084271],[4.5367578,0.03705888,99.06990582],[4.53675824,0.03706063,99.06896901],[4.53675867,0.03706238,99.06803228],[4.53675911,0.03706413,99.06709564],[4.53675954,0.03706588,99.06615907],[4.53675998,0.03706763,99.06522258],[4.53676041,0.03706938,99.06428617],[4.53676084,0.03707113,99.06334984],[4.53676128,0.03707289,99.06241358],[4.53676171,0.03707464,99.06147741],[4.53676215,0.03707639,99.06054131],[4.53676258,0.03707814,99.05960529],[4.53676301,0.03707989,99.05866935],[4.53676345,0.03708164,99.05773348],[4.53676388,0.03708339,99.05679769],[4.53676431,0.03708514,99.05586198],[4.53676475,0.03708689,99.05492635],[4.53676518,0.03708864,99.05399079],[4.53676561,0.03709039,99.0530553],[4.53676604,0.03709214,99.05211989],[4.53676648,0.0370939,99.05118456],[4.53676691,0.03709565,99.0502493],[4.53676734,0.0370974,99.04931411],[4.53676778,0.03709915,99.048379],[4.53676821,0.0371009,99.04744396],[4.53676864,0.03710265,99.046509],[4.53676907,0.0371044,99.0455741],[4.53676951,0.03710615,99.04463929],[4.53676994,0.0371079,99.04370454],[4.53677037,0.03710966,99.04276987],[4.5367708,0.03711141,99.04183526],[4.53677123,0.03711316,99.04090073],[4.53677167,0.03711491,99.03996627],[4.5367721,0.03711666,99.03903189],[4.53677253,0.03711841,99.03809757],[4.53677296,0.03712016,99.03716332],[4.5367734,0.03712191,99.03622915],[4.53677383,0.03712366,99.03529504],[4.53677426,0.03712542,99.034361],[4.53677469,0.03712717,99.03342703],[4.53677512,0.03712892,99.03249314],[4.53677556,0.03713067,99.03155931],[4.53677599,0.03713242,99.03062554],[4.53677642,0.03713417,99.02969185],[4.53677685,0.03713592,99.02875822],[4.53677728,0.03713767,99.02782467],[4.53677772,0.03713942,99.02689117],[4.53677815,0.03714118,99.02595775],[4.53677858,0.03714293,99.02502439],[4.53677901,0.03714468,99.0240911],[4.53677944,0.03714643,99.02315787],[4.53677988,0.03714818,99.02222471],[4.53678031,0.03714993,99.02129162],[4.53678074,0.03715168,99.02035859],[4.53678117,0.03715343,99.01942562],[4.53678161,0.03715519,99.01849272],[4.53678204,0.03715694,99.01755988],[4.53678247,0.03715869,99.01662711],[4.5367829,0.03716044,99.01569439],[4.53678334,0.03716219,99.01476173],[4.53678377,0.03716394,99.01382912],[4.5367842,0.03716569,99.01289654],[4.53678463,0.03716744,99.01196401],[4.53678507,0.03716919,99.01103151],[4.5367855,0.03717094,99.01009903],[4.53678593,0.0371727,99.00916658],[4.53678636,0.03717445,99.00823414],[4.5367868,0.0371762,99.00730171],[4.53678723,0.03717795,99.00636929],[4.53678766,0.0371797,99.00543686],[4.5367881,0.03718145,99.00450444],[4.53678853,0.0371832,99.003572],[4.53678896,0.03718495,99.00263955],[4.53678939,0.0371867,99.00170707],[4.53678983,0.03718845,99.00077457],[4.53679026,0.0371902,98.99984204],[4.53679069,0.03719196,98.99890947],[4.53679113,0.03719371,98.99797685],[4.53679156,0.03719546,98.99704419],[4.536792,0.03719721,98.99611148],[4.53679243,0.03719896,98.99517871],[4.53679286,0.03720071,98.99424587],[4.5367933,0.03720246,98.99331296],[4.53679373,0.03720421,98.99237998],[4.53679416,0.03720596,98.99144692],[4.5367946,0.03720771,98.99051377],[4.53679503,0.03720946,98.98958053],[4.53679547,0.03721121,98.9886472],[4.5367959,0.03721296,98.98771376],[4.53679634,0.03721471,98.98678021],[4.53679677,0.03721647,98.98584655],[4.53679721,0.03721822,98.98491278],[4.53679764,0.03721997,98.98397888],[4.53679807,0.03722172,98.98304484],[4.53679851,0.03722347,98.98211068],[4.53679894,0.03722522,98.98117637],[4.53679938,0.03722697,98.98024192],[4.53679981,0.03722872,98.97930732],[4.53680025,0.03723047,98.97837255],[4.53680068,0.03723222,98.97743763],[4.53680112,0.03723397,98.97650254],[4.53680155,0.03723572,98.97556727],[4.53680199,0.03723747,98.97463183],[4.53680243,0.03723922,98.9736962],[4.53680286,0.03724097,98.97276038],[4.5368033,0.03724272,98.97182436],[4.53680373,0.03724447,98.97088815],[4.53680417,0.03724622,98.96995172],[4.5368046,0.03724797,98.96901509],[4.53680504,0.03724972,98.96807823],[4.53680547,0.03725147,98.96714115],[4.53680591,0.03725322,98.96620384],[4.53680634,0.03725497,98.9652663],[4.53680678,0.03725672,98.96432851],[4.53680721,0.03725847,98.96339048],[4.53680765,0.03726023,98.9624522],[4.53680808,0.03726198,98.96151365],[4.53680852,0.03726373,98.96057485],[4.53680895,0.03726548,98.95963577],[4.53680939,0.03726723,98.95869642],[4.53680982,0.03726898,98.95775679],[4.53681026,0.03727073,98.95681689],[4.53681069,0.03727248,98.95587672],[4.53681113,0.03727423,98.9549363],[4.53681156,0.03727598,98.95399565],[4.536812,0.03727773,98.95305478],[4.53681243,0.03727948,98.9521137],[4.53681287,0.03728123,98.95117243],[4.5368133,0.03728298,98.95023099],[4.53681373,0.03728473,98.94928938],[4.53681417,0.03728648,98.94834762],[4.5368146,0.03728823,98.94740572],[4.53681504,0.03728998,98.9464637],[4.53681547,0.03729173,98.94552158],[4.53681591,0.03729349,98.94457936],[4.53681634,0.03729524,98.94363707],[4.53681677,0.03729699,98.94269471],[4.53681721,0.03729874,98.9417523],[4.53681764,0.03730049,98.94080986],[4.53681808,0.03730224,98.93986739],[4.53681851,0.03730399,98.93892492],[4.53681894,0.03730574,98.93798246],[4.53681938,0.03730749,98.93704001],[4.53681981,0.03730924,98.93609761],[4.53682025,0.03731099,98.93515525],[4.53682068,0.03731274,98.93421296],[4.53682111,0.03731449,98.93327074],[4.53682155,0.03731624,98.93232862],[4.53682198,0.03731799,98.93138661],[4.53682242,0.03731975,98.93044472],[4.53682285,0.0373215,98.92950297],[4.53682328,0.03732325,98.92856137],[4.53682372,0.037325,98.92761994],[4.53682415,0.03732675,98.92667868],[4.53682458,0.0373285,98.92573762],[4.53682502,0.03733025,98.92479677],[4.53682545,0.037332,98.92385614],[4.53682589,0.03733375,98.92291576],[4.53682632,0.0373355,98.92197562],[4.53682675,0.03733725,98.92103575],[4.53682719,0.037339,98.92009617],[4.53682762,0.03734075,98.91915688],[4.53682805,0.03734251,98.9182179],[4.53682849,0.03734426,98.91727925],[4.53682892,0.03734601,98.91634094],[4.53682936,0.03734776,98.91540299],[4.53682979,0.03734951,98.91446541],[4.53683022,0.03735126,98.91352821],[4.53683066,0.03735301,98.91259141],[4.53683109,0.03735476,98.91165503],[4.53683152,0.03735651,98.91071907],[4.53683196,0.03735826,98.90978355],[4.53683239,0.03736001,98.90884848],[4.53683283,0.03736176,98.90791385],[4.53683326,0.03736351,98.90697967],[4.53683369,0.03736526,98.90604595],[4.53683413,0.03736701,98.90511268],[4.53683456,0.03736877,98.90417989],[4.536835,0.03737052,98.90324757],[4.53683543,0.03737227,98.90231572],[4.53683586,0.03737402,98.90138435],[4.5368363,0.03737577,98.90045347],[4.53683673,0.03737752,98.89952308],[4.53683717,0.03737927,98.89859318],[4.5368376,0.03738102,98.89766378],[4.53683803,0.03738277,98.89673489],[4.53683847,0.03738452,98.89580651],[4.5368389,0.03738627,98.89487865],[4.53683934,0.03738802,98.8939513],[4.53683977,0.03738977,98.89302448],[4.53684021,0.03739152,98.89209819],[4.53684064,0.03739328,98.89117244],[4.53684107,0.03739503,98.89024722],[4.53684151,0.03739678,98.88932255],[4.53684194,0.03739853,98.88839843],[4.53684237,0.03740028,98.88747486],[4.53684281,0.03740203,98.88655185],[4.53684324,0.03740378,98.88562941],[4.53684368,0.03740553,98.88470754],[4.53684411,0.03740728,98.88378622],[4.53684454,0.03740903,98.88286545],[4.53684498,0.03741078,98.88194519],[4.53684541,0.03741253,98.88102542],[4.53684585,0.03741428,98.88010613],[4.53684628,0.03741603,98.87918728],[4.53684671,0.03741778,98.87826886],[4.53684715,0.03741953,98.87735084],[4.53684758,0.03742128,98.8764332],[4.53684801,0.03742303,98.87551592],[4.53684845,0.03742478,98.87459898],[4.53684888,0.03742654,98.87368234],[4.53684932,0.03742829,98.872766],[4.53684975,0.03743004,98.87184992],[4.53685018,0.03743179,98.87093409],[4.53685062,0.03743354,98.87001848],[4.53685105,0.03743529,98.86910306],[4.53685148,0.03743704,98.86818782],[4.53685192,0.03743879,98.86727273],[4.53685235,0.03744054,98.86635777],[4.53685278,0.03744229,98.86544293],[4.53685321,0.03744404,98.86452818],[4.53685365,0.03744579,98.86361353],[4.53685408,0.03744755,98.86269897],[4.53685451,0.0374493,98.8617845],[4.53685495,0.03745105,98.8608701],[4.53685538,0.0374528,98.85995577],[4.53685581,0.03745455,98.85904151],[4.53685624,0.0374563,98.8581273],[4.53685668,0.03745805,98.85721314],[4.53685711,0.0374598,98.85629903],[4.53685754,0.03746155,98.85538495],[4.53685797,0.03746331,98.8544709],[4.5368584,0.03746506,98.85355688],[4.53685884,0.03746681,98.85264288],[4.53685927,0.03746856,98.85172888],[4.5368597,0.03747031,98.85081489],[4.53686013,0.03747206,98.84990089],[4.53686056,0.03747381,98.84898689],[4.53686099,0.03747556,98.84807287],[4.53686143,0.03747732,98.84715882],[4.53686186,0.03747907,98.84624475],[4.53686229,0.03748082,98.84533063],[4.53686272,0.03748257,98.84441648],[4.53686315,0.03748432,98.84350227],[4.53686358,0.03748607,98.84258801],[4.53686401,0.03748782,98.84167368],[4.53686445,0.03748958,98.84075928],[4.53686488,0.03749133,98.83984481],[4.53686531,0.03749308,98.83893024],[4.53686574,0.03749483,98.83801559],[4.53686617,0.03749658,98.83710084],[4.5368666,0.03749833,98.83618599],[4.53686703,0.03750008,98.83527102],[4.53686746,0.03750183,98.83435593],[4.53686789,0.03750359,98.83344072],[4.53686833,0.03750534,98.83252537],[4.53686876,0.03750709,98.83160989],[4.53686919,0.03750884,98.83069426],[4.53686962,0.03751059,98.82977847],[4.53687005,0.03751234,98.82886253],[4.53687048,0.0375141,98.82794642],[4.53687091,0.03751585,98.82703013],[4.53687134,0.0375176,98.82611366],[4.53687177,0.03751935,98.82519701],[4.5368722,0.0375211,98.82428015],[4.53687263,0.03752285,98.8233631],[4.53687306,0.0375246,98.82244584],[4.53687349,0.03752636,98.82152836],[4.53687392,0.03752811,98.82061065],[4.53687435,0.03752986,98.81969272],[4.53687478,0.03753161,98.81877455],[4.53687521,0.03753336,98.81785614],[4.53687565,0.03753511,98.8169375],[4.53687608,0.03753687,98.81601866],[4.53687651,0.03753862,98.81509963],[4.53687694,0.03754037,98.81418043],[4.53687737,0.03754212,98.81326108],[4.5368778,0.03754387,98.8123416],[4.53687823,0.03754562,98.811422],[4.53687866,0.03754737,98.81050232],[4.53687909,0.03754913,98.80958256],[4.53687952,0.03755088,98.80866274],[4.53687995,0.03755263,98.80774289],[4.53688038,0.03755438,98.80682303],[4.53688081,0.03755613,98.80590316],[4.53688124,0.03755788,98.80498332],[4.53688167,0.03755964,98.80406352],[4.5368821,0.03756139,98.80314378],[4.53688253,0.03756314,98.80222412],[4.53688296,0.03756489,98.80130456],[4.53688339,0.03756664,98.80038512],[4.53688382,0.03756839,98.79946581],[4.53688426,0.03757014,98.79854666],[4.53688469,0.0375719,98.79762769],[4.53688512,0.03757365,98.79670891],[4.53688555,0.0375754,98.79579035],[4.53688598,0.03757715,98.79487202],[4.53688641,0.0375789,98.79395395],[4.53688684,0.03758065,98.79303615],[4.53688727,0.0375824,98.79211864],[4.5368877,0.03758416,98.79120145],[4.53688813,0.03758591,98.79028459],[4.53688857,0.03758766,98.78936806],[4.536889,0.03758941,98.78845189],[4.53688943,0.03759116,98.78753606],[4.53688986,0.03759291,98.78662059],[4.53689029,0.03759466,98.78570548],[4.53689072,0.03759641,98.78479075],[4.53689116,0.03759817,98.78387638],[4.53689159,0.03759992,98.78296239],[4.53689202,0.03760167,98.78204879],[4.53689245,0.03760342,98.78113558],[4.53689288,0.03760517,98.78022277],[4.53689331,0.03760692,98.77931035],[4.53689375,0.03760867,98.77839834],[4.53689418,0.03761042,98.77748675],[4.53689461,0.03761218,98.77657557],[4.53689504,0.03761393,98.77566482],[4.53689547,0.03761568,98.77475449],[4.53689591,0.03761743,98.7738446],[4.53689634,0.03761918,98.77293515],[4.53689677,0.03762093,98.77202615],[4.5368972,0.03762268,98.77111759],[4.53689763,0.03762443,98.7702095],[4.53689807,0.03762618,98.76930187],[4.5368985,0.03762794,98.7683947],[4.53689893,0.03762969,98.76748801],[4.53689936,0.03763144,98.7665818],[4.53689979,0.03763319,98.76567607],[4.53690023,0.03763494,98.76477083],[4.53690066,0.03763669,98.76386609],[4.53690109,0.03763844,98.76296186],[4.53690152,0.03764019,98.76205812],[4.53690195,0.03764194,98.76115491],[4.53690239,0.0376437,98.76025221],[4.53690282,0.03764545,98.75935004],[4.53690325,0.0376472,98.75844839],[4.53690368,0.03764895,98.75754729],[4.53690412,0.0376507,98.75664672],[4.53690455,0.03765245,98.75574671],[4.53690498,0.0376542,98.75484724],[4.53690541,0.03765595,98.75394834],[4.53690584,0.03765771,98.75305],[4.53690628,0.03765946,98.75215223],[4.53690671,0.03766121,98.75125503],[4.53690714,0.03766296,98.75035842],[4.53690757,0.03766471,98.74946239],[4.536908,0.03766646,98.74856696],[4.53690844,0.03766821,98.74767213],[4.53690887,0.03766996,98.7467779],[4.5369093,0.03767171,98.74588428],[4.53690973,0.03767347,98.74499128],[4.53691016,0.03767522,98.7440989],[4.53691059,0.03767697,98.74320715],[4.53691103,0.03767872,98.74231603],[4.53691146,0.03768047,98.74142555],[4.53691189,0.03768222,98.74053572],[4.53691232,0.03768397,98.73964653],[4.53691275,0.03768572,98.73875801],[4.53691319,0.03768747,98.73787014],[4.53691362,0.03768923,98.73698295],[4.53691405,0.03769098,98.73609643],[4.53691448,0.03769273,98.73521058],[4.53691491,0.03769448,98.73432543],[4.53691534,0.03769623,98.73344096],[4.53691578,0.03769798,98.73255719],[4.53691621,0.03769973,98.73167413],[4.53691664,0.03770148,98.73079177],[4.53691707,0.03770324,98.72991013],[4.5369175,0.03770499,98.72902921],[4.53691793,0.03770674,98.72814902],[4.53691836,0.03770849,98.72726956],[4.5369188,0.03771024,98.72639083],[4.53691923,0.03771199,98.72551285],[4.53691966,0.03771374,98.72463562],[4.53692009,0.03771549,98.72375915],[4.53692052,0.03771725,98.72288343],[4.53692095,0.037719,98.72200848],[4.53692138,0.03772075,98.72113431],[4.53692181,0.0377225,98.72026092],[4.53692225,0.03772425,98.71938831],[4.53692268,0.037726,98.71851649],[4.53692311,0.03772775,98.71764546],[4.53692354,0.03772951,98.71677524],[4.53692397,0.03773126,98.71590582],[4.5369244,0.03773301,98.71503717],[4.53692483,0.03773476,98.71416929],[4.53692526,0.03773651,98.71330215],[4.53692569,0.03773826,98.71243574],[4.53692612,0.03774001,98.71157005],[4.53692655,0.03774177,98.71070505],[4.53692698,0.03774352,98.70984073],[4.53692741,0.03774527,98.70897707],[4.53692784,0.03774702,98.70811406],[4.53692827,0.03774877,98.70725169],[4.5369287,0.03775052,98.70638997],[4.53692913,0.03775228,98.70552888],[4.53692956,0.03775403,98.70466841],[4.53692999,0.03775578,98.70380857],[4.53693042,0.03775753,98.70294934],[4.53693085,0.03775928,98.70209072],[4.53693128,0.03776103,98.70123269],[4.53693171,0.03776279,98.70037527],[4.53693214,0.03776454,98.69951843],[4.53693257,0.03776629,98.69866217],[4.536933,0.03776804,98.69780649],[4.53693343,0.03776979,98.69695137],[4.53693386,0.03777154,98.69609682],[4.53693429,0.0377733,98.69524283],[4.53693472,0.03777505,98.69438938],[4.53693515,0.0377768,98.69353648],[4.53693558,0.03777855,98.69268412],[4.536936,0.0377803,98.69183228],[4.53693643,0.03778206,98.69098097],[4.53693686,0.03778381,98.69013018],[4.53693729,0.03778556,98.6892799],[4.53693772,0.03778731,98.68843012],[4.53693815,0.03778906,98.68758084],[4.53693858,0.03779081,98.68673205],[4.53693901,0.03779257,98.68588375],[4.53693943,0.03779432,98.68503593],[4.53693986,0.03779607,98.68418857],[4.53694029,0.03779782,98.68334169],[4.53694072,0.03779957,98.68249526],[4.53694115,0.03780133,98.68164928],[4.53694158,0.03780308,98.68080375],[4.536942,0.03780483,98.67995866],[4.53694243,0.03780658,98.679114],[4.53694286,0.03780833,98.67826977],[4.53694329,0.03781009,98.67742595],[4.53694372,0.03781184,98.67658255],[4.53694415,0.03781359,98.67573956],[4.53694457,0.03781534,98.67489696],[4.536945,0.0378171,98.67405476],[4.53694543,0.03781885,98.67321294],[4.53694586,0.0378206,98.67237151],[4.53694629,0.03782235,98.67153045],[4.53694671,0.0378241,98.67068975],[4.53694714,0.03782586,98.66984942],[4.53694757,0.03782761,98.66900943],[4.536948,0.03782936,98.6681698],[4.53694843,0.03783111,98.6673305],[4.53694885,0.03783286,98.66649154],[4.53694928,0.03783462,98.66565291],[4.53694971,0.03783637,98.66481459],[4.53695014,0.03783812,98.66397659],[4.53695057,0.03783987,98.66313889],[4.53695099,0.03784162,98.6623015],[4.53695142,0.03784338,98.6614644],[4.53695185,0.03784513,98.66062759],[4.53695228,0.03784688,98.65979105],[4.53695271,0.03784863,98.65895479],[4.53695313,0.03785038,98.6581188],[4.53695356,0.03785214,98.65728307],[4.53695399,0.03785389,98.65644759],[4.53695442,0.03785564,98.65561235],[4.53695485,0.03785739,98.65477736],[4.53695528,0.03785914,98.6539426],[4.5369557,0.0378609,98.65310807],[4.53695613,0.03786265,98.65227376],[4.53695656,0.0378644,98.65143966],[4.53695699,0.03786615,98.65060577],[4.53695742,0.0378679,98.64977208],[4.53695785,0.03786966,98.64893858],[4.53695827,0.03787141,98.64810527],[4.5369587,0.03787316,98.64727214],[4.53695913,0.03787491,98.64643918],[4.53695956,0.03787666,98.64560639],[4.53695999,0.03787842,98.64477376],[4.53696042,0.03788017,98.64394129],[4.53696085,0.03788192,98.64310896],[4.53696127,0.03788367,98.64227677],[4.5369617,0.03788542,98.64144471],[4.53696213,0.03788718,98.64061278],[4.53696256,0.03788893,98.63978099],[4.53696299,0.03789068,98.63894935],[4.53696342,0.03789243,98.63811787],[4.53696385,0.03789418,98.63728656],[4.53696427,0.03789594,98.63645544],[4.5369647,0.03789769,98.63562451],[4.53696513,0.03789944,98.63479378],[4.53696556,0.03790119,98.63396327],[4.53696599,0.03790294,98.63313298],[4.53696642,0.03790469,98.63230294],[4.53696685,0.03790645,98.63147314],[4.53696728,0.0379082,98.63064361],[4.53696771,0.03790995,98.62981435],[4.53696813,0.0379117,98.62898537],[4.53696856,0.03791345,98.62815669],[4.53696899,0.03791521,98.62732831],[4.53696942,0.03791696,98.62650025],[4.53696985,0.03791871,98.62567252],[4.53697028,0.03792046,98.62484513],[4.53697071,0.03792221,98.62401809],[4.53697114,0.03792396,98.62319141],[4.53697157,0.03792572,98.62236511],[4.536972,0.03792747,98.62153919],[4.53697243,0.03792922,98.62071367],[4.53697286,0.03793097,98.61988855],[4.53697329,0.03793272,98.61906384],[4.53697372,0.03793447,98.61823953],[4.53697415,0.03793623,98.61741564],[4.53697458,0.03793798,98.61659215],[4.536975,0.03793973,98.61576907],[4.53697543,0.03794148,98.6149464],[4.53697586,0.03794323,98.61412414],[4.53697629,0.03794498,98.61330229],[4.53697672,0.03794674,98.61248086],[4.53697715,0.03794849,98.61165984],[4.53697758,0.03795024,98.61083923],[4.53697801,0.03795199,98.61001904],[4.53697844,0.03795374,98.60919927],[4.53697887,0.03795549,98.60837991],[4.5369793,0.03795725,98.60756097],[4.53697973,0.037959,98.60674245],[4.53698016,0.03796075,98.60592435],[4.53698059,0.0379625,98.60510667],[4.53698102,0.03796425,98.60428941],[4.53698146,0.037966,98.60347258],[4.53698189,0.03796775,98.60265616],[4.53698232,0.03796951,98.60184017],[4.53698275,0.03797126,98.60102461],[4.53698318,0.03797301,98.60020947],[4.53698361,0.03797476,98.59939476],[4.53698404,0.03797651,98.59858047],[4.53698447,0.03797826,98.59776662],[4.5369849,0.03798002,98.59695319],[4.53698533,0.03798177,98.59614019],[4.53698576,0.03798352,98.59532762],[4.53698619,0.03798527,98.59451549],[4.53698662,0.03798702,98.59370379],[4.53698705,0.03798877,98.59289252],[4.53698748,0.03799052,98.59208168],[4.53698791,0.03799228,98.59127128],[4.53698834,0.03799403,98.59046132],[4.53698877,0.03799578,98.58965179],[4.5369892,0.03799753,98.5888427],[4.53698963,0.03799928,98.58803405],[4.53699006,0.03800103,98.58722584],[4.53699049,0.03800278,98.58641808],[4.53699092,0.03800454,98.58561075],[4.53699135,0.03800629,98.58480386],[4.53699178,0.03800804,98.58399742],[4.53699221,0.03800979,98.58319142],[4.53699264,0.03801154,98.58238587],[4.53699307,0.03801329,98.58158076],[4.5369935,0.03801505,98.5807761],[4.53699393,0.0380168,98.57997188],[4.53699436,0.03801855,98.57916812],[4.53699479,0.0380203,98.5783648],[4.53699522,0.03802205,98.57756194],[4.53699565,0.0380238,98.57675952],[4.53699608,0.03802555,98.57595756],[4.53699651,0.03802731,98.57515605],[4.53699694,0.03802906,98.574355],[4.53699737,0.03803081,98.57355439],[4.5369978,0.03803256,98.57275425],[4.53699823,0.03803431,98.57195456],[4.53699866,0.03803606,98.57115533],[4.53699909,0.03803782,98.57035656],[4.53699952,0.03803957,98.56955824],[4.53699995,0.03804132,98.56876039],[4.53700038,0.03804307,98.567963],[4.53700081,0.03804482,98.56716607],[4.53700124,0.03804657,98.5663696],[4.53700167,0.03804833,98.56557359],[4.5370021,0.03805008,98.56477805],[4.53700253,0.03805183,98.56398298],[4.53700296,0.03805358,98.56318837],[4.53700338,0.03805533,98.56239423],[4.53700381,0.03805708,98.56160056],[4.53700424,0.03805884,98.56080736],[4.53700467,0.03806059,98.56001463],[4.5370051,0.03806234,98.55922237],[4.53700553,0.03806409,98.55843058],[4.53700596,0.03806584,98.55763926],[4.53700638,0.0380676,98.55684842],[4.53700681,0.03806935,98.55605805],[4.53700724,0.0380711,98.55526815],[4.53700767,0.03807285,98.55447874],[4.5370081,0.0380746,98.5536898],[4.53700852,0.03807636,98.55290134],[4.53700895,0.03807811,98.55211336],[4.53700938,0.03807986,98.55132586],[4.53700981,0.03808161,98.55053885],[4.53701023,0.03808337,98.54975235],[4.53701066,0.03808512,98.5489664],[4.53701109,0.03808687,98.54818101],[4.53701151,0.03808862,98.54739621],[4.53701194,0.03809037,98.54661202],[4.53701237,0.03809213,98.54582848],[4.53701279,0.03809388,98.54504559],[4.53701322,0.03809563,98.5442634],[4.53701364,0.03809738,98.54348192],[4.53701407,0.03809914,98.54270118],[4.5370145,0.03810089,98.5419212],[4.53701492,0.03810264,98.54114202],[4.53701535,0.03810439,98.54036364],[4.53701577,0.03810615,98.5395861],[4.5370162,0.0381079,98.53880943],[4.53701663,0.03810965,98.53803364],[4.53701705,0.03811141,98.53725876],[4.53701748,0.03811316,98.53648482],[4.5370179,0.03811491,98.53571184],[4.53701833,0.03811666,98.53493985],[4.53701875,0.03811842,98.53416886],[4.53701918,0.03812017,98.53339891],[4.5370196,0.03812192,98.53263002],[4.53702003,0.03812367,98.5318622],[4.53702045,0.03812543,98.5310955],[4.53702088,0.03812718,98.53032992],[4.5370213,0.03812893,98.5295655],[4.53702173,0.03813068,98.52880225],[4.53702215,0.03813244,98.52804021],[4.53702258,0.03813419,98.5272794],[4.537023,0.03813594,98.52651983],[4.53702343,0.0381377,98.52576154],[4.53702385,0.03813945,98.52500455],[4.53702428,0.0381412,98.52424888],[4.5370247,0.03814295,98.52349455],[4.53702513,0.03814471,98.52274159],[4.53702555,0.03814646,98.52199003],[4.53702598,0.03814821,98.52123988],[4.53702641,0.03814996,98.52049116],[4.53702683,0.03815172,98.51974391],[4.53702726,0.03815347,98.51899815],[4.53702768,0.03815522,98.51825389],[4.53702811,0.03815698,98.51751117],[4.53702853,0.03815873,98.51677001],[4.53702896,0.03816048,98.51603043],[4.53702938,0.03816223,98.51529247],[4.53702981,0.03816399,98.51455615],[4.53703023,0.03816574,98.51382151],[4.53703066,0.03816749,98.51308856],[4.53703109,0.03816924,98.51235733],[4.53703151,0.038171,98.51162786],[4.53703194,0.03817275,98.51090017],[4.53701835,0.03817608,98.51090017]]],"type":"Polygon"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":2,"type":"none","predecessorId":2,"sOffset":53.8544139403}},{"geometry":{"coordinates":[[[4.53649495,0.03650002,99.26451101],[4.53649451,0.03649827,99.26522096],[4.53649408,0.03649652,99.2659302],[4.53649364,0.03649477,99.26663877],[4.5364932,0.03649302,99.26734672],[4.53649276,0.03649128,99.26805408],[4.53649233,0.03648953,99.26876088],[4.53649189,0.03648778,99.26946717],[4.53649145,0.03648603,99.27017298],[4.53649101,0.03648428,99.27087836],[4.53649058,0.03648253,99.27158333],[4.53649014,0.03648079,99.27228795],[4.5364897,0.03647904,99.27299224],[4.53648927,0.03647729,99.27369623],[4.53648883,0.03647554,99.27439993],[4.53648839,0.03647379,99.27510335],[4.53648796,0.03647204,99.27580648],[4.53648752,0.0364703,99.27650932],[4.53648708,0.03646855,99.27721188],[4.53648664,0.0364668,99.27791416],[4.53648621,0.03646505,99.27861616],[4.53648577,0.0364633,99.27931789],[4.53648533,0.03646155,99.28001933],[4.5364849,0.03645981,99.28072051],[4.53648446,0.03645807,99.28142141],[4.53648403,0.03645632,99.28212204],[4.53648359,0.03645457,99.2828224],[4.53648315,0.03645282,99.28352249],[4.53648272,0.03645107,99.28422231],[4.53648228,0.03644932,99.28492188],[4.53648184,0.03644758,99.28562118],[4.53648141,0.03644583,99.28632021],[4.53648097,0.03644408,99.28701899],[4.53648053,0.03644233,99.28771752],[4.53648009,0.03644058,99.28841578],[4.53647966,0.03643883,99.28911379],[4.53647922,0.03643709,99.28981155],[4.53647878,0.03643534,99.29050906],[4.53647834,0.03643359,99.29120632],[4.53647791,0.03643184,99.29190332],[4.53647747,0.03643009,99.29260009],[4.53647703,0.03642835,99.2932966],[4.53647659,0.0364266,99.29399288],[4.53647615,0.03642485,99.29468891],[4.53647571,0.0364231,99.2953847],[4.53647528,0.03642135,99.29608025],[4.53647484,0.03641961,99.29677557],[4.5364744,0.03641786,99.29747065],[4.53647396,0.03641611,99.29816549],[4.53647352,0.03641436,99.2988601],[4.53647308,0.03641261,99.29955448],[4.53647264,0.03641087,99.30024863],[4.5364722,0.03640912,99.30094254],[4.53647176,0.03640737,99.30163624],[4.53647132,0.03640562,99.3023297],[4.53647088,0.03640388,99.30302294],[4.53647043,0.03640213,99.30371596],[4.53646999,0.03640038,99.30440875],[4.53646955,0.03639864,99.30510132],[4.53646911,0.03639689,99.30579368],[4.53646867,0.03639514,99.30648581],[4.53646822,0.03639339,99.30717773],[4.53646778,0.03639165,99.30786943],[4.53646734,0.0363899,99.30856092],[4.53646689,0.03638815,99.30925219],[4.53646645,0.03638641,99.30994326],[4.53646601,0.03638466,99.31063411],[4.53646556,0.03638291,99.31132475],[4.53646512,0.03638117,99.31201519],[4.53646467,0.03637942,99.31270541],[4.53646423,0.03637768,99.31339543],[4.53646378,0.03637593,99.31408525],[4.53646334,0.03637418,99.31477486],[4.53646289,0.03637244,99.31546423],[4.53646244,0.03637069,99.31615333],[4.536462,0.03636895,99.31684217],[4.53646155,0.0363672,99.31753075],[4.5364611,0.03636545,99.31821906],[4.53646066,0.03636371,99.31890711],[4.53646021,0.03636196,99.31959491],[4.53645976,0.03636022,99.32028245],[4.53645931,0.03635847,99.32096972],[4.53645887,0.03635673,99.32165675],[4.53645842,0.03635498,99.32234352],[4.53645797,0.03635323,99.32303004],[4.53645752,0.03635149,99.32371631],[4.53645707,0.03634974,99.32440233],[4.53645662,0.036348,99.3250881],[4.53645618,0.03634625,99.32577363],[4.53645573,0.03634451,99.32645891],[4.53645528,0.03634276,99.32714394],[4.53645483,0.03634102,99.32782874],[4.53645438,0.03633927,99.32851329],[4.53645393,0.03633753,99.32919761],[4.53645348,0.03633578,99.32988168],[4.53645303,0.03633404,99.33056552],[4.53645258,0.03633229,99.33124913],[4.53645213,0.03633055,99.3319325],[4.53645168,0.0363288,99.33261563],[4.53645123,0.03632706,99.33329854],[4.53645078,0.03632531,99.33398121],[4.53645033,0.03632357,99.33466366],[4.53644988,0.03632182,99.33534587],[4.53644943,0.03632008,99.33602787],[4.53644898,0.03631833,99.33670963],[4.53644853,0.03631659,99.33739117],[4.53644808,0.03631484,99.3380725],[4.53644763,0.0363131,99.33875361],[4.53644718,0.03631135,99.33943453],[4.53644673,0.03630961,99.34011526],[4.53644628,0.03630786,99.34079581],[4.53644583,0.03630612,99.34147618],[4.53644538,0.03630437,99.3421564],[4.53644493,0.03630263,99.34283647],[4.53644448,0.03630088,99.3435164],[4.53644403,0.03629914,99.34419619],[4.53644358,0.03629739,99.34487587],[4.53644312,0.03629565,99.34555543],[4.53644267,0.0362939,99.3462349],[4.53644222,0.03629216,99.34691427],[4.53644177,0.03629041,99.34759356],[4.53644132,0.03628867,99.34827278],[4.53644087,0.03628692,99.34895194],[4.53644042,0.03628518,99.34963104],[4.53643997,0.03628343,99.3503101],[4.53643953,0.03628168,99.35098911],[4.53643908,0.03627994,99.35166809],[4.53643863,0.03627819,99.35234704],[4.53643818,0.03627645,99.35302596],[4.53643773,0.0362747,99.35370487],[4.53643728,0.03627296,99.35438377],[4.53643683,0.03627121,99.35506266],[4.53643638,0.03626947,99.35574155],[4.53643593,0.03626772,99.35642044],[4.53643548,0.03626598,99.35709935],[4.53643503,0.03626423,99.35777828],[4.53643458,0.03626249,99.35845723],[4.53643414,0.03626074,99.35913621],[4.53643369,0.036259,99.35981522],[4.53643324,0.03625725,99.36049428],[4.53643279,0.0362555,99.36117339],[4.53643234,0.03625376,99.36185255],[4.53643189,0.03625201,99.36253177],[4.53643144,0.03625027,99.36321106],[4.536431,0.03624852,99.36389042],[4.53643055,0.03624678,99.36456986],[4.5364301,0.03624503,99.36524939],[4.53642965,0.03624329,99.36592902],[4.5364292,0.03624154,99.36660878],[4.53642875,0.0362398,99.36728871],[4.53642831,0.03623805,99.36796883],[4.53642786,0.0362363,99.36864918],[4.53642741,0.03623456,99.36932979],[4.53642696,0.03623281,99.37001066],[4.53642651,0.03623107,99.37069181],[4.53642606,0.03622932,99.37137324],[4.53642562,0.03622758,99.37205494],[4.53642517,0.03622583,99.37273693],[4.53642472,0.03622408,99.3734192],[4.53642427,0.03622234,99.37410176],[4.53642383,0.03622059,99.37478462],[4.53642338,0.03621885,99.37546777],[4.53642293,0.0362171,99.37615122],[4.53642248,0.03621536,99.37683497],[4.53642203,0.03621361,99.37751902],[4.53642159,0.03621186,99.37820339],[4.53642114,0.03621012,99.37888807],[4.53642069,0.03620837,99.37957306],[4.53642024,0.03620663,99.38025837],[4.53641979,0.03620488,99.38094401],[4.53641935,0.03620314,99.38162996],[4.5364189,0.03620139,99.38231625],[4.53641845,0.03619965,99.38300287],[4.536418,0.0361979,99.38368982],[4.53641756,0.03619615,99.38437711],[4.53641711,0.03619441,99.38506474],[4.53641666,0.03619266,99.38575271],[4.53641621,0.03619092,99.38644103],[4.53641576,0.03618917,99.38712971],[4.53641532,0.03618743,99.38781873],[4.53641487,0.03618568,99.38850812],[4.53641442,0.03618393,99.38919786],[4.53641397,0.03618219,99.38988797],[4.53641352,0.03618044,99.39057844],[4.53641308,0.0361787,99.39126928],[4.53641263,0.03617695,99.3919605],[4.53641218,0.03617521,99.39265209],[4.53641173,0.03617346,99.39334406],[4.53641128,0.03617171,99.39403641],[4.53641083,0.03616997,99.39472915],[4.53641039,0.03616822,99.39542228],[4.53640994,0.03616648,99.3961158],[4.53640949,0.03616473,99.39680972],[4.53640904,0.03616299,99.39750403],[4.53640859,0.03616124,99.39819874],[4.53640814,0.0361595,99.39889386],[4.53640769,0.03615775,99.39958939],[4.53640725,0.03615601,99.40028533],[4.5364068,0.03615426,99.40098168],[4.53640635,0.03615251,99.40167845],[4.5364059,0.03615077,99.40237564],[4.53640545,0.03614902,99.40307326],[4.536405,0.03614728,99.4037713],[4.53640455,0.03614553,99.40446977],[4.5364041,0.03614379,99.40516868],[4.53640365,0.03614204,99.40586802],[4.5364032,0.0361403,99.4065678],[4.53640276,0.03613855,99.40726802],[4.53640231,0.03613681,99.40796868],[4.53640186,0.03613506,99.40866978],[4.53640141,0.03613331,99.40937132],[4.53640096,0.03613157,99.4100733],[4.53640051,0.03612982,99.41077574],[4.53640006,0.03612808,99.41147865],[4.53639961,0.03612633,99.41218205],[4.53639916,0.03612459,99.41288597],[4.53639871,0.03612284,99.41359042],[4.53639826,0.0361211,99.41429541],[4.53639781,0.03611935,99.41500096],[4.53639736,0.03611761,99.41570707],[4.53639691,0.03611586,99.41641375],[4.53639646,0.03611412,99.41712102],[4.53639601,0.03611237,99.41782888],[4.53639556,0.03611063,99.41853734],[4.53639511,0.03610888,99.41924641],[4.53639466,0.03610714,99.41995609],[4.53639421,0.03610539,99.42066641],[4.53639376,0.03610365,99.42137736],[4.53639331,0.0361019,99.42208897],[4.53639286,0.03610016,99.42280123],[4.53639241,0.03609841,99.42351415],[4.53639196,0.03609667,99.42422775],[4.53639151,0.03609492,99.42494203],[4.53639106,0.03609317,99.42565701],[4.53639061,0.03609143,99.42637269],[4.53639016,0.03608968,99.42708908],[4.53638971,0.03608794,99.4278062],[4.53638926,0.03608619,99.42852404],[4.53638881,0.03608445,99.42924263],[4.53638836,0.0360827,99.42996196],[4.53638791,0.03608096,99.43068206],[4.53638746,0.03607921,99.43140292],[4.53638701,0.03607747,99.43212456],[4.53638656,0.03607572,99.43284698],[4.53638611,0.03607398,99.4335702],[4.53638566,0.03607223,99.43429423],[4.53638521,0.03607049,99.43501907],[4.53638476,0.03606874,99.43574473],[4.53638431,0.036067,99.43647123],[4.53638386,0.03606525,99.43719857],[4.53638341,0.03606351,99.43792676],[4.53638296,0.03606176,99.43865581],[4.53638251,0.03606002,99.43938574],[4.53638206,0.03605827,99.44011654],[4.53638161,0.03605653,99.44084823],[4.53638116,0.03605478,99.44158081],[4.5363807,0.03605304,99.44231431],[4.53638025,0.03605129,99.44304872],[4.5363798,0.03604955,99.44378405],[4.53637935,0.0360478,99.44452033],[4.5363789,0.03604606,99.44525754],[4.53637845,0.03604431,99.44599571],[4.536378,0.03604257,99.44673484],[4.53637755,0.03604082,99.44747493],[4.5363771,0.03603908,99.448216],[4.53637665,0.03603733,99.44895805],[4.5363762,0.03603559,99.44970108],[4.53637575,0.03603384,99.4504451],[4.5363753,0.03603209,99.45119012],[4.53637485,0.03603035,99.45193613],[4.5363744,0.0360286,99.45268315],[4.53637395,0.03602686,99.45343119],[4.5363735,0.03602511,99.45418024],[4.53637305,0.03602337,99.45493031],[4.5363726,0.03602162,99.45568141],[4.53637215,0.03601988,99.45643355],[4.5363717,0.03601813,99.45718672],[4.53637125,0.03601639,99.45794094],[4.5363708,0.03601464,99.45869621],[4.53637035,0.0360129,99.45945254],[4.5363699,0.03601115,99.46020992],[4.53636945,0.03600941,99.46096837],[4.536369,0.03600766,99.4617279],[4.53636855,0.03600592,99.4624885],[4.5363681,0.03600417,99.46325019],[4.53636766,0.03600243,99.46401296],[4.53636721,0.03600068,99.46477683],[4.53636676,0.03599893,99.46554179],[4.53636631,0.03599719,99.46630786],[4.53636586,0.03599544,99.46707505],[4.53636541,0.0359937,99.46784334],[4.53636496,0.03599195,99.46861276],[4.53636451,0.03599021,99.46938329],[4.53636406,0.03598846,99.47015494],[4.53636361,0.03598672,99.47092772],[4.53636316,0.03598497,99.47170162],[4.53636271,0.03598323,99.47247664],[4.53636226,0.03598148,99.4732528],[4.53636181,0.03597974,99.47403008],[4.53636136,0.03597799,99.47480849],[4.53636091,0.03597625,99.47558804],[4.53636046,0.0359745,99.47636872],[4.53636001,0.03597275,99.47715054],[4.53635956,0.03597101,99.4779335],[4.53635911,0.03596926,99.47871759],[4.53635866,0.03596752,99.47950283],[4.53635821,0.03596577,99.48028921],[4.53635776,0.03596403,99.48107672],[4.53635731,0.03596228,99.48186536],[4.53635686,0.03596054,99.4826551],[4.53635641,0.03595879,99.48344591],[4.53635596,0.03595705,99.48423778],[4.53635552,0.0359553,99.48503068],[4.53635507,0.03595356,99.48582459],[4.53635462,0.03595181,99.4866195],[4.53635417,0.03595006,99.48741538],[4.53635372,0.03594832,99.48821221],[4.53635327,0.03594657,99.48900997],[4.53635282,0.03594483,99.48980863],[4.53635237,0.03594308,99.49060819],[4.53635192,0.03594134,99.49140861],[4.53635147,0.03593959,99.49220987],[4.53635102,0.03593785,99.49301195],[4.53635057,0.0359361,99.49381484],[4.53635012,0.03593436,99.49461851],[4.53634967,0.03593261,99.49542294],[4.53634922,0.03593087,99.49622811],[4.53634877,0.03592912,99.497034],[4.53634831,0.03592738,99.49784059],[4.53634786,0.03592563,99.49864785],[4.53634741,0.03592389,99.49945577],[4.53634696,0.03592214,99.50026432],[4.53634651,0.0359204,99.50107348],[4.53634606,0.03591865,99.50188323],[4.53634561,0.03591691,99.50269355],[4.53634516,0.03591516,99.50350442],[4.53634471,0.03591342,99.5043158],[4.53634426,0.03591167,99.5051277],[4.53634381,0.03590993,99.50594007],[4.53634336,0.03590818,99.50675292],[4.53634291,0.03590644,99.50756621],[4.53634246,0.03590469,99.50837994],[4.536342,0.03590295,99.50919408],[4.53634155,0.0359012,99.51000863],[4.5363411,0.03589946,99.51082355],[4.53634065,0.03589771,99.51163883],[4.5363402,0.03589597,99.51245445],[4.53633975,0.03589422,99.5132704],[4.5363393,0.03589248,99.51408667],[4.53633884,0.03589073,99.51490322],[4.53633839,0.03588899,99.51572004],[4.53633794,0.03588724,99.51653712],[4.53633749,0.0358855,99.51735444],[4.53633704,0.03588375,99.51817198],[4.53633659,0.03588201,99.51898971],[4.53633613,0.03588026,99.51980764],[4.53633568,0.03587852,99.52062573],[4.53633523,0.03587677,99.52144397],[4.53633478,0.03587503,99.52226234],[4.53633432,0.03587328,99.52308082],[4.53633387,0.03587154,99.5238994],[4.53633342,0.03586979,99.52471806],[4.53633297,0.03586805,99.52553678],[4.53633252,0.0358663,99.52635554],[4.53633206,0.03586456,99.52717433],[4.53633161,0.03586281,99.52799312],[4.53633116,0.03586107,99.52881191],[4.53633071,0.03585933,99.52963066],[4.53633025,0.03585758,99.53044937],[4.5363298,0.03585584,99.53126802],[4.53632935,0.03585409,99.53208659],[4.5363289,0.03585235,99.53290505],[4.53632844,0.0358506,99.5337234],[4.53632799,0.03584886,99.53454162],[4.53632754,0.03584711,99.53535969],[4.53632708,0.03584537,99.53617758],[4.53632663,0.03584362,99.53699529],[4.53632618,0.03584188,99.53781279],[4.53632573,0.03584013,99.53863008],[4.53632527,0.03583839,99.53944712],[4.53632482,0.03583665,99.5402639],[4.53632437,0.0358349,99.54108041],[4.53632391,0.03583316,99.54189662],[4.53632346,0.03583141,99.54271253],[4.53632301,0.03582967,99.54352811],[4.53632256,0.03582792,99.54434334],[4.5363221,0.03582618,99.54515822],[4.53632165,0.03582443,99.54597272],[4.5363212,0.03582269,99.54678683],[4.53632074,0.03582094,99.54760053],[4.53632029,0.0358192,99.5484138],[4.53631984,0.03581746,99.54922663],[4.53631938,0.03581571,99.55003899],[4.53631893,0.03581397,99.55085089],[4.53631848,0.03581222,99.55166229],[4.53631802,0.03581048,99.55247317],[4.53631757,0.03580873,99.55328354],[4.53631712,0.03580699,99.55409336],[4.53631667,0.03580524,99.55490262],[4.53631621,0.0358035,99.5557113],[4.53631576,0.03580175,99.55651939],[4.53631531,0.03580001,99.55732687],[4.53631485,0.03579827,99.55813372],[4.5363144,0.03579652,99.55893994],[4.53631395,0.03579478,99.55974549],[4.53631349,0.03579303,99.56055036],[4.53631304,0.03579129,99.56135454],[4.53631259,0.03578954,99.56215801],[4.53631213,0.0357878,99.56296075],[4.53631168,0.03578605,99.56376275],[4.53631123,0.03578431,99.56456399],[4.53631077,0.03578256,99.56536446],[4.53631032,0.03578082,99.56616412],[4.53630987,0.03577908,99.56696298],[4.53630942,0.03577733,99.56776101],[4.53630896,0.03577559,99.5685582],[4.53630851,0.03577384,99.56935453],[4.53630806,0.0357721,99.57014998],[4.5363076,0.03577035,99.57094453],[4.53630715,0.03576861,99.57173818],[4.5363067,0.03576686,99.5725309],[4.53630625,0.03576512,99.57332267],[4.53630579,0.03576337,99.57411348],[4.53630534,0.03576163,99.57490332],[4.53630489,0.03575988,99.57569216],[4.53630443,0.03575814,99.57647998],[4.53630398,0.0357564,99.57726678],[4.53630353,0.03575465,99.57805254],[4.53630308,0.03575291,99.57883723],[4.53630262,0.03575116,99.57962085],[4.53630217,0.03574942,99.58040337],[4.53630172,0.03574767,99.58118478],[4.53630127,0.03574593,99.58196506],[4.53630081,0.03574418,99.5827442],[4.53630036,0.03574244,99.58352217],[4.53629991,0.03574069,99.58429896],[4.53629946,0.03573895,99.58507456],[4.536299,0.0357372,99.58584895],[4.53629855,0.03573546,99.5866221],[4.5362981,0.03573371,99.58739402],[4.53629765,0.03573197,99.58816466],[4.53629719,0.03573022,99.58893403],[4.53629674,0.03572848,99.5897021],[4.53629629,0.03572673,99.59046886],[4.53629584,0.03572499,99.59123429],[4.53629538,0.03572325,99.59199836],[4.53629493,0.0357215,99.59276106],[4.53629448,0.03571976,99.59352236],[4.53629403,0.03571801,99.59428223],[4.53629357,0.03571627,99.59504065],[4.53629312,0.03571452,99.59579761],[4.53629267,0.03571278,99.59655307],[4.53629222,0.03571103,99.59730701],[4.53629176,0.03570929,99.59805942],[4.53629131,0.03570754,99.59881026],[4.53629086,0.0357058,99.59955951],[4.53629041,0.03570405,99.60030715],[4.53628996,0.03570231,99.60105316],[4.5362895,0.03570057,99.60179751],[4.53628905,0.03569882,99.60254018],[4.5362886,0.03569708,99.60328115],[4.53628815,0.03569533,99.60402039],[4.53628769,0.03569359,99.60475788],[4.53628724,0.03569184,99.6054936],[4.53628679,0.0356901,99.60622752],[4.53628633,0.03568835,99.60695963],[4.53628588,0.03568661,99.60768989],[4.53628543,0.03568486,99.60841829],[4.53628498,0.03568312,99.60914479],[4.53628452,0.03568137,99.60986939],[4.53628407,0.03567963,99.61059206],[4.53628362,0.03567788,99.61131276],[4.53628316,0.03567614,99.61203149],[4.53628271,0.0356744,99.61274821],[4.53628226,0.03567265,99.61346291],[4.5362818,0.03567091,99.61417556],[4.53628135,0.03566916,99.61488615],[4.5362809,0.03566742,99.61559466],[4.53628044,0.03566567,99.61630108],[4.53627999,0.03566393,99.61700542],[4.53627954,0.03566218,99.61770765],[4.53627908,0.03566044,99.61840778],[4.53627863,0.0356587,99.61910579],[4.53627818,0.03565695,99.61980167],[4.53627772,0.03565521,99.62049542],[4.53627727,0.03565346,99.62118703],[4.53627681,0.03565172,99.62187648],[4.53627636,0.03564997,99.62256377],[4.53627591,0.03564823,99.62324889],[4.53627545,0.03564649,99.62393183],[4.536275,0.03564474,99.62461259],[4.53627454,0.035643,99.62529114],[4.53627409,0.03564125,99.62596749],[4.53627364,0.03563951,99.62664163],[4.53627318,0.03563776,99.62731354],[4.53627273,0.03563602,99.62798322],[4.53627227,0.03563428,99.62865065],[4.53627182,0.03563253,99.62931584],[4.53627136,0.03563079,99.62997876],[4.53627091,0.03562904,99.63063941],[4.53627045,0.0356273,99.63129779],[4.53627,0.03562556,99.63195388],[4.53626955,0.03562381,99.63260767],[4.53626909,0.03562207,99.63325915],[4.53626864,0.03562032,99.63390832],[4.53626818,0.03561858,99.63455516],[4.53626773,0.03561683,99.63519967],[4.53626727,0.03561509,99.63584183],[4.53626682,0.03561335,99.63648165],[4.53626636,0.0356116,99.6371191],[4.53626591,0.03560986,99.63775417],[4.53626545,0.03560811,99.63838687],[4.536265,0.03560637,99.63901717],[4.53626454,0.03560463,99.63964508],[4.53626409,0.03560288,99.64027057],[4.53626364,0.03560114,99.64089365],[4.53626318,0.03559939,99.64151429],[4.53626273,0.03559765,99.64213249],[4.53626227,0.03559591,99.64274825],[4.53626182,0.03559416,99.64336154],[4.53626136,0.03559242,99.64397236],[4.53626091,0.03559067,99.64458071],[4.53626045,0.03558893,99.64518656],[4.53626,0.03558719,99.64578992],[4.53625954,0.03558544,99.6463908],[4.53625909,0.0355837,99.6469892],[4.53625863,0.03558195,99.64758516],[4.53625818,0.03558021,99.64817869],[4.53625773,0.03557846,99.64876982],[4.53625727,0.03557672,99.64935855],[4.53625682,0.03557498,99.64994492],[4.53625636,0.03557323,99.65052894],[4.53625591,0.03557149,99.65111063],[4.53625545,0.03556974,99.65169001],[4.536255,0.035568,99.6522671],[4.53625455,0.03556626,99.65284193],[4.53625409,0.03556451,99.6534145],[4.53625364,0.03556277,99.65398484],[4.53625318,0.03556102,99.65455297],[4.53625273,0.03555928,99.65511891],[4.53625228,0.03555753,99.65568267],[4.53625182,0.03555579,99.65624424],[4.53625137,0.03555405,99.65680362],[4.53625092,0.0355523,99.65736081],[4.53625046,0.03555056,99.65791581],[4.53625001,0.03554881,99.6584686],[4.53624955,0.03554707,99.65901919],[4.5362491,0.03554532,99.65956757],[4.53624865,0.03554358,99.66011374],[4.53624819,0.03554184,99.66065769],[4.53624774,0.03554009,99.66119943],[4.53624729,0.03553835,99.66173893],[4.53624683,0.0355366,99.66227621],[4.53624638,0.03553486,99.66281126],[4.53624593,0.03553311,99.66334407],[4.53624547,0.03553137,99.66387464],[4.53624502,0.03552962,99.66440297],[4.53624457,0.03552788,99.66492905],[4.53624411,0.03552614,99.66545288],[4.53624366,0.03552439,99.66597445],[4.53624321,0.03552265,99.66649376],[4.53624275,0.0355209,99.66701082],[4.5362423,0.03551916,99.6675256],[4.53624185,0.03551741,99.66803812],[4.53624139,0.03551567,99.66854836],[4.53624094,0.03551393,99.66905632],[4.53624049,0.03551218,99.669562],[4.53624003,0.03551044,99.6700654],[4.53623958,0.03550869,99.67056651],[4.53623913,0.03550695,99.67106532],[4.53623867,0.0355052,99.67156184],[4.53623822,0.03550346,99.67205606],[4.53623776,0.03550172,99.67254797],[4.53623731,0.03549997,99.67303758],[4.53623686,0.03549823,99.67352488],[4.5362364,0.03549648,99.67400986],[4.53623595,0.03549474,99.67449253],[4.53623549,0.035493,99.67497287],[4.53623504,0.03549125,99.67545088],[4.53623458,0.03548951,99.67592657],[4.53623413,0.03548776,99.67639992],[4.53623367,0.03548602,99.67687094],[4.53623322,0.03548428,99.67733962],[4.53623276,0.03548253,99.67780595],[4.53623231,0.03548079,99.67826993],[4.53623185,0.03547904,99.67873156],[4.5362314,0.0354773,99.67919084],[4.53623094,0.03547556,99.67964776],[4.53623048,0.03547381,99.68010231],[4.53623003,0.03547207,99.6805545],[4.53622957,0.03547033,99.68100432],[4.53622911,0.03546858,99.68145176],[4.53622866,0.03546684,99.68189682],[4.5362282,0.0354651,99.68233951],[4.53622774,0.03546335,99.6827798],[4.53622729,0.03546161,99.68321771],[4.53622683,0.03545987,99.68365322],[4.53622637,0.03545812,99.68408634],[4.53622591,0.03545638,99.68451705],[4.53622545,0.03545464,99.68494536],[4.536225,0.03545289,99.68537126],[4.53622454,0.03545115,99.68579476],[4.53622408,0.03544941,99.68621587],[4.53622362,0.03544767,99.68663461],[4.53622316,0.03544592,99.687051],[4.5362227,0.03544418,99.68746505],[4.53622224,0.03544244,99.68787679],[4.53622178,0.03544069,99.68828622],[4.53622132,0.03543895,99.68869336],[4.53622086,0.03543721,99.68909823],[4.5362204,0.03543547,99.68950085],[4.53621994,0.03543372,99.68990123],[4.53621948,0.03543198,99.6902994],[4.53621902,0.03543024,99.69069535],[4.53621856,0.0354285,99.69108912],[4.5362181,0.03542676,99.69148073],[4.53621764,0.03542501,99.69187017],[4.53621718,0.03542327,99.69225748],[4.53621672,0.03542153,99.69264267],[4.53621625,0.03541979,99.69302576],[4.53621579,0.03541804,99.69340675],[4.53621533,0.0354163,99.69378569],[4.53621487,0.03541456,99.69416258],[4.53621441,0.03541282,99.69453744],[4.53621395,0.03541108,99.69491029],[4.53621348,0.03540933,99.69528116],[4.53621302,0.03540759,99.69565005],[4.53621256,0.03540585,99.69601698],[4.5362121,0.03540411,99.69638198],[4.53621164,0.03540237,99.69674504],[4.53621117,0.03540062,99.69710619],[4.53621071,0.03539888,99.69746545],[4.53621025,0.03539714,99.69782282],[4.53620979,0.0353954,99.69817833],[4.53620932,0.03539366,99.69853199],[4.53620886,0.03539192,99.69888381],[4.5362084,0.03539017,99.69923381],[4.53620794,0.03538843,99.69958201],[4.53620747,0.03538669,99.69992843],[4.53620701,0.03538495,99.70027306],[4.53620655,0.03538321,99.70061594],[4.53620608,0.03538146,99.70095708],[4.53620562,0.03537972,99.70129649],[4.53620516,0.03537798,99.70163419],[4.5362047,0.03537624,99.7019702],[4.53620423,0.0353745,99.70230452],[4.53620377,0.03537276,99.70263718],[4.53620331,0.03537101,99.70296819],[4.53620284,0.03536927,99.70329757],[4.53620238,0.03536753,99.70362533],[4.53620192,0.03536579,99.70395149],[4.53620146,0.03536405,99.70427606],[4.53620099,0.03536231,99.70459906],[4.53620053,0.03536056,99.70492051],[4.53620007,0.03535882,99.70524041],[4.5361996,0.03535708,99.7055588],[4.53619914,0.03535534,99.70587567],[4.53619868,0.0353536,99.70619105],[4.53619822,0.03535185,99.70650496],[4.53619775,0.03535011,99.70681741],[4.53619729,0.03534837,99.70712841],[4.53619683,0.03534663,99.70743798],[4.53619637,0.03534489,99.70774614],[4.53619591,0.03534315,99.7080529],[4.53619544,0.0353414,99.70835828],[4.53619498,0.03533966,99.70866229],[4.53619452,0.03533792,99.70896496],[4.53619406,0.03533618,99.70926629],[4.5361936,0.03533444,99.7095663],[4.53619313,0.03533269,99.70986501],[4.53619267,0.03533095,99.71016244],[4.53619221,0.03532921,99.71045859],[4.53619175,0.03532747,99.71075349],[4.53619129,0.03532573,99.71104716],[4.53619083,0.03532398,99.7113396],[4.53619037,0.03532224,99.71163084],[4.53618991,0.0353205,99.71192087],[4.53618944,0.03531876,99.7122097],[4.53618898,0.03531701,99.71249733],[4.53618852,0.03531527,99.71278376],[4.53618806,0.03531353,99.71306899],[4.5361876,0.03531179,99.71335303],[4.53618714,0.03531004,99.71363587],[4.53618668,0.0353083,99.71391753],[4.53618622,0.03530656,99.71419799],[4.53618576,0.03530482,99.71447727],[4.5361853,0.03530307,99.71475536],[4.53618484,0.03530133,99.71503226],[4.53618439,0.03529959,99.71530798],[4.53618393,0.03529785,99.71558252],[4.53618347,0.0352961,99.71585588],[4.53618301,0.03529436,99.71612806],[4.53618255,0.03529262,99.71639906],[4.53618209,0.03529088,99.71666889],[4.53618163,0.03528913,99.71693754],[4.53618117,0.03528739,99.71720502],[4.53618071,0.03528565,99.71747133],[4.53618025,0.03528391,99.71773648],[4.5361798,0.03528216,99.71800045],[4.53617934,0.03528042,99.71826326],[4.53617888,0.03527868,99.7185249],[4.53617842,0.03527693,99.71878539],[4.53617796,0.03527519,99.71904471],[4.5361775,0.03527345,99.71930286],[4.53617705,0.03527171,99.71955987],[4.53617659,0.03526996,99.71981571],[4.53617613,0.03526822,99.7200704],[4.53617567,0.03526648,99.72032393],[4.53617521,0.03526473,99.72057631],[4.53617476,0.03526299,99.72082754],[4.5361743,0.03526125,99.72107762],[4.53617384,0.0352595,99.72132655],[4.53617338,0.03525776,99.72157434],[4.53617293,0.03525602,99.72182099],[4.53617247,0.03525428,99.72206649],[4.53617201,0.03525253,99.72231086],[4.53617155,0.03525079,99.7225541],[4.5361711,0.03524905,99.72279622],[4.53617064,0.0352473,99.72303721],[4.53617018,0.03524556,99.72327708],[4.53616973,0.03524382,99.72351584],[4.53616927,0.03524207,99.72375348],[4.53616881,0.03524033,99.72399002],[4.53616835,0.03523859,99.72422544],[4.5361679,0.03523684,99.72445976],[4.53616744,0.0352351,99.72469298],[4.53616698,0.03523336,99.7249251],[4.53616653,0.03523161,99.72515612],[4.53616607,0.03522987,99.72538605],[4.53616561,0.03522813,99.72561489],[4.53616516,0.03522638,99.72584264],[4.5361647,0.03522464,99.72606931],[4.53616424,0.0352229,99.7262949],[4.53616379,0.03522115,99.7265194],[4.53616333,0.03521941,99.72674283],[4.53616287,0.03521767,99.72696519],[4.53616242,0.03521592,99.72718647],[4.53616196,0.03521418,99.72740669],[4.5361615,0.03521244,99.72762584],[4.53616105,0.0352107,99.72784392],[4.53616059,0.03520895,99.72806095],[4.53616013,0.03520721,99.72827692],[4.53615968,0.03520547,99.72849183],[4.53615922,0.03520372,99.7287057],[4.53615876,0.03520198,99.72891851],[4.53615831,0.03520024,99.72913027],[4.53615785,0.03519849,99.729341],[4.53615739,0.03519675,99.72955068],[4.53615694,0.03519501,99.72975932],[4.53615648,0.03519326,99.72996692],[4.53615602,0.03519152,99.73017349],[4.53615557,0.03518978,99.73037903],[4.53615511,0.03518803,99.73058354],[4.53615466,0.03518629,99.73078702],[4.5361542,0.03518455,99.73098948],[4.53615374,0.0351828,99.73119092],[4.53615329,0.03518106,99.73139134],[4.53615283,0.03517932,99.73159074],[4.53615237,0.03517757,99.73178913],[4.53615192,0.03517583,99.73198651],[4.53615146,0.03517409,99.73218287],[4.536151,0.03517234,99.73237823],[4.53615055,0.0351706,99.73257259],[4.53615009,0.03516886,99.73276595],[4.53614963,0.03516711,99.7329583],[4.53614918,0.03516537,99.73314966],[4.53614872,0.03516363,99.73334002],[4.53614826,0.03516188,99.73352939],[4.53614781,0.03516014,99.7337178],[4.53614735,0.0351584,99.73390526],[4.53614689,0.03515665,99.73409181],[4.53614644,0.03515491,99.73427745],[4.53614598,0.03515317,99.73446223],[4.53614552,0.03515142,99.73464616],[4.53614507,0.03514968,99.73482928],[4.53614461,0.03514794,99.73501159],[4.53614415,0.03514619,99.73519314],[4.53614369,0.03514445,99.73537393],[4.53614324,0.03514271,99.73555401],[4.53614278,0.03514097,99.73573339],[4.53614232,0.03513922,99.7359121],[4.53614187,0.03513748,99.73609016],[4.53614141,0.03513574,99.7362676],[4.53614095,0.03513399,99.73644444],[4.53614049,0.03513225,99.73662071],[4.53614004,0.03513051,99.73679643],[4.53613958,0.03512876,99.73697163],[4.53613912,0.03512702,99.73714634],[4.53613866,0.03512528,99.73732057],[4.53613821,0.03512354,99.73749436],[4.53613775,0.03512179,99.73766773],[4.53613729,0.03512005,99.7378407],[4.53613683,0.03511831,99.73801331],[4.53613638,0.03511656,99.73818557],[4.53613592,0.03511482,99.73835751],[4.53613546,0.03511308,99.73852916],[4.536135,0.03511134,99.73870054],[4.53613455,0.03510959,99.73887168],[4.53613409,0.03510785,99.7390426],[4.53613363,0.03510611,99.73921334],[4.53613317,0.03510436,99.7393839],[4.53613271,0.03510262,99.73955434],[4.53613226,0.03510088,99.73972465],[4.5361318,0.03509913,99.73989489],[4.53613134,0.03509739,99.74006506],[4.53613088,0.03509565,99.74023519],[4.53613043,0.03509391,99.74040532],[4.53612997,0.03509216,99.74057546],[4.53612951,0.03509042,99.74074565],[4.53612905,0.03508868,99.7409159],[4.53612859,0.03508693,99.74108621],[4.53612814,0.03508519,99.74125657],[4.53612768,0.03508345,99.74142698],[4.53612722,0.03508171,99.74159742],[4.53612676,0.03507996,99.74176788],[4.53612631,0.03507822,99.74193836],[4.53612585,0.03507648,99.74210884],[4.53612539,0.03507473,99.74227933],[4.53612493,0.03507299,99.7424498],[4.53612447,0.03507125,99.74262024],[4.53612402,0.03506951,99.74279066],[4.53612356,0.03506776,99.74296104],[4.5361231,0.03506602,99.74313137],[4.53612264,0.03506428,99.74330164],[4.53612218,0.03506254,99.74347184],[4.53612172,0.03506079,99.74364196],[4.53612127,0.03505905,99.743812],[4.53612081,0.03505731,99.74398194],[4.53612035,0.03505556,99.74415177],[4.53611989,0.03505382,99.74432148],[4.53611943,0.03505208,99.74449107],[4.53611898,0.03505034,99.74466052],[4.53611852,0.03504859,99.74482983],[4.53611806,0.03504685,99.74499898],[4.5361176,0.03504511,99.74516796],[4.53611714,0.03504337,99.74533677],[4.53611668,0.03504162,99.74550539],[4.53611623,0.03503988,99.74567382],[4.53611577,0.03503814,99.74584204],[4.53611531,0.03503639,99.74601005],[4.53611485,0.03503465,99.74617783],[4.53611439,0.03503291,99.74634537],[4.53611393,0.03503117,99.74651266],[4.53611347,0.03502942,99.7466797],[4.53611301,0.03502768,99.74684648],[4.53611256,0.03502594,99.74701299],[4.5361121,0.0350242,99.74717922],[4.53611164,0.03502245,99.74734516],[4.53611118,0.03502071,99.74751082],[4.53611072,0.03501897,99.74767616],[4.53611026,0.03501723,99.7478412],[4.5361098,0.03501549,99.74800592],[4.53610934,0.03501375,99.74817031],[4.53610888,0.035012,99.74833435],[4.53610843,0.03501026,99.74849804],[4.53610797,0.03500852,99.74866137],[4.53610751,0.03500678,99.74882436],[4.53610705,0.03500503,99.74898701],[4.53610659,0.03500329,99.74914934],[4.53610613,0.03500155,99.74931136],[4.53610567,0.03499981,99.74947308],[4.53610521,0.03499806,99.74963452],[4.53610475,0.03499632,99.74979567],[4.53610429,0.03499458,99.74995657],[4.53610383,0.03499284,99.75011721],[4.53610337,0.03499109,99.7502776],[4.53610291,0.03498935,99.75043777],[4.53610245,0.03498761,99.75059772],[4.53610199,0.03498587,99.75075746],[4.53610154,0.03498412,99.75091701],[4.53610108,0.03498238,99.75107637],[4.53610062,0.03498064,99.75123555],[4.53610016,0.0349789,99.75139458],[4.5360997,0.03497715,99.75155344],[4.53609924,0.03497541,99.75171217],[4.53609878,0.03497367,99.75187076],[4.53609832,0.03497193,99.75202923],[4.53609786,0.03497018,99.75218758],[4.5360974,0.03496844,99.75234583],[4.53609694,0.0349667,99.75250399],[4.53609649,0.03496496,99.75266206],[4.53609603,0.03496321,99.75282007],[4.53609557,0.03496147,99.75297801],[4.53609511,0.03495973,99.75313589],[4.53609465,0.03495799,99.75329374],[4.53609419,0.03495624,99.75345156],[4.53609373,0.0349545,99.75360935],[4.53609327,0.03495276,99.75376713],[4.53609281,0.03495102,99.75392491],[4.53609235,0.03494927,99.7540827],[4.5360919,0.03494753,99.75424051],[4.53609144,0.03494579,99.75439835],[4.53609098,0.03494405,99.75455623],[4.53609052,0.0349423,99.75471417],[4.53609006,0.03494056,99.75487216],[4.5360896,0.03493882,99.75503022],[4.53608914,0.03493707,99.75518837],[4.53608869,0.03493533,99.7553466],[4.53608823,0.03493359,99.75550494],[4.53608777,0.03493185,99.75566339],[4.53608731,0.0349301,99.75582197],[4.53608685,0.03492836,99.75598068],[4.53608639,0.03492662,99.75613953],[4.53608593,0.03492488,99.75629853],[4.53608548,0.03492313,99.7564577],[4.53608502,0.03492139,99.75661705],[4.53608456,0.03491965,99.75677658],[4.5360841,0.0349179,99.7569363],[4.53608364,0.03491616,99.75709623],[4.53608318,0.03491442,99.75725638],[4.53608272,0.03491268,99.75741676],[4.53608227,0.03491093,99.75757737],[4.53608181,0.03490919,99.75773823],[4.53608135,0.03490745,99.75789935],[4.53608089,0.03490571,99.75806074],[4.53608043,0.03490396,99.7582224],[4.53607997,0.03490222,99.75838436],[4.53607952,0.03490048,99.75854661],[4.53607906,0.03489873,99.75870918],[4.5360786,0.03489699,99.75887207],[4.53607814,0.03489525,99.75903528],[4.53607768,0.03489351,99.75919885],[4.53607723,0.03489176,99.75936276],[4.53607677,0.03489002,99.75952703],[4.53607631,0.03488828,99.75969168],[4.53607585,0.03488653,99.75985672],[4.53607539,0.03488479,99.76002215],[4.53607493,0.03488305,99.76018798],[4.53607448,0.03488131,99.76035423],[4.53607402,0.03487956,99.7605209],[4.53607356,0.03487782,99.76068801],[4.5360731,0.03487608,99.76085557],[4.53607264,0.03487433,99.76102359],[4.53607219,0.03487259,99.76119207],[4.53607173,0.03487085,99.76136103],[4.53607127,0.0348691,99.76153049],[4.53607081,0.03486736,99.76170044],[4.53607035,0.03486562,99.7618709],[4.5360699,0.03486388,99.76204189],[4.53606944,0.03486213,99.7622134],[4.53606898,0.03486039,99.76238546],[4.53606852,0.03485865,99.76255807],[4.53606807,0.0348569,99.76273124],[4.53606761,0.03485516,99.76290499],[4.53606715,0.03485342,99.76307932],[4.53606669,0.03485167,99.76325425],[4.53606623,0.03484993,99.76342978],[4.53606578,0.03484819,99.76360593],[4.53606532,0.03484645,99.76378271],[4.53606486,0.0348447,99.76396012],[4.5360644,0.03484296,99.76413818],[4.53606395,0.03484122,99.7643169],[4.53606349,0.03483947,99.76449629],[4.53606303,0.03483773,99.76467636],[4.53606257,0.03483599,99.76485712],[4.53606212,0.03483424,99.76503858],[4.53606166,0.0348325,99.76522075],[4.5360612,0.03483076,99.76540364],[4.53606074,0.03482901,99.76558727],[4.53606028,0.03482727,99.76577164],[4.53605983,0.03482553,99.76595676],[4.53605937,0.03482379,99.76614265],[4.53605891,0.03482204,99.76632931],[4.53605845,0.0348203,99.76651676],[4.536058,0.03481856,99.76670501],[4.53605754,0.03481681,99.76689406],[4.53605708,0.03481507,99.76708393],[4.53605662,0.03481333,99.76727461],[4.53605617,0.03481158,99.76746609],[4.53605571,0.03480984,99.76765837],[4.53605525,0.0348081,99.76785144],[4.53605479,0.03480635,99.7680453],[4.53605434,0.03480461,99.76823993],[4.53605388,0.03480287,99.76843534],[4.53605342,0.03480112,99.76863151],[4.53605296,0.03479938,99.76882843],[4.53605251,0.03479764,99.76902612],[4.53605205,0.03479589,99.76922454],[4.53605159,0.03479415,99.7694237],[4.53605113,0.03479241,99.7696236],[4.53605068,0.03479067,99.76982422],[4.53605022,0.03478892,99.77002556],[4.53604976,0.03478718,99.77022761],[4.5360493,0.03478544,99.77043036],[4.53604884,0.03478369,99.77063382],[4.53604839,0.03478195,99.77083796],[4.53604793,0.03478021,99.7710428],[4.53604747,0.03477846,99.77124833],[4.53604701,0.03477672,99.77145455],[4.53604656,0.03477498,99.77166146],[4.5360461,0.03477323,99.77186907],[4.53604564,0.03477149,99.77207736],[4.53604518,0.03476975,99.77228635],[4.53604472,0.034768,99.77249603],[4.53604427,0.03476626,99.7727064],[4.53604381,0.03476452,99.77291746],[4.53604335,0.03476277,99.77312922],[4.53604289,0.03476103,99.77334166],[4.53604244,0.03475929,99.7735548],[4.53604198,0.03475755,99.77376863],[4.53604152,0.0347558,99.77398315],[4.53604106,0.03475406,99.77419836],[4.5360406,0.03475232,99.77441426],[4.53604015,0.03475057,99.77463086],[4.53603969,0.03474883,99.77484814],[4.53603923,0.03474709,99.77506612],[4.53603877,0.03474534,99.77528479],[4.53603831,0.0347436,99.77550415],[4.53603786,0.03474186,99.7757242],[4.5360374,0.03474011,99.77594494],[4.53603694,0.03473837,99.77616637],[4.53603648,0.03473663,99.77638849],[4.53603602,0.03473488,99.7766113],[4.53603557,0.03473314,99.7768348],[4.53603511,0.0347314,99.77705899],[4.53603465,0.03472965,99.77728387],[4.53603419,0.03472791,99.77750944],[4.53603373,0.03472617,99.7777357],[4.53603328,0.03472443,99.77796265],[4.53603282,0.03472268,99.77819028],[4.53603236,0.03472094,99.7784186],[4.5360319,0.0347192,99.77864762],[4.53603144,0.03471745,99.77887731],[4.53603099,0.03471571,99.7791077],[4.53603053,0.03471397,99.77933877],[4.53603007,0.03471222,99.77957053],[4.53602961,0.03471048,99.77980298],[4.53602916,0.03470874,99.78003611],[4.5360287,0.03470699,99.78026993],[4.53602824,0.03470525,99.78050443],[4.53602778,0.03470351,99.78073961],[4.53602733,0.03470176,99.78097548],[4.53602687,0.03470002,99.78121203],[4.53602641,0.03469828,99.78144927],[4.53602595,0.03469653,99.78168719],[4.5360255,0.03469479,99.78192579],[4.53602504,0.03469305,99.78216507],[4.53602458,0.0346913,99.78240503],[4.53602413,0.03468956,99.78264567],[4.53602367,0.03468782,99.78288699],[4.53602321,0.03468607,99.78312899],[4.53602276,0.03468433,99.78337167],[4.5360223,0.03468258,99.78361502],[4.53602184,0.03468084,99.78385906],[4.53602139,0.0346791,99.78410376],[4.53602093,0.03467735,99.78434915],[4.53602047,0.03467561,99.78459521],[4.53602002,0.03467387,99.78484194],[4.53601956,0.03467212,99.78508934],[4.53601911,0.03467038,99.78533742],[4.53601865,0.03466863,99.78558617],[4.53601819,0.03466689,99.78583559],[4.53601774,0.03466515,99.78608567],[4.53601728,0.0346634,99.7863364],[4.53601683,0.03466166,99.78658777],[4.53601637,0.03465991,99.78683977],[4.53601592,0.03465817,99.78709237],[4.53601546,0.03465643,99.78734557],[4.53601501,0.03465468,99.78759936],[4.53601455,0.03465294,99.78785372],[4.5360141,0.03465119,99.78810864],[4.53601364,0.03464945,99.7883641],[4.53601319,0.03464771,99.78862009],[4.53601274,0.03464596,99.78887661],[4.53601228,0.03464422,99.78913363],[4.53601183,0.03464247,99.78939114],[4.53601137,0.03464073,99.78964913],[4.53601092,0.03463898,99.78990759],[4.53601046,0.03463724,99.79016651],[4.53601001,0.0346355,99.79042586],[4.53600955,0.03463375,99.79068564],[4.5360091,0.03463201,99.79094584],[4.53600864,0.03463026,99.79120644],[4.53600819,0.03462852,99.79146742],[4.53600773,0.03462677,99.79172878],[4.53600728,0.03462503,99.79199051],[4.53600683,0.03462329,99.79225258],[4.53600637,0.03462154,99.79251499],[4.53600592,0.0346198,99.7927777],[4.53600546,0.03461805,99.79304069],[4.53600501,0.03461631,99.79330395],[4.53600455,0.03461457,99.79356746],[4.53600409,0.03461282,99.79383119],[4.53600364,0.03461108,99.79409513],[4.53600318,0.03460933,99.79435925],[4.53600273,0.03460759,99.79462353],[4.53600227,0.03460585,99.79488795],[4.53600181,0.0346041,99.7951525],[4.53600136,0.03460236,99.79541715],[4.5360009,0.03460062,99.79568188],[4.53600044,0.03459887,99.79594667],[4.53599999,0.03459713,99.7962115],[4.53599953,0.03459538,99.79647635],[4.53599907,0.03459364,99.79674121],[4.53599862,0.0345919,99.79700604],[4.53599816,0.03459015,99.79727084],[4.5359977,0.03458841,99.79753558],[4.53599724,0.03458667,99.79780024],[4.53599678,0.03458492,99.79806479],[4.53599632,0.03458318,99.79832923],[4.53599586,0.03458144,99.79859353],[4.5359954,0.0345797,99.79885768],[4.53599494,0.03457795,99.79912164],[4.53599448,0.03457621,99.79938541],[4.53599402,0.03457447,99.79964895],[4.53599356,0.03457272,99.79991226],[4.5359931,0.03457098,99.80017532],[4.53599264,0.03456924,99.8004381],[4.53599217,0.0345675,99.80070058],[4.53599171,0.03456576,99.80096274],[4.53599125,0.03456401,99.80122457],[4.53599079,0.03456227,99.80148605],[4.53599032,0.03456053,99.80174715],[4.53598986,0.03455879,99.80200786],[4.53598939,0.03455705,99.80226816],[4.53598893,0.0345553,99.80252803],[4.53598847,0.03455356,99.80278744],[4.535988,0.03455182,99.80304639],[4.53598753,0.03455008,99.80330485],[4.53598707,0.03454834,99.8035628],[4.5359866,0.0345466,99.80382023],[4.53598614,0.03454486,99.80407711],[4.53598567,0.03454311,99.80433343],[4.5359852,0.03454137,99.80458916],[4.53598474,0.03453963,99.80484429],[4.53598427,0.03453789,99.80509881],[4.5359838,0.03453615,99.8053527],[4.53598333,0.03453441,99.80560595],[4.53598287,0.03453267,99.80585856],[4.5359824,0.03453093,99.80611052],[4.53598193,0.03452919,99.80636182],[4.53598146,0.03452745,99.80661247],[4.53598099,0.03452571,99.80686246],[4.53598052,0.03452397,99.80711177],[4.53598005,0.03452223,99.80736042],[4.53597958,0.03452049,99.80760839],[4.53597911,0.03451875,99.80785568],[4.53597864,0.03451701,99.80810229],[4.53597817,0.03451527,99.8083482],[4.5359777,0.03451353,99.80859343],[4.53597723,0.03451179,99.80883795],[4.53597676,0.03451005,99.80908177],[4.53597629,0.03450831,99.80932488],[4.53597582,0.03450657,99.80956728],[4.53597535,0.03450483,99.80980896],[4.53597488,0.03450309,99.81004992],[4.53597441,0.03450135,99.81029015],[4.53597394,0.03449961,99.81052965],[4.53597346,0.03449787,99.81076843],[4.53597299,0.03449613,99.81100648],[4.53597252,0.03449439,99.81124381],[4.53597205,0.03449265,99.81148041],[4.53597158,0.03449091,99.81171628],[4.53597111,0.03448917,99.81195143],[4.53597063,0.03448743,99.81218586],[4.53597016,0.03448569,99.81241957],[4.53596969,0.03448395,99.81265256],[4.53596922,0.03448221,99.81288482],[4.53596875,0.03448047,99.81311637],[4.53596828,0.03447873,99.81334719],[4.5359678,0.03447699,99.8135773],[4.53596733,0.03447525,99.81380669],[4.53596686,0.03447351,99.81403536],[4.53596639,0.03447177,99.81426332],[4.53596592,0.03447003,99.81449055],[4.53596545,0.03446829,99.81471708],[4.53596498,0.03446655,99.81494288],[4.53596451,0.03446481,99.81516798],[4.53596403,0.03446307,99.81539236],[4.53596356,0.03446133,99.81561602],[4.53596309,0.03445959,99.81583897],[4.53596262,0.03445785,99.81606121],[4.53596215,0.03445611,99.81628274],[4.53596168,0.03445437,99.81650355],[4.53596121,0.03445263,99.81672366],[4.53596074,0.03445089,99.81694305],[4.53596027,0.03444915,99.81716173],[4.5359598,0.03444741,99.8173797],[4.53595933,0.03444567,99.81759696],[4.53595886,0.03444392,99.81781351],[4.5359584,0.03444218,99.81802935],[4.53595793,0.03444044,99.81824449],[4.53595746,0.0344387,99.81845891],[4.53595699,0.03443696,99.81867262],[4.53595652,0.03443522,99.81888563],[4.53595605,0.03443348,99.81909793],[4.53595558,0.03443174,99.81930952],[4.53595512,0.03443,99.8195204],[4.53595465,0.03442826,99.81973057],[4.53595418,0.03442652,99.81994003],[4.53595371,0.03442478,99.82014879],[4.53595324,0.03442304,99.82035684],[4.53595277,0.0344213,99.82056418],[4.53595231,0.03441955,99.82077081],[4.53595184,0.03441781,99.82097674],[4.53595137,0.03441607,99.82118196],[4.5359509,0.03441433,99.82138647],[4.53595043,0.03441259,99.82159027],[4.53594997,0.03441085,99.82179336],[4.5359495,0.03440911,99.82199575],[4.53594903,0.03440737,99.82219743],[4.53594856,0.03440563,99.8223984],[4.53594809,0.03440389,99.82259867],[4.53594762,0.03440215,99.82279823],[4.53594715,0.03440041,99.82299709],[4.53594669,0.03439866,99.82319524],[4.53594622,0.03439692,99.82339268],[4.53594575,0.03439518,99.82358942],[4.53594528,0.03439344,99.82378546],[4.53594481,0.0343917,99.82398079],[4.53594434,0.03438996,99.82417542],[4.53594387,0.03438822,99.82436935],[4.5359434,0.03438648,99.82456257],[4.53594293,0.03438474,99.8247551],[4.53594246,0.034383,99.82494691],[4.53594199,0.03438126,99.82513803],[4.53594152,0.03437952,99.82532844],[4.53594105,0.03437778,99.82551815],[4.53594058,0.03437604,99.82570716],[4.53594011,0.0343743,99.82589547],[4.53593964,0.03437256,99.82608307],[4.53593916,0.03437082,99.82626997],[4.53593869,0.03436908,99.82645617],[4.53593822,0.03436734,99.82664167],[4.53593775,0.0343656,99.82682647],[4.53593728,0.03436386,99.82701056],[4.5359368,0.03436212,99.82719395],[4.53593633,0.03436038,99.82737664],[4.53593586,0.03435864,99.82755863],[4.53593539,0.0343569,99.82773991],[4.53593491,0.03435516,99.82792049],[4.53593444,0.03435342,99.82810037],[4.53593397,0.03435168,99.82827954],[4.5359335,0.03434994,99.82845801],[4.53593302,0.0343482,99.82863577],[4.53593255,0.03434646,99.82881282],[4.53593207,0.03434472,99.82898914],[4.5359316,0.03434298,99.82916473],[4.53593113,0.03434124,99.82933959],[4.53593065,0.0343395,99.8295137],[4.53593018,0.03433777,99.82968705],[4.5359297,0.03433603,99.82985965],[4.53592923,0.03433429,99.83003147],[4.53592875,0.03433255,99.83020252],[4.53592828,0.03433081,99.83037278],[4.5359278,0.03432907,99.83054226],[4.53592733,0.03432733,99.83071093],[4.53592685,0.03432559,99.8308788],[4.53592638,0.03432385,99.83104585],[4.5359259,0.03432211,99.83121208],[4.53592543,0.03432037,99.83137748],[4.53592495,0.03431864,99.83154204],[4.53592448,0.0343169,99.83170576],[4.535924,0.03431516,99.83186863],[4.53592352,0.03431342,99.83203064],[4.53592305,0.03431168,99.83219177],[4.53592257,0.03430994,99.83235204],[4.53592209,0.0343082,99.83251142],[4.53592162,0.03430647,99.83266991],[4.53592114,0.03430473,99.8328275],[4.53592066,0.03430299,99.83298419],[4.53592018,0.03430125,99.83313997],[4.53591971,0.03429951,99.83329482],[4.53591923,0.03429777,99.83344875],[4.53591875,0.03429603,99.83360174],[4.53591827,0.0342943,99.83375379],[4.5359178,0.03429256,99.83390489],[4.53591732,0.03429082,99.83405503],[4.53591684,0.03428908,99.83420421],[4.53591636,0.03428734,99.83435241],[4.53591588,0.0342856,99.83449963],[4.53591541,0.03428387,99.83464586],[4.53591493,0.03428213,99.8347911],[4.53591445,0.03428039,99.83493534],[4.53591397,0.03427865,99.83507856],[4.53591349,0.03427691,99.83522077],[4.53591301,0.03427518,99.83536195],[4.53591254,0.03427344,99.8355021],[4.53591206,0.0342717,99.83564121],[4.53591158,0.03426996,99.83577927],[4.5359111,0.03426822,99.83591628],[4.53591062,0.03426649,99.83605223],[4.53591014,0.03426475,99.8361871],[4.53590966,0.03426301,99.8363209],[4.53590918,0.03426127,99.83645361],[4.5359087,0.03425953,99.83658523],[4.53590822,0.0342578,99.83671575],[4.53590774,0.03425606,99.83684516],[4.53590727,0.03425432,99.83697345],[4.53590679,0.03425258,99.83710063],[4.53590631,0.03425084,99.83722668],[4.53590583,0.03424911,99.83735158],[4.53590535,0.03424737,99.83747535],[4.53590487,0.03424563,99.83759796],[4.53590439,0.03424389,99.83771941],[4.53590391,0.03424216,99.8378397],[4.53590343,0.03424042,99.83795881],[4.53590295,0.03423868,99.83807674],[4.53590247,0.03423694,99.83819349],[4.53590199,0.03423521,99.83830903],[4.53590151,0.03423347,99.83842338],[4.53590103,0.03423173,99.83853651],[4.53590055,0.03422999,99.83864842],[4.53590007,0.03422826,99.83875911],[4.53589959,0.03422652,99.83886856],[4.53589911,0.03422478,99.83897678],[4.53589863,0.03422304,99.83908374],[4.53589815,0.0342213,99.83918945],[4.53589767,0.03421957,99.8392939],[4.53589719,0.03421783,99.83939708],[4.53589671,0.03421609,99.83949898],[4.53589623,0.03421435,99.83959958],[4.53589575,0.03421262,99.83969888],[4.53589527,0.03421088,99.83979685],[4.53589479,0.03420914,99.83989349],[4.53589431,0.0342074,99.83998877],[4.53589383,0.03420567,99.84008268],[4.53589335,0.03420393,99.84017522],[4.53589286,0.03420219,99.84026635],[4.53589238,0.03420045,99.84035607],[4.5358919,0.03419872,99.84044437],[4.53589142,0.03419698,99.84053122],[4.53589094,0.03419524,99.84061662],[4.53589046,0.03419351,99.84070055],[4.53588998,0.03419177,99.84078299],[4.5358895,0.03419003,99.84086394],[4.53588902,0.03418829,99.84094337],[4.53588854,0.03418656,99.84102127],[4.53588806,0.03418482,99.84109762],[4.53588758,0.03418308,99.84117242],[4.5358871,0.03418134,99.84124565],[4.53588662,0.03417961,99.84131729],[4.53588613,0.03417787,99.84138733],[4.53588565,0.03417613,99.84145576],[4.53588517,0.0341744,99.84152255],[4.53588469,0.03417266,99.8415877],[4.53588421,0.03417092,99.84165119],[4.53588396,0.03417002,99.84168354],[4.53589868,0.03416601,99.84168354],[4.53589893,0.03416692,99.84165119],[4.5358994,0.03416866,99.8415877],[4.53589987,0.0341704,99.84152255],[4.53590035,0.03417214,99.84145576],[4.53590082,0.03417387,99.84138733],[4.53590129,0.03417561,99.84131729],[4.53590176,0.03417735,99.84124565],[4.53590224,0.03417909,99.84117242],[4.53590271,0.03418083,99.84109762],[4.53590318,0.03418257,99.84102127],[4.53590365,0.03418431,99.84094337],[4.53590412,0.03418605,99.84086394],[4.53590459,0.03418779,99.84078299],[4.53590506,0.03418953,99.84070055],[4.53590553,0.03419127,99.84061662],[4.535906,0.03419301,99.84053122],[4.53590647,0.03419475,99.84044437],[4.53590694,0.0341965,99.84035607],[4.53590741,0.03419824,99.84026635],[4.53590788,0.03419998,99.84017522],[4.53590835,0.03420172,99.84008268],[4.53590882,0.03420346,99.83998877],[4.53590929,0.0342052,99.83989349],[4.53590976,0.03420694,99.83979685],[4.53591023,0.03420868,99.83969888],[4.5359107,0.03421042,99.83959958],[4.53591117,0.03421216,99.83949898],[4.53591164,0.0342139,99.83939708],[4.53591211,0.03421564,99.8392939],[4.53591258,0.03421738,99.83918945],[4.53591305,0.03421912,99.83908374],[4.53591352,0.03422086,99.83897678],[4.53591399,0.0342226,99.83886856],[4.53591445,0.03422434,99.83875911],[4.53591492,0.03422608,99.83864842],[4.53591539,0.03422783,99.83853651],[4.53591586,0.03422957,99.83842338],[4.53591633,0.03423131,99.83830903],[4.5359168,0.03423305,99.83819349],[4.53591727,0.03423479,99.83807674],[4.53591774,0.03423653,99.83795881],[4.5359182,0.03423827,99.8378397],[4.53591867,0.03424001,99.83771941],[4.53591914,0.03424175,99.83759796],[4.53591961,0.03424349,99.83747535],[4.53592008,0.03424523,99.83735158],[4.53592055,0.03424697,99.83722668],[4.53592101,0.03424872,99.83710063],[4.53592148,0.03425046,99.83697345],[4.53592195,0.0342522,99.83684516],[4.53592242,0.03425394,99.83671575],[4.53592289,0.03425568,99.83658523],[4.53592336,0.03425742,99.83645361],[4.53592383,0.03425916,99.8363209],[4.53592429,0.0342609,99.8361871],[4.53592476,0.03426264,99.83605223],[4.53592523,0.03426438,99.83591628],[4.5359257,0.03426612,99.83577927],[4.53592617,0.03426786,99.83564121],[4.53592664,0.03426961,99.8355021],[4.53592711,0.03427135,99.83536195],[4.53592757,0.03427309,99.83522077],[4.53592804,0.03427483,99.83507856],[4.53592851,0.03427657,99.83493534],[4.53592898,0.03427831,99.8347911],[4.53592945,0.03428005,99.83464586],[4.53592992,0.03428179,99.83449963],[4.53593039,0.03428353,99.83435241],[4.53593086,0.03428527,99.83420421],[4.53593133,0.03428701,99.83405503],[4.53593179,0.03428875,99.83390489],[4.53593226,0.0342905,99.83375379],[4.53593273,0.03429224,99.83360174],[4.5359332,0.03429398,99.83344875],[4.53593367,0.03429572,99.83329482],[4.53593414,0.03429746,99.83313997],[4.53593461,0.0342992,99.83298419],[4.53593508,0.03430094,99.8328275],[4.53593555,0.03430268,99.83266991],[4.53593602,0.03430442,99.83251142],[4.53593649,0.03430616,99.83235204],[4.53593696,0.0343079,99.83219177],[4.53593743,0.03430964,99.83203064],[4.5359379,0.03431138,99.83186863],[4.53593837,0.03431312,99.83170576],[4.53593884,0.03431486,99.83154204],[4.53593931,0.0343166,99.83137748],[4.53593978,0.03431834,99.83121208],[4.53594025,0.03432008,99.83104585],[4.53594072,0.03432182,99.8308788],[4.53594119,0.03432356,99.83071093],[4.53594167,0.03432531,99.83054226],[4.53594214,0.03432705,99.83037278],[4.53594261,0.03432879,99.83020252],[4.53594308,0.03433053,99.83003147],[4.53594355,0.03433227,99.82985965],[4.53594402,0.03433401,99.82968705],[4.53594449,0.03433575,99.8295137],[4.53594496,0.03433749,99.82933959],[4.53594543,0.03433923,99.82916473],[4.5359459,0.03434097,99.82898914],[4.53594637,0.03434271,99.82881282],[4.53594684,0.03434445,99.82863577],[4.53594731,0.03434619,99.82845801],[4.53594779,0.03434793,99.82827954],[4.53594826,0.03434967,99.82810037],[4.53594873,0.03435141,99.82792049],[4.5359492,0.03435315,99.82773991],[4.53594967,0.03435489,99.82755863],[4.53595014,0.03435663,99.82737664],[4.53595061,0.03435837,99.82719395],[4.53595108,0.03436011,99.82701056],[4.53595155,0.03436185,99.82682647],[4.53595202,0.03436359,99.82664167],[4.53595249,0.03436533,99.82645617],[4.53595296,0.03436707,99.82626997],[4.53595343,0.03436881,99.82608307],[4.5359539,0.03437055,99.82589547],[4.53595437,0.03437229,99.82570716],[4.53595484,0.03437404,99.82551815],[4.53595531,0.03437578,99.82532844],[4.53595578,0.03437752,99.82513803],[4.53595625,0.03437926,99.82494691],[4.53595672,0.034381,99.8247551],[4.53595718,0.03438274,99.82456257],[4.53595765,0.03438448,99.82436935],[4.53595812,0.03438622,99.82417542],[4.53595859,0.03438796,99.82398079],[4.53595906,0.0343897,99.82378546],[4.53595953,0.03439144,99.82358942],[4.53595999,0.03439318,99.82339268],[4.53596046,0.03439493,99.82319524],[4.53596093,0.03439667,99.82299709],[4.5359614,0.03439841,99.82279823],[4.53596186,0.03440015,99.82259867],[4.53596233,0.03440189,99.8223984],[4.5359628,0.03440363,99.82219743],[4.53596327,0.03440537,99.82199575],[4.53596373,0.03440711,99.82179336],[4.5359642,0.03440886,99.82159027],[4.53596467,0.0344106,99.82138647],[4.53596513,0.03441234,99.82118196],[4.5359656,0.03441408,99.82097674],[4.53596606,0.03441582,99.82077081],[4.53596653,0.03441756,99.82056418],[4.535967,0.0344193,99.82035684],[4.53596746,0.03442105,99.82014879],[4.53596793,0.03442279,99.81994003],[4.53596839,0.03442453,99.81973057],[4.53596886,0.03442627,99.8195204],[4.53596933,0.03442801,99.81930952],[4.53596979,0.03442975,99.81909793],[4.53597026,0.03443149,99.81888563],[4.53597072,0.03443324,99.81867262],[4.53597119,0.03443498,99.81845891],[4.53597165,0.03443672,99.81824449],[4.53597212,0.03443846,99.81802935],[4.53597258,0.0344402,99.81781351],[4.53597305,0.03444194,99.81759696],[4.53597352,0.03444369,99.8173797],[4.53597398,0.03444543,99.81716173],[4.53597445,0.03444717,99.81694305],[4.53597491,0.03444891,99.81672366],[4.53597538,0.03445065,99.81650355],[4.53597584,0.03445239,99.81628274],[4.53597631,0.03445414,99.81606121],[4.53597677,0.03445588,99.81583897],[4.53597724,0.03445762,99.81561602],[4.5359777,0.03445936,99.81539236],[4.53597817,0.0344611,99.81516798],[4.53597863,0.03446284,99.81494288],[4.5359791,0.03446459,99.81471708],[4.53597956,0.03446633,99.81449055],[4.53598003,0.03446807,99.81426332],[4.5359805,0.03446981,99.81403536],[4.53598096,0.03447155,99.81380669],[4.53598143,0.03447329,99.8135773],[4.53598189,0.03447504,99.81334719],[4.53598236,0.03447678,99.81311637],[4.53598282,0.03447852,99.81288482],[4.53598329,0.03448026,99.81265256],[4.53598375,0.034482,99.81241957],[4.53598422,0.03448374,99.81218586],[4.53598468,0.03448549,99.81195143],[4.53598515,0.03448723,99.81171628],[4.53598561,0.03448897,99.81148041],[4.53598608,0.03449071,99.81124381],[4.53598654,0.03449245,99.81100648],[4.53598701,0.03449419,99.81076843],[4.53598747,0.03449594,99.81052965],[4.53598794,0.03449768,99.81029015],[4.5359884,0.03449942,99.81004992],[4.53598886,0.03450116,99.80980896],[4.53598933,0.0345029,99.80956728],[4.53598979,0.03450465,99.80932488],[4.53599026,0.03450639,99.80908177],[4.53599072,0.03450813,99.80883795],[4.53599119,0.03450987,99.80859343],[4.53599165,0.03451161,99.8083482],[4.53599211,0.03451335,99.80810229],[4.53599258,0.0345151,99.80785568],[4.53599304,0.03451684,99.80760839],[4.53599351,0.03451858,99.80736042],[4.53599397,0.03452032,99.80711177],[4.53599443,0.03452206,99.80686246],[4.5359949,0.03452381,99.80661247],[4.53599536,0.03452555,99.80636182],[4.53599582,0.03452729,99.80611052],[4.53599629,0.03452903,99.80585856],[4.53599675,0.03453078,99.80560595],[4.53599721,0.03453252,99.8053527],[4.53599768,0.03453426,99.80509881],[4.53599814,0.034536,99.80484429],[4.5359986,0.03453774,99.80458916],[4.53599906,0.03453949,99.80433343],[4.53599953,0.03454123,99.80407711],[4.53599999,0.03454297,99.80382023],[4.53600045,0.03454471,99.8035628],[4.53600091,0.03454646,99.80330485],[4.53600138,0.0345482,99.80304639],[4.53600184,0.03454994,99.80278744],[4.5360023,0.03455168,99.80252803],[4.53600276,0.03455343,99.80226816],[4.53600322,0.03455517,99.80200786],[4.53600369,0.03455691,99.80174715],[4.53600415,0.03455865,99.80148605],[4.53600461,0.03456039,99.80122457],[4.53600507,0.03456214,99.80096274],[4.53600553,0.03456388,99.80070058],[4.536006,0.03456562,99.8004381],[4.53600646,0.03456736,99.80017532],[4.53600692,0.03456911,99.79991226],[4.53600738,0.03457085,99.79964895],[4.53600784,0.03457259,99.79938541],[4.5360083,0.03457434,99.79912164],[4.53600876,0.03457608,99.79885768],[4.53600923,0.03457782,99.79859353],[4.53600969,0.03457956,99.79832923],[4.53601015,0.03458131,99.79806479],[4.53601061,0.03458305,99.79780024],[4.53601107,0.03458479,99.79753558],[4.53601153,0.03458653,99.79727084],[4.53601199,0.03458828,99.79700604],[4.53601246,0.03459002,99.79674121],[4.53601292,0.03459176,99.79647635],[4.53601338,0.0345935,99.7962115],[4.53601384,0.03459525,99.79594667],[4.5360143,0.03459699,99.79568188],[4.53601476,0.03459873,99.79541715],[4.53601522,0.03460047,99.7951525],[4.53601569,0.03460222,99.79488795],[4.53601615,0.03460396,99.79462353],[4.53601661,0.0346057,99.79435925],[4.53601707,0.03460744,99.79409513],[4.53601753,0.03460919,99.79383119],[4.53601799,0.03461093,99.79356746],[4.53601846,0.03461267,99.79330395],[4.53601892,0.03461441,99.79304069],[4.53601938,0.03461616,99.7927777],[4.53601984,0.0346179,99.79251499],[4.5360203,0.03461964,99.79225258],[4.53602076,0.03462138,99.79199051],[4.53602123,0.03462312,99.79172878],[4.53602169,0.03462487,99.79146742],[4.53602215,0.03462661,99.79120644],[4.53602261,0.03462835,99.79094584],[4.53602308,0.03463009,99.79068564],[4.53602354,0.03463184,99.79042586],[4.536024,0.03463358,99.79016651],[4.53602446,0.03463532,99.78990759],[4.53602493,0.03463706,99.78964913],[4.53602539,0.03463881,99.78939114],[4.53602585,0.03464055,99.78913363],[4.53602631,0.03464229,99.78887661],[4.53602678,0.03464403,99.78862009],[4.53602724,0.03464577,99.7883641],[4.5360277,0.03464752,99.78810864],[4.53602817,0.03464926,99.78785372],[4.53602863,0.034651,99.78759936],[4.53602909,0.03465274,99.78734557],[4.53602955,0.03465448,99.78709237],[4.53603002,0.03465623,99.78683977],[4.53603048,0.03465797,99.78658777],[4.53603094,0.03465971,99.7863364],[4.53603141,0.03466145,99.78608567],[4.53603187,0.03466319,99.78583559],[4.53603234,0.03466493,99.78558617],[4.5360328,0.03466668,99.78533742],[4.53603326,0.03466842,99.78508934],[4.53603373,0.03467016,99.78484194],[4.53603419,0.0346719,99.78459521],[4.53603466,0.03467364,99.78434915],[4.53603512,0.03467539,99.78410376],[4.53603558,0.03467713,99.78385906],[4.53603605,0.03467887,99.78361502],[4.53603651,0.03468061,99.78337167],[4.53603698,0.03468235,99.78312899],[4.53603744,0.03468409,99.78288699],[4.53603791,0.03468584,99.78264567],[4.53603837,0.03468758,99.78240503],[4.53603884,0.03468932,99.78216507],[4.5360393,0.03469106,99.78192579],[4.53603976,0.0346928,99.78168719],[4.53604023,0.03469454,99.78144927],[4.53604069,0.03469628,99.78121203],[4.53604116,0.03469803,99.78097548],[4.53604162,0.03469977,99.78073961],[4.53604209,0.03470151,99.78050443],[4.53604255,0.03470325,99.78026993],[4.53604302,0.03470499,99.78003611],[4.53604348,0.03470673,99.77980298],[4.53604395,0.03470848,99.77957053],[4.53604441,0.03471022,99.77933877],[4.53604488,0.03471196,99.7791077],[4.53604534,0.0347137,99.77887731],[4.53604581,0.03471544,99.77864762],[4.53604627,0.03471718,99.7784186],[4.53604674,0.03471892,99.77819028],[4.5360472,0.03472067,99.77796265],[4.53604767,0.03472241,99.7777357],[4.53604813,0.03472415,99.77750944],[4.53604859,0.03472589,99.77728387],[4.53604906,0.03472763,99.77705899],[4.53604952,0.03472937,99.7768348],[4.53604999,0.03473111,99.7766113],[4.53605045,0.03473286,99.77638849],[4.53605092,0.0347346,99.77616637],[4.53605138,0.03473634,99.77594494],[4.53605185,0.03473808,99.7757242],[4.53605231,0.03473982,99.77550415],[4.53605278,0.03474156,99.77528479],[4.53605324,0.03474331,99.77506612],[4.5360537,0.03474505,99.77484814],[4.53605417,0.03474679,99.77463086],[4.53605463,0.03474853,99.77441426],[4.5360551,0.03475027,99.77419836],[4.53605556,0.03475201,99.77398315],[4.53605602,0.03475376,99.77376863],[4.53605649,0.0347555,99.7735548],[4.53605695,0.03475724,99.77334166],[4.53605742,0.03475898,99.77312922],[4.53605788,0.03476072,99.77291746],[4.53605834,0.03476246,99.7727064],[4.53605881,0.03476421,99.77249603],[4.53605927,0.03476595,99.77228635],[4.53605973,0.03476769,99.77207736],[4.5360602,0.03476943,99.77186907],[4.53606066,0.03477117,99.77166146],[4.53606113,0.03477291,99.77145455],[4.53606159,0.03477466,99.77124833],[4.53606205,0.0347764,99.7710428],[4.53606252,0.03477814,99.77083796],[4.53606298,0.03477988,99.77063382],[4.53606344,0.03478162,99.77043036],[4.5360639,0.03478337,99.77022761],[4.53606437,0.03478511,99.77002556],[4.53606483,0.03478685,99.76982422],[4.53606529,0.03478859,99.7696236],[4.53606576,0.03479033,99.7694237],[4.53606622,0.03479207,99.76922454],[4.53606668,0.03479382,99.76902612],[4.53606714,0.03479556,99.76882843],[4.53606761,0.0347973,99.76863151],[4.53606807,0.03479904,99.76843534],[4.53606853,0.03480078,99.76823993],[4.53606899,0.03480253,99.7680453],[4.53606946,0.03480427,99.76785144],[4.53606992,0.03480601,99.76765837],[4.53607038,0.03480775,99.76746609],[4.53607084,0.03480949,99.76727461],[4.53607131,0.03481124,99.76708393],[4.53607177,0.03481298,99.76689406],[4.53607223,0.03481472,99.76670501],[4.53607269,0.03481646,99.76651676],[4.53607316,0.03481821,99.76632931],[4.53607362,0.03481995,99.76614265],[4.53607408,0.03482169,99.76595676],[4.53607454,0.03482343,99.76577164],[4.536075,0.03482517,99.76558727],[4.53607547,0.03482692,99.76540364],[4.53607593,0.03482866,99.76522075],[4.53607639,0.0348304,99.76503858],[4.53607685,0.03483214,99.76485712],[4.53607731,0.03483388,99.76467636],[4.53607778,0.03483563,99.76449629],[4.53607824,0.03483737,99.7643169],[4.5360787,0.03483911,99.76413818],[4.53607916,0.03484085,99.76396012],[4.53607962,0.03484259,99.76378271],[4.53608008,0.03484434,99.76360593],[4.53608055,0.03484608,99.76342978],[4.53608101,0.03484782,99.76325425],[4.53608147,0.03484956,99.76307932],[4.53608193,0.03485131,99.76290499],[4.53608239,0.03485305,99.76273124],[4.53608285,0.03485479,99.76255807],[4.53608332,0.03485653,99.76238546],[4.53608378,0.03485827,99.7622134],[4.53608424,0.03486002,99.76204189],[4.5360847,0.03486176,99.7618709],[4.53608516,0.0348635,99.76170044],[4.53608562,0.03486524,99.76153049],[4.53608608,0.03486699,99.76136103],[4.53608655,0.03486873,99.76119207],[4.53608701,0.03487047,99.76102359],[4.53608747,0.03487221,99.76085557],[4.53608793,0.03487395,99.76068801],[4.53608839,0.0348757,99.7605209],[4.53608885,0.03487744,99.76035423],[4.53608931,0.03487918,99.76018798],[4.53608977,0.03488092,99.76002215],[4.53609024,0.03488267,99.75985672],[4.5360907,0.03488441,99.75969168],[4.53609116,0.03488615,99.75952703],[4.53609162,0.03488789,99.75936276],[4.53609208,0.03488964,99.75919885],[4.53609254,0.03489138,99.75903528],[4.536093,0.03489312,99.75887207],[4.53609346,0.03489486,99.75870918],[4.53609392,0.0348966,99.75854661],[4.53609439,0.03489835,99.75838436],[4.53609485,0.03490009,99.7582224],[4.53609531,0.03490183,99.75806074],[4.53609577,0.03490357,99.75789935],[4.53609623,0.03490532,99.75773823],[4.53609669,0.03490706,99.75757737],[4.53609715,0.0349088,99.75741676],[4.53609761,0.03491054,99.75725638],[4.53609807,0.03491228,99.75709623],[4.53609853,0.03491403,99.7569363],[4.53609899,0.03491577,99.75677658],[4.53609946,0.03491751,99.75661705],[4.53609992,0.03491925,99.7564577],[4.53610038,0.034921,99.75629853],[4.53610084,0.03492274,99.75613953],[4.5361013,0.03492448,99.75598068],[4.53610176,0.03492622,99.75582197],[4.53610222,0.03492797,99.75566339],[4.53610268,0.03492971,99.75550494],[4.53610314,0.03493145,99.7553466],[4.5361036,0.03493319,99.75518837],[4.53610406,0.03493493,99.75503022],[4.53610452,0.03493668,99.75487216],[4.53610499,0.03493842,99.75471417],[4.53610545,0.03494016,99.75455623],[4.53610591,0.0349419,99.75439835],[4.53610637,0.03494365,99.75424051],[4.53610683,0.03494539,99.7540827],[4.53610729,0.03494713,99.75392491],[4.53610775,0.03494887,99.75376713],[4.53610821,0.03495062,99.75360935],[4.53610867,0.03495236,99.75345156],[4.53610913,0.0349541,99.75329374],[4.53610959,0.03495584,99.75313589],[4.53611005,0.03495758,99.75297801],[4.53611051,0.03495933,99.75282007],[4.53611097,0.03496107,99.75266206],[4.53611144,0.03496281,99.75250399],[4.5361119,0.03496455,99.75234583],[4.53611236,0.0349663,99.75218758],[4.53611282,0.03496804,99.75202923],[4.53611328,0.03496978,99.75187076],[4.53611374,0.03497152,99.75171217],[4.5361142,0.03497327,99.75155344],[4.53611466,0.03497501,99.75139458],[4.53611512,0.03497675,99.75123555],[4.53611558,0.03497849,99.75107637],[4.53611604,0.03498023,99.75091701],[4.5361165,0.03498198,99.75075746],[4.53611696,0.03498372,99.75059772],[4.53611742,0.03498546,99.75043777],[4.53611788,0.0349872,99.7502776],[4.53611835,0.03498895,99.75011721],[4.53611881,0.03499069,99.74995657],[4.53611927,0.03499243,99.74979567],[4.53611973,0.03499417,99.74963452],[4.53612019,0.03499592,99.74947308],[4.53612065,0.03499766,99.74931136],[4.53612111,0.0349994,99.74914934],[4.53612157,0.03500114,99.74898701],[4.53612203,0.03500288,99.74882436],[4.53612249,0.03500463,99.74866137],[4.53612295,0.03500637,99.74849804],[4.53612341,0.03500811,99.74833435],[4.53612387,0.03500985,99.74817031],[4.53612433,0.0350116,99.74800592],[4.53612479,0.03501334,99.7478412],[4.53612525,0.03501508,99.74767616],[4.53612571,0.03501682,99.74751082],[4.53612617,0.03501856,99.74734516],[4.53612663,0.03502031,99.74717922],[4.53612709,0.03502205,99.74701299],[4.53612755,0.03502379,99.74684648],[4.53612801,0.03502553,99.7466797],[4.53612847,0.03502728,99.74651266],[4.53612893,0.03502902,99.74634537],[4.53612939,0.03503076,99.74617783],[4.53612985,0.0350325,99.74601005],[4.53613031,0.03503425,99.74584204],[4.53613077,0.03503599,99.74567382],[4.53613123,0.03503773,99.74550539],[4.53613169,0.03503947,99.74533677],[4.53613214,0.03504122,99.74516796],[4.5361326,0.03504296,99.74499898],[4.53613306,0.0350447,99.74482983],[4.53613352,0.03504644,99.74466052],[4.53613398,0.03504819,99.74449107],[4.53613444,0.03504993,99.74432148],[4.5361349,0.03505167,99.74415177],[4.53613536,0.03505342,99.74398194],[4.53613582,0.03505516,99.743812],[4.53613628,0.0350569,99.74364196],[4.53613673,0.03505864,99.74347184],[4.53613719,0.03506039,99.74330164],[4.53613765,0.03506213,99.74313137],[4.53613811,0.03506387,99.74296104],[4.53613857,0.03506562,99.74279066],[4.53613903,0.03506736,99.74262024],[4.53613949,0.0350691,99.7424498],[4.53613995,0.03507084,99.74227933],[4.5361404,0.03507259,99.74210884],[4.53614086,0.03507433,99.74193836],[4.53614132,0.03507607,99.74176788],[4.53614178,0.03507782,99.74159742],[4.53614224,0.03507956,99.74142698],[4.5361427,0.0350813,99.74125657],[4.53614316,0.03508304,99.74108621],[4.53614361,0.03508479,99.7409159],[4.53614407,0.03508653,99.74074565],[4.53614453,0.03508827,99.74057546],[4.53614499,0.03509002,99.74040532],[4.53614545,0.03509176,99.74023519],[4.53614591,0.0350935,99.74006506],[4.53614636,0.03509524,99.73989489],[4.53614682,0.03509699,99.73972465],[4.53614728,0.03509873,99.73955434],[4.53614774,0.03510047,99.7393839],[4.5361482,0.03510222,99.73921334],[4.53614866,0.03510396,99.7390426],[4.53614911,0.0351057,99.73887168],[4.53614957,0.03510744,99.73870054],[4.53615003,0.03510919,99.73852916],[4.53615049,0.03511093,99.73835751],[4.53615095,0.03511267,99.73818557],[4.5361514,0.03511442,99.73801331],[4.53615186,0.03511616,99.7378407],[4.53615232,0.0351179,99.73766773],[4.53615278,0.03511965,99.73749436],[4.53615324,0.03512139,99.73732057],[4.5361537,0.03512313,99.73714634],[4.53615415,0.03512488,99.73697163],[4.53615461,0.03512662,99.73679643],[4.53615507,0.03512836,99.73662071],[4.53615553,0.0351301,99.73644444],[4.53615599,0.03513185,99.7362676],[4.53615644,0.03513359,99.73609016],[4.5361569,0.03513533,99.7359121],[4.53615736,0.03513708,99.73573339],[4.53615782,0.03513882,99.73555401],[4.53615827,0.03514056,99.73537393],[4.53615873,0.03514231,99.73519314],[4.53615919,0.03514405,99.73501159],[4.53615965,0.03514579,99.73482928],[4.53616011,0.03514754,99.73464616],[4.53616056,0.03514928,99.73446223],[4.53616102,0.03515102,99.73427745],[4.53616148,0.03515276,99.73409181],[4.53616194,0.03515451,99.73390526],[4.53616239,0.03515625,99.7337178],[4.53616285,0.03515799,99.73352939],[4.53616331,0.03515974,99.73334002],[4.53616376,0.03516148,99.73314966],[4.53616422,0.03516322,99.7329583],[4.53616468,0.03516497,99.73276595],[4.53616514,0.03516671,99.73257259],[4.53616559,0.03516845,99.73237823],[4.53616605,0.0351702,99.73218287],[4.53616651,0.03517194,99.73198651],[4.53616697,0.03517368,99.73178913],[4.53616742,0.03517543,99.73159074],[4.53616788,0.03517717,99.73139134],[4.53616834,0.03517891,99.73119092],[4.53616879,0.03518066,99.73098948],[4.53616925,0.0351824,99.73078702],[4.53616971,0.03518414,99.73058354],[4.53617017,0.03518589,99.73037903],[4.53617062,0.03518763,99.73017349],[4.53617108,0.03518937,99.72996692],[4.53617154,0.03519112,99.72975932],[4.53617199,0.03519286,99.72955068],[4.53617245,0.0351946,99.729341],[4.53617291,0.03519635,99.72913027],[4.53617337,0.03519809,99.72891851],[4.53617382,0.03519983,99.7287057],[4.53617428,0.03520158,99.72849183],[4.53617474,0.03520332,99.72827692],[4.5361752,0.03520506,99.72806095],[4.53617565,0.03520681,99.72784392],[4.53617611,0.03520855,99.72762584],[4.53617657,0.03521029,99.72740669],[4.53617702,0.03521204,99.72718647],[4.53617748,0.03521378,99.72696519],[4.53617794,0.03521552,99.72674283],[4.5361784,0.03521727,99.7265194],[4.53617885,0.03521901,99.7262949],[4.53617931,0.03522075,99.72606931],[4.53617977,0.0352225,99.72584264],[4.53618023,0.03522424,99.72561489],[4.53618068,0.03522598,99.72538605],[4.53618114,0.03522773,99.72515612],[4.5361816,0.03522947,99.7249251],[4.53618206,0.03523121,99.72469298],[4.53618251,0.03523296,99.72445976],[4.53618297,0.0352347,99.72422544],[4.53618343,0.03523644,99.72399002],[4.53618389,0.03523819,99.72375348],[4.53618434,0.03523993,99.72351584],[4.5361848,0.03524167,99.72327708],[4.53618526,0.03524342,99.72303721],[4.53618572,0.03524516,99.72279622],[4.53618617,0.0352469,99.7225541],[4.53618663,0.03524864,99.72231086],[4.53618709,0.03525039,99.72206649],[4.53618755,0.03525213,99.72182099],[4.536188,0.03525387,99.72157434],[4.53618846,0.03525562,99.72132655],[4.53618892,0.03525736,99.72107762],[4.53618938,0.0352591,99.72082754],[4.53618984,0.03526085,99.72057631],[4.53619029,0.03526259,99.72032393],[4.53619075,0.03526433,99.7200704],[4.53619121,0.03526608,99.71981571],[4.53619167,0.03526782,99.71955987],[4.53619212,0.03526956,99.71930286],[4.53619258,0.03527131,99.71904471],[4.53619304,0.03527305,99.71878539],[4.5361935,0.03527479,99.7185249],[4.53619396,0.03527654,99.71826326],[4.53619441,0.03527828,99.71800045],[4.53619487,0.03528002,99.71773648],[4.53619533,0.03528177,99.71747133],[4.53619579,0.03528351,99.71720502],[4.53619625,0.03528525,99.71693754],[4.5361967,0.03528699,99.71666889],[4.53619716,0.03528874,99.71639906],[4.53619762,0.03529048,99.71612806],[4.53619808,0.03529222,99.71585588],[4.53619854,0.03529397,99.71558252],[4.536199,0.03529571,99.71530798],[4.53619945,0.03529745,99.71503226],[4.53619991,0.0352992,99.71475536],[4.53620037,0.03530094,99.71447727],[4.53620083,0.03530268,99.71419799],[4.53620129,0.03530442,99.71391753],[4.53620175,0.03530617,99.71363587],[4.53620221,0.03530791,99.71335303],[4.53620266,0.03530965,99.71306899],[4.53620312,0.0353114,99.71278376],[4.53620358,0.03531314,99.71249733],[4.53620404,0.03531488,99.7122097],[4.5362045,0.03531663,99.71192087],[4.53620496,0.03531837,99.71163084],[4.53620542,0.03532011,99.7113396],[4.53620588,0.03532185,99.71104716],[4.53620634,0.0353236,99.71075349],[4.5362068,0.03532534,99.71045859],[4.53620726,0.03532708,99.71016244],[4.53620771,0.03532883,99.70986501],[4.53620817,0.03533057,99.7095663],[4.53620863,0.03533231,99.70926629],[4.53620909,0.03533405,99.70896496],[4.53620955,0.0353358,99.70866229],[4.53621001,0.03533754,99.70835828],[4.53621047,0.03533928,99.7080529],[4.53621093,0.03534103,99.70774614],[4.53621139,0.03534277,99.70743798],[4.53621185,0.03534451,99.70712841],[4.53621231,0.03534625,99.70681741],[4.53621277,0.035348,99.70650496],[4.53621323,0.03534974,99.70619105],[4.53621369,0.03535148,99.70587567],[4.53621415,0.03535322,99.7055588],[4.53621461,0.03535497,99.70524041],[4.53621507,0.03535671,99.70492051],[4.53621552,0.03535845,99.70459906],[4.53621598,0.0353602,99.70427606],[4.53621644,0.03536194,99.70395149],[4.5362169,0.03536368,99.70362533],[4.53621736,0.03536542,99.70329757],[4.53621782,0.03536717,99.70296819],[4.53621828,0.03536891,99.70263718],[4.53621874,0.03537065,99.70230452],[4.5362192,0.0353724,99.7019702],[4.53621966,0.03537414,99.70163419],[4.53622012,0.03537588,99.70129649],[4.53622058,0.03537762,99.70095708],[4.53622103,0.03537937,99.70061594],[4.53622149,0.03538111,99.70027306],[4.53622195,0.03538285,99.69992843],[4.53622241,0.0353846,99.69958201],[4.53622287,0.03538634,99.69923381],[4.53622333,0.03538808,99.69888381],[4.53622379,0.03538983,99.69853199],[4.53622425,0.03539157,99.69817833],[4.5362247,0.03539331,99.69782282],[4.53622516,0.03539505,99.69746545],[4.53622562,0.0353968,99.69710619],[4.53622608,0.03539854,99.69674504],[4.53622654,0.03540028,99.69638198],[4.536227,0.03540203,99.69601698],[4.53622745,0.03540377,99.69565005],[4.53622791,0.03540551,99.69528116],[4.53622837,0.03540726,99.69491029],[4.53622883,0.035409,99.69453744],[4.53622929,0.03541074,99.69416258],[4.53622974,0.03541249,99.69378569],[4.5362302,0.03541423,99.69340675],[4.53623066,0.03541597,99.69302576],[4.53623112,0.03541772,99.69264267],[4.53623157,0.03541946,99.69225748],[4.53623203,0.0354212,99.69187017],[4.53623249,0.03542295,99.69148073],[4.53623294,0.03542469,99.69108912],[4.5362334,0.03542643,99.69069535],[4.53623386,0.03542818,99.6902994],[4.53623431,0.03542992,99.68990123],[4.53623477,0.03543167,99.68950085],[4.53623523,0.03543341,99.68909823],[4.53623568,0.03543515,99.68869336],[4.53623614,0.0354369,99.68828622],[4.5362366,0.03543864,99.68787679],[4.53623705,0.03544038,99.68746505],[4.53623751,0.03544213,99.687051],[4.53623796,0.03544387,99.68663461],[4.53623842,0.03544562,99.68621587],[4.53623887,0.03544736,99.68579476],[4.53623933,0.0354491,99.68537126],[4.53623978,0.03545085,99.68494536],[4.53624024,0.03545259,99.68451705],[4.53624069,0.03545434,99.68408634],[4.53624115,0.03545608,99.68365322],[4.5362416,0.03545782,99.68321771],[4.53624206,0.03545957,99.6827798],[4.53624251,0.03546131,99.68233951],[4.53624296,0.03546306,99.68189682],[4.53624342,0.0354648,99.68145176],[4.53624387,0.03546655,99.68100432],[4.53624433,0.03546829,99.6805545],[4.53624478,0.03547003,99.68010231],[4.53624523,0.03547178,99.67964776],[4.53624569,0.03547352,99.67919084],[4.53624614,0.03547527,99.67873156],[4.53624659,0.03547701,99.67826993],[4.53624705,0.03547876,99.67780595],[4.5362475,0.0354805,99.67733962],[4.53624795,0.03548225,99.67687094],[4.53624841,0.03548399,99.67639992],[4.53624886,0.03548574,99.67592657],[4.53624931,0.03548748,99.67545088],[4.53624976,0.03548922,99.67497287],[4.53625022,0.03549097,99.67449253],[4.53625067,0.03549271,99.67400986],[4.53625112,0.03549446,99.67352488],[4.53625157,0.0354962,99.67303758],[4.53625203,0.03549795,99.67254797],[4.53625248,0.03549969,99.67205606],[4.53625293,0.03550144,99.67156184],[4.53625338,0.03550318,99.67106532],[4.53625384,0.03550493,99.67056651],[4.53625429,0.03550667,99.6700654],[4.53625474,0.03550842,99.669562],[4.53625519,0.03551016,99.66905632],[4.53625565,0.03551191,99.66854836],[4.5362561,0.03551365,99.66803812],[4.53625655,0.0355154,99.6675256],[4.536257,0.03551714,99.66701082],[4.53625746,0.03551888,99.66649376],[4.53625791,0.03552063,99.66597445],[4.53625836,0.03552237,99.66545288],[4.53625882,0.03552412,99.66492905],[4.53625927,0.03552586,99.66440297],[4.53625972,0.03552761,99.66387464],[4.53626017,0.03552935,99.66334407],[4.53626063,0.0355311,99.66281126],[4.53626108,0.03553284,99.66227621],[4.53626153,0.03553459,99.66173893],[4.53626199,0.03553633,99.66119943],[4.53626244,0.03553808,99.66065769],[4.53626289,0.03553982,99.66011374],[4.53626335,0.03554157,99.65956757],[4.5362638,0.03554331,99.65901919],[4.53626425,0.03554505,99.6584686],[4.53626471,0.0355468,99.65791581],[4.53626516,0.03554854,99.65736081],[4.53626561,0.03555029,99.65680362],[4.53626607,0.03555203,99.65624424],[4.53626652,0.03555378,99.65568267],[4.53626697,0.03555552,99.65511891],[4.53626743,0.03555726,99.65455297],[4.53626788,0.03555901,99.65398484],[4.53626834,0.03556075,99.6534145],[4.53626879,0.0355625,99.65284193],[4.53626925,0.03556424,99.6522671],[4.5362697,0.03556599,99.65169001],[4.53627016,0.03556773,99.65111063],[4.53627061,0.03556947,99.65052894],[4.53627107,0.03557122,99.64994492],[4.53627152,0.03557296,99.64935855],[4.53627198,0.03557471,99.64876982],[4.53627243,0.03557645,99.64817869],[4.53627289,0.03557819,99.64758516],[4.53627334,0.03557994,99.6469892],[4.5362738,0.03558168,99.6463908],[4.53627425,0.03558343,99.64578992],[4.53627471,0.03558517,99.64518656],[4.53627516,0.03558691,99.64458071],[4.53627562,0.03558866,99.64397236],[4.53627607,0.0355904,99.64336154],[4.53627653,0.03559215,99.64274825],[4.53627699,0.03559389,99.64213249],[4.53627744,0.03559563,99.64151429],[4.5362779,0.03559738,99.64089365],[4.53627835,0.03559912,99.64027057],[4.53627881,0.03560087,99.63964508],[4.53627926,0.03560261,99.63901717],[4.53627972,0.03560435,99.63838687],[4.53628018,0.0356061,99.63775417],[4.53628063,0.03560784,99.6371191],[4.53628109,0.03560959,99.63648165],[4.53628154,0.03561133,99.63584183],[4.536282,0.03561307,99.63519967],[4.53628246,0.03561482,99.63455516],[4.53628291,0.03561656,99.63390832],[4.53628337,0.03561831,99.63325915],[4.53628382,0.03562005,99.63260767],[4.53628428,0.03562179,99.63195388],[4.53628473,0.03562354,99.63129779],[4.53628519,0.03562528,99.63063941],[4.53628565,0.03562703,99.62997876],[4.5362861,0.03562877,99.62931584],[4.53628656,0.03563051,99.62865065],[4.53628701,0.03563226,99.62798322],[4.53628747,0.035634,99.62731354],[4.53628792,0.03563575,99.62664163],[4.53628838,0.03563749,99.62596749],[4.53628884,0.03563923,99.62529114],[4.53628929,0.03564098,99.62461259],[4.53628975,0.03564272,99.62393183],[4.5362902,0.03564447,99.62324889],[4.53629066,0.03564621,99.62256377],[4.53629111,0.03564795,99.62187648],[4.53629157,0.0356497,99.62118703],[4.53629202,0.03565144,99.62049542],[4.53629248,0.03565319,99.61980167],[4.53629293,0.03565493,99.61910579],[4.53629339,0.03565667,99.61840778],[4.53629384,0.03565842,99.61770765],[4.5362943,0.03566016,99.61700542],[4.53629475,0.03566191,99.61630108],[4.53629521,0.03566365,99.61559466],[4.53629566,0.0356654,99.61488615],[4.53629612,0.03566714,99.61417556],[4.53629657,0.03566888,99.61346291],[4.53629703,0.03567063,99.61274821],[4.53629748,0.03567237,99.61203149],[4.53629794,0.03567412,99.61131276],[4.53629839,0.03567586,99.61059206],[4.53629884,0.03567761,99.60986939],[4.5362993,0.03567935,99.60914479],[4.53629975,0.03568109,99.60841829],[4.53630021,0.03568284,99.60768989],[4.53630066,0.03568458,99.60695963],[4.53630111,0.03568633,99.60622752],[4.53630157,0.03568807,99.6054936],[4.53630202,0.03568982,99.60475788],[4.53630248,0.03569156,99.60402039],[4.53630293,0.03569331,99.60328115],[4.53630338,0.03569505,99.60254018],[4.53630384,0.03569679,99.60179751],[4.53630429,0.03569854,99.60105316],[4.53630474,0.03570028,99.60030715],[4.5363052,0.03570203,99.59955951],[4.53630565,0.03570377,99.59881026],[4.5363061,0.03570552,99.59805942],[4.53630656,0.03570726,99.59730701],[4.53630701,0.03570901,99.59655307],[4.53630746,0.03571075,99.59579761],[4.53630792,0.0357125,99.59504065],[4.53630837,0.03571424,99.59428223],[4.53630882,0.03571598,99.59352236],[4.53630928,0.03571773,99.59276106],[4.53630973,0.03571947,99.59199836],[4.53631018,0.03572122,99.59123429],[4.53631063,0.03572296,99.59046886],[4.53631109,0.03572471,99.5897021],[4.53631154,0.03572645,99.58893403],[4.53631199,0.0357282,99.58816466],[4.53631245,0.03572994,99.58739402],[4.5363129,0.03573169,99.5866221],[4.53631335,0.03573343,99.58584895],[4.53631381,0.03573518,99.58507456],[4.53631426,0.03573692,99.58429896],[4.53631471,0.03573867,99.58352217],[4.53631516,0.03574041,99.5827442],[4.53631562,0.03574216,99.58196506],[4.53631607,0.0357439,99.58118478],[4.53631652,0.03574565,99.58040337],[4.53631697,0.03574739,99.57962085],[4.53631743,0.03574914,99.57883723],[4.53631788,0.03575088,99.57805254],[4.53631833,0.03575262,99.57726678],[4.53631878,0.03575437,99.57647998],[4.53631924,0.03575611,99.57569216],[4.53631969,0.03575786,99.57490332],[4.53632014,0.0357596,99.57411348],[4.53632059,0.03576135,99.57332267],[4.53632105,0.03576309,99.5725309],[4.5363215,0.03576484,99.57173818],[4.53632195,0.03576658,99.57094453],[4.5363224,0.03576833,99.57014998],[4.53632286,0.03577007,99.56935453],[4.53632331,0.03577182,99.5685582],[4.53632376,0.03577356,99.56776101],[4.53632421,0.03577531,99.56696298],[4.53632467,0.03577705,99.56616412],[4.53632512,0.0357788,99.56536446],[4.53632557,0.03578054,99.56456399],[4.53632602,0.03578229,99.56376275],[4.53632647,0.03578403,99.56296075],[4.53632693,0.03578578,99.56215801],[4.53632738,0.03578752,99.56135454],[4.53632783,0.03578927,99.56055036],[4.53632828,0.03579101,99.55974549],[4.53632873,0.03579276,99.55893994],[4.53632918,0.0357945,99.55813372],[4.53632964,0.03579625,99.55732687],[4.53633009,0.03579799,99.55651939],[4.53633054,0.03579974,99.5557113],[4.53633099,0.03580148,99.55490262],[4.53633144,0.03580323,99.55409336],[4.5363319,0.03580497,99.55328354],[4.53633235,0.03580672,99.55247317],[4.5363328,0.03580846,99.55166229],[4.53633325,0.03581021,99.55085089],[4.5363337,0.03581195,99.55003899],[4.53633415,0.0358137,99.54922663],[4.5363346,0.03581544,99.5484138],[4.53633506,0.03581719,99.54760053],[4.53633551,0.03581893,99.54678683],[4.53633596,0.03582068,99.54597272],[4.53633641,0.03582242,99.54515822],[4.53633686,0.03582417,99.54434334],[4.53633731,0.03582591,99.54352811],[4.53633776,0.03582766,99.54271253],[4.53633821,0.03582941,99.54189662],[4.53633867,0.03583115,99.54108041],[4.53633912,0.0358329,99.5402639],[4.53633957,0.03583464,99.53944712],[4.53634002,0.03583639,99.53863008],[4.53634047,0.03583813,99.53781279],[4.53634092,0.03583988,99.53699529],[4.53634137,0.03584162,99.53617758],[4.53634182,0.03584337,99.53535969],[4.53634227,0.03584511,99.53454162],[4.53634272,0.03584686,99.5337234],[4.53634317,0.0358486,99.53290505],[4.53634363,0.03585035,99.53208659],[4.53634408,0.03585209,99.53126802],[4.53634453,0.03585384,99.53044937],[4.53634498,0.03585558,99.52963066],[4.53634543,0.03585733,99.52881191],[4.53634588,0.03585907,99.52799312],[4.53634633,0.03586082,99.52717433],[4.53634678,0.03586256,99.52635554],[4.53634723,0.03586431,99.52553678],[4.53634768,0.03586606,99.52471806],[4.53634813,0.0358678,99.5238994],[4.53634858,0.03586955,99.52308082],[4.53634903,0.03587129,99.52226234],[4.53634948,0.03587304,99.52144397],[4.53634993,0.03587478,99.52062573],[4.53635038,0.03587653,99.51980764],[4.53635083,0.03587827,99.51898971],[4.53635128,0.03588002,99.51817198],[4.53635173,0.03588176,99.51735444],[4.53635218,0.03588351,99.51653712],[4.53635263,0.03588525,99.51572004],[4.53635308,0.035887,99.51490322],[4.53635353,0.03588875,99.51408667],[4.53635398,0.03589049,99.5132704],[4.53635443,0.03589224,99.51245445],[4.53635488,0.03589398,99.51163883],[4.53635534,0.03589573,99.51082355],[4.53635579,0.03589747,99.51000863],[4.53635624,0.03589922,99.50919408],[4.53635669,0.03590096,99.50837994],[4.53635714,0.03590271,99.50756621],[4.53635759,0.03590445,99.50675292],[4.53635804,0.0359062,99.50594007],[4.53635848,0.03590795,99.5051277],[4.53635893,0.03590969,99.5043158],[4.53635938,0.03591144,99.50350442],[4.53635983,0.03591318,99.50269355],[4.53636028,0.03591493,99.50188323],[4.53636073,0.03591667,99.50107348],[4.53636118,0.03591842,99.50026432],[4.53636163,0.03592016,99.49945577],[4.53636208,0.03592191,99.49864785],[4.53636253,0.03592365,99.49784059],[4.53636298,0.0359254,99.497034],[4.53636343,0.03592715,99.49622811],[4.53636388,0.03592889,99.49542294],[4.53636433,0.03593064,99.49461851],[4.53636478,0.03593238,99.49381484],[4.53636523,0.03593413,99.49301195],[4.53636568,0.03593587,99.49220987],[4.53636613,0.03593762,99.49140861],[4.53636658,0.03593936,99.49060819],[4.53636703,0.03594111,99.48980863],[4.53636748,0.03594285,99.48900997],[4.53636793,0.0359446,99.48821221],[4.53636838,0.03594635,99.48741538],[4.53636883,0.03594809,99.4866195],[4.53636928,0.03594984,99.48582459],[4.53636973,0.03595158,99.48503068],[4.53637018,0.03595333,99.48423778],[4.53637063,0.03595507,99.48344591],[4.53637108,0.03595682,99.4826551],[4.53637153,0.03595856,99.48186536],[4.53637198,0.03596031,99.48107672],[4.53637243,0.03596205,99.48028921],[4.53637288,0.0359638,99.47950283],[4.53637333,0.03596555,99.47871759],[4.53637378,0.03596729,99.4779335],[4.53637423,0.03596904,99.47715054],[4.53637468,0.03597078,99.47636872],[4.53637513,0.03597253,99.47558804],[4.53637558,0.03597427,99.47480849],[4.53637603,0.03597602,99.47403008],[4.53637648,0.03597776,99.4732528],[4.53637693,0.03597951,99.47247664],[4.53637738,0.03598125,99.47170162],[4.53637783,0.035983,99.47092772],[4.53637828,0.03598474,99.47015494],[4.53637873,0.03598649,99.46938329],[4.53637918,0.03598824,99.46861276],[4.53637963,0.03598998,99.46784334],[4.53638008,0.03599173,99.46707505],[4.53638053,0.03599347,99.46630786],[4.53638098,0.03599522,99.46554179],[4.53638143,0.03599696,99.46477683],[4.53638188,0.03599871,99.46401296],[4.53638233,0.03600045,99.46325019],[4.53638279,0.0360022,99.4624885],[4.53638324,0.03600394,99.4617279],[4.53638369,0.03600569,99.46096837],[4.53638414,0.03600743,99.46020992],[4.53638459,0.03600918,99.45945254],[4.53638504,0.03601092,99.45869621],[4.53638549,0.03601267,99.45794094],[4.53638594,0.03601441,99.45718672],[4.53638639,0.03601616,99.45643355],[4.53638684,0.0360179,99.45568141],[4.53638729,0.03601965,99.45493031],[4.53638775,0.03602139,99.45418024],[4.5363882,0.03602314,99.45343119],[4.53638865,0.03602488,99.45268315],[4.5363891,0.03602663,99.45193613],[4.53638955,0.03602837,99.45119012],[4.53639,0.03603012,99.4504451],[4.53639045,0.03603186,99.44970108],[4.5363909,0.03603361,99.44895805],[4.53639136,0.03603535,99.448216],[4.53639181,0.0360371,99.44747493],[4.53639226,0.03603884,99.44673484],[4.53639271,0.03604059,99.44599571],[4.53639316,0.03604233,99.44525754],[4.53639361,0.03604408,99.44452033],[4.53639407,0.03604582,99.44378405],[4.53639452,0.03604757,99.44304872],[4.53639497,0.03604931,99.44231431],[4.53639542,0.03605106,99.44158081],[4.53639587,0.0360528,99.44084823],[4.53639632,0.03605455,99.44011654],[4.53639678,0.03605629,99.43938574],[4.53639723,0.03605804,99.43865581],[4.53639768,0.03605978,99.43792676],[4.53639813,0.03606153,99.43719857],[4.53639858,0.03606327,99.43647123],[4.53639903,0.03606502,99.43574473],[4.53639949,0.03606676,99.43501907],[4.53639994,0.03606851,99.43429423],[4.53640039,0.03607025,99.4335702],[4.53640084,0.036072,99.43284698],[4.53640129,0.03607374,99.43212456],[4.53640175,0.03607549,99.43140292],[4.5364022,0.03607723,99.43068206],[4.53640265,0.03607898,99.42996196],[4.5364031,0.03608072,99.42924263],[4.53640355,0.03608247,99.42852404],[4.53640401,0.03608421,99.4278062],[4.53640446,0.03608596,99.42708908],[4.53640491,0.0360877,99.42637269],[4.53640536,0.03608945,99.42565701],[4.53640581,0.03609119,99.42494203],[4.53640626,0.03609294,99.42422775],[4.53640672,0.03609468,99.42351415],[4.53640717,0.03609643,99.42280123],[4.53640762,0.03609817,99.42208897],[4.53640807,0.03609992,99.42137736],[4.53640852,0.03610166,99.42066641],[4.53640897,0.03610341,99.41995609],[4.53640943,0.03610515,99.41924641],[4.53640988,0.0361069,99.41853734],[4.53641033,0.03610864,99.41782888],[4.53641078,0.03611039,99.41712102],[4.53641123,0.03611213,99.41641375],[4.53641168,0.03611388,99.41570707],[4.53641214,0.03611562,99.41500096],[4.53641259,0.03611737,99.41429541],[4.53641304,0.03611911,99.41359042],[4.53641349,0.03612086,99.41288597],[4.53641394,0.0361226,99.41218205],[4.53641439,0.03612435,99.41147865],[4.53641484,0.03612609,99.41077574],[4.53641529,0.03612784,99.4100733],[4.53641574,0.03612958,99.40937132],[4.5364162,0.03613133,99.40866978],[4.53641665,0.03613307,99.40796868],[4.5364171,0.03613482,99.40726802],[4.53641755,0.03613656,99.4065678],[4.536418,0.03613831,99.40586802],[4.53641845,0.03614005,99.40516868],[4.5364189,0.0361418,99.40446977],[4.53641935,0.03614354,99.4037713],[4.5364198,0.03614529,99.40307326],[4.53642025,0.03614703,99.40237564],[4.5364207,0.03614878,99.40167845],[4.53642115,0.03615052,99.40098168],[4.5364216,0.03615227,99.40028533],[4.53642205,0.03615401,99.39958939],[4.5364225,0.03615576,99.39889386],[4.53642295,0.0361575,99.39819874],[4.5364234,0.03615925,99.39750403],[4.53642385,0.03616099,99.39680972],[4.5364243,0.03616274,99.3961158],[4.53642475,0.03616449,99.39542228],[4.5364252,0.03616623,99.39472915],[4.53642565,0.03616798,99.39403641],[4.5364261,0.03616972,99.39334406],[4.53642655,0.03617147,99.39265209],[4.536427,0.03617321,99.3919605],[4.53642745,0.03617496,99.39126928],[4.5364279,0.0361767,99.39057844],[4.53642835,0.03617845,99.38988797],[4.5364288,0.03618019,99.38919786],[4.53642924,0.03618194,99.38850812],[4.53642969,0.03618369,99.38781873],[4.53643014,0.03618543,99.38712971],[4.53643059,0.03618718,99.38644103],[4.53643104,0.03618892,99.38575271],[4.53643149,0.03619067,99.38506474],[4.53643194,0.03619241,99.38437711],[4.53643239,0.03619416,99.38368982],[4.53643284,0.0361959,99.38300287],[4.53643328,0.03619765,99.38231625],[4.53643373,0.0361994,99.38162996],[4.53643418,0.03620114,99.38094401],[4.53643463,0.03620289,99.38025837],[4.53643508,0.03620463,99.37957306],[4.53643553,0.03620638,99.37888807],[4.53643597,0.03620812,99.37820339],[4.53643642,0.03620987,99.37751902],[4.53643687,0.03621162,99.37683497],[4.53643732,0.03621336,99.37615122],[4.53643777,0.03621511,99.37546777],[4.53643821,0.03621685,99.37478462],[4.53643866,0.0362186,99.37410176],[4.53643911,0.03622035,99.3734192],[4.53643956,0.03622209,99.37273693],[4.53644,0.03622384,99.37205494],[4.53644045,0.03622558,99.37137324],[4.5364409,0.03622733,99.37069181],[4.53644135,0.03622908,99.37001066],[4.53644179,0.03623082,99.36932979],[4.53644224,0.03623257,99.36864918],[4.53644269,0.03623431,99.36796883],[4.53644314,0.03623606,99.36728871],[4.53644358,0.03623781,99.36660878],[4.53644403,0.03623955,99.36592902],[4.53644448,0.0362413,99.36524939],[4.53644493,0.03624304,99.36456986],[4.53644537,0.03624479,99.36389042],[4.53644582,0.03624654,99.36321106],[4.53644627,0.03624828,99.36253177],[4.53644671,0.03625003,99.36185255],[4.53644716,0.03625177,99.36117339],[4.53644761,0.03625352,99.36049428],[4.53644805,0.03625527,99.35981522],[4.5364485,0.03625701,99.35913621],[4.53644895,0.03625876,99.35845723],[4.53644939,0.0362605,99.35777828],[4.53644984,0.03626225,99.35709935],[4.53645029,0.036264,99.35642044],[4.53645073,0.03626574,99.35574155],[4.53645118,0.03626749,99.35506266],[4.53645163,0.03626924,99.35438377],[4.53645207,0.03627098,99.35370487],[4.53645252,0.03627273,99.35302596],[4.53645296,0.03627447,99.35234704],[4.53645341,0.03627622,99.35166809],[4.53645386,0.03627797,99.35098911],[4.5364543,0.03627971,99.3503101],[4.53645475,0.03628146,99.34963104],[4.53645519,0.03628321,99.34895194],[4.53645564,0.03628495,99.34827278],[4.53645609,0.0362867,99.34759356],[4.53645653,0.03628844,99.34691427],[4.53645698,0.03629019,99.3462349],[4.53645742,0.03629194,99.34555543],[4.53645787,0.03629368,99.34487587],[4.53645831,0.03629543,99.34419619],[4.53645876,0.03629718,99.3435164],[4.5364592,0.03629892,99.34283647],[4.53645965,0.03630067,99.3421564],[4.53646009,0.03630242,99.34147618],[4.53646054,0.03630416,99.34079581],[4.53646099,0.03630591,99.34011526],[4.53646143,0.03630766,99.33943453],[4.53646188,0.0363094,99.33875361],[4.53646232,0.03631115,99.3380725],[4.53646277,0.0363129,99.33739117],[4.53646321,0.03631464,99.33670963],[4.53646366,0.03631639,99.33602787],[4.5364641,0.03631813,99.33534587],[4.53646455,0.03631988,99.33466366],[4.53646499,0.03632163,99.33398121],[4.53646544,0.03632337,99.33329854],[4.53646588,0.03632512,99.33261563],[4.53646633,0.03632687,99.3319325],[4.53646677,0.03632861,99.33124913],[4.53646722,0.03633036,99.33056552],[4.53646766,0.03633211,99.32988168],[4.53646811,0.03633385,99.32919761],[4.53646855,0.0363356,99.32851329],[4.53646899,0.03633735,99.32782874],[4.53646944,0.03633909,99.32714394],[4.53646988,0.03634084,99.32645891],[4.53647033,0.03634259,99.32577363],[4.53647077,0.03634433,99.3250881],[4.53647122,0.03634608,99.32440233],[4.53647166,0.03634783,99.32371631],[4.53647211,0.03634957,99.32303004],[4.53647255,0.03635132,99.32234352],[4.536473,0.03635307,99.32165675],[4.53647344,0.03635481,99.32096972],[4.53647389,0.03635656,99.32028245],[4.53647433,0.03635831,99.31959491],[4.53647478,0.03636005,99.31890711],[4.53647522,0.0363618,99.31821906],[4.53647567,0.03636355,99.31753075],[4.53647611,0.03636529,99.31684217],[4.53647656,0.03636704,99.31615333],[4.536477,0.03636879,99.31546423],[4.53647745,0.03637053,99.31477486],[4.53647789,0.03637228,99.31408525],[4.53647834,0.03637402,99.31339543],[4.53647878,0.03637577,99.31270541],[4.53647923,0.03637752,99.31201519],[4.53647967,0.03637926,99.31132475],[4.53648012,0.03638101,99.31063411],[4.53648056,0.03638276,99.30994326],[4.53648101,0.0363845,99.30925219],[4.53648145,0.03638625,99.30856092],[4.5364819,0.036388,99.30786943],[4.53648235,0.03638974,99.30717773],[4.53648279,0.03639149,99.30648581],[4.53648324,0.03639324,99.30579368],[4.53648368,0.03639498,99.30510132],[4.53648413,0.03639673,99.30440875],[4.53648457,0.03639847,99.30371596],[4.53648502,0.03640022,99.30302294],[4.53648546,0.03640197,99.3023297],[4.53648591,0.03640371,99.30163624],[4.53648636,0.03640546,99.30094254],[4.5364868,0.03640721,99.30024863],[4.53648725,0.03640895,99.29955448],[4.53648769,0.0364107,99.2988601],[4.53648814,0.03641244,99.29816549],[4.53648859,0.03641419,99.29747065],[4.53648903,0.03641594,99.29677557],[4.53648948,0.03641768,99.29608025],[4.53648992,0.03641943,99.2953847],[4.53649037,0.03642118,99.29468891],[4.53649082,0.03642292,99.29399288],[4.53649126,0.03642467,99.2932966],[4.53649171,0.03642641,99.29260009],[4.53649215,0.03642816,99.29190332],[4.5364926,0.03642991,99.29120632],[4.53649305,0.03643165,99.29050906],[4.53649349,0.0364334,99.28981155],[4.53649394,0.03643515,99.28911379],[4.53649438,0.03643689,99.28841578],[4.53649483,0.03643864,99.28771752],[4.53649528,0.03644038,99.28701899],[4.53649572,0.03644213,99.28632021],[4.53649617,0.03644388,99.28562118],[4.53649662,0.03644562,99.28492188],[4.53649706,0.03644737,99.28422231],[4.53649751,0.03644912,99.28352249],[4.53649795,0.03645086,99.2828224],[4.5364984,0.03645261,99.28212204],[4.53649885,0.03645435,99.28142141],[4.53649929,0.0364561,99.28072051],[4.53649974,0.03645784,99.28001933],[4.53650018,0.03645958,99.27931789],[4.53650063,0.03646133,99.27861616],[4.53650108,0.03646308,99.27791416],[4.53650152,0.03646482,99.27721188],[4.53650197,0.03646657,99.27650932],[4.53650242,0.03646831,99.27580648],[4.53650286,0.03647006,99.27510335],[4.53650331,0.03647181,99.27439993],[4.53650375,0.03647355,99.27369623],[4.5365042,0.0364753,99.27299224],[4.53650465,0.03647704,99.27228795],[4.53650509,0.03647879,99.27158333],[4.53650554,0.03648054,99.27087836],[4.53650599,0.03648228,99.27017298],[4.53650643,0.03648403,99.26946717],[4.53650688,0.03648578,99.26876088],[4.53650732,0.03648752,99.26805408],[4.53650777,0.03648927,99.26734672],[4.53650822,0.03649101,99.26663877],[4.53650866,0.03649276,99.2659302],[4.53650911,0.03649451,99.26522096],[4.53650955,0.03649625,99.26451101],[4.53649495,0.03650002,99.26451101]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-6,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":-6,"type":"none","predecessorId":-6,"sOffset":248.3390056326}},{"geometry":{"coordinates":[[[4.53650955,0.03649625,99.26451101],[4.53650911,0.03649451,99.26522096],[4.53650866,0.03649276,99.2659302],[4.53650822,0.03649101,99.26663877],[4.53650777,0.03648927,99.26734672],[4.53650732,0.03648752,99.26805408],[4.53650688,0.03648578,99.26876088],[4.53650643,0.03648403,99.26946717],[4.53650599,0.03648228,99.27017298],[4.53650554,0.03648054,99.27087836],[4.53650509,0.03647879,99.27158333],[4.53650465,0.03647704,99.27228795],[4.5365042,0.0364753,99.27299224],[4.53650375,0.03647355,99.27369623],[4.53650331,0.03647181,99.27439993],[4.53650286,0.03647006,99.27510335],[4.53650242,0.03646831,99.27580648],[4.53650197,0.03646657,99.27650932],[4.53650152,0.03646482,99.27721188],[4.53650108,0.03646308,99.27791416],[4.53650063,0.03646133,99.27861616],[4.53650018,0.03645958,99.27931789],[4.53649974,0.03645784,99.28001933],[4.53649929,0.0364561,99.28072051],[4.53649885,0.03645435,99.28142141],[4.5364984,0.03645261,99.28212204],[4.53649795,0.03645086,99.2828224],[4.53649751,0.03644912,99.28352249],[4.53649706,0.03644737,99.28422231],[4.53649662,0.03644562,99.28492188],[4.53649617,0.03644388,99.28562118],[4.53649572,0.03644213,99.28632021],[4.53649528,0.03644038,99.28701899],[4.53649483,0.03643864,99.28771752],[4.53649438,0.03643689,99.28841578],[4.53649394,0.03643515,99.28911379],[4.53649349,0.0364334,99.28981155],[4.53649305,0.03643165,99.29050906],[4.5364926,0.03642991,99.29120632],[4.53649215,0.03642816,99.29190332],[4.53649171,0.03642641,99.29260009],[4.53649126,0.03642467,99.2932966],[4.53649082,0.03642292,99.29399288],[4.53649037,0.03642118,99.29468891],[4.53648992,0.03641943,99.2953847],[4.53648948,0.03641768,99.29608025],[4.53648903,0.03641594,99.29677557],[4.53648859,0.03641419,99.29747065],[4.53648814,0.03641244,99.29816549],[4.53648769,0.0364107,99.2988601],[4.53648725,0.03640895,99.29955448],[4.5364868,0.03640721,99.30024863],[4.53648636,0.03640546,99.30094254],[4.53648591,0.03640371,99.30163624],[4.53648546,0.03640197,99.3023297],[4.53648502,0.03640022,99.30302294],[4.53648457,0.03639847,99.30371596],[4.53648413,0.03639673,99.30440875],[4.53648368,0.03639498,99.30510132],[4.53648324,0.03639324,99.30579368],[4.53648279,0.03639149,99.30648581],[4.53648235,0.03638974,99.30717773],[4.5364819,0.036388,99.30786943],[4.53648145,0.03638625,99.30856092],[4.53648101,0.0363845,99.30925219],[4.53648056,0.03638276,99.30994326],[4.53648012,0.03638101,99.31063411],[4.53647967,0.03637926,99.31132475],[4.53647923,0.03637752,99.31201519],[4.53647878,0.03637577,99.31270541],[4.53647834,0.03637402,99.31339543],[4.53647789,0.03637228,99.31408525],[4.53647745,0.03637053,99.31477486],[4.536477,0.03636879,99.31546423],[4.53647656,0.03636704,99.31615333],[4.53647611,0.03636529,99.31684217],[4.53647567,0.03636355,99.31753075],[4.53647522,0.0363618,99.31821906],[4.53647478,0.03636005,99.31890711],[4.53647433,0.03635831,99.31959491],[4.53647389,0.03635656,99.32028245],[4.53647344,0.03635481,99.32096972],[4.536473,0.03635307,99.32165675],[4.53647255,0.03635132,99.32234352],[4.53647211,0.03634957,99.32303004],[4.53647166,0.03634783,99.32371631],[4.53647122,0.03634608,99.32440233],[4.53647077,0.03634433,99.3250881],[4.53647033,0.03634259,99.32577363],[4.53646988,0.03634084,99.32645891],[4.53646944,0.03633909,99.32714394],[4.53646899,0.03633735,99.32782874],[4.53646855,0.0363356,99.32851329],[4.53646811,0.03633385,99.32919761],[4.53646766,0.03633211,99.32988168],[4.53646722,0.03633036,99.33056552],[4.53646677,0.03632861,99.33124913],[4.53646633,0.03632687,99.3319325],[4.53646588,0.03632512,99.33261563],[4.53646544,0.03632337,99.33329854],[4.53646499,0.03632163,99.33398121],[4.53646455,0.03631988,99.33466366],[4.5364641,0.03631813,99.33534587],[4.53646366,0.03631639,99.33602787],[4.53646321,0.03631464,99.33670963],[4.53646277,0.0363129,99.33739117],[4.53646232,0.03631115,99.3380725],[4.53646188,0.0363094,99.33875361],[4.53646143,0.03630766,99.33943453],[4.53646099,0.03630591,99.34011526],[4.53646054,0.03630416,99.34079581],[4.53646009,0.03630242,99.34147618],[4.53645965,0.03630067,99.3421564],[4.5364592,0.03629892,99.34283647],[4.53645876,0.03629718,99.3435164],[4.53645831,0.03629543,99.34419619],[4.53645787,0.03629368,99.34487587],[4.53645742,0.03629194,99.34555543],[4.53645698,0.03629019,99.3462349],[4.53645653,0.03628844,99.34691427],[4.53645609,0.0362867,99.34759356],[4.53645564,0.03628495,99.34827278],[4.53645519,0.03628321,99.34895194],[4.53645475,0.03628146,99.34963104],[4.5364543,0.03627971,99.3503101],[4.53645386,0.03627797,99.35098911],[4.53645341,0.03627622,99.35166809],[4.53645296,0.03627447,99.35234704],[4.53645252,0.03627273,99.35302596],[4.53645207,0.03627098,99.35370487],[4.53645163,0.03626924,99.35438377],[4.53645118,0.03626749,99.35506266],[4.53645073,0.03626574,99.35574155],[4.53645029,0.036264,99.35642044],[4.53644984,0.03626225,99.35709935],[4.53644939,0.0362605,99.35777828],[4.53644895,0.03625876,99.35845723],[4.5364485,0.03625701,99.35913621],[4.53644805,0.03625527,99.35981522],[4.53644761,0.03625352,99.36049428],[4.53644716,0.03625177,99.36117339],[4.53644671,0.03625003,99.36185255],[4.53644627,0.03624828,99.36253177],[4.53644582,0.03624654,99.36321106],[4.53644537,0.03624479,99.36389042],[4.53644493,0.03624304,99.36456986],[4.53644448,0.0362413,99.36524939],[4.53644403,0.03623955,99.36592902],[4.53644358,0.03623781,99.36660878],[4.53644314,0.03623606,99.36728871],[4.53644269,0.03623431,99.36796883],[4.53644224,0.03623257,99.36864918],[4.53644179,0.03623082,99.36932979],[4.53644135,0.03622908,99.37001066],[4.5364409,0.03622733,99.37069181],[4.53644045,0.03622558,99.37137324],[4.53644,0.03622384,99.37205494],[4.53643956,0.03622209,99.37273693],[4.53643911,0.03622035,99.3734192],[4.53643866,0.0362186,99.37410176],[4.53643821,0.03621685,99.37478462],[4.53643777,0.03621511,99.37546777],[4.53643732,0.03621336,99.37615122],[4.53643687,0.03621162,99.37683497],[4.53643642,0.03620987,99.37751902],[4.53643597,0.03620812,99.37820339],[4.53643553,0.03620638,99.37888807],[4.53643508,0.03620463,99.37957306],[4.53643463,0.03620289,99.38025837],[4.53643418,0.03620114,99.38094401],[4.53643373,0.0361994,99.38162996],[4.53643328,0.03619765,99.38231625],[4.53643284,0.0361959,99.38300287],[4.53643239,0.03619416,99.38368982],[4.53643194,0.03619241,99.38437711],[4.53643149,0.03619067,99.38506474],[4.53643104,0.03618892,99.38575271],[4.53643059,0.03618718,99.38644103],[4.53643014,0.03618543,99.38712971],[4.53642969,0.03618369,99.38781873],[4.53642924,0.03618194,99.38850812],[4.5364288,0.03618019,99.38919786],[4.53642835,0.03617845,99.38988797],[4.5364279,0.0361767,99.39057844],[4.53642745,0.03617496,99.39126928],[4.536427,0.03617321,99.3919605],[4.53642655,0.03617147,99.39265209],[4.5364261,0.03616972,99.39334406],[4.53642565,0.03616798,99.39403641],[4.5364252,0.03616623,99.39472915],[4.53642475,0.03616449,99.39542228],[4.5364243,0.03616274,99.3961158],[4.53642385,0.03616099,99.39680972],[4.5364234,0.03615925,99.39750403],[4.53642295,0.0361575,99.39819874],[4.5364225,0.03615576,99.39889386],[4.53642205,0.03615401,99.39958939],[4.5364216,0.03615227,99.40028533],[4.53642115,0.03615052,99.40098168],[4.5364207,0.03614878,99.40167845],[4.53642025,0.03614703,99.40237564],[4.5364198,0.03614529,99.40307326],[4.53641935,0.03614354,99.4037713],[4.5364189,0.0361418,99.40446977],[4.53641845,0.03614005,99.40516868],[4.536418,0.03613831,99.40586802],[4.53641755,0.03613656,99.4065678],[4.5364171,0.03613482,99.40726802],[4.53641665,0.03613307,99.40796868],[4.5364162,0.03613133,99.40866978],[4.53641574,0.03612958,99.40937132],[4.53641529,0.03612784,99.4100733],[4.53641484,0.03612609,99.41077574],[4.53641439,0.03612435,99.41147865],[4.53641394,0.0361226,99.41218205],[4.53641349,0.03612086,99.41288597],[4.53641304,0.03611911,99.41359042],[4.53641259,0.03611737,99.41429541],[4.53641214,0.03611562,99.41500096],[4.53641168,0.03611388,99.41570707],[4.53641123,0.03611213,99.41641375],[4.53641078,0.03611039,99.41712102],[4.53641033,0.03610864,99.41782888],[4.53640988,0.0361069,99.41853734],[4.53640943,0.03610515,99.41924641],[4.53640897,0.03610341,99.41995609],[4.53640852,0.03610166,99.42066641],[4.53640807,0.03609992,99.42137736],[4.53640762,0.03609817,99.42208897],[4.53640717,0.03609643,99.42280123],[4.53640672,0.03609468,99.42351415],[4.53640626,0.03609294,99.42422775],[4.53640581,0.03609119,99.42494203],[4.53640536,0.03608945,99.42565701],[4.53640491,0.0360877,99.42637269],[4.53640446,0.03608596,99.42708908],[4.53640401,0.03608421,99.4278062],[4.53640355,0.03608247,99.42852404],[4.5364031,0.03608072,99.42924263],[4.53640265,0.03607898,99.42996196],[4.5364022,0.03607723,99.43068206],[4.53640175,0.03607549,99.43140292],[4.53640129,0.03607374,99.43212456],[4.53640084,0.036072,99.43284698],[4.53640039,0.03607025,99.4335702],[4.53639994,0.03606851,99.43429423],[4.53639949,0.03606676,99.43501907],[4.53639903,0.03606502,99.43574473],[4.53639858,0.03606327,99.43647123],[4.53639813,0.03606153,99.43719857],[4.53639768,0.03605978,99.43792676],[4.53639723,0.03605804,99.43865581],[4.53639678,0.03605629,99.43938574],[4.53639632,0.03605455,99.44011654],[4.53639587,0.0360528,99.44084823],[4.53639542,0.03605106,99.44158081],[4.53639497,0.03604931,99.44231431],[4.53639452,0.03604757,99.44304872],[4.53639407,0.03604582,99.44378405],[4.53639361,0.03604408,99.44452033],[4.53639316,0.03604233,99.44525754],[4.53639271,0.03604059,99.44599571],[4.53639226,0.03603884,99.44673484],[4.53639181,0.0360371,99.44747493],[4.53639136,0.03603535,99.448216],[4.5363909,0.03603361,99.44895805],[4.53639045,0.03603186,99.44970108],[4.53639,0.03603012,99.4504451],[4.53638955,0.03602837,99.45119012],[4.5363891,0.03602663,99.45193613],[4.53638865,0.03602488,99.45268315],[4.5363882,0.03602314,99.45343119],[4.53638775,0.03602139,99.45418024],[4.53638729,0.03601965,99.45493031],[4.53638684,0.0360179,99.45568141],[4.53638639,0.03601616,99.45643355],[4.53638594,0.03601441,99.45718672],[4.53638549,0.03601267,99.45794094],[4.53638504,0.03601092,99.45869621],[4.53638459,0.03600918,99.45945254],[4.53638414,0.03600743,99.46020992],[4.53638369,0.03600569,99.46096837],[4.53638324,0.03600394,99.4617279],[4.53638279,0.0360022,99.4624885],[4.53638233,0.03600045,99.46325019],[4.53638188,0.03599871,99.46401296],[4.53638143,0.03599696,99.46477683],[4.53638098,0.03599522,99.46554179],[4.53638053,0.03599347,99.46630786],[4.53638008,0.03599173,99.46707505],[4.53637963,0.03598998,99.46784334],[4.53637918,0.03598824,99.46861276],[4.53637873,0.03598649,99.46938329],[4.53637828,0.03598474,99.47015494],[4.53637783,0.035983,99.47092772],[4.53637738,0.03598125,99.47170162],[4.53637693,0.03597951,99.47247664],[4.53637648,0.03597776,99.4732528],[4.53637603,0.03597602,99.47403008],[4.53637558,0.03597427,99.47480849],[4.53637513,0.03597253,99.47558804],[4.53637468,0.03597078,99.47636872],[4.53637423,0.03596904,99.47715054],[4.53637378,0.03596729,99.4779335],[4.53637333,0.03596555,99.47871759],[4.53637288,0.0359638,99.47950283],[4.53637243,0.03596205,99.48028921],[4.53637198,0.03596031,99.48107672],[4.53637153,0.03595856,99.48186536],[4.53637108,0.03595682,99.4826551],[4.53637063,0.03595507,99.48344591],[4.53637018,0.03595333,99.48423778],[4.53636973,0.03595158,99.48503068],[4.53636928,0.03594984,99.48582459],[4.53636883,0.03594809,99.4866195],[4.53636838,0.03594635,99.48741538],[4.53636793,0.0359446,99.48821221],[4.53636748,0.03594285,99.48900997],[4.53636703,0.03594111,99.48980863],[4.53636658,0.03593936,99.49060819],[4.53636613,0.03593762,99.49140861],[4.53636568,0.03593587,99.49220987],[4.53636523,0.03593413,99.49301195],[4.53636478,0.03593238,99.49381484],[4.53636433,0.03593064,99.49461851],[4.53636388,0.03592889,99.49542294],[4.53636343,0.03592715,99.49622811],[4.53636298,0.0359254,99.497034],[4.53636253,0.03592365,99.49784059],[4.53636208,0.03592191,99.49864785],[4.53636163,0.03592016,99.49945577],[4.53636118,0.03591842,99.50026432],[4.53636073,0.03591667,99.50107348],[4.53636028,0.03591493,99.50188323],[4.53635983,0.03591318,99.50269355],[4.53635938,0.03591144,99.50350442],[4.53635893,0.03590969,99.5043158],[4.53635848,0.03590795,99.5051277],[4.53635804,0.0359062,99.50594007],[4.53635759,0.03590445,99.50675292],[4.53635714,0.03590271,99.50756621],[4.53635669,0.03590096,99.50837994],[4.53635624,0.03589922,99.50919408],[4.53635579,0.03589747,99.51000863],[4.53635534,0.03589573,99.51082355],[4.53635488,0.03589398,99.51163883],[4.53635443,0.03589224,99.51245445],[4.53635398,0.03589049,99.5132704],[4.53635353,0.03588875,99.51408667],[4.53635308,0.035887,99.51490322],[4.53635263,0.03588525,99.51572004],[4.53635218,0.03588351,99.51653712],[4.53635173,0.03588176,99.51735444],[4.53635128,0.03588002,99.51817198],[4.53635083,0.03587827,99.51898971],[4.53635038,0.03587653,99.51980764],[4.53634993,0.03587478,99.52062573],[4.53634948,0.03587304,99.52144397],[4.53634903,0.03587129,99.52226234],[4.53634858,0.03586955,99.52308082],[4.53634813,0.0358678,99.5238994],[4.53634768,0.03586606,99.52471806],[4.53634723,0.03586431,99.52553678],[4.53634678,0.03586256,99.52635554],[4.53634633,0.03586082,99.52717433],[4.53634588,0.03585907,99.52799312],[4.53634543,0.03585733,99.52881191],[4.53634498,0.03585558,99.52963066],[4.53634453,0.03585384,99.53044937],[4.53634408,0.03585209,99.53126802],[4.53634363,0.03585035,99.53208659],[4.53634317,0.0358486,99.53290505],[4.53634272,0.03584686,99.5337234],[4.53634227,0.03584511,99.53454162],[4.53634182,0.03584337,99.53535969],[4.53634137,0.03584162,99.53617758],[4.53634092,0.03583988,99.53699529],[4.53634047,0.03583813,99.53781279],[4.53634002,0.03583639,99.53863008],[4.53633957,0.03583464,99.53944712],[4.53633912,0.0358329,99.5402639],[4.53633867,0.03583115,99.54108041],[4.53633821,0.03582941,99.54189662],[4.53633776,0.03582766,99.54271253],[4.53633731,0.03582591,99.54352811],[4.53633686,0.03582417,99.54434334],[4.53633641,0.03582242,99.54515822],[4.53633596,0.03582068,99.54597272],[4.53633551,0.03581893,99.54678683],[4.53633506,0.03581719,99.54760053],[4.5363346,0.03581544,99.5484138],[4.53633415,0.0358137,99.54922663],[4.5363337,0.03581195,99.55003899],[4.53633325,0.03581021,99.55085089],[4.5363328,0.03580846,99.55166229],[4.53633235,0.03580672,99.55247317],[4.5363319,0.03580497,99.55328354],[4.53633144,0.03580323,99.55409336],[4.53633099,0.03580148,99.55490262],[4.53633054,0.03579974,99.5557113],[4.53633009,0.03579799,99.55651939],[4.53632964,0.03579625,99.55732687],[4.53632918,0.0357945,99.55813372],[4.53632873,0.03579276,99.55893994],[4.53632828,0.03579101,99.55974549],[4.53632783,0.03578927,99.56055036],[4.53632738,0.03578752,99.56135454],[4.53632693,0.03578578,99.56215801],[4.53632647,0.03578403,99.56296075],[4.53632602,0.03578229,99.56376275],[4.53632557,0.03578054,99.56456399],[4.53632512,0.0357788,99.56536446],[4.53632467,0.03577705,99.56616412],[4.53632421,0.03577531,99.56696298],[4.53632376,0.03577356,99.56776101],[4.53632331,0.03577182,99.5685582],[4.53632286,0.03577007,99.56935453],[4.5363224,0.03576833,99.57014998],[4.53632195,0.03576658,99.57094453],[4.5363215,0.03576484,99.57173818],[4.53632105,0.03576309,99.5725309],[4.53632059,0.03576135,99.57332267],[4.53632014,0.0357596,99.57411348],[4.53631969,0.03575786,99.57490332],[4.53631924,0.03575611,99.57569216],[4.53631878,0.03575437,99.57647998],[4.53631833,0.03575262,99.57726678],[4.53631788,0.03575088,99.57805254],[4.53631743,0.03574914,99.57883723],[4.53631697,0.03574739,99.57962085],[4.53631652,0.03574565,99.58040337],[4.53631607,0.0357439,99.58118478],[4.53631562,0.03574216,99.58196506],[4.53631516,0.03574041,99.5827442],[4.53631471,0.03573867,99.58352217],[4.53631426,0.03573692,99.58429896],[4.53631381,0.03573518,99.58507456],[4.53631335,0.03573343,99.58584895],[4.5363129,0.03573169,99.5866221],[4.53631245,0.03572994,99.58739402],[4.53631199,0.0357282,99.58816466],[4.53631154,0.03572645,99.58893403],[4.53631109,0.03572471,99.5897021],[4.53631063,0.03572296,99.59046886],[4.53631018,0.03572122,99.59123429],[4.53630973,0.03571947,99.59199836],[4.53630928,0.03571773,99.59276106],[4.53630882,0.03571598,99.59352236],[4.53630837,0.03571424,99.59428223],[4.53630792,0.0357125,99.59504065],[4.53630746,0.03571075,99.59579761],[4.53630701,0.03570901,99.59655307],[4.53630656,0.03570726,99.59730701],[4.5363061,0.03570552,99.59805942],[4.53630565,0.03570377,99.59881026],[4.5363052,0.03570203,99.59955951],[4.53630474,0.03570028,99.60030715],[4.53630429,0.03569854,99.60105316],[4.53630384,0.03569679,99.60179751],[4.53630338,0.03569505,99.60254018],[4.53630293,0.03569331,99.60328115],[4.53630248,0.03569156,99.60402039],[4.53630202,0.03568982,99.60475788],[4.53630157,0.03568807,99.6054936],[4.53630111,0.03568633,99.60622752],[4.53630066,0.03568458,99.60695963],[4.53630021,0.03568284,99.60768989],[4.53629975,0.03568109,99.60841829],[4.5362993,0.03567935,99.60914479],[4.53629884,0.03567761,99.60986939],[4.53629839,0.03567586,99.61059206],[4.53629794,0.03567412,99.61131276],[4.53629748,0.03567237,99.61203149],[4.53629703,0.03567063,99.61274821],[4.53629657,0.03566888,99.61346291],[4.53629612,0.03566714,99.61417556],[4.53629566,0.0356654,99.61488615],[4.53629521,0.03566365,99.61559466],[4.53629475,0.03566191,99.61630108],[4.5362943,0.03566016,99.61700542],[4.53629384,0.03565842,99.61770765],[4.53629339,0.03565667,99.61840778],[4.53629293,0.03565493,99.61910579],[4.53629248,0.03565319,99.61980167],[4.53629202,0.03565144,99.62049542],[4.53629157,0.0356497,99.62118703],[4.53629111,0.03564795,99.62187648],[4.53629066,0.03564621,99.62256377],[4.5362902,0.03564447,99.62324889],[4.53628975,0.03564272,99.62393183],[4.53628929,0.03564098,99.62461259],[4.53628884,0.03563923,99.62529114],[4.53628838,0.03563749,99.62596749],[4.53628792,0.03563575,99.62664163],[4.53628747,0.035634,99.62731354],[4.53628701,0.03563226,99.62798322],[4.53628656,0.03563051,99.62865065],[4.5362861,0.03562877,99.62931584],[4.53628565,0.03562703,99.62997876],[4.53628519,0.03562528,99.63063941],[4.53628473,0.03562354,99.63129779],[4.53628428,0.03562179,99.63195388],[4.53628382,0.03562005,99.63260767],[4.53628337,0.03561831,99.63325915],[4.53628291,0.03561656,99.63390832],[4.53628246,0.03561482,99.63455516],[4.536282,0.03561307,99.63519967],[4.53628154,0.03561133,99.63584183],[4.53628109,0.03560959,99.63648165],[4.53628063,0.03560784,99.6371191],[4.53628018,0.0356061,99.63775417],[4.53627972,0.03560435,99.63838687],[4.53627926,0.03560261,99.63901717],[4.53627881,0.03560087,99.63964508],[4.53627835,0.03559912,99.64027057],[4.5362779,0.03559738,99.64089365],[4.53627744,0.03559563,99.64151429],[4.53627699,0.03559389,99.64213249],[4.53627653,0.03559215,99.64274825],[4.53627607,0.0355904,99.64336154],[4.53627562,0.03558866,99.64397236],[4.53627516,0.03558691,99.64458071],[4.53627471,0.03558517,99.64518656],[4.53627425,0.03558343,99.64578992],[4.5362738,0.03558168,99.6463908],[4.53627334,0.03557994,99.6469892],[4.53627289,0.03557819,99.64758516],[4.53627243,0.03557645,99.64817869],[4.53627198,0.03557471,99.64876982],[4.53627152,0.03557296,99.64935855],[4.53627107,0.03557122,99.64994492],[4.53627061,0.03556947,99.65052894],[4.53627016,0.03556773,99.65111063],[4.5362697,0.03556599,99.65169001],[4.53626925,0.03556424,99.6522671],[4.53626879,0.0355625,99.65284193],[4.53626834,0.03556075,99.6534145],[4.53626788,0.03555901,99.65398484],[4.53626743,0.03555726,99.65455297],[4.53626697,0.03555552,99.65511891],[4.53626652,0.03555378,99.65568267],[4.53626607,0.03555203,99.65624424],[4.53626561,0.03555029,99.65680362],[4.53626516,0.03554854,99.65736081],[4.53626471,0.0355468,99.65791581],[4.53626425,0.03554505,99.6584686],[4.5362638,0.03554331,99.65901919],[4.53626335,0.03554157,99.65956757],[4.53626289,0.03553982,99.66011374],[4.53626244,0.03553808,99.66065769],[4.53626199,0.03553633,99.66119943],[4.53626153,0.03553459,99.66173893],[4.53626108,0.03553284,99.66227621],[4.53626063,0.0355311,99.66281126],[4.53626017,0.03552935,99.66334407],[4.53625972,0.03552761,99.66387464],[4.53625927,0.03552586,99.66440297],[4.53625882,0.03552412,99.66492905],[4.53625836,0.03552237,99.66545288],[4.53625791,0.03552063,99.66597445],[4.53625746,0.03551888,99.66649376],[4.536257,0.03551714,99.66701082],[4.53625655,0.0355154,99.6675256],[4.5362561,0.03551365,99.66803812],[4.53625565,0.03551191,99.66854836],[4.53625519,0.03551016,99.66905632],[4.53625474,0.03550842,99.669562],[4.53625429,0.03550667,99.6700654],[4.53625384,0.03550493,99.67056651],[4.53625338,0.03550318,99.67106532],[4.53625293,0.03550144,99.67156184],[4.53625248,0.03549969,99.67205606],[4.53625203,0.03549795,99.67254797],[4.53625157,0.0354962,99.67303758],[4.53625112,0.03549446,99.67352488],[4.53625067,0.03549271,99.67400986],[4.53625022,0.03549097,99.67449253],[4.53624976,0.03548922,99.67497287],[4.53624931,0.03548748,99.67545088],[4.53624886,0.03548574,99.67592657],[4.53624841,0.03548399,99.67639992],[4.53624795,0.03548225,99.67687094],[4.5362475,0.0354805,99.67733962],[4.53624705,0.03547876,99.67780595],[4.53624659,0.03547701,99.67826993],[4.53624614,0.03547527,99.67873156],[4.53624569,0.03547352,99.67919084],[4.53624523,0.03547178,99.67964776],[4.53624478,0.03547003,99.68010231],[4.53624433,0.03546829,99.6805545],[4.53624387,0.03546655,99.68100432],[4.53624342,0.0354648,99.68145176],[4.53624296,0.03546306,99.68189682],[4.53624251,0.03546131,99.68233951],[4.53624206,0.03545957,99.6827798],[4.5362416,0.03545782,99.68321771],[4.53624115,0.03545608,99.68365322],[4.53624069,0.03545434,99.68408634],[4.53624024,0.03545259,99.68451705],[4.53623978,0.03545085,99.68494536],[4.53623933,0.0354491,99.68537126],[4.53623887,0.03544736,99.68579476],[4.53623842,0.03544562,99.68621587],[4.53623796,0.03544387,99.68663461],[4.53623751,0.03544213,99.687051],[4.53623705,0.03544038,99.68746505],[4.5362366,0.03543864,99.68787679],[4.53623614,0.0354369,99.68828622],[4.53623568,0.03543515,99.68869336],[4.53623523,0.03543341,99.68909823],[4.53623477,0.03543167,99.68950085],[4.53623431,0.03542992,99.68990123],[4.53623386,0.03542818,99.6902994],[4.5362334,0.03542643,99.69069535],[4.53623294,0.03542469,99.69108912],[4.53623249,0.03542295,99.69148073],[4.53623203,0.0354212,99.69187017],[4.53623157,0.03541946,99.69225748],[4.53623112,0.03541772,99.69264267],[4.53623066,0.03541597,99.69302576],[4.5362302,0.03541423,99.69340675],[4.53622974,0.03541249,99.69378569],[4.53622929,0.03541074,99.69416258],[4.53622883,0.035409,99.69453744],[4.53622837,0.03540726,99.69491029],[4.53622791,0.03540551,99.69528116],[4.53622745,0.03540377,99.69565005],[4.536227,0.03540203,99.69601698],[4.53622654,0.03540028,99.69638198],[4.53622608,0.03539854,99.69674504],[4.53622562,0.0353968,99.69710619],[4.53622516,0.03539505,99.69746545],[4.5362247,0.03539331,99.69782282],[4.53622425,0.03539157,99.69817833],[4.53622379,0.03538983,99.69853199],[4.53622333,0.03538808,99.69888381],[4.53622287,0.03538634,99.69923381],[4.53622241,0.0353846,99.69958201],[4.53622195,0.03538285,99.69992843],[4.53622149,0.03538111,99.70027306],[4.53622103,0.03537937,99.70061594],[4.53622058,0.03537762,99.70095708],[4.53622012,0.03537588,99.70129649],[4.53621966,0.03537414,99.70163419],[4.5362192,0.0353724,99.7019702],[4.53621874,0.03537065,99.70230452],[4.53621828,0.03536891,99.70263718],[4.53621782,0.03536717,99.70296819],[4.53621736,0.03536542,99.70329757],[4.5362169,0.03536368,99.70362533],[4.53621644,0.03536194,99.70395149],[4.53621598,0.0353602,99.70427606],[4.53621552,0.03535845,99.70459906],[4.53621507,0.03535671,99.70492051],[4.53621461,0.03535497,99.70524041],[4.53621415,0.03535322,99.7055588],[4.53621369,0.03535148,99.70587567],[4.53621323,0.03534974,99.70619105],[4.53621277,0.035348,99.70650496],[4.53621231,0.03534625,99.70681741],[4.53621185,0.03534451,99.70712841],[4.53621139,0.03534277,99.70743798],[4.53621093,0.03534103,99.70774614],[4.53621047,0.03533928,99.7080529],[4.53621001,0.03533754,99.70835828],[4.53620955,0.0353358,99.70866229],[4.53620909,0.03533405,99.70896496],[4.53620863,0.03533231,99.70926629],[4.53620817,0.03533057,99.7095663],[4.53620771,0.03532883,99.70986501],[4.53620726,0.03532708,99.71016244],[4.5362068,0.03532534,99.71045859],[4.53620634,0.0353236,99.71075349],[4.53620588,0.03532185,99.71104716],[4.53620542,0.03532011,99.7113396],[4.53620496,0.03531837,99.71163084],[4.5362045,0.03531663,99.71192087],[4.53620404,0.03531488,99.7122097],[4.53620358,0.03531314,99.71249733],[4.53620312,0.0353114,99.71278376],[4.53620266,0.03530965,99.71306899],[4.53620221,0.03530791,99.71335303],[4.53620175,0.03530617,99.71363587],[4.53620129,0.03530442,99.71391753],[4.53620083,0.03530268,99.71419799],[4.53620037,0.03530094,99.71447727],[4.53619991,0.0352992,99.71475536],[4.53619945,0.03529745,99.71503226],[4.536199,0.03529571,99.71530798],[4.53619854,0.03529397,99.71558252],[4.53619808,0.03529222,99.71585588],[4.53619762,0.03529048,99.71612806],[4.53619716,0.03528874,99.71639906],[4.5361967,0.03528699,99.71666889],[4.53619625,0.03528525,99.71693754],[4.53619579,0.03528351,99.71720502],[4.53619533,0.03528177,99.71747133],[4.53619487,0.03528002,99.71773648],[4.53619441,0.03527828,99.71800045],[4.53619396,0.03527654,99.71826326],[4.5361935,0.03527479,99.7185249],[4.53619304,0.03527305,99.71878539],[4.53619258,0.03527131,99.71904471],[4.53619212,0.03526956,99.71930286],[4.53619167,0.03526782,99.71955987],[4.53619121,0.03526608,99.71981571],[4.53619075,0.03526433,99.7200704],[4.53619029,0.03526259,99.72032393],[4.53618984,0.03526085,99.72057631],[4.53618938,0.0352591,99.72082754],[4.53618892,0.03525736,99.72107762],[4.53618846,0.03525562,99.72132655],[4.536188,0.03525387,99.72157434],[4.53618755,0.03525213,99.72182099],[4.53618709,0.03525039,99.72206649],[4.53618663,0.03524864,99.72231086],[4.53618617,0.0352469,99.7225541],[4.53618572,0.03524516,99.72279622],[4.53618526,0.03524342,99.72303721],[4.5361848,0.03524167,99.72327708],[4.53618434,0.03523993,99.72351584],[4.53618389,0.03523819,99.72375348],[4.53618343,0.03523644,99.72399002],[4.53618297,0.0352347,99.72422544],[4.53618251,0.03523296,99.72445976],[4.53618206,0.03523121,99.72469298],[4.5361816,0.03522947,99.7249251],[4.53618114,0.03522773,99.72515612],[4.53618068,0.03522598,99.72538605],[4.53618023,0.03522424,99.72561489],[4.53617977,0.0352225,99.72584264],[4.53617931,0.03522075,99.72606931],[4.53617885,0.03521901,99.7262949],[4.5361784,0.03521727,99.7265194],[4.53617794,0.03521552,99.72674283],[4.53617748,0.03521378,99.72696519],[4.53617702,0.03521204,99.72718647],[4.53617657,0.03521029,99.72740669],[4.53617611,0.03520855,99.72762584],[4.53617565,0.03520681,99.72784392],[4.5361752,0.03520506,99.72806095],[4.53617474,0.03520332,99.72827692],[4.53617428,0.03520158,99.72849183],[4.53617382,0.03519983,99.7287057],[4.53617337,0.03519809,99.72891851],[4.53617291,0.03519635,99.72913027],[4.53617245,0.0351946,99.729341],[4.53617199,0.03519286,99.72955068],[4.53617154,0.03519112,99.72975932],[4.53617108,0.03518937,99.72996692],[4.53617062,0.03518763,99.73017349],[4.53617017,0.03518589,99.73037903],[4.53616971,0.03518414,99.73058354],[4.53616925,0.0351824,99.73078702],[4.53616879,0.03518066,99.73098948],[4.53616834,0.03517891,99.73119092],[4.53616788,0.03517717,99.73139134],[4.53616742,0.03517543,99.73159074],[4.53616697,0.03517368,99.73178913],[4.53616651,0.03517194,99.73198651],[4.53616605,0.0351702,99.73218287],[4.53616559,0.03516845,99.73237823],[4.53616514,0.03516671,99.73257259],[4.53616468,0.03516497,99.73276595],[4.53616422,0.03516322,99.7329583],[4.53616376,0.03516148,99.73314966],[4.53616331,0.03515974,99.73334002],[4.53616285,0.03515799,99.73352939],[4.53616239,0.03515625,99.7337178],[4.53616194,0.03515451,99.73390526],[4.53616148,0.03515276,99.73409181],[4.53616102,0.03515102,99.73427745],[4.53616056,0.03514928,99.73446223],[4.53616011,0.03514754,99.73464616],[4.53615965,0.03514579,99.73482928],[4.53615919,0.03514405,99.73501159],[4.53615873,0.03514231,99.73519314],[4.53615827,0.03514056,99.73537393],[4.53615782,0.03513882,99.73555401],[4.53615736,0.03513708,99.73573339],[4.5361569,0.03513533,99.7359121],[4.53615644,0.03513359,99.73609016],[4.53615599,0.03513185,99.7362676],[4.53615553,0.0351301,99.73644444],[4.53615507,0.03512836,99.73662071],[4.53615461,0.03512662,99.73679643],[4.53615415,0.03512488,99.73697163],[4.5361537,0.03512313,99.73714634],[4.53615324,0.03512139,99.73732057],[4.53615278,0.03511965,99.73749436],[4.53615232,0.0351179,99.73766773],[4.53615186,0.03511616,99.7378407],[4.5361514,0.03511442,99.73801331],[4.53615095,0.03511267,99.73818557],[4.53615049,0.03511093,99.73835751],[4.53615003,0.03510919,99.73852916],[4.53614957,0.03510744,99.73870054],[4.53614911,0.0351057,99.73887168],[4.53614866,0.03510396,99.7390426],[4.5361482,0.03510222,99.73921334],[4.53614774,0.03510047,99.7393839],[4.53614728,0.03509873,99.73955434],[4.53614682,0.03509699,99.73972465],[4.53614636,0.03509524,99.73989489],[4.53614591,0.0350935,99.74006506],[4.53614545,0.03509176,99.74023519],[4.53614499,0.03509002,99.74040532],[4.53614453,0.03508827,99.74057546],[4.53614407,0.03508653,99.74074565],[4.53614361,0.03508479,99.7409159],[4.53614316,0.03508304,99.74108621],[4.5361427,0.0350813,99.74125657],[4.53614224,0.03507956,99.74142698],[4.53614178,0.03507782,99.74159742],[4.53614132,0.03507607,99.74176788],[4.53614086,0.03507433,99.74193836],[4.5361404,0.03507259,99.74210884],[4.53613995,0.03507084,99.74227933],[4.53613949,0.0350691,99.7424498],[4.53613903,0.03506736,99.74262024],[4.53613857,0.03506562,99.74279066],[4.53613811,0.03506387,99.74296104],[4.53613765,0.03506213,99.74313137],[4.53613719,0.03506039,99.74330164],[4.53613673,0.03505864,99.74347184],[4.53613628,0.0350569,99.74364196],[4.53613582,0.03505516,99.743812],[4.53613536,0.03505342,99.74398194],[4.5361349,0.03505167,99.74415177],[4.53613444,0.03504993,99.74432148],[4.53613398,0.03504819,99.74449107],[4.53613352,0.03504644,99.74466052],[4.53613306,0.0350447,99.74482983],[4.5361326,0.03504296,99.74499898],[4.53613214,0.03504122,99.74516796],[4.53613169,0.03503947,99.74533677],[4.53613123,0.03503773,99.74550539],[4.53613077,0.03503599,99.74567382],[4.53613031,0.03503425,99.74584204],[4.53612985,0.0350325,99.74601005],[4.53612939,0.03503076,99.74617783],[4.53612893,0.03502902,99.74634537],[4.53612847,0.03502728,99.74651266],[4.53612801,0.03502553,99.7466797],[4.53612755,0.03502379,99.74684648],[4.53612709,0.03502205,99.74701299],[4.53612663,0.03502031,99.74717922],[4.53612617,0.03501856,99.74734516],[4.53612571,0.03501682,99.74751082],[4.53612525,0.03501508,99.74767616],[4.53612479,0.03501334,99.7478412],[4.53612433,0.0350116,99.74800592],[4.53612387,0.03500985,99.74817031],[4.53612341,0.03500811,99.74833435],[4.53612295,0.03500637,99.74849804],[4.53612249,0.03500463,99.74866137],[4.53612203,0.03500288,99.74882436],[4.53612157,0.03500114,99.74898701],[4.53612111,0.0349994,99.74914934],[4.53612065,0.03499766,99.74931136],[4.53612019,0.03499592,99.74947308],[4.53611973,0.03499417,99.74963452],[4.53611927,0.03499243,99.74979567],[4.53611881,0.03499069,99.74995657],[4.53611835,0.03498895,99.75011721],[4.53611788,0.0349872,99.7502776],[4.53611742,0.03498546,99.75043777],[4.53611696,0.03498372,99.75059772],[4.5361165,0.03498198,99.75075746],[4.53611604,0.03498023,99.75091701],[4.53611558,0.03497849,99.75107637],[4.53611512,0.03497675,99.75123555],[4.53611466,0.03497501,99.75139458],[4.5361142,0.03497327,99.75155344],[4.53611374,0.03497152,99.75171217],[4.53611328,0.03496978,99.75187076],[4.53611282,0.03496804,99.75202923],[4.53611236,0.0349663,99.75218758],[4.5361119,0.03496455,99.75234583],[4.53611144,0.03496281,99.75250399],[4.53611097,0.03496107,99.75266206],[4.53611051,0.03495933,99.75282007],[4.53611005,0.03495758,99.75297801],[4.53610959,0.03495584,99.75313589],[4.53610913,0.0349541,99.75329374],[4.53610867,0.03495236,99.75345156],[4.53610821,0.03495062,99.75360935],[4.53610775,0.03494887,99.75376713],[4.53610729,0.03494713,99.75392491],[4.53610683,0.03494539,99.7540827],[4.53610637,0.03494365,99.75424051],[4.53610591,0.0349419,99.75439835],[4.53610545,0.03494016,99.75455623],[4.53610499,0.03493842,99.75471417],[4.53610452,0.03493668,99.75487216],[4.53610406,0.03493493,99.75503022],[4.5361036,0.03493319,99.75518837],[4.53610314,0.03493145,99.7553466],[4.53610268,0.03492971,99.75550494],[4.53610222,0.03492797,99.75566339],[4.53610176,0.03492622,99.75582197],[4.5361013,0.03492448,99.75598068],[4.53610084,0.03492274,99.75613953],[4.53610038,0.034921,99.75629853],[4.53609992,0.03491925,99.7564577],[4.53609946,0.03491751,99.75661705],[4.53609899,0.03491577,99.75677658],[4.53609853,0.03491403,99.7569363],[4.53609807,0.03491228,99.75709623],[4.53609761,0.03491054,99.75725638],[4.53609715,0.0349088,99.75741676],[4.53609669,0.03490706,99.75757737],[4.53609623,0.03490532,99.75773823],[4.53609577,0.03490357,99.75789935],[4.53609531,0.03490183,99.75806074],[4.53609485,0.03490009,99.7582224],[4.53609439,0.03489835,99.75838436],[4.53609392,0.0348966,99.75854661],[4.53609346,0.03489486,99.75870918],[4.536093,0.03489312,99.75887207],[4.53609254,0.03489138,99.75903528],[4.53609208,0.03488964,99.75919885],[4.53609162,0.03488789,99.75936276],[4.53609116,0.03488615,99.75952703],[4.5360907,0.03488441,99.75969168],[4.53609024,0.03488267,99.75985672],[4.53608977,0.03488092,99.76002215],[4.53608931,0.03487918,99.76018798],[4.53608885,0.03487744,99.76035423],[4.53608839,0.0348757,99.7605209],[4.53608793,0.03487395,99.76068801],[4.53608747,0.03487221,99.76085557],[4.53608701,0.03487047,99.76102359],[4.53608655,0.03486873,99.76119207],[4.53608608,0.03486699,99.76136103],[4.53608562,0.03486524,99.76153049],[4.53608516,0.0348635,99.76170044],[4.5360847,0.03486176,99.7618709],[4.53608424,0.03486002,99.76204189],[4.53608378,0.03485827,99.7622134],[4.53608332,0.03485653,99.76238546],[4.53608285,0.03485479,99.76255807],[4.53608239,0.03485305,99.76273124],[4.53608193,0.03485131,99.76290499],[4.53608147,0.03484956,99.76307932],[4.53608101,0.03484782,99.76325425],[4.53608055,0.03484608,99.76342978],[4.53608008,0.03484434,99.76360593],[4.53607962,0.03484259,99.76378271],[4.53607916,0.03484085,99.76396012],[4.5360787,0.03483911,99.76413818],[4.53607824,0.03483737,99.7643169],[4.53607778,0.03483563,99.76449629],[4.53607731,0.03483388,99.76467636],[4.53607685,0.03483214,99.76485712],[4.53607639,0.0348304,99.76503858],[4.53607593,0.03482866,99.76522075],[4.53607547,0.03482692,99.76540364],[4.536075,0.03482517,99.76558727],[4.53607454,0.03482343,99.76577164],[4.53607408,0.03482169,99.76595676],[4.53607362,0.03481995,99.76614265],[4.53607316,0.03481821,99.76632931],[4.53607269,0.03481646,99.76651676],[4.53607223,0.03481472,99.76670501],[4.53607177,0.03481298,99.76689406],[4.53607131,0.03481124,99.76708393],[4.53607084,0.03480949,99.76727461],[4.53607038,0.03480775,99.76746609],[4.53606992,0.03480601,99.76765837],[4.53606946,0.03480427,99.76785144],[4.53606899,0.03480253,99.7680453],[4.53606853,0.03480078,99.76823993],[4.53606807,0.03479904,99.76843534],[4.53606761,0.0347973,99.76863151],[4.53606714,0.03479556,99.76882843],[4.53606668,0.03479382,99.76902612],[4.53606622,0.03479207,99.76922454],[4.53606576,0.03479033,99.7694237],[4.53606529,0.03478859,99.7696236],[4.53606483,0.03478685,99.76982422],[4.53606437,0.03478511,99.77002556],[4.5360639,0.03478337,99.77022761],[4.53606344,0.03478162,99.77043036],[4.53606298,0.03477988,99.77063382],[4.53606252,0.03477814,99.77083796],[4.53606205,0.0347764,99.7710428],[4.53606159,0.03477466,99.77124833],[4.53606113,0.03477291,99.77145455],[4.53606066,0.03477117,99.77166146],[4.5360602,0.03476943,99.77186907],[4.53605973,0.03476769,99.77207736],[4.53605927,0.03476595,99.77228635],[4.53605881,0.03476421,99.77249603],[4.53605834,0.03476246,99.7727064],[4.53605788,0.03476072,99.77291746],[4.53605742,0.03475898,99.77312922],[4.53605695,0.03475724,99.77334166],[4.53605649,0.0347555,99.7735548],[4.53605602,0.03475376,99.77376863],[4.53605556,0.03475201,99.77398315],[4.5360551,0.03475027,99.77419836],[4.53605463,0.03474853,99.77441426],[4.53605417,0.03474679,99.77463086],[4.5360537,0.03474505,99.77484814],[4.53605324,0.03474331,99.77506612],[4.53605278,0.03474156,99.77528479],[4.53605231,0.03473982,99.77550415],[4.53605185,0.03473808,99.7757242],[4.53605138,0.03473634,99.77594494],[4.53605092,0.0347346,99.77616637],[4.53605045,0.03473286,99.77638849],[4.53604999,0.03473111,99.7766113],[4.53604952,0.03472937,99.7768348],[4.53604906,0.03472763,99.77705899],[4.53604859,0.03472589,99.77728387],[4.53604813,0.03472415,99.77750944],[4.53604767,0.03472241,99.7777357],[4.5360472,0.03472067,99.77796265],[4.53604674,0.03471892,99.77819028],[4.53604627,0.03471718,99.7784186],[4.53604581,0.03471544,99.77864762],[4.53604534,0.0347137,99.77887731],[4.53604488,0.03471196,99.7791077],[4.53604441,0.03471022,99.77933877],[4.53604395,0.03470848,99.77957053],[4.53604348,0.03470673,99.77980298],[4.53604302,0.03470499,99.78003611],[4.53604255,0.03470325,99.78026993],[4.53604209,0.03470151,99.78050443],[4.53604162,0.03469977,99.78073961],[4.53604116,0.03469803,99.78097548],[4.53604069,0.03469628,99.78121203],[4.53604023,0.03469454,99.78144927],[4.53603976,0.0346928,99.78168719],[4.5360393,0.03469106,99.78192579],[4.53603884,0.03468932,99.78216507],[4.53603837,0.03468758,99.78240503],[4.53603791,0.03468584,99.78264567],[4.53603744,0.03468409,99.78288699],[4.53603698,0.03468235,99.78312899],[4.53603651,0.03468061,99.78337167],[4.53603605,0.03467887,99.78361502],[4.53603558,0.03467713,99.78385906],[4.53603512,0.03467539,99.78410376],[4.53603466,0.03467364,99.78434915],[4.53603419,0.0346719,99.78459521],[4.53603373,0.03467016,99.78484194],[4.53603326,0.03466842,99.78508934],[4.5360328,0.03466668,99.78533742],[4.53603234,0.03466493,99.78558617],[4.53603187,0.03466319,99.78583559],[4.53603141,0.03466145,99.78608567],[4.53603094,0.03465971,99.7863364],[4.53603048,0.03465797,99.78658777],[4.53603002,0.03465623,99.78683977],[4.53602955,0.03465448,99.78709237],[4.53602909,0.03465274,99.78734557],[4.53602863,0.034651,99.78759936],[4.53602817,0.03464926,99.78785372],[4.5360277,0.03464752,99.78810864],[4.53602724,0.03464577,99.7883641],[4.53602678,0.03464403,99.78862009],[4.53602631,0.03464229,99.78887661],[4.53602585,0.03464055,99.78913363],[4.53602539,0.03463881,99.78939114],[4.53602493,0.03463706,99.78964913],[4.53602446,0.03463532,99.78990759],[4.536024,0.03463358,99.79016651],[4.53602354,0.03463184,99.79042586],[4.53602308,0.03463009,99.79068564],[4.53602261,0.03462835,99.79094584],[4.53602215,0.03462661,99.79120644],[4.53602169,0.03462487,99.79146742],[4.53602123,0.03462312,99.79172878],[4.53602076,0.03462138,99.79199051],[4.5360203,0.03461964,99.79225258],[4.53601984,0.0346179,99.79251499],[4.53601938,0.03461616,99.7927777],[4.53601892,0.03461441,99.79304069],[4.53601846,0.03461267,99.79330395],[4.53601799,0.03461093,99.79356746],[4.53601753,0.03460919,99.79383119],[4.53601707,0.03460744,99.79409513],[4.53601661,0.0346057,99.79435925],[4.53601615,0.03460396,99.79462353],[4.53601569,0.03460222,99.79488795],[4.53601522,0.03460047,99.7951525],[4.53601476,0.03459873,99.79541715],[4.5360143,0.03459699,99.79568188],[4.53601384,0.03459525,99.79594667],[4.53601338,0.0345935,99.7962115],[4.53601292,0.03459176,99.79647635],[4.53601246,0.03459002,99.79674121],[4.53601199,0.03458828,99.79700604],[4.53601153,0.03458653,99.79727084],[4.53601107,0.03458479,99.79753558],[4.53601061,0.03458305,99.79780024],[4.53601015,0.03458131,99.79806479],[4.53600969,0.03457956,99.79832923],[4.53600923,0.03457782,99.79859353],[4.53600876,0.03457608,99.79885768],[4.5360083,0.03457434,99.79912164],[4.53600784,0.03457259,99.79938541],[4.53600738,0.03457085,99.79964895],[4.53600692,0.03456911,99.79991226],[4.53600646,0.03456736,99.80017532],[4.536006,0.03456562,99.8004381],[4.53600553,0.03456388,99.80070058],[4.53600507,0.03456214,99.80096274],[4.53600461,0.03456039,99.80122457],[4.53600415,0.03455865,99.80148605],[4.53600369,0.03455691,99.80174715],[4.53600322,0.03455517,99.80200786],[4.53600276,0.03455343,99.80226816],[4.5360023,0.03455168,99.80252803],[4.53600184,0.03454994,99.80278744],[4.53600138,0.0345482,99.80304639],[4.53600091,0.03454646,99.80330485],[4.53600045,0.03454471,99.8035628],[4.53599999,0.03454297,99.80382023],[4.53599953,0.03454123,99.80407711],[4.53599906,0.03453949,99.80433343],[4.5359986,0.03453774,99.80458916],[4.53599814,0.034536,99.80484429],[4.53599768,0.03453426,99.80509881],[4.53599721,0.03453252,99.8053527],[4.53599675,0.03453078,99.80560595],[4.53599629,0.03452903,99.80585856],[4.53599582,0.03452729,99.80611052],[4.53599536,0.03452555,99.80636182],[4.5359949,0.03452381,99.80661247],[4.53599443,0.03452206,99.80686246],[4.53599397,0.03452032,99.80711177],[4.53599351,0.03451858,99.80736042],[4.53599304,0.03451684,99.80760839],[4.53599258,0.0345151,99.80785568],[4.53599211,0.03451335,99.80810229],[4.53599165,0.03451161,99.8083482],[4.53599119,0.03450987,99.80859343],[4.53599072,0.03450813,99.80883795],[4.53599026,0.03450639,99.80908177],[4.53598979,0.03450465,99.80932488],[4.53598933,0.0345029,99.80956728],[4.53598886,0.03450116,99.80980896],[4.5359884,0.03449942,99.81004992],[4.53598794,0.03449768,99.81029015],[4.53598747,0.03449594,99.81052965],[4.53598701,0.03449419,99.81076843],[4.53598654,0.03449245,99.81100648],[4.53598608,0.03449071,99.81124381],[4.53598561,0.03448897,99.81148041],[4.53598515,0.03448723,99.81171628],[4.53598468,0.03448549,99.81195143],[4.53598422,0.03448374,99.81218586],[4.53598375,0.034482,99.81241957],[4.53598329,0.03448026,99.81265256],[4.53598282,0.03447852,99.81288482],[4.53598236,0.03447678,99.81311637],[4.53598189,0.03447504,99.81334719],[4.53598143,0.03447329,99.8135773],[4.53598096,0.03447155,99.81380669],[4.5359805,0.03446981,99.81403536],[4.53598003,0.03446807,99.81426332],[4.53597956,0.03446633,99.81449055],[4.5359791,0.03446459,99.81471708],[4.53597863,0.03446284,99.81494288],[4.53597817,0.0344611,99.81516798],[4.5359777,0.03445936,99.81539236],[4.53597724,0.03445762,99.81561602],[4.53597677,0.03445588,99.81583897],[4.53597631,0.03445414,99.81606121],[4.53597584,0.03445239,99.81628274],[4.53597538,0.03445065,99.81650355],[4.53597491,0.03444891,99.81672366],[4.53597445,0.03444717,99.81694305],[4.53597398,0.03444543,99.81716173],[4.53597352,0.03444369,99.8173797],[4.53597305,0.03444194,99.81759696],[4.53597258,0.0344402,99.81781351],[4.53597212,0.03443846,99.81802935],[4.53597165,0.03443672,99.81824449],[4.53597119,0.03443498,99.81845891],[4.53597072,0.03443324,99.81867262],[4.53597026,0.03443149,99.81888563],[4.53596979,0.03442975,99.81909793],[4.53596933,0.03442801,99.81930952],[4.53596886,0.03442627,99.8195204],[4.53596839,0.03442453,99.81973057],[4.53596793,0.03442279,99.81994003],[4.53596746,0.03442105,99.82014879],[4.535967,0.0344193,99.82035684],[4.53596653,0.03441756,99.82056418],[4.53596606,0.03441582,99.82077081],[4.5359656,0.03441408,99.82097674],[4.53596513,0.03441234,99.82118196],[4.53596467,0.0344106,99.82138647],[4.5359642,0.03440886,99.82159027],[4.53596373,0.03440711,99.82179336],[4.53596327,0.03440537,99.82199575],[4.5359628,0.03440363,99.82219743],[4.53596233,0.03440189,99.8223984],[4.53596186,0.03440015,99.82259867],[4.5359614,0.03439841,99.82279823],[4.53596093,0.03439667,99.82299709],[4.53596046,0.03439493,99.82319524],[4.53595999,0.03439318,99.82339268],[4.53595953,0.03439144,99.82358942],[4.53595906,0.0343897,99.82378546],[4.53595859,0.03438796,99.82398079],[4.53595812,0.03438622,99.82417542],[4.53595765,0.03438448,99.82436935],[4.53595718,0.03438274,99.82456257],[4.53595672,0.034381,99.8247551],[4.53595625,0.03437926,99.82494691],[4.53595578,0.03437752,99.82513803],[4.53595531,0.03437578,99.82532844],[4.53595484,0.03437404,99.82551815],[4.53595437,0.03437229,99.82570716],[4.5359539,0.03437055,99.82589547],[4.53595343,0.03436881,99.82608307],[4.53595296,0.03436707,99.82626997],[4.53595249,0.03436533,99.82645617],[4.53595202,0.03436359,99.82664167],[4.53595155,0.03436185,99.82682647],[4.53595108,0.03436011,99.82701056],[4.53595061,0.03435837,99.82719395],[4.53595014,0.03435663,99.82737664],[4.53594967,0.03435489,99.82755863],[4.5359492,0.03435315,99.82773991],[4.53594873,0.03435141,99.82792049],[4.53594826,0.03434967,99.82810037],[4.53594779,0.03434793,99.82827954],[4.53594731,0.03434619,99.82845801],[4.53594684,0.03434445,99.82863577],[4.53594637,0.03434271,99.82881282],[4.5359459,0.03434097,99.82898914],[4.53594543,0.03433923,99.82916473],[4.53594496,0.03433749,99.82933959],[4.53594449,0.03433575,99.8295137],[4.53594402,0.03433401,99.82968705],[4.53594355,0.03433227,99.82985965],[4.53594308,0.03433053,99.83003147],[4.53594261,0.03432879,99.83020252],[4.53594214,0.03432705,99.83037278],[4.53594167,0.03432531,99.83054226],[4.53594119,0.03432356,99.83071093],[4.53594072,0.03432182,99.8308788],[4.53594025,0.03432008,99.83104585],[4.53593978,0.03431834,99.83121208],[4.53593931,0.0343166,99.83137748],[4.53593884,0.03431486,99.83154204],[4.53593837,0.03431312,99.83170576],[4.5359379,0.03431138,99.83186863],[4.53593743,0.03430964,99.83203064],[4.53593696,0.0343079,99.83219177],[4.53593649,0.03430616,99.83235204],[4.53593602,0.03430442,99.83251142],[4.53593555,0.03430268,99.83266991],[4.53593508,0.03430094,99.8328275],[4.53593461,0.0342992,99.83298419],[4.53593414,0.03429746,99.83313997],[4.53593367,0.03429572,99.83329482],[4.5359332,0.03429398,99.83344875],[4.53593273,0.03429224,99.83360174],[4.53593226,0.0342905,99.83375379],[4.53593179,0.03428875,99.83390489],[4.53593133,0.03428701,99.83405503],[4.53593086,0.03428527,99.83420421],[4.53593039,0.03428353,99.83435241],[4.53592992,0.03428179,99.83449963],[4.53592945,0.03428005,99.83464586],[4.53592898,0.03427831,99.8347911],[4.53592851,0.03427657,99.83493534],[4.53592804,0.03427483,99.83507856],[4.53592757,0.03427309,99.83522077],[4.53592711,0.03427135,99.83536195],[4.53592664,0.03426961,99.8355021],[4.53592617,0.03426786,99.83564121],[4.5359257,0.03426612,99.83577927],[4.53592523,0.03426438,99.83591628],[4.53592476,0.03426264,99.83605223],[4.53592429,0.0342609,99.8361871],[4.53592383,0.03425916,99.8363209],[4.53592336,0.03425742,99.83645361],[4.53592289,0.03425568,99.83658523],[4.53592242,0.03425394,99.83671575],[4.53592195,0.0342522,99.83684516],[4.53592148,0.03425046,99.83697345],[4.53592101,0.03424872,99.83710063],[4.53592055,0.03424697,99.83722668],[4.53592008,0.03424523,99.83735158],[4.53591961,0.03424349,99.83747535],[4.53591914,0.03424175,99.83759796],[4.53591867,0.03424001,99.83771941],[4.5359182,0.03423827,99.8378397],[4.53591774,0.03423653,99.83795881],[4.53591727,0.03423479,99.83807674],[4.5359168,0.03423305,99.83819349],[4.53591633,0.03423131,99.83830903],[4.53591586,0.03422957,99.83842338],[4.53591539,0.03422783,99.83853651],[4.53591492,0.03422608,99.83864842],[4.53591445,0.03422434,99.83875911],[4.53591399,0.0342226,99.83886856],[4.53591352,0.03422086,99.83897678],[4.53591305,0.03421912,99.83908374],[4.53591258,0.03421738,99.83918945],[4.53591211,0.03421564,99.8392939],[4.53591164,0.0342139,99.83939708],[4.53591117,0.03421216,99.83949898],[4.5359107,0.03421042,99.83959958],[4.53591023,0.03420868,99.83969888],[4.53590976,0.03420694,99.83979685],[4.53590929,0.0342052,99.83989349],[4.53590882,0.03420346,99.83998877],[4.53590835,0.03420172,99.84008268],[4.53590788,0.03419998,99.84017522],[4.53590741,0.03419824,99.84026635],[4.53590694,0.0341965,99.84035607],[4.53590647,0.03419475,99.84044437],[4.535906,0.03419301,99.84053122],[4.53590553,0.03419127,99.84061662],[4.53590506,0.03418953,99.84070055],[4.53590459,0.03418779,99.84078299],[4.53590412,0.03418605,99.84086394],[4.53590365,0.03418431,99.84094337],[4.53590318,0.03418257,99.84102127],[4.53590271,0.03418083,99.84109762],[4.53590224,0.03417909,99.84117242],[4.53590176,0.03417735,99.84124565],[4.53590129,0.03417561,99.84131729],[4.53590082,0.03417387,99.84138733],[4.53590035,0.03417214,99.84145576],[4.53589987,0.0341704,99.84152255],[4.5358994,0.03416866,99.8415877],[4.53589893,0.03416692,99.84165119],[4.53589868,0.03416601,99.84168354],[4.53589987,0.03416569,99.71668354],[4.53590011,0.03416659,99.71665119],[4.53590058,0.03416833,99.7165877],[4.53590106,0.03417007,99.71652255],[4.53590153,0.03417181,99.71645576],[4.535902,0.03417355,99.71638733],[4.53590247,0.03417529,99.71631729],[4.53590295,0.03417703,99.71624565],[4.53590342,0.03417877,99.71617242],[4.53590389,0.03418051,99.71609762],[4.53590436,0.03418225,99.71602127],[4.53590484,0.03418399,99.71594337],[4.53590531,0.03418573,99.71586394],[4.53590578,0.03418747,99.71578299],[4.53590625,0.03418921,99.71570055],[4.53590672,0.03419095,99.71561662],[4.53590719,0.03419269,99.71553122],[4.53590767,0.03419443,99.71544437],[4.53590814,0.03419617,99.71535607],[4.53590861,0.03419791,99.71526635],[4.53590908,0.03419965,99.71517522],[4.53590955,0.03420139,99.71508268],[4.53591002,0.03420313,99.71498877],[4.53591049,0.03420487,99.71489349],[4.53591097,0.03420661,99.71479685],[4.53591144,0.03420835,99.71469888],[4.53591191,0.03421009,99.71459958],[4.53591238,0.03421183,99.71449898],[4.53591285,0.03421357,99.71439708],[4.53591332,0.03421531,99.7142939],[4.53591379,0.03421705,99.71418945],[4.53591426,0.03421879,99.71408374],[4.53591473,0.03422053,99.71397678],[4.5359152,0.03422227,99.71386856],[4.53591568,0.03422401,99.71375911],[4.53591615,0.03422575,99.71364842],[4.53591662,0.03422749,99.71353651],[4.53591709,0.03422923,99.71342338],[4.53591756,0.03423097,99.71330903],[4.53591803,0.03423271,99.71319349],[4.5359185,0.03423445,99.71307674],[4.53591897,0.03423619,99.71295881],[4.53591944,0.03423793,99.7128397],[4.53591991,0.03423967,99.71271941],[4.53592038,0.03424141,99.71259796],[4.53592085,0.03424315,99.71247535],[4.53592132,0.03424489,99.71235158],[4.53592179,0.03424664,99.71222668],[4.53592227,0.03424838,99.71210063],[4.53592274,0.03425012,99.71197345],[4.53592321,0.03425186,99.71184516],[4.53592368,0.0342536,99.71171575],[4.53592415,0.03425534,99.71158523],[4.53592462,0.03425708,99.71145361],[4.53592509,0.03425882,99.7113209],[4.53592556,0.03426056,99.7111871],[4.53592603,0.0342623,99.71105223],[4.5359265,0.03426404,99.71091628],[4.53592697,0.03426578,99.71077927],[4.53592744,0.03426752,99.71064121],[4.53592791,0.03426926,99.7105021],[4.53592838,0.034271,99.71036195],[4.53592885,0.03427274,99.71022077],[4.53592932,0.03427448,99.71007856],[4.53592979,0.03427622,99.70993534],[4.53593026,0.03427796,99.7097911],[4.53593073,0.0342797,99.70964586],[4.5359312,0.03428144,99.70949963],[4.53593168,0.03428318,99.70935241],[4.53593215,0.03428492,99.70920421],[4.53593262,0.03428666,99.70905503],[4.53593309,0.0342884,99.70890489],[4.53593356,0.03429014,99.70875379],[4.53593403,0.03429188,99.70860174],[4.5359345,0.03429362,99.70844875],[4.53593497,0.03429536,99.70829482],[4.53593544,0.03429711,99.70813997],[4.53593591,0.03429885,99.70798419],[4.53593638,0.03430059,99.7078275],[4.53593685,0.03430233,99.70766991],[4.53593732,0.03430407,99.70751142],[4.53593779,0.03430581,99.70735204],[4.53593826,0.03430755,99.70719177],[4.53593873,0.03430929,99.70703064],[4.5359392,0.03431103,99.70686863],[4.53593967,0.03431277,99.70670576],[4.53594014,0.03431451,99.70654204],[4.53594061,0.03431625,99.70637748],[4.53594108,0.03431799,99.70621208],[4.53594155,0.03431973,99.70604585],[4.53594203,0.03432147,99.7058788],[4.5359425,0.03432321,99.70571093],[4.53594297,0.03432495,99.70554226],[4.53594344,0.03432669,99.70537278],[4.53594391,0.03432843,99.70520252],[4.53594438,0.03433017,99.70503147],[4.53594485,0.03433191,99.70485965],[4.53594532,0.03433365,99.70468705],[4.53594579,0.03433539,99.7045137],[4.53594626,0.03433713,99.70433959],[4.53594673,0.03433887,99.70416473],[4.5359472,0.03434061,99.70398914],[4.53594767,0.03434236,99.70381282],[4.53594814,0.0343441,99.70363577],[4.53594861,0.03434584,99.70345801],[4.53594909,0.03434758,99.70327954],[4.53594956,0.03434932,99.70310037],[4.53595003,0.03435106,99.70292049],[4.5359505,0.0343528,99.70273991],[4.53595097,0.03435454,99.70255863],[4.53595144,0.03435628,99.70237664],[4.53595191,0.03435802,99.70219395],[4.53595238,0.03435976,99.70201056],[4.53595285,0.0343615,99.70182647],[4.53595332,0.03436324,99.70164167],[4.53595379,0.03436498,99.70145617],[4.53595426,0.03436672,99.70126997],[4.53595473,0.03436846,99.70108307],[4.53595521,0.0343702,99.70089547],[4.53595568,0.03437194,99.70070716],[4.53595615,0.03437368,99.70051815],[4.53595662,0.03437542,99.70032844],[4.53595709,0.03437716,99.70013803],[4.53595756,0.0343789,99.69994691],[4.53595803,0.03438064,99.6997551],[4.5359585,0.03438238,99.69956257],[4.53595897,0.03438412,99.69936935],[4.53595944,0.03438586,99.69917542],[4.53595991,0.0343876,99.69898079],[4.53596038,0.03438934,99.69878546],[4.53596085,0.03439108,99.69858942],[4.53596132,0.03439282,99.69839268],[4.53596179,0.03439456,99.69819524],[4.53596226,0.0343963,99.69799709],[4.53596274,0.03439804,99.69779823],[4.53596321,0.03439978,99.69759867],[4.53596368,0.03440153,99.6973984],[4.53596415,0.03440327,99.69719743],[4.53596462,0.03440501,99.69699575],[4.53596509,0.03440675,99.69679336],[4.53596556,0.03440849,99.69659027],[4.53596603,0.03441023,99.69638647],[4.5359665,0.03441197,99.69618196],[4.53596697,0.03441371,99.69597674],[4.53596744,0.03441545,99.69577081],[4.53596791,0.03441719,99.69556418],[4.53596838,0.03441893,99.69535684],[4.53596885,0.03442067,99.69514879],[4.53596931,0.03442241,99.69494003],[4.53596978,0.03442415,99.69473057],[4.53597025,0.03442589,99.6945204],[4.53597072,0.03442763,99.69430952],[4.53597119,0.03442937,99.69409793],[4.53597166,0.03443111,99.69388563],[4.53597213,0.03443285,99.69367262],[4.5359726,0.03443459,99.69345891],[4.53597307,0.03443634,99.69324449],[4.53597354,0.03443808,99.69302935],[4.53597401,0.03443982,99.69281351],[4.53597448,0.03444156,99.69259696],[4.53597494,0.0344433,99.6923797],[4.53597541,0.03444504,99.69216173],[4.53597588,0.03444678,99.69194305],[4.53597635,0.03444852,99.69172366],[4.53597682,0.03445026,99.69150355],[4.53597729,0.034452,99.69128274],[4.53597775,0.03445374,99.69106121],[4.53597822,0.03445548,99.69083897],[4.53597869,0.03445723,99.69061602],[4.53597916,0.03445897,99.69039236],[4.53597962,0.03446071,99.69016798],[4.53598009,0.03446245,99.68994288],[4.53598056,0.03446419,99.68971708],[4.53598103,0.03446593,99.68949055],[4.53598149,0.03446767,99.68926332],[4.53598196,0.03446941,99.68903536],[4.53598243,0.03447115,99.68880669],[4.53598289,0.0344729,99.6885773],[4.53598336,0.03447464,99.68834719],[4.53598383,0.03447638,99.68811637],[4.53598429,0.03447812,99.68788482],[4.53598476,0.03447986,99.68765256],[4.53598523,0.0344816,99.68741957],[4.53598569,0.03448334,99.68718586],[4.53598616,0.03448509,99.68695143],[4.53598662,0.03448683,99.68671628],[4.53598709,0.03448857,99.68648041],[4.53598755,0.03449031,99.68624381],[4.53598802,0.03449205,99.68600648],[4.53598848,0.03449379,99.68576843],[4.53598895,0.03449554,99.68552965],[4.53598941,0.03449728,99.68529015],[4.53598988,0.03449902,99.68504992],[4.53599034,0.03450076,99.68480896],[4.53599081,0.0345025,99.68456728],[4.53599127,0.03450424,99.68432488],[4.53599174,0.03450599,99.68408177],[4.5359922,0.03450773,99.68383795],[4.53599266,0.03450947,99.68359343],[4.53599313,0.03451121,99.6833482],[4.53599359,0.03451295,99.68310229],[4.53599405,0.0345147,99.68285568],[4.53599452,0.03451644,99.68260839],[4.53599498,0.03451818,99.68236042],[4.53599544,0.03451992,99.68211177],[4.5359959,0.03452167,99.68186246],[4.53599637,0.03452341,99.68161247],[4.53599683,0.03452515,99.68136182],[4.53599729,0.03452689,99.68111052],[4.53599775,0.03452864,99.68085856],[4.53599822,0.03453038,99.68060595],[4.53599868,0.03453212,99.6803527],[4.53599914,0.03453386,99.68009881],[4.5359996,0.03453561,99.67984429],[4.53600006,0.03453735,99.67958916],[4.53600052,0.03453909,99.67933343],[4.53600098,0.03454083,99.67907711],[4.53600144,0.03454258,99.67882023],[4.5360019,0.03454432,99.6785628],[4.53600237,0.03454606,99.67830485],[4.53600283,0.03454781,99.67804639],[4.53600329,0.03454955,99.67778744],[4.53600375,0.03455129,99.67752803],[4.53600421,0.03455303,99.67726816],[4.53600467,0.03455478,99.67700786],[4.53600513,0.03455652,99.67674715],[4.53600559,0.03455826,99.67648605],[4.53600605,0.03456001,99.67622457],[4.53600651,0.03456175,99.67596274],[4.53600696,0.03456349,99.67570058],[4.53600742,0.03456524,99.6754381],[4.53600788,0.03456698,99.67517532],[4.53600834,0.03456872,99.67491226],[4.5360088,0.03457047,99.67464895],[4.53600926,0.03457221,99.67438541],[4.53600972,0.03457395,99.67412164],[4.53601018,0.03457569,99.67385768],[4.53601064,0.03457744,99.67359353],[4.5360111,0.03457918,99.67332923],[4.53601156,0.03458092,99.67306479],[4.53601201,0.03458267,99.67280024],[4.53601247,0.03458441,99.67253558],[4.53601293,0.03458615,99.67227084],[4.53601339,0.0345879,99.67200604],[4.53601385,0.03458964,99.67174121],[4.53601431,0.03459138,99.67147635],[4.53601477,0.03459313,99.6712115],[4.53601522,0.03459487,99.67094667],[4.53601568,0.03459661,99.67068188],[4.53601614,0.03459836,99.67041715],[4.5360166,0.0346001,99.6701525],[4.53601706,0.03460184,99.66988795],[4.53601752,0.03460359,99.66962353],[4.53601798,0.03460533,99.66935925],[4.53601844,0.03460707,99.66909513],[4.53601889,0.03460882,99.66883119],[4.53601935,0.03461056,99.66856746],[4.53601981,0.0346123,99.66830395],[4.53602027,0.03461405,99.66804069],[4.53602073,0.03461579,99.6677777],[4.53602119,0.03461753,99.66751499],[4.53602165,0.03461928,99.66725258],[4.53602211,0.03462102,99.66699051],[4.53602257,0.03462276,99.66672878],[4.53602302,0.03462451,99.66646742],[4.53602348,0.03462625,99.66620644],[4.53602394,0.03462799,99.66594584],[4.5360244,0.03462974,99.66568564],[4.53602486,0.03463148,99.66542586],[4.53602532,0.03463322,99.66516651],[4.53602578,0.03463496,99.66490759],[4.53602624,0.03463671,99.66464913],[4.5360267,0.03463845,99.66439114],[4.53602716,0.03464019,99.66413363],[4.53602762,0.03464194,99.66387661],[4.53602808,0.03464368,99.66362009],[4.53602854,0.03464542,99.6633641],[4.536029,0.03464716,99.66310864],[4.53602946,0.03464891,99.66285372],[4.53602992,0.03465065,99.66259936],[4.53603038,0.03465239,99.66234557],[4.53603084,0.03465414,99.66209237],[4.5360313,0.03465588,99.66183977],[4.53603176,0.03465762,99.66158777],[4.53603222,0.03465936,99.6613364],[4.53603268,0.03466111,99.66108567],[4.53603315,0.03466285,99.66083559],[4.53603361,0.03466459,99.66058617],[4.53603407,0.03466633,99.66033742],[4.53603453,0.03466808,99.66008934],[4.53603499,0.03466982,99.65984194],[4.53603545,0.03467156,99.65959521],[4.53603591,0.0346733,99.65934915],[4.53603638,0.03467505,99.65910376],[4.53603684,0.03467679,99.65885906],[4.5360373,0.03467853,99.65861502],[4.53603776,0.03468027,99.65837167],[4.53603822,0.03468202,99.65812899],[4.53603869,0.03468376,99.65788699],[4.53603915,0.0346855,99.65764567],[4.53603961,0.03468724,99.65740503],[4.53604007,0.03468898,99.65716507],[4.53604054,0.03469073,99.65692579],[4.536041,0.03469247,99.65668719],[4.53604146,0.03469421,99.65644927],[4.53604192,0.03469595,99.65621203],[4.53604239,0.03469769,99.65597548],[4.53604285,0.03469944,99.65573961],[4.53604331,0.03470118,99.65550443],[4.53604378,0.03470292,99.65526993],[4.53604424,0.03470466,99.65503611],[4.5360447,0.0347064,99.65480298],[4.53604517,0.03470815,99.65457053],[4.53604563,0.03470989,99.65433877],[4.53604609,0.03471163,99.6541077],[4.53604656,0.03471337,99.65387731],[4.53604702,0.03471511,99.65364762],[4.53604748,0.03471686,99.6534186],[4.53604795,0.0347186,99.65319028],[4.53604841,0.03472034,99.65296265],[4.53604888,0.03472208,99.6527357],[4.53604934,0.03472382,99.65250944],[4.5360498,0.03472556,99.65228387],[4.53605027,0.03472731,99.65205899],[4.53605073,0.03472905,99.6518348],[4.5360512,0.03473079,99.6516113],[4.53605166,0.03473253,99.65138849],[4.53605212,0.03473427,99.65116637],[4.53605259,0.03473601,99.65094494],[4.53605305,0.03473776,99.6507242],[4.53605352,0.0347395,99.65050415],[4.53605398,0.03474124,99.65028479],[4.53605444,0.03474298,99.65006612],[4.53605491,0.03474472,99.64984814],[4.53605537,0.03474646,99.64963086],[4.53605584,0.03474821,99.64941426],[4.5360563,0.03474995,99.64919836],[4.53605677,0.03475169,99.64898315],[4.53605723,0.03475343,99.64876863],[4.53605769,0.03475517,99.6485548],[4.53605816,0.03475691,99.64834166],[4.53605862,0.03475865,99.64812922],[4.53605909,0.0347604,99.64791746],[4.53605955,0.03476214,99.6477064],[4.53606002,0.03476388,99.64749603],[4.53606048,0.03476562,99.64728635],[4.53606095,0.03476736,99.64707736],[4.53606141,0.0347691,99.64686907],[4.53606188,0.03477085,99.64666146],[4.53606234,0.03477259,99.64645455],[4.5360628,0.03477433,99.64624833],[4.53606327,0.03477607,99.6460428],[4.53606373,0.03477781,99.64583796],[4.5360642,0.03477955,99.64563382],[4.53606466,0.03478129,99.64543036],[4.53606513,0.03478304,99.64522761],[4.53606559,0.03478478,99.64502556],[4.53606606,0.03478652,99.64482422],[4.53606652,0.03478826,99.6446236],[4.53606698,0.03479,99.6444237],[4.53606745,0.03479174,99.64422454],[4.53606791,0.03479349,99.64402612],[4.53606838,0.03479523,99.64382843],[4.53606884,0.03479697,99.64363151],[4.53606931,0.03479871,99.64343534],[4.53606977,0.03480045,99.64323993],[4.53607023,0.03480219,99.6430453],[4.5360707,0.03480393,99.64285144],[4.53607116,0.03480568,99.64265837],[4.53607163,0.03480742,99.64246609],[4.53607209,0.03480916,99.64227461],[4.53607256,0.0348109,99.64208393],[4.53607302,0.03481264,99.64189406],[4.53607348,0.03481438,99.64170501],[4.53607395,0.03481612,99.64151676],[4.53607441,0.03481787,99.64132931],[4.53607488,0.03481961,99.64114265],[4.53607534,0.03482135,99.64095676],[4.53607581,0.03482309,99.64077164],[4.53607627,0.03482483,99.64058727],[4.53607673,0.03482657,99.64040364],[4.5360772,0.03482832,99.64022075],[4.53607766,0.03483006,99.64003858],[4.53607813,0.0348318,99.63985712],[4.53607859,0.03483354,99.63967636],[4.53607906,0.03483528,99.63949629],[4.53607952,0.03483702,99.6393169],[4.53607998,0.03483876,99.63913818],[4.53608045,0.03484051,99.63896012],[4.53608091,0.03484225,99.63878271],[4.53608138,0.03484399,99.63860593],[4.53608184,0.03484573,99.63842978],[4.5360823,0.03484747,99.63825425],[4.53608277,0.03484921,99.63807932],[4.53608323,0.03485096,99.63790499],[4.5360837,0.0348527,99.63773124],[4.53608416,0.03485444,99.63755807],[4.53608462,0.03485618,99.63738546],[4.53608509,0.03485792,99.6372134],[4.53608555,0.03485966,99.63704189],[4.53608601,0.03486141,99.6368709],[4.53608648,0.03486315,99.63670044],[4.53608694,0.03486489,99.63653049],[4.53608741,0.03486663,99.63636103],[4.53608787,0.03486837,99.63619207],[4.53608833,0.03487011,99.63602359],[4.5360888,0.03487186,99.63585557],[4.53608926,0.0348736,99.63568801],[4.53608972,0.03487534,99.6355209],[4.53609019,0.03487708,99.63535423],[4.53609065,0.03487882,99.63518798],[4.53609111,0.03488056,99.63502215],[4.53609158,0.03488231,99.63485672],[4.53609204,0.03488405,99.63469168],[4.5360925,0.03488579,99.63452703],[4.53609297,0.03488753,99.63436276],[4.53609343,0.03488927,99.63419885],[4.53609389,0.03489101,99.63403528],[4.53609436,0.03489276,99.63387207],[4.53609482,0.0348945,99.63370918],[4.53609528,0.03489624,99.63354661],[4.53609574,0.03489798,99.63338436],[4.53609621,0.03489972,99.6332224],[4.53609667,0.03490146,99.63306074],[4.53609713,0.03490321,99.63289935],[4.5360976,0.03490495,99.63273823],[4.53609806,0.03490669,99.63257737],[4.53609852,0.03490843,99.63241676],[4.53609898,0.03491017,99.63225638],[4.53609945,0.03491192,99.63209623],[4.53609991,0.03491366,99.6319363],[4.53610037,0.0349154,99.63177658],[4.53610083,0.03491714,99.63161705],[4.53610129,0.03491888,99.6314577],[4.53610176,0.03492063,99.63129853],[4.53610222,0.03492237,99.63113953],[4.53610268,0.03492411,99.63098068],[4.53610314,0.03492585,99.63082197],[4.5361036,0.03492759,99.63066339],[4.53610407,0.03492934,99.63050494],[4.53610453,0.03493108,99.6303466],[4.53610499,0.03493282,99.63018837],[4.53610545,0.03493456,99.63003022],[4.53610591,0.0349363,99.62987216],[4.53610637,0.03493805,99.62971417],[4.53610684,0.03493979,99.62955623],[4.5361073,0.03494153,99.62939835],[4.53610776,0.03494327,99.62924051],[4.53610822,0.03494502,99.6290827],[4.53610868,0.03494676,99.62892491],[4.53610914,0.0349485,99.62876713],[4.5361096,0.03495024,99.62860935],[4.53611006,0.03495198,99.62845156],[4.53611052,0.03495373,99.62829374],[4.53611099,0.03495547,99.62813589],[4.53611145,0.03495721,99.62797801],[4.53611191,0.03495895,99.62782007],[4.53611237,0.0349607,99.62766206],[4.53611283,0.03496244,99.62750399],[4.53611329,0.03496418,99.62734583],[4.53611375,0.03496592,99.62718758],[4.53611421,0.03496767,99.62702923],[4.53611467,0.03496941,99.62687076],[4.53611513,0.03497115,99.62671217],[4.53611559,0.03497289,99.62655344],[4.53611605,0.03497464,99.62639458],[4.53611651,0.03497638,99.62623555],[4.53611697,0.03497812,99.62607637],[4.53611743,0.03497986,99.62591701],[4.53611789,0.03498161,99.62575746],[4.53611835,0.03498335,99.62559772],[4.53611881,0.03498509,99.62543777],[4.53611926,0.03498683,99.6252776],[4.53611972,0.03498858,99.62511721],[4.53612018,0.03499032,99.62495657],[4.53612064,0.03499206,99.62479567],[4.5361211,0.03499381,99.62463452],[4.53612156,0.03499555,99.62447308],[4.53612202,0.03499729,99.62431136],[4.53612248,0.03499903,99.62414934],[4.53612293,0.03500078,99.62398701],[4.53612339,0.03500252,99.62382436],[4.53612385,0.03500426,99.62366137],[4.53612431,0.03500601,99.62349804],[4.53612477,0.03500775,99.62333435],[4.53612522,0.03500949,99.62317031],[4.53612568,0.03501123,99.62300592],[4.53612614,0.03501298,99.6228412],[4.5361266,0.03501472,99.62267616],[4.53612705,0.03501646,99.62251082],[4.53612751,0.0350182,99.62234516],[4.53612797,0.03501995,99.62217922],[4.53612843,0.03502169,99.62201299],[4.53612888,0.03502343,99.62184648],[4.53612934,0.03502518,99.6216797],[4.5361298,0.03502692,99.62151266],[4.53613025,0.03502866,99.62134537],[4.53613071,0.03503041,99.62117783],[4.53613117,0.03503215,99.62101005],[4.53613163,0.03503389,99.62084204],[4.53613208,0.03503564,99.62067382],[4.53613254,0.03503738,99.62050539],[4.536133,0.03503912,99.62033677],[4.53613345,0.03504087,99.62016796],[4.53613391,0.03504261,99.61999898],[4.53613437,0.03504435,99.61982983],[4.53613482,0.0350461,99.61966052],[4.53613528,0.03504784,99.61949107],[4.53613574,0.03504958,99.61932148],[4.53613619,0.03505133,99.61915177],[4.53613665,0.03505307,99.61898194],[4.53613711,0.03505481,99.618812],[4.53613756,0.03505656,99.61864196],[4.53613802,0.0350583,99.61847184],[4.53613848,0.03506004,99.61830164],[4.53613893,0.03506179,99.61813137],[4.53613939,0.03506353,99.61796104],[4.53613985,0.03506527,99.61779066],[4.53614031,0.03506702,99.61762024],[4.53614076,0.03506876,99.6174498],[4.53614122,0.0350705,99.61727933],[4.53614168,0.03507225,99.61710884],[4.53614214,0.03507399,99.61693836],[4.53614259,0.03507573,99.61676788],[4.53614305,0.03507748,99.61659742],[4.53614351,0.03507922,99.61642698],[4.53614397,0.03508096,99.61625657],[4.53614443,0.0350827,99.61608621],[4.53614488,0.03508445,99.6159159],[4.53614534,0.03508619,99.61574565],[4.5361458,0.03508793,99.61557546],[4.53614626,0.03508968,99.61540532],[4.53614672,0.03509142,99.61523519],[4.53614718,0.03509316,99.61506506],[4.53614764,0.0350949,99.61489489],[4.53614809,0.03509665,99.61472465],[4.53614855,0.03509839,99.61455434],[4.53614901,0.03510013,99.6143839],[4.53614947,0.03510188,99.61421334],[4.53614993,0.03510362,99.6140426],[4.53615039,0.03510536,99.61387168],[4.53615085,0.0351071,99.61370054],[4.53615131,0.03510885,99.61352916],[4.53615177,0.03511059,99.61335751],[4.53615223,0.03511233,99.61318557],[4.53615269,0.03511407,99.61301331],[4.53615315,0.03511582,99.6128407],[4.53615361,0.03511756,99.61266773],[4.53615407,0.0351193,99.61249436],[4.53615453,0.03512104,99.61232057],[4.53615499,0.03512279,99.61214634],[4.53615545,0.03512453,99.61197163],[4.53615591,0.03512627,99.61179643],[4.53615637,0.03512801,99.61162071],[4.53615683,0.03512976,99.61144444],[4.53615729,0.0351315,99.6112676],[4.53615775,0.03513324,99.61109016],[4.53615821,0.03513498,99.6109121],[4.53615867,0.03513673,99.61073339],[4.53615913,0.03513847,99.61055401],[4.53615959,0.03514021,99.61037393],[4.53616005,0.03514195,99.61019314],[4.53616051,0.0351437,99.61001159],[4.53616097,0.03514544,99.60982928],[4.53616143,0.03514718,99.60964616],[4.53616189,0.03514892,99.60946223],[4.53616235,0.03515067,99.60927745],[4.53616281,0.03515241,99.60909181],[4.53616327,0.03515415,99.60890526],[4.53616373,0.03515589,99.6087178],[4.53616419,0.03515764,99.60852939],[4.53616465,0.03515938,99.60834002],[4.53616511,0.03516112,99.60814966],[4.53616557,0.03516287,99.6079583],[4.53616603,0.03516461,99.60776595],[4.53616648,0.03516635,99.60757259],[4.53616694,0.03516809,99.60737823],[4.5361674,0.03516984,99.60718287],[4.53616786,0.03517158,99.60698651],[4.53616832,0.03517332,99.60678913],[4.53616878,0.03517507,99.60659074],[4.53616924,0.03517681,99.60639134],[4.5361697,0.03517855,99.60619092],[4.53617015,0.0351803,99.60598948],[4.53617061,0.03518204,99.60578702],[4.53617107,0.03518378,99.60558354],[4.53617153,0.03518552,99.60537903],[4.53617199,0.03518727,99.60517349],[4.53617244,0.03518901,99.60496692],[4.5361729,0.03519075,99.60475932],[4.53617336,0.0351925,99.60455068],[4.53617382,0.03519424,99.604341],[4.53617428,0.03519598,99.60413027],[4.53617473,0.03519773,99.60391851],[4.53617519,0.03519947,99.6037057],[4.53617565,0.03520121,99.60349183],[4.53617611,0.03520296,99.60327692],[4.53617656,0.0352047,99.60306095],[4.53617702,0.03520644,99.60284392],[4.53617748,0.03520819,99.60262584],[4.53617793,0.03520993,99.60240669],[4.53617839,0.03521167,99.60218647],[4.53617885,0.03521342,99.60196519],[4.53617931,0.03521516,99.60174283],[4.53617976,0.0352169,99.6015194],[4.53618022,0.03521865,99.6012949],[4.53618068,0.03522039,99.60106931],[4.53618113,0.03522213,99.60084264],[4.53618159,0.03522388,99.60061489],[4.53618205,0.03522562,99.60038605],[4.5361825,0.03522736,99.60015612],[4.53618296,0.03522911,99.5999251],[4.53618342,0.03523085,99.59969298],[4.53618388,0.03523259,99.59945976],[4.53618433,0.03523434,99.59922544],[4.53618479,0.03523608,99.59899002],[4.53618525,0.03523782,99.59875348],[4.5361857,0.03523957,99.59851584],[4.53618616,0.03524131,99.59827708],[4.53618662,0.03524305,99.59803721],[4.53618707,0.0352448,99.59779622],[4.53618753,0.03524654,99.5975541],[4.53618799,0.03524828,99.59731086],[4.53618844,0.03525003,99.59706649],[4.5361889,0.03525177,99.59682099],[4.53618935,0.03525352,99.59657434],[4.53618981,0.03525526,99.59632655],[4.53619027,0.035257,99.59607762],[4.53619072,0.03525875,99.59582754],[4.53619118,0.03526049,99.59557631],[4.53619164,0.03526223,99.59532393],[4.53619209,0.03526398,99.5950704],[4.53619255,0.03526572,99.59481571],[4.53619301,0.03526746,99.59455987],[4.53619346,0.03526921,99.59430286],[4.53619392,0.03527095,99.59404471],[4.53619438,0.03527269,99.59378539],[4.53619483,0.03527444,99.5935249],[4.53619529,0.03527618,99.59326326],[4.53619575,0.03527792,99.59300045],[4.5361962,0.03527967,99.59273648],[4.53619666,0.03528141,99.59247133],[4.53619712,0.03528316,99.59220502],[4.53619757,0.0352849,99.59193754],[4.53619803,0.03528664,99.59166889],[4.53619849,0.03528839,99.59139906],[4.53619894,0.03529013,99.59112806],[4.5361994,0.03529187,99.59085588],[4.53619986,0.03529362,99.59058252],[4.53620031,0.03529536,99.59030798],[4.53620077,0.0352971,99.59003226],[4.53620123,0.03529885,99.58975536],[4.53620169,0.03530059,99.58947727],[4.53620214,0.03530233,99.58919799],[4.5362026,0.03530408,99.58891753],[4.53620306,0.03530582,99.58863587],[4.53620351,0.03530756,99.58835303],[4.53620397,0.03530931,99.58806899],[4.53620443,0.03531105,99.58778376],[4.53620489,0.03531279,99.58749733],[4.53620534,0.03531454,99.5872097],[4.5362058,0.03531628,99.58692087],[4.53620626,0.03531802,99.58663084],[4.53620672,0.03531977,99.5863396],[4.53620718,0.03532151,99.58604716],[4.53620763,0.03532325,99.58575349],[4.53620809,0.035325,99.58545859],[4.53620855,0.03532674,99.58516244],[4.53620901,0.03532848,99.58486501],[4.53620947,0.03533023,99.5845663],[4.53620992,0.03533197,99.58426629],[4.53621038,0.03533371,99.58396496],[4.53621084,0.03533545,99.58366229],[4.5362113,0.0353372,99.58335828],[4.53621176,0.03533894,99.5830529],[4.53621222,0.03534068,99.58274614],[4.53621267,0.03534243,99.58243798],[4.53621313,0.03534417,99.58212841],[4.53621359,0.03534591,99.58181741],[4.53621405,0.03534766,99.58150496],[4.53621451,0.0353494,99.58119105],[4.53621497,0.03535114,99.58087567],[4.53621543,0.03535289,99.5805588],[4.53621588,0.03535463,99.58024041],[4.53621634,0.03535637,99.57992051],[4.5362168,0.03535811,99.57959906],[4.53621726,0.03535986,99.57927606],[4.53621772,0.0353616,99.57895149],[4.53621818,0.03536334,99.57862533],[4.53621864,0.03536509,99.57829757],[4.5362191,0.03536683,99.57796819],[4.53621956,0.03536857,99.57763718],[4.53622001,0.03537032,99.57730452],[4.53622047,0.03537206,99.5769702],[4.53622093,0.0353738,99.57663419],[4.53622139,0.03537554,99.57629649],[4.53622185,0.03537729,99.57595708],[4.53622231,0.03537903,99.57561594],[4.53622277,0.03538077,99.57527306],[4.53622323,0.03538252,99.57492843],[4.53622368,0.03538426,99.57458201],[4.53622414,0.035386,99.57423381],[4.5362246,0.03538775,99.57388381],[4.53622506,0.03538949,99.57353199],[4.53622552,0.03539123,99.57317833],[4.53622598,0.03539297,99.57282282],[4.53622644,0.03539472,99.57246545],[4.53622689,0.03539646,99.57210619],[4.53622735,0.0353982,99.57174504],[4.53622781,0.03539995,99.57138198],[4.53622827,0.03540169,99.57101698],[4.53622873,0.03540343,99.57065005],[4.53622919,0.03540518,99.57028116],[4.53622964,0.03540692,99.56991029],[4.5362301,0.03540866,99.56953744],[4.53623056,0.03541041,99.56916258],[4.53623102,0.03541215,99.56878569],[4.53623148,0.03541389,99.56840675],[4.53623193,0.03541564,99.56802576],[4.53623239,0.03541738,99.56764267],[4.53623285,0.03541912,99.56725748],[4.53623331,0.03542087,99.56687017],[4.53623376,0.03542261,99.56648073],[4.53623422,0.03542435,99.56608912],[4.53623468,0.0354261,99.56569535],[4.53623514,0.03542784,99.5652994],[4.53623559,0.03542958,99.56490123],[4.53623605,0.03543133,99.56450085],[4.53623651,0.03543307,99.56409823],[4.53623696,0.03543481,99.56369336],[4.53623742,0.03543656,99.56328622],[4.53623788,0.0354383,99.56287679],[4.53623833,0.03544004,99.56246505],[4.53623879,0.03544179,99.562051],[4.53623925,0.03544353,99.56163461],[4.5362397,0.03544528,99.56121587],[4.53624016,0.03544702,99.56079476],[4.53624061,0.03544876,99.56037126],[4.53624107,0.03545051,99.55994536],[4.53624153,0.03545225,99.55951705],[4.53624198,0.035454,99.55908634],[4.53624244,0.03545574,99.55865322],[4.53624289,0.03545748,99.55821771],[4.53624335,0.03545923,99.5577798],[4.5362438,0.03546097,99.55733951],[4.53624425,0.03546272,99.55689682],[4.53624471,0.03546446,99.55645176],[4.53624516,0.0354662,99.55600432],[4.53624562,0.03546795,99.5555545],[4.53624607,0.03546969,99.55510231],[4.53624653,0.03547144,99.55464776],[4.53624698,0.03547318,99.55419084],[4.53624743,0.03547493,99.55373156],[4.53624789,0.03547667,99.55326993],[4.53624834,0.03547841,99.55280595],[4.5362488,0.03548016,99.55233962],[4.53624925,0.0354819,99.55187094],[4.5362497,0.03548365,99.55139992],[4.53625016,0.03548539,99.55092657],[4.53625061,0.03548714,99.55045088],[4.53625106,0.03548888,99.54997287],[4.53625152,0.03549063,99.54949253],[4.53625197,0.03549237,99.54900986],[4.53625242,0.03549411,99.54852488],[4.53625288,0.03549586,99.54803758],[4.53625333,0.0354976,99.54754797],[4.53625378,0.03549935,99.54705606],[4.53625424,0.03550109,99.54656184],[4.53625469,0.03550284,99.54606532],[4.53625514,0.03550458,99.54556651],[4.5362556,0.03550633,99.5450654],[4.53625605,0.03550807,99.544562],[4.5362565,0.03550982,99.54405632],[4.53625695,0.03551156,99.54354836],[4.53625741,0.03551331,99.54303812],[4.53625786,0.03551505,99.5425256],[4.53625831,0.03551679,99.54201082],[4.53625877,0.03551854,99.54149376],[4.53625922,0.03552028,99.54097445],[4.53625967,0.03552203,99.54045288],[4.53626013,0.03552377,99.53992905],[4.53626058,0.03552552,99.53940297],[4.53626103,0.03552726,99.53887464],[4.53626149,0.03552901,99.53834407],[4.53626194,0.03553075,99.53781126],[4.53626239,0.0355325,99.53727621],[4.53626285,0.03553424,99.53673893],[4.5362633,0.03553598,99.53619943],[4.53626375,0.03553773,99.53565769],[4.53626421,0.03553947,99.53511374],[4.53626466,0.03554122,99.53456757],[4.53626511,0.03554296,99.53401919],[4.53626557,0.03554471,99.5334686],[4.53626602,0.03554645,99.53291581],[4.53626648,0.0355482,99.53236081],[4.53626693,0.03554994,99.53180362],[4.53626738,0.03555168,99.53124424],[4.53626784,0.03555343,99.53068267],[4.53626829,0.03555517,99.53011891],[4.53626875,0.03555692,99.52955297],[4.5362692,0.03555866,99.52898484],[4.53626966,0.03556041,99.5284145],[4.53627011,0.03556215,99.52784193],[4.53627057,0.03556389,99.5272671],[4.53627102,0.03556564,99.52669001],[4.53627147,0.03556738,99.52611063],[4.53627193,0.03556913,99.52552894],[4.53627239,0.03557087,99.52494492],[4.53627284,0.03557261,99.52435855],[4.5362733,0.03557436,99.52376982],[4.53627375,0.0355761,99.52317869],[4.53627421,0.03557785,99.52258516],[4.53627466,0.03557959,99.5219892],[4.53627512,0.03558134,99.5213908],[4.53627557,0.03558308,99.52078992],[4.53627603,0.03558482,99.52018656],[4.53627648,0.03558657,99.51958071],[4.53627694,0.03558831,99.51897236],[4.53627739,0.03559006,99.51836154],[4.53627785,0.0355918,99.51774825],[4.53627831,0.03559354,99.51713249],[4.53627876,0.03559529,99.51651429],[4.53627922,0.03559703,99.51589365],[4.53627967,0.03559877,99.51527057],[4.53628013,0.03560052,99.51464508],[4.53628058,0.03560226,99.51401717],[4.53628104,0.03560401,99.51338687],[4.5362815,0.03560575,99.51275417],[4.53628195,0.03560749,99.5121191],[4.53628241,0.03560924,99.51148165],[4.53628286,0.03561098,99.51084183],[4.53628332,0.03561273,99.51019967],[4.53628377,0.03561447,99.50955516],[4.53628423,0.03561621,99.50890832],[4.53628469,0.03561796,99.50825915],[4.53628514,0.0356197,99.50760767],[4.5362856,0.03562145,99.50695388],[4.53628605,0.03562319,99.50629779],[4.53628651,0.03562493,99.50563941],[4.53628696,0.03562668,99.50497876],[4.53628742,0.03562842,99.50431584],[4.53628788,0.03563017,99.50365065],[4.53628833,0.03563191,99.50298322],[4.53628879,0.03563365,99.50231354],[4.53628924,0.0356354,99.50164163],[4.5362897,0.03563714,99.50096749],[4.53629015,0.03563889,99.50029114],[4.53629061,0.03564063,99.49961259],[4.53629106,0.03564237,99.49893183],[4.53629152,0.03564412,99.49824889],[4.53629197,0.03564586,99.49756377],[4.53629243,0.03564761,99.49687648],[4.53629289,0.03564935,99.49618703],[4.53629334,0.0356511,99.49549542],[4.5362938,0.03565284,99.49480167],[4.53629425,0.03565458,99.49410579],[4.53629471,0.03565633,99.49340778],[4.53629516,0.03565807,99.49270765],[4.53629562,0.03565982,99.49200542],[4.53629607,0.03566156,99.49130108],[4.53629652,0.0356633,99.49059466],[4.53629698,0.03566505,99.48988615],[4.53629743,0.03566679,99.48917556],[4.53629789,0.03566854,99.48846291],[4.53629834,0.03567028,99.48774821],[4.5362988,0.03567203,99.48703149],[4.53629925,0.03567377,99.48631276],[4.53629971,0.03567552,99.48559206],[4.53630016,0.03567726,99.48486939],[4.53630061,0.035679,99.48414479],[4.53630107,0.03568075,99.48341829],[4.53630152,0.03568249,99.48268989],[4.53630197,0.03568424,99.48195963],[4.53630243,0.03568598,99.48122752],[4.53630288,0.03568773,99.4804936],[4.53630334,0.03568947,99.47975788],[4.53630379,0.03569122,99.47902039],[4.53630424,0.03569296,99.47828115],[4.5363047,0.0356947,99.47754018],[4.53630515,0.03569645,99.47679751],[4.5363056,0.03569819,99.47605316],[4.53630606,0.03569994,99.47530715],[4.53630651,0.03570168,99.47455951],[4.53630696,0.03570343,99.47381026],[4.53630742,0.03570517,99.47305942],[4.53630787,0.03570692,99.47230701],[4.53630832,0.03570866,99.47155307],[4.53630878,0.03571041,99.47079761],[4.53630923,0.03571215,99.47004065],[4.53630968,0.0357139,99.46928223],[4.53631013,0.03571564,99.46852236],[4.53631059,0.03571738,99.46776106],[4.53631104,0.03571913,99.46699836],[4.53631149,0.03572087,99.46623429],[4.53631195,0.03572262,99.46546886],[4.5363124,0.03572436,99.4647021],[4.53631285,0.03572611,99.46393403],[4.5363133,0.03572785,99.46316466],[4.53631376,0.0357296,99.46239402],[4.53631421,0.03573134,99.4616221],[4.53631466,0.03573309,99.46084895],[4.53631512,0.03573483,99.46007456],[4.53631557,0.03573658,99.45929896],[4.53631602,0.03573832,99.45852217],[4.53631647,0.03574007,99.4577442],[4.53631693,0.03574181,99.45696506],[4.53631738,0.03574356,99.45618478],[4.53631783,0.0357453,99.45540337],[4.53631829,0.03574705,99.45462085],[4.53631874,0.03574879,99.45383723],[4.53631919,0.03575054,99.45305254],[4.53631964,0.03575228,99.45226678],[4.5363201,0.03575403,99.45147998],[4.53632055,0.03575577,99.45069216],[4.536321,0.03575752,99.44990332],[4.53632145,0.03575926,99.44911348],[4.53632191,0.035761,99.44832267],[4.53632236,0.03576275,99.4475309],[4.53632281,0.03576449,99.44673818],[4.53632326,0.03576624,99.44594453],[4.53632372,0.03576798,99.44514998],[4.53632417,0.03576973,99.44435453],[4.53632462,0.03577147,99.4435582],[4.53632507,0.03577322,99.44276101],[4.53632552,0.03577496,99.44196298],[4.53632598,0.03577671,99.44116412],[4.53632643,0.03577845,99.44036446],[4.53632688,0.0357802,99.43956399],[4.53632733,0.03578194,99.43876275],[4.53632779,0.03578369,99.43796075],[4.53632824,0.03578543,99.43715801],[4.53632869,0.03578718,99.43635454],[4.53632914,0.03578892,99.43555036],[4.53632959,0.03579067,99.43474549],[4.53633005,0.03579241,99.43393994],[4.5363305,0.03579416,99.43313372],[4.53633095,0.0357959,99.43232687],[4.5363314,0.03579765,99.43151939],[4.53633185,0.03579939,99.4307113],[4.53633231,0.03580114,99.42990262],[4.53633276,0.03580288,99.42909336],[4.53633321,0.03580463,99.42828354],[4.53633366,0.03580637,99.42747317],[4.53633411,0.03580812,99.42666229],[4.53633457,0.03580986,99.42585089],[4.53633502,0.03581161,99.42503899],[4.53633547,0.03581335,99.42422663],[4.53633592,0.0358151,99.4234138],[4.53633637,0.03581684,99.42260053],[4.53633682,0.03581859,99.42178683],[4.53633728,0.03582033,99.42097272],[4.53633773,0.03582208,99.42015822],[4.53633818,0.03582382,99.41934334],[4.53633863,0.03582557,99.41852811],[4.53633908,0.03582731,99.41771253],[4.53633953,0.03582906,99.41689662],[4.53633999,0.0358308,99.41608041],[4.53634044,0.03583255,99.4152639],[4.53634089,0.03583429,99.41444712],[4.53634134,0.03583604,99.41363008],[4.53634179,0.03583778,99.41281279],[4.53634224,0.03583953,99.41199529],[4.53634269,0.03584127,99.41117758],[4.53634314,0.03584302,99.41035969],[4.5363436,0.03584477,99.40954162],[4.53634405,0.03584651,99.4087234],[4.5363445,0.03584826,99.40790505],[4.53634495,0.03585,99.40708659],[4.5363454,0.03585175,99.40626802],[4.53634585,0.03585349,99.40544937],[4.5363463,0.03585524,99.40463066],[4.53634675,0.03585698,99.40381191],[4.5363472,0.03585873,99.40299312],[4.53634766,0.03586047,99.40217433],[4.53634811,0.03586222,99.40135554],[4.53634856,0.03586396,99.40053678],[4.53634901,0.03586571,99.39971806],[4.53634946,0.03586745,99.3988994],[4.53634991,0.0358692,99.39808082],[4.53635036,0.03587094,99.39726234],[4.53635081,0.03587269,99.39644397],[4.53635126,0.03587443,99.39562573],[4.53635171,0.03587618,99.39480764],[4.53635216,0.03587792,99.39398971],[4.53635261,0.03587967,99.39317198],[4.53635306,0.03588142,99.39235444],[4.53635352,0.03588316,99.39153712],[4.53635397,0.03588491,99.39072004],[4.53635442,0.03588665,99.38990322],[4.53635487,0.0358884,99.38908667],[4.53635532,0.03589014,99.3882704],[4.53635577,0.03589189,99.38745445],[4.53635622,0.03589363,99.38663883],[4.53635667,0.03589538,99.38582355],[4.53635712,0.03589712,99.38500863],[4.53635757,0.03589887,99.38419408],[4.53635802,0.03590061,99.38337994],[4.53635847,0.03590236,99.38256621],[4.53635892,0.0359041,99.38175292],[4.53635937,0.03590585,99.38094007],[4.53635982,0.0359076,99.3801277],[4.53636027,0.03590934,99.3793158],[4.53636072,0.03591109,99.37850442],[4.53636117,0.03591283,99.37769355],[4.53636162,0.03591458,99.37688323],[4.53636207,0.03591632,99.37607348],[4.53636252,0.03591807,99.37526432],[4.53636297,0.03591981,99.37445577],[4.53636342,0.03592156,99.37364785],[4.53636387,0.0359233,99.37284059],[4.53636432,0.03592505,99.372034],[4.53636477,0.0359268,99.37122811],[4.53636522,0.03592854,99.37042294],[4.53636567,0.03593029,99.36961851],[4.53636612,0.03593203,99.36881484],[4.53636657,0.03593378,99.36801195],[4.53636702,0.03593552,99.36720987],[4.53636747,0.03593727,99.36640861],[4.53636792,0.03593901,99.36560819],[4.53636837,0.03594076,99.36480863],[4.53636882,0.0359425,99.36400997],[4.53636927,0.03594425,99.36321221],[4.53636972,0.035946,99.36241538],[4.53637017,0.03594774,99.3616195],[4.53637062,0.03594949,99.36082459],[4.53637107,0.03595123,99.36003068],[4.53637152,0.03595298,99.35923778],[4.53637197,0.03595472,99.35844591],[4.53637242,0.03595647,99.3576551],[4.53637287,0.03595821,99.35686536],[4.53637332,0.03595996,99.35607672],[4.53637377,0.0359617,99.35528921],[4.53637422,0.03596345,99.35450283],[4.53637467,0.0359652,99.35371759],[4.53637512,0.03596694,99.3529335],[4.53637557,0.03596869,99.35215054],[4.53637602,0.03597043,99.35136872],[4.53637647,0.03597218,99.35058804],[4.53637692,0.03597392,99.34980849],[4.53637737,0.03597567,99.34903008],[4.53637782,0.03597741,99.3482528],[4.53637827,0.03597916,99.34747664],[4.53637872,0.0359809,99.34670162],[4.53637917,0.03598265,99.34592772],[4.53637962,0.0359844,99.34515494],[4.53638007,0.03598614,99.34438329],[4.53638052,0.03598789,99.34361276],[4.53638097,0.03598963,99.34284334],[4.53638142,0.03599138,99.34207505],[4.53638187,0.03599312,99.34130786],[4.53638232,0.03599487,99.34054179],[4.53638277,0.03599661,99.33977683],[4.53638322,0.03599836,99.33901296],[4.53638367,0.0360001,99.33825019],[4.53638412,0.03600185,99.3374885],[4.53638457,0.03600359,99.3367279],[4.53638502,0.03600534,99.33596837],[4.53638547,0.03600708,99.33520992],[4.53638592,0.03600883,99.33445254],[4.53638637,0.03601058,99.33369621],[4.53638682,0.03601232,99.33294094],[4.53638727,0.03601407,99.33218672],[4.53638772,0.03601581,99.33143355],[4.53638817,0.03601756,99.33068141],[4.53638862,0.0360193,99.32993031],[4.53638907,0.03602105,99.32918024],[4.53638952,0.03602279,99.32843119],[4.53638997,0.03602454,99.32768315],[4.53639042,0.03602628,99.32693613],[4.53639088,0.03602803,99.32619012],[4.53639133,0.03602977,99.3254451],[4.53639178,0.03603152,99.32470108],[4.53639223,0.03603326,99.32395805],[4.53639268,0.03603501,99.323216],[4.53639313,0.03603675,99.32247493],[4.53639358,0.0360385,99.32173484],[4.53639403,0.03604024,99.32099571],[4.53639448,0.03604199,99.32025754],[4.53639493,0.03604374,99.31952033],[4.53639538,0.03604548,99.31878405],[4.53639583,0.03604723,99.31804872],[4.53639628,0.03604897,99.31731431],[4.53639674,0.03605072,99.31658081],[4.53639719,0.03605246,99.31584823],[4.53639764,0.03605421,99.31511654],[4.53639809,0.03605595,99.31438574],[4.53639854,0.0360577,99.31365581],[4.53639899,0.03605944,99.31292676],[4.53639944,0.03606119,99.31219857],[4.53639989,0.03606293,99.31147123],[4.53640034,0.03606468,99.31074473],[4.53640079,0.03606642,99.31001907],[4.53640124,0.03606817,99.30929423],[4.5364017,0.03606991,99.3085702],[4.53640215,0.03607166,99.30784698],[4.5364026,0.0360734,99.30712456],[4.53640305,0.03607515,99.30640292],[4.5364035,0.03607689,99.30568206],[4.53640395,0.03607864,99.30496196],[4.5364044,0.03608038,99.30424263],[4.53640485,0.03608213,99.30352404],[4.5364053,0.03608387,99.3028062],[4.53640575,0.03608562,99.30208908],[4.53640621,0.03608736,99.30137269],[4.53640666,0.03608911,99.30065701],[4.53640711,0.03609085,99.29994203],[4.53640756,0.0360926,99.29922775],[4.53640801,0.03609434,99.29851415],[4.53640846,0.03609609,99.29780123],[4.53640891,0.03609783,99.29708897],[4.53640936,0.03609958,99.29637736],[4.53640981,0.03610132,99.29566641],[4.53641026,0.03610307,99.29495609],[4.53641071,0.03610481,99.29424641],[4.53641117,0.03610656,99.29353734],[4.53641162,0.0361083,99.29282888],[4.53641207,0.03611005,99.29212102],[4.53641252,0.0361118,99.29141375],[4.53641297,0.03611354,99.29070707],[4.53641342,0.03611529,99.29000096],[4.53641387,0.03611703,99.28929541],[4.53641432,0.03611878,99.28859042],[4.53641477,0.03612052,99.28788597],[4.53641522,0.03612227,99.28718205],[4.53641567,0.03612401,99.28647865],[4.53641612,0.03612576,99.28577574],[4.53641657,0.0361275,99.2850733],[4.53641702,0.03612925,99.28437132],[4.53641747,0.03613099,99.28366978],[4.53641792,0.03613274,99.28296868],[4.53641838,0.03613448,99.28226802],[4.53641883,0.03613623,99.2815678],[4.53641928,0.03613797,99.28086802],[4.53641973,0.03613972,99.28016868],[4.53642018,0.03614146,99.27946977],[4.53642063,0.03614321,99.2787713],[4.53642108,0.03614495,99.27807326],[4.53642153,0.0361467,99.27737564],[4.53642198,0.03614845,99.27667845],[4.53642243,0.03615019,99.27598168],[4.53642288,0.03615194,99.27528533],[4.53642333,0.03615368,99.27458939],[4.53642378,0.03615543,99.27389386],[4.53642423,0.03615717,99.27319874],[4.53642468,0.03615892,99.27250403],[4.53642513,0.03616066,99.27180972],[4.53642558,0.03616241,99.2711158],[4.53642603,0.03616415,99.27042228],[4.53642647,0.0361659,99.26972915],[4.53642692,0.03616764,99.26903641],[4.53642737,0.03616939,99.26834406],[4.53642782,0.03617114,99.26765209],[4.53642827,0.03617288,99.2669605],[4.53642872,0.03617463,99.26626928],[4.53642917,0.03617637,99.26557844],[4.53642962,0.03617812,99.26488797],[4.53643007,0.03617986,99.26419786],[4.53643052,0.03618161,99.26350812],[4.53643097,0.03618335,99.26281873],[4.53643142,0.0361851,99.26212971],[4.53643187,0.03618684,99.26144103],[4.53643232,0.03618859,99.26075271],[4.53643277,0.03619034,99.26006474],[4.53643322,0.03619208,99.25937711],[4.53643367,0.03619383,99.25868982],[4.53643412,0.03619557,99.25800287],[4.53643457,0.03619732,99.25731625],[4.53643501,0.03619906,99.25662996],[4.53643546,0.03620081,99.25594401],[4.53643591,0.03620255,99.25525837],[4.53643636,0.0362043,99.25457306],[4.53643681,0.03620604,99.25388807],[4.53643726,0.03620779,99.25320339],[4.53643771,0.03620954,99.25251902],[4.53643816,0.03621128,99.25183497],[4.53643861,0.03621303,99.25115122],[4.53643906,0.03621477,99.25046777],[4.53643951,0.03621652,99.24978462],[4.53643996,0.03621826,99.24910176],[4.5364404,0.03622001,99.2484192],[4.53644085,0.03622175,99.24773693],[4.5364413,0.0362235,99.24705494],[4.53644175,0.03622525,99.24637324],[4.5364422,0.03622699,99.24569181],[4.53644265,0.03622874,99.24501066],[4.5364431,0.03623048,99.24432979],[4.53644355,0.03623223,99.24364918],[4.536444,0.03623397,99.24296883],[4.53644445,0.03623572,99.24228871],[4.53644489,0.03623746,99.24160878],[4.53644534,0.03623921,99.24092902],[4.53644579,0.03624096,99.24024939],[4.53644624,0.0362427,99.23956986],[4.53644669,0.03624445,99.23889042],[4.53644714,0.03624619,99.23821106],[4.53644759,0.03624794,99.23753177],[4.53644804,0.03624968,99.23685255],[4.53644849,0.03625143,99.23617339],[4.53644893,0.03625318,99.23549428],[4.53644938,0.03625492,99.23481522],[4.53644983,0.03625667,99.23413621],[4.53645028,0.03625841,99.23345723],[4.53645073,0.03626016,99.23277828],[4.53645118,0.0362619,99.23209935],[4.53645162,0.03626365,99.23142044],[4.53645207,0.0362654,99.23074155],[4.53645252,0.03626714,99.23006266],[4.53645297,0.03626889,99.22938377],[4.53645342,0.03627063,99.22870487],[4.53645387,0.03627238,99.22802596],[4.53645431,0.03627412,99.22734704],[4.53645476,0.03627587,99.22666809],[4.53645521,0.03627762,99.22598911],[4.53645566,0.03627936,99.2253101],[4.53645611,0.03628111,99.22463104],[4.53645655,0.03628285,99.22395194],[4.536457,0.0362846,99.22327278],[4.53645745,0.03628634,99.22259356],[4.5364579,0.03628809,99.22191427],[4.53645834,0.03628984,99.2212349],[4.53645879,0.03629158,99.22055543],[4.53645924,0.03629333,99.21987587],[4.53645969,0.03629507,99.21919619],[4.53646013,0.03629682,99.2185164],[4.53646058,0.03629857,99.21783647],[4.53646103,0.03630031,99.2171564],[4.53646147,0.03630206,99.21647618],[4.53646192,0.0363038,99.21579581],[4.53646237,0.03630555,99.21511526],[4.53646282,0.0363073,99.21443453],[4.53646326,0.03630904,99.21375361],[4.53646371,0.03631079,99.2130725],[4.53646416,0.03631254,99.21239117],[4.5364646,0.03631428,99.21170963],[4.53646505,0.03631603,99.21102787],[4.5364655,0.03631777,99.21034587],[4.53646594,0.03631952,99.20966366],[4.53646639,0.03632127,99.20898121],[4.53646683,0.03632301,99.20829854],[4.53646728,0.03632476,99.20761563],[4.53646773,0.0363265,99.2069325],[4.53646817,0.03632825,99.20624913],[4.53646862,0.03633,99.20556552],[4.53646906,0.03633174,99.20488168],[4.53646951,0.03633349,99.20419761],[4.53646996,0.03633524,99.20351329],[4.5364704,0.03633698,99.20282874],[4.53647085,0.03633873,99.20214394],[4.53647129,0.03634048,99.20145891],[4.53647174,0.03634222,99.20077363],[4.53647218,0.03634397,99.2000881],[4.53647263,0.03634571,99.19940233],[4.53647307,0.03634746,99.19871631],[4.53647352,0.03634921,99.19803004],[4.53647397,0.03635095,99.19734352],[4.53647441,0.0363527,99.19665675],[4.53647486,0.03635445,99.19596972],[4.5364753,0.03635619,99.19528245],[4.53647575,0.03635794,99.19459491],[4.53647619,0.03635969,99.19390711],[4.53647664,0.03636143,99.19321906],[4.53647708,0.03636318,99.19253075],[4.53647753,0.03636493,99.19184217],[4.53647797,0.03636667,99.19115333],[4.53647841,0.03636842,99.19046423],[4.53647886,0.03637017,99.18977486],[4.5364793,0.03637191,99.18908525],[4.53647975,0.03637366,99.18839543],[4.53648019,0.03637541,99.18770541],[4.53648064,0.03637715,99.18701519],[4.53648108,0.0363789,99.18632475],[4.53648153,0.03638065,99.18563411],[4.53648197,0.03638239,99.18494326],[4.53648242,0.03638414,99.18425219],[4.53648286,0.03638589,99.18356092],[4.53648331,0.03638763,99.18286943],[4.53648375,0.03638938,99.18217773],[4.5364842,0.03639113,99.18148581],[4.53648464,0.03639287,99.18079368],[4.53648508,0.03639462,99.18010132],[4.53648553,0.03639637,99.17940875],[4.53648597,0.03639811,99.17871596],[4.53648642,0.03639986,99.17802294],[4.53648686,0.03640161,99.1773297],[4.53648731,0.03640335,99.17663624],[4.53648775,0.0364051,99.17594254],[4.5364882,0.03640685,99.17524863],[4.53648864,0.03640859,99.17455448],[4.53648909,0.03641034,99.1738601],[4.53648953,0.03641209,99.17316549],[4.53648997,0.03641383,99.17247065],[4.53649042,0.03641558,99.17177557],[4.53649086,0.03641733,99.17108025],[4.53649131,0.03641907,99.1703847],[4.53649175,0.03642082,99.16968891],[4.5364922,0.03642257,99.16899288],[4.53649264,0.03642431,99.1682966],[4.53649309,0.03642606,99.16760009],[4.53649353,0.0364278,99.16690332],[4.53649398,0.03642955,99.16620632],[4.53649442,0.0364313,99.16550906],[4.53649487,0.03643304,99.16481155],[4.53649531,0.03643479,99.16411379],[4.53649576,0.03643654,99.16341578],[4.5364962,0.03643828,99.16271752],[4.53649665,0.03644003,99.16201899],[4.53649709,0.03644178,99.16132021],[4.53649754,0.03644352,99.16062118],[4.53649798,0.03644527,99.15992188],[4.53649843,0.03644702,99.15922231],[4.53649887,0.03644876,99.15852249],[4.53649932,0.03645051,99.1578224],[4.53649976,0.03645226,99.15712204],[4.53650021,0.036454,99.15642141],[4.53650065,0.03645575,99.15572051],[4.5365011,0.03645749,99.15501933],[4.53650154,0.03645923,99.15431789],[4.53650199,0.03646098,99.15361616],[4.53650243,0.03646273,99.15291416],[4.53650288,0.03646447,99.15221188],[4.53650332,0.03646622,99.15150932],[4.53650377,0.03646796,99.15080648],[4.53650422,0.03646971,99.15010335],[4.53650466,0.03647146,99.14939993],[4.53650511,0.0364732,99.14869623],[4.53650555,0.03647495,99.14799224],[4.536506,0.0364767,99.14728795],[4.53650645,0.03647844,99.14658333],[4.53650689,0.03648019,99.14587836],[4.53650734,0.03648193,99.14517298],[4.53650778,0.03648368,99.14446717],[4.53650823,0.03648543,99.14376088],[4.53650868,0.03648717,99.14305408],[4.53650912,0.03648892,99.14234672],[4.53650957,0.03649067,99.14163877],[4.53651001,0.03649241,99.1409302],[4.53651046,0.03649416,99.14022096],[4.53651091,0.0364959,99.13951101],[4.53650955,0.03649625,99.26451101]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-5,"level":true,"heights":[{"outer":0.15,"inner":0.025}],"roadId":"1004600","id":-5,"type":"border","predecessorId":-5,"sOffset":248.3390056326}},{"geometry":{"coordinates":[[[4.53651091,0.0364959,99.11451101],[4.53651046,0.03649416,99.11522096],[4.53651001,0.03649241,99.1159302],[4.53650957,0.03649067,99.11663877],[4.53650912,0.03648892,99.11734672],[4.53650868,0.03648717,99.11805408],[4.53650823,0.03648543,99.11876088],[4.53650778,0.03648368,99.11946717],[4.53650734,0.03648193,99.12017298],[4.53650689,0.03648019,99.12087836],[4.53650645,0.03647844,99.12158333],[4.536506,0.0364767,99.12228795],[4.53650555,0.03647495,99.12299224],[4.53650511,0.0364732,99.12369623],[4.53650466,0.03647146,99.12439993],[4.53650422,0.03646971,99.12510335],[4.53650377,0.03646796,99.12580648],[4.53650332,0.03646622,99.12650932],[4.53650288,0.03646447,99.12721188],[4.53650243,0.03646273,99.12791416],[4.53650199,0.03646098,99.12861616],[4.53650154,0.03645923,99.12931789],[4.5365011,0.03645749,99.13001933],[4.53650065,0.03645575,99.13072051],[4.53650021,0.036454,99.13142141],[4.53649976,0.03645226,99.13212204],[4.53649932,0.03645051,99.1328224],[4.53649887,0.03644876,99.13352249],[4.53649843,0.03644702,99.13422231],[4.53649798,0.03644527,99.13492188],[4.53649754,0.03644352,99.13562118],[4.53649709,0.03644178,99.13632021],[4.53649665,0.03644003,99.13701899],[4.5364962,0.03643828,99.13771752],[4.53649576,0.03643654,99.13841578],[4.53649531,0.03643479,99.13911379],[4.53649487,0.03643304,99.13981155],[4.53649442,0.0364313,99.14050906],[4.53649398,0.03642955,99.14120632],[4.53649353,0.0364278,99.14190332],[4.53649309,0.03642606,99.14260009],[4.53649264,0.03642431,99.1432966],[4.5364922,0.03642257,99.14399288],[4.53649175,0.03642082,99.14468891],[4.53649131,0.03641907,99.1453847],[4.53649086,0.03641733,99.14608025],[4.53649042,0.03641558,99.14677557],[4.53648997,0.03641383,99.14747065],[4.53648953,0.03641209,99.14816549],[4.53648909,0.03641034,99.1488601],[4.53648864,0.03640859,99.14955448],[4.5364882,0.03640685,99.15024863],[4.53648775,0.0364051,99.15094254],[4.53648731,0.03640335,99.15163624],[4.53648686,0.03640161,99.1523297],[4.53648642,0.03639986,99.15302294],[4.53648597,0.03639811,99.15371596],[4.53648553,0.03639637,99.15440875],[4.53648508,0.03639462,99.15510132],[4.53648464,0.03639287,99.15579368],[4.5364842,0.03639113,99.15648581],[4.53648375,0.03638938,99.15717773],[4.53648331,0.03638763,99.15786943],[4.53648286,0.03638589,99.15856092],[4.53648242,0.03638414,99.15925219],[4.53648197,0.03638239,99.15994326],[4.53648153,0.03638065,99.16063411],[4.53648108,0.0363789,99.16132475],[4.53648064,0.03637715,99.16201519],[4.53648019,0.03637541,99.16270541],[4.53647975,0.03637366,99.16339543],[4.5364793,0.03637191,99.16408525],[4.53647886,0.03637017,99.16477486],[4.53647841,0.03636842,99.16546423],[4.53647797,0.03636667,99.16615333],[4.53647753,0.03636493,99.16684217],[4.53647708,0.03636318,99.16753075],[4.53647664,0.03636143,99.16821906],[4.53647619,0.03635969,99.16890711],[4.53647575,0.03635794,99.16959491],[4.5364753,0.03635619,99.17028245],[4.53647486,0.03635445,99.17096972],[4.53647441,0.0363527,99.17165675],[4.53647397,0.03635095,99.17234352],[4.53647352,0.03634921,99.17303004],[4.53647307,0.03634746,99.17371631],[4.53647263,0.03634571,99.17440233],[4.53647218,0.03634397,99.1750881],[4.53647174,0.03634222,99.17577363],[4.53647129,0.03634048,99.17645891],[4.53647085,0.03633873,99.17714394],[4.5364704,0.03633698,99.17782874],[4.53646996,0.03633524,99.17851329],[4.53646951,0.03633349,99.17919761],[4.53646906,0.03633174,99.17988168],[4.53646862,0.03633,99.18056552],[4.53646817,0.03632825,99.18124913],[4.53646773,0.0363265,99.1819325],[4.53646728,0.03632476,99.18261563],[4.53646683,0.03632301,99.18329854],[4.53646639,0.03632127,99.18398121],[4.53646594,0.03631952,99.18466366],[4.5364655,0.03631777,99.18534587],[4.53646505,0.03631603,99.18602787],[4.5364646,0.03631428,99.18670963],[4.53646416,0.03631254,99.18739117],[4.53646371,0.03631079,99.1880725],[4.53646326,0.03630904,99.18875361],[4.53646282,0.0363073,99.18943453],[4.53646237,0.03630555,99.19011526],[4.53646192,0.0363038,99.19079581],[4.53646147,0.03630206,99.19147618],[4.53646103,0.03630031,99.1921564],[4.53646058,0.03629857,99.19283647],[4.53646013,0.03629682,99.1935164],[4.53645969,0.03629507,99.19419619],[4.53645924,0.03629333,99.19487587],[4.53645879,0.03629158,99.19555543],[4.53645834,0.03628984,99.1962349],[4.5364579,0.03628809,99.19691427],[4.53645745,0.03628634,99.19759356],[4.536457,0.0362846,99.19827278],[4.53645655,0.03628285,99.19895194],[4.53645611,0.03628111,99.19963104],[4.53645566,0.03627936,99.2003101],[4.53645521,0.03627762,99.20098911],[4.53645476,0.03627587,99.20166809],[4.53645431,0.03627412,99.20234704],[4.53645387,0.03627238,99.20302596],[4.53645342,0.03627063,99.20370487],[4.53645297,0.03626889,99.20438377],[4.53645252,0.03626714,99.20506266],[4.53645207,0.0362654,99.20574155],[4.53645162,0.03626365,99.20642044],[4.53645118,0.0362619,99.20709935],[4.53645073,0.03626016,99.20777828],[4.53645028,0.03625841,99.20845723],[4.53644983,0.03625667,99.20913621],[4.53644938,0.03625492,99.20981522],[4.53644893,0.03625318,99.21049428],[4.53644849,0.03625143,99.21117339],[4.53644804,0.03624968,99.21185255],[4.53644759,0.03624794,99.21253177],[4.53644714,0.03624619,99.21321106],[4.53644669,0.03624445,99.21389042],[4.53644624,0.0362427,99.21456986],[4.53644579,0.03624096,99.21524939],[4.53644534,0.03623921,99.21592902],[4.53644489,0.03623746,99.21660878],[4.53644445,0.03623572,99.21728871],[4.536444,0.03623397,99.21796883],[4.53644355,0.03623223,99.21864918],[4.5364431,0.03623048,99.21932979],[4.53644265,0.03622874,99.22001066],[4.5364422,0.03622699,99.22069181],[4.53644175,0.03622525,99.22137324],[4.5364413,0.0362235,99.22205494],[4.53644085,0.03622175,99.22273693],[4.5364404,0.03622001,99.2234192],[4.53643996,0.03621826,99.22410176],[4.53643951,0.03621652,99.22478462],[4.53643906,0.03621477,99.22546777],[4.53643861,0.03621303,99.22615122],[4.53643816,0.03621128,99.22683497],[4.53643771,0.03620954,99.22751902],[4.53643726,0.03620779,99.22820339],[4.53643681,0.03620604,99.22888807],[4.53643636,0.0362043,99.22957306],[4.53643591,0.03620255,99.23025837],[4.53643546,0.03620081,99.23094401],[4.53643501,0.03619906,99.23162996],[4.53643457,0.03619732,99.23231625],[4.53643412,0.03619557,99.23300287],[4.53643367,0.03619383,99.23368982],[4.53643322,0.03619208,99.23437711],[4.53643277,0.03619034,99.23506474],[4.53643232,0.03618859,99.23575271],[4.53643187,0.03618684,99.23644103],[4.53643142,0.0361851,99.23712971],[4.53643097,0.03618335,99.23781873],[4.53643052,0.03618161,99.23850812],[4.53643007,0.03617986,99.23919786],[4.53642962,0.03617812,99.23988797],[4.53642917,0.03617637,99.24057844],[4.53642872,0.03617463,99.24126928],[4.53642827,0.03617288,99.2419605],[4.53642782,0.03617114,99.24265209],[4.53642737,0.03616939,99.24334406],[4.53642692,0.03616764,99.24403641],[4.53642647,0.0361659,99.24472915],[4.53642603,0.03616415,99.24542228],[4.53642558,0.03616241,99.2461158],[4.53642513,0.03616066,99.24680972],[4.53642468,0.03615892,99.24750403],[4.53642423,0.03615717,99.24819874],[4.53642378,0.03615543,99.24889386],[4.53642333,0.03615368,99.24958939],[4.53642288,0.03615194,99.25028533],[4.53642243,0.03615019,99.25098168],[4.53642198,0.03614845,99.25167845],[4.53642153,0.0361467,99.25237564],[4.53642108,0.03614495,99.25307326],[4.53642063,0.03614321,99.2537713],[4.53642018,0.03614146,99.25446977],[4.53641973,0.03613972,99.25516868],[4.53641928,0.03613797,99.25586802],[4.53641883,0.03613623,99.2565678],[4.53641838,0.03613448,99.25726802],[4.53641792,0.03613274,99.25796868],[4.53641747,0.03613099,99.25866978],[4.53641702,0.03612925,99.25937132],[4.53641657,0.0361275,99.2600733],[4.53641612,0.03612576,99.26077574],[4.53641567,0.03612401,99.26147865],[4.53641522,0.03612227,99.26218205],[4.53641477,0.03612052,99.26288597],[4.53641432,0.03611878,99.26359042],[4.53641387,0.03611703,99.26429541],[4.53641342,0.03611529,99.26500096],[4.53641297,0.03611354,99.26570707],[4.53641252,0.0361118,99.26641375],[4.53641207,0.03611005,99.26712102],[4.53641162,0.0361083,99.26782888],[4.53641117,0.03610656,99.26853734],[4.53641071,0.03610481,99.26924641],[4.53641026,0.03610307,99.26995609],[4.53640981,0.03610132,99.27066641],[4.53640936,0.03609958,99.27137736],[4.53640891,0.03609783,99.27208897],[4.53640846,0.03609609,99.27280123],[4.53640801,0.03609434,99.27351415],[4.53640756,0.0360926,99.27422775],[4.53640711,0.03609085,99.27494203],[4.53640666,0.03608911,99.27565701],[4.53640621,0.03608736,99.27637269],[4.53640575,0.03608562,99.27708908],[4.5364053,0.03608387,99.2778062],[4.53640485,0.03608213,99.27852404],[4.5364044,0.03608038,99.27924263],[4.53640395,0.03607864,99.27996196],[4.5364035,0.03607689,99.28068206],[4.53640305,0.03607515,99.28140292],[4.5364026,0.0360734,99.28212456],[4.53640215,0.03607166,99.28284698],[4.5364017,0.03606991,99.2835702],[4.53640124,0.03606817,99.28429423],[4.53640079,0.03606642,99.28501907],[4.53640034,0.03606468,99.28574473],[4.53639989,0.03606293,99.28647123],[4.53639944,0.03606119,99.28719857],[4.53639899,0.03605944,99.28792676],[4.53639854,0.0360577,99.28865581],[4.53639809,0.03605595,99.28938574],[4.53639764,0.03605421,99.29011654],[4.53639719,0.03605246,99.29084823],[4.53639674,0.03605072,99.29158081],[4.53639628,0.03604897,99.29231431],[4.53639583,0.03604723,99.29304872],[4.53639538,0.03604548,99.29378405],[4.53639493,0.03604374,99.29452033],[4.53639448,0.03604199,99.29525754],[4.53639403,0.03604024,99.29599571],[4.53639358,0.0360385,99.29673484],[4.53639313,0.03603675,99.29747493],[4.53639268,0.03603501,99.298216],[4.53639223,0.03603326,99.29895805],[4.53639178,0.03603152,99.29970108],[4.53639133,0.03602977,99.3004451],[4.53639088,0.03602803,99.30119012],[4.53639042,0.03602628,99.30193613],[4.53638997,0.03602454,99.30268315],[4.53638952,0.03602279,99.30343119],[4.53638907,0.03602105,99.30418024],[4.53638862,0.0360193,99.30493031],[4.53638817,0.03601756,99.30568141],[4.53638772,0.03601581,99.30643355],[4.53638727,0.03601407,99.30718672],[4.53638682,0.03601232,99.30794094],[4.53638637,0.03601058,99.30869621],[4.53638592,0.03600883,99.30945254],[4.53638547,0.03600708,99.31020992],[4.53638502,0.03600534,99.31096837],[4.53638457,0.03600359,99.3117279],[4.53638412,0.03600185,99.3124885],[4.53638367,0.0360001,99.31325019],[4.53638322,0.03599836,99.31401296],[4.53638277,0.03599661,99.31477683],[4.53638232,0.03599487,99.31554179],[4.53638187,0.03599312,99.31630786],[4.53638142,0.03599138,99.31707505],[4.53638097,0.03598963,99.31784334],[4.53638052,0.03598789,99.31861276],[4.53638007,0.03598614,99.31938329],[4.53637962,0.0359844,99.32015494],[4.53637917,0.03598265,99.32092772],[4.53637872,0.0359809,99.32170162],[4.53637827,0.03597916,99.32247664],[4.53637782,0.03597741,99.3232528],[4.53637737,0.03597567,99.32403008],[4.53637692,0.03597392,99.32480849],[4.53637647,0.03597218,99.32558804],[4.53637602,0.03597043,99.32636872],[4.53637557,0.03596869,99.32715054],[4.53637512,0.03596694,99.3279335],[4.53637467,0.0359652,99.32871759],[4.53637422,0.03596345,99.32950283],[4.53637377,0.0359617,99.33028921],[4.53637332,0.03595996,99.33107672],[4.53637287,0.03595821,99.33186536],[4.53637242,0.03595647,99.3326551],[4.53637197,0.03595472,99.33344591],[4.53637152,0.03595298,99.33423778],[4.53637107,0.03595123,99.33503068],[4.53637062,0.03594949,99.33582459],[4.53637017,0.03594774,99.3366195],[4.53636972,0.035946,99.33741538],[4.53636927,0.03594425,99.33821221],[4.53636882,0.0359425,99.33900997],[4.53636837,0.03594076,99.33980863],[4.53636792,0.03593901,99.34060819],[4.53636747,0.03593727,99.34140861],[4.53636702,0.03593552,99.34220987],[4.53636657,0.03593378,99.34301195],[4.53636612,0.03593203,99.34381484],[4.53636567,0.03593029,99.34461851],[4.53636522,0.03592854,99.34542294],[4.53636477,0.0359268,99.34622811],[4.53636432,0.03592505,99.347034],[4.53636387,0.0359233,99.34784059],[4.53636342,0.03592156,99.34864785],[4.53636297,0.03591981,99.34945577],[4.53636252,0.03591807,99.35026432],[4.53636207,0.03591632,99.35107348],[4.53636162,0.03591458,99.35188323],[4.53636117,0.03591283,99.35269355],[4.53636072,0.03591109,99.35350442],[4.53636027,0.03590934,99.3543158],[4.53635982,0.0359076,99.3551277],[4.53635937,0.03590585,99.35594007],[4.53635892,0.0359041,99.35675292],[4.53635847,0.03590236,99.35756621],[4.53635802,0.03590061,99.35837994],[4.53635757,0.03589887,99.35919408],[4.53635712,0.03589712,99.36000863],[4.53635667,0.03589538,99.36082355],[4.53635622,0.03589363,99.36163883],[4.53635577,0.03589189,99.36245445],[4.53635532,0.03589014,99.3632704],[4.53635487,0.0358884,99.36408667],[4.53635442,0.03588665,99.36490322],[4.53635397,0.03588491,99.36572004],[4.53635352,0.03588316,99.36653712],[4.53635306,0.03588142,99.36735444],[4.53635261,0.03587967,99.36817198],[4.53635216,0.03587792,99.36898971],[4.53635171,0.03587618,99.36980764],[4.53635126,0.03587443,99.37062573],[4.53635081,0.03587269,99.37144397],[4.53635036,0.03587094,99.37226234],[4.53634991,0.0358692,99.37308082],[4.53634946,0.03586745,99.3738994],[4.53634901,0.03586571,99.37471806],[4.53634856,0.03586396,99.37553678],[4.53634811,0.03586222,99.37635554],[4.53634766,0.03586047,99.37717433],[4.5363472,0.03585873,99.37799312],[4.53634675,0.03585698,99.37881191],[4.5363463,0.03585524,99.37963066],[4.53634585,0.03585349,99.38044937],[4.5363454,0.03585175,99.38126802],[4.53634495,0.03585,99.38208659],[4.5363445,0.03584826,99.38290505],[4.53634405,0.03584651,99.3837234],[4.5363436,0.03584477,99.38454162],[4.53634314,0.03584302,99.38535969],[4.53634269,0.03584127,99.38617758],[4.53634224,0.03583953,99.38699529],[4.53634179,0.03583778,99.38781279],[4.53634134,0.03583604,99.38863008],[4.53634089,0.03583429,99.38944712],[4.53634044,0.03583255,99.3902639],[4.53633999,0.0358308,99.39108041],[4.53633953,0.03582906,99.39189662],[4.53633908,0.03582731,99.39271253],[4.53633863,0.03582557,99.39352811],[4.53633818,0.03582382,99.39434334],[4.53633773,0.03582208,99.39515822],[4.53633728,0.03582033,99.39597272],[4.53633682,0.03581859,99.39678683],[4.53633637,0.03581684,99.39760053],[4.53633592,0.0358151,99.3984138],[4.53633547,0.03581335,99.39922663],[4.53633502,0.03581161,99.40003899],[4.53633457,0.03580986,99.40085089],[4.53633411,0.03580812,99.40166229],[4.53633366,0.03580637,99.40247317],[4.53633321,0.03580463,99.40328354],[4.53633276,0.03580288,99.40409336],[4.53633231,0.03580114,99.40490262],[4.53633185,0.03579939,99.4057113],[4.5363314,0.03579765,99.40651939],[4.53633095,0.0357959,99.40732687],[4.5363305,0.03579416,99.40813372],[4.53633005,0.03579241,99.40893994],[4.53632959,0.03579067,99.40974549],[4.53632914,0.03578892,99.41055036],[4.53632869,0.03578718,99.41135454],[4.53632824,0.03578543,99.41215801],[4.53632779,0.03578369,99.41296075],[4.53632733,0.03578194,99.41376275],[4.53632688,0.0357802,99.41456399],[4.53632643,0.03577845,99.41536446],[4.53632598,0.03577671,99.41616412],[4.53632552,0.03577496,99.41696298],[4.53632507,0.03577322,99.41776101],[4.53632462,0.03577147,99.4185582],[4.53632417,0.03576973,99.41935453],[4.53632372,0.03576798,99.42014998],[4.53632326,0.03576624,99.42094453],[4.53632281,0.03576449,99.42173818],[4.53632236,0.03576275,99.4225309],[4.53632191,0.035761,99.42332267],[4.53632145,0.03575926,99.42411348],[4.536321,0.03575752,99.42490332],[4.53632055,0.03575577,99.42569216],[4.5363201,0.03575403,99.42647998],[4.53631964,0.03575228,99.42726678],[4.53631919,0.03575054,99.42805254],[4.53631874,0.03574879,99.42883723],[4.53631829,0.03574705,99.42962085],[4.53631783,0.0357453,99.43040337],[4.53631738,0.03574356,99.43118478],[4.53631693,0.03574181,99.43196506],[4.53631647,0.03574007,99.4327442],[4.53631602,0.03573832,99.43352217],[4.53631557,0.03573658,99.43429896],[4.53631512,0.03573483,99.43507456],[4.53631466,0.03573309,99.43584895],[4.53631421,0.03573134,99.4366221],[4.53631376,0.0357296,99.43739402],[4.5363133,0.03572785,99.43816466],[4.53631285,0.03572611,99.43893403],[4.5363124,0.03572436,99.4397021],[4.53631195,0.03572262,99.44046886],[4.53631149,0.03572087,99.44123429],[4.53631104,0.03571913,99.44199836],[4.53631059,0.03571738,99.44276106],[4.53631013,0.03571564,99.44352236],[4.53630968,0.0357139,99.44428223],[4.53630923,0.03571215,99.44504065],[4.53630878,0.03571041,99.44579761],[4.53630832,0.03570866,99.44655307],[4.53630787,0.03570692,99.44730701],[4.53630742,0.03570517,99.44805942],[4.53630696,0.03570343,99.44881026],[4.53630651,0.03570168,99.44955951],[4.53630606,0.03569994,99.45030715],[4.5363056,0.03569819,99.45105316],[4.53630515,0.03569645,99.45179751],[4.5363047,0.0356947,99.45254018],[4.53630424,0.03569296,99.45328115],[4.53630379,0.03569122,99.45402039],[4.53630334,0.03568947,99.45475788],[4.53630288,0.03568773,99.4554936],[4.53630243,0.03568598,99.45622752],[4.53630197,0.03568424,99.45695963],[4.53630152,0.03568249,99.45768989],[4.53630107,0.03568075,99.45841829],[4.53630061,0.035679,99.45914479],[4.53630016,0.03567726,99.45986939],[4.53629971,0.03567552,99.46059206],[4.53629925,0.03567377,99.46131276],[4.5362988,0.03567203,99.46203149],[4.53629834,0.03567028,99.46274821],[4.53629789,0.03566854,99.46346291],[4.53629743,0.03566679,99.46417556],[4.53629698,0.03566505,99.46488615],[4.53629652,0.0356633,99.46559466],[4.53629607,0.03566156,99.46630108],[4.53629562,0.03565982,99.46700542],[4.53629516,0.03565807,99.46770765],[4.53629471,0.03565633,99.46840778],[4.53629425,0.03565458,99.46910579],[4.5362938,0.03565284,99.46980167],[4.53629334,0.0356511,99.47049542],[4.53629289,0.03564935,99.47118703],[4.53629243,0.03564761,99.47187648],[4.53629197,0.03564586,99.47256377],[4.53629152,0.03564412,99.47324889],[4.53629106,0.03564237,99.47393183],[4.53629061,0.03564063,99.47461259],[4.53629015,0.03563889,99.47529114],[4.5362897,0.03563714,99.47596749],[4.53628924,0.0356354,99.47664163],[4.53628879,0.03563365,99.47731354],[4.53628833,0.03563191,99.47798322],[4.53628788,0.03563017,99.47865065],[4.53628742,0.03562842,99.47931584],[4.53628696,0.03562668,99.47997876],[4.53628651,0.03562493,99.48063941],[4.53628605,0.03562319,99.48129779],[4.5362856,0.03562145,99.48195388],[4.53628514,0.0356197,99.48260767],[4.53628469,0.03561796,99.48325915],[4.53628423,0.03561621,99.48390832],[4.53628377,0.03561447,99.48455516],[4.53628332,0.03561273,99.48519967],[4.53628286,0.03561098,99.48584183],[4.53628241,0.03560924,99.48648165],[4.53628195,0.03560749,99.4871191],[4.5362815,0.03560575,99.48775417],[4.53628104,0.03560401,99.48838687],[4.53628058,0.03560226,99.48901717],[4.53628013,0.03560052,99.48964508],[4.53627967,0.03559877,99.49027057],[4.53627922,0.03559703,99.49089365],[4.53627876,0.03559529,99.49151429],[4.53627831,0.03559354,99.49213249],[4.53627785,0.0355918,99.49274825],[4.53627739,0.03559006,99.49336154],[4.53627694,0.03558831,99.49397236],[4.53627648,0.03558657,99.49458071],[4.53627603,0.03558482,99.49518656],[4.53627557,0.03558308,99.49578992],[4.53627512,0.03558134,99.4963908],[4.53627466,0.03557959,99.4969892],[4.53627421,0.03557785,99.49758516],[4.53627375,0.0355761,99.49817869],[4.5362733,0.03557436,99.49876982],[4.53627284,0.03557261,99.49935855],[4.53627239,0.03557087,99.49994492],[4.53627193,0.03556913,99.50052894],[4.53627147,0.03556738,99.50111063],[4.53627102,0.03556564,99.50169001],[4.53627057,0.03556389,99.5022671],[4.53627011,0.03556215,99.50284193],[4.53626966,0.03556041,99.5034145],[4.5362692,0.03555866,99.50398484],[4.53626875,0.03555692,99.50455297],[4.53626829,0.03555517,99.50511891],[4.53626784,0.03555343,99.50568267],[4.53626738,0.03555168,99.50624424],[4.53626693,0.03554994,99.50680362],[4.53626648,0.0355482,99.50736081],[4.53626602,0.03554645,99.50791581],[4.53626557,0.03554471,99.5084686],[4.53626511,0.03554296,99.50901919],[4.53626466,0.03554122,99.50956757],[4.53626421,0.03553947,99.51011374],[4.53626375,0.03553773,99.51065769],[4.5362633,0.03553598,99.51119943],[4.53626285,0.03553424,99.51173893],[4.53626239,0.0355325,99.51227621],[4.53626194,0.03553075,99.51281126],[4.53626149,0.03552901,99.51334407],[4.53626103,0.03552726,99.51387464],[4.53626058,0.03552552,99.51440297],[4.53626013,0.03552377,99.51492905],[4.53625967,0.03552203,99.51545288],[4.53625922,0.03552028,99.51597445],[4.53625877,0.03551854,99.51649376],[4.53625831,0.03551679,99.51701082],[4.53625786,0.03551505,99.5175256],[4.53625741,0.03551331,99.51803812],[4.53625695,0.03551156,99.51854836],[4.5362565,0.03550982,99.51905632],[4.53625605,0.03550807,99.519562],[4.5362556,0.03550633,99.5200654],[4.53625514,0.03550458,99.52056651],[4.53625469,0.03550284,99.52106532],[4.53625424,0.03550109,99.52156184],[4.53625378,0.03549935,99.52205606],[4.53625333,0.0354976,99.52254797],[4.53625288,0.03549586,99.52303758],[4.53625242,0.03549411,99.52352488],[4.53625197,0.03549237,99.52400986],[4.53625152,0.03549063,99.52449253],[4.53625106,0.03548888,99.52497287],[4.53625061,0.03548714,99.52545088],[4.53625016,0.03548539,99.52592657],[4.5362497,0.03548365,99.52639992],[4.53624925,0.0354819,99.52687094],[4.5362488,0.03548016,99.52733962],[4.53624834,0.03547841,99.52780595],[4.53624789,0.03547667,99.52826993],[4.53624743,0.03547493,99.52873156],[4.53624698,0.03547318,99.52919084],[4.53624653,0.03547144,99.52964776],[4.53624607,0.03546969,99.53010231],[4.53624562,0.03546795,99.5305545],[4.53624516,0.0354662,99.53100432],[4.53624471,0.03546446,99.53145176],[4.53624425,0.03546272,99.53189682],[4.5362438,0.03546097,99.53233951],[4.53624335,0.03545923,99.5327798],[4.53624289,0.03545748,99.53321771],[4.53624244,0.03545574,99.53365322],[4.53624198,0.035454,99.53408634],[4.53624153,0.03545225,99.53451705],[4.53624107,0.03545051,99.53494536],[4.53624061,0.03544876,99.53537126],[4.53624016,0.03544702,99.53579476],[4.5362397,0.03544528,99.53621587],[4.53623925,0.03544353,99.53663461],[4.53623879,0.03544179,99.537051],[4.53623833,0.03544004,99.53746505],[4.53623788,0.0354383,99.53787679],[4.53623742,0.03543656,99.53828622],[4.53623696,0.03543481,99.53869336],[4.53623651,0.03543307,99.53909823],[4.53623605,0.03543133,99.53950085],[4.53623559,0.03542958,99.53990123],[4.53623514,0.03542784,99.5402994],[4.53623468,0.0354261,99.54069535],[4.53623422,0.03542435,99.54108912],[4.53623376,0.03542261,99.54148073],[4.53623331,0.03542087,99.54187017],[4.53623285,0.03541912,99.54225748],[4.53623239,0.03541738,99.54264267],[4.53623193,0.03541564,99.54302576],[4.53623148,0.03541389,99.54340675],[4.53623102,0.03541215,99.54378569],[4.53623056,0.03541041,99.54416258],[4.5362301,0.03540866,99.54453744],[4.53622964,0.03540692,99.54491029],[4.53622919,0.03540518,99.54528116],[4.53622873,0.03540343,99.54565005],[4.53622827,0.03540169,99.54601698],[4.53622781,0.03539995,99.54638198],[4.53622735,0.0353982,99.54674504],[4.53622689,0.03539646,99.54710619],[4.53622644,0.03539472,99.54746545],[4.53622598,0.03539297,99.54782282],[4.53622552,0.03539123,99.54817833],[4.53622506,0.03538949,99.54853199],[4.5362246,0.03538775,99.54888381],[4.53622414,0.035386,99.54923381],[4.53622368,0.03538426,99.54958201],[4.53622323,0.03538252,99.54992843],[4.53622277,0.03538077,99.55027306],[4.53622231,0.03537903,99.55061594],[4.53622185,0.03537729,99.55095708],[4.53622139,0.03537554,99.55129649],[4.53622093,0.0353738,99.55163419],[4.53622047,0.03537206,99.5519702],[4.53622001,0.03537032,99.55230452],[4.53621956,0.03536857,99.55263718],[4.5362191,0.03536683,99.55296819],[4.53621864,0.03536509,99.55329757],[4.53621818,0.03536334,99.55362533],[4.53621772,0.0353616,99.55395149],[4.53621726,0.03535986,99.55427606],[4.5362168,0.03535811,99.55459906],[4.53621634,0.03535637,99.55492051],[4.53621588,0.03535463,99.55524041],[4.53621543,0.03535289,99.5555588],[4.53621497,0.03535114,99.55587567],[4.53621451,0.0353494,99.55619105],[4.53621405,0.03534766,99.55650496],[4.53621359,0.03534591,99.55681741],[4.53621313,0.03534417,99.55712841],[4.53621267,0.03534243,99.55743798],[4.53621222,0.03534068,99.55774614],[4.53621176,0.03533894,99.5580529],[4.5362113,0.0353372,99.55835828],[4.53621084,0.03533545,99.55866229],[4.53621038,0.03533371,99.55896496],[4.53620992,0.03533197,99.55926629],[4.53620947,0.03533023,99.5595663],[4.53620901,0.03532848,99.55986501],[4.53620855,0.03532674,99.56016244],[4.53620809,0.035325,99.56045859],[4.53620763,0.03532325,99.56075349],[4.53620718,0.03532151,99.56104716],[4.53620672,0.03531977,99.5613396],[4.53620626,0.03531802,99.56163084],[4.5362058,0.03531628,99.56192087],[4.53620534,0.03531454,99.5622097],[4.53620489,0.03531279,99.56249733],[4.53620443,0.03531105,99.56278376],[4.53620397,0.03530931,99.56306899],[4.53620351,0.03530756,99.56335303],[4.53620306,0.03530582,99.56363587],[4.5362026,0.03530408,99.56391753],[4.53620214,0.03530233,99.56419799],[4.53620169,0.03530059,99.56447727],[4.53620123,0.03529885,99.56475536],[4.53620077,0.0352971,99.56503226],[4.53620031,0.03529536,99.56530798],[4.53619986,0.03529362,99.56558252],[4.5361994,0.03529187,99.56585588],[4.53619894,0.03529013,99.56612806],[4.53619849,0.03528839,99.56639906],[4.53619803,0.03528664,99.56666889],[4.53619757,0.0352849,99.56693754],[4.53619712,0.03528316,99.56720502],[4.53619666,0.03528141,99.56747133],[4.5361962,0.03527967,99.56773648],[4.53619575,0.03527792,99.56800045],[4.53619529,0.03527618,99.56826326],[4.53619483,0.03527444,99.5685249],[4.53619438,0.03527269,99.56878539],[4.53619392,0.03527095,99.56904471],[4.53619346,0.03526921,99.56930286],[4.53619301,0.03526746,99.56955987],[4.53619255,0.03526572,99.56981571],[4.53619209,0.03526398,99.5700704],[4.53619164,0.03526223,99.57032393],[4.53619118,0.03526049,99.57057631],[4.53619072,0.03525875,99.57082754],[4.53619027,0.035257,99.57107762],[4.53618981,0.03525526,99.57132655],[4.53618935,0.03525352,99.57157434],[4.5361889,0.03525177,99.57182099],[4.53618844,0.03525003,99.57206649],[4.53618799,0.03524828,99.57231086],[4.53618753,0.03524654,99.5725541],[4.53618707,0.0352448,99.57279622],[4.53618662,0.03524305,99.57303721],[4.53618616,0.03524131,99.57327708],[4.5361857,0.03523957,99.57351584],[4.53618525,0.03523782,99.57375348],[4.53618479,0.03523608,99.57399002],[4.53618433,0.03523434,99.57422544],[4.53618388,0.03523259,99.57445976],[4.53618342,0.03523085,99.57469298],[4.53618296,0.03522911,99.5749251],[4.5361825,0.03522736,99.57515612],[4.53618205,0.03522562,99.57538605],[4.53618159,0.03522388,99.57561489],[4.53618113,0.03522213,99.57584264],[4.53618068,0.03522039,99.57606931],[4.53618022,0.03521865,99.5762949],[4.53617976,0.0352169,99.5765194],[4.53617931,0.03521516,99.57674283],[4.53617885,0.03521342,99.57696519],[4.53617839,0.03521167,99.57718647],[4.53617793,0.03520993,99.57740669],[4.53617748,0.03520819,99.57762584],[4.53617702,0.03520644,99.57784392],[4.53617656,0.0352047,99.57806095],[4.53617611,0.03520296,99.57827692],[4.53617565,0.03520121,99.57849183],[4.53617519,0.03519947,99.5787057],[4.53617473,0.03519773,99.57891851],[4.53617428,0.03519598,99.57913027],[4.53617382,0.03519424,99.579341],[4.53617336,0.0351925,99.57955068],[4.5361729,0.03519075,99.57975932],[4.53617244,0.03518901,99.57996692],[4.53617199,0.03518727,99.58017349],[4.53617153,0.03518552,99.58037903],[4.53617107,0.03518378,99.58058354],[4.53617061,0.03518204,99.58078702],[4.53617015,0.0351803,99.58098948],[4.5361697,0.03517855,99.58119092],[4.53616924,0.03517681,99.58139134],[4.53616878,0.03517507,99.58159074],[4.53616832,0.03517332,99.58178913],[4.53616786,0.03517158,99.58198651],[4.5361674,0.03516984,99.58218287],[4.53616694,0.03516809,99.58237823],[4.53616648,0.03516635,99.58257259],[4.53616603,0.03516461,99.58276595],[4.53616557,0.03516287,99.5829583],[4.53616511,0.03516112,99.58314966],[4.53616465,0.03515938,99.58334002],[4.53616419,0.03515764,99.58352939],[4.53616373,0.03515589,99.5837178],[4.53616327,0.03515415,99.58390526],[4.53616281,0.03515241,99.58409181],[4.53616235,0.03515067,99.58427745],[4.53616189,0.03514892,99.58446223],[4.53616143,0.03514718,99.58464616],[4.53616097,0.03514544,99.58482928],[4.53616051,0.0351437,99.58501159],[4.53616005,0.03514195,99.58519314],[4.53615959,0.03514021,99.58537393],[4.53615913,0.03513847,99.58555401],[4.53615867,0.03513673,99.58573339],[4.53615821,0.03513498,99.5859121],[4.53615775,0.03513324,99.58609016],[4.53615729,0.0351315,99.5862676],[4.53615683,0.03512976,99.58644444],[4.53615637,0.03512801,99.58662071],[4.53615591,0.03512627,99.58679643],[4.53615545,0.03512453,99.58697163],[4.53615499,0.03512279,99.58714634],[4.53615453,0.03512104,99.58732057],[4.53615407,0.0351193,99.58749436],[4.53615361,0.03511756,99.58766773],[4.53615315,0.03511582,99.5878407],[4.53615269,0.03511407,99.58801331],[4.53615223,0.03511233,99.58818557],[4.53615177,0.03511059,99.58835751],[4.53615131,0.03510885,99.58852916],[4.53615085,0.0351071,99.58870054],[4.53615039,0.03510536,99.58887168],[4.53614993,0.03510362,99.5890426],[4.53614947,0.03510188,99.58921334],[4.53614901,0.03510013,99.5893839],[4.53614855,0.03509839,99.58955434],[4.53614809,0.03509665,99.58972465],[4.53614764,0.0350949,99.58989489],[4.53614718,0.03509316,99.59006506],[4.53614672,0.03509142,99.59023519],[4.53614626,0.03508968,99.59040532],[4.5361458,0.03508793,99.59057546],[4.53614534,0.03508619,99.59074565],[4.53614488,0.03508445,99.5909159],[4.53614443,0.0350827,99.59108621],[4.53614397,0.03508096,99.59125657],[4.53614351,0.03507922,99.59142698],[4.53614305,0.03507748,99.59159742],[4.53614259,0.03507573,99.59176788],[4.53614214,0.03507399,99.59193836],[4.53614168,0.03507225,99.59210884],[4.53614122,0.0350705,99.59227933],[4.53614076,0.03506876,99.5924498],[4.53614031,0.03506702,99.59262024],[4.53613985,0.03506527,99.59279066],[4.53613939,0.03506353,99.59296104],[4.53613893,0.03506179,99.59313137],[4.53613848,0.03506004,99.59330164],[4.53613802,0.0350583,99.59347184],[4.53613756,0.03505656,99.59364196],[4.53613711,0.03505481,99.593812],[4.53613665,0.03505307,99.59398194],[4.53613619,0.03505133,99.59415177],[4.53613574,0.03504958,99.59432148],[4.53613528,0.03504784,99.59449107],[4.53613482,0.0350461,99.59466052],[4.53613437,0.03504435,99.59482983],[4.53613391,0.03504261,99.59499898],[4.53613345,0.03504087,99.59516796],[4.536133,0.03503912,99.59533677],[4.53613254,0.03503738,99.59550539],[4.53613208,0.03503564,99.59567382],[4.53613163,0.03503389,99.59584204],[4.53613117,0.03503215,99.59601005],[4.53613071,0.03503041,99.59617783],[4.53613025,0.03502866,99.59634537],[4.5361298,0.03502692,99.59651266],[4.53612934,0.03502518,99.5966797],[4.53612888,0.03502343,99.59684648],[4.53612843,0.03502169,99.59701299],[4.53612797,0.03501995,99.59717922],[4.53612751,0.0350182,99.59734516],[4.53612705,0.03501646,99.59751082],[4.5361266,0.03501472,99.59767616],[4.53612614,0.03501298,99.5978412],[4.53612568,0.03501123,99.59800592],[4.53612522,0.03500949,99.59817031],[4.53612477,0.03500775,99.59833435],[4.53612431,0.03500601,99.59849804],[4.53612385,0.03500426,99.59866137],[4.53612339,0.03500252,99.59882436],[4.53612293,0.03500078,99.59898701],[4.53612248,0.03499903,99.59914934],[4.53612202,0.03499729,99.59931136],[4.53612156,0.03499555,99.59947308],[4.5361211,0.03499381,99.59963452],[4.53612064,0.03499206,99.59979567],[4.53612018,0.03499032,99.59995657],[4.53611972,0.03498858,99.60011721],[4.53611926,0.03498683,99.6002776],[4.53611881,0.03498509,99.60043777],[4.53611835,0.03498335,99.60059772],[4.53611789,0.03498161,99.60075746],[4.53611743,0.03497986,99.60091701],[4.53611697,0.03497812,99.60107637],[4.53611651,0.03497638,99.60123555],[4.53611605,0.03497464,99.60139458],[4.53611559,0.03497289,99.60155344],[4.53611513,0.03497115,99.60171217],[4.53611467,0.03496941,99.60187076],[4.53611421,0.03496767,99.60202923],[4.53611375,0.03496592,99.60218758],[4.53611329,0.03496418,99.60234583],[4.53611283,0.03496244,99.60250399],[4.53611237,0.0349607,99.60266206],[4.53611191,0.03495895,99.60282007],[4.53611145,0.03495721,99.60297801],[4.53611099,0.03495547,99.60313589],[4.53611052,0.03495373,99.60329374],[4.53611006,0.03495198,99.60345156],[4.5361096,0.03495024,99.60360935],[4.53610914,0.0349485,99.60376713],[4.53610868,0.03494676,99.60392491],[4.53610822,0.03494502,99.6040827],[4.53610776,0.03494327,99.60424051],[4.5361073,0.03494153,99.60439835],[4.53610684,0.03493979,99.60455623],[4.53610637,0.03493805,99.60471417],[4.53610591,0.0349363,99.60487216],[4.53610545,0.03493456,99.60503022],[4.53610499,0.03493282,99.60518837],[4.53610453,0.03493108,99.6053466],[4.53610407,0.03492934,99.60550494],[4.5361036,0.03492759,99.60566339],[4.53610314,0.03492585,99.60582197],[4.53610268,0.03492411,99.60598068],[4.53610222,0.03492237,99.60613953],[4.53610176,0.03492063,99.60629853],[4.53610129,0.03491888,99.6064577],[4.53610083,0.03491714,99.60661705],[4.53610037,0.0349154,99.60677658],[4.53609991,0.03491366,99.6069363],[4.53609945,0.03491192,99.60709623],[4.53609898,0.03491017,99.60725638],[4.53609852,0.03490843,99.60741676],[4.53609806,0.03490669,99.60757737],[4.5360976,0.03490495,99.60773823],[4.53609713,0.03490321,99.60789935],[4.53609667,0.03490146,99.60806074],[4.53609621,0.03489972,99.6082224],[4.53609574,0.03489798,99.60838436],[4.53609528,0.03489624,99.60854661],[4.53609482,0.0348945,99.60870918],[4.53609436,0.03489276,99.60887207],[4.53609389,0.03489101,99.60903528],[4.53609343,0.03488927,99.60919885],[4.53609297,0.03488753,99.60936276],[4.5360925,0.03488579,99.60952703],[4.53609204,0.03488405,99.60969168],[4.53609158,0.03488231,99.60985672],[4.53609111,0.03488056,99.61002215],[4.53609065,0.03487882,99.61018798],[4.53609019,0.03487708,99.61035423],[4.53608972,0.03487534,99.6105209],[4.53608926,0.0348736,99.61068801],[4.5360888,0.03487186,99.61085557],[4.53608833,0.03487011,99.61102359],[4.53608787,0.03486837,99.61119207],[4.53608741,0.03486663,99.61136103],[4.53608694,0.03486489,99.61153049],[4.53608648,0.03486315,99.61170044],[4.53608601,0.03486141,99.6118709],[4.53608555,0.03485966,99.61204189],[4.53608509,0.03485792,99.6122134],[4.53608462,0.03485618,99.61238546],[4.53608416,0.03485444,99.61255807],[4.5360837,0.0348527,99.61273124],[4.53608323,0.03485096,99.61290499],[4.53608277,0.03484921,99.61307932],[4.5360823,0.03484747,99.61325425],[4.53608184,0.03484573,99.61342978],[4.53608138,0.03484399,99.61360593],[4.53608091,0.03484225,99.61378271],[4.53608045,0.03484051,99.61396012],[4.53607998,0.03483876,99.61413818],[4.53607952,0.03483702,99.6143169],[4.53607906,0.03483528,99.61449629],[4.53607859,0.03483354,99.61467636],[4.53607813,0.0348318,99.61485712],[4.53607766,0.03483006,99.61503858],[4.5360772,0.03482832,99.61522075],[4.53607673,0.03482657,99.61540364],[4.53607627,0.03482483,99.61558727],[4.53607581,0.03482309,99.61577164],[4.53607534,0.03482135,99.61595676],[4.53607488,0.03481961,99.61614265],[4.53607441,0.03481787,99.61632931],[4.53607395,0.03481612,99.61651676],[4.53607348,0.03481438,99.61670501],[4.53607302,0.03481264,99.61689406],[4.53607256,0.0348109,99.61708393],[4.53607209,0.03480916,99.61727461],[4.53607163,0.03480742,99.61746609],[4.53607116,0.03480568,99.61765837],[4.5360707,0.03480393,99.61785144],[4.53607023,0.03480219,99.6180453],[4.53606977,0.03480045,99.61823993],[4.53606931,0.03479871,99.61843534],[4.53606884,0.03479697,99.61863151],[4.53606838,0.03479523,99.61882843],[4.53606791,0.03479349,99.61902612],[4.53606745,0.03479174,99.61922454],[4.53606698,0.03479,99.6194237],[4.53606652,0.03478826,99.6196236],[4.53606606,0.03478652,99.61982422],[4.53606559,0.03478478,99.62002556],[4.53606513,0.03478304,99.62022761],[4.53606466,0.03478129,99.62043036],[4.5360642,0.03477955,99.62063382],[4.53606373,0.03477781,99.62083796],[4.53606327,0.03477607,99.6210428],[4.5360628,0.03477433,99.62124833],[4.53606234,0.03477259,99.62145455],[4.53606188,0.03477085,99.62166146],[4.53606141,0.0347691,99.62186907],[4.53606095,0.03476736,99.62207736],[4.53606048,0.03476562,99.62228635],[4.53606002,0.03476388,99.62249603],[4.53605955,0.03476214,99.6227064],[4.53605909,0.0347604,99.62291746],[4.53605862,0.03475865,99.62312922],[4.53605816,0.03475691,99.62334166],[4.53605769,0.03475517,99.6235548],[4.53605723,0.03475343,99.62376863],[4.53605677,0.03475169,99.62398315],[4.5360563,0.03474995,99.62419836],[4.53605584,0.03474821,99.62441426],[4.53605537,0.03474646,99.62463086],[4.53605491,0.03474472,99.62484814],[4.53605444,0.03474298,99.62506612],[4.53605398,0.03474124,99.62528479],[4.53605352,0.0347395,99.62550415],[4.53605305,0.03473776,99.6257242],[4.53605259,0.03473601,99.62594494],[4.53605212,0.03473427,99.62616637],[4.53605166,0.03473253,99.62638849],[4.5360512,0.03473079,99.6266113],[4.53605073,0.03472905,99.6268348],[4.53605027,0.03472731,99.62705899],[4.5360498,0.03472556,99.62728387],[4.53604934,0.03472382,99.62750944],[4.53604888,0.03472208,99.6277357],[4.53604841,0.03472034,99.62796265],[4.53604795,0.0347186,99.62819028],[4.53604748,0.03471686,99.6284186],[4.53604702,0.03471511,99.62864762],[4.53604656,0.03471337,99.62887731],[4.53604609,0.03471163,99.6291077],[4.53604563,0.03470989,99.62933877],[4.53604517,0.03470815,99.62957053],[4.5360447,0.0347064,99.62980298],[4.53604424,0.03470466,99.63003611],[4.53604378,0.03470292,99.63026993],[4.53604331,0.03470118,99.63050443],[4.53604285,0.03469944,99.63073961],[4.53604239,0.03469769,99.63097548],[4.53604192,0.03469595,99.63121203],[4.53604146,0.03469421,99.63144927],[4.536041,0.03469247,99.63168719],[4.53604054,0.03469073,99.63192579],[4.53604007,0.03468898,99.63216507],[4.53603961,0.03468724,99.63240503],[4.53603915,0.0346855,99.63264567],[4.53603869,0.03468376,99.63288699],[4.53603822,0.03468202,99.63312899],[4.53603776,0.03468027,99.63337167],[4.5360373,0.03467853,99.63361502],[4.53603684,0.03467679,99.63385906],[4.53603638,0.03467505,99.63410376],[4.53603591,0.0346733,99.63434915],[4.53603545,0.03467156,99.63459521],[4.53603499,0.03466982,99.63484194],[4.53603453,0.03466808,99.63508934],[4.53603407,0.03466633,99.63533742],[4.53603361,0.03466459,99.63558617],[4.53603315,0.03466285,99.63583559],[4.53603268,0.03466111,99.63608567],[4.53603222,0.03465936,99.6363364],[4.53603176,0.03465762,99.63658777],[4.5360313,0.03465588,99.63683977],[4.53603084,0.03465414,99.63709237],[4.53603038,0.03465239,99.63734557],[4.53602992,0.03465065,99.63759936],[4.53602946,0.03464891,99.63785372],[4.536029,0.03464716,99.63810864],[4.53602854,0.03464542,99.6383641],[4.53602808,0.03464368,99.63862009],[4.53602762,0.03464194,99.63887661],[4.53602716,0.03464019,99.63913363],[4.5360267,0.03463845,99.63939114],[4.53602624,0.03463671,99.63964913],[4.53602578,0.03463496,99.63990759],[4.53602532,0.03463322,99.64016651],[4.53602486,0.03463148,99.64042586],[4.5360244,0.03462974,99.64068564],[4.53602394,0.03462799,99.64094584],[4.53602348,0.03462625,99.64120644],[4.53602302,0.03462451,99.64146742],[4.53602257,0.03462276,99.64172878],[4.53602211,0.03462102,99.64199051],[4.53602165,0.03461928,99.64225258],[4.53602119,0.03461753,99.64251499],[4.53602073,0.03461579,99.6427777],[4.53602027,0.03461405,99.64304069],[4.53601981,0.0346123,99.64330395],[4.53601935,0.03461056,99.64356746],[4.53601889,0.03460882,99.64383119],[4.53601844,0.03460707,99.64409513],[4.53601798,0.03460533,99.64435925],[4.53601752,0.03460359,99.64462353],[4.53601706,0.03460184,99.64488795],[4.5360166,0.0346001,99.6451525],[4.53601614,0.03459836,99.64541715],[4.53601568,0.03459661,99.64568188],[4.53601522,0.03459487,99.64594667],[4.53601477,0.03459313,99.6462115],[4.53601431,0.03459138,99.64647635],[4.53601385,0.03458964,99.64674121],[4.53601339,0.0345879,99.64700604],[4.53601293,0.03458615,99.64727084],[4.53601247,0.03458441,99.64753558],[4.53601201,0.03458267,99.64780024],[4.53601156,0.03458092,99.64806479],[4.5360111,0.03457918,99.64832923],[4.53601064,0.03457744,99.64859353],[4.53601018,0.03457569,99.64885768],[4.53600972,0.03457395,99.64912164],[4.53600926,0.03457221,99.64938541],[4.5360088,0.03457047,99.64964895],[4.53600834,0.03456872,99.64991226],[4.53600788,0.03456698,99.65017532],[4.53600742,0.03456524,99.6504381],[4.53600696,0.03456349,99.65070058],[4.53600651,0.03456175,99.65096274],[4.53600605,0.03456001,99.65122457],[4.53600559,0.03455826,99.65148605],[4.53600513,0.03455652,99.65174715],[4.53600467,0.03455478,99.65200786],[4.53600421,0.03455303,99.65226816],[4.53600375,0.03455129,99.65252803],[4.53600329,0.03454955,99.65278744],[4.53600283,0.03454781,99.65304639],[4.53600237,0.03454606,99.65330485],[4.5360019,0.03454432,99.6535628],[4.53600144,0.03454258,99.65382023],[4.53600098,0.03454083,99.65407711],[4.53600052,0.03453909,99.65433343],[4.53600006,0.03453735,99.65458916],[4.5359996,0.03453561,99.65484429],[4.53599914,0.03453386,99.65509881],[4.53599868,0.03453212,99.6553527],[4.53599822,0.03453038,99.65560595],[4.53599775,0.03452864,99.65585856],[4.53599729,0.03452689,99.65611052],[4.53599683,0.03452515,99.65636182],[4.53599637,0.03452341,99.65661247],[4.5359959,0.03452167,99.65686246],[4.53599544,0.03451992,99.65711177],[4.53599498,0.03451818,99.65736042],[4.53599452,0.03451644,99.65760839],[4.53599405,0.0345147,99.65785568],[4.53599359,0.03451295,99.65810229],[4.53599313,0.03451121,99.6583482],[4.53599266,0.03450947,99.65859343],[4.5359922,0.03450773,99.65883795],[4.53599174,0.03450599,99.65908177],[4.53599127,0.03450424,99.65932488],[4.53599081,0.0345025,99.65956728],[4.53599034,0.03450076,99.65980896],[4.53598988,0.03449902,99.66004992],[4.53598941,0.03449728,99.66029015],[4.53598895,0.03449554,99.66052965],[4.53598848,0.03449379,99.66076843],[4.53598802,0.03449205,99.66100648],[4.53598755,0.03449031,99.66124381],[4.53598709,0.03448857,99.66148041],[4.53598662,0.03448683,99.66171628],[4.53598616,0.03448509,99.66195143],[4.53598569,0.03448334,99.66218586],[4.53598523,0.0344816,99.66241957],[4.53598476,0.03447986,99.66265256],[4.53598429,0.03447812,99.66288482],[4.53598383,0.03447638,99.66311637],[4.53598336,0.03447464,99.66334719],[4.53598289,0.0344729,99.6635773],[4.53598243,0.03447115,99.66380669],[4.53598196,0.03446941,99.66403536],[4.53598149,0.03446767,99.66426332],[4.53598103,0.03446593,99.66449055],[4.53598056,0.03446419,99.66471708],[4.53598009,0.03446245,99.66494288],[4.53597962,0.03446071,99.66516798],[4.53597916,0.03445897,99.66539236],[4.53597869,0.03445723,99.66561602],[4.53597822,0.03445548,99.66583897],[4.53597775,0.03445374,99.66606121],[4.53597729,0.034452,99.66628274],[4.53597682,0.03445026,99.66650355],[4.53597635,0.03444852,99.66672366],[4.53597588,0.03444678,99.66694305],[4.53597541,0.03444504,99.66716173],[4.53597494,0.0344433,99.6673797],[4.53597448,0.03444156,99.66759696],[4.53597401,0.03443982,99.66781351],[4.53597354,0.03443808,99.66802935],[4.53597307,0.03443634,99.66824449],[4.5359726,0.03443459,99.66845891],[4.53597213,0.03443285,99.66867262],[4.53597166,0.03443111,99.66888563],[4.53597119,0.03442937,99.66909793],[4.53597072,0.03442763,99.66930952],[4.53597025,0.03442589,99.6695204],[4.53596978,0.03442415,99.66973057],[4.53596931,0.03442241,99.66994003],[4.53596885,0.03442067,99.67014879],[4.53596838,0.03441893,99.67035684],[4.53596791,0.03441719,99.67056418],[4.53596744,0.03441545,99.67077081],[4.53596697,0.03441371,99.67097674],[4.5359665,0.03441197,99.67118196],[4.53596603,0.03441023,99.67138647],[4.53596556,0.03440849,99.67159027],[4.53596509,0.03440675,99.67179336],[4.53596462,0.03440501,99.67199575],[4.53596415,0.03440327,99.67219743],[4.53596368,0.03440153,99.6723984],[4.53596321,0.03439978,99.67259867],[4.53596274,0.03439804,99.67279823],[4.53596226,0.0343963,99.67299709],[4.53596179,0.03439456,99.67319524],[4.53596132,0.03439282,99.67339268],[4.53596085,0.03439108,99.67358942],[4.53596038,0.03438934,99.67378546],[4.53595991,0.0343876,99.67398079],[4.53595944,0.03438586,99.67417542],[4.53595897,0.03438412,99.67436935],[4.5359585,0.03438238,99.67456257],[4.53595803,0.03438064,99.6747551],[4.53595756,0.0343789,99.67494691],[4.53595709,0.03437716,99.67513803],[4.53595662,0.03437542,99.67532844],[4.53595615,0.03437368,99.67551815],[4.53595568,0.03437194,99.67570716],[4.53595521,0.0343702,99.67589547],[4.53595473,0.03436846,99.67608307],[4.53595426,0.03436672,99.67626997],[4.53595379,0.03436498,99.67645617],[4.53595332,0.03436324,99.67664167],[4.53595285,0.0343615,99.67682647],[4.53595238,0.03435976,99.67701056],[4.53595191,0.03435802,99.67719395],[4.53595144,0.03435628,99.67737664],[4.53595097,0.03435454,99.67755863],[4.5359505,0.0343528,99.67773991],[4.53595003,0.03435106,99.67792049],[4.53594956,0.03434932,99.67810037],[4.53594909,0.03434758,99.67827954],[4.53594861,0.03434584,99.67845801],[4.53594814,0.0343441,99.67863577],[4.53594767,0.03434236,99.67881282],[4.5359472,0.03434061,99.67898914],[4.53594673,0.03433887,99.67916473],[4.53594626,0.03433713,99.67933959],[4.53594579,0.03433539,99.6795137],[4.53594532,0.03433365,99.67968705],[4.53594485,0.03433191,99.67985965],[4.53594438,0.03433017,99.68003147],[4.53594391,0.03432843,99.68020252],[4.53594344,0.03432669,99.68037278],[4.53594297,0.03432495,99.68054226],[4.5359425,0.03432321,99.68071093],[4.53594203,0.03432147,99.6808788],[4.53594155,0.03431973,99.68104585],[4.53594108,0.03431799,99.68121208],[4.53594061,0.03431625,99.68137748],[4.53594014,0.03431451,99.68154204],[4.53593967,0.03431277,99.68170576],[4.5359392,0.03431103,99.68186863],[4.53593873,0.03430929,99.68203064],[4.53593826,0.03430755,99.68219177],[4.53593779,0.03430581,99.68235204],[4.53593732,0.03430407,99.68251142],[4.53593685,0.03430233,99.68266991],[4.53593638,0.03430059,99.6828275],[4.53593591,0.03429885,99.68298419],[4.53593544,0.03429711,99.68313997],[4.53593497,0.03429536,99.68329482],[4.5359345,0.03429362,99.68344875],[4.53593403,0.03429188,99.68360174],[4.53593356,0.03429014,99.68375379],[4.53593309,0.0342884,99.68390489],[4.53593262,0.03428666,99.68405503],[4.53593215,0.03428492,99.68420421],[4.53593168,0.03428318,99.68435241],[4.5359312,0.03428144,99.68449963],[4.53593073,0.0342797,99.68464586],[4.53593026,0.03427796,99.6847911],[4.53592979,0.03427622,99.68493534],[4.53592932,0.03427448,99.68507856],[4.53592885,0.03427274,99.68522077],[4.53592838,0.034271,99.68536195],[4.53592791,0.03426926,99.6855021],[4.53592744,0.03426752,99.68564121],[4.53592697,0.03426578,99.68577927],[4.5359265,0.03426404,99.68591628],[4.53592603,0.0342623,99.68605223],[4.53592556,0.03426056,99.6861871],[4.53592509,0.03425882,99.6863209],[4.53592462,0.03425708,99.68645361],[4.53592415,0.03425534,99.68658523],[4.53592368,0.0342536,99.68671575],[4.53592321,0.03425186,99.68684516],[4.53592274,0.03425012,99.68697345],[4.53592227,0.03424838,99.68710063],[4.53592179,0.03424664,99.68722668],[4.53592132,0.03424489,99.68735158],[4.53592085,0.03424315,99.68747535],[4.53592038,0.03424141,99.68759796],[4.53591991,0.03423967,99.68771941],[4.53591944,0.03423793,99.6878397],[4.53591897,0.03423619,99.68795881],[4.5359185,0.03423445,99.68807674],[4.53591803,0.03423271,99.68819349],[4.53591756,0.03423097,99.68830903],[4.53591709,0.03422923,99.68842338],[4.53591662,0.03422749,99.68853651],[4.53591615,0.03422575,99.68864842],[4.53591568,0.03422401,99.68875911],[4.5359152,0.03422227,99.68886856],[4.53591473,0.03422053,99.68897678],[4.53591426,0.03421879,99.68908374],[4.53591379,0.03421705,99.68918945],[4.53591332,0.03421531,99.6892939],[4.53591285,0.03421357,99.68939708],[4.53591238,0.03421183,99.68949898],[4.53591191,0.03421009,99.68959958],[4.53591144,0.03420835,99.68969888],[4.53591097,0.03420661,99.68979685],[4.53591049,0.03420487,99.68989349],[4.53591002,0.03420313,99.68998877],[4.53590955,0.03420139,99.69008268],[4.53590908,0.03419965,99.69017522],[4.53590861,0.03419791,99.69026635],[4.53590814,0.03419617,99.69035607],[4.53590767,0.03419443,99.69044437],[4.53590719,0.03419269,99.69053122],[4.53590672,0.03419095,99.69061662],[4.53590625,0.03418921,99.69070055],[4.53590578,0.03418747,99.69078299],[4.53590531,0.03418573,99.69086394],[4.53590484,0.03418399,99.69094337],[4.53590436,0.03418225,99.69102127],[4.53590389,0.03418051,99.69109762],[4.53590342,0.03417877,99.69117242],[4.53590295,0.03417703,99.69124565],[4.53590247,0.03417529,99.69131729],[4.535902,0.03417355,99.69138733],[4.53590153,0.03417181,99.69145576],[4.53590106,0.03417007,99.69152255],[4.53590058,0.03416833,99.6915877],[4.53590011,0.03416659,99.69165119],[4.53589987,0.03416569,99.69168354],[4.53590419,0.03416451,99.70293243],[4.53590443,0.03416542,99.70290391],[4.53590491,0.03416716,99.70284784],[4.53590538,0.0341689,99.70279017],[4.53590585,0.03417064,99.70273091],[4.53590633,0.03417238,99.70267007],[4.5359068,0.03417412,99.70260767],[4.53590727,0.03417586,99.70254372],[4.53590774,0.0341776,99.70247824],[4.53590822,0.03417934,99.70241124],[4.53590869,0.03418108,99.70234274],[4.53590916,0.03418282,99.70227275],[4.53590963,0.03418456,99.70220128],[4.5359101,0.0341863,99.70212835],[4.53591057,0.03418803,99.70205397],[4.53591105,0.03418977,99.70197815],[4.53591152,0.03419151,99.70190092],[4.53591199,0.03419325,99.70182228],[4.53591246,0.03419499,99.70174225],[4.53591293,0.03419673,99.70166084],[4.5359134,0.03419847,99.70157807],[4.53591388,0.03420021,99.70149395],[4.53591435,0.03420195,99.7014085],[4.53591482,0.0342037,99.70132172],[4.53591529,0.03420544,99.70123364],[4.53591576,0.03420718,99.70114427],[4.53591623,0.03420892,99.70105362],[4.5359167,0.03421066,99.70096171],[4.53591717,0.0342124,99.70086856],[4.53591764,0.03421414,99.70077417],[4.53591812,0.03421588,99.70067855],[4.53591859,0.03421762,99.70058171],[4.53591906,0.03421936,99.70048367],[4.53591953,0.0342211,99.70038442],[4.53592,0.03422284,99.70028397],[4.53592047,0.03422458,99.70018233],[4.53592094,0.03422632,99.70007951],[4.53592141,0.03422806,99.69997552],[4.53592188,0.0342298,99.69987035],[4.53592235,0.03423154,99.69976402],[4.53592282,0.03423328,99.69965654],[4.53592329,0.03423502,99.69954791],[4.53592377,0.03423676,99.69943813],[4.53592424,0.0342385,99.69932723],[4.53592471,0.03424024,99.69921519],[4.53592518,0.03424198,99.69910204],[4.53592565,0.03424372,99.69898777],[4.53592612,0.03424546,99.69887239],[4.53592659,0.0342472,99.69875592],[4.53592706,0.03424894,99.69863836],[4.53592753,0.03425068,99.69851971],[4.535928,0.03425242,99.69839998],[4.53592847,0.03425416,99.69827918],[4.53592894,0.0342559,99.69815731],[4.53592941,0.03425764,99.69803439],[4.53592988,0.03425938,99.69791042],[4.53593035,0.03426112,99.69778541],[4.53593082,0.03426286,99.69765936],[4.53593129,0.0342646,99.69753228],[4.53593176,0.03426634,99.69740418],[4.53593224,0.03426808,99.69727506],[4.53593271,0.03426982,99.69714494],[4.53593318,0.03427157,99.69701382],[4.53593365,0.03427331,99.6968817],[4.53593412,0.03427505,99.69674859],[4.53593459,0.03427679,99.69661451],[4.53593506,0.03427853,99.69647946],[4.53593553,0.03428027,99.69634343],[4.535936,0.03428201,99.69620646],[4.53593647,0.03428375,99.69606853],[4.53593694,0.03428549,99.69592965],[4.53593741,0.03428723,99.69578984],[4.53593788,0.03428897,99.6956491],[4.53593835,0.03429071,99.69550744],[4.53593882,0.03429245,99.69536486],[4.53593929,0.03429419,99.69522137],[4.53593976,0.03429593,99.69507698],[4.53594023,0.03429767,99.6949317],[4.5359407,0.03429941,99.69478553],[4.53594117,0.03430115,99.69463848],[4.53594164,0.03430289,99.69449055],[4.53594211,0.03430463,99.69434177],[4.53594259,0.03430637,99.69419212],[4.53594306,0.03430811,99.69404162],[4.53594353,0.03430985,99.69389028],[4.535944,0.03431159,99.6937381],[4.53594447,0.03431333,99.69358509],[4.53594494,0.03431508,99.69343126],[4.53594541,0.03431682,99.69327661],[4.53594588,0.03431856,99.69312115],[4.53594635,0.0343203,99.6929649],[4.53594682,0.03432204,99.69280784],[4.53594729,0.03432378,99.69265001],[4.53594776,0.03432552,99.69249139],[4.53594823,0.03432726,99.692332],[4.5359487,0.034329,99.69217184],[4.53594917,0.03433074,99.69201093],[4.53594964,0.03433248,99.69184927],[4.53595011,0.03433422,99.69168686],[4.53595058,0.03433596,99.69152371],[4.53595106,0.0343377,99.69135984],[4.53595153,0.03433944,99.69119525],[4.535952,0.03434118,99.69102994],[4.53595247,0.03434292,99.69086392],[4.53595294,0.03434466,99.6906972],[4.53595341,0.0343464,99.6905298],[4.53595388,0.03434814,99.6903617],[4.53595435,0.03434988,99.69019291],[4.53595482,0.03435162,99.69002343],[4.53595529,0.03435336,99.68985326],[4.53595576,0.0343551,99.6896824],[4.53595623,0.03435684,99.68951086],[4.5359567,0.03435858,99.68933862],[4.53595718,0.03436032,99.68916569],[4.53595765,0.03436206,99.68899207],[4.53595812,0.0343638,99.68881775],[4.53595859,0.03436555,99.68864275],[4.53595906,0.03436729,99.68846706],[4.53595953,0.03436903,99.68829067],[4.53596,0.03437077,99.68811359],[4.53596047,0.03437251,99.68793581],[4.53596094,0.03437425,99.68775734],[4.53596141,0.03437599,99.68757818],[4.53596188,0.03437773,99.68739832],[4.53596235,0.03437947,99.68721777],[4.53596282,0.03438121,99.68703652],[4.5359633,0.03438295,99.68685458],[4.53596377,0.03438469,99.68667194],[4.53596424,0.03438643,99.6864886],[4.53596471,0.03438817,99.68630456],[4.53596518,0.03438991,99.68611982],[4.53596565,0.03439165,99.68593438],[4.53596612,0.03439339,99.68574825],[4.53596659,0.03439513,99.68556141],[4.53596706,0.03439687,99.68537387],[4.53596753,0.03439861,99.68518563],[4.535968,0.03440035,99.68499668],[4.53596847,0.03440209,99.68480703],[4.53596894,0.03440383,99.68461667],[4.53596941,0.03440557,99.68442561],[4.53596988,0.03440731,99.68423384],[4.53597035,0.03440905,99.68404137],[4.53597082,0.03441079,99.68384818],[4.53597129,0.03441253,99.68365429],[4.53597176,0.03441428,99.68345969],[4.53597223,0.03441602,99.68326438],[4.5359727,0.03441776,99.68306836],[4.53597317,0.0344195,99.68287163],[4.53597364,0.03442124,99.68267419],[4.53597411,0.03442298,99.68247604],[4.53597458,0.03442472,99.68227718],[4.53597505,0.03442646,99.68207761],[4.53597552,0.0344282,99.68187733],[4.53597599,0.03442994,99.68167633],[4.53597645,0.03443168,99.68147462],[4.53597692,0.03443342,99.68127219],[4.53597739,0.03443516,99.68106905],[4.53597786,0.0344369,99.6808652],[4.53597833,0.03443864,99.68066063],[4.5359788,0.03444038,99.68045534],[4.53597927,0.03444213,99.68024934],[4.53597974,0.03444387,99.68004262],[4.5359802,0.03444561,99.67983518],[4.53598067,0.03444735,99.67962702],[4.53598114,0.03444909,99.67941814],[4.53598161,0.03445083,99.67920854],[4.53598208,0.03445257,99.67899821],[4.53598255,0.03445431,99.67878717],[4.53598301,0.03445605,99.6785754],[4.53598348,0.03445779,99.67836291],[4.53598395,0.03445954,99.67814969],[4.53598442,0.03446128,99.67793575],[4.53598488,0.03446302,99.67772108],[4.53598535,0.03446476,99.67750569],[4.53598582,0.0344665,99.67728956],[4.53598628,0.03446824,99.6770727],[4.53598675,0.03446998,99.67685512],[4.53598722,0.03447172,99.6766368],[4.53598768,0.03447346,99.67641775],[4.53598815,0.03447521,99.67619797],[4.53598862,0.03447695,99.67597745],[4.53598908,0.03447869,99.6757562],[4.53598955,0.03448043,99.67553421],[4.53599002,0.03448217,99.67531148],[4.53599048,0.03448391,99.67508801],[4.53599095,0.03448565,99.6748638],[4.53599141,0.0344874,99.67463885],[4.53599188,0.03448914,99.67441316],[4.53599234,0.03449088,99.67418673],[4.53599281,0.03449262,99.67395955],[4.53599327,0.03449436,99.67373162],[4.53599374,0.0344961,99.67350295],[4.5359942,0.03449785,99.67327353],[4.53599467,0.03449959,99.67304336],[4.53599513,0.03450133,99.67281245],[4.5359956,0.03450307,99.6725808],[4.53599606,0.03450481,99.67234842],[4.53599652,0.03450656,99.67211531],[4.53599699,0.0345083,99.67188147],[4.53599745,0.03451004,99.67164691],[4.53599791,0.03451178,99.67141163],[4.53599838,0.03451352,99.67117564],[4.53599884,0.03451527,99.67093893],[4.5359993,0.03451701,99.67070153],[4.53599977,0.03451875,99.67046342],[4.53600023,0.03452049,99.67022461],[4.53600069,0.03452224,99.66998512],[4.53600115,0.03452398,99.66974493],[4.53600162,0.03452572,99.66950406],[4.53600208,0.03452746,99.66926251],[4.53600254,0.03452921,99.66902028],[4.536003,0.03453095,99.66877739],[4.53600346,0.03453269,99.66853382],[4.53600392,0.03453443,99.6682896],[4.53600439,0.03453618,99.66804474],[4.53600485,0.03453792,99.66779924],[4.53600531,0.03453966,99.66755313],[4.53600577,0.03454141,99.66730643],[4.53600623,0.03454315,99.66705915],[4.53600669,0.03454489,99.66681132],[4.53600715,0.03454663,99.66656294],[4.53600761,0.03454838,99.66631405],[4.53600807,0.03455012,99.66606465],[4.53600853,0.03455186,99.66581477],[4.53600899,0.03455361,99.66556443],[4.53600945,0.03455535,99.66531364],[4.53600991,0.03455709,99.66506243],[4.53601037,0.03455884,99.66481081],[4.53601083,0.03456058,99.6645588],[4.53601129,0.03456232,99.66430642],[4.53601175,0.03456406,99.66405368],[4.53601221,0.03456581,99.66380062],[4.53601267,0.03456755,99.66354724],[4.53601313,0.03456929,99.66329357],[4.53601358,0.03457104,99.66303963],[4.53601404,0.03457278,99.66278543],[4.5360145,0.03457452,99.662531],[4.53601496,0.03457627,99.66227634],[4.53601542,0.03457801,99.66202149],[4.53601588,0.03457975,99.66176647],[4.53601634,0.0345815,99.66151128],[4.5360168,0.03458324,99.66125596],[4.53601726,0.03458498,99.66100051],[4.53601771,0.03458673,99.66074497],[4.53601817,0.03458847,99.66048935],[4.53601863,0.03459021,99.66023366],[4.53601909,0.03459196,99.65997794],[4.53601955,0.0345937,99.65972219],[4.53602001,0.03459544,99.65946644],[4.53602047,0.03459719,99.65921071],[4.53602093,0.03459893,99.65895502],[4.53602138,0.03460067,99.65869939],[4.53602184,0.03460242,99.65844383],[4.5360223,0.03460416,99.65818837],[4.53602276,0.0346059,99.65793304],[4.53602322,0.03460765,99.65767783],[4.53602368,0.03460939,99.65742279],[4.53602414,0.03461113,99.65716793],[4.53602459,0.03461288,99.65691326],[4.53602505,0.03461462,99.65665881],[4.53602551,0.03461636,99.6564046],[4.53602597,0.03461811,99.65615065],[4.53602643,0.03461985,99.65589698],[4.53602689,0.03462159,99.65564361],[4.53602735,0.03462334,99.65539056],[4.53602781,0.03462508,99.65513783],[4.53602827,0.03462682,99.65488544],[4.53602873,0.03462857,99.6546334],[4.53602919,0.03463031,99.65438172],[4.53602965,0.03463205,99.65413042],[4.53603011,0.03463379,99.65387951],[4.53603057,0.03463554,99.653629],[4.53603102,0.03463728,99.65337891],[4.53603148,0.03463902,99.65312925],[4.53603194,0.03464077,99.65288002],[4.5360324,0.03464251,99.65263125],[4.53603286,0.03464425,99.65238294],[4.53603332,0.034646,99.65213511],[4.53603379,0.03464774,99.65188777],[4.53603425,0.03464948,99.65164093],[4.53603471,0.03465122,99.65139461],[4.53603517,0.03465297,99.65114882],[4.53603563,0.03465471,99.65090357],[4.53603609,0.03465645,99.65065887],[4.53603655,0.03465819,99.65041474],[4.53603701,0.03465994,99.6501712],[4.53603747,0.03466168,99.64992824],[4.53603793,0.03466342,99.64968589],[4.53603839,0.03466516,99.64944415],[4.53603885,0.03466691,99.64920302],[4.53603932,0.03466865,99.6489625],[4.53603978,0.03467039,99.6487226],[4.53604024,0.03467213,99.64848331],[4.5360407,0.03467388,99.64824464],[4.53604116,0.03467562,99.64800658],[4.53604162,0.03467736,99.64776913],[4.53604209,0.0346791,99.6475323],[4.53604255,0.03468085,99.64729609],[4.53604301,0.03468259,99.64706048],[4.53604347,0.03468433,99.6468255],[4.53604394,0.03468607,99.64659113],[4.5360444,0.03468782,99.64635738],[4.53604486,0.03468956,99.64612424],[4.53604532,0.0346913,99.64589172],[4.53604579,0.03469304,99.64565982],[4.53604625,0.03469478,99.64542853],[4.53604671,0.03469653,99.64519786],[4.53604718,0.03469827,99.64496781],[4.53604764,0.03470001,99.64473837],[4.5360481,0.03470175,99.64450956],[4.53604857,0.03470349,99.64428135],[4.53604903,0.03470524,99.64405377],[4.53604949,0.03470698,99.6438268],[4.53604996,0.03470872,99.64360045],[4.53605042,0.03471046,99.64337472],[4.53605088,0.0347122,99.64314961],[4.53605135,0.03471395,99.64292511],[4.53605181,0.03471569,99.64270123],[4.53605227,0.03471743,99.64247797],[4.53605274,0.03471917,99.64225532],[4.5360532,0.03472091,99.64203329],[4.53605366,0.03472265,99.64181188],[4.53605413,0.0347244,99.64159108],[4.53605459,0.03472614,99.6413709],[4.53605506,0.03472788,99.64115134],[4.53605552,0.03472962,99.64093239],[4.53605598,0.03473136,99.64071406],[4.53605645,0.03473311,99.64049634],[4.53605691,0.03473485,99.64027924],[4.53605738,0.03473659,99.64006276],[4.53605784,0.03473833,99.63984689],[4.53605831,0.03474007,99.63963163],[4.53605877,0.03474181,99.63941699],[4.53605923,0.03474356,99.63920297],[4.5360597,0.0347453,99.63898955],[4.53606016,0.03474704,99.63877676],[4.53606063,0.03474878,99.63856457],[4.53606109,0.03475052,99.638353],[4.53606156,0.03475226,99.63814204],[4.53606202,0.034754,99.63793169],[4.53606248,0.03475575,99.63772195],[4.53606295,0.03475749,99.63751283],[4.53606341,0.03475923,99.63730432],[4.53606388,0.03476097,99.63709642],[4.53606434,0.03476271,99.63688913],[4.53606481,0.03476445,99.63668244],[4.53606527,0.0347662,99.63647637],[4.53606574,0.03476794,99.63627091],[4.5360662,0.03476968,99.63606606],[4.53606666,0.03477142,99.63586181],[4.53606713,0.03477316,99.63565817],[4.53606759,0.0347749,99.63545514],[4.53606806,0.03477665,99.63525272],[4.53606852,0.03477839,99.63505091],[4.53606899,0.03478013,99.6348497],[4.53606945,0.03478187,99.6346491],[4.53606992,0.03478361,99.63444912],[4.53607038,0.03478535,99.63424977],[4.53607084,0.03478709,99.63405105],[4.53607131,0.03478884,99.63385297],[4.53607177,0.03479058,99.63365553],[4.53607224,0.03479232,99.63345874],[4.5360727,0.03479406,99.63326261],[4.53607317,0.0347958,99.63306714],[4.53607363,0.03479754,99.63287234],[4.5360741,0.03479929,99.63267822],[4.53607456,0.03480103,99.63248477],[4.53607502,0.03480277,99.63229202],[4.53607549,0.03480451,99.63209996],[4.53607595,0.03480625,99.6319086],[4.53607642,0.03480799,99.63171794],[4.53607688,0.03480974,99.631528],[4.53607735,0.03481148,99.63133877],[4.53607781,0.03481322,99.63115027],[4.53607827,0.03481496,99.63096248],[4.53607874,0.0348167,99.63077539],[4.5360792,0.03481844,99.630589],[4.53607967,0.03482018,99.6304033],[4.53608013,0.03482193,99.63021826],[4.5360806,0.03482367,99.6300339],[4.53608106,0.03482541,99.62985018],[4.53608152,0.03482715,99.62966711],[4.53608199,0.03482889,99.62948467],[4.53608245,0.03483063,99.62930286],[4.53608292,0.03483238,99.62912165],[4.53608338,0.03483412,99.62894106],[4.53608384,0.03483586,99.62876105],[4.53608431,0.0348376,99.62858163],[4.53608477,0.03483934,99.62840278],[4.53608524,0.03484108,99.62822449],[4.5360857,0.03484283,99.62804675],[4.53608617,0.03484457,99.62786956],[4.53608663,0.03484631,99.6276929],[4.53608709,0.03484805,99.62751676],[4.53608756,0.03484979,99.62734114],[4.53608802,0.03485153,99.62716601],[4.53608848,0.03485327,99.62699138],[4.53608895,0.03485502,99.62681723],[4.53608941,0.03485676,99.62664355],[4.53608988,0.0348585,99.62647033],[4.53609034,0.03486024,99.62629757],[4.5360908,0.03486198,99.62612524],[4.53609127,0.03486372,99.62595335],[4.53609173,0.03486547,99.62578187],[4.53609219,0.03486721,99.62561081],[4.53609266,0.03486895,99.62544015],[4.53609312,0.03487069,99.62526988],[4.53609359,0.03487243,99.6251],[4.53609405,0.03487418,99.62493048],[4.53609451,0.03487592,99.62476132],[4.53609498,0.03487766,99.62459251],[4.53609544,0.0348794,99.62442405],[4.5360959,0.03488114,99.62425591],[4.53609637,0.03488288,99.6240881],[4.53609683,0.03488463,99.62392059],[4.53609729,0.03488637,99.62375339],[4.53609776,0.03488811,99.62358648],[4.53609822,0.03488985,99.62341985],[4.53609868,0.03489159,99.62325348],[4.53609914,0.03489333,99.62308738],[4.53609961,0.03489508,99.62292153],[4.53610007,0.03489682,99.62275592],[4.53610053,0.03489856,99.62259054],[4.536101,0.0349003,99.62242538],[4.53610146,0.03490204,99.62226043],[4.53610192,0.03490379,99.62209568],[4.53610238,0.03490553,99.62193112],[4.53610285,0.03490727,99.62176674],[4.53610331,0.03490901,99.62160253],[4.53610377,0.03491075,99.62143848],[4.53610423,0.0349125,99.62127459],[4.5361047,0.03491424,99.62111083],[4.53610516,0.03491598,99.6209472],[4.53610562,0.03491772,99.6207837],[4.53610608,0.03491946,99.6206203],[4.53610655,0.03492121,99.62045701],[4.53610701,0.03492295,99.62029381],[4.53610747,0.03492469,99.62013069],[4.53610793,0.03492643,99.61996764],[4.53610839,0.03492817,99.61980465],[4.53610885,0.03492992,99.61964171],[4.53610932,0.03493166,99.61947882],[4.53610978,0.0349334,99.61931596],[4.53611024,0.03493514,99.61915311],[4.5361107,0.03493689,99.61899029],[4.53611116,0.03493863,99.61882746],[4.53611162,0.03494037,99.61866462],[4.53611209,0.03494211,99.61850177],[4.53611255,0.03494385,99.61833889],[4.53611301,0.0349456,99.61817598],[4.53611347,0.03494734,99.61801301],[4.53611393,0.03494908,99.61784999],[4.53611439,0.03495082,99.6176869],[4.53611485,0.03495257,99.61752374],[4.53611531,0.03495431,99.61736049],[4.53611577,0.03495605,99.61719715],[4.53611623,0.03495779,99.6170337],[4.53611669,0.03495954,99.61687013],[4.53611715,0.03496128,99.61670644],[4.53611762,0.03496302,99.61654262],[4.53611808,0.03496476,99.61637865],[4.53611854,0.03496651,99.61621452],[4.536119,0.03496825,99.61605024],[4.53611946,0.03496999,99.61588577],[4.53611992,0.03497173,99.61572113],[4.53612038,0.03497348,99.61555629],[4.53612084,0.03497522,99.61539125],[4.53612129,0.03497696,99.615226],[4.53612175,0.0349787,99.61506052],[4.53612221,0.03498045,99.61489482],[4.53612267,0.03498219,99.61472887],[4.53612313,0.03498393,99.61456267],[4.53612359,0.03498567,99.6143962],[4.53612405,0.03498742,99.61422945],[4.53612451,0.03498916,99.61406242],[4.53612497,0.0349909,99.6138951],[4.53612543,0.03499265,99.61372746],[4.53612589,0.03499439,99.6135595],[4.53612634,0.03499613,99.61339122],[4.5361268,0.03499787,99.61322259],[4.53612726,0.03499962,99.61305361],[4.53612772,0.03500136,99.61288426],[4.53612818,0.0350031,99.61271455],[4.53612864,0.03500485,99.61254444],[4.53612909,0.03500659,99.61237394],[4.53612955,0.03500833,99.61220305],[4.53613001,0.03501008,99.61203177],[4.53613047,0.03501182,99.61186012],[4.53613092,0.03501356,99.61168811],[4.53613138,0.0350153,99.61151576],[4.53613184,0.03501704,99.61134307],[4.5361323,0.03501879,99.61117004],[4.53613275,0.03502053,99.6109967],[4.53613321,0.03502227,99.61082304],[4.53613367,0.03502402,99.61064907],[4.53613413,0.03502576,99.61047481],[4.53613458,0.0350275,99.61030026],[4.53613504,0.03502925,99.61012542],[4.5361355,0.03503099,99.60995032],[4.53613595,0.03503273,99.60977496],[4.53613641,0.03503448,99.60959935],[4.53613687,0.03503622,99.6094235],[4.53613732,0.03503797,99.60924742],[4.53613778,0.03503971,99.60907113],[4.53613824,0.03504145,99.60889463],[4.53613869,0.0350432,99.60871794],[4.53613915,0.03504494,99.60854106],[4.53613961,0.03504668,99.608364],[4.53614006,0.03504843,99.60818678],[4.53614052,0.03505017,99.60800941],[4.53614098,0.03505191,99.60783189],[4.53614143,0.03505366,99.60765424],[4.53614189,0.0350554,99.60747646],[4.53614235,0.03505714,99.60729857],[4.53614281,0.03505889,99.60712058],[4.53614326,0.03506063,99.60694249],[4.53614372,0.03506237,99.60676432],[4.53614418,0.03506412,99.60658607],[4.53614463,0.03506586,99.60640776],[4.53614509,0.0350676,99.6062294],[4.53614555,0.03506935,99.60605099],[4.53614601,0.03507109,99.60587255],[4.53614646,0.03507283,99.60569408],[4.53614692,0.03507458,99.6055156],[4.53614738,0.03507632,99.60533711],[4.53614784,0.03507806,99.60515863],[4.5361483,0.0350798,99.60498015],[4.53614875,0.03508155,99.60480171],[4.53614921,0.03508329,99.60462329],[4.53614967,0.03508503,99.60444492],[4.53615013,0.03508678,99.60426659],[4.53615059,0.03508852,99.60408829],[4.53615105,0.03509026,99.60390999],[4.5361515,0.03509201,99.60373166],[4.53615196,0.03509375,99.60355328],[4.53615242,0.03509549,99.60337482],[4.53615288,0.03509723,99.60319627],[4.53615334,0.03509898,99.60301758],[4.5361538,0.03510072,99.60283874],[4.53615426,0.03510246,99.60265973],[4.53615472,0.0351042,99.60248051],[4.53615518,0.03510595,99.60230106],[4.53615564,0.03510769,99.60212135],[4.5361561,0.03510943,99.60194137],[4.53615656,0.03511118,99.60176109],[4.53615702,0.03511292,99.60158047],[4.53615748,0.03511466,99.6013995],[4.53615794,0.0351164,99.60121815],[4.5361584,0.03511815,99.6010364],[4.53615886,0.03511989,99.60085421],[4.53615932,0.03512163,99.60067157],[4.53615978,0.03512337,99.60048846],[4.53616024,0.03512512,99.60030484],[4.5361607,0.03512686,99.60012069],[4.53616116,0.0351286,99.59993599],[4.53616162,0.03513034,99.5997507],[4.53616208,0.03513209,99.59956482],[4.53616254,0.03513383,99.59937831],[4.536163,0.03513557,99.59919115],[4.53616346,0.03513731,99.59900331],[4.53616392,0.03513906,99.59881477],[4.53616438,0.0351408,99.59862551],[4.53616484,0.03514254,99.59843549],[4.5361653,0.03514428,99.59824471],[4.53616576,0.03514603,99.59805312],[4.53616622,0.03514777,99.59786071],[4.53616668,0.03514951,99.59766746],[4.53616714,0.03515126,99.59747333],[4.5361676,0.035153,99.59727831],[4.53616806,0.03515474,99.59708238],[4.53616852,0.03515648,99.59688549],[4.53616898,0.03515823,99.59668765],[4.53616944,0.03515997,99.59648881],[4.5361699,0.03516171,99.59628899],[4.53617035,0.03516345,99.59608816],[4.53617081,0.0351652,99.59588635],[4.53617127,0.03516694,99.59568353],[4.53617173,0.03516868,99.59547971],[4.53617219,0.03517043,99.5952749],[4.53617265,0.03517217,99.59506907],[4.53617311,0.03517391,99.59486225],[4.53617357,0.03517566,99.59465441],[4.53617402,0.0351774,99.59444557],[4.53617448,0.03517914,99.59423571],[4.53617494,0.03518088,99.59402484],[4.5361754,0.03518263,99.59381295],[4.53617586,0.03518437,99.59360005],[4.53617632,0.03518611,99.59338612],[4.53617677,0.03518786,99.59317117],[4.53617723,0.0351896,99.5929552],[4.53617769,0.03519134,99.59273821],[4.53617815,0.03519309,99.59252018],[4.5361786,0.03519483,99.59230113],[4.53617906,0.03519657,99.59208104],[4.53617952,0.03519832,99.59185992],[4.53617998,0.03520006,99.59163776],[4.53618043,0.0352018,99.59141456],[4.53618089,0.03520355,99.59119032],[4.53618135,0.03520529,99.59096504],[4.53618181,0.03520703,99.59073871],[4.53618226,0.03520878,99.59051134],[4.53618272,0.03521052,99.59028291],[4.53618318,0.03521226,99.59005344],[4.53618364,0.03521401,99.58982291],[4.53618409,0.03521575,99.58959132],[4.53618455,0.03521749,99.58935867],[4.53618501,0.03521924,99.58912496],[4.53618546,0.03522098,99.58889019],[4.53618592,0.03522272,99.58865435],[4.53618638,0.03522447,99.58841745],[4.53618683,0.03522621,99.58817947],[4.53618729,0.03522795,99.58794042],[4.53618775,0.0352297,99.5877003],[4.5361882,0.03523144,99.5874591],[4.53618866,0.03523319,99.58721682],[4.53618912,0.03523493,99.58697345],[4.53618957,0.03523667,99.58672901],[4.53619003,0.03523842,99.58648347],[4.53619049,0.03524016,99.58623684],[4.53619094,0.0352419,99.58598913],[4.5361914,0.03524365,99.58574031],[4.53619186,0.03524539,99.58549041],[4.53619231,0.03524713,99.5852394],[4.53619277,0.03524888,99.58498728],[4.53619323,0.03525062,99.58473406],[4.53619368,0.03525236,99.58447973],[4.53619414,0.03525411,99.58422428],[4.5361946,0.03525585,99.58396772],[4.53619505,0.0352576,99.58371004],[4.53619551,0.03525934,99.58345123],[4.53619597,0.03526108,99.5831913],[4.53619642,0.03526283,99.58293026],[4.53619688,0.03526457,99.58266808],[4.53619734,0.03526631,99.58240479],[4.53619779,0.03526806,99.58214036],[4.53619825,0.0352698,99.58187481],[4.53619871,0.03527154,99.58160813],[4.53619916,0.03527329,99.58134033],[4.53619962,0.03527503,99.58107139],[4.53620008,0.03527677,99.58080133],[4.53620053,0.03527852,99.58053013],[4.53620099,0.03528026,99.5802578],[4.53620145,0.03528201,99.57998433],[4.5362019,0.03528375,99.57970974],[4.53620236,0.03528549,99.579434],[4.53620282,0.03528724,99.57915713],[4.53620327,0.03528898,99.57887912],[4.53620373,0.03529072,99.57859997],[4.53620419,0.03529247,99.57831968],[4.53620464,0.03529421,99.57803825],[4.5362051,0.03529595,99.57775568],[4.53620556,0.0352977,99.57747196],[4.53620602,0.03529944,99.5771871],[4.53620647,0.03530118,99.57690109],[4.53620693,0.03530293,99.57661393],[4.53620739,0.03530467,99.57632563],[4.53620784,0.03530641,99.57603617],[4.5362083,0.03530816,99.57574557],[4.53620876,0.0353099,99.57545381],[4.53620922,0.03531164,99.5751609],[4.53620967,0.03531339,99.57486684],[4.53621013,0.03531513,99.57457162],[4.53621059,0.03531687,99.57427524],[4.53621105,0.03531862,99.5739777],[4.53621151,0.03532036,99.573679],[4.53621196,0.0353221,99.57337913],[4.53621242,0.03532385,99.57307807],[4.53621288,0.03532559,99.57277579],[4.53621334,0.03532733,99.5724723],[4.5362138,0.03532908,99.57216757],[4.53621425,0.03533082,99.57186159],[4.53621471,0.03533256,99.57155433],[4.53621517,0.03533431,99.5712458],[4.53621563,0.03533605,99.57093596],[4.53621609,0.03533779,99.57062481],[4.53621655,0.03533954,99.57031233],[4.536217,0.03534128,99.5699985],[4.53621746,0.03534302,99.56968331],[4.53621792,0.03534476,99.56936675],[4.53621838,0.03534651,99.56904879],[4.53621884,0.03534825,99.56872943],[4.5362193,0.03534999,99.56840864],[4.53621976,0.03535174,99.56808642],[4.53622022,0.03535348,99.56776274],[4.53622067,0.03535522,99.56743759],[4.53622113,0.03535697,99.56711097],[4.53622159,0.03535871,99.56678284],[4.53622205,0.03536045,99.56645319],[4.53622251,0.0353622,99.56612202],[4.53622297,0.03536394,99.56578931],[4.53622343,0.03536568,99.56545503],[4.53622389,0.03536742,99.56511918],[4.53622434,0.03536917,99.56478174],[4.5362248,0.03537091,99.5644427],[4.53622526,0.03537265,99.56410204],[4.53622572,0.0353744,99.56375974],[4.53622618,0.03537614,99.56341579],[4.53622664,0.03537788,99.56307017],[4.5362271,0.03537963,99.56272288],[4.53622756,0.03538137,99.56237389],[4.53622802,0.03538311,99.56202319],[4.53622847,0.03538486,99.56167076],[4.53622893,0.0353866,99.5613166],[4.53622939,0.03538834,99.56096068],[4.53622985,0.03539008,99.56060299],[4.53623031,0.03539183,99.56024351],[4.53623077,0.03539357,99.55988224],[4.53623123,0.03539531,99.55951915],[4.53623168,0.03539706,99.55915423],[4.53623214,0.0353988,99.55878747],[4.5362326,0.03540054,99.55841884],[4.53623306,0.03540229,99.55804834],[4.53623352,0.03540403,99.55767595],[4.53623398,0.03540577,99.55730166],[4.53623443,0.03540752,99.55692545],[4.53623489,0.03540926,99.5565473],[4.53623535,0.035411,99.5561672],[4.53623581,0.03541275,99.55578512],[4.53623627,0.03541449,99.55540105],[4.53623672,0.03541623,99.55501496],[4.53623718,0.03541798,99.55462684],[4.53623764,0.03541972,99.55423668],[4.5362381,0.03542146,99.55384445],[4.53623855,0.03542321,99.55345014],[4.53623901,0.03542495,99.55305373],[4.53623947,0.03542669,99.55265521],[4.53623993,0.03542844,99.55225457],[4.53624038,0.03543018,99.55185178],[4.53624084,0.03543192,99.55144683],[4.5362413,0.03543367,99.5510397],[4.53624175,0.03543541,99.55063038],[4.53624221,0.03543716,99.55021885],[4.53624267,0.0354389,99.5498051],[4.53624312,0.03544064,99.5493891],[4.53624358,0.03544239,99.54897085],[4.53624403,0.03544413,99.54855032],[4.53624449,0.03544587,99.54812751],[4.53624495,0.03544762,99.54770239],[4.5362454,0.03544936,99.54727495],[4.53624586,0.03545111,99.54684518],[4.53624631,0.03545285,99.54641308],[4.53624677,0.03545459,99.54597867],[4.53624722,0.03545634,99.54554195],[4.53624768,0.03545808,99.54510291],[4.53624813,0.03545983,99.54466157],[4.53624859,0.03546157,99.54421793],[4.53624904,0.03546331,99.54377199],[4.5362495,0.03546506,99.54332375],[4.53624995,0.0354668,99.54287323],[4.5362504,0.03546855,99.54242043],[4.53625086,0.03547029,99.54196534],[4.53625131,0.03547204,99.54150798],[4.53625177,0.03547378,99.54104835],[4.53625222,0.03547553,99.54058645],[4.53625267,0.03547727,99.54012228],[4.53625313,0.03547901,99.53965586],[4.53625358,0.03548076,99.53918718],[4.53625404,0.0354825,99.53871626],[4.53625449,0.03548425,99.53824308],[4.53625494,0.03548599,99.53776767],[4.5362554,0.03548774,99.53729002],[4.53625585,0.03548948,99.53681013],[4.5362563,0.03549123,99.53632801],[4.53625676,0.03549297,99.53584367],[4.53625721,0.03549471,99.53535711],[4.53625766,0.03549646,99.53486833],[4.53625812,0.0354982,99.53437734],[4.53625857,0.03549995,99.53388414],[4.53625902,0.03550169,99.53338873],[4.53625947,0.03550344,99.53289113],[4.53625993,0.03550518,99.53239132],[4.53626038,0.03550693,99.53188933],[4.53626083,0.03550867,99.53138515],[4.53626129,0.03551042,99.53087878],[4.53626174,0.03551216,99.53037024],[4.53626219,0.03551391,99.52985952],[4.53626265,0.03551565,99.52934663],[4.5362631,0.0355174,99.52883157],[4.53626355,0.03551914,99.52831435],[4.53626401,0.03552088,99.52779497],[4.53626446,0.03552263,99.52727344],[4.53626491,0.03552437,99.52674976],[4.53626536,0.03552612,99.52622393],[4.53626582,0.03552786,99.52569596],[4.53626627,0.03552961,99.52516585],[4.53626672,0.03553135,99.52463362],[4.53626718,0.0355331,99.52409925],[4.53626763,0.03553484,99.52356276],[4.53626809,0.03553659,99.52302415],[4.53626854,0.03553833,99.52248342],[4.53626899,0.03554007,99.52194059],[4.53626945,0.03554182,99.52139565],[4.5362699,0.03554356,99.52084861],[4.53627035,0.03554531,99.52029947],[4.53627081,0.03554705,99.51974823],[4.53627126,0.0355488,99.51919491],[4.53627172,0.03555054,99.51863951],[4.53627217,0.03555229,99.51808203],[4.53627262,0.03555403,99.51752247],[4.53627308,0.03555577,99.51696084],[4.53627353,0.03555752,99.51639712],[4.53627399,0.03555926,99.51583131],[4.53627444,0.03556101,99.51526338],[4.5362749,0.03556275,99.51469331],[4.53627535,0.0355645,99.51412109],[4.53627581,0.03556624,99.51354669],[4.53627626,0.03556798,99.51297009],[4.53627672,0.03556973,99.51239128],[4.53627717,0.03557147,99.51181023],[4.53627763,0.03557322,99.51122693],[4.53627808,0.03557496,99.51064136],[4.53627854,0.0355767,99.5100535],[4.53627899,0.03557845,99.50946332],[4.53627945,0.03558019,99.50887082],[4.5362799,0.03558194,99.50827596],[4.53628036,0.03558368,99.50767874],[4.53628082,0.03558543,99.50707914],[4.53628127,0.03558717,99.50647717],[4.53628173,0.03558891,99.50587283],[4.53628218,0.03559066,99.50526614],[4.53628264,0.0355924,99.5046571],[4.53628309,0.03559415,99.50404573],[4.53628355,0.03559589,99.50343202],[4.53628401,0.03559763,99.502816],[4.53628446,0.03559938,99.50219766],[4.53628492,0.03560112,99.50157703],[4.53628537,0.03560287,99.5009541],[4.53628583,0.03560461,99.50032888],[4.53628628,0.03560635,99.49970139],[4.53628674,0.0356081,99.49907163],[4.5362872,0.03560984,99.49843961],[4.53628765,0.03561159,99.49780534],[4.53628811,0.03561333,99.49716882],[4.53628856,0.03561507,99.49653007],[4.53628902,0.03561682,99.4958891],[4.53628947,0.03561856,99.49524591],[4.53628993,0.03562031,99.4946005],[4.53629039,0.03562205,99.4939529],[4.53629084,0.03562379,99.4933031],[4.5362913,0.03562554,99.49265111],[4.53629175,0.03562728,99.49199695],[4.53629221,0.03562903,99.49134062],[4.53629266,0.03563077,99.49068213],[4.53629312,0.03563251,99.49002148],[4.53629358,0.03563426,99.48935869],[4.53629403,0.035636,99.48869376],[4.53629449,0.03563775,99.4880267],[4.53629494,0.03563949,99.48735752],[4.5362954,0.03564123,99.48668623],[4.53629585,0.03564298,99.48601283],[4.53629631,0.03564472,99.48533734],[4.53629676,0.03564647,99.48465975],[4.53629722,0.03564821,99.48398008],[4.53629767,0.03564995,99.48329834],[4.53629813,0.0356517,99.48261453],[4.53629858,0.03565344,99.48192866],[4.53629904,0.03565519,99.48124074],[4.53629949,0.03565693,99.48055078],[4.53629995,0.03565868,99.47985878],[4.5363004,0.03566042,99.47916476],[4.53630086,0.03566216,99.47846871],[4.53630131,0.03566391,99.47777065],[4.53630177,0.03566565,99.47707058],[4.53630222,0.0356674,99.47636852],[4.53630268,0.03566914,99.47566447],[4.53630313,0.03567089,99.47495847],[4.53630358,0.03567263,99.47425052],[4.53630404,0.03567438,99.47354066],[4.53630449,0.03567612,99.4728289],[4.53630495,0.03567786,99.47211527],[4.5363054,0.03567961,99.47139979],[4.53630585,0.03568135,99.47068248],[4.53630631,0.0356831,99.46996337],[4.53630676,0.03568484,99.46924246],[4.53630721,0.03568659,99.4685198],[4.53630767,0.03568833,99.46779539],[4.53630812,0.03569008,99.46706926],[4.53630858,0.03569182,99.46634144],[4.53630903,0.03569357,99.46561194],[4.53630948,0.03569531,99.46488079],[4.53630994,0.03569705,99.46414801],[4.53631039,0.0356988,99.46341362],[4.53631084,0.03570054,99.46267764],[4.5363113,0.03570229,99.4619401],[4.53631175,0.03570403,99.46120102],[4.5363122,0.03570578,99.46046042],[4.53631266,0.03570752,99.45971832],[4.53631311,0.03570927,99.45897474],[4.53631356,0.03571101,99.45822971],[4.53631401,0.03571276,99.45748325],[4.53631447,0.0357145,99.45673538],[4.53631492,0.03571625,99.45598612],[4.53631537,0.03571799,99.45523551],[4.53631583,0.03571973,99.45448354],[4.53631628,0.03572148,99.45373026],[4.53631673,0.03572322,99.45297569],[4.53631718,0.03572497,99.45221983],[4.53631764,0.03572671,99.4514627],[4.53631809,0.03572846,99.45070433],[4.53631854,0.0357302,99.44994472],[4.536319,0.03573195,99.44918389],[4.53631945,0.03573369,99.44842186],[4.5363199,0.03573544,99.44765865],[4.53632035,0.03573718,99.44689426],[4.53632081,0.03573893,99.44612872],[4.53632126,0.03574067,99.44536204],[4.53632171,0.03574242,99.44459423],[4.53632217,0.03574416,99.44382532],[4.53632262,0.03574591,99.44305531],[4.53632307,0.03574765,99.44228423],[4.53632352,0.0357494,99.44151209],[4.53632398,0.03575114,99.4407389],[4.53632443,0.03575289,99.43996468],[4.53632488,0.03575463,99.43918944],[4.53632533,0.03575638,99.43841321],[4.53632579,0.03575812,99.437636],[4.53632624,0.03575987,99.43685782],[4.53632669,0.03576161,99.43607868],[4.53632714,0.03576336,99.43529862],[4.5363276,0.0357651,99.43451763],[4.53632805,0.03576685,99.43373574],[4.5363285,0.03576859,99.43295295],[4.53632895,0.03577034,99.4321693],[4.53632941,0.03577208,99.43138479],[4.53632986,0.03577383,99.43059943],[4.53633031,0.03577557,99.42981326],[4.53633076,0.03577732,99.42902627],[4.53633121,0.03577906,99.42823848],[4.53633167,0.03578081,99.42744992],[4.53633212,0.03578255,99.42666059],[4.53633257,0.0357843,99.42587052],[4.53633302,0.03578604,99.42507971],[4.53633348,0.03578779,99.42428819],[4.53633393,0.03578953,99.42349596],[4.53633438,0.03579128,99.42270305],[4.53633483,0.03579302,99.42190947],[4.53633528,0.03579477,99.42111524],[4.53633574,0.03579651,99.42032037],[4.53633619,0.03579826,99.41952487],[4.53633664,0.0358,99.41872877],[4.53633709,0.03580175,99.41793208],[4.53633754,0.03580349,99.41713481],[4.536338,0.03580524,99.41633698],[4.53633845,0.03580698,99.41553861],[4.5363389,0.03580873,99.41473971],[4.53633935,0.03581047,99.41394029],[4.5363398,0.03581222,99.41314038],[4.53634025,0.03581396,99.41233998],[4.53634071,0.03581571,99.41153912],[4.53634116,0.03581745,99.4107378],[4.53634161,0.0358192,99.40993606],[4.53634206,0.03582094,99.40913389],[4.53634251,0.03582269,99.40833131],[4.53634296,0.03582443,99.40752835],[4.53634342,0.03582618,99.40672502],[4.53634387,0.03582792,99.40592133],[4.53634432,0.03582967,99.40511729],[4.53634477,0.03583141,99.40431293],[4.53634522,0.03583316,99.40350827],[4.53634567,0.0358349,99.4027033],[4.53634612,0.03583665,99.40189807],[4.53634658,0.03583839,99.40109257],[4.53634703,0.03584014,99.40028683],[4.53634748,0.03584188,99.39948086],[4.53634793,0.03584363,99.39867468],[4.53634838,0.03584537,99.39786831],[4.53634883,0.03584712,99.39706176],[4.53634928,0.03584886,99.39625505],[4.53634973,0.03585061,99.3954482],[4.53635018,0.03585235,99.39464122],[4.53635064,0.0358541,99.39383413],[4.53635109,0.03585585,99.39302694],[4.53635154,0.03585759,99.39221968],[4.53635199,0.03585934,99.39141236],[4.53635244,0.03586108,99.39060499],[4.53635289,0.03586283,99.3897976],[4.53635334,0.03586457,99.3889902],[4.53635379,0.03586632,99.3881828],[4.53635424,0.03586806,99.38737542],[4.53635469,0.03586981,99.38656809],[4.53635514,0.03587155,99.3857608],[4.5363556,0.0358733,99.3849536],[4.53635605,0.03587504,99.38414648],[4.5363565,0.03587679,99.38333946],[4.53635695,0.03587853,99.38253257],[4.5363574,0.03588028,99.38172582],[4.53635785,0.03588202,99.38091922],[4.5363583,0.03588377,99.3801128],[4.53635875,0.03588552,99.37930656],[4.5363592,0.03588726,99.37850053],[4.53635965,0.03588901,99.37769473],[4.5363601,0.03589075,99.37688916],[4.53636055,0.0358925,99.37608385],[4.536361,0.03589424,99.3752788],[4.53636145,0.03589599,99.37447405],[4.5363619,0.03589773,99.37366961],[4.53636235,0.03589948,99.37286548],[4.5363628,0.03590122,99.3720617],[4.53636325,0.03590297,99.37125827],[4.5363637,0.03590472,99.37045521],[4.53636415,0.03590646,99.36965254],[4.5363646,0.03590821,99.36885028],[4.53636505,0.03590995,99.36804844],[4.5363655,0.0359117,99.36724704],[4.53636595,0.03591344,99.3664461],[4.5363664,0.03591519,99.36564565],[4.53636685,0.03591693,99.3648457],[4.5363673,0.03591868,99.36404627],[4.53636775,0.03592042,99.36324739],[4.5363682,0.03592217,99.36244908],[4.53636865,0.03592392,99.36165135],[4.5363691,0.03592566,99.36085423],[4.53636955,0.03592741,99.36005773],[4.53637,0.03592915,99.35926188],[4.53637045,0.0359309,99.3584667],[4.5363709,0.03593264,99.3576722],[4.53637135,0.03593439,99.35687841],[4.5363718,0.03593613,99.35608535],[4.53637225,0.03593788,99.35529303],[4.5363727,0.03593962,99.35450148],[4.53637315,0.03594137,99.35371071],[4.5363736,0.03594312,99.35292075],[4.53637405,0.03594486,99.35213162],[4.5363745,0.03594661,99.35134333],[4.53637495,0.03594835,99.35055591],[4.5363754,0.0359501,99.34976937],[4.53637585,0.03595184,99.34898374],[4.5363763,0.03595359,99.34819904],[4.53637675,0.03595533,99.34741528],[4.5363772,0.03595708,99.34663249],[4.53637765,0.03595883,99.34585069],[4.5363781,0.03596057,99.34506989],[4.53637855,0.03596232,99.34429012],[4.536379,0.03596406,99.34351138],[4.53637945,0.03596581,99.34273367],[4.5363799,0.03596755,99.34195698],[4.53638035,0.0359693,99.34118132],[4.5363808,0.03597104,99.34040669],[4.53638125,0.03597279,99.33963308],[4.5363817,0.03597453,99.33886049],[4.53638215,0.03597628,99.33808892],[4.5363826,0.03597803,99.33731836],[4.53638305,0.03597977,99.33654883],[4.5363835,0.03598152,99.33578032],[4.53638395,0.03598326,99.33501281],[4.5363844,0.03598501,99.33424633],[4.53638485,0.03598675,99.33348085],[4.5363853,0.0359885,99.33271639],[4.53638575,0.03599024,99.33195294],[4.5363862,0.03599199,99.33119049],[4.53638665,0.03599373,99.33042905],[4.5363871,0.03599548,99.32966861],[4.53638755,0.03599723,99.32890916],[4.536388,0.03599897,99.3281507],[4.53638845,0.03600072,99.32739323],[4.5363889,0.03600246,99.32663673],[4.53638935,0.03600421,99.32588121],[4.5363898,0.03600595,99.32512665],[4.53639025,0.0360077,99.32437306],[4.5363907,0.03600944,99.32362043],[4.53639116,0.03601119,99.32286875],[4.53639161,0.03601293,99.32211802],[4.53639206,0.03601468,99.32136823],[4.53639251,0.03601642,99.32061938],[4.53639296,0.03601817,99.31987146],[4.53639341,0.03601992,99.31912447],[4.53639386,0.03602166,99.31837841],[4.53639431,0.03602341,99.31763326],[4.53639476,0.03602515,99.31688902],[4.53639521,0.0360269,99.31614569],[4.53639566,0.03602864,99.31540327],[4.53639611,0.03603039,99.31466174],[4.53639656,0.03603213,99.3139211],[4.53639701,0.03603388,99.31318135],[4.53639746,0.03603562,99.31244248],[4.53639791,0.03603737,99.31170449],[4.53639836,0.03603911,99.31096737],[4.53639882,0.03604086,99.31023112],[4.53639927,0.0360426,99.30949572],[4.53639972,0.03604435,99.30876117],[4.53640017,0.03604609,99.30802747],[4.53640062,0.03604784,99.30729459],[4.53640107,0.03604958,99.30656254],[4.53640152,0.03605133,99.30583131],[4.53640197,0.03605307,99.30510088],[4.53640242,0.03605482,99.30437124],[4.53640287,0.03605657,99.30364239],[4.53640332,0.03605831,99.30291432],[4.53640378,0.03606006,99.30218703],[4.53640423,0.0360618,99.30146049],[4.53640468,0.03606355,99.3007347],[4.53640513,0.03606529,99.30000966],[4.53640558,0.03606704,99.29928535],[4.53640603,0.03606878,99.29856177],[4.53640648,0.03607053,99.29783891],[4.53640693,0.03607227,99.29711675],[4.53640738,0.03607402,99.2963953],[4.53640783,0.03607576,99.29567453],[4.53640828,0.03607751,99.29495444],[4.53640874,0.03607925,99.29423503],[4.53640919,0.036081,99.29351628],[4.53640964,0.03608274,99.29279818],[4.53641009,0.03608449,99.29208074],[4.53641054,0.03608623,99.29136392],[4.53641099,0.03608798,99.29064774],[4.53641144,0.03608972,99.28993217],[4.53641189,0.03609147,99.28921722],[4.53641234,0.03609321,99.28850287],[4.53641279,0.03609496,99.28778911],[4.53641325,0.0360967,99.28707593],[4.5364137,0.03609845,99.28636333],[4.53641415,0.03610019,99.28565129],[4.5364146,0.03610194,99.28493981],[4.53641505,0.03610368,99.28422888],[4.5364155,0.03610543,99.28351849],[4.53641595,0.03610718,99.28280863],[4.5364164,0.03610892,99.28209929],[4.53641685,0.03611067,99.28139046],[4.5364173,0.03611241,99.28068214],[4.53641775,0.03611416,99.27997431],[4.5364182,0.0361159,99.27926697],[4.53641866,0.03611765,99.2785601],[4.53641911,0.03611939,99.2778537],[4.53641956,0.03612114,99.27714776],[4.53642001,0.03612288,99.27644226],[4.53642046,0.03612463,99.27573717],[4.53642091,0.03612637,99.27503248],[4.53642136,0.03612812,99.27432817],[4.53642181,0.03612986,99.27362423],[4.53642226,0.03613161,99.27292065],[4.53642271,0.03613335,99.27221745],[4.53642316,0.0361351,99.27151461],[4.53642361,0.03613684,99.27081213],[4.53642406,0.03613859,99.27011002],[4.53642451,0.03614034,99.26940828],[4.53642496,0.03614208,99.2687069],[4.53642541,0.03614383,99.26800588],[4.53642586,0.03614557,99.26730521],[4.53642631,0.03614732,99.2666049],[4.53642676,0.03614906,99.26590494],[4.53642721,0.03615081,99.26520532],[4.53642766,0.03615255,99.26450605],[4.53642811,0.0361543,99.26380713],[4.53642856,0.03615604,99.26310854],[4.53642901,0.03615779,99.26241029],[4.53642946,0.03615953,99.26171238],[4.53642991,0.03616128,99.26101479],[4.53643036,0.03616303,99.26031754],[4.53643081,0.03616477,99.25962061],[4.53643126,0.03616652,99.25892401],[4.53643171,0.03616826,99.25822772],[4.53643216,0.03617001,99.25753175],[4.53643261,0.03617175,99.2568361],[4.53643306,0.0361735,99.25614076],[4.53643351,0.03617524,99.25544573],[4.53643396,0.03617699,99.254751],[4.53643441,0.03617873,99.25405658],[4.53643486,0.03618048,99.25336246],[4.53643531,0.03618223,99.25266864],[4.53643576,0.03618397,99.25197511],[4.5364362,0.03618572,99.25128187],[4.53643665,0.03618746,99.25058893],[4.5364371,0.03618921,99.24989627],[4.53643755,0.03619095,99.2492039],[4.536438,0.0361927,99.2485118],[4.53643845,0.03619444,99.24781999],[4.5364389,0.03619619,99.24712845],[4.53643935,0.03619794,99.24643719],[4.5364398,0.03619968,99.24574619],[4.53644025,0.03620143,99.24505547],[4.5364407,0.03620317,99.244365],[4.53644115,0.03620492,99.2436748],[4.5364416,0.03620666,99.24298486],[4.53644205,0.03620841,99.24229517],[4.53644249,0.03621015,99.24160574],[4.53644294,0.0362119,99.24091656],[4.53644339,0.03621365,99.24022762],[4.53644384,0.03621539,99.23953894],[4.53644429,0.03621714,99.23885049],[4.53644474,0.03621888,99.23816228],[4.53644519,0.03622063,99.23747431],[4.53644564,0.03622237,99.23678657],[4.53644609,0.03622412,99.23609906],[4.53644654,0.03622586,99.23541178],[4.53644699,0.03622761,99.23472472],[4.53644743,0.03622936,99.23403789],[4.53644788,0.0362311,99.23335127],[4.53644833,0.03623285,99.23266487],[4.53644878,0.03623459,99.23197863],[4.53644923,0.03623634,99.23129255],[4.53644968,0.03623808,99.23060658],[4.53645013,0.03623983,99.2299207],[4.53645058,0.03624158,99.22923487],[4.53645103,0.03624332,99.22854908],[4.53645148,0.03624507,99.22786332],[4.53645192,0.03624681,99.22717759],[4.53645237,0.03624856,99.22649187],[4.53645282,0.0362503,99.22580618],[4.53645327,0.03625205,99.22512049],[4.53645372,0.0362538,99.2244348],[4.53645417,0.03625554,99.22374911],[4.53645462,0.03625729,99.22306341],[4.53645506,0.03625903,99.2223777],[4.53645551,0.03626078,99.22169197],[4.53645596,0.03626252,99.22100622],[4.53645641,0.03626427,99.22032043],[4.53645686,0.03626602,99.21963461],[4.53645731,0.03626776,99.21894875],[4.53645775,0.03626951,99.21826284],[4.5364582,0.03627125,99.21757687],[4.53645865,0.036273,99.21689085],[4.5364591,0.03627474,99.21620477],[4.53645955,0.03627649,99.21551861],[4.53645999,0.03627824,99.21483238],[4.53646044,0.03627998,99.21414607],[4.53646089,0.03628173,99.21345967],[4.53646134,0.03628347,99.21277318],[4.53646178,0.03628522,99.21208659],[4.53646223,0.03628697,99.21139989],[4.53646268,0.03628871,99.21071308],[4.53646313,0.03629046,99.21002613],[4.53646357,0.0362922,99.20933905],[4.53646402,0.03629395,99.20865182],[4.53646447,0.0362957,99.20796444],[4.53646492,0.03629744,99.20727689],[4.53646536,0.03629919,99.20658916],[4.53646581,0.03630093,99.20590126],[4.53646626,0.03630268,99.20521315],[4.5364667,0.03630443,99.20452485],[4.53646715,0.03630617,99.20383633],[4.5364676,0.03630792,99.20314759],[4.53646805,0.03630966,99.20245862],[4.53646849,0.03631141,99.20176941],[4.53646894,0.03631316,99.20107995],[4.53646939,0.0363149,99.20039023],[4.53646983,0.03631665,99.19970026],[4.53647028,0.0363184,99.19901004],[4.53647072,0.03632014,99.19831955],[4.53647117,0.03632189,99.19762881],[4.53647162,0.03632363,99.19693781],[4.53647206,0.03632538,99.19624655],[4.53647251,0.03632713,99.19555503],[4.53647295,0.03632887,99.19486324],[4.5364734,0.03633062,99.1941712],[4.53647385,0.03633237,99.19347889],[4.53647429,0.03633411,99.19278631],[4.53647474,0.03633586,99.19209347],[4.53647518,0.03633761,99.19140037],[4.53647563,0.03633935,99.19070699],[4.53647607,0.0363411,99.19001335],[4.53647652,0.03634285,99.18931944],[4.53647697,0.03634459,99.18862526],[4.53647741,0.03634634,99.18793081],[4.53647786,0.03634809,99.18723609],[4.5364783,0.03634983,99.18654109],[4.53647875,0.03635158,99.18584582],[4.53647919,0.03635332,99.18515027],[4.53647964,0.03635507,99.18445445],[4.53648008,0.03635682,99.18375835],[4.53648053,0.03635856,99.18306197],[4.53648097,0.03636031,99.18236531],[4.53648142,0.03636206,99.18166838],[4.53648186,0.0363638,99.18097116],[4.53648231,0.03636555,99.18027366],[4.53648275,0.0363673,99.17957587],[4.5364832,0.03636904,99.1788778],[4.53648364,0.03637079,99.17817948],[4.53648409,0.03637254,99.17748093],[4.53648453,0.03637428,99.17678216],[4.53648498,0.03637603,99.17608317],[4.53648542,0.03637778,99.17538395],[4.53648586,0.03637952,99.17468451],[4.53648631,0.03638127,99.17398484],[4.53648675,0.03638302,99.17328495],[4.5364872,0.03638476,99.17258484],[4.53648764,0.03638651,99.17188449],[4.53648809,0.03638826,99.17118392],[4.53648853,0.03639,99.17048312],[4.53648898,0.03639175,99.16978209],[4.53648942,0.0363935,99.16908083],[4.53648987,0.03639524,99.16837934],[4.53649031,0.03639699,99.16767761],[4.53649076,0.03639874,99.16697565],[4.5364912,0.03640048,99.16627346],[4.53649164,0.03640223,99.16557103],[4.53649209,0.03640398,99.16486837],[4.53649253,0.03640572,99.16416547],[4.53649298,0.03640747,99.16346233],[4.53649342,0.03640922,99.16275895],[4.53649387,0.03641096,99.16205534],[4.53649431,0.03641271,99.16135148],[4.53649476,0.03641446,99.16064738],[4.5364952,0.0364162,99.15994303],[4.53649565,0.03641795,99.15923844],[4.53649609,0.0364197,99.15853361],[4.53649654,0.03642144,99.15782853],[4.53649698,0.03642319,99.1571232],[4.53649743,0.03642494,99.15641763],[4.53649787,0.03642668,99.1557118],[4.53649831,0.03642843,99.15500573],[4.53649876,0.03643018,99.1542994],[4.5364992,0.03643192,99.15359282],[4.53649965,0.03643367,99.15288599],[4.53650009,0.03643542,99.1521789],[4.53650054,0.03643716,99.15147155],[4.53650098,0.03643891,99.15076395],[4.53650143,0.03644066,99.15005608],[4.53650187,0.0364424,99.14934796],[4.53650232,0.03644415,99.14863958],[4.53650276,0.0364459,99.14793093],[4.53650321,0.03644764,99.14722202],[4.53650366,0.03644939,99.14651284],[4.5365041,0.03645114,99.1458034],[4.53650455,0.03645288,99.14509369],[4.53650499,0.03645463,99.14438372],[4.53650543,0.03645637,99.14367347],[4.53650588,0.03645811,99.14296295],[4.53650633,0.03645986,99.14225216],[4.53650677,0.03646161,99.14154109],[4.53650722,0.03646335,99.14082975],[4.53650766,0.0364651,99.14011813],[4.53650811,0.03646685,99.13940624],[4.53650855,0.03646859,99.13869406],[4.536509,0.03647034,99.13798161],[4.53650945,0.03647208,99.13726887],[4.53650989,0.03647383,99.13655585],[4.53651034,0.03647558,99.13584254],[4.53651078,0.03647732,99.13512891],[4.53651123,0.03647907,99.13441493],[4.53651168,0.03648082,99.13370056],[4.53651212,0.03648256,99.13298576],[4.53651257,0.03648431,99.13227049],[4.53651301,0.03648605,99.13155472],[4.53651346,0.0364878,99.1308384],[4.53651391,0.03648955,99.1301215],[4.53651435,0.03649129,99.12940399],[4.5365148,0.03649304,99.12868582],[4.53651524,0.03649479,99.12796696],[4.53651091,0.0364959,99.11451101]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-4,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-4,"type":"border","predecessorId":0,"sOffset":248.3390056326}},{"geometry":{"coordinates":[[[4.53651524,0.03649479,99.12796696],[4.5365148,0.03649304,99.12868582],[4.53651435,0.03649129,99.12940399],[4.53651391,0.03648955,99.1301215],[4.53651346,0.0364878,99.1308384],[4.53651301,0.03648605,99.13155472],[4.53651257,0.03648431,99.13227049],[4.53651212,0.03648256,99.13298576],[4.53651168,0.03648082,99.13370056],[4.53651123,0.03647907,99.13441493],[4.53651078,0.03647732,99.13512891],[4.53651034,0.03647558,99.13584254],[4.53650989,0.03647383,99.13655585],[4.53650945,0.03647208,99.13726887],[4.536509,0.03647034,99.13798161],[4.53650855,0.03646859,99.13869406],[4.53650811,0.03646685,99.13940624],[4.53650766,0.0364651,99.14011813],[4.53650722,0.03646335,99.14082975],[4.53650677,0.03646161,99.14154109],[4.53650633,0.03645986,99.14225216],[4.53650588,0.03645811,99.14296295],[4.53650543,0.03645637,99.14367347],[4.53650499,0.03645463,99.14438372],[4.53650455,0.03645288,99.14509369],[4.5365041,0.03645114,99.1458034],[4.53650366,0.03644939,99.14651284],[4.53650321,0.03644764,99.14722202],[4.53650276,0.0364459,99.14793093],[4.53650232,0.03644415,99.14863958],[4.53650187,0.0364424,99.14934796],[4.53650143,0.03644066,99.15005608],[4.53650098,0.03643891,99.15076395],[4.53650054,0.03643716,99.15147155],[4.53650009,0.03643542,99.1521789],[4.53649965,0.03643367,99.15288599],[4.5364992,0.03643192,99.15359282],[4.53649876,0.03643018,99.1542994],[4.53649831,0.03642843,99.15500573],[4.53649787,0.03642668,99.1557118],[4.53649743,0.03642494,99.15641763],[4.53649698,0.03642319,99.1571232],[4.53649654,0.03642144,99.15782853],[4.53649609,0.0364197,99.15853361],[4.53649565,0.03641795,99.15923844],[4.5364952,0.0364162,99.15994303],[4.53649476,0.03641446,99.16064738],[4.53649431,0.03641271,99.16135148],[4.53649387,0.03641096,99.16205534],[4.53649342,0.03640922,99.16275895],[4.53649298,0.03640747,99.16346233],[4.53649253,0.03640572,99.16416547],[4.53649209,0.03640398,99.16486837],[4.53649164,0.03640223,99.16557103],[4.5364912,0.03640048,99.16627346],[4.53649076,0.03639874,99.16697565],[4.53649031,0.03639699,99.16767761],[4.53648987,0.03639524,99.16837934],[4.53648942,0.0363935,99.16908083],[4.53648898,0.03639175,99.16978209],[4.53648853,0.03639,99.17048312],[4.53648809,0.03638826,99.17118392],[4.53648764,0.03638651,99.17188449],[4.5364872,0.03638476,99.17258484],[4.53648675,0.03638302,99.17328495],[4.53648631,0.03638127,99.17398484],[4.53648586,0.03637952,99.17468451],[4.53648542,0.03637778,99.17538395],[4.53648498,0.03637603,99.17608317],[4.53648453,0.03637428,99.17678216],[4.53648409,0.03637254,99.17748093],[4.53648364,0.03637079,99.17817948],[4.5364832,0.03636904,99.1788778],[4.53648275,0.0363673,99.17957587],[4.53648231,0.03636555,99.18027366],[4.53648186,0.0363638,99.18097116],[4.53648142,0.03636206,99.18166838],[4.53648097,0.03636031,99.18236531],[4.53648053,0.03635856,99.18306197],[4.53648008,0.03635682,99.18375835],[4.53647964,0.03635507,99.18445445],[4.53647919,0.03635332,99.18515027],[4.53647875,0.03635158,99.18584582],[4.5364783,0.03634983,99.18654109],[4.53647786,0.03634809,99.18723609],[4.53647741,0.03634634,99.18793081],[4.53647697,0.03634459,99.18862526],[4.53647652,0.03634285,99.18931944],[4.53647607,0.0363411,99.19001335],[4.53647563,0.03633935,99.19070699],[4.53647518,0.03633761,99.19140037],[4.53647474,0.03633586,99.19209347],[4.53647429,0.03633411,99.19278631],[4.53647385,0.03633237,99.19347889],[4.5364734,0.03633062,99.1941712],[4.53647295,0.03632887,99.19486324],[4.53647251,0.03632713,99.19555503],[4.53647206,0.03632538,99.19624655],[4.53647162,0.03632363,99.19693781],[4.53647117,0.03632189,99.19762881],[4.53647072,0.03632014,99.19831955],[4.53647028,0.0363184,99.19901004],[4.53646983,0.03631665,99.19970026],[4.53646939,0.0363149,99.20039023],[4.53646894,0.03631316,99.20107995],[4.53646849,0.03631141,99.20176941],[4.53646805,0.03630966,99.20245862],[4.5364676,0.03630792,99.20314759],[4.53646715,0.03630617,99.20383633],[4.5364667,0.03630443,99.20452485],[4.53646626,0.03630268,99.20521315],[4.53646581,0.03630093,99.20590126],[4.53646536,0.03629919,99.20658916],[4.53646492,0.03629744,99.20727689],[4.53646447,0.0362957,99.20796444],[4.53646402,0.03629395,99.20865182],[4.53646357,0.0362922,99.20933905],[4.53646313,0.03629046,99.21002613],[4.53646268,0.03628871,99.21071308],[4.53646223,0.03628697,99.21139989],[4.53646178,0.03628522,99.21208659],[4.53646134,0.03628347,99.21277318],[4.53646089,0.03628173,99.21345967],[4.53646044,0.03627998,99.21414607],[4.53645999,0.03627824,99.21483238],[4.53645955,0.03627649,99.21551861],[4.5364591,0.03627474,99.21620477],[4.53645865,0.036273,99.21689085],[4.5364582,0.03627125,99.21757687],[4.53645775,0.03626951,99.21826284],[4.53645731,0.03626776,99.21894875],[4.53645686,0.03626602,99.21963461],[4.53645641,0.03626427,99.22032043],[4.53645596,0.03626252,99.22100622],[4.53645551,0.03626078,99.22169197],[4.53645506,0.03625903,99.2223777],[4.53645462,0.03625729,99.22306341],[4.53645417,0.03625554,99.22374911],[4.53645372,0.0362538,99.2244348],[4.53645327,0.03625205,99.22512049],[4.53645282,0.0362503,99.22580618],[4.53645237,0.03624856,99.22649187],[4.53645192,0.03624681,99.22717759],[4.53645148,0.03624507,99.22786332],[4.53645103,0.03624332,99.22854908],[4.53645058,0.03624158,99.22923487],[4.53645013,0.03623983,99.2299207],[4.53644968,0.03623808,99.23060658],[4.53644923,0.03623634,99.23129255],[4.53644878,0.03623459,99.23197863],[4.53644833,0.03623285,99.23266487],[4.53644788,0.0362311,99.23335127],[4.53644743,0.03622936,99.23403789],[4.53644699,0.03622761,99.23472472],[4.53644654,0.03622586,99.23541178],[4.53644609,0.03622412,99.23609906],[4.53644564,0.03622237,99.23678657],[4.53644519,0.03622063,99.23747431],[4.53644474,0.03621888,99.23816228],[4.53644429,0.03621714,99.23885049],[4.53644384,0.03621539,99.23953894],[4.53644339,0.03621365,99.24022762],[4.53644294,0.0362119,99.24091656],[4.53644249,0.03621015,99.24160574],[4.53644205,0.03620841,99.24229517],[4.5364416,0.03620666,99.24298486],[4.53644115,0.03620492,99.2436748],[4.5364407,0.03620317,99.244365],[4.53644025,0.03620143,99.24505547],[4.5364398,0.03619968,99.24574619],[4.53643935,0.03619794,99.24643719],[4.5364389,0.03619619,99.24712845],[4.53643845,0.03619444,99.24781999],[4.536438,0.0361927,99.2485118],[4.53643755,0.03619095,99.2492039],[4.5364371,0.03618921,99.24989627],[4.53643665,0.03618746,99.25058893],[4.5364362,0.03618572,99.25128187],[4.53643576,0.03618397,99.25197511],[4.53643531,0.03618223,99.25266864],[4.53643486,0.03618048,99.25336246],[4.53643441,0.03617873,99.25405658],[4.53643396,0.03617699,99.254751],[4.53643351,0.03617524,99.25544573],[4.53643306,0.0361735,99.25614076],[4.53643261,0.03617175,99.2568361],[4.53643216,0.03617001,99.25753175],[4.53643171,0.03616826,99.25822772],[4.53643126,0.03616652,99.25892401],[4.53643081,0.03616477,99.25962061],[4.53643036,0.03616303,99.26031754],[4.53642991,0.03616128,99.26101479],[4.53642946,0.03615953,99.26171238],[4.53642901,0.03615779,99.26241029],[4.53642856,0.03615604,99.26310854],[4.53642811,0.0361543,99.26380713],[4.53642766,0.03615255,99.26450605],[4.53642721,0.03615081,99.26520532],[4.53642676,0.03614906,99.26590494],[4.53642631,0.03614732,99.2666049],[4.53642586,0.03614557,99.26730521],[4.53642541,0.03614383,99.26800588],[4.53642496,0.03614208,99.2687069],[4.53642451,0.03614034,99.26940828],[4.53642406,0.03613859,99.27011002],[4.53642361,0.03613684,99.27081213],[4.53642316,0.0361351,99.27151461],[4.53642271,0.03613335,99.27221745],[4.53642226,0.03613161,99.27292065],[4.53642181,0.03612986,99.27362423],[4.53642136,0.03612812,99.27432817],[4.53642091,0.03612637,99.27503248],[4.53642046,0.03612463,99.27573717],[4.53642001,0.03612288,99.27644226],[4.53641956,0.03612114,99.27714776],[4.53641911,0.03611939,99.2778537],[4.53641866,0.03611765,99.2785601],[4.5364182,0.0361159,99.27926697],[4.53641775,0.03611416,99.27997431],[4.5364173,0.03611241,99.28068214],[4.53641685,0.03611067,99.28139046],[4.5364164,0.03610892,99.28209929],[4.53641595,0.03610718,99.28280863],[4.5364155,0.03610543,99.28351849],[4.53641505,0.03610368,99.28422888],[4.5364146,0.03610194,99.28493981],[4.53641415,0.03610019,99.28565129],[4.5364137,0.03609845,99.28636333],[4.53641325,0.0360967,99.28707593],[4.53641279,0.03609496,99.28778911],[4.53641234,0.03609321,99.28850287],[4.53641189,0.03609147,99.28921722],[4.53641144,0.03608972,99.28993217],[4.53641099,0.03608798,99.29064774],[4.53641054,0.03608623,99.29136392],[4.53641009,0.03608449,99.29208074],[4.53640964,0.03608274,99.29279818],[4.53640919,0.036081,99.29351628],[4.53640874,0.03607925,99.29423503],[4.53640828,0.03607751,99.29495444],[4.53640783,0.03607576,99.29567453],[4.53640738,0.03607402,99.2963953],[4.53640693,0.03607227,99.29711675],[4.53640648,0.03607053,99.29783891],[4.53640603,0.03606878,99.29856177],[4.53640558,0.03606704,99.29928535],[4.53640513,0.03606529,99.30000966],[4.53640468,0.03606355,99.3007347],[4.53640423,0.0360618,99.30146049],[4.53640378,0.03606006,99.30218703],[4.53640332,0.03605831,99.30291432],[4.53640287,0.03605657,99.30364239],[4.53640242,0.03605482,99.30437124],[4.53640197,0.03605307,99.30510088],[4.53640152,0.03605133,99.30583131],[4.53640107,0.03604958,99.30656254],[4.53640062,0.03604784,99.30729459],[4.53640017,0.03604609,99.30802747],[4.53639972,0.03604435,99.30876117],[4.53639927,0.0360426,99.30949572],[4.53639882,0.03604086,99.31023112],[4.53639836,0.03603911,99.31096737],[4.53639791,0.03603737,99.31170449],[4.53639746,0.03603562,99.31244248],[4.53639701,0.03603388,99.31318135],[4.53639656,0.03603213,99.3139211],[4.53639611,0.03603039,99.31466174],[4.53639566,0.03602864,99.31540327],[4.53639521,0.0360269,99.31614569],[4.53639476,0.03602515,99.31688902],[4.53639431,0.03602341,99.31763326],[4.53639386,0.03602166,99.31837841],[4.53639341,0.03601992,99.31912447],[4.53639296,0.03601817,99.31987146],[4.53639251,0.03601642,99.32061938],[4.53639206,0.03601468,99.32136823],[4.53639161,0.03601293,99.32211802],[4.53639116,0.03601119,99.32286875],[4.5363907,0.03600944,99.32362043],[4.53639025,0.0360077,99.32437306],[4.5363898,0.03600595,99.32512665],[4.53638935,0.03600421,99.32588121],[4.5363889,0.03600246,99.32663673],[4.53638845,0.03600072,99.32739323],[4.536388,0.03599897,99.3281507],[4.53638755,0.03599723,99.32890916],[4.5363871,0.03599548,99.32966861],[4.53638665,0.03599373,99.33042905],[4.5363862,0.03599199,99.33119049],[4.53638575,0.03599024,99.33195294],[4.5363853,0.0359885,99.33271639],[4.53638485,0.03598675,99.33348085],[4.5363844,0.03598501,99.33424633],[4.53638395,0.03598326,99.33501281],[4.5363835,0.03598152,99.33578032],[4.53638305,0.03597977,99.33654883],[4.5363826,0.03597803,99.33731836],[4.53638215,0.03597628,99.33808892],[4.5363817,0.03597453,99.33886049],[4.53638125,0.03597279,99.33963308],[4.5363808,0.03597104,99.34040669],[4.53638035,0.0359693,99.34118132],[4.5363799,0.03596755,99.34195698],[4.53637945,0.03596581,99.34273367],[4.536379,0.03596406,99.34351138],[4.53637855,0.03596232,99.34429012],[4.5363781,0.03596057,99.34506989],[4.53637765,0.03595883,99.34585069],[4.5363772,0.03595708,99.34663249],[4.53637675,0.03595533,99.34741528],[4.5363763,0.03595359,99.34819904],[4.53637585,0.03595184,99.34898374],[4.5363754,0.0359501,99.34976937],[4.53637495,0.03594835,99.35055591],[4.5363745,0.03594661,99.35134333],[4.53637405,0.03594486,99.35213162],[4.5363736,0.03594312,99.35292075],[4.53637315,0.03594137,99.35371071],[4.5363727,0.03593962,99.35450148],[4.53637225,0.03593788,99.35529303],[4.5363718,0.03593613,99.35608535],[4.53637135,0.03593439,99.35687841],[4.5363709,0.03593264,99.3576722],[4.53637045,0.0359309,99.3584667],[4.53637,0.03592915,99.35926188],[4.53636955,0.03592741,99.36005773],[4.5363691,0.03592566,99.36085423],[4.53636865,0.03592392,99.36165135],[4.5363682,0.03592217,99.36244908],[4.53636775,0.03592042,99.36324739],[4.5363673,0.03591868,99.36404627],[4.53636685,0.03591693,99.3648457],[4.5363664,0.03591519,99.36564565],[4.53636595,0.03591344,99.3664461],[4.5363655,0.0359117,99.36724704],[4.53636505,0.03590995,99.36804844],[4.5363646,0.03590821,99.36885028],[4.53636415,0.03590646,99.36965254],[4.5363637,0.03590472,99.37045521],[4.53636325,0.03590297,99.37125827],[4.5363628,0.03590122,99.3720617],[4.53636235,0.03589948,99.37286548],[4.5363619,0.03589773,99.37366961],[4.53636145,0.03589599,99.37447405],[4.536361,0.03589424,99.3752788],[4.53636055,0.0358925,99.37608385],[4.5363601,0.03589075,99.37688916],[4.53635965,0.03588901,99.37769473],[4.5363592,0.03588726,99.37850053],[4.53635875,0.03588552,99.37930656],[4.5363583,0.03588377,99.3801128],[4.53635785,0.03588202,99.38091922],[4.5363574,0.03588028,99.38172582],[4.53635695,0.03587853,99.38253257],[4.5363565,0.03587679,99.38333946],[4.53635605,0.03587504,99.38414648],[4.5363556,0.0358733,99.3849536],[4.53635514,0.03587155,99.3857608],[4.53635469,0.03586981,99.38656809],[4.53635424,0.03586806,99.38737542],[4.53635379,0.03586632,99.3881828],[4.53635334,0.03586457,99.3889902],[4.53635289,0.03586283,99.3897976],[4.53635244,0.03586108,99.39060499],[4.53635199,0.03585934,99.39141236],[4.53635154,0.03585759,99.39221968],[4.53635109,0.03585585,99.39302694],[4.53635064,0.0358541,99.39383413],[4.53635018,0.03585235,99.39464122],[4.53634973,0.03585061,99.3954482],[4.53634928,0.03584886,99.39625505],[4.53634883,0.03584712,99.39706176],[4.53634838,0.03584537,99.39786831],[4.53634793,0.03584363,99.39867468],[4.53634748,0.03584188,99.39948086],[4.53634703,0.03584014,99.40028683],[4.53634658,0.03583839,99.40109257],[4.53634612,0.03583665,99.40189807],[4.53634567,0.0358349,99.4027033],[4.53634522,0.03583316,99.40350827],[4.53634477,0.03583141,99.40431293],[4.53634432,0.03582967,99.40511729],[4.53634387,0.03582792,99.40592133],[4.53634342,0.03582618,99.40672502],[4.53634296,0.03582443,99.40752835],[4.53634251,0.03582269,99.40833131],[4.53634206,0.03582094,99.40913389],[4.53634161,0.0358192,99.40993606],[4.53634116,0.03581745,99.4107378],[4.53634071,0.03581571,99.41153912],[4.53634025,0.03581396,99.41233998],[4.5363398,0.03581222,99.41314038],[4.53633935,0.03581047,99.41394029],[4.5363389,0.03580873,99.41473971],[4.53633845,0.03580698,99.41553861],[4.536338,0.03580524,99.41633698],[4.53633754,0.03580349,99.41713481],[4.53633709,0.03580175,99.41793208],[4.53633664,0.0358,99.41872877],[4.53633619,0.03579826,99.41952487],[4.53633574,0.03579651,99.42032037],[4.53633528,0.03579477,99.42111524],[4.53633483,0.03579302,99.42190947],[4.53633438,0.03579128,99.42270305],[4.53633393,0.03578953,99.42349596],[4.53633348,0.03578779,99.42428819],[4.53633302,0.03578604,99.42507971],[4.53633257,0.0357843,99.42587052],[4.53633212,0.03578255,99.42666059],[4.53633167,0.03578081,99.42744992],[4.53633121,0.03577906,99.42823848],[4.53633076,0.03577732,99.42902627],[4.53633031,0.03577557,99.42981326],[4.53632986,0.03577383,99.43059943],[4.53632941,0.03577208,99.43138479],[4.53632895,0.03577034,99.4321693],[4.5363285,0.03576859,99.43295295],[4.53632805,0.03576685,99.43373574],[4.5363276,0.0357651,99.43451763],[4.53632714,0.03576336,99.43529862],[4.53632669,0.03576161,99.43607868],[4.53632624,0.03575987,99.43685782],[4.53632579,0.03575812,99.437636],[4.53632533,0.03575638,99.43841321],[4.53632488,0.03575463,99.43918944],[4.53632443,0.03575289,99.43996468],[4.53632398,0.03575114,99.4407389],[4.53632352,0.0357494,99.44151209],[4.53632307,0.03574765,99.44228423],[4.53632262,0.03574591,99.44305531],[4.53632217,0.03574416,99.44382532],[4.53632171,0.03574242,99.44459423],[4.53632126,0.03574067,99.44536204],[4.53632081,0.03573893,99.44612872],[4.53632035,0.03573718,99.44689426],[4.5363199,0.03573544,99.44765865],[4.53631945,0.03573369,99.44842186],[4.536319,0.03573195,99.44918389],[4.53631854,0.0357302,99.44994472],[4.53631809,0.03572846,99.45070433],[4.53631764,0.03572671,99.4514627],[4.53631718,0.03572497,99.45221983],[4.53631673,0.03572322,99.45297569],[4.53631628,0.03572148,99.45373026],[4.53631583,0.03571973,99.45448354],[4.53631537,0.03571799,99.45523551],[4.53631492,0.03571625,99.45598612],[4.53631447,0.0357145,99.45673538],[4.53631401,0.03571276,99.45748325],[4.53631356,0.03571101,99.45822971],[4.53631311,0.03570927,99.45897474],[4.53631266,0.03570752,99.45971832],[4.5363122,0.03570578,99.46046042],[4.53631175,0.03570403,99.46120102],[4.5363113,0.03570229,99.4619401],[4.53631084,0.03570054,99.46267764],[4.53631039,0.0356988,99.46341362],[4.53630994,0.03569705,99.46414801],[4.53630948,0.03569531,99.46488079],[4.53630903,0.03569357,99.46561194],[4.53630858,0.03569182,99.46634144],[4.53630812,0.03569008,99.46706926],[4.53630767,0.03568833,99.46779539],[4.53630721,0.03568659,99.4685198],[4.53630676,0.03568484,99.46924246],[4.53630631,0.0356831,99.46996337],[4.53630585,0.03568135,99.47068248],[4.5363054,0.03567961,99.47139979],[4.53630495,0.03567786,99.47211527],[4.53630449,0.03567612,99.4728289],[4.53630404,0.03567438,99.47354066],[4.53630358,0.03567263,99.47425052],[4.53630313,0.03567089,99.47495847],[4.53630268,0.03566914,99.47566447],[4.53630222,0.0356674,99.47636852],[4.53630177,0.03566565,99.47707058],[4.53630131,0.03566391,99.47777065],[4.53630086,0.03566216,99.47846871],[4.5363004,0.03566042,99.47916476],[4.53629995,0.03565868,99.47985878],[4.53629949,0.03565693,99.48055078],[4.53629904,0.03565519,99.48124074],[4.53629858,0.03565344,99.48192866],[4.53629813,0.0356517,99.48261453],[4.53629767,0.03564995,99.48329834],[4.53629722,0.03564821,99.48398008],[4.53629676,0.03564647,99.48465975],[4.53629631,0.03564472,99.48533734],[4.53629585,0.03564298,99.48601283],[4.5362954,0.03564123,99.48668623],[4.53629494,0.03563949,99.48735752],[4.53629449,0.03563775,99.4880267],[4.53629403,0.035636,99.48869376],[4.53629358,0.03563426,99.48935869],[4.53629312,0.03563251,99.49002148],[4.53629266,0.03563077,99.49068213],[4.53629221,0.03562903,99.49134062],[4.53629175,0.03562728,99.49199695],[4.5362913,0.03562554,99.49265111],[4.53629084,0.03562379,99.4933031],[4.53629039,0.03562205,99.4939529],[4.53628993,0.03562031,99.4946005],[4.53628947,0.03561856,99.49524591],[4.53628902,0.03561682,99.4958891],[4.53628856,0.03561507,99.49653007],[4.53628811,0.03561333,99.49716882],[4.53628765,0.03561159,99.49780534],[4.5362872,0.03560984,99.49843961],[4.53628674,0.0356081,99.49907163],[4.53628628,0.03560635,99.49970139],[4.53628583,0.03560461,99.50032888],[4.53628537,0.03560287,99.5009541],[4.53628492,0.03560112,99.50157703],[4.53628446,0.03559938,99.50219766],[4.53628401,0.03559763,99.502816],[4.53628355,0.03559589,99.50343202],[4.53628309,0.03559415,99.50404573],[4.53628264,0.0355924,99.5046571],[4.53628218,0.03559066,99.50526614],[4.53628173,0.03558891,99.50587283],[4.53628127,0.03558717,99.50647717],[4.53628082,0.03558543,99.50707914],[4.53628036,0.03558368,99.50767874],[4.5362799,0.03558194,99.50827596],[4.53627945,0.03558019,99.50887082],[4.53627899,0.03557845,99.50946332],[4.53627854,0.0355767,99.5100535],[4.53627808,0.03557496,99.51064136],[4.53627763,0.03557322,99.51122693],[4.53627717,0.03557147,99.51181023],[4.53627672,0.03556973,99.51239128],[4.53627626,0.03556798,99.51297009],[4.53627581,0.03556624,99.51354669],[4.53627535,0.0355645,99.51412109],[4.5362749,0.03556275,99.51469331],[4.53627444,0.03556101,99.51526338],[4.53627399,0.03555926,99.51583131],[4.53627353,0.03555752,99.51639712],[4.53627308,0.03555577,99.51696084],[4.53627262,0.03555403,99.51752247],[4.53627217,0.03555229,99.51808203],[4.53627172,0.03555054,99.51863951],[4.53627126,0.0355488,99.51919491],[4.53627081,0.03554705,99.51974823],[4.53627035,0.03554531,99.52029947],[4.5362699,0.03554356,99.52084861],[4.53626945,0.03554182,99.52139565],[4.53626899,0.03554007,99.52194059],[4.53626854,0.03553833,99.52248342],[4.53626809,0.03553659,99.52302415],[4.53626763,0.03553484,99.52356276],[4.53626718,0.0355331,99.52409925],[4.53626672,0.03553135,99.52463362],[4.53626627,0.03552961,99.52516585],[4.53626582,0.03552786,99.52569596],[4.53626536,0.03552612,99.52622393],[4.53626491,0.03552437,99.52674976],[4.53626446,0.03552263,99.52727344],[4.53626401,0.03552088,99.52779497],[4.53626355,0.03551914,99.52831435],[4.5362631,0.0355174,99.52883157],[4.53626265,0.03551565,99.52934663],[4.53626219,0.03551391,99.52985952],[4.53626174,0.03551216,99.53037024],[4.53626129,0.03551042,99.53087878],[4.53626083,0.03550867,99.53138515],[4.53626038,0.03550693,99.53188933],[4.53625993,0.03550518,99.53239132],[4.53625947,0.03550344,99.53289113],[4.53625902,0.03550169,99.53338873],[4.53625857,0.03549995,99.53388414],[4.53625812,0.0354982,99.53437734],[4.53625766,0.03549646,99.53486833],[4.53625721,0.03549471,99.53535711],[4.53625676,0.03549297,99.53584367],[4.5362563,0.03549123,99.53632801],[4.53625585,0.03548948,99.53681013],[4.5362554,0.03548774,99.53729002],[4.53625494,0.03548599,99.53776767],[4.53625449,0.03548425,99.53824308],[4.53625404,0.0354825,99.53871626],[4.53625358,0.03548076,99.53918718],[4.53625313,0.03547901,99.53965586],[4.53625267,0.03547727,99.54012228],[4.53625222,0.03547553,99.54058645],[4.53625177,0.03547378,99.54104835],[4.53625131,0.03547204,99.54150798],[4.53625086,0.03547029,99.54196534],[4.5362504,0.03546855,99.54242043],[4.53624995,0.0354668,99.54287323],[4.5362495,0.03546506,99.54332375],[4.53624904,0.03546331,99.54377199],[4.53624859,0.03546157,99.54421793],[4.53624813,0.03545983,99.54466157],[4.53624768,0.03545808,99.54510291],[4.53624722,0.03545634,99.54554195],[4.53624677,0.03545459,99.54597867],[4.53624631,0.03545285,99.54641308],[4.53624586,0.03545111,99.54684518],[4.5362454,0.03544936,99.54727495],[4.53624495,0.03544762,99.54770239],[4.53624449,0.03544587,99.54812751],[4.53624403,0.03544413,99.54855032],[4.53624358,0.03544239,99.54897085],[4.53624312,0.03544064,99.5493891],[4.53624267,0.0354389,99.5498051],[4.53624221,0.03543716,99.55021885],[4.53624175,0.03543541,99.55063038],[4.5362413,0.03543367,99.5510397],[4.53624084,0.03543192,99.55144683],[4.53624038,0.03543018,99.55185178],[4.53623993,0.03542844,99.55225457],[4.53623947,0.03542669,99.55265521],[4.53623901,0.03542495,99.55305373],[4.53623855,0.03542321,99.55345014],[4.5362381,0.03542146,99.55384445],[4.53623764,0.03541972,99.55423668],[4.53623718,0.03541798,99.55462684],[4.53623672,0.03541623,99.55501496],[4.53623627,0.03541449,99.55540105],[4.53623581,0.03541275,99.55578512],[4.53623535,0.035411,99.5561672],[4.53623489,0.03540926,99.5565473],[4.53623443,0.03540752,99.55692545],[4.53623398,0.03540577,99.55730166],[4.53623352,0.03540403,99.55767595],[4.53623306,0.03540229,99.55804834],[4.5362326,0.03540054,99.55841884],[4.53623214,0.0353988,99.55878747],[4.53623168,0.03539706,99.55915423],[4.53623123,0.03539531,99.55951915],[4.53623077,0.03539357,99.55988224],[4.53623031,0.03539183,99.56024351],[4.53622985,0.03539008,99.56060299],[4.53622939,0.03538834,99.56096068],[4.53622893,0.0353866,99.5613166],[4.53622847,0.03538486,99.56167076],[4.53622802,0.03538311,99.56202319],[4.53622756,0.03538137,99.56237389],[4.5362271,0.03537963,99.56272288],[4.53622664,0.03537788,99.56307017],[4.53622618,0.03537614,99.56341579],[4.53622572,0.0353744,99.56375974],[4.53622526,0.03537265,99.56410204],[4.5362248,0.03537091,99.5644427],[4.53622434,0.03536917,99.56478174],[4.53622389,0.03536742,99.56511918],[4.53622343,0.03536568,99.56545503],[4.53622297,0.03536394,99.56578931],[4.53622251,0.0353622,99.56612202],[4.53622205,0.03536045,99.56645319],[4.53622159,0.03535871,99.56678284],[4.53622113,0.03535697,99.56711097],[4.53622067,0.03535522,99.56743759],[4.53622022,0.03535348,99.56776274],[4.53621976,0.03535174,99.56808642],[4.5362193,0.03534999,99.56840864],[4.53621884,0.03534825,99.56872943],[4.53621838,0.03534651,99.56904879],[4.53621792,0.03534476,99.56936675],[4.53621746,0.03534302,99.56968331],[4.536217,0.03534128,99.5699985],[4.53621655,0.03533954,99.57031233],[4.53621609,0.03533779,99.57062481],[4.53621563,0.03533605,99.57093596],[4.53621517,0.03533431,99.5712458],[4.53621471,0.03533256,99.57155433],[4.53621425,0.03533082,99.57186159],[4.5362138,0.03532908,99.57216757],[4.53621334,0.03532733,99.5724723],[4.53621288,0.03532559,99.57277579],[4.53621242,0.03532385,99.57307807],[4.53621196,0.0353221,99.57337913],[4.53621151,0.03532036,99.573679],[4.53621105,0.03531862,99.5739777],[4.53621059,0.03531687,99.57427524],[4.53621013,0.03531513,99.57457162],[4.53620967,0.03531339,99.57486684],[4.53620922,0.03531164,99.5751609],[4.53620876,0.0353099,99.57545381],[4.5362083,0.03530816,99.57574557],[4.53620784,0.03530641,99.57603617],[4.53620739,0.03530467,99.57632563],[4.53620693,0.03530293,99.57661393],[4.53620647,0.03530118,99.57690109],[4.53620602,0.03529944,99.5771871],[4.53620556,0.0352977,99.57747196],[4.5362051,0.03529595,99.57775568],[4.53620464,0.03529421,99.57803825],[4.53620419,0.03529247,99.57831968],[4.53620373,0.03529072,99.57859997],[4.53620327,0.03528898,99.57887912],[4.53620282,0.03528724,99.57915713],[4.53620236,0.03528549,99.579434],[4.5362019,0.03528375,99.57970974],[4.53620145,0.03528201,99.57998433],[4.53620099,0.03528026,99.5802578],[4.53620053,0.03527852,99.58053013],[4.53620008,0.03527677,99.58080133],[4.53619962,0.03527503,99.58107139],[4.53619916,0.03527329,99.58134033],[4.53619871,0.03527154,99.58160813],[4.53619825,0.0352698,99.58187481],[4.53619779,0.03526806,99.58214036],[4.53619734,0.03526631,99.58240479],[4.53619688,0.03526457,99.58266808],[4.53619642,0.03526283,99.58293026],[4.53619597,0.03526108,99.5831913],[4.53619551,0.03525934,99.58345123],[4.53619505,0.0352576,99.58371004],[4.5361946,0.03525585,99.58396772],[4.53619414,0.03525411,99.58422428],[4.53619368,0.03525236,99.58447973],[4.53619323,0.03525062,99.58473406],[4.53619277,0.03524888,99.58498728],[4.53619231,0.03524713,99.5852394],[4.53619186,0.03524539,99.58549041],[4.5361914,0.03524365,99.58574031],[4.53619094,0.0352419,99.58598913],[4.53619049,0.03524016,99.58623684],[4.53619003,0.03523842,99.58648347],[4.53618957,0.03523667,99.58672901],[4.53618912,0.03523493,99.58697345],[4.53618866,0.03523319,99.58721682],[4.5361882,0.03523144,99.5874591],[4.53618775,0.0352297,99.5877003],[4.53618729,0.03522795,99.58794042],[4.53618683,0.03522621,99.58817947],[4.53618638,0.03522447,99.58841745],[4.53618592,0.03522272,99.58865435],[4.53618546,0.03522098,99.58889019],[4.53618501,0.03521924,99.58912496],[4.53618455,0.03521749,99.58935867],[4.53618409,0.03521575,99.58959132],[4.53618364,0.03521401,99.58982291],[4.53618318,0.03521226,99.59005344],[4.53618272,0.03521052,99.59028291],[4.53618226,0.03520878,99.59051134],[4.53618181,0.03520703,99.59073871],[4.53618135,0.03520529,99.59096504],[4.53618089,0.03520355,99.59119032],[4.53618043,0.0352018,99.59141456],[4.53617998,0.03520006,99.59163776],[4.53617952,0.03519832,99.59185992],[4.53617906,0.03519657,99.59208104],[4.5361786,0.03519483,99.59230113],[4.53617815,0.03519309,99.59252018],[4.53617769,0.03519134,99.59273821],[4.53617723,0.0351896,99.5929552],[4.53617677,0.03518786,99.59317117],[4.53617632,0.03518611,99.59338612],[4.53617586,0.03518437,99.59360005],[4.5361754,0.03518263,99.59381295],[4.53617494,0.03518088,99.59402484],[4.53617448,0.03517914,99.59423571],[4.53617402,0.0351774,99.59444557],[4.53617357,0.03517566,99.59465441],[4.53617311,0.03517391,99.59486225],[4.53617265,0.03517217,99.59506907],[4.53617219,0.03517043,99.5952749],[4.53617173,0.03516868,99.59547971],[4.53617127,0.03516694,99.59568353],[4.53617081,0.0351652,99.59588635],[4.53617035,0.03516345,99.59608816],[4.5361699,0.03516171,99.59628899],[4.53616944,0.03515997,99.59648881],[4.53616898,0.03515823,99.59668765],[4.53616852,0.03515648,99.59688549],[4.53616806,0.03515474,99.59708238],[4.5361676,0.035153,99.59727831],[4.53616714,0.03515126,99.59747333],[4.53616668,0.03514951,99.59766746],[4.53616622,0.03514777,99.59786071],[4.53616576,0.03514603,99.59805312],[4.5361653,0.03514428,99.59824471],[4.53616484,0.03514254,99.59843549],[4.53616438,0.0351408,99.59862551],[4.53616392,0.03513906,99.59881477],[4.53616346,0.03513731,99.59900331],[4.536163,0.03513557,99.59919115],[4.53616254,0.03513383,99.59937831],[4.53616208,0.03513209,99.59956482],[4.53616162,0.03513034,99.5997507],[4.53616116,0.0351286,99.59993599],[4.5361607,0.03512686,99.60012069],[4.53616024,0.03512512,99.60030484],[4.53615978,0.03512337,99.60048846],[4.53615932,0.03512163,99.60067157],[4.53615886,0.03511989,99.60085421],[4.5361584,0.03511815,99.6010364],[4.53615794,0.0351164,99.60121815],[4.53615748,0.03511466,99.6013995],[4.53615702,0.03511292,99.60158047],[4.53615656,0.03511118,99.60176109],[4.5361561,0.03510943,99.60194137],[4.53615564,0.03510769,99.60212135],[4.53615518,0.03510595,99.60230106],[4.53615472,0.0351042,99.60248051],[4.53615426,0.03510246,99.60265973],[4.5361538,0.03510072,99.60283874],[4.53615334,0.03509898,99.60301758],[4.53615288,0.03509723,99.60319627],[4.53615242,0.03509549,99.60337482],[4.53615196,0.03509375,99.60355328],[4.5361515,0.03509201,99.60373166],[4.53615105,0.03509026,99.60390999],[4.53615059,0.03508852,99.60408829],[4.53615013,0.03508678,99.60426659],[4.53614967,0.03508503,99.60444492],[4.53614921,0.03508329,99.60462329],[4.53614875,0.03508155,99.60480171],[4.5361483,0.0350798,99.60498015],[4.53614784,0.03507806,99.60515863],[4.53614738,0.03507632,99.60533711],[4.53614692,0.03507458,99.6055156],[4.53614646,0.03507283,99.60569408],[4.53614601,0.03507109,99.60587255],[4.53614555,0.03506935,99.60605099],[4.53614509,0.0350676,99.6062294],[4.53614463,0.03506586,99.60640776],[4.53614418,0.03506412,99.60658607],[4.53614372,0.03506237,99.60676432],[4.53614326,0.03506063,99.60694249],[4.53614281,0.03505889,99.60712058],[4.53614235,0.03505714,99.60729857],[4.53614189,0.0350554,99.60747646],[4.53614143,0.03505366,99.60765424],[4.53614098,0.03505191,99.60783189],[4.53614052,0.03505017,99.60800941],[4.53614006,0.03504843,99.60818678],[4.53613961,0.03504668,99.608364],[4.53613915,0.03504494,99.60854106],[4.53613869,0.0350432,99.60871794],[4.53613824,0.03504145,99.60889463],[4.53613778,0.03503971,99.60907113],[4.53613732,0.03503797,99.60924742],[4.53613687,0.03503622,99.6094235],[4.53613641,0.03503448,99.60959935],[4.53613595,0.03503273,99.60977496],[4.5361355,0.03503099,99.60995032],[4.53613504,0.03502925,99.61012542],[4.53613458,0.0350275,99.61030026],[4.53613413,0.03502576,99.61047481],[4.53613367,0.03502402,99.61064907],[4.53613321,0.03502227,99.61082304],[4.53613275,0.03502053,99.6109967],[4.5361323,0.03501879,99.61117004],[4.53613184,0.03501704,99.61134307],[4.53613138,0.0350153,99.61151576],[4.53613092,0.03501356,99.61168811],[4.53613047,0.03501182,99.61186012],[4.53613001,0.03501008,99.61203177],[4.53612955,0.03500833,99.61220305],[4.53612909,0.03500659,99.61237394],[4.53612864,0.03500485,99.61254444],[4.53612818,0.0350031,99.61271455],[4.53612772,0.03500136,99.61288426],[4.53612726,0.03499962,99.61305361],[4.5361268,0.03499787,99.61322259],[4.53612634,0.03499613,99.61339122],[4.53612589,0.03499439,99.6135595],[4.53612543,0.03499265,99.61372746],[4.53612497,0.0349909,99.6138951],[4.53612451,0.03498916,99.61406242],[4.53612405,0.03498742,99.61422945],[4.53612359,0.03498567,99.6143962],[4.53612313,0.03498393,99.61456267],[4.53612267,0.03498219,99.61472887],[4.53612221,0.03498045,99.61489482],[4.53612175,0.0349787,99.61506052],[4.53612129,0.03497696,99.615226],[4.53612084,0.03497522,99.61539125],[4.53612038,0.03497348,99.61555629],[4.53611992,0.03497173,99.61572113],[4.53611946,0.03496999,99.61588577],[4.536119,0.03496825,99.61605024],[4.53611854,0.03496651,99.61621452],[4.53611808,0.03496476,99.61637865],[4.53611762,0.03496302,99.61654262],[4.53611715,0.03496128,99.61670644],[4.53611669,0.03495954,99.61687013],[4.53611623,0.03495779,99.6170337],[4.53611577,0.03495605,99.61719715],[4.53611531,0.03495431,99.61736049],[4.53611485,0.03495257,99.61752374],[4.53611439,0.03495082,99.6176869],[4.53611393,0.03494908,99.61784999],[4.53611347,0.03494734,99.61801301],[4.53611301,0.0349456,99.61817598],[4.53611255,0.03494385,99.61833889],[4.53611209,0.03494211,99.61850177],[4.53611162,0.03494037,99.61866462],[4.53611116,0.03493863,99.61882746],[4.5361107,0.03493689,99.61899029],[4.53611024,0.03493514,99.61915311],[4.53610978,0.0349334,99.61931596],[4.53610932,0.03493166,99.61947882],[4.53610885,0.03492992,99.61964171],[4.53610839,0.03492817,99.61980465],[4.53610793,0.03492643,99.61996764],[4.53610747,0.03492469,99.62013069],[4.53610701,0.03492295,99.62029381],[4.53610655,0.03492121,99.62045701],[4.53610608,0.03491946,99.6206203],[4.53610562,0.03491772,99.6207837],[4.53610516,0.03491598,99.6209472],[4.5361047,0.03491424,99.62111083],[4.53610423,0.0349125,99.62127459],[4.53610377,0.03491075,99.62143848],[4.53610331,0.03490901,99.62160253],[4.53610285,0.03490727,99.62176674],[4.53610238,0.03490553,99.62193112],[4.53610192,0.03490379,99.62209568],[4.53610146,0.03490204,99.62226043],[4.536101,0.0349003,99.62242538],[4.53610053,0.03489856,99.62259054],[4.53610007,0.03489682,99.62275592],[4.53609961,0.03489508,99.62292153],[4.53609914,0.03489333,99.62308738],[4.53609868,0.03489159,99.62325348],[4.53609822,0.03488985,99.62341985],[4.53609776,0.03488811,99.62358648],[4.53609729,0.03488637,99.62375339],[4.53609683,0.03488463,99.62392059],[4.53609637,0.03488288,99.6240881],[4.5360959,0.03488114,99.62425591],[4.53609544,0.0348794,99.62442405],[4.53609498,0.03487766,99.62459251],[4.53609451,0.03487592,99.62476132],[4.53609405,0.03487418,99.62493048],[4.53609359,0.03487243,99.6251],[4.53609312,0.03487069,99.62526988],[4.53609266,0.03486895,99.62544015],[4.53609219,0.03486721,99.62561081],[4.53609173,0.03486547,99.62578187],[4.53609127,0.03486372,99.62595335],[4.5360908,0.03486198,99.62612524],[4.53609034,0.03486024,99.62629757],[4.53608988,0.0348585,99.62647033],[4.53608941,0.03485676,99.62664355],[4.53608895,0.03485502,99.62681723],[4.53608848,0.03485327,99.62699138],[4.53608802,0.03485153,99.62716601],[4.53608756,0.03484979,99.62734114],[4.53608709,0.03484805,99.62751676],[4.53608663,0.03484631,99.6276929],[4.53608617,0.03484457,99.62786956],[4.5360857,0.03484283,99.62804675],[4.53608524,0.03484108,99.62822449],[4.53608477,0.03483934,99.62840278],[4.53608431,0.0348376,99.62858163],[4.53608384,0.03483586,99.62876105],[4.53608338,0.03483412,99.62894106],[4.53608292,0.03483238,99.62912165],[4.53608245,0.03483063,99.62930286],[4.53608199,0.03482889,99.62948467],[4.53608152,0.03482715,99.62966711],[4.53608106,0.03482541,99.62985018],[4.5360806,0.03482367,99.6300339],[4.53608013,0.03482193,99.63021826],[4.53607967,0.03482018,99.6304033],[4.5360792,0.03481844,99.630589],[4.53607874,0.0348167,99.63077539],[4.53607827,0.03481496,99.63096248],[4.53607781,0.03481322,99.63115027],[4.53607735,0.03481148,99.63133877],[4.53607688,0.03480974,99.631528],[4.53607642,0.03480799,99.63171794],[4.53607595,0.03480625,99.6319086],[4.53607549,0.03480451,99.63209996],[4.53607502,0.03480277,99.63229202],[4.53607456,0.03480103,99.63248477],[4.5360741,0.03479929,99.63267822],[4.53607363,0.03479754,99.63287234],[4.53607317,0.0347958,99.63306714],[4.5360727,0.03479406,99.63326261],[4.53607224,0.03479232,99.63345874],[4.53607177,0.03479058,99.63365553],[4.53607131,0.03478884,99.63385297],[4.53607084,0.03478709,99.63405105],[4.53607038,0.03478535,99.63424977],[4.53606992,0.03478361,99.63444912],[4.53606945,0.03478187,99.6346491],[4.53606899,0.03478013,99.6348497],[4.53606852,0.03477839,99.63505091],[4.53606806,0.03477665,99.63525272],[4.53606759,0.0347749,99.63545514],[4.53606713,0.03477316,99.63565817],[4.53606666,0.03477142,99.63586181],[4.5360662,0.03476968,99.63606606],[4.53606574,0.03476794,99.63627091],[4.53606527,0.0347662,99.63647637],[4.53606481,0.03476445,99.63668244],[4.53606434,0.03476271,99.63688913],[4.53606388,0.03476097,99.63709642],[4.53606341,0.03475923,99.63730432],[4.53606295,0.03475749,99.63751283],[4.53606248,0.03475575,99.63772195],[4.53606202,0.034754,99.63793169],[4.53606156,0.03475226,99.63814204],[4.53606109,0.03475052,99.638353],[4.53606063,0.03474878,99.63856457],[4.53606016,0.03474704,99.63877676],[4.5360597,0.0347453,99.63898955],[4.53605923,0.03474356,99.63920297],[4.53605877,0.03474181,99.63941699],[4.53605831,0.03474007,99.63963163],[4.53605784,0.03473833,99.63984689],[4.53605738,0.03473659,99.64006276],[4.53605691,0.03473485,99.64027924],[4.53605645,0.03473311,99.64049634],[4.53605598,0.03473136,99.64071406],[4.53605552,0.03472962,99.64093239],[4.53605506,0.03472788,99.64115134],[4.53605459,0.03472614,99.6413709],[4.53605413,0.0347244,99.64159108],[4.53605366,0.03472265,99.64181188],[4.5360532,0.03472091,99.64203329],[4.53605274,0.03471917,99.64225532],[4.53605227,0.03471743,99.64247797],[4.53605181,0.03471569,99.64270123],[4.53605135,0.03471395,99.64292511],[4.53605088,0.0347122,99.64314961],[4.53605042,0.03471046,99.64337472],[4.53604996,0.03470872,99.64360045],[4.53604949,0.03470698,99.6438268],[4.53604903,0.03470524,99.64405377],[4.53604857,0.03470349,99.64428135],[4.5360481,0.03470175,99.64450956],[4.53604764,0.03470001,99.64473837],[4.53604718,0.03469827,99.64496781],[4.53604671,0.03469653,99.64519786],[4.53604625,0.03469478,99.64542853],[4.53604579,0.03469304,99.64565982],[4.53604532,0.0346913,99.64589172],[4.53604486,0.03468956,99.64612424],[4.5360444,0.03468782,99.64635738],[4.53604394,0.03468607,99.64659113],[4.53604347,0.03468433,99.6468255],[4.53604301,0.03468259,99.64706048],[4.53604255,0.03468085,99.64729609],[4.53604209,0.0346791,99.6475323],[4.53604162,0.03467736,99.64776913],[4.53604116,0.03467562,99.64800658],[4.5360407,0.03467388,99.64824464],[4.53604024,0.03467213,99.64848331],[4.53603978,0.03467039,99.6487226],[4.53603932,0.03466865,99.6489625],[4.53603885,0.03466691,99.64920302],[4.53603839,0.03466516,99.64944415],[4.53603793,0.03466342,99.64968589],[4.53603747,0.03466168,99.64992824],[4.53603701,0.03465994,99.6501712],[4.53603655,0.03465819,99.65041474],[4.53603609,0.03465645,99.65065887],[4.53603563,0.03465471,99.65090357],[4.53603517,0.03465297,99.65114882],[4.53603471,0.03465122,99.65139461],[4.53603425,0.03464948,99.65164093],[4.53603379,0.03464774,99.65188777],[4.53603332,0.034646,99.65213511],[4.53603286,0.03464425,99.65238294],[4.5360324,0.03464251,99.65263125],[4.53603194,0.03464077,99.65288002],[4.53603148,0.03463902,99.65312925],[4.53603102,0.03463728,99.65337891],[4.53603057,0.03463554,99.653629],[4.53603011,0.03463379,99.65387951],[4.53602965,0.03463205,99.65413042],[4.53602919,0.03463031,99.65438172],[4.53602873,0.03462857,99.6546334],[4.53602827,0.03462682,99.65488544],[4.53602781,0.03462508,99.65513783],[4.53602735,0.03462334,99.65539056],[4.53602689,0.03462159,99.65564361],[4.53602643,0.03461985,99.65589698],[4.53602597,0.03461811,99.65615065],[4.53602551,0.03461636,99.6564046],[4.53602505,0.03461462,99.65665881],[4.53602459,0.03461288,99.65691326],[4.53602414,0.03461113,99.65716793],[4.53602368,0.03460939,99.65742279],[4.53602322,0.03460765,99.65767783],[4.53602276,0.0346059,99.65793304],[4.5360223,0.03460416,99.65818837],[4.53602184,0.03460242,99.65844383],[4.53602138,0.03460067,99.65869939],[4.53602093,0.03459893,99.65895502],[4.53602047,0.03459719,99.65921071],[4.53602001,0.03459544,99.65946644],[4.53601955,0.0345937,99.65972219],[4.53601909,0.03459196,99.65997794],[4.53601863,0.03459021,99.66023366],[4.53601817,0.03458847,99.66048935],[4.53601771,0.03458673,99.66074497],[4.53601726,0.03458498,99.66100051],[4.5360168,0.03458324,99.66125596],[4.53601634,0.0345815,99.66151128],[4.53601588,0.03457975,99.66176647],[4.53601542,0.03457801,99.66202149],[4.53601496,0.03457627,99.66227634],[4.5360145,0.03457452,99.662531],[4.53601404,0.03457278,99.66278543],[4.53601358,0.03457104,99.66303963],[4.53601313,0.03456929,99.66329357],[4.53601267,0.03456755,99.66354724],[4.53601221,0.03456581,99.66380062],[4.53601175,0.03456406,99.66405368],[4.53601129,0.03456232,99.66430642],[4.53601083,0.03456058,99.6645588],[4.53601037,0.03455884,99.66481081],[4.53600991,0.03455709,99.66506243],[4.53600945,0.03455535,99.66531364],[4.53600899,0.03455361,99.66556443],[4.53600853,0.03455186,99.66581477],[4.53600807,0.03455012,99.66606465],[4.53600761,0.03454838,99.66631405],[4.53600715,0.03454663,99.66656294],[4.53600669,0.03454489,99.66681132],[4.53600623,0.03454315,99.66705915],[4.53600577,0.03454141,99.66730643],[4.53600531,0.03453966,99.66755313],[4.53600485,0.03453792,99.66779924],[4.53600439,0.03453618,99.66804474],[4.53600392,0.03453443,99.6682896],[4.53600346,0.03453269,99.66853382],[4.536003,0.03453095,99.66877739],[4.53600254,0.03452921,99.66902028],[4.53600208,0.03452746,99.66926251],[4.53600162,0.03452572,99.66950406],[4.53600115,0.03452398,99.66974493],[4.53600069,0.03452224,99.66998512],[4.53600023,0.03452049,99.67022461],[4.53599977,0.03451875,99.67046342],[4.5359993,0.03451701,99.67070153],[4.53599884,0.03451527,99.67093893],[4.53599838,0.03451352,99.67117564],[4.53599791,0.03451178,99.67141163],[4.53599745,0.03451004,99.67164691],[4.53599699,0.0345083,99.67188147],[4.53599652,0.03450656,99.67211531],[4.53599606,0.03450481,99.67234842],[4.5359956,0.03450307,99.6725808],[4.53599513,0.03450133,99.67281245],[4.53599467,0.03449959,99.67304336],[4.5359942,0.03449785,99.67327353],[4.53599374,0.0344961,99.67350295],[4.53599327,0.03449436,99.67373162],[4.53599281,0.03449262,99.67395955],[4.53599234,0.03449088,99.67418673],[4.53599188,0.03448914,99.67441316],[4.53599141,0.0344874,99.67463885],[4.53599095,0.03448565,99.6748638],[4.53599048,0.03448391,99.67508801],[4.53599002,0.03448217,99.67531148],[4.53598955,0.03448043,99.67553421],[4.53598908,0.03447869,99.6757562],[4.53598862,0.03447695,99.67597745],[4.53598815,0.03447521,99.67619797],[4.53598768,0.03447346,99.67641775],[4.53598722,0.03447172,99.6766368],[4.53598675,0.03446998,99.67685512],[4.53598628,0.03446824,99.6770727],[4.53598582,0.0344665,99.67728956],[4.53598535,0.03446476,99.67750569],[4.53598488,0.03446302,99.67772108],[4.53598442,0.03446128,99.67793575],[4.53598395,0.03445954,99.67814969],[4.53598348,0.03445779,99.67836291],[4.53598301,0.03445605,99.6785754],[4.53598255,0.03445431,99.67878717],[4.53598208,0.03445257,99.67899821],[4.53598161,0.03445083,99.67920854],[4.53598114,0.03444909,99.67941814],[4.53598067,0.03444735,99.67962702],[4.5359802,0.03444561,99.67983518],[4.53597974,0.03444387,99.68004262],[4.53597927,0.03444213,99.68024934],[4.5359788,0.03444038,99.68045534],[4.53597833,0.03443864,99.68066063],[4.53597786,0.0344369,99.6808652],[4.53597739,0.03443516,99.68106905],[4.53597692,0.03443342,99.68127219],[4.53597645,0.03443168,99.68147462],[4.53597599,0.03442994,99.68167633],[4.53597552,0.0344282,99.68187733],[4.53597505,0.03442646,99.68207761],[4.53597458,0.03442472,99.68227718],[4.53597411,0.03442298,99.68247604],[4.53597364,0.03442124,99.68267419],[4.53597317,0.0344195,99.68287163],[4.5359727,0.03441776,99.68306836],[4.53597223,0.03441602,99.68326438],[4.53597176,0.03441428,99.68345969],[4.53597129,0.03441253,99.68365429],[4.53597082,0.03441079,99.68384818],[4.53597035,0.03440905,99.68404137],[4.53596988,0.03440731,99.68423384],[4.53596941,0.03440557,99.68442561],[4.53596894,0.03440383,99.68461667],[4.53596847,0.03440209,99.68480703],[4.535968,0.03440035,99.68499668],[4.53596753,0.03439861,99.68518563],[4.53596706,0.03439687,99.68537387],[4.53596659,0.03439513,99.68556141],[4.53596612,0.03439339,99.68574825],[4.53596565,0.03439165,99.68593438],[4.53596518,0.03438991,99.68611982],[4.53596471,0.03438817,99.68630456],[4.53596424,0.03438643,99.6864886],[4.53596377,0.03438469,99.68667194],[4.5359633,0.03438295,99.68685458],[4.53596282,0.03438121,99.68703652],[4.53596235,0.03437947,99.68721777],[4.53596188,0.03437773,99.68739832],[4.53596141,0.03437599,99.68757818],[4.53596094,0.03437425,99.68775734],[4.53596047,0.03437251,99.68793581],[4.53596,0.03437077,99.68811359],[4.53595953,0.03436903,99.68829067],[4.53595906,0.03436729,99.68846706],[4.53595859,0.03436555,99.68864275],[4.53595812,0.0343638,99.68881775],[4.53595765,0.03436206,99.68899207],[4.53595718,0.03436032,99.68916569],[4.5359567,0.03435858,99.68933862],[4.53595623,0.03435684,99.68951086],[4.53595576,0.0343551,99.6896824],[4.53595529,0.03435336,99.68985326],[4.53595482,0.03435162,99.69002343],[4.53595435,0.03434988,99.69019291],[4.53595388,0.03434814,99.6903617],[4.53595341,0.0343464,99.6905298],[4.53595294,0.03434466,99.6906972],[4.53595247,0.03434292,99.69086392],[4.535952,0.03434118,99.69102994],[4.53595153,0.03433944,99.69119525],[4.53595106,0.0343377,99.69135984],[4.53595058,0.03433596,99.69152371],[4.53595011,0.03433422,99.69168686],[4.53594964,0.03433248,99.69184927],[4.53594917,0.03433074,99.69201093],[4.5359487,0.034329,99.69217184],[4.53594823,0.03432726,99.692332],[4.53594776,0.03432552,99.69249139],[4.53594729,0.03432378,99.69265001],[4.53594682,0.03432204,99.69280784],[4.53594635,0.0343203,99.6929649],[4.53594588,0.03431856,99.69312115],[4.53594541,0.03431682,99.69327661],[4.53594494,0.03431508,99.69343126],[4.53594447,0.03431333,99.69358509],[4.535944,0.03431159,99.6937381],[4.53594353,0.03430985,99.69389028],[4.53594306,0.03430811,99.69404162],[4.53594259,0.03430637,99.69419212],[4.53594211,0.03430463,99.69434177],[4.53594164,0.03430289,99.69449055],[4.53594117,0.03430115,99.69463848],[4.5359407,0.03429941,99.69478553],[4.53594023,0.03429767,99.6949317],[4.53593976,0.03429593,99.69507698],[4.53593929,0.03429419,99.69522137],[4.53593882,0.03429245,99.69536486],[4.53593835,0.03429071,99.69550744],[4.53593788,0.03428897,99.6956491],[4.53593741,0.03428723,99.69578984],[4.53593694,0.03428549,99.69592965],[4.53593647,0.03428375,99.69606853],[4.535936,0.03428201,99.69620646],[4.53593553,0.03428027,99.69634343],[4.53593506,0.03427853,99.69647946],[4.53593459,0.03427679,99.69661451],[4.53593412,0.03427505,99.69674859],[4.53593365,0.03427331,99.6968817],[4.53593318,0.03427157,99.69701382],[4.53593271,0.03426982,99.69714494],[4.53593224,0.03426808,99.69727506],[4.53593176,0.03426634,99.69740418],[4.53593129,0.0342646,99.69753228],[4.53593082,0.03426286,99.69765936],[4.53593035,0.03426112,99.69778541],[4.53592988,0.03425938,99.69791042],[4.53592941,0.03425764,99.69803439],[4.53592894,0.0342559,99.69815731],[4.53592847,0.03425416,99.69827918],[4.535928,0.03425242,99.69839998],[4.53592753,0.03425068,99.69851971],[4.53592706,0.03424894,99.69863836],[4.53592659,0.0342472,99.69875592],[4.53592612,0.03424546,99.69887239],[4.53592565,0.03424372,99.69898777],[4.53592518,0.03424198,99.69910204],[4.53592471,0.03424024,99.69921519],[4.53592424,0.0342385,99.69932723],[4.53592377,0.03423676,99.69943813],[4.53592329,0.03423502,99.69954791],[4.53592282,0.03423328,99.69965654],[4.53592235,0.03423154,99.69976402],[4.53592188,0.0342298,99.69987035],[4.53592141,0.03422806,99.69997552],[4.53592094,0.03422632,99.70007951],[4.53592047,0.03422458,99.70018233],[4.53592,0.03422284,99.70028397],[4.53591953,0.0342211,99.70038442],[4.53591906,0.03421936,99.70048367],[4.53591859,0.03421762,99.70058171],[4.53591812,0.03421588,99.70067855],[4.53591764,0.03421414,99.70077417],[4.53591717,0.0342124,99.70086856],[4.5359167,0.03421066,99.70096171],[4.53591623,0.03420892,99.70105362],[4.53591576,0.03420718,99.70114427],[4.53591529,0.03420544,99.70123364],[4.53591482,0.0342037,99.70132172],[4.53591435,0.03420195,99.7014085],[4.53591388,0.03420021,99.70149395],[4.5359134,0.03419847,99.70157807],[4.53591293,0.03419673,99.70166084],[4.53591246,0.03419499,99.70174225],[4.53591199,0.03419325,99.70182228],[4.53591152,0.03419151,99.70190092],[4.53591105,0.03418977,99.70197815],[4.53591057,0.03418803,99.70205397],[4.5359101,0.0341863,99.70212835],[4.53590963,0.03418456,99.70220128],[4.53590916,0.03418282,99.70227275],[4.53590869,0.03418108,99.70234274],[4.53590822,0.03417934,99.70241124],[4.53590774,0.0341776,99.70247824],[4.53590727,0.03417586,99.70254372],[4.5359068,0.03417412,99.70260767],[4.53590633,0.03417238,99.70267007],[4.53590585,0.03417064,99.70273091],[4.53590538,0.0341689,99.70279017],[4.53590491,0.03416716,99.70284784],[4.53590443,0.03416542,99.70290391],[4.53590419,0.03416451,99.70293243],[4.53591991,0.03416024,99.74383283],[4.53592015,0.03416114,99.74381286],[4.53592062,0.03416288,99.74377331],[4.53592109,0.03416462,99.74373231],[4.53592156,0.03416636,99.74368985],[4.53592203,0.03416811,99.74364596],[4.5359225,0.03416985,99.74360065],[4.53592296,0.03417159,99.74355393],[4.53592343,0.03417333,99.74350582],[4.5359239,0.03417507,99.74345634],[4.53592437,0.03417681,99.74340548],[4.53592484,0.03417855,99.74335328],[4.5359253,0.03418029,99.74329973],[4.53592577,0.03418203,99.74324487],[4.53592624,0.03418377,99.74318869],[4.53592671,0.03418552,99.74313122],[4.53592717,0.03418726,99.74307247],[4.53592764,0.034189,99.74301246],[4.53592811,0.03419074,99.74295118],[4.53592858,0.03419248,99.74288868],[4.53592904,0.03419422,99.74282494],[4.53592951,0.03419596,99.74276],[4.53592998,0.0341977,99.74269386],[4.53593044,0.03419945,99.74262654],[4.53593091,0.03420119,99.74255805],[4.53593138,0.03420293,99.74248841],[4.53593184,0.03420467,99.74241763],[4.53593231,0.03420641,99.74234572],[4.53593278,0.03420815,99.74227271],[4.53593325,0.03420989,99.74219859],[4.53593371,0.03421164,99.74212339],[4.53593418,0.03421338,99.74204712],[4.53593464,0.03421512,99.74196976],[4.53593511,0.03421686,99.74189134],[4.53593558,0.0342186,99.74181187],[4.53593604,0.03422034,99.74173134],[4.53593651,0.03422208,99.74164976],[4.53593698,0.03422383,99.74156715],[4.53593744,0.03422557,99.7414835],[4.53593791,0.03422731,99.74139883],[4.53593838,0.03422905,99.74131314],[4.53593884,0.03423079,99.74122645],[4.53593931,0.03423253,99.74113874],[4.53593978,0.03423427,99.74105005],[4.53594024,0.03423602,99.74096036],[4.53594071,0.03423776,99.74086969],[4.53594118,0.0342395,99.74077805],[4.53594164,0.03424124,99.74068544],[4.53594211,0.03424298,99.74059186],[4.53594257,0.03424472,99.74049734],[4.53594304,0.03424647,99.74040187],[4.53594351,0.03424821,99.74030545],[4.53594397,0.03424995,99.74020811],[4.53594444,0.03425169,99.74010984],[4.53594491,0.03425343,99.74001065],[4.53594537,0.03425517,99.73991055],[4.53594584,0.03425691,99.73980955],[4.53594631,0.03425866,99.73970765],[4.53594677,0.0342604,99.73960486],[4.53594724,0.03426214,99.73950119],[4.5359477,0.03426388,99.73939665],[4.53594817,0.03426562,99.73929124],[4.53594864,0.03426736,99.73918496],[4.5359491,0.03426911,99.73907784],[4.53594957,0.03427085,99.73896987],[4.53595004,0.03427259,99.73886106],[4.5359505,0.03427433,99.73875142],[4.53595097,0.03427607,99.73864095],[4.53595144,0.03427781,99.73852967],[4.5359519,0.03427955,99.73841758],[4.53595237,0.0342813,99.73830469],[4.53595284,0.03428304,99.738191],[4.5359533,0.03428478,99.73807653],[4.53595377,0.03428652,99.73796127],[4.53595424,0.03428826,99.73784525],[4.5359547,0.03429,99.73772846],[4.53595517,0.03429175,99.73761091],[4.53595564,0.03429349,99.73749261],[4.5359561,0.03429523,99.73737357],[4.53595657,0.03429697,99.7372538],[4.53595704,0.03429871,99.73713329],[4.5359575,0.03430045,99.73701207],[4.53595797,0.03430219,99.73689013],[4.53595844,0.03430394,99.73676749],[4.5359589,0.03430568,99.73664415],[4.53595937,0.03430742,99.73652013],[4.53595984,0.03430916,99.73639541],[4.5359603,0.0343109,99.73627003],[4.53596077,0.03431264,99.73614397],[4.53596124,0.03431438,99.73601726],[4.53596171,0.03431613,99.73588989],[4.53596217,0.03431787,99.73576188],[4.53596264,0.03431961,99.73563324],[4.53596311,0.03432135,99.73550396],[4.53596357,0.03432309,99.73537406],[4.53596404,0.03432483,99.73524355],[4.53596451,0.03432657,99.73511243],[4.53596498,0.03432831,99.73498071],[4.53596544,0.03433006,99.73484841],[4.53596591,0.0343318,99.73471552],[4.53596638,0.03433354,99.73458205],[4.53596685,0.03433528,99.73444801],[4.53596732,0.03433702,99.73431342],[4.53596778,0.03433876,99.73417827],[4.53596825,0.0343405,99.73404258],[4.53596872,0.03434224,99.73390635],[4.53596919,0.03434399,99.73376959],[4.53596965,0.03434573,99.7336323],[4.53597012,0.03434747,99.73349448],[4.53597059,0.03434921,99.73335612],[4.53597106,0.03435095,99.73321723],[4.53597153,0.03435269,99.73307782],[4.535972,0.03435443,99.73293787],[4.53597246,0.03435617,99.73279739],[4.53597293,0.03435791,99.73265638],[4.5359734,0.03435966,99.73251485],[4.53597387,0.0343614,99.73237278],[4.53597434,0.03436314,99.73223019],[4.53597481,0.03436488,99.73208706],[4.53597528,0.03436662,99.73194341],[4.53597574,0.03436836,99.73179923],[4.53597621,0.0343701,99.73165453],[4.53597668,0.03437184,99.73150929],[4.53597715,0.03437358,99.73136353],[4.53597762,0.03437532,99.73121724],[4.53597809,0.03437706,99.73107042],[4.53597856,0.03437881,99.73092307],[4.53597903,0.03438055,99.7307752],[4.53597949,0.03438229,99.7306268],[4.53597996,0.03438403,99.73047788],[4.53598043,0.03438577,99.73032843],[4.5359809,0.03438751,99.73017845],[4.53598137,0.03438925,99.73002794],[4.53598184,0.03439099,99.72987691],[4.53598231,0.03439273,99.72972535],[4.53598278,0.03439447,99.72957326],[4.53598325,0.03439621,99.72942065],[4.53598372,0.03439795,99.72926751],[4.53598418,0.0343997,99.72911384],[4.53598465,0.03440144,99.72895965],[4.53598512,0.03440318,99.72880493],[4.53598559,0.03440492,99.72864968],[4.53598606,0.03440666,99.7284939],[4.53598653,0.0344084,99.7283376],[4.535987,0.03441014,99.72818077],[4.53598747,0.03441188,99.72802341],[4.53598794,0.03441362,99.72786553],[4.53598841,0.03441536,99.72770711],[4.53598888,0.0344171,99.72754817],[4.53598935,0.03441884,99.7273887],[4.53598981,0.03442058,99.72722869],[4.53599028,0.03442233,99.72706816],[4.53599075,0.03442407,99.7269071],[4.53599122,0.03442581,99.72674551],[4.53599169,0.03442755,99.72658339],[4.53599216,0.03442929,99.72642074],[4.53599263,0.03443103,99.72625756],[4.5359931,0.03443277,99.72609385],[4.53599357,0.03443451,99.72592961],[4.53599404,0.03443625,99.72576483],[4.5359945,0.03443799,99.72559952],[4.53599497,0.03443973,99.72543368],[4.53599544,0.03444147,99.7252673],[4.53599591,0.03444321,99.72510039],[4.53599638,0.03444496,99.72493295],[4.53599685,0.0344467,99.72476497],[4.53599732,0.03444844,99.72459646],[4.53599779,0.03445018,99.72442741],[4.53599826,0.03445192,99.72425782],[4.53599872,0.03445366,99.7240877],[4.53599919,0.0344554,99.72391704],[4.53599966,0.03445714,99.72374584],[4.53600013,0.03445888,99.7235741],[4.5360006,0.03446062,99.72340182],[4.53600107,0.03446236,99.72322901],[4.53600154,0.0344641,99.72305565],[4.536002,0.03446585,99.72288175],[4.53600247,0.03446759,99.7227073],[4.53600294,0.03446933,99.72253232],[4.53600341,0.03447107,99.72235679],[4.53600388,0.03447281,99.72218072],[4.53600434,0.03447455,99.7220041],[4.53600481,0.03447629,99.72182694],[4.53600528,0.03447803,99.72164922],[4.53600575,0.03447977,99.72147097],[4.53600622,0.03448151,99.72129216],[4.53600668,0.03448326,99.7211128],[4.53600715,0.034485,99.7209329],[4.53600762,0.03448674,99.72075244],[4.53600809,0.03448848,99.72057144],[4.53600856,0.03449022,99.72038988],[4.53600902,0.03449196,99.72020776],[4.53600949,0.0344937,99.72002509],[4.53600996,0.03449544,99.71984187],[4.53601042,0.03449718,99.71965811],[4.53601089,0.03449893,99.71947379],[4.53601136,0.03450067,99.71928894],[4.53601183,0.03450241,99.71910356],[4.53601229,0.03450415,99.71891764],[4.53601276,0.03450589,99.7187312],[4.53601323,0.03450763,99.71854424],[4.53601369,0.03450937,99.71835676],[4.53601416,0.03451112,99.71816877],[4.53601463,0.03451286,99.71798027],[4.53601509,0.0345146,99.71779127],[4.53601556,0.03451634,99.71760177],[4.53601603,0.03451808,99.71741177],[4.53601649,0.03451982,99.71722129],[4.53601696,0.03452156,99.71703032],[4.53601743,0.0345233,99.71683887],[4.53601789,0.03452505,99.71664695],[4.53601836,0.03452679,99.71645455],[4.53601882,0.03452853,99.71626169],[4.53601929,0.03453027,99.71606836],[4.53601976,0.03453201,99.71587458],[4.53602022,0.03453375,99.71568034],[4.53602069,0.0345355,99.71548566],[4.53602115,0.03453724,99.71529054],[4.53602162,0.03453898,99.715095],[4.53602209,0.03454072,99.71489903],[4.53602255,0.03454246,99.71470266],[4.53602302,0.0345442,99.71450589],[4.53602348,0.03454595,99.71430872],[4.53602395,0.03454769,99.71411117],[4.53602441,0.03454943,99.71391325],[4.53602488,0.03455117,99.71371496],[4.53602534,0.03455291,99.71351632],[4.53602581,0.03455465,99.71331733],[4.53602627,0.0345564,99.713118],[4.53602674,0.03455814,99.71291834],[4.5360272,0.03455988,99.71271837],[4.53602767,0.03456162,99.71251808],[4.53602813,0.03456336,99.71231749],[4.5360286,0.0345651,99.71211661],[4.53602906,0.03456685,99.71191545],[4.53602953,0.03456859,99.71171401],[4.53602999,0.03457033,99.7115123],[4.53603046,0.03457207,99.71131035],[4.53603092,0.03457381,99.71110814],[4.53603139,0.03457556,99.7109057],[4.53603185,0.0345773,99.71070302],[4.53603232,0.03457904,99.71050013],[4.53603278,0.03458078,99.71029703],[4.53603325,0.03458252,99.71009373],[4.53603371,0.03458426,99.70989024],[4.53603418,0.03458601,99.70968657],[4.53603464,0.03458775,99.70948272],[4.53603511,0.03458949,99.70927871],[4.53603557,0.03459123,99.70907455],[4.53603604,0.03459297,99.70887025],[4.5360365,0.03459472,99.7086658],[4.53603696,0.03459646,99.70846124],[4.53603743,0.0345982,99.70825655],[4.53603789,0.03459994,99.70805176],[4.53603836,0.03460168,99.70784687],[4.53603882,0.03460342,99.7076419],[4.53603929,0.03460517,99.70743684],[4.53603975,0.03460691,99.70723172],[4.53604022,0.03460865,99.70702653],[4.53604068,0.03461039,99.7068213],[4.53604115,0.03461213,99.70661603],[4.53604161,0.03461388,99.70641072],[4.53604208,0.03461562,99.7062054],[4.53604254,0.03461736,99.70600006],[4.536043,0.0346191,99.70579472],[4.53604347,0.03462084,99.70558937],[4.53604393,0.03462258,99.70538401],[4.5360444,0.03462433,99.70517865],[4.53604486,0.03462607,99.70497329],[4.53604533,0.03462781,99.70476793],[4.53604579,0.03462955,99.70456257],[4.53604626,0.03463129,99.70435722],[4.53604672,0.03463304,99.70415187],[4.53604719,0.03463478,99.70394652],[4.53604765,0.03463652,99.70374119],[4.53604812,0.03463826,99.70353587],[4.53604858,0.03464,99.70333056],[4.53604905,0.03464174,99.70312526],[4.53604951,0.03464349,99.70291998],[4.53604998,0.03464523,99.70271471],[4.53605044,0.03464697,99.70250947],[4.53605091,0.03464871,99.70230424],[4.53605137,0.03465045,99.70209904],[4.53605183,0.03465219,99.70189386],[4.5360523,0.03465394,99.70168871],[4.53605276,0.03465568,99.70148358],[4.53605323,0.03465742,99.70127849],[4.53605369,0.03465916,99.70107342],[4.53605416,0.0346609,99.70086838],[4.53605462,0.03466265,99.70066338],[4.53605509,0.03466439,99.70045842],[4.53605555,0.03466613,99.70025349],[4.53605602,0.03466787,99.7000486],[4.53605648,0.03466961,99.69984375],[4.53605695,0.03467135,99.69963894],[4.53605741,0.0346731,99.69943418],[4.53605788,0.03467484,99.69922946],[4.53605834,0.03467658,99.69902478],[4.53605881,0.03467832,99.69882015],[4.53605927,0.03468006,99.69861558],[4.53605973,0.0346818,99.69841105],[4.5360602,0.03468355,99.69820658],[4.53606066,0.03468529,99.69800216],[4.53606113,0.03468703,99.6977978],[4.53606159,0.03468877,99.69759349],[4.53606206,0.03469051,99.69738924],[4.53606252,0.03469226,99.69718506],[4.53606299,0.034694,99.69698093],[4.53606345,0.03469574,99.69677687],[4.53606391,0.03469748,99.69657287],[4.53606438,0.03469922,99.69636894],[4.53606484,0.03470096,99.69616508],[4.53606531,0.03470271,99.69596129],[4.53606577,0.03470445,99.69575757],[4.53606624,0.03470619,99.69555392],[4.5360667,0.03470793,99.69535034],[4.53606716,0.03470967,99.69514684],[4.53606763,0.03471142,99.69494342],[4.53606809,0.03471316,99.69474007],[4.53606856,0.0347149,99.69453681],[4.53606902,0.03471664,99.69433363],[4.53606949,0.03471838,99.69413053],[4.53606995,0.03472013,99.69392751],[4.53607041,0.03472187,99.69372458],[4.53607088,0.03472361,99.69352174],[4.53607134,0.03472535,99.69331898],[4.53607181,0.03472709,99.69311632],[4.53607227,0.03472883,99.69291375],[4.53607273,0.03473058,99.69271127],[4.5360732,0.03473232,99.69250889],[4.53607366,0.03473406,99.6923066],[4.53607412,0.0347358,99.69210441],[4.53607459,0.03473754,99.69190232],[4.53607505,0.03473929,99.69170033],[4.53607551,0.03474103,99.69149844],[4.53607598,0.03474277,99.69129666],[4.53607644,0.03474451,99.69109498],[4.53607691,0.03474625,99.69089341],[4.53607737,0.034748,99.69069194],[4.53607783,0.03474974,99.69049059],[4.5360783,0.03475148,99.69028935],[4.53607876,0.03475322,99.69008822],[4.53607922,0.03475497,99.6898872],[4.53607969,0.03475671,99.6896863],[4.53608015,0.03475845,99.68948551],[4.53608061,0.03476019,99.68928485],[4.53608107,0.03476193,99.6890843],[4.53608154,0.03476368,99.68888388],[4.536082,0.03476542,99.68868358],[4.53608246,0.03476716,99.6884834],[4.53608293,0.0347689,99.68828335],[4.53608339,0.03477064,99.68808342],[4.53608385,0.03477239,99.68788363],[4.53608431,0.03477413,99.68768396],[4.53608478,0.03477587,99.68748443],[4.53608524,0.03477761,99.68728504],[4.5360857,0.03477936,99.6870858],[4.53608616,0.0347811,99.68688672],[4.53608663,0.03478284,99.68668781],[4.53608709,0.03478458,99.68648907],[4.53608755,0.03478633,99.68629052],[4.53608801,0.03478807,99.68609217],[4.53608847,0.03478981,99.68589402],[4.53608894,0.03479155,99.68569609],[4.5360894,0.03479329,99.68549838],[4.53608986,0.03479504,99.6853009],[4.53609032,0.03479678,99.68510366],[4.53609078,0.03479852,99.68490667],[4.53609125,0.03480026,99.68470995],[4.53609171,0.03480201,99.68451349],[4.53609217,0.03480375,99.68431731],[4.53609263,0.03480549,99.68412142],[4.53609309,0.03480723,99.68392582],[4.53609356,0.03480898,99.68373052],[4.53609402,0.03481072,99.68353553],[4.53609448,0.03481246,99.68334083],[4.53609494,0.0348142,99.68314643],[4.5360954,0.03481595,99.68295231],[4.53609586,0.03481769,99.68275848],[4.53609632,0.03481943,99.68256493],[4.53609679,0.03482117,99.68237166],[4.53609725,0.03482292,99.68217866],[4.53609771,0.03482466,99.68198592],[4.53609817,0.0348264,99.68179346],[4.53609863,0.03482814,99.68160125],[4.53609909,0.03482989,99.68140931],[4.53609955,0.03483163,99.68121761],[4.53610002,0.03483337,99.68102617],[4.53610048,0.03483511,99.68083497],[4.53610094,0.03483686,99.68064401],[4.5361014,0.0348386,99.68045329],[4.53610186,0.03484034,99.6802628],[4.53610232,0.03484208,99.68007254],[4.53610278,0.03484383,99.67988251],[4.53610324,0.03484557,99.6796927],[4.53610371,0.03484731,99.67950311],[4.53610417,0.03484905,99.67931373],[4.53610463,0.0348508,99.67912457],[4.53610509,0.03485254,99.67893561],[4.53610555,0.03485428,99.67874685],[4.53610601,0.03485603,99.67855828],[4.53610647,0.03485777,99.67836992],[4.53610693,0.03485951,99.67818174],[4.53610739,0.03486125,99.67799375],[4.53610785,0.034863,99.67780594],[4.53610832,0.03486474,99.67761831],[4.53610878,0.03486648,99.67743085],[4.53610924,0.03486822,99.67724357],[4.5361097,0.03486997,99.67705645],[4.53611016,0.03487171,99.67686949],[4.53611062,0.03487345,99.6766827],[4.53611108,0.03487519,99.67649605],[4.53611154,0.03487694,99.67630956],[4.536112,0.03487868,99.67612321],[4.53611246,0.03488042,99.67593701],[4.53611292,0.03488216,99.67575095],[4.53611338,0.03488391,99.67556502],[4.53611385,0.03488565,99.67537922],[4.53611431,0.03488739,99.67519354],[4.53611477,0.03488914,99.67500799],[4.53611523,0.03489088,99.67482256],[4.53611569,0.03489262,99.67463725],[4.53611615,0.03489436,99.67445204],[4.53611661,0.03489611,99.67426694],[4.53611707,0.03489785,99.67408194],[4.53611753,0.03489959,99.67389705],[4.53611799,0.03490133,99.67371224],[4.53611845,0.03490308,99.67352753],[4.53611891,0.03490482,99.67334291],[4.53611937,0.03490656,99.67315836],[4.53611983,0.0349083,99.6729739],[4.53612029,0.03491005,99.67278951],[4.53612075,0.03491179,99.67260519],[4.53612122,0.03491353,99.67242094],[4.53612168,0.03491528,99.67223675],[4.53612214,0.03491702,99.67205262],[4.5361226,0.03491876,99.67186854],[4.53612306,0.0349205,99.67168451],[4.53612352,0.03492225,99.67150053],[4.53612398,0.03492399,99.67131659],[4.53612444,0.03492573,99.67113269],[4.5361249,0.03492747,99.67094883],[4.53612536,0.03492922,99.67076499],[4.53612582,0.03493096,99.67058118],[4.53612628,0.0349327,99.67039739],[4.53612674,0.03493445,99.67021362],[4.5361272,0.03493619,99.67002987],[4.53612766,0.03493793,99.66984612],[4.53612812,0.03493967,99.66966238],[4.53612858,0.03494142,99.66947864],[4.53612904,0.03494316,99.6692949],[4.5361295,0.0349449,99.66911115],[4.53612997,0.03494664,99.66892739],[4.53613043,0.03494839,99.66874361],[4.53613089,0.03495013,99.66855982],[4.53613135,0.03495187,99.668376],[4.53613181,0.03495361,99.66819215],[4.53613227,0.03495536,99.66800828],[4.53613273,0.0349571,99.66782437],[4.53613319,0.03495884,99.66764042],[4.53613365,0.03496059,99.66745642],[4.53613411,0.03496233,99.66727238],[4.53613457,0.03496407,99.66708828],[4.53613503,0.03496581,99.66690413],[4.53613549,0.03496756,99.66671991],[4.53613595,0.0349693,99.66653564],[4.53613641,0.03497104,99.66635129],[4.53613687,0.03497278,99.66616687],[4.53613733,0.03497453,99.66598237],[4.53613779,0.03497627,99.6657978],[4.53613825,0.03497801,99.66561313],[4.53613872,0.03497975,99.66542837],[4.53613918,0.0349815,99.66524352],[4.53613964,0.03498324,99.66505856],[4.5361401,0.03498498,99.66487349],[4.53614056,0.03498672,99.6646883],[4.53614102,0.03498847,99.664503],[4.53614148,0.03499021,99.66431756],[4.53614194,0.03499195,99.664132],[4.5361424,0.0349937,99.6639463],[4.53614286,0.03499544,99.66376045],[4.53614332,0.03499718,99.66357446],[4.53614378,0.03499892,99.66338831],[4.53614424,0.03500067,99.663202],[4.5361447,0.03500241,99.66301553],[4.53614516,0.03500415,99.66282889],[4.53614562,0.03500589,99.66264206],[4.53614609,0.03500764,99.66245506],[4.53614655,0.03500938,99.66226787],[4.53614701,0.03501112,99.66208048],[4.53614747,0.03501286,99.66189289],[4.53614793,0.0350146,99.66170508],[4.53614839,0.03501635,99.66151706],[4.53614885,0.03501809,99.6613288],[4.53614931,0.03501983,99.6611403],[4.53614977,0.03502157,99.66095156],[4.53615023,0.03502332,99.66076255],[4.53615069,0.03502506,99.66057327],[4.53615115,0.0350268,99.66038372],[4.53615161,0.03502854,99.66019389],[4.53615207,0.03503029,99.66000377],[4.53615253,0.03503203,99.65981335],[4.536153,0.03503377,99.65962263],[4.53615346,0.03503551,99.6594316],[4.53615392,0.03503726,99.65924026],[4.53615438,0.035039,99.6590486],[4.53615484,0.03504074,99.65885661],[4.5361553,0.03504248,99.65866428],[4.53615576,0.03504423,99.65847161],[4.53615622,0.03504597,99.65827859],[4.53615668,0.03504771,99.65808522],[4.53615714,0.03504945,99.65789148],[4.5361576,0.0350512,99.65769738],[4.53615806,0.03505294,99.6575029],[4.53615852,0.03505468,99.65730804],[4.53615898,0.03505643,99.65711279],[4.53615944,0.03505817,99.65691714],[4.53615991,0.03505991,99.6567211],[4.53616037,0.03506165,99.65652464],[4.53616083,0.0350634,99.65632777],[4.53616129,0.03506514,99.65613048],[4.53616175,0.03506688,99.65593275],[4.53616221,0.03506862,99.6557346],[4.53616267,0.03507037,99.655536],[4.53616313,0.03507211,99.65533695],[4.53616359,0.03507385,99.65513745],[4.53616405,0.03507559,99.65493748],[4.53616451,0.03507734,99.65473705],[4.53616497,0.03507908,99.65453614],[4.53616543,0.03508082,99.65433475],[4.53616589,0.03508257,99.65413287],[4.53616635,0.03508431,99.65393049],[4.53616681,0.03508605,99.65372762],[4.53616727,0.03508779,99.65352423],[4.53616773,0.03508954,99.65332033],[4.5361682,0.03509128,99.65311591],[4.53616866,0.03509302,99.65291096],[4.53616912,0.03509476,99.65270548],[4.53616958,0.03509651,99.65249945],[4.53617004,0.03509825,99.65229288],[4.5361705,0.03509999,99.65208575],[4.53617096,0.03510173,99.65187806],[4.53617142,0.03510348,99.6516698],[4.53617188,0.03510522,99.65146097],[4.53617234,0.03510696,99.65125156],[4.5361728,0.03510871,99.65104155],[4.53617326,0.03511045,99.65083096],[4.53617372,0.03511219,99.65061976],[4.53617418,0.03511393,99.65040796],[4.53617464,0.03511568,99.65019554],[4.5361751,0.03511742,99.6499825],[4.53617556,0.03511916,99.64976883],[4.53617602,0.0351209,99.64955453],[4.53617648,0.03512265,99.64933959],[4.53617694,0.03512439,99.64912401],[4.5361774,0.03512613,99.64890776],[4.53617786,0.03512788,99.64869086],[4.53617832,0.03512962,99.6484733],[4.53617878,0.03513136,99.64825506],[4.53617924,0.0351331,99.64803613],[4.5361797,0.03513485,99.64781653],[4.53618016,0.03513659,99.64759623],[4.53618062,0.03513833,99.64737523],[4.53618108,0.03514008,99.64715352],[4.53618154,0.03514182,99.6469311],[4.536182,0.03514356,99.64670797],[4.53618246,0.0351453,99.64648411],[4.53618292,0.03514705,99.64625951],[4.53618338,0.03514879,99.64603418],[4.53618384,0.03515053,99.6458081],[4.5361843,0.03515228,99.64558127],[4.53618476,0.03515402,99.64535368],[4.53618522,0.03515576,99.64512533],[4.53618568,0.0351575,99.6448962],[4.53618614,0.03515925,99.6446663],[4.5361866,0.03516099,99.64443561],[4.53618706,0.03516273,99.64420414],[4.53618752,0.03516448,99.64397186],[4.53618798,0.03516622,99.64373879],[4.53618844,0.03516796,99.6435049],[4.5361889,0.03516971,99.64327019],[4.53618936,0.03517145,99.64303466],[4.53618982,0.03517319,99.64279831],[4.53619028,0.03517493,99.64256111],[4.53619074,0.03517668,99.64232307],[4.53619119,0.03517842,99.64208419],[4.53619165,0.03518016,99.64184445],[4.53619211,0.03518191,99.64160384],[4.53619257,0.03518365,99.64136237],[4.53619303,0.03518539,99.64112002],[4.53619349,0.03518714,99.6408768],[4.53619395,0.03518888,99.64063268],[4.53619441,0.03519062,99.64038767],[4.53619487,0.03519236,99.64014176],[4.53619533,0.03519411,99.63989494],[4.53619579,0.03519585,99.6396472],[4.53619625,0.03519759,99.63939855],[4.53619671,0.03519934,99.63914897],[4.53619716,0.03520108,99.63889846],[4.53619762,0.03520282,99.63864701],[4.53619808,0.03520457,99.63839461],[4.53619854,0.03520631,99.63814126],[4.536199,0.03520805,99.63788695],[4.53619946,0.0352098,99.63763167],[4.53619992,0.03521154,99.63737543],[4.53620038,0.03521328,99.6371182],[4.53620084,0.03521502,99.63685999],[4.53620129,0.03521677,99.6366008],[4.53620175,0.03521851,99.6363406],[4.53620221,0.03522025,99.6360794],[4.53620267,0.035222,99.63581719],[4.53620313,0.03522374,99.63555396],[4.53620359,0.03522548,99.63528971],[4.53620405,0.03522723,99.63502443],[4.53620451,0.03522897,99.63475812],[4.53620496,0.03523071,99.63449076],[4.53620542,0.03523246,99.63422235],[4.53620588,0.0352342,99.63395289],[4.53620634,0.03523594,99.63368237],[4.5362068,0.03523769,99.63341078],[4.53620726,0.03523943,99.63313812],[4.53620771,0.03524117,99.63286437],[4.53620817,0.03524292,99.63258954],[4.53620863,0.03524466,99.63231361],[4.53620909,0.0352464,99.63203658],[4.53620955,0.03524815,99.63175845],[4.53621,0.03524989,99.63147919],[4.53621046,0.03525163,99.63119881],[4.53621092,0.03525338,99.6309173],[4.53621138,0.03525512,99.63063465],[4.53621184,0.03525686,99.63035087],[4.53621229,0.03525861,99.63006594],[4.53621275,0.03526035,99.62977986],[4.53621321,0.03526209,99.62949263],[4.53621367,0.03526384,99.62920424],[4.53621413,0.03526558,99.62891468],[4.53621458,0.03526733,99.62862396],[4.53621504,0.03526907,99.62833206],[4.5362155,0.03527081,99.62803899],[4.53621596,0.03527256,99.62774474],[4.53621641,0.0352743,99.6274493],[4.53621687,0.03527604,99.62715266],[4.53621733,0.03527779,99.62685484],[4.53621779,0.03527953,99.62655581],[4.53621824,0.03528127,99.62625557],[4.5362187,0.03528302,99.62595413],[4.53621916,0.03528476,99.62565147],[4.53621961,0.0352865,99.62534759],[4.53622007,0.03528825,99.62504248],[4.53622053,0.03528999,99.62473615],[4.53622099,0.03529174,99.62442858],[4.53622144,0.03529348,99.62411978],[4.5362219,0.03529522,99.62380973],[4.53622236,0.03529697,99.62349843],[4.53622281,0.03529871,99.62318588],[4.53622327,0.03530045,99.62287207],[4.53622373,0.0353022,99.622557],[4.53622418,0.03530394,99.62224067],[4.53622464,0.03530569,99.62192306],[4.5362251,0.03530743,99.62160417],[4.53622555,0.03530917,99.62128401],[4.53622601,0.03531092,99.62096255],[4.53622647,0.03531266,99.62063981],[4.53622693,0.0353144,99.62031577],[4.53622738,0.03531615,99.61999044],[4.53622784,0.03531789,99.61966379],[4.53622829,0.03531964,99.61933584],[4.53622875,0.03532138,99.61900657],[4.53622921,0.03532312,99.61867598],[4.53622966,0.03532487,99.61834407],[4.53623012,0.03532661,99.61801083],[4.53623058,0.03532835,99.61767626],[4.53623103,0.0353301,99.61734035],[4.53623149,0.03533184,99.6170031],[4.53623195,0.03533359,99.61666449],[4.5362324,0.03533533,99.61632454],[4.53623286,0.03533707,99.61598323],[4.53623332,0.03533882,99.61564055],[4.53623377,0.03534056,99.61529651],[4.53623423,0.03534231,99.6149511],[4.53623468,0.03534405,99.6146043],[4.53623514,0.03534579,99.61425613],[4.5362356,0.03534754,99.61390658],[4.53623605,0.03534928,99.61355563],[4.53623651,0.03535103,99.61320328],[4.53623696,0.03535277,99.61284954],[4.53623742,0.03535451,99.61249439],[4.53623788,0.03535626,99.61213783],[4.53623833,0.035358,99.61177985],[4.53623879,0.03535975,99.61142046],[4.53623924,0.03536149,99.61105964],[4.5362397,0.03536323,99.61069739],[4.53624016,0.03536498,99.61033371],[4.53624061,0.03536672,99.60996858],[4.53624107,0.03536847,99.60960202],[4.53624152,0.03537021,99.609234],[4.53624198,0.03537195,99.60886454],[4.53624243,0.0353737,99.60849361],[4.53624289,0.03537544,99.60812122],[4.53624335,0.03537719,99.60774737],[4.5362438,0.03537893,99.60737204],[4.53624426,0.03538067,99.60699523],[4.53624471,0.03538242,99.60661694],[4.53624517,0.03538416,99.60623716],[4.53624562,0.03538591,99.6058559],[4.53624608,0.03538765,99.60547313],[4.53624653,0.03538939,99.60508886],[4.53624699,0.03539114,99.60470309],[4.53624745,0.03539288,99.60431581],[4.5362479,0.03539463,99.603927],[4.53624836,0.03539637,99.60353668],[4.53624881,0.03539812,99.60314484],[4.53624927,0.03539986,99.60275146],[4.53624972,0.0354016,99.60235654],[4.53625018,0.03540335,99.60196009],[4.53625063,0.03540509,99.60156209],[4.53625109,0.03540684,99.60116253],[4.53625154,0.03540858,99.60076141],[4.536252,0.03541032,99.60035871],[4.53625245,0.03541207,99.59995443],[4.53625291,0.03541381,99.59954855],[4.53625337,0.03541556,99.59914108],[4.53625382,0.0354173,99.598732],[4.53625428,0.03541905,99.59832131],[4.53625473,0.03542079,99.597909],[4.53625519,0.03542253,99.59749507],[4.53625564,0.03542428,99.59707951],[4.5362561,0.03542602,99.59666232],[4.53625655,0.03542777,99.59624348],[4.53625701,0.03542951,99.595823],[4.53625746,0.03543126,99.59540086],[4.53625792,0.035433,99.59497707],[4.53625837,0.03543474,99.59455161],[4.53625883,0.03543649,99.59412447],[4.53625928,0.03543823,99.59369566],[4.53625974,0.03543998,99.59326516],[4.53626019,0.03544172,99.59283298],[4.53626065,0.03544347,99.5923991],[4.5362611,0.03544521,99.59196351],[4.53626155,0.03544695,99.59152622],[4.53626201,0.0354487,99.59108721],[4.53626246,0.03545044,99.59064648],[4.53626292,0.03545219,99.59020402],[4.53626337,0.03545393,99.58975984],[4.53626383,0.03545568,99.58931391],[4.53626428,0.03545742,99.58886624],[4.53626474,0.03545917,99.58841681],[4.53626519,0.03546091,99.58796563],[4.53626565,0.03546265,99.58751268],[4.5362661,0.0354644,99.58705797],[4.53626655,0.03546614,99.58660148],[4.53626701,0.03546789,99.5861432],[4.53626746,0.03546963,99.58568314],[4.53626792,0.03547138,99.58522129],[4.53626837,0.03547312,99.58475763],[4.53626883,0.03547487,99.58429217],[4.53626928,0.03547661,99.58382489],[4.53626973,0.03547835,99.5833558],[4.53627019,0.0354801,99.58288488],[4.53627064,0.03548184,99.58241213],[4.5362711,0.03548359,99.58193755],[4.53627155,0.03548533,99.58146112],[4.536272,0.03548708,99.58098284],[4.53627246,0.03548882,99.5805027],[4.53627291,0.03549057,99.5800207],[4.53627337,0.03549231,99.57953684],[4.53627382,0.03549406,99.5790511],[4.53627427,0.0354958,99.57856348],[4.53627473,0.03549754,99.57807397],[4.53627518,0.03549929,99.57758257],[4.53627564,0.03550103,99.57708928],[4.53627609,0.03550278,99.57659407],[4.53627654,0.03550452,99.57609696],[4.536277,0.03550627,99.57559793],[4.53627745,0.03550801,99.57509698],[4.5362779,0.03550976,99.57459409],[4.53627836,0.0355115,99.57408927],[4.53627881,0.03551325,99.57358251],[4.53627926,0.03551499,99.5730738],[4.53627972,0.03551674,99.57256314],[4.53628017,0.03551848,99.57205051],[4.53628062,0.03552023,99.57153592],[4.53628108,0.03552197,99.57101935],[4.53628153,0.03552372,99.57050081],[4.53628198,0.03552546,99.56998028],[4.53628244,0.0355272,99.56945776],[4.53628289,0.03552895,99.56893324],[4.53628334,0.03553069,99.56840671],[4.5362838,0.03553244,99.56787818],[4.53628425,0.03553418,99.56734763],[4.5362847,0.03553593,99.56681505],[4.53628516,0.03553767,99.56628045],[4.53628561,0.03553942,99.56574381],[4.53628606,0.03554116,99.56520513],[4.53628652,0.03554291,99.5646644],[4.53628697,0.03554465,99.56412162],[4.53628742,0.0355464,99.56357678],[4.53628787,0.03554814,99.56302987],[4.53628833,0.03554989,99.56248088],[4.53628878,0.03555163,99.56192982],[4.53628923,0.03555338,99.56137666],[4.53628968,0.03555512,99.56082141],[4.53629014,0.03555687,99.56026405],[4.53629059,0.03555861,99.55970458],[4.53629104,0.03556036,99.55914298],[4.53629149,0.0355621,99.55857926],[4.53629195,0.03556385,99.55801341],[4.5362924,0.03556559,99.55744541],[4.53629285,0.03556734,99.55687526],[4.5362933,0.03556908,99.55630296],[4.53629376,0.03557083,99.55572848],[4.53629421,0.03557257,99.55515184],[4.53629466,0.03557432,99.55457301],[4.53629511,0.03557606,99.553992],[4.53629556,0.03557781,99.55340879],[4.53629602,0.03557955,99.55282337],[4.53629647,0.0355813,99.55223575],[4.53629692,0.03558304,99.55164594],[4.53629737,0.03558479,99.55105395],[4.53629782,0.03558653,99.5504598],[4.53629827,0.03558828,99.54986351],[4.53629873,0.03559002,99.54926508],[4.53629918,0.03559177,99.54866453],[4.53629963,0.03559352,99.54806188],[4.53630008,0.03559526,99.54745715],[4.53630053,0.03559701,99.54685034],[4.53630098,0.03559875,99.54624147],[4.53630144,0.0356005,99.54563056],[4.53630189,0.03560224,99.54501762],[4.53630234,0.03560399,99.54440267],[4.53630279,0.03560573,99.54378572],[4.53630324,0.03560748,99.54316679],[4.53630369,0.03560922,99.54254589],[4.53630414,0.03561097,99.54192303],[4.53630459,0.03561271,99.54129823],[4.53630505,0.03561446,99.54067151],[4.5363055,0.0356162,99.54004287],[4.53630595,0.03561795,99.53941234],[4.5363064,0.03561969,99.53877993],[4.53630685,0.03562144,99.53814565],[4.5363073,0.03562319,99.53750952],[4.53630775,0.03562493,99.53687155],[4.5363082,0.03562668,99.53623176],[4.53630865,0.03562842,99.53559016],[4.53630911,0.03563017,99.53494677],[4.53630956,0.03563191,99.5343016],[4.53631001,0.03563366,99.53365467],[4.53631046,0.0356354,99.53300598],[4.53631091,0.03563715,99.53235557],[4.53631136,0.03563889,99.53170343],[4.53631181,0.03564064,99.53104959],[4.53631226,0.03564239,99.53039406],[4.53631271,0.03564413,99.52973685],[4.53631316,0.03564588,99.52907799],[4.53631362,0.03564762,99.52841748],[4.53631407,0.03564937,99.52775534],[4.53631452,0.03565111,99.52709158],[4.53631497,0.03565286,99.52642623],[4.53631542,0.0356546,99.52575929],[4.53631587,0.03565635,99.52509078],[4.53631632,0.03565809,99.52442071],[4.53631677,0.03565984,99.52374911],[4.53631722,0.03566158,99.52307597],[4.53631767,0.03566333,99.52240133],[4.53631813,0.03566508,99.5217252],[4.53631858,0.03566682,99.52104759],[4.53631903,0.03566857,99.52036851],[4.53631948,0.03567031,99.51968799],[4.53631993,0.03567206,99.51900605],[4.53632038,0.0356738,99.51832269],[4.53632083,0.03567555,99.51763793],[4.53632128,0.03567729,99.5169518],[4.53632173,0.03567904,99.5162643],[4.53632219,0.03568078,99.51557546],[4.53632264,0.03568253,99.51488529],[4.53632309,0.03568428,99.5141938],[4.53632354,0.03568602,99.51350102],[4.53632399,0.03568777,99.51280695],[4.53632444,0.03568951,99.51211163],[4.53632489,0.03569126,99.51141505],[4.53632534,0.035693,99.51071724],[4.5363258,0.03569475,99.51001822],[4.53632625,0.03569649,99.509318],[4.5363267,0.03569824,99.5086166],[4.53632715,0.03569998,99.50791404],[4.5363276,0.03570173,99.50721032],[4.53632805,0.03570347,99.50650548],[4.5363285,0.03570522,99.50579952],[4.53632896,0.03570696,99.50509246],[4.53632941,0.03570871,99.50438433],[4.53632986,0.03571045,99.50367512],[4.53633031,0.0357122,99.50296487],[4.53633076,0.03571394,99.50225359],[4.53633121,0.03571569,99.50154129],[4.53633167,0.03571743,99.500828],[4.53633212,0.03571918,99.50011373],[4.53633257,0.03572092,99.49939848],[4.53633302,0.03572267,99.49868227],[4.53633347,0.03572442,99.49796512],[4.53633393,0.03572616,99.49724702],[4.53633438,0.03572791,99.49652799],[4.53633483,0.03572965,99.49580805],[4.53633528,0.0357314,99.49508719],[4.53633574,0.03573314,99.49436543],[4.53633619,0.03573489,99.49364279],[4.53633664,0.03573663,99.49291926],[4.53633709,0.03573838,99.49219486],[4.53633755,0.03574012,99.49146961],[4.536338,0.03574187,99.4907435],[4.53633845,0.03574361,99.49001656],[4.5363389,0.03574536,99.48928878],[4.53633936,0.0357471,99.48856019],[4.53633981,0.03574885,99.48783078],[4.53634026,0.03575059,99.48710058],[4.53634071,0.03575234,99.48636959],[4.53634117,0.03575408,99.48563781],[4.53634162,0.03575583,99.48490527],[4.53634207,0.03575757,99.48417197],[4.53634253,0.03575932,99.48343791],[4.53634298,0.03576106,99.48270312],[4.53634343,0.03576281,99.4819676],[4.53634388,0.03576455,99.48123135],[4.53634434,0.0357663,99.4804944],[4.53634479,0.03576804,99.47975675],[4.53634524,0.03576979,99.4790184],[4.5363457,0.03577153,99.47827937],[4.53634615,0.03577328,99.47753968],[4.5363466,0.03577502,99.47679932],[4.53634706,0.03577677,99.47605831],[4.53634751,0.03577851,99.47531666],[4.53634796,0.03578026,99.47457437],[4.53634841,0.035782,99.47383147],[4.53634887,0.03578374,99.47308795],[4.53634932,0.03578549,99.47234383],[4.53634977,0.03578723,99.47159912],[4.53635023,0.03578898,99.47085382],[4.53635068,0.03579072,99.47010795],[4.53635113,0.03579247,99.46936152],[4.53635159,0.03579421,99.46861453],[4.53635204,0.03579596,99.467867],[4.53635249,0.0357977,99.46711893],[4.53635295,0.03579945,99.46637034],[4.5363534,0.03580119,99.46562123],[4.53635385,0.03580294,99.46487162],[4.53635431,0.03580468,99.46412151],[4.53635476,0.03580643,99.46337091],[4.53635521,0.03580817,99.46261984],[4.53635567,0.03580992,99.4618683],[4.53635612,0.03581166,99.4611163],[4.53635657,0.03581341,99.46036385],[4.53635702,0.03581515,99.45961097],[4.53635748,0.0358169,99.45885765],[4.53635793,0.03581864,99.45810392],[4.53635838,0.03582039,99.45734977],[4.53635884,0.03582213,99.45659522],[4.53635929,0.03582388,99.45584028],[4.53635974,0.03582562,99.45508496],[4.5363602,0.03582737,99.45432927],[4.53636065,0.03582911,99.45357322],[4.5363611,0.03583086,99.45281681],[4.53636156,0.0358326,99.45206006],[4.53636201,0.03583435,99.45130298],[4.53636246,0.03583609,99.45054558],[4.53636292,0.03583784,99.44978787],[4.53636337,0.03583958,99.44902986],[4.53636382,0.03584133,99.44827156],[4.53636427,0.03584307,99.44751299],[4.53636473,0.03584481,99.44675414],[4.53636518,0.03584656,99.44599503],[4.53636563,0.0358483,99.44523568],[4.53636609,0.03585005,99.44447609],[4.53636654,0.03585179,99.44371627],[4.53636699,0.03585354,99.44295623],[4.53636744,0.03585528,99.44219599],[4.5363679,0.03585703,99.44143555],[4.53636835,0.03585877,99.44067492],[4.5363688,0.03586052,99.43991412],[4.53636926,0.03586226,99.43915315],[4.53636971,0.03586401,99.43839202],[4.53637016,0.03586575,99.43763075],[4.53637061,0.0358675,99.43686935],[4.53637107,0.03586924,99.43610782],[4.53637152,0.03587099,99.43534617],[4.53637197,0.03587273,99.43458442],[4.53637242,0.03587448,99.43382258],[4.53637288,0.03587622,99.43306065],[4.53637333,0.03587797,99.43229865],[4.53637378,0.03587971,99.43153659],[4.53637423,0.03588146,99.43077447],[4.53637469,0.0358832,99.4300123],[4.53637514,0.03588495,99.42925011],[4.53637559,0.03588669,99.42848789],[4.53637604,0.03588844,99.42772566],[4.5363765,0.03589018,99.42696342],[4.53637695,0.03589193,99.4262012],[4.5363774,0.03589367,99.42543899],[4.53637785,0.03589542,99.42467681],[4.53637831,0.03589716,99.42391466],[4.53637876,0.03589891,99.42315257],[4.53637921,0.03590065,99.42239053],[4.53637966,0.0359024,99.42162856],[4.53638011,0.03590414,99.42086667],[4.53638057,0.03590589,99.42010486],[4.53638102,0.03590764,99.41934316],[4.53638147,0.03590938,99.41858157],[4.53638192,0.03591113,99.41782011],[4.53638237,0.03591287,99.41705879],[4.53638282,0.03591462,99.41629763],[4.53638328,0.03591636,99.41553665],[4.53638373,0.03591811,99.41477585],[4.53638418,0.03591985,99.41401525],[4.53638463,0.0359216,99.41325486],[4.53638508,0.03592334,99.4124947],[4.53638553,0.03592509,99.41173477],[4.53638599,0.03592683,99.4109751],[4.53638644,0.03592858,99.4102157],[4.53638689,0.03593032,99.40945657],[4.53638734,0.03593207,99.40869774],[4.53638779,0.03593381,99.40793921],[4.53638824,0.03593556,99.407181],[4.53638869,0.0359373,99.40642313],[4.53638914,0.03593905,99.4056656],[4.5363896,0.03594079,99.40490843],[4.53639005,0.03594254,99.40415163],[4.5363905,0.03594429,99.40339522],[4.53639095,0.03594603,99.4026392],[4.5363914,0.03594778,99.4018836],[4.53639185,0.03594952,99.40112843],[4.5363923,0.03595127,99.40037369],[4.53639275,0.03595301,99.39961941],[4.5363932,0.03595476,99.3988656],[4.53639365,0.0359565,99.39811226],[4.53639411,0.03595825,99.39735942],[4.53639456,0.03595999,99.39660707],[4.53639501,0.03596174,99.39585521],[4.53639546,0.03596348,99.39510383],[4.53639591,0.03596523,99.39435295],[4.53639636,0.03596698,99.39360254],[4.53639681,0.03596872,99.39285262],[4.53639726,0.03597047,99.39210317],[4.53639771,0.03597221,99.3913542],[4.53639816,0.03597396,99.3906057],[4.53639861,0.0359757,99.38985767],[4.53639906,0.03597745,99.3891101],[4.53639951,0.03597919,99.388363],[4.53639996,0.03598094,99.38761636],[4.53640041,0.03598269,99.38687018],[4.53640086,0.03598443,99.38612446],[4.53640132,0.03598618,99.38537919],[4.53640177,0.03598792,99.38463437],[4.53640222,0.03598967,99.38389],[4.53640267,0.03599141,99.38314607],[4.53640312,0.03599316,99.38240259],[4.53640357,0.0359949,99.38165955],[4.53640402,0.03599665,99.38091694],[4.53640447,0.0359984,99.38017477],[4.53640492,0.03600014,99.37943303],[4.53640537,0.03600189,99.37869173],[4.53640582,0.03600363,99.37795085],[4.53640627,0.03600538,99.37721039],[4.53640672,0.03600712,99.37647036],[4.53640717,0.03600887,99.37573074],[4.53640762,0.03601061,99.37499154],[4.53640807,0.03601236,99.37425276],[4.53640852,0.03601411,99.37351439],[4.53640897,0.03601585,99.37277642],[4.53640942,0.0360176,99.37203887],[4.53640987,0.03601934,99.37130171],[4.53641032,0.03602109,99.37056496],[4.53641077,0.03602283,99.36982861],[4.53641122,0.03602458,99.36909265],[4.53641167,0.03602632,99.36835709],[4.53641212,0.03602807,99.36762191],[4.53641257,0.03602982,99.36688713],[4.53641302,0.03603156,99.36615273],[4.53641347,0.03603331,99.36541871],[4.53641392,0.03603505,99.36468508],[4.53641437,0.0360368,99.36395182],[4.53641482,0.03603854,99.36321893],[4.53641526,0.03604029,99.36248641],[4.53641571,0.03604204,99.36175425],[4.53641616,0.03604378,99.36102244],[4.53641661,0.03604553,99.36029098],[4.53641706,0.03604727,99.35955987],[4.53641751,0.03604902,99.35882908],[4.53641796,0.03605076,99.35809863],[4.53641841,0.03605251,99.3573685],[4.53641886,0.03605426,99.35663868],[4.53641931,0.036056,99.35590918],[4.53641976,0.03605775,99.35517997],[4.53642021,0.03605949,99.35445107],[4.53642066,0.03606124,99.35372246],[4.53642111,0.03606298,99.35299413],[4.53642156,0.03606473,99.35226608],[4.53642201,0.03606648,99.35153831],[4.53642246,0.03606822,99.3508108],[4.5364229,0.03606997,99.35008355],[4.53642335,0.03607171,99.34935656],[4.5364238,0.03607346,99.34862981],[4.53642425,0.03607521,99.34790331],[4.5364247,0.03607695,99.34717704],[4.53642515,0.0360787,99.346451],[4.5364256,0.03608044,99.34572519],[4.53642605,0.03608219,99.34499959],[4.5364265,0.03608393,99.3442742],[4.53642695,0.03608568,99.34354902],[4.53642739,0.03608743,99.34282404],[4.53642784,0.03608917,99.34209924],[4.53642829,0.03609092,99.34137464],[4.53642874,0.03609266,99.34065021],[4.53642919,0.03609441,99.33992596],[4.53642964,0.03609616,99.33920188],[4.53643009,0.0360979,99.33847795],[4.53643054,0.03609965,99.33775418],[4.53643098,0.03610139,99.33703057],[4.53643143,0.03610314,99.33630709],[4.53643188,0.03610489,99.33558375],[4.53643233,0.03610663,99.33486054],[4.53643278,0.03610838,99.33413746],[4.53643322,0.03611012,99.33341449],[4.53643367,0.03611187,99.33269164],[4.53643412,0.03611362,99.33196889],[4.53643457,0.03611536,99.33124625],[4.53643502,0.03611711,99.33052369],[4.53643547,0.03611886,99.3298012],[4.53643591,0.0361206,99.32907878],[4.53643636,0.03612235,99.32835639],[4.53643681,0.03612409,99.32763403],[4.53643726,0.03612584,99.32691169],[4.5364377,0.03612759,99.32618936],[4.53643815,0.03612933,99.32546705],[4.5364386,0.03613108,99.32474477],[4.53643905,0.03613282,99.32402251],[4.53643949,0.03613457,99.32330028],[4.53643994,0.03613632,99.32257808],[4.53644039,0.03613806,99.32185592],[4.53644083,0.03613981,99.32113379],[4.53644128,0.03614156,99.32041169],[4.53644173,0.0361433,99.31968964],[4.53644218,0.03614505,99.31896763],[4.53644262,0.0361468,99.31824567],[4.53644307,0.03614854,99.31752375],[4.53644352,0.03615029,99.31680188],[4.53644396,0.03615203,99.31608007],[4.53644441,0.03615378,99.31535831],[4.53644486,0.03615553,99.31463661],[4.5364453,0.03615727,99.31391497],[4.53644575,0.03615902,99.31319339],[4.5364462,0.03616077,99.31247188],[4.53644664,0.03616251,99.31175043],[4.53644709,0.03616426,99.31102906],[4.53644754,0.03616601,99.31030776],[4.53644798,0.03616775,99.30958653],[4.53644843,0.0361695,99.30886538],[4.53644887,0.03617125,99.30814431],[4.53644932,0.03617299,99.30742332],[4.53644977,0.03617474,99.30670241],[4.53645021,0.03617649,99.30598159],[4.53645066,0.03617823,99.30526087],[4.53645111,0.03617998,99.30454023],[4.53645155,0.03618173,99.30381969],[4.536452,0.03618347,99.30309924],[4.53645244,0.03618522,99.3023789],[4.53645289,0.03618696,99.30165865],[4.53645334,0.03618871,99.30093851],[4.53645378,0.03619046,99.30021847],[4.53645423,0.0361922,99.29949854],[4.53645467,0.03619395,99.29877873],[4.53645512,0.0361957,99.29805902],[4.53645557,0.03619744,99.29733943],[4.53645601,0.03619919,99.29661996],[4.53645646,0.03620094,99.29590061],[4.53645691,0.03620268,99.29518138],[4.53645735,0.03620443,99.29446227],[4.5364578,0.03620618,99.29374329],[4.53645824,0.03620792,99.29302444],[4.53645869,0.03620967,99.29230572],[4.53645914,0.03621142,99.29158713],[4.53645958,0.03621316,99.29086868],[4.53646003,0.03621491,99.29015037],[4.53646047,0.03621666,99.2894322],[4.53646092,0.0362184,99.28871416],[4.53646137,0.03622015,99.28799628],[4.53646181,0.0362219,99.28727853],[4.53646226,0.03622364,99.28656094],[4.53646271,0.03622539,99.2858435],[4.53646315,0.03622714,99.28512621],[4.5364636,0.03622888,99.28440906],[4.53646404,0.03623063,99.28369204],[4.53646449,0.03623237,99.2829751],[4.53646494,0.03623412,99.28225824],[4.53646538,0.03623587,99.28154143],[4.53646583,0.03623761,99.28082463],[4.53646628,0.03623936,99.28010783],[4.53646672,0.03624111,99.27939104],[4.53646717,0.03624285,99.27867426],[4.53646762,0.0362446,99.27795748],[4.53646806,0.03624635,99.2772407],[4.53646851,0.03624809,99.27652392],[4.53646895,0.03624984,99.27580714],[4.5364694,0.03625159,99.27509036],[4.53646985,0.03625333,99.27437358],[4.53647029,0.03625508,99.27365679],[4.53647074,0.03625683,99.27294001],[4.53647119,0.03625857,99.27222322],[4.53647163,0.03626032,99.27150643],[4.53647208,0.03626207,99.27078963],[4.53647253,0.03626381,99.27007282],[4.53647297,0.03626556,99.26935601],[4.53647342,0.0362673,99.26863919],[4.53647386,0.03626905,99.26792236],[4.53647431,0.0362708,99.26720553],[4.53647476,0.03627254,99.26648868],[4.5364752,0.03627429,99.26577182],[4.53647565,0.03627604,99.26505495],[4.5364761,0.03627778,99.26433807],[4.53647654,0.03627953,99.26362117],[4.53647699,0.03628128,99.26290426],[4.53647744,0.03628302,99.26218732],[4.53647788,0.03628477,99.26147036],[4.53647833,0.03628652,99.26075336],[4.53647877,0.03628826,99.26003634],[4.53647922,0.03629001,99.25931927],[4.53647967,0.03629176,99.25860215],[4.53648011,0.0362935,99.25788498],[4.53648056,0.03629525,99.25716776],[4.53648101,0.03629699,99.25645048],[4.53648145,0.03629874,99.25573314],[4.5364819,0.03630049,99.25501572],[4.53648235,0.03630223,99.25429823],[4.53648279,0.03630398,99.25358066],[4.53648324,0.03630573,99.25286301],[4.53648369,0.03630747,99.25214526],[4.53648413,0.03630922,99.25142743],[4.53648458,0.03631097,99.25070949],[4.53648502,0.03631271,99.24999145],[4.53648547,0.03631446,99.24927331],[4.53648592,0.03631621,99.24855505],[4.53648636,0.03631795,99.24783667],[4.53648681,0.0363197,99.24711817],[4.53648726,0.03632144,99.24639954],[4.5364877,0.03632319,99.24568078],[4.53648815,0.03632494,99.24496189],[4.5364886,0.03632668,99.24424285],[4.53648904,0.03632843,99.24352366],[4.53648949,0.03633018,99.24280433],[4.53648994,0.03633192,99.24208483],[4.53649038,0.03633367,99.24136518],[4.53649083,0.03633542,99.24064536],[4.53649128,0.03633716,99.23992537],[4.53649172,0.03633891,99.23920521],[4.53649217,0.03634066,99.23848486],[4.53649261,0.0363424,99.23776433],[4.53649306,0.03634415,99.23704361],[4.53649351,0.03634589,99.2363227],[4.53649395,0.03634764,99.23560158],[4.5364944,0.03634939,99.23488027],[4.53649485,0.03635113,99.23415874],[4.53649529,0.03635288,99.233437],[4.53649574,0.03635463,99.23271504],[4.53649619,0.03635637,99.23199286],[4.53649663,0.03635812,99.23127045],[4.53649708,0.03635987,99.23054781],[4.53649753,0.03636161,99.22982493],[4.53649797,0.03636336,99.22910181],[4.53649842,0.03636511,99.22837845],[4.53649887,0.03636685,99.22765486],[4.53649931,0.0363686,99.22693108],[4.53649976,0.03637034,99.2262071],[4.5365002,0.03637209,99.22548292],[4.53650065,0.03637384,99.22475855],[4.5365011,0.03637558,99.22403396],[4.53650154,0.03637733,99.22330916],[4.53650199,0.03637908,99.22258415],[4.53650244,0.03638082,99.22185891],[4.53650288,0.03638257,99.22113345],[4.53650333,0.03638432,99.22040776],[4.53650378,0.03638606,99.21968183],[4.53650422,0.03638781,99.21895567],[4.53650467,0.03638955,99.21822927],[4.53650512,0.0363913,99.21750261],[4.53650556,0.03639305,99.21677571],[4.53650601,0.03639479,99.21604855],[4.53650646,0.03639654,99.21532113],[4.5365069,0.03639829,99.21459345],[4.53650735,0.03640003,99.2138655],[4.5365078,0.03640178,99.21313727],[4.53650824,0.03640353,99.21240877],[4.53650869,0.03640527,99.21167998],[4.53650914,0.03640702,99.21095091],[4.53650958,0.03640876,99.21022155],[4.53651003,0.03641051,99.20949189],[4.53651048,0.03641226,99.20876194],[4.53651092,0.036414,99.20803168],[4.53651137,0.03641575,99.20730111],[4.53651182,0.0364175,99.20657023],[4.53651226,0.03641924,99.20583904],[4.53651271,0.03642099,99.20510752],[4.53651316,0.03642274,99.20437568],[4.5365136,0.03642448,99.20364351],[4.53651405,0.03642623,99.202911],[4.5365145,0.03642797,99.20217816],[4.53651494,0.03642972,99.20144497],[4.53651539,0.03643147,99.20071144],[4.53651584,0.03643321,99.19997755],[4.53651628,0.03643496,99.19924331],[4.53651673,0.03643671,99.19850871],[4.53651718,0.03643845,99.19777375],[4.53651762,0.0364402,99.19703842],[4.53651807,0.03644195,99.19630271],[4.53651852,0.03644369,99.19556663],[4.53651896,0.03644544,99.19483016],[4.53651941,0.03644718,99.19409331],[4.53651986,0.03644893,99.19335607],[4.5365203,0.03645068,99.19261844],[4.53652075,0.03645241,99.1918804],[4.5365212,0.03645416,99.19114197],[4.53652164,0.03645591,99.19040312],[4.53652209,0.03645765,99.18966387],[4.53652254,0.0364594,99.1889242],[4.53652298,0.03646115,99.18818411],[4.53652343,0.03646289,99.18744359],[4.53652388,0.03646464,99.18670265],[4.53652432,0.03646638,99.18596127],[4.53652477,0.03646813,99.18521945],[4.53652522,0.03646988,99.1844772],[4.53652566,0.03647162,99.18373449],[4.53652611,0.03647337,99.18299131],[4.53652656,0.03647512,99.1822476],[4.536527,0.03647686,99.18150333],[4.53652745,0.03647861,99.18075846],[4.5365279,0.03648036,99.18001295],[4.53652834,0.0364821,99.17926676],[4.53652879,0.03648385,99.17851984],[4.53652924,0.03648559,99.17777216],[4.53652968,0.03648734,99.17702368],[4.53653013,0.03648909,99.17627435],[4.53653058,0.03649083,99.17552414],[4.53651524,0.03649479,99.12796696]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-3,"type":"stop","predecessorId":0,"sOffset":248.3390056326}},{"geometry":{"coordinates":[[[4.53653058,0.03649083,99.17552414],[4.53653013,0.03648909,99.17627435],[4.53652968,0.03648734,99.17702368],[4.53652924,0.03648559,99.17777216],[4.53652879,0.03648385,99.17851984],[4.53652834,0.0364821,99.17926676],[4.5365279,0.03648036,99.18001295],[4.53652745,0.03647861,99.18075846],[4.536527,0.03647686,99.18150333],[4.53652656,0.03647512,99.1822476],[4.53652611,0.03647337,99.18299131],[4.53652566,0.03647162,99.18373449],[4.53652522,0.03646988,99.1844772],[4.53652477,0.03646813,99.18521945],[4.53652432,0.03646638,99.18596127],[4.53652388,0.03646464,99.18670265],[4.53652343,0.03646289,99.18744359],[4.53652298,0.03646115,99.18818411],[4.53652254,0.0364594,99.1889242],[4.53652209,0.03645765,99.18966387],[4.53652164,0.03645591,99.19040312],[4.5365212,0.03645416,99.19114197],[4.53652075,0.03645241,99.1918804],[4.5365203,0.03645068,99.19261844],[4.53651986,0.03644893,99.19335607],[4.53651941,0.03644718,99.19409331],[4.53651896,0.03644544,99.19483016],[4.53651852,0.03644369,99.19556663],[4.53651807,0.03644195,99.19630271],[4.53651762,0.0364402,99.19703842],[4.53651718,0.03643845,99.19777375],[4.53651673,0.03643671,99.19850871],[4.53651628,0.03643496,99.19924331],[4.53651584,0.03643321,99.19997755],[4.53651539,0.03643147,99.20071144],[4.53651494,0.03642972,99.20144497],[4.5365145,0.03642797,99.20217816],[4.53651405,0.03642623,99.202911],[4.5365136,0.03642448,99.20364351],[4.53651316,0.03642274,99.20437568],[4.53651271,0.03642099,99.20510752],[4.53651226,0.03641924,99.20583904],[4.53651182,0.0364175,99.20657023],[4.53651137,0.03641575,99.20730111],[4.53651092,0.036414,99.20803168],[4.53651048,0.03641226,99.20876194],[4.53651003,0.03641051,99.20949189],[4.53650958,0.03640876,99.21022155],[4.53650914,0.03640702,99.21095091],[4.53650869,0.03640527,99.21167998],[4.53650824,0.03640353,99.21240877],[4.5365078,0.03640178,99.21313727],[4.53650735,0.03640003,99.2138655],[4.5365069,0.03639829,99.21459345],[4.53650646,0.03639654,99.21532113],[4.53650601,0.03639479,99.21604855],[4.53650556,0.03639305,99.21677571],[4.53650512,0.0363913,99.21750261],[4.53650467,0.03638955,99.21822927],[4.53650422,0.03638781,99.21895567],[4.53650378,0.03638606,99.21968183],[4.53650333,0.03638432,99.22040776],[4.53650288,0.03638257,99.22113345],[4.53650244,0.03638082,99.22185891],[4.53650199,0.03637908,99.22258415],[4.53650154,0.03637733,99.22330916],[4.5365011,0.03637558,99.22403396],[4.53650065,0.03637384,99.22475855],[4.5365002,0.03637209,99.22548292],[4.53649976,0.03637034,99.2262071],[4.53649931,0.0363686,99.22693108],[4.53649887,0.03636685,99.22765486],[4.53649842,0.03636511,99.22837845],[4.53649797,0.03636336,99.22910181],[4.53649753,0.03636161,99.22982493],[4.53649708,0.03635987,99.23054781],[4.53649663,0.03635812,99.23127045],[4.53649619,0.03635637,99.23199286],[4.53649574,0.03635463,99.23271504],[4.53649529,0.03635288,99.233437],[4.53649485,0.03635113,99.23415874],[4.5364944,0.03634939,99.23488027],[4.53649395,0.03634764,99.23560158],[4.53649351,0.03634589,99.2363227],[4.53649306,0.03634415,99.23704361],[4.53649261,0.0363424,99.23776433],[4.53649217,0.03634066,99.23848486],[4.53649172,0.03633891,99.23920521],[4.53649128,0.03633716,99.23992537],[4.53649083,0.03633542,99.24064536],[4.53649038,0.03633367,99.24136518],[4.53648994,0.03633192,99.24208483],[4.53648949,0.03633018,99.24280433],[4.53648904,0.03632843,99.24352366],[4.5364886,0.03632668,99.24424285],[4.53648815,0.03632494,99.24496189],[4.5364877,0.03632319,99.24568078],[4.53648726,0.03632144,99.24639954],[4.53648681,0.0363197,99.24711817],[4.53648636,0.03631795,99.24783667],[4.53648592,0.03631621,99.24855505],[4.53648547,0.03631446,99.24927331],[4.53648502,0.03631271,99.24999145],[4.53648458,0.03631097,99.25070949],[4.53648413,0.03630922,99.25142743],[4.53648369,0.03630747,99.25214526],[4.53648324,0.03630573,99.25286301],[4.53648279,0.03630398,99.25358066],[4.53648235,0.03630223,99.25429823],[4.5364819,0.03630049,99.25501572],[4.53648145,0.03629874,99.25573314],[4.53648101,0.03629699,99.25645048],[4.53648056,0.03629525,99.25716776],[4.53648011,0.0362935,99.25788498],[4.53647967,0.03629176,99.25860215],[4.53647922,0.03629001,99.25931927],[4.53647877,0.03628826,99.26003634],[4.53647833,0.03628652,99.26075336],[4.53647788,0.03628477,99.26147036],[4.53647744,0.03628302,99.26218732],[4.53647699,0.03628128,99.26290426],[4.53647654,0.03627953,99.26362117],[4.5364761,0.03627778,99.26433807],[4.53647565,0.03627604,99.26505495],[4.5364752,0.03627429,99.26577182],[4.53647476,0.03627254,99.26648868],[4.53647431,0.0362708,99.26720553],[4.53647386,0.03626905,99.26792236],[4.53647342,0.0362673,99.26863919],[4.53647297,0.03626556,99.26935601],[4.53647253,0.03626381,99.27007282],[4.53647208,0.03626207,99.27078963],[4.53647163,0.03626032,99.27150643],[4.53647119,0.03625857,99.27222322],[4.53647074,0.03625683,99.27294001],[4.53647029,0.03625508,99.27365679],[4.53646985,0.03625333,99.27437358],[4.5364694,0.03625159,99.27509036],[4.53646895,0.03624984,99.27580714],[4.53646851,0.03624809,99.27652392],[4.53646806,0.03624635,99.2772407],[4.53646762,0.0362446,99.27795748],[4.53646717,0.03624285,99.27867426],[4.53646672,0.03624111,99.27939104],[4.53646628,0.03623936,99.28010783],[4.53646583,0.03623761,99.28082463],[4.53646538,0.03623587,99.28154143],[4.53646494,0.03623412,99.28225824],[4.53646449,0.03623237,99.2829751],[4.53646404,0.03623063,99.28369204],[4.5364636,0.03622888,99.28440906],[4.53646315,0.03622714,99.28512621],[4.53646271,0.03622539,99.2858435],[4.53646226,0.03622364,99.28656094],[4.53646181,0.0362219,99.28727853],[4.53646137,0.03622015,99.28799628],[4.53646092,0.0362184,99.28871416],[4.53646047,0.03621666,99.2894322],[4.53646003,0.03621491,99.29015037],[4.53645958,0.03621316,99.29086868],[4.53645914,0.03621142,99.29158713],[4.53645869,0.03620967,99.29230572],[4.53645824,0.03620792,99.29302444],[4.5364578,0.03620618,99.29374329],[4.53645735,0.03620443,99.29446227],[4.53645691,0.03620268,99.29518138],[4.53645646,0.03620094,99.29590061],[4.53645601,0.03619919,99.29661996],[4.53645557,0.03619744,99.29733943],[4.53645512,0.0361957,99.29805902],[4.53645467,0.03619395,99.29877873],[4.53645423,0.0361922,99.29949854],[4.53645378,0.03619046,99.30021847],[4.53645334,0.03618871,99.30093851],[4.53645289,0.03618696,99.30165865],[4.53645244,0.03618522,99.3023789],[4.536452,0.03618347,99.30309924],[4.53645155,0.03618173,99.30381969],[4.53645111,0.03617998,99.30454023],[4.53645066,0.03617823,99.30526087],[4.53645021,0.03617649,99.30598159],[4.53644977,0.03617474,99.30670241],[4.53644932,0.03617299,99.30742332],[4.53644887,0.03617125,99.30814431],[4.53644843,0.0361695,99.30886538],[4.53644798,0.03616775,99.30958653],[4.53644754,0.03616601,99.31030776],[4.53644709,0.03616426,99.31102906],[4.53644664,0.03616251,99.31175043],[4.5364462,0.03616077,99.31247188],[4.53644575,0.03615902,99.31319339],[4.5364453,0.03615727,99.31391497],[4.53644486,0.03615553,99.31463661],[4.53644441,0.03615378,99.31535831],[4.53644396,0.03615203,99.31608007],[4.53644352,0.03615029,99.31680188],[4.53644307,0.03614854,99.31752375],[4.53644262,0.0361468,99.31824567],[4.53644218,0.03614505,99.31896763],[4.53644173,0.0361433,99.31968964],[4.53644128,0.03614156,99.32041169],[4.53644083,0.03613981,99.32113379],[4.53644039,0.03613806,99.32185592],[4.53643994,0.03613632,99.32257808],[4.53643949,0.03613457,99.32330028],[4.53643905,0.03613282,99.32402251],[4.5364386,0.03613108,99.32474477],[4.53643815,0.03612933,99.32546705],[4.5364377,0.03612759,99.32618936],[4.53643726,0.03612584,99.32691169],[4.53643681,0.03612409,99.32763403],[4.53643636,0.03612235,99.32835639],[4.53643591,0.0361206,99.32907878],[4.53643547,0.03611886,99.3298012],[4.53643502,0.03611711,99.33052369],[4.53643457,0.03611536,99.33124625],[4.53643412,0.03611362,99.33196889],[4.53643367,0.03611187,99.33269164],[4.53643322,0.03611012,99.33341449],[4.53643278,0.03610838,99.33413746],[4.53643233,0.03610663,99.33486054],[4.53643188,0.03610489,99.33558375],[4.53643143,0.03610314,99.33630709],[4.53643098,0.03610139,99.33703057],[4.53643054,0.03609965,99.33775418],[4.53643009,0.0360979,99.33847795],[4.53642964,0.03609616,99.33920188],[4.53642919,0.03609441,99.33992596],[4.53642874,0.03609266,99.34065021],[4.53642829,0.03609092,99.34137464],[4.53642784,0.03608917,99.34209924],[4.53642739,0.03608743,99.34282404],[4.53642695,0.03608568,99.34354902],[4.5364265,0.03608393,99.3442742],[4.53642605,0.03608219,99.34499959],[4.5364256,0.03608044,99.34572519],[4.53642515,0.0360787,99.346451],[4.5364247,0.03607695,99.34717704],[4.53642425,0.03607521,99.34790331],[4.5364238,0.03607346,99.34862981],[4.53642335,0.03607171,99.34935656],[4.5364229,0.03606997,99.35008355],[4.53642246,0.03606822,99.3508108],[4.53642201,0.03606648,99.35153831],[4.53642156,0.03606473,99.35226608],[4.53642111,0.03606298,99.35299413],[4.53642066,0.03606124,99.35372246],[4.53642021,0.03605949,99.35445107],[4.53641976,0.03605775,99.35517997],[4.53641931,0.036056,99.35590918],[4.53641886,0.03605426,99.35663868],[4.53641841,0.03605251,99.3573685],[4.53641796,0.03605076,99.35809863],[4.53641751,0.03604902,99.35882908],[4.53641706,0.03604727,99.35955987],[4.53641661,0.03604553,99.36029098],[4.53641616,0.03604378,99.36102244],[4.53641571,0.03604204,99.36175425],[4.53641526,0.03604029,99.36248641],[4.53641482,0.03603854,99.36321893],[4.53641437,0.0360368,99.36395182],[4.53641392,0.03603505,99.36468508],[4.53641347,0.03603331,99.36541871],[4.53641302,0.03603156,99.36615273],[4.53641257,0.03602982,99.36688713],[4.53641212,0.03602807,99.36762191],[4.53641167,0.03602632,99.36835709],[4.53641122,0.03602458,99.36909265],[4.53641077,0.03602283,99.36982861],[4.53641032,0.03602109,99.37056496],[4.53640987,0.03601934,99.37130171],[4.53640942,0.0360176,99.37203887],[4.53640897,0.03601585,99.37277642],[4.53640852,0.03601411,99.37351439],[4.53640807,0.03601236,99.37425276],[4.53640762,0.03601061,99.37499154],[4.53640717,0.03600887,99.37573074],[4.53640672,0.03600712,99.37647036],[4.53640627,0.03600538,99.37721039],[4.53640582,0.03600363,99.37795085],[4.53640537,0.03600189,99.37869173],[4.53640492,0.03600014,99.37943303],[4.53640447,0.0359984,99.38017477],[4.53640402,0.03599665,99.38091694],[4.53640357,0.0359949,99.38165955],[4.53640312,0.03599316,99.38240259],[4.53640267,0.03599141,99.38314607],[4.53640222,0.03598967,99.38389],[4.53640177,0.03598792,99.38463437],[4.53640132,0.03598618,99.38537919],[4.53640086,0.03598443,99.38612446],[4.53640041,0.03598269,99.38687018],[4.53639996,0.03598094,99.38761636],[4.53639951,0.03597919,99.388363],[4.53639906,0.03597745,99.3891101],[4.53639861,0.0359757,99.38985767],[4.53639816,0.03597396,99.3906057],[4.53639771,0.03597221,99.3913542],[4.53639726,0.03597047,99.39210317],[4.53639681,0.03596872,99.39285262],[4.53639636,0.03596698,99.39360254],[4.53639591,0.03596523,99.39435295],[4.53639546,0.03596348,99.39510383],[4.53639501,0.03596174,99.39585521],[4.53639456,0.03595999,99.39660707],[4.53639411,0.03595825,99.39735942],[4.53639365,0.0359565,99.39811226],[4.5363932,0.03595476,99.3988656],[4.53639275,0.03595301,99.39961941],[4.5363923,0.03595127,99.40037369],[4.53639185,0.03594952,99.40112843],[4.5363914,0.03594778,99.4018836],[4.53639095,0.03594603,99.4026392],[4.5363905,0.03594429,99.40339522],[4.53639005,0.03594254,99.40415163],[4.5363896,0.03594079,99.40490843],[4.53638914,0.03593905,99.4056656],[4.53638869,0.0359373,99.40642313],[4.53638824,0.03593556,99.407181],[4.53638779,0.03593381,99.40793921],[4.53638734,0.03593207,99.40869774],[4.53638689,0.03593032,99.40945657],[4.53638644,0.03592858,99.4102157],[4.53638599,0.03592683,99.4109751],[4.53638553,0.03592509,99.41173477],[4.53638508,0.03592334,99.4124947],[4.53638463,0.0359216,99.41325486],[4.53638418,0.03591985,99.41401525],[4.53638373,0.03591811,99.41477585],[4.53638328,0.03591636,99.41553665],[4.53638282,0.03591462,99.41629763],[4.53638237,0.03591287,99.41705879],[4.53638192,0.03591113,99.41782011],[4.53638147,0.03590938,99.41858157],[4.53638102,0.03590764,99.41934316],[4.53638057,0.03590589,99.42010486],[4.53638011,0.03590414,99.42086667],[4.53637966,0.0359024,99.42162856],[4.53637921,0.03590065,99.42239053],[4.53637876,0.03589891,99.42315257],[4.53637831,0.03589716,99.42391466],[4.53637785,0.03589542,99.42467681],[4.5363774,0.03589367,99.42543899],[4.53637695,0.03589193,99.4262012],[4.5363765,0.03589018,99.42696342],[4.53637604,0.03588844,99.42772566],[4.53637559,0.03588669,99.42848789],[4.53637514,0.03588495,99.42925011],[4.53637469,0.0358832,99.4300123],[4.53637423,0.03588146,99.43077447],[4.53637378,0.03587971,99.43153659],[4.53637333,0.03587797,99.43229865],[4.53637288,0.03587622,99.43306065],[4.53637242,0.03587448,99.43382258],[4.53637197,0.03587273,99.43458442],[4.53637152,0.03587099,99.43534617],[4.53637107,0.03586924,99.43610782],[4.53637061,0.0358675,99.43686935],[4.53637016,0.03586575,99.43763075],[4.53636971,0.03586401,99.43839202],[4.53636926,0.03586226,99.43915315],[4.5363688,0.03586052,99.43991412],[4.53636835,0.03585877,99.44067492],[4.5363679,0.03585703,99.44143555],[4.53636744,0.03585528,99.44219599],[4.53636699,0.03585354,99.44295623],[4.53636654,0.03585179,99.44371627],[4.53636609,0.03585005,99.44447609],[4.53636563,0.0358483,99.44523568],[4.53636518,0.03584656,99.44599503],[4.53636473,0.03584481,99.44675414],[4.53636427,0.03584307,99.44751299],[4.53636382,0.03584133,99.44827156],[4.53636337,0.03583958,99.44902986],[4.53636292,0.03583784,99.44978787],[4.53636246,0.03583609,99.45054558],[4.53636201,0.03583435,99.45130298],[4.53636156,0.0358326,99.45206006],[4.5363611,0.03583086,99.45281681],[4.53636065,0.03582911,99.45357322],[4.5363602,0.03582737,99.45432927],[4.53635974,0.03582562,99.45508496],[4.53635929,0.03582388,99.45584028],[4.53635884,0.03582213,99.45659522],[4.53635838,0.03582039,99.45734977],[4.53635793,0.03581864,99.45810392],[4.53635748,0.0358169,99.45885765],[4.53635702,0.03581515,99.45961097],[4.53635657,0.03581341,99.46036385],[4.53635612,0.03581166,99.4611163],[4.53635567,0.03580992,99.4618683],[4.53635521,0.03580817,99.46261984],[4.53635476,0.03580643,99.46337091],[4.53635431,0.03580468,99.46412151],[4.53635385,0.03580294,99.46487162],[4.5363534,0.03580119,99.46562123],[4.53635295,0.03579945,99.46637034],[4.53635249,0.0357977,99.46711893],[4.53635204,0.03579596,99.467867],[4.53635159,0.03579421,99.46861453],[4.53635113,0.03579247,99.46936152],[4.53635068,0.03579072,99.47010795],[4.53635023,0.03578898,99.47085382],[4.53634977,0.03578723,99.47159912],[4.53634932,0.03578549,99.47234383],[4.53634887,0.03578374,99.47308795],[4.53634841,0.035782,99.47383147],[4.53634796,0.03578026,99.47457437],[4.53634751,0.03577851,99.47531666],[4.53634706,0.03577677,99.47605831],[4.5363466,0.03577502,99.47679932],[4.53634615,0.03577328,99.47753968],[4.5363457,0.03577153,99.47827937],[4.53634524,0.03576979,99.4790184],[4.53634479,0.03576804,99.47975675],[4.53634434,0.0357663,99.4804944],[4.53634388,0.03576455,99.48123135],[4.53634343,0.03576281,99.4819676],[4.53634298,0.03576106,99.48270312],[4.53634253,0.03575932,99.48343791],[4.53634207,0.03575757,99.48417197],[4.53634162,0.03575583,99.48490527],[4.53634117,0.03575408,99.48563781],[4.53634071,0.03575234,99.48636959],[4.53634026,0.03575059,99.48710058],[4.53633981,0.03574885,99.48783078],[4.53633936,0.0357471,99.48856019],[4.5363389,0.03574536,99.48928878],[4.53633845,0.03574361,99.49001656],[4.536338,0.03574187,99.4907435],[4.53633755,0.03574012,99.49146961],[4.53633709,0.03573838,99.49219486],[4.53633664,0.03573663,99.49291926],[4.53633619,0.03573489,99.49364279],[4.53633574,0.03573314,99.49436543],[4.53633528,0.0357314,99.49508719],[4.53633483,0.03572965,99.49580805],[4.53633438,0.03572791,99.49652799],[4.53633393,0.03572616,99.49724702],[4.53633347,0.03572442,99.49796512],[4.53633302,0.03572267,99.49868227],[4.53633257,0.03572092,99.49939848],[4.53633212,0.03571918,99.50011373],[4.53633167,0.03571743,99.500828],[4.53633121,0.03571569,99.50154129],[4.53633076,0.03571394,99.50225359],[4.53633031,0.0357122,99.50296487],[4.53632986,0.03571045,99.50367512],[4.53632941,0.03570871,99.50438433],[4.53632896,0.03570696,99.50509246],[4.5363285,0.03570522,99.50579952],[4.53632805,0.03570347,99.50650548],[4.5363276,0.03570173,99.50721032],[4.53632715,0.03569998,99.50791404],[4.5363267,0.03569824,99.5086166],[4.53632625,0.03569649,99.509318],[4.5363258,0.03569475,99.51001822],[4.53632534,0.035693,99.51071724],[4.53632489,0.03569126,99.51141505],[4.53632444,0.03568951,99.51211163],[4.53632399,0.03568777,99.51280695],[4.53632354,0.03568602,99.51350102],[4.53632309,0.03568428,99.5141938],[4.53632264,0.03568253,99.51488529],[4.53632219,0.03568078,99.51557546],[4.53632173,0.03567904,99.5162643],[4.53632128,0.03567729,99.5169518],[4.53632083,0.03567555,99.51763793],[4.53632038,0.0356738,99.51832269],[4.53631993,0.03567206,99.51900605],[4.53631948,0.03567031,99.51968799],[4.53631903,0.03566857,99.52036851],[4.53631858,0.03566682,99.52104759],[4.53631813,0.03566508,99.5217252],[4.53631767,0.03566333,99.52240133],[4.53631722,0.03566158,99.52307597],[4.53631677,0.03565984,99.52374911],[4.53631632,0.03565809,99.52442071],[4.53631587,0.03565635,99.52509078],[4.53631542,0.0356546,99.52575929],[4.53631497,0.03565286,99.52642623],[4.53631452,0.03565111,99.52709158],[4.53631407,0.03564937,99.52775534],[4.53631362,0.03564762,99.52841748],[4.53631316,0.03564588,99.52907799],[4.53631271,0.03564413,99.52973685],[4.53631226,0.03564239,99.53039406],[4.53631181,0.03564064,99.53104959],[4.53631136,0.03563889,99.53170343],[4.53631091,0.03563715,99.53235557],[4.53631046,0.0356354,99.53300598],[4.53631001,0.03563366,99.53365467],[4.53630956,0.03563191,99.5343016],[4.53630911,0.03563017,99.53494677],[4.53630865,0.03562842,99.53559016],[4.5363082,0.03562668,99.53623176],[4.53630775,0.03562493,99.53687155],[4.5363073,0.03562319,99.53750952],[4.53630685,0.03562144,99.53814565],[4.5363064,0.03561969,99.53877993],[4.53630595,0.03561795,99.53941234],[4.5363055,0.0356162,99.54004287],[4.53630505,0.03561446,99.54067151],[4.53630459,0.03561271,99.54129823],[4.53630414,0.03561097,99.54192303],[4.53630369,0.03560922,99.54254589],[4.53630324,0.03560748,99.54316679],[4.53630279,0.03560573,99.54378572],[4.53630234,0.03560399,99.54440267],[4.53630189,0.03560224,99.54501762],[4.53630144,0.0356005,99.54563056],[4.53630098,0.03559875,99.54624147],[4.53630053,0.03559701,99.54685034],[4.53630008,0.03559526,99.54745715],[4.53629963,0.03559352,99.54806188],[4.53629918,0.03559177,99.54866453],[4.53629873,0.03559002,99.54926508],[4.53629827,0.03558828,99.54986351],[4.53629782,0.03558653,99.5504598],[4.53629737,0.03558479,99.55105395],[4.53629692,0.03558304,99.55164594],[4.53629647,0.0355813,99.55223575],[4.53629602,0.03557955,99.55282337],[4.53629556,0.03557781,99.55340879],[4.53629511,0.03557606,99.553992],[4.53629466,0.03557432,99.55457301],[4.53629421,0.03557257,99.55515184],[4.53629376,0.03557083,99.55572848],[4.5362933,0.03556908,99.55630296],[4.53629285,0.03556734,99.55687526],[4.5362924,0.03556559,99.55744541],[4.53629195,0.03556385,99.55801341],[4.53629149,0.0355621,99.55857926],[4.53629104,0.03556036,99.55914298],[4.53629059,0.03555861,99.55970458],[4.53629014,0.03555687,99.56026405],[4.53628968,0.03555512,99.56082141],[4.53628923,0.03555338,99.56137666],[4.53628878,0.03555163,99.56192982],[4.53628833,0.03554989,99.56248088],[4.53628787,0.03554814,99.56302987],[4.53628742,0.0355464,99.56357678],[4.53628697,0.03554465,99.56412162],[4.53628652,0.03554291,99.5646644],[4.53628606,0.03554116,99.56520513],[4.53628561,0.03553942,99.56574381],[4.53628516,0.03553767,99.56628045],[4.5362847,0.03553593,99.56681505],[4.53628425,0.03553418,99.56734763],[4.5362838,0.03553244,99.56787818],[4.53628334,0.03553069,99.56840671],[4.53628289,0.03552895,99.56893324],[4.53628244,0.0355272,99.56945776],[4.53628198,0.03552546,99.56998028],[4.53628153,0.03552372,99.57050081],[4.53628108,0.03552197,99.57101935],[4.53628062,0.03552023,99.57153592],[4.53628017,0.03551848,99.57205051],[4.53627972,0.03551674,99.57256314],[4.53627926,0.03551499,99.5730738],[4.53627881,0.03551325,99.57358251],[4.53627836,0.0355115,99.57408927],[4.5362779,0.03550976,99.57459409],[4.53627745,0.03550801,99.57509698],[4.536277,0.03550627,99.57559793],[4.53627654,0.03550452,99.57609696],[4.53627609,0.03550278,99.57659407],[4.53627564,0.03550103,99.57708928],[4.53627518,0.03549929,99.57758257],[4.53627473,0.03549754,99.57807397],[4.53627427,0.0354958,99.57856348],[4.53627382,0.03549406,99.5790511],[4.53627337,0.03549231,99.57953684],[4.53627291,0.03549057,99.5800207],[4.53627246,0.03548882,99.5805027],[4.536272,0.03548708,99.58098284],[4.53627155,0.03548533,99.58146112],[4.5362711,0.03548359,99.58193755],[4.53627064,0.03548184,99.58241213],[4.53627019,0.0354801,99.58288488],[4.53626973,0.03547835,99.5833558],[4.53626928,0.03547661,99.58382489],[4.53626883,0.03547487,99.58429217],[4.53626837,0.03547312,99.58475763],[4.53626792,0.03547138,99.58522129],[4.53626746,0.03546963,99.58568314],[4.53626701,0.03546789,99.5861432],[4.53626655,0.03546614,99.58660148],[4.5362661,0.0354644,99.58705797],[4.53626565,0.03546265,99.58751268],[4.53626519,0.03546091,99.58796563],[4.53626474,0.03545917,99.58841681],[4.53626428,0.03545742,99.58886624],[4.53626383,0.03545568,99.58931391],[4.53626337,0.03545393,99.58975984],[4.53626292,0.03545219,99.59020402],[4.53626246,0.03545044,99.59064648],[4.53626201,0.0354487,99.59108721],[4.53626155,0.03544695,99.59152622],[4.5362611,0.03544521,99.59196351],[4.53626065,0.03544347,99.5923991],[4.53626019,0.03544172,99.59283298],[4.53625974,0.03543998,99.59326516],[4.53625928,0.03543823,99.59369566],[4.53625883,0.03543649,99.59412447],[4.53625837,0.03543474,99.59455161],[4.53625792,0.035433,99.59497707],[4.53625746,0.03543126,99.59540086],[4.53625701,0.03542951,99.595823],[4.53625655,0.03542777,99.59624348],[4.5362561,0.03542602,99.59666232],[4.53625564,0.03542428,99.59707951],[4.53625519,0.03542253,99.59749507],[4.53625473,0.03542079,99.597909],[4.53625428,0.03541905,99.59832131],[4.53625382,0.0354173,99.598732],[4.53625337,0.03541556,99.59914108],[4.53625291,0.03541381,99.59954855],[4.53625245,0.03541207,99.59995443],[4.536252,0.03541032,99.60035871],[4.53625154,0.03540858,99.60076141],[4.53625109,0.03540684,99.60116253],[4.53625063,0.03540509,99.60156209],[4.53625018,0.03540335,99.60196009],[4.53624972,0.0354016,99.60235654],[4.53624927,0.03539986,99.60275146],[4.53624881,0.03539812,99.60314484],[4.53624836,0.03539637,99.60353668],[4.5362479,0.03539463,99.603927],[4.53624745,0.03539288,99.60431581],[4.53624699,0.03539114,99.60470309],[4.53624653,0.03538939,99.60508886],[4.53624608,0.03538765,99.60547313],[4.53624562,0.03538591,99.6058559],[4.53624517,0.03538416,99.60623716],[4.53624471,0.03538242,99.60661694],[4.53624426,0.03538067,99.60699523],[4.5362438,0.03537893,99.60737204],[4.53624335,0.03537719,99.60774737],[4.53624289,0.03537544,99.60812122],[4.53624243,0.0353737,99.60849361],[4.53624198,0.03537195,99.60886454],[4.53624152,0.03537021,99.609234],[4.53624107,0.03536847,99.60960202],[4.53624061,0.03536672,99.60996858],[4.53624016,0.03536498,99.61033371],[4.5362397,0.03536323,99.61069739],[4.53623924,0.03536149,99.61105964],[4.53623879,0.03535975,99.61142046],[4.53623833,0.035358,99.61177985],[4.53623788,0.03535626,99.61213783],[4.53623742,0.03535451,99.61249439],[4.53623696,0.03535277,99.61284954],[4.53623651,0.03535103,99.61320328],[4.53623605,0.03534928,99.61355563],[4.5362356,0.03534754,99.61390658],[4.53623514,0.03534579,99.61425613],[4.53623468,0.03534405,99.6146043],[4.53623423,0.03534231,99.6149511],[4.53623377,0.03534056,99.61529651],[4.53623332,0.03533882,99.61564055],[4.53623286,0.03533707,99.61598323],[4.5362324,0.03533533,99.61632454],[4.53623195,0.03533359,99.61666449],[4.53623149,0.03533184,99.6170031],[4.53623103,0.0353301,99.61734035],[4.53623058,0.03532835,99.61767626],[4.53623012,0.03532661,99.61801083],[4.53622966,0.03532487,99.61834407],[4.53622921,0.03532312,99.61867598],[4.53622875,0.03532138,99.61900657],[4.53622829,0.03531964,99.61933584],[4.53622784,0.03531789,99.61966379],[4.53622738,0.03531615,99.61999044],[4.53622693,0.0353144,99.62031577],[4.53622647,0.03531266,99.62063981],[4.53622601,0.03531092,99.62096255],[4.53622555,0.03530917,99.62128401],[4.5362251,0.03530743,99.62160417],[4.53622464,0.03530569,99.62192306],[4.53622418,0.03530394,99.62224067],[4.53622373,0.0353022,99.622557],[4.53622327,0.03530045,99.62287207],[4.53622281,0.03529871,99.62318588],[4.53622236,0.03529697,99.62349843],[4.5362219,0.03529522,99.62380973],[4.53622144,0.03529348,99.62411978],[4.53622099,0.03529174,99.62442858],[4.53622053,0.03528999,99.62473615],[4.53622007,0.03528825,99.62504248],[4.53621961,0.0352865,99.62534759],[4.53621916,0.03528476,99.62565147],[4.5362187,0.03528302,99.62595413],[4.53621824,0.03528127,99.62625557],[4.53621779,0.03527953,99.62655581],[4.53621733,0.03527779,99.62685484],[4.53621687,0.03527604,99.62715266],[4.53621641,0.0352743,99.6274493],[4.53621596,0.03527256,99.62774474],[4.5362155,0.03527081,99.62803899],[4.53621504,0.03526907,99.62833206],[4.53621458,0.03526733,99.62862396],[4.53621413,0.03526558,99.62891468],[4.53621367,0.03526384,99.62920424],[4.53621321,0.03526209,99.62949263],[4.53621275,0.03526035,99.62977986],[4.53621229,0.03525861,99.63006594],[4.53621184,0.03525686,99.63035087],[4.53621138,0.03525512,99.63063465],[4.53621092,0.03525338,99.6309173],[4.53621046,0.03525163,99.63119881],[4.53621,0.03524989,99.63147919],[4.53620955,0.03524815,99.63175845],[4.53620909,0.0352464,99.63203658],[4.53620863,0.03524466,99.63231361],[4.53620817,0.03524292,99.63258954],[4.53620771,0.03524117,99.63286437],[4.53620726,0.03523943,99.63313812],[4.5362068,0.03523769,99.63341078],[4.53620634,0.03523594,99.63368237],[4.53620588,0.0352342,99.63395289],[4.53620542,0.03523246,99.63422235],[4.53620496,0.03523071,99.63449076],[4.53620451,0.03522897,99.63475812],[4.53620405,0.03522723,99.63502443],[4.53620359,0.03522548,99.63528971],[4.53620313,0.03522374,99.63555396],[4.53620267,0.035222,99.63581719],[4.53620221,0.03522025,99.6360794],[4.53620175,0.03521851,99.6363406],[4.53620129,0.03521677,99.6366008],[4.53620084,0.03521502,99.63685999],[4.53620038,0.03521328,99.6371182],[4.53619992,0.03521154,99.63737543],[4.53619946,0.0352098,99.63763167],[4.536199,0.03520805,99.63788695],[4.53619854,0.03520631,99.63814126],[4.53619808,0.03520457,99.63839461],[4.53619762,0.03520282,99.63864701],[4.53619716,0.03520108,99.63889846],[4.53619671,0.03519934,99.63914897],[4.53619625,0.03519759,99.63939855],[4.53619579,0.03519585,99.6396472],[4.53619533,0.03519411,99.63989494],[4.53619487,0.03519236,99.64014176],[4.53619441,0.03519062,99.64038767],[4.53619395,0.03518888,99.64063268],[4.53619349,0.03518714,99.6408768],[4.53619303,0.03518539,99.64112002],[4.53619257,0.03518365,99.64136237],[4.53619211,0.03518191,99.64160384],[4.53619165,0.03518016,99.64184445],[4.53619119,0.03517842,99.64208419],[4.53619074,0.03517668,99.64232307],[4.53619028,0.03517493,99.64256111],[4.53618982,0.03517319,99.64279831],[4.53618936,0.03517145,99.64303466],[4.5361889,0.03516971,99.64327019],[4.53618844,0.03516796,99.6435049],[4.53618798,0.03516622,99.64373879],[4.53618752,0.03516448,99.64397186],[4.53618706,0.03516273,99.64420414],[4.5361866,0.03516099,99.64443561],[4.53618614,0.03515925,99.6446663],[4.53618568,0.0351575,99.6448962],[4.53618522,0.03515576,99.64512533],[4.53618476,0.03515402,99.64535368],[4.5361843,0.03515228,99.64558127],[4.53618384,0.03515053,99.6458081],[4.53618338,0.03514879,99.64603418],[4.53618292,0.03514705,99.64625951],[4.53618246,0.0351453,99.64648411],[4.536182,0.03514356,99.64670797],[4.53618154,0.03514182,99.6469311],[4.53618108,0.03514008,99.64715352],[4.53618062,0.03513833,99.64737523],[4.53618016,0.03513659,99.64759623],[4.5361797,0.03513485,99.64781653],[4.53617924,0.0351331,99.64803613],[4.53617878,0.03513136,99.64825506],[4.53617832,0.03512962,99.6484733],[4.53617786,0.03512788,99.64869086],[4.5361774,0.03512613,99.64890776],[4.53617694,0.03512439,99.64912401],[4.53617648,0.03512265,99.64933959],[4.53617602,0.0351209,99.64955453],[4.53617556,0.03511916,99.64976883],[4.5361751,0.03511742,99.6499825],[4.53617464,0.03511568,99.65019554],[4.53617418,0.03511393,99.65040796],[4.53617372,0.03511219,99.65061976],[4.53617326,0.03511045,99.65083096],[4.5361728,0.03510871,99.65104155],[4.53617234,0.03510696,99.65125156],[4.53617188,0.03510522,99.65146097],[4.53617142,0.03510348,99.6516698],[4.53617096,0.03510173,99.65187806],[4.5361705,0.03509999,99.65208575],[4.53617004,0.03509825,99.65229288],[4.53616958,0.03509651,99.65249945],[4.53616912,0.03509476,99.65270548],[4.53616866,0.03509302,99.65291096],[4.5361682,0.03509128,99.65311591],[4.53616773,0.03508954,99.65332033],[4.53616727,0.03508779,99.65352423],[4.53616681,0.03508605,99.65372762],[4.53616635,0.03508431,99.65393049],[4.53616589,0.03508257,99.65413287],[4.53616543,0.03508082,99.65433475],[4.53616497,0.03507908,99.65453614],[4.53616451,0.03507734,99.65473705],[4.53616405,0.03507559,99.65493748],[4.53616359,0.03507385,99.65513745],[4.53616313,0.03507211,99.65533695],[4.53616267,0.03507037,99.655536],[4.53616221,0.03506862,99.6557346],[4.53616175,0.03506688,99.65593275],[4.53616129,0.03506514,99.65613048],[4.53616083,0.0350634,99.65632777],[4.53616037,0.03506165,99.65652464],[4.53615991,0.03505991,99.6567211],[4.53615944,0.03505817,99.65691714],[4.53615898,0.03505643,99.65711279],[4.53615852,0.03505468,99.65730804],[4.53615806,0.03505294,99.6575029],[4.5361576,0.0350512,99.65769738],[4.53615714,0.03504945,99.65789148],[4.53615668,0.03504771,99.65808522],[4.53615622,0.03504597,99.65827859],[4.53615576,0.03504423,99.65847161],[4.5361553,0.03504248,99.65866428],[4.53615484,0.03504074,99.65885661],[4.53615438,0.035039,99.6590486],[4.53615392,0.03503726,99.65924026],[4.53615346,0.03503551,99.6594316],[4.536153,0.03503377,99.65962263],[4.53615253,0.03503203,99.65981335],[4.53615207,0.03503029,99.66000377],[4.53615161,0.03502854,99.66019389],[4.53615115,0.0350268,99.66038372],[4.53615069,0.03502506,99.66057327],[4.53615023,0.03502332,99.66076255],[4.53614977,0.03502157,99.66095156],[4.53614931,0.03501983,99.6611403],[4.53614885,0.03501809,99.6613288],[4.53614839,0.03501635,99.66151706],[4.53614793,0.0350146,99.66170508],[4.53614747,0.03501286,99.66189289],[4.53614701,0.03501112,99.66208048],[4.53614655,0.03500938,99.66226787],[4.53614609,0.03500764,99.66245506],[4.53614562,0.03500589,99.66264206],[4.53614516,0.03500415,99.66282889],[4.5361447,0.03500241,99.66301553],[4.53614424,0.03500067,99.663202],[4.53614378,0.03499892,99.66338831],[4.53614332,0.03499718,99.66357446],[4.53614286,0.03499544,99.66376045],[4.5361424,0.0349937,99.6639463],[4.53614194,0.03499195,99.664132],[4.53614148,0.03499021,99.66431756],[4.53614102,0.03498847,99.664503],[4.53614056,0.03498672,99.6646883],[4.5361401,0.03498498,99.66487349],[4.53613964,0.03498324,99.66505856],[4.53613918,0.0349815,99.66524352],[4.53613872,0.03497975,99.66542837],[4.53613825,0.03497801,99.66561313],[4.53613779,0.03497627,99.6657978],[4.53613733,0.03497453,99.66598237],[4.53613687,0.03497278,99.66616687],[4.53613641,0.03497104,99.66635129],[4.53613595,0.0349693,99.66653564],[4.53613549,0.03496756,99.66671991],[4.53613503,0.03496581,99.66690413],[4.53613457,0.03496407,99.66708828],[4.53613411,0.03496233,99.66727238],[4.53613365,0.03496059,99.66745642],[4.53613319,0.03495884,99.66764042],[4.53613273,0.0349571,99.66782437],[4.53613227,0.03495536,99.66800828],[4.53613181,0.03495361,99.66819215],[4.53613135,0.03495187,99.668376],[4.53613089,0.03495013,99.66855982],[4.53613043,0.03494839,99.66874361],[4.53612997,0.03494664,99.66892739],[4.5361295,0.0349449,99.66911115],[4.53612904,0.03494316,99.6692949],[4.53612858,0.03494142,99.66947864],[4.53612812,0.03493967,99.66966238],[4.53612766,0.03493793,99.66984612],[4.5361272,0.03493619,99.67002987],[4.53612674,0.03493445,99.67021362],[4.53612628,0.0349327,99.67039739],[4.53612582,0.03493096,99.67058118],[4.53612536,0.03492922,99.67076499],[4.5361249,0.03492747,99.67094883],[4.53612444,0.03492573,99.67113269],[4.53612398,0.03492399,99.67131659],[4.53612352,0.03492225,99.67150053],[4.53612306,0.0349205,99.67168451],[4.5361226,0.03491876,99.67186854],[4.53612214,0.03491702,99.67205262],[4.53612168,0.03491528,99.67223675],[4.53612122,0.03491353,99.67242094],[4.53612075,0.03491179,99.67260519],[4.53612029,0.03491005,99.67278951],[4.53611983,0.0349083,99.6729739],[4.53611937,0.03490656,99.67315836],[4.53611891,0.03490482,99.67334291],[4.53611845,0.03490308,99.67352753],[4.53611799,0.03490133,99.67371224],[4.53611753,0.03489959,99.67389705],[4.53611707,0.03489785,99.67408194],[4.53611661,0.03489611,99.67426694],[4.53611615,0.03489436,99.67445204],[4.53611569,0.03489262,99.67463725],[4.53611523,0.03489088,99.67482256],[4.53611477,0.03488914,99.67500799],[4.53611431,0.03488739,99.67519354],[4.53611385,0.03488565,99.67537922],[4.53611338,0.03488391,99.67556502],[4.53611292,0.03488216,99.67575095],[4.53611246,0.03488042,99.67593701],[4.536112,0.03487868,99.67612321],[4.53611154,0.03487694,99.67630956],[4.53611108,0.03487519,99.67649605],[4.53611062,0.03487345,99.6766827],[4.53611016,0.03487171,99.67686949],[4.5361097,0.03486997,99.67705645],[4.53610924,0.03486822,99.67724357],[4.53610878,0.03486648,99.67743085],[4.53610832,0.03486474,99.67761831],[4.53610785,0.034863,99.67780594],[4.53610739,0.03486125,99.67799375],[4.53610693,0.03485951,99.67818174],[4.53610647,0.03485777,99.67836992],[4.53610601,0.03485603,99.67855828],[4.53610555,0.03485428,99.67874685],[4.53610509,0.03485254,99.67893561],[4.53610463,0.0348508,99.67912457],[4.53610417,0.03484905,99.67931373],[4.53610371,0.03484731,99.67950311],[4.53610324,0.03484557,99.6796927],[4.53610278,0.03484383,99.67988251],[4.53610232,0.03484208,99.68007254],[4.53610186,0.03484034,99.6802628],[4.5361014,0.0348386,99.68045329],[4.53610094,0.03483686,99.68064401],[4.53610048,0.03483511,99.68083497],[4.53610002,0.03483337,99.68102617],[4.53609955,0.03483163,99.68121761],[4.53609909,0.03482989,99.68140931],[4.53609863,0.03482814,99.68160125],[4.53609817,0.0348264,99.68179346],[4.53609771,0.03482466,99.68198592],[4.53609725,0.03482292,99.68217866],[4.53609679,0.03482117,99.68237166],[4.53609632,0.03481943,99.68256493],[4.53609586,0.03481769,99.68275848],[4.5360954,0.03481595,99.68295231],[4.53609494,0.0348142,99.68314643],[4.53609448,0.03481246,99.68334083],[4.53609402,0.03481072,99.68353553],[4.53609356,0.03480898,99.68373052],[4.53609309,0.03480723,99.68392582],[4.53609263,0.03480549,99.68412142],[4.53609217,0.03480375,99.68431731],[4.53609171,0.03480201,99.68451349],[4.53609125,0.03480026,99.68470995],[4.53609078,0.03479852,99.68490667],[4.53609032,0.03479678,99.68510366],[4.53608986,0.03479504,99.6853009],[4.5360894,0.03479329,99.68549838],[4.53608894,0.03479155,99.68569609],[4.53608847,0.03478981,99.68589402],[4.53608801,0.03478807,99.68609217],[4.53608755,0.03478633,99.68629052],[4.53608709,0.03478458,99.68648907],[4.53608663,0.03478284,99.68668781],[4.53608616,0.0347811,99.68688672],[4.5360857,0.03477936,99.6870858],[4.53608524,0.03477761,99.68728504],[4.53608478,0.03477587,99.68748443],[4.53608431,0.03477413,99.68768396],[4.53608385,0.03477239,99.68788363],[4.53608339,0.03477064,99.68808342],[4.53608293,0.0347689,99.68828335],[4.53608246,0.03476716,99.6884834],[4.536082,0.03476542,99.68868358],[4.53608154,0.03476368,99.68888388],[4.53608107,0.03476193,99.6890843],[4.53608061,0.03476019,99.68928485],[4.53608015,0.03475845,99.68948551],[4.53607969,0.03475671,99.6896863],[4.53607922,0.03475497,99.6898872],[4.53607876,0.03475322,99.69008822],[4.5360783,0.03475148,99.69028935],[4.53607783,0.03474974,99.69049059],[4.53607737,0.034748,99.69069194],[4.53607691,0.03474625,99.69089341],[4.53607644,0.03474451,99.69109498],[4.53607598,0.03474277,99.69129666],[4.53607551,0.03474103,99.69149844],[4.53607505,0.03473929,99.69170033],[4.53607459,0.03473754,99.69190232],[4.53607412,0.0347358,99.69210441],[4.53607366,0.03473406,99.6923066],[4.5360732,0.03473232,99.69250889],[4.53607273,0.03473058,99.69271127],[4.53607227,0.03472883,99.69291375],[4.53607181,0.03472709,99.69311632],[4.53607134,0.03472535,99.69331898],[4.53607088,0.03472361,99.69352174],[4.53607041,0.03472187,99.69372458],[4.53606995,0.03472013,99.69392751],[4.53606949,0.03471838,99.69413053],[4.53606902,0.03471664,99.69433363],[4.53606856,0.0347149,99.69453681],[4.53606809,0.03471316,99.69474007],[4.53606763,0.03471142,99.69494342],[4.53606716,0.03470967,99.69514684],[4.5360667,0.03470793,99.69535034],[4.53606624,0.03470619,99.69555392],[4.53606577,0.03470445,99.69575757],[4.53606531,0.03470271,99.69596129],[4.53606484,0.03470096,99.69616508],[4.53606438,0.03469922,99.69636894],[4.53606391,0.03469748,99.69657287],[4.53606345,0.03469574,99.69677687],[4.53606299,0.034694,99.69698093],[4.53606252,0.03469226,99.69718506],[4.53606206,0.03469051,99.69738924],[4.53606159,0.03468877,99.69759349],[4.53606113,0.03468703,99.6977978],[4.53606066,0.03468529,99.69800216],[4.5360602,0.03468355,99.69820658],[4.53605973,0.0346818,99.69841105],[4.53605927,0.03468006,99.69861558],[4.53605881,0.03467832,99.69882015],[4.53605834,0.03467658,99.69902478],[4.53605788,0.03467484,99.69922946],[4.53605741,0.0346731,99.69943418],[4.53605695,0.03467135,99.69963894],[4.53605648,0.03466961,99.69984375],[4.53605602,0.03466787,99.7000486],[4.53605555,0.03466613,99.70025349],[4.53605509,0.03466439,99.70045842],[4.53605462,0.03466265,99.70066338],[4.53605416,0.0346609,99.70086838],[4.53605369,0.03465916,99.70107342],[4.53605323,0.03465742,99.70127849],[4.53605276,0.03465568,99.70148358],[4.5360523,0.03465394,99.70168871],[4.53605183,0.03465219,99.70189386],[4.53605137,0.03465045,99.70209904],[4.53605091,0.03464871,99.70230424],[4.53605044,0.03464697,99.70250947],[4.53604998,0.03464523,99.70271471],[4.53604951,0.03464349,99.70291998],[4.53604905,0.03464174,99.70312526],[4.53604858,0.03464,99.70333056],[4.53604812,0.03463826,99.70353587],[4.53604765,0.03463652,99.70374119],[4.53604719,0.03463478,99.70394652],[4.53604672,0.03463304,99.70415187],[4.53604626,0.03463129,99.70435722],[4.53604579,0.03462955,99.70456257],[4.53604533,0.03462781,99.70476793],[4.53604486,0.03462607,99.70497329],[4.5360444,0.03462433,99.70517865],[4.53604393,0.03462258,99.70538401],[4.53604347,0.03462084,99.70558937],[4.536043,0.0346191,99.70579472],[4.53604254,0.03461736,99.70600006],[4.53604208,0.03461562,99.7062054],[4.53604161,0.03461388,99.70641072],[4.53604115,0.03461213,99.70661603],[4.53604068,0.03461039,99.7068213],[4.53604022,0.03460865,99.70702653],[4.53603975,0.03460691,99.70723172],[4.53603929,0.03460517,99.70743684],[4.53603882,0.03460342,99.7076419],[4.53603836,0.03460168,99.70784687],[4.53603789,0.03459994,99.70805176],[4.53603743,0.0345982,99.70825655],[4.53603696,0.03459646,99.70846124],[4.5360365,0.03459472,99.7086658],[4.53603604,0.03459297,99.70887025],[4.53603557,0.03459123,99.70907455],[4.53603511,0.03458949,99.70927871],[4.53603464,0.03458775,99.70948272],[4.53603418,0.03458601,99.70968657],[4.53603371,0.03458426,99.70989024],[4.53603325,0.03458252,99.71009373],[4.53603278,0.03458078,99.71029703],[4.53603232,0.03457904,99.71050013],[4.53603185,0.0345773,99.71070302],[4.53603139,0.03457556,99.7109057],[4.53603092,0.03457381,99.71110814],[4.53603046,0.03457207,99.71131035],[4.53602999,0.03457033,99.7115123],[4.53602953,0.03456859,99.71171401],[4.53602906,0.03456685,99.71191545],[4.5360286,0.0345651,99.71211661],[4.53602813,0.03456336,99.71231749],[4.53602767,0.03456162,99.71251808],[4.5360272,0.03455988,99.71271837],[4.53602674,0.03455814,99.71291834],[4.53602627,0.0345564,99.713118],[4.53602581,0.03455465,99.71331733],[4.53602534,0.03455291,99.71351632],[4.53602488,0.03455117,99.71371496],[4.53602441,0.03454943,99.71391325],[4.53602395,0.03454769,99.71411117],[4.53602348,0.03454595,99.71430872],[4.53602302,0.0345442,99.71450589],[4.53602255,0.03454246,99.71470266],[4.53602209,0.03454072,99.71489903],[4.53602162,0.03453898,99.715095],[4.53602115,0.03453724,99.71529054],[4.53602069,0.0345355,99.71548566],[4.53602022,0.03453375,99.71568034],[4.53601976,0.03453201,99.71587458],[4.53601929,0.03453027,99.71606836],[4.53601882,0.03452853,99.71626169],[4.53601836,0.03452679,99.71645455],[4.53601789,0.03452505,99.71664695],[4.53601743,0.0345233,99.71683887],[4.53601696,0.03452156,99.71703032],[4.53601649,0.03451982,99.71722129],[4.53601603,0.03451808,99.71741177],[4.53601556,0.03451634,99.71760177],[4.53601509,0.0345146,99.71779127],[4.53601463,0.03451286,99.71798027],[4.53601416,0.03451112,99.71816877],[4.53601369,0.03450937,99.71835676],[4.53601323,0.03450763,99.71854424],[4.53601276,0.03450589,99.7187312],[4.53601229,0.03450415,99.71891764],[4.53601183,0.03450241,99.71910356],[4.53601136,0.03450067,99.71928894],[4.53601089,0.03449893,99.71947379],[4.53601042,0.03449718,99.71965811],[4.53600996,0.03449544,99.71984187],[4.53600949,0.0344937,99.72002509],[4.53600902,0.03449196,99.72020776],[4.53600856,0.03449022,99.72038988],[4.53600809,0.03448848,99.72057144],[4.53600762,0.03448674,99.72075244],[4.53600715,0.034485,99.7209329],[4.53600668,0.03448326,99.7211128],[4.53600622,0.03448151,99.72129216],[4.53600575,0.03447977,99.72147097],[4.53600528,0.03447803,99.72164922],[4.53600481,0.03447629,99.72182694],[4.53600434,0.03447455,99.7220041],[4.53600388,0.03447281,99.72218072],[4.53600341,0.03447107,99.72235679],[4.53600294,0.03446933,99.72253232],[4.53600247,0.03446759,99.7227073],[4.536002,0.03446585,99.72288175],[4.53600154,0.0344641,99.72305565],[4.53600107,0.03446236,99.72322901],[4.5360006,0.03446062,99.72340182],[4.53600013,0.03445888,99.7235741],[4.53599966,0.03445714,99.72374584],[4.53599919,0.0344554,99.72391704],[4.53599872,0.03445366,99.7240877],[4.53599826,0.03445192,99.72425782],[4.53599779,0.03445018,99.72442741],[4.53599732,0.03444844,99.72459646],[4.53599685,0.0344467,99.72476497],[4.53599638,0.03444496,99.72493295],[4.53599591,0.03444321,99.72510039],[4.53599544,0.03444147,99.7252673],[4.53599497,0.03443973,99.72543368],[4.5359945,0.03443799,99.72559952],[4.53599404,0.03443625,99.72576483],[4.53599357,0.03443451,99.72592961],[4.5359931,0.03443277,99.72609385],[4.53599263,0.03443103,99.72625756],[4.53599216,0.03442929,99.72642074],[4.53599169,0.03442755,99.72658339],[4.53599122,0.03442581,99.72674551],[4.53599075,0.03442407,99.7269071],[4.53599028,0.03442233,99.72706816],[4.53598981,0.03442058,99.72722869],[4.53598935,0.03441884,99.7273887],[4.53598888,0.0344171,99.72754817],[4.53598841,0.03441536,99.72770711],[4.53598794,0.03441362,99.72786553],[4.53598747,0.03441188,99.72802341],[4.535987,0.03441014,99.72818077],[4.53598653,0.0344084,99.7283376],[4.53598606,0.03440666,99.7284939],[4.53598559,0.03440492,99.72864968],[4.53598512,0.03440318,99.72880493],[4.53598465,0.03440144,99.72895965],[4.53598418,0.0343997,99.72911384],[4.53598372,0.03439795,99.72926751],[4.53598325,0.03439621,99.72942065],[4.53598278,0.03439447,99.72957326],[4.53598231,0.03439273,99.72972535],[4.53598184,0.03439099,99.72987691],[4.53598137,0.03438925,99.73002794],[4.5359809,0.03438751,99.73017845],[4.53598043,0.03438577,99.73032843],[4.53597996,0.03438403,99.73047788],[4.53597949,0.03438229,99.7306268],[4.53597903,0.03438055,99.7307752],[4.53597856,0.03437881,99.73092307],[4.53597809,0.03437706,99.73107042],[4.53597762,0.03437532,99.73121724],[4.53597715,0.03437358,99.73136353],[4.53597668,0.03437184,99.73150929],[4.53597621,0.0343701,99.73165453],[4.53597574,0.03436836,99.73179923],[4.53597528,0.03436662,99.73194341],[4.53597481,0.03436488,99.73208706],[4.53597434,0.03436314,99.73223019],[4.53597387,0.0343614,99.73237278],[4.5359734,0.03435966,99.73251485],[4.53597293,0.03435791,99.73265638],[4.53597246,0.03435617,99.73279739],[4.535972,0.03435443,99.73293787],[4.53597153,0.03435269,99.73307782],[4.53597106,0.03435095,99.73321723],[4.53597059,0.03434921,99.73335612],[4.53597012,0.03434747,99.73349448],[4.53596965,0.03434573,99.7336323],[4.53596919,0.03434399,99.73376959],[4.53596872,0.03434224,99.73390635],[4.53596825,0.0343405,99.73404258],[4.53596778,0.03433876,99.73417827],[4.53596732,0.03433702,99.73431342],[4.53596685,0.03433528,99.73444801],[4.53596638,0.03433354,99.73458205],[4.53596591,0.0343318,99.73471552],[4.53596544,0.03433006,99.73484841],[4.53596498,0.03432831,99.73498071],[4.53596451,0.03432657,99.73511243],[4.53596404,0.03432483,99.73524355],[4.53596357,0.03432309,99.73537406],[4.53596311,0.03432135,99.73550396],[4.53596264,0.03431961,99.73563324],[4.53596217,0.03431787,99.73576188],[4.53596171,0.03431613,99.73588989],[4.53596124,0.03431438,99.73601726],[4.53596077,0.03431264,99.73614397],[4.5359603,0.0343109,99.73627003],[4.53595984,0.03430916,99.73639541],[4.53595937,0.03430742,99.73652013],[4.5359589,0.03430568,99.73664415],[4.53595844,0.03430394,99.73676749],[4.53595797,0.03430219,99.73689013],[4.5359575,0.03430045,99.73701207],[4.53595704,0.03429871,99.73713329],[4.53595657,0.03429697,99.7372538],[4.5359561,0.03429523,99.73737357],[4.53595564,0.03429349,99.73749261],[4.53595517,0.03429175,99.73761091],[4.5359547,0.03429,99.73772846],[4.53595424,0.03428826,99.73784525],[4.53595377,0.03428652,99.73796127],[4.5359533,0.03428478,99.73807653],[4.53595284,0.03428304,99.738191],[4.53595237,0.0342813,99.73830469],[4.5359519,0.03427955,99.73841758],[4.53595144,0.03427781,99.73852967],[4.53595097,0.03427607,99.73864095],[4.5359505,0.03427433,99.73875142],[4.53595004,0.03427259,99.73886106],[4.53594957,0.03427085,99.73896987],[4.5359491,0.03426911,99.73907784],[4.53594864,0.03426736,99.73918496],[4.53594817,0.03426562,99.73929124],[4.5359477,0.03426388,99.73939665],[4.53594724,0.03426214,99.73950119],[4.53594677,0.0342604,99.73960486],[4.53594631,0.03425866,99.73970765],[4.53594584,0.03425691,99.73980955],[4.53594537,0.03425517,99.73991055],[4.53594491,0.03425343,99.74001065],[4.53594444,0.03425169,99.74010984],[4.53594397,0.03424995,99.74020811],[4.53594351,0.03424821,99.74030545],[4.53594304,0.03424647,99.74040187],[4.53594257,0.03424472,99.74049734],[4.53594211,0.03424298,99.74059186],[4.53594164,0.03424124,99.74068544],[4.53594118,0.0342395,99.74077805],[4.53594071,0.03423776,99.74086969],[4.53594024,0.03423602,99.74096036],[4.53593978,0.03423427,99.74105005],[4.53593931,0.03423253,99.74113874],[4.53593884,0.03423079,99.74122645],[4.53593838,0.03422905,99.74131314],[4.53593791,0.03422731,99.74139883],[4.53593744,0.03422557,99.7414835],[4.53593698,0.03422383,99.74156715],[4.53593651,0.03422208,99.74164976],[4.53593604,0.03422034,99.74173134],[4.53593558,0.0342186,99.74181187],[4.53593511,0.03421686,99.74189134],[4.53593464,0.03421512,99.74196976],[4.53593418,0.03421338,99.74204712],[4.53593371,0.03421164,99.74212339],[4.53593325,0.03420989,99.74219859],[4.53593278,0.03420815,99.74227271],[4.53593231,0.03420641,99.74234572],[4.53593184,0.03420467,99.74241763],[4.53593138,0.03420293,99.74248841],[4.53593091,0.03420119,99.74255805],[4.53593044,0.03419945,99.74262654],[4.53592998,0.0341977,99.74269386],[4.53592951,0.03419596,99.74276],[4.53592904,0.03419422,99.74282494],[4.53592858,0.03419248,99.74288868],[4.53592811,0.03419074,99.74295118],[4.53592764,0.034189,99.74301246],[4.53592717,0.03418726,99.74307247],[4.53592671,0.03418552,99.74313122],[4.53592624,0.03418377,99.74318869],[4.53592577,0.03418203,99.74324487],[4.5359253,0.03418029,99.74329973],[4.53592484,0.03417855,99.74335328],[4.53592437,0.03417681,99.74340548],[4.5359239,0.03417507,99.74345634],[4.53592343,0.03417333,99.74350582],[4.53592296,0.03417159,99.74355393],[4.5359225,0.03416985,99.74360065],[4.53592203,0.03416811,99.74364596],[4.53592156,0.03416636,99.74368985],[4.53592109,0.03416462,99.74373231],[4.53592062,0.03416288,99.74377331],[4.53592015,0.03416114,99.74381286],[4.53591991,0.03416024,99.74383283],[4.53595156,0.03415162,99.82619552],[4.53595181,0.03415253,99.82620334],[4.53595228,0.03415427,99.82621758],[4.53595275,0.03415601,99.82623078],[4.53595321,0.03415775,99.82624294],[4.53595368,0.03415949,99.82625407],[4.53595415,0.03416123,99.82626419],[4.53595462,0.03416298,99.8262733],[4.53595509,0.03416472,99.82628142],[4.53595555,0.03416646,99.82628856],[4.53595602,0.0341682,99.82629473],[4.53595649,0.03416994,99.82629993],[4.53595696,0.03417168,99.82630419],[4.53595743,0.03417342,99.82630751],[4.53595789,0.03417517,99.8263099],[4.53595836,0.03417691,99.82631138],[4.53595883,0.03417865,99.82631195],[4.53595929,0.03418039,99.82631163],[4.53595976,0.03418213,99.82631043],[4.53596023,0.03418387,99.82630836],[4.5359607,0.03418561,99.82630542],[4.53596116,0.03418736,99.82630164],[4.53596163,0.0341891,99.82629702],[4.5359621,0.03419084,99.82629158],[4.53596256,0.03419258,99.82628532],[4.53596303,0.03419432,99.82627826],[4.5359635,0.03419606,99.82627041],[4.53596396,0.0341978,99.82626178],[4.53596443,0.03419955,99.82625238],[4.5359649,0.03420129,99.82624222],[4.53596536,0.03420303,99.82623131],[4.53596583,0.03420477,99.82621965],[4.5359663,0.03420651,99.82620725],[4.53596676,0.03420825,99.82619412],[4.53596723,0.03421,99.82618024],[4.5359677,0.03421174,99.82616564],[4.53596816,0.03421348,99.8261503],[4.53596863,0.03421522,99.82613425],[4.5359691,0.03421696,99.82611748],[4.53596956,0.0342187,99.82609999],[4.53597003,0.03422045,99.82608179],[4.53597049,0.03422219,99.82606288],[4.53597096,0.03422393,99.82604328],[4.53597143,0.03422567,99.82602297],[4.53597189,0.03422741,99.82600197],[4.53597236,0.03422915,99.82598028],[4.53597283,0.0342309,99.82595791],[4.53597329,0.03423264,99.82593485],[4.53597376,0.03423438,99.82591112],[4.53597422,0.03423612,99.82588671],[4.53597469,0.03423786,99.82586163],[4.53597516,0.03423961,99.82583589],[4.53597562,0.03424135,99.82580949],[4.53597609,0.03424309,99.82578244],[4.53597656,0.03424483,99.82575473],[4.53597702,0.03424657,99.82572638],[4.53597749,0.03424831,99.82569738],[4.53597796,0.03425006,99.82566774],[4.53597842,0.0342518,99.82563747],[4.53597889,0.03425354,99.82560657],[4.53597935,0.03425528,99.82557504],[4.53597982,0.03425702,99.82554289],[4.53598029,0.03425876,99.82551012],[4.53598075,0.03426051,99.82547674],[4.53598122,0.03426225,99.82544276],[4.53598169,0.03426399,99.82540816],[4.53598215,0.03426573,99.82537297],[4.53598262,0.03426747,99.82533719],[4.53598309,0.03426921,99.82530081],[4.53598355,0.03427096,99.82526384],[4.53598402,0.0342727,99.8252263],[4.53598449,0.03427444,99.82518818],[4.53598495,0.03427618,99.82514948],[4.53598542,0.03427792,99.82511022],[4.53598588,0.03427966,99.82507039],[4.53598635,0.03428141,99.82503],[4.53598682,0.03428315,99.82498906],[4.53598728,0.03428489,99.82494757],[4.53598775,0.03428663,99.82490553],[4.53598822,0.03428837,99.82486295],[4.53598869,0.03429011,99.82481984],[4.53598915,0.03429186,99.82477619],[4.53598962,0.0342936,99.82473201],[4.53599009,0.03429534,99.82468732],[4.53599055,0.03429708,99.8246421],[4.53599102,0.03429882,99.82459637],[4.53599149,0.03430056,99.82455013],[4.53599195,0.0343023,99.82450339],[4.53599242,0.03430405,99.82445615],[4.53599289,0.03430579,99.82440841],[4.53599336,0.03430753,99.82436019],[4.53599382,0.03430927,99.82431148],[4.53599429,0.03431101,99.82426228],[4.53599476,0.03431275,99.82421262],[4.53599522,0.03431449,99.82416248],[4.53599569,0.03431624,99.82411187],[4.53599616,0.03431798,99.82406081],[4.53599663,0.03431972,99.82400928],[4.53599709,0.03432146,99.82395731],[4.53599756,0.0343232,99.82390489],[4.53599803,0.03432494,99.82385203],[4.5359985,0.03432668,99.82379872],[4.53599897,0.03432843,99.82374499],[4.53599943,0.03433017,99.82369083],[4.5359999,0.03433191,99.82363625],[4.53600037,0.03433365,99.82358124],[4.53600084,0.03433539,99.82352583],[4.53600131,0.03433713,99.82346999],[4.53600177,0.03433887,99.82341373],[4.53600224,0.03434061,99.82335705],[4.53600271,0.03434236,99.82329994],[4.53600318,0.0343441,99.8232424],[4.53600365,0.03434584,99.82318443],[4.53600412,0.03434758,99.82312603],[4.53600459,0.03434932,99.82306719],[4.53600505,0.03435106,99.82300791],[4.53600552,0.0343528,99.82294819],[4.53600599,0.03435454,99.82288802],[4.53600646,0.03435628,99.82282741],[4.53600693,0.03435803,99.82276634],[4.5360074,0.03435977,99.82270483],[4.53600787,0.03436151,99.82264286],[4.53600834,0.03436325,99.82258043],[4.5360088,0.03436499,99.82251754],[4.53600927,0.03436673,99.82245419],[4.53600974,0.03436847,99.82239037],[4.53601021,0.03437021,99.82232608],[4.53601068,0.03437195,99.82226132],[4.53601115,0.03437369,99.82219609],[4.53601162,0.03437544,99.82213038],[4.53601209,0.03437718,99.82206419],[4.53601256,0.03437892,99.82199752],[4.53601303,0.03438066,99.82193036],[4.5360135,0.0343824,99.82186271],[4.53601396,0.03438414,99.82179457],[4.53601443,0.03438588,99.82172594],[4.5360149,0.03438762,99.82165681],[4.53601537,0.03438936,99.82158718],[4.53601584,0.0343911,99.82151705],[4.53601631,0.03439284,99.82144641],[4.53601678,0.03439459,99.82137526],[4.53601725,0.03439633,99.8213036],[4.53601772,0.03439807,99.82123142],[4.53601819,0.03439981,99.82115873],[4.53601866,0.03440155,99.82108551],[4.53601913,0.03440329,99.82101177],[4.5360196,0.03440503,99.82093751],[4.53602007,0.03440677,99.82086271],[4.53602054,0.03440851,99.82078738],[4.536021,0.03441025,99.82071151],[4.53602147,0.03441199,99.82063511],[4.53602194,0.03441373,99.82055816],[4.53602241,0.03441548,99.82048066],[4.53602288,0.03441722,99.82040262],[4.53602335,0.03441896,99.82032402],[4.53602382,0.0344207,99.82024487],[4.53602429,0.03442244,99.82016516],[4.53602476,0.03442418,99.82008488],[4.53602523,0.03442592,99.82000404],[4.5360257,0.03442766,99.81992263],[4.53602617,0.0344294,99.81984065],[4.53602664,0.03443114,99.8197581],[4.53602711,0.03443288,99.81967496],[4.53602758,0.03443463,99.81959125],[4.53602804,0.03443637,99.81950694],[4.53602851,0.03443811,99.81942205],[4.53602898,0.03443985,99.81933657],[4.53602945,0.03444159,99.81925049],[4.53602992,0.03444333,99.81916381],[4.53603039,0.03444507,99.81907653],[4.53603086,0.03444681,99.81898864],[4.53603133,0.03444855,99.81890015],[4.5360318,0.03445029,99.81881104],[4.53603227,0.03445203,99.81872131],[4.53603273,0.03445378,99.81863097],[4.5360332,0.03445552,99.81854],[4.53603367,0.03445726,99.8184484],[4.53603414,0.034459,99.81835617],[4.53603461,0.03446074,99.81826331],[4.53603508,0.03446248,99.81816981],[4.53603555,0.03446422,99.81807567],[4.53603602,0.03446596,99.81798088],[4.53603648,0.0344677,99.81788545],[4.53603695,0.03446945,99.81778936],[4.53603742,0.03447119,99.81769262],[4.53603789,0.03447293,99.81759521],[4.53603836,0.03447467,99.81749715],[4.53603883,0.03447641,99.81739841],[4.53603929,0.03447815,99.81729901],[4.53603976,0.03447989,99.81719893],[4.53604023,0.03448163,99.81709817],[4.5360407,0.03448337,99.81699673],[4.53604117,0.03448512,99.8168946],[4.53604163,0.03448686,99.81679179],[4.5360421,0.0344886,99.81668829],[4.53604257,0.03449034,99.8165841],[4.53604304,0.03449208,99.81647924],[4.5360435,0.03449382,99.81637369],[4.53604397,0.03449556,99.81626746],[4.53604444,0.0344973,99.81616056],[4.53604491,0.03449905,99.81605298],[4.53604537,0.03450079,99.81594473],[4.53604584,0.03450253,99.8158358],[4.53604631,0.03450427,99.8157262],[4.53604678,0.03450601,99.81561593],[4.53604724,0.03450775,99.815505],[4.53604771,0.0345095,99.8153934],[4.53604818,0.03451124,99.81528113],[4.53604864,0.03451298,99.8151682],[4.53604911,0.03451472,99.81505461],[4.53604958,0.03451646,99.81494036],[4.53605004,0.0345182,99.81482545],[4.53605051,0.03451994,99.81470989],[4.53605098,0.03452169,99.81459367],[4.53605144,0.03452343,99.8144768],[4.53605191,0.03452517,99.81435928],[4.53605238,0.03452691,99.81424111],[4.53605284,0.03452865,99.8141223],[4.53605331,0.03453039,99.81400285],[4.53605378,0.03453214,99.81388278],[4.53605424,0.03453388,99.81376209],[4.53605471,0.03453562,99.81364078],[4.53605517,0.03453736,99.81351886],[4.53605564,0.0345391,99.81339633],[4.53605611,0.03454084,99.81327321],[4.53605657,0.03454259,99.8131495],[4.53605704,0.03454433,99.81302519],[4.5360575,0.03454607,99.81290031],[4.53605797,0.03454781,99.81277486],[4.53605844,0.03454955,99.81264884],[4.5360589,0.0345513,99.81252226],[4.53605937,0.03455304,99.81239512],[4.53605983,0.03455478,99.81226743],[4.5360603,0.03455652,99.8121392],[4.53606076,0.03455826,99.81201044],[4.53606123,0.03456,99.81188114],[4.5360617,0.03456175,99.81175132],[4.53606216,0.03456349,99.81162099],[4.53606263,0.03456523,99.81149014],[4.53606309,0.03456697,99.81135878],[4.53606356,0.03456871,99.81122693],[4.53606402,0.03457046,99.81109459],[4.53606449,0.0345722,99.81096176],[4.53606495,0.03457394,99.81082845],[4.53606542,0.03457568,99.81069466],[4.53606588,0.03457742,99.81056041],[4.53606635,0.03457917,99.8104257],[4.53606682,0.03458091,99.81029054],[4.53606728,0.03458265,99.81015493],[4.53606775,0.03458439,99.81001887],[4.53606821,0.03458613,99.80988239],[4.53606868,0.03458787,99.80974547],[4.53606914,0.03458962,99.80960813],[4.53606961,0.03459136,99.80947038],[4.53607007,0.0345931,99.80933222],[4.53607054,0.03459484,99.80919366],[4.536071,0.03459658,99.8090547],[4.53607147,0.03459833,99.80891535],[4.53607193,0.03460007,99.80877563],[4.5360724,0.03460181,99.80863552],[4.53607287,0.03460355,99.80849505],[4.53607333,0.03460529,99.80835421],[4.5360738,0.03460704,99.80821302],[4.53607426,0.03460878,99.80807147],[4.53607473,0.03461052,99.80792958],[4.53607519,0.03461226,99.80778733],[4.53607566,0.034614,99.80764473],[4.53607612,0.03461574,99.80750178],[4.53607659,0.03461749,99.80735847],[4.53607706,0.03461923,99.80721479],[4.53607752,0.03462097,99.80707076],[4.53607799,0.03462271,99.80692637],[4.53607845,0.03462445,99.80678161],[4.53607892,0.0346262,99.80663649],[4.53607938,0.03462794,99.806491],[4.53607985,0.03462968,99.80634514],[4.53608031,0.03463142,99.80619891],[4.53608078,0.03463316,99.80605231],[4.53608125,0.0346349,99.80590534],[4.53608171,0.03463665,99.80575799],[4.53608218,0.03463839,99.80561027],[4.53608264,0.03464013,99.80546216],[4.53608311,0.03464187,99.80531368],[4.53608357,0.03464361,99.80516481],[4.53608404,0.03464536,99.80501557],[4.53608451,0.0346471,99.80486593],[4.53608497,0.03464884,99.80471591],[4.53608544,0.03465058,99.8045655],[4.5360859,0.03465232,99.8044147],[4.53608637,0.03465406,99.8042635],[4.53608683,0.03465581,99.80411192],[4.5360873,0.03465755,99.80395993],[4.53608777,0.03465929,99.80380755],[4.53608823,0.03466103,99.80365477],[4.5360887,0.03466277,99.80350159],[4.53608916,0.03466452,99.803348],[4.53608963,0.03466626,99.80319401],[4.53609009,0.034668,99.80303962],[4.53609056,0.03466974,99.80288481],[4.53609102,0.03467148,99.8027296],[4.53609149,0.03467323,99.80257397],[4.53609196,0.03467497,99.80241793],[4.53609242,0.03467671,99.80226148],[4.53609289,0.03467845,99.8021046],[4.53609335,0.03468019,99.80194731],[4.53609382,0.03468193,99.8017896],[4.53609428,0.03468368,99.80163146],[4.53609475,0.03468542,99.8014729],[4.53609521,0.03468716,99.80131391],[4.53609568,0.0346889,99.80115449],[4.53609614,0.03469064,99.80099464],[4.53609661,0.03469239,99.80083436],[4.53609707,0.03469413,99.80067365],[4.53609754,0.03469587,99.8005125],[4.536098,0.03469761,99.80035091],[4.53609847,0.03469935,99.80018888],[4.53609894,0.0347011,99.80002641],[4.5360994,0.03470284,99.79986349],[4.53609987,0.03470458,99.79970013],[4.53610033,0.03470632,99.79953633],[4.5361008,0.03470806,99.79937207],[4.53610126,0.03470981,99.79920736],[4.53610173,0.03471155,99.7990422],[4.53610219,0.03471329,99.79887658],[4.53610266,0.03471503,99.79871051],[4.53610312,0.03471677,99.79854398],[4.53610358,0.03471852,99.79837699],[4.53610405,0.03472026,99.79820953],[4.53610451,0.034722,99.79804161],[4.53610498,0.03472374,99.79787322],[4.53610544,0.03472548,99.79770437],[4.53610591,0.03472723,99.79753504],[4.53610637,0.03472897,99.79736524],[4.53610684,0.03473071,99.79719497],[4.5361073,0.03473245,99.79702422],[4.53610777,0.03473419,99.79685299],[4.53610823,0.03473594,99.79668129],[4.53610869,0.03473768,99.7965091],[4.53610916,0.03473942,99.79633642],[4.53610962,0.03474116,99.79616326],[4.53611009,0.0347429,99.79598962],[4.53611055,0.03474465,99.79581548],[4.53611102,0.03474639,99.79564085],[4.53611148,0.03474813,99.79546573],[4.53611194,0.03474987,99.79529011],[4.53611241,0.03475162,99.795114],[4.53611287,0.03475336,99.79493739],[4.53611333,0.0347551,99.79476027],[4.5361138,0.03475684,99.79458265],[4.53611426,0.03475859,99.79440453],[4.53611473,0.03476033,99.7942259],[4.53611519,0.03476207,99.79404676],[4.53611565,0.03476381,99.79386711],[4.53611612,0.03476555,99.79368695],[4.53611658,0.0347673,99.79350627],[4.53611704,0.03476904,99.79332509],[4.53611751,0.03477078,99.7931434],[4.53611797,0.03477252,99.79296121],[4.53611843,0.03477427,99.79277854],[4.5361189,0.03477601,99.79259537],[4.53611936,0.03477775,99.79241173],[4.53611982,0.03477949,99.79222761],[4.53612028,0.03478124,99.79204303],[4.53612075,0.03478298,99.79185798],[4.53612121,0.03478472,99.79167247],[4.53612167,0.03478646,99.79148651],[4.53612214,0.03478821,99.79130011],[4.5361226,0.03478995,99.79111326],[4.53612306,0.03479169,99.79092598],[4.53612352,0.03479344,99.79073827],[4.53612399,0.03479518,99.79055014],[4.53612445,0.03479692,99.79036159],[4.53612491,0.03479866,99.79017264],[4.53612537,0.03480041,99.78998327],[4.53612583,0.03480215,99.78979349],[4.5361263,0.03480389,99.7896033],[4.53612676,0.03480563,99.78941271],[4.53612722,0.03480738,99.7892217],[4.53612768,0.03480912,99.78903028],[4.53612815,0.03481086,99.78883845],[4.53612861,0.0348126,99.7886462],[4.53612907,0.03481435,99.78845354],[4.53612953,0.03481609,99.78826046],[4.53612999,0.03481783,99.78806697],[4.53613046,0.03481958,99.78787306],[4.53613092,0.03482132,99.78767873],[4.53613138,0.03482306,99.78748398],[4.53613184,0.0348248,99.78728882],[4.5361323,0.03482655,99.78709323],[4.53613277,0.03482829,99.78689722],[4.53613323,0.03483003,99.78670079],[4.53613369,0.03483178,99.78650393],[4.53613415,0.03483352,99.78630665],[4.53613461,0.03483526,99.78610895],[4.53613507,0.034837,99.78591082],[4.53613554,0.03483875,99.78571227],[4.536136,0.03484049,99.78551328],[4.53613646,0.03484223,99.78531387],[4.53613692,0.03484398,99.78511403],[4.53613738,0.03484572,99.78491376],[4.53613784,0.03484746,99.78471306],[4.5361383,0.0348492,99.78451192],[4.53613877,0.03485095,99.78431036],[4.53613923,0.03485269,99.78410836],[4.53613969,0.03485443,99.78390593],[4.53614015,0.03485618,99.78370306],[4.53614061,0.03485792,99.78349976],[4.53614107,0.03485966,99.78329602],[4.53614153,0.0348614,99.78309184],[4.53614199,0.03486315,99.78288722],[4.53614245,0.03486489,99.78268217],[4.53614292,0.03486663,99.78247667],[4.53614338,0.03486838,99.78227074],[4.53614384,0.03487012,99.78206436],[4.5361443,0.03487186,99.78185754],[4.53614476,0.03487361,99.78165028],[4.53614522,0.03487535,99.78144257],[4.53614568,0.03487709,99.78123441],[4.53614614,0.03487883,99.78102582],[4.5361466,0.03488058,99.78081677],[4.53614706,0.03488232,99.78060728],[4.53614753,0.03488406,99.78039734],[4.53614799,0.03488581,99.78018695],[4.53614845,0.03488755,99.7799761],[4.53614891,0.03488929,99.77976481],[4.53614937,0.03489104,99.77955307],[4.53614983,0.03489278,99.77934087],[4.53615029,0.03489452,99.77912822],[4.53615075,0.03489627,99.77891512],[4.53615121,0.03489801,99.77870156],[4.53615167,0.03489975,99.77848754],[4.53615213,0.03490149,99.77827307],[4.53615259,0.03490324,99.77805814],[4.53615305,0.03490498,99.77784275],[4.53615351,0.03490672,99.7776269],[4.53615397,0.03490847,99.77741059],[4.53615443,0.03491021,99.77719382],[4.53615489,0.03491195,99.77697658],[4.53615536,0.0349137,99.77675889],[4.53615582,0.03491544,99.77654073],[4.53615628,0.03491718,99.7763221],[4.53615674,0.03491893,99.77610301],[4.5361572,0.03492067,99.77588345],[4.53615766,0.03492241,99.77566343],[4.53615812,0.03492416,99.77544293],[4.53615858,0.0349259,99.77522197],[4.53615904,0.03492764,99.77500053],[4.5361595,0.03492939,99.77477863],[4.53615996,0.03493113,99.77455625],[4.53616042,0.03493287,99.7743334],[4.53616088,0.03493462,99.77411008],[4.53616134,0.03493636,99.77388628],[4.5361618,0.0349381,99.77366201],[4.53616226,0.03493984,99.77343726],[4.53616272,0.03494159,99.77321203],[4.53616318,0.03494333,99.77298632],[4.53616364,0.03494507,99.77276014],[4.5361641,0.03494682,99.77253347],[4.53616456,0.03494856,99.77230632],[4.53616502,0.0349503,99.77207869],[4.53616548,0.03495205,99.77185058],[4.53616594,0.03495379,99.77162198],[4.5361664,0.03495553,99.7713929],[4.53616686,0.03495728,99.77116334],[4.53616732,0.03495902,99.77093328],[4.53616778,0.03496076,99.77070274],[4.53616824,0.03496251,99.77047171],[4.5361687,0.03496425,99.77024019],[4.53616916,0.03496599,99.77000818],[4.53616962,0.03496774,99.76977568],[4.53617008,0.03496948,99.76954268],[4.53617054,0.03497122,99.76930919],[4.536171,0.03497297,99.76907521],[4.53617146,0.03497471,99.76884073],[4.53617192,0.03497645,99.76860576],[4.53617238,0.0349782,99.76837029],[4.53617284,0.03497994,99.76813432],[4.5361733,0.03498168,99.76789785],[4.53617376,0.03498343,99.76766088],[4.53617422,0.03498517,99.7674234],[4.53617468,0.03498691,99.76718543],[4.53617514,0.03498866,99.76694695],[4.5361756,0.0349904,99.76670797],[4.53617606,0.03499214,99.76646848],[4.53617652,0.03499389,99.76622849],[4.53617698,0.03499563,99.76598799],[4.53617744,0.03499737,99.76574698],[4.5361779,0.03499912,99.76550546],[4.53617835,0.03500086,99.76526343],[4.53617881,0.0350026,99.76502089],[4.53617927,0.03500434,99.76477783],[4.53617973,0.03500609,99.76453426],[4.53618019,0.03500783,99.76429015],[4.53618065,0.03500957,99.76404552],[4.53618111,0.03501132,99.76380035],[4.53618157,0.03501306,99.76355464],[4.53618203,0.0350148,99.76330838],[4.53618249,0.03501655,99.76306157],[4.53618295,0.03501829,99.76281422],[4.53618341,0.03502003,99.76256631],[4.53618387,0.03502178,99.76231785],[4.53618433,0.03502352,99.76206882],[4.53618479,0.03502526,99.76181924],[4.53618525,0.03502701,99.7615691],[4.53618571,0.03502875,99.76131839],[4.53618617,0.03503049,99.76106712],[4.53618663,0.03503224,99.76081528],[4.53618709,0.03503398,99.76056287],[4.53618755,0.03503572,99.76030988],[4.53618801,0.03503747,99.76005633],[4.53618847,0.03503921,99.75980219],[4.53618892,0.03504095,99.75954748],[4.53618938,0.0350427,99.75929219],[4.53618984,0.03504444,99.75903631],[4.5361903,0.03504618,99.75877985],[4.53619076,0.03504793,99.7585228],[4.53619122,0.03504967,99.75826516],[4.53619168,0.03505141,99.75800693],[4.53619214,0.03505316,99.75774811],[4.5361926,0.0350549,99.75748869],[4.53619306,0.03505665,99.75722868],[4.53619352,0.03505839,99.75696806],[4.53619398,0.03506013,99.75670685],[4.53619444,0.03506188,99.75644503],[4.5361949,0.03506362,99.7561826],[4.53619536,0.03506536,99.75591956],[4.53619581,0.03506711,99.75565592],[4.53619627,0.03506885,99.75539166],[4.53619673,0.03507059,99.75512679],[4.53619719,0.03507234,99.7548613],[4.53619765,0.03507408,99.75459519],[4.53619811,0.03507582,99.75432846],[4.53619857,0.03507757,99.75406111],[4.53619903,0.03507931,99.75379313],[4.53619949,0.03508105,99.75352453],[4.53619995,0.0350828,99.75325529],[4.53620041,0.03508454,99.75298542],[4.53620087,0.03508628,99.75271492],[4.53620133,0.03508803,99.75244379],[4.53620178,0.03508977,99.75217202],[4.53620224,0.03509151,99.7518996],[4.5362027,0.03509326,99.75162654],[4.53620316,0.035095,99.75135284],[4.53620362,0.03509675,99.7510785],[4.53620408,0.03509849,99.7508035],[4.53620454,0.03510023,99.75052785],[4.536205,0.03510198,99.75025155],[4.53620546,0.03510372,99.7499746],[4.53620592,0.03510546,99.74969699],[4.53620637,0.03510721,99.74941872],[4.53620683,0.03510895,99.74913978],[4.53620729,0.03511069,99.74886019],[4.53620775,0.03511244,99.74857993],[4.53620821,0.03511418,99.748299],[4.53620867,0.03511592,99.7480174],[4.53620913,0.03511767,99.74773513],[4.53620959,0.03511941,99.74745218],[4.53621005,0.03512116,99.74716856],[4.53621051,0.0351229,99.74688426],[4.53621096,0.03512464,99.74659927],[4.53621142,0.03512639,99.74631361],[4.53621188,0.03512813,99.74602726],[4.53621234,0.03512987,99.74574023],[4.5362128,0.03513162,99.7454525],[4.53621326,0.03513336,99.74516408],[4.53621372,0.0351351,99.74487497],[4.53621418,0.03513685,99.74458517],[4.53621463,0.03513859,99.74429467],[4.53621509,0.03514033,99.74400346],[4.53621555,0.03514208,99.74371156],[4.53621601,0.03514382,99.74341895],[4.53621647,0.03514557,99.74312564],[4.53621693,0.03514731,99.74283161],[4.53621739,0.03514905,99.74253688],[4.53621785,0.0351508,99.74224143],[4.5362183,0.03515254,99.74194527],[4.53621876,0.03515428,99.74164839],[4.53621922,0.03515603,99.7413508],[4.53621968,0.03515777,99.74105248],[4.53622014,0.03515951,99.74075344],[4.5362206,0.03516126,99.74045367],[4.53622106,0.035163,99.74015318],[4.53622151,0.03516475,99.73985195],[4.53622197,0.03516649,99.73955],[4.53622243,0.03516823,99.73924731],[4.53622289,0.03516998,99.73894389],[4.53622335,0.03517172,99.73863972],[4.53622381,0.03517346,99.73833482],[4.53622427,0.03517521,99.73802917],[4.53622472,0.03517695,99.73772278],[4.53622518,0.03517869,99.73741565],[4.53622564,0.03518044,99.73710776],[4.5362261,0.03518218,99.73679913],[4.53622656,0.03518393,99.73648974],[4.53622702,0.03518567,99.73617959],[4.53622748,0.03518741,99.73586869],[4.53622793,0.03518916,99.73555703],[4.53622839,0.0351909,99.73524461],[4.53622885,0.03519264,99.73493142],[4.53622931,0.03519439,99.73461747],[4.53622977,0.03519613,99.73430275],[4.53623023,0.03519788,99.73398726],[4.53623068,0.03519962,99.733671],[4.53623114,0.03520136,99.73335396],[4.5362316,0.03520311,99.73303615],[4.53623206,0.03520485,99.73271756],[4.53623252,0.03520659,99.73239819],[4.53623298,0.03520834,99.73207803],[4.53623343,0.03521008,99.7317571],[4.53623389,0.03521183,99.73143537],[4.53623435,0.03521357,99.73111286],[4.53623481,0.03521531,99.73078955],[4.53623527,0.03521706,99.73046545],[4.53623573,0.0352188,99.73014056],[4.53623618,0.03522054,99.72981486],[4.53623664,0.03522229,99.72948837],[4.5362371,0.03522403,99.72916108],[4.53623756,0.03522578,99.72883298],[4.53623802,0.03522752,99.72850408],[4.53623848,0.03522926,99.72817437],[4.53623893,0.03523101,99.72784385],[4.53623939,0.03523275,99.72751252],[4.53623985,0.03523449,99.72718037],[4.53624031,0.03523624,99.7268474],[4.53624077,0.03523798,99.72651361],[4.53624122,0.03523973,99.72617898],[4.53624168,0.03524147,99.72584352],[4.53624214,0.03524321,99.72550722],[4.5362426,0.03524496,99.72517007],[4.53624306,0.0352467,99.72483207],[4.53624351,0.03524844,99.72449321],[4.53624397,0.03525019,99.7241535],[4.53624443,0.03525193,99.72381292],[4.53624489,0.03525368,99.72347148],[4.53624535,0.03525542,99.72312916],[4.5362458,0.03525716,99.72278598],[4.53624626,0.03525891,99.72244192],[4.53624672,0.03526065,99.72209698],[4.53624718,0.0352624,99.72175115],[4.53624764,0.03526414,99.72140444],[4.53624809,0.03526588,99.72105684],[4.53624855,0.03526763,99.72070835],[4.53624901,0.03526937,99.72035895],[4.53624947,0.03527111,99.72000866],[4.53624993,0.03527286,99.71965747],[4.53625038,0.0352746,99.71930536],[4.53625084,0.03527635,99.71895235],[4.5362513,0.03527809,99.71859842],[4.53625176,0.03527983,99.71824357],[4.53625221,0.03528158,99.71788781],[4.53625267,0.03528332,99.71753111],[4.53625313,0.03528507,99.71717349],[4.53625359,0.03528681,99.71681494],[4.53625404,0.03528855,99.71645545],[4.5362545,0.0352903,99.71609503],[4.53625496,0.03529204,99.71573366],[4.53625542,0.03529379,99.71537135],[4.53625587,0.03529553,99.71500808],[4.53625633,0.03529727,99.71464387],[4.53625679,0.03529902,99.7142787],[4.53625725,0.03530076,99.71391257],[4.5362577,0.03530251,99.71354548],[4.53625816,0.03530425,99.71317742],[4.53625862,0.03530599,99.7128084],[4.53625907,0.03530774,99.7124384],[4.53625953,0.03530948,99.71206742],[4.53625999,0.03531123,99.71169547],[4.53626045,0.03531297,99.71132253],[4.5362609,0.03531471,99.71094861],[4.53626136,0.03531646,99.71057369],[4.53626182,0.0353182,99.71019779],[4.53626227,0.03531995,99.70982088],[4.53626273,0.03532169,99.70944298],[4.53626319,0.03532344,99.70906407],[4.53626364,0.03532518,99.70868416],[4.5362641,0.03532692,99.70830324],[4.53626456,0.03532867,99.7079213],[4.53626501,0.03533041,99.70753835],[4.53626547,0.03533216,99.70715437],[4.53626593,0.0353339,99.70676938],[4.53626638,0.03533564,99.70638335],[4.53626684,0.03533739,99.7059963],[4.5362673,0.03533913,99.70560821],[4.53626775,0.03534088,99.70521908],[4.53626821,0.03534262,99.70482891],[4.53626866,0.03534437,99.7044377],[4.53626912,0.03534611,99.70404545],[4.53626958,0.03534785,99.70365214],[4.53627003,0.0353496,99.70325778],[4.53627049,0.03535134,99.70286236],[4.53627095,0.03535309,99.70246587],[4.5362714,0.03535483,99.70206833],[4.53627186,0.03535658,99.70166972],[4.53627231,0.03535832,99.70127003],[4.53627277,0.03536007,99.70086928],[4.53627323,0.03536181,99.70046744],[4.53627368,0.03536355,99.70006452],[4.53627414,0.0353653,99.69966052],[4.53627459,0.03536704,99.69925543],[4.53627505,0.03536879,99.69884925],[4.5362755,0.03537053,99.69844198],[4.53627596,0.03537228,99.6980336],[4.53627641,0.03537402,99.69762413],[4.53627687,0.03537577,99.69721355],[4.53627733,0.03537751,99.69680186],[4.53627778,0.03537925,99.69638906],[4.53627824,0.035381,99.69597515],[4.53627869,0.03538274,99.69556012],[4.53627915,0.03538449,99.69514396],[4.5362796,0.03538623,99.69472668],[4.53628006,0.03538798,99.69430828],[4.53628051,0.03538972,99.69388874],[4.53628097,0.03539147,99.69346806],[4.53628142,0.03539321,99.69304625],[4.53628188,0.03539496,99.69262329],[4.53628233,0.0353967,99.69219919],[4.53628279,0.03539845,99.69177394],[4.53628324,0.03540019,99.69134754],[4.53628369,0.03540194,99.69091998],[4.53628415,0.03540368,99.69049126],[4.5362846,0.03540542,99.69006138],[4.53628506,0.03540717,99.68963034],[4.53628551,0.03540891,99.68919813],[4.53628597,0.03541066,99.68876477],[4.53628642,0.0354124,99.68833024],[4.53628687,0.03541415,99.68789454],[4.53628733,0.03541589,99.68745769],[4.53628778,0.03541764,99.68701967],[4.53628824,0.03541938,99.68658048],[4.53628869,0.03542113,99.68614013],[4.53628914,0.03542287,99.68569862],[4.5362896,0.03542462,99.68525594],[4.53629005,0.03542636,99.68481209],[4.53629051,0.03542811,99.68436708],[4.53629096,0.03542985,99.6839209],[4.53629141,0.0354316,99.68347356],[4.53629187,0.03543334,99.68302505],[4.53629232,0.03543509,99.68257537],[4.53629277,0.03543683,99.68212452],[4.53629323,0.03543858,99.6816725],[4.53629368,0.03544032,99.68121932],[4.53629413,0.03544207,99.68076496],[4.53629459,0.03544381,99.68030944],[4.53629504,0.03544556,99.67985274],[4.53629549,0.0354473,99.67939488],[4.53629595,0.03544905,99.67893584],[4.5362964,0.03545079,99.67847564],[4.53629685,0.03545254,99.67801426],[4.5362973,0.03545429,99.67755171],[4.53629776,0.03545603,99.67708798],[4.53629821,0.03545778,99.67662309],[4.53629866,0.03545952,99.67615701],[4.53629912,0.03546127,99.67568977],[4.53629957,0.03546301,99.67522135],[4.53630002,0.03546476,99.67475175],[4.53630047,0.0354665,99.67428098],[4.53630093,0.03546825,99.67380904],[4.53630138,0.03546999,99.67333592],[4.53630183,0.03547174,99.67286162],[4.53630228,0.03547348,99.67238614],[4.53630274,0.03547523,99.67190948],[4.53630319,0.03547697,99.67143165],[4.53630364,0.03547872,99.67095264],[4.53630409,0.03548046,99.67047244],[4.53630455,0.03548221,99.66999107],[4.536305,0.03548395,99.66950852],[4.53630545,0.0354857,99.66902479],[4.5363059,0.03548745,99.66853987],[4.53630636,0.03548919,99.66805377],[4.53630681,0.03549094,99.66756649],[4.53630726,0.03549268,99.66707803],[4.53630771,0.03549443,99.66658838],[4.53630816,0.03549617,99.66609755],[4.53630862,0.03549792,99.66560554],[4.53630907,0.03549966,99.66511234],[4.53630952,0.03550141,99.66461795],[4.53630997,0.03550315,99.66412238],[4.53631043,0.0355049,99.66362562],[4.53631088,0.03550664,99.66312768],[4.53631133,0.03550839,99.66262854],[4.53631178,0.03551014,99.66212822],[4.53631223,0.03551188,99.66162671],[4.53631268,0.03551363,99.66112401],[4.53631314,0.03551537,99.66062012],[4.53631359,0.03551712,99.66011504],[4.53631404,0.03551886,99.65960876],[4.53631449,0.03552061,99.6591013],[4.53631494,0.03552235,99.65859264],[4.5363154,0.0355241,99.65808279],[4.53631585,0.03552585,99.65757175],[4.5363163,0.03552759,99.65705952],[4.53631675,0.03552934,99.65654609],[4.5363172,0.03553108,99.65603146],[4.53631765,0.03553283,99.65551564],[4.53631811,0.03553457,99.65499863],[4.53631856,0.03553632,99.65448042],[4.53631901,0.03553806,99.65396101],[4.53631946,0.03553981,99.6534404],[4.53631991,0.03554156,99.65291859],[4.53632036,0.0355433,99.65239558],[4.53632082,0.03554505,99.65187137],[4.53632127,0.03554679,99.65134595],[4.53632172,0.03554854,99.65081933],[4.53632217,0.03555028,99.6502915],[4.53632262,0.03555203,99.64976245],[4.53632307,0.03555377,99.6492322],[4.53632352,0.03555552,99.64870073],[4.53632398,0.03555727,99.64816804],[4.53632443,0.03555901,99.64763414],[4.53632488,0.03556076,99.64709902],[4.53632533,0.0355625,99.64656267],[4.53632578,0.03556425,99.64602511],[4.53632623,0.03556599,99.64548632],[4.53632668,0.03556774,99.6449463],[4.53632714,0.03556948,99.64440505],[4.53632759,0.03557123,99.64386258],[4.53632804,0.03557298,99.64331887],[4.53632849,0.03557472,99.64277394],[4.53632894,0.03557647,99.64222778],[4.53632939,0.03557821,99.64168041],[4.53632984,0.03557996,99.64113182],[4.5363303,0.0355817,99.64058202],[4.53633075,0.03558345,99.64003102],[4.5363312,0.0355852,99.6394788],[4.53633165,0.03558694,99.63892539],[4.5363321,0.03558869,99.63837079],[4.53633255,0.03559043,99.63781499],[4.536333,0.03559218,99.637258],[4.53633345,0.03559392,99.63669983],[4.53633391,0.03559567,99.63614047],[4.53633436,0.03559741,99.63557994],[4.53633481,0.03559916,99.63501823],[4.53633526,0.03560091,99.63445536],[4.53633571,0.03560265,99.63389131],[4.53633616,0.0356044,99.63332611],[4.53633661,0.03560614,99.63275974],[4.53633706,0.03560789,99.63219222],[4.53633752,0.03560963,99.63162354],[4.53633797,0.03561138,99.63105371],[4.53633842,0.03561313,99.63048274],[4.53633887,0.03561487,99.62991063],[4.53633932,0.03561662,99.62933737],[4.53633977,0.03561836,99.62876298],[4.53634022,0.03562011,99.62818746],[4.53634067,0.03562185,99.62761081],[4.53634113,0.0356236,99.62703303],[4.53634158,0.03562535,99.62645414],[4.53634203,0.03562709,99.62587412],[4.53634248,0.03562884,99.625293],[4.53634293,0.03563058,99.62471076],[4.53634338,0.03563233,99.62412741],[4.53634383,0.03563407,99.62354296],[4.53634428,0.03563582,99.62295741],[4.53634473,0.03563756,99.62237076],[4.53634519,0.03563931,99.62178303],[4.53634564,0.03564106,99.6211942],[4.53634609,0.0356428,99.62060428],[4.53634654,0.03564455,99.62001329],[4.53634699,0.03564629,99.61942121],[4.53634744,0.03564804,99.61882806],[4.53634789,0.03564978,99.61823384],[4.53634834,0.03565153,99.61763855],[4.53634879,0.03565328,99.6170422],[4.53634925,0.03565502,99.61644479],[4.5363497,0.03565677,99.61584632],[4.53635015,0.03565851,99.6152468],[4.5363506,0.03566026,99.61464624],[4.53635105,0.035662,99.61404463],[4.5363515,0.03566375,99.61344199],[4.53635195,0.0356655,99.61283832],[4.5363524,0.03566724,99.61223362],[4.53635285,0.03566899,99.6116279],[4.53635331,0.03567073,99.61102116],[4.53635376,0.03567248,99.61041342],[4.53635421,0.03567422,99.60980466],[4.53635466,0.03567597,99.60919491],[4.53635511,0.03567772,99.60858415],[4.53635556,0.03567946,99.60797241],[4.53635601,0.03568121,99.60735967],[4.53635646,0.03568295,99.60674596],[4.53635691,0.0356847,99.60613127],[4.53635736,0.03568644,99.6055156],[4.53635782,0.03568819,99.60489897],[4.53635827,0.03568994,99.60428137],[4.53635872,0.03569168,99.60366282],[4.53635917,0.03569343,99.60304331],[4.53635962,0.03569517,99.60242286],[4.53636007,0.03569692,99.60180146],[4.53636052,0.03569866,99.60117912],[4.53636097,0.03570041,99.60055586],[4.53636142,0.03570215,99.59993166],[4.53636187,0.0357039,99.59930654],[4.53636233,0.03570565,99.5986805],[4.53636278,0.03570739,99.59805355],[4.53636323,0.03570914,99.59742568],[4.53636368,0.03571088,99.59679692],[4.53636413,0.03571263,99.59616725],[4.53636458,0.03571437,99.5955367],[4.53636503,0.03571612,99.59490525],[4.53636548,0.03571787,99.59427292],[4.53636593,0.03571961,99.59363971],[4.53636638,0.03572136,99.59300562],[4.53636684,0.0357231,99.59237067],[4.53636729,0.03572485,99.59173485],[4.53636774,0.0357266,99.59109818],[4.53636819,0.03572834,99.59046065],[4.53636864,0.03573009,99.58982227],[4.53636909,0.03573183,99.58918304],[4.53636954,0.03573358,99.58854298],[4.53636999,0.03573532,99.58790208],[4.53637044,0.03573707,99.58726036],[4.53637089,0.03573882,99.5866178],[4.53637134,0.03574056,99.58597443],[4.5363718,0.03574231,99.58533025],[4.53637225,0.03574405,99.58468525],[4.5363727,0.0357458,99.58403946],[4.53637315,0.03574754,99.58339286],[4.5363736,0.03574929,99.58274546],[4.53637405,0.03575104,99.58209728],[4.5363745,0.03575278,99.58144831],[4.53637495,0.03575453,99.58079857],[4.5363754,0.03575627,99.58014805],[4.53637585,0.03575802,99.57949676],[4.5363763,0.03575976,99.5788447],[4.53637676,0.03576151,99.57819189],[4.53637721,0.03576326,99.57753832],[4.53637766,0.035765,99.576884],[4.53637811,0.03576675,99.57622894],[4.53637856,0.03576849,99.57557314],[4.53637901,0.03577024,99.5749166],[4.53637946,0.03577198,99.57425933],[4.53637991,0.03577373,99.57360134],[4.53638036,0.03577548,99.57294263],[4.53638081,0.03577722,99.57228321],[4.53638126,0.03577897,99.57162308],[4.53638172,0.03578071,99.57096224],[4.53638217,0.03578246,99.5703007],[4.53638262,0.0357842,99.56963847],[4.53638307,0.03578595,99.56897555],[4.53638352,0.0357877,99.56831195],[4.53638397,0.03578944,99.56764766],[4.53638442,0.03579119,99.56698271],[4.53638487,0.03579293,99.56631708],[4.53638532,0.03579468,99.56565079],[4.53638577,0.03579643,99.56498384],[4.53638622,0.03579817,99.56431624],[4.53638668,0.03579992,99.56364798],[4.53638713,0.03580166,99.56297909],[4.53638758,0.03580341,99.56230955],[4.53638803,0.03580515,99.56163938],[4.53638848,0.0358069,99.56096859],[4.53638893,0.03580865,99.56029716],[4.53638938,0.03581039,99.55962512],[4.53638983,0.03581214,99.55895247],[4.53639028,0.03581388,99.55827921],[4.53639073,0.03581563,99.55760534],[4.53639118,0.03581737,99.55693088],[4.53639163,0.03581912,99.55625582],[4.53639209,0.03582087,99.55558018],[4.53639254,0.03582261,99.55490395],[4.53639299,0.03582436,99.55422715],[4.53639344,0.0358261,99.55354978],[4.53639389,0.03582785,99.55287185],[4.53639434,0.03582959,99.55219336],[4.53639479,0.03583134,99.55151431],[4.53639524,0.03583309,99.55083473],[4.53639569,0.03583483,99.5501546],[4.53639614,0.03583658,99.54947394],[4.53639659,0.03583832,99.54879276],[4.53639705,0.03584007,99.54811105],[4.5363975,0.03584181,99.54742883],[4.53639795,0.03584356,99.54674611],[4.5363984,0.03584531,99.54606288],[4.53639885,0.03584705,99.54537915],[4.5363993,0.0358488,99.54469493],[4.53639975,0.03585054,99.54401023],[4.5364002,0.03585229,99.54332505],[4.53640065,0.03585403,99.5426394],[4.5364011,0.03585578,99.54195328],[4.53640155,0.03585753,99.54126671],[4.53640201,0.03585927,99.54057968],[4.53640246,0.03586102,99.5398922],[4.53640291,0.03586276,99.53920428],[4.53640336,0.03586451,99.53851593],[4.53640381,0.03586626,99.53782715],[4.53640426,0.035868,99.53713794],[4.53640471,0.03586975,99.53644832],[4.53640516,0.03587149,99.53575829],[4.53640561,0.03587324,99.53506785],[4.53640606,0.03587498,99.53437701],[4.53640651,0.03587673,99.53368578],[4.53640697,0.03587848,99.53299417],[4.53640742,0.03588022,99.53230218],[4.53640787,0.03588197,99.53160981],[4.53640832,0.03588371,99.53091707],[4.53640877,0.03588546,99.53022398],[4.53640922,0.0358872,99.52953052],[4.53640967,0.03588895,99.52883672],[4.53641012,0.03589069,99.52814258],[4.53641057,0.03589244,99.52744809],[4.53641103,0.03589419,99.52675328],[4.53641148,0.03589593,99.52605814],[4.53641193,0.03589768,99.52536269],[4.53641238,0.03589942,99.52466692],[4.53641283,0.03590117,99.52397084],[4.53641328,0.03590291,99.52327447],[4.53641373,0.03590466,99.5225778],[4.53641418,0.03590641,99.52188084],[4.53641464,0.03590815,99.5211836],[4.53641509,0.0359099,99.52048608],[4.53641554,0.03591164,99.51978829],[4.53641599,0.03591339,99.51909022],[4.53641644,0.03591513,99.51839189],[4.53641689,0.03591688,99.5176933],[4.53641734,0.03591863,99.51699445],[4.53641779,0.03592037,99.51629534],[4.53641825,0.03592212,99.51559599],[4.5364187,0.03592386,99.51489639],[4.53641915,0.03592561,99.51419655],[4.5364196,0.03592735,99.51349647],[4.53642005,0.0359291,99.51279617],[4.5364205,0.03593084,99.51209563],[4.53642095,0.03593259,99.51139487],[4.53642141,0.03593434,99.51069389],[4.53642186,0.03593608,99.50999269],[4.53642231,0.03593783,99.50929129],[4.53642276,0.03593957,99.50858967],[4.53642321,0.03594132,99.50788785],[4.53642366,0.03594306,99.50718584],[4.53642412,0.03594481,99.50648362],[4.53642457,0.03594655,99.50578122],[4.53642502,0.0359483,99.50507863],[4.53642547,0.03595005,99.50437586],[4.53642592,0.03595179,99.50367291],[4.53642637,0.03595354,99.50296977],[4.53642682,0.03595528,99.50226645],[4.53642728,0.03595703,99.50156294],[4.53642773,0.03595877,99.50085924],[4.53642818,0.03596052,99.50015535],[4.53642863,0.03596226,99.49945128],[4.53642908,0.03596401,99.49874701],[4.53642953,0.03596576,99.49804255],[4.53642999,0.0359675,99.49733789],[4.53643044,0.03596925,99.49663304],[4.53643089,0.03597099,99.495928],[4.53643134,0.03597274,99.49522275],[4.53643179,0.03597448,99.49451731],[4.53643224,0.03597623,99.49381167],[4.5364327,0.03597797,99.49310582],[4.53643315,0.03597972,99.49239977],[4.5364336,0.03598147,99.49169352],[4.53643405,0.03598321,99.49098706],[4.5364345,0.03598496,99.49028039],[4.53643496,0.0359867,99.48957352],[4.53643541,0.03598845,99.48886643],[4.53643586,0.03599019,99.48815914],[4.53643631,0.03599194,99.48745163],[4.53643676,0.03599368,99.48674391],[4.53643721,0.03599543,99.48603597],[4.53643767,0.03599717,99.48532782],[4.53643812,0.03599892,99.48461945],[4.53643857,0.03600067,99.48391086],[4.53643902,0.03600241,99.48320205],[4.53643947,0.03600416,99.48249301],[4.53643992,0.0360059,99.48178376],[4.53644038,0.03600765,99.48107428],[4.53644083,0.03600939,99.48036457],[4.53644128,0.03601114,99.47965464],[4.53644173,0.03601288,99.47894448],[4.53644218,0.03601463,99.47823408],[4.53644264,0.03601638,99.47752346],[4.53644309,0.03601812,99.4768126],[4.53644354,0.03601987,99.47610151],[4.53644399,0.03602161,99.47539018],[4.53644444,0.03602336,99.47467862],[4.53644489,0.0360251,99.47396682],[4.53644535,0.03602685,99.47325477],[4.5364458,0.03602859,99.47254249],[4.53644625,0.03603034,99.47182996],[4.5364467,0.03603208,99.47111718],[4.53644715,0.03603383,99.47040415],[4.53644761,0.03603558,99.46969085],[4.53644806,0.03603732,99.46897729],[4.53644851,0.03603907,99.46826345],[4.53644896,0.03604081,99.46754935],[4.53644941,0.03604256,99.46683496],[4.53644986,0.0360443,99.46612028],[4.53645032,0.03604605,99.46540531],[4.53645077,0.03604779,99.46469005],[4.53645122,0.03604954,99.46397449],[4.53645167,0.03605128,99.46325862],[4.53645212,0.03605303,99.46254244],[4.53645258,0.03605478,99.46182594],[4.53645303,0.03605652,99.46110912],[4.53645348,0.03605827,99.46039198],[4.53645393,0.03606001,99.4596745],[4.53645438,0.03606176,99.45895669],[4.53645483,0.0360635,99.45823854],[4.53645528,0.03606525,99.45752004],[4.53645574,0.03606699,99.45680119],[4.53645619,0.03606874,99.45608198],[4.53645664,0.03607049,99.45536241],[4.53645709,0.03607223,99.45464247],[4.53645754,0.03607398,99.45392217],[4.53645799,0.03607572,99.45320148],[4.53645845,0.03607747,99.45248042],[4.5364589,0.03607921,99.45175896],[4.53645935,0.03608096,99.45103712],[4.5364598,0.0360827,99.45031488],[4.53646025,0.03608445,99.44959223],[4.5364607,0.0360862,99.44886918],[4.53646115,0.03608794,99.44814572],[4.5364616,0.03608969,99.44742184],[4.53646205,0.03609143,99.44669754],[4.53646251,0.03609318,99.44597281],[4.53646296,0.03609492,99.44524765],[4.53646341,0.03609667,99.44452205],[4.53646386,0.03609842,99.44379602],[4.53646431,0.03610016,99.44306953],[4.53646476,0.03610191,99.44234259],[4.53646521,0.03610365,99.4416152],[4.53646566,0.0361054,99.44088735],[4.53646611,0.03610714,99.44015902],[4.53646656,0.03610889,99.43943022],[4.53646701,0.03611064,99.43870094],[4.53646746,0.03611238,99.43797114],[4.53646791,0.03611413,99.43724082],[4.53646836,0.03611587,99.43650997],[4.53646881,0.03611762,99.43577858],[4.53646926,0.03611937,99.43504664],[4.53646971,0.03612111,99.43431417],[4.53647016,0.03612286,99.43358117],[4.53647061,0.0361246,99.43284764],[4.53647106,0.03612635,99.43211358],[4.53647151,0.0361281,99.431379],[4.53647196,0.03612984,99.4306439],[4.53647241,0.03613159,99.42990828],[4.53647286,0.03613333,99.42917216],[4.53647331,0.03613508,99.42843553],[4.53647376,0.03613683,99.42769839],[4.53647421,0.03613857,99.42696076],[4.53647466,0.03614032,99.42622262],[4.53647511,0.03614206,99.425484],[4.53647556,0.03614381,99.42474489],[4.53647601,0.03614556,99.42400529],[4.53647646,0.0361473,99.42326521],[4.5364769,0.03614905,99.42252466],[4.53647735,0.0361508,99.42178363],[4.5364778,0.03615254,99.42104213],[4.53647825,0.03615429,99.42030017],[4.5364787,0.03615603,99.41955774],[4.53647915,0.03615778,99.41881485],[4.5364796,0.03615953,99.41807151],[4.53648005,0.03616127,99.41732771],[4.53648049,0.03616302,99.41658347],[4.53648094,0.03616477,99.41583879],[4.53648139,0.03616651,99.41509366],[4.53648184,0.03616826,99.4143481],[4.53648229,0.03617,99.4136021],[4.53648274,0.03617175,99.41285568],[4.53648319,0.0361735,99.41210883],[4.53648363,0.03617524,99.41136156],[4.53648408,0.03617699,99.41061386],[4.53648453,0.03617874,99.40986576],[4.53648498,0.03618048,99.40911724],[4.53648543,0.03618223,99.40836832],[4.53648587,0.03618398,99.40761899],[4.53648632,0.03618572,99.40686926],[4.53648677,0.03618747,99.40611914],[4.53648722,0.03618922,99.40536862],[4.53648767,0.03619096,99.40461772],[4.53648812,0.03619271,99.40386643],[4.53648856,0.03619445,99.40311475],[4.53648901,0.0361962,99.4023627],[4.53648946,0.03619795,99.40161028],[4.53648991,0.03619969,99.40085748],[4.53649035,0.03620144,99.40010432],[4.5364908,0.03620319,99.39935079],[4.53649125,0.03620493,99.3985969],[4.5364917,0.03620668,99.39784266],[4.53649215,0.03620843,99.39708806],[4.53649259,0.03621017,99.39633312],[4.53649304,0.03621192,99.39557783],[4.53649349,0.03621367,99.39482219],[4.53649394,0.03621541,99.39406622],[4.53649439,0.03621716,99.39330991],[4.53649483,0.03621891,99.39255327],[4.53649528,0.03622065,99.39179629],[4.53649573,0.0362224,99.39103895],[4.53649618,0.03622415,99.39028123],[4.53649662,0.03622589,99.3895231],[4.53649707,0.03622764,99.38876453],[4.53649752,0.03622938,99.38800551],[4.53649797,0.03623113,99.38724602],[4.53649841,0.03623288,99.38648606],[4.53649886,0.03623462,99.38572563],[4.53649931,0.03623637,99.38496474],[4.53649976,0.03623812,99.38420338],[4.5365002,0.03623986,99.38344155],[4.53650065,0.03624161,99.38267926],[4.5365011,0.03624336,99.38191651],[4.53650155,0.0362451,99.38115329],[4.53650199,0.03624685,99.38038961],[4.53650244,0.0362486,99.37962547],[4.53650289,0.03625034,99.37886087],[4.53650333,0.03625209,99.3780958],[4.53650378,0.03625384,99.37733028],[4.53650423,0.03625558,99.3765643],[4.53650467,0.03625733,99.37579786],[4.53650512,0.03625908,99.37503097],[4.53650557,0.03626082,99.37426361],[4.53650602,0.03626257,99.37349581],[4.53650646,0.03626432,99.37272754],[4.53650691,0.03626606,99.37195882],[4.53650736,0.03626781,99.37118965],[4.5365078,0.03626956,99.37042003],[4.53650825,0.03627131,99.36964995],[4.5365087,0.03627305,99.36887942],[4.53650914,0.0362748,99.36810844],[4.53650959,0.03627655,99.36733701],[4.53651003,0.03627829,99.36656513],[4.53651048,0.03628004,99.3657928],[4.53651093,0.03628179,99.36502003],[4.53651137,0.03628353,99.3642468],[4.53651182,0.03628528,99.36347313],[4.53651227,0.03628703,99.36269901],[4.53651271,0.03628877,99.36192445],[4.53651316,0.03629052,99.36114945],[4.53651361,0.03629227,99.36037399],[4.53651405,0.03629401,99.3595981],[4.5365145,0.03629576,99.35882176],[4.53651494,0.03629751,99.35804499],[4.53651539,0.03629926,99.35726777],[4.53651584,0.036301,99.35649011],[4.53651628,0.03630275,99.35571201],[4.53651673,0.0363045,99.35493347],[4.53651717,0.03630624,99.35415449],[4.53651762,0.03630799,99.35337507],[4.53651806,0.03630974,99.35259522],[4.53651851,0.03631148,99.35181493],[4.53651896,0.03631323,99.35103421],[4.5365194,0.03631498,99.35025305],[4.53651985,0.03631673,99.34947145],[4.53652029,0.03631847,99.34868942],[4.53652074,0.03632022,99.34790696],[4.53652118,0.03632197,99.34712406],[4.53652163,0.03632371,99.34634074],[4.53652208,0.03632546,99.34555698],[4.53652252,0.03632721,99.34477279],[4.53652297,0.03632895,99.34398817],[4.53652341,0.0363307,99.34320312],[4.53652386,0.03633245,99.34241765],[4.5365243,0.0363342,99.34163174],[4.53652475,0.03633594,99.34084541],[4.53652519,0.03633769,99.34005865],[4.53652564,0.03633944,99.33927146],[4.53652609,0.03634118,99.33848385],[4.53652653,0.03634293,99.33769581],[4.53652698,0.03634468,99.33690735],[4.53652742,0.03634643,99.33611846],[4.53652787,0.03634817,99.33532916],[4.53652831,0.03634992,99.33453942],[4.53652876,0.03635167,99.33374927],[4.5365292,0.03635341,99.3329587],[4.53652965,0.03635516,99.3321677],[4.53653009,0.03635691,99.33137629],[4.53653054,0.03635866,99.33058448],[4.53653098,0.0363604,99.32979232],[4.53653143,0.03636215,99.32899981],[4.53653187,0.0363639,99.32820694],[4.53653232,0.03636565,99.32741372],[4.53653276,0.03636739,99.32662016],[4.53653321,0.03636914,99.32582625],[4.53653365,0.03637089,99.32503199],[4.5365341,0.03637263,99.32423738],[4.53653454,0.03637438,99.32344243],[4.53653499,0.03637613,99.32264713],[4.53653543,0.03637788,99.32185149],[4.53653588,0.03637962,99.3210555],[4.53653632,0.03638137,99.32025918],[4.53653677,0.03638312,99.31946251],[4.53653721,0.03638486,99.3186655],[4.53653766,0.03638661,99.31786816],[4.5365381,0.03638836,99.31707047],[4.53653855,0.03639011,99.31627245],[4.536539,0.03639185,99.31547409],[4.53653944,0.0363936,99.31467539],[4.53653989,0.03639535,99.31387636],[4.53654033,0.03639709,99.313077],[4.53654078,0.03639884,99.3122773],[4.53654122,0.03640059,99.31147727],[4.53654167,0.03640234,99.3106769],[4.53654211,0.03640408,99.30987621],[4.53654256,0.03640583,99.30907519],[4.536543,0.03640758,99.30827383],[4.53654345,0.03640932,99.30747215],[4.53654389,0.03641107,99.30667014],[4.53654434,0.03641282,99.30586781],[4.53654478,0.03641457,99.30506515],[4.53654523,0.03641631,99.30426216],[4.53654567,0.03641806,99.30345885],[4.53654612,0.03641981,99.30265521],[4.53654657,0.03642155,99.30185125],[4.53654701,0.0364233,99.30104697],[4.53654746,0.03642505,99.30024237],[4.5365479,0.0364268,99.29943745],[4.53654835,0.03642854,99.29863221],[4.53654879,0.03643029,99.29782665],[4.53654924,0.03643204,99.29702077],[4.53654968,0.03643378,99.29621457],[4.53655013,0.03643553,99.29540806],[4.53655058,0.03643728,99.29460123],[4.53655102,0.03643902,99.29379408],[4.53655147,0.03644077,99.29298662],[4.53655191,0.03644252,99.29217885],[4.53655236,0.03644426,99.29137076],[4.5365528,0.036446,99.29056236],[4.53655325,0.03644775,99.28975365],[4.53655369,0.0364495,99.28894463],[4.53655414,0.03645124,99.2881353],[4.53655458,0.03645299,99.28732566],[4.53655503,0.03645474,99.28651571],[4.53655548,0.03645649,99.28570545],[4.53655592,0.03645823,99.28489488],[4.53655637,0.03645998,99.28408401],[4.53655681,0.03646173,99.28327283],[4.53655726,0.03646347,99.28246134],[4.53655771,0.03646522,99.28164952],[4.53655815,0.03646697,99.28083733],[4.5365586,0.03646871,99.28002473],[4.53655904,0.03647046,99.27921169],[4.53655949,0.03647221,99.27839818],[4.53655994,0.03647396,99.27758415],[4.53656038,0.0364757,99.27676957],[4.53656083,0.03647745,99.27595441],[4.53656127,0.0364792,99.27513863],[4.53656172,0.03648094,99.2743222],[4.53656216,0.03648269,99.27350507],[4.53653058,0.03649083,99.17552414]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2,"sOffset":248.3390056326}},{"geometry":{"coordinates":[[[4.53656216,0.03648269,99.27350507],[4.53656172,0.03648094,99.2743222],[4.53656127,0.0364792,99.27513863],[4.53656083,0.03647745,99.27595441],[4.53656038,0.0364757,99.27676957],[4.53655994,0.03647396,99.27758415],[4.53655949,0.03647221,99.27839818],[4.53655904,0.03647046,99.27921169],[4.5365586,0.03646871,99.28002473],[4.53655815,0.03646697,99.28083733],[4.53655771,0.03646522,99.28164952],[4.53655726,0.03646347,99.28246134],[4.53655681,0.03646173,99.28327283],[4.53655637,0.03645998,99.28408401],[4.53655592,0.03645823,99.28489488],[4.53655548,0.03645649,99.28570545],[4.53655503,0.03645474,99.28651571],[4.53655458,0.03645299,99.28732566],[4.53655414,0.03645124,99.2881353],[4.53655369,0.0364495,99.28894463],[4.53655325,0.03644775,99.28975365],[4.5365528,0.036446,99.29056236],[4.53655236,0.03644426,99.29137076],[4.53655191,0.03644252,99.29217885],[4.53655147,0.03644077,99.29298662],[4.53655102,0.03643902,99.29379408],[4.53655058,0.03643728,99.29460123],[4.53655013,0.03643553,99.29540806],[4.53654968,0.03643378,99.29621457],[4.53654924,0.03643204,99.29702077],[4.53654879,0.03643029,99.29782665],[4.53654835,0.03642854,99.29863221],[4.5365479,0.0364268,99.29943745],[4.53654746,0.03642505,99.30024237],[4.53654701,0.0364233,99.30104697],[4.53654657,0.03642155,99.30185125],[4.53654612,0.03641981,99.30265521],[4.53654567,0.03641806,99.30345885],[4.53654523,0.03641631,99.30426216],[4.53654478,0.03641457,99.30506515],[4.53654434,0.03641282,99.30586781],[4.53654389,0.03641107,99.30667014],[4.53654345,0.03640932,99.30747215],[4.536543,0.03640758,99.30827383],[4.53654256,0.03640583,99.30907519],[4.53654211,0.03640408,99.30987621],[4.53654167,0.03640234,99.3106769],[4.53654122,0.03640059,99.31147727],[4.53654078,0.03639884,99.3122773],[4.53654033,0.03639709,99.313077],[4.53653989,0.03639535,99.31387636],[4.53653944,0.0363936,99.31467539],[4.536539,0.03639185,99.31547409],[4.53653855,0.03639011,99.31627245],[4.5365381,0.03638836,99.31707047],[4.53653766,0.03638661,99.31786816],[4.53653721,0.03638486,99.3186655],[4.53653677,0.03638312,99.31946251],[4.53653632,0.03638137,99.32025918],[4.53653588,0.03637962,99.3210555],[4.53653543,0.03637788,99.32185149],[4.53653499,0.03637613,99.32264713],[4.53653454,0.03637438,99.32344243],[4.5365341,0.03637263,99.32423738],[4.53653365,0.03637089,99.32503199],[4.53653321,0.03636914,99.32582625],[4.53653276,0.03636739,99.32662016],[4.53653232,0.03636565,99.32741372],[4.53653187,0.0363639,99.32820694],[4.53653143,0.03636215,99.32899981],[4.53653098,0.0363604,99.32979232],[4.53653054,0.03635866,99.33058448],[4.53653009,0.03635691,99.33137629],[4.53652965,0.03635516,99.3321677],[4.5365292,0.03635341,99.3329587],[4.53652876,0.03635167,99.33374927],[4.53652831,0.03634992,99.33453942],[4.53652787,0.03634817,99.33532916],[4.53652742,0.03634643,99.33611846],[4.53652698,0.03634468,99.33690735],[4.53652653,0.03634293,99.33769581],[4.53652609,0.03634118,99.33848385],[4.53652564,0.03633944,99.33927146],[4.53652519,0.03633769,99.34005865],[4.53652475,0.03633594,99.34084541],[4.5365243,0.0363342,99.34163174],[4.53652386,0.03633245,99.34241765],[4.53652341,0.0363307,99.34320312],[4.53652297,0.03632895,99.34398817],[4.53652252,0.03632721,99.34477279],[4.53652208,0.03632546,99.34555698],[4.53652163,0.03632371,99.34634074],[4.53652118,0.03632197,99.34712406],[4.53652074,0.03632022,99.34790696],[4.53652029,0.03631847,99.34868942],[4.53651985,0.03631673,99.34947145],[4.5365194,0.03631498,99.35025305],[4.53651896,0.03631323,99.35103421],[4.53651851,0.03631148,99.35181493],[4.53651806,0.03630974,99.35259522],[4.53651762,0.03630799,99.35337507],[4.53651717,0.03630624,99.35415449],[4.53651673,0.0363045,99.35493347],[4.53651628,0.03630275,99.35571201],[4.53651584,0.036301,99.35649011],[4.53651539,0.03629926,99.35726777],[4.53651494,0.03629751,99.35804499],[4.5365145,0.03629576,99.35882176],[4.53651405,0.03629401,99.3595981],[4.53651361,0.03629227,99.36037399],[4.53651316,0.03629052,99.36114945],[4.53651271,0.03628877,99.36192445],[4.53651227,0.03628703,99.36269901],[4.53651182,0.03628528,99.36347313],[4.53651137,0.03628353,99.3642468],[4.53651093,0.03628179,99.36502003],[4.53651048,0.03628004,99.3657928],[4.53651003,0.03627829,99.36656513],[4.53650959,0.03627655,99.36733701],[4.53650914,0.0362748,99.36810844],[4.5365087,0.03627305,99.36887942],[4.53650825,0.03627131,99.36964995],[4.5365078,0.03626956,99.37042003],[4.53650736,0.03626781,99.37118965],[4.53650691,0.03626606,99.37195882],[4.53650646,0.03626432,99.37272754],[4.53650602,0.03626257,99.37349581],[4.53650557,0.03626082,99.37426361],[4.53650512,0.03625908,99.37503097],[4.53650467,0.03625733,99.37579786],[4.53650423,0.03625558,99.3765643],[4.53650378,0.03625384,99.37733028],[4.53650333,0.03625209,99.3780958],[4.53650289,0.03625034,99.37886087],[4.53650244,0.0362486,99.37962547],[4.53650199,0.03624685,99.38038961],[4.53650155,0.0362451,99.38115329],[4.5365011,0.03624336,99.38191651],[4.53650065,0.03624161,99.38267926],[4.5365002,0.03623986,99.38344155],[4.53649976,0.03623812,99.38420338],[4.53649931,0.03623637,99.38496474],[4.53649886,0.03623462,99.38572563],[4.53649841,0.03623288,99.38648606],[4.53649797,0.03623113,99.38724602],[4.53649752,0.03622938,99.38800551],[4.53649707,0.03622764,99.38876453],[4.53649662,0.03622589,99.3895231],[4.53649618,0.03622415,99.39028123],[4.53649573,0.0362224,99.39103895],[4.53649528,0.03622065,99.39179629],[4.53649483,0.03621891,99.39255327],[4.53649439,0.03621716,99.39330991],[4.53649394,0.03621541,99.39406622],[4.53649349,0.03621367,99.39482219],[4.53649304,0.03621192,99.39557783],[4.53649259,0.03621017,99.39633312],[4.53649215,0.03620843,99.39708806],[4.5364917,0.03620668,99.39784266],[4.53649125,0.03620493,99.3985969],[4.5364908,0.03620319,99.39935079],[4.53649035,0.03620144,99.40010432],[4.53648991,0.03619969,99.40085748],[4.53648946,0.03619795,99.40161028],[4.53648901,0.0361962,99.4023627],[4.53648856,0.03619445,99.40311475],[4.53648812,0.03619271,99.40386643],[4.53648767,0.03619096,99.40461772],[4.53648722,0.03618922,99.40536862],[4.53648677,0.03618747,99.40611914],[4.53648632,0.03618572,99.40686926],[4.53648587,0.03618398,99.40761899],[4.53648543,0.03618223,99.40836832],[4.53648498,0.03618048,99.40911724],[4.53648453,0.03617874,99.40986576],[4.53648408,0.03617699,99.41061386],[4.53648363,0.03617524,99.41136156],[4.53648319,0.0361735,99.41210883],[4.53648274,0.03617175,99.41285568],[4.53648229,0.03617,99.4136021],[4.53648184,0.03616826,99.4143481],[4.53648139,0.03616651,99.41509366],[4.53648094,0.03616477,99.41583879],[4.53648049,0.03616302,99.41658347],[4.53648005,0.03616127,99.41732771],[4.5364796,0.03615953,99.41807151],[4.53647915,0.03615778,99.41881485],[4.5364787,0.03615603,99.41955774],[4.53647825,0.03615429,99.42030017],[4.5364778,0.03615254,99.42104213],[4.53647735,0.0361508,99.42178363],[4.5364769,0.03614905,99.42252466],[4.53647646,0.0361473,99.42326521],[4.53647601,0.03614556,99.42400529],[4.53647556,0.03614381,99.42474489],[4.53647511,0.03614206,99.425484],[4.53647466,0.03614032,99.42622262],[4.53647421,0.03613857,99.42696076],[4.53647376,0.03613683,99.42769839],[4.53647331,0.03613508,99.42843553],[4.53647286,0.03613333,99.42917216],[4.53647241,0.03613159,99.42990828],[4.53647196,0.03612984,99.4306439],[4.53647151,0.0361281,99.431379],[4.53647106,0.03612635,99.43211358],[4.53647061,0.0361246,99.43284764],[4.53647016,0.03612286,99.43358117],[4.53646971,0.03612111,99.43431417],[4.53646926,0.03611937,99.43504664],[4.53646881,0.03611762,99.43577858],[4.53646836,0.03611587,99.43650997],[4.53646791,0.03611413,99.43724082],[4.53646746,0.03611238,99.43797114],[4.53646701,0.03611064,99.43870094],[4.53646656,0.03610889,99.43943022],[4.53646611,0.03610714,99.44015902],[4.53646566,0.0361054,99.44088735],[4.53646521,0.03610365,99.4416152],[4.53646476,0.03610191,99.44234259],[4.53646431,0.03610016,99.44306953],[4.53646386,0.03609842,99.44379602],[4.53646341,0.03609667,99.44452205],[4.53646296,0.03609492,99.44524765],[4.53646251,0.03609318,99.44597281],[4.53646205,0.03609143,99.44669754],[4.5364616,0.03608969,99.44742184],[4.53646115,0.03608794,99.44814572],[4.5364607,0.0360862,99.44886918],[4.53646025,0.03608445,99.44959223],[4.5364598,0.0360827,99.45031488],[4.53645935,0.03608096,99.45103712],[4.5364589,0.03607921,99.45175896],[4.53645845,0.03607747,99.45248042],[4.53645799,0.03607572,99.45320148],[4.53645754,0.03607398,99.45392217],[4.53645709,0.03607223,99.45464247],[4.53645664,0.03607049,99.45536241],[4.53645619,0.03606874,99.45608198],[4.53645574,0.03606699,99.45680119],[4.53645528,0.03606525,99.45752004],[4.53645483,0.0360635,99.45823854],[4.53645438,0.03606176,99.45895669],[4.53645393,0.03606001,99.4596745],[4.53645348,0.03605827,99.46039198],[4.53645303,0.03605652,99.46110912],[4.53645258,0.03605478,99.46182594],[4.53645212,0.03605303,99.46254244],[4.53645167,0.03605128,99.46325862],[4.53645122,0.03604954,99.46397449],[4.53645077,0.03604779,99.46469005],[4.53645032,0.03604605,99.46540531],[4.53644986,0.0360443,99.46612028],[4.53644941,0.03604256,99.46683496],[4.53644896,0.03604081,99.46754935],[4.53644851,0.03603907,99.46826345],[4.53644806,0.03603732,99.46897729],[4.53644761,0.03603558,99.46969085],[4.53644715,0.03603383,99.47040415],[4.5364467,0.03603208,99.47111718],[4.53644625,0.03603034,99.47182996],[4.5364458,0.03602859,99.47254249],[4.53644535,0.03602685,99.47325477],[4.53644489,0.0360251,99.47396682],[4.53644444,0.03602336,99.47467862],[4.53644399,0.03602161,99.47539018],[4.53644354,0.03601987,99.47610151],[4.53644309,0.03601812,99.4768126],[4.53644264,0.03601638,99.47752346],[4.53644218,0.03601463,99.47823408],[4.53644173,0.03601288,99.47894448],[4.53644128,0.03601114,99.47965464],[4.53644083,0.03600939,99.48036457],[4.53644038,0.03600765,99.48107428],[4.53643992,0.0360059,99.48178376],[4.53643947,0.03600416,99.48249301],[4.53643902,0.03600241,99.48320205],[4.53643857,0.03600067,99.48391086],[4.53643812,0.03599892,99.48461945],[4.53643767,0.03599717,99.48532782],[4.53643721,0.03599543,99.48603597],[4.53643676,0.03599368,99.48674391],[4.53643631,0.03599194,99.48745163],[4.53643586,0.03599019,99.48815914],[4.53643541,0.03598845,99.48886643],[4.53643496,0.0359867,99.48957352],[4.5364345,0.03598496,99.49028039],[4.53643405,0.03598321,99.49098706],[4.5364336,0.03598147,99.49169352],[4.53643315,0.03597972,99.49239977],[4.5364327,0.03597797,99.49310582],[4.53643224,0.03597623,99.49381167],[4.53643179,0.03597448,99.49451731],[4.53643134,0.03597274,99.49522275],[4.53643089,0.03597099,99.495928],[4.53643044,0.03596925,99.49663304],[4.53642999,0.0359675,99.49733789],[4.53642953,0.03596576,99.49804255],[4.53642908,0.03596401,99.49874701],[4.53642863,0.03596226,99.49945128],[4.53642818,0.03596052,99.50015535],[4.53642773,0.03595877,99.50085924],[4.53642728,0.03595703,99.50156294],[4.53642682,0.03595528,99.50226645],[4.53642637,0.03595354,99.50296977],[4.53642592,0.03595179,99.50367291],[4.53642547,0.03595005,99.50437586],[4.53642502,0.0359483,99.50507863],[4.53642457,0.03594655,99.50578122],[4.53642412,0.03594481,99.50648362],[4.53642366,0.03594306,99.50718584],[4.53642321,0.03594132,99.50788785],[4.53642276,0.03593957,99.50858967],[4.53642231,0.03593783,99.50929129],[4.53642186,0.03593608,99.50999269],[4.53642141,0.03593434,99.51069389],[4.53642095,0.03593259,99.51139487],[4.5364205,0.03593084,99.51209563],[4.53642005,0.0359291,99.51279617],[4.5364196,0.03592735,99.51349647],[4.53641915,0.03592561,99.51419655],[4.5364187,0.03592386,99.51489639],[4.53641825,0.03592212,99.51559599],[4.53641779,0.03592037,99.51629534],[4.53641734,0.03591863,99.51699445],[4.53641689,0.03591688,99.5176933],[4.53641644,0.03591513,99.51839189],[4.53641599,0.03591339,99.51909022],[4.53641554,0.03591164,99.51978829],[4.53641509,0.0359099,99.52048608],[4.53641464,0.03590815,99.5211836],[4.53641418,0.03590641,99.52188084],[4.53641373,0.03590466,99.5225778],[4.53641328,0.03590291,99.52327447],[4.53641283,0.03590117,99.52397084],[4.53641238,0.03589942,99.52466692],[4.53641193,0.03589768,99.52536269],[4.53641148,0.03589593,99.52605814],[4.53641103,0.03589419,99.52675328],[4.53641057,0.03589244,99.52744809],[4.53641012,0.03589069,99.52814258],[4.53640967,0.03588895,99.52883672],[4.53640922,0.0358872,99.52953052],[4.53640877,0.03588546,99.53022398],[4.53640832,0.03588371,99.53091707],[4.53640787,0.03588197,99.53160981],[4.53640742,0.03588022,99.53230218],[4.53640697,0.03587848,99.53299417],[4.53640651,0.03587673,99.53368578],[4.53640606,0.03587498,99.53437701],[4.53640561,0.03587324,99.53506785],[4.53640516,0.03587149,99.53575829],[4.53640471,0.03586975,99.53644832],[4.53640426,0.035868,99.53713794],[4.53640381,0.03586626,99.53782715],[4.53640336,0.03586451,99.53851593],[4.53640291,0.03586276,99.53920428],[4.53640246,0.03586102,99.5398922],[4.53640201,0.03585927,99.54057968],[4.53640155,0.03585753,99.54126671],[4.5364011,0.03585578,99.54195328],[4.53640065,0.03585403,99.5426394],[4.5364002,0.03585229,99.54332505],[4.53639975,0.03585054,99.54401023],[4.5363993,0.0358488,99.54469493],[4.53639885,0.03584705,99.54537915],[4.5363984,0.03584531,99.54606288],[4.53639795,0.03584356,99.54674611],[4.5363975,0.03584181,99.54742883],[4.53639705,0.03584007,99.54811105],[4.53639659,0.03583832,99.54879276],[4.53639614,0.03583658,99.54947394],[4.53639569,0.03583483,99.5501546],[4.53639524,0.03583309,99.55083473],[4.53639479,0.03583134,99.55151431],[4.53639434,0.03582959,99.55219336],[4.53639389,0.03582785,99.55287185],[4.53639344,0.0358261,99.55354978],[4.53639299,0.03582436,99.55422715],[4.53639254,0.03582261,99.55490395],[4.53639209,0.03582087,99.55558018],[4.53639163,0.03581912,99.55625582],[4.53639118,0.03581737,99.55693088],[4.53639073,0.03581563,99.55760534],[4.53639028,0.03581388,99.55827921],[4.53638983,0.03581214,99.55895247],[4.53638938,0.03581039,99.55962512],[4.53638893,0.03580865,99.56029716],[4.53638848,0.0358069,99.56096859],[4.53638803,0.03580515,99.56163938],[4.53638758,0.03580341,99.56230955],[4.53638713,0.03580166,99.56297909],[4.53638668,0.03579992,99.56364798],[4.53638622,0.03579817,99.56431624],[4.53638577,0.03579643,99.56498384],[4.53638532,0.03579468,99.56565079],[4.53638487,0.03579293,99.56631708],[4.53638442,0.03579119,99.56698271],[4.53638397,0.03578944,99.56764766],[4.53638352,0.0357877,99.56831195],[4.53638307,0.03578595,99.56897555],[4.53638262,0.0357842,99.56963847],[4.53638217,0.03578246,99.5703007],[4.53638172,0.03578071,99.57096224],[4.53638126,0.03577897,99.57162308],[4.53638081,0.03577722,99.57228321],[4.53638036,0.03577548,99.57294263],[4.53637991,0.03577373,99.57360134],[4.53637946,0.03577198,99.57425933],[4.53637901,0.03577024,99.5749166],[4.53637856,0.03576849,99.57557314],[4.53637811,0.03576675,99.57622894],[4.53637766,0.035765,99.576884],[4.53637721,0.03576326,99.57753832],[4.53637676,0.03576151,99.57819189],[4.5363763,0.03575976,99.5788447],[4.53637585,0.03575802,99.57949676],[4.5363754,0.03575627,99.58014805],[4.53637495,0.03575453,99.58079857],[4.5363745,0.03575278,99.58144831],[4.53637405,0.03575104,99.58209728],[4.5363736,0.03574929,99.58274546],[4.53637315,0.03574754,99.58339286],[4.5363727,0.0357458,99.58403946],[4.53637225,0.03574405,99.58468525],[4.5363718,0.03574231,99.58533025],[4.53637134,0.03574056,99.58597443],[4.53637089,0.03573882,99.5866178],[4.53637044,0.03573707,99.58726036],[4.53636999,0.03573532,99.58790208],[4.53636954,0.03573358,99.58854298],[4.53636909,0.03573183,99.58918304],[4.53636864,0.03573009,99.58982227],[4.53636819,0.03572834,99.59046065],[4.53636774,0.0357266,99.59109818],[4.53636729,0.03572485,99.59173485],[4.53636684,0.0357231,99.59237067],[4.53636638,0.03572136,99.59300562],[4.53636593,0.03571961,99.59363971],[4.53636548,0.03571787,99.59427292],[4.53636503,0.03571612,99.59490525],[4.53636458,0.03571437,99.5955367],[4.53636413,0.03571263,99.59616725],[4.53636368,0.03571088,99.59679692],[4.53636323,0.03570914,99.59742568],[4.53636278,0.03570739,99.59805355],[4.53636233,0.03570565,99.5986805],[4.53636187,0.0357039,99.59930654],[4.53636142,0.03570215,99.59993166],[4.53636097,0.03570041,99.60055586],[4.53636052,0.03569866,99.60117912],[4.53636007,0.03569692,99.60180146],[4.53635962,0.03569517,99.60242286],[4.53635917,0.03569343,99.60304331],[4.53635872,0.03569168,99.60366282],[4.53635827,0.03568994,99.60428137],[4.53635782,0.03568819,99.60489897],[4.53635736,0.03568644,99.6055156],[4.53635691,0.0356847,99.60613127],[4.53635646,0.03568295,99.60674596],[4.53635601,0.03568121,99.60735967],[4.53635556,0.03567946,99.60797241],[4.53635511,0.03567772,99.60858415],[4.53635466,0.03567597,99.60919491],[4.53635421,0.03567422,99.60980466],[4.53635376,0.03567248,99.61041342],[4.53635331,0.03567073,99.61102116],[4.53635285,0.03566899,99.6116279],[4.5363524,0.03566724,99.61223362],[4.53635195,0.0356655,99.61283832],[4.5363515,0.03566375,99.61344199],[4.53635105,0.035662,99.61404463],[4.5363506,0.03566026,99.61464624],[4.53635015,0.03565851,99.6152468],[4.5363497,0.03565677,99.61584632],[4.53634925,0.03565502,99.61644479],[4.53634879,0.03565328,99.6170422],[4.53634834,0.03565153,99.61763855],[4.53634789,0.03564978,99.61823384],[4.53634744,0.03564804,99.61882806],[4.53634699,0.03564629,99.61942121],[4.53634654,0.03564455,99.62001329],[4.53634609,0.0356428,99.62060428],[4.53634564,0.03564106,99.6211942],[4.53634519,0.03563931,99.62178303],[4.53634473,0.03563756,99.62237076],[4.53634428,0.03563582,99.62295741],[4.53634383,0.03563407,99.62354296],[4.53634338,0.03563233,99.62412741],[4.53634293,0.03563058,99.62471076],[4.53634248,0.03562884,99.625293],[4.53634203,0.03562709,99.62587412],[4.53634158,0.03562535,99.62645414],[4.53634113,0.0356236,99.62703303],[4.53634067,0.03562185,99.62761081],[4.53634022,0.03562011,99.62818746],[4.53633977,0.03561836,99.62876298],[4.53633932,0.03561662,99.62933737],[4.53633887,0.03561487,99.62991063],[4.53633842,0.03561313,99.63048274],[4.53633797,0.03561138,99.63105371],[4.53633752,0.03560963,99.63162354],[4.53633706,0.03560789,99.63219222],[4.53633661,0.03560614,99.63275974],[4.53633616,0.0356044,99.63332611],[4.53633571,0.03560265,99.63389131],[4.53633526,0.03560091,99.63445536],[4.53633481,0.03559916,99.63501823],[4.53633436,0.03559741,99.63557994],[4.53633391,0.03559567,99.63614047],[4.53633345,0.03559392,99.63669983],[4.536333,0.03559218,99.637258],[4.53633255,0.03559043,99.63781499],[4.5363321,0.03558869,99.63837079],[4.53633165,0.03558694,99.63892539],[4.5363312,0.0355852,99.6394788],[4.53633075,0.03558345,99.64003102],[4.5363303,0.0355817,99.64058202],[4.53632984,0.03557996,99.64113182],[4.53632939,0.03557821,99.64168041],[4.53632894,0.03557647,99.64222778],[4.53632849,0.03557472,99.64277394],[4.53632804,0.03557298,99.64331887],[4.53632759,0.03557123,99.64386258],[4.53632714,0.03556948,99.64440505],[4.53632668,0.03556774,99.6449463],[4.53632623,0.03556599,99.64548632],[4.53632578,0.03556425,99.64602511],[4.53632533,0.0355625,99.64656267],[4.53632488,0.03556076,99.64709902],[4.53632443,0.03555901,99.64763414],[4.53632398,0.03555727,99.64816804],[4.53632352,0.03555552,99.64870073],[4.53632307,0.03555377,99.6492322],[4.53632262,0.03555203,99.64976245],[4.53632217,0.03555028,99.6502915],[4.53632172,0.03554854,99.65081933],[4.53632127,0.03554679,99.65134595],[4.53632082,0.03554505,99.65187137],[4.53632036,0.0355433,99.65239558],[4.53631991,0.03554156,99.65291859],[4.53631946,0.03553981,99.6534404],[4.53631901,0.03553806,99.65396101],[4.53631856,0.03553632,99.65448042],[4.53631811,0.03553457,99.65499863],[4.53631765,0.03553283,99.65551564],[4.5363172,0.03553108,99.65603146],[4.53631675,0.03552934,99.65654609],[4.5363163,0.03552759,99.65705952],[4.53631585,0.03552585,99.65757175],[4.5363154,0.0355241,99.65808279],[4.53631494,0.03552235,99.65859264],[4.53631449,0.03552061,99.6591013],[4.53631404,0.03551886,99.65960876],[4.53631359,0.03551712,99.66011504],[4.53631314,0.03551537,99.66062012],[4.53631268,0.03551363,99.66112401],[4.53631223,0.03551188,99.66162671],[4.53631178,0.03551014,99.66212822],[4.53631133,0.03550839,99.66262854],[4.53631088,0.03550664,99.66312768],[4.53631043,0.0355049,99.66362562],[4.53630997,0.03550315,99.66412238],[4.53630952,0.03550141,99.66461795],[4.53630907,0.03549966,99.66511234],[4.53630862,0.03549792,99.66560554],[4.53630816,0.03549617,99.66609755],[4.53630771,0.03549443,99.66658838],[4.53630726,0.03549268,99.66707803],[4.53630681,0.03549094,99.66756649],[4.53630636,0.03548919,99.66805377],[4.5363059,0.03548745,99.66853987],[4.53630545,0.0354857,99.66902479],[4.536305,0.03548395,99.66950852],[4.53630455,0.03548221,99.66999107],[4.53630409,0.03548046,99.67047244],[4.53630364,0.03547872,99.67095264],[4.53630319,0.03547697,99.67143165],[4.53630274,0.03547523,99.67190948],[4.53630228,0.03547348,99.67238614],[4.53630183,0.03547174,99.67286162],[4.53630138,0.03546999,99.67333592],[4.53630093,0.03546825,99.67380904],[4.53630047,0.0354665,99.67428098],[4.53630002,0.03546476,99.67475175],[4.53629957,0.03546301,99.67522135],[4.53629912,0.03546127,99.67568977],[4.53629866,0.03545952,99.67615701],[4.53629821,0.03545778,99.67662309],[4.53629776,0.03545603,99.67708798],[4.5362973,0.03545429,99.67755171],[4.53629685,0.03545254,99.67801426],[4.5362964,0.03545079,99.67847564],[4.53629595,0.03544905,99.67893584],[4.53629549,0.0354473,99.67939488],[4.53629504,0.03544556,99.67985274],[4.53629459,0.03544381,99.68030944],[4.53629413,0.03544207,99.68076496],[4.53629368,0.03544032,99.68121932],[4.53629323,0.03543858,99.6816725],[4.53629277,0.03543683,99.68212452],[4.53629232,0.03543509,99.68257537],[4.53629187,0.03543334,99.68302505],[4.53629141,0.0354316,99.68347356],[4.53629096,0.03542985,99.6839209],[4.53629051,0.03542811,99.68436708],[4.53629005,0.03542636,99.68481209],[4.5362896,0.03542462,99.68525594],[4.53628914,0.03542287,99.68569862],[4.53628869,0.03542113,99.68614013],[4.53628824,0.03541938,99.68658048],[4.53628778,0.03541764,99.68701967],[4.53628733,0.03541589,99.68745769],[4.53628687,0.03541415,99.68789454],[4.53628642,0.0354124,99.68833024],[4.53628597,0.03541066,99.68876477],[4.53628551,0.03540891,99.68919813],[4.53628506,0.03540717,99.68963034],[4.5362846,0.03540542,99.69006138],[4.53628415,0.03540368,99.69049126],[4.53628369,0.03540194,99.69091998],[4.53628324,0.03540019,99.69134754],[4.53628279,0.03539845,99.69177394],[4.53628233,0.0353967,99.69219919],[4.53628188,0.03539496,99.69262329],[4.53628142,0.03539321,99.69304625],[4.53628097,0.03539147,99.69346806],[4.53628051,0.03538972,99.69388874],[4.53628006,0.03538798,99.69430828],[4.5362796,0.03538623,99.69472668],[4.53627915,0.03538449,99.69514396],[4.53627869,0.03538274,99.69556012],[4.53627824,0.035381,99.69597515],[4.53627778,0.03537925,99.69638906],[4.53627733,0.03537751,99.69680186],[4.53627687,0.03537577,99.69721355],[4.53627641,0.03537402,99.69762413],[4.53627596,0.03537228,99.6980336],[4.5362755,0.03537053,99.69844198],[4.53627505,0.03536879,99.69884925],[4.53627459,0.03536704,99.69925543],[4.53627414,0.0353653,99.69966052],[4.53627368,0.03536355,99.70006452],[4.53627323,0.03536181,99.70046744],[4.53627277,0.03536007,99.70086928],[4.53627231,0.03535832,99.70127003],[4.53627186,0.03535658,99.70166972],[4.5362714,0.03535483,99.70206833],[4.53627095,0.03535309,99.70246587],[4.53627049,0.03535134,99.70286236],[4.53627003,0.0353496,99.70325778],[4.53626958,0.03534785,99.70365214],[4.53626912,0.03534611,99.70404545],[4.53626866,0.03534437,99.7044377],[4.53626821,0.03534262,99.70482891],[4.53626775,0.03534088,99.70521908],[4.5362673,0.03533913,99.70560821],[4.53626684,0.03533739,99.7059963],[4.53626638,0.03533564,99.70638335],[4.53626593,0.0353339,99.70676938],[4.53626547,0.03533216,99.70715437],[4.53626501,0.03533041,99.70753835],[4.53626456,0.03532867,99.7079213],[4.5362641,0.03532692,99.70830324],[4.53626364,0.03532518,99.70868416],[4.53626319,0.03532344,99.70906407],[4.53626273,0.03532169,99.70944298],[4.53626227,0.03531995,99.70982088],[4.53626182,0.0353182,99.71019779],[4.53626136,0.03531646,99.71057369],[4.5362609,0.03531471,99.71094861],[4.53626045,0.03531297,99.71132253],[4.53625999,0.03531123,99.71169547],[4.53625953,0.03530948,99.71206742],[4.53625907,0.03530774,99.7124384],[4.53625862,0.03530599,99.7128084],[4.53625816,0.03530425,99.71317742],[4.5362577,0.03530251,99.71354548],[4.53625725,0.03530076,99.71391257],[4.53625679,0.03529902,99.7142787],[4.53625633,0.03529727,99.71464387],[4.53625587,0.03529553,99.71500808],[4.53625542,0.03529379,99.71537135],[4.53625496,0.03529204,99.71573366],[4.5362545,0.0352903,99.71609503],[4.53625404,0.03528855,99.71645545],[4.53625359,0.03528681,99.71681494],[4.53625313,0.03528507,99.71717349],[4.53625267,0.03528332,99.71753111],[4.53625221,0.03528158,99.71788781],[4.53625176,0.03527983,99.71824357],[4.5362513,0.03527809,99.71859842],[4.53625084,0.03527635,99.71895235],[4.53625038,0.0352746,99.71930536],[4.53624993,0.03527286,99.71965747],[4.53624947,0.03527111,99.72000866],[4.53624901,0.03526937,99.72035895],[4.53624855,0.03526763,99.72070835],[4.53624809,0.03526588,99.72105684],[4.53624764,0.03526414,99.72140444],[4.53624718,0.0352624,99.72175115],[4.53624672,0.03526065,99.72209698],[4.53624626,0.03525891,99.72244192],[4.5362458,0.03525716,99.72278598],[4.53624535,0.03525542,99.72312916],[4.53624489,0.03525368,99.72347148],[4.53624443,0.03525193,99.72381292],[4.53624397,0.03525019,99.7241535],[4.53624351,0.03524844,99.72449321],[4.53624306,0.0352467,99.72483207],[4.5362426,0.03524496,99.72517007],[4.53624214,0.03524321,99.72550722],[4.53624168,0.03524147,99.72584352],[4.53624122,0.03523973,99.72617898],[4.53624077,0.03523798,99.72651361],[4.53624031,0.03523624,99.7268474],[4.53623985,0.03523449,99.72718037],[4.53623939,0.03523275,99.72751252],[4.53623893,0.03523101,99.72784385],[4.53623848,0.03522926,99.72817437],[4.53623802,0.03522752,99.72850408],[4.53623756,0.03522578,99.72883298],[4.5362371,0.03522403,99.72916108],[4.53623664,0.03522229,99.72948837],[4.53623618,0.03522054,99.72981486],[4.53623573,0.0352188,99.73014056],[4.53623527,0.03521706,99.73046545],[4.53623481,0.03521531,99.73078955],[4.53623435,0.03521357,99.73111286],[4.53623389,0.03521183,99.73143537],[4.53623343,0.03521008,99.7317571],[4.53623298,0.03520834,99.73207803],[4.53623252,0.03520659,99.73239819],[4.53623206,0.03520485,99.73271756],[4.5362316,0.03520311,99.73303615],[4.53623114,0.03520136,99.73335396],[4.53623068,0.03519962,99.733671],[4.53623023,0.03519788,99.73398726],[4.53622977,0.03519613,99.73430275],[4.53622931,0.03519439,99.73461747],[4.53622885,0.03519264,99.73493142],[4.53622839,0.0351909,99.73524461],[4.53622793,0.03518916,99.73555703],[4.53622748,0.03518741,99.73586869],[4.53622702,0.03518567,99.73617959],[4.53622656,0.03518393,99.73648974],[4.5362261,0.03518218,99.73679913],[4.53622564,0.03518044,99.73710776],[4.53622518,0.03517869,99.73741565],[4.53622472,0.03517695,99.73772278],[4.53622427,0.03517521,99.73802917],[4.53622381,0.03517346,99.73833482],[4.53622335,0.03517172,99.73863972],[4.53622289,0.03516998,99.73894389],[4.53622243,0.03516823,99.73924731],[4.53622197,0.03516649,99.73955],[4.53622151,0.03516475,99.73985195],[4.53622106,0.035163,99.74015318],[4.5362206,0.03516126,99.74045367],[4.53622014,0.03515951,99.74075344],[4.53621968,0.03515777,99.74105248],[4.53621922,0.03515603,99.7413508],[4.53621876,0.03515428,99.74164839],[4.5362183,0.03515254,99.74194527],[4.53621785,0.0351508,99.74224143],[4.53621739,0.03514905,99.74253688],[4.53621693,0.03514731,99.74283161],[4.53621647,0.03514557,99.74312564],[4.53621601,0.03514382,99.74341895],[4.53621555,0.03514208,99.74371156],[4.53621509,0.03514033,99.74400346],[4.53621463,0.03513859,99.74429467],[4.53621418,0.03513685,99.74458517],[4.53621372,0.0351351,99.74487497],[4.53621326,0.03513336,99.74516408],[4.5362128,0.03513162,99.7454525],[4.53621234,0.03512987,99.74574023],[4.53621188,0.03512813,99.74602726],[4.53621142,0.03512639,99.74631361],[4.53621096,0.03512464,99.74659927],[4.53621051,0.0351229,99.74688426],[4.53621005,0.03512116,99.74716856],[4.53620959,0.03511941,99.74745218],[4.53620913,0.03511767,99.74773513],[4.53620867,0.03511592,99.7480174],[4.53620821,0.03511418,99.748299],[4.53620775,0.03511244,99.74857993],[4.53620729,0.03511069,99.74886019],[4.53620683,0.03510895,99.74913978],[4.53620637,0.03510721,99.74941872],[4.53620592,0.03510546,99.74969699],[4.53620546,0.03510372,99.7499746],[4.536205,0.03510198,99.75025155],[4.53620454,0.03510023,99.75052785],[4.53620408,0.03509849,99.7508035],[4.53620362,0.03509675,99.7510785],[4.53620316,0.035095,99.75135284],[4.5362027,0.03509326,99.75162654],[4.53620224,0.03509151,99.7518996],[4.53620178,0.03508977,99.75217202],[4.53620133,0.03508803,99.75244379],[4.53620087,0.03508628,99.75271492],[4.53620041,0.03508454,99.75298542],[4.53619995,0.0350828,99.75325529],[4.53619949,0.03508105,99.75352453],[4.53619903,0.03507931,99.75379313],[4.53619857,0.03507757,99.75406111],[4.53619811,0.03507582,99.75432846],[4.53619765,0.03507408,99.75459519],[4.53619719,0.03507234,99.7548613],[4.53619673,0.03507059,99.75512679],[4.53619627,0.03506885,99.75539166],[4.53619581,0.03506711,99.75565592],[4.53619536,0.03506536,99.75591956],[4.5361949,0.03506362,99.7561826],[4.53619444,0.03506188,99.75644503],[4.53619398,0.03506013,99.75670685],[4.53619352,0.03505839,99.75696806],[4.53619306,0.03505665,99.75722868],[4.5361926,0.0350549,99.75748869],[4.53619214,0.03505316,99.75774811],[4.53619168,0.03505141,99.75800693],[4.53619122,0.03504967,99.75826516],[4.53619076,0.03504793,99.7585228],[4.5361903,0.03504618,99.75877985],[4.53618984,0.03504444,99.75903631],[4.53618938,0.0350427,99.75929219],[4.53618892,0.03504095,99.75954748],[4.53618847,0.03503921,99.75980219],[4.53618801,0.03503747,99.76005633],[4.53618755,0.03503572,99.76030988],[4.53618709,0.03503398,99.76056287],[4.53618663,0.03503224,99.76081528],[4.53618617,0.03503049,99.76106712],[4.53618571,0.03502875,99.76131839],[4.53618525,0.03502701,99.7615691],[4.53618479,0.03502526,99.76181924],[4.53618433,0.03502352,99.76206882],[4.53618387,0.03502178,99.76231785],[4.53618341,0.03502003,99.76256631],[4.53618295,0.03501829,99.76281422],[4.53618249,0.03501655,99.76306157],[4.53618203,0.0350148,99.76330838],[4.53618157,0.03501306,99.76355464],[4.53618111,0.03501132,99.76380035],[4.53618065,0.03500957,99.76404552],[4.53618019,0.03500783,99.76429015],[4.53617973,0.03500609,99.76453426],[4.53617927,0.03500434,99.76477783],[4.53617881,0.0350026,99.76502089],[4.53617835,0.03500086,99.76526343],[4.5361779,0.03499912,99.76550546],[4.53617744,0.03499737,99.76574698],[4.53617698,0.03499563,99.76598799],[4.53617652,0.03499389,99.76622849],[4.53617606,0.03499214,99.76646848],[4.5361756,0.0349904,99.76670797],[4.53617514,0.03498866,99.76694695],[4.53617468,0.03498691,99.76718543],[4.53617422,0.03498517,99.7674234],[4.53617376,0.03498343,99.76766088],[4.5361733,0.03498168,99.76789785],[4.53617284,0.03497994,99.76813432],[4.53617238,0.0349782,99.76837029],[4.53617192,0.03497645,99.76860576],[4.53617146,0.03497471,99.76884073],[4.536171,0.03497297,99.76907521],[4.53617054,0.03497122,99.76930919],[4.53617008,0.03496948,99.76954268],[4.53616962,0.03496774,99.76977568],[4.53616916,0.03496599,99.77000818],[4.5361687,0.03496425,99.77024019],[4.53616824,0.03496251,99.77047171],[4.53616778,0.03496076,99.77070274],[4.53616732,0.03495902,99.77093328],[4.53616686,0.03495728,99.77116334],[4.5361664,0.03495553,99.7713929],[4.53616594,0.03495379,99.77162198],[4.53616548,0.03495205,99.77185058],[4.53616502,0.0349503,99.77207869],[4.53616456,0.03494856,99.77230632],[4.5361641,0.03494682,99.77253347],[4.53616364,0.03494507,99.77276014],[4.53616318,0.03494333,99.77298632],[4.53616272,0.03494159,99.77321203],[4.53616226,0.03493984,99.77343726],[4.5361618,0.0349381,99.77366201],[4.53616134,0.03493636,99.77388628],[4.53616088,0.03493462,99.77411008],[4.53616042,0.03493287,99.7743334],[4.53615996,0.03493113,99.77455625],[4.5361595,0.03492939,99.77477863],[4.53615904,0.03492764,99.77500053],[4.53615858,0.0349259,99.77522197],[4.53615812,0.03492416,99.77544293],[4.53615766,0.03492241,99.77566343],[4.5361572,0.03492067,99.77588345],[4.53615674,0.03491893,99.77610301],[4.53615628,0.03491718,99.7763221],[4.53615582,0.03491544,99.77654073],[4.53615536,0.0349137,99.77675889],[4.53615489,0.03491195,99.77697658],[4.53615443,0.03491021,99.77719382],[4.53615397,0.03490847,99.77741059],[4.53615351,0.03490672,99.7776269],[4.53615305,0.03490498,99.77784275],[4.53615259,0.03490324,99.77805814],[4.53615213,0.03490149,99.77827307],[4.53615167,0.03489975,99.77848754],[4.53615121,0.03489801,99.77870156],[4.53615075,0.03489627,99.77891512],[4.53615029,0.03489452,99.77912822],[4.53614983,0.03489278,99.77934087],[4.53614937,0.03489104,99.77955307],[4.53614891,0.03488929,99.77976481],[4.53614845,0.03488755,99.7799761],[4.53614799,0.03488581,99.78018695],[4.53614753,0.03488406,99.78039734],[4.53614706,0.03488232,99.78060728],[4.5361466,0.03488058,99.78081677],[4.53614614,0.03487883,99.78102582],[4.53614568,0.03487709,99.78123441],[4.53614522,0.03487535,99.78144257],[4.53614476,0.03487361,99.78165028],[4.5361443,0.03487186,99.78185754],[4.53614384,0.03487012,99.78206436],[4.53614338,0.03486838,99.78227074],[4.53614292,0.03486663,99.78247667],[4.53614245,0.03486489,99.78268217],[4.53614199,0.03486315,99.78288722],[4.53614153,0.0348614,99.78309184],[4.53614107,0.03485966,99.78329602],[4.53614061,0.03485792,99.78349976],[4.53614015,0.03485618,99.78370306],[4.53613969,0.03485443,99.78390593],[4.53613923,0.03485269,99.78410836],[4.53613877,0.03485095,99.78431036],[4.5361383,0.0348492,99.78451192],[4.53613784,0.03484746,99.78471306],[4.53613738,0.03484572,99.78491376],[4.53613692,0.03484398,99.78511403],[4.53613646,0.03484223,99.78531387],[4.536136,0.03484049,99.78551328],[4.53613554,0.03483875,99.78571227],[4.53613507,0.034837,99.78591082],[4.53613461,0.03483526,99.78610895],[4.53613415,0.03483352,99.78630665],[4.53613369,0.03483178,99.78650393],[4.53613323,0.03483003,99.78670079],[4.53613277,0.03482829,99.78689722],[4.5361323,0.03482655,99.78709323],[4.53613184,0.0348248,99.78728882],[4.53613138,0.03482306,99.78748398],[4.53613092,0.03482132,99.78767873],[4.53613046,0.03481958,99.78787306],[4.53612999,0.03481783,99.78806697],[4.53612953,0.03481609,99.78826046],[4.53612907,0.03481435,99.78845354],[4.53612861,0.0348126,99.7886462],[4.53612815,0.03481086,99.78883845],[4.53612768,0.03480912,99.78903028],[4.53612722,0.03480738,99.7892217],[4.53612676,0.03480563,99.78941271],[4.5361263,0.03480389,99.7896033],[4.53612583,0.03480215,99.78979349],[4.53612537,0.03480041,99.78998327],[4.53612491,0.03479866,99.79017264],[4.53612445,0.03479692,99.79036159],[4.53612399,0.03479518,99.79055014],[4.53612352,0.03479344,99.79073827],[4.53612306,0.03479169,99.79092598],[4.5361226,0.03478995,99.79111326],[4.53612214,0.03478821,99.79130011],[4.53612167,0.03478646,99.79148651],[4.53612121,0.03478472,99.79167247],[4.53612075,0.03478298,99.79185798],[4.53612028,0.03478124,99.79204303],[4.53611982,0.03477949,99.79222761],[4.53611936,0.03477775,99.79241173],[4.5361189,0.03477601,99.79259537],[4.53611843,0.03477427,99.79277854],[4.53611797,0.03477252,99.79296121],[4.53611751,0.03477078,99.7931434],[4.53611704,0.03476904,99.79332509],[4.53611658,0.0347673,99.79350627],[4.53611612,0.03476555,99.79368695],[4.53611565,0.03476381,99.79386711],[4.53611519,0.03476207,99.79404676],[4.53611473,0.03476033,99.7942259],[4.53611426,0.03475859,99.79440453],[4.5361138,0.03475684,99.79458265],[4.53611333,0.0347551,99.79476027],[4.53611287,0.03475336,99.79493739],[4.53611241,0.03475162,99.795114],[4.53611194,0.03474987,99.79529011],[4.53611148,0.03474813,99.79546573],[4.53611102,0.03474639,99.79564085],[4.53611055,0.03474465,99.79581548],[4.53611009,0.0347429,99.79598962],[4.53610962,0.03474116,99.79616326],[4.53610916,0.03473942,99.79633642],[4.53610869,0.03473768,99.7965091],[4.53610823,0.03473594,99.79668129],[4.53610777,0.03473419,99.79685299],[4.5361073,0.03473245,99.79702422],[4.53610684,0.03473071,99.79719497],[4.53610637,0.03472897,99.79736524],[4.53610591,0.03472723,99.79753504],[4.53610544,0.03472548,99.79770437],[4.53610498,0.03472374,99.79787322],[4.53610451,0.034722,99.79804161],[4.53610405,0.03472026,99.79820953],[4.53610358,0.03471852,99.79837699],[4.53610312,0.03471677,99.79854398],[4.53610266,0.03471503,99.79871051],[4.53610219,0.03471329,99.79887658],[4.53610173,0.03471155,99.7990422],[4.53610126,0.03470981,99.79920736],[4.5361008,0.03470806,99.79937207],[4.53610033,0.03470632,99.79953633],[4.53609987,0.03470458,99.79970013],[4.5360994,0.03470284,99.79986349],[4.53609894,0.0347011,99.80002641],[4.53609847,0.03469935,99.80018888],[4.536098,0.03469761,99.80035091],[4.53609754,0.03469587,99.8005125],[4.53609707,0.03469413,99.80067365],[4.53609661,0.03469239,99.80083436],[4.53609614,0.03469064,99.80099464],[4.53609568,0.0346889,99.80115449],[4.53609521,0.03468716,99.80131391],[4.53609475,0.03468542,99.8014729],[4.53609428,0.03468368,99.80163146],[4.53609382,0.03468193,99.8017896],[4.53609335,0.03468019,99.80194731],[4.53609289,0.03467845,99.8021046],[4.53609242,0.03467671,99.80226148],[4.53609196,0.03467497,99.80241793],[4.53609149,0.03467323,99.80257397],[4.53609102,0.03467148,99.8027296],[4.53609056,0.03466974,99.80288481],[4.53609009,0.034668,99.80303962],[4.53608963,0.03466626,99.80319401],[4.53608916,0.03466452,99.803348],[4.5360887,0.03466277,99.80350159],[4.53608823,0.03466103,99.80365477],[4.53608777,0.03465929,99.80380755],[4.5360873,0.03465755,99.80395993],[4.53608683,0.03465581,99.80411192],[4.53608637,0.03465406,99.8042635],[4.5360859,0.03465232,99.8044147],[4.53608544,0.03465058,99.8045655],[4.53608497,0.03464884,99.80471591],[4.53608451,0.0346471,99.80486593],[4.53608404,0.03464536,99.80501557],[4.53608357,0.03464361,99.80516481],[4.53608311,0.03464187,99.80531368],[4.53608264,0.03464013,99.80546216],[4.53608218,0.03463839,99.80561027],[4.53608171,0.03463665,99.80575799],[4.53608125,0.0346349,99.80590534],[4.53608078,0.03463316,99.80605231],[4.53608031,0.03463142,99.80619891],[4.53607985,0.03462968,99.80634514],[4.53607938,0.03462794,99.806491],[4.53607892,0.0346262,99.80663649],[4.53607845,0.03462445,99.80678161],[4.53607799,0.03462271,99.80692637],[4.53607752,0.03462097,99.80707076],[4.53607706,0.03461923,99.80721479],[4.53607659,0.03461749,99.80735847],[4.53607612,0.03461574,99.80750178],[4.53607566,0.034614,99.80764473],[4.53607519,0.03461226,99.80778733],[4.53607473,0.03461052,99.80792958],[4.53607426,0.03460878,99.80807147],[4.5360738,0.03460704,99.80821302],[4.53607333,0.03460529,99.80835421],[4.53607287,0.03460355,99.80849505],[4.5360724,0.03460181,99.80863552],[4.53607193,0.03460007,99.80877563],[4.53607147,0.03459833,99.80891535],[4.536071,0.03459658,99.8090547],[4.53607054,0.03459484,99.80919366],[4.53607007,0.0345931,99.80933222],[4.53606961,0.03459136,99.80947038],[4.53606914,0.03458962,99.80960813],[4.53606868,0.03458787,99.80974547],[4.53606821,0.03458613,99.80988239],[4.53606775,0.03458439,99.81001887],[4.53606728,0.03458265,99.81015493],[4.53606682,0.03458091,99.81029054],[4.53606635,0.03457917,99.8104257],[4.53606588,0.03457742,99.81056041],[4.53606542,0.03457568,99.81069466],[4.53606495,0.03457394,99.81082845],[4.53606449,0.0345722,99.81096176],[4.53606402,0.03457046,99.81109459],[4.53606356,0.03456871,99.81122693],[4.53606309,0.03456697,99.81135878],[4.53606263,0.03456523,99.81149014],[4.53606216,0.03456349,99.81162099],[4.5360617,0.03456175,99.81175132],[4.53606123,0.03456,99.81188114],[4.53606076,0.03455826,99.81201044],[4.5360603,0.03455652,99.8121392],[4.53605983,0.03455478,99.81226743],[4.53605937,0.03455304,99.81239512],[4.5360589,0.0345513,99.81252226],[4.53605844,0.03454955,99.81264884],[4.53605797,0.03454781,99.81277486],[4.5360575,0.03454607,99.81290031],[4.53605704,0.03454433,99.81302519],[4.53605657,0.03454259,99.8131495],[4.53605611,0.03454084,99.81327321],[4.53605564,0.0345391,99.81339633],[4.53605517,0.03453736,99.81351886],[4.53605471,0.03453562,99.81364078],[4.53605424,0.03453388,99.81376209],[4.53605378,0.03453214,99.81388278],[4.53605331,0.03453039,99.81400285],[4.53605284,0.03452865,99.8141223],[4.53605238,0.03452691,99.81424111],[4.53605191,0.03452517,99.81435928],[4.53605144,0.03452343,99.8144768],[4.53605098,0.03452169,99.81459367],[4.53605051,0.03451994,99.81470989],[4.53605004,0.0345182,99.81482545],[4.53604958,0.03451646,99.81494036],[4.53604911,0.03451472,99.81505461],[4.53604864,0.03451298,99.8151682],[4.53604818,0.03451124,99.81528113],[4.53604771,0.0345095,99.8153934],[4.53604724,0.03450775,99.815505],[4.53604678,0.03450601,99.81561593],[4.53604631,0.03450427,99.8157262],[4.53604584,0.03450253,99.8158358],[4.53604537,0.03450079,99.81594473],[4.53604491,0.03449905,99.81605298],[4.53604444,0.0344973,99.81616056],[4.53604397,0.03449556,99.81626746],[4.5360435,0.03449382,99.81637369],[4.53604304,0.03449208,99.81647924],[4.53604257,0.03449034,99.8165841],[4.5360421,0.0344886,99.81668829],[4.53604163,0.03448686,99.81679179],[4.53604117,0.03448512,99.8168946],[4.5360407,0.03448337,99.81699673],[4.53604023,0.03448163,99.81709817],[4.53603976,0.03447989,99.81719893],[4.53603929,0.03447815,99.81729901],[4.53603883,0.03447641,99.81739841],[4.53603836,0.03447467,99.81749715],[4.53603789,0.03447293,99.81759521],[4.53603742,0.03447119,99.81769262],[4.53603695,0.03446945,99.81778936],[4.53603648,0.0344677,99.81788545],[4.53603602,0.03446596,99.81798088],[4.53603555,0.03446422,99.81807567],[4.53603508,0.03446248,99.81816981],[4.53603461,0.03446074,99.81826331],[4.53603414,0.034459,99.81835617],[4.53603367,0.03445726,99.8184484],[4.5360332,0.03445552,99.81854],[4.53603273,0.03445378,99.81863097],[4.53603227,0.03445203,99.81872131],[4.5360318,0.03445029,99.81881104],[4.53603133,0.03444855,99.81890015],[4.53603086,0.03444681,99.81898864],[4.53603039,0.03444507,99.81907653],[4.53602992,0.03444333,99.81916381],[4.53602945,0.03444159,99.81925049],[4.53602898,0.03443985,99.81933657],[4.53602851,0.03443811,99.81942205],[4.53602804,0.03443637,99.81950694],[4.53602758,0.03443463,99.81959125],[4.53602711,0.03443288,99.81967496],[4.53602664,0.03443114,99.8197581],[4.53602617,0.0344294,99.81984065],[4.5360257,0.03442766,99.81992263],[4.53602523,0.03442592,99.82000404],[4.53602476,0.03442418,99.82008488],[4.53602429,0.03442244,99.82016516],[4.53602382,0.0344207,99.82024487],[4.53602335,0.03441896,99.82032402],[4.53602288,0.03441722,99.82040262],[4.53602241,0.03441548,99.82048066],[4.53602194,0.03441373,99.82055816],[4.53602147,0.03441199,99.82063511],[4.536021,0.03441025,99.82071151],[4.53602054,0.03440851,99.82078738],[4.53602007,0.03440677,99.82086271],[4.5360196,0.03440503,99.82093751],[4.53601913,0.03440329,99.82101177],[4.53601866,0.03440155,99.82108551],[4.53601819,0.03439981,99.82115873],[4.53601772,0.03439807,99.82123142],[4.53601725,0.03439633,99.8213036],[4.53601678,0.03439459,99.82137526],[4.53601631,0.03439284,99.82144641],[4.53601584,0.0343911,99.82151705],[4.53601537,0.03438936,99.82158718],[4.5360149,0.03438762,99.82165681],[4.53601443,0.03438588,99.82172594],[4.53601396,0.03438414,99.82179457],[4.5360135,0.0343824,99.82186271],[4.53601303,0.03438066,99.82193036],[4.53601256,0.03437892,99.82199752],[4.53601209,0.03437718,99.82206419],[4.53601162,0.03437544,99.82213038],[4.53601115,0.03437369,99.82219609],[4.53601068,0.03437195,99.82226132],[4.53601021,0.03437021,99.82232608],[4.53600974,0.03436847,99.82239037],[4.53600927,0.03436673,99.82245419],[4.5360088,0.03436499,99.82251754],[4.53600834,0.03436325,99.82258043],[4.53600787,0.03436151,99.82264286],[4.5360074,0.03435977,99.82270483],[4.53600693,0.03435803,99.82276634],[4.53600646,0.03435628,99.82282741],[4.53600599,0.03435454,99.82288802],[4.53600552,0.0343528,99.82294819],[4.53600505,0.03435106,99.82300791],[4.53600459,0.03434932,99.82306719],[4.53600412,0.03434758,99.82312603],[4.53600365,0.03434584,99.82318443],[4.53600318,0.0343441,99.8232424],[4.53600271,0.03434236,99.82329994],[4.53600224,0.03434061,99.82335705],[4.53600177,0.03433887,99.82341373],[4.53600131,0.03433713,99.82346999],[4.53600084,0.03433539,99.82352583],[4.53600037,0.03433365,99.82358124],[4.5359999,0.03433191,99.82363625],[4.53599943,0.03433017,99.82369083],[4.53599897,0.03432843,99.82374499],[4.5359985,0.03432668,99.82379872],[4.53599803,0.03432494,99.82385203],[4.53599756,0.0343232,99.82390489],[4.53599709,0.03432146,99.82395731],[4.53599663,0.03431972,99.82400928],[4.53599616,0.03431798,99.82406081],[4.53599569,0.03431624,99.82411187],[4.53599522,0.03431449,99.82416248],[4.53599476,0.03431275,99.82421262],[4.53599429,0.03431101,99.82426228],[4.53599382,0.03430927,99.82431148],[4.53599336,0.03430753,99.82436019],[4.53599289,0.03430579,99.82440841],[4.53599242,0.03430405,99.82445615],[4.53599195,0.0343023,99.82450339],[4.53599149,0.03430056,99.82455013],[4.53599102,0.03429882,99.82459637],[4.53599055,0.03429708,99.8246421],[4.53599009,0.03429534,99.82468732],[4.53598962,0.0342936,99.82473201],[4.53598915,0.03429186,99.82477619],[4.53598869,0.03429011,99.82481984],[4.53598822,0.03428837,99.82486295],[4.53598775,0.03428663,99.82490553],[4.53598728,0.03428489,99.82494757],[4.53598682,0.03428315,99.82498906],[4.53598635,0.03428141,99.82503],[4.53598588,0.03427966,99.82507039],[4.53598542,0.03427792,99.82511022],[4.53598495,0.03427618,99.82514948],[4.53598449,0.03427444,99.82518818],[4.53598402,0.0342727,99.8252263],[4.53598355,0.03427096,99.82526384],[4.53598309,0.03426921,99.82530081],[4.53598262,0.03426747,99.82533719],[4.53598215,0.03426573,99.82537297],[4.53598169,0.03426399,99.82540816],[4.53598122,0.03426225,99.82544276],[4.53598075,0.03426051,99.82547674],[4.53598029,0.03425876,99.82551012],[4.53597982,0.03425702,99.82554289],[4.53597935,0.03425528,99.82557504],[4.53597889,0.03425354,99.82560657],[4.53597842,0.0342518,99.82563747],[4.53597796,0.03425006,99.82566774],[4.53597749,0.03424831,99.82569738],[4.53597702,0.03424657,99.82572638],[4.53597656,0.03424483,99.82575473],[4.53597609,0.03424309,99.82578244],[4.53597562,0.03424135,99.82580949],[4.53597516,0.03423961,99.82583589],[4.53597469,0.03423786,99.82586163],[4.53597422,0.03423612,99.82588671],[4.53597376,0.03423438,99.82591112],[4.53597329,0.03423264,99.82593485],[4.53597283,0.0342309,99.82595791],[4.53597236,0.03422915,99.82598028],[4.53597189,0.03422741,99.82600197],[4.53597143,0.03422567,99.82602297],[4.53597096,0.03422393,99.82604328],[4.53597049,0.03422219,99.82606288],[4.53597003,0.03422045,99.82608179],[4.53596956,0.0342187,99.82609999],[4.5359691,0.03421696,99.82611748],[4.53596863,0.03421522,99.82613425],[4.53596816,0.03421348,99.8261503],[4.5359677,0.03421174,99.82616564],[4.53596723,0.03421,99.82618024],[4.53596676,0.03420825,99.82619412],[4.5359663,0.03420651,99.82620725],[4.53596583,0.03420477,99.82621965],[4.53596536,0.03420303,99.82623131],[4.5359649,0.03420129,99.82624222],[4.53596443,0.03419955,99.82625238],[4.53596396,0.0341978,99.82626178],[4.5359635,0.03419606,99.82627041],[4.53596303,0.03419432,99.82627826],[4.53596256,0.03419258,99.82628532],[4.5359621,0.03419084,99.82629158],[4.53596163,0.0341891,99.82629702],[4.53596116,0.03418736,99.82630164],[4.5359607,0.03418561,99.82630542],[4.53596023,0.03418387,99.82630836],[4.53595976,0.03418213,99.82631043],[4.53595929,0.03418039,99.82631163],[4.53595883,0.03417865,99.82631195],[4.53595836,0.03417691,99.82631138],[4.53595789,0.03417517,99.8263099],[4.53595743,0.03417342,99.82630751],[4.53595696,0.03417168,99.82630419],[4.53595649,0.03416994,99.82629993],[4.53595602,0.0341682,99.82629473],[4.53595555,0.03416646,99.82628856],[4.53595509,0.03416472,99.82628142],[4.53595462,0.03416298,99.8262733],[4.53595415,0.03416123,99.82626419],[4.53595368,0.03415949,99.82625407],[4.53595321,0.03415775,99.82624294],[4.53595275,0.03415601,99.82623078],[4.53595228,0.03415427,99.82621758],[4.53595181,0.03415253,99.82620334],[4.53595156,0.03415162,99.82619552],[4.53598226,0.03414327,99.90605533],[4.5359825,0.03414418,99.90608612],[4.53598297,0.03414592,99.9061451],[4.53598343,0.03414766,99.90620378],[4.5359839,0.03414941,99.90626216],[4.53598436,0.03415115,99.90632024],[4.53598483,0.03415289,99.90637802],[4.53598529,0.03415463,99.90643551],[4.53598576,0.03415637,99.90649271],[4.53598623,0.03415812,99.90654962],[4.53598669,0.03415986,99.90660626],[4.53598716,0.0341616,99.90666262],[4.53598762,0.03416334,99.90671871],[4.53598809,0.03416508,99.90677453],[4.53598856,0.03416683,99.90683008],[4.53598902,0.03416857,99.90688538],[4.53598949,0.03417031,99.90694042],[4.53598995,0.03417205,99.9069952],[4.53599042,0.03417379,99.90704974],[4.53599089,0.03417554,99.90710403],[4.53599135,0.03417728,99.90715808],[4.53599182,0.03417902,99.9072119],[4.53599228,0.03418076,99.90726548],[4.53599275,0.0341825,99.90731884],[4.53599322,0.03418424,99.90737197],[4.53599368,0.03418599,99.90742488],[4.53599415,0.03418773,99.90747758],[4.53599462,0.03418947,99.90753006],[4.53599508,0.03419121,99.90758234],[4.53599555,0.03419295,99.90763441],[4.53599602,0.0341947,99.90768628],[4.53599648,0.03419644,99.90773795],[4.53599695,0.03419818,99.9077894],[4.53599742,0.03419992,99.90784063],[4.53599788,0.03420166,99.90789165],[4.53599835,0.0342034,99.90794245],[4.53599882,0.03420515,99.90799302],[4.53599928,0.03420689,99.90804337],[4.53599975,0.03420863,99.90809349],[4.53600022,0.03421037,99.90814337],[4.53600069,0.03421211,99.90819301],[4.53600115,0.03421385,99.90824242],[4.53600162,0.0342156,99.90829158],[4.53600209,0.03421734,99.90834049],[4.53600256,0.03421908,99.90838915],[4.53600302,0.03422082,99.90843756],[4.53600349,0.03422256,99.90848572],[4.53600396,0.0342243,99.90853361],[4.53600443,0.03422604,99.90858124],[4.53600489,0.03422779,99.9086286],[4.53600536,0.03422953,99.90867569],[4.53600583,0.03423127,99.90872251],[4.5360063,0.03423301,99.90876905],[4.53600676,0.03423475,99.90881531],[4.53600723,0.03423649,99.90886129],[4.5360077,0.03423824,99.90890698],[4.53600817,0.03423998,99.90895238],[4.53600864,0.03424172,99.90899749],[4.5360091,0.03424346,99.9090423],[4.53600957,0.0342452,99.90908682],[4.53601004,0.03424694,99.90913102],[4.53601051,0.03424868,99.90917493],[4.53601098,0.03425042,99.90921852],[4.53601145,0.03425217,99.9092618],[4.53601191,0.03425391,99.90930476],[4.53601238,0.03425565,99.9093474],[4.53601285,0.03425739,99.90938972],[4.53601332,0.03425913,99.90943171],[4.53601379,0.03426087,99.90947337],[4.53601426,0.03426261,99.90951469],[4.53601472,0.03426435,99.90955568],[4.53601519,0.0342661,99.90959633],[4.53601566,0.03426784,99.90963664],[4.53601613,0.03426958,99.9096766],[4.5360166,0.03427132,99.9097162],[4.53601707,0.03427306,99.90975546],[4.53601754,0.0342748,99.90979435],[4.536018,0.03427654,99.90983289],[4.53601847,0.03427828,99.90987106],[4.53601894,0.03428003,99.90990886],[4.53601941,0.03428177,99.90994629],[4.53601988,0.03428351,99.90998335],[4.53602035,0.03428525,99.91002002],[4.53602082,0.03428699,99.91005632],[4.53602129,0.03428873,99.91009223],[4.53602175,0.03429047,99.91012775],[4.53602222,0.03429221,99.91016288],[4.53602269,0.03429395,99.91019762],[4.53602316,0.0342957,99.91023195],[4.53602363,0.03429744,99.91026588],[4.5360241,0.03429918,99.91029941],[4.53602457,0.03430092,99.91033252],[4.53602504,0.03430266,99.91036522],[4.53602551,0.0343044,99.91039751],[4.53602598,0.03430614,99.91042937],[4.53602645,0.03430788,99.91046082],[4.53602691,0.03430962,99.91049183],[4.53602738,0.03431137,99.91052241],[4.53602785,0.03431311,99.91055256],[4.53602832,0.03431485,99.91058227],[4.53602879,0.03431659,99.91061153],[4.53602926,0.03431833,99.91064035],[4.53602973,0.03432007,99.91066872],[4.5360302,0.03432181,99.91069664],[4.53603067,0.03432355,99.91072411],[4.53603114,0.03432529,99.91075111],[4.53603161,0.03432704,99.91077765],[4.53603208,0.03432878,99.91080372],[4.53603254,0.03433052,99.91082932],[4.53603301,0.03433226,99.91085444],[4.53603348,0.034334,99.91087909],[4.53603395,0.03433574,99.91090326],[4.53603442,0.03433748,99.91092694],[4.53603489,0.03433922,99.91095012],[4.53603536,0.03434096,99.91097282],[4.53603583,0.0343427,99.91099502],[4.5360363,0.03434445,99.91101672],[4.53603677,0.03434619,99.91103791],[4.53603724,0.03434793,99.9110586],[4.53603771,0.03434967,99.91107878],[4.53603818,0.03435141,99.91109843],[4.53603865,0.03435315,99.91111757],[4.53603911,0.03435489,99.91113619],[4.53603958,0.03435663,99.91115428],[4.53604005,0.03435837,99.91117184],[4.53604052,0.03436012,99.91118886],[4.53604099,0.03436186,99.91120535],[4.53604146,0.0343636,99.91122129],[4.53604193,0.03436534,99.91123669],[4.5360424,0.03436708,99.91125154],[4.53604287,0.03436882,99.91126583],[4.53604334,0.03437056,99.91127957],[4.53604381,0.0343723,99.91129274],[4.53604428,0.03437404,99.91130535],[4.53604474,0.03437579,99.91131739],[4.53604521,0.03437753,99.91132886],[4.53604568,0.03437927,99.91133975],[4.53604615,0.03438101,99.91135006],[4.53604662,0.03438275,99.91135978],[4.53604709,0.03438449,99.91136892],[4.53604756,0.03438623,99.91137746],[4.53604803,0.03438797,99.91138541],[4.5360485,0.03438971,99.91139276],[4.53604897,0.03439146,99.9113995],[4.53604944,0.0343932,99.91140563],[4.5360499,0.03439494,99.91141116],[4.53605037,0.03439668,99.91141606],[4.53605084,0.03439842,99.91142035],[4.53605131,0.03440016,99.91142401],[4.53605178,0.0344019,99.91142704],[4.53605225,0.03440364,99.91142944],[4.53605272,0.03440538,99.9114312],[4.53605319,0.03440713,99.91143233],[4.53605366,0.03440887,99.91143281],[4.53605412,0.03441061,99.91143264],[4.53605459,0.03441235,99.91143181],[4.53605506,0.03441409,99.91143034],[4.53605553,0.03441583,99.9114282],[4.536056,0.03441757,99.91142539],[4.53605647,0.03441931,99.91142192],[4.53605694,0.03442106,99.91141778],[4.5360574,0.0344228,99.91141295],[4.53605787,0.03442454,99.91140745],[4.53605834,0.03442628,99.91140126],[4.53605881,0.03442802,99.91139438],[4.53605928,0.03442976,99.91138681],[4.53605975,0.0344315,99.91137854],[4.53606021,0.03443324,99.91136957],[4.53606068,0.03443499,99.9113599],[4.53606115,0.03443673,99.91134951],[4.53606162,0.03443847,99.91133841],[4.53606209,0.03444021,99.91132659],[4.53606256,0.03444195,99.91131405],[4.53606302,0.03444369,99.91130078],[4.53606349,0.03444543,99.91128678],[4.53606396,0.03444718,99.91127204],[4.53606443,0.03444892,99.91125657],[4.5360649,0.03445066,99.91124035],[4.53606536,0.0344524,99.91122339],[4.53606583,0.03445414,99.91120567],[4.5360663,0.03445588,99.9111872],[4.53606677,0.03445762,99.91116796],[4.53606723,0.03445937,99.91114796],[4.5360677,0.03446111,99.91112719],[4.53606817,0.03446285,99.91110565],[4.53606864,0.03446459,99.91108333],[4.5360691,0.03446633,99.91106023],[4.53606957,0.03446807,99.91103634],[4.53607004,0.03446982,99.91101166],[4.53607051,0.03447156,99.91098619],[4.53607097,0.0344733,99.91095992],[4.53607144,0.03447504,99.91093284],[4.53607191,0.03447678,99.91090496],[4.53607237,0.03447852,99.91087626],[4.53607284,0.03448027,99.91084675],[4.53607331,0.03448201,99.91081642],[4.53607378,0.03448375,99.91078526],[4.53607424,0.03448549,99.91075327],[4.53607471,0.03448723,99.91072045],[4.53607518,0.03448897,99.91068679],[4.53607564,0.03449072,99.91065229],[4.53607611,0.03449246,99.91061694],[4.53607657,0.0344942,99.91058074],[4.53607704,0.03449594,99.91054369],[4.53607751,0.03449768,99.91050577],[4.53607797,0.03449943,99.91046699],[4.53607844,0.03450117,99.91042734],[4.53607891,0.03450291,99.91038682],[4.53607937,0.03450465,99.91034542],[4.53607984,0.03450639,99.91030313],[4.5360803,0.03450814,99.91025996],[4.53608077,0.03450988,99.9102159],[4.53608124,0.03451162,99.91017095],[4.5360817,0.03451336,99.91012509],[4.53608217,0.0345151,99.91007833],[4.53608263,0.03451685,99.91003066],[4.5360831,0.03451859,99.90998209],[4.53608356,0.03452033,99.9099326],[4.53608403,0.03452207,99.9098822],[4.53608449,0.03452381,99.90983089],[4.53608496,0.03452556,99.90977867],[4.53608543,0.0345273,99.90972554],[4.53608589,0.03452904,99.9096715],[4.53608636,0.03453078,99.90961655],[4.53608682,0.03453253,99.90956069],[4.53608728,0.03453427,99.90950391],[4.53608775,0.03453601,99.90944623],[4.53608821,0.03453775,99.90938763],[4.53608868,0.03453949,99.90932812],[4.53608914,0.03454124,99.9092677],[4.53608961,0.03454298,99.90920637],[4.53609007,0.03454472,99.90914413],[4.53609054,0.03454646,99.90908098],[4.536091,0.03454821,99.90901691],[4.53609147,0.03454995,99.90895193],[4.53609193,0.03455169,99.90888604],[4.53609239,0.03455343,99.90881924],[4.53609286,0.03455518,99.90875153],[4.53609332,0.03455692,99.9086829],[4.53609379,0.03455866,99.90861336],[4.53609425,0.0345604,99.90854291],[4.53609471,0.03456215,99.90847155],[4.53609518,0.03456389,99.90839928],[4.53609564,0.03456563,99.9083261],[4.53609611,0.03456737,99.908252],[4.53609657,0.03456912,99.90817699],[4.53609703,0.03457086,99.90810107],[4.5360975,0.0345726,99.90802424],[4.53609796,0.03457435,99.9079465],[4.53609842,0.03457609,99.90786784],[4.53609889,0.03457783,99.90778828],[4.53609935,0.03457957,99.9077078],[4.53609981,0.03458132,99.90762642],[4.53610028,0.03458306,99.90754412],[4.53610074,0.0345848,99.90746091],[4.5361012,0.03458654,99.90737679],[4.53610167,0.03458829,99.90729176],[4.53610213,0.03459003,99.90720582],[4.53610259,0.03459177,99.90711897],[4.53610305,0.03459352,99.90703121],[4.53610352,0.03459526,99.90694254],[4.53610398,0.034597,99.90685296],[4.53610444,0.03459874,99.90676248],[4.53610491,0.03460049,99.90667108],[4.53610537,0.03460223,99.90657877],[4.53610583,0.03460397,99.90648556],[4.53610629,0.03460572,99.90639143],[4.53610676,0.03460746,99.9062964],[4.53610722,0.0346092,99.90620046],[4.53610768,0.03461095,99.90610362],[4.53610814,0.03461269,99.90600586],[4.53610861,0.03461443,99.9059072],[4.53610907,0.03461617,99.90580763],[4.53610953,0.03461792,99.90570716],[4.53610999,0.03461966,99.90560578],[4.53611045,0.0346214,99.90550349],[4.53611092,0.03462315,99.9054003],[4.53611138,0.03462489,99.9052962],[4.53611184,0.03462663,99.90519119],[4.5361123,0.03462838,99.90508529],[4.53611277,0.03463012,99.90497847],[4.53611323,0.03463186,99.90487076],[4.53611369,0.0346336,99.90476214],[4.53611415,0.03463535,99.90465262],[4.53611461,0.03463709,99.90454219],[4.53611508,0.03463883,99.90443086],[4.53611554,0.03464058,99.90431863],[4.536116,0.03464232,99.9042055],[4.53611646,0.03464406,99.90409147],[4.53611692,0.03464581,99.90397653],[4.53611738,0.03464755,99.9038607],[4.53611785,0.03464929,99.90374396],[4.53611831,0.03465104,99.90362633],[4.53611877,0.03465278,99.90350779],[4.53611923,0.03465452,99.90338836],[4.53611969,0.03465627,99.90326803],[4.53612015,0.03465801,99.9031468],[4.53612062,0.03465975,99.90302467],[4.53612108,0.0346615,99.90290165],[4.53612154,0.03466324,99.90277773],[4.536122,0.03466498,99.90265291],[4.53612246,0.03466672,99.9025272],[4.53612292,0.03466847,99.9024006],[4.53612338,0.03467021,99.90227309],[4.53612385,0.03467195,99.9021447],[4.53612431,0.0346737,99.90201541],[4.53612477,0.03467544,99.90188523],[4.53612523,0.03467718,99.90175415],[4.53612569,0.03467893,99.90162218],[4.53612615,0.03468067,99.90148933],[4.53612661,0.03468241,99.90135558],[4.53612708,0.03468416,99.90122093],[4.53612754,0.0346859,99.9010854],[4.536128,0.03468764,99.90094898],[4.53612846,0.03468939,99.90081168],[4.53612892,0.03469113,99.90067348],[4.53612938,0.03469287,99.90053439],[4.53612984,0.03469462,99.90039442],[4.5361303,0.03469636,99.90025356],[4.53613076,0.0346981,99.90011182],[4.53613123,0.03469985,99.89996918],[4.53613169,0.03470159,99.89982567],[4.53613215,0.03470333,99.89968127],[4.53613261,0.03470508,99.89953598],[4.53613307,0.03470682,99.89938981],[4.53613353,0.03470856,99.89924276],[4.53613399,0.03471031,99.89909483],[4.53613445,0.03471205,99.89894602],[4.53613492,0.03471379,99.89879632],[4.53613538,0.03471554,99.89864574],[4.53613584,0.03471728,99.89849429],[4.5361363,0.03471902,99.89834195],[4.53613676,0.03472077,99.89818874],[4.53613722,0.03472251,99.89803465],[4.53613768,0.03472425,99.89787968],[4.53613814,0.034726,99.89772383],[4.5361386,0.03472774,99.89756711],[4.53613906,0.03472948,99.89740951],[4.53613953,0.03473123,99.89725104],[4.53613999,0.03473297,99.89709169],[4.53614045,0.03473471,99.89693147],[4.53614091,0.03473646,99.89677038],[4.53614137,0.0347382,99.89660841],[4.53614183,0.03473994,99.89644557],[4.53614229,0.03474169,99.89628186],[4.53614275,0.03474343,99.89611728],[4.53614321,0.03474517,99.89595183],[4.53614368,0.03474692,99.8957855],[4.53614414,0.03474866,99.89561832],[4.5361446,0.0347504,99.89545026],[4.53614506,0.03475215,99.89528133],[4.53614552,0.03475389,99.89511154],[4.53614598,0.03475563,99.89494088],[4.53614644,0.03475738,99.89476935],[4.5361469,0.03475912,99.89459696],[4.53614737,0.03476086,99.89442371],[4.53614783,0.03476261,99.89424959],[4.53614829,0.03476435,99.89407461],[4.53614875,0.03476609,99.89389876],[4.53614921,0.03476784,99.89372205],[4.53614967,0.03476958,99.89354448],[4.53615013,0.03477132,99.89336605],[4.53615059,0.03477307,99.89318676],[4.53615106,0.03477481,99.89300661],[4.53615152,0.03477655,99.8928256],[4.53615198,0.0347783,99.89264373],[4.53615244,0.03478004,99.89246101],[4.5361529,0.03478178,99.89227742],[4.53615336,0.03478353,99.89209298],[4.53615382,0.03478527,99.89190768],[4.53615428,0.03478701,99.89172153],[4.53615475,0.03478876,99.89153452],[4.53615521,0.0347905,99.89134666],[4.53615567,0.03479224,99.89115794],[4.53615613,0.03479399,99.89096836],[4.53615659,0.03479573,99.89077793],[4.53615705,0.03479747,99.89058663],[4.53615752,0.03479922,99.89039448],[4.53615798,0.03480096,99.89020148],[4.53615844,0.0348027,99.89000761],[4.5361589,0.03480445,99.88981289],[4.53615936,0.03480619,99.88961731],[4.53615982,0.03480793,99.88942087],[4.53616029,0.03480968,99.88922358],[4.53616075,0.03481142,99.88902543],[4.53616121,0.03481316,99.88882642],[4.53616167,0.03481491,99.88862655],[4.53616213,0.03481665,99.88842583],[4.53616259,0.03481839,99.88822425],[4.53616306,0.03482014,99.88802181],[4.53616352,0.03482188,99.88781851],[4.53616398,0.03482362,99.88761436],[4.53616444,0.03482537,99.88740935],[4.5361649,0.03482711,99.88720348],[4.53616536,0.03482885,99.88699675],[4.53616583,0.03483059,99.88678917],[4.53616629,0.03483234,99.88658073],[4.53616675,0.03483408,99.88637142],[4.53616721,0.03483582,99.88616127],[4.53616767,0.03483757,99.88595025],[4.53616814,0.03483931,99.88573838],[4.5361686,0.03484105,99.88552564],[4.53616906,0.0348428,99.88531205],[4.53616952,0.03484454,99.8850976],[4.53616998,0.03484628,99.8848823],[4.53617045,0.03484803,99.88466613],[4.53617091,0.03484977,99.88444911],[4.53617137,0.03485151,99.88423122],[4.53617183,0.03485326,99.88401248],[4.53617229,0.034855,99.88379288],[4.53617276,0.03485674,99.88357242],[4.53617322,0.03485849,99.8833511],[4.53617368,0.03486023,99.88312892],[4.53617414,0.03486197,99.88290589],[4.5361746,0.03486371,99.88268199],[4.53617507,0.03486546,99.88245723],[4.53617553,0.0348672,99.88223162],[4.53617599,0.03486894,99.88200514],[4.53617645,0.03487069,99.88177781],[4.53617691,0.03487243,99.88154961],[4.53617738,0.03487417,99.88132056],[4.53617784,0.03487592,99.88109064],[4.5361783,0.03487766,99.88085987],[4.53617876,0.0348794,99.88062823],[4.53617922,0.03488115,99.88039574],[4.53617968,0.03488289,99.88016238],[4.53618015,0.03488463,99.87992816],[4.53618061,0.03488638,99.87969309],[4.53618107,0.03488812,99.87945715],[4.53618153,0.03488986,99.87922035],[4.53618199,0.03489161,99.87898269],[4.53618246,0.03489335,99.87874416],[4.53618292,0.03489509,99.87850478],[4.53618338,0.03489683,99.87826454],[4.53618384,0.03489858,99.87802343],[4.5361843,0.03490032,99.87778146],[4.53618477,0.03490206,99.87753863],[4.53618523,0.03490381,99.87729494],[4.53618569,0.03490555,99.87705039],[4.53618615,0.03490729,99.87680497],[4.53618661,0.03490904,99.87655869],[4.53618708,0.03491078,99.87631155],[4.53618754,0.03491252,99.87606355],[4.536188,0.03491427,99.87581468],[4.53618846,0.03491601,99.87556495],[4.53618892,0.03491775,99.87531436],[4.53618938,0.0349195,99.87506291],[4.53618985,0.03492124,99.87481059],[4.53619031,0.03492298,99.87455741],[4.53619077,0.03492473,99.87430337],[4.53619123,0.03492647,99.87404846],[4.53619169,0.03492821,99.87379269],[4.53619216,0.03492996,99.87353606],[4.53619262,0.0349317,99.87327856],[4.53619308,0.03493344,99.8730202],[4.53619354,0.03493519,99.87276098],[4.536194,0.03493693,99.87250089],[4.53619446,0.03493867,99.87223994],[4.53619493,0.03494042,99.87197812],[4.53619539,0.03494216,99.87171544],[4.53619585,0.0349439,99.8714519],[4.53619631,0.03494565,99.87118749],[4.53619677,0.03494739,99.87092221],[4.53619723,0.03494913,99.87065607],[4.53619769,0.03495087,99.87038907],[4.53619816,0.03495262,99.87012121],[4.53619862,0.03495436,99.86985247],[4.53619908,0.0349561,99.86958288],[4.53619954,0.03495785,99.86931242],[4.5362,0.03495959,99.86904109],[4.53620046,0.03496133,99.8687689],[4.53620092,0.03496308,99.86849584],[4.53620139,0.03496482,99.86822192],[4.53620185,0.03496657,99.86794714],[4.53620231,0.03496831,99.86767148],[4.53620277,0.03497005,99.86739497],[4.53620323,0.0349718,99.86711759],[4.53620369,0.03497354,99.86683934],[4.53620415,0.03497528,99.86656023],[4.53620461,0.03497703,99.86628025],[4.53620507,0.03497877,99.8659994],[4.53620554,0.03498051,99.8657177],[4.536206,0.03498226,99.86543512],[4.53620646,0.034984,99.86515168],[4.53620692,0.03498574,99.86486738],[4.53620738,0.03498749,99.86458221],[4.53620784,0.03498923,99.86429617],[4.5362083,0.03499097,99.86400927],[4.53620876,0.03499271,99.8637215],[4.53620922,0.03499446,99.86343287],[4.53620968,0.0349962,99.86314337],[4.53621014,0.03499794,99.86285301],[4.5362106,0.03499969,99.86256178],[4.53621107,0.03500143,99.86226968],[4.53621153,0.03500317,99.86197672],[4.53621199,0.03500492,99.86168289],[4.53621245,0.03500666,99.8613882],[4.53621291,0.03500841,99.86109265],[4.53621337,0.03501015,99.86079623],[4.53621383,0.03501189,99.86049895],[4.53621429,0.03501364,99.86020082],[4.53621475,0.03501538,99.85990183],[4.53621521,0.03501712,99.85960199],[4.53621567,0.03501887,99.8593013],[4.53621613,0.03502061,99.85899977],[4.53621659,0.03502235,99.85869739],[4.53621705,0.0350241,99.85839417],[4.53621751,0.03502584,99.85809012],[4.53621797,0.03502759,99.85778523],[4.53621843,0.03502933,99.8574795],[4.53621889,0.03503107,99.85717295],[4.53621935,0.03503282,99.85686557],[4.53621981,0.03503456,99.85655736],[4.53622027,0.0350363,99.85624834],[4.53622073,0.03503805,99.85593849],[4.53622119,0.03503979,99.85562783],[4.53622165,0.03504153,99.85531635],[4.53622211,0.03504328,99.85500407],[4.53622257,0.03504502,99.85469097],[4.53622303,0.03504677,99.85437707],[4.53622349,0.03504851,99.85406236],[4.53622395,0.03505025,99.85374686],[4.53622441,0.035052,99.85343055],[4.53622487,0.03505374,99.85311345],[4.53622533,0.03505549,99.85279556],[4.53622579,0.03505723,99.85247688],[4.53622625,0.03505897,99.85215741],[4.53622671,0.03506072,99.85183715],[4.53622717,0.03506246,99.85151611],[4.53622763,0.0350642,99.8511943],[4.53622809,0.03506595,99.8508717],[4.53622855,0.03506769,99.85054833],[4.53622901,0.03506944,99.85022419],[4.53622947,0.03507118,99.84989928],[4.53622993,0.03507292,99.8495736],[4.53623039,0.03507467,99.84924716],[4.53623084,0.03507641,99.84891996],[4.5362313,0.03507816,99.848592],[4.53623176,0.0350799,99.84826328],[4.53623222,0.03508164,99.84793381],[4.53623268,0.03508339,99.84760358],[4.53623314,0.03508513,99.84727261],[4.5362336,0.03508687,99.84694089],[4.53623406,0.03508862,99.84660843],[4.53623452,0.03509036,99.84627523],[4.53623498,0.03509211,99.84594129],[4.53623544,0.03509385,99.84560661],[4.5362359,0.03509559,99.8452712],[4.53623636,0.03509734,99.84493506],[4.53623682,0.03509908,99.84459819],[4.53623728,0.03510083,99.84426059],[4.53623773,0.03510257,99.84392228],[4.53623819,0.03510431,99.84358324],[4.53623865,0.03510606,99.84324348],[4.53623911,0.0351078,99.84290301],[4.53623957,0.03510955,99.84256182],[4.53624003,0.03511129,99.84221992],[4.53624049,0.03511303,99.84187732],[4.53624095,0.03511478,99.84153401],[4.53624141,0.03511652,99.84119],[4.53624187,0.03511827,99.84084529],[4.53624233,0.03512001,99.84049987],[4.53624279,0.03512175,99.84015377],[4.53624324,0.0351235,99.83980697],[4.5362437,0.03512524,99.83945948],[4.53624416,0.03512698,99.8391113],[4.53624462,0.03512873,99.83876244],[4.53624508,0.03513047,99.83841289],[4.53624554,0.03513222,99.83806266],[4.536246,0.03513396,99.83771176],[4.53624646,0.0351357,99.83736018],[4.53624692,0.03513745,99.83700792],[4.53624738,0.03513919,99.836655],[4.53624784,0.03514094,99.83630141],[4.53624829,0.03514268,99.83594715],[4.53624875,0.03514442,99.83559223],[4.53624921,0.03514617,99.83523664],[4.53624967,0.03514791,99.8348804],[4.53625013,0.03514966,99.83452351],[4.53625059,0.0351514,99.83416596],[4.53625105,0.03515314,99.83380776],[4.53625151,0.03515489,99.83344891],[4.53625197,0.03515663,99.83308941],[4.53625243,0.03515838,99.83272927],[4.53625288,0.03516012,99.83236849],[4.53625334,0.03516186,99.83200708],[4.5362538,0.03516361,99.83164502],[4.53625426,0.03516535,99.83128233],[4.53625472,0.0351671,99.83091901],[4.53625518,0.03516884,99.83055506],[4.53625564,0.03517058,99.83019048],[4.5362561,0.03517233,99.82982528],[4.53625656,0.03517407,99.82945946],[4.53625702,0.03517582,99.82909302],[4.53625748,0.03517756,99.82872596],[4.53625793,0.0351793,99.82835829],[4.53625839,0.03518105,99.82799],[4.53625885,0.03518279,99.82762111],[4.53625931,0.03518454,99.82725161],[4.53625977,0.03518628,99.8268815],[4.53626023,0.03518802,99.82651079],[4.53626069,0.03518977,99.82613948],[4.53626115,0.03519151,99.82576757],[4.53626161,0.03519326,99.82539507],[4.53626207,0.035195,99.82502197],[4.53626253,0.03519674,99.82464828],[4.53626299,0.03519849,99.82427401],[4.53626344,0.03520023,99.82389915],[4.5362639,0.03520197,99.8235237],[4.53626436,0.03520372,99.82314768],[4.53626482,0.03520546,99.82277107],[4.53626528,0.03520721,99.82239389],[4.53626574,0.03520895,99.82201614],[4.5362662,0.03521069,99.82163781],[4.53626666,0.03521244,99.82125892],[4.53626712,0.03521418,99.82087946],[4.53626758,0.03521593,99.82049943],[4.53626804,0.03521767,99.82011884],[4.5362685,0.03521941,99.8197377],[4.53626896,0.03522116,99.81935599],[4.53626942,0.0352229,99.81897373],[4.53626988,0.03522464,99.81859092],[4.53627033,0.03522639,99.81820755],[4.53627079,0.03522813,99.81782364],[4.53627125,0.03522988,99.81743917],[4.53627171,0.03523162,99.81705416],[4.53627217,0.03523336,99.81666858],[4.53627263,0.03523511,99.81628245],[4.53627309,0.03523685,99.81589576],[4.53627355,0.0352386,99.81550852],[4.53627401,0.03524034,99.81512071],[4.53627447,0.03524208,99.81473235],[4.53627493,0.03524383,99.81434342],[4.53627539,0.03524557,99.81395393],[4.53627585,0.03524731,99.81356388],[4.53627631,0.03524906,99.81317326],[4.53627677,0.0352508,99.81278207],[4.53627723,0.03525255,99.81239031],[4.53627769,0.03525429,99.81199799],[4.53627815,0.03525603,99.81160509],[4.53627861,0.03525778,99.81121163],[4.53627907,0.03525952,99.81081759],[4.53627953,0.03526126,99.81042297],[4.53627999,0.03526301,99.81002779],[4.53628045,0.03526475,99.80963202],[4.53628091,0.0352665,99.80923568],[4.53628136,0.03526824,99.80883876],[4.53628182,0.03526998,99.80844127],[4.53628228,0.03527173,99.80804319],[4.53628274,0.03527347,99.80764453],[4.5362832,0.03527522,99.80724528],[4.53628366,0.03527696,99.80684546],[4.53628412,0.0352787,99.80644505],[4.53628458,0.03528045,99.80604405],[4.53628504,0.03528219,99.80564247],[4.5362855,0.03528393,99.80524029],[4.53628596,0.03528568,99.80483753],[4.53628642,0.03528742,99.80443418],[4.53628688,0.03528917,99.80403024],[4.53628734,0.03529091,99.80362571],[4.5362878,0.03529265,99.80322058],[4.53628826,0.0352944,99.80281486],[4.53628872,0.03529614,99.80240855],[4.53628918,0.03529788,99.80200164],[4.53628964,0.03529963,99.80159413],[4.5362901,0.03530137,99.80118602],[4.53629056,0.03530312,99.80077732],[4.53629102,0.03530486,99.80036801],[4.53629148,0.0353066,99.79995811],[4.53629193,0.03530835,99.7995476],[4.53629239,0.03531009,99.79913649],[4.53629285,0.03531184,99.79872478],[4.53629331,0.03531358,99.79831246],[4.53629377,0.03531532,99.79789954],[4.53629423,0.03531707,99.79748601],[4.53629469,0.03531881,99.79707187],[4.53629515,0.03532055,99.79665712],[4.53629561,0.0353223,99.79624177],[4.53629607,0.03532404,99.7958258],[4.53629653,0.03532579,99.79540923],[4.53629699,0.03532753,99.79499204],[4.53629745,0.03532927,99.79457424],[4.53629791,0.03533102,99.79415582],[4.53629836,0.03533276,99.7937368],[4.53629882,0.03533451,99.79331715],[4.53629928,0.03533625,99.79289689],[4.53629974,0.03533799,99.79247601],[4.5363002,0.03533974,99.79205452],[4.53630066,0.03534148,99.7916324],[4.53630112,0.03534323,99.79120967],[4.53630158,0.03534497,99.79078632],[4.53630204,0.03534671,99.79036234],[4.53630249,0.03534846,99.78993774],[4.53630295,0.0353502,99.78951252],[4.53630341,0.03535195,99.78908668],[4.53630387,0.03535369,99.78866021],[4.53630433,0.03535543,99.78823311],[4.53630479,0.03535718,99.78780539],[4.53630525,0.03535892,99.78737704],[4.5363057,0.03536067,99.78694806],[4.53630616,0.03536241,99.78651846],[4.53630662,0.03536415,99.78608822],[4.53630708,0.0353659,99.78565735],[4.53630754,0.03536764,99.78522586],[4.536308,0.03536939,99.78479373],[4.53630845,0.03537113,99.78436097],[4.53630891,0.03537287,99.78392757],[4.53630937,0.03537462,99.78349354],[4.53630983,0.03537636,99.78305887],[4.53631029,0.03537811,99.78262357],[4.53631075,0.03537985,99.78218763],[4.5363112,0.0353816,99.78175105],[4.53631166,0.03538334,99.78131384],[4.53631212,0.03538508,99.78087598],[4.53631258,0.03538683,99.78043749],[4.53631303,0.03538857,99.77999835],[4.53631349,0.03539032,99.77955857],[4.53631395,0.03539206,99.77911815],[4.53631441,0.03539381,99.77867709],[4.53631486,0.03539555,99.77823538],[4.53631532,0.03539729,99.77779303],[4.53631578,0.03539904,99.77735004],[4.53631624,0.03540078,99.7769064],[4.53631669,0.03540253,99.77646213],[4.53631715,0.03540427,99.77601723],[4.53631761,0.03540602,99.77557169],[4.53631807,0.03540776,99.77512552],[4.53631852,0.03540951,99.77467873],[4.53631898,0.03541125,99.77423131],[4.53631944,0.03541299,99.77378326],[4.53631989,0.03541474,99.7733346],[4.53632035,0.03541648,99.77288531],[4.53632081,0.03541823,99.77243541],[4.53632126,0.03541997,99.7719849],[4.53632172,0.03542172,99.77153377],[4.53632218,0.03542346,99.77108204],[4.53632263,0.03542521,99.77062969],[4.53632309,0.03542695,99.77017675],[4.53632355,0.0354287,99.76972319],[4.536324,0.03543044,99.76926904],[4.53632446,0.03543218,99.76881429],[4.53632492,0.03543393,99.76835895],[4.53632537,0.03543567,99.76790301],[4.53632583,0.03543742,99.76744648],[4.53632628,0.03543916,99.76698935],[4.53632674,0.03544091,99.76653165],[4.5363272,0.03544265,99.76607335],[4.53632765,0.0354444,99.76561448],[4.53632811,0.03544614,99.76515502],[4.53632856,0.03544789,99.76469499],[4.53632902,0.03544963,99.76423438],[4.53632948,0.03545138,99.7637732],[4.53632993,0.03545312,99.76331144],[4.53633039,0.03545487,99.76284912],[4.53633084,0.03545661,99.76238622],[4.5363313,0.03545836,99.76192277],[4.53633175,0.0354601,99.76145875],[4.53633221,0.03546185,99.76099417],[4.53633266,0.03546359,99.76052903],[4.53633312,0.03546534,99.76006333],[4.53633357,0.03546708,99.75959708],[4.53633403,0.03546883,99.75913028],[4.53633449,0.03547057,99.75866293],[4.53633494,0.03547231,99.75819503],[4.5363354,0.03547406,99.75772659],[4.53633585,0.0354758,99.7572576],[4.53633631,0.03547755,99.75678807],[4.53633676,0.03547929,99.75631801],[4.53633722,0.03548104,99.7558474],[4.53633767,0.03548278,99.75537626],[4.53633813,0.03548453,99.75490459],[4.53633858,0.03548627,99.75443239],[4.53633904,0.03548802,99.75395966],[4.53633949,0.03548976,99.75348641],[4.53633994,0.03549151,99.75301263],[4.5363404,0.03549326,99.75253833],[4.53634085,0.035495,99.75206351],[4.53634131,0.03549675,99.75158817],[4.53634176,0.03549849,99.75111231],[4.53634222,0.03550024,99.75063595],[4.53634267,0.03550198,99.75015907],[4.53634313,0.03550373,99.74968168],[4.53634358,0.03550547,99.74920379],[4.53634404,0.03550722,99.74872539],[4.53634449,0.03550896,99.74824649],[4.53634494,0.03551071,99.74776708],[4.5363454,0.03551245,99.74728718],[4.53634585,0.0355142,99.74680679],[4.53634631,0.03551594,99.74632589],[4.53634676,0.03551769,99.74584451],[4.53634721,0.03551943,99.74536264],[4.53634767,0.03552118,99.74488027],[4.53634812,0.03552292,99.74439743],[4.53634858,0.03552467,99.74391409],[4.53634903,0.03552641,99.74343028],[4.53634948,0.03552816,99.74294599],[4.53634994,0.0355299,99.74246122],[4.53635039,0.03553165,99.74197597],[4.53635085,0.03553339,99.74149025],[4.5363513,0.03553514,99.74100406],[4.53635175,0.03553689,99.7405174],[4.53635221,0.03553863,99.74003027],[4.53635266,0.03554038,99.73954268],[4.53635311,0.03554212,99.73905462],[4.53635357,0.03554387,99.7385661],[4.53635402,0.03554561,99.73807713],[4.53635448,0.03554736,99.73758769],[4.53635493,0.0355491,99.73709781],[4.53635538,0.03555085,99.73660746],[4.53635584,0.03555259,99.73611667],[4.53635629,0.03555434,99.73562543],[4.53635674,0.03555608,99.73513375],[4.5363572,0.03555783,99.73464161],[4.53635765,0.03555957,99.73414904],[4.5363581,0.03556132,99.73365602],[4.53635856,0.03556307,99.73316257],[4.53635901,0.03556481,99.73266868],[4.53635946,0.03556656,99.73217435],[4.53635992,0.0355683,99.73167957],[4.53636037,0.03557005,99.73118434],[4.53636082,0.03557179,99.73068866],[4.53636127,0.03557354,99.73019253],[4.53636173,0.03557528,99.72969594],[4.53636218,0.03557703,99.72919888],[4.53636263,0.03557877,99.72870136],[4.53636309,0.03558052,99.72820337],[4.53636354,0.03558227,99.7277049],[4.53636399,0.03558401,99.72720596],[4.53636445,0.03558576,99.72670654],[4.5363649,0.0355875,99.72620664],[4.53636535,0.03558925,99.72570624],[4.5363658,0.03559099,99.72520536],[4.53636626,0.03559274,99.72470398],[4.53636671,0.03559448,99.7242021],[4.53636716,0.03559623,99.72369972],[4.53636762,0.03559798,99.72319684],[4.53636807,0.03559972,99.72269344],[4.53636852,0.03560147,99.72218953],[4.53636897,0.03560321,99.7216851],[4.53636943,0.03560496,99.72118015],[4.53636988,0.0356067,99.72067467],[4.53637033,0.03560845,99.72016867],[4.53637078,0.03561019,99.71966213],[4.53637124,0.03561194,99.71915505],[4.53637169,0.03561369,99.71864744],[4.53637214,0.03561543,99.71813928],[4.53637259,0.03561718,99.71763057],[4.53637305,0.03561892,99.7171213],[4.5363735,0.03562067,99.71661149],[4.53637395,0.03562241,99.71610111],[4.5363744,0.03562416,99.71559017],[4.53637486,0.03562591,99.71507866],[4.53637531,0.03562765,99.71456658],[4.53637576,0.0356294,99.71405393],[4.53637621,0.03563114,99.71354069],[4.53637667,0.03563289,99.71302688],[4.53637712,0.03563463,99.71251247],[4.53637757,0.03563638,99.71199748],[4.53637802,0.03563813,99.7114819],[4.53637847,0.03563987,99.71096571],[4.53637893,0.03564162,99.71044893],[4.53637938,0.03564336,99.70993154],[4.53637983,0.03564511,99.70941354],[4.53638028,0.03564685,99.70889493],[4.53638073,0.0356486,99.70837571],[4.53638119,0.03565035,99.70785586],[4.53638164,0.03565209,99.7073354],[4.53638209,0.03565384,99.70681431],[4.53638254,0.03565558,99.7062926],[4.536383,0.03565733,99.70577027],[4.53638345,0.03565907,99.7052473],[4.5363839,0.03566082,99.7047237],[4.53638435,0.03566257,99.70419947],[4.5363848,0.03566431,99.70367459],[4.53638526,0.03566606,99.70314908],[4.53638571,0.0356678,99.70262293],[4.53638616,0.03566955,99.70209613],[4.53638661,0.03567129,99.70156868],[4.53638706,0.03567304,99.70104058],[4.53638751,0.03567479,99.70051183],[4.53638797,0.03567653,99.69998243],[4.53638842,0.03567828,99.69945237],[4.53638887,0.03568002,99.69892164],[4.53638932,0.03568177,99.69839026],[4.53638977,0.03568351,99.69785821],[4.53639023,0.03568526,99.69732549],[4.53639068,0.03568701,99.69679211],[4.53639113,0.03568875,99.69625805],[4.53639158,0.0356905,99.69572331],[4.53639203,0.03569224,99.6951879],[4.53639248,0.03569399,99.69465181],[4.53639294,0.03569573,99.69411504],[4.53639339,0.03569748,99.69357758],[4.53639384,0.03569923,99.69303944],[4.53639429,0.03570097,99.6925006],[4.53639474,0.03570272,99.69196108],[4.53639519,0.03570446,99.69142086],[4.53639565,0.03570621,99.69087994],[4.5363961,0.03570795,99.69033833],[4.53639655,0.0357097,99.68979601],[4.536397,0.03571145,99.68925299],[4.53639745,0.03571319,99.68870926],[4.5363979,0.03571494,99.68816482],[4.53639835,0.03571668,99.68761967],[4.53639881,0.03571843,99.68707381],[4.53639926,0.03572018,99.68652723],[4.53639971,0.03572192,99.68597993],[4.53640016,0.03572367,99.68543191],[4.53640061,0.03572541,99.68488317],[4.53640106,0.03572716,99.6843337],[4.53640152,0.03572891,99.6837835],[4.53640197,0.03573065,99.68323258],[4.53640242,0.0357324,99.68268092],[4.53640287,0.03573414,99.68212852],[4.53640332,0.03573589,99.68157539],[4.53640377,0.03573763,99.68102151],[4.53640422,0.03573938,99.6804669],[4.53640468,0.03574113,99.67991154],[4.53640513,0.03574287,99.67935543],[4.53640558,0.03574462,99.67879857],[4.53640603,0.03574636,99.67824096],[4.53640648,0.03574811,99.6776826],[4.53640693,0.03574986,99.67712347],[4.53640738,0.0357516,99.67656359],[4.53640784,0.03575335,99.67600295],[4.53640829,0.03575509,99.67544155],[4.53640874,0.03575684,99.67487937],[4.53640919,0.03575859,99.67431643],[4.53640964,0.03576033,99.67375272],[4.53641009,0.03576208,99.67318824],[4.53641054,0.03576382,99.67262298],[4.53641099,0.03576557,99.67205694],[4.53641145,0.03576732,99.67149012],[4.5364119,0.03576906,99.67092252],[4.53641235,0.03577081,99.67035413],[4.5364128,0.03577255,99.66978496],[4.53641325,0.0357743,99.669215],[4.5364137,0.03577605,99.66864424],[4.53641415,0.03577779,99.66807269],[4.5364146,0.03577954,99.66750035],[4.53641506,0.03578128,99.6669272],[4.53641551,0.03578303,99.66635326],[4.53641596,0.03578478,99.66577851],[4.53641641,0.03578652,99.66520295],[4.53641686,0.03578827,99.66462659],[4.53641731,0.03579001,99.66404942],[4.53641776,0.03579176,99.66347143],[4.53641821,0.03579351,99.66289263],[4.53641867,0.03579525,99.66231302],[4.53641912,0.035797,99.66173258],[4.53641957,0.03579874,99.66115132],[4.53642002,0.03580049,99.66056924],[4.53642047,0.03580223,99.65998633],[4.53642092,0.03580398,99.65940259],[4.53642137,0.03580573,99.65881802],[4.53642182,0.03580747,99.65823262],[4.53642227,0.03580922,99.65764638],[4.53642273,0.03581096,99.65705931],[4.53642318,0.03581271,99.65647139],[4.53642363,0.03581446,99.65588264],[4.53642408,0.0358162,99.65529303],[4.53642453,0.03581795,99.65470259],[4.53642498,0.03581969,99.65411129],[4.53642543,0.03582144,99.65351914],[4.53642588,0.03582319,99.65292614],[4.53642634,0.03582493,99.65233228],[4.53642679,0.03582668,99.65173756],[4.53642724,0.03582842,99.65114199],[4.53642769,0.03583017,99.65054555],[4.53642814,0.03583192,99.64994824],[4.53642859,0.03583366,99.64935007],[4.53642904,0.03583541,99.64875103],[4.53642949,0.03583715,99.64815112],[4.53642994,0.0358389,99.64755033],[4.5364304,0.03584065,99.64694867],[4.53643085,0.03584239,99.64634613],[4.5364313,0.03584414,99.64574271],[4.53643175,0.03584588,99.64513841],[4.5364322,0.03584763,99.64453322],[4.53643265,0.03584938,99.64392714],[4.5364331,0.03585112,99.64332018],[4.53643355,0.03585287,99.64271232],[4.536434,0.03585461,99.64210357],[4.53643446,0.03585636,99.64149392],[4.53643491,0.03585811,99.64088338],[4.53643536,0.03585985,99.64027193],[4.53643581,0.0358616,99.63965958],[4.53643626,0.03586334,99.63904633],[4.53643671,0.03586509,99.63843217],[4.53643716,0.03586684,99.6378171],[4.53643761,0.03586858,99.63720111],[4.53643806,0.03587033,99.63658422],[4.53643852,0.03587207,99.6359664],[4.53643897,0.03587382,99.63534767],[4.53643942,0.03587557,99.63472802],[4.53643987,0.03587731,99.63410744],[4.53644032,0.03587906,99.63348594],[4.53644077,0.0358808,99.63286351],[4.53644122,0.03588255,99.63224015],[4.53644167,0.0358843,99.63161586],[4.53644213,0.03588604,99.63099064],[4.53644258,0.03588779,99.63036448],[4.53644303,0.03588953,99.62973738],[4.53644348,0.03589128,99.62910934],[4.53644393,0.03589303,99.62848035],[4.53644438,0.03589477,99.62785042],[4.53644483,0.03589652,99.62721955],[4.53644528,0.03589826,99.62658772],[4.53644574,0.03590001,99.62595494],[4.53644619,0.03590176,99.6253212],[4.53644664,0.0359035,99.6246865],[4.53644709,0.03590525,99.62405084],[4.53644754,0.03590699,99.6234142],[4.53644799,0.03590874,99.62277659],[4.53644844,0.03591049,99.622138],[4.53644889,0.03591223,99.62149843],[4.53644934,0.03591398,99.62085787],[4.5364498,0.03591572,99.62021632],[4.53645025,0.03591747,99.61957378],[4.5364507,0.03591922,99.61893024],[4.53645115,0.03592096,99.61828569],[4.5364516,0.03592271,99.61764014],[4.53645205,0.03592445,99.61699357],[4.5364525,0.0359262,99.61634599],[4.53645295,0.03592795,99.61569739],[4.53645341,0.03592969,99.61504777],[4.53645386,0.03593144,99.61439712],[4.53645431,0.03593318,99.61374543],[4.53645476,0.03593493,99.61309271],[4.53645521,0.03593668,99.61243895],[4.53645566,0.03593842,99.61178414],[4.53645611,0.03594017,99.61112828],[4.53645656,0.03594191,99.61047137],[4.53645702,0.03594366,99.60981341],[4.53645747,0.03594541,99.60915439],[4.53645792,0.03594715,99.60849432],[4.53645837,0.0359489,99.6078332],[4.53645882,0.03595064,99.60717103],[4.53645927,0.03595239,99.60650782],[4.53645972,0.03595414,99.60584355],[4.53646017,0.03595588,99.60517824],[4.53646062,0.03595763,99.60451189],[4.53646108,0.03595937,99.60384448],[4.53646153,0.03596112,99.60317604],[4.53646198,0.03596287,99.60250655],[4.53646243,0.03596461,99.60183603],[4.53646288,0.03596636,99.60116446],[4.53646333,0.0359681,99.60049185],[4.53646378,0.03596985,99.5998182],[4.53646423,0.0359716,99.59914352],[4.53646468,0.03597334,99.5984678],[4.53646514,0.03597509,99.59779104],[4.53646559,0.03597683,99.59711325],[4.53646604,0.03597858,99.59643443],[4.53646649,0.03598033,99.59575457],[4.53646694,0.03598207,99.59507368],[4.53646739,0.03598382,99.59439176],[4.53646784,0.03598556,99.59370882],[4.53646829,0.03598731,99.59302484],[4.53646874,0.03598906,99.59233983],[4.53646919,0.0359908,99.5916538],[4.53646964,0.03599255,99.59096674],[4.5364701,0.03599429,99.59027866],[4.53647055,0.03599604,99.58958956],[4.536471,0.03599779,99.58889943],[4.53647145,0.03599953,99.58820828],[4.5364719,0.03600128,99.58751611],[4.53647235,0.03600302,99.58682291],[4.5364728,0.03600477,99.5861287],[4.53647325,0.03600652,99.58543348],[4.5364737,0.03600826,99.58473723],[4.53647415,0.03601001,99.58403997],[4.5364746,0.03601176,99.58334169],[4.53647505,0.0360135,99.5826424],[4.5364755,0.03601525,99.5819421],[4.53647595,0.03601699,99.58124078],[4.53647641,0.03601874,99.58053845],[4.53647686,0.03602049,99.57983511],[4.53647731,0.03602223,99.57913076],[4.53647776,0.03602398,99.5784254],[4.53647821,0.03602572,99.57771901],[4.53647866,0.03602747,99.57701161],[4.53647911,0.03602922,99.57630318],[4.53647956,0.03603096,99.57559373],[4.53648001,0.03603271,99.57488325],[4.53648046,0.03603446,99.57417174],[4.53648091,0.0360362,99.57345919],[4.53648136,0.03603795,99.57274561],[4.53648181,0.03603969,99.57203099],[4.53648226,0.03604144,99.57131533],[4.53648271,0.03604319,99.57059862],[4.53648316,0.03604493,99.56988087],[4.53648361,0.03604668,99.56916207],[4.53648406,0.03604843,99.56844221],[4.53648451,0.03605017,99.5677213],[4.53648496,0.03605192,99.56699934],[4.53648541,0.03605366,99.56627631],[4.53648586,0.03605541,99.56555222],[4.53648631,0.03605716,99.56482706],[4.53648676,0.0360589,99.56410084],[4.53648721,0.03606065,99.56337355],[4.53648766,0.0360624,99.56264518],[4.53648811,0.03606414,99.56191573],[4.53648856,0.03606589,99.56118521],[4.53648901,0.03606764,99.56045361],[4.53648946,0.03606938,99.55972092],[4.5364899,0.03607113,99.55898715],[4.53649035,0.03607288,99.55825229],[4.5364908,0.03607462,99.55751633],[4.53649125,0.03607637,99.55677929],[4.5364917,0.03607812,99.55604114],[4.53649215,0.03607986,99.5553019],[4.5364926,0.03608161,99.55456155],[4.53649305,0.03608335,99.55382011],[4.5364935,0.0360851,99.55307755],[4.53649394,0.03608685,99.55233388],[4.53649439,0.03608859,99.55158911],[4.53649484,0.03609034,99.55084321],[4.53649529,0.03609209,99.55009621],[4.53649574,0.03609384,99.54934808],[4.53649619,0.03609558,99.54859883],[4.53649663,0.03609733,99.54784845],[4.53649708,0.03609908,99.54709695],[4.53649753,0.03610082,99.54634432],[4.53649798,0.03610257,99.54559056],[4.53649843,0.03610432,99.54483567],[4.53649887,0.03610606,99.54407963],[4.53649932,0.03610781,99.54332246],[4.53649977,0.03610956,99.54256416],[4.53650022,0.0361113,99.54180473],[4.53650066,0.03611305,99.5410442],[4.53650111,0.0361148,99.54028258],[4.53650156,0.03611655,99.53951989],[4.536502,0.03611829,99.53875614],[4.53650245,0.03612004,99.53799136],[4.5365029,0.03612179,99.53722555],[4.53650334,0.03612353,99.53645872],[4.53650379,0.03612528,99.53569091],[4.53650424,0.03612703,99.53492212],[4.53650468,0.03612878,99.53415237],[4.53650513,0.03613052,99.53338167],[4.53650558,0.03613227,99.53261005],[4.53650602,0.03613402,99.53183751],[4.53650647,0.03613576,99.53106407],[4.53650692,0.03613751,99.53028975],[4.53650736,0.03613926,99.52951456],[4.53650781,0.03614101,99.52873852],[4.53650826,0.03614275,99.52796165],[4.5365087,0.0361445,99.52718396],[4.53650915,0.03614625,99.52640547],[4.5365096,0.03614799,99.52562618],[4.53651004,0.03614974,99.52484613],[4.53651049,0.03615149,99.52406532],[4.53651093,0.03615324,99.52328377],[4.53651138,0.03615498,99.52250149],[4.53651183,0.03615673,99.52171851],[4.53651227,0.03615848,99.52093483],[4.53651272,0.03616023,99.52015048],[4.53651317,0.03616197,99.51936546],[4.53651361,0.03616372,99.51857979],[4.53651406,0.03616547,99.51779349],[4.5365145,0.03616721,99.51700658],[4.53651495,0.03616896,99.51621907],[4.5365154,0.03617071,99.51543097],[4.53651584,0.03617246,99.5146423],[4.53651629,0.0361742,99.51385308],[4.53651674,0.03617595,99.51306332],[4.53651718,0.0361777,99.51227304],[4.53651763,0.03617945,99.51148224],[4.53651808,0.03618119,99.51069096],[4.53651852,0.03618294,99.5098992],[4.53651897,0.03618469,99.50910697],[4.53651942,0.03618643,99.5083143],[4.53651987,0.03618818,99.5075212],[4.53652031,0.03618993,99.50672768],[4.53652076,0.03619167,99.50593377],[4.53652121,0.03619342,99.50513946],[4.53652166,0.03619517,99.50434478],[4.5365221,0.03619692,99.50354975],[4.53652255,0.03619866,99.50275438],[4.536523,0.03620041,99.50195868],[4.53652345,0.03620216,99.50116267],[4.53652389,0.0362039,99.50036637],[4.53652434,0.03620565,99.49956978],[4.53652479,0.0362074,99.49877293],[4.53652524,0.03620914,99.49797583],[4.53652569,0.03621089,99.49717849],[4.53652614,0.03621264,99.49638092],[4.53652658,0.03621438,99.49558311],[4.53652703,0.03621613,99.49478504],[4.53652748,0.03621788,99.4939867],[4.53652793,0.03621962,99.49318808],[4.53652838,0.03622137,99.49238917],[4.53652883,0.03622312,99.49158995],[4.53652928,0.03622486,99.49079041],[4.53652973,0.03622661,99.48999054],[4.53653018,0.03622836,99.48919032],[4.53653063,0.0362301,99.48838974],[4.53653108,0.03623185,99.48758879],[4.53653153,0.03623359,99.48678745],[4.53653198,0.03623534,99.48598572],[4.53653243,0.03623709,99.48518358],[4.53653288,0.03623883,99.48438102],[4.53653333,0.03624058,99.48357802],[4.53653378,0.03624233,99.48277457],[4.53653423,0.03624407,99.48197066],[4.53653468,0.03624582,99.48116628],[4.53653513,0.03624757,99.48036142],[4.53653558,0.03624931,99.47955605],[4.53653603,0.03625106,99.47875018],[4.53653648,0.0362528,99.47794378],[4.53653693,0.03625455,99.47713684],[4.53653738,0.0362563,99.47632936],[4.53653783,0.03625804,99.47552131],[4.53653828,0.03625979,99.4747127],[4.53653873,0.03626153,99.47390349],[4.53653918,0.03626328,99.47309369],[4.53653963,0.03626503,99.47228328],[4.53654008,0.03626677,99.47147225],[4.53654053,0.03626852,99.47066058],[4.53654098,0.03627027,99.46984826],[4.53654143,0.03627201,99.46903528],[4.53654188,0.03627376,99.46822164],[4.53654234,0.0362755,99.46740731],[4.53654279,0.03627725,99.46659228],[4.53654324,0.036279,99.46577655],[4.53654369,0.03628074,99.46496009],[4.53654414,0.03628249,99.46414291],[4.53654459,0.03628424,99.46332498],[4.53654504,0.03628598,99.46250629],[4.53654549,0.03628773,99.46168684],[4.53654594,0.03628947,99.46086661],[4.53654639,0.03629122,99.46004558],[4.53654684,0.03629297,99.45922376],[4.53654729,0.03629471,99.45840112],[4.53654774,0.03629646,99.45757765],[4.53654819,0.03629821,99.45675334],[4.53654864,0.03629995,99.45592818],[4.53654908,0.0363017,99.45510216],[4.53654953,0.03630345,99.45427527],[4.53654998,0.03630519,99.45344749],[4.53655043,0.03630694,99.45261882],[4.53655088,0.03630869,99.45178924],[4.53655133,0.03631043,99.45095874],[4.53655178,0.03631218,99.45012731],[4.53655223,0.03631393,99.44929493],[4.53655268,0.03631567,99.44846161],[4.53655312,0.03631742,99.44762731],[4.53655357,0.03631917,99.44679205],[4.53655402,0.03632091,99.44595579],[4.53655447,0.03632266,99.44511854],[4.53655492,0.03632441,99.44428027],[4.53655536,0.03632615,99.44344099],[4.53655581,0.0363279,99.44260067],[4.53655626,0.03632965,99.44175932],[4.53655671,0.03633139,99.4409169],[4.53655715,0.03633314,99.44007343],[4.5365576,0.03633489,99.43922887],[4.53655805,0.03633664,99.43838323],[4.53655849,0.03633838,99.4375365],[4.53655894,0.03634013,99.43668865],[4.53655939,0.03634188,99.43583969],[4.53655983,0.03634363,99.43498959],[4.53656028,0.03634537,99.43413836],[4.53656072,0.03634712,99.43328598],[4.53656117,0.03634887,99.43243243],[4.53656161,0.03635062,99.43157775],[4.53656206,0.03635236,99.43072194],[4.5365625,0.03635411,99.42986505],[4.53656295,0.03635586,99.42900709],[4.53656339,0.03635761,99.4281481],[4.53656384,0.03635935,99.42728809],[4.53656428,0.0363611,99.42642709],[4.53656472,0.03636285,99.42556514],[4.53656517,0.0363646,99.42470224],[4.53656561,0.03636635,99.42383844],[4.53656606,0.03636809,99.42297376],[4.5365665,0.03636984,99.42210821],[4.53656694,0.03637159,99.42124184],[4.53656738,0.03637334,99.42037465],[4.53656783,0.03637509,99.41950669],[4.53656827,0.03637683,99.41863797],[4.53656871,0.03637858,99.41776851],[4.53656916,0.03638033,99.41689835],[4.5365696,0.03638208,99.41602751],[4.53657004,0.03638383,99.41515601],[4.53657048,0.03638558,99.41428388],[4.53657093,0.03638732,99.41341115],[4.53657137,0.03638907,99.41253784],[4.53657181,0.03639082,99.41166396],[4.53657225,0.03639257,99.41078956],[4.5365727,0.03639432,99.40991465],[4.53657314,0.03639607,99.40903926],[4.53657358,0.03639781,99.40816342],[4.53657402,0.03639956,99.40728714],[4.53657446,0.03640131,99.40641045],[4.53657491,0.03640306,99.40553338],[4.53657535,0.03640481,99.40465595],[4.53657579,0.03640656,99.40377818],[4.53657623,0.0364083,99.4029001],[4.53657668,0.03641005,99.40202174],[4.53657712,0.0364118,99.40114312],[4.53657756,0.03641355,99.40026426],[4.536578,0.0364153,99.39938518],[4.53657845,0.03641705,99.39850591],[4.53657889,0.03641879,99.39762648],[4.53657933,0.03642054,99.3967469],[4.53657977,0.03642229,99.39586721],[4.53658022,0.03642404,99.39498742],[4.53658066,0.03642579,99.39410756],[4.5365811,0.03642753,99.39322766],[4.53658154,0.03642928,99.39234773],[4.53658199,0.03643103,99.3914678],[4.53658243,0.03643278,99.39058789],[4.53658287,0.03643453,99.38970803],[4.53658332,0.03643627,99.38882824],[4.53658376,0.03643801,99.38794854],[4.5365842,0.03643976,99.38706896],[4.53658465,0.03644151,99.38618952],[4.53658509,0.03644326,99.38531024],[4.53658554,0.03644501,99.38443114],[4.53658598,0.03644675,99.38355226],[4.53658643,0.0364485,99.3826736],[4.53658687,0.03645025,99.38179521],[4.53658732,0.036452,99.38091708],[4.53658776,0.03645374,99.38003926],[4.53658821,0.03645549,99.37916176],[4.53658865,0.03645724,99.37828457],[4.5365891,0.03645899,99.37740769],[4.53658954,0.03646073,99.37653109],[4.53658999,0.03646248,99.37565477],[4.53659044,0.03646423,99.37477871],[4.53659088,0.03646598,99.37390289],[4.53659133,0.03646772,99.37302731],[4.53659178,0.03646947,99.37215195],[4.53659223,0.03647122,99.37127679],[4.53659267,0.03647296,99.37040182],[4.53659312,0.03647471,99.36952703],[4.53656216,0.03648269,99.27350507]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1,"sOffset":248.3390056326}},{"geometry":{"coordinates":[[[4.53659312,0.03647471,99.36952703],[4.53659267,0.03647296,99.37040182],[4.53659223,0.03647122,99.37127679],[4.53659178,0.03646947,99.37215195],[4.53659133,0.03646772,99.37302731],[4.53659088,0.03646598,99.37390289],[4.53659044,0.03646423,99.37477871],[4.53658999,0.03646248,99.37565477],[4.53658954,0.03646073,99.37653109],[4.5365891,0.03645899,99.37740769],[4.53658865,0.03645724,99.37828457],[4.53658821,0.03645549,99.37916176],[4.53658776,0.03645374,99.38003926],[4.53658732,0.036452,99.38091708],[4.53658687,0.03645025,99.38179521],[4.53658643,0.0364485,99.3826736],[4.53658598,0.03644675,99.38355226],[4.53658554,0.03644501,99.38443114],[4.53658509,0.03644326,99.38531024],[4.53658465,0.03644151,99.38618952],[4.5365842,0.03643976,99.38706896],[4.53658376,0.03643801,99.38794854],[4.53658332,0.03643627,99.38882824],[4.53658287,0.03643453,99.38970803],[4.53658243,0.03643278,99.39058789],[4.53658199,0.03643103,99.3914678],[4.53658154,0.03642928,99.39234773],[4.5365811,0.03642753,99.39322766],[4.53658066,0.03642579,99.39410756],[4.53658022,0.03642404,99.39498742],[4.53657977,0.03642229,99.39586721],[4.53657933,0.03642054,99.3967469],[4.53657889,0.03641879,99.39762648],[4.53657845,0.03641705,99.39850591],[4.536578,0.0364153,99.39938518],[4.53657756,0.03641355,99.40026426],[4.53657712,0.0364118,99.40114312],[4.53657668,0.03641005,99.40202174],[4.53657623,0.0364083,99.4029001],[4.53657579,0.03640656,99.40377818],[4.53657535,0.03640481,99.40465595],[4.53657491,0.03640306,99.40553338],[4.53657446,0.03640131,99.40641045],[4.53657402,0.03639956,99.40728714],[4.53657358,0.03639781,99.40816342],[4.53657314,0.03639607,99.40903926],[4.5365727,0.03639432,99.40991465],[4.53657225,0.03639257,99.41078956],[4.53657181,0.03639082,99.41166396],[4.53657137,0.03638907,99.41253784],[4.53657093,0.03638732,99.41341115],[4.53657048,0.03638558,99.41428388],[4.53657004,0.03638383,99.41515601],[4.5365696,0.03638208,99.41602751],[4.53656916,0.03638033,99.41689835],[4.53656871,0.03637858,99.41776851],[4.53656827,0.03637683,99.41863797],[4.53656783,0.03637509,99.41950669],[4.53656738,0.03637334,99.42037465],[4.53656694,0.03637159,99.42124184],[4.5365665,0.03636984,99.42210821],[4.53656606,0.03636809,99.42297376],[4.53656561,0.03636635,99.42383844],[4.53656517,0.0363646,99.42470224],[4.53656472,0.03636285,99.42556514],[4.53656428,0.0363611,99.42642709],[4.53656384,0.03635935,99.42728809],[4.53656339,0.03635761,99.4281481],[4.53656295,0.03635586,99.42900709],[4.5365625,0.03635411,99.42986505],[4.53656206,0.03635236,99.43072194],[4.53656161,0.03635062,99.43157775],[4.53656117,0.03634887,99.43243243],[4.53656072,0.03634712,99.43328598],[4.53656028,0.03634537,99.43413836],[4.53655983,0.03634363,99.43498959],[4.53655939,0.03634188,99.43583969],[4.53655894,0.03634013,99.43668865],[4.53655849,0.03633838,99.4375365],[4.53655805,0.03633664,99.43838323],[4.5365576,0.03633489,99.43922887],[4.53655715,0.03633314,99.44007343],[4.53655671,0.03633139,99.4409169],[4.53655626,0.03632965,99.44175932],[4.53655581,0.0363279,99.44260067],[4.53655536,0.03632615,99.44344099],[4.53655492,0.03632441,99.44428027],[4.53655447,0.03632266,99.44511854],[4.53655402,0.03632091,99.44595579],[4.53655357,0.03631917,99.44679205],[4.53655312,0.03631742,99.44762731],[4.53655268,0.03631567,99.44846161],[4.53655223,0.03631393,99.44929493],[4.53655178,0.03631218,99.45012731],[4.53655133,0.03631043,99.45095874],[4.53655088,0.03630869,99.45178924],[4.53655043,0.03630694,99.45261882],[4.53654998,0.03630519,99.45344749],[4.53654953,0.03630345,99.45427527],[4.53654908,0.0363017,99.45510216],[4.53654864,0.03629995,99.45592818],[4.53654819,0.03629821,99.45675334],[4.53654774,0.03629646,99.45757765],[4.53654729,0.03629471,99.45840112],[4.53654684,0.03629297,99.45922376],[4.53654639,0.03629122,99.46004558],[4.53654594,0.03628947,99.46086661],[4.53654549,0.03628773,99.46168684],[4.53654504,0.03628598,99.46250629],[4.53654459,0.03628424,99.46332498],[4.53654414,0.03628249,99.46414291],[4.53654369,0.03628074,99.46496009],[4.53654324,0.036279,99.46577655],[4.53654279,0.03627725,99.46659228],[4.53654234,0.0362755,99.46740731],[4.53654188,0.03627376,99.46822164],[4.53654143,0.03627201,99.46903528],[4.53654098,0.03627027,99.46984826],[4.53654053,0.03626852,99.47066058],[4.53654008,0.03626677,99.47147225],[4.53653963,0.03626503,99.47228328],[4.53653918,0.03626328,99.47309369],[4.53653873,0.03626153,99.47390349],[4.53653828,0.03625979,99.4747127],[4.53653783,0.03625804,99.47552131],[4.53653738,0.0362563,99.47632936],[4.53653693,0.03625455,99.47713684],[4.53653648,0.0362528,99.47794378],[4.53653603,0.03625106,99.47875018],[4.53653558,0.03624931,99.47955605],[4.53653513,0.03624757,99.48036142],[4.53653468,0.03624582,99.48116628],[4.53653423,0.03624407,99.48197066],[4.53653378,0.03624233,99.48277457],[4.53653333,0.03624058,99.48357802],[4.53653288,0.03623883,99.48438102],[4.53653243,0.03623709,99.48518358],[4.53653198,0.03623534,99.48598572],[4.53653153,0.03623359,99.48678745],[4.53653108,0.03623185,99.48758879],[4.53653063,0.0362301,99.48838974],[4.53653018,0.03622836,99.48919032],[4.53652973,0.03622661,99.48999054],[4.53652928,0.03622486,99.49079041],[4.53652883,0.03622312,99.49158995],[4.53652838,0.03622137,99.49238917],[4.53652793,0.03621962,99.49318808],[4.53652748,0.03621788,99.4939867],[4.53652703,0.03621613,99.49478504],[4.53652658,0.03621438,99.49558311],[4.53652614,0.03621264,99.49638092],[4.53652569,0.03621089,99.49717849],[4.53652524,0.03620914,99.49797583],[4.53652479,0.0362074,99.49877293],[4.53652434,0.03620565,99.49956978],[4.53652389,0.0362039,99.50036637],[4.53652345,0.03620216,99.50116267],[4.536523,0.03620041,99.50195868],[4.53652255,0.03619866,99.50275438],[4.5365221,0.03619692,99.50354975],[4.53652166,0.03619517,99.50434478],[4.53652121,0.03619342,99.50513946],[4.53652076,0.03619167,99.50593377],[4.53652031,0.03618993,99.50672768],[4.53651987,0.03618818,99.5075212],[4.53651942,0.03618643,99.5083143],[4.53651897,0.03618469,99.50910697],[4.53651852,0.03618294,99.5098992],[4.53651808,0.03618119,99.51069096],[4.53651763,0.03617945,99.51148224],[4.53651718,0.0361777,99.51227304],[4.53651674,0.03617595,99.51306332],[4.53651629,0.0361742,99.51385308],[4.53651584,0.03617246,99.5146423],[4.5365154,0.03617071,99.51543097],[4.53651495,0.03616896,99.51621907],[4.5365145,0.03616721,99.51700658],[4.53651406,0.03616547,99.51779349],[4.53651361,0.03616372,99.51857979],[4.53651317,0.03616197,99.51936546],[4.53651272,0.03616023,99.52015048],[4.53651227,0.03615848,99.52093483],[4.53651183,0.03615673,99.52171851],[4.53651138,0.03615498,99.52250149],[4.53651093,0.03615324,99.52328377],[4.53651049,0.03615149,99.52406532],[4.53651004,0.03614974,99.52484613],[4.5365096,0.03614799,99.52562618],[4.53650915,0.03614625,99.52640547],[4.5365087,0.0361445,99.52718396],[4.53650826,0.03614275,99.52796165],[4.53650781,0.03614101,99.52873852],[4.53650736,0.03613926,99.52951456],[4.53650692,0.03613751,99.53028975],[4.53650647,0.03613576,99.53106407],[4.53650602,0.03613402,99.53183751],[4.53650558,0.03613227,99.53261005],[4.53650513,0.03613052,99.53338167],[4.53650468,0.03612878,99.53415237],[4.53650424,0.03612703,99.53492212],[4.53650379,0.03612528,99.53569091],[4.53650334,0.03612353,99.53645872],[4.5365029,0.03612179,99.53722555],[4.53650245,0.03612004,99.53799136],[4.536502,0.03611829,99.53875614],[4.53650156,0.03611655,99.53951989],[4.53650111,0.0361148,99.54028258],[4.53650066,0.03611305,99.5410442],[4.53650022,0.0361113,99.54180473],[4.53649977,0.03610956,99.54256416],[4.53649932,0.03610781,99.54332246],[4.53649887,0.03610606,99.54407963],[4.53649843,0.03610432,99.54483567],[4.53649798,0.03610257,99.54559056],[4.53649753,0.03610082,99.54634432],[4.53649708,0.03609908,99.54709695],[4.53649663,0.03609733,99.54784845],[4.53649619,0.03609558,99.54859883],[4.53649574,0.03609384,99.54934808],[4.53649529,0.03609209,99.55009621],[4.53649484,0.03609034,99.55084321],[4.53649439,0.03608859,99.55158911],[4.53649394,0.03608685,99.55233388],[4.5364935,0.0360851,99.55307755],[4.53649305,0.03608335,99.55382011],[4.5364926,0.03608161,99.55456155],[4.53649215,0.03607986,99.5553019],[4.5364917,0.03607812,99.55604114],[4.53649125,0.03607637,99.55677929],[4.5364908,0.03607462,99.55751633],[4.53649035,0.03607288,99.55825229],[4.5364899,0.03607113,99.55898715],[4.53648946,0.03606938,99.55972092],[4.53648901,0.03606764,99.56045361],[4.53648856,0.03606589,99.56118521],[4.53648811,0.03606414,99.56191573],[4.53648766,0.0360624,99.56264518],[4.53648721,0.03606065,99.56337355],[4.53648676,0.0360589,99.56410084],[4.53648631,0.03605716,99.56482706],[4.53648586,0.03605541,99.56555222],[4.53648541,0.03605366,99.56627631],[4.53648496,0.03605192,99.56699934],[4.53648451,0.03605017,99.5677213],[4.53648406,0.03604843,99.56844221],[4.53648361,0.03604668,99.56916207],[4.53648316,0.03604493,99.56988087],[4.53648271,0.03604319,99.57059862],[4.53648226,0.03604144,99.57131533],[4.53648181,0.03603969,99.57203099],[4.53648136,0.03603795,99.57274561],[4.53648091,0.0360362,99.57345919],[4.53648046,0.03603446,99.57417174],[4.53648001,0.03603271,99.57488325],[4.53647956,0.03603096,99.57559373],[4.53647911,0.03602922,99.57630318],[4.53647866,0.03602747,99.57701161],[4.53647821,0.03602572,99.57771901],[4.53647776,0.03602398,99.5784254],[4.53647731,0.03602223,99.57913076],[4.53647686,0.03602049,99.57983511],[4.53647641,0.03601874,99.58053845],[4.53647595,0.03601699,99.58124078],[4.5364755,0.03601525,99.5819421],[4.53647505,0.0360135,99.5826424],[4.5364746,0.03601176,99.58334169],[4.53647415,0.03601001,99.58403997],[4.5364737,0.03600826,99.58473723],[4.53647325,0.03600652,99.58543348],[4.5364728,0.03600477,99.5861287],[4.53647235,0.03600302,99.58682291],[4.5364719,0.03600128,99.58751611],[4.53647145,0.03599953,99.58820828],[4.536471,0.03599779,99.58889943],[4.53647055,0.03599604,99.58958956],[4.5364701,0.03599429,99.59027866],[4.53646964,0.03599255,99.59096674],[4.53646919,0.0359908,99.5916538],[4.53646874,0.03598906,99.59233983],[4.53646829,0.03598731,99.59302484],[4.53646784,0.03598556,99.59370882],[4.53646739,0.03598382,99.59439176],[4.53646694,0.03598207,99.59507368],[4.53646649,0.03598033,99.59575457],[4.53646604,0.03597858,99.59643443],[4.53646559,0.03597683,99.59711325],[4.53646514,0.03597509,99.59779104],[4.53646468,0.03597334,99.5984678],[4.53646423,0.0359716,99.59914352],[4.53646378,0.03596985,99.5998182],[4.53646333,0.0359681,99.60049185],[4.53646288,0.03596636,99.60116446],[4.53646243,0.03596461,99.60183603],[4.53646198,0.03596287,99.60250655],[4.53646153,0.03596112,99.60317604],[4.53646108,0.03595937,99.60384448],[4.53646062,0.03595763,99.60451189],[4.53646017,0.03595588,99.60517824],[4.53645972,0.03595414,99.60584355],[4.53645927,0.03595239,99.60650782],[4.53645882,0.03595064,99.60717103],[4.53645837,0.0359489,99.6078332],[4.53645792,0.03594715,99.60849432],[4.53645747,0.03594541,99.60915439],[4.53645702,0.03594366,99.60981341],[4.53645656,0.03594191,99.61047137],[4.53645611,0.03594017,99.61112828],[4.53645566,0.03593842,99.61178414],[4.53645521,0.03593668,99.61243895],[4.53645476,0.03593493,99.61309271],[4.53645431,0.03593318,99.61374543],[4.53645386,0.03593144,99.61439712],[4.53645341,0.03592969,99.61504777],[4.53645295,0.03592795,99.61569739],[4.5364525,0.0359262,99.61634599],[4.53645205,0.03592445,99.61699357],[4.5364516,0.03592271,99.61764014],[4.53645115,0.03592096,99.61828569],[4.5364507,0.03591922,99.61893024],[4.53645025,0.03591747,99.61957378],[4.5364498,0.03591572,99.62021632],[4.53644934,0.03591398,99.62085787],[4.53644889,0.03591223,99.62149843],[4.53644844,0.03591049,99.622138],[4.53644799,0.03590874,99.62277659],[4.53644754,0.03590699,99.6234142],[4.53644709,0.03590525,99.62405084],[4.53644664,0.0359035,99.6246865],[4.53644619,0.03590176,99.6253212],[4.53644574,0.03590001,99.62595494],[4.53644528,0.03589826,99.62658772],[4.53644483,0.03589652,99.62721955],[4.53644438,0.03589477,99.62785042],[4.53644393,0.03589303,99.62848035],[4.53644348,0.03589128,99.62910934],[4.53644303,0.03588953,99.62973738],[4.53644258,0.03588779,99.63036448],[4.53644213,0.03588604,99.63099064],[4.53644167,0.0358843,99.63161586],[4.53644122,0.03588255,99.63224015],[4.53644077,0.0358808,99.63286351],[4.53644032,0.03587906,99.63348594],[4.53643987,0.03587731,99.63410744],[4.53643942,0.03587557,99.63472802],[4.53643897,0.03587382,99.63534767],[4.53643852,0.03587207,99.6359664],[4.53643806,0.03587033,99.63658422],[4.53643761,0.03586858,99.63720111],[4.53643716,0.03586684,99.6378171],[4.53643671,0.03586509,99.63843217],[4.53643626,0.03586334,99.63904633],[4.53643581,0.0358616,99.63965958],[4.53643536,0.03585985,99.64027193],[4.53643491,0.03585811,99.64088338],[4.53643446,0.03585636,99.64149392],[4.536434,0.03585461,99.64210357],[4.53643355,0.03585287,99.64271232],[4.5364331,0.03585112,99.64332018],[4.53643265,0.03584938,99.64392714],[4.5364322,0.03584763,99.64453322],[4.53643175,0.03584588,99.64513841],[4.5364313,0.03584414,99.64574271],[4.53643085,0.03584239,99.64634613],[4.5364304,0.03584065,99.64694867],[4.53642994,0.0358389,99.64755033],[4.53642949,0.03583715,99.64815112],[4.53642904,0.03583541,99.64875103],[4.53642859,0.03583366,99.64935007],[4.53642814,0.03583192,99.64994824],[4.53642769,0.03583017,99.65054555],[4.53642724,0.03582842,99.65114199],[4.53642679,0.03582668,99.65173756],[4.53642634,0.03582493,99.65233228],[4.53642588,0.03582319,99.65292614],[4.53642543,0.03582144,99.65351914],[4.53642498,0.03581969,99.65411129],[4.53642453,0.03581795,99.65470259],[4.53642408,0.0358162,99.65529303],[4.53642363,0.03581446,99.65588264],[4.53642318,0.03581271,99.65647139],[4.53642273,0.03581096,99.65705931],[4.53642227,0.03580922,99.65764638],[4.53642182,0.03580747,99.65823262],[4.53642137,0.03580573,99.65881802],[4.53642092,0.03580398,99.65940259],[4.53642047,0.03580223,99.65998633],[4.53642002,0.03580049,99.66056924],[4.53641957,0.03579874,99.66115132],[4.53641912,0.035797,99.66173258],[4.53641867,0.03579525,99.66231302],[4.53641821,0.03579351,99.66289263],[4.53641776,0.03579176,99.66347143],[4.53641731,0.03579001,99.66404942],[4.53641686,0.03578827,99.66462659],[4.53641641,0.03578652,99.66520295],[4.53641596,0.03578478,99.66577851],[4.53641551,0.03578303,99.66635326],[4.53641506,0.03578128,99.6669272],[4.5364146,0.03577954,99.66750035],[4.53641415,0.03577779,99.66807269],[4.5364137,0.03577605,99.66864424],[4.53641325,0.0357743,99.669215],[4.5364128,0.03577255,99.66978496],[4.53641235,0.03577081,99.67035413],[4.5364119,0.03576906,99.67092252],[4.53641145,0.03576732,99.67149012],[4.53641099,0.03576557,99.67205694],[4.53641054,0.03576382,99.67262298],[4.53641009,0.03576208,99.67318824],[4.53640964,0.03576033,99.67375272],[4.53640919,0.03575859,99.67431643],[4.53640874,0.03575684,99.67487937],[4.53640829,0.03575509,99.67544155],[4.53640784,0.03575335,99.67600295],[4.53640738,0.0357516,99.67656359],[4.53640693,0.03574986,99.67712347],[4.53640648,0.03574811,99.6776826],[4.53640603,0.03574636,99.67824096],[4.53640558,0.03574462,99.67879857],[4.53640513,0.03574287,99.67935543],[4.53640468,0.03574113,99.67991154],[4.53640422,0.03573938,99.6804669],[4.53640377,0.03573763,99.68102151],[4.53640332,0.03573589,99.68157539],[4.53640287,0.03573414,99.68212852],[4.53640242,0.0357324,99.68268092],[4.53640197,0.03573065,99.68323258],[4.53640152,0.03572891,99.6837835],[4.53640106,0.03572716,99.6843337],[4.53640061,0.03572541,99.68488317],[4.53640016,0.03572367,99.68543191],[4.53639971,0.03572192,99.68597993],[4.53639926,0.03572018,99.68652723],[4.53639881,0.03571843,99.68707381],[4.53639835,0.03571668,99.68761967],[4.5363979,0.03571494,99.68816482],[4.53639745,0.03571319,99.68870926],[4.536397,0.03571145,99.68925299],[4.53639655,0.0357097,99.68979601],[4.5363961,0.03570795,99.69033833],[4.53639565,0.03570621,99.69087994],[4.53639519,0.03570446,99.69142086],[4.53639474,0.03570272,99.69196108],[4.53639429,0.03570097,99.6925006],[4.53639384,0.03569923,99.69303944],[4.53639339,0.03569748,99.69357758],[4.53639294,0.03569573,99.69411504],[4.53639248,0.03569399,99.69465181],[4.53639203,0.03569224,99.6951879],[4.53639158,0.0356905,99.69572331],[4.53639113,0.03568875,99.69625805],[4.53639068,0.03568701,99.69679211],[4.53639023,0.03568526,99.69732549],[4.53638977,0.03568351,99.69785821],[4.53638932,0.03568177,99.69839026],[4.53638887,0.03568002,99.69892164],[4.53638842,0.03567828,99.69945237],[4.53638797,0.03567653,99.69998243],[4.53638751,0.03567479,99.70051183],[4.53638706,0.03567304,99.70104058],[4.53638661,0.03567129,99.70156868],[4.53638616,0.03566955,99.70209613],[4.53638571,0.0356678,99.70262293],[4.53638526,0.03566606,99.70314908],[4.5363848,0.03566431,99.70367459],[4.53638435,0.03566257,99.70419947],[4.5363839,0.03566082,99.7047237],[4.53638345,0.03565907,99.7052473],[4.536383,0.03565733,99.70577027],[4.53638254,0.03565558,99.7062926],[4.53638209,0.03565384,99.70681431],[4.53638164,0.03565209,99.7073354],[4.53638119,0.03565035,99.70785586],[4.53638073,0.0356486,99.70837571],[4.53638028,0.03564685,99.70889493],[4.53637983,0.03564511,99.70941354],[4.53637938,0.03564336,99.70993154],[4.53637893,0.03564162,99.71044893],[4.53637847,0.03563987,99.71096571],[4.53637802,0.03563813,99.7114819],[4.53637757,0.03563638,99.71199748],[4.53637712,0.03563463,99.71251247],[4.53637667,0.03563289,99.71302688],[4.53637621,0.03563114,99.71354069],[4.53637576,0.0356294,99.71405393],[4.53637531,0.03562765,99.71456658],[4.53637486,0.03562591,99.71507866],[4.5363744,0.03562416,99.71559017],[4.53637395,0.03562241,99.71610111],[4.5363735,0.03562067,99.71661149],[4.53637305,0.03561892,99.7171213],[4.53637259,0.03561718,99.71763057],[4.53637214,0.03561543,99.71813928],[4.53637169,0.03561369,99.71864744],[4.53637124,0.03561194,99.71915505],[4.53637078,0.03561019,99.71966213],[4.53637033,0.03560845,99.72016867],[4.53636988,0.0356067,99.72067467],[4.53636943,0.03560496,99.72118015],[4.53636897,0.03560321,99.7216851],[4.53636852,0.03560147,99.72218953],[4.53636807,0.03559972,99.72269344],[4.53636762,0.03559798,99.72319684],[4.53636716,0.03559623,99.72369972],[4.53636671,0.03559448,99.7242021],[4.53636626,0.03559274,99.72470398],[4.5363658,0.03559099,99.72520536],[4.53636535,0.03558925,99.72570624],[4.5363649,0.0355875,99.72620664],[4.53636445,0.03558576,99.72670654],[4.53636399,0.03558401,99.72720596],[4.53636354,0.03558227,99.7277049],[4.53636309,0.03558052,99.72820337],[4.53636263,0.03557877,99.72870136],[4.53636218,0.03557703,99.72919888],[4.53636173,0.03557528,99.72969594],[4.53636127,0.03557354,99.73019253],[4.53636082,0.03557179,99.73068866],[4.53636037,0.03557005,99.73118434],[4.53635992,0.0355683,99.73167957],[4.53635946,0.03556656,99.73217435],[4.53635901,0.03556481,99.73266868],[4.53635856,0.03556307,99.73316257],[4.5363581,0.03556132,99.73365602],[4.53635765,0.03555957,99.73414904],[4.5363572,0.03555783,99.73464161],[4.53635674,0.03555608,99.73513375],[4.53635629,0.03555434,99.73562543],[4.53635584,0.03555259,99.73611667],[4.53635538,0.03555085,99.73660746],[4.53635493,0.0355491,99.73709781],[4.53635448,0.03554736,99.73758769],[4.53635402,0.03554561,99.73807713],[4.53635357,0.03554387,99.7385661],[4.53635311,0.03554212,99.73905462],[4.53635266,0.03554038,99.73954268],[4.53635221,0.03553863,99.74003027],[4.53635175,0.03553689,99.7405174],[4.5363513,0.03553514,99.74100406],[4.53635085,0.03553339,99.74149025],[4.53635039,0.03553165,99.74197597],[4.53634994,0.0355299,99.74246122],[4.53634948,0.03552816,99.74294599],[4.53634903,0.03552641,99.74343028],[4.53634858,0.03552467,99.74391409],[4.53634812,0.03552292,99.74439743],[4.53634767,0.03552118,99.74488027],[4.53634721,0.03551943,99.74536264],[4.53634676,0.03551769,99.74584451],[4.53634631,0.03551594,99.74632589],[4.53634585,0.0355142,99.74680679],[4.5363454,0.03551245,99.74728718],[4.53634494,0.03551071,99.74776708],[4.53634449,0.03550896,99.74824649],[4.53634404,0.03550722,99.74872539],[4.53634358,0.03550547,99.74920379],[4.53634313,0.03550373,99.74968168],[4.53634267,0.03550198,99.75015907],[4.53634222,0.03550024,99.75063595],[4.53634176,0.03549849,99.75111231],[4.53634131,0.03549675,99.75158817],[4.53634085,0.035495,99.75206351],[4.5363404,0.03549326,99.75253833],[4.53633994,0.03549151,99.75301263],[4.53633949,0.03548976,99.75348641],[4.53633904,0.03548802,99.75395966],[4.53633858,0.03548627,99.75443239],[4.53633813,0.03548453,99.75490459],[4.53633767,0.03548278,99.75537626],[4.53633722,0.03548104,99.7558474],[4.53633676,0.03547929,99.75631801],[4.53633631,0.03547755,99.75678807],[4.53633585,0.0354758,99.7572576],[4.5363354,0.03547406,99.75772659],[4.53633494,0.03547231,99.75819503],[4.53633449,0.03547057,99.75866293],[4.53633403,0.03546883,99.75913028],[4.53633357,0.03546708,99.75959708],[4.53633312,0.03546534,99.76006333],[4.53633266,0.03546359,99.76052903],[4.53633221,0.03546185,99.76099417],[4.53633175,0.0354601,99.76145875],[4.5363313,0.03545836,99.76192277],[4.53633084,0.03545661,99.76238622],[4.53633039,0.03545487,99.76284912],[4.53632993,0.03545312,99.76331144],[4.53632948,0.03545138,99.7637732],[4.53632902,0.03544963,99.76423438],[4.53632856,0.03544789,99.76469499],[4.53632811,0.03544614,99.76515502],[4.53632765,0.0354444,99.76561448],[4.5363272,0.03544265,99.76607335],[4.53632674,0.03544091,99.76653165],[4.53632628,0.03543916,99.76698935],[4.53632583,0.03543742,99.76744648],[4.53632537,0.03543567,99.76790301],[4.53632492,0.03543393,99.76835895],[4.53632446,0.03543218,99.76881429],[4.536324,0.03543044,99.76926904],[4.53632355,0.0354287,99.76972319],[4.53632309,0.03542695,99.77017675],[4.53632263,0.03542521,99.77062969],[4.53632218,0.03542346,99.77108204],[4.53632172,0.03542172,99.77153377],[4.53632126,0.03541997,99.7719849],[4.53632081,0.03541823,99.77243541],[4.53632035,0.03541648,99.77288531],[4.53631989,0.03541474,99.7733346],[4.53631944,0.03541299,99.77378326],[4.53631898,0.03541125,99.77423131],[4.53631852,0.03540951,99.77467873],[4.53631807,0.03540776,99.77512552],[4.53631761,0.03540602,99.77557169],[4.53631715,0.03540427,99.77601723],[4.53631669,0.03540253,99.77646213],[4.53631624,0.03540078,99.7769064],[4.53631578,0.03539904,99.77735004],[4.53631532,0.03539729,99.77779303],[4.53631486,0.03539555,99.77823538],[4.53631441,0.03539381,99.77867709],[4.53631395,0.03539206,99.77911815],[4.53631349,0.03539032,99.77955857],[4.53631303,0.03538857,99.77999835],[4.53631258,0.03538683,99.78043749],[4.53631212,0.03538508,99.78087598],[4.53631166,0.03538334,99.78131384],[4.5363112,0.0353816,99.78175105],[4.53631075,0.03537985,99.78218763],[4.53631029,0.03537811,99.78262357],[4.53630983,0.03537636,99.78305887],[4.53630937,0.03537462,99.78349354],[4.53630891,0.03537287,99.78392757],[4.53630845,0.03537113,99.78436097],[4.536308,0.03536939,99.78479373],[4.53630754,0.03536764,99.78522586],[4.53630708,0.0353659,99.78565735],[4.53630662,0.03536415,99.78608822],[4.53630616,0.03536241,99.78651846],[4.5363057,0.03536067,99.78694806],[4.53630525,0.03535892,99.78737704],[4.53630479,0.03535718,99.78780539],[4.53630433,0.03535543,99.78823311],[4.53630387,0.03535369,99.78866021],[4.53630341,0.03535195,99.78908668],[4.53630295,0.0353502,99.78951252],[4.53630249,0.03534846,99.78993774],[4.53630204,0.03534671,99.79036234],[4.53630158,0.03534497,99.79078632],[4.53630112,0.03534323,99.79120967],[4.53630066,0.03534148,99.7916324],[4.5363002,0.03533974,99.79205452],[4.53629974,0.03533799,99.79247601],[4.53629928,0.03533625,99.79289689],[4.53629882,0.03533451,99.79331715],[4.53629836,0.03533276,99.7937368],[4.53629791,0.03533102,99.79415582],[4.53629745,0.03532927,99.79457424],[4.53629699,0.03532753,99.79499204],[4.53629653,0.03532579,99.79540923],[4.53629607,0.03532404,99.7958258],[4.53629561,0.0353223,99.79624177],[4.53629515,0.03532055,99.79665712],[4.53629469,0.03531881,99.79707187],[4.53629423,0.03531707,99.79748601],[4.53629377,0.03531532,99.79789954],[4.53629331,0.03531358,99.79831246],[4.53629285,0.03531184,99.79872478],[4.53629239,0.03531009,99.79913649],[4.53629193,0.03530835,99.7995476],[4.53629148,0.0353066,99.79995811],[4.53629102,0.03530486,99.80036801],[4.53629056,0.03530312,99.80077732],[4.5362901,0.03530137,99.80118602],[4.53628964,0.03529963,99.80159413],[4.53628918,0.03529788,99.80200164],[4.53628872,0.03529614,99.80240855],[4.53628826,0.0352944,99.80281486],[4.5362878,0.03529265,99.80322058],[4.53628734,0.03529091,99.80362571],[4.53628688,0.03528917,99.80403024],[4.53628642,0.03528742,99.80443418],[4.53628596,0.03528568,99.80483753],[4.5362855,0.03528393,99.80524029],[4.53628504,0.03528219,99.80564247],[4.53628458,0.03528045,99.80604405],[4.53628412,0.0352787,99.80644505],[4.53628366,0.03527696,99.80684546],[4.5362832,0.03527522,99.80724528],[4.53628274,0.03527347,99.80764453],[4.53628228,0.03527173,99.80804319],[4.53628182,0.03526998,99.80844127],[4.53628136,0.03526824,99.80883876],[4.53628091,0.0352665,99.80923568],[4.53628045,0.03526475,99.80963202],[4.53627999,0.03526301,99.81002779],[4.53627953,0.03526126,99.81042297],[4.53627907,0.03525952,99.81081759],[4.53627861,0.03525778,99.81121163],[4.53627815,0.03525603,99.81160509],[4.53627769,0.03525429,99.81199799],[4.53627723,0.03525255,99.81239031],[4.53627677,0.0352508,99.81278207],[4.53627631,0.03524906,99.81317326],[4.53627585,0.03524731,99.81356388],[4.53627539,0.03524557,99.81395393],[4.53627493,0.03524383,99.81434342],[4.53627447,0.03524208,99.81473235],[4.53627401,0.03524034,99.81512071],[4.53627355,0.0352386,99.81550852],[4.53627309,0.03523685,99.81589576],[4.53627263,0.03523511,99.81628245],[4.53627217,0.03523336,99.81666858],[4.53627171,0.03523162,99.81705416],[4.53627125,0.03522988,99.81743917],[4.53627079,0.03522813,99.81782364],[4.53627033,0.03522639,99.81820755],[4.53626988,0.03522464,99.81859092],[4.53626942,0.0352229,99.81897373],[4.53626896,0.03522116,99.81935599],[4.5362685,0.03521941,99.8197377],[4.53626804,0.03521767,99.82011884],[4.53626758,0.03521593,99.82049943],[4.53626712,0.03521418,99.82087946],[4.53626666,0.03521244,99.82125892],[4.5362662,0.03521069,99.82163781],[4.53626574,0.03520895,99.82201614],[4.53626528,0.03520721,99.82239389],[4.53626482,0.03520546,99.82277107],[4.53626436,0.03520372,99.82314768],[4.5362639,0.03520197,99.8235237],[4.53626344,0.03520023,99.82389915],[4.53626299,0.03519849,99.82427401],[4.53626253,0.03519674,99.82464828],[4.53626207,0.035195,99.82502197],[4.53626161,0.03519326,99.82539507],[4.53626115,0.03519151,99.82576757],[4.53626069,0.03518977,99.82613948],[4.53626023,0.03518802,99.82651079],[4.53625977,0.03518628,99.8268815],[4.53625931,0.03518454,99.82725161],[4.53625885,0.03518279,99.82762111],[4.53625839,0.03518105,99.82799],[4.53625793,0.0351793,99.82835829],[4.53625748,0.03517756,99.82872596],[4.53625702,0.03517582,99.82909302],[4.53625656,0.03517407,99.82945946],[4.5362561,0.03517233,99.82982528],[4.53625564,0.03517058,99.83019048],[4.53625518,0.03516884,99.83055506],[4.53625472,0.0351671,99.83091901],[4.53625426,0.03516535,99.83128233],[4.5362538,0.03516361,99.83164502],[4.53625334,0.03516186,99.83200708],[4.53625288,0.03516012,99.83236849],[4.53625243,0.03515838,99.83272927],[4.53625197,0.03515663,99.83308941],[4.53625151,0.03515489,99.83344891],[4.53625105,0.03515314,99.83380776],[4.53625059,0.0351514,99.83416596],[4.53625013,0.03514966,99.83452351],[4.53624967,0.03514791,99.8348804],[4.53624921,0.03514617,99.83523664],[4.53624875,0.03514442,99.83559223],[4.53624829,0.03514268,99.83594715],[4.53624784,0.03514094,99.83630141],[4.53624738,0.03513919,99.836655],[4.53624692,0.03513745,99.83700792],[4.53624646,0.0351357,99.83736018],[4.536246,0.03513396,99.83771176],[4.53624554,0.03513222,99.83806266],[4.53624508,0.03513047,99.83841289],[4.53624462,0.03512873,99.83876244],[4.53624416,0.03512698,99.8391113],[4.5362437,0.03512524,99.83945948],[4.53624324,0.0351235,99.83980697],[4.53624279,0.03512175,99.84015377],[4.53624233,0.03512001,99.84049987],[4.53624187,0.03511827,99.84084529],[4.53624141,0.03511652,99.84119],[4.53624095,0.03511478,99.84153401],[4.53624049,0.03511303,99.84187732],[4.53624003,0.03511129,99.84221992],[4.53623957,0.03510955,99.84256182],[4.53623911,0.0351078,99.84290301],[4.53623865,0.03510606,99.84324348],[4.53623819,0.03510431,99.84358324],[4.53623773,0.03510257,99.84392228],[4.53623728,0.03510083,99.84426059],[4.53623682,0.03509908,99.84459819],[4.53623636,0.03509734,99.84493506],[4.5362359,0.03509559,99.8452712],[4.53623544,0.03509385,99.84560661],[4.53623498,0.03509211,99.84594129],[4.53623452,0.03509036,99.84627523],[4.53623406,0.03508862,99.84660843],[4.5362336,0.03508687,99.84694089],[4.53623314,0.03508513,99.84727261],[4.53623268,0.03508339,99.84760358],[4.53623222,0.03508164,99.84793381],[4.53623176,0.0350799,99.84826328],[4.5362313,0.03507816,99.848592],[4.53623084,0.03507641,99.84891996],[4.53623039,0.03507467,99.84924716],[4.53622993,0.03507292,99.8495736],[4.53622947,0.03507118,99.84989928],[4.53622901,0.03506944,99.85022419],[4.53622855,0.03506769,99.85054833],[4.53622809,0.03506595,99.8508717],[4.53622763,0.0350642,99.8511943],[4.53622717,0.03506246,99.85151611],[4.53622671,0.03506072,99.85183715],[4.53622625,0.03505897,99.85215741],[4.53622579,0.03505723,99.85247688],[4.53622533,0.03505549,99.85279556],[4.53622487,0.03505374,99.85311345],[4.53622441,0.035052,99.85343055],[4.53622395,0.03505025,99.85374686],[4.53622349,0.03504851,99.85406236],[4.53622303,0.03504677,99.85437707],[4.53622257,0.03504502,99.85469097],[4.53622211,0.03504328,99.85500407],[4.53622165,0.03504153,99.85531635],[4.53622119,0.03503979,99.85562783],[4.53622073,0.03503805,99.85593849],[4.53622027,0.0350363,99.85624834],[4.53621981,0.03503456,99.85655736],[4.53621935,0.03503282,99.85686557],[4.53621889,0.03503107,99.85717295],[4.53621843,0.03502933,99.8574795],[4.53621797,0.03502759,99.85778523],[4.53621751,0.03502584,99.85809012],[4.53621705,0.0350241,99.85839417],[4.53621659,0.03502235,99.85869739],[4.53621613,0.03502061,99.85899977],[4.53621567,0.03501887,99.8593013],[4.53621521,0.03501712,99.85960199],[4.53621475,0.03501538,99.85990183],[4.53621429,0.03501364,99.86020082],[4.53621383,0.03501189,99.86049895],[4.53621337,0.03501015,99.86079623],[4.53621291,0.03500841,99.86109265],[4.53621245,0.03500666,99.8613882],[4.53621199,0.03500492,99.86168289],[4.53621153,0.03500317,99.86197672],[4.53621107,0.03500143,99.86226968],[4.5362106,0.03499969,99.86256178],[4.53621014,0.03499794,99.86285301],[4.53620968,0.0349962,99.86314337],[4.53620922,0.03499446,99.86343287],[4.53620876,0.03499271,99.8637215],[4.5362083,0.03499097,99.86400927],[4.53620784,0.03498923,99.86429617],[4.53620738,0.03498749,99.86458221],[4.53620692,0.03498574,99.86486738],[4.53620646,0.034984,99.86515168],[4.536206,0.03498226,99.86543512],[4.53620554,0.03498051,99.8657177],[4.53620507,0.03497877,99.8659994],[4.53620461,0.03497703,99.86628025],[4.53620415,0.03497528,99.86656023],[4.53620369,0.03497354,99.86683934],[4.53620323,0.0349718,99.86711759],[4.53620277,0.03497005,99.86739497],[4.53620231,0.03496831,99.86767148],[4.53620185,0.03496657,99.86794714],[4.53620139,0.03496482,99.86822192],[4.53620092,0.03496308,99.86849584],[4.53620046,0.03496133,99.8687689],[4.5362,0.03495959,99.86904109],[4.53619954,0.03495785,99.86931242],[4.53619908,0.0349561,99.86958288],[4.53619862,0.03495436,99.86985247],[4.53619816,0.03495262,99.87012121],[4.53619769,0.03495087,99.87038907],[4.53619723,0.03494913,99.87065607],[4.53619677,0.03494739,99.87092221],[4.53619631,0.03494565,99.87118749],[4.53619585,0.0349439,99.8714519],[4.53619539,0.03494216,99.87171544],[4.53619493,0.03494042,99.87197812],[4.53619446,0.03493867,99.87223994],[4.536194,0.03493693,99.87250089],[4.53619354,0.03493519,99.87276098],[4.53619308,0.03493344,99.8730202],[4.53619262,0.0349317,99.87327856],[4.53619216,0.03492996,99.87353606],[4.53619169,0.03492821,99.87379269],[4.53619123,0.03492647,99.87404846],[4.53619077,0.03492473,99.87430337],[4.53619031,0.03492298,99.87455741],[4.53618985,0.03492124,99.87481059],[4.53618938,0.0349195,99.87506291],[4.53618892,0.03491775,99.87531436],[4.53618846,0.03491601,99.87556495],[4.536188,0.03491427,99.87581468],[4.53618754,0.03491252,99.87606355],[4.53618708,0.03491078,99.87631155],[4.53618661,0.03490904,99.87655869],[4.53618615,0.03490729,99.87680497],[4.53618569,0.03490555,99.87705039],[4.53618523,0.03490381,99.87729494],[4.53618477,0.03490206,99.87753863],[4.5361843,0.03490032,99.87778146],[4.53618384,0.03489858,99.87802343],[4.53618338,0.03489683,99.87826454],[4.53618292,0.03489509,99.87850478],[4.53618246,0.03489335,99.87874416],[4.53618199,0.03489161,99.87898269],[4.53618153,0.03488986,99.87922035],[4.53618107,0.03488812,99.87945715],[4.53618061,0.03488638,99.87969309],[4.53618015,0.03488463,99.87992816],[4.53617968,0.03488289,99.88016238],[4.53617922,0.03488115,99.88039574],[4.53617876,0.0348794,99.88062823],[4.5361783,0.03487766,99.88085987],[4.53617784,0.03487592,99.88109064],[4.53617738,0.03487417,99.88132056],[4.53617691,0.03487243,99.88154961],[4.53617645,0.03487069,99.88177781],[4.53617599,0.03486894,99.88200514],[4.53617553,0.0348672,99.88223162],[4.53617507,0.03486546,99.88245723],[4.5361746,0.03486371,99.88268199],[4.53617414,0.03486197,99.88290589],[4.53617368,0.03486023,99.88312892],[4.53617322,0.03485849,99.8833511],[4.53617276,0.03485674,99.88357242],[4.53617229,0.034855,99.88379288],[4.53617183,0.03485326,99.88401248],[4.53617137,0.03485151,99.88423122],[4.53617091,0.03484977,99.88444911],[4.53617045,0.03484803,99.88466613],[4.53616998,0.03484628,99.8848823],[4.53616952,0.03484454,99.8850976],[4.53616906,0.0348428,99.88531205],[4.5361686,0.03484105,99.88552564],[4.53616814,0.03483931,99.88573838],[4.53616767,0.03483757,99.88595025],[4.53616721,0.03483582,99.88616127],[4.53616675,0.03483408,99.88637142],[4.53616629,0.03483234,99.88658073],[4.53616583,0.03483059,99.88678917],[4.53616536,0.03482885,99.88699675],[4.5361649,0.03482711,99.88720348],[4.53616444,0.03482537,99.88740935],[4.53616398,0.03482362,99.88761436],[4.53616352,0.03482188,99.88781851],[4.53616306,0.03482014,99.88802181],[4.53616259,0.03481839,99.88822425],[4.53616213,0.03481665,99.88842583],[4.53616167,0.03481491,99.88862655],[4.53616121,0.03481316,99.88882642],[4.53616075,0.03481142,99.88902543],[4.53616029,0.03480968,99.88922358],[4.53615982,0.03480793,99.88942087],[4.53615936,0.03480619,99.88961731],[4.5361589,0.03480445,99.88981289],[4.53615844,0.0348027,99.89000761],[4.53615798,0.03480096,99.89020148],[4.53615752,0.03479922,99.89039448],[4.53615705,0.03479747,99.89058663],[4.53615659,0.03479573,99.89077793],[4.53615613,0.03479399,99.89096836],[4.53615567,0.03479224,99.89115794],[4.53615521,0.0347905,99.89134666],[4.53615475,0.03478876,99.89153452],[4.53615428,0.03478701,99.89172153],[4.53615382,0.03478527,99.89190768],[4.53615336,0.03478353,99.89209298],[4.5361529,0.03478178,99.89227742],[4.53615244,0.03478004,99.89246101],[4.53615198,0.0347783,99.89264373],[4.53615152,0.03477655,99.8928256],[4.53615106,0.03477481,99.89300661],[4.53615059,0.03477307,99.89318676],[4.53615013,0.03477132,99.89336605],[4.53614967,0.03476958,99.89354448],[4.53614921,0.03476784,99.89372205],[4.53614875,0.03476609,99.89389876],[4.53614829,0.03476435,99.89407461],[4.53614783,0.03476261,99.89424959],[4.53614737,0.03476086,99.89442371],[4.5361469,0.03475912,99.89459696],[4.53614644,0.03475738,99.89476935],[4.53614598,0.03475563,99.89494088],[4.53614552,0.03475389,99.89511154],[4.53614506,0.03475215,99.89528133],[4.5361446,0.0347504,99.89545026],[4.53614414,0.03474866,99.89561832],[4.53614368,0.03474692,99.8957855],[4.53614321,0.03474517,99.89595183],[4.53614275,0.03474343,99.89611728],[4.53614229,0.03474169,99.89628186],[4.53614183,0.03473994,99.89644557],[4.53614137,0.0347382,99.89660841],[4.53614091,0.03473646,99.89677038],[4.53614045,0.03473471,99.89693147],[4.53613999,0.03473297,99.89709169],[4.53613953,0.03473123,99.89725104],[4.53613906,0.03472948,99.89740951],[4.5361386,0.03472774,99.89756711],[4.53613814,0.034726,99.89772383],[4.53613768,0.03472425,99.89787968],[4.53613722,0.03472251,99.89803465],[4.53613676,0.03472077,99.89818874],[4.5361363,0.03471902,99.89834195],[4.53613584,0.03471728,99.89849429],[4.53613538,0.03471554,99.89864574],[4.53613492,0.03471379,99.89879632],[4.53613445,0.03471205,99.89894602],[4.53613399,0.03471031,99.89909483],[4.53613353,0.03470856,99.89924276],[4.53613307,0.03470682,99.89938981],[4.53613261,0.03470508,99.89953598],[4.53613215,0.03470333,99.89968127],[4.53613169,0.03470159,99.89982567],[4.53613123,0.03469985,99.89996918],[4.53613076,0.0346981,99.90011182],[4.5361303,0.03469636,99.90025356],[4.53612984,0.03469462,99.90039442],[4.53612938,0.03469287,99.90053439],[4.53612892,0.03469113,99.90067348],[4.53612846,0.03468939,99.90081168],[4.536128,0.03468764,99.90094898],[4.53612754,0.0346859,99.9010854],[4.53612708,0.03468416,99.90122093],[4.53612661,0.03468241,99.90135558],[4.53612615,0.03468067,99.90148933],[4.53612569,0.03467893,99.90162218],[4.53612523,0.03467718,99.90175415],[4.53612477,0.03467544,99.90188523],[4.53612431,0.0346737,99.90201541],[4.53612385,0.03467195,99.9021447],[4.53612338,0.03467021,99.90227309],[4.53612292,0.03466847,99.9024006],[4.53612246,0.03466672,99.9025272],[4.536122,0.03466498,99.90265291],[4.53612154,0.03466324,99.90277773],[4.53612108,0.0346615,99.90290165],[4.53612062,0.03465975,99.90302467],[4.53612015,0.03465801,99.9031468],[4.53611969,0.03465627,99.90326803],[4.53611923,0.03465452,99.90338836],[4.53611877,0.03465278,99.90350779],[4.53611831,0.03465104,99.90362633],[4.53611785,0.03464929,99.90374396],[4.53611738,0.03464755,99.9038607],[4.53611692,0.03464581,99.90397653],[4.53611646,0.03464406,99.90409147],[4.536116,0.03464232,99.9042055],[4.53611554,0.03464058,99.90431863],[4.53611508,0.03463883,99.90443086],[4.53611461,0.03463709,99.90454219],[4.53611415,0.03463535,99.90465262],[4.53611369,0.0346336,99.90476214],[4.53611323,0.03463186,99.90487076],[4.53611277,0.03463012,99.90497847],[4.5361123,0.03462838,99.90508529],[4.53611184,0.03462663,99.90519119],[4.53611138,0.03462489,99.9052962],[4.53611092,0.03462315,99.9054003],[4.53611045,0.0346214,99.90550349],[4.53610999,0.03461966,99.90560578],[4.53610953,0.03461792,99.90570716],[4.53610907,0.03461617,99.90580763],[4.53610861,0.03461443,99.9059072],[4.53610814,0.03461269,99.90600586],[4.53610768,0.03461095,99.90610362],[4.53610722,0.0346092,99.90620046],[4.53610676,0.03460746,99.9062964],[4.53610629,0.03460572,99.90639143],[4.53610583,0.03460397,99.90648556],[4.53610537,0.03460223,99.90657877],[4.53610491,0.03460049,99.90667108],[4.53610444,0.03459874,99.90676248],[4.53610398,0.034597,99.90685296],[4.53610352,0.03459526,99.90694254],[4.53610305,0.03459352,99.90703121],[4.53610259,0.03459177,99.90711897],[4.53610213,0.03459003,99.90720582],[4.53610167,0.03458829,99.90729176],[4.5361012,0.03458654,99.90737679],[4.53610074,0.0345848,99.90746091],[4.53610028,0.03458306,99.90754412],[4.53609981,0.03458132,99.90762642],[4.53609935,0.03457957,99.9077078],[4.53609889,0.03457783,99.90778828],[4.53609842,0.03457609,99.90786784],[4.53609796,0.03457435,99.9079465],[4.5360975,0.0345726,99.90802424],[4.53609703,0.03457086,99.90810107],[4.53609657,0.03456912,99.90817699],[4.53609611,0.03456737,99.908252],[4.53609564,0.03456563,99.9083261],[4.53609518,0.03456389,99.90839928],[4.53609471,0.03456215,99.90847155],[4.53609425,0.0345604,99.90854291],[4.53609379,0.03455866,99.90861336],[4.53609332,0.03455692,99.9086829],[4.53609286,0.03455518,99.90875153],[4.53609239,0.03455343,99.90881924],[4.53609193,0.03455169,99.90888604],[4.53609147,0.03454995,99.90895193],[4.536091,0.03454821,99.90901691],[4.53609054,0.03454646,99.90908098],[4.53609007,0.03454472,99.90914413],[4.53608961,0.03454298,99.90920637],[4.53608914,0.03454124,99.9092677],[4.53608868,0.03453949,99.90932812],[4.53608821,0.03453775,99.90938763],[4.53608775,0.03453601,99.90944623],[4.53608728,0.03453427,99.90950391],[4.53608682,0.03453253,99.90956069],[4.53608636,0.03453078,99.90961655],[4.53608589,0.03452904,99.9096715],[4.53608543,0.0345273,99.90972554],[4.53608496,0.03452556,99.90977867],[4.53608449,0.03452381,99.90983089],[4.53608403,0.03452207,99.9098822],[4.53608356,0.03452033,99.9099326],[4.5360831,0.03451859,99.90998209],[4.53608263,0.03451685,99.91003066],[4.53608217,0.0345151,99.91007833],[4.5360817,0.03451336,99.91012509],[4.53608124,0.03451162,99.91017095],[4.53608077,0.03450988,99.9102159],[4.5360803,0.03450814,99.91025996],[4.53607984,0.03450639,99.91030313],[4.53607937,0.03450465,99.91034542],[4.53607891,0.03450291,99.91038682],[4.53607844,0.03450117,99.91042734],[4.53607797,0.03449943,99.91046699],[4.53607751,0.03449768,99.91050577],[4.53607704,0.03449594,99.91054369],[4.53607657,0.0344942,99.91058074],[4.53607611,0.03449246,99.91061694],[4.53607564,0.03449072,99.91065229],[4.53607518,0.03448897,99.91068679],[4.53607471,0.03448723,99.91072045],[4.53607424,0.03448549,99.91075327],[4.53607378,0.03448375,99.91078526],[4.53607331,0.03448201,99.91081642],[4.53607284,0.03448027,99.91084675],[4.53607237,0.03447852,99.91087626],[4.53607191,0.03447678,99.91090496],[4.53607144,0.03447504,99.91093284],[4.53607097,0.0344733,99.91095992],[4.53607051,0.03447156,99.91098619],[4.53607004,0.03446982,99.91101166],[4.53606957,0.03446807,99.91103634],[4.5360691,0.03446633,99.91106023],[4.53606864,0.03446459,99.91108333],[4.53606817,0.03446285,99.91110565],[4.5360677,0.03446111,99.91112719],[4.53606723,0.03445937,99.91114796],[4.53606677,0.03445762,99.91116796],[4.5360663,0.03445588,99.9111872],[4.53606583,0.03445414,99.91120567],[4.53606536,0.0344524,99.91122339],[4.5360649,0.03445066,99.91124035],[4.53606443,0.03444892,99.91125657],[4.53606396,0.03444718,99.91127204],[4.53606349,0.03444543,99.91128678],[4.53606302,0.03444369,99.91130078],[4.53606256,0.03444195,99.91131405],[4.53606209,0.03444021,99.91132659],[4.53606162,0.03443847,99.91133841],[4.53606115,0.03443673,99.91134951],[4.53606068,0.03443499,99.9113599],[4.53606021,0.03443324,99.91136957],[4.53605975,0.0344315,99.91137854],[4.53605928,0.03442976,99.91138681],[4.53605881,0.03442802,99.91139438],[4.53605834,0.03442628,99.91140126],[4.53605787,0.03442454,99.91140745],[4.5360574,0.0344228,99.91141295],[4.53605694,0.03442106,99.91141778],[4.53605647,0.03441931,99.91142192],[4.536056,0.03441757,99.91142539],[4.53605553,0.03441583,99.9114282],[4.53605506,0.03441409,99.91143034],[4.53605459,0.03441235,99.91143181],[4.53605412,0.03441061,99.91143264],[4.53605366,0.03440887,99.91143281],[4.53605319,0.03440713,99.91143233],[4.53605272,0.03440538,99.9114312],[4.53605225,0.03440364,99.91142944],[4.53605178,0.0344019,99.91142704],[4.53605131,0.03440016,99.91142401],[4.53605084,0.03439842,99.91142035],[4.53605037,0.03439668,99.91141606],[4.5360499,0.03439494,99.91141116],[4.53604944,0.0343932,99.91140563],[4.53604897,0.03439146,99.9113995],[4.5360485,0.03438971,99.91139276],[4.53604803,0.03438797,99.91138541],[4.53604756,0.03438623,99.91137746],[4.53604709,0.03438449,99.91136892],[4.53604662,0.03438275,99.91135978],[4.53604615,0.03438101,99.91135006],[4.53604568,0.03437927,99.91133975],[4.53604521,0.03437753,99.91132886],[4.53604474,0.03437579,99.91131739],[4.53604428,0.03437404,99.91130535],[4.53604381,0.0343723,99.91129274],[4.53604334,0.03437056,99.91127957],[4.53604287,0.03436882,99.91126583],[4.5360424,0.03436708,99.91125154],[4.53604193,0.03436534,99.91123669],[4.53604146,0.0343636,99.91122129],[4.53604099,0.03436186,99.91120535],[4.53604052,0.03436012,99.91118886],[4.53604005,0.03435837,99.91117184],[4.53603958,0.03435663,99.91115428],[4.53603911,0.03435489,99.91113619],[4.53603865,0.03435315,99.91111757],[4.53603818,0.03435141,99.91109843],[4.53603771,0.03434967,99.91107878],[4.53603724,0.03434793,99.9110586],[4.53603677,0.03434619,99.91103791],[4.5360363,0.03434445,99.91101672],[4.53603583,0.0343427,99.91099502],[4.53603536,0.03434096,99.91097282],[4.53603489,0.03433922,99.91095012],[4.53603442,0.03433748,99.91092694],[4.53603395,0.03433574,99.91090326],[4.53603348,0.034334,99.91087909],[4.53603301,0.03433226,99.91085444],[4.53603254,0.03433052,99.91082932],[4.53603208,0.03432878,99.91080372],[4.53603161,0.03432704,99.91077765],[4.53603114,0.03432529,99.91075111],[4.53603067,0.03432355,99.91072411],[4.5360302,0.03432181,99.91069664],[4.53602973,0.03432007,99.91066872],[4.53602926,0.03431833,99.91064035],[4.53602879,0.03431659,99.91061153],[4.53602832,0.03431485,99.91058227],[4.53602785,0.03431311,99.91055256],[4.53602738,0.03431137,99.91052241],[4.53602691,0.03430962,99.91049183],[4.53602645,0.03430788,99.91046082],[4.53602598,0.03430614,99.91042937],[4.53602551,0.0343044,99.91039751],[4.53602504,0.03430266,99.91036522],[4.53602457,0.03430092,99.91033252],[4.5360241,0.03429918,99.91029941],[4.53602363,0.03429744,99.91026588],[4.53602316,0.0342957,99.91023195],[4.53602269,0.03429395,99.91019762],[4.53602222,0.03429221,99.91016288],[4.53602175,0.03429047,99.91012775],[4.53602129,0.03428873,99.91009223],[4.53602082,0.03428699,99.91005632],[4.53602035,0.03428525,99.91002002],[4.53601988,0.03428351,99.90998335],[4.53601941,0.03428177,99.90994629],[4.53601894,0.03428003,99.90990886],[4.53601847,0.03427828,99.90987106],[4.536018,0.03427654,99.90983289],[4.53601754,0.0342748,99.90979435],[4.53601707,0.03427306,99.90975546],[4.5360166,0.03427132,99.9097162],[4.53601613,0.03426958,99.9096766],[4.53601566,0.03426784,99.90963664],[4.53601519,0.0342661,99.90959633],[4.53601472,0.03426435,99.90955568],[4.53601426,0.03426261,99.90951469],[4.53601379,0.03426087,99.90947337],[4.53601332,0.03425913,99.90943171],[4.53601285,0.03425739,99.90938972],[4.53601238,0.03425565,99.9093474],[4.53601191,0.03425391,99.90930476],[4.53601145,0.03425217,99.9092618],[4.53601098,0.03425042,99.90921852],[4.53601051,0.03424868,99.90917493],[4.53601004,0.03424694,99.90913102],[4.53600957,0.0342452,99.90908682],[4.5360091,0.03424346,99.9090423],[4.53600864,0.03424172,99.90899749],[4.53600817,0.03423998,99.90895238],[4.5360077,0.03423824,99.90890698],[4.53600723,0.03423649,99.90886129],[4.53600676,0.03423475,99.90881531],[4.5360063,0.03423301,99.90876905],[4.53600583,0.03423127,99.90872251],[4.53600536,0.03422953,99.90867569],[4.53600489,0.03422779,99.9086286],[4.53600443,0.03422604,99.90858124],[4.53600396,0.0342243,99.90853361],[4.53600349,0.03422256,99.90848572],[4.53600302,0.03422082,99.90843756],[4.53600256,0.03421908,99.90838915],[4.53600209,0.03421734,99.90834049],[4.53600162,0.0342156,99.90829158],[4.53600115,0.03421385,99.90824242],[4.53600069,0.03421211,99.90819301],[4.53600022,0.03421037,99.90814337],[4.53599975,0.03420863,99.90809349],[4.53599928,0.03420689,99.90804337],[4.53599882,0.03420515,99.90799302],[4.53599835,0.0342034,99.90794245],[4.53599788,0.03420166,99.90789165],[4.53599742,0.03419992,99.90784063],[4.53599695,0.03419818,99.9077894],[4.53599648,0.03419644,99.90773795],[4.53599602,0.0341947,99.90768628],[4.53599555,0.03419295,99.90763441],[4.53599508,0.03419121,99.90758234],[4.53599462,0.03418947,99.90753006],[4.53599415,0.03418773,99.90747758],[4.53599368,0.03418599,99.90742488],[4.53599322,0.03418424,99.90737197],[4.53599275,0.0341825,99.90731884],[4.53599228,0.03418076,99.90726548],[4.53599182,0.03417902,99.9072119],[4.53599135,0.03417728,99.90715808],[4.53599089,0.03417554,99.90710403],[4.53599042,0.03417379,99.90704974],[4.53598995,0.03417205,99.9069952],[4.53598949,0.03417031,99.90694042],[4.53598902,0.03416857,99.90688538],[4.53598856,0.03416683,99.90683008],[4.53598809,0.03416508,99.90677453],[4.53598762,0.03416334,99.90671871],[4.53598716,0.0341616,99.90666262],[4.53598669,0.03415986,99.90660626],[4.53598623,0.03415812,99.90654962],[4.53598576,0.03415637,99.90649271],[4.53598529,0.03415463,99.90643551],[4.53598483,0.03415289,99.90637802],[4.53598436,0.03415115,99.90632024],[4.5359839,0.03414941,99.90626216],[4.53598343,0.03414766,99.90620378],[4.53598297,0.03414592,99.9061451],[4.5359825,0.03414418,99.90608612],[4.53598226,0.03414327,99.90605533],[4.53598617,0.03414221,99.91624483],[4.53598642,0.03414311,99.91629442],[4.5359869,0.03414485,99.91639067],[4.53598738,0.03414659,99.91648792],[4.53598786,0.03414833,99.91658605],[4.53598833,0.03415007,99.91668492],[4.53598881,0.03415181,99.91678439],[4.53598929,0.03415354,99.91688433],[4.53598977,0.03415528,99.91698459],[4.53599025,0.03415702,99.91708504],[4.53599073,0.03415876,99.91718554],[4.53599121,0.0341605,99.91728596],[4.53599169,0.03416223,99.91738615],[4.53599217,0.03416397,99.91748598],[4.53599265,0.03416571,99.9175853],[4.53599313,0.03416745,99.91768398],[4.53599361,0.03416919,99.91778187],[4.53599409,0.03417093,99.91787884],[4.53599457,0.03417267,99.91797474],[4.53599505,0.0341744,99.91806943],[4.53599552,0.03417614,99.91816277],[4.535996,0.03417788,99.91825462],[4.53599648,0.03417962,99.91834484],[4.53599696,0.03418136,99.91843327],[4.53599743,0.0341831,99.91851978],[4.53599791,0.03418484,99.91860422],[4.53599838,0.03418658,99.91868646],[4.53599885,0.03418832,99.91876633],[4.53599933,0.03419006,99.9188437],[4.5359998,0.0341918,99.91891842],[4.53600027,0.03419354,99.91899034],[4.53600074,0.03419528,99.9190593],[4.53600121,0.03419702,99.91912515],[4.53600168,0.03419876,99.91918773],[4.53600214,0.0342005,99.9192469],[4.53600261,0.03420225,99.91930263],[4.53600307,0.03420399,99.91935506],[4.53600354,0.03420573,99.91940432],[4.536004,0.03420747,99.91945055],[4.53600446,0.03420922,99.91949388],[4.53600492,0.03421096,99.91953445],[4.53600538,0.03421271,99.91957238],[4.53600584,0.03421445,99.91960782],[4.5360063,0.03421619,99.9196409],[4.53600675,0.03421794,99.91967177],[4.53600721,0.03421968,99.91970054],[4.53600767,0.03422143,99.91972737],[4.53600812,0.03422317,99.91975239],[4.53600858,0.03422492,99.91977574],[4.53600903,0.03422666,99.91979756],[4.53600949,0.03422841,99.91981799],[4.53600994,0.03423015,99.91983716],[4.5360104,0.0342319,99.91985523],[4.53601085,0.03423364,99.91987231],[4.5360113,0.03423539,99.91988857],[4.53601176,0.03423713,99.91990414],[4.53601221,0.03423888,99.91991916],[4.53601266,0.03424062,99.91993378],[4.53601312,0.03424237,99.91994813],[4.53601357,0.03424411,99.91996237],[4.53601402,0.03424586,99.91997663],[4.53601448,0.0342476,99.919991],[4.53601493,0.03424935,99.92000549],[4.53601539,0.0342511,99.92002012],[4.53601584,0.03425284,99.92003491],[4.5360163,0.03425459,99.92004988],[4.53601675,0.03425633,99.92006504],[4.53601721,0.03425807,99.92008042],[4.53601766,0.03425982,99.92009602],[4.53601812,0.03426156,99.92011187],[4.53601857,0.03426331,99.92012799],[4.53601903,0.03426505,99.92014439],[4.53601949,0.0342668,99.92016108],[4.53601994,0.03426854,99.9201781],[4.5360204,0.03427029,99.92019545],[4.53602086,0.03427203,99.92021316],[4.53602132,0.03427378,99.92023124],[4.53602177,0.03427552,99.92024972],[4.53602223,0.03427726,99.9202686],[4.53602269,0.03427901,99.92028791],[4.53602315,0.03428075,99.92030767],[4.53602361,0.03428249,99.92032789],[4.53602407,0.03428424,99.9203486],[4.53602453,0.03428598,99.92036981],[4.53602499,0.03428773,99.92039155],[4.53602545,0.03428947,99.92041382],[4.53602591,0.03429121,99.92043666],[4.53602637,0.03429296,99.92046007],[4.53602684,0.0342947,99.92048408],[4.5360273,0.03429644,99.92050871],[4.53602776,0.03429818,99.92053398],[4.53602822,0.03429993,99.9205599],[4.53602869,0.03430167,99.9205865],[4.53602915,0.03430341,99.9206138],[4.53602962,0.03430515,99.92064181],[4.53603008,0.0343069,99.92067055],[4.53603055,0.03430864,99.92070005],[4.53603101,0.03431038,99.92073031],[4.53603148,0.03431212,99.92076131],[4.53603195,0.03431386,99.92079299],[4.53603241,0.03431561,99.92082531],[4.53603288,0.03431735,99.92085822],[4.53603335,0.03431909,99.92089169],[4.53603382,0.03432083,99.92092565],[4.53603428,0.03432257,99.92096008],[4.53603475,0.03432431,99.92099492],[4.53603522,0.03432605,99.92103012],[4.53603569,0.03432779,99.92106564],[4.53603616,0.03432954,99.92110143],[4.53603663,0.03433128,99.92113746],[4.5360371,0.03433302,99.92117366],[4.53603757,0.03433476,99.92120999],[4.53603804,0.0343365,99.92124641],[4.53603851,0.03433824,99.92128287],[4.53603898,0.03433998,99.92131931],[4.53603945,0.03434172,99.92135571],[4.53603992,0.03434346,99.92139199],[4.5360404,0.0343452,99.92142813],[4.53604087,0.03434694,99.92146406],[4.53604134,0.03434868,99.92149974],[4.53604181,0.03435042,99.92153513],[4.53604228,0.03435216,99.92157017],[4.53604275,0.0343539,99.92160482],[4.53604322,0.03435564,99.92163902],[4.5360437,0.03435739,99.92167273],[4.53604417,0.03435913,99.9217059],[4.53604464,0.03436087,99.92173847],[4.53604511,0.03436261,99.92177041],[4.53604558,0.03436435,99.92180165],[4.53604605,0.03436609,99.92183215],[4.53604652,0.03436783,99.92186186],[4.536047,0.03436957,99.92189073],[4.53604747,0.03437131,99.92191871],[4.53604794,0.03437305,99.92194574],[4.53604841,0.03437479,99.92197181],[4.53604888,0.03437653,99.9219969],[4.53604935,0.03437827,99.92202101],[4.53604982,0.03438001,99.92204415],[4.53605029,0.03438175,99.9220663],[4.53605076,0.0343835,99.92208747],[4.53605123,0.03438524,99.92210765],[4.5360517,0.03438698,99.92212684],[4.53605217,0.03438872,99.92214504],[4.53605264,0.03439046,99.92216223],[4.53605311,0.0343922,99.92217843],[4.53605358,0.03439394,99.92219363],[4.53605404,0.03439568,99.92220782],[4.53605451,0.03439742,99.922221],[4.53605498,0.03439917,99.92223316],[4.53605545,0.03440091,99.92224431],[4.53605592,0.03440265,99.92225445],[4.53605639,0.03440439,99.92226356],[4.53605685,0.03440613,99.92227165],[4.53605732,0.03440787,99.92227871],[4.53605779,0.03440961,99.92228474],[4.53605826,0.03441136,99.92228974],[4.53605872,0.0344131,99.9222937],[4.53605919,0.03441484,99.92229662],[4.53605966,0.03441658,99.9222985],[4.53606013,0.03441832,99.92229934],[4.53606059,0.03442006,99.92229913],[4.53606106,0.03442181,99.92229786],[4.53606152,0.03442355,99.92229554],[4.53606199,0.03442529,99.92229217],[4.53606246,0.03442703,99.92228773],[4.53606292,0.03442877,99.92228224],[4.53606339,0.03443052,99.92227567],[4.53606385,0.03443226,99.92226804],[4.53606432,0.034434,99.92225933],[4.53606478,0.03443574,99.92224955],[4.53606525,0.03443748,99.9222387],[4.53606571,0.03443923,99.92222676],[4.53606618,0.03444097,99.92221374],[4.53606664,0.03444271,99.92219964],[4.53606711,0.03444445,99.92218446],[4.53606757,0.0344462,99.92216821],[4.53606804,0.03444794,99.92215087],[4.5360685,0.03444968,99.92213246],[4.53606897,0.03445142,99.92211297],[4.53606943,0.03445317,99.92209241],[4.53606989,0.03445491,99.92207076],[4.53607036,0.03445665,99.92204805],[4.53607082,0.03445839,99.92202425],[4.53607128,0.03446014,99.92199939],[4.53607175,0.03446188,99.92197345],[4.53607221,0.03446362,99.92194643],[4.53607267,0.03446537,99.92191835],[4.53607313,0.03446711,99.92188919],[4.5360736,0.03446885,99.92185896],[4.53607406,0.03447059,99.92182766],[4.53607452,0.03447234,99.9217953],[4.53607498,0.03447408,99.92176186],[4.53607545,0.03447582,99.92172735],[4.53607591,0.03447757,99.92169178],[4.53607637,0.03447931,99.92165515],[4.53607683,0.03448105,99.92161744],[4.53607729,0.0344828,99.92157868],[4.53607775,0.03448454,99.92153885],[4.53607822,0.03448628,99.92149795],[4.53607868,0.03448803,99.921456],[4.53607914,0.03448977,99.92141298],[4.5360796,0.03449151,99.9213689],[4.53608006,0.03449326,99.92132377],[4.53608052,0.034495,99.92127758],[4.53608098,0.03449674,99.92123033],[4.53608144,0.03449849,99.92118202],[4.5360819,0.03450023,99.92113266],[4.53608236,0.03450197,99.92108224],[4.53608282,0.03450372,99.92103077],[4.53608328,0.03450546,99.92097825],[4.53608374,0.0345072,99.92092468],[4.5360842,0.03450895,99.92087006],[4.53608466,0.03451069,99.92081439],[4.53608512,0.03451244,99.92075767],[4.53608558,0.03451418,99.92069991],[4.53608604,0.03451592,99.9206411],[4.5360865,0.03451767,99.92058125],[4.53608696,0.03451941,99.92052037],[4.53608742,0.03452115,99.92045846],[4.53608788,0.0345229,99.92039552],[4.53608834,0.03452464,99.92033157],[4.53608879,0.03452639,99.9202666],[4.53608925,0.03452813,99.92020063],[4.53608971,0.03452987,99.92013365],[4.53609017,0.03453162,99.92006568],[4.53609063,0.03453336,99.9199967],[4.53609109,0.03453511,99.91992671],[4.53609155,0.03453685,99.91985571],[4.536092,0.03453859,99.91978368],[4.53609246,0.03454034,99.91971061],[4.53609292,0.03454208,99.91963651],[4.53609338,0.03454383,99.91956136],[4.53609384,0.03454557,99.91948515],[4.53609429,0.03454732,99.91940788],[4.53609475,0.03454906,99.91932954],[4.53609521,0.0345508,99.91925012],[4.53609567,0.03455255,99.91916962],[4.53609613,0.03455429,99.91908803],[4.53609658,0.03455604,99.91900533],[4.53609704,0.03455778,99.91892153],[4.5360975,0.03455953,99.91883661],[4.53609795,0.03456127,99.91875057],[4.53609841,0.03456301,99.91866339],[4.53609887,0.03456476,99.91857508],[4.53609932,0.0345665,99.91848563],[4.53609978,0.03456825,99.91839502],[4.53610024,0.03456999,99.91830325],[4.53610069,0.03457174,99.91821032],[4.53610115,0.03457348,99.9181162],[4.53610161,0.03457523,99.91802091],[4.53610206,0.03457697,99.91792442],[4.53610252,0.03457872,99.91782673],[4.53610297,0.03458046,99.91772784],[4.53610343,0.03458221,99.91762774],[4.53610388,0.03458395,99.91752641],[4.53610434,0.0345857,99.91742386],[4.5361048,0.03458744,99.91732006],[4.53610525,0.03458919,99.91721503],[4.53610571,0.03459093,99.91710874],[4.53610616,0.03459268,99.91700119],[4.53610661,0.03459442,99.91689238],[4.53610707,0.03459617,99.91678229],[4.53610752,0.03459791,99.91667092],[4.53610798,0.03459966,99.91655827],[4.53610843,0.0346014,99.91644431],[4.53610889,0.03460315,99.91632907],[4.53610934,0.03460489,99.91621263],[4.53610979,0.03460664,99.9160951],[4.53611025,0.03460838,99.91597659],[4.5361107,0.03461013,99.91585722],[4.53611116,0.03461187,99.91573708],[4.53611161,0.03461362,99.91561629],[4.53611206,0.03461536,99.91549496],[4.53611252,0.03461711,99.9153732],[4.53611297,0.03461885,99.91525111],[4.53611343,0.0346206,99.91512882],[4.53611388,0.03462234,99.91500642],[4.53611434,0.03462409,99.91488404],[4.53611479,0.03462583,99.91476178],[4.53611525,0.03462758,99.91463976],[4.5361157,0.03462932,99.91451808],[4.53611616,0.03463107,99.91439685],[4.53611661,0.03463281,99.9142762],[4.53611707,0.03463456,99.91415623],[4.53611753,0.0346363,99.91403706],[4.53611799,0.03463805,99.91391879],[4.53611845,0.03463979,99.91380154],[4.53611891,0.03464153,99.91368543],[4.53611937,0.03464328,99.91357056],[4.53611983,0.03464502,99.91345706],[4.53612029,0.03464676,99.91334503],[4.53612075,0.03464851,99.91323458],[4.53612121,0.03465025,99.91312584],[4.53612168,0.03465199,99.91301887],[4.53612214,0.03465374,99.91291356],[4.53612261,0.03465548,99.91280975],[4.53612307,0.03465722,99.91270729],[4.53612354,0.03465896,99.91260603],[4.53612401,0.0346607,99.9125058],[4.53612448,0.03466244,99.91240644],[4.53612494,0.03466419,99.91230781],[4.53612541,0.03466593,99.91220973],[4.53612588,0.03466767,99.91211206],[4.53612635,0.03466941,99.91201463],[4.53612682,0.03467115,99.91191729],[4.53612729,0.03467289,99.91181987],[4.53612776,0.03467463,99.91172221],[4.53612823,0.03467637,99.91162417],[4.5361287,0.03467811,99.91152565],[4.53612917,0.03467986,99.91142662],[4.53612964,0.0346816,99.91132707],[4.53613011,0.03468334,99.91122697],[4.53613058,0.03468508,99.91112632],[4.53613105,0.03468682,99.91102508],[4.53613152,0.03468856,99.91092325],[4.536132,0.0346903,99.91082079],[4.53613247,0.03469204,99.9107177],[4.53613294,0.03469378,99.91061395],[4.53613341,0.03469552,99.91050952],[4.53613388,0.03469726,99.91040439],[4.53613435,0.034699,99.91029855],[4.53613482,0.03470074,99.91019197],[4.53613529,0.03470249,99.91008463],[4.53613576,0.03470423,99.90997652],[4.53613624,0.03470597,99.90986761],[4.53613671,0.03470771,99.90975789],[4.53613718,0.03470945,99.90964733],[4.53613765,0.03471119,99.90953592],[4.53613812,0.03471293,99.90942363],[4.53613859,0.03471467,99.90931045],[4.53613906,0.03471641,99.90919635],[4.53613954,0.03471815,99.90908132],[4.53614001,0.03471989,99.90896533],[4.53614048,0.03472163,99.90884837],[4.53614095,0.03472337,99.90873041],[4.53614142,0.03472511,99.90861144],[4.53614189,0.03472685,99.90849144],[4.53614236,0.03472859,99.90837038],[4.53614284,0.03473034,99.90824824],[4.53614331,0.03473208,99.90812502],[4.53614378,0.03473382,99.90800067],[4.53614425,0.03473556,99.90787519],[4.53614472,0.0347373,99.90774856],[4.53614519,0.03473904,99.90762075],[4.53614566,0.03474078,99.90749175],[4.53614613,0.03474252,99.90736153],[4.5361466,0.03474426,99.90723007],[4.53614707,0.034746,99.90709736],[4.53614754,0.03474774,99.90696338],[4.53614801,0.03474948,99.90682809],[4.53614848,0.03475122,99.90669149],[4.53614895,0.03475297,99.90655356],[4.53614942,0.03475471,99.90641426],[4.53614989,0.03475645,99.90627359],[4.53615036,0.03475819,99.90613153],[4.53615083,0.03475993,99.90598804],[4.5361513,0.03476167,99.90584312],[4.53615177,0.03476341,99.90569674],[4.53615224,0.03476515,99.90554888],[4.53615271,0.03476689,99.90539952],[4.53615318,0.03476864,99.90524865],[4.53615365,0.03477038,99.90509623],[4.53615412,0.03477212,99.90494226],[4.53615458,0.03477386,99.90478671],[4.53615505,0.0347756,99.90462956],[4.53615552,0.03477734,99.90447083],[4.53615599,0.03477908,99.90431051],[4.53615646,0.03478083,99.90414863],[4.53615692,0.03478257,99.90398518],[4.53615739,0.03478431,99.90382019],[4.53615786,0.03478605,99.90365366],[4.53615833,0.03478779,99.90348561],[4.53615879,0.03478954,99.90331603],[4.53615926,0.03479128,99.90314494],[4.53615973,0.03479302,99.90297235],[4.53616019,0.03479476,99.90279828],[4.53616066,0.0347965,99.90262272],[4.53616112,0.03479825,99.90244569],[4.53616159,0.03479999,99.90226721],[4.53616206,0.03480173,99.90208727],[4.53616252,0.03480347,99.9019059],[4.53616299,0.03480521,99.9017231],[4.53616345,0.03480696,99.90153889],[4.53616392,0.0348087,99.90135327],[4.53616438,0.03481044,99.90116625],[4.53616485,0.03481218,99.90097785],[4.53616531,0.03481393,99.90078808],[4.53616578,0.03481567,99.90059694],[4.53616624,0.03481741,99.90040445],[4.53616671,0.03481915,99.90021062],[4.53616717,0.0348209,99.90001546],[4.53616764,0.03482264,99.89981898],[4.5361681,0.03482438,99.89962119],[4.53616856,0.03482612,99.8994221],[4.53616903,0.03482787,99.89922173],[4.53616949,0.03482961,99.89902007],[4.53616996,0.03483135,99.89881715],[4.53617042,0.03483309,99.89861298],[4.53617088,0.03483484,99.89840755],[4.53617135,0.03483658,99.8982009],[4.53617181,0.03483832,99.89799302],[4.53617227,0.03484006,99.89778393],[4.53617274,0.03484181,99.89757364],[4.5361732,0.03484355,99.89736216],[4.53617366,0.03484529,99.89714949],[4.53617413,0.03484704,99.89693566],[4.53617459,0.03484878,99.89672067],[4.53617505,0.03485052,99.89650453],[4.53617552,0.03485226,99.89628726],[4.53617598,0.03485401,99.89606886],[4.53617644,0.03485575,99.89584934],[4.53617691,0.03485749,99.89562872],[4.53617737,0.03485924,99.895407],[4.53617783,0.03486098,99.89518421],[4.53617829,0.03486272,99.89496034],[4.53617876,0.03486447,99.8947354],[4.53617922,0.03486621,99.89450942],[4.53617968,0.03486795,99.8942824],[4.53618014,0.03486969,99.89405435],[4.53618061,0.03487144,99.89382528],[4.53618107,0.03487318,99.8935952],[4.53618153,0.03487492,99.89336412],[4.53618199,0.03487667,99.89313206],[4.53618246,0.03487841,99.892899],[4.53618292,0.03488015,99.89266496],[4.53618338,0.0348819,99.89242994],[4.53618384,0.03488364,99.89219393],[4.53618431,0.03488538,99.89195693],[4.53618477,0.03488713,99.89171896],[4.53618523,0.03488887,99.89148002],[4.53618569,0.03489061,99.89124009],[4.53618616,0.03489235,99.89099919],[4.53618662,0.0348941,99.89075732],[4.53618708,0.03489584,99.89051448],[4.53618754,0.03489758,99.89027068],[4.536188,0.03489933,99.8900259],[4.53618847,0.03490107,99.88978017],[4.53618893,0.03490281,99.88953346],[4.53618939,0.03490456,99.8892858],[4.53618985,0.0349063,99.88903718],[4.53619031,0.03490804,99.88878761],[4.53619078,0.03490979,99.88853708],[4.53619124,0.03491153,99.88828559],[4.5361917,0.03491327,99.88803316],[4.53619216,0.03491502,99.88777977],[4.53619262,0.03491676,99.88752544],[4.53619309,0.0349185,99.88727016],[4.53619355,0.03492025,99.88701394],[4.53619401,0.03492199,99.88675678],[4.53619447,0.03492373,99.88649867],[4.53619493,0.03492548,99.88623963],[4.5361954,0.03492722,99.88597966],[4.53619586,0.03492896,99.88571875],[4.53619632,0.03493071,99.8854569],[4.53619678,0.03493245,99.88519413],[4.53619724,0.03493419,99.88493043],[4.53619771,0.03493594,99.8846658],[4.53619817,0.03493768,99.88440024],[4.53619863,0.03493942,99.88413377],[4.53619909,0.03494117,99.88386637],[4.53619955,0.03494291,99.88359805],[4.53620001,0.03494465,99.88332882],[4.53620047,0.0349464,99.88305867],[4.53620094,0.03494814,99.8827876],[4.5362014,0.03494988,99.88251563],[4.53620186,0.03495163,99.88224275],[4.53620232,0.03495337,99.88196895],[4.53620278,0.03495511,99.88169426],[4.53620324,0.03495686,99.88141865],[4.53620371,0.0349586,99.88114215],[4.53620417,0.03496034,99.88086474],[4.53620463,0.03496209,99.88058644],[4.53620509,0.03496383,99.88030724],[4.53620555,0.03496557,99.88002715],[4.53620601,0.03496732,99.87974616],[4.53620647,0.03496906,99.87946428],[4.53620693,0.0349708,99.87918151],[4.5362074,0.03497255,99.87889786],[4.53620786,0.03497429,99.87861332],[4.53620832,0.03497603,99.87832789],[4.53620878,0.03497778,99.87804159],[4.53620924,0.03497952,99.87775441],[4.5362097,0.03498126,99.87746634],[4.53621016,0.03498301,99.8771774],[4.53621062,0.03498475,99.87688759],[4.53621108,0.03498649,99.87659691],[4.53621155,0.03498824,99.87630535],[4.53621201,0.03498998,99.87601293],[4.53621247,0.03499172,99.87571964],[4.53621293,0.03499346,99.87542548],[4.53621339,0.03499521,99.87513047],[4.53621385,0.03499695,99.87483459],[4.53621431,0.03499869,99.87453785],[4.53621477,0.03500044,99.87424026],[4.53621523,0.03500218,99.87394181],[4.53621569,0.03500393,99.8736425],[4.53621615,0.03500567,99.87334235],[4.53621661,0.03500741,99.87304134],[4.53621708,0.03500916,99.8727395],[4.53621754,0.0350109,99.87243681],[4.536218,0.03501264,99.87213328],[4.53621846,0.03501439,99.87182893],[4.53621892,0.03501613,99.87152375],[4.53621938,0.03501787,99.87121775],[4.53621984,0.03501962,99.87091093],[4.5362203,0.03502136,99.8706033],[4.53622076,0.03502311,99.87029486],[4.53622122,0.03502485,99.86998561],[4.53622168,0.03502659,99.86967557],[4.53622214,0.03502834,99.86936472],[4.5362226,0.03503008,99.86905308],[4.53622306,0.03503182,99.86874065],[4.53622352,0.03503357,99.86842743],[4.53622399,0.03503531,99.86811343],[4.53622445,0.03503705,99.86779864],[4.53622491,0.0350388,99.86748307],[4.53622537,0.03504054,99.86716672],[4.53622583,0.03504229,99.8668496],[4.53622629,0.03504403,99.8665317],[4.53622675,0.03504577,99.86621304],[4.53622721,0.03504752,99.86589361],[4.53622767,0.03504926,99.86557342],[4.53622813,0.035051,99.86525246],[4.53622859,0.03505275,99.86493075],[4.53622905,0.03505449,99.86460828],[4.53622951,0.03505623,99.86428507],[4.53622997,0.03505798,99.8639611],[4.53623043,0.03505972,99.86363638],[4.53623089,0.03506147,99.86331093],[4.53623135,0.03506321,99.86298473],[4.53623181,0.03506495,99.86265779],[4.53623227,0.0350667,99.86233012],[4.53623273,0.03506844,99.86200172],[4.53623319,0.03507018,99.86167259],[4.53623366,0.03507193,99.86134273],[4.53623412,0.03507367,99.86101215],[4.53623458,0.03507541,99.86068084],[4.53623504,0.03507716,99.86034882],[4.5362355,0.0350789,99.86001608],[4.53623596,0.03508065,99.85968264],[4.53623642,0.03508239,99.85934848],[4.53623688,0.03508413,99.85901361],[4.53623734,0.03508588,99.85867804],[4.5362378,0.03508762,99.85834177],[4.53623826,0.03508936,99.8580048],[4.53623872,0.03509111,99.85766714],[4.53623918,0.03509285,99.85732878],[4.53623964,0.03509459,99.85698973],[4.5362401,0.03509634,99.85665],[4.53624056,0.03509808,99.85630958],[4.53624102,0.03509983,99.85596848],[4.53624148,0.03510157,99.8556267],[4.53624194,0.03510331,99.85528424],[4.5362424,0.03510506,99.85494111],[4.53624286,0.0351068,99.85459731],[4.53624332,0.03510854,99.85425285],[4.53624379,0.03511029,99.85390771],[4.53624425,0.03511203,99.85356192],[4.53624471,0.03511377,99.85321546],[4.53624517,0.03511552,99.85286835],[4.53624563,0.03511726,99.85252058],[4.53624609,0.03511901,99.85217217],[4.53624655,0.03512075,99.8518231],[4.53624701,0.03512249,99.85147339],[4.53624747,0.03512424,99.85112303],[4.53624793,0.03512598,99.85077204],[4.53624839,0.03512772,99.8504204],[4.53624885,0.03512947,99.85006813],[4.53624931,0.03513121,99.84971523],[4.53624977,0.03513295,99.8493617],[4.53625023,0.0351347,99.84900754],[4.53625069,0.03513644,99.84865276],[4.53625115,0.03513819,99.84829736],[4.53625162,0.03513993,99.84794134],[4.53625208,0.03514167,99.8475847],[4.53625254,0.03514342,99.84722745],[4.536253,0.03514516,99.84686959],[4.53625346,0.0351469,99.84651112],[4.53625392,0.03514865,99.84615205],[4.53625438,0.03515039,99.84579237],[4.53625484,0.03515213,99.8454321],[4.5362553,0.03515388,99.84507122],[4.53625576,0.03515562,99.84470976],[4.53625622,0.03515736,99.8443477],[4.53625668,0.03515911,99.84398505],[4.53625714,0.03516085,99.84362182],[4.53625761,0.0351626,99.843258],[4.53625807,0.03516434,99.8428936],[4.53625853,0.03516608,99.84252862],[4.53625899,0.03516783,99.84216305],[4.53625945,0.03516957,99.8417969],[4.53625991,0.03517131,99.84143016],[4.53626037,0.03517306,99.84106283],[4.53626083,0.0351748,99.8406949],[4.53626129,0.03517654,99.84032638],[4.53626175,0.03517829,99.83995727],[4.53626222,0.03518003,99.83958755],[4.53626268,0.03518177,99.83921724],[4.53626314,0.03518352,99.83884632],[4.5362636,0.03518526,99.8384748],[4.53626406,0.035187,99.83810267],[4.53626452,0.03518875,99.83772994],[4.53626498,0.03519049,99.83735659],[4.53626544,0.03519223,99.83698264],[4.5362659,0.03519398,99.83660807],[4.53626637,0.03519572,99.83623288],[4.53626683,0.03519746,99.83585708],[4.53626729,0.03519921,99.83548066],[4.53626775,0.03520095,99.83510362],[4.53626821,0.0352027,99.83472596],[4.53626867,0.03520444,99.83434767],[4.53626913,0.03520618,99.83396876],[4.53626959,0.03520793,99.83358921],[4.53627005,0.03520967,99.83320904],[4.53627052,0.03521141,99.83282824],[4.53627098,0.03521316,99.83244681],[4.53627144,0.0352149,99.83206474],[4.5362719,0.03521664,99.83168204],[4.53627236,0.03521839,99.83129869],[4.53627282,0.03522013,99.83091471],[4.53627328,0.03522187,99.83053009],[4.53627374,0.03522362,99.83014482],[4.5362742,0.03522536,99.82975891],[4.53627466,0.0352271,99.82937235],[4.53627512,0.03522885,99.82898513],[4.53627559,0.03523059,99.82859726],[4.53627605,0.03523233,99.82820872],[4.53627651,0.03523408,99.82781951],[4.53627697,0.03523582,99.82742963],[4.53627743,0.03523756,99.82703906],[4.53627789,0.03523931,99.82664781],[4.53627835,0.03524105,99.82625587],[4.53627881,0.0352428,99.82586323],[4.53627927,0.03524454,99.82546989],[4.53627973,0.03524628,99.82507585],[4.53628019,0.03524803,99.82468109],[4.53628065,0.03524977,99.82428562],[4.53628111,0.03525151,99.82388943],[4.53628157,0.03525326,99.82349251],[4.53628203,0.035255,99.82309486],[4.53628249,0.03525674,99.82269647],[4.53628295,0.03525849,99.82229734],[4.53628341,0.03526023,99.82189747],[4.53628387,0.03526198,99.82149684],[4.53628433,0.03526372,99.82109546],[4.53628479,0.03526546,99.82069331],[4.53628525,0.03526721,99.8202904],[4.53628571,0.03526895,99.81988672],[4.53628617,0.03527069,99.81948227],[4.53628663,0.03527244,99.81907703],[4.53628709,0.03527418,99.81867101],[4.53628755,0.03527593,99.8182642],[4.53628801,0.03527767,99.81785659],[4.53628847,0.03527941,99.81744818],[4.53628893,0.03528116,99.81703897],[4.53628939,0.0352829,99.81662894],[4.53628985,0.03528465,99.81621811],[4.53629031,0.03528639,99.81580645],[4.53629076,0.03528813,99.81539397],[4.53629122,0.03528988,99.81498066],[4.53629168,0.03529162,99.81456652],[4.53629214,0.03529337,99.81415154],[4.5362926,0.03529511,99.81373571],[4.53629306,0.03529686,99.81331904],[4.53629351,0.0352986,99.81290152],[4.53629397,0.03530034,99.81248314],[4.53629443,0.03530209,99.81206389],[4.53629489,0.03530383,99.81164378],[4.53629534,0.03530558,99.8112228],[4.5362958,0.03530732,99.81080095],[4.53629626,0.03530907,99.81037821],[4.53629672,0.03531081,99.80995459],[4.53629717,0.03531256,99.80953008],[4.53629763,0.0353143,99.80910467],[4.53629809,0.03531604,99.80867837],[4.53629854,0.03531779,99.80825116],[4.536299,0.03531953,99.80782307],[4.53629946,0.03532128,99.8073941],[4.53629991,0.03532302,99.80696426],[4.53630037,0.03532477,99.80653356],[4.53630082,0.03532651,99.806102],[4.53630128,0.03532826,99.8056696],[4.53630174,0.03533,99.80523636],[4.53630219,0.03533175,99.80480229],[4.53630265,0.03533349,99.8043674],[4.5363031,0.03533524,99.8039317],[4.53630356,0.03533698,99.80349519],[4.53630401,0.03533873,99.80305789],[4.53630447,0.03534047,99.80261981],[4.53630492,0.03534222,99.80218095],[4.53630538,0.03534396,99.80174131],[4.53630583,0.03534571,99.80130092],[4.53630629,0.03534745,99.80085977],[4.53630674,0.0353492,99.80041788],[4.53630719,0.03535094,99.79997526],[4.53630765,0.03535269,99.7995319],[4.5363081,0.03535443,99.79908783],[4.53630856,0.03535618,99.79864304],[4.53630901,0.03535792,99.79819755],[4.53630946,0.03535967,99.79775137],[4.53630992,0.03536142,99.7973045],[4.53631037,0.03536316,99.79685695],[4.53631083,0.03536491,99.79640873],[4.53631128,0.03536665,99.79595985],[4.53631173,0.0353684,99.79551031],[4.53631219,0.03537014,99.79506013],[4.53631264,0.03537189,99.79460931],[4.53631309,0.03537363,99.79415786],[4.53631355,0.03537538,99.79370579],[4.536314,0.03537712,99.79325311],[4.53631445,0.03537887,99.79279982],[4.5363149,0.03538062,99.79234593],[4.53631536,0.03538236,99.79189146],[4.53631581,0.03538411,99.7914364],[4.53631626,0.03538585,99.79098077],[4.53631672,0.0353876,99.79052457],[4.53631717,0.03538934,99.79006782],[4.53631762,0.03539109,99.78961051],[4.53631807,0.03539284,99.78915267],[4.53631853,0.03539458,99.78869429],[4.53631898,0.03539633,99.78823539],[4.53631943,0.03539807,99.78777597],[4.53631988,0.03539982,99.78731606],[4.53632034,0.03540156,99.78685565],[4.53632079,0.03540331,99.78639476],[4.53632124,0.03540506,99.7859334],[4.53632169,0.0354068,99.78547158],[4.53632215,0.03540855,99.78500932],[4.5363226,0.03541029,99.78454662],[4.53632305,0.03541204,99.78408349],[4.5363235,0.03541378,99.78361995],[4.53632395,0.03541553,99.78315601],[4.53632441,0.03541728,99.78269167],[4.53632486,0.03541902,99.78222695],[4.53632531,0.03542077,99.78176187],[4.53632576,0.03542251,99.78129642],[4.53632622,0.03542426,99.78083062],[4.53632667,0.035426,99.78036449],[4.53632712,0.03542775,99.77989803],[4.53632757,0.0354295,99.77943125],[4.53632803,0.03543124,99.77896417],[4.53632848,0.03543299,99.7784968],[4.53632893,0.03543473,99.77802914],[4.53632938,0.03543648,99.77756121],[4.53632984,0.03543822,99.77709302],[4.53633029,0.03543997,99.77662458],[4.53633074,0.03544172,99.7761559],[4.53633119,0.03544346,99.77568699],[4.53633165,0.03544521,99.77521786],[4.5363321,0.03544695,99.77474853],[4.53633255,0.0354487,99.77427901],[4.536333,0.03545044,99.7738093],[4.53633346,0.03545219,99.77333941],[4.53633391,0.03545393,99.77286936],[4.53633436,0.03545568,99.77239917],[4.53633482,0.03545743,99.77192883],[4.53633527,0.03545917,99.77145836],[4.53633572,0.03546092,99.77098777],[4.53633618,0.03546266,99.77051708],[4.53633663,0.03546441,99.77004629],[4.53633708,0.03546615,99.76957541],[4.53633754,0.0354679,99.76910444],[4.53633799,0.03546964,99.7686334],[4.53633845,0.03547139,99.76816227],[4.5363389,0.03547313,99.76769108],[4.53633935,0.03547488,99.76721981],[4.53633981,0.03547662,99.76674848],[4.53634026,0.03547837,99.76627708],[4.53634072,0.03548012,99.76580563],[4.53634117,0.03548186,99.76533412],[4.53634163,0.03548361,99.76486257],[4.53634208,0.03548535,99.76439096],[4.53634253,0.0354871,99.76391931],[4.53634299,0.03548884,99.76344763],[4.53634344,0.03549059,99.76297591],[4.5363439,0.03549233,99.76250416],[4.53634435,0.03549408,99.76203238],[4.53634481,0.03549582,99.76156058],[4.53634527,0.03549757,99.76108876],[4.53634572,0.03549931,99.76061692],[4.53634618,0.03550106,99.76014508],[4.53634663,0.0355028,99.75967323],[4.53634709,0.03550455,99.75920138],[4.53634754,0.03550629,99.75872953],[4.536348,0.03550803,99.75825768],[4.53634846,0.03550978,99.75778585],[4.53634891,0.03551152,99.75731402],[4.53634937,0.03551327,99.75684222],[4.53634983,0.03551501,99.75637044],[4.53635028,0.03551676,99.75589869],[4.53635074,0.0355185,99.75542697],[4.5363512,0.03552025,99.75495529],[4.53635165,0.03552199,99.75448364],[4.53635211,0.03552374,99.75401204],[4.53635257,0.03552548,99.75354049],[4.53635302,0.03552722,99.75306899],[4.53635348,0.03552897,99.75259755],[4.53635394,0.03553071,99.75212612],[4.5363544,0.03553246,99.75165467],[4.53635485,0.0355342,99.75118317],[4.53635531,0.03553595,99.75071157],[4.53635577,0.03553769,99.75023984],[4.53635623,0.03553944,99.74976794],[4.53635669,0.03554118,99.74929583],[4.53635714,0.03554292,99.74882348],[4.5363576,0.03554467,99.74835083],[4.53635806,0.03554641,99.74787787],[4.53635852,0.03554816,99.74740454],[4.53635897,0.0355499,99.7469308],[4.53635943,0.03555164,99.74645663],[4.53635989,0.03555339,99.74598198],[4.53636035,0.03555513,99.74550682],[4.5363608,0.03555688,99.74503109],[4.53636126,0.03555862,99.74455477],[4.53636172,0.03556037,99.74407782],[4.53636218,0.03556211,99.74360019],[4.53636263,0.03556386,99.74312185],[4.53636309,0.0355656,99.74264275],[4.53636355,0.03556735,99.74216284],[4.536364,0.03556909,99.74168208],[4.53636446,0.03557083,99.74120041],[4.53636491,0.03557258,99.7407178],[4.53636537,0.03557432,99.74023419],[4.53636582,0.03557607,99.73974955],[4.53636628,0.03557781,99.73926381],[4.53636673,0.03557956,99.73877695],[4.53636719,0.0355813,99.7382889],[4.53636764,0.03558305,99.73779962],[4.5363681,0.03558479,99.73730906],[4.53636855,0.03558654,99.73681717],[4.536369,0.03558829,99.73632392],[4.53636946,0.03559003,99.73582924],[4.53636991,0.03559178,99.73533309],[4.53637036,0.03559352,99.73483542],[4.53637081,0.03559527,99.73433619],[4.53637126,0.03559701,99.73383535],[4.53637171,0.03559876,99.73333293],[4.53637216,0.03560051,99.73282897],[4.53637261,0.03560225,99.7323235],[4.53637306,0.035604,99.73181656],[4.53637351,0.03560575,99.73130818],[4.53637396,0.03560749,99.73079841],[4.53637441,0.03560924,99.73028727],[4.53637486,0.03561099,99.72977481],[4.5363753,0.03561273,99.72926105],[4.53637575,0.03561448,99.72874605],[4.5363762,0.03561623,99.72822984],[4.53637665,0.03561797,99.72771244],[4.53637709,0.03561972,99.72719391],[4.53637754,0.03562147,99.72667428],[4.53637799,0.03562322,99.72615358],[4.53637843,0.03562496,99.72563185],[4.53637888,0.03562671,99.72510913],[4.53637932,0.03562846,99.72458546],[4.53637977,0.03563021,99.72406088],[4.53638022,0.03563195,99.72353542],[4.53638066,0.0356337,99.72300913],[4.53638111,0.03563545,99.72248204],[4.53638155,0.0356372,99.72195418],[4.536382,0.03563894,99.72142561],[4.53638244,0.03564069,99.72089635],[4.53638289,0.03564244,99.72036645],[4.53638333,0.03564419,99.71983594],[4.53638378,0.03564593,99.71930487],[4.53638422,0.03564768,99.71877328],[4.53638467,0.03564943,99.7182412],[4.53638511,0.03565118,99.71770868],[4.53638556,0.03565292,99.71717575],[4.536386,0.03565467,99.71664247],[4.53638645,0.03565642,99.71610887],[4.53638689,0.03565817,99.71557498],[4.53638734,0.03565991,99.71504082],[4.53638779,0.03566166,99.71450637],[4.53638823,0.03566341,99.71397165],[4.53638868,0.03566516,99.71343665],[4.53638912,0.0356669,99.71290136],[4.53638957,0.03566865,99.71236579],[4.53639001,0.0356704,99.71182994],[4.53639046,0.03567215,99.7112938],[4.53639091,0.03567389,99.71075737],[4.53639135,0.03567564,99.71022066],[4.5363918,0.03567739,99.70968366],[4.53639225,0.03567913,99.70914638],[4.53639269,0.03568088,99.7086088],[4.53639314,0.03568263,99.70807094],[4.53639359,0.03568438,99.70753278],[4.53639403,0.03568612,99.70699434],[4.53639448,0.03568787,99.7064556],[4.53639493,0.03568962,99.70591657],[4.53639538,0.03569136,99.70537725],[4.53639582,0.03569311,99.70483763],[4.53639627,0.03569486,99.70429772],[4.53639672,0.0356966,99.70375751],[4.53639717,0.03569835,99.70321701],[4.53639762,0.0357001,99.70267622],[4.53639806,0.03570184,99.70213512],[4.53639851,0.03570359,99.70159373],[4.53639896,0.03570534,99.70105204],[4.53639941,0.03570708,99.70051006],[4.53639986,0.03570883,99.69996777],[4.53640031,0.03571058,99.69942519],[4.53640075,0.03571232,99.69888231],[4.5364012,0.03571407,99.69833913],[4.53640165,0.03571582,99.69779564],[4.5364021,0.03571756,99.69725186],[4.53640255,0.03571931,99.69670778],[4.536403,0.03572106,99.69616339],[4.53640345,0.0357228,99.69561871],[4.5364039,0.03572455,99.69507372],[4.53640435,0.0357263,99.69452843],[4.5364048,0.03572804,99.69398284],[4.53640525,0.03572979,99.69343695],[4.5364057,0.03573154,99.69289075],[4.53640615,0.03573328,99.69234425],[4.5364066,0.03573503,99.69179745],[4.53640705,0.03573677,99.69125034],[4.5364075,0.03573852,99.69070293],[4.53640795,0.03574027,99.69015522],[4.5364084,0.03574201,99.6896072],[4.53640885,0.03574376,99.68905888],[4.5364093,0.0357455,99.68851026],[4.53640976,0.03574725,99.68796133],[4.53641021,0.035749,99.6874121],[4.53641066,0.03575074,99.68686256],[4.53641111,0.03575249,99.68631272],[4.53641156,0.03575423,99.68576257],[4.53641201,0.03575598,99.68521212],[4.53641247,0.03575773,99.68466136],[4.53641292,0.03575947,99.6841103],[4.53641337,0.03576122,99.68355893],[4.53641382,0.03576296,99.68300726],[4.53641428,0.03576471,99.68245529],[4.53641473,0.03576645,99.681903],[4.53641518,0.0357682,99.68135042],[4.53641564,0.03576994,99.68079753],[4.53641609,0.03577169,99.68024432],[4.53641654,0.03577344,99.6796908],[4.536417,0.03577518,99.67913693],[4.53641745,0.03577693,99.67858272],[4.5364179,0.03577867,99.67802814],[4.53641836,0.03578042,99.67747319],[4.53641881,0.03578216,99.67691785],[4.53641927,0.03578391,99.67636211],[4.53641972,0.03578565,99.67580595],[4.53642017,0.0357874,99.67524937],[4.53642063,0.03578914,99.67469234],[4.53642108,0.03579089,99.67413486],[4.53642154,0.03579263,99.67357692],[4.53642199,0.03579438,99.67301849],[4.53642245,0.03579612,99.67245957],[4.5364229,0.03579787,99.67190014],[4.53642336,0.03579961,99.6713402],[4.53642381,0.03580136,99.67077971],[4.53642427,0.0358031,99.67021869],[4.53642472,0.03580485,99.6696571],[4.53642518,0.03580659,99.66909493],[4.53642564,0.03580834,99.66853218],[4.53642609,0.03581008,99.66796882],[4.53642655,0.03581183,99.66740485],[4.536427,0.03581357,99.66684025],[4.53642746,0.03581532,99.66627501],[4.53642791,0.03581706,99.66570911],[4.53642837,0.03581881,99.66514254],[4.53642883,0.03582055,99.66457528],[4.53642928,0.0358223,99.66400733],[4.53642974,0.03582404,99.66343866],[4.53643019,0.03582579,99.66286927],[4.53643065,0.03582753,99.66229913],[4.53643111,0.03582927,99.66172824],[4.53643156,0.03583102,99.66115658],[4.53643202,0.03583276,99.66058414],[4.53643247,0.03583451,99.6600109],[4.53643293,0.03583625,99.65943685],[4.53643339,0.035838,99.65886197],[4.53643384,0.03583974,99.65828625],[4.5364343,0.03584149,99.65770968],[4.53643476,0.03584323,99.65713223],[4.53643521,0.03584498,99.6565539],[4.53643567,0.03584672,99.65597468],[4.53643612,0.03584847,99.65539454],[4.53643658,0.03585021,99.65481347],[4.53643704,0.03585196,99.65423145],[4.53643749,0.0358537,99.65364848],[4.53643795,0.03585544,99.65306454],[4.53643841,0.03585719,99.65247961],[4.53643886,0.03585893,99.65189368],[4.53643932,0.03586068,99.65130674],[4.53643977,0.03586242,99.65071876],[4.53644023,0.03586417,99.65012973],[4.53644069,0.03586591,99.64953965],[4.53644114,0.03586766,99.64894848],[4.5364416,0.0358694,99.64835623],[4.53644206,0.03587115,99.64776287],[4.53644251,0.03587289,99.64716838],[4.53644297,0.03587464,99.64657276],[4.53644342,0.03587638,99.64597599],[4.53644388,0.03587813,99.64537805],[4.53644433,0.03587987,99.64477893],[4.53644479,0.03588162,99.64417861],[4.53644525,0.03588336,99.64357707],[4.5364457,0.03588511,99.64297431],[4.53644616,0.03588685,99.64237031],[4.53644661,0.0358886,99.64176504],[4.53644707,0.03589034,99.6411585],[4.53644752,0.03589209,99.64055068],[4.53644798,0.03589383,99.63994158],[4.53644843,0.03589558,99.63933121],[4.53644889,0.03589732,99.63871955],[4.53644934,0.03589907,99.63810662],[4.5364498,0.03590081,99.63749241],[4.53645025,0.03590256,99.63687693],[4.53645071,0.0359043,99.63626017],[4.53645116,0.03590605,99.63564214],[4.53645162,0.03590779,99.63502283],[4.53645207,0.03590954,99.63440224],[4.53645252,0.03591128,99.63378038],[4.53645298,0.03591303,99.63315724],[4.53645343,0.03591477,99.63253282],[4.53645389,0.03591652,99.63190713],[4.53645434,0.03591826,99.63128017],[4.5364548,0.03592001,99.63065192],[4.53645525,0.03592175,99.63002241],[4.5364557,0.0359235,99.62939161],[4.53645616,0.03592524,99.62875954],[4.53645661,0.03592699,99.6281262],[4.53645706,0.03592873,99.62749158],[4.53645752,0.03593048,99.62685568],[4.53645797,0.03593222,99.62621851],[4.53645843,0.03593397,99.62558007],[4.53645888,0.03593572,99.62494035],[4.53645933,0.03593746,99.62429935],[4.53645979,0.03593921,99.62365709],[4.53646024,0.03594095,99.62301354],[4.53646069,0.0359427,99.62236873],[4.53646115,0.03594444,99.62172266],[4.5364616,0.03594619,99.62107534],[4.53646205,0.03594793,99.62042676],[4.53646251,0.03594968,99.61977695],[4.53646296,0.03595142,99.6191259],[4.53646341,0.03595317,99.61847362],[4.53646387,0.03595492,99.61782012],[4.53646432,0.03595666,99.61716541],[4.53646477,0.03595841,99.61650949],[4.53646523,0.03596015,99.61585237],[4.53646568,0.0359619,99.61519406],[4.53646613,0.03596364,99.61453456],[4.53646658,0.03596539,99.61387388],[4.53646704,0.03596713,99.61321202],[4.53646749,0.03596888,99.61254901],[4.53646794,0.03597063,99.61188483],[4.5364684,0.03597237,99.6112195],[4.53646885,0.03597412,99.61055303],[4.5364693,0.03597586,99.60988541],[4.53646976,0.03597761,99.60921667],[4.53647021,0.03597935,99.6085468],[4.53647066,0.0359811,99.60787582],[4.53647111,0.03598284,99.60720372],[4.53647157,0.03598459,99.60653053],[4.53647202,0.03598634,99.60585623],[4.53647247,0.03598808,99.60518085],[4.53647292,0.03598983,99.60450438],[4.53647338,0.03599157,99.60382684],[4.53647383,0.03599332,99.60314823],[4.53647428,0.03599506,99.60246856],[4.53647474,0.03599681,99.60178783],[4.53647519,0.03599856,99.60110606],[4.53647564,0.0360003,99.60042324],[4.53647609,0.03600205,99.5997394],[4.53647655,0.03600379,99.59905452],[4.536477,0.03600554,99.59836863],[4.53647745,0.03600728,99.59768172],[4.53647791,0.03600903,99.59699381],[4.53647836,0.03601077,99.5963049],[4.53647881,0.03601252,99.595615],[4.53647926,0.03601427,99.59492412],[4.53647972,0.03601601,99.59423226],[4.53648017,0.03601776,99.59353942],[4.53648062,0.0360195,99.59284563],[4.53648107,0.03602125,99.59215087],[4.53648153,0.03602299,99.59145516],[4.53648198,0.03602474,99.5907585],[4.53648243,0.03602649,99.59006088],[4.53648289,0.03602823,99.58936232],[4.53648334,0.03602998,99.58866282],[4.53648379,0.03603172,99.58796238],[4.53648424,0.03603347,99.58726101],[4.5364847,0.03603521,99.5865587],[4.53648515,0.03603696,99.58585546],[4.5364856,0.0360387,99.5851513],[4.53648606,0.03604045,99.58444621],[4.53648651,0.0360422,99.58374021],[4.53648696,0.03604394,99.58303329],[4.53648742,0.03604569,99.58232546],[4.53648787,0.03604743,99.58161672],[4.53648832,0.03604918,99.58090708],[4.53648878,0.03605092,99.58019652],[4.53648923,0.03605267,99.57948505],[4.53648968,0.03605441,99.57877262],[4.53649013,0.03605616,99.57805923],[4.53649059,0.03605791,99.57734484],[4.53649104,0.03605965,99.57662944],[4.53649149,0.0360614,99.575913],[4.53649195,0.03606314,99.5751955],[4.5364924,0.03606489,99.57447692],[4.53649285,0.03606663,99.57375724],[4.53649331,0.03606838,99.57303642],[4.53649376,0.03607012,99.57231446],[4.53649421,0.03607187,99.57159132],[4.53649466,0.03607362,99.57086698],[4.53649512,0.03607536,99.57014143],[4.53649557,0.03607711,99.56941464],[4.53649602,0.03607885,99.56868658],[4.53649647,0.0360806,99.56795724],[4.53649693,0.03608234,99.56722659],[4.53649738,0.03608409,99.56649461],[4.53649783,0.03608584,99.56576128],[4.53649828,0.03608758,99.56502657],[4.53649873,0.03608933,99.56429047],[4.53649918,0.03609107,99.56355294],[4.53649964,0.03609282,99.56281397],[4.53650009,0.03609457,99.56207354],[4.53650054,0.03609631,99.56133162],[4.53650099,0.03609806,99.56058819],[4.53650144,0.0360998,99.55984323],[4.53650189,0.03610155,99.55909672],[4.53650234,0.0361033,99.55834863],[4.53650279,0.03610504,99.55759895],[4.53650324,0.03610679,99.55684764],[4.53650369,0.03610854,99.5560947],[4.53650414,0.03611028,99.55534012],[4.53650459,0.03611203,99.55458389],[4.53650504,0.03611378,99.55382602],[4.53650549,0.03611552,99.5530665],[4.53650593,0.03611727,99.55230532],[4.53650638,0.03611902,99.55154249],[4.53650683,0.03612076,99.55077799],[4.53650728,0.03612251,99.55001183],[4.53650773,0.03612426,99.549244],[4.53650817,0.036126,99.54847451],[4.53650862,0.03612775,99.54770338],[4.53650907,0.0361295,99.54693063],[4.53650951,0.03613124,99.54615629],[4.53650996,0.03613299,99.54538037],[4.53651041,0.03613474,99.54460289],[4.53651085,0.03613649,99.54382388],[4.5365113,0.03613823,99.54304335],[4.53651174,0.03613998,99.54226133],[4.53651219,0.03614173,99.54147784],[4.53651264,0.03614348,99.5406929],[4.53651308,0.03614522,99.53990652],[4.53651353,0.03614697,99.53911874],[4.53651397,0.03614872,99.53832957],[4.53651441,0.03615047,99.53753903],[4.53651486,0.03615222,99.53674714],[4.5365153,0.03615396,99.53595392],[4.53651575,0.03615571,99.5351594],[4.53651619,0.03615746,99.53436359],[4.53651663,0.03615921,99.53356652],[4.53651708,0.03616096,99.53276821],[4.53651752,0.0361627,99.53196867],[4.53651797,0.03616445,99.53116794],[4.53651841,0.0361662,99.53036602],[4.53651885,0.03616795,99.52956294],[4.53651929,0.0361697,99.52875872],[4.53651974,0.03617144,99.52795338],[4.53652018,0.03617319,99.52714694],[4.53652062,0.03617494,99.52633942],[4.53652107,0.03617669,99.52553085],[4.53652151,0.03617844,99.52472124],[4.53652195,0.03618019,99.52391061],[4.53652239,0.03618193,99.52309899],[4.53652284,0.03618368,99.5222864],[4.53652328,0.03618543,99.52147285],[4.53652372,0.03618718,99.52065836],[4.53652416,0.03618893,99.51984296],[4.5365246,0.03619068,99.51902667],[4.53652505,0.03619242,99.51820951],[4.53652549,0.03619417,99.51739149],[4.53652593,0.03619592,99.51657264],[4.53652637,0.03619767,99.51575298],[4.53652681,0.03619942,99.51493253],[4.53652726,0.03620117,99.51411131],[4.5365277,0.03620291,99.51328934],[4.53652814,0.03620466,99.51246664],[4.53652858,0.03620641,99.51164322],[4.53652902,0.03620816,99.51081912],[4.53652947,0.03620991,99.50999435],[4.53652991,0.03621166,99.50916891],[4.53653035,0.03621341,99.50834281],[4.53653079,0.03621515,99.50751604],[4.53653123,0.0362169,99.50668858],[4.53653168,0.03621865,99.50586044],[4.53653212,0.0362204,99.5050316],[4.53653256,0.03622215,99.50420205],[4.536533,0.0362239,99.5033718],[4.53653344,0.03622564,99.50254082],[4.53653389,0.03622739,99.50170912],[4.53653433,0.03622914,99.50087668],[4.53653477,0.03623089,99.5000435],[4.53653521,0.03623264,99.49920957],[4.53653565,0.03623439,99.49837491],[4.5365361,0.03623614,99.49753952],[4.53653654,0.03623788,99.49670344],[4.53653698,0.03623963,99.49586666],[4.53653742,0.03624138,99.4950292],[4.53653786,0.03624313,99.49419108],[4.5365383,0.03624488,99.49335231],[4.53653875,0.03624663,99.49251291],[4.53653919,0.03624837,99.49167289],[4.53653963,0.03625012,99.49083226],[4.53654007,0.03625187,99.48999104],[4.53654051,0.03625362,99.48914925],[4.53654095,0.03625537,99.48830689],[4.5365414,0.03625712,99.48746399],[4.53654184,0.03625887,99.48662055],[4.53654228,0.03626061,99.4857766],[4.53654272,0.03626236,99.48493214],[4.53654316,0.03626411,99.48408719],[4.53654361,0.03626586,99.48324176],[4.53654405,0.03626761,99.48239587],[4.53654449,0.03626936,99.48154953],[4.53654493,0.0362711,99.48070275],[4.53654537,0.03627285,99.47985556],[4.53654582,0.0362746,99.47900795],[4.53654626,0.03627635,99.47815996],[4.5365467,0.0362781,99.47731159],[4.53654714,0.03627985,99.47646285],[4.53654759,0.0362816,99.47561376],[4.53654803,0.03628334,99.47476433],[4.53654847,0.03628509,99.47391458],[4.53654891,0.03628684,99.47306453],[4.53654936,0.03628859,99.47221417],[4.5365498,0.03629034,99.47136353],[4.53655024,0.03629208,99.47051263],[4.53655069,0.03629383,99.46966147],[4.53655113,0.03629558,99.46881007],[4.53655157,0.03629733,99.46795844],[4.53655202,0.03629908,99.4671066],[4.53655246,0.03630083,99.46625455],[4.5365529,0.03630257,99.46540232],[4.53655335,0.03630432,99.46454992],[4.53655379,0.03630607,99.46369735],[4.53655423,0.03630782,99.46284464],[4.53655468,0.03630957,99.4619918],[4.53655512,0.03631131,99.46113883],[4.53655557,0.03631306,99.46028576],[4.53655601,0.03631481,99.4594326],[4.53655646,0.03631656,99.45857935],[4.5365569,0.0363183,99.45772604],[4.53655735,0.03632005,99.45687267],[4.53655779,0.0363218,99.45601926],[4.53655824,0.03632355,99.45516583],[4.53655868,0.03632529,99.45431238],[4.53655913,0.03632704,99.45345893],[4.53655957,0.03632879,99.45260549],[4.53656002,0.03633054,99.45175208],[4.53656046,0.03633228,99.45089871],[4.53656091,0.03633403,99.4500454],[4.53656136,0.03633578,99.44919217],[4.5365618,0.03633753,99.44833902],[4.53656225,0.03633927,99.44748597],[4.5365627,0.03634102,99.44663305],[4.53656314,0.03634277,99.44578025],[4.53656359,0.03634451,99.4449276],[4.53656404,0.03634626,99.44407511],[4.53656449,0.03634801,99.4432228],[4.53656494,0.03634976,99.44237071],[4.53656538,0.0363515,99.44151889],[4.53656583,0.03635325,99.4406674],[4.53656628,0.036355,99.43981627],[4.53656673,0.03635674,99.43896557],[4.53656718,0.03635849,99.43811535],[4.53656763,0.03636024,99.43726565],[4.53656808,0.03636198,99.43641652],[4.53656853,0.03636373,99.43556802],[4.53656898,0.03636547,99.4347202],[4.53656943,0.03636722,99.4338731],[4.53656988,0.03636897,99.43302677],[4.53657033,0.03637071,99.43218127],[4.53657079,0.03637246,99.43133665],[4.53657124,0.0363742,99.43049295],[4.53657169,0.03637595,99.42965022],[4.53657215,0.0363777,99.42880842],[4.5365726,0.03637944,99.42796743],[4.53657305,0.03638119,99.42712713],[4.53657351,0.03638293,99.42628739],[4.53657396,0.03638468,99.42544808],[4.53657442,0.03638642,99.42460909],[4.53657487,0.03638817,99.42377029],[4.53657533,0.03638991,99.42293155],[4.53657579,0.03639166,99.42209276],[4.53657624,0.0363934,99.42125379],[4.5365767,0.03639515,99.42041452],[4.53657715,0.03639689,99.41957483],[4.53657761,0.03639864,99.41873459],[4.53657806,0.03640038,99.41789368],[4.53657852,0.03640213,99.41705199],[4.53657898,0.03640387,99.41620939],[4.53657943,0.03640562,99.41536577],[4.53657989,0.03640736,99.41452099],[4.53658034,0.03640911,99.41367495],[4.5365808,0.03641085,99.41282753],[4.53658125,0.0364126,99.41197859],[4.5365817,0.03641434,99.41112804],[4.53658216,0.03641609,99.41027574],[4.53658261,0.03641783,99.40942158],[4.53658306,0.03641958,99.40856545],[4.53658351,0.03642132,99.40770722],[4.53658397,0.03642307,99.40684678],[4.53658442,0.03642482,99.40598401],[4.53658487,0.03642656,99.40511879],[4.53658532,0.03642831,99.40425102],[4.53658577,0.03643006,99.40338056],[4.53658621,0.0364318,99.40250732],[4.53658666,0.03643355,99.40163117],[4.5365871,0.03643529,99.400752],[4.53658755,0.03643704,99.39986975],[4.53658799,0.03643878,99.39898456],[4.53658844,0.03644053,99.39809664],[4.53658888,0.03644228,99.39720619],[4.53658932,0.03644403,99.39631341],[4.53658977,0.03644578,99.3954185],[4.53659021,0.03644753,99.39452166],[4.53659065,0.03644927,99.39362308],[4.53659109,0.03645102,99.39272297],[4.53659153,0.03645277,99.39182153],[4.53659197,0.03645452,99.39091895],[4.53659241,0.03645627,99.39001539],[4.53659285,0.03645802,99.38911102],[4.53659329,0.03645977,99.388206],[4.53659373,0.03646152,99.38730049],[4.53659417,0.03646327,99.38639464],[4.53659461,0.03646502,99.38548862],[4.53659505,0.03646676,99.38458258],[4.53659549,0.03646851,99.38367668],[4.53659593,0.03647026,99.38277107],[4.53659637,0.03647201,99.38186592],[4.53659681,0.03647376,99.38096137],[4.53659312,0.03647471,99.36952703]]],"type":"Polygon"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":1,"type":"shoulder","predecessorId":1,"sOffset":248.3390056326}},{"geometry":{"coordinates":[[[4.53659681,0.03647376,99.38096137],[4.53659637,0.03647201,99.38186592],[4.53659593,0.03647026,99.38277107],[4.53659549,0.03646851,99.38367668],[4.53659505,0.03646676,99.38458258],[4.53659461,0.03646502,99.38548862],[4.53659417,0.03646327,99.38639464],[4.53659373,0.03646152,99.38730049],[4.53659329,0.03645977,99.388206],[4.53659285,0.03645802,99.38911102],[4.53659241,0.03645627,99.39001539],[4.53659197,0.03645452,99.39091895],[4.53659153,0.03645277,99.39182153],[4.53659109,0.03645102,99.39272297],[4.53659065,0.03644927,99.39362308],[4.53659021,0.03644753,99.39452166],[4.53658977,0.03644578,99.3954185],[4.53658932,0.03644403,99.39631341],[4.53658888,0.03644228,99.39720619],[4.53658844,0.03644053,99.39809664],[4.53658799,0.03643878,99.39898456],[4.53658755,0.03643704,99.39986975],[4.5365871,0.03643529,99.400752],[4.53658666,0.03643355,99.40163117],[4.53658621,0.0364318,99.40250732],[4.53658577,0.03643006,99.40338056],[4.53658532,0.03642831,99.40425102],[4.53658487,0.03642656,99.40511879],[4.53658442,0.03642482,99.40598401],[4.53658397,0.03642307,99.40684678],[4.53658351,0.03642132,99.40770722],[4.53658306,0.03641958,99.40856545],[4.53658261,0.03641783,99.40942158],[4.53658216,0.03641609,99.41027574],[4.5365817,0.03641434,99.41112804],[4.53658125,0.0364126,99.41197859],[4.5365808,0.03641085,99.41282753],[4.53658034,0.03640911,99.41367495],[4.53657989,0.03640736,99.41452099],[4.53657943,0.03640562,99.41536577],[4.53657898,0.03640387,99.41620939],[4.53657852,0.03640213,99.41705199],[4.53657806,0.03640038,99.41789368],[4.53657761,0.03639864,99.41873459],[4.53657715,0.03639689,99.41957483],[4.5365767,0.03639515,99.42041452],[4.53657624,0.0363934,99.42125379],[4.53657579,0.03639166,99.42209276],[4.53657533,0.03638991,99.42293155],[4.53657487,0.03638817,99.42377029],[4.53657442,0.03638642,99.42460909],[4.53657396,0.03638468,99.42544808],[4.53657351,0.03638293,99.42628739],[4.53657305,0.03638119,99.42712713],[4.5365726,0.03637944,99.42796743],[4.53657215,0.0363777,99.42880842],[4.53657169,0.03637595,99.42965022],[4.53657124,0.0363742,99.43049295],[4.53657079,0.03637246,99.43133665],[4.53657033,0.03637071,99.43218127],[4.53656988,0.03636897,99.43302677],[4.53656943,0.03636722,99.4338731],[4.53656898,0.03636547,99.4347202],[4.53656853,0.03636373,99.43556802],[4.53656808,0.03636198,99.43641652],[4.53656763,0.03636024,99.43726565],[4.53656718,0.03635849,99.43811535],[4.53656673,0.03635674,99.43896557],[4.53656628,0.036355,99.43981627],[4.53656583,0.03635325,99.4406674],[4.53656538,0.0363515,99.44151889],[4.53656494,0.03634976,99.44237071],[4.53656449,0.03634801,99.4432228],[4.53656404,0.03634626,99.44407511],[4.53656359,0.03634451,99.4449276],[4.53656314,0.03634277,99.44578025],[4.5365627,0.03634102,99.44663305],[4.53656225,0.03633927,99.44748597],[4.5365618,0.03633753,99.44833902],[4.53656136,0.03633578,99.44919217],[4.53656091,0.03633403,99.4500454],[4.53656046,0.03633228,99.45089871],[4.53656002,0.03633054,99.45175208],[4.53655957,0.03632879,99.45260549],[4.53655913,0.03632704,99.45345893],[4.53655868,0.03632529,99.45431238],[4.53655824,0.03632355,99.45516583],[4.53655779,0.0363218,99.45601926],[4.53655735,0.03632005,99.45687267],[4.5365569,0.0363183,99.45772604],[4.53655646,0.03631656,99.45857935],[4.53655601,0.03631481,99.4594326],[4.53655557,0.03631306,99.46028576],[4.53655512,0.03631131,99.46113883],[4.53655468,0.03630957,99.4619918],[4.53655423,0.03630782,99.46284464],[4.53655379,0.03630607,99.46369735],[4.53655335,0.03630432,99.46454992],[4.5365529,0.03630257,99.46540232],[4.53655246,0.03630083,99.46625455],[4.53655202,0.03629908,99.4671066],[4.53655157,0.03629733,99.46795844],[4.53655113,0.03629558,99.46881007],[4.53655069,0.03629383,99.46966147],[4.53655024,0.03629208,99.47051263],[4.5365498,0.03629034,99.47136353],[4.53654936,0.03628859,99.47221417],[4.53654891,0.03628684,99.47306453],[4.53654847,0.03628509,99.47391458],[4.53654803,0.03628334,99.47476433],[4.53654759,0.0362816,99.47561376],[4.53654714,0.03627985,99.47646285],[4.5365467,0.0362781,99.47731159],[4.53654626,0.03627635,99.47815996],[4.53654582,0.0362746,99.47900795],[4.53654537,0.03627285,99.47985556],[4.53654493,0.0362711,99.48070275],[4.53654449,0.03626936,99.48154953],[4.53654405,0.03626761,99.48239587],[4.53654361,0.03626586,99.48324176],[4.53654316,0.03626411,99.48408719],[4.53654272,0.03626236,99.48493214],[4.53654228,0.03626061,99.4857766],[4.53654184,0.03625887,99.48662055],[4.5365414,0.03625712,99.48746399],[4.53654095,0.03625537,99.48830689],[4.53654051,0.03625362,99.48914925],[4.53654007,0.03625187,99.48999104],[4.53653963,0.03625012,99.49083226],[4.53653919,0.03624837,99.49167289],[4.53653875,0.03624663,99.49251291],[4.5365383,0.03624488,99.49335231],[4.53653786,0.03624313,99.49419108],[4.53653742,0.03624138,99.4950292],[4.53653698,0.03623963,99.49586666],[4.53653654,0.03623788,99.49670344],[4.5365361,0.03623614,99.49753952],[4.53653565,0.03623439,99.49837491],[4.53653521,0.03623264,99.49920957],[4.53653477,0.03623089,99.5000435],[4.53653433,0.03622914,99.50087668],[4.53653389,0.03622739,99.50170912],[4.53653344,0.03622564,99.50254082],[4.536533,0.0362239,99.5033718],[4.53653256,0.03622215,99.50420205],[4.53653212,0.0362204,99.5050316],[4.53653168,0.03621865,99.50586044],[4.53653123,0.0362169,99.50668858],[4.53653079,0.03621515,99.50751604],[4.53653035,0.03621341,99.50834281],[4.53652991,0.03621166,99.50916891],[4.53652947,0.03620991,99.50999435],[4.53652902,0.03620816,99.51081912],[4.53652858,0.03620641,99.51164322],[4.53652814,0.03620466,99.51246664],[4.5365277,0.03620291,99.51328934],[4.53652726,0.03620117,99.51411131],[4.53652681,0.03619942,99.51493253],[4.53652637,0.03619767,99.51575298],[4.53652593,0.03619592,99.51657264],[4.53652549,0.03619417,99.51739149],[4.53652505,0.03619242,99.51820951],[4.5365246,0.03619068,99.51902667],[4.53652416,0.03618893,99.51984296],[4.53652372,0.03618718,99.52065836],[4.53652328,0.03618543,99.52147285],[4.53652284,0.03618368,99.5222864],[4.53652239,0.03618193,99.52309899],[4.53652195,0.03618019,99.52391061],[4.53652151,0.03617844,99.52472124],[4.53652107,0.03617669,99.52553085],[4.53652062,0.03617494,99.52633942],[4.53652018,0.03617319,99.52714694],[4.53651974,0.03617144,99.52795338],[4.53651929,0.0361697,99.52875872],[4.53651885,0.03616795,99.52956294],[4.53651841,0.0361662,99.53036602],[4.53651797,0.03616445,99.53116794],[4.53651752,0.0361627,99.53196867],[4.53651708,0.03616096,99.53276821],[4.53651663,0.03615921,99.53356652],[4.53651619,0.03615746,99.53436359],[4.53651575,0.03615571,99.5351594],[4.5365153,0.03615396,99.53595392],[4.53651486,0.03615222,99.53674714],[4.53651441,0.03615047,99.53753903],[4.53651397,0.03614872,99.53832957],[4.53651353,0.03614697,99.53911874],[4.53651308,0.03614522,99.53990652],[4.53651264,0.03614348,99.5406929],[4.53651219,0.03614173,99.54147784],[4.53651174,0.03613998,99.54226133],[4.5365113,0.03613823,99.54304335],[4.53651085,0.03613649,99.54382388],[4.53651041,0.03613474,99.54460289],[4.53650996,0.03613299,99.54538037],[4.53650951,0.03613124,99.54615629],[4.53650907,0.0361295,99.54693063],[4.53650862,0.03612775,99.54770338],[4.53650817,0.036126,99.54847451],[4.53650773,0.03612426,99.549244],[4.53650728,0.03612251,99.55001183],[4.53650683,0.03612076,99.55077799],[4.53650638,0.03611902,99.55154249],[4.53650593,0.03611727,99.55230532],[4.53650549,0.03611552,99.5530665],[4.53650504,0.03611378,99.55382602],[4.53650459,0.03611203,99.55458389],[4.53650414,0.03611028,99.55534012],[4.53650369,0.03610854,99.5560947],[4.53650324,0.03610679,99.55684764],[4.53650279,0.03610504,99.55759895],[4.53650234,0.0361033,99.55834863],[4.53650189,0.03610155,99.55909672],[4.53650144,0.0360998,99.55984323],[4.53650099,0.03609806,99.56058819],[4.53650054,0.03609631,99.56133162],[4.53650009,0.03609457,99.56207354],[4.53649964,0.03609282,99.56281397],[4.53649918,0.03609107,99.56355294],[4.53649873,0.03608933,99.56429047],[4.53649828,0.03608758,99.56502657],[4.53649783,0.03608584,99.56576128],[4.53649738,0.03608409,99.56649461],[4.53649693,0.03608234,99.56722659],[4.53649647,0.0360806,99.56795724],[4.53649602,0.03607885,99.56868658],[4.53649557,0.03607711,99.56941464],[4.53649512,0.03607536,99.57014143],[4.53649466,0.03607362,99.57086698],[4.53649421,0.03607187,99.57159132],[4.53649376,0.03607012,99.57231446],[4.53649331,0.03606838,99.57303642],[4.53649285,0.03606663,99.57375724],[4.5364924,0.03606489,99.57447692],[4.53649195,0.03606314,99.5751955],[4.53649149,0.0360614,99.575913],[4.53649104,0.03605965,99.57662944],[4.53649059,0.03605791,99.57734484],[4.53649013,0.03605616,99.57805923],[4.53648968,0.03605441,99.57877262],[4.53648923,0.03605267,99.57948505],[4.53648878,0.03605092,99.58019652],[4.53648832,0.03604918,99.58090708],[4.53648787,0.03604743,99.58161672],[4.53648742,0.03604569,99.58232546],[4.53648696,0.03604394,99.58303329],[4.53648651,0.0360422,99.58374021],[4.53648606,0.03604045,99.58444621],[4.5364856,0.0360387,99.5851513],[4.53648515,0.03603696,99.58585546],[4.5364847,0.03603521,99.5865587],[4.53648424,0.03603347,99.58726101],[4.53648379,0.03603172,99.58796238],[4.53648334,0.03602998,99.58866282],[4.53648289,0.03602823,99.58936232],[4.53648243,0.03602649,99.59006088],[4.53648198,0.03602474,99.5907585],[4.53648153,0.03602299,99.59145516],[4.53648107,0.03602125,99.59215087],[4.53648062,0.0360195,99.59284563],[4.53648017,0.03601776,99.59353942],[4.53647972,0.03601601,99.59423226],[4.53647926,0.03601427,99.59492412],[4.53647881,0.03601252,99.595615],[4.53647836,0.03601077,99.5963049],[4.53647791,0.03600903,99.59699381],[4.53647745,0.03600728,99.59768172],[4.536477,0.03600554,99.59836863],[4.53647655,0.03600379,99.59905452],[4.53647609,0.03600205,99.5997394],[4.53647564,0.0360003,99.60042324],[4.53647519,0.03599856,99.60110606],[4.53647474,0.03599681,99.60178783],[4.53647428,0.03599506,99.60246856],[4.53647383,0.03599332,99.60314823],[4.53647338,0.03599157,99.60382684],[4.53647292,0.03598983,99.60450438],[4.53647247,0.03598808,99.60518085],[4.53647202,0.03598634,99.60585623],[4.53647157,0.03598459,99.60653053],[4.53647111,0.03598284,99.60720372],[4.53647066,0.0359811,99.60787582],[4.53647021,0.03597935,99.6085468],[4.53646976,0.03597761,99.60921667],[4.5364693,0.03597586,99.60988541],[4.53646885,0.03597412,99.61055303],[4.5364684,0.03597237,99.6112195],[4.53646794,0.03597063,99.61188483],[4.53646749,0.03596888,99.61254901],[4.53646704,0.03596713,99.61321202],[4.53646658,0.03596539,99.61387388],[4.53646613,0.03596364,99.61453456],[4.53646568,0.0359619,99.61519406],[4.53646523,0.03596015,99.61585237],[4.53646477,0.03595841,99.61650949],[4.53646432,0.03595666,99.61716541],[4.53646387,0.03595492,99.61782012],[4.53646341,0.03595317,99.61847362],[4.53646296,0.03595142,99.6191259],[4.53646251,0.03594968,99.61977695],[4.53646205,0.03594793,99.62042676],[4.5364616,0.03594619,99.62107534],[4.53646115,0.03594444,99.62172266],[4.53646069,0.0359427,99.62236873],[4.53646024,0.03594095,99.62301354],[4.53645979,0.03593921,99.62365709],[4.53645933,0.03593746,99.62429935],[4.53645888,0.03593572,99.62494035],[4.53645843,0.03593397,99.62558007],[4.53645797,0.03593222,99.62621851],[4.53645752,0.03593048,99.62685568],[4.53645706,0.03592873,99.62749158],[4.53645661,0.03592699,99.6281262],[4.53645616,0.03592524,99.62875954],[4.5364557,0.0359235,99.62939161],[4.53645525,0.03592175,99.63002241],[4.5364548,0.03592001,99.63065192],[4.53645434,0.03591826,99.63128017],[4.53645389,0.03591652,99.63190713],[4.53645343,0.03591477,99.63253282],[4.53645298,0.03591303,99.63315724],[4.53645252,0.03591128,99.63378038],[4.53645207,0.03590954,99.63440224],[4.53645162,0.03590779,99.63502283],[4.53645116,0.03590605,99.63564214],[4.53645071,0.0359043,99.63626017],[4.53645025,0.03590256,99.63687693],[4.5364498,0.03590081,99.63749241],[4.53644934,0.03589907,99.63810662],[4.53644889,0.03589732,99.63871955],[4.53644843,0.03589558,99.63933121],[4.53644798,0.03589383,99.63994158],[4.53644752,0.03589209,99.64055068],[4.53644707,0.03589034,99.6411585],[4.53644661,0.0358886,99.64176504],[4.53644616,0.03588685,99.64237031],[4.5364457,0.03588511,99.64297431],[4.53644525,0.03588336,99.64357707],[4.53644479,0.03588162,99.64417861],[4.53644433,0.03587987,99.64477893],[4.53644388,0.03587813,99.64537805],[4.53644342,0.03587638,99.64597599],[4.53644297,0.03587464,99.64657276],[4.53644251,0.03587289,99.64716838],[4.53644206,0.03587115,99.64776287],[4.5364416,0.0358694,99.64835623],[4.53644114,0.03586766,99.64894848],[4.53644069,0.03586591,99.64953965],[4.53644023,0.03586417,99.65012973],[4.53643977,0.03586242,99.65071876],[4.53643932,0.03586068,99.65130674],[4.53643886,0.03585893,99.65189368],[4.53643841,0.03585719,99.65247961],[4.53643795,0.03585544,99.65306454],[4.53643749,0.0358537,99.65364848],[4.53643704,0.03585196,99.65423145],[4.53643658,0.03585021,99.65481347],[4.53643612,0.03584847,99.65539454],[4.53643567,0.03584672,99.65597468],[4.53643521,0.03584498,99.6565539],[4.53643476,0.03584323,99.65713223],[4.5364343,0.03584149,99.65770968],[4.53643384,0.03583974,99.65828625],[4.53643339,0.035838,99.65886197],[4.53643293,0.03583625,99.65943685],[4.53643247,0.03583451,99.6600109],[4.53643202,0.03583276,99.66058414],[4.53643156,0.03583102,99.66115658],[4.53643111,0.03582927,99.66172824],[4.53643065,0.03582753,99.66229913],[4.53643019,0.03582579,99.66286927],[4.53642974,0.03582404,99.66343866],[4.53642928,0.0358223,99.66400733],[4.53642883,0.03582055,99.66457528],[4.53642837,0.03581881,99.66514254],[4.53642791,0.03581706,99.66570911],[4.53642746,0.03581532,99.66627501],[4.536427,0.03581357,99.66684025],[4.53642655,0.03581183,99.66740485],[4.53642609,0.03581008,99.66796882],[4.53642564,0.03580834,99.66853218],[4.53642518,0.03580659,99.66909493],[4.53642472,0.03580485,99.6696571],[4.53642427,0.0358031,99.67021869],[4.53642381,0.03580136,99.67077971],[4.53642336,0.03579961,99.6713402],[4.5364229,0.03579787,99.67190014],[4.53642245,0.03579612,99.67245957],[4.53642199,0.03579438,99.67301849],[4.53642154,0.03579263,99.67357692],[4.53642108,0.03579089,99.67413486],[4.53642063,0.03578914,99.67469234],[4.53642017,0.0357874,99.67524937],[4.53641972,0.03578565,99.67580595],[4.53641927,0.03578391,99.67636211],[4.53641881,0.03578216,99.67691785],[4.53641836,0.03578042,99.67747319],[4.5364179,0.03577867,99.67802814],[4.53641745,0.03577693,99.67858272],[4.536417,0.03577518,99.67913693],[4.53641654,0.03577344,99.6796908],[4.53641609,0.03577169,99.68024432],[4.53641564,0.03576994,99.68079753],[4.53641518,0.0357682,99.68135042],[4.53641473,0.03576645,99.681903],[4.53641428,0.03576471,99.68245529],[4.53641382,0.03576296,99.68300726],[4.53641337,0.03576122,99.68355893],[4.53641292,0.03575947,99.6841103],[4.53641247,0.03575773,99.68466136],[4.53641201,0.03575598,99.68521212],[4.53641156,0.03575423,99.68576257],[4.53641111,0.03575249,99.68631272],[4.53641066,0.03575074,99.68686256],[4.53641021,0.035749,99.6874121],[4.53640976,0.03574725,99.68796133],[4.5364093,0.0357455,99.68851026],[4.53640885,0.03574376,99.68905888],[4.5364084,0.03574201,99.6896072],[4.53640795,0.03574027,99.69015522],[4.5364075,0.03573852,99.69070293],[4.53640705,0.03573677,99.69125034],[4.5364066,0.03573503,99.69179745],[4.53640615,0.03573328,99.69234425],[4.5364057,0.03573154,99.69289075],[4.53640525,0.03572979,99.69343695],[4.5364048,0.03572804,99.69398284],[4.53640435,0.0357263,99.69452843],[4.5364039,0.03572455,99.69507372],[4.53640345,0.0357228,99.69561871],[4.536403,0.03572106,99.69616339],[4.53640255,0.03571931,99.69670778],[4.5364021,0.03571756,99.69725186],[4.53640165,0.03571582,99.69779564],[4.5364012,0.03571407,99.69833913],[4.53640075,0.03571232,99.69888231],[4.53640031,0.03571058,99.69942519],[4.53639986,0.03570883,99.69996777],[4.53639941,0.03570708,99.70051006],[4.53639896,0.03570534,99.70105204],[4.53639851,0.03570359,99.70159373],[4.53639806,0.03570184,99.70213512],[4.53639762,0.0357001,99.70267622],[4.53639717,0.03569835,99.70321701],[4.53639672,0.0356966,99.70375751],[4.53639627,0.03569486,99.70429772],[4.53639582,0.03569311,99.70483763],[4.53639538,0.03569136,99.70537725],[4.53639493,0.03568962,99.70591657],[4.53639448,0.03568787,99.7064556],[4.53639403,0.03568612,99.70699434],[4.53639359,0.03568438,99.70753278],[4.53639314,0.03568263,99.70807094],[4.53639269,0.03568088,99.7086088],[4.53639225,0.03567913,99.70914638],[4.5363918,0.03567739,99.70968366],[4.53639135,0.03567564,99.71022066],[4.53639091,0.03567389,99.71075737],[4.53639046,0.03567215,99.7112938],[4.53639001,0.0356704,99.71182994],[4.53638957,0.03566865,99.71236579],[4.53638912,0.0356669,99.71290136],[4.53638868,0.03566516,99.71343665],[4.53638823,0.03566341,99.71397165],[4.53638779,0.03566166,99.71450637],[4.53638734,0.03565991,99.71504082],[4.53638689,0.03565817,99.71557498],[4.53638645,0.03565642,99.71610887],[4.536386,0.03565467,99.71664247],[4.53638556,0.03565292,99.71717575],[4.53638511,0.03565118,99.71770868],[4.53638467,0.03564943,99.7182412],[4.53638422,0.03564768,99.71877328],[4.53638378,0.03564593,99.71930487],[4.53638333,0.03564419,99.71983594],[4.53638289,0.03564244,99.72036645],[4.53638244,0.03564069,99.72089635],[4.536382,0.03563894,99.72142561],[4.53638155,0.0356372,99.72195418],[4.53638111,0.03563545,99.72248204],[4.53638066,0.0356337,99.72300913],[4.53638022,0.03563195,99.72353542],[4.53637977,0.03563021,99.72406088],[4.53637932,0.03562846,99.72458546],[4.53637888,0.03562671,99.72510913],[4.53637843,0.03562496,99.72563185],[4.53637799,0.03562322,99.72615358],[4.53637754,0.03562147,99.72667428],[4.53637709,0.03561972,99.72719391],[4.53637665,0.03561797,99.72771244],[4.5363762,0.03561623,99.72822984],[4.53637575,0.03561448,99.72874605],[4.5363753,0.03561273,99.72926105],[4.53637486,0.03561099,99.72977481],[4.53637441,0.03560924,99.73028727],[4.53637396,0.03560749,99.73079841],[4.53637351,0.03560575,99.73130818],[4.53637306,0.035604,99.73181656],[4.53637261,0.03560225,99.7323235],[4.53637216,0.03560051,99.73282897],[4.53637171,0.03559876,99.73333293],[4.53637126,0.03559701,99.73383535],[4.53637081,0.03559527,99.73433619],[4.53637036,0.03559352,99.73483542],[4.53636991,0.03559178,99.73533309],[4.53636946,0.03559003,99.73582924],[4.536369,0.03558829,99.73632392],[4.53636855,0.03558654,99.73681717],[4.5363681,0.03558479,99.73730906],[4.53636764,0.03558305,99.73779962],[4.53636719,0.0355813,99.7382889],[4.53636673,0.03557956,99.73877695],[4.53636628,0.03557781,99.73926381],[4.53636582,0.03557607,99.73974955],[4.53636537,0.03557432,99.74023419],[4.53636491,0.03557258,99.7407178],[4.53636446,0.03557083,99.74120041],[4.536364,0.03556909,99.74168208],[4.53636355,0.03556735,99.74216284],[4.53636309,0.0355656,99.74264275],[4.53636263,0.03556386,99.74312185],[4.53636218,0.03556211,99.74360019],[4.53636172,0.03556037,99.74407782],[4.53636126,0.03555862,99.74455477],[4.5363608,0.03555688,99.74503109],[4.53636035,0.03555513,99.74550682],[4.53635989,0.03555339,99.74598198],[4.53635943,0.03555164,99.74645663],[4.53635897,0.0355499,99.7469308],[4.53635852,0.03554816,99.74740454],[4.53635806,0.03554641,99.74787787],[4.5363576,0.03554467,99.74835083],[4.53635714,0.03554292,99.74882348],[4.53635669,0.03554118,99.74929583],[4.53635623,0.03553944,99.74976794],[4.53635577,0.03553769,99.75023984],[4.53635531,0.03553595,99.75071157],[4.53635485,0.0355342,99.75118317],[4.5363544,0.03553246,99.75165467],[4.53635394,0.03553071,99.75212612],[4.53635348,0.03552897,99.75259755],[4.53635302,0.03552722,99.75306899],[4.53635257,0.03552548,99.75354049],[4.53635211,0.03552374,99.75401204],[4.53635165,0.03552199,99.75448364],[4.5363512,0.03552025,99.75495529],[4.53635074,0.0355185,99.75542697],[4.53635028,0.03551676,99.75589869],[4.53634983,0.03551501,99.75637044],[4.53634937,0.03551327,99.75684222],[4.53634891,0.03551152,99.75731402],[4.53634846,0.03550978,99.75778585],[4.536348,0.03550803,99.75825768],[4.53634754,0.03550629,99.75872953],[4.53634709,0.03550455,99.75920138],[4.53634663,0.0355028,99.75967323],[4.53634618,0.03550106,99.76014508],[4.53634572,0.03549931,99.76061692],[4.53634527,0.03549757,99.76108876],[4.53634481,0.03549582,99.76156058],[4.53634435,0.03549408,99.76203238],[4.5363439,0.03549233,99.76250416],[4.53634344,0.03549059,99.76297591],[4.53634299,0.03548884,99.76344763],[4.53634253,0.0354871,99.76391931],[4.53634208,0.03548535,99.76439096],[4.53634163,0.03548361,99.76486257],[4.53634117,0.03548186,99.76533412],[4.53634072,0.03548012,99.76580563],[4.53634026,0.03547837,99.76627708],[4.53633981,0.03547662,99.76674848],[4.53633935,0.03547488,99.76721981],[4.5363389,0.03547313,99.76769108],[4.53633845,0.03547139,99.76816227],[4.53633799,0.03546964,99.7686334],[4.53633754,0.0354679,99.76910444],[4.53633708,0.03546615,99.76957541],[4.53633663,0.03546441,99.77004629],[4.53633618,0.03546266,99.77051708],[4.53633572,0.03546092,99.77098777],[4.53633527,0.03545917,99.77145836],[4.53633482,0.03545743,99.77192883],[4.53633436,0.03545568,99.77239917],[4.53633391,0.03545393,99.77286936],[4.53633346,0.03545219,99.77333941],[4.536333,0.03545044,99.7738093],[4.53633255,0.0354487,99.77427901],[4.5363321,0.03544695,99.77474853],[4.53633165,0.03544521,99.77521786],[4.53633119,0.03544346,99.77568699],[4.53633074,0.03544172,99.7761559],[4.53633029,0.03543997,99.77662458],[4.53632984,0.03543822,99.77709302],[4.53632938,0.03543648,99.77756121],[4.53632893,0.03543473,99.77802914],[4.53632848,0.03543299,99.7784968],[4.53632803,0.03543124,99.77896417],[4.53632757,0.0354295,99.77943125],[4.53632712,0.03542775,99.77989803],[4.53632667,0.035426,99.78036449],[4.53632622,0.03542426,99.78083062],[4.53632576,0.03542251,99.78129642],[4.53632531,0.03542077,99.78176187],[4.53632486,0.03541902,99.78222695],[4.53632441,0.03541728,99.78269167],[4.53632395,0.03541553,99.78315601],[4.5363235,0.03541378,99.78361995],[4.53632305,0.03541204,99.78408349],[4.5363226,0.03541029,99.78454662],[4.53632215,0.03540855,99.78500932],[4.53632169,0.0354068,99.78547158],[4.53632124,0.03540506,99.7859334],[4.53632079,0.03540331,99.78639476],[4.53632034,0.03540156,99.78685565],[4.53631988,0.03539982,99.78731606],[4.53631943,0.03539807,99.78777597],[4.53631898,0.03539633,99.78823539],[4.53631853,0.03539458,99.78869429],[4.53631807,0.03539284,99.78915267],[4.53631762,0.03539109,99.78961051],[4.53631717,0.03538934,99.79006782],[4.53631672,0.0353876,99.79052457],[4.53631626,0.03538585,99.79098077],[4.53631581,0.03538411,99.7914364],[4.53631536,0.03538236,99.79189146],[4.5363149,0.03538062,99.79234593],[4.53631445,0.03537887,99.79279982],[4.536314,0.03537712,99.79325311],[4.53631355,0.03537538,99.79370579],[4.53631309,0.03537363,99.79415786],[4.53631264,0.03537189,99.79460931],[4.53631219,0.03537014,99.79506013],[4.53631173,0.0353684,99.79551031],[4.53631128,0.03536665,99.79595985],[4.53631083,0.03536491,99.79640873],[4.53631037,0.03536316,99.79685695],[4.53630992,0.03536142,99.7973045],[4.53630946,0.03535967,99.79775137],[4.53630901,0.03535792,99.79819755],[4.53630856,0.03535618,99.79864304],[4.5363081,0.03535443,99.79908783],[4.53630765,0.03535269,99.7995319],[4.53630719,0.03535094,99.79997526],[4.53630674,0.0353492,99.80041788],[4.53630629,0.03534745,99.80085977],[4.53630583,0.03534571,99.80130092],[4.53630538,0.03534396,99.80174131],[4.53630492,0.03534222,99.80218095],[4.53630447,0.03534047,99.80261981],[4.53630401,0.03533873,99.80305789],[4.53630356,0.03533698,99.80349519],[4.5363031,0.03533524,99.8039317],[4.53630265,0.03533349,99.8043674],[4.53630219,0.03533175,99.80480229],[4.53630174,0.03533,99.80523636],[4.53630128,0.03532826,99.8056696],[4.53630082,0.03532651,99.806102],[4.53630037,0.03532477,99.80653356],[4.53629991,0.03532302,99.80696426],[4.53629946,0.03532128,99.8073941],[4.536299,0.03531953,99.80782307],[4.53629854,0.03531779,99.80825116],[4.53629809,0.03531604,99.80867837],[4.53629763,0.0353143,99.80910467],[4.53629717,0.03531256,99.80953008],[4.53629672,0.03531081,99.80995459],[4.53629626,0.03530907,99.81037821],[4.5362958,0.03530732,99.81080095],[4.53629534,0.03530558,99.8112228],[4.53629489,0.03530383,99.81164378],[4.53629443,0.03530209,99.81206389],[4.53629397,0.03530034,99.81248314],[4.53629351,0.0352986,99.81290152],[4.53629306,0.03529686,99.81331904],[4.5362926,0.03529511,99.81373571],[4.53629214,0.03529337,99.81415154],[4.53629168,0.03529162,99.81456652],[4.53629122,0.03528988,99.81498066],[4.53629076,0.03528813,99.81539397],[4.53629031,0.03528639,99.81580645],[4.53628985,0.03528465,99.81621811],[4.53628939,0.0352829,99.81662894],[4.53628893,0.03528116,99.81703897],[4.53628847,0.03527941,99.81744818],[4.53628801,0.03527767,99.81785659],[4.53628755,0.03527593,99.8182642],[4.53628709,0.03527418,99.81867101],[4.53628663,0.03527244,99.81907703],[4.53628617,0.03527069,99.81948227],[4.53628571,0.03526895,99.81988672],[4.53628525,0.03526721,99.8202904],[4.53628479,0.03526546,99.82069331],[4.53628433,0.03526372,99.82109546],[4.53628387,0.03526198,99.82149684],[4.53628341,0.03526023,99.82189747],[4.53628295,0.03525849,99.82229734],[4.53628249,0.03525674,99.82269647],[4.53628203,0.035255,99.82309486],[4.53628157,0.03525326,99.82349251],[4.53628111,0.03525151,99.82388943],[4.53628065,0.03524977,99.82428562],[4.53628019,0.03524803,99.82468109],[4.53627973,0.03524628,99.82507585],[4.53627927,0.03524454,99.82546989],[4.53627881,0.0352428,99.82586323],[4.53627835,0.03524105,99.82625587],[4.53627789,0.03523931,99.82664781],[4.53627743,0.03523756,99.82703906],[4.53627697,0.03523582,99.82742963],[4.53627651,0.03523408,99.82781951],[4.53627605,0.03523233,99.82820872],[4.53627559,0.03523059,99.82859726],[4.53627512,0.03522885,99.82898513],[4.53627466,0.0352271,99.82937235],[4.5362742,0.03522536,99.82975891],[4.53627374,0.03522362,99.83014482],[4.53627328,0.03522187,99.83053009],[4.53627282,0.03522013,99.83091471],[4.53627236,0.03521839,99.83129869],[4.5362719,0.03521664,99.83168204],[4.53627144,0.0352149,99.83206474],[4.53627098,0.03521316,99.83244681],[4.53627052,0.03521141,99.83282824],[4.53627005,0.03520967,99.83320904],[4.53626959,0.03520793,99.83358921],[4.53626913,0.03520618,99.83396876],[4.53626867,0.03520444,99.83434767],[4.53626821,0.0352027,99.83472596],[4.53626775,0.03520095,99.83510362],[4.53626729,0.03519921,99.83548066],[4.53626683,0.03519746,99.83585708],[4.53626637,0.03519572,99.83623288],[4.5362659,0.03519398,99.83660807],[4.53626544,0.03519223,99.83698264],[4.53626498,0.03519049,99.83735659],[4.53626452,0.03518875,99.83772994],[4.53626406,0.035187,99.83810267],[4.5362636,0.03518526,99.8384748],[4.53626314,0.03518352,99.83884632],[4.53626268,0.03518177,99.83921724],[4.53626222,0.03518003,99.83958755],[4.53626175,0.03517829,99.83995727],[4.53626129,0.03517654,99.84032638],[4.53626083,0.0351748,99.8406949],[4.53626037,0.03517306,99.84106283],[4.53625991,0.03517131,99.84143016],[4.53625945,0.03516957,99.8417969],[4.53625899,0.03516783,99.84216305],[4.53625853,0.03516608,99.84252862],[4.53625807,0.03516434,99.8428936],[4.53625761,0.0351626,99.843258],[4.53625714,0.03516085,99.84362182],[4.53625668,0.03515911,99.84398505],[4.53625622,0.03515736,99.8443477],[4.53625576,0.03515562,99.84470976],[4.5362553,0.03515388,99.84507122],[4.53625484,0.03515213,99.8454321],[4.53625438,0.03515039,99.84579237],[4.53625392,0.03514865,99.84615205],[4.53625346,0.0351469,99.84651112],[4.536253,0.03514516,99.84686959],[4.53625254,0.03514342,99.84722745],[4.53625208,0.03514167,99.8475847],[4.53625162,0.03513993,99.84794134],[4.53625115,0.03513819,99.84829736],[4.53625069,0.03513644,99.84865276],[4.53625023,0.0351347,99.84900754],[4.53624977,0.03513295,99.8493617],[4.53624931,0.03513121,99.84971523],[4.53624885,0.03512947,99.85006813],[4.53624839,0.03512772,99.8504204],[4.53624793,0.03512598,99.85077204],[4.53624747,0.03512424,99.85112303],[4.53624701,0.03512249,99.85147339],[4.53624655,0.03512075,99.8518231],[4.53624609,0.03511901,99.85217217],[4.53624563,0.03511726,99.85252058],[4.53624517,0.03511552,99.85286835],[4.53624471,0.03511377,99.85321546],[4.53624425,0.03511203,99.85356192],[4.53624379,0.03511029,99.85390771],[4.53624332,0.03510854,99.85425285],[4.53624286,0.0351068,99.85459731],[4.5362424,0.03510506,99.85494111],[4.53624194,0.03510331,99.85528424],[4.53624148,0.03510157,99.8556267],[4.53624102,0.03509983,99.85596848],[4.53624056,0.03509808,99.85630958],[4.5362401,0.03509634,99.85665],[4.53623964,0.03509459,99.85698973],[4.53623918,0.03509285,99.85732878],[4.53623872,0.03509111,99.85766714],[4.53623826,0.03508936,99.8580048],[4.5362378,0.03508762,99.85834177],[4.53623734,0.03508588,99.85867804],[4.53623688,0.03508413,99.85901361],[4.53623642,0.03508239,99.85934848],[4.53623596,0.03508065,99.85968264],[4.5362355,0.0350789,99.86001608],[4.53623504,0.03507716,99.86034882],[4.53623458,0.03507541,99.86068084],[4.53623412,0.03507367,99.86101215],[4.53623366,0.03507193,99.86134273],[4.53623319,0.03507018,99.86167259],[4.53623273,0.03506844,99.86200172],[4.53623227,0.0350667,99.86233012],[4.53623181,0.03506495,99.86265779],[4.53623135,0.03506321,99.86298473],[4.53623089,0.03506147,99.86331093],[4.53623043,0.03505972,99.86363638],[4.53622997,0.03505798,99.8639611],[4.53622951,0.03505623,99.86428507],[4.53622905,0.03505449,99.86460828],[4.53622859,0.03505275,99.86493075],[4.53622813,0.035051,99.86525246],[4.53622767,0.03504926,99.86557342],[4.53622721,0.03504752,99.86589361],[4.53622675,0.03504577,99.86621304],[4.53622629,0.03504403,99.8665317],[4.53622583,0.03504229,99.8668496],[4.53622537,0.03504054,99.86716672],[4.53622491,0.0350388,99.86748307],[4.53622445,0.03503705,99.86779864],[4.53622399,0.03503531,99.86811343],[4.53622352,0.03503357,99.86842743],[4.53622306,0.03503182,99.86874065],[4.5362226,0.03503008,99.86905308],[4.53622214,0.03502834,99.86936472],[4.53622168,0.03502659,99.86967557],[4.53622122,0.03502485,99.86998561],[4.53622076,0.03502311,99.87029486],[4.5362203,0.03502136,99.8706033],[4.53621984,0.03501962,99.87091093],[4.53621938,0.03501787,99.87121775],[4.53621892,0.03501613,99.87152375],[4.53621846,0.03501439,99.87182893],[4.536218,0.03501264,99.87213328],[4.53621754,0.0350109,99.87243681],[4.53621708,0.03500916,99.8727395],[4.53621661,0.03500741,99.87304134],[4.53621615,0.03500567,99.87334235],[4.53621569,0.03500393,99.8736425],[4.53621523,0.03500218,99.87394181],[4.53621477,0.03500044,99.87424026],[4.53621431,0.03499869,99.87453785],[4.53621385,0.03499695,99.87483459],[4.53621339,0.03499521,99.87513047],[4.53621293,0.03499346,99.87542548],[4.53621247,0.03499172,99.87571964],[4.53621201,0.03498998,99.87601293],[4.53621155,0.03498824,99.87630535],[4.53621108,0.03498649,99.87659691],[4.53621062,0.03498475,99.87688759],[4.53621016,0.03498301,99.8771774],[4.5362097,0.03498126,99.87746634],[4.53620924,0.03497952,99.87775441],[4.53620878,0.03497778,99.87804159],[4.53620832,0.03497603,99.87832789],[4.53620786,0.03497429,99.87861332],[4.5362074,0.03497255,99.87889786],[4.53620693,0.0349708,99.87918151],[4.53620647,0.03496906,99.87946428],[4.53620601,0.03496732,99.87974616],[4.53620555,0.03496557,99.88002715],[4.53620509,0.03496383,99.88030724],[4.53620463,0.03496209,99.88058644],[4.53620417,0.03496034,99.88086474],[4.53620371,0.0349586,99.88114215],[4.53620324,0.03495686,99.88141865],[4.53620278,0.03495511,99.88169426],[4.53620232,0.03495337,99.88196895],[4.53620186,0.03495163,99.88224275],[4.5362014,0.03494988,99.88251563],[4.53620094,0.03494814,99.8827876],[4.53620047,0.0349464,99.88305867],[4.53620001,0.03494465,99.88332882],[4.53619955,0.03494291,99.88359805],[4.53619909,0.03494117,99.88386637],[4.53619863,0.03493942,99.88413377],[4.53619817,0.03493768,99.88440024],[4.53619771,0.03493594,99.8846658],[4.53619724,0.03493419,99.88493043],[4.53619678,0.03493245,99.88519413],[4.53619632,0.03493071,99.8854569],[4.53619586,0.03492896,99.88571875],[4.5361954,0.03492722,99.88597966],[4.53619493,0.03492548,99.88623963],[4.53619447,0.03492373,99.88649867],[4.53619401,0.03492199,99.88675678],[4.53619355,0.03492025,99.88701394],[4.53619309,0.0349185,99.88727016],[4.53619262,0.03491676,99.88752544],[4.53619216,0.03491502,99.88777977],[4.5361917,0.03491327,99.88803316],[4.53619124,0.03491153,99.88828559],[4.53619078,0.03490979,99.88853708],[4.53619031,0.03490804,99.88878761],[4.53618985,0.0349063,99.88903718],[4.53618939,0.03490456,99.8892858],[4.53618893,0.03490281,99.88953346],[4.53618847,0.03490107,99.88978017],[4.536188,0.03489933,99.8900259],[4.53618754,0.03489758,99.89027068],[4.53618708,0.03489584,99.89051448],[4.53618662,0.0348941,99.89075732],[4.53618616,0.03489235,99.89099919],[4.53618569,0.03489061,99.89124009],[4.53618523,0.03488887,99.89148002],[4.53618477,0.03488713,99.89171896],[4.53618431,0.03488538,99.89195693],[4.53618384,0.03488364,99.89219393],[4.53618338,0.0348819,99.89242994],[4.53618292,0.03488015,99.89266496],[4.53618246,0.03487841,99.892899],[4.53618199,0.03487667,99.89313206],[4.53618153,0.03487492,99.89336412],[4.53618107,0.03487318,99.8935952],[4.53618061,0.03487144,99.89382528],[4.53618014,0.03486969,99.89405435],[4.53617968,0.03486795,99.8942824],[4.53617922,0.03486621,99.89450942],[4.53617876,0.03486447,99.8947354],[4.53617829,0.03486272,99.89496034],[4.53617783,0.03486098,99.89518421],[4.53617737,0.03485924,99.895407],[4.53617691,0.03485749,99.89562872],[4.53617644,0.03485575,99.89584934],[4.53617598,0.03485401,99.89606886],[4.53617552,0.03485226,99.89628726],[4.53617505,0.03485052,99.89650453],[4.53617459,0.03484878,99.89672067],[4.53617413,0.03484704,99.89693566],[4.53617366,0.03484529,99.89714949],[4.5361732,0.03484355,99.89736216],[4.53617274,0.03484181,99.89757364],[4.53617227,0.03484006,99.89778393],[4.53617181,0.03483832,99.89799302],[4.53617135,0.03483658,99.8982009],[4.53617088,0.03483484,99.89840755],[4.53617042,0.03483309,99.89861298],[4.53616996,0.03483135,99.89881715],[4.53616949,0.03482961,99.89902007],[4.53616903,0.03482787,99.89922173],[4.53616856,0.03482612,99.8994221],[4.5361681,0.03482438,99.89962119],[4.53616764,0.03482264,99.89981898],[4.53616717,0.0348209,99.90001546],[4.53616671,0.03481915,99.90021062],[4.53616624,0.03481741,99.90040445],[4.53616578,0.03481567,99.90059694],[4.53616531,0.03481393,99.90078808],[4.53616485,0.03481218,99.90097785],[4.53616438,0.03481044,99.90116625],[4.53616392,0.0348087,99.90135327],[4.53616345,0.03480696,99.90153889],[4.53616299,0.03480521,99.9017231],[4.53616252,0.03480347,99.9019059],[4.53616206,0.03480173,99.90208727],[4.53616159,0.03479999,99.90226721],[4.53616112,0.03479825,99.90244569],[4.53616066,0.0347965,99.90262272],[4.53616019,0.03479476,99.90279828],[4.53615973,0.03479302,99.90297235],[4.53615926,0.03479128,99.90314494],[4.53615879,0.03478954,99.90331603],[4.53615833,0.03478779,99.90348561],[4.53615786,0.03478605,99.90365366],[4.53615739,0.03478431,99.90382019],[4.53615692,0.03478257,99.90398518],[4.53615646,0.03478083,99.90414863],[4.53615599,0.03477908,99.90431051],[4.53615552,0.03477734,99.90447083],[4.53615505,0.0347756,99.90462956],[4.53615458,0.03477386,99.90478671],[4.53615412,0.03477212,99.90494226],[4.53615365,0.03477038,99.90509623],[4.53615318,0.03476864,99.90524865],[4.53615271,0.03476689,99.90539952],[4.53615224,0.03476515,99.90554888],[4.53615177,0.03476341,99.90569674],[4.5361513,0.03476167,99.90584312],[4.53615083,0.03475993,99.90598804],[4.53615036,0.03475819,99.90613153],[4.53614989,0.03475645,99.90627359],[4.53614942,0.03475471,99.90641426],[4.53614895,0.03475297,99.90655356],[4.53614848,0.03475122,99.90669149],[4.53614801,0.03474948,99.90682809],[4.53614754,0.03474774,99.90696338],[4.53614707,0.034746,99.90709736],[4.5361466,0.03474426,99.90723007],[4.53614613,0.03474252,99.90736153],[4.53614566,0.03474078,99.90749175],[4.53614519,0.03473904,99.90762075],[4.53614472,0.0347373,99.90774856],[4.53614425,0.03473556,99.90787519],[4.53614378,0.03473382,99.90800067],[4.53614331,0.03473208,99.90812502],[4.53614284,0.03473034,99.90824824],[4.53614236,0.03472859,99.90837038],[4.53614189,0.03472685,99.90849144],[4.53614142,0.03472511,99.90861144],[4.53614095,0.03472337,99.90873041],[4.53614048,0.03472163,99.90884837],[4.53614001,0.03471989,99.90896533],[4.53613954,0.03471815,99.90908132],[4.53613906,0.03471641,99.90919635],[4.53613859,0.03471467,99.90931045],[4.53613812,0.03471293,99.90942363],[4.53613765,0.03471119,99.90953592],[4.53613718,0.03470945,99.90964733],[4.53613671,0.03470771,99.90975789],[4.53613624,0.03470597,99.90986761],[4.53613576,0.03470423,99.90997652],[4.53613529,0.03470249,99.91008463],[4.53613482,0.03470074,99.91019197],[4.53613435,0.034699,99.91029855],[4.53613388,0.03469726,99.91040439],[4.53613341,0.03469552,99.91050952],[4.53613294,0.03469378,99.91061395],[4.53613247,0.03469204,99.9107177],[4.536132,0.0346903,99.91082079],[4.53613152,0.03468856,99.91092325],[4.53613105,0.03468682,99.91102508],[4.53613058,0.03468508,99.91112632],[4.53613011,0.03468334,99.91122697],[4.53612964,0.0346816,99.91132707],[4.53612917,0.03467986,99.91142662],[4.5361287,0.03467811,99.91152565],[4.53612823,0.03467637,99.91162417],[4.53612776,0.03467463,99.91172221],[4.53612729,0.03467289,99.91181987],[4.53612682,0.03467115,99.91191729],[4.53612635,0.03466941,99.91201463],[4.53612588,0.03466767,99.91211206],[4.53612541,0.03466593,99.91220973],[4.53612494,0.03466419,99.91230781],[4.53612448,0.03466244,99.91240644],[4.53612401,0.0346607,99.9125058],[4.53612354,0.03465896,99.91260603],[4.53612307,0.03465722,99.91270729],[4.53612261,0.03465548,99.91280975],[4.53612214,0.03465374,99.91291356],[4.53612168,0.03465199,99.91301887],[4.53612121,0.03465025,99.91312584],[4.53612075,0.03464851,99.91323458],[4.53612029,0.03464676,99.91334503],[4.53611983,0.03464502,99.91345706],[4.53611937,0.03464328,99.91357056],[4.53611891,0.03464153,99.91368543],[4.53611845,0.03463979,99.91380154],[4.53611799,0.03463805,99.91391879],[4.53611753,0.0346363,99.91403706],[4.53611707,0.03463456,99.91415623],[4.53611661,0.03463281,99.9142762],[4.53611616,0.03463107,99.91439685],[4.5361157,0.03462932,99.91451808],[4.53611525,0.03462758,99.91463976],[4.53611479,0.03462583,99.91476178],[4.53611434,0.03462409,99.91488404],[4.53611388,0.03462234,99.91500642],[4.53611343,0.0346206,99.91512882],[4.53611297,0.03461885,99.91525111],[4.53611252,0.03461711,99.9153732],[4.53611206,0.03461536,99.91549496],[4.53611161,0.03461362,99.91561629],[4.53611116,0.03461187,99.91573708],[4.5361107,0.03461013,99.91585722],[4.53611025,0.03460838,99.91597659],[4.53610979,0.03460664,99.9160951],[4.53610934,0.03460489,99.91621263],[4.53610889,0.03460315,99.91632907],[4.53610843,0.0346014,99.91644431],[4.53610798,0.03459966,99.91655827],[4.53610752,0.03459791,99.91667092],[4.53610707,0.03459617,99.91678229],[4.53610661,0.03459442,99.91689238],[4.53610616,0.03459268,99.91700119],[4.53610571,0.03459093,99.91710874],[4.53610525,0.03458919,99.91721503],[4.5361048,0.03458744,99.91732006],[4.53610434,0.0345857,99.91742386],[4.53610388,0.03458395,99.91752641],[4.53610343,0.03458221,99.91762774],[4.53610297,0.03458046,99.91772784],[4.53610252,0.03457872,99.91782673],[4.53610206,0.03457697,99.91792442],[4.53610161,0.03457523,99.91802091],[4.53610115,0.03457348,99.9181162],[4.53610069,0.03457174,99.91821032],[4.53610024,0.03456999,99.91830325],[4.53609978,0.03456825,99.91839502],[4.53609932,0.0345665,99.91848563],[4.53609887,0.03456476,99.91857508],[4.53609841,0.03456301,99.91866339],[4.53609795,0.03456127,99.91875057],[4.5360975,0.03455953,99.91883661],[4.53609704,0.03455778,99.91892153],[4.53609658,0.03455604,99.91900533],[4.53609613,0.03455429,99.91908803],[4.53609567,0.03455255,99.91916962],[4.53609521,0.0345508,99.91925012],[4.53609475,0.03454906,99.91932954],[4.53609429,0.03454732,99.91940788],[4.53609384,0.03454557,99.91948515],[4.53609338,0.03454383,99.91956136],[4.53609292,0.03454208,99.91963651],[4.53609246,0.03454034,99.91971061],[4.536092,0.03453859,99.91978368],[4.53609155,0.03453685,99.91985571],[4.53609109,0.03453511,99.91992671],[4.53609063,0.03453336,99.9199967],[4.53609017,0.03453162,99.92006568],[4.53608971,0.03452987,99.92013365],[4.53608925,0.03452813,99.92020063],[4.53608879,0.03452639,99.9202666],[4.53608834,0.03452464,99.92033157],[4.53608788,0.0345229,99.92039552],[4.53608742,0.03452115,99.92045846],[4.53608696,0.03451941,99.92052037],[4.5360865,0.03451767,99.92058125],[4.53608604,0.03451592,99.9206411],[4.53608558,0.03451418,99.92069991],[4.53608512,0.03451244,99.92075767],[4.53608466,0.03451069,99.92081439],[4.5360842,0.03450895,99.92087006],[4.53608374,0.0345072,99.92092468],[4.53608328,0.03450546,99.92097825],[4.53608282,0.03450372,99.92103077],[4.53608236,0.03450197,99.92108224],[4.5360819,0.03450023,99.92113266],[4.53608144,0.03449849,99.92118202],[4.53608098,0.03449674,99.92123033],[4.53608052,0.034495,99.92127758],[4.53608006,0.03449326,99.92132377],[4.5360796,0.03449151,99.9213689],[4.53607914,0.03448977,99.92141298],[4.53607868,0.03448803,99.921456],[4.53607822,0.03448628,99.92149795],[4.53607775,0.03448454,99.92153885],[4.53607729,0.0344828,99.92157868],[4.53607683,0.03448105,99.92161744],[4.53607637,0.03447931,99.92165515],[4.53607591,0.03447757,99.92169178],[4.53607545,0.03447582,99.92172735],[4.53607498,0.03447408,99.92176186],[4.53607452,0.03447234,99.9217953],[4.53607406,0.03447059,99.92182766],[4.5360736,0.03446885,99.92185896],[4.53607313,0.03446711,99.92188919],[4.53607267,0.03446537,99.92191835],[4.53607221,0.03446362,99.92194643],[4.53607175,0.03446188,99.92197345],[4.53607128,0.03446014,99.92199939],[4.53607082,0.03445839,99.92202425],[4.53607036,0.03445665,99.92204805],[4.53606989,0.03445491,99.92207076],[4.53606943,0.03445317,99.92209241],[4.53606897,0.03445142,99.92211297],[4.5360685,0.03444968,99.92213246],[4.53606804,0.03444794,99.92215087],[4.53606757,0.0344462,99.92216821],[4.53606711,0.03444445,99.92218446],[4.53606664,0.03444271,99.92219964],[4.53606618,0.03444097,99.92221374],[4.53606571,0.03443923,99.92222676],[4.53606525,0.03443748,99.9222387],[4.53606478,0.03443574,99.92224955],[4.53606432,0.034434,99.92225933],[4.53606385,0.03443226,99.92226804],[4.53606339,0.03443052,99.92227567],[4.53606292,0.03442877,99.92228224],[4.53606246,0.03442703,99.92228773],[4.53606199,0.03442529,99.92229217],[4.53606152,0.03442355,99.92229554],[4.53606106,0.03442181,99.92229786],[4.53606059,0.03442006,99.92229913],[4.53606013,0.03441832,99.92229934],[4.53605966,0.03441658,99.9222985],[4.53605919,0.03441484,99.92229662],[4.53605872,0.0344131,99.9222937],[4.53605826,0.03441136,99.92228974],[4.53605779,0.03440961,99.92228474],[4.53605732,0.03440787,99.92227871],[4.53605685,0.03440613,99.92227165],[4.53605639,0.03440439,99.92226356],[4.53605592,0.03440265,99.92225445],[4.53605545,0.03440091,99.92224431],[4.53605498,0.03439917,99.92223316],[4.53605451,0.03439742,99.922221],[4.53605404,0.03439568,99.92220782],[4.53605358,0.03439394,99.92219363],[4.53605311,0.0343922,99.92217843],[4.53605264,0.03439046,99.92216223],[4.53605217,0.03438872,99.92214504],[4.5360517,0.03438698,99.92212684],[4.53605123,0.03438524,99.92210765],[4.53605076,0.0343835,99.92208747],[4.53605029,0.03438175,99.9220663],[4.53604982,0.03438001,99.92204415],[4.53604935,0.03437827,99.92202101],[4.53604888,0.03437653,99.9219969],[4.53604841,0.03437479,99.92197181],[4.53604794,0.03437305,99.92194574],[4.53604747,0.03437131,99.92191871],[4.536047,0.03436957,99.92189073],[4.53604652,0.03436783,99.92186186],[4.53604605,0.03436609,99.92183215],[4.53604558,0.03436435,99.92180165],[4.53604511,0.03436261,99.92177041],[4.53604464,0.03436087,99.92173847],[4.53604417,0.03435913,99.9217059],[4.5360437,0.03435739,99.92167273],[4.53604322,0.03435564,99.92163902],[4.53604275,0.0343539,99.92160482],[4.53604228,0.03435216,99.92157017],[4.53604181,0.03435042,99.92153513],[4.53604134,0.03434868,99.92149974],[4.53604087,0.03434694,99.92146406],[4.5360404,0.0343452,99.92142813],[4.53603992,0.03434346,99.92139199],[4.53603945,0.03434172,99.92135571],[4.53603898,0.03433998,99.92131931],[4.53603851,0.03433824,99.92128287],[4.53603804,0.0343365,99.92124641],[4.53603757,0.03433476,99.92120999],[4.5360371,0.03433302,99.92117366],[4.53603663,0.03433128,99.92113746],[4.53603616,0.03432954,99.92110143],[4.53603569,0.03432779,99.92106564],[4.53603522,0.03432605,99.92103012],[4.53603475,0.03432431,99.92099492],[4.53603428,0.03432257,99.92096008],[4.53603382,0.03432083,99.92092565],[4.53603335,0.03431909,99.92089169],[4.53603288,0.03431735,99.92085822],[4.53603241,0.03431561,99.92082531],[4.53603195,0.03431386,99.92079299],[4.53603148,0.03431212,99.92076131],[4.53603101,0.03431038,99.92073031],[4.53603055,0.03430864,99.92070005],[4.53603008,0.0343069,99.92067055],[4.53602962,0.03430515,99.92064181],[4.53602915,0.03430341,99.9206138],[4.53602869,0.03430167,99.9205865],[4.53602822,0.03429993,99.9205599],[4.53602776,0.03429818,99.92053398],[4.5360273,0.03429644,99.92050871],[4.53602684,0.0342947,99.92048408],[4.53602637,0.03429296,99.92046007],[4.53602591,0.03429121,99.92043666],[4.53602545,0.03428947,99.92041382],[4.53602499,0.03428773,99.92039155],[4.53602453,0.03428598,99.92036981],[4.53602407,0.03428424,99.9203486],[4.53602361,0.03428249,99.92032789],[4.53602315,0.03428075,99.92030767],[4.53602269,0.03427901,99.92028791],[4.53602223,0.03427726,99.9202686],[4.53602177,0.03427552,99.92024972],[4.53602132,0.03427378,99.92023124],[4.53602086,0.03427203,99.92021316],[4.5360204,0.03427029,99.92019545],[4.53601994,0.03426854,99.9201781],[4.53601949,0.0342668,99.92016108],[4.53601903,0.03426505,99.92014439],[4.53601857,0.03426331,99.92012799],[4.53601812,0.03426156,99.92011187],[4.53601766,0.03425982,99.92009602],[4.53601721,0.03425807,99.92008042],[4.53601675,0.03425633,99.92006504],[4.5360163,0.03425459,99.92004988],[4.53601584,0.03425284,99.92003491],[4.53601539,0.0342511,99.92002012],[4.53601493,0.03424935,99.92000549],[4.53601448,0.0342476,99.919991],[4.53601402,0.03424586,99.91997663],[4.53601357,0.03424411,99.91996237],[4.53601312,0.03424237,99.91994813],[4.53601266,0.03424062,99.91993378],[4.53601221,0.03423888,99.91991916],[4.53601176,0.03423713,99.91990414],[4.5360113,0.03423539,99.91988857],[4.53601085,0.03423364,99.91987231],[4.5360104,0.0342319,99.91985523],[4.53600994,0.03423015,99.91983716],[4.53600949,0.03422841,99.91981799],[4.53600903,0.03422666,99.91979756],[4.53600858,0.03422492,99.91977574],[4.53600812,0.03422317,99.91975239],[4.53600767,0.03422143,99.91972737],[4.53600721,0.03421968,99.91970054],[4.53600675,0.03421794,99.91967177],[4.5360063,0.03421619,99.9196409],[4.53600584,0.03421445,99.91960782],[4.53600538,0.03421271,99.91957238],[4.53600492,0.03421096,99.91953445],[4.53600446,0.03420922,99.91949388],[4.536004,0.03420747,99.91945055],[4.53600354,0.03420573,99.91940432],[4.53600307,0.03420399,99.91935506],[4.53600261,0.03420225,99.91930263],[4.53600214,0.0342005,99.9192469],[4.53600168,0.03419876,99.91918773],[4.53600121,0.03419702,99.91912515],[4.53600074,0.03419528,99.9190593],[4.53600027,0.03419354,99.91899034],[4.5359998,0.0341918,99.91891842],[4.53599933,0.03419006,99.9188437],[4.53599885,0.03418832,99.91876633],[4.53599838,0.03418658,99.91868646],[4.53599791,0.03418484,99.91860422],[4.53599743,0.0341831,99.91851978],[4.53599696,0.03418136,99.91843327],[4.53599648,0.03417962,99.91834484],[4.535996,0.03417788,99.91825462],[4.53599552,0.03417614,99.91816277],[4.53599505,0.0341744,99.91806943],[4.53599457,0.03417267,99.91797474],[4.53599409,0.03417093,99.91787884],[4.53599361,0.03416919,99.91778187],[4.53599313,0.03416745,99.91768398],[4.53599265,0.03416571,99.9175853],[4.53599217,0.03416397,99.91748598],[4.53599169,0.03416223,99.91738615],[4.53599121,0.0341605,99.91728596],[4.53599073,0.03415876,99.91718554],[4.53599025,0.03415702,99.91708504],[4.53598977,0.03415528,99.91698459],[4.53598929,0.03415354,99.91688433],[4.53598881,0.03415181,99.91678439],[4.53598833,0.03415007,99.91668492],[4.53598786,0.03414833,99.91658605],[4.53598738,0.03414659,99.91648792],[4.5359869,0.03414485,99.91639067],[4.53598642,0.03414311,99.91629442],[4.53598617,0.03414221,99.91624483],[4.53599897,0.03413873,99.91624483],[4.53599921,0.03413963,99.91629442],[4.53599968,0.03414137,99.91639067],[4.53600014,0.03414312,99.91648792],[4.53600061,0.03414486,99.91658605],[4.53600108,0.0341466,99.91668492],[4.53600154,0.03414834,99.91678439],[4.53600201,0.03415008,99.91688433],[4.53600247,0.03415183,99.91698459],[4.53600294,0.03415357,99.91708504],[4.53600341,0.03415531,99.91718554],[4.53600387,0.03415705,99.91728596],[4.53600434,0.03415879,99.91738615],[4.53600481,0.03416054,99.91748598],[4.53600528,0.03416228,99.9175853],[4.53600574,0.03416402,99.91768398],[4.53600621,0.03416576,99.91778187],[4.53600668,0.0341675,99.91787884],[4.53600714,0.03416925,99.91797474],[4.53600761,0.03417099,99.91806943],[4.53600808,0.03417273,99.91816277],[4.53600854,0.03417447,99.91825462],[4.53600901,0.03417621,99.91834484],[4.53600948,0.03417795,99.91843327],[4.53600994,0.0341797,99.91851978],[4.53601041,0.03418144,99.91860422],[4.53601087,0.03418318,99.91868646],[4.53601134,0.03418492,99.91876633],[4.53601181,0.03418667,99.9188437],[4.53601227,0.03418841,99.91891842],[4.53601274,0.03419015,99.91899034],[4.5360132,0.03419189,99.9190593],[4.53601366,0.03419364,99.91912515],[4.53601413,0.03419538,99.91918773],[4.53601459,0.03419712,99.9192469],[4.53601505,0.03419886,99.91930263],[4.53601552,0.03420061,99.91935506],[4.53601598,0.03420235,99.91940432],[4.53601644,0.03420409,99.91945055],[4.5360169,0.03420584,99.91949388],[4.53601736,0.03420758,99.91953445],[4.53601782,0.03420932,99.91957238],[4.53601829,0.03421107,99.91960782],[4.53601875,0.03421281,99.9196409],[4.53601921,0.03421455,99.91967177],[4.53601967,0.03421629,99.91970054],[4.53602013,0.03421804,99.91972737],[4.5360206,0.03421978,99.91975239],[4.53602106,0.03422152,99.91977574],[4.53602152,0.03422327,99.91979756],[4.53602198,0.03422501,99.91981799],[4.53602245,0.03422675,99.91983716],[4.53602291,0.0342285,99.91985523],[4.53602337,0.03423024,99.91987231],[4.53602384,0.03423198,99.91988857],[4.5360243,0.03423372,99.91990414],[4.53602476,0.03423547,99.91991916],[4.53602523,0.03423721,99.91993378],[4.53602569,0.03423895,99.91994813],[4.53602615,0.03424069,99.91996237],[4.53602662,0.03424244,99.91997663],[4.53602708,0.03424418,99.919991],[4.53602755,0.03424592,99.92000549],[4.53602801,0.03424766,99.92002012],[4.53602848,0.03424941,99.92003491],[4.53602894,0.03425115,99.92004988],[4.53602941,0.03425289,99.92006504],[4.53602987,0.03425463,99.92008042],[4.53603034,0.03425638,99.92009602],[4.5360308,0.03425812,99.92011187],[4.53603127,0.03425986,99.92012799],[4.53603174,0.0342616,99.92014439],[4.5360322,0.03426334,99.92016108],[4.53603267,0.03426509,99.9201781],[4.53603313,0.03426683,99.92019545],[4.5360336,0.03426857,99.92021316],[4.53603407,0.03427031,99.92023124],[4.53603453,0.03427205,99.92024972],[4.536035,0.0342738,99.9202686],[4.53603546,0.03427554,99.92028791],[4.53603593,0.03427728,99.92030767],[4.5360364,0.03427902,99.92032789],[4.53603686,0.03428076,99.9203486],[4.53603733,0.0342825,99.92036981],[4.5360378,0.03428425,99.92039155],[4.53603826,0.03428599,99.92041382],[4.53603873,0.03428773,99.92043666],[4.5360392,0.03428947,99.92046007],[4.53603967,0.03429121,99.92048408],[4.53604013,0.03429295,99.92050871],[4.5360406,0.0342947,99.92053398],[4.53604107,0.03429644,99.9205599],[4.53604154,0.03429818,99.9205865],[4.536042,0.03429992,99.9206138],[4.53604247,0.03430166,99.92064181],[4.53604294,0.0343034,99.92067055],[4.53604341,0.03430515,99.92070005],[4.53604387,0.03430689,99.92073031],[4.53604434,0.03430863,99.92076131],[4.53604481,0.03431037,99.92079299],[4.53604528,0.03431211,99.92082531],[4.53604575,0.03431385,99.92085822],[4.53604621,0.03431559,99.92089169],[4.53604668,0.03431734,99.92092565],[4.53604715,0.03431908,99.92096008],[4.53604762,0.03432082,99.92099492],[4.53604809,0.03432256,99.92103012],[4.53604856,0.0343243,99.92106564],[4.53604903,0.03432604,99.92110143],[4.5360495,0.03432778,99.92113746],[4.53604996,0.03432952,99.92117366],[4.53605043,0.03433127,99.92120999],[4.5360509,0.03433301,99.92124641],[4.53605137,0.03433475,99.92128287],[4.53605184,0.03433649,99.92131931],[4.53605231,0.03433823,99.92135571],[4.53605278,0.03433997,99.92139199],[4.53605325,0.03434171,99.92142813],[4.53605372,0.03434345,99.92146406],[4.53605419,0.03434519,99.92149974],[4.53605466,0.03434694,99.92153513],[4.53605513,0.03434868,99.92157017],[4.5360556,0.03435042,99.92160482],[4.53605607,0.03435216,99.92163902],[4.53605654,0.0343539,99.92167273],[4.53605701,0.03435564,99.9217059],[4.53605748,0.03435738,99.92173847],[4.53605795,0.03435912,99.92177041],[4.53605842,0.03436086,99.92180165],[4.53605889,0.0343626,99.92183215],[4.53605936,0.03436434,99.92186186],[4.53605983,0.03436609,99.92189073],[4.5360603,0.03436783,99.92191871],[4.53606077,0.03436957,99.92194574],[4.53606124,0.03437131,99.92197181],[4.53606171,0.03437305,99.9219969],[4.53606218,0.03437479,99.92202101],[4.53606265,0.03437653,99.92204415],[4.53606312,0.03437827,99.9220663],[4.53606359,0.03438001,99.92208747],[4.53606406,0.03438175,99.92210765],[4.53606453,0.03438349,99.92212684],[4.536065,0.03438524,99.92214504],[4.53606547,0.03438698,99.92216223],[4.53606594,0.03438872,99.92217843],[4.53606642,0.03439046,99.92219363],[4.53606689,0.0343922,99.92220782],[4.53606736,0.03439394,99.922221],[4.53606783,0.03439568,99.92223316],[4.5360683,0.03439742,99.92224431],[4.53606877,0.03439916,99.92225445],[4.53606924,0.0344009,99.92226356],[4.53606971,0.03440264,99.92227165],[4.53607018,0.03440438,99.92227871],[4.53607066,0.03440612,99.92228474],[4.53607113,0.03440786,99.92228974],[4.5360716,0.0344096,99.9222937],[4.53607207,0.03441134,99.92229662],[4.53607254,0.03441309,99.9222985],[4.53607301,0.03441483,99.92229934],[4.53607348,0.03441657,99.92229913],[4.53607395,0.03441831,99.92229786],[4.53607442,0.03442005,99.92229554],[4.53607489,0.03442179,99.92229217],[4.53607536,0.03442353,99.92228773],[4.53607584,0.03442527,99.92228224],[4.53607631,0.03442701,99.92227567],[4.53607678,0.03442875,99.92226804],[4.53607725,0.03443049,99.92225933],[4.53607772,0.03443223,99.92224955],[4.53607819,0.03443398,99.9222387],[4.53607865,0.03443572,99.92222676],[4.53607912,0.03443746,99.92221374],[4.53607959,0.0344392,99.92219964],[4.53608006,0.03444094,99.92218446],[4.53608053,0.03444268,99.92216821],[4.536081,0.03444442,99.92215087],[4.53608147,0.03444616,99.92213246],[4.53608194,0.03444791,99.92211297],[4.5360824,0.03444965,99.92209241],[4.53608287,0.03445139,99.92207076],[4.53608334,0.03445313,99.92204805],[4.53608381,0.03445487,99.92202425],[4.53608427,0.03445661,99.92199939],[4.53608474,0.03445836,99.92197345],[4.53608521,0.0344601,99.92194643],[4.53608567,0.03446184,99.92191835],[4.53608614,0.03446358,99.92188919],[4.5360866,0.03446532,99.92185896],[4.53608707,0.03446707,99.92182766],[4.53608754,0.03446881,99.9217953],[4.536088,0.03447055,99.92176186],[4.53608846,0.03447229,99.92172735],[4.53608893,0.03447404,99.92169178],[4.53608939,0.03447578,99.92165515],[4.53608986,0.03447752,99.92161744],[4.53609032,0.03447926,99.92157868],[4.53609078,0.03448101,99.92153885],[4.53609125,0.03448275,99.92149795],[4.53609171,0.03448449,99.921456],[4.53609217,0.03448624,99.92141298],[4.53609263,0.03448798,99.9213689],[4.53609309,0.03448972,99.92132377],[4.53609356,0.03449147,99.92127758],[4.53609402,0.03449321,99.92123033],[4.53609448,0.03449495,99.92118202],[4.53609494,0.0344967,99.92113266],[4.5360954,0.03449844,99.92108224],[4.53609586,0.03450018,99.92103077],[4.53609632,0.03450193,99.92097825],[4.53609679,0.03450367,99.92092468],[4.53609725,0.03450541,99.92087006],[4.53609771,0.03450716,99.92081439],[4.53609817,0.0345089,99.92075767],[4.53609863,0.03451064,99.92069991],[4.53609909,0.03451239,99.9206411],[4.53609955,0.03451413,99.92058125],[4.53610001,0.03451588,99.92052037],[4.53610047,0.03451762,99.92045846],[4.53610093,0.03451936,99.92039552],[4.53610139,0.03452111,99.92033157],[4.53610185,0.03452285,99.9202666],[4.53610231,0.03452459,99.92020063],[4.53610277,0.03452634,99.92013365],[4.53610323,0.03452808,99.92006568],[4.53610369,0.03452982,99.9199967],[4.53610415,0.03453157,99.91992671],[4.53610461,0.03453331,99.91985571],[4.53610507,0.03453506,99.91978368],[4.53610553,0.0345368,99.91971061],[4.53610599,0.03453854,99.91963651],[4.53610645,0.03454029,99.91956136],[4.53610691,0.03454203,99.91948515],[4.53610737,0.03454377,99.91940788],[4.53610783,0.03454552,99.91932954],[4.5361083,0.03454726,99.91925012],[4.53610876,0.034549,99.91916962],[4.53610922,0.03455075,99.91908803],[4.53610968,0.03455249,99.91900533],[4.53611014,0.03455423,99.91892153],[4.5361106,0.03455598,99.91883661],[4.53611106,0.03455772,99.91875057],[4.53611152,0.03455946,99.91866339],[4.53611199,0.03456121,99.91857508],[4.53611245,0.03456295,99.91848563],[4.53611291,0.03456469,99.91839502],[4.53611337,0.03456644,99.91830325],[4.53611383,0.03456818,99.91821032],[4.5361143,0.03456992,99.9181162],[4.53611476,0.03457167,99.91802091],[4.53611522,0.03457341,99.91792442],[4.53611569,0.03457515,99.91782673],[4.53611615,0.0345769,99.91772784],[4.53611661,0.03457864,99.91762774],[4.53611707,0.03458038,99.91752641],[4.53611754,0.03458212,99.91742386],[4.536118,0.03458387,99.91732006],[4.53611846,0.03458561,99.91721503],[4.53611893,0.03458735,99.91710874],[4.53611939,0.0345891,99.91700119],[4.53611985,0.03459084,99.91689238],[4.53612032,0.03459258,99.91678229],[4.53612078,0.03459432,99.91667092],[4.53612124,0.03459607,99.91655827],[4.5361217,0.03459781,99.91644431],[4.53612217,0.03459955,99.91632907],[4.53612263,0.0346013,99.91621263],[4.53612309,0.03460304,99.9160951],[4.53612355,0.03460478,99.91597659],[4.53612401,0.03460653,99.91585722],[4.53612448,0.03460827,99.91573708],[4.53612494,0.03461001,99.91561629],[4.5361254,0.03461176,99.91549496],[4.53612586,0.0346135,99.9153732],[4.53612632,0.03461524,99.91525111],[4.53612678,0.03461699,99.91512882],[4.53612725,0.03461873,99.91500642],[4.53612771,0.03462047,99.91488404],[4.53612817,0.03462222,99.91476178],[4.53612863,0.03462396,99.91463976],[4.53612909,0.0346257,99.91451808],[4.53612955,0.03462745,99.91439685],[4.53613001,0.03462919,99.9142762],[4.53613048,0.03463093,99.91415623],[4.53613094,0.03463268,99.91403706],[4.5361314,0.03463442,99.91391879],[4.53613186,0.03463616,99.91380154],[4.53613232,0.03463791,99.91368543],[4.53613279,0.03463965,99.91357056],[4.53613325,0.03464139,99.91345706],[4.53613371,0.03464314,99.91334503],[4.53613418,0.03464488,99.91323458],[4.53613464,0.03464662,99.91312584],[4.5361351,0.03464836,99.91301887],[4.53613557,0.03465011,99.91291356],[4.53613603,0.03465185,99.91280975],[4.53613649,0.03465359,99.91270729],[4.53613696,0.03465534,99.91260603],[4.53613742,0.03465708,99.9125058],[4.53613789,0.03465882,99.91240644],[4.53613835,0.03466056,99.91230781],[4.53613881,0.03466231,99.91220973],[4.53613928,0.03466405,99.91211206],[4.53613974,0.03466579,99.91201463],[4.5361402,0.03466754,99.91191729],[4.53614067,0.03466928,99.91181987],[4.53614113,0.03467102,99.91172221],[4.53614159,0.03467276,99.91162417],[4.53614206,0.03467451,99.91152565],[4.53614252,0.03467625,99.91142662],[4.53614298,0.03467799,99.91132707],[4.53614344,0.03467974,99.91122697],[4.53614391,0.03468148,99.91112632],[4.53614437,0.03468322,99.91102508],[4.53614483,0.03468497,99.91092325],[4.53614529,0.03468671,99.91082079],[4.53614576,0.03468845,99.9107177],[4.53614622,0.0346902,99.91061395],[4.53614668,0.03469194,99.91050952],[4.53614714,0.03469368,99.91040439],[4.53614761,0.03469543,99.91029855],[4.53614807,0.03469717,99.91019197],[4.53614853,0.03469891,99.91008463],[4.536149,0.03470065,99.90997652],[4.53614946,0.0347024,99.90986761],[4.53614992,0.03470414,99.90975789],[4.53615038,0.03470588,99.90964733],[4.53615085,0.03470763,99.90953592],[4.53615131,0.03470937,99.90942363],[4.53615178,0.03471111,99.90931045],[4.53615224,0.03471285,99.90919635],[4.5361527,0.0347146,99.90908132],[4.53615317,0.03471634,99.90896533],[4.53615363,0.03471808,99.90884837],[4.53615409,0.03471983,99.90873041],[4.53615456,0.03472157,99.90861144],[4.53615502,0.03472331,99.90849144],[4.53615549,0.03472505,99.90837038],[4.53615595,0.0347268,99.90824824],[4.53615642,0.03472854,99.90812502],[4.53615688,0.03473028,99.90800067],[4.53615734,0.03473202,99.90787519],[4.53615781,0.03473377,99.90774856],[4.53615827,0.03473551,99.90762075],[4.53615874,0.03473725,99.90749175],[4.5361592,0.034739,99.90736153],[4.53615967,0.03474074,99.90723007],[4.53616013,0.03474248,99.90709736],[4.53616059,0.03474422,99.90696338],[4.53616106,0.03474597,99.90682809],[4.53616152,0.03474771,99.90669149],[4.53616199,0.03474945,99.90655356],[4.53616245,0.03475119,99.90641426],[4.53616292,0.03475294,99.90627359],[4.53616338,0.03475468,99.90613153],[4.53616384,0.03475642,99.90598804],[4.53616431,0.03475817,99.90584312],[4.53616477,0.03475991,99.90569674],[4.53616524,0.03476165,99.90554888],[4.5361657,0.03476339,99.90539952],[4.53616616,0.03476514,99.90524865],[4.53616663,0.03476688,99.90509623],[4.53616709,0.03476862,99.90494226],[4.53616755,0.03477036,99.90478671],[4.53616802,0.03477211,99.90462956],[4.53616848,0.03477385,99.90447083],[4.53616894,0.03477559,99.90431051],[4.53616941,0.03477734,99.90414863],[4.53616987,0.03477908,99.90398518],[4.53617033,0.03478082,99.90382019],[4.5361708,0.03478257,99.90365366],[4.53617126,0.03478431,99.90348561],[4.53617172,0.03478605,99.90331603],[4.53617219,0.03478779,99.90314494],[4.53617265,0.03478954,99.90297235],[4.53617311,0.03479128,99.90279828],[4.53617357,0.03479302,99.90262272],[4.53617404,0.03479477,99.90244569],[4.5361745,0.03479651,99.90226721],[4.53617496,0.03479825,99.90208727],[4.53617542,0.0348,99.9019059],[4.53617589,0.03480174,99.9017231],[4.53617635,0.03480348,99.90153889],[4.53617681,0.03480523,99.90135327],[4.53617727,0.03480697,99.90116625],[4.53617774,0.03480871,99.90097785],[4.5361782,0.03481046,99.90078808],[4.53617866,0.0348122,99.90059694],[4.53617912,0.03481394,99.90040445],[4.53617958,0.03481569,99.90021062],[4.53618005,0.03481743,99.90001546],[4.53618051,0.03481917,99.89981898],[4.53618097,0.03482092,99.89962119],[4.53618143,0.03482266,99.8994221],[4.53618189,0.0348244,99.89922173],[4.53618236,0.03482615,99.89902007],[4.53618282,0.03482789,99.89881715],[4.53618328,0.03482963,99.89861298],[4.53618374,0.03483138,99.89840755],[4.5361842,0.03483312,99.8982009],[4.53618466,0.03483486,99.89799302],[4.53618513,0.03483661,99.89778393],[4.53618559,0.03483835,99.89757364],[4.53618605,0.03484009,99.89736216],[4.53618651,0.03484184,99.89714949],[4.53618697,0.03484358,99.89693566],[4.53618743,0.03484532,99.89672067],[4.5361879,0.03484707,99.89650453],[4.53618836,0.03484881,99.89628726],[4.53618882,0.03485056,99.89606886],[4.53618928,0.0348523,99.89584934],[4.53618974,0.03485404,99.89562872],[4.5361902,0.03485579,99.895407],[4.53619066,0.03485753,99.89518421],[4.53619113,0.03485927,99.89496034],[4.53619159,0.03486102,99.8947354],[4.53619205,0.03486276,99.89450942],[4.53619251,0.0348645,99.8942824],[4.53619297,0.03486625,99.89405435],[4.53619343,0.03486799,99.89382528],[4.53619389,0.03486973,99.8935952],[4.53619435,0.03487148,99.89336412],[4.53619482,0.03487322,99.89313206],[4.53619528,0.03487496,99.892899],[4.53619574,0.03487671,99.89266496],[4.5361962,0.03487845,99.89242994],[4.53619666,0.0348802,99.89219393],[4.53619712,0.03488194,99.89195693],[4.53619758,0.03488368,99.89171896],[4.53619804,0.03488543,99.89148002],[4.53619851,0.03488717,99.89124009],[4.53619897,0.03488891,99.89099919],[4.53619943,0.03489066,99.89075732],[4.53619989,0.0348924,99.89051448],[4.53620035,0.03489414,99.89027068],[4.53620081,0.03489589,99.8900259],[4.53620127,0.03489763,99.88978017],[4.53620173,0.03489937,99.88953346],[4.5362022,0.03490112,99.8892858],[4.53620266,0.03490286,99.88903718],[4.53620312,0.03490461,99.88878761],[4.53620358,0.03490635,99.88853708],[4.53620404,0.03490809,99.88828559],[4.5362045,0.03490984,99.88803316],[4.53620496,0.03491158,99.88777977],[4.53620542,0.03491332,99.88752544],[4.53620588,0.03491507,99.88727016],[4.53620634,0.03491681,99.88701394],[4.5362068,0.03491856,99.88675678],[4.53620726,0.0349203,99.88649867],[4.53620773,0.03492204,99.88623963],[4.53620819,0.03492379,99.88597966],[4.53620865,0.03492553,99.88571875],[4.53620911,0.03492727,99.8854569],[4.53620957,0.03492902,99.88519413],[4.53621003,0.03493076,99.88493043],[4.53621049,0.03493251,99.8846658],[4.53621095,0.03493425,99.88440024],[4.53621141,0.03493599,99.88413377],[4.53621187,0.03493774,99.88386637],[4.53621233,0.03493948,99.88359805],[4.53621279,0.03494122,99.88332882],[4.53621325,0.03494297,99.88305867],[4.53621371,0.03494471,99.8827876],[4.53621417,0.03494646,99.88251563],[4.53621463,0.0349482,99.88224275],[4.53621509,0.03494994,99.88196895],[4.53621555,0.03495169,99.88169426],[4.53621601,0.03495343,99.88141865],[4.53621647,0.03495518,99.88114215],[4.53621693,0.03495692,99.88086474],[4.53621739,0.03495866,99.88058644],[4.53621785,0.03496041,99.88030724],[4.53621831,0.03496215,99.88002715],[4.53621877,0.0349639,99.87974616],[4.53621923,0.03496564,99.87946428],[4.53621969,0.03496739,99.87918151],[4.53622014,0.03496913,99.87889786],[4.5362206,0.03497087,99.87861332],[4.53622106,0.03497262,99.87832789],[4.53622152,0.03497436,99.87804159],[4.53622198,0.03497611,99.87775441],[4.53622244,0.03497785,99.87746634],[4.5362229,0.03497959,99.8771774],[4.53622336,0.03498134,99.87688759],[4.53622382,0.03498308,99.87659691],[4.53622428,0.03498483,99.87630535],[4.53622474,0.03498657,99.87601293],[4.53622519,0.03498831,99.87571964],[4.53622565,0.03499006,99.87542548],[4.53622611,0.0349918,99.87513047],[4.53622657,0.03499355,99.87483459],[4.53622703,0.03499529,99.87453785],[4.53622749,0.03499703,99.87424026],[4.53622795,0.03499878,99.87394181],[4.5362284,0.03500052,99.8736425],[4.53622886,0.03500227,99.87334235],[4.53622932,0.03500401,99.87304134],[4.53622978,0.03500576,99.8727395],[4.53623024,0.0350075,99.87243681],[4.5362307,0.03500924,99.87213328],[4.53623115,0.03501099,99.87182893],[4.53623161,0.03501273,99.87152375],[4.53623207,0.03501448,99.87121775],[4.53623253,0.03501622,99.87091093],[4.53623299,0.03501797,99.8706033],[4.53623345,0.03501971,99.87029486],[4.5362339,0.03502146,99.86998561],[4.53623436,0.0350232,99.86967557],[4.53623482,0.03502494,99.86936472],[4.53623528,0.03502669,99.86905308],[4.53623574,0.03502843,99.86874065],[4.53623619,0.03503018,99.86842743],[4.53623665,0.03503192,99.86811343],[4.53623711,0.03503367,99.86779864],[4.53623757,0.03503541,99.86748307],[4.53623803,0.03503716,99.86716672],[4.53623848,0.0350389,99.8668496],[4.53623894,0.03504065,99.8665317],[4.5362394,0.03504239,99.86621304],[4.53623986,0.03504413,99.86589361],[4.53624032,0.03504588,99.86557342],[4.53624077,0.03504762,99.86525246],[4.53624123,0.03504937,99.86493075],[4.53624169,0.03505111,99.86460828],[4.53624215,0.03505286,99.86428507],[4.53624261,0.0350546,99.8639611],[4.53624306,0.03505635,99.86363638],[4.53624352,0.03505809,99.86331093],[4.53624398,0.03505984,99.86298473],[4.53624444,0.03506158,99.86265779],[4.5362449,0.03506332,99.86233012],[4.53624535,0.03506507,99.86200172],[4.53624581,0.03506681,99.86167259],[4.53624627,0.03506856,99.86134273],[4.53624673,0.0350703,99.86101215],[4.53624718,0.03507205,99.86068084],[4.53624764,0.03507379,99.86034882],[4.5362481,0.03507554,99.86001608],[4.53624856,0.03507728,99.85968264],[4.53624902,0.03507903,99.85934848],[4.53624947,0.03508077,99.85901361],[4.53624993,0.03508251,99.85867804],[4.53625039,0.03508426,99.85834177],[4.53625085,0.035086,99.8580048],[4.53625131,0.03508775,99.85766714],[4.53625176,0.03508949,99.85732878],[4.53625222,0.03509124,99.85698973],[4.53625268,0.03509298,99.85665],[4.53625314,0.03509473,99.85630958],[4.53625359,0.03509647,99.85596848],[4.53625405,0.03509821,99.8556267],[4.53625451,0.03509996,99.85528424],[4.53625497,0.0351017,99.85494111],[4.53625543,0.03510345,99.85459731],[4.53625588,0.03510519,99.85425285],[4.53625634,0.03510694,99.85390771],[4.5362568,0.03510868,99.85356192],[4.53625726,0.03511043,99.85321546],[4.53625772,0.03511217,99.85286835],[4.53625817,0.03511392,99.85252058],[4.53625863,0.03511566,99.85217217],[4.53625909,0.0351174,99.8518231],[4.53625955,0.03511915,99.85147339],[4.53626001,0.03512089,99.85112303],[4.53626046,0.03512264,99.85077204],[4.53626092,0.03512438,99.8504204],[4.53626138,0.03512613,99.85006813],[4.53626184,0.03512787,99.84971523],[4.5362623,0.03512962,99.8493617],[4.53626275,0.03513136,99.84900754],[4.53626321,0.0351331,99.84865276],[4.53626367,0.03513485,99.84829736],[4.53626413,0.03513659,99.84794134],[4.53626459,0.03513834,99.8475847],[4.53626505,0.03514008,99.84722745],[4.5362655,0.03514183,99.84686959],[4.53626596,0.03514357,99.84651112],[4.53626642,0.03514532,99.84615205],[4.53626688,0.03514706,99.84579237],[4.53626734,0.0351488,99.8454321],[4.5362678,0.03515055,99.84507122],[4.53626825,0.03515229,99.84470976],[4.53626871,0.03515404,99.8443477],[4.53626917,0.03515578,99.84398505],[4.53626963,0.03515753,99.84362182],[4.53627009,0.03515927,99.843258],[4.53627055,0.03516101,99.8428936],[4.536271,0.03516276,99.84252862],[4.53627146,0.0351645,99.84216305],[4.53627192,0.03516625,99.8417969],[4.53627238,0.03516799,99.84143016],[4.53627284,0.03516974,99.84106283],[4.5362733,0.03517148,99.8406949],[4.53627376,0.03517322,99.84032638],[4.53627421,0.03517497,99.83995727],[4.53627467,0.03517671,99.83958755],[4.53627513,0.03517846,99.83921724],[4.53627559,0.0351802,99.83884632],[4.53627605,0.03518195,99.8384748],[4.53627651,0.03518369,99.83810267],[4.53627697,0.03518543,99.83772994],[4.53627743,0.03518718,99.83735659],[4.53627788,0.03518892,99.83698264],[4.53627834,0.03519067,99.83660807],[4.5362788,0.03519241,99.83623288],[4.53627926,0.03519416,99.83585708],[4.53627972,0.0351959,99.83548066],[4.53628018,0.03519764,99.83510362],[4.53628064,0.03519939,99.83472596],[4.5362811,0.03520113,99.83434767],[4.53628155,0.03520288,99.83396876],[4.53628201,0.03520462,99.83358921],[4.53628247,0.03520637,99.83320904],[4.53628293,0.03520811,99.83282824],[4.53628339,0.03520985,99.83244681],[4.53628385,0.0352116,99.83206474],[4.53628431,0.03521334,99.83168204],[4.53628476,0.03521509,99.83129869],[4.53628522,0.03521683,99.83091471],[4.53628568,0.03521858,99.83053009],[4.53628614,0.03522032,99.83014482],[4.5362866,0.03522206,99.82975891],[4.53628706,0.03522381,99.82937235],[4.53628752,0.03522555,99.82898513],[4.53628798,0.0352273,99.82859726],[4.53628843,0.03522904,99.82820872],[4.53628889,0.03523079,99.82781951],[4.53628935,0.03523253,99.82742963],[4.53628981,0.03523427,99.82703906],[4.53629027,0.03523602,99.82664781],[4.53629073,0.03523776,99.82625587],[4.53629118,0.03523951,99.82586323],[4.53629164,0.03524125,99.82546989],[4.5362921,0.035243,99.82507585],[4.53629256,0.03524474,99.82468109],[4.53629302,0.03524648,99.82428562],[4.53629348,0.03524823,99.82388943],[4.53629393,0.03524997,99.82349251],[4.53629439,0.03525172,99.82309486],[4.53629485,0.03525346,99.82269647],[4.53629531,0.03525521,99.82229734],[4.53629577,0.03525695,99.82189747],[4.53629622,0.0352587,99.82149684],[4.53629668,0.03526044,99.82109546],[4.53629714,0.03526218,99.82069331],[4.5362976,0.03526393,99.8202904],[4.53629805,0.03526567,99.81988672],[4.53629851,0.03526742,99.81948227],[4.53629897,0.03526916,99.81907703],[4.53629943,0.03527091,99.81867101],[4.53629988,0.03527265,99.8182642],[4.53630034,0.0352744,99.81785659],[4.5363008,0.03527614,99.81744818],[4.53630125,0.03527789,99.81703897],[4.53630171,0.03527963,99.81662894],[4.53630217,0.03528138,99.81621811],[4.53630262,0.03528312,99.81580645],[4.53630308,0.03528487,99.81539397],[4.53630354,0.03528661,99.81498066],[4.53630399,0.03528836,99.81456652],[4.53630445,0.0352901,99.81415154],[4.53630491,0.03529184,99.81373571],[4.53630536,0.03529359,99.81331904],[4.53630582,0.03529533,99.81290152],[4.53630628,0.03529708,99.81248314],[4.53630673,0.03529882,99.81206389],[4.53630719,0.03530057,99.81164378],[4.53630764,0.03530231,99.8112228],[4.5363081,0.03530406,99.81080095],[4.53630856,0.0353058,99.81037821],[4.53630901,0.03530755,99.80995459],[4.53630947,0.03530929,99.80953008],[4.53630992,0.03531104,99.80910467],[4.53631038,0.03531278,99.80867837],[4.53631084,0.03531453,99.80825116],[4.53631129,0.03531627,99.80782307],[4.53631175,0.03531802,99.8073941],[4.5363122,0.03531976,99.80696426],[4.53631266,0.03532151,99.80653356],[4.53631311,0.03532325,99.806102],[4.53631357,0.035325,99.8056696],[4.53631402,0.03532674,99.80523636],[4.53631448,0.03532849,99.80480229],[4.53631494,0.03533023,99.8043674],[4.53631539,0.03533198,99.8039317],[4.53631585,0.03533372,99.80349519],[4.5363163,0.03533547,99.80305789],[4.53631676,0.03533721,99.80261981],[4.53631721,0.03533896,99.80218095],[4.53631767,0.0353407,99.80174131],[4.53631813,0.03534245,99.80130092],[4.53631858,0.03534419,99.80085977],[4.53631904,0.03534594,99.80041788],[4.5363195,0.03534768,99.79997526],[4.53631995,0.03534943,99.7995319],[4.53632041,0.03535117,99.79908783],[4.53632086,0.03535292,99.79864304],[4.53632132,0.03535466,99.79819755],[4.53632178,0.03535641,99.79775137],[4.53632223,0.03535815,99.7973045],[4.53632269,0.0353599,99.79685695],[4.53632315,0.03536164,99.79640873],[4.53632361,0.03536339,99.79595985],[4.53632406,0.03536513,99.79551031],[4.53632452,0.03536688,99.79506013],[4.53632498,0.03536862,99.79460931],[4.53632543,0.03537036,99.79415786],[4.53632589,0.03537211,99.79370579],[4.53632635,0.03537385,99.79325311],[4.53632681,0.0353756,99.79279982],[4.53632726,0.03537734,99.79234593],[4.53632772,0.03537909,99.79189146],[4.53632818,0.03538083,99.7914364],[4.53632864,0.03538258,99.79098077],[4.5363291,0.03538432,99.79052457],[4.53632955,0.03538607,99.79006782],[4.53633001,0.03538781,99.78961051],[4.53633047,0.03538955,99.78915267],[4.53633093,0.0353913,99.78869429],[4.53633138,0.03539304,99.78823539],[4.53633184,0.03539479,99.78777597],[4.5363323,0.03539653,99.78731606],[4.53633276,0.03539828,99.78685565],[4.53633322,0.03540002,99.78639476],[4.53633367,0.03540177,99.7859334],[4.53633413,0.03540351,99.78547158],[4.53633459,0.03540525,99.78500932],[4.53633505,0.035407,99.78454662],[4.53633551,0.03540874,99.78408349],[4.53633596,0.03541049,99.78361995],[4.53633642,0.03541223,99.78315601],[4.53633688,0.03541398,99.78269167],[4.53633734,0.03541572,99.78222695],[4.5363378,0.03541746,99.78176187],[4.53633825,0.03541921,99.78129642],[4.53633871,0.03542095,99.78083062],[4.53633917,0.0354227,99.78036449],[4.53633963,0.03542444,99.77989803],[4.53634009,0.03542619,99.77943125],[4.53634054,0.03542793,99.77896417],[4.536341,0.03542968,99.7784968],[4.53634146,0.03543142,99.77802914],[4.53634192,0.03543316,99.77756121],[4.53634238,0.03543491,99.77709302],[4.53634283,0.03543665,99.77662458],[4.53634329,0.0354384,99.7761559],[4.53634375,0.03544014,99.77568699],[4.53634421,0.03544189,99.77521786],[4.53634466,0.03544363,99.77474853],[4.53634512,0.03544538,99.77427901],[4.53634558,0.03544712,99.7738093],[4.53634604,0.03544886,99.77333941],[4.53634649,0.03545061,99.77286936],[4.53634695,0.03545235,99.77239917],[4.53634741,0.0354541,99.77192883],[4.53634787,0.03545584,99.77145836],[4.53634832,0.03545759,99.77098777],[4.53634878,0.03545933,99.77051708],[4.53634924,0.03546108,99.77004629],[4.5363497,0.03546282,99.76957541],[4.53635015,0.03546457,99.76910444],[4.53635061,0.03546631,99.7686334],[4.53635107,0.03546805,99.76816227],[4.53635152,0.0354698,99.76769108],[4.53635198,0.03547154,99.76721981],[4.53635244,0.03547329,99.76674848],[4.53635289,0.03547503,99.76627708],[4.53635335,0.03547678,99.76580563],[4.53635381,0.03547852,99.76533412],[4.53635426,0.03548027,99.76486257],[4.53635472,0.03548201,99.76439096],[4.53635517,0.03548376,99.76391931],[4.53635563,0.0354855,99.76344763],[4.53635609,0.03548725,99.76297591],[4.53635654,0.03548899,99.76250416],[4.536357,0.03549074,99.76203238],[4.53635745,0.03549248,99.76156058],[4.53635791,0.03549423,99.76108876],[4.53635836,0.03549597,99.76061692],[4.53635882,0.03549772,99.76014508],[4.53635927,0.03549946,99.75967323],[4.53635973,0.03550121,99.75920138],[4.53636018,0.03550295,99.75872953],[4.53636064,0.0355047,99.75825768],[4.53636109,0.03550644,99.75778585],[4.53636155,0.03550819,99.75731402],[4.536362,0.03550993,99.75684222],[4.53636246,0.03551168,99.75637044],[4.53636291,0.03551342,99.75589869],[4.53636337,0.03551517,99.75542697],[4.53636382,0.03551692,99.75495529],[4.53636428,0.03551866,99.75448364],[4.53636473,0.03552041,99.75401204],[4.53636519,0.03552215,99.75354049],[4.53636564,0.0355239,99.75306899],[4.5363661,0.03552564,99.75259755],[4.53636655,0.03552739,99.75212612],[4.536367,0.03552913,99.75165467],[4.53636746,0.03553088,99.75118317],[4.53636791,0.03553262,99.75071157],[4.53636837,0.03553437,99.75023984],[4.53636882,0.03553611,99.74976794],[4.53636928,0.03553786,99.74929583],[4.53636973,0.0355396,99.74882348],[4.53637019,0.03554135,99.74835083],[4.53637064,0.03554309,99.74787787],[4.5363711,0.03554484,99.74740454],[4.53637155,0.03554658,99.7469308],[4.53637201,0.03554833,99.74645663],[4.53637246,0.03555007,99.74598198],[4.53637291,0.03555182,99.74550682],[4.53637337,0.03555357,99.74503109],[4.53637382,0.03555531,99.74455477],[4.53637428,0.03555706,99.74407782],[4.53637473,0.0355588,99.74360019],[4.53637518,0.03556055,99.74312185],[4.53637564,0.03556229,99.74264275],[4.53637609,0.03556404,99.74216284],[4.53637654,0.03556578,99.74168208],[4.536377,0.03556753,99.74120041],[4.53637745,0.03556927,99.7407178],[4.5363779,0.03557102,99.74023419],[4.53637836,0.03557277,99.73974955],[4.53637881,0.03557451,99.73926381],[4.53637926,0.03557626,99.73877695],[4.53637971,0.035578,99.7382889],[4.53638016,0.03557975,99.73779962],[4.53638061,0.0355815,99.73730906],[4.53638107,0.03558324,99.73681717],[4.53638152,0.03558499,99.73632392],[4.53638197,0.03558673,99.73582924],[4.53638242,0.03558848,99.73533309],[4.53638287,0.03559023,99.73483542],[4.53638332,0.03559197,99.73433619],[4.53638377,0.03559372,99.73383535],[4.53638422,0.03559547,99.73333293],[4.53638467,0.03559721,99.73282897],[4.53638512,0.03559896,99.7323235],[4.53638556,0.03560071,99.73181656],[4.53638601,0.03560245,99.73130818],[4.53638646,0.0356042,99.73079841],[4.53638691,0.03560595,99.73028727],[4.53638736,0.03560769,99.72977481],[4.53638781,0.03560944,99.72926105],[4.53638825,0.03561119,99.72874605],[4.5363887,0.03561294,99.72822984],[4.53638915,0.03561468,99.72771244],[4.5363896,0.03561643,99.72719391],[4.53639004,0.03561818,99.72667428],[4.53639049,0.03561992,99.72615358],[4.53639094,0.03562167,99.72563185],[4.53639139,0.03562342,99.72510913],[4.53639183,0.03562517,99.72458546],[4.53639228,0.03562691,99.72406088],[4.53639273,0.03562866,99.72353542],[4.53639318,0.03563041,99.72300913],[4.53639362,0.03563215,99.72248204],[4.53639407,0.0356339,99.72195418],[4.53639452,0.03563565,99.72142561],[4.53639497,0.03563739,99.72089635],[4.53639541,0.03563914,99.72036645],[4.53639586,0.03564089,99.71983594],[4.53639631,0.03564264,99.71930487],[4.53639676,0.03564438,99.71877328],[4.53639721,0.03564613,99.7182412],[4.53639765,0.03564788,99.71770868],[4.5363981,0.03564962,99.71717575],[4.53639855,0.03565137,99.71664247],[4.536399,0.03565312,99.71610887],[4.53639945,0.03565486,99.71557498],[4.5363999,0.03565661,99.71504082],[4.53640035,0.03565836,99.71450637],[4.5364008,0.0356601,99.71397165],[4.53640125,0.03566185,99.71343665],[4.5364017,0.0356636,99.71290136],[4.53640215,0.03566534,99.71236579],[4.5364026,0.03566709,99.71182994],[4.53640305,0.03566884,99.7112938],[4.5364035,0.03567058,99.71075737],[4.53640395,0.03567233,99.71022066],[4.5364044,0.03567407,99.70968366],[4.53640485,0.03567582,99.70914638],[4.5364053,0.03567757,99.7086088],[4.53640575,0.03567931,99.70807094],[4.5364062,0.03568106,99.70753278],[4.53640665,0.03568281,99.70699434],[4.5364071,0.03568455,99.7064556],[4.53640755,0.0356863,99.70591657],[4.536408,0.03568804,99.70537725],[4.53640846,0.03568979,99.70483763],[4.53640891,0.03569153,99.70429772],[4.53640936,0.03569328,99.70375751],[4.53640981,0.03569503,99.70321701],[4.53641026,0.03569677,99.70267622],[4.53641071,0.03569852,99.70213512],[4.53641117,0.03570026,99.70159373],[4.53641162,0.03570201,99.70105204],[4.53641207,0.03570376,99.70051006],[4.53641252,0.0357055,99.69996777],[4.53641298,0.03570725,99.69942519],[4.53641343,0.03570899,99.69888231],[4.53641388,0.03571074,99.69833913],[4.53641433,0.03571249,99.69779564],[4.53641479,0.03571423,99.69725186],[4.53641524,0.03571598,99.69670778],[4.53641569,0.03571772,99.69616339],[4.53641614,0.03571947,99.69561871],[4.5364166,0.03572121,99.69507372],[4.53641705,0.03572296,99.69452843],[4.5364175,0.03572471,99.69398284],[4.53641795,0.03572645,99.69343695],[4.53641841,0.0357282,99.69289075],[4.53641886,0.03572994,99.69234425],[4.53641931,0.03573169,99.69179745],[4.53641977,0.03573343,99.69125034],[4.53642022,0.03573518,99.69070293],[4.53642067,0.03573692,99.69015522],[4.53642112,0.03573867,99.6896072],[4.53642158,0.03574042,99.68905888],[4.53642203,0.03574216,99.68851026],[4.53642248,0.03574391,99.68796133],[4.53642294,0.03574565,99.6874121],[4.53642339,0.0357474,99.68686256],[4.53642384,0.03574914,99.68631272],[4.5364243,0.03575089,99.68576257],[4.53642475,0.03575264,99.68521212],[4.5364252,0.03575438,99.68466136],[4.53642565,0.03575613,99.6841103],[4.53642611,0.03575787,99.68355893],[4.53642656,0.03575962,99.68300726],[4.53642701,0.03576136,99.68245529],[4.53642747,0.03576311,99.681903],[4.53642792,0.03576486,99.68135042],[4.53642837,0.0357666,99.68079753],[4.53642882,0.03576835,99.68024432],[4.53642928,0.03577009,99.6796908],[4.53642973,0.03577184,99.67913693],[4.53643018,0.03577358,99.67858272],[4.53643064,0.03577533,99.67802814],[4.53643109,0.03577708,99.67747319],[4.53643154,0.03577882,99.67691785],[4.53643199,0.03578057,99.67636211],[4.53643245,0.03578231,99.67580595],[4.5364329,0.03578406,99.67524937],[4.53643335,0.0357858,99.67469234],[4.53643381,0.03578755,99.67413486],[4.53643426,0.0357893,99.67357692],[4.53643471,0.03579104,99.67301849],[4.53643516,0.03579279,99.67245957],[4.53643562,0.03579453,99.67190014],[4.53643607,0.03579628,99.6713402],[4.53643652,0.03579802,99.67077971],[4.53643698,0.03579977,99.67021869],[4.53643743,0.03580151,99.6696571],[4.53643788,0.03580326,99.66909493],[4.53643833,0.03580501,99.66853218],[4.53643879,0.03580675,99.66796882],[4.53643924,0.0358085,99.66740485],[4.53643969,0.03581024,99.66684025],[4.53644014,0.03581199,99.66627501],[4.5364406,0.03581374,99.66570911],[4.53644105,0.03581548,99.66514254],[4.5364415,0.03581723,99.66457528],[4.53644196,0.03581897,99.66400733],[4.53644241,0.03582072,99.66343866],[4.53644286,0.03582246,99.66286927],[4.53644331,0.03582421,99.66229913],[4.53644377,0.03582596,99.66172824],[4.53644422,0.0358277,99.66115658],[4.53644467,0.03582945,99.66058414],[4.53644512,0.03583119,99.6600109],[4.53644557,0.03583294,99.65943685],[4.53644603,0.03583468,99.65886197],[4.53644648,0.03583643,99.65828625],[4.53644693,0.03583818,99.65770968],[4.53644738,0.03583992,99.65713223],[4.53644784,0.03584167,99.6565539],[4.53644829,0.03584341,99.65597468],[4.53644874,0.03584516,99.65539454],[4.53644919,0.03584691,99.65481347],[4.53644964,0.03584865,99.65423145],[4.53645009,0.0358504,99.65364848],[4.53645055,0.03585214,99.65306454],[4.536451,0.03585389,99.65247961],[4.53645145,0.03585564,99.65189368],[4.5364519,0.03585738,99.65130674],[4.53645235,0.03585913,99.65071876],[4.5364528,0.03586087,99.65012973],[4.53645326,0.03586262,99.64953965],[4.53645371,0.03586437,99.64894848],[4.53645416,0.03586611,99.64835623],[4.53645461,0.03586786,99.64776287],[4.53645506,0.0358696,99.64716838],[4.53645551,0.03587135,99.64657276],[4.53645596,0.0358731,99.64597599],[4.53645641,0.03587484,99.64537805],[4.53645686,0.03587659,99.64477893],[4.53645731,0.03587834,99.64417861],[4.53645777,0.03588008,99.64357707],[4.53645822,0.03588183,99.64297431],[4.53645867,0.03588357,99.64237031],[4.53645912,0.03588532,99.64176504],[4.53645957,0.03588707,99.6411585],[4.53646002,0.03588881,99.64055068],[4.53646047,0.03589056,99.63994158],[4.53646092,0.03589231,99.63933121],[4.53646137,0.03589405,99.63871955],[4.53646182,0.0358958,99.63810662],[4.53646227,0.03589755,99.63749241],[4.53646272,0.03589929,99.63687693],[4.53646317,0.03590104,99.63626017],[4.53646362,0.03590279,99.63564214],[4.53646407,0.03590453,99.63502283],[4.53646452,0.03590628,99.63440224],[4.53646497,0.03590803,99.63378038],[4.53646542,0.03590977,99.63315724],[4.53646586,0.03591152,99.63253282],[4.53646631,0.03591327,99.63190713],[4.53646676,0.03591501,99.63128017],[4.53646721,0.03591676,99.63065192],[4.53646766,0.0359185,99.63002241],[4.53646811,0.03592025,99.62939161],[4.53646856,0.035922,99.62875954],[4.53646901,0.03592374,99.6281262],[4.53646946,0.03592549,99.62749158],[4.53646991,0.03592724,99.62685568],[4.53647036,0.03592898,99.62621851],[4.53647081,0.03593073,99.62558007],[4.53647126,0.03593248,99.62494035],[4.53647171,0.03593422,99.62429935],[4.53647216,0.03593597,99.62365709],[4.5364726,0.03593772,99.62301354],[4.53647305,0.03593946,99.62236873],[4.5364735,0.03594121,99.62172266],[4.53647395,0.03594296,99.62107534],[4.5364744,0.0359447,99.62042676],[4.53647485,0.03594645,99.61977695],[4.5364753,0.0359482,99.6191259],[4.53647575,0.03594994,99.61847362],[4.5364762,0.03595169,99.61782012],[4.53647665,0.03595344,99.61716541],[4.5364771,0.03595519,99.61650949],[4.53647755,0.03595693,99.61585237],[4.53647799,0.03595868,99.61519406],[4.53647844,0.03596043,99.61453456],[4.53647889,0.03596217,99.61387388],[4.53647934,0.03596392,99.61321202],[4.53647979,0.03596567,99.61254901],[4.53648024,0.03596741,99.61188483],[4.53648069,0.03596916,99.6112195],[4.53648114,0.03597091,99.61055303],[4.53648159,0.03597265,99.60988541],[4.53648204,0.0359744,99.60921667],[4.53648249,0.03597614,99.6085468],[4.53648294,0.03597789,99.60787582],[4.53648339,0.03597964,99.60720372],[4.53648384,0.03598138,99.60653053],[4.53648428,0.03598313,99.60585623],[4.53648473,0.03598488,99.60518085],[4.53648518,0.03598662,99.60450438],[4.53648563,0.03598837,99.60382684],[4.53648608,0.03599012,99.60314823],[4.53648653,0.03599186,99.60246856],[4.53648698,0.03599361,99.60178783],[4.53648743,0.03599536,99.60110606],[4.53648788,0.0359971,99.60042324],[4.53648833,0.03599885,99.5997394],[4.53648878,0.0360006,99.59905452],[4.53648923,0.03600234,99.59836863],[4.53648968,0.03600409,99.59768172],[4.53649013,0.03600584,99.59699381],[4.53649058,0.03600758,99.5963049],[4.53649103,0.03600933,99.595615],[4.53649148,0.03601108,99.59492412],[4.53649193,0.03601282,99.59423226],[4.53649238,0.03601457,99.59353942],[4.53649283,0.03601632,99.59284563],[4.53649328,0.03601806,99.59215087],[4.53649373,0.03601981,99.59145516],[4.53649418,0.03602155,99.5907585],[4.53649463,0.0360233,99.59006088],[4.53649508,0.03602505,99.58936232],[4.53649553,0.03602679,99.58866282],[4.53649598,0.03602854,99.58796238],[4.53649644,0.03603029,99.58726101],[4.53649689,0.03603203,99.5865587],[4.53649734,0.03603378,99.58585546],[4.53649779,0.03603552,99.5851513],[4.53649824,0.03603727,99.58444621],[4.53649869,0.03603902,99.58374021],[4.53649914,0.03604076,99.58303329],[4.53649959,0.03604251,99.58232546],[4.53650004,0.03604426,99.58161672],[4.53650049,0.036046,99.58090708],[4.53650095,0.03604775,99.58019652],[4.5365014,0.03604949,99.57948505],[4.53650185,0.03605124,99.57877262],[4.5365023,0.03605299,99.57805923],[4.53650275,0.03605473,99.57734484],[4.5365032,0.03605648,99.57662944],[4.53650365,0.03605823,99.575913],[4.53650411,0.03605997,99.5751955],[4.53650456,0.03606172,99.57447692],[4.53650501,0.03606346,99.57375724],[4.53650546,0.03606521,99.57303642],[4.53650591,0.03606696,99.57231446],[4.53650636,0.0360687,99.57159132],[4.53650681,0.03607045,99.57086698],[4.53650727,0.03607219,99.57014143],[4.53650772,0.03607394,99.56941464],[4.53650817,0.03607569,99.56868658],[4.53650862,0.03607743,99.56795724],[4.53650907,0.03607918,99.56722659],[4.53650952,0.03608092,99.56649461],[4.53650997,0.03608267,99.56576128],[4.53651042,0.03608442,99.56502657],[4.53651087,0.03608616,99.56429047],[4.53651132,0.03608791,99.56355294],[4.53651177,0.03608966,99.56281397],[4.53651223,0.0360914,99.56207354],[4.53651268,0.03609315,99.56133162],[4.53651313,0.0360949,99.56058819],[4.53651358,0.03609664,99.55984323],[4.53651403,0.03609839,99.55909672],[4.53651448,0.03610014,99.55834863],[4.53651493,0.03610188,99.55759895],[4.53651537,0.03610363,99.55684764],[4.53651582,0.03610538,99.5560947],[4.53651627,0.03610712,99.55534012],[4.53651672,0.03610887,99.55458389],[4.53651717,0.03611062,99.55382602],[4.53651762,0.03611236,99.5530665],[4.53651807,0.03611411,99.55230532],[4.53651852,0.03611586,99.55154249],[4.53651896,0.0361176,99.55077799],[4.53651941,0.03611935,99.55001183],[4.53651986,0.0361211,99.549244],[4.53652031,0.03612284,99.54847451],[4.53652076,0.03612459,99.54770338],[4.5365212,0.03612634,99.54693063],[4.53652165,0.03612809,99.54615629],[4.5365221,0.03612983,99.54538037],[4.53652254,0.03613158,99.54460289],[4.53652299,0.03613333,99.54382388],[4.53652344,0.03613507,99.54304335],[4.53652388,0.03613682,99.54226133],[4.53652433,0.03613857,99.54147784],[4.53652478,0.03614032,99.5406929],[4.53652522,0.03614206,99.53990652],[4.53652567,0.03614381,99.53911874],[4.53652612,0.03614556,99.53832957],[4.53652656,0.03614731,99.53753903],[4.53652701,0.03614905,99.53674714],[4.53652745,0.0361508,99.53595392],[4.5365279,0.03615255,99.5351594],[4.53652835,0.0361543,99.53436359],[4.53652879,0.03615604,99.53356652],[4.53652924,0.03615779,99.53276821],[4.53652968,0.03615954,99.53196867],[4.53653013,0.03616129,99.53116794],[4.53653058,0.03616304,99.53036602],[4.53653102,0.03616478,99.52956294],[4.53653147,0.03616653,99.52875872],[4.53653191,0.03616828,99.52795338],[4.53653236,0.03617003,99.52714694],[4.5365328,0.03617177,99.52633942],[4.53653325,0.03617352,99.52553085],[4.5365337,0.03617527,99.52472124],[4.53653414,0.03617702,99.52391061],[4.53653459,0.03617876,99.52309899],[4.53653503,0.03618051,99.5222864],[4.53653548,0.03618226,99.52147285],[4.53653593,0.03618401,99.52065836],[4.53653637,0.03618575,99.51984296],[4.53653682,0.0361875,99.51902667],[4.53653727,0.03618925,99.51820951],[4.53653771,0.036191,99.51739149],[4.53653816,0.03619274,99.51657264],[4.53653861,0.03619449,99.51575298],[4.53653905,0.03619624,99.51493253],[4.5365395,0.03619799,99.51411131],[4.53653995,0.03619973,99.51328934],[4.53654039,0.03620148,99.51246664],[4.53654084,0.03620323,99.51164322],[4.53654129,0.03620497,99.51081912],[4.53654174,0.03620672,99.50999435],[4.53654218,0.03620847,99.50916891],[4.53654263,0.03621022,99.50834281],[4.53654308,0.03621196,99.50751604],[4.53654353,0.03621371,99.50668858],[4.53654398,0.03621546,99.50586044],[4.53654443,0.0362172,99.5050316],[4.53654487,0.03621895,99.50420205],[4.53654532,0.0362207,99.5033718],[4.53654577,0.03622244,99.50254082],[4.53654622,0.03622419,99.50170912],[4.53654667,0.03622594,99.50087668],[4.53654712,0.03622768,99.5000435],[4.53654757,0.03622943,99.49920957],[4.53654802,0.03623118,99.49837491],[4.53654847,0.03623292,99.49753952],[4.53654891,0.03623467,99.49670344],[4.53654936,0.03623642,99.49586666],[4.53654981,0.03623816,99.4950292],[4.53655026,0.03623991,99.49419108],[4.53655071,0.03624166,99.49335231],[4.53655116,0.0362434,99.49251291],[4.53655161,0.03624515,99.49167289],[4.53655206,0.0362469,99.49083226],[4.53655251,0.03624864,99.48999104],[4.53655296,0.03625039,99.48914925],[4.53655341,0.03625214,99.48830689],[4.53655386,0.03625389,99.48746399],[4.5365543,0.03625563,99.48662055],[4.53655475,0.03625738,99.4857766],[4.5365552,0.03625913,99.48493214],[4.53655565,0.03626087,99.48408719],[4.5365561,0.03626262,99.48324176],[4.53655655,0.03626437,99.48239587],[4.536557,0.03626611,99.48154953],[4.53655745,0.03626786,99.48070275],[4.5365579,0.03626961,99.47985556],[4.53655835,0.03627135,99.47900795],[4.5365588,0.0362731,99.47815996],[4.53655924,0.03627485,99.47731159],[4.53655969,0.03627659,99.47646285],[4.53656014,0.03627834,99.47561376],[4.53656059,0.03628009,99.47476433],[4.53656104,0.03628183,99.47391458],[4.53656149,0.03628358,99.47306453],[4.53656194,0.03628533,99.47221417],[4.53656239,0.03628707,99.47136353],[4.53656283,0.03628882,99.47051263],[4.53656328,0.03629057,99.46966147],[4.53656373,0.03629232,99.46881007],[4.53656418,0.03629406,99.46795844],[4.53656463,0.03629581,99.4671066],[4.53656507,0.03629756,99.46625455],[4.53656552,0.0362993,99.46540232],[4.53656597,0.03630105,99.46454992],[4.53656642,0.0363028,99.46369735],[4.53656687,0.03630454,99.46284464],[4.53656731,0.03630629,99.4619918],[4.53656776,0.03630804,99.46113883],[4.53656821,0.03630979,99.46028576],[4.53656866,0.03631153,99.4594326],[4.5365691,0.03631328,99.45857935],[4.53656955,0.03631503,99.45772604],[4.53657,0.03631678,99.45687267],[4.53657044,0.03631852,99.45601926],[4.53657089,0.03632027,99.45516583],[4.53657134,0.03632202,99.45431238],[4.53657178,0.03632377,99.45345893],[4.53657223,0.03632551,99.45260549],[4.53657267,0.03632726,99.45175208],[4.53657312,0.03632901,99.45089871],[4.53657357,0.03633076,99.4500454],[4.53657401,0.0363325,99.44919217],[4.53657446,0.03633425,99.44833902],[4.5365749,0.036336,99.44748597],[4.53657535,0.03633775,99.44663305],[4.53657579,0.03633949,99.44578025],[4.53657624,0.03634124,99.4449276],[4.53657668,0.03634299,99.44407511],[4.53657713,0.03634474,99.4432228],[4.53657757,0.03634649,99.44237071],[4.53657802,0.03634823,99.44151889],[4.53657846,0.03634998,99.4406674],[4.5365789,0.03635173,99.43981627],[4.53657935,0.03635348,99.43896557],[4.53657979,0.03635523,99.43811535],[4.53658024,0.03635697,99.43726565],[4.53658068,0.03635872,99.43641652],[4.53658112,0.03636047,99.43556802],[4.53658157,0.03636222,99.4347202],[4.53658201,0.03636397,99.4338731],[4.53658245,0.03636572,99.43302677],[4.5365829,0.03636746,99.43218127],[4.53658334,0.03636921,99.43133665],[4.53658378,0.03637096,99.43049295],[4.53658423,0.03637271,99.42965022],[4.53658467,0.03637446,99.42880842],[4.53658511,0.03637621,99.42796743],[4.53658556,0.03637795,99.42712713],[4.536586,0.0363797,99.42628739],[4.53658645,0.03638145,99.42544808],[4.53658689,0.0363832,99.42460909],[4.53658733,0.03638495,99.42377029],[4.53658778,0.03638669,99.42293155],[4.53658822,0.03638844,99.42209276],[4.53658866,0.03639019,99.42125379],[4.53658911,0.03639194,99.42041452],[4.53658955,0.03639369,99.41957483],[4.53658999,0.03639544,99.41873459],[4.53659044,0.03639718,99.41789368],[4.53659088,0.03639893,99.41705199],[4.53659133,0.03640068,99.41620939],[4.53659177,0.03640243,99.41536577],[4.53659221,0.03640418,99.41452099],[4.53659266,0.03640592,99.41367495],[4.5365931,0.03640767,99.41282753],[4.53659355,0.03640942,99.41197859],[4.53659399,0.03641117,99.41112804],[4.53659443,0.03641292,99.41027574],[4.53659488,0.03641466,99.40942158],[4.53659532,0.03641641,99.40856545],[4.53659577,0.03641816,99.40770722],[4.53659621,0.03641991,99.40684678],[4.53659666,0.03642166,99.40598401],[4.5365971,0.0364234,99.40511879],[4.53659754,0.03642515,99.40425102],[4.53659799,0.0364269,99.40338056],[4.53659843,0.03642865,99.40250732],[4.53659888,0.0364304,99.40163117],[4.53659932,0.03643213,99.400752],[4.53659977,0.03643388,99.39986975],[4.53660021,0.03643563,99.39898456],[4.53660066,0.03643738,99.39809664],[4.5366011,0.03643913,99.39720619],[4.53660155,0.03644087,99.39631341],[4.53660199,0.03644262,99.3954185],[4.53660244,0.03644437,99.39452166],[4.53660288,0.03644612,99.39362308],[4.53660333,0.03644787,99.39272297],[4.53660377,0.03644961,99.39182153],[4.53660422,0.03645136,99.39091895],[4.53660466,0.03645311,99.39001539],[4.53660511,0.03645486,99.38911102],[4.53660556,0.0364566,99.388206],[4.536606,0.03645835,99.38730049],[4.53660645,0.0364601,99.38639464],[4.53660689,0.03646185,99.38548862],[4.53660734,0.0364636,99.38458258],[4.53660779,0.03646534,99.38367668],[4.53660823,0.03646709,99.38277107],[4.53660868,0.03646884,99.38186592],[4.53660912,0.03647059,99.38096137],[4.53659681,0.03647376,99.38096137]]],"type":"Polygon"},"type":"feature","properties":{"successorId":2,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":2,"type":"none","predecessorId":2,"sOffset":248.3390056326}},{"geometry":{"coordinates":[[[4.53588396,0.03417002,99.84168354],[4.53588348,0.03416828,99.84174466],[4.53588318,0.03416719,99.84178233],[4.53589791,0.03416318,99.84178233],[4.53589821,0.03416427,99.84174466],[4.53589868,0.03416601,99.84168354],[4.53588396,0.03417002,99.84168354]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-6,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":-6,"type":"none","predecessorId":-6,"sOffset":515.6429771559}},{"geometry":{"coordinates":[[[4.53589868,0.03416601,99.84168354],[4.53589821,0.03416427,99.84174466],[4.53589791,0.03416318,99.84178233],[4.5358991,0.03416286,99.71678233],[4.53589939,0.03416395,99.71674466],[4.53589987,0.03416569,99.71668354],[4.53589868,0.03416601,99.84168354]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-5,"level":true,"heights":[{"outer":0.15,"inner":0.025}],"roadId":"1004600","id":-5,"type":"border","predecessorId":-5,"sOffset":515.6429771559}},{"geometry":{"coordinates":[[[4.53589987,0.03416569,99.69168354],[4.53589939,0.03416395,99.69174466],[4.5358991,0.03416286,99.69178233],[4.53590342,0.03416168,99.70301931],[4.53590372,0.03416277,99.70298622],[4.53590419,0.03416451,99.70293243],[4.53589987,0.03416569,99.69168354]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-4,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-4,"type":"border","predecessorId":-4,"sOffset":515.6429771559}},{"geometry":{"coordinates":[[[4.53590419,0.03416451,99.70293243],[4.53590372,0.03416277,99.70298622],[4.53590342,0.03416168,99.70301931],[4.53591915,0.0341574,99.74389358],[4.53591944,0.0341585,99.74387051],[4.53591991,0.03416024,99.74383283],[4.53590419,0.03416451,99.70293243]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-3,"type":"stop","predecessorId":-3,"sOffset":515.6429771559}},{"geometry":{"coordinates":[[[4.53591991,0.03416024,99.74383283],[4.53591944,0.0341585,99.74387051],[4.53591915,0.0341574,99.74389358],[4.5359508,0.03414879,99.8261696],[4.5359511,0.03414988,99.82617982],[4.53595156,0.03415162,99.82619552],[4.53591991,0.03416024,99.74383283]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2,"sOffset":515.6429771559}},{"geometry":{"coordinates":[[[4.53595156,0.03415162,99.82619552],[4.5359511,0.03414988,99.82617982],[4.5359508,0.03414879,99.8261696],[4.5359815,0.03414044,99.90595839],[4.53598179,0.03414153,99.90599587],[4.53598226,0.03414327,99.90605533],[4.53595156,0.03415162,99.82619552]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1,"sOffset":515.6429771559}},{"geometry":{"coordinates":[[[4.53598226,0.03414327,99.90605533],[4.53598179,0.03414153,99.90599587],[4.5359815,0.03414044,99.90595839],[4.5359854,0.03413938,99.91608983],[4.5359857,0.03414047,99.91614968],[4.53598617,0.03414221,99.91624483],[4.53598226,0.03414327,99.90605533]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":1,"type":"shoulder","predecessorId":1,"sOffset":515.6429771559}},{"geometry":{"coordinates":[[[4.53598617,0.03414221,99.91624483],[4.5359857,0.03414047,99.91614968],[4.5359854,0.03413938,99.91608983],[4.53599821,0.03413589,99.94938569],[4.5359985,0.03413699,99.94943885],[4.53599896,0.03413873,99.94952346],[4.53598617,0.03414221,99.91624483]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":false,"roadId":"1004600","id":2,"type":"border","predecessorId":2,"sOffset":515.6429771559}},{"geometry":{"coordinates":[[[4.53588318,0.03416719,99.84178233],[4.5358827,0.03416545,99.84184138],[4.53588221,0.03416372,99.84189904],[4.53588173,0.03416198,99.8419553],[4.53588125,0.03416024,99.84201013],[4.53588091,0.03415899,99.8420486],[4.53589568,0.03415498,99.8420486],[4.53589602,0.03415622,99.84201013],[4.53589649,0.03415796,99.8419553],[4.53589697,0.0341597,99.84189904],[4.53589744,0.03416144,99.84184138],[4.53589791,0.03416318,99.84178233],[4.53588318,0.03416719,99.84178233]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-6,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":-6,"type":"none","predecessorId":-6,"sOffset":515.9685147215}},{"geometry":{"coordinates":[[[4.53589791,0.03416318,99.84178233],[4.53589744,0.03416144,99.84184138],[4.53589697,0.0341597,99.84189904],[4.53589649,0.03415796,99.8419553],[4.53589602,0.03415622,99.84201013],[4.53589568,0.03415498,99.8420486],[4.53589686,0.03415465,99.7170486],[4.5358972,0.0341559,99.71701013],[4.53589768,0.03415764,99.7169553],[4.53589815,0.03415938,99.71689904],[4.53589862,0.03416112,99.71684138],[4.5358991,0.03416286,99.71678233],[4.53589791,0.03416318,99.84178233]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-5,"level":true,"heights":[{"outer":0.15,"inner":0.025}],"roadId":"1004600","id":-5,"type":"border","predecessorId":-5,"sOffset":515.9685147215}},{"geometry":{"coordinates":[[[4.5358991,0.03416286,99.69178233],[4.53589862,0.03416112,99.69184138],[4.53589815,0.03415938,99.69189904],[4.53589768,0.03415764,99.6919553],[4.5358972,0.0341559,99.69201013],[4.53589686,0.03415465,99.6920486],[4.53590119,0.03415348,99.70325192],[4.53590153,0.03415472,99.70321849],[4.535902,0.03415646,99.70317072],[4.53590247,0.0341582,99.7031216],[4.53590295,0.03415994,99.70307112],[4.53590342,0.03416168,99.70301931],[4.5358991,0.03416286,99.69178233]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-4,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-4,"type":"border","predecessorId":-4,"sOffset":515.9685147215}},{"geometry":{"coordinates":[[[4.53590342,0.03416168,99.70301931],[4.53590295,0.03415994,99.70307112],[4.53590247,0.0341582,99.7031216],[4.535902,0.03415646,99.70317072],[4.53590153,0.03415472,99.70321849],[4.53590119,0.03415348,99.70325192],[4.53591693,0.03414919,99.74405659],[4.53591727,0.03415044,99.74403346],[4.53591774,0.03415218,99.74400023],[4.53591821,0.03415392,99.74396583],[4.53591868,0.03415566,99.74393027],[4.53591915,0.0341574,99.74389358],[4.53590342,0.03416168,99.70301931]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-3,"type":"stop","predecessorId":-3,"sOffset":515.9685147215}},{"geometry":{"coordinates":[[[4.53591915,0.0341574,99.74389358],[4.53591868,0.03415566,99.74393027],[4.53591821,0.03415392,99.74396583],[4.53591774,0.03415218,99.74400023],[4.53591727,0.03415044,99.74403346],[4.53591693,0.03414919,99.74405659],[4.53594859,0.03414058,99.82608351],[4.53594892,0.03414183,99.82609766],[4.53594939,0.03414357,99.82611673],[4.53594986,0.03414531,99.82613508],[4.53595033,0.03414705,99.8261527],[4.5359508,0.03414879,99.8261696],[4.53591915,0.0341574,99.74389358]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2,"sOffset":515.9685147215}},{"geometry":{"coordinates":[[[4.5359508,0.03414879,99.8261696],[4.53595033,0.03414705,99.8261527],[4.53594986,0.03414531,99.82613508],[4.53594939,0.03414357,99.82611673],[4.53594892,0.03414183,99.82609766],[4.53594859,0.03414058,99.82608351],[4.5359793,0.03413222,99.90567259],[4.53597964,0.03413347,99.90571653],[4.5359801,0.03413521,99.90577749],[4.53598057,0.03413695,99.90583811],[4.53598103,0.0341387,99.90589841],[4.5359815,0.03414044,99.90595839],[4.5359508,0.03414879,99.8261696]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1,"sOffset":515.9685147215}},{"geometry":{"coordinates":[[[4.5359815,0.03414044,99.90595839],[4.53598103,0.0341387,99.90589841],[4.53598057,0.03413695,99.90583811],[4.5359801,0.03413521,99.90577749],[4.53597964,0.03413347,99.90571653],[4.5359793,0.03413222,99.90567259],[4.53598161,0.03413159,99.91164578],[4.53598195,0.03413284,99.91170682],[4.53598242,0.03413458,99.91179165],[4.53598289,0.03413632,99.91187621],[4.53598337,0.03413806,99.91196049],[4.53598384,0.0341398,99.91204452],[4.5359815,0.03414044,99.90595839]]],"type":"Polygon"},"type":"feature","properties":{"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":1,"type":"shoulder","predecessorId":0,"sOffset":515.9685147215}},{"geometry":{"coordinates":[[[4.53598384,0.0341398,99.91204452],[4.53598337,0.03413806,99.91196049],[4.53598289,0.03413632,99.91187621],[4.53598242,0.03413458,99.91179165],[4.53598195,0.03413284,99.91170682],[4.53598161,0.03413159,99.91164578],[4.53598316,0.03413117,99.91567898],[4.5359835,0.03413242,99.91574184],[4.53598398,0.03413416,99.91582921],[4.53598445,0.0341359,99.91591633],[4.53598492,0.03413764,99.91600321],[4.5359854,0.03413938,99.91608983],[4.53598384,0.0341398,99.91204452]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":2,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":2,"type":"border","predecessorId":0,"sOffset":515.9685147215}},{"geometry":{"coordinates":[[[4.5359854,0.03413938,99.91608983],[4.53598492,0.03413764,99.91600321],[4.53598445,0.0341359,99.91591633],[4.53598398,0.03413416,99.91582921],[4.5359835,0.03413242,99.91574184],[4.53598316,0.03413117,100.06567898],[4.53598444,0.03413082,100.06567898],[4.53598479,0.03413207,99.91574184],[4.53598527,0.03413381,99.91582921],[4.53598574,0.03413555,99.91591633],[4.53598622,0.03413728,99.91600321],[4.5359867,0.03413902,99.91608983],[4.5359854,0.03413938,99.91608983]]],"type":"Polygon"},"type":"feature","properties":{"successorId":3,"level":true,"heights":[{"outer":0.0,"inner":0.0},{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":3,"type":"border","predecessorId":0,"sOffset":515.9685147215}},{"geometry":{"coordinates":[[[4.5359867,0.03413902,100.06608983],[4.53598622,0.03413728,100.06600321],[4.53598574,0.03413555,100.06591633],[4.53598527,0.03413381,100.06582921],[4.53598479,0.03413207,100.06574184],[4.53598444,0.03413082,99.94067898],[4.53599602,0.03412767,100.06567898],[4.53599636,0.03412892,100.06574184],[4.53599682,0.03413066,100.06582921],[4.53599729,0.0341324,100.06591633],[4.53599775,0.03413415,100.06600321],[4.53599822,0.03413589,100.06608983],[4.5359867,0.03413902,100.06608983]]],"type":"Polygon"},"type":"feature","properties":{"successorId":4,"level":true,"heights":[{"outer":0.15,"inner":0.15},{"outer":0.15,"inner":0.025}],"roadId":"1004600","id":4,"type":"border","predecessorId":0,"sOffset":515.9685147215}},{"geometry":{"coordinates":[[[4.53588091,0.03415899,99.8420486],[4.53588043,0.03415726,99.84209702],[4.53587995,0.03415552,99.842144],[4.53587947,0.03415378,99.84218952],[4.53587898,0.03415205,99.84223357],[4.5358785,0.03415031,99.84227614],[4.53587802,0.03414857,99.84231722],[4.53587754,0.03414683,99.8423568],[4.53587706,0.0341451,99.84239487],[4.53587658,0.03414336,99.84243141],[4.5358761,0.03414162,99.84246641],[4.53587562,0.03413988,99.84249986],[4.53587514,0.03413815,99.84253176],[4.53587466,0.03413641,99.84256208],[4.53587418,0.03413467,99.84259081],[4.5358737,0.03413294,99.84261795],[4.53587321,0.0341312,99.84264349],[4.53587294,0.03413022,99.84265719],[4.53588784,0.03412616,99.84265719],[4.5358881,0.03412715,99.84264349],[4.53588858,0.03412889,99.84261795],[4.53588905,0.03413062,99.84259081],[4.53588952,0.03413236,99.84256208],[4.53589,0.0341341,99.84253176],[4.53589047,0.03413584,99.84249986],[4.53589094,0.03413758,99.84246641],[4.53589142,0.03413932,99.84243141],[4.53589189,0.03414106,99.84239487],[4.53589237,0.0341428,99.8423568],[4.53589284,0.03414454,99.84231722],[4.53589331,0.03414628,99.84227614],[4.53589379,0.03414802,99.84223357],[4.53589426,0.03414976,99.84218952],[4.53589473,0.0341515,99.842144],[4.53589521,0.03415324,99.84209702],[4.53589568,0.03415498,99.8420486],[4.53588091,0.03415899,99.8420486]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-6,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":-6,"type":"none","predecessorId":-6,"sOffset":516.9120275393}},{"geometry":{"coordinates":[[[4.53589568,0.03415498,99.8420486],[4.53589521,0.03415324,99.84209702],[4.53589473,0.0341515,99.842144],[4.53589426,0.03414976,99.84218952],[4.53589379,0.03414802,99.84223357],[4.53589331,0.03414628,99.84227614],[4.53589284,0.03414454,99.84231722],[4.53589237,0.0341428,99.8423568],[4.53589189,0.03414106,99.84239487],[4.53589142,0.03413932,99.84243141],[4.53589094,0.03413758,99.84246641],[4.53589047,0.03413584,99.84249986],[4.53589,0.0341341,99.84253176],[4.53588952,0.03413236,99.84256208],[4.53588905,0.03413062,99.84259081],[4.53588858,0.03412889,99.84261795],[4.5358881,0.03412715,99.84264349],[4.53588784,0.03412616,99.84265719],[4.535889,0.03412585,99.71765719],[4.53588927,0.03412683,99.71764349],[4.53588974,0.03412857,99.71761795],[4.53589022,0.03413031,99.71759081],[4.53589069,0.03413205,99.71756208],[4.53589117,0.03413378,99.71753176],[4.53589164,0.03413552,99.71749986],[4.53589212,0.03413726,99.71746641],[4.53589259,0.034139,99.71743141],[4.53589307,0.03414074,99.71739487],[4.53589354,0.03414248,99.7173568],[4.53589402,0.03414422,99.71731722],[4.53589449,0.03414596,99.71727614],[4.53589497,0.0341477,99.71723357],[4.53589544,0.03414944,99.71718952],[4.53589591,0.03415117,99.717144],[4.53589639,0.03415291,99.71709702],[4.53589686,0.03415465,99.7170486],[4.53589568,0.03415498,99.8420486]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-5,"level":true,"heights":[{"outer":0.15,"inner":0.025}],"roadId":"1004600","id":-5,"type":"border","predecessorId":-5,"sOffset":516.9120275393}},{"geometry":{"coordinates":[[[4.53589686,0.03415465,99.6920486],[4.53589639,0.03415291,99.69209702],[4.53589591,0.03415117,99.692144],[4.53589544,0.03414944,99.69218952],[4.53589497,0.0341477,99.69223357],[4.53589449,0.03414596,99.69227614],[4.53589402,0.03414422,99.69231722],[4.53589354,0.03414248,99.6923568],[4.53589307,0.03414074,99.69239487],[4.53589259,0.034139,99.69243141],[4.53589212,0.03413726,99.69246641],[4.53589164,0.03413552,99.69249986],[4.53589117,0.03413378,99.69253176],[4.53589069,0.03413205,99.69256208],[4.53589022,0.03413031,99.69259081],[4.53588974,0.03412857,99.69261795],[4.53588927,0.03412683,99.69264349],[4.535889,0.03412585,99.69265719],[4.53589332,0.03412467,99.70375308],[4.53589359,0.03412565,99.70374275],[4.53589407,0.03412739,99.70372324],[4.53589454,0.03412913,99.7037022],[4.53589502,0.03413087,99.70367962],[4.53589549,0.03413261,99.70365553],[4.53589597,0.03413435,99.70362992],[4.53589644,0.03413609,99.70360282],[4.53589692,0.03413782,99.70357423],[4.53589739,0.03413956,99.70354417],[4.53589786,0.0341413,99.70351264],[4.53589834,0.03414304,99.70347967],[4.53589881,0.03414478,99.70344525],[4.53589929,0.03414652,99.7034094],[4.53589976,0.03414826,99.70337213],[4.53590024,0.03415,99.70333345],[4.53590071,0.03415174,99.70329338],[4.53590119,0.03415348,99.70325192],[4.53589686,0.03415465,99.6920486]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-4,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-4,"type":"border","predecessorId":-4,"sOffset":516.9120275393}},{"geometry":{"coordinates":[[[4.53590119,0.03415348,99.70325192],[4.53590071,0.03415174,99.70329338],[4.53590024,0.03415,99.70333345],[4.53589976,0.03414826,99.70337213],[4.53589929,0.03414652,99.7034094],[4.53589881,0.03414478,99.70344525],[4.53589834,0.03414304,99.70347967],[4.53589786,0.0341413,99.70351264],[4.53589739,0.03413956,99.70354417],[4.53589692,0.03413782,99.70357423],[4.53589644,0.03413609,99.70360282],[4.53589597,0.03413435,99.70362992],[4.53589549,0.03413261,99.70365553],[4.53589502,0.03413087,99.70367962],[4.53589454,0.03412913,99.7037022],[4.53589407,0.03412739,99.70372324],[4.53589359,0.03412565,99.70374275],[4.53589332,0.03412467,99.70375308],[4.53590919,0.03412035,99.7444853],[4.53590946,0.03412133,99.7444765],[4.53590992,0.03412307,99.74445986],[4.53591039,0.03412481,99.74444189],[4.53591086,0.03412656,99.74442261],[4.53591133,0.0341283,99.74440203],[4.53591179,0.03413004,99.74438015],[4.53591226,0.03413178,99.74435698],[4.53591273,0.03413352,99.74433254],[4.5359132,0.03413526,99.74430682],[4.53591366,0.034137,99.74427985],[4.53591413,0.03413874,99.74425163],[4.5359146,0.03414049,99.74422217],[4.53591507,0.03414223,99.74419148],[4.53591553,0.03414397,99.74415956],[4.535916,0.03414571,99.74412644],[4.53591647,0.03414745,99.74409211],[4.53591693,0.03414919,99.74405659],[4.53590119,0.03415348,99.70325192]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-3,"type":"stop","predecessorId":-3,"sOffset":516.9120275393}},{"geometry":{"coordinates":[[[4.53591693,0.03414919,99.74405659],[4.53591647,0.03414745,99.74409211],[4.535916,0.03414571,99.74412644],[4.53591553,0.03414397,99.74415956],[4.53591507,0.03414223,99.74419148],[4.5359146,0.03414049,99.74422217],[4.53591413,0.03413874,99.74425163],[4.53591366,0.034137,99.74427985],[4.5359132,0.03413526,99.74430682],[4.53591273,0.03413352,99.74433254],[4.53591226,0.03413178,99.74435698],[4.53591179,0.03413004,99.74438015],[4.53591133,0.0341283,99.74440203],[4.53591086,0.03412656,99.74442261],[4.53591039,0.03412481,99.74444189],[4.53590992,0.03412307,99.74445986],[4.53590946,0.03412133,99.7444765],[4.53590919,0.03412035,99.7444853],[4.53594082,0.03411174,99.82566304],[4.53594109,0.03411272,99.82568107],[4.53594156,0.03411446,99.82571233],[4.53594203,0.0341162,99.82574274],[4.53594249,0.03411794,99.82577232],[4.53594296,0.03411969,99.82580106],[4.53594343,0.03412143,99.82582898],[4.5359439,0.03412317,99.82585608],[4.53594437,0.03412491,99.82588237],[4.53594484,0.03412665,99.82590785],[4.53594531,0.03412839,99.82593254],[4.53594578,0.03413013,99.82595643],[4.53594625,0.03413187,99.82597953],[4.53594671,0.03413361,99.82600186],[4.53594718,0.03413535,99.82602342],[4.53594765,0.0341371,99.8260442],[4.53594812,0.03413884,99.82606423],[4.53594859,0.03414058,99.82608351],[4.53591693,0.03414919,99.74405659]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2,"sOffset":516.9120275393}},{"geometry":{"coordinates":[[[4.53594859,0.03414058,99.82608351],[4.53594812,0.03413884,99.82606423],[4.53594765,0.0341371,99.8260442],[4.53594718,0.03413535,99.82602342],[4.53594671,0.03413361,99.82600186],[4.53594625,0.03413187,99.82597953],[4.53594578,0.03413013,99.82595643],[4.53594531,0.03412839,99.82593254],[4.53594484,0.03412665,99.82590785],[4.53594437,0.03412491,99.82588237],[4.5359439,0.03412317,99.82585608],[4.53594343,0.03412143,99.82582898],[4.53594296,0.03411969,99.82580106],[4.53594249,0.03411794,99.82577232],[4.53594203,0.0341162,99.82574274],[4.53594156,0.03411446,99.82571233],[4.53594109,0.03411272,99.82568107],[4.53594082,0.03411174,99.82566304],[4.53597158,0.03410336,99.9046073],[4.53597185,0.03410435,99.90464531],[4.53597231,0.03410609,99.90471231],[4.53597278,0.03410783,99.90477892],[4.53597324,0.03410957,99.90484515],[4.53597371,0.03411132,99.904911],[4.53597418,0.03411306,99.90497646],[4.53597464,0.0341148,99.90504155],[4.53597511,0.03411654,99.90510627],[4.53597557,0.03411828,99.90517062],[4.53597604,0.03412003,99.90523461],[4.53597651,0.03412177,99.90529823],[4.53597697,0.03412351,99.9053615],[4.53597744,0.03412525,99.90542441],[4.5359779,0.03412699,99.90548697],[4.53597837,0.03412874,99.90554918],[4.53597884,0.03413048,99.90561105],[4.5359793,0.03413222,99.90567259],[4.53594859,0.03414058,99.82608351]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1,"sOffset":516.9120275393}},{"geometry":{"coordinates":[[[4.5359793,0.03413222,99.90567259],[4.53597884,0.03413048,99.90561105],[4.53597837,0.03412874,99.90554918],[4.5359779,0.03412699,99.90548697],[4.53597744,0.03412525,99.90542441],[4.53597697,0.03412351,99.9053615],[4.53597651,0.03412177,99.90529823],[4.53597604,0.03412003,99.90523461],[4.53597557,0.03411828,99.90517062],[4.53597511,0.03411654,99.90510627],[4.53597464,0.0341148,99.90504155],[4.53597418,0.03411306,99.90497646],[4.53597371,0.03411132,99.904911],[4.53597324,0.03410957,99.90484515],[4.53597278,0.03410783,99.90477892],[4.53597231,0.03410609,99.90471231],[4.53597185,0.03410435,99.90464531],[4.53597158,0.03410336,99.9046073],[4.53597377,0.03410277,99.91022174],[4.53597404,0.03410375,99.91027174],[4.53597451,0.03410549,99.91036001],[4.53597498,0.03410723,99.91044795],[4.53597546,0.03410897,99.91053556],[4.53597593,0.03411071,99.91062283],[4.5359764,0.03411245,99.91070978],[4.53597688,0.03411419,99.91079641],[4.53597735,0.03411593,99.91088272],[4.53597782,0.03411767,99.91096872],[4.5359783,0.03411941,99.9110544],[4.53597877,0.03412115,99.91113978],[4.53597924,0.03412289,99.91122485],[4.53597972,0.03412463,99.91130962],[4.53598019,0.03412637,99.9113941],[4.53598066,0.03412811,99.91147828],[4.53598113,0.03412985,99.91156217],[4.53598161,0.03413159,99.91164578],[4.5359793,0.03413222,99.90567259]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":1,"type":"shoulder","predecessorId":1,"sOffset":516.9120275393}},{"geometry":{"coordinates":[[[4.53598161,0.03413159,99.91164578],[4.53598113,0.03412985,99.91156217],[4.53598066,0.03412811,99.91147828],[4.53598019,0.03412637,99.9113941],[4.53597972,0.03412463,99.91130962],[4.53597924,0.03412289,99.91122485],[4.53597877,0.03412115,99.91113978],[4.5359783,0.03411941,99.9110544],[4.53597782,0.03411767,99.91096872],[4.53597735,0.03411593,99.91088272],[4.53597688,0.03411419,99.91079641],[4.5359764,0.03411245,99.91070978],[4.53597593,0.03411071,99.91062283],[4.53597546,0.03410897,99.91053556],[4.53597498,0.03410723,99.91044795],[4.53597451,0.03410549,99.91036001],[4.53597404,0.03410375,99.91027174],[4.53597377,0.03410277,99.91022174],[4.53597533,0.03410235,99.91421625],[4.53597559,0.03410333,99.91426746],[4.53597607,0.03410507,99.91435791],[4.53597654,0.03410681,99.91444804],[4.53597701,0.03410855,99.91453786],[4.53597749,0.03411029,99.91462738],[4.53597796,0.03411203,99.9147166],[4.53597843,0.03411377,99.91480551],[4.53597891,0.03411551,99.91489413],[4.53597938,0.03411725,99.91498246],[4.53597985,0.03411899,99.9150705],[4.53598033,0.03412073,99.91515826],[4.5359808,0.03412247,99.91524573],[4.53598127,0.03412421,99.91533292],[4.53598174,0.03412595,99.91541984],[4.53598222,0.03412769,99.91550649],[4.53598269,0.03412943,99.91559287],[4.53598316,0.03413117,99.91567898],[4.53598161,0.03413159,99.91164578]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":2,"type":"border","predecessorId":2,"sOffset":516.9120275393}},{"geometry":{"coordinates":[[[4.53598316,0.03413117,100.06567898],[4.53598269,0.03412943,100.06559287],[4.53598222,0.03412769,100.06550649],[4.53598174,0.03412595,100.06541984],[4.53598127,0.03412421,100.06533292],[4.5359808,0.03412247,100.06524573],[4.53598033,0.03412073,100.06515826],[4.53597985,0.03411899,100.0650705],[4.53597938,0.03411725,100.06498246],[4.53597891,0.03411551,100.06489413],[4.53597843,0.03411377,100.06480551],[4.53597796,0.03411203,100.0647166],[4.53597749,0.03411029,100.06462738],[4.53597701,0.03410855,100.06453786],[4.53597654,0.03410681,100.06444804],[4.53597607,0.03410507,100.06435791],[4.53597559,0.03410333,100.06426746],[4.53597533,0.03410235,100.06421625],[4.53597659,0.034102,100.06421625],[4.53597686,0.03410298,100.06426746],[4.53597733,0.03410472,100.06435791],[4.53597781,0.03410646,100.06444804],[4.53597828,0.0341082,100.06453786],[4.53597876,0.03410994,100.06462738],[4.53597923,0.03411168,100.0647166],[4.5359797,0.03411342,100.06480551],[4.53598018,0.03411516,100.06489413],[4.53598065,0.0341169,100.06498246],[4.53598113,0.03411864,100.0650705],[4.5359816,0.03412038,100.06515826],[4.53598207,0.03412212,100.06524573],[4.53598255,0.03412386,100.06533292],[4.53598302,0.0341256,100.06541984],[4.5359835,0.03412734,100.06550649],[4.53598397,0.03412908,100.06559287],[4.53598444,0.03413082,100.06567898],[4.53598316,0.03413117,100.06567898]]],"type":"Polygon"},"type":"feature","properties":{"successorId":2,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":3,"type":"border","predecessorId":3,"sOffset":516.9120275393}},{"geometry":{"coordinates":[[[4.53598444,0.03413082,100.06567898],[4.53598397,0.03412908,100.06559287],[4.5359835,0.03412734,100.06550649],[4.53598302,0.0341256,100.06541984],[4.53598255,0.03412386,100.06533292],[4.53598207,0.03412212,100.06524573],[4.5359816,0.03412038,100.06515826],[4.53598113,0.03411864,100.0650705],[4.53598065,0.0341169,100.06498246],[4.53598018,0.03411516,100.06489413],[4.5359797,0.03411342,100.06480551],[4.53597923,0.03411168,100.0647166],[4.53597876,0.03410994,100.06462738],[4.53597828,0.0341082,100.06453786],[4.53597781,0.03410646,100.06444804],[4.53597733,0.03410472,100.06435791],[4.53597686,0.03410298,100.06426746],[4.53597659,0.034102,100.06421625],[4.53598833,0.03409881,100.06421625],[4.53598859,0.03409979,100.06426746],[4.53598906,0.03410153,100.06435791],[4.53598952,0.03410327,100.06444804],[4.53598999,0.03410502,100.06453786],[4.53599045,0.03410676,100.06462738],[4.53599092,0.0341085,100.0647166],[4.53599138,0.03411024,100.06480551],[4.53599185,0.03411199,100.06489413],[4.53599231,0.03411373,100.06498246],[4.53599277,0.03411547,100.0650705],[4.53599324,0.03411721,100.06515826],[4.5359937,0.03411896,100.06524573],[4.53599417,0.0341207,100.06533292],[4.53599463,0.03412244,100.06541984],[4.5359951,0.03412418,100.06550649],[4.53599556,0.03412593,100.06559287],[4.53599602,0.03412767,100.06567898],[4.53598444,0.03413082,100.06567898]]],"type":"Polygon"},"type":"feature","properties":{"successorId":3,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":4,"type":"border","predecessorId":4,"sOffset":516.9120275393}},{"geometry":{"coordinates":[[[4.53587294,0.03413022,99.84265719],[4.53587246,0.03412848,99.84268195],[4.53587198,0.03412674,99.84270508],[4.5358715,0.03412501,99.84272655],[4.53587102,0.03412327,99.84274636],[4.53587081,0.03412249,99.84275471],[4.53588573,0.03411843,99.84275471],[4.53588594,0.03411921,99.84274636],[4.53588642,0.03412095,99.84272655],[4.53588689,0.03412269,99.84270508],[4.53588736,0.03412442,99.84268195],[4.53588784,0.03412616,99.84265719],[4.53587294,0.03413022,99.84265719]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-6,"level":true,"materials":[{"surface":"grass","roughness":0.0,"friction":1.0}],"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":-6,"type":"none","predecessorId":-6,"sOffset":520.2249610212}},{"geometry":{"coordinates":[[[4.53588784,0.03412616,99.84265719],[4.53588736,0.03412442,99.84268195],[4.53588689,0.03412269,99.84270508],[4.53588642,0.03412095,99.84272655],[4.53588594,0.03411921,99.84274636],[4.53588573,0.03411843,99.84275471],[4.53588689,0.03411811,99.71775471],[4.5358871,0.03411889,99.71774636],[4.53588758,0.03412063,99.71772655],[4.53588805,0.03412237,99.71770508],[4.53588852,0.03412411,99.71768195],[4.535889,0.03412585,99.71765719],[4.53588784,0.03412616,99.84265719]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-5,"level":true,"heights":[{"outer":0.15,"inner":0.025}],"roadId":"1004600","id":-5,"type":"border","predecessorId":-5,"sOffset":520.2249610212}},{"geometry":{"coordinates":[[[4.535889,0.03412585,99.69265719],[4.53588852,0.03412411,99.69268195],[4.53588805,0.03412237,99.69270508],[4.53588758,0.03412063,99.69272655],[4.5358871,0.03411889,99.69274636],[4.53588689,0.03411811,99.69275471],[4.53589121,0.03411693,99.70382472],[4.53589142,0.03411771,99.70381892],[4.5358919,0.03411945,99.70380483],[4.53589237,0.03412119,99.70378916],[4.53589285,0.03412293,99.7037719],[4.53589332,0.03412467,99.70375308],[4.535889,0.03412585,99.69265719]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-4,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-4,"type":"border","predecessorId":-4,"sOffset":520.2249610212}},{"geometry":{"coordinates":[[[4.53589332,0.03412467,99.70375308],[4.53589285,0.03412293,99.7037719],[4.53589237,0.03412119,99.70378916],[4.5358919,0.03411945,99.70380483],[4.53589142,0.03411771,99.70381892],[4.53589121,0.03411693,99.70382472],[4.53590712,0.0341126,99.74456363],[4.53590733,0.03411338,99.74455695],[4.5359078,0.03411512,99.74454109],[4.53590826,0.03411687,99.74452385],[4.53590873,0.03411861,99.74450526],[4.53590919,0.03412035,99.7444853],[4.53589332,0.03412467,99.70375308]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-3,"type":"stop","predecessorId":-3,"sOffset":520.2249610212}},{"geometry":{"coordinates":[[[4.53590919,0.03412035,99.7444853],[4.53590873,0.03411861,99.74450526],[4.53590826,0.03411687,99.74452385],[4.5359078,0.03411512,99.74454109],[4.53590733,0.03411338,99.74455695],[4.53590712,0.0341126,99.74456363],[4.53593874,0.03410399,99.82552116],[4.53593895,0.03410477,99.82553626],[4.53593942,0.03410652,99.82556926],[4.53593989,0.03410826,99.82560139],[4.53594035,0.03411,99.82563265],[4.53594082,0.03411174,99.82566304],[4.53590919,0.03412035,99.7444853]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2,"sOffset":520.2249610212}},{"geometry":{"coordinates":[[[4.53594082,0.03411174,99.82566304],[4.53594035,0.03411,99.82563265],[4.53593989,0.03410826,99.82560139],[4.53593942,0.03410652,99.82556926],[4.53593895,0.03410477,99.82553626],[4.53593874,0.03410399,99.82552116],[4.53596951,0.03409562,99.90430339],[4.53596972,0.0340964,99.90433442],[4.53597018,0.03409814,99.90440324],[4.53597065,0.03409988,99.90447166],[4.53597112,0.03410162,99.90453968],[4.53597158,0.03410336,99.9046073],[4.53594082,0.03411174,99.82566304]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1,"sOffset":520.2249610212}},{"geometry":{"coordinates":[[[4.53597158,0.03410336,99.9046073],[4.53597112,0.03410162,99.90453968],[4.53597065,0.03409988,99.90447166],[4.53597018,0.03409814,99.90440324],[4.53596972,0.0340964,99.90433442],[4.53596951,0.03409562,99.90430339],[4.53597322,0.0340946,99.91382116],[4.53597344,0.03409538,99.91386132],[4.53597391,0.03409712,99.91395055],[4.53597438,0.03409887,99.91403944],[4.53597485,0.03410061,99.91412801],[4.53597533,0.03410235,99.91421625],[4.53597158,0.03410336,99.9046073]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":1,"type":"shoulder","predecessorId":0,"sOffset":520.2249610212}},{"geometry":{"coordinates":[[[4.53597533,0.03410235,100.06421625],[4.53597485,0.03410061,100.06412801],[4.53597438,0.03409887,100.06403944],[4.53597391,0.03409712,100.06395055],[4.53597344,0.03409538,100.06386132],[4.53597322,0.0340946,100.06382116],[4.5359745,0.03409426,100.06382116],[4.53597471,0.03409504,100.06386132],[4.53597518,0.03409678,100.06395055],[4.53597565,0.03409852,100.06403944],[4.53597612,0.03410026,100.06412801],[4.53597659,0.034102,100.06421625],[4.53597533,0.03410235,100.06421625]]],"type":"Polygon"},"type":"feature","properties":{"successorId":2,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":2,"type":"border","predecessorId":3,"sOffset":520.2249610212}},{"geometry":{"coordinates":[[[4.53597659,0.034102,100.06421625],[4.53597612,0.03410026,100.06412801],[4.53597565,0.03409852,100.06403944],[4.53597518,0.03409678,100.06395055],[4.53597471,0.03409504,100.06386132],[4.5359745,0.03409426,100.06382116],[4.53598626,0.03409105,100.06382116],[4.53598647,0.03409184,100.06386132],[4.53598694,0.03409358,100.06395055],[4.5359874,0.03409532,100.06403944],[4.53598787,0.03409706,100.06412801],[4.53598833,0.03409881,100.06421625],[4.53597659,0.034102,100.06421625]]],"type":"Polygon"},"type":"feature","properties":{"successorId":3,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":3,"type":"border","predecessorId":4,"sOffset":520.2249610212}},{"geometry":{"coordinates":[[[4.53587081,0.03412249,99.84275471],[4.53587033,0.03412075,99.84277488],[4.53586985,0.03411901,99.84279337],[4.53586937,0.03411728,99.8428102],[4.53586889,0.03411554,99.84282535],[4.53586841,0.0341138,99.84283882],[4.53586793,0.03411206,99.84285062],[4.53586745,0.03411033,99.84286074],[4.53586697,0.03410859,99.84286918],[4.53586649,0.03410685,99.84287593],[4.53586601,0.03410511,99.842881],[4.53586553,0.03410338,99.84288438],[4.53586505,0.03410164,99.84288608],[4.53586457,0.0340999,99.84288607],[4.53586409,0.03409816,99.84288438],[4.53586361,0.03409643,99.84288099],[4.53586313,0.03409469,99.8428759],[4.53586265,0.03409295,99.84286913],[4.53586265,0.03409294,99.84286909],[4.53587768,0.03408885,99.84286909],[4.53587768,0.03408886,99.84286913],[4.53587815,0.0340906,99.8428759],[4.53587863,0.03409234,99.84288099],[4.5358791,0.03409408,99.84288438],[4.53587958,0.03409581,99.84288607],[4.53588005,0.03409755,99.84288608],[4.53588052,0.03409929,99.84288438],[4.535881,0.03410103,99.842881],[4.53588147,0.03410277,99.84287593],[4.53588194,0.03410451,99.84286918],[4.53588242,0.03410625,99.84286074],[4.53588289,0.03410799,99.84285062],[4.53588336,0.03410973,99.84283882],[4.53588384,0.03411147,99.84282535],[4.53588431,0.03411321,99.8428102],[4.53588478,0.03411495,99.84279337],[4.53588526,0.03411669,99.84277488],[4.53588573,0.03411843,99.84275471],[4.53587081,0.03412249,99.84275471]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-6,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":-6,"type":"border","predecessorId":-6,"sOffset":521.1147301187}},{"geometry":{"coordinates":[[[4.53588573,0.03411843,99.84275471],[4.53588526,0.03411669,99.84277488],[4.53588478,0.03411495,99.84279337],[4.53588431,0.03411321,99.8428102],[4.53588384,0.03411147,99.84282535],[4.53588336,0.03410973,99.84283882],[4.53588289,0.03410799,99.84285062],[4.53588242,0.03410625,99.84286074],[4.53588194,0.03410451,99.84286918],[4.53588147,0.03410277,99.84287593],[4.535881,0.03410103,99.842881],[4.53588052,0.03409929,99.84288438],[4.53588005,0.03409755,99.84288608],[4.53587958,0.03409581,99.84288607],[4.5358791,0.03409408,99.84288438],[4.53587863,0.03409234,99.84288099],[4.53587815,0.0340906,99.8428759],[4.53587768,0.03408886,99.84286913],[4.53587768,0.03408885,99.84286909],[4.53587882,0.03408854,99.71786909],[4.53587883,0.03408855,99.71786913],[4.5358793,0.03409028,99.7178759],[4.53587978,0.03409202,99.71788099],[4.53588025,0.03409376,99.71788438],[4.53588073,0.0340955,99.71788607],[4.5358812,0.03409724,99.71788608],[4.53588167,0.03409898,99.71788438],[4.53588215,0.03410072,99.717881],[4.53588262,0.03410246,99.71787593],[4.5358831,0.0341042,99.71786918],[4.53588357,0.03410594,99.71786074],[4.53588405,0.03410768,99.71785062],[4.53588452,0.03410941,99.71783882],[4.53588499,0.03411115,99.71782535],[4.53588547,0.03411289,99.7178102],[4.53588594,0.03411463,99.71779337],[4.53588641,0.03411637,99.71777488],[4.53588689,0.03411811,99.71775471],[4.53588573,0.03411843,99.84275471]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-5,"level":true,"heights":[{"outer":0.15,"inner":0.025}],"roadId":"1004600","id":-5,"type":"border","predecessorId":-5,"sOffset":521.1147301187}},{"geometry":{"coordinates":[[[4.53588689,0.03411811,99.69275471],[4.53588641,0.03411637,99.69277488],[4.53588594,0.03411463,99.69279337],[4.53588547,0.03411289,99.6928102],[4.53588499,0.03411115,99.69282535],[4.53588452,0.03410941,99.69283882],[4.53588405,0.03410768,99.69285062],[4.53588357,0.03410594,99.69286074],[4.5358831,0.0341042,99.69286918],[4.53588262,0.03410246,99.69287593],[4.53588215,0.03410072,99.692881],[4.53588167,0.03409898,99.69288438],[4.5358812,0.03409724,99.69288608],[4.53588073,0.0340955,99.69288607],[4.53588025,0.03409376,99.69288438],[4.53587978,0.03409202,99.69288099],[4.5358793,0.03409028,99.6928759],[4.53587883,0.03408855,99.69286913],[4.53587882,0.03408854,99.69286909],[4.53588315,0.03408736,99.70385215],[4.53588315,0.03408737,99.70385221],[4.53588362,0.03408911,99.70386358],[4.5358841,0.03409085,99.70387333],[4.53588457,0.03409259,99.70388144],[4.53588505,0.03409432,99.70388793],[4.53588552,0.03409606,99.70389278],[4.535886,0.0340978,99.70389601],[4.53588647,0.03409954,99.70389761],[4.53588695,0.03410128,99.70389759],[4.53588742,0.03410302,99.70389594],[4.53588789,0.03410476,99.70389268],[4.53588837,0.0341065,99.7038878],[4.53588884,0.03410824,99.70388131],[4.53588932,0.03410998,99.7038732],[4.53588979,0.03411172,99.70386349],[4.53589026,0.03411345,99.70385217],[4.53589074,0.03411519,99.70383924],[4.53589121,0.03411693,99.70382472],[4.53588689,0.03411811,99.69275471]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":0,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-4,"type":"border","predecessorId":-4,"sOffset":521.1147301187}},{"geometry":{"coordinates":[[[4.53589121,0.03411693,99.70382472],[4.53589074,0.03411519,99.70383924],[4.53589026,0.03411345,99.70385217],[4.53588979,0.03411172,99.70386349],[4.53588932,0.03410998,99.7038732],[4.53588884,0.03410824,99.70388131],[4.53588837,0.0341065,99.7038878],[4.53588789,0.03410476,99.70389268],[4.53588742,0.03410302,99.70389594],[4.53588695,0.03410128,99.70389759],[4.53588647,0.03409954,99.70389761],[4.535886,0.0340978,99.70389601],[4.53588552,0.03409606,99.70389278],[4.53588505,0.03409432,99.70388793],[4.53588457,0.03409259,99.70388144],[4.5358841,0.03409085,99.70387333],[4.53588362,0.03408911,99.70386358],[4.53588315,0.03408737,99.70385221],[4.53588315,0.03408736,99.70385215],[4.53589923,0.03408298,99.74470704],[4.53589923,0.03408299,99.74470706],[4.5358997,0.03408473,99.74470988],[4.53590016,0.03408647,99.7447113],[4.53590063,0.03408821,99.7447113],[4.53590109,0.03408995,99.74470988],[4.53590155,0.0340917,99.74470705],[4.53590202,0.03409344,99.74470281],[4.53590248,0.03409518,99.74469715],[4.53590295,0.03409692,99.74469009],[4.53590341,0.03409866,99.74468162],[4.53590388,0.03410041,99.74467175],[4.53590434,0.03410215,99.74466048],[4.5359048,0.03410389,99.74464782],[4.53590527,0.03410563,99.74463376],[4.53590573,0.03410737,99.74461831],[4.53590619,0.03410912,99.74460147],[4.53590666,0.03411086,99.74458324],[4.53590712,0.0341126,99.74456363],[4.53589121,0.03411693,99.70382472]]],"type":"Polygon"},"type":"feature","properties":{"successorId":0,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-3,"type":"stop","predecessorId":-3,"sOffset":521.1147301187}},{"geometry":{"coordinates":[[[4.53590712,0.0341126,99.74456363],[4.53590666,0.03411086,99.74458324],[4.53590619,0.03410912,99.74460147],[4.53590573,0.03410737,99.74461831],[4.53590527,0.03410563,99.74463376],[4.5359048,0.03410389,99.74464782],[4.53590434,0.03410215,99.74466048],[4.53590388,0.03410041,99.74467175],[4.53590341,0.03409866,99.74468162],[4.53590295,0.03409692,99.74469009],[4.53590248,0.03409518,99.74469715],[4.53590202,0.03409344,99.74470281],[4.53590155,0.0340917,99.74470705],[4.53590109,0.03408995,99.74470988],[4.53590063,0.03408821,99.7447113],[4.53590016,0.03408647,99.7447113],[4.5358997,0.03408473,99.74470988],[4.53589923,0.03408299,99.74470706],[4.53589923,0.03408298,99.74470704],[4.53593078,0.03407438,99.82485534],[4.53593078,0.03407439,99.8248556],[4.53593125,0.03407613,99.82490218],[4.53593172,0.03407788,99.82494782],[4.53593219,0.03407962,99.82499251],[4.53593265,0.03408136,99.82503627],[4.53593312,0.0340831,99.82507908],[4.53593359,0.03408484,99.82512096],[4.53593406,0.03408658,99.82516191],[4.53593453,0.03408832,99.82520194],[4.535935,0.03409006,99.82524104],[4.53593546,0.0340918,99.82527922],[4.53593593,0.03409355,99.82531649],[4.5359364,0.03409529,99.82535285],[4.53593687,0.03409703,99.82538831],[4.53593734,0.03409877,99.82542286],[4.5359378,0.03410051,99.82545652],[4.53593827,0.03410225,99.82548928],[4.53593874,0.03410399,99.82552116],[4.53590712,0.0341126,99.74456363]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2,"sOffset":521.1147301187}},{"geometry":{"coordinates":[[[4.53593874,0.03410399,99.82552116],[4.53593827,0.03410225,99.82548928],[4.5359378,0.03410051,99.82545652],[4.53593734,0.03409877,99.82542286],[4.53593687,0.03409703,99.82538831],[4.5359364,0.03409529,99.82535285],[4.53593593,0.03409355,99.82531649],[4.53593546,0.0340918,99.82527922],[4.535935,0.03409006,99.82524104],[4.53593453,0.03408832,99.82520194],[4.53593406,0.03408658,99.82516191],[4.53593359,0.03408484,99.82512096],[4.53593312,0.0340831,99.82507908],[4.53593265,0.03408136,99.82503627],[4.53593219,0.03407962,99.82499251],[4.53593172,0.03407788,99.82494782],[4.53593125,0.03407613,99.82490218],[4.53593078,0.03407439,99.8248556],[4.53593078,0.03407438,99.82485534],[4.53596156,0.034066,99.90306207],[4.53596156,0.03406601,99.90306249],[4.53596203,0.03406775,99.90313926],[4.5359625,0.03406949,99.90321554],[4.53596297,0.03407123,99.90329133],[4.53596343,0.03407297,99.90336663],[4.5359639,0.03407472,99.90344145],[4.53596437,0.03407646,99.90351578],[4.53596484,0.0340782,99.90358964],[4.5359653,0.03407994,99.90366304],[4.53596577,0.03408168,99.90373597],[4.53596624,0.03408342,99.90380844],[4.53596671,0.03408517,99.90388046],[4.53596717,0.03408691,99.90395203],[4.53596764,0.03408865,99.90402316],[4.53596811,0.03409039,99.90409386],[4.53596857,0.03409213,99.90416413],[4.53596904,0.03409387,99.90423397],[4.53596951,0.03409562,99.90430339],[4.53593874,0.03410399,99.82552116]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1,"sOffset":521.1147301187}},{"geometry":{"coordinates":[[[4.53596951,0.03409562,99.90430339],[4.53596904,0.03409387,99.90423397],[4.53596857,0.03409213,99.90416413],[4.53596811,0.03409039,99.90409386],[4.53596764,0.03408865,99.90402316],[4.53596717,0.03408691,99.90395203],[4.53596671,0.03408517,99.90388046],[4.53596624,0.03408342,99.90380844],[4.53596577,0.03408168,99.90373597],[4.5359653,0.03407994,99.90366304],[4.53596484,0.0340782,99.90358964],[4.53596437,0.03407646,99.90351578],[4.5359639,0.03407472,99.90344145],[4.53596343,0.03407297,99.90336663],[4.53596297,0.03407123,99.90329133],[4.5359625,0.03406949,99.90321554],[4.53596203,0.03406775,99.90313926],[4.53596156,0.03406601,99.90306249],[4.53596156,0.034066,99.90306207],[4.53596524,0.03406499,99.91241982],[4.53596525,0.034065,99.91242029],[4.53596572,0.03406675,99.91250599],[4.53596619,0.03406849,99.91259127],[4.53596666,0.03407023,99.91267611],[4.53596713,0.03407197,99.91276052],[4.53596759,0.03407371,99.9128445],[4.53596806,0.03407545,99.91292806],[4.53596853,0.03407719,99.91301121],[4.535969,0.03407893,99.91309395],[4.53596947,0.03408067,99.91317629],[4.53596994,0.03408241,99.91325823],[4.53597041,0.03408416,99.91333977],[4.53597088,0.0340859,99.91342094],[4.53597135,0.03408764,99.91350172],[4.53597182,0.03408938,99.91358213],[4.53597229,0.03409112,99.91366216],[4.53597275,0.03409286,99.91374184],[4.53597322,0.0340946,99.91382116],[4.53596951,0.03409562,99.90430339]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":1,"type":"shoulder","predecessorId":1,"sOffset":521.1147301187}},{"geometry":{"coordinates":[[[4.53597322,0.0340946,100.06382116],[4.53597275,0.03409286,100.06374184],[4.53597229,0.03409112,100.06366216],[4.53597182,0.03408938,100.06358213],[4.53597135,0.03408764,100.06350172],[4.53597088,0.0340859,100.06342094],[4.53597041,0.03408416,100.06333977],[4.53596994,0.03408241,100.06325823],[4.53596947,0.03408067,100.06317629],[4.535969,0.03407893,100.06309395],[4.53596853,0.03407719,100.06301121],[4.53596806,0.03407545,100.06292806],[4.53596759,0.03407371,100.0628445],[4.53596713,0.03407197,100.06276052],[4.53596666,0.03407023,100.06267611],[4.53596619,0.03406849,100.06259127],[4.53596572,0.03406675,100.06250599],[4.53596525,0.034065,100.06242029],[4.53596524,0.03406499,100.06241982],[4.53596655,0.03406464,100.06241982],[4.53596655,0.03406465,100.06242029],[4.53596702,0.03406639,100.06250599],[4.53596749,0.03406813,100.06259127],[4.53596796,0.03406987,100.06267611],[4.53596842,0.03407161,100.06276052],[4.53596889,0.03407336,100.0628445],[4.53596936,0.0340751,100.06292806],[4.53596983,0.03407684,100.06301121],[4.53597029,0.03407858,100.06309395],[4.53597076,0.03408032,100.06317629],[4.53597123,0.03408206,100.06325823],[4.5359717,0.03408381,100.06333977],[4.53597216,0.03408555,100.06342094],[4.53597263,0.03408729,100.06350172],[4.5359731,0.03408903,100.06358213],[4.53597356,0.03409077,100.06366216],[4.53597403,0.03409251,100.06374184],[4.5359745,0.03409426,100.06382116],[4.53597322,0.0340946,100.06382116]]],"type":"Polygon"},"type":"feature","properties":{"successorId":2,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":2,"type":"border","predecessorId":2,"sOffset":521.1147301187}},{"geometry":{"coordinates":[[[4.5359745,0.03409426,100.06382116],[4.53597403,0.03409251,100.06374184],[4.53597356,0.03409077,100.06366216],[4.5359731,0.03408903,100.06358213],[4.53597263,0.03408729,100.06350172],[4.53597216,0.03408555,100.06342094],[4.5359717,0.03408381,100.06333977],[4.53597123,0.03408206,100.06325823],[4.53597076,0.03408032,100.06317629],[4.53597029,0.03407858,100.06309395],[4.53596983,0.03407684,100.06301121],[4.53596936,0.0340751,100.06292806],[4.53596889,0.03407336,100.0628445],[4.53596842,0.03407161,100.06276052],[4.53596796,0.03406987,100.06267611],[4.53596749,0.03406813,100.06259127],[4.53596702,0.03406639,100.06250599],[4.53596655,0.03406465,100.06242029],[4.53596655,0.03406464,100.06241982],[4.53597835,0.03406142,100.06241982],[4.53597835,0.03406143,100.06242029],[4.53597882,0.03406318,100.06250599],[4.53597928,0.03406492,100.06259127],[4.53597975,0.03406666,100.06267611],[4.53598022,0.0340684,100.06276052],[4.53598068,0.03407014,100.0628445],[4.53598115,0.03407189,100.06292806],[4.53598161,0.03407363,100.06301121],[4.53598208,0.03407537,100.06309395],[4.53598254,0.03407711,100.06317629],[4.53598301,0.03407886,100.06325823],[4.53598347,0.0340806,100.06333977],[4.53598394,0.03408234,100.06342094],[4.5359844,0.03408408,100.06350172],[4.53598487,0.03408583,100.06358213],[4.53598533,0.03408757,100.06366216],[4.5359858,0.03408931,100.06374184],[4.53598626,0.03409105,100.06382116],[4.5359745,0.03409426,100.06382116]]],"type":"Polygon"},"type":"feature","properties":{"successorId":3,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":3,"type":"border","predecessorId":3,"sOffset":521.1147301187}},{"geometry":{"coordinates":[[[4.53586265,0.03409294,99.84286909],[4.53586218,0.0340912,99.84286315],[4.5358617,0.03408946,99.84285553],[4.53586123,0.03408772,99.84284625],[4.53586076,0.03408598,99.84283531],[4.53586029,0.03408425,99.84282271],[4.53585997,0.03408307,99.84281324],[4.53587499,0.03407897,99.84281324],[4.53587531,0.03408015,99.84282271],[4.53587578,0.03408189,99.84283531],[4.53587626,0.03408363,99.84284625],[4.53587673,0.03408537,99.84285553],[4.5358772,0.03408711,99.84286315],[4.53587768,0.03408885,99.84286909],[4.53586265,0.03409294,99.84286909]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-6,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":-6,"type":"border","predecessorId":-6,"sOffset":524.5158356925}},{"geometry":{"coordinates":[[[4.53587768,0.03408885,99.84286909],[4.5358772,0.03408711,99.84286315],[4.53587673,0.03408537,99.84285553],[4.53587626,0.03408363,99.84284625],[4.53587578,0.03408189,99.84283531],[4.53587531,0.03408015,99.84282271],[4.53587499,0.03407897,99.84281324],[4.53587613,0.03407866,99.71781324],[4.53587645,0.03407984,99.71782271],[4.53587693,0.03408158,99.71783531],[4.5358774,0.03408332,99.71784625],[4.53587788,0.03408506,99.71785553],[4.53587835,0.0340868,99.71786315],[4.53587882,0.03408854,99.71786909],[4.53587768,0.03408885,99.84286909]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-5,"level":true,"heights":[{"outer":0.15,"inner":0.025}],"roadId":"1004600","id":-5,"type":"border","predecessorId":-5,"sOffset":524.5158356925}},{"geometry":{"coordinates":[[[4.53587882,0.03408854,99.69286909],[4.53587835,0.0340868,99.69286315],[4.53587788,0.03408506,99.69285553],[4.5358774,0.03408332,99.69284625],[4.53587693,0.03408158,99.69283531],[4.53587645,0.03407984,99.69282271],[4.53587613,0.03407866,99.69281324],[4.53587916,0.03407784,99.70048394],[4.53587948,0.03407902,99.70049542],[4.53587995,0.03408076,99.70051102],[4.53588043,0.03408249,99.700525],[4.5358809,0.03408423,99.70053737],[4.53588138,0.03408597,99.70054811],[4.53588185,0.03408771,99.70055723],[4.53587882,0.03408854,99.69286909]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-4,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-4,"type":"border","predecessorId":0,"sOffset":524.5158356925}},{"geometry":{"coordinates":[[[4.53588185,0.03408771,99.70055723],[4.53588138,0.03408597,99.70054811],[4.5358809,0.03408423,99.70053737],[4.53588043,0.03408249,99.700525],[4.53587995,0.03408076,99.70051102],[4.53587948,0.03407902,99.70049542],[4.53587916,0.03407784,99.70048394],[4.5358966,0.03407308,99.74469755],[4.53589691,0.03407427,99.74470103],[4.53589738,0.03407601,99.74470501],[4.53589784,0.03407775,99.7447076],[4.5358983,0.03407949,99.74470881],[4.53589877,0.03408124,99.74470862],[4.53589923,0.03408298,99.74470704],[4.53588185,0.03408771,99.70055723]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-3,"type":"stop","predecessorId":0,"sOffset":524.5158356925}},{"geometry":{"coordinates":[[[4.53589923,0.03408298,99.74470704],[4.53589877,0.03408124,99.74470862],[4.5358983,0.03407949,99.74470881],[4.53589784,0.03407775,99.7447076],[4.53589738,0.03407601,99.74470501],[4.53589691,0.03407427,99.74470103],[4.5358966,0.03407308,99.74469755],[4.53592812,0.0340645,99.82458625],[4.53592844,0.03406568,99.82461993],[4.5359289,0.03406742,99.82466885],[4.53592937,0.03406916,99.82471686],[4.53592984,0.0340709,99.82476395],[4.53593031,0.03407264,99.82481011],[4.53593078,0.03407438,99.82485534],[4.53589923,0.03408298,99.74470704]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2,"sOffset":524.5158356925}},{"geometry":{"coordinates":[[[4.53593078,0.03407438,99.82485534],[4.53593031,0.03407264,99.82481011],[4.53592984,0.0340709,99.82476395],[4.53592937,0.03406916,99.82471686],[4.5359289,0.03406742,99.82466885],[4.53592844,0.03406568,99.82461993],[4.53592812,0.0340645,99.82458625],[4.5359589,0.03405611,99.9026171],[4.53595922,0.03405729,99.90267104],[4.53595969,0.03405903,99.90275019],[4.53596016,0.03406077,99.90282887],[4.53596062,0.03406252,99.90290708],[4.53596109,0.03406426,99.90298481],[4.53596156,0.034066,99.90306207],[4.53593078,0.03407438,99.82485534]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1,"sOffset":524.5158356925}},{"geometry":{"coordinates":[[[4.53596156,0.034066,99.90306207],[4.53596109,0.03406426,99.90298481],[4.53596062,0.03406252,99.90290708],[4.53596016,0.03406077,99.90282887],[4.53595969,0.03405903,99.90275019],[4.53595922,0.03405729,99.90267104],[4.5359589,0.03405611,99.9026171],[4.53596259,0.0340551,99.9119719],[4.53596291,0.03405629,99.9120261],[4.53596338,0.03405803,99.91210569],[4.53596384,0.03405977,99.91218486],[4.53596431,0.03406151,99.9122636],[4.53596478,0.03406325,99.91234193],[4.53596524,0.03406499,99.91241982],[4.53596156,0.034066,99.90306207]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":1,"type":"shoulder","predecessorId":1,"sOffset":524.5158356925}},{"geometry":{"coordinates":[[[4.53596524,0.03406499,100.06241982],[4.53596478,0.03406325,100.06234193],[4.53596431,0.03406151,100.0622636],[4.53596384,0.03405977,100.06218486],[4.53596338,0.03405803,100.06210569],[4.53596291,0.03405629,100.0620261],[4.53596259,0.0340551,100.0619719],[4.5359639,0.03405475,100.0619719],[4.53596422,0.03405593,100.0620261],[4.53596468,0.03405767,100.06210569],[4.53596515,0.03405941,100.06218486],[4.53596562,0.03406115,100.0622636],[4.53596608,0.0340629,100.06234193],[4.53596655,0.03406464,100.06241982],[4.53596524,0.03406499,100.06241982]]],"type":"Polygon"},"type":"feature","properties":{"successorId":2,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":2,"type":"border","predecessorId":2,"sOffset":524.5158356925}},{"geometry":{"coordinates":[[[4.53596655,0.03406464,100.06241982],[4.53596608,0.0340629,100.06234193],[4.53596562,0.03406115,100.0622636],[4.53596515,0.03405941,100.06218486],[4.53596468,0.03405767,100.06210569],[4.53596422,0.03405593,100.0620261],[4.5359639,0.03405475,100.0619719],[4.5359757,0.03405153,100.0619719],[4.53597602,0.03405271,100.0620261],[4.53597648,0.03405446,100.06210569],[4.53597695,0.0340562,100.06218486],[4.53597742,0.03405794,100.0622636],[4.53597788,0.03405968,100.06234193],[4.53597835,0.03406142,100.06241982],[4.53596655,0.03406464,100.06241982]]],"type":"Polygon"},"type":"feature","properties":{"successorId":3,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":3,"type":"border","predecessorId":3,"sOffset":524.5158356925}},{"geometry":{"coordinates":[[[4.53585997,0.03408307,99.84281324],[4.5358595,0.03408132,99.84279893],[4.53585903,0.03407958,99.84278397],[4.53585857,0.03407784,99.84276834],[4.5358581,0.0340761,99.84275201],[4.53585763,0.03407436,99.84273497],[4.53585716,0.03407262,99.84271721],[4.53585669,0.03407088,99.84269869],[4.53585622,0.03406914,99.84267941],[4.53585575,0.0340674,99.84265934],[4.53585528,0.03406566,99.84263847],[4.53585481,0.03406392,99.84261678],[4.53585434,0.03406218,99.84259424],[4.53585387,0.03406044,99.84257085],[4.5358534,0.0340587,99.84254658],[4.53585293,0.03405696,99.84252142],[4.53585246,0.03405522,99.84249535],[4.53585199,0.03405348,99.84246834],[4.53585152,0.03405174,99.84244038],[4.53585105,0.03405,99.84241146],[4.53585058,0.03404826,99.84238156],[4.53585011,0.03404652,99.84235065],[4.53584964,0.03404478,99.84231872],[4.53584917,0.03404304,99.84228575],[4.5358487,0.0340413,99.84225173],[4.53584823,0.03403956,99.84221663],[4.53584776,0.03403782,99.84218045],[4.53584729,0.03403608,99.84214315],[4.53584681,0.03403434,99.84210472],[4.53584634,0.0340326,99.84206516],[4.53584587,0.03403086,99.84202443],[4.5358454,0.03402912,99.84198252],[4.53584493,0.03402739,99.84193941],[4.53584446,0.03402565,99.84189509],[4.53584399,0.03402391,99.84184954],[4.53584352,0.03402217,99.84180274],[4.53584305,0.03402043,99.84175467],[4.53584258,0.03401869,99.84170532],[4.53584211,0.03401695,99.84165466],[4.53584164,0.03401521,99.84160269],[4.53584117,0.03401347,99.84154938],[4.5358407,0.03401173,99.84149471],[4.53584022,0.03400999,99.84143868],[4.53583975,0.03400825,99.84138125],[4.53583928,0.03400651,99.84132242],[4.53583881,0.03400477,99.84126217],[4.53583835,0.03400303,99.84120048],[4.53583788,0.03400129,99.84113733],[4.53583741,0.03399955,99.8410727],[4.53583694,0.03399781,99.84100658],[4.53583647,0.03399607,99.84093895],[4.535836,0.03399433,99.8408698],[4.53583553,0.03399259,99.8407991],[4.53583506,0.03399085,99.84072684],[4.53583459,0.03398911,99.840653],[4.53583412,0.03398737,99.84057756],[4.53583365,0.03398563,99.84050054],[4.53583318,0.03398389,99.84042193],[4.53583271,0.03398215,99.84034176],[4.53583224,0.03398041,99.84026006],[4.53583177,0.03397867,99.84017683],[4.5358313,0.03397693,99.8400921],[4.53583083,0.03397519,99.84000588],[4.53583037,0.03397345,99.83991819],[4.5358299,0.03397171,99.83982906],[4.53582943,0.03396997,99.83973849],[4.53582896,0.03396823,99.83964651],[4.53582849,0.03396649,99.83955313],[4.53582802,0.03396475,99.83945838],[4.53582755,0.03396301,99.83936227],[4.53582708,0.03396127,99.83926482],[4.53582661,0.03395953,99.83916604],[4.53582614,0.03395779,99.83906596],[4.53582567,0.03395605,99.8389646],[4.53582521,0.03395431,99.83886196],[4.53582474,0.03395257,99.83875808],[4.53582427,0.03395083,99.83865296],[4.5358238,0.03394909,99.83854663],[4.53582333,0.03394735,99.83843911],[4.53582286,0.03394561,99.8383304],[4.53582239,0.03394387,99.83822054],[4.53582192,0.03394213,99.83810954],[4.53582146,0.03394038,99.83799741],[4.53582099,0.03393864,99.83788418],[4.53582052,0.0339369,99.83776986],[4.53582005,0.03393516,99.83765447],[4.53581958,0.03393342,99.83753804],[4.53581912,0.03393168,99.83742057],[4.53581865,0.03392994,99.83730208],[4.53581818,0.0339282,99.8371826],[4.53581771,0.03392646,99.83706214],[4.53581724,0.03392472,99.83694072],[4.53581678,0.03392298,99.83681836],[4.53581631,0.03392124,99.83669508],[4.53581584,0.0339195,99.83657089],[4.53581537,0.03391776,99.8364458],[4.53581491,0.03391602,99.83631983],[4.53581444,0.03391428,99.83619299],[4.53581397,0.03391254,99.83606529],[4.53581351,0.0339108,99.83593673],[4.53581304,0.03390906,99.83580734],[4.53581257,0.03390732,99.83567712],[4.5358121,0.03390558,99.83554609],[4.53581164,0.03390384,99.83541425],[4.53581117,0.0339021,99.83528161],[4.5358107,0.03390035,99.8351482],[4.53581024,0.03389861,99.83501401],[4.53580977,0.03389687,99.83487907],[4.53580931,0.03389513,99.83474338],[4.53580884,0.03389339,99.83460696],[4.53580837,0.03389165,99.83446981],[4.53580791,0.03388991,99.83433194],[4.53580744,0.03388817,99.83419338],[4.53580697,0.03388643,99.83405413],[4.53580651,0.03388469,99.8339142],[4.53580604,0.03388295,99.8337736],[4.53580558,0.03388121,99.83363235],[4.53580511,0.03387947,99.83349045],[4.53580464,0.03387773,99.83334793],[4.53580418,0.03387598,99.83320478],[4.53580371,0.03387424,99.83306103],[4.53580325,0.0338725,99.83291666],[4.53580278,0.03387076,99.83277166],[4.53580231,0.03386902,99.83262602],[4.53580185,0.03386728,99.83247972],[4.53580138,0.03386554,99.83233274],[4.53580092,0.0338638,99.83218506],[4.53580045,0.03386206,99.83203666],[4.53579999,0.03386032,99.83188754],[4.53579952,0.03385858,99.83173766],[4.53579905,0.03385684,99.83158702],[4.53579859,0.0338551,99.8314356],[4.53579812,0.03385335,99.83128337],[4.53579765,0.03385161,99.83113033],[4.53579719,0.03384987,99.83097645],[4.53579672,0.03384813,99.83082171],[4.53579625,0.03384639,99.83066611],[4.53579579,0.03384465,99.83050962],[4.53579532,0.03384291,99.83035223],[4.53579485,0.03384117,99.83019391],[4.53579439,0.03383943,99.83003465],[4.53579392,0.03383769,99.82987444],[4.53579345,0.03383595,99.82971325],[4.53579298,0.03383421,99.82955109],[4.53579251,0.03383247,99.82938793],[4.53579205,0.03383073,99.82922377],[4.53579158,0.03382899,99.8290586],[4.53579111,0.03382725,99.82889241],[4.53579064,0.03382551,99.82872519],[4.53579017,0.03382377,99.82855693],[4.5357897,0.03382203,99.82838761],[4.53578923,0.03382029,99.82821723],[4.53578876,0.03381855,99.82804578],[4.53578829,0.03381681,99.82787325],[4.53578782,0.03381507,99.82769963],[4.53578735,0.03381333,99.8275249],[4.53578688,0.03381159,99.82734906],[4.53578641,0.03380985,99.8271721],[4.53578594,0.03380811,99.826994],[4.53578547,0.03380637,99.82681476],[4.535785,0.03380463,99.82663437],[4.53578453,0.0338029,99.82645281],[4.53578406,0.03380116,99.82627008],[4.53578359,0.03379942,99.82608616],[4.53578312,0.03379768,99.82590105],[4.53578265,0.03379594,99.82571473],[4.53578218,0.0337942,99.82552719],[4.53578171,0.03379246,99.82533842],[4.53578123,0.03379072,99.82514842],[4.53578076,0.03378898,99.82495718],[4.53578029,0.03378724,99.82476468],[4.53577982,0.0337855,99.82457092],[4.53577935,0.03378376,99.82437591],[4.53577888,0.03378203,99.82417962],[4.5357784,0.03378029,99.82398206],[4.53577793,0.03377855,99.82378324],[4.53577746,0.03377681,99.82358317],[4.53577699,0.03377507,99.82338185],[4.53577652,0.03377333,99.8231793],[4.53577604,0.03377159,99.82297553],[4.53577557,0.03376985,99.82277055],[4.5357751,0.03376811,99.82256437],[4.53577463,0.03376638,99.822357],[4.53577416,0.03376464,99.82214846],[4.53577368,0.0337629,99.82193875],[4.53577321,0.03376116,99.82172788],[4.53577274,0.03375942,99.82151587],[4.53577227,0.03375768,99.82130273],[4.53577179,0.03375594,99.82108847],[4.53577132,0.0337542,99.82087309],[4.53577085,0.03375246,99.82065661],[4.53577038,0.03375073,99.82043905],[4.5357699,0.03374899,99.8202204],[4.53576943,0.03374725,99.82000069],[4.53576896,0.03374551,99.81977992],[4.53576848,0.03374377,99.81955811],[4.53576801,0.03374203,99.81933526],[4.53576754,0.03374029,99.81911139],[4.53576707,0.03373856,99.81888651],[4.53576659,0.03373682,99.81866062],[4.53576612,0.03373508,99.81843375],[4.53576565,0.03373334,99.8182059],[4.53576517,0.0337316,99.81797707],[4.5357647,0.03372986,99.81774729],[4.53576422,0.03372813,99.81751657],[4.53576375,0.03372639,99.81728491],[4.53576328,0.03372465,99.81705233],[4.5357628,0.03372291,99.81681883],[4.53576233,0.03372117,99.81658443],[4.53576185,0.03371943,99.81634915],[4.53576138,0.0337177,99.81611298],[4.5357609,0.03371596,99.81587595],[4.53576043,0.03371422,99.81563806],[4.53575996,0.03371248,99.81539932],[4.53575948,0.03371074,99.81515975],[4.53575901,0.03370901,99.81491936],[4.53575853,0.03370727,99.81467815],[4.53575805,0.03370553,99.81443615],[4.53575758,0.03370379,99.81419336],[4.5357571,0.03370205,99.81394978],[4.53575663,0.03370032,99.81370544],[4.53575615,0.03369858,99.81346035],[4.53575568,0.03369684,99.81321451],[4.5357552,0.0336951,99.81296794],[4.53575472,0.03369337,99.81272065],[4.53575425,0.03369163,99.81247265],[4.53575377,0.03368989,99.81222395],[4.53575329,0.03368815,99.81197456],[4.53575282,0.03368642,99.8117245],[4.53575234,0.03368468,99.81147377],[4.53575186,0.03368294,99.81122239],[4.53575138,0.0336812,99.81097037],[4.53575091,0.03367947,99.81071772],[4.53575043,0.03367773,99.81046445],[4.53574995,0.03367599,99.81021057],[4.53574947,0.03367426,99.8099561],[4.53574899,0.03367252,99.80970105],[4.53574852,0.03367078,99.80944542],[4.53574804,0.03366904,99.80918923],[4.53574756,0.03366731,99.80893249],[4.53574708,0.03366557,99.80867522],[4.53574661,0.03366383,99.80841742],[4.53574613,0.03366209,99.8081591],[4.53574565,0.03366036,99.80790028],[4.53574518,0.03365862,99.80764097],[4.5357447,0.03365688,99.80738119],[4.53574422,0.03365514,99.80712093],[4.53574375,0.03365341,99.80686022],[4.53574327,0.03365167,99.80659906],[4.5357428,0.03364993,99.80633747],[4.53574233,0.03364819,99.80607546],[4.53574185,0.03364645,99.80581305],[4.53574138,0.03364472,99.80555023],[4.53574091,0.03364298,99.80528703],[4.53574044,0.03364124,99.80502346],[4.53573997,0.0336395,99.80475952],[4.5357395,0.03363776,99.80449524],[4.53573903,0.03363602,99.80423061],[4.53573856,0.03363428,99.80396565],[4.53573809,0.03363254,99.80370037],[4.53573762,0.0336308,99.80343479],[4.53573716,0.03362906,99.80316891],[4.53573669,0.03362732,99.80290274],[4.53573623,0.03362558,99.8026363],[4.53573576,0.03362384,99.80236959],[4.5357353,0.0336221,99.80210262],[4.53573483,0.03362036,99.80183542],[4.53573437,0.03361862,99.80156798],[4.5357339,0.03361688,99.80130032],[4.53573344,0.03361514,99.80103245],[4.53573298,0.0336134,99.80076438],[4.53573251,0.03361166,99.80049612],[4.53573205,0.03360992,99.80022768],[4.53573159,0.03360817,99.79995908],[4.53573112,0.03360643,99.79969032],[4.53573066,0.03360469,99.79942142],[4.5357302,0.03360295,99.79915238],[4.53572974,0.03360121,99.79888322],[4.53572927,0.03359947,99.79861395],[4.53572881,0.03359773,99.79834457],[4.53572835,0.03359599,99.79807511],[4.53572789,0.03359424,99.79780557],[4.53572742,0.0335925,99.79753596],[4.53572696,0.03359076,99.7972663],[4.5357265,0.03358902,99.79699659],[4.53572603,0.03358728,99.79672685],[4.5357259,0.03358677,99.79664749],[4.53574082,0.03358264,99.79664749],[4.53574096,0.03358315,99.79672685],[4.53574144,0.03358489,99.79699659],[4.53574191,0.03358663,99.7972663],[4.53574239,0.03358837,99.79753596],[4.53574286,0.0335901,99.79780557],[4.53574334,0.03359184,99.79807511],[4.53574381,0.03359358,99.79834457],[4.53574429,0.03359532,99.79861395],[4.53574476,0.03359706,99.79888322],[4.53574524,0.0335988,99.79915238],[4.53574571,0.03360053,99.79942142],[4.53574619,0.03360227,99.79969032],[4.53574666,0.03360401,99.79995908],[4.53574714,0.03360575,99.80022768],[4.53574761,0.03360749,99.80049612],[4.53574809,0.03360922,99.80076438],[4.53574856,0.03361096,99.80103245],[4.53574904,0.0336127,99.80130032],[4.53574951,0.03361443,99.80156798],[4.53574999,0.03361617,99.80183542],[4.53575046,0.03361791,99.80210262],[4.53575094,0.03361965,99.80236959],[4.53575141,0.03362139,99.8026363],[4.53575189,0.03362312,99.80290274],[4.53575236,0.03362486,99.80316891],[4.53575284,0.0336266,99.80343479],[4.53575331,0.03362834,99.80370037],[4.53575379,0.03363008,99.80396565],[4.53575427,0.03363181,99.80423061],[4.53575474,0.03363355,99.80449524],[4.53575522,0.03363529,99.80475952],[4.53575569,0.03363703,99.80502346],[4.53575617,0.03363877,99.80528703],[4.53575664,0.0336405,99.80555023],[4.53575712,0.03364224,99.80581305],[4.53575759,0.03364398,99.80607546],[4.53575807,0.03364572,99.80633747],[4.53575854,0.03364746,99.80659906],[4.53575902,0.0336492,99.80686022],[4.53575949,0.03365093,99.80712093],[4.53575997,0.03365267,99.80738119],[4.53576044,0.03365441,99.80764097],[4.53576092,0.03365615,99.80790028],[4.53576139,0.03365789,99.8081591],[4.53576187,0.03365962,99.80841742],[4.53576234,0.03366136,99.80867522],[4.53576282,0.0336631,99.80893249],[4.53576329,0.03366484,99.80918923],[4.53576377,0.03366658,99.80944542],[4.53576424,0.03366832,99.80970105],[4.53576472,0.03367005,99.8099561],[4.53576519,0.03367179,99.81021057],[4.53576566,0.03367353,99.81046445],[4.53576614,0.03367527,99.81071772],[4.53576661,0.03367701,99.81097037],[4.53576709,0.03367875,99.81122239],[4.53576756,0.03368049,99.81147377],[4.53576803,0.03368222,99.8117245],[4.53576851,0.03368396,99.81197456],[4.53576898,0.0336857,99.81222395],[4.53576945,0.03368744,99.81247265],[4.53576993,0.03368918,99.81272065],[4.5357704,0.03369092,99.81296794],[4.53577087,0.03369266,99.81321451],[4.53577134,0.0336944,99.81346035],[4.53577182,0.03369613,99.81370544],[4.53577229,0.03369787,99.81394978],[4.53577276,0.03369961,99.81419336],[4.53577323,0.03370135,99.81443615],[4.53577371,0.03370309,99.81467815],[4.53577418,0.03370483,99.81491936],[4.53577465,0.03370657,99.81515975],[4.53577512,0.03370831,99.81539932],[4.53577559,0.03371005,99.81563806],[4.53577607,0.03371179,99.81587595],[4.53577654,0.03371352,99.81611298],[4.53577701,0.03371526,99.81634915],[4.53577748,0.033717,99.81658443],[4.53577795,0.03371874,99.81681883],[4.53577842,0.03372048,99.81705233],[4.53577889,0.03372222,99.81728491],[4.53577936,0.03372396,99.81751657],[4.53577983,0.0337257,99.81774729],[4.5357803,0.03372744,99.81797707],[4.53578077,0.03372918,99.8182059],[4.53578124,0.03373092,99.81843375],[4.53578171,0.03373266,99.81866062],[4.53578218,0.0337344,99.81888651],[4.53578265,0.03373614,99.81911139],[4.53578312,0.03373788,99.81933526],[4.53578359,0.03373962,99.81955811],[4.53578406,0.03374136,99.81977992],[4.53578453,0.0337431,99.82000069],[4.535785,0.03374484,99.8202204],[4.53578546,0.03374658,99.82043905],[4.53578593,0.03374832,99.82065661],[4.5357864,0.03375006,99.82087309],[4.53578687,0.0337518,99.82108847],[4.53578734,0.03375354,99.82130273],[4.5357878,0.03375528,99.82151587],[4.53578827,0.03375702,99.82172788],[4.53578874,0.03375876,99.82193875],[4.5357892,0.0337605,99.82214846],[4.53578967,0.03376224,99.822357],[4.53579014,0.03376398,99.82256437],[4.5357906,0.03376572,99.82277055],[4.53579107,0.03376746,99.82297553],[4.53579154,0.03376921,99.8231793],[4.535792,0.03377095,99.82338185],[4.53579247,0.03377269,99.82358317],[4.53579293,0.03377443,99.82378324],[4.5357934,0.03377617,99.82398206],[4.53579386,0.03377791,99.82417962],[4.53579433,0.03377965,99.82437591],[4.53579479,0.03378139,99.82457092],[4.53579526,0.03378313,99.82476468],[4.53579572,0.03378488,99.82495718],[4.53579619,0.03378662,99.82514842],[4.53579665,0.03378836,99.82533842],[4.53579711,0.0337901,99.82552719],[4.53579758,0.03379184,99.82571473],[4.53579804,0.03379358,99.82590105],[4.5357985,0.03379532,99.82608616],[4.53579897,0.03379707,99.82627008],[4.53579943,0.03379881,99.82645281],[4.53579989,0.03380055,99.82663437],[4.53580035,0.03380229,99.82681476],[4.53580082,0.03380403,99.826994],[4.53580128,0.03380578,99.8271721],[4.53580174,0.03380752,99.82734906],[4.5358022,0.03380926,99.8275249],[4.53580267,0.033811,99.82769963],[4.53580313,0.03381274,99.82787325],[4.53580359,0.03381448,99.82804578],[4.53580405,0.03381623,99.82821723],[4.53580451,0.03381797,99.82838761],[4.53580498,0.03381971,99.82855693],[4.53580544,0.03382145,99.82872519],[4.5358059,0.03382319,99.82889241],[4.53580636,0.03382494,99.8290586],[4.53580682,0.03382668,99.82922377],[4.53580728,0.03382842,99.82938793],[4.53580775,0.03383016,99.82955109],[4.53580821,0.03383191,99.82971325],[4.53580867,0.03383365,99.82987444],[4.53580913,0.03383539,99.83003465],[4.53580959,0.03383713,99.83019391],[4.53581005,0.03383887,99.83035223],[4.53581052,0.03384062,99.83050962],[4.53581098,0.03384236,99.83066611],[4.53581144,0.0338441,99.83082171],[4.5358119,0.03384584,99.83097645],[4.53581236,0.03384758,99.83113033],[4.53581282,0.03384933,99.83128337],[4.53581329,0.03385107,99.8314356],[4.53581375,0.03385281,99.83158702],[4.53581421,0.03385455,99.83173766],[4.53581467,0.03385629,99.83188754],[4.53581514,0.03385804,99.83203666],[4.5358156,0.03385978,99.83218506],[4.53581606,0.03386152,99.83233274],[4.53581652,0.03386326,99.83247972],[4.53581699,0.033865,99.83262602],[4.53581745,0.03386675,99.83277166],[4.53581791,0.03386849,99.83291666],[4.53581838,0.03387023,99.83306103],[4.53581884,0.03387197,99.83320478],[4.53581931,0.03387371,99.83334793],[4.53581977,0.03387545,99.83349045],[4.53582023,0.03387719,99.83363235],[4.5358207,0.03387894,99.8337736],[4.53582116,0.03388068,99.8339142],[4.53582163,0.03388242,99.83405413],[4.53582209,0.03388416,99.83419338],[4.53582256,0.0338859,99.83433194],[4.53582302,0.03388764,99.83446981],[4.53582349,0.03388938,99.83460696],[4.53582396,0.03389112,99.83474338],[4.53582442,0.03389286,99.83487907],[4.53582489,0.03389461,99.83501401],[4.53582536,0.03389635,99.8351482],[4.53582582,0.03389809,99.83528161],[4.53582629,0.03389983,99.83541425],[4.53582676,0.03390157,99.83554609],[4.53582722,0.03390331,99.83567712],[4.53582769,0.03390505,99.83580734],[4.53582816,0.03390679,99.83593673],[4.53582863,0.03390853,99.83606529],[4.5358291,0.03391027,99.83619299],[4.53582956,0.03391201,99.83631983],[4.53583003,0.03391375,99.8364458],[4.5358305,0.03391549,99.83657089],[4.53583097,0.03391723,99.83669508],[4.53583144,0.03391897,99.83681836],[4.53583191,0.03392071,99.83694072],[4.53583238,0.03392245,99.83706214],[4.53583285,0.03392419,99.8371826],[4.53583331,0.03392593,99.83730208],[4.53583378,0.03392767,99.83742057],[4.53583425,0.03392941,99.83753804],[4.53583472,0.03393115,99.83765447],[4.53583519,0.03393289,99.83776986],[4.53583566,0.03393463,99.83788418],[4.53583613,0.03393637,99.83799741],[4.5358366,0.03393811,99.83810954],[4.53583708,0.03393985,99.83822054],[4.53583755,0.03394159,99.8383304],[4.53583802,0.03394333,99.83843911],[4.53583849,0.03394507,99.83854663],[4.53583896,0.03394681,99.83865296],[4.53583943,0.03394855,99.83875808],[4.5358399,0.03395029,99.83886196],[4.53584037,0.03395203,99.8389646],[4.53584084,0.03395377,99.83906596],[4.53584131,0.03395551,99.83916604],[4.53584179,0.03395725,99.83926482],[4.53584226,0.03395899,99.83936227],[4.53584273,0.03396073,99.83945838],[4.5358432,0.03396247,99.83955313],[4.53584367,0.03396421,99.83964651],[4.53584415,0.03396595,99.83973849],[4.53584462,0.03396769,99.83982906],[4.53584509,0.03396943,99.83991819],[4.53584556,0.03397117,99.84000588],[4.53584603,0.0339729,99.8400921],[4.53584651,0.03397464,99.84017683],[4.53584698,0.03397638,99.84026006],[4.53584745,0.03397812,99.84034176],[4.53584792,0.03397986,99.84042193],[4.5358484,0.0339816,99.84050054],[4.53584887,0.03398334,99.84057756],[4.53584934,0.03398508,99.840653],[4.53584981,0.03398682,99.84072684],[4.53585029,0.03398856,99.8407991],[4.53585076,0.0339903,99.8408698],[4.53585123,0.03399204,99.84093895],[4.53585171,0.03399378,99.84100658],[4.53585218,0.03399552,99.8410727],[4.53585265,0.03399725,99.84113733],[4.53585313,0.03399899,99.84120048],[4.5358536,0.03400073,99.84126217],[4.53585407,0.03400247,99.84132242],[4.53585455,0.03400421,99.84138125],[4.53585502,0.03400595,99.84143868],[4.5358555,0.03400769,99.84149471],[4.53585597,0.03400943,99.84154938],[4.53585644,0.03401117,99.84160269],[4.53585692,0.03401291,99.84165466],[4.53585739,0.03401464,99.84170532],[4.53585787,0.03401638,99.84175467],[4.53585834,0.03401812,99.84180274],[4.53585882,0.03401986,99.84184954],[4.53585929,0.0340216,99.84189509],[4.53585977,0.03402334,99.84193941],[4.53586025,0.03402508,99.84198252],[4.53586072,0.03402681,99.84202443],[4.5358612,0.03402855,99.84206516],[4.53586167,0.03403029,99.84210472],[4.53586215,0.03403203,99.84214315],[4.53586262,0.03403377,99.84218045],[4.5358631,0.03403551,99.84221663],[4.53586358,0.03403725,99.84225173],[4.53586405,0.03403898,99.84228575],[4.53586453,0.03404072,99.84231872],[4.535865,0.03404246,99.84235065],[4.53586548,0.0340442,99.84238156],[4.53586596,0.03404594,99.84241146],[4.53586643,0.03404768,99.84244038],[4.53586691,0.03404942,99.84246834],[4.53586738,0.03405115,99.84249535],[4.53586786,0.03405289,99.84252142],[4.53586834,0.03405463,99.84254658],[4.53586881,0.03405637,99.84257085],[4.53586929,0.03405811,99.84259424],[4.53586976,0.03405985,99.84261678],[4.53587024,0.03406159,99.84263847],[4.53587071,0.03406332,99.84265934],[4.53587119,0.03406506,99.84267941],[4.53587166,0.0340668,99.84269869],[4.53587214,0.03406854,99.84271721],[4.53587261,0.03407028,99.84273497],[4.53587309,0.03407202,99.84275201],[4.53587356,0.03407376,99.84276834],[4.53587404,0.0340755,99.84278397],[4.53587451,0.03407723,99.84279893],[4.53587499,0.03407897,99.84281324],[4.53585997,0.03408307,99.84281324]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-6,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":-6,"type":"border","predecessorId":-6,"sOffset":525.6514438035}},{"geometry":{"coordinates":[[[4.53587499,0.03407897,99.84281324],[4.53587451,0.03407723,99.84279893],[4.53587404,0.0340755,99.84278397],[4.53587356,0.03407376,99.84276834],[4.53587309,0.03407202,99.84275201],[4.53587261,0.03407028,99.84273497],[4.53587214,0.03406854,99.84271721],[4.53587166,0.0340668,99.84269869],[4.53587119,0.03406506,99.84267941],[4.53587071,0.03406332,99.84265934],[4.53587024,0.03406159,99.84263847],[4.53586976,0.03405985,99.84261678],[4.53586929,0.03405811,99.84259424],[4.53586881,0.03405637,99.84257085],[4.53586834,0.03405463,99.84254658],[4.53586786,0.03405289,99.84252142],[4.53586738,0.03405115,99.84249535],[4.53586691,0.03404942,99.84246834],[4.53586643,0.03404768,99.84244038],[4.53586596,0.03404594,99.84241146],[4.53586548,0.0340442,99.84238156],[4.535865,0.03404246,99.84235065],[4.53586453,0.03404072,99.84231872],[4.53586405,0.03403898,99.84228575],[4.53586358,0.03403725,99.84225173],[4.5358631,0.03403551,99.84221663],[4.53586262,0.03403377,99.84218045],[4.53586215,0.03403203,99.84214315],[4.53586167,0.03403029,99.84210472],[4.5358612,0.03402855,99.84206516],[4.53586072,0.03402681,99.84202443],[4.53586025,0.03402508,99.84198252],[4.53585977,0.03402334,99.84193941],[4.53585929,0.0340216,99.84189509],[4.53585882,0.03401986,99.84184954],[4.53585834,0.03401812,99.84180274],[4.53585787,0.03401638,99.84175467],[4.53585739,0.03401464,99.84170532],[4.53585692,0.03401291,99.84165466],[4.53585644,0.03401117,99.84160269],[4.53585597,0.03400943,99.84154938],[4.5358555,0.03400769,99.84149471],[4.53585502,0.03400595,99.84143868],[4.53585455,0.03400421,99.84138125],[4.53585407,0.03400247,99.84132242],[4.5358536,0.03400073,99.84126217],[4.53585313,0.03399899,99.84120048],[4.53585265,0.03399725,99.84113733],[4.53585218,0.03399552,99.8410727],[4.53585171,0.03399378,99.84100658],[4.53585123,0.03399204,99.84093895],[4.53585076,0.0339903,99.8408698],[4.53585029,0.03398856,99.8407991],[4.53584981,0.03398682,99.84072684],[4.53584934,0.03398508,99.840653],[4.53584887,0.03398334,99.84057756],[4.5358484,0.0339816,99.84050054],[4.53584792,0.03397986,99.84042193],[4.53584745,0.03397812,99.84034176],[4.53584698,0.03397638,99.84026006],[4.53584651,0.03397464,99.84017683],[4.53584603,0.0339729,99.8400921],[4.53584556,0.03397117,99.84000588],[4.53584509,0.03396943,99.83991819],[4.53584462,0.03396769,99.83982906],[4.53584415,0.03396595,99.83973849],[4.53584367,0.03396421,99.83964651],[4.5358432,0.03396247,99.83955313],[4.53584273,0.03396073,99.83945838],[4.53584226,0.03395899,99.83936227],[4.53584179,0.03395725,99.83926482],[4.53584131,0.03395551,99.83916604],[4.53584084,0.03395377,99.83906596],[4.53584037,0.03395203,99.8389646],[4.5358399,0.03395029,99.83886196],[4.53583943,0.03394855,99.83875808],[4.53583896,0.03394681,99.83865296],[4.53583849,0.03394507,99.83854663],[4.53583802,0.03394333,99.83843911],[4.53583755,0.03394159,99.8383304],[4.53583708,0.03393985,99.83822054],[4.5358366,0.03393811,99.83810954],[4.53583613,0.03393637,99.83799741],[4.53583566,0.03393463,99.83788418],[4.53583519,0.03393289,99.83776986],[4.53583472,0.03393115,99.83765447],[4.53583425,0.03392941,99.83753804],[4.53583378,0.03392767,99.83742057],[4.53583331,0.03392593,99.83730208],[4.53583285,0.03392419,99.8371826],[4.53583238,0.03392245,99.83706214],[4.53583191,0.03392071,99.83694072],[4.53583144,0.03391897,99.83681836],[4.53583097,0.03391723,99.83669508],[4.5358305,0.03391549,99.83657089],[4.53583003,0.03391375,99.8364458],[4.53582956,0.03391201,99.83631983],[4.5358291,0.03391027,99.83619299],[4.53582863,0.03390853,99.83606529],[4.53582816,0.03390679,99.83593673],[4.53582769,0.03390505,99.83580734],[4.53582722,0.03390331,99.83567712],[4.53582676,0.03390157,99.83554609],[4.53582629,0.03389983,99.83541425],[4.53582582,0.03389809,99.83528161],[4.53582536,0.03389635,99.8351482],[4.53582489,0.03389461,99.83501401],[4.53582442,0.03389286,99.83487907],[4.53582396,0.03389112,99.83474338],[4.53582349,0.03388938,99.83460696],[4.53582302,0.03388764,99.83446981],[4.53582256,0.0338859,99.83433194],[4.53582209,0.03388416,99.83419338],[4.53582163,0.03388242,99.83405413],[4.53582116,0.03388068,99.8339142],[4.5358207,0.03387894,99.8337736],[4.53582023,0.03387719,99.83363235],[4.53581977,0.03387545,99.83349045],[4.53581931,0.03387371,99.83334793],[4.53581884,0.03387197,99.83320478],[4.53581838,0.03387023,99.83306103],[4.53581791,0.03386849,99.83291666],[4.53581745,0.03386675,99.83277166],[4.53581699,0.033865,99.83262602],[4.53581652,0.03386326,99.83247972],[4.53581606,0.03386152,99.83233274],[4.5358156,0.03385978,99.83218506],[4.53581514,0.03385804,99.83203666],[4.53581467,0.03385629,99.83188754],[4.53581421,0.03385455,99.83173766],[4.53581375,0.03385281,99.83158702],[4.53581329,0.03385107,99.8314356],[4.53581282,0.03384933,99.83128337],[4.53581236,0.03384758,99.83113033],[4.5358119,0.03384584,99.83097645],[4.53581144,0.0338441,99.83082171],[4.53581098,0.03384236,99.83066611],[4.53581052,0.03384062,99.83050962],[4.53581005,0.03383887,99.83035223],[4.53580959,0.03383713,99.83019391],[4.53580913,0.03383539,99.83003465],[4.53580867,0.03383365,99.82987444],[4.53580821,0.03383191,99.82971325],[4.53580775,0.03383016,99.82955109],[4.53580728,0.03382842,99.82938793],[4.53580682,0.03382668,99.82922377],[4.53580636,0.03382494,99.8290586],[4.5358059,0.03382319,99.82889241],[4.53580544,0.03382145,99.82872519],[4.53580498,0.03381971,99.82855693],[4.53580451,0.03381797,99.82838761],[4.53580405,0.03381623,99.82821723],[4.53580359,0.03381448,99.82804578],[4.53580313,0.03381274,99.82787325],[4.53580267,0.033811,99.82769963],[4.5358022,0.03380926,99.8275249],[4.53580174,0.03380752,99.82734906],[4.53580128,0.03380578,99.8271721],[4.53580082,0.03380403,99.826994],[4.53580035,0.03380229,99.82681476],[4.53579989,0.03380055,99.82663437],[4.53579943,0.03379881,99.82645281],[4.53579897,0.03379707,99.82627008],[4.5357985,0.03379532,99.82608616],[4.53579804,0.03379358,99.82590105],[4.53579758,0.03379184,99.82571473],[4.53579711,0.0337901,99.82552719],[4.53579665,0.03378836,99.82533842],[4.53579619,0.03378662,99.82514842],[4.53579572,0.03378488,99.82495718],[4.53579526,0.03378313,99.82476468],[4.53579479,0.03378139,99.82457092],[4.53579433,0.03377965,99.82437591],[4.53579386,0.03377791,99.82417962],[4.5357934,0.03377617,99.82398206],[4.53579293,0.03377443,99.82378324],[4.53579247,0.03377269,99.82358317],[4.535792,0.03377095,99.82338185],[4.53579154,0.03376921,99.8231793],[4.53579107,0.03376746,99.82297553],[4.5357906,0.03376572,99.82277055],[4.53579014,0.03376398,99.82256437],[4.53578967,0.03376224,99.822357],[4.5357892,0.0337605,99.82214846],[4.53578874,0.03375876,99.82193875],[4.53578827,0.03375702,99.82172788],[4.5357878,0.03375528,99.82151587],[4.53578734,0.03375354,99.82130273],[4.53578687,0.0337518,99.82108847],[4.5357864,0.03375006,99.82087309],[4.53578593,0.03374832,99.82065661],[4.53578546,0.03374658,99.82043905],[4.535785,0.03374484,99.8202204],[4.53578453,0.0337431,99.82000069],[4.53578406,0.03374136,99.81977992],[4.53578359,0.03373962,99.81955811],[4.53578312,0.03373788,99.81933526],[4.53578265,0.03373614,99.81911139],[4.53578218,0.0337344,99.81888651],[4.53578171,0.03373266,99.81866062],[4.53578124,0.03373092,99.81843375],[4.53578077,0.03372918,99.8182059],[4.5357803,0.03372744,99.81797707],[4.53577983,0.0337257,99.81774729],[4.53577936,0.03372396,99.81751657],[4.53577889,0.03372222,99.81728491],[4.53577842,0.03372048,99.81705233],[4.53577795,0.03371874,99.81681883],[4.53577748,0.033717,99.81658443],[4.53577701,0.03371526,99.81634915],[4.53577654,0.03371352,99.81611298],[4.53577607,0.03371179,99.81587595],[4.53577559,0.03371005,99.81563806],[4.53577512,0.03370831,99.81539932],[4.53577465,0.03370657,99.81515975],[4.53577418,0.03370483,99.81491936],[4.53577371,0.03370309,99.81467815],[4.53577323,0.03370135,99.81443615],[4.53577276,0.03369961,99.81419336],[4.53577229,0.03369787,99.81394978],[4.53577182,0.03369613,99.81370544],[4.53577134,0.0336944,99.81346035],[4.53577087,0.03369266,99.81321451],[4.5357704,0.03369092,99.81296794],[4.53576993,0.03368918,99.81272065],[4.53576945,0.03368744,99.81247265],[4.53576898,0.0336857,99.81222395],[4.53576851,0.03368396,99.81197456],[4.53576803,0.03368222,99.8117245],[4.53576756,0.03368049,99.81147377],[4.53576709,0.03367875,99.81122239],[4.53576661,0.03367701,99.81097037],[4.53576614,0.03367527,99.81071772],[4.53576566,0.03367353,99.81046445],[4.53576519,0.03367179,99.81021057],[4.53576472,0.03367005,99.8099561],[4.53576424,0.03366832,99.80970105],[4.53576377,0.03366658,99.80944542],[4.53576329,0.03366484,99.80918923],[4.53576282,0.0336631,99.80893249],[4.53576234,0.03366136,99.80867522],[4.53576187,0.03365962,99.80841742],[4.53576139,0.03365789,99.8081591],[4.53576092,0.03365615,99.80790028],[4.53576044,0.03365441,99.80764097],[4.53575997,0.03365267,99.80738119],[4.53575949,0.03365093,99.80712093],[4.53575902,0.0336492,99.80686022],[4.53575854,0.03364746,99.80659906],[4.53575807,0.03364572,99.80633747],[4.53575759,0.03364398,99.80607546],[4.53575712,0.03364224,99.80581305],[4.53575664,0.0336405,99.80555023],[4.53575617,0.03363877,99.80528703],[4.53575569,0.03363703,99.80502346],[4.53575522,0.03363529,99.80475952],[4.53575474,0.03363355,99.80449524],[4.53575427,0.03363181,99.80423061],[4.53575379,0.03363008,99.80396565],[4.53575331,0.03362834,99.80370037],[4.53575284,0.0336266,99.80343479],[4.53575236,0.03362486,99.80316891],[4.53575189,0.03362312,99.80290274],[4.53575141,0.03362139,99.8026363],[4.53575094,0.03361965,99.80236959],[4.53575046,0.03361791,99.80210262],[4.53574999,0.03361617,99.80183542],[4.53574951,0.03361443,99.80156798],[4.53574904,0.0336127,99.80130032],[4.53574856,0.03361096,99.80103245],[4.53574809,0.03360922,99.80076438],[4.53574761,0.03360749,99.80049612],[4.53574714,0.03360575,99.80022768],[4.53574666,0.03360401,99.79995908],[4.53574619,0.03360227,99.79969032],[4.53574571,0.03360053,99.79942142],[4.53574524,0.0335988,99.79915238],[4.53574476,0.03359706,99.79888322],[4.53574429,0.03359532,99.79861395],[4.53574381,0.03359358,99.79834457],[4.53574334,0.03359184,99.79807511],[4.53574286,0.0335901,99.79780557],[4.53574239,0.03358837,99.79753596],[4.53574191,0.03358663,99.7972663],[4.53574144,0.03358489,99.79699659],[4.53574096,0.03358315,99.79672685],[4.53574082,0.03358264,99.79664749],[4.53574214,0.03358228,99.79664749],[4.53574228,0.03358279,99.79672685],[4.53574275,0.03358453,99.79699659],[4.53574321,0.03358627,99.7972663],[4.53574368,0.03358801,99.79753596],[4.53574415,0.03358975,99.79780557],[4.53574462,0.03359149,99.79807511],[4.53574509,0.03359323,99.79834457],[4.53574556,0.03359497,99.79861395],[4.53574603,0.03359671,99.79888322],[4.5357465,0.03359845,99.79915238],[4.53574697,0.03360019,99.79942142],[4.53574744,0.03360193,99.79969032],[4.53574791,0.03360366,99.79995908],[4.53574838,0.0336054,99.80022768],[4.53574885,0.03360714,99.80049612],[4.53574932,0.03360888,99.80076438],[4.53574979,0.03361062,99.80103245],[4.53575026,0.03361236,99.80130032],[4.53575073,0.0336141,99.80156798],[4.5357512,0.03361584,99.80183542],[4.53575167,0.03361758,99.80210262],[4.53575215,0.03361931,99.80236959],[4.53575262,0.03362105,99.8026363],[4.53575309,0.03362279,99.80290274],[4.53575356,0.03362453,99.80316891],[4.53575403,0.03362627,99.80343479],[4.5357545,0.03362801,99.80370037],[4.53575497,0.03362975,99.80396565],[4.53575545,0.03363149,99.80423061],[4.53575592,0.03363323,99.80449524],[4.53575639,0.03363497,99.80475952],[4.53575686,0.03363671,99.80502346],[4.53575733,0.03363844,99.80528703],[4.53575781,0.03364018,99.80555023],[4.53575828,0.03364192,99.80581305],[4.53575875,0.03364366,99.80607546],[4.53575922,0.0336454,99.80633747],[4.5357597,0.03364714,99.80659906],[4.53576017,0.03364888,99.80686022],[4.53576064,0.03365062,99.80712093],[4.53576111,0.03365236,99.80738119],[4.53576159,0.03365409,99.80764097],[4.53576206,0.03365583,99.80790028],[4.53576253,0.03365757,99.8081591],[4.535763,0.03365931,99.80841742],[4.53576348,0.03366105,99.80867522],[4.53576395,0.03366279,99.80893249],[4.53576442,0.03366453,99.80918923],[4.5357649,0.03366627,99.80944542],[4.53576537,0.03366801,99.80970105],[4.53576584,0.03366974,99.8099561],[4.53576631,0.03367148,99.81021057],[4.53576679,0.03367322,99.81046445],[4.53576726,0.03367496,99.81071772],[4.53576773,0.0336767,99.81097037],[4.53576821,0.03367844,99.81122239],[4.53576868,0.03368018,99.81147377],[4.53576915,0.03368192,99.8117245],[4.53576962,0.03368365,99.81197456],[4.5357701,0.03368539,99.81222395],[4.53577057,0.03368713,99.81247265],[4.53577104,0.03368887,99.81272065],[4.53577152,0.03369061,99.81296794],[4.53577199,0.03369235,99.81321451],[4.53577246,0.03369409,99.81346035],[4.53577294,0.03369583,99.81370544],[4.53577341,0.03369757,99.81394978],[4.53577388,0.0336993,99.81419336],[4.53577435,0.03370104,99.81443615],[4.53577483,0.03370278,99.81467815],[4.5357753,0.03370452,99.81491936],[4.53577577,0.03370626,99.81515975],[4.53577624,0.033708,99.81539932],[4.53577672,0.03370974,99.81563806],[4.53577719,0.03371148,99.81587595],[4.53577766,0.03371322,99.81611298],[4.53577813,0.03371495,99.81634915],[4.53577861,0.03371669,99.81658443],[4.53577908,0.03371843,99.81681883],[4.53577955,0.03372017,99.81705233],[4.53578002,0.03372191,99.81728491],[4.53578049,0.03372365,99.81751657],[4.53578097,0.03372539,99.81774729],[4.53578144,0.03372713,99.81797707],[4.53578191,0.03372887,99.8182059],[4.53578238,0.03373061,99.81843375],[4.53578285,0.03373235,99.81866062],[4.53578332,0.03373409,99.81888651],[4.5357838,0.03373582,99.81911139],[4.53578427,0.03373756,99.81933526],[4.53578474,0.0337393,99.81955811],[4.53578521,0.03374104,99.81977992],[4.53578568,0.03374278,99.82000069],[4.53578615,0.03374452,99.8202204],[4.53578662,0.03374626,99.82043905],[4.53578709,0.033748,99.82065661],[4.53578756,0.03374974,99.82087309],[4.53578803,0.03375148,99.82108847],[4.5357885,0.03375322,99.82130273],[4.53578897,0.03375496,99.82151587],[4.53578944,0.0337567,99.82172788],[4.53578991,0.03375844,99.82193875],[4.53579038,0.03376018,99.82214846],[4.53579085,0.03376192,99.822357],[4.53579132,0.03376366,99.82256437],[4.53579179,0.0337654,99.82277055],[4.53579226,0.03376714,99.82297553],[4.53579273,0.03376888,99.8231793],[4.5357932,0.03377062,99.82338185],[4.53579367,0.03377236,99.82358317],[4.53579414,0.0337741,99.82378324],[4.5357946,0.03377584,99.82398206],[4.53579507,0.03377758,99.82417962],[4.53579554,0.03377932,99.82437591],[4.53579601,0.03378106,99.82457092],[4.53579648,0.0337828,99.82476468],[4.53579694,0.03378454,99.82495718],[4.53579741,0.03378628,99.82514842],[4.53579788,0.03378802,99.82533842],[4.53579835,0.03378976,99.82552719],[4.53579881,0.0337915,99.82571473],[4.53579928,0.03379324,99.82590105],[4.53579975,0.03379498,99.82608616],[4.53580021,0.03379672,99.82627008],[4.53580068,0.03379847,99.82645281],[4.53580114,0.03380021,99.82663437],[4.53580161,0.03380195,99.82681476],[4.53580208,0.03380369,99.826994],[4.53580254,0.03380543,99.8271721],[4.53580301,0.03380717,99.82734906],[4.53580347,0.03380891,99.8275249],[4.53580394,0.03381065,99.82769963],[4.53580441,0.03381239,99.82787325],[4.53580487,0.03381413,99.82804578],[4.53580534,0.03381587,99.82821723],[4.5358058,0.03381762,99.82838761],[4.53580627,0.03381936,99.82855693],[4.53580673,0.0338211,99.82872519],[4.5358072,0.03382284,99.82889241],[4.53580766,0.03382458,99.8290586],[4.53580813,0.03382632,99.82922377],[4.53580859,0.03382806,99.82938793],[4.53580906,0.0338298,99.82955109],[4.53580952,0.03383154,99.82971325],[4.53580999,0.03383329,99.82987444],[4.53581045,0.03383503,99.83003465],[4.53581092,0.03383677,99.83019391],[4.53581138,0.03383851,99.83035223],[4.53581185,0.03384025,99.83050962],[4.53581231,0.03384199,99.83066611],[4.53581278,0.03384373,99.83082171],[4.53581324,0.03384547,99.83097645],[4.53581371,0.03384722,99.83113033],[4.53581418,0.03384896,99.83128337],[4.53581464,0.0338507,99.8314356],[4.53581511,0.03385244,99.83158702],[4.53581557,0.03385418,99.83173766],[4.53581604,0.03385592,99.83188754],[4.5358165,0.03385766,99.83203666],[4.53581697,0.0338594,99.83218506],[4.53581743,0.03386114,99.83233274],[4.5358179,0.03386288,99.83247972],[4.53581837,0.03386463,99.83262602],[4.53581883,0.03386637,99.83277166],[4.5358193,0.03386811,99.83291666],[4.53581977,0.03386985,99.83306103],[4.53582023,0.03387159,99.83320478],[4.5358207,0.03387333,99.83334793],[4.53582117,0.03387507,99.83349045],[4.53582163,0.03387681,99.83363235],[4.5358221,0.03387855,99.8337736],[4.53582257,0.03388029,99.8339142],[4.53582304,0.03388203,99.83405413],[4.53582351,0.03388377,99.83419338],[4.53582397,0.03388551,99.83433194],[4.53582444,0.03388725,99.83446981],[4.53582491,0.03388899,99.83460696],[4.53582538,0.03389073,99.83474338],[4.53582585,0.03389247,99.83487907],[4.53582632,0.03389422,99.83501401],[4.53582678,0.03389596,99.8351482],[4.53582725,0.0338977,99.83528161],[4.53582772,0.03389944,99.83541425],[4.53582819,0.03390118,99.83554609],[4.53582866,0.03390292,99.83567712],[4.53582913,0.03390466,99.83580734],[4.5358296,0.0339064,99.83593673],[4.53583007,0.03390814,99.83606529],[4.53583054,0.03390988,99.83619299],[4.53583101,0.03391162,99.83631983],[4.53583148,0.03391336,99.8364458],[4.53583195,0.0339151,99.83657089],[4.53583242,0.03391684,99.83669508],[4.53583289,0.03391858,99.83681836],[4.53583336,0.03392032,99.83694072],[4.53583383,0.03392206,99.83706214],[4.5358343,0.0339238,99.8371826],[4.53583477,0.03392553,99.83730208],[4.53583524,0.03392727,99.83742057],[4.53583571,0.03392901,99.83753804],[4.53583618,0.03393075,99.83765447],[4.53583666,0.03393249,99.83776986],[4.53583713,0.03393423,99.83788418],[4.5358376,0.03393597,99.83799741],[4.53583807,0.03393771,99.83810954],[4.53583854,0.03393945,99.83822054],[4.53583901,0.03394119,99.8383304],[4.53583948,0.03394293,99.83843911],[4.53583995,0.03394467,99.83854663],[4.53584042,0.03394641,99.83865296],[4.53584089,0.03394815,99.83875808],[4.53584136,0.03394989,99.83886196],[4.53584184,0.03395163,99.8389646],[4.53584231,0.03395337,99.83906596],[4.53584278,0.03395511,99.83916604],[4.53584325,0.03395685,99.83926482],[4.53584372,0.03395859,99.83936227],[4.53584419,0.03396033,99.83945838],[4.53584466,0.03396207,99.83955313],[4.53584513,0.03396381,99.83964651],[4.5358456,0.03396555,99.83973849],[4.53584607,0.03396729,99.83982906],[4.53584654,0.03396903,99.83991819],[4.53584701,0.03397077,99.84000588],[4.53584748,0.03397251,99.8400921],[4.53584795,0.03397425,99.84017683],[4.53584842,0.03397599,99.84026006],[4.53584889,0.03397773,99.84034176],[4.53584936,0.03397947,99.84042193],[4.53584983,0.03398121,99.84050054],[4.5358503,0.03398295,99.84057756],[4.53585077,0.03398469,99.840653],[4.53585124,0.03398643,99.84072684],[4.53585171,0.03398817,99.8407991],[4.53585218,0.03398991,99.8408698],[4.53585265,0.03399165,99.84093895],[4.53585311,0.03399339,99.84100658],[4.53585358,0.03399513,99.8410727],[4.53585405,0.03399687,99.84113733],[4.53585452,0.03399861,99.84120048],[4.53585499,0.03400035,99.84126217],[4.53585546,0.03400209,99.84132242],[4.53585592,0.03400384,99.84138125],[4.53585639,0.03400558,99.84143868],[4.53585686,0.03400732,99.84149471],[4.53585733,0.03400906,99.84154938],[4.5358578,0.0340108,99.84160269],[4.53585827,0.03401254,99.84165466],[4.53585873,0.03401428,99.84170532],[4.5358592,0.03401602,99.84175467],[4.53585967,0.03401776,99.84180274],[4.53586014,0.0340195,99.84184954],[4.53586061,0.03402124,99.84189509],[4.53586107,0.03402298,99.84193941],[4.53586154,0.03402472,99.84198252],[4.53586201,0.03402646,99.84202443],[4.53586248,0.0340282,99.84206516],[4.53586295,0.03402994,99.84210472],[4.53586342,0.03403168,99.84214315],[4.53586389,0.03403342,99.84218045],[4.53586435,0.03403517,99.84221663],[4.53586482,0.03403691,99.84225173],[4.53586529,0.03403865,99.84228575],[4.53586576,0.03404039,99.84231872],[4.53586623,0.03404213,99.84235065],[4.5358667,0.03404387,99.84238156],[4.53586717,0.03404561,99.84241146],[4.53586764,0.03404735,99.84244038],[4.53586811,0.03404909,99.84246834],[4.53586858,0.03405083,99.84249535],[4.53586905,0.03405257,99.84252142],[4.53586952,0.03405431,99.84254658],[4.53586999,0.03405605,99.84257085],[4.53587046,0.03405779,99.84259424],[4.53587093,0.03405953,99.84261678],[4.5358714,0.03406127,99.84263847],[4.53587188,0.03406301,99.84265934],[4.53587235,0.03406475,99.84267941],[4.53587282,0.03406649,99.84269869],[4.53587329,0.03406823,99.84271721],[4.53587376,0.03406997,99.84273497],[4.53587424,0.03407171,99.84275201],[4.53587471,0.03407344,99.84276834],[4.53587518,0.03407518,99.84278397],[4.53587566,0.03407692,99.84279893],[4.53587613,0.03407866,99.84281324],[4.53587499,0.03407897,99.84281324]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-5,"level":true,"heights":[{"outer":0.15,"inner":0.15}],"roadId":"1004600","id":-5,"type":"border","predecessorId":-5,"sOffset":525.6514438035}},{"geometry":{"coordinates":[[[4.53587613,0.03407866,99.69281324],[4.53587566,0.03407692,99.69279893],[4.53587518,0.03407518,99.69278397],[4.53587471,0.03407344,99.69276834],[4.53587424,0.03407171,99.69275201],[4.53587376,0.03406997,99.69273497],[4.53587329,0.03406823,99.69271721],[4.53587282,0.03406649,99.69269869],[4.53587235,0.03406475,99.69267941],[4.53587188,0.03406301,99.69265934],[4.5358714,0.03406127,99.69263847],[4.53587093,0.03405953,99.69261678],[4.53587046,0.03405779,99.69259424],[4.53586999,0.03405605,99.69257085],[4.53586952,0.03405431,99.69254658],[4.53586905,0.03405257,99.69252142],[4.53586858,0.03405083,99.69249535],[4.53586811,0.03404909,99.69246834],[4.53586764,0.03404735,99.69244038],[4.53586717,0.03404561,99.69241146],[4.5358667,0.03404387,99.69238156],[4.53586623,0.03404213,99.69235065],[4.53586576,0.03404039,99.69231872],[4.53586529,0.03403865,99.69228575],[4.53586482,0.03403691,99.69225173],[4.53586435,0.03403517,99.69221663],[4.53586389,0.03403342,99.69218045],[4.53586342,0.03403168,99.69214315],[4.53586295,0.03402994,99.69210472],[4.53586248,0.0340282,99.69206516],[4.53586201,0.03402646,99.69202443],[4.53586154,0.03402472,99.69198252],[4.53586107,0.03402298,99.69193941],[4.53586061,0.03402124,99.69189509],[4.53586014,0.0340195,99.69184954],[4.53585967,0.03401776,99.69180274],[4.5358592,0.03401602,99.69175467],[4.53585873,0.03401428,99.69170532],[4.53585827,0.03401254,99.69165466],[4.5358578,0.0340108,99.69160269],[4.53585733,0.03400906,99.69154938],[4.53585686,0.03400732,99.69149471],[4.53585639,0.03400558,99.69143868],[4.53585592,0.03400384,99.69138125],[4.53585546,0.03400209,99.69132242],[4.53585499,0.03400035,99.69126217],[4.53585452,0.03399861,99.69120048],[4.53585405,0.03399687,99.69113733],[4.53585358,0.03399513,99.6910727],[4.53585311,0.03399339,99.69100658],[4.53585265,0.03399165,99.69093895],[4.53585218,0.03398991,99.6908698],[4.53585171,0.03398817,99.6907991],[4.53585124,0.03398643,99.69072684],[4.53585077,0.03398469,99.690653],[4.5358503,0.03398295,99.69057756],[4.53584983,0.03398121,99.69050054],[4.53584936,0.03397947,99.69042193],[4.53584889,0.03397773,99.69034176],[4.53584842,0.03397599,99.69026006],[4.53584795,0.03397425,99.69017683],[4.53584748,0.03397251,99.6900921],[4.53584701,0.03397077,99.69000588],[4.53584654,0.03396903,99.68991819],[4.53584607,0.03396729,99.68982906],[4.5358456,0.03396555,99.68973849],[4.53584513,0.03396381,99.68964651],[4.53584466,0.03396207,99.68955313],[4.53584419,0.03396033,99.68945838],[4.53584372,0.03395859,99.68936227],[4.53584325,0.03395685,99.68926482],[4.53584278,0.03395511,99.68916604],[4.53584231,0.03395337,99.68906596],[4.53584184,0.03395163,99.6889646],[4.53584136,0.03394989,99.68886196],[4.53584089,0.03394815,99.68875808],[4.53584042,0.03394641,99.68865296],[4.53583995,0.03394467,99.68854663],[4.53583948,0.03394293,99.68843911],[4.53583901,0.03394119,99.6883304],[4.53583854,0.03393945,99.68822054],[4.53583807,0.03393771,99.68810954],[4.5358376,0.03393597,99.68799741],[4.53583713,0.03393423,99.68788418],[4.53583666,0.03393249,99.68776986],[4.53583618,0.03393075,99.68765447],[4.53583571,0.03392901,99.68753804],[4.53583524,0.03392727,99.68742057],[4.53583477,0.03392553,99.68730208],[4.5358343,0.0339238,99.6871826],[4.53583383,0.03392206,99.68706214],[4.53583336,0.03392032,99.68694072],[4.53583289,0.03391858,99.68681836],[4.53583242,0.03391684,99.68669508],[4.53583195,0.0339151,99.68657089],[4.53583148,0.03391336,99.6864458],[4.53583101,0.03391162,99.68631983],[4.53583054,0.03390988,99.68619299],[4.53583007,0.03390814,99.68606529],[4.5358296,0.0339064,99.68593673],[4.53582913,0.03390466,99.68580734],[4.53582866,0.03390292,99.68567712],[4.53582819,0.03390118,99.68554609],[4.53582772,0.03389944,99.68541425],[4.53582725,0.0338977,99.68528161],[4.53582678,0.03389596,99.6851482],[4.53582632,0.03389422,99.68501401],[4.53582585,0.03389247,99.68487907],[4.53582538,0.03389073,99.68474338],[4.53582491,0.03388899,99.68460696],[4.53582444,0.03388725,99.68446981],[4.53582397,0.03388551,99.68433194],[4.53582351,0.03388377,99.68419338],[4.53582304,0.03388203,99.68405413],[4.53582257,0.03388029,99.6839142],[4.5358221,0.03387855,99.6837736],[4.53582163,0.03387681,99.68363235],[4.53582117,0.03387507,99.68349045],[4.5358207,0.03387333,99.68334793],[4.53582023,0.03387159,99.68320478],[4.53581977,0.03386985,99.68306103],[4.5358193,0.03386811,99.68291666],[4.53581883,0.03386637,99.68277166],[4.53581837,0.03386463,99.68262602],[4.5358179,0.03386288,99.68247972],[4.53581743,0.03386114,99.68233274],[4.53581697,0.0338594,99.68218506],[4.5358165,0.03385766,99.68203666],[4.53581604,0.03385592,99.68188754],[4.53581557,0.03385418,99.68173766],[4.53581511,0.03385244,99.68158702],[4.53581464,0.0338507,99.6814356],[4.53581418,0.03384896,99.68128337],[4.53581371,0.03384722,99.68113033],[4.53581324,0.03384547,99.68097645],[4.53581278,0.03384373,99.68082171],[4.53581231,0.03384199,99.68066611],[4.53581185,0.03384025,99.68050962],[4.53581138,0.03383851,99.68035223],[4.53581092,0.03383677,99.68019391],[4.53581045,0.03383503,99.68003465],[4.53580999,0.03383329,99.67987444],[4.53580952,0.03383154,99.67971325],[4.53580906,0.0338298,99.67955109],[4.53580859,0.03382806,99.67938793],[4.53580813,0.03382632,99.67922377],[4.53580766,0.03382458,99.6790586],[4.5358072,0.03382284,99.67889241],[4.53580673,0.0338211,99.67872519],[4.53580627,0.03381936,99.67855693],[4.5358058,0.03381762,99.67838761],[4.53580534,0.03381587,99.67821723],[4.53580487,0.03381413,99.67804578],[4.53580441,0.03381239,99.67787325],[4.53580394,0.03381065,99.67769963],[4.53580347,0.03380891,99.6775249],[4.53580301,0.03380717,99.67734906],[4.53580254,0.03380543,99.6771721],[4.53580208,0.03380369,99.676994],[4.53580161,0.03380195,99.67681476],[4.53580114,0.03380021,99.67663437],[4.53580068,0.03379847,99.67645281],[4.53580021,0.03379672,99.67627008],[4.53579975,0.03379498,99.67608616],[4.53579928,0.03379324,99.67590105],[4.53579881,0.0337915,99.67571473],[4.53579835,0.03378976,99.67552719],[4.53579788,0.03378802,99.67533842],[4.53579741,0.03378628,99.67514842],[4.53579694,0.03378454,99.67495718],[4.53579648,0.0337828,99.67476468],[4.53579601,0.03378106,99.67457092],[4.53579554,0.03377932,99.67437591],[4.53579507,0.03377758,99.67417962],[4.5357946,0.03377584,99.67398206],[4.53579414,0.0337741,99.67378324],[4.53579367,0.03377236,99.67358317],[4.5357932,0.03377062,99.67338185],[4.53579273,0.03376888,99.6731793],[4.53579226,0.03376714,99.67297553],[4.53579179,0.0337654,99.67277055],[4.53579132,0.03376366,99.67256437],[4.53579085,0.03376192,99.672357],[4.53579038,0.03376018,99.67214846],[4.53578991,0.03375844,99.67193875],[4.53578944,0.0337567,99.67172788],[4.53578897,0.03375496,99.67151587],[4.5357885,0.03375322,99.67130273],[4.53578803,0.03375148,99.67108847],[4.53578756,0.03374974,99.67087309],[4.53578709,0.033748,99.67065661],[4.53578662,0.03374626,99.67043905],[4.53578615,0.03374452,99.6702204],[4.53578568,0.03374278,99.67000069],[4.53578521,0.03374104,99.66977992],[4.53578474,0.0337393,99.66955811],[4.53578427,0.03373756,99.66933526],[4.5357838,0.03373582,99.66911139],[4.53578332,0.03373409,99.66888651],[4.53578285,0.03373235,99.66866062],[4.53578238,0.03373061,99.66843375],[4.53578191,0.03372887,99.6682059],[4.53578144,0.03372713,99.66797707],[4.53578097,0.03372539,99.66774729],[4.53578049,0.03372365,99.66751657],[4.53578002,0.03372191,99.66728491],[4.53577955,0.03372017,99.66705233],[4.53577908,0.03371843,99.66681883],[4.53577861,0.03371669,99.66658443],[4.53577813,0.03371495,99.66634915],[4.53577766,0.03371322,99.66611298],[4.53577719,0.03371148,99.66587595],[4.53577672,0.03370974,99.66563806],[4.53577624,0.033708,99.66539932],[4.53577577,0.03370626,99.66515975],[4.5357753,0.03370452,99.66491936],[4.53577483,0.03370278,99.66467815],[4.53577435,0.03370104,99.66443615],[4.53577388,0.0336993,99.66419336],[4.53577341,0.03369757,99.66394978],[4.53577294,0.03369583,99.66370544],[4.53577246,0.03369409,99.66346035],[4.53577199,0.03369235,99.66321451],[4.53577152,0.03369061,99.66296794],[4.53577104,0.03368887,99.66272065],[4.53577057,0.03368713,99.66247265],[4.5357701,0.03368539,99.66222395],[4.53576962,0.03368365,99.66197456],[4.53576915,0.03368192,99.6617245],[4.53576868,0.03368018,99.66147377],[4.53576821,0.03367844,99.66122239],[4.53576773,0.0336767,99.66097037],[4.53576726,0.03367496,99.66071772],[4.53576679,0.03367322,99.66046445],[4.53576631,0.03367148,99.66021057],[4.53576584,0.03366974,99.6599561],[4.53576537,0.03366801,99.65970105],[4.5357649,0.03366627,99.65944542],[4.53576442,0.03366453,99.65918923],[4.53576395,0.03366279,99.65893249],[4.53576348,0.03366105,99.65867522],[4.535763,0.03365931,99.65841742],[4.53576253,0.03365757,99.6581591],[4.53576206,0.03365583,99.65790028],[4.53576159,0.03365409,99.65764097],[4.53576111,0.03365236,99.65738119],[4.53576064,0.03365062,99.65712093],[4.53576017,0.03364888,99.65686022],[4.5357597,0.03364714,99.65659906],[4.53575922,0.0336454,99.65633747],[4.53575875,0.03364366,99.65607546],[4.53575828,0.03364192,99.65581305],[4.53575781,0.03364018,99.65555023],[4.53575733,0.03363844,99.65528703],[4.53575686,0.03363671,99.65502346],[4.53575639,0.03363497,99.65475952],[4.53575592,0.03363323,99.65449524],[4.53575545,0.03363149,99.65423061],[4.53575497,0.03362975,99.65396565],[4.5357545,0.03362801,99.65370037],[4.53575403,0.03362627,99.65343479],[4.53575356,0.03362453,99.65316891],[4.53575309,0.03362279,99.65290274],[4.53575262,0.03362105,99.6526363],[4.53575215,0.03361931,99.65236959],[4.53575167,0.03361758,99.65210262],[4.5357512,0.03361584,99.65183542],[4.53575073,0.0336141,99.65156798],[4.53575026,0.03361236,99.65130032],[4.53574979,0.03361062,99.65103245],[4.53574932,0.03360888,99.65076438],[4.53574885,0.03360714,99.65049612],[4.53574838,0.0336054,99.65022768],[4.53574791,0.03360366,99.64995908],[4.53574744,0.03360193,99.64969032],[4.53574697,0.03360019,99.64942142],[4.5357465,0.03359845,99.64915238],[4.53574603,0.03359671,99.64888322],[4.53574556,0.03359497,99.64861395],[4.53574509,0.03359323,99.64834457],[4.53574462,0.03359149,99.64807511],[4.53574415,0.03358975,99.64780557],[4.53574368,0.03358801,99.64753596],[4.53574321,0.03358627,99.6472663],[4.53574275,0.03358453,99.64699659],[4.53574228,0.03358279,99.64672685],[4.53574214,0.03358228,99.64664749],[4.53574516,0.03358144,99.65473039],[4.5357453,0.03358195,99.65480857],[4.53574577,0.03358369,99.6550743],[4.53574624,0.03358543,99.65534],[4.53574671,0.03358717,99.65560567],[4.53574718,0.03358891,99.65587128],[4.53574764,0.03359065,99.65613683],[4.53574811,0.03359239,99.65640231],[4.53574858,0.03359413,99.6566677],[4.53574905,0.03359587,99.656933],[4.53574952,0.03359761,99.6571982],[4.53574999,0.03359935,99.65746328],[4.53575046,0.03360109,99.65772823],[4.53575093,0.03360283,99.65799304],[4.5357514,0.03360457,99.65825771],[4.53575187,0.03360631,99.65852221],[4.53575234,0.03360805,99.65878655],[4.53575282,0.03360979,99.6590507],[4.53575329,0.03361153,99.65931466],[4.53575376,0.03361326,99.65957842],[4.53575423,0.033615,99.65984197],[4.5357547,0.03361674,99.66010529],[4.53575517,0.03361848,99.66036837],[4.53575564,0.03362022,99.66063121],[4.53575611,0.03362196,99.66089379],[4.53575658,0.0336237,99.66115611],[4.53575705,0.03362544,99.66141815],[4.53575753,0.03362718,99.66167989],[4.535758,0.03362892,99.66194134],[4.53575847,0.03363065,99.66220248],[4.53575894,0.03363239,99.6624633],[4.53575941,0.03363413,99.66272379],[4.53575989,0.03363587,99.66298393],[4.53576036,0.03363761,99.66324373],[4.53576083,0.03363935,99.66350315],[4.5357613,0.03364109,99.66376221],[4.53576177,0.03364283,99.66402087],[4.53576225,0.03364457,99.66427914],[4.53576272,0.03364631,99.664537],[4.53576319,0.03364804,99.66479443],[4.53576366,0.03364978,99.66505143],[4.53576414,0.03365152,99.66530799],[4.53576461,0.03365326,99.66556409],[4.53576508,0.033655,99.66581972],[4.53576556,0.03365674,99.66607487],[4.53576603,0.03365848,99.66632953],[4.5357665,0.03366022,99.66658368],[4.53576697,0.03366196,99.66683732],[4.53576745,0.03366369,99.66709044],[4.53576792,0.03366543,99.66734301],[4.53576839,0.03366717,99.66759504],[4.53576887,0.03366891,99.66784651],[4.53576934,0.03367065,99.66809741],[4.53576981,0.03367239,99.66834772],[4.53577028,0.03367413,99.66859744],[4.53577076,0.03367587,99.66884655],[4.53577123,0.0336776,99.66909504],[4.5357717,0.03367934,99.66934291],[4.53577218,0.03368108,99.66959014],[4.53577265,0.03368282,99.66983671],[4.53577312,0.03368456,99.67008262],[4.53577359,0.0336863,99.67032786],[4.53577407,0.03368804,99.67057242],[4.53577454,0.03368978,99.67081627],[4.53577501,0.03369152,99.67105942],[4.53577549,0.03369325,99.67130185],[4.53577596,0.03369499,99.67154356],[4.53577643,0.03369673,99.67178451],[4.5357769,0.03369847,99.67202472],[4.53577738,0.03370021,99.67226417],[4.53577785,0.03370195,99.67250283],[4.53577832,0.03370369,99.67274072],[4.5357788,0.03370543,99.6729778],[4.53577927,0.03370717,99.67321408],[4.53577974,0.03370891,99.67344954],[4.53578021,0.03371064,99.67368417],[4.53578069,0.03371238,99.67391795],[4.53578116,0.03371412,99.67415089],[4.53578163,0.03371586,99.67438296],[4.5357821,0.0337176,99.67461416],[4.53578257,0.03371934,99.67484447],[4.53578305,0.03372108,99.67507388],[4.53578352,0.03372282,99.67530239],[4.53578399,0.03372456,99.67552998],[4.53578446,0.0337263,99.67575664],[4.53578493,0.03372804,99.67598235],[4.53578541,0.03372977,99.67620712],[4.53578588,0.03373151,99.67643093],[4.53578635,0.03373325,99.67665376],[4.53578682,0.03373499,99.6768756],[4.53578729,0.03373673,99.67709646],[4.53578776,0.03373847,99.6773163],[4.53578823,0.03374021,99.67753513],[4.5357887,0.03374195,99.67775293],[4.53578918,0.03374369,99.67796969],[4.53578965,0.03374543,99.67818541],[4.53579012,0.03374717,99.67840006],[4.53579059,0.03374891,99.67861364],[4.53579106,0.03375065,99.67882614],[4.53579153,0.03375239,99.67903754],[4.535792,0.03375413,99.67924784],[4.53579247,0.03375587,99.67945703],[4.53579294,0.03375761,99.67966509],[4.53579341,0.03375935,99.67987202],[4.53579388,0.03376109,99.6800778],[4.53579435,0.03376283,99.68028242],[4.53579482,0.03376457,99.68048587],[4.53579529,0.03376631,99.68068814],[4.53579575,0.03376805,99.68088922],[4.53579622,0.03376979,99.6810891],[4.53579669,0.03377153,99.68128777],[4.53579716,0.03377327,99.68148522],[4.53579763,0.03377501,99.68168143],[4.5357981,0.03377675,99.6818764],[4.53579857,0.03377849,99.68207012],[4.53579903,0.03378023,99.68226259],[4.5357995,0.03378197,99.68245382],[4.53579997,0.03378371,99.68264381],[4.53580044,0.03378545,99.68283257],[4.5358009,0.03378719,99.6830201],[4.53580137,0.03378893,99.68320643],[4.53580184,0.03379067,99.68339154],[4.5358023,0.03379241,99.68357546],[4.53580277,0.03379415,99.6837582],[4.53580324,0.03379589,99.68393976],[4.5358037,0.03379764,99.68412015],[4.53580417,0.03379938,99.6842994],[4.53580464,0.03380112,99.6844775],[4.5358051,0.03380286,99.68465447],[4.53580557,0.0338046,99.68483032],[4.53580603,0.03380634,99.68500506],[4.5358065,0.03380808,99.6851787],[4.53580696,0.03380982,99.68535124],[4.53580743,0.03381156,99.68552271],[4.5358079,0.0338133,99.68569311],[4.53580836,0.03381505,99.68586245],[4.53580883,0.03381679,99.68603074],[4.53580929,0.03381853,99.68619799],[4.53580976,0.03382027,99.68636421],[4.53581022,0.03382201,99.68652942],[4.53581069,0.03382375,99.68669362],[4.53581115,0.03382549,99.68685682],[4.53581162,0.03382723,99.68701903],[4.53581208,0.03382897,99.68718027],[4.53581255,0.03383072,99.68734054],[4.53581301,0.03383246,99.68749985],[4.53581348,0.0338342,99.68765822],[4.53581394,0.03383594,99.68781566],[4.53581441,0.03383768,99.68797218],[4.53581487,0.03383942,99.6881278],[4.53581534,0.03384116,99.68828254],[4.5358158,0.0338429,99.68843642],[4.53581627,0.03384465,99.68858946],[4.53581673,0.03384639,99.68874167],[4.5358172,0.03384813,99.68889307],[4.53581767,0.03384987,99.68904367],[4.53581813,0.03385161,99.6891935],[4.5358186,0.03385335,99.68934258],[4.53581906,0.03385509,99.68949091],[4.53581953,0.03385683,99.68963852],[4.53581999,0.03385857,99.68978543],[4.53582046,0.03386032,99.68993165],[4.53582093,0.03386206,99.6900772],[4.53582139,0.0338638,99.69022209],[4.53582186,0.03386554,99.69036635],[4.53582232,0.03386728,99.69051],[4.53582279,0.03386902,99.69065304],[4.53582326,0.03387076,99.69079549],[4.53582373,0.0338725,99.69093737],[4.53582419,0.03387424,99.69107865],[4.53582466,0.03387598,99.69121933],[4.53582513,0.03387772,99.69135939],[4.53582559,0.03387946,99.69149883],[4.53582606,0.0338812,99.69163763],[4.53582653,0.03388295,99.69177578],[4.535827,0.03388469,99.69191327],[4.53582747,0.03388643,99.69205009],[4.53582794,0.03388817,99.69218622],[4.5358284,0.03388991,99.69232166],[4.53582887,0.03389165,99.69245639],[4.53582934,0.03389339,99.6925904],[4.53582981,0.03389513,99.69272369],[4.53583028,0.03389687,99.69285623],[4.53583075,0.03389861,99.69298802],[4.53583122,0.03390035,99.69311905],[4.53583169,0.03390209,99.6932493],[4.53583216,0.03390383,99.69337877],[4.53583263,0.03390557,99.69350744],[4.5358331,0.03390731,99.6936353],[4.53583357,0.03390905,99.69376235],[4.53583404,0.03391079,99.69388856],[4.53583451,0.03391253,99.69401393],[4.53583498,0.03391427,99.69413845],[4.53583545,0.03391601,99.6942621],[4.53583592,0.03391775,99.69438487],[4.53583639,0.03391949,99.69450676],[4.53583686,0.03392123,99.69462773],[4.53583733,0.03392297,99.69474778],[4.5358378,0.03392471,99.69486688],[4.53583827,0.03392645,99.69498501],[4.53583874,0.03392819,99.69510216],[4.53583921,0.03392993,99.69521832],[4.53583968,0.03393167,99.69533345],[4.53584015,0.03393341,99.69544755],[4.53584062,0.03393515,99.69556059],[4.53584109,0.03393689,99.69567256],[4.53584156,0.03393863,99.69578344],[4.53584204,0.03394037,99.69589321],[4.53584251,0.03394211,99.69600186],[4.53584298,0.03394385,99.69610936],[4.53584345,0.03394559,99.69621569],[4.53584392,0.03394733,99.69632085],[4.53584439,0.03394906,99.69642481],[4.53584486,0.0339508,99.69652755],[4.53584533,0.03395254,99.69662906],[4.5358458,0.03395428,99.69672932],[4.53584627,0.03395602,99.6968283],[4.53584674,0.03395776,99.696926],[4.53584721,0.0339595,99.69702239],[4.53584769,0.03396124,99.69711745],[4.53584816,0.03396298,99.69721118],[4.53584863,0.03396472,99.69730354],[4.5358491,0.03396646,99.69739452],[4.53584957,0.0339682,99.69748411],[4.53585004,0.03396994,99.69757229],[4.53585051,0.03397168,99.69765903],[4.53585098,0.03397342,99.69774432],[4.53585145,0.03397516,99.69782814],[4.53585192,0.0339769,99.69791047],[4.53585239,0.03397864,99.6979913],[4.53585286,0.03398038,99.69807061],[4.53585333,0.03398212,99.69814837],[4.53585379,0.03398386,99.69822458],[4.53585426,0.0339856,99.69829923],[4.53585473,0.03398735,99.69837234],[4.5358552,0.03398909,99.69844392],[4.53585567,0.03399083,99.69851399],[4.53585614,0.03399257,99.69858257],[4.53585661,0.03399431,99.69864968],[4.53585708,0.03399605,99.69871534],[4.53585755,0.03399779,99.69877956],[4.53585801,0.03399953,99.69884235],[4.53585848,0.03400127,99.69890375],[4.53585895,0.03400301,99.69896376],[4.53585942,0.03400475,99.6990224],[4.53585989,0.03400649,99.69907969],[4.53586036,0.03400823,99.69913565],[4.53586082,0.03400997,99.69919029],[4.53586129,0.03401171,99.69924363],[4.53586176,0.03401345,99.69929569],[4.53586223,0.03401519,99.69934649],[4.5358627,0.03401693,99.69939605],[4.53586316,0.03401868,99.69944437],[4.53586363,0.03402042,99.69949149],[4.5358641,0.03402216,99.69953741],[4.53586457,0.0340239,99.69958216],[4.53586504,0.03402564,99.69962575],[4.53586551,0.03402738,99.69966819],[4.53586597,0.03402912,99.69970952],[4.53586644,0.03403086,99.69974974],[4.53586691,0.0340326,99.69978888],[4.53586738,0.03403434,99.69982695],[4.53586785,0.03403608,99.69986396],[4.53586832,0.03403782,99.69989995],[4.53586879,0.03403956,99.69993491],[4.53586926,0.0340413,99.69996888],[4.53586973,0.03404304,99.70000187],[4.5358702,0.03404478,99.7000339],[4.53587067,0.03404652,99.70006499],[4.53587114,0.03404826,99.70009515],[4.53587161,0.03405,99.7001244],[4.53587208,0.03405174,99.70015276],[4.53587255,0.03405348,99.70018025],[4.53587302,0.03405522,99.70020689],[4.53587349,0.03405696,99.70023269],[4.53587396,0.0340587,99.70025768],[4.53587443,0.03406044,99.70028187],[4.5358749,0.03406218,99.70030528],[4.53587537,0.03406392,99.70032793],[4.53587585,0.03406566,99.70034983],[4.53587632,0.0340674,99.70037101],[4.53587679,0.03406914,99.70039149],[4.53587726,0.03407088,99.70041128],[4.53587774,0.03407262,99.7004304],[4.53587821,0.03407436,99.70044887],[4.53587868,0.0340761,99.70046671],[4.53587916,0.03407784,99.70048394],[4.53587613,0.03407866,99.69281324]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.0,"weight":"standard","type":"curb","height":0.0}],"successorId":-4,"level":false,"materials":[{"surface":"spec_concrete_3d","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-4,"type":"border","predecessorId":-4,"sOffset":525.6514438035}},{"geometry":{"coordinates":[[[4.53587916,0.03407784,99.70048394],[4.53587868,0.0340761,99.70046671],[4.53587821,0.03407436,99.70044887],[4.53587774,0.03407262,99.7004304],[4.53587726,0.03407088,99.70041128],[4.53587679,0.03406914,99.70039149],[4.53587632,0.0340674,99.70037101],[4.53587585,0.03406566,99.70034983],[4.53587537,0.03406392,99.70032793],[4.5358749,0.03406218,99.70030528],[4.53587443,0.03406044,99.70028187],[4.53587396,0.0340587,99.70025768],[4.53587349,0.03405696,99.70023269],[4.53587302,0.03405522,99.70020689],[4.53587255,0.03405348,99.70018025],[4.53587208,0.03405174,99.70015276],[4.53587161,0.03405,99.7001244],[4.53587114,0.03404826,99.70009515],[4.53587067,0.03404652,99.70006499],[4.5358702,0.03404478,99.7000339],[4.53586973,0.03404304,99.70000187],[4.53586926,0.0340413,99.69996888],[4.53586879,0.03403956,99.69993491],[4.53586832,0.03403782,99.69989995],[4.53586785,0.03403608,99.69986396],[4.53586738,0.03403434,99.69982695],[4.53586691,0.0340326,99.69978888],[4.53586644,0.03403086,99.69974974],[4.53586597,0.03402912,99.69970952],[4.53586551,0.03402738,99.69966819],[4.53586504,0.03402564,99.69962575],[4.53586457,0.0340239,99.69958216],[4.5358641,0.03402216,99.69953741],[4.53586363,0.03402042,99.69949149],[4.53586316,0.03401868,99.69944437],[4.5358627,0.03401693,99.69939605],[4.53586223,0.03401519,99.69934649],[4.53586176,0.03401345,99.69929569],[4.53586129,0.03401171,99.69924363],[4.53586082,0.03400997,99.69919029],[4.53586036,0.03400823,99.69913565],[4.53585989,0.03400649,99.69907969],[4.53585942,0.03400475,99.6990224],[4.53585895,0.03400301,99.69896376],[4.53585848,0.03400127,99.69890375],[4.53585801,0.03399953,99.69884235],[4.53585755,0.03399779,99.69877956],[4.53585708,0.03399605,99.69871534],[4.53585661,0.03399431,99.69864968],[4.53585614,0.03399257,99.69858257],[4.53585567,0.03399083,99.69851399],[4.5358552,0.03398909,99.69844392],[4.53585473,0.03398735,99.69837234],[4.53585426,0.0339856,99.69829923],[4.53585379,0.03398386,99.69822458],[4.53585333,0.03398212,99.69814837],[4.53585286,0.03398038,99.69807061],[4.53585239,0.03397864,99.6979913],[4.53585192,0.0339769,99.69791047],[4.53585145,0.03397516,99.69782814],[4.53585098,0.03397342,99.69774432],[4.53585051,0.03397168,99.69765903],[4.53585004,0.03396994,99.69757229],[4.53584957,0.0339682,99.69748411],[4.5358491,0.03396646,99.69739452],[4.53584863,0.03396472,99.69730354],[4.53584816,0.03396298,99.69721118],[4.53584769,0.03396124,99.69711745],[4.53584721,0.0339595,99.69702239],[4.53584674,0.03395776,99.696926],[4.53584627,0.03395602,99.6968283],[4.5358458,0.03395428,99.69672932],[4.53584533,0.03395254,99.69662906],[4.53584486,0.0339508,99.69652755],[4.53584439,0.03394906,99.69642481],[4.53584392,0.03394733,99.69632085],[4.53584345,0.03394559,99.69621569],[4.53584298,0.03394385,99.69610936],[4.53584251,0.03394211,99.69600186],[4.53584204,0.03394037,99.69589321],[4.53584156,0.03393863,99.69578344],[4.53584109,0.03393689,99.69567256],[4.53584062,0.03393515,99.69556059],[4.53584015,0.03393341,99.69544755],[4.53583968,0.03393167,99.69533345],[4.53583921,0.03392993,99.69521832],[4.53583874,0.03392819,99.69510216],[4.53583827,0.03392645,99.69498501],[4.5358378,0.03392471,99.69486688],[4.53583733,0.03392297,99.69474778],[4.53583686,0.03392123,99.69462773],[4.53583639,0.03391949,99.69450676],[4.53583592,0.03391775,99.69438487],[4.53583545,0.03391601,99.6942621],[4.53583498,0.03391427,99.69413845],[4.53583451,0.03391253,99.69401393],[4.53583404,0.03391079,99.69388856],[4.53583357,0.03390905,99.69376235],[4.5358331,0.03390731,99.6936353],[4.53583263,0.03390557,99.69350744],[4.53583216,0.03390383,99.69337877],[4.53583169,0.03390209,99.6932493],[4.53583122,0.03390035,99.69311905],[4.53583075,0.03389861,99.69298802],[4.53583028,0.03389687,99.69285623],[4.53582981,0.03389513,99.69272369],[4.53582934,0.03389339,99.6925904],[4.53582887,0.03389165,99.69245639],[4.5358284,0.03388991,99.69232166],[4.53582794,0.03388817,99.69218622],[4.53582747,0.03388643,99.69205009],[4.535827,0.03388469,99.69191327],[4.53582653,0.03388295,99.69177578],[4.53582606,0.0338812,99.69163763],[4.53582559,0.03387946,99.69149883],[4.53582513,0.03387772,99.69135939],[4.53582466,0.03387598,99.69121933],[4.53582419,0.03387424,99.69107865],[4.53582373,0.0338725,99.69093737],[4.53582326,0.03387076,99.69079549],[4.53582279,0.03386902,99.69065304],[4.53582232,0.03386728,99.69051],[4.53582186,0.03386554,99.69036635],[4.53582139,0.0338638,99.69022209],[4.53582093,0.03386206,99.6900772],[4.53582046,0.03386032,99.68993165],[4.53581999,0.03385857,99.68978543],[4.53581953,0.03385683,99.68963852],[4.53581906,0.03385509,99.68949091],[4.5358186,0.03385335,99.68934258],[4.53581813,0.03385161,99.6891935],[4.53581767,0.03384987,99.68904367],[4.5358172,0.03384813,99.68889307],[4.53581673,0.03384639,99.68874167],[4.53581627,0.03384465,99.68858946],[4.5358158,0.0338429,99.68843642],[4.53581534,0.03384116,99.68828254],[4.53581487,0.03383942,99.6881278],[4.53581441,0.03383768,99.68797218],[4.53581394,0.03383594,99.68781566],[4.53581348,0.0338342,99.68765822],[4.53581301,0.03383246,99.68749985],[4.53581255,0.03383072,99.68734054],[4.53581208,0.03382897,99.68718027],[4.53581162,0.03382723,99.68701903],[4.53581115,0.03382549,99.68685682],[4.53581069,0.03382375,99.68669362],[4.53581022,0.03382201,99.68652942],[4.53580976,0.03382027,99.68636421],[4.53580929,0.03381853,99.68619799],[4.53580883,0.03381679,99.68603074],[4.53580836,0.03381505,99.68586245],[4.5358079,0.0338133,99.68569311],[4.53580743,0.03381156,99.68552271],[4.53580696,0.03380982,99.68535124],[4.5358065,0.03380808,99.6851787],[4.53580603,0.03380634,99.68500506],[4.53580557,0.0338046,99.68483032],[4.5358051,0.03380286,99.68465447],[4.53580464,0.03380112,99.6844775],[4.53580417,0.03379938,99.6842994],[4.5358037,0.03379764,99.68412015],[4.53580324,0.03379589,99.68393976],[4.53580277,0.03379415,99.6837582],[4.5358023,0.03379241,99.68357546],[4.53580184,0.03379067,99.68339154],[4.53580137,0.03378893,99.68320643],[4.5358009,0.03378719,99.6830201],[4.53580044,0.03378545,99.68283257],[4.53579997,0.03378371,99.68264381],[4.5357995,0.03378197,99.68245382],[4.53579903,0.03378023,99.68226259],[4.53579857,0.03377849,99.68207012],[4.5357981,0.03377675,99.6818764],[4.53579763,0.03377501,99.68168143],[4.53579716,0.03377327,99.68148522],[4.53579669,0.03377153,99.68128777],[4.53579622,0.03376979,99.6810891],[4.53579575,0.03376805,99.68088922],[4.53579529,0.03376631,99.68068814],[4.53579482,0.03376457,99.68048587],[4.53579435,0.03376283,99.68028242],[4.53579388,0.03376109,99.6800778],[4.53579341,0.03375935,99.67987202],[4.53579294,0.03375761,99.67966509],[4.53579247,0.03375587,99.67945703],[4.535792,0.03375413,99.67924784],[4.53579153,0.03375239,99.67903754],[4.53579106,0.03375065,99.67882614],[4.53579059,0.03374891,99.67861364],[4.53579012,0.03374717,99.67840006],[4.53578965,0.03374543,99.67818541],[4.53578918,0.03374369,99.67796969],[4.5357887,0.03374195,99.67775293],[4.53578823,0.03374021,99.67753513],[4.53578776,0.03373847,99.6773163],[4.53578729,0.03373673,99.67709646],[4.53578682,0.03373499,99.6768756],[4.53578635,0.03373325,99.67665376],[4.53578588,0.03373151,99.67643093],[4.53578541,0.03372977,99.67620712],[4.53578493,0.03372804,99.67598235],[4.53578446,0.0337263,99.67575664],[4.53578399,0.03372456,99.67552998],[4.53578352,0.03372282,99.67530239],[4.53578305,0.03372108,99.67507388],[4.53578257,0.03371934,99.67484447],[4.5357821,0.0337176,99.67461416],[4.53578163,0.03371586,99.67438296],[4.53578116,0.03371412,99.67415089],[4.53578069,0.03371238,99.67391795],[4.53578021,0.03371064,99.67368417],[4.53577974,0.03370891,99.67344954],[4.53577927,0.03370717,99.67321408],[4.5357788,0.03370543,99.6729778],[4.53577832,0.03370369,99.67274072],[4.53577785,0.03370195,99.67250283],[4.53577738,0.03370021,99.67226417],[4.5357769,0.03369847,99.67202472],[4.53577643,0.03369673,99.67178451],[4.53577596,0.03369499,99.67154356],[4.53577549,0.03369325,99.67130185],[4.53577501,0.03369152,99.67105942],[4.53577454,0.03368978,99.67081627],[4.53577407,0.03368804,99.67057242],[4.53577359,0.0336863,99.67032786],[4.53577312,0.03368456,99.67008262],[4.53577265,0.03368282,99.66983671],[4.53577218,0.03368108,99.66959014],[4.5357717,0.03367934,99.66934291],[4.53577123,0.0336776,99.66909504],[4.53577076,0.03367587,99.66884655],[4.53577028,0.03367413,99.66859744],[4.53576981,0.03367239,99.66834772],[4.53576934,0.03367065,99.66809741],[4.53576887,0.03366891,99.66784651],[4.53576839,0.03366717,99.66759504],[4.53576792,0.03366543,99.66734301],[4.53576745,0.03366369,99.66709044],[4.53576697,0.03366196,99.66683732],[4.5357665,0.03366022,99.66658368],[4.53576603,0.03365848,99.66632953],[4.53576556,0.03365674,99.66607487],[4.53576508,0.033655,99.66581972],[4.53576461,0.03365326,99.66556409],[4.53576414,0.03365152,99.66530799],[4.53576366,0.03364978,99.66505143],[4.53576319,0.03364804,99.66479443],[4.53576272,0.03364631,99.664537],[4.53576225,0.03364457,99.66427914],[4.53576177,0.03364283,99.66402087],[4.5357613,0.03364109,99.66376221],[4.53576083,0.03363935,99.66350315],[4.53576036,0.03363761,99.66324373],[4.53575989,0.03363587,99.66298393],[4.53575941,0.03363413,99.66272379],[4.53575894,0.03363239,99.6624633],[4.53575847,0.03363065,99.66220248],[4.535758,0.03362892,99.66194134],[4.53575753,0.03362718,99.66167989],[4.53575705,0.03362544,99.66141815],[4.53575658,0.0336237,99.66115611],[4.53575611,0.03362196,99.66089379],[4.53575564,0.03362022,99.66063121],[4.53575517,0.03361848,99.66036837],[4.5357547,0.03361674,99.66010529],[4.53575423,0.033615,99.65984197],[4.53575376,0.03361326,99.65957842],[4.53575329,0.03361153,99.65931466],[4.53575282,0.03360979,99.6590507],[4.53575234,0.03360805,99.65878655],[4.53575187,0.03360631,99.65852221],[4.5357514,0.03360457,99.65825771],[4.53575093,0.03360283,99.65799304],[4.53575046,0.03360109,99.65772823],[4.53574999,0.03359935,99.65746328],[4.53574952,0.03359761,99.6571982],[4.53574905,0.03359587,99.656933],[4.53574858,0.03359413,99.6566677],[4.53574811,0.03359239,99.65640231],[4.53574764,0.03359065,99.65613683],[4.53574718,0.03358891,99.65587128],[4.53574671,0.03358717,99.65560567],[4.53574624,0.03358543,99.65534],[4.53574577,0.03358369,99.6550743],[4.5357453,0.03358195,99.65480857],[4.53574516,0.03358144,99.65473039],[4.5357621,0.03357676,99.70002627],[4.53576224,0.03357727,99.70010438],[4.53576272,0.03357901,99.70036969],[4.5357632,0.03358074,99.70063471],[4.53576367,0.03358248,99.70089944],[4.53576415,0.03358422,99.70116385],[4.53576463,0.03358596,99.70142795],[4.53576511,0.0335877,99.70169173],[4.53576558,0.03358943,99.70195518],[4.53576606,0.03359117,99.70221829],[4.53576654,0.03359291,99.70248106],[4.53576701,0.03359465,99.70274348],[4.53576749,0.03359638,99.70300554],[4.53576797,0.03359812,99.70326723],[4.53576845,0.03359986,99.70352855],[4.53576892,0.0336016,99.70378949],[4.5357694,0.03360334,99.70405005],[4.53576988,0.03360507,99.70431021],[4.53577036,0.03360681,99.70456997],[4.53577083,0.03360855,99.70482932],[4.53577131,0.03361028,99.70508826],[4.53577179,0.03361202,99.70534677],[4.53577227,0.03361376,99.70560485],[4.53577274,0.0336155,99.7058625],[4.53577322,0.03361723,99.70611971],[4.5357737,0.03361897,99.70637646],[4.53577418,0.03362071,99.70663276],[4.53577466,0.03362245,99.70688859],[4.53577513,0.03362419,99.70714395],[4.53577561,0.03362592,99.70739883],[4.53577609,0.03362766,99.70765322],[4.53577657,0.0336294,99.70790713],[4.53577704,0.03363114,99.70816053],[4.53577752,0.03363287,99.70841343],[4.535778,0.03363461,99.70866581],[4.53577848,0.03363635,99.70891767],[4.53577896,0.03363809,99.70916899],[4.53577943,0.03363983,99.70941978],[4.53577991,0.03364156,99.70967003],[4.53578039,0.0336433,99.70991971],[4.53578087,0.03364504,99.71016884],[4.53578134,0.03364678,99.71041739],[4.53578182,0.03364851,99.71066537],[4.5357823,0.03365025,99.71091276],[4.53578278,0.03365199,99.71115955],[4.53578325,0.03365373,99.71140574],[4.53578373,0.03365547,99.71165132],[4.53578421,0.0336572,99.71189628],[4.53578469,0.03365894,99.71214061],[4.53578516,0.03366068,99.71238431],[4.53578564,0.03366242,99.71262736],[4.53578612,0.03366416,99.71286977],[4.5357866,0.03366589,99.71311151],[4.53578707,0.03366763,99.71335259],[4.53578755,0.03366937,99.713593],[4.53578803,0.03367111,99.71383272],[4.5357885,0.03367285,99.71407176],[4.53578898,0.03367458,99.71431009],[4.53578946,0.03367632,99.71454772],[4.53578994,0.03367806,99.71478464],[4.53579041,0.0336798,99.71502083],[4.53579089,0.03368154,99.7152563],[4.53579137,0.03368327,99.71549102],[4.53579184,0.03368501,99.71572501],[4.53579232,0.03368675,99.71595824],[4.5357928,0.03368849,99.71619071],[4.53579327,0.03369023,99.71642241],[4.53579375,0.03369196,99.71665333],[4.53579423,0.0336937,99.71688348],[4.5357947,0.03369544,99.71711283],[4.53579518,0.03369718,99.71734138],[4.53579566,0.03369892,99.71756912],[4.53579613,0.03370066,99.71779605],[4.53579661,0.03370239,99.71802216],[4.53579708,0.03370413,99.71824744],[4.53579756,0.03370587,99.71847188],[4.53579803,0.03370761,99.71869547],[4.53579851,0.03370935,99.71891821],[4.53579899,0.03371109,99.71914009],[4.53579946,0.03371283,99.7193611],[4.53579994,0.03371456,99.71958124],[4.53580041,0.0337163,99.71980049],[4.53580089,0.03371804,99.72001885],[4.53580136,0.03371978,99.72023631],[4.53580184,0.03372152,99.72045287],[4.53580231,0.03372326,99.72066851],[4.53580279,0.033725,99.72088323],[4.53580326,0.03372673,99.72109702],[4.53580374,0.03372847,99.72130987],[4.53580421,0.03373021,99.72152178],[4.53580468,0.03373195,99.72173273],[4.53580516,0.03373369,99.72194273],[4.53580563,0.03373543,99.72215176],[4.53580611,0.03373717,99.72235981],[4.53580658,0.03373891,99.72256688],[4.53580705,0.03374065,99.72277296],[4.53580753,0.03374238,99.72297805],[4.535808,0.03374412,99.72318212],[4.53580847,0.03374586,99.72338519],[4.53580895,0.0337476,99.72358723],[4.53580942,0.03374934,99.72378825],[4.53580989,0.03375108,99.72398823],[4.53581037,0.03375282,99.72418717],[4.53581084,0.03375456,99.72438506],[4.53581131,0.0337563,99.72458189],[4.53581178,0.03375804,99.72477766],[4.53581226,0.03375978,99.72497235],[4.53581273,0.03376152,99.72516596],[4.5358132,0.03376326,99.72535849],[4.53581367,0.033765,99.72554992],[4.53581414,0.03376674,99.72574024],[4.53581461,0.03376848,99.72592946],[4.53581508,0.03377022,99.72611755],[4.53581556,0.03377195,99.72630453],[4.53581603,0.03377369,99.72649037],[4.5358165,0.03377543,99.72667509],[4.53581697,0.03377717,99.72685869],[4.53581744,0.03377891,99.72704119],[4.53581791,0.03378065,99.7272226],[4.53581838,0.03378239,99.72740292],[4.53581885,0.03378413,99.72758216],[4.53581932,0.03378587,99.72776034],[4.53581979,0.03378762,99.72793748],[4.53582026,0.03378936,99.72811358],[4.53582073,0.0337911,99.72828866],[4.5358212,0.03379284,99.72846274],[4.53582167,0.03379458,99.72863582],[4.53582213,0.03379632,99.72880793],[4.5358226,0.03379806,99.72897907],[4.53582307,0.0337998,99.72914926],[4.53582354,0.03380154,99.72931851],[4.53582401,0.03380328,99.72948684],[4.53582448,0.03380502,99.72965425],[4.53582495,0.03380676,99.72982077],[4.53582542,0.0338085,99.72998641],[4.53582588,0.03381024,99.73015118],[4.53582635,0.03381198,99.73031509],[4.53582682,0.03381372,99.73047816],[4.53582729,0.03381546,99.7306404],[4.53582776,0.0338172,99.73080183],[4.53582823,0.03381894,99.73096245],[4.5358287,0.03382068,99.73112229],[4.53582916,0.03382242,99.73128135],[4.53582963,0.03382416,99.73143965],[4.5358301,0.0338259,99.7315972],[4.53583057,0.03382765,99.73175401],[4.53583104,0.03382939,99.73191011],[4.53583151,0.03383113,99.73206549],[4.53583197,0.03383287,99.73222018],[4.53583244,0.03383461,99.73237419],[4.53583291,0.03383635,99.73252753],[4.53583338,0.03383809,99.73268022],[4.53583385,0.03383983,99.73283226],[4.53583432,0.03384157,99.73298368],[4.53583479,0.03384331,99.73313448],[4.53583526,0.03384505,99.73328468],[4.53583573,0.03384679,99.73343429],[4.53583619,0.03384853,99.73358332],[4.53583666,0.03385027,99.73373179],[4.53583713,0.03385201,99.73387971],[4.5358376,0.03385375,99.7340271],[4.53583807,0.03385549,99.73417396],[4.53583854,0.03385723,99.73432031],[4.53583901,0.03385897,99.73446617],[4.53583948,0.03386071,99.73461154],[4.53583995,0.03386245,99.73475644],[4.53584042,0.03386419,99.73490089],[4.53584089,0.03386593,99.73504489],[4.53584136,0.03386767,99.73518845],[4.53584183,0.03386941,99.73533154],[4.53584231,0.03387115,99.73547416],[4.53584278,0.03387289,99.73561629],[4.53584325,0.03387463,99.7357579],[4.53584372,0.03387637,99.735899],[4.53584419,0.03387811,99.73603955],[4.53584466,0.03387985,99.73617956],[4.53584513,0.03388159,99.73631899],[4.53584561,0.03388333,99.73645783],[4.53584608,0.03388507,99.73659608],[4.53584655,0.03388681,99.7367337],[4.53584702,0.03388855,99.7368707],[4.53584749,0.03389029,99.73700705],[4.53584797,0.03389203,99.73714273],[4.53584844,0.03389377,99.73727774],[4.53584891,0.03389551,99.73741205],[4.53584938,0.03389725,99.73754565],[4.53584986,0.03389899,99.73767853],[4.53585033,0.03390073,99.73781066],[4.5358508,0.03390247,99.73794204],[4.53585128,0.0339042,99.73807265],[4.53585175,0.03390594,99.73820247],[4.53585222,0.03390768,99.73833149],[4.53585269,0.03390942,99.7384597],[4.53585317,0.03391116,99.73858707],[4.53585364,0.0339129,99.73871359],[4.53585411,0.03391464,99.73883924],[4.53585459,0.03391638,99.738964],[4.53585506,0.03391812,99.73908785],[4.53585553,0.03391986,99.73921076],[4.53585601,0.0339216,99.73933272],[4.53585648,0.03392334,99.7394537],[4.53585695,0.03392508,99.73957367],[4.53585743,0.03392682,99.73969262],[4.5358579,0.03392856,99.73981052],[4.53585837,0.0339303,99.73992736],[4.53585884,0.03393204,99.7400431],[4.53585932,0.03393377,99.74015773],[4.53585979,0.03393551,99.74027123],[4.53586026,0.03393725,99.74038357],[4.53586073,0.03393899,99.74049473],[4.53586121,0.03394073,99.74060469],[4.53586168,0.03394247,99.74071342],[4.53586215,0.03394421,99.74082091],[4.53586262,0.03394595,99.74092713],[4.53586309,0.03394769,99.74103206],[4.53586357,0.03394943,99.74113567],[4.53586404,0.03395117,99.74123795],[4.53586451,0.03395291,99.74133888],[4.53586498,0.03395465,99.74143842],[4.53586545,0.03395639,99.74153656],[4.53586592,0.03395813,99.74163328],[4.53586639,0.03395987,99.74172855],[4.53586686,0.03396161,99.74182235],[4.53586734,0.03396335,99.74191466],[4.53586781,0.03396509,99.74200546],[4.53586828,0.03396683,99.74209472],[4.53586874,0.03396857,99.74218243],[4.53586921,0.03397031,99.74226855],[4.53586968,0.03397205,99.74235307],[4.53587015,0.03397379,99.74243596],[4.53587062,0.03397553,99.74251721],[4.53587109,0.03397727,99.74259678],[4.53587156,0.03397902,99.74267467],[4.53587203,0.03398076,99.74275085],[4.53587249,0.0339825,99.74282535],[4.53587296,0.03398424,99.74289818],[4.53587343,0.03398598,99.74296935],[4.5358739,0.03398772,99.74303888],[4.53587436,0.03398946,99.74310677],[4.53587483,0.0339912,99.74317304],[4.53587529,0.03399294,99.7432377],[4.53587576,0.03399469,99.74330077],[4.53587623,0.03399643,99.74336226],[4.53587669,0.03399817,99.74342217],[4.53587716,0.03399991,99.74348054],[4.53587762,0.03400165,99.74353735],[4.53587809,0.03400339,99.74359264],[4.53587855,0.03400514,99.74364642],[4.53587902,0.03400688,99.74369868],[4.53587948,0.03400862,99.74374946],[4.53587995,0.03401036,99.74379876],[4.53588041,0.0340121,99.74384659],[4.53588087,0.03401384,99.74389297],[4.53588134,0.03401559,99.74393791],[4.5358818,0.03401733,99.74398142],[4.53588226,0.03401907,99.74402351],[4.53588273,0.03402081,99.74406421],[4.53588319,0.03402255,99.74410352],[4.53588365,0.0340243,99.74414145],[4.53588412,0.03402604,99.74417802],[4.53588458,0.03402778,99.74421323],[4.53588504,0.03402952,99.74424712],[4.53588551,0.03403127,99.74427967],[4.53588597,0.03403301,99.74431092],[4.53588643,0.03403475,99.74434087],[4.53588689,0.03403649,99.74436953],[4.53588736,0.03403824,99.74439692],[4.53588782,0.03403998,99.74442305],[4.53588828,0.03404172,99.74444793],[4.53588874,0.03404346,99.74447158],[4.53588921,0.03404521,99.74449401],[4.53588967,0.03404695,99.74451523],[4.53589013,0.03404869,99.74453526],[4.53589059,0.03405043,99.74455411],[4.53589105,0.03405218,99.74457178],[4.53589152,0.03405392,99.7445883],[4.53589198,0.03405566,99.74460368],[4.53589244,0.0340574,99.74461793],[4.5358929,0.03405915,99.74463107],[4.53589336,0.03406089,99.7446431],[4.53589383,0.03406263,99.74465404],[4.53589429,0.03406437,99.74466391],[4.53589475,0.03406612,99.74467271],[4.53589521,0.03406786,99.74468046],[4.53589568,0.0340696,99.74468718],[4.53589614,0.03407134,99.74469287],[4.5358966,0.03407308,99.74469755],[4.53587916,0.03407784,99.70048394]]],"type":"Polygon"},"type":"feature","properties":{"successorId":-3,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-3,"type":"stop","predecessorId":-3,"sOffset":525.6514438035}},{"geometry":{"coordinates":[[[4.5358966,0.03407308,99.74469755],[4.53589614,0.03407134,99.74469287],[4.53589568,0.0340696,99.74468718],[4.53589521,0.03406786,99.74468046],[4.53589475,0.03406612,99.74467271],[4.53589429,0.03406437,99.74466391],[4.53589383,0.03406263,99.74465404],[4.53589336,0.03406089,99.7446431],[4.5358929,0.03405915,99.74463107],[4.53589244,0.0340574,99.74461793],[4.53589198,0.03405566,99.74460368],[4.53589152,0.03405392,99.7445883],[4.53589105,0.03405218,99.74457178],[4.53589059,0.03405043,99.74455411],[4.53589013,0.03404869,99.74453526],[4.53588967,0.03404695,99.74451523],[4.53588921,0.03404521,99.74449401],[4.53588874,0.03404346,99.74447158],[4.53588828,0.03404172,99.74444793],[4.53588782,0.03403998,99.74442305],[4.53588736,0.03403824,99.74439692],[4.53588689,0.03403649,99.74436953],[4.53588643,0.03403475,99.74434087],[4.53588597,0.03403301,99.74431092],[4.53588551,0.03403127,99.74427967],[4.53588504,0.03402952,99.74424712],[4.53588458,0.03402778,99.74421323],[4.53588412,0.03402604,99.74417802],[4.53588365,0.0340243,99.74414145],[4.53588319,0.03402255,99.74410352],[4.53588273,0.03402081,99.74406421],[4.53588226,0.03401907,99.74402351],[4.5358818,0.03401733,99.74398142],[4.53588134,0.03401559,99.74393791],[4.53588087,0.03401384,99.74389297],[4.53588041,0.0340121,99.74384659],[4.53587995,0.03401036,99.74379876],[4.53587948,0.03400862,99.74374946],[4.53587902,0.03400688,99.74369868],[4.53587855,0.03400514,99.74364642],[4.53587809,0.03400339,99.74359264],[4.53587762,0.03400165,99.74353735],[4.53587716,0.03399991,99.74348054],[4.53587669,0.03399817,99.74342217],[4.53587623,0.03399643,99.74336226],[4.53587576,0.03399469,99.74330077],[4.53587529,0.03399294,99.7432377],[4.53587483,0.0339912,99.74317304],[4.53587436,0.03398946,99.74310677],[4.5358739,0.03398772,99.74303888],[4.53587343,0.03398598,99.74296935],[4.53587296,0.03398424,99.74289818],[4.53587249,0.0339825,99.74282535],[4.53587203,0.03398076,99.74275085],[4.53587156,0.03397902,99.74267467],[4.53587109,0.03397727,99.74259678],[4.53587062,0.03397553,99.74251721],[4.53587015,0.03397379,99.74243596],[4.53586968,0.03397205,99.74235307],[4.53586921,0.03397031,99.74226855],[4.53586874,0.03396857,99.74218243],[4.53586828,0.03396683,99.74209472],[4.53586781,0.03396509,99.74200546],[4.53586734,0.03396335,99.74191466],[4.53586686,0.03396161,99.74182235],[4.53586639,0.03395987,99.74172855],[4.53586592,0.03395813,99.74163328],[4.53586545,0.03395639,99.74153656],[4.53586498,0.03395465,99.74143842],[4.53586451,0.03395291,99.74133888],[4.53586404,0.03395117,99.74123795],[4.53586357,0.03394943,99.74113567],[4.53586309,0.03394769,99.74103206],[4.53586262,0.03394595,99.74092713],[4.53586215,0.03394421,99.74082091],[4.53586168,0.03394247,99.74071342],[4.53586121,0.03394073,99.74060469],[4.53586073,0.03393899,99.74049473],[4.53586026,0.03393725,99.74038357],[4.53585979,0.03393551,99.74027123],[4.53585932,0.03393377,99.74015773],[4.53585884,0.03393204,99.7400431],[4.53585837,0.0339303,99.73992736],[4.5358579,0.03392856,99.73981052],[4.53585743,0.03392682,99.73969262],[4.53585695,0.03392508,99.73957367],[4.53585648,0.03392334,99.7394537],[4.53585601,0.0339216,99.73933272],[4.53585553,0.03391986,99.73921076],[4.53585506,0.03391812,99.73908785],[4.53585459,0.03391638,99.738964],[4.53585411,0.03391464,99.73883924],[4.53585364,0.0339129,99.73871359],[4.53585317,0.03391116,99.73858707],[4.53585269,0.03390942,99.7384597],[4.53585222,0.03390768,99.73833149],[4.53585175,0.03390594,99.73820247],[4.53585128,0.0339042,99.73807265],[4.5358508,0.03390247,99.73794204],[4.53585033,0.03390073,99.73781066],[4.53584986,0.03389899,99.73767853],[4.53584938,0.03389725,99.73754565],[4.53584891,0.03389551,99.73741205],[4.53584844,0.03389377,99.73727774],[4.53584797,0.03389203,99.73714273],[4.53584749,0.03389029,99.73700705],[4.53584702,0.03388855,99.7368707],[4.53584655,0.03388681,99.7367337],[4.53584608,0.03388507,99.73659608],[4.53584561,0.03388333,99.73645783],[4.53584513,0.03388159,99.73631899],[4.53584466,0.03387985,99.73617956],[4.53584419,0.03387811,99.73603955],[4.53584372,0.03387637,99.735899],[4.53584325,0.03387463,99.7357579],[4.53584278,0.03387289,99.73561629],[4.53584231,0.03387115,99.73547416],[4.53584183,0.03386941,99.73533154],[4.53584136,0.03386767,99.73518845],[4.53584089,0.03386593,99.73504489],[4.53584042,0.03386419,99.73490089],[4.53583995,0.03386245,99.73475644],[4.53583948,0.03386071,99.73461154],[4.53583901,0.03385897,99.73446617],[4.53583854,0.03385723,99.73432031],[4.53583807,0.03385549,99.73417396],[4.5358376,0.03385375,99.7340271],[4.53583713,0.03385201,99.73387971],[4.53583666,0.03385027,99.73373179],[4.53583619,0.03384853,99.73358332],[4.53583573,0.03384679,99.73343429],[4.53583526,0.03384505,99.73328468],[4.53583479,0.03384331,99.73313448],[4.53583432,0.03384157,99.73298368],[4.53583385,0.03383983,99.73283226],[4.53583338,0.03383809,99.73268022],[4.53583291,0.03383635,99.73252753],[4.53583244,0.03383461,99.73237419],[4.53583197,0.03383287,99.73222018],[4.53583151,0.03383113,99.73206549],[4.53583104,0.03382939,99.73191011],[4.53583057,0.03382765,99.73175401],[4.5358301,0.0338259,99.7315972],[4.53582963,0.03382416,99.73143965],[4.53582916,0.03382242,99.73128135],[4.5358287,0.03382068,99.73112229],[4.53582823,0.03381894,99.73096245],[4.53582776,0.0338172,99.73080183],[4.53582729,0.03381546,99.7306404],[4.53582682,0.03381372,99.73047816],[4.53582635,0.03381198,99.73031509],[4.53582588,0.03381024,99.73015118],[4.53582542,0.0338085,99.72998641],[4.53582495,0.03380676,99.72982077],[4.53582448,0.03380502,99.72965425],[4.53582401,0.03380328,99.72948684],[4.53582354,0.03380154,99.72931851],[4.53582307,0.0337998,99.72914926],[4.5358226,0.03379806,99.72897907],[4.53582213,0.03379632,99.72880793],[4.53582167,0.03379458,99.72863582],[4.5358212,0.03379284,99.72846274],[4.53582073,0.0337911,99.72828866],[4.53582026,0.03378936,99.72811358],[4.53581979,0.03378762,99.72793748],[4.53581932,0.03378587,99.72776034],[4.53581885,0.03378413,99.72758216],[4.53581838,0.03378239,99.72740292],[4.53581791,0.03378065,99.7272226],[4.53581744,0.03377891,99.72704119],[4.53581697,0.03377717,99.72685869],[4.5358165,0.03377543,99.72667509],[4.53581603,0.03377369,99.72649037],[4.53581556,0.03377195,99.72630453],[4.53581508,0.03377022,99.72611755],[4.53581461,0.03376848,99.72592946],[4.53581414,0.03376674,99.72574024],[4.53581367,0.033765,99.72554992],[4.5358132,0.03376326,99.72535849],[4.53581273,0.03376152,99.72516596],[4.53581226,0.03375978,99.72497235],[4.53581178,0.03375804,99.72477766],[4.53581131,0.0337563,99.72458189],[4.53581084,0.03375456,99.72438506],[4.53581037,0.03375282,99.72418717],[4.53580989,0.03375108,99.72398823],[4.53580942,0.03374934,99.72378825],[4.53580895,0.0337476,99.72358723],[4.53580847,0.03374586,99.72338519],[4.535808,0.03374412,99.72318212],[4.53580753,0.03374238,99.72297805],[4.53580705,0.03374065,99.72277296],[4.53580658,0.03373891,99.72256688],[4.53580611,0.03373717,99.72235981],[4.53580563,0.03373543,99.72215176],[4.53580516,0.03373369,99.72194273],[4.53580468,0.03373195,99.72173273],[4.53580421,0.03373021,99.72152178],[4.53580374,0.03372847,99.72130987],[4.53580326,0.03372673,99.72109702],[4.53580279,0.033725,99.72088323],[4.53580231,0.03372326,99.72066851],[4.53580184,0.03372152,99.72045287],[4.53580136,0.03371978,99.72023631],[4.53580089,0.03371804,99.72001885],[4.53580041,0.0337163,99.71980049],[4.53579994,0.03371456,99.71958124],[4.53579946,0.03371283,99.7193611],[4.53579899,0.03371109,99.71914009],[4.53579851,0.03370935,99.71891821],[4.53579803,0.03370761,99.71869547],[4.53579756,0.03370587,99.71847188],[4.53579708,0.03370413,99.71824744],[4.53579661,0.03370239,99.71802216],[4.53579613,0.03370066,99.71779605],[4.53579566,0.03369892,99.71756912],[4.53579518,0.03369718,99.71734138],[4.5357947,0.03369544,99.71711283],[4.53579423,0.0336937,99.71688348],[4.53579375,0.03369196,99.71665333],[4.53579327,0.03369023,99.71642241],[4.5357928,0.03368849,99.71619071],[4.53579232,0.03368675,99.71595824],[4.53579184,0.03368501,99.71572501],[4.53579137,0.03368327,99.71549102],[4.53579089,0.03368154,99.7152563],[4.53579041,0.0336798,99.71502083],[4.53578994,0.03367806,99.71478464],[4.53578946,0.03367632,99.71454772],[4.53578898,0.03367458,99.71431009],[4.5357885,0.03367285,99.71407176],[4.53578803,0.03367111,99.71383272],[4.53578755,0.03366937,99.713593],[4.53578707,0.03366763,99.71335259],[4.5357866,0.03366589,99.71311151],[4.53578612,0.03366416,99.71286977],[4.53578564,0.03366242,99.71262736],[4.53578516,0.03366068,99.71238431],[4.53578469,0.03365894,99.71214061],[4.53578421,0.0336572,99.71189628],[4.53578373,0.03365547,99.71165132],[4.53578325,0.03365373,99.71140574],[4.53578278,0.03365199,99.71115955],[4.5357823,0.03365025,99.71091276],[4.53578182,0.03364851,99.71066537],[4.53578134,0.03364678,99.71041739],[4.53578087,0.03364504,99.71016884],[4.53578039,0.0336433,99.70991971],[4.53577991,0.03364156,99.70967003],[4.53577943,0.03363983,99.70941978],[4.53577896,0.03363809,99.70916899],[4.53577848,0.03363635,99.70891767],[4.535778,0.03363461,99.70866581],[4.53577752,0.03363287,99.70841343],[4.53577704,0.03363114,99.70816053],[4.53577657,0.0336294,99.70790713],[4.53577609,0.03362766,99.70765322],[4.53577561,0.03362592,99.70739883],[4.53577513,0.03362419,99.70714395],[4.53577466,0.03362245,99.70688859],[4.53577418,0.03362071,99.70663276],[4.5357737,0.03361897,99.70637646],[4.53577322,0.03361723,99.70611971],[4.53577274,0.0336155,99.7058625],[4.53577227,0.03361376,99.70560485],[4.53577179,0.03361202,99.70534677],[4.53577131,0.03361028,99.70508826],[4.53577083,0.03360855,99.70482932],[4.53577036,0.03360681,99.70456997],[4.53576988,0.03360507,99.70431021],[4.5357694,0.03360334,99.70405005],[4.53576892,0.0336016,99.70378949],[4.53576845,0.03359986,99.70352855],[4.53576797,0.03359812,99.70326723],[4.53576749,0.03359638,99.70300554],[4.53576701,0.03359465,99.70274348],[4.53576654,0.03359291,99.70248106],[4.53576606,0.03359117,99.70221829],[4.53576558,0.03358943,99.70195518],[4.53576511,0.0335877,99.70169173],[4.53576463,0.03358596,99.70142795],[4.53576415,0.03358422,99.70116385],[4.53576367,0.03358248,99.70089944],[4.5357632,0.03358074,99.70063471],[4.53576272,0.03357901,99.70036969],[4.53576224,0.03357727,99.70010438],[4.5357621,0.03357676,99.70002627],[4.5357938,0.03356799,99.78476619],[4.53579394,0.0335685,99.78483134],[4.53579441,0.03357024,99.78505247],[4.53579489,0.03357198,99.78527309],[4.53579536,0.03357372,99.78549319],[4.53579584,0.03357546,99.78571279],[4.53579632,0.0335772,99.78593187],[4.53579679,0.03357894,99.78615043],[4.53579727,0.03358068,99.78636849],[4.53579774,0.03358241,99.78658603],[4.53579822,0.03358415,99.78680305],[4.5357987,0.03358589,99.78701956],[4.53579917,0.03358763,99.78723555],[4.53579965,0.03358937,99.78745102],[4.53580012,0.03359111,99.78766598],[4.5358006,0.03359285,99.78788042],[4.53580107,0.03359459,99.78809435],[4.53580155,0.03359633,99.78830775],[4.53580203,0.03359806,99.78852063],[4.5358025,0.0335998,99.788733],[4.53580298,0.03360154,99.78894485],[4.53580345,0.03360328,99.78915617],[4.53580393,0.03360502,99.78936698],[4.5358044,0.03360676,99.78957726],[4.53580488,0.03360849,99.78978702],[4.53580535,0.03361023,99.78999626],[4.53580583,0.03361197,99.79020497],[4.5358063,0.03361371,99.79041316],[4.53580678,0.03361545,99.79062083],[4.53580725,0.03361719,99.79082798],[4.53580773,0.03361893,99.79103459],[4.5358082,0.03362067,99.79124069],[4.53580868,0.03362241,99.79144625],[4.53580915,0.03362415,99.79165129],[4.53580963,0.03362589,99.7918558],[4.5358101,0.03362763,99.79205978],[4.53581058,0.03362937,99.79226323],[4.53581105,0.0336311,99.79246615],[4.53581152,0.03363284,99.79266853],[4.535812,0.03363458,99.79287038],[4.53581247,0.03363632,99.79307169],[4.53581295,0.03363806,99.79327246],[4.53581342,0.0336398,99.79347268],[4.5358139,0.03364154,99.79367237],[4.53581437,0.03364328,99.79387151],[4.53581484,0.03364502,99.7940701],[4.53581532,0.03364676,99.79426815],[4.53581579,0.0336485,99.79446564],[4.53581627,0.03365024,99.79466259],[4.53581674,0.03365198,99.79485898],[4.53581721,0.03365372,99.79505482],[4.53581769,0.03365546,99.7952501],[4.53581816,0.0336572,99.79544482],[4.53581864,0.03365893,99.79563898],[4.53581911,0.03366067,99.79583259],[4.53581958,0.03366241,99.79602563],[4.53582006,0.03366415,99.7962181],[4.53582053,0.03366589,99.79641001],[4.535821,0.03366763,99.79660135],[4.53582148,0.03366937,99.79679212],[4.53582195,0.03367111,99.79698232],[4.53582242,0.03367285,99.79717195],[4.5358229,0.03367459,99.797361],[4.53582337,0.03367633,99.79754948],[4.53582384,0.03367807,99.79773738],[4.53582432,0.03367981,99.7979247],[4.53582479,0.03368155,99.79811144],[4.53582526,0.03368329,99.7982976],[4.53582573,0.03368503,99.79848317],[4.53582621,0.03368677,99.79866816],[4.53582668,0.03368851,99.79885256],[4.53582715,0.03369025,99.79903637],[4.53582763,0.03369199,99.79921959],[4.5358281,0.03369373,99.79940222],[4.53582857,0.03369547,99.79958425],[4.53582904,0.03369721,99.79976569],[4.53582952,0.03369895,99.79994653],[4.53582999,0.03370069,99.80012677],[4.53583046,0.03370243,99.80030641],[4.53583093,0.03370417,99.80048545],[4.53583141,0.03370591,99.80066389],[4.53583188,0.03370765,99.80084172],[4.53583235,0.03370939,99.80101894],[4.53583282,0.03371113,99.80119555],[4.53583329,0.03371287,99.80137155],[4.53583377,0.03371461,99.80154695],[4.53583424,0.03371635,99.80172172],[4.53583471,0.03371809,99.80189589],[4.53583518,0.03371983,99.80206943],[4.53583565,0.03372157,99.80224236],[4.53583612,0.03372331,99.80241467],[4.5358366,0.03372505,99.80258635],[4.53583707,0.03372679,99.80275741],[4.53583754,0.03372853,99.80292785],[4.53583801,0.03373027,99.80309766],[4.53583848,0.03373201,99.80326684],[4.53583895,0.03373375,99.80343539],[4.53583942,0.03373549,99.80360331],[4.53583989,0.03373723,99.8037706],[4.53584037,0.03373897,99.80393725],[4.53584084,0.03374071,99.80410326],[4.53584131,0.03374245,99.80426864],[4.53584178,0.03374419,99.80443338],[4.53584225,0.03374593,99.80459747],[4.53584272,0.03374767,99.80476092],[4.53584319,0.03374941,99.80492373],[4.53584366,0.03375115,99.80508589],[4.53584413,0.03375289,99.8052474],[4.5358446,0.03375463,99.80540827],[4.53584507,0.03375637,99.80556848],[4.53584554,0.03375811,99.80572804],[4.53584601,0.03375985,99.80588694],[4.53584648,0.03376159,99.80604519],[4.53584695,0.03376333,99.80620278],[4.53584742,0.03376508,99.80635971],[4.53584789,0.03376682,99.80651598],[4.53584836,0.03376856,99.80667159],[4.53584883,0.0337703,99.80682653],[4.5358493,0.03377204,99.8069808],[4.53584977,0.03377378,99.80713441],[4.53585024,0.03377552,99.80728735],[4.53585071,0.03377726,99.80743963],[4.53585118,0.033779,99.80759124],[4.53585165,0.03378074,99.80774219],[4.53585212,0.03378248,99.80789248],[4.53585259,0.03378422,99.80804212],[4.53585306,0.03378596,99.80819111],[4.53585353,0.0337877,99.80833945],[4.535854,0.03378944,99.80848715],[4.53585447,0.03379119,99.8086342],[4.53585494,0.03379293,99.80878061],[4.5358554,0.03379467,99.80892639],[4.53585587,0.03379641,99.80907153],[4.53585634,0.03379815,99.80921603],[4.53585681,0.03379989,99.80935991],[4.53585728,0.03380163,99.80950317],[4.53585775,0.03380337,99.80964579],[4.53585822,0.03380511,99.8097878],[4.53585869,0.03380685,99.80992919],[4.53585915,0.03380859,99.81006997],[4.53585962,0.03381034,99.81021013],[4.53586009,0.03381208,99.81034969],[4.53586056,0.03381382,99.81048863],[4.53586103,0.03381556,99.81062698],[4.5358615,0.0338173,99.81076472],[4.53586197,0.03381904,99.81090186],[4.53586243,0.03382078,99.8110384],[4.5358629,0.03382252,99.81117436],[4.53586337,0.03382426,99.81130972],[4.53586384,0.033826,99.81144449],[4.53586431,0.03382774,99.81157868],[4.53586478,0.03382949,99.81171228],[4.53586525,0.03383123,99.81184531],[4.53586571,0.03383297,99.81197775],[4.53586618,0.03383471,99.81210962],[4.53586665,0.03383645,99.81224092],[4.53586712,0.03383819,99.81237165],[4.53586759,0.03383993,99.81250181],[4.53586805,0.03384167,99.81263141],[4.53586852,0.03384341,99.81276045],[4.53586899,0.03384516,99.81288892],[4.53586946,0.0338469,99.81301684],[4.53586993,0.03384864,99.81314421],[4.5358704,0.03385038,99.81327102],[4.53587086,0.03385212,99.81339729],[4.53587133,0.03385386,99.813523],[4.5358718,0.0338556,99.81364818],[4.53587227,0.03385734,99.81377281],[4.53587274,0.03385908,99.81389691],[4.53587321,0.03386082,99.81402047],[4.53587367,0.03386257,99.8141435],[4.53587414,0.03386431,99.81426599],[4.53587461,0.03386605,99.81438796],[4.53587508,0.03386779,99.8145094],[4.53587555,0.03386953,99.81463032],[4.53587602,0.03387127,99.81475072],[4.53587648,0.03387301,99.8148706],[4.53587695,0.03387475,99.81498997],[4.53587742,0.03387649,99.81510882],[4.53587789,0.03387823,99.81522717],[4.53587836,0.03387998,99.815345],[4.53587883,0.03388172,99.81546234],[4.53587929,0.03388346,99.81557917],[4.53587976,0.0338852,99.8156955],[4.53588023,0.03388694,99.81581133],[4.5358807,0.03388868,99.81592667],[4.53588117,0.03389042,99.81604152],[4.53588164,0.03389216,99.81615588],[4.53588211,0.0338939,99.81626975],[4.53588258,0.03389564,99.81638314],[4.53588304,0.03389739,99.81649605],[4.53588351,0.03389913,99.81660847],[4.53588398,0.03390087,99.81672043],[4.53588445,0.03390261,99.81683191],[4.53588492,0.03390435,99.81694292],[4.53588539,0.03390609,99.81705345],[4.53588586,0.03390783,99.81716351],[4.53588633,0.03390957,99.81727308],[4.5358868,0.03391131,99.81738217],[4.53588727,0.03391305,99.81749077],[4.53588774,0.03391479,99.81759888],[4.5358882,0.03391653,99.81770648],[4.53588867,0.03391828,99.81781359],[4.53588914,0.03392002,99.81792018],[4.53588961,0.03392176,99.81802627],[4.53589008,0.0339235,99.81813183],[4.53589055,0.03392524,99.81823688],[4.53589102,0.03392698,99.81834141],[4.53589149,0.03392872,99.8184454],[4.53589196,0.03393046,99.81854887],[4.53589243,0.0339322,99.8186518],[4.5358929,0.03393394,99.81875418],[4.53589337,0.03393568,99.81885602],[4.53589384,0.03393742,99.81895732],[4.53589431,0.03393916,99.81905806],[4.53589478,0.0339409,99.81915824],[4.53589525,0.03394265,99.81925786],[4.53589572,0.03394439,99.81935691],[4.53589619,0.03394613,99.81945539],[4.53589666,0.03394787,99.8195533],[4.53589713,0.03394961,99.81965063],[4.5358976,0.03395135,99.81974738],[4.53589807,0.03395309,99.81984354],[4.53589854,0.03395483,99.81993911],[4.53589901,0.03395657,99.82003408],[4.53589948,0.03395831,99.82012846],[4.53589995,0.03396005,99.82022223],[4.53590042,0.03396179,99.82031539],[4.53590089,0.03396353,99.82040795],[4.53590136,0.03396527,99.82049988],[4.53590183,0.03396701,99.8205912],[4.5359023,0.03396875,99.82068189],[4.53590277,0.0339705,99.82077195],[4.53590324,0.03397224,99.82086138],[4.53590371,0.03397398,99.82095018],[4.53590418,0.03397572,99.82103833],[4.53590465,0.03397746,99.82112584],[4.53590512,0.0339792,99.82121269],[4.53590559,0.03398094,99.8212989],[4.53590606,0.03398268,99.82138444],[4.53590653,0.03398442,99.82146933],[4.535907,0.03398616,99.82155355],[4.53590747,0.0339879,99.8216371],[4.53590794,0.03398964,99.82171997],[4.53590841,0.03399138,99.82180217],[4.53590888,0.03399312,99.82188368],[4.53590935,0.03399486,99.82196451],[4.53590982,0.03399661,99.82204465],[4.53591029,0.03399835,99.82212409],[4.53591076,0.03400009,99.82220283],[4.53591123,0.03400183,99.82228087],[4.5359117,0.03400357,99.8223582],[4.53591217,0.03400531,99.82243482],[4.53591264,0.03400705,99.82251072],[4.53591311,0.03400879,99.8225859],[4.53591358,0.03401053,99.82266036],[4.53591404,0.03401227,99.82273409],[4.53591451,0.03401401,99.82280709],[4.53591498,0.03401575,99.82287935],[4.53591545,0.03401749,99.82295087],[4.53591592,0.03401923,99.82302164],[4.53591639,0.03402097,99.82309167],[4.53591686,0.03402272,99.82316094],[4.53591733,0.03402446,99.82322945],[4.5359178,0.0340262,99.8232972],[4.53591827,0.03402794,99.82336418],[4.53591874,0.03402968,99.8234304],[4.53591921,0.03403142,99.82349584],[4.53591968,0.03403316,99.82356049],[4.53592015,0.0340349,99.82362437],[4.53592062,0.03403664,99.82368746],[4.53592109,0.03403838,99.82374975],[4.53592156,0.03404012,99.82381125],[4.53592202,0.03404186,99.82387195],[4.53592249,0.03404361,99.82393185],[4.53592296,0.03404535,99.82399093],[4.53592343,0.03404709,99.82404921],[4.5359239,0.03404883,99.82410666],[4.53592437,0.03405057,99.82416329],[4.53592484,0.03405231,99.8242191],[4.53592531,0.03405405,99.82427408],[4.53592578,0.03405579,99.82432822],[4.53592624,0.03405753,99.82438152],[4.53592671,0.03405927,99.82443398],[4.53592718,0.03406102,99.82448559],[4.53592765,0.03406276,99.82453635],[4.53592812,0.0340645,99.82458625],[4.5358966,0.03407308,99.74469755]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.3,"weight":"bold","type":"solid","height":0.0}],"successorId":-2,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-2,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-2,"sOffset":525.6514438035}},{"geometry":{"coordinates":[[[4.53592812,0.0340645,99.82458625],[4.53592765,0.03406276,99.82453635],[4.53592718,0.03406102,99.82448559],[4.53592671,0.03405927,99.82443398],[4.53592624,0.03405753,99.82438152],[4.53592578,0.03405579,99.82432822],[4.53592531,0.03405405,99.82427408],[4.53592484,0.03405231,99.8242191],[4.53592437,0.03405057,99.82416329],[4.5359239,0.03404883,99.82410666],[4.53592343,0.03404709,99.82404921],[4.53592296,0.03404535,99.82399093],[4.53592249,0.03404361,99.82393185],[4.53592202,0.03404186,99.82387195],[4.53592156,0.03404012,99.82381125],[4.53592109,0.03403838,99.82374975],[4.53592062,0.03403664,99.82368746],[4.53592015,0.0340349,99.82362437],[4.53591968,0.03403316,99.82356049],[4.53591921,0.03403142,99.82349584],[4.53591874,0.03402968,99.8234304],[4.53591827,0.03402794,99.82336418],[4.5359178,0.0340262,99.8232972],[4.53591733,0.03402446,99.82322945],[4.53591686,0.03402272,99.82316094],[4.53591639,0.03402097,99.82309167],[4.53591592,0.03401923,99.82302164],[4.53591545,0.03401749,99.82295087],[4.53591498,0.03401575,99.82287935],[4.53591451,0.03401401,99.82280709],[4.53591404,0.03401227,99.82273409],[4.53591358,0.03401053,99.82266036],[4.53591311,0.03400879,99.8225859],[4.53591264,0.03400705,99.82251072],[4.53591217,0.03400531,99.82243482],[4.5359117,0.03400357,99.8223582],[4.53591123,0.03400183,99.82228087],[4.53591076,0.03400009,99.82220283],[4.53591029,0.03399835,99.82212409],[4.53590982,0.03399661,99.82204465],[4.53590935,0.03399486,99.82196451],[4.53590888,0.03399312,99.82188368],[4.53590841,0.03399138,99.82180217],[4.53590794,0.03398964,99.82171997],[4.53590747,0.0339879,99.8216371],[4.535907,0.03398616,99.82155355],[4.53590653,0.03398442,99.82146933],[4.53590606,0.03398268,99.82138444],[4.53590559,0.03398094,99.8212989],[4.53590512,0.0339792,99.82121269],[4.53590465,0.03397746,99.82112584],[4.53590418,0.03397572,99.82103833],[4.53590371,0.03397398,99.82095018],[4.53590324,0.03397224,99.82086138],[4.53590277,0.0339705,99.82077195],[4.5359023,0.03396875,99.82068189],[4.53590183,0.03396701,99.8205912],[4.53590136,0.03396527,99.82049988],[4.53590089,0.03396353,99.82040795],[4.53590042,0.03396179,99.82031539],[4.53589995,0.03396005,99.82022223],[4.53589948,0.03395831,99.82012846],[4.53589901,0.03395657,99.82003408],[4.53589854,0.03395483,99.81993911],[4.53589807,0.03395309,99.81984354],[4.5358976,0.03395135,99.81974738],[4.53589713,0.03394961,99.81965063],[4.53589666,0.03394787,99.8195533],[4.53589619,0.03394613,99.81945539],[4.53589572,0.03394439,99.81935691],[4.53589525,0.03394265,99.81925786],[4.53589478,0.0339409,99.81915824],[4.53589431,0.03393916,99.81905806],[4.53589384,0.03393742,99.81895732],[4.53589337,0.03393568,99.81885602],[4.5358929,0.03393394,99.81875418],[4.53589243,0.0339322,99.8186518],[4.53589196,0.03393046,99.81854887],[4.53589149,0.03392872,99.8184454],[4.53589102,0.03392698,99.81834141],[4.53589055,0.03392524,99.81823688],[4.53589008,0.0339235,99.81813183],[4.53588961,0.03392176,99.81802627],[4.53588914,0.03392002,99.81792018],[4.53588867,0.03391828,99.81781359],[4.5358882,0.03391653,99.81770648],[4.53588774,0.03391479,99.81759888],[4.53588727,0.03391305,99.81749077],[4.5358868,0.03391131,99.81738217],[4.53588633,0.03390957,99.81727308],[4.53588586,0.03390783,99.81716351],[4.53588539,0.03390609,99.81705345],[4.53588492,0.03390435,99.81694292],[4.53588445,0.03390261,99.81683191],[4.53588398,0.03390087,99.81672043],[4.53588351,0.03389913,99.81660847],[4.53588304,0.03389739,99.81649605],[4.53588258,0.03389564,99.81638314],[4.53588211,0.0338939,99.81626975],[4.53588164,0.03389216,99.81615588],[4.53588117,0.03389042,99.81604152],[4.5358807,0.03388868,99.81592667],[4.53588023,0.03388694,99.81581133],[4.53587976,0.0338852,99.8156955],[4.53587929,0.03388346,99.81557917],[4.53587883,0.03388172,99.81546234],[4.53587836,0.03387998,99.815345],[4.53587789,0.03387823,99.81522717],[4.53587742,0.03387649,99.81510882],[4.53587695,0.03387475,99.81498997],[4.53587648,0.03387301,99.8148706],[4.53587602,0.03387127,99.81475072],[4.53587555,0.03386953,99.81463032],[4.53587508,0.03386779,99.8145094],[4.53587461,0.03386605,99.81438796],[4.53587414,0.03386431,99.81426599],[4.53587367,0.03386257,99.8141435],[4.53587321,0.03386082,99.81402047],[4.53587274,0.03385908,99.81389691],[4.53587227,0.03385734,99.81377281],[4.5358718,0.0338556,99.81364818],[4.53587133,0.03385386,99.813523],[4.53587086,0.03385212,99.81339729],[4.5358704,0.03385038,99.81327102],[4.53586993,0.03384864,99.81314421],[4.53586946,0.0338469,99.81301684],[4.53586899,0.03384516,99.81288892],[4.53586852,0.03384341,99.81276045],[4.53586805,0.03384167,99.81263141],[4.53586759,0.03383993,99.81250181],[4.53586712,0.03383819,99.81237165],[4.53586665,0.03383645,99.81224092],[4.53586618,0.03383471,99.81210962],[4.53586571,0.03383297,99.81197775],[4.53586525,0.03383123,99.81184531],[4.53586478,0.03382949,99.81171228],[4.53586431,0.03382774,99.81157868],[4.53586384,0.033826,99.81144449],[4.53586337,0.03382426,99.81130972],[4.5358629,0.03382252,99.81117436],[4.53586243,0.03382078,99.8110384],[4.53586197,0.03381904,99.81090186],[4.5358615,0.0338173,99.81076472],[4.53586103,0.03381556,99.81062698],[4.53586056,0.03381382,99.81048863],[4.53586009,0.03381208,99.81034969],[4.53585962,0.03381034,99.81021013],[4.53585915,0.03380859,99.81006997],[4.53585869,0.03380685,99.80992919],[4.53585822,0.03380511,99.8097878],[4.53585775,0.03380337,99.80964579],[4.53585728,0.03380163,99.80950317],[4.53585681,0.03379989,99.80935991],[4.53585634,0.03379815,99.80921603],[4.53585587,0.03379641,99.80907153],[4.5358554,0.03379467,99.80892639],[4.53585494,0.03379293,99.80878061],[4.53585447,0.03379119,99.8086342],[4.535854,0.03378944,99.80848715],[4.53585353,0.0337877,99.80833945],[4.53585306,0.03378596,99.80819111],[4.53585259,0.03378422,99.80804212],[4.53585212,0.03378248,99.80789248],[4.53585165,0.03378074,99.80774219],[4.53585118,0.033779,99.80759124],[4.53585071,0.03377726,99.80743963],[4.53585024,0.03377552,99.80728735],[4.53584977,0.03377378,99.80713441],[4.5358493,0.03377204,99.8069808],[4.53584883,0.0337703,99.80682653],[4.53584836,0.03376856,99.80667159],[4.53584789,0.03376682,99.80651598],[4.53584742,0.03376508,99.80635971],[4.53584695,0.03376333,99.80620278],[4.53584648,0.03376159,99.80604519],[4.53584601,0.03375985,99.80588694],[4.53584554,0.03375811,99.80572804],[4.53584507,0.03375637,99.80556848],[4.5358446,0.03375463,99.80540827],[4.53584413,0.03375289,99.8052474],[4.53584366,0.03375115,99.80508589],[4.53584319,0.03374941,99.80492373],[4.53584272,0.03374767,99.80476092],[4.53584225,0.03374593,99.80459747],[4.53584178,0.03374419,99.80443338],[4.53584131,0.03374245,99.80426864],[4.53584084,0.03374071,99.80410326],[4.53584037,0.03373897,99.80393725],[4.53583989,0.03373723,99.8037706],[4.53583942,0.03373549,99.80360331],[4.53583895,0.03373375,99.80343539],[4.53583848,0.03373201,99.80326684],[4.53583801,0.03373027,99.80309766],[4.53583754,0.03372853,99.80292785],[4.53583707,0.03372679,99.80275741],[4.5358366,0.03372505,99.80258635],[4.53583612,0.03372331,99.80241467],[4.53583565,0.03372157,99.80224236],[4.53583518,0.03371983,99.80206943],[4.53583471,0.03371809,99.80189589],[4.53583424,0.03371635,99.80172172],[4.53583377,0.03371461,99.80154695],[4.53583329,0.03371287,99.80137155],[4.53583282,0.03371113,99.80119555],[4.53583235,0.03370939,99.80101894],[4.53583188,0.03370765,99.80084172],[4.53583141,0.03370591,99.80066389],[4.53583093,0.03370417,99.80048545],[4.53583046,0.03370243,99.80030641],[4.53582999,0.03370069,99.80012677],[4.53582952,0.03369895,99.79994653],[4.53582904,0.03369721,99.79976569],[4.53582857,0.03369547,99.79958425],[4.5358281,0.03369373,99.79940222],[4.53582763,0.03369199,99.79921959],[4.53582715,0.03369025,99.79903637],[4.53582668,0.03368851,99.79885256],[4.53582621,0.03368677,99.79866816],[4.53582573,0.03368503,99.79848317],[4.53582526,0.03368329,99.7982976],[4.53582479,0.03368155,99.79811144],[4.53582432,0.03367981,99.7979247],[4.53582384,0.03367807,99.79773738],[4.53582337,0.03367633,99.79754948],[4.5358229,0.03367459,99.797361],[4.53582242,0.03367285,99.79717195],[4.53582195,0.03367111,99.79698232],[4.53582148,0.03366937,99.79679212],[4.535821,0.03366763,99.79660135],[4.53582053,0.03366589,99.79641001],[4.53582006,0.03366415,99.7962181],[4.53581958,0.03366241,99.79602563],[4.53581911,0.03366067,99.79583259],[4.53581864,0.03365893,99.79563898],[4.53581816,0.0336572,99.79544482],[4.53581769,0.03365546,99.7952501],[4.53581721,0.03365372,99.79505482],[4.53581674,0.03365198,99.79485898],[4.53581627,0.03365024,99.79466259],[4.53581579,0.0336485,99.79446564],[4.53581532,0.03364676,99.79426815],[4.53581484,0.03364502,99.7940701],[4.53581437,0.03364328,99.79387151],[4.5358139,0.03364154,99.79367237],[4.53581342,0.0336398,99.79347268],[4.53581295,0.03363806,99.79327246],[4.53581247,0.03363632,99.79307169],[4.535812,0.03363458,99.79287038],[4.53581152,0.03363284,99.79266853],[4.53581105,0.0336311,99.79246615],[4.53581058,0.03362937,99.79226323],[4.5358101,0.03362763,99.79205978],[4.53580963,0.03362589,99.7918558],[4.53580915,0.03362415,99.79165129],[4.53580868,0.03362241,99.79144625],[4.5358082,0.03362067,99.79124069],[4.53580773,0.03361893,99.79103459],[4.53580725,0.03361719,99.79082798],[4.53580678,0.03361545,99.79062083],[4.5358063,0.03361371,99.79041316],[4.53580583,0.03361197,99.79020497],[4.53580535,0.03361023,99.78999626],[4.53580488,0.03360849,99.78978702],[4.5358044,0.03360676,99.78957726],[4.53580393,0.03360502,99.78936698],[4.53580345,0.03360328,99.78915617],[4.53580298,0.03360154,99.78894485],[4.5358025,0.0335998,99.788733],[4.53580203,0.03359806,99.78852063],[4.53580155,0.03359633,99.78830775],[4.53580107,0.03359459,99.78809435],[4.5358006,0.03359285,99.78788042],[4.53580012,0.03359111,99.78766598],[4.53579965,0.03358937,99.78745102],[4.53579917,0.03358763,99.78723555],[4.5357987,0.03358589,99.78701956],[4.53579822,0.03358415,99.78680305],[4.53579774,0.03358241,99.78658603],[4.53579727,0.03358068,99.78636849],[4.53579679,0.03357894,99.78615043],[4.53579632,0.0335772,99.78593187],[4.53579584,0.03357546,99.78571279],[4.53579536,0.03357372,99.78549319],[4.53579489,0.03357198,99.78527309],[4.53579441,0.03357024,99.78505247],[4.53579394,0.0335685,99.78483134],[4.5357938,0.03356799,99.78476619],[4.53582454,0.03355949,99.86698317],[4.53582468,0.03356,99.86703409],[4.53582516,0.03356174,99.86720698],[4.53582563,0.03356348,99.86737952],[4.5358261,0.03356522,99.86755172],[4.53582658,0.03356696,99.86772358],[4.53582705,0.0335687,99.86789509],[4.53582753,0.03357044,99.86806626],[4.535828,0.03357218,99.86823709],[4.53582847,0.03357392,99.86840757],[4.53582895,0.03357566,99.86857771],[4.53582942,0.0335774,99.86874751],[4.53582989,0.03357914,99.86891697],[4.53583037,0.03358088,99.86908608],[4.53583084,0.03358262,99.86925486],[4.53583131,0.03358436,99.86942329],[4.53583179,0.0335861,99.86959138],[4.53583226,0.03358784,99.86975912],[4.53583273,0.03358958,99.86992653],[4.53583321,0.03359132,99.87009359],[4.53583368,0.03359306,99.87026032],[4.53583415,0.0335948,99.8704267],[4.53583463,0.03359654,99.87059274],[4.5358351,0.03359828,99.87075844],[4.53583557,0.03360002,99.8709238],[4.53583605,0.03360176,99.87108882],[4.53583652,0.0336035,99.8712535],[4.53583699,0.03360524,99.87141784],[4.53583747,0.03360698,99.87158184],[4.53583794,0.03360872,99.8717455],[4.53583841,0.03361046,99.87190881],[4.53583889,0.0336122,99.87207179],[4.53583936,0.03361394,99.87223443],[4.53583983,0.03361568,99.87239673],[4.53584031,0.03361742,99.87255869],[4.53584078,0.03361916,99.87272031],[4.53584125,0.0336209,99.87288159],[4.53584173,0.03362264,99.87304252],[4.5358422,0.03362438,99.87320311],[4.53584267,0.03362612,99.87336336],[4.53584315,0.03362786,99.87352326],[4.53584362,0.0336296,99.87368281],[4.53584409,0.03363134,99.87384202],[4.53584457,0.03363308,99.87400087],[4.53584504,0.03363482,99.87415938],[4.53584551,0.03363656,99.87431753],[4.53584598,0.0336383,99.87447533],[4.53584646,0.03364004,99.87463278],[4.53584693,0.03364178,99.87478988],[4.5358474,0.03364353,99.87494662],[4.53584788,0.03364527,99.875103],[4.53584835,0.03364701,99.87525903],[4.53584882,0.03364875,99.8754147],[4.53584929,0.03365049,99.87557001],[4.53584977,0.03365223,99.87572497],[4.53585024,0.03365397,99.87587956],[4.53585071,0.03365571,99.87603379],[4.53585119,0.03365745,99.87618766],[4.53585166,0.03365919,99.87634116],[4.53585213,0.03366093,99.8764943],[4.5358526,0.03366267,99.87664708],[4.53585308,0.03366441,99.87679948],[4.53585355,0.03366615,99.87695152],[4.53585402,0.03366789,99.8771032],[4.53585449,0.03366963,99.8772545],[4.53585497,0.03367137,99.87740544],[4.53585544,0.03367311,99.877556],[4.53585591,0.03367485,99.87770619],[4.53585638,0.03367659,99.87785601],[4.53585686,0.03367833,99.87800546],[4.53585733,0.03368007,99.87815453],[4.5358578,0.03368181,99.87830322],[4.53585827,0.03368355,99.87845154],[4.53585874,0.03368529,99.87859948],[4.53585922,0.03368703,99.87874704],[4.53585969,0.03368877,99.87889423],[4.53586016,0.03369052,99.87904103],[4.53586063,0.03369226,99.87918745],[4.53586111,0.033694,99.87933349],[4.53586158,0.03369574,99.87947915],[4.53586205,0.03369748,99.87962443],[4.53586252,0.03369922,99.87976932],[4.53586299,0.03370096,99.87991382],[4.53586347,0.0337027,99.88005794],[4.53586394,0.03370444,99.88020167],[4.53586441,0.03370618,99.88034501],[4.53586488,0.03370792,99.88048797],[4.53586535,0.03370966,99.88063053],[4.53586582,0.0337114,99.8807727],[4.5358663,0.03371314,99.88091448],[4.53586677,0.03371488,99.88105587],[4.53586724,0.03371662,99.88119687],[4.53586771,0.03371836,99.88133747],[4.53586818,0.0337201,99.88147767],[4.53586865,0.03372185,99.88161748],[4.53586912,0.03372359,99.88175689],[4.5358696,0.03372533,99.88189591],[4.53587007,0.03372707,99.88203452],[4.53587054,0.03372881,99.88217274],[4.53587101,0.03373055,99.88231055],[4.53587148,0.03373229,99.88244796],[4.53587195,0.03373403,99.88258498],[4.53587242,0.03373577,99.88272158],[4.53587289,0.03373751,99.88285779],[4.53587337,0.03373925,99.88299359],[4.53587384,0.03374099,99.88312898],[4.53587431,0.03374273,99.88326397],[4.53587478,0.03374447,99.88339854],[4.53587525,0.03374622,99.88353272],[4.53587572,0.03374796,99.88366648],[4.53587619,0.0337497,99.88379983],[4.53587666,0.03375144,99.88393277],[4.53587713,0.03375318,99.8840653],[4.5358776,0.03375492,99.88419741],[4.53587807,0.03375666,99.88432911],[4.53587854,0.0337584,99.8844604],[4.53587901,0.03376014,99.88459128],[4.53587948,0.03376188,99.88472173],[4.53587995,0.03376362,99.88485177],[4.53588042,0.03376537,99.88498139],[4.53588089,0.03376711,99.8851106],[4.53588136,0.03376885,99.88523939],[4.53588183,0.03377059,99.88536777],[4.5358823,0.03377233,99.88549574],[4.53588277,0.03377407,99.88562331],[4.53588324,0.03377581,99.88575048],[4.53588371,0.03377755,99.88587725],[4.53588418,0.03377929,99.88600363],[4.53588465,0.03378103,99.88612963],[4.53588512,0.03378278,99.88625524],[4.53588559,0.03378452,99.88638046],[4.53588606,0.03378626,99.88650531],[4.53588653,0.033788,99.88662979],[4.535887,0.03378974,99.88675389],[4.53588747,0.03379148,99.88687763],[4.53588794,0.03379322,99.88700101],[4.53588841,0.03379496,99.88712402],[4.53588888,0.0337967,99.88724668],[4.53588935,0.03379845,99.88736899],[4.53588982,0.03380019,99.88749094],[4.53589029,0.03380193,99.88761255],[4.53589076,0.03380367,99.88773382],[4.53589123,0.03380541,99.88785475],[4.5358917,0.03380715,99.88797535],[4.53589217,0.03380889,99.88809561],[4.53589264,0.03381063,99.88821555],[4.53589311,0.03381238,99.88833516],[4.53589357,0.03381412,99.88845445],[4.53589404,0.03381586,99.88857343],[4.53589451,0.0338176,99.88869209],[4.53589498,0.03381934,99.88881044],[4.53589545,0.03382108,99.88892848],[4.53589592,0.03382282,99.88904623],[4.53589639,0.03382456,99.88916367],[4.53589686,0.0338263,99.88928081],[4.53589733,0.03382805,99.88939767],[4.5358978,0.03382979,99.88951423],[4.53589827,0.03383153,99.88963051],[4.53589874,0.03383327,99.88974651],[4.5358992,0.03383501,99.88986222],[4.53589967,0.03383675,99.88997767],[4.53590014,0.03383849,99.89009284],[4.53590061,0.03384023,99.89020774],[4.53590108,0.03384198,99.89032238],[4.53590155,0.03384372,99.89043676],[4.53590202,0.03384546,99.89055089],[4.53590249,0.0338472,99.89066475],[4.53590296,0.03384894,99.89077837],[4.53590343,0.03385068,99.89089174],[4.5359039,0.03385242,99.89100487],[4.53590437,0.03385416,99.89111775],[4.53590484,0.03385591,99.8912304],[4.5359053,0.03385765,99.89134282],[4.53590577,0.03385939,99.89145501],[4.53590624,0.03386113,99.89156697],[4.53590671,0.03386287,99.89167871],[4.53590718,0.03386461,99.89179023],[4.53590765,0.03386635,99.89190154],[4.53590812,0.03386809,99.89201263],[4.53590859,0.03386983,99.89212352],[4.53590906,0.03387158,99.8922342],[4.53590953,0.03387332,99.89234468],[4.53591,0.03387506,99.89245496],[4.53591047,0.0338768,99.89256505],[4.53591094,0.03387854,99.89267494],[4.53591141,0.03388028,99.89278465],[4.53591188,0.03388202,99.89289418],[4.53591235,0.03388376,99.89300352],[4.53591282,0.0338855,99.89311269],[4.53591329,0.03388725,99.89322168],[4.53591376,0.03388899,99.89333051],[4.53591423,0.03389073,99.89343917],[4.5359147,0.03389247,99.89354766],[4.53591517,0.03389421,99.893656],[4.53591564,0.03389595,99.89376418],[4.53591611,0.03389769,99.8938722],[4.53591658,0.03389943,99.89398006],[4.53591705,0.03390117,99.89408776],[4.53591752,0.03390291,99.89419529],[4.53591799,0.03390465,99.89430265],[4.53591846,0.0339064,99.89440984],[4.53591893,0.03390814,99.89451685],[4.5359194,0.03390988,99.89462368],[4.53591987,0.03391162,99.89473032],[4.53592034,0.03391336,99.89483678],[4.53592081,0.0339151,99.89494305],[4.53592128,0.03391684,99.89504912],[4.53592175,0.03391858,99.89515499],[4.53592222,0.03392032,99.89526067],[4.53592269,0.03392206,99.89536614],[4.53592316,0.0339238,99.89547141],[4.53592363,0.03392554,99.89557646],[4.5359241,0.03392729,99.8956813],[4.53592458,0.03392903,99.89578593],[4.53592505,0.03393077,99.89589033],[4.53592552,0.03393251,99.89599451],[4.53592599,0.03393425,99.89609847],[4.53592646,0.03393599,99.89620219],[4.53592693,0.03393773,99.89630568],[4.5359274,0.03393947,99.89640894],[4.53592787,0.03394121,99.89651195],[4.53592834,0.03394295,99.89661472],[4.53592881,0.03394469,99.89671725],[4.53592928,0.03394643,99.89681953],[4.53592975,0.03394817,99.89692155],[4.53593022,0.03394992,99.89702332],[4.5359307,0.03395166,99.89712483],[4.53593117,0.0339534,99.89722607],[4.53593164,0.03395514,99.89732705],[4.53593211,0.03395688,99.89742776],[4.53593258,0.03395862,99.8975282],[4.53593305,0.03396036,99.89762837],[4.53593352,0.0339621,99.89772825],[4.53593399,0.03396384,99.89782785],[4.53593446,0.03396558,99.89792717],[4.53593493,0.03396732,99.8980262],[4.5359354,0.03396906,99.89812494],[4.53593588,0.0339708,99.89822338],[4.53593635,0.03397254,99.89832152],[4.53593682,0.03397429,99.89841936],[4.53593729,0.03397603,99.8985169],[4.53593776,0.03397777,99.89861413],[4.53593823,0.03397951,99.89871105],[4.5359387,0.03398125,99.89880765],[4.53593917,0.03398299,99.89890394],[4.53593964,0.03398473,99.8989999],[4.53594011,0.03398647,99.89909554],[4.53594058,0.03398821,99.89919086],[4.53594105,0.03398995,99.89928584],[4.53594152,0.03399169,99.89938049],[4.53594199,0.03399343,99.8994748],[4.53594246,0.03399517,99.89956876],[4.53594293,0.03399692,99.89966239],[4.53594341,0.03399866,99.89975567],[4.53594388,0.0340004,99.89984859],[4.53594435,0.03400214,99.89994117],[4.53594482,0.03400388,99.90003338],[4.53594529,0.03400562,99.90012524],[4.53594576,0.03400736,99.90021673],[4.53594623,0.0340091,99.90030785],[4.5359467,0.03401084,99.90039861],[4.53594717,0.03401258,99.90048899],[4.53594764,0.03401432,99.90057899],[4.53594811,0.03401606,99.90066861],[4.53594858,0.03401781,99.90075785],[4.53594905,0.03401955,99.9008467],[4.53594952,0.03402129,99.90093516],[4.53594999,0.03402303,99.90102323],[4.53595046,0.03402477,99.9011109],[4.53595093,0.03402651,99.90119817],[4.5359514,0.03402825,99.90128503],[4.53595187,0.03402999,99.90137149],[4.53595234,0.03403173,99.90145753],[4.5359528,0.03403347,99.90154317],[4.53595327,0.03403522,99.90162838],[4.53595374,0.03403696,99.90171317],[4.53595421,0.0340387,99.90179754],[4.53595468,0.03404044,99.90188148],[4.53595515,0.03404218,99.90196499],[4.53595562,0.03404392,99.90204806],[4.53595609,0.03404566,99.9021307],[4.53595656,0.0340474,99.90221289],[4.53595703,0.03404915,99.90229464],[4.5359575,0.03405089,99.90237594],[4.53595796,0.03405263,99.90245678],[4.53595843,0.03405437,99.90253717],[4.5359589,0.03405611,99.9026171],[4.53592812,0.0340645,99.82458625]]],"type":"Polygon"},"type":"feature","properties":{"roadMarks":[{"laneChange":null,"color":"standard","material":"standard","width":0.15,"weight":"standard","type":"broken","height":0.0}],"successorId":-1,"level":false,"materials":[{"surface":"asphalt","roughness":0.0,"friction":1.0}],"roadId":"1004600","id":-1,"speeds":[{"unit":null,"max":"km\/h","maxValue":250.0}],"type":"driving","predecessorId":-1,"sOffset":525.6514438035}},{"geometry":{"coordinates":[[[4.5359589,0.03405611,99.9026171],[4.53595843,0.03405437,99.90253717],[4.53595796,0.03405263,99.90245678],[4.5359575,0.03405089,99.90237594],[4.53595703,0.03404915,99.90229464],[4.53595656,0.0340474,99.90221289],[4.53595609,0.03404566,99.9021307],[4.53595562,0.03404392,99.90204806],[4.53595515,0.03404218,99.90196499],[4.53595468,0.03404044,99.90188148],[4.53595421,0.0340387,99.90179754],[4.53595374,0.03403696,99.90171317],[4.53595327,0.03403522,99.90162838],[4.5359528,0.03403347,99.90154317],[4.53595234,0.03403173,99.90145753],[4.53595187,0.03402999,99.90137149],[4.5359514,0.03402825,99.90128503],[4.53595093,0.03402651,99.90119817],[4.53595046,0.03402477,99.9011109],[4.53594999,0.03402303,99.90102323],[4.53594952,0.03402129,99.90093516],[4.53594905,0.03401955,99.9008467],[4.53594858,0.03401781,99.90075785],[4.53594811,0.03401606,99.90066861],[4.53594764,0.03401432,99.90057899],[4.53594717,0.03401258,99.90048899],[4.5359467,0.03401084,99.90039861],[4.53594623,0.0340091,99.90030785],[4.53594576,0.03400736,99.90021673],[4.53594529,0.03400562,99.90012524],[4.53594482,0.03400388,99.90003338],[4.53594435,0.03400214,99.89994117],[4.53594388,0.0340004,99.89984859],[4.53594341,0.03399866,99.89975567],[4.53594293,0.03399692,99.89966239],[4.53594246,0.03399517,99.89956876],[4.53594199,0.03399343,99.8994748],[4.53594152,0.03399169,99.89938049],[4.53594105,0.03398995,99.89928584],[4.53594058,0.03398821,99.89919086],[4.53594011,0.03398647,99.89909554],[4.53593964,0.03398473,99.8989999],[4.53593917,0.03398299,99.89890394],[4.5359387,0.03398125,99.89880765],[4.53593823,0.03397951,99.89871105],[4.53593776,0.03397777,99.89861413],[4.53593729,0.03397603,99.8985169],[4.53593682,0.03397429,99.89841936],[4.53593635,0.03397254,99.89832152],[4.53593588,0.0339708,99.89822338],[4.5359354,0.03396906,99.89812494],[4.53593493,0.03396732,99.8980262],[4.53593446,0.03396558,99.89792717],[4.53593399,0.03396384,99.89782785],[4.53593352,0.0339621,99.89772825],[4.53593305,0.03396036,99.89762837],[4.53593258,0.03395862,99.8975282],[4.53593211,0.03395688,99.89742776],[4.53593164,0.03395514,99.89732705],[4.53593117,0.0339534,99.89722607],[4.5359307,0.03395166,99.89712483],[4.53593022,0.03394992,99.89702332],[4.53592975,0.03394817,99.89692155],[4.53592928,0.03394643,99.89681953],[4.53592881,0.03394469,99.89671725],[4.53592834,0.03394295,99.89661472],[4.53592787,0.03394121,99.89651195],[4.5359274,0.03393947,99.89640894],[4.53592693,0.03393773,99.89630568],[4.53592646,0.03393599,99.89620219],[4.53592599,0.03393425,99.89609847],[4.53592552,0.03393251,99.89599451],[4.53592505,0.03393077,99.89589033],[4.53592458,0.03392903,99.89578593],[4.5359241,0.03392729,99.8956813],[4.53592363,0.03392554,99.89557646],[4.53592316,0.0339238,99.89547141],[4.53592269,0.03392206,99.89536614],[4.53592222,0.03392032,99.89526067],[4.53592175,0.03391858,99.89515499],[4.53592128,0.03391684,99.89504912],[4.53592081,0.0339151,99.89494305],[4.53592034,0.03391336,99.89483678],[4.53591987,0.03391162,99.89473032],[4.5359194,0.03390988,99.89462368],[4.53591893,0.03390814,99.89451685],[4.53591846,0.0339064,99.89440984],[4.53591799,0.03390465,99.89430265],[4.53591752,0.03390291,99.89419529],[4.53591705,0.03390117,99.89408776],[4.53591658,0.03389943,99.89398006],[4.53591611,0.03389769,99.8938722],[4.53591564,0.03389595,99.89376418],[4.53591517,0.03389421,99.893656],[4.5359147,0.03389247,99.89354766],[4.53591423,0.03389073,99.89343917],[4.53591376,0.03388899,99.89333051],[4.53591329,0.03388725,99.89322168],[4.53591282,0.0338855,99.89311269],[4.53591235,0.03388376,99.89300352],[4.53591188,0.03388202,99.89289418],[4.53591141,0.03388028,99.89278465],[4.53591094,0.03387854,99.89267494],[4.53591047,0.0338768,99.89256505],[4.53591,0.03387506,99.89245496],[4.53590953,0.03387332,99.89234468],[4.53590906,0.03387158,99.8922342],[4.53590859,0.03386983,99.89212352],[4.53590812,0.03386809,99.89201263],[4.53590765,0.03386635,99.89190154],[4.53590718,0.03386461,99.89179023],[4.53590671,0.03386287,99.89167871],[4.53590624,0.03386113,99.89156697],[4.53590577,0.03385939,99.89145501],[4.5359053,0.03385765,99.89134282],[4.53590484,0.03385591,99.8912304],[4.53590437,0.03385416,99.89111775],[4.5359039,0.03385242,99.89100487],[4.53590343,0.03385068,99.89089174],[4.53590296,0.03384894,99.89077837],[4.53590249,0.0338472,99.89066475],[4.53590202,0.03384546,99.89055089],[4.53590155,0.03384372,99.89043676],[4.53590108,0.03384198,99.89032238],[4.53590061,0.03384023,99.89020774],[4.53590014,0.03383849,99.89009284],[4.53589967,0.03383675,99.88997767],[4.5358992,0.03383501,99.88986222],[4.53589874,0.03383327,99.88974651],[4.53589827,0.03383153,99.88963051],[4.5358978,0.03382979,99.88951423],[4.53589733,0.03382805,99.88939767],[4.53589686,0.0338263,99.88928081],[4.53589639,0.03382456,99.88916367],[4.53589592,0.03382282,99.88904623],[4.53589545,0.03382108,99.88892848],[4.53589498,0.03381934,99.88881044],[4.53589451,0.0338176,99.88869209],[4.53589404,0.03381586,99.88857343],[4.53589357,0.03381412,99.88845445],[4.53589311,0.03381238,99.88833516],[4.53589264,0.03381063,99.88821555],[4.53589217,0.03380889,99.88809561],[4.5358917,0.03380715,99.88797535],[4.53589123,0.03380541,99.88785475],[4.53589076,0.03380367,99.88773382],[4.53589029,0.03380193,99.88761255],[4.53588982,0.03380019,99.88749094],[4.53588935,0.03379845,99.88736899],[4.53588888,0.0337967,99.88724668],[4.53588841,0.03379496,99.88712402],[4.53588794,0.03379322,99.88700101],[4.53588747,0.03379148,99.88687763],[4.535887,0.03378974,99.88675389],[4.53588653,0.033788,99.88662979],[4.53588606,0.03378626,99.88650531],[4.53588559,0.03378452,99.88638046],[4.53588512,0.03378278,99.88625524],[4.53588465,0.03378103,99.88612963],[4.53588418,0.03377929,99.88600363],[4.53588371,0.03377755,99.88587725],[4.53588324,0.03377581,99.88575048],[4.53588277,0.03377407,99.88562331],[4.5358823,0.03377233,99.88549574],[4.53588183,0.03377059,99.88536777],[4.53588136,0.03376885,99.88523939],[4.53588089,0.03376711,99.8851106],[4.53588042,0.03376537,99.88498139],[4.53587995,0.03376362,99.88485177],[4.53587948,0.03376188,99.88472173],[4.53587901,0.03376014,99.88459128],[4.53587854,0.0337584,99.8844604],[4.53587807,0.03375666